Index: btkb/c
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/btkb/c	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/btkb/c	(working copy)
@@ -0,0 +1,45 @@
+#!/bin/bash
+
+gensched () {
+if [ -f output/sched.rom ];then rm output/sched.rom; fi
+while [ 1 ];do
+	if [ -n "$1" ];then cat sched/$1.dat >> output/sched.rom; else return; fi
+	shift
+done
+}
+
+#enckey="-k 00000000000000000000000000000000"
+
+cd ${0%/*}
+for f in program/*.prog 
+  do if [[ ! $f =~ "bt.prog" && ! $f =~ "patch.prog" && ! $f =~ "sim.prog" ]] ; then progs="$progs $f"; fi; done
+cat program/bt.prog $progs  > output/bt_program23.meta
+
+case $1 in
+*)
+	gensched kb rf
+	sed '2 c define KEYBOARD' -i output/bt_program23.meta;;
+esac
+
+
+for f in format/*.format; do if [[ ! $f =~ "bt.format" && ! $f =~ "command.format" ]] ; then fmts="$fmts $f"; fi; done
+cat format/bt.format $fmts format/command.format > output/bt_format.meta
+perl $UTIL/mergepatch.pl 
+perl $UTIL/memalloc.pl
+cd output
+osiuasm bt_program23 -O-W
+sed 's/\(.*\)\r/\1/' -i bt_program23.meta 
+
+if [[ $1 == "c" ]];then make clean -C ../c51;fi
+make -C ../c51;cp ../c51/output/fwram.rom .
+geneep $enckey
+
+if [[ $1 == "o" ]];then exit;fi
+if [ -f sched.rom ]; then
+	e h;e k
+	e ku; e hu ramcode.rom 0; e su sched.rom;e pu;e cu
+else
+	e ku;e hu
+fi
+
+cd ..
Index: btkb/do.bat
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/btkb/do.bat	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/btkb/do.bat	(working copy)
@@ -0,0 +1,144 @@
+@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
+@set device_option=kb
+@rem 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 %%f in ('dir /b /o program\*.prog') do @if not %%f==bt.prog if not %%f==patch.prog if not %%f==sim.prog set progs=!progs! program\%%f
+type program\bt.prog %progs% > output\bt_program23.meta
+for /f %%f in ('dir /b /o format\*.format') do @if not %%f==bt.format if not %%f==command.format set fmts=!fmts! format\%%f
+type format\bt.format %fmts% format\command.format > output\bt_format.meta
+perl util/mergepatch.pl output/bt_program23.meta
+perl util/memalloc.pl output/bt_format.meta
+
+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\hci_boot.dat ..\output\sched.rom
+) else if "%device_option%" equ "kb" (
+  copy ..\sched\kb.dat +  ..\sched\rf.dat ..\output\sched.rom
+) else if "%device_option%" equ "le_kb" (
+  copy ..\sched\le_kb.dat +  ..\sched\fpga.dat ..\output\sched.rom
+) else if "%device_option%" equ "mouse" (
+  copy ..\sched\patch.dat + ..\sched\rf.dat +  ..\sched\user.dat ..\output\sched.rom
+) else if "%device_option%" equ "module" (
+  copy  ..\sched\DM_module.dat +   ..\sched\109x.dat ..\output\sched.rom
+) else if "%device_option%" equ "shutter" (
+  copy  ..\sched\shutter.dat +  ..\sched\fpga.dat ..\output\sched.rom
+) else if "%device_option%" equ "dongle" (
+  copy ..\sched\dongle.dat +  ..\sched\usb.dat +  ..\sched\fpga.dat ..\output\sched.rom
+) else if "%device_option%" equ "prcp" (
+  copy ..\sched\Le_prcp.dat + ..\sched\fpga.dat ..\output\sched.rom
+) else if "%device_option%" equ "test" (
+  copy ..\sched\test.dat + ..\sched\fpga.dat ..\output\sched.rom
+) else (
+cd ..
+echo **********************************
+echo Error: illegal device_option !
+echo **********************************
+goto end
+) 
+
+if "%1" equ "eep" (
+	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
+
+geneep -n ramcode.rom sched.rom 0 %enckey% c
+cd ..\output
+
+echo eeprom.dat Generated......
+
+
+:gen_eep_end
+cd ..
+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\sched.rom ..\c51\patch
+@copy .\output\memmap.format ..\c51\patch
+@copy .\format\keyboard.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/Hid.format
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/btkb/format/Hid.format	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/btkb/format/Hid.format	(working copy)
@@ -0,0 +1,21 @@
+
+(
+/*HID TYPE*/
+0x01 HID_TYPE_CONTROL
+0x04 HID_TYPE_GET_REPORT
+0x05 HID_TYPE_SET_REPORT
+0x07 HID_TYPE_SET_PROTOCOL
+0x09 HID_TYPE_SET_IDLE
+0x0a HID_TYPE_DATA
+/*HID REPORT ID*/
+0x01 HID_REPORT_ID_KB
+
+0x00 HID_CONTROL_P_NOOPERATION
+0x01 HID_CONTROL_P_HARDRESET
+0x02 HID_CONTROL_P_SOFTRESET
+0x03 HID_CONTROL_P_SUSPEND
+0x04 HID_CONTROL_P_EXITSUSPEND
+0x05 HID_CONTROL_P_VIRTUALCABLEUNPLUG
+)
+
+
Index: btkb/format/app.format
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/btkb/format/app.format	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/btkb/format/app.format	(working copy)
@@ -0,0 +1,234 @@
+
+memalloc(
+
+/* load code */
+1 mem_ucode_status
+2 mem_otp_ucode_flag
+1 mem_spid_tbuf				/* spid buf: 03 addr[23:16] addr[15:8] addr[7:0] */
+0 mem_iicd_tbuf				/* iicd buf: iic_adr addr[15:8] addr[7:0] iic_adr */
+1 mem_addr_hi
+1 mem_addr_mi
+1 mem_addr_lo
+1 mem_iicd_addr
+4 mem_spid_rbuf
+2 mem_ucode_buf
+2 mem_ucode_len
+2 mem_sched_addr
+2 mem_ucode_ptr
+16 mem_ucode_keybuf
+18 mem_check_plap_temp
+
+1 mem_sensor_id
+1 mem_reconnect_flag
+1 mem_switch_fail_master_count
+1 mem_app_evt_timer_count
+
+)
+
+xmemalloc(
+1 mem_app_state
+1 mem_app_handshake_flag
+2 mem_sniff_param_interval
+2 mem_sniff_param_attempt
+2 mem_sniff_param_timeout
+
+/*App Callback Functons*/
+2 mem_cb_check_wakelock
+2 mem_cb_before_hibernate
+2 mem_cb_before_lpm
+2 mem_cb_le_process
+2 mem_cb_bt_process
+2 mem_cb_idle_process
+2 mem_cb_bb_event_process
+2 mem_cb_discovry_timeout
+2 mem_cb_att_write
+2 mem_cb_update_notify_value
+1 mem_device_nums
+
+
+
+
+
+2 mem_eeprom_base
+
+1 mem_unsniff2sniff_timer_count
+//lpm mode
+1 mem_wake_up_delay_timer
+
+1 mem_app_connection_options
+
+//
+2 mem_app_disconn_reason
+2 mem_app_disconn_reason_flag
+1 mem_at_using_flag
+4 mem_lpm_delay_after_sniff
+1 mem_xrecord_mode
+
+2 mem_eeprom_block_size
+
+)
+
+/* ir */
+omemalloc(
+2 mem_ir_ptr
+1 mem_ir_type
+1 mem_ir_cmd
+1 mem_ir_play_count
+2 mem_ir_report_len
+1 mem_ir_pulse_zero
+1 mem_ir_pulse_one
+28 mem_ir_pulses
+1 mem_ir_sequence_len
+128 mem_ir_sequence
+)
+
+0x0000 otp_ucode_flag
+0x07f0 otp_ucode_aeskey
+
+
+/* data stored in eeprom */
+(
+0	eeprom_bdaddr_list
+28	eeprom_last_record
+29	eeprom_le_reconn_local_addr
+35	eeprom_linkkey_list//64
+
+99	eeprom_module_bt_adss//6
+105	eeprom_module_le_adss//6
+111	eeprom_module_pincode_length//1
+112	eeprom_module_pincode//15
+127	eeprom_module_bt_name_length//1
+128	eeprom_module_bt_name//32
+160	eeprom_module_ble_name_length//1
+161	eeprom_module_ble_name//31
+192	eeprom_module_trans_baud//3
+195	eeprom_module_init_flag//2
+197	eeprom_module_end
+
+//dpi eeprom addr
+198 eeprom_mouse_dpi
+)
+
+/*mem_app_handshake_flag*/
+(
+0 APP_HANDSHAKE_NULL
+1 APP_HANDSHAKE_DONE
+
+)
+/*mem_device_option*/
+(
+1 dvc_op_hci
+3 dvc_op_kb
+4 dvc_op_dongle
+5 dvc_op_spp
+6 dvc_op_ukey
+7 dvc_op_ir
+
+9 dvc_op_shutter
+10 dvc_op_module
+11 dvc_op_ble_mouse
+12 dvc_op_ble_kb
+13 dvc_op_ble_prcp
+255 dvc_op_test
+
+7 dvc_op_kbd
+
+//device option hight 4
+6 dvc_op_mouse
+//device option low 2
+(
+0 MODE_3_MOUSE
+1 MODE_4_MOUSE
+)
+)
+
+(
+3 twspi_sclk
+4 twspi_sdio
+)
+
+(
+4 pan_clk_bit
+5 pan_dat_bit
+6 pan_mov_bit
+)
+
+(
+7 otp_uflag_aes
+6 otp_uflag_skip_eep
+5 otp_uflag_skip_flash
+4 otp_uflag_hci
+)
+
+/* ir command */
+(
+1 ircmd_record
+2 ircmd_play
+3 ircmd_write_pulse
+4 ircmd_write_seq
+5 ircmd_write_next
+
+8 ircmd_test_play
+9 ircmd_test_rec
+
+10 ircmd_report_pulse
+11 ircmd_report_seq
+12 ircmd_report_raw
+
+20 ircmd_screen_on
+21 ircmd_screen_off
+)
+
+(
+7 gpio_active_bit
+)
+(
+2 HID_HANDSHAKE_TIMEOUT
+
+)
+
+(
+1 APP_FLAG_RECONNECT
+)
+(
+5 LPM_WAKE_UP_DELAY_TIMER
+)
+
+
+//mem_app_disconn_reason
+//mem_app_disconn_reason_flag
+//bit map
+(
+2 APP_DISC_RSN_SIZE
+)
+(
+0 APP_DISC_BY_BUTTON
+1 APP_DISC_AFTER_PAIRING
+2 APP_DISC_AFTER_RECONN
+3 APP_DISC_AFTER_SNIFF
+4 APP_DISC_AFTER_SETUP_DONE
+5 APP_DISC_AFTER_HANDSHAKE
+6 APP_DISC_BT
+7 APP_DISC_BLE
+8 APP_DISC_L2CAP_REFUSED
+9 APP_DISC_SWITCH_FAIL
+)
+//eeprom init flag
+(
+	0xaa55 EEPROM_INIT_FLAG
+)
+
+(
+	0x01 IPC_TYPE_CMD
+	0x02 IPC_TYPE_EVT
+	0x03 IPC_TYPE_HID
+	0x04 IPC_TYPE_SPP
+	0x05 IPC_TYPE_BLE
+	0x06 IPC_TYPE_24G
+)
+
+(
+	0x01 SYC_TASK_LPM
+	0x02 SYC_TASK_TIMER
+	0x03 SYC_TASK_HIBERNATE
+)
Index: btkb/format/at.format
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/btkb/format/at.format	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/btkb/format/at.format	(working copy)
@@ -0,0 +1,51 @@
+memalloc(
+
+	
+)
+
+omemalloc(
+
+)
+
+
+	(
+	0x2b UI_PLUS
+	0x3A UI_COLON
+	0x454c42 UI_BLE
+	0x3d AT_EQU
+	0x3f AT_QUES
+	0 AT_NULL
+	44 AT_COMMA
+	)
+	(
+	0x1A0 AT_baud_115200
+	0x4e2 AT_baud_38400
+	0x1388 AT_baud_9600
+	)
+	(
+		0 AT_FLAG_INQ
+		1 AT_FLAG_LEINQ
+		2 AT_FLAG_NAME
+	)
+	(
+		0 AT_STATE_SET30
+		1 AT_STATE_SET40
+		2 AT_STATE_CMODE
+		3 AT_STATE_ISCONN
+		4 AT_STATE_ROLE
+		5 AT_STATE_SNIFF
+		6 AT_STATE_LE
+	)
+	(
+		0 AT_TASK_UNSINFF
+		1 AT_TASK_SNIFF
+		2 AT_TASK_RECONN
+		3 AT_TASK_INQ
+		4 AT_TASK_SWITCH
+		7 AT_TASK_CMD_FLAG
+	)
+	
+	(
+		0x0A0D AT_CMD_END
+	)
+
Index: btkb/format/bt.format
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/btkb/format/bt.format	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/btkb/format/bt.format	(working copy)
@@ -0,0 +1,1012 @@
+
+	width = 32
+	const length = 12000
+
+	/* ========= memory ============== */
+memalloc(
+/* 00-0f most frequently used area  */
+1 mem_le_adv_transmit
+1 mem_le_adv_waitcnt
+1 mem_le_adv_rcv
+1 mem_le_req_rcv
+1 mem_le_scanrsp_rcv
+1 mem_le_conn_rcv
+
+1 mem_inquiryscan_waitcnt
+1 mem_inquiryscan_rcvcnt
+1 mem_pagescan_waitcnt
+1 mem_pagescan_rcvcnt
+1 mem_pagescan_rcvfhscnt
+1 mem_slave_rcvcnt
+1 mem_page_transmit
+1 mem_page_rcv
+1 mem_page_rcv_fhs
+1 mem_master_rcvcnt
+
+/* 10-1f debug area */
+1 mem_fhs_wait_counter
+1 mem_newconnto_counter
+1 mem_inquiry_transmit
+1 mem_inquiry_rcv
+1 mem_fw_ver
+1 mem_current_context
+1 mem_le_ch_mapped
+1 mem_last_freq
+1 mem_rssi
+1 mem_rx_type
+2 mem_rx_hec_err
+2 mem_rx_crc_err
+2 mem_context_ptr
+8 mem_display
+8 mem_bcd
+
+		/* context swappable area */
+1 mem_state
+1 mem_mode
+2 mem_tsniff
+4 mem_sniff_anchor
+6 mem_clk_offset
+2 mem_rx_window
+3 mem_plap
+1 mem_puap
+2 mem_pnap
+1 mem_conn_handle
+1 mem_arq
+1 mem_lmp_to_send
+1 mem_lmi_opcode
+1 mem_lmo_reason
+1 mem_op
+1 mem_state_map
+4 mem_supervision_timer
+2 mem_supervision_to
+1 mem_name_offset
+1 mem_key_size
+1 mem_conn_sm
+12 mem_aco
+16 mem_kc
+1 mem_conn_timer
+1 mem_sniff_attempt
+1 mem_sniff_timeout
+2 mem_dsniff
+1 mem_amaddr
+1 mem_lmo_opcode1
+1 mem_lmi_opcode1
+1 mem_lmo_reason1
+1 mem_lmo_tid1
+1 mem_lmo_opcode2
+1 mem_lmi_opcode2
+1 mem_lmo_reason2
+1 mem_lmo_tid2
+
+3 mem_hci_version
+2 mem_acl_pktlen
+1 mem_sco_pktlen
+2 mem_acl_pktcnt
+2 mem_sco_pktcnt
+
+1 mem_current_sniff_attempt
+1 mem_current_sniff_timeout
+1 mem_nfreq_index_inq
+1 mem_nfreq_index_page
+1 mem_ninqy_index
+1 mem_fhs_misc
+1 mem_tx_lch
+2 mem_tx_len
+
+
+
+
+/* lpo related */
+4 mem_subsniff_instant
+1 mem_subsniff_rate
+2 mem_subsniff_tcmax
+1 mem_subsniff_tsniff
+1 mem_lpm_adjust
+6 mem_sync_clke
+1 mem_lpm_current_mult
+4 mem_gpio_wakeup_low
+4 mem_gpio_wakeup_high
+	
+
+/* sco & esco */
+1 mem_air_mode
+1 mem_sco_asso_handle
+2 mem_sco_handle
+1 mem_esco_desco
+1 mem_esco_type
+1 mem_neogotiation_state
+1 mem_saved_amaddr
+1 mem_esco_arq
+1 mem_esco_saved_arq
+30 mem_sco_obuf
+30 mem_sco_ibuf
+1 mem_sco_poll
+
+
+
+//page
+1 mem_npage_index
+1 mem_page_mode
+4 mem_page_clk
+
+
+/* test related */
+2 mem_tst_pktcnt_sync
+2 mem_tst_pktcnt_hec
+2 mem_tst_pktcnt_crc
+2 mem_tst_pktcnt_dmh
+3 mem_tmp_buffer_head
+80 mem_tmp_buffer
+
+
+1 mem_tester_emulate
+0 mem_temp_payload
+1 test_mode_scenario
+1 test_mode_hopping_mode
+1 test_mode_tx_freq
+1 test_mode_rx_freq
+1 test_mode_power_mode
+1 test_mode_poll_period
+1 test_mode_packet_type
+2 test_mode_data_length
+1 mem_test_mode_old_debug_config
+1 mem_tester_cnt
+
+
+/*temp mem*/
+1 mem_temp_am_addr
+1 mem_temp_arq
+8 mem_pdatatemp
+
+
+//
+2 mem_len
+4 mem_clkn_bt
+4 mem_clke_bt
+4 mem_dpll_clkn
+1 mem_connection_options
+
+1 mem_nameres_cnt
+2 mem_txptr
+2 mem_slot_offset
+
+//extm
+1 extm_fhs_misc
+1 extm_newconn_am_addr
+3 extm_class
+3 extm_lap
+1 extm_uap
+3 extm_nap
+
+
+//debug
+1 mem_debug_config
+1 mem_lch_code
+1 mem_fhs_am_addr
+2 mem_dpll_error
+36 mem_bdaddr_list_buff
+1 mem_select_list_item
+0 mem_temp_reconn_record
+1 mem_record_bt_mode
+6 mem_temp_lap
+2 mem_list_item_ptr
+
+100 mem_eir
+)
+
+
+xmemalloc(
+/* patch enable 0x4000-0x403f  */
+
+1 mem_patch00
+1 mem_patch01
+1 mem_patch02
+1 mem_patch03
+1 mem_patch04
+1 mem_patch05
+1 mem_patch06
+1 mem_patch07
+1 mem_patch08
+1 mem_patch09
+1 mem_patch0a
+1 mem_patch0b
+1 mem_patch0c
+1 mem_patch0d
+1 mem_patch0e
+1 mem_patch0f
+1 mem_patch10
+1 mem_patch11
+1 mem_patch12
+1 mem_patch13
+1 mem_patch14
+1 mem_patch15
+1 mem_patch16
+1 mem_patch17
+1 mem_patch18
+1 mem_patch19
+1 mem_patch1a
+1 mem_patch1b
+1 mem_patch1c
+1 mem_patch1d
+1 mem_patch1e
+1 mem_patch1f
+1 mem_patch20
+1 mem_patch21
+1 mem_patch22
+1 mem_patch23
+1 mem_patch24
+1 mem_patch25
+1 mem_patch26
+1 mem_patch27
+1 mem_patch28
+1 mem_patch29
+1 mem_patch2a
+1 mem_patch2b
+1 mem_patch2c
+1 mem_patch2d
+1 mem_patch2e
+1 mem_patch2f
+1 mem_patch30
+1 mem_patch31
+1 mem_patch32
+1 mem_patch33
+1 mem_patch34
+1 mem_patch35
+1 mem_patch36
+1 mem_patch37
+1 mem_patch38
+1 mem_patch39
+1 mem_patch3a
+1 mem_patch3b
+1 mem_patch3c
+1 mem_patch3d
+1 mem_patch3e
+1 mem_patch3f
+
+	/* 3 device contexts  */
+240 mem_context
+1 mem_current_amaddr
+1 mem_lpm_mode
+1 mem_device_option
+1 mem_scan_mode
+4 mem_last_clkn
+
+	/* parameters */
+8 mem_features
+3 mem_lap
+1 mem_uap
+2 mem_nap
+1 mem_npage
+3 mem_glap
+3 mem_class
+2 mem_iscan_window
+2 mem_iscan_interval
+2 mem_pscan_window
+2 mem_pscan_interval
+2 mem_page_interval
+2 mem_page_window
+2 mem_page_to
+2 mem_inq_window
+1 mem_fcomp_mul
+1 mem_fcomp_div
+2 mem_rx_window_init
+2 mem_rx_window_sniff
+2 mem_rf_init_ptr
+
+	/* connection related */
+1 mem_last_type
+1 mem_last_type_esco
+1 mem_last_type_saved
+2 mem_retransmission_cnt
+4 mem_next_btclk
+
+1 mem_seqi
+1 mem_rf_rccal
+1 mem_handle_num
+1 mem_max_slot
+1 mem_eir_enable
+
+/* AFH related */
+4 mem_afh_instant
+2 mem_afh_error_total
+1 mem_afh_cfg
+1 mem_afh_new_mod
+5 mem_afh_map_lo
+5 mem_afh_map_hi
+1 mem_afh_used
+2 mem_afh_index
+11 mem_afh_map_new
+80 mem_afh_map
+4 mem_afh_timer
+10 mem_afh_classify_channel_map
+
+
+	/* lpm related */
+2 mem_chip_functions
+2 mem_lpm_wake_lock
+2 mem_lpm_interval
+1 mem_lpm_overhead
+1 mem_lpm_hibernate_switch
+1 mem_esco_addr
+1 mem_sniff_unint_lost
+1 mem_ptt
+4 mem_sleep_counter   //should be 0x41fc in REVC
+4 mem_sleep_counter_all
+6 mem_sleep_clkn
+3 mem_sniff_rcv
+3 mem_sniff_lost
+3 mem_clks_per_lpo
+
+1 mem_lpm_mult
+1 mem_lpm_mult_timeout
+1 mem_lpm_mult_cnt
+
+/* 8139-813b lpm_ctrl[31:12] */
+3 mem_lpm_config				
+
+1 mem_lpm_xtalcnt
+1 mem_lpm_buckcnt
+1 mem_lpm_ldocnt
+1 mem_lpm_isogate
+1 mem_lpm_isogate_final
+16 mem_saved_gpio	// should be 0x421e in REVC
+3 mem_saved_gsel
+8 mem_saved_mark
+1 mem_saved_spidctrl
+2 mem_patch_ptr
+2 mem_patch_len
+
+32 mem_timers
+
+/*LINK KEY*/
+1 mem_link_key_exists
+3 mem_link_key_eeprom_head
+16 mem_link_key
+
+
+/* HCI */
+1 mem_hci_cmd
+1 mem_hci_conn_handle
+3 mem_hci_plap
+1 mem_hci_puap
+2 mem_hci_pnap
+
+/*Peripherals*/
+1 mem_uartd_rxitems_got_data
+1 mem_uartd_rxitems_threshold
+2 mem_uartd_rx_timeout
+
+)
+
+0x4c00 mem_savelist
+
+ifdef RAM_VERSION
+0x4b17 rom_lpm_sleep
+0x4b1d rom_lpm_enter_sleep
+0x4b16 rom_lpm_write_ctrl
+0x6b1a rom_otpd_read_data
+0x6ada rom_otp_write
+else
+0x3b17 rom_lpm_sleep
+0x59e0 rom_save_ucode
+
+0x4219 rom_mem_lpm_xtalcnt
+0x423b rom_mem_patch_ptr
+0x423d rom_mem_patch_len
+
+0x5b1a rom_otpd_read_data
+0x5ada rom_otp_write
+endif
+	/* context */
+(
+0x01 coffset_mode
+0x02 coffset_tsniff
+0x04 coffset_sniff_anchor
+0x08 coffset_clk_offset
+0x0e coffset_rx_window
+0x10 coffset_plap
+0x16 coffset_conn_handle
+0x17 coffset_arq
+	/* 3.0 only */
+0x18 coffset_lmp_to_send
+0x1b coffset_op
+0x1c coffset_state_map
+	/* le only */
+0x18 coffset_le_ch
+0x19 coffset_le_hop
+0x1a coffset_le_event_cnt
+
+80 context_size
+3 context_num
+)
+
+(
+0 lpm_flag_wake
+1 lpm_flag_loadcode
+)
+
+/* ========= parameters ============== */
+(
+0x0050 param_newconn_arq
+0x0007 param_esco_addr
+0x0010 param_conn_handle
+0x01f0 param_conn_handle_comp
+0x0020 param_newconnto
+0x0008 param_pagerespto
+0x0a00 param_snooze_setup_orig
+0x5353 param_snooze_ahead_orig
+0x00ff param_ninquiry
+0x2000 param_page_to
+0x0005 param_max_slot
+0x0010 param_sco_poll
+
+/* 6Mhz clock setting */
+ifdef CLK6M
+0x0721 param_tx_setup
+0x06e8 param_rx_setup
+0x04e8 param_rx_setup_earlier
+0x0300 param_rf_setup
+0x01d8 param_clke_cal
+0x0500 param_conn_access 
+0x0400 param_conn_access_wider
+200 param_pll_setup
+else
+/* 12Mhz clock setting */
+0x0e43 param_tx_setup
+0x09d0 param_rx_setup_earlier
+0x0600 param_rf_setup
+0x03bb param_clke_cal
+0x0600 param_conn_access 
+0x0800 param_conn_access_wider
+0x0500 param_pll_setup		// 120 is minimum
+0x0d00 param_rx_setup	// 114us before sync
+2000 param_dpll_start_delay
+endif
+
+110 param_lpm_fix
+10 param_lpo_extra
+200 param_lpm_adjmax
+
+ifdef SIM
+20 param_hibernate_clks
+3 param_chgpump_delay
+else
+-1 param_hibernate_clks
+3000 param_chgpump_delay
+endif
+
+3 param_featrue_ssp
+0x0101 param_lmpext_ssp_enable
+339 param_acl_pktlen
+30   param_sco_pktlen
+1     param_acl_pktcnt		/*buffer acl pkt cnt*/
+7     param_sco_pktcnt
+
+
+0x8fffff param_features0
+0x9d83fe param_features1  // not support afh
+0x8359     param_features2
+0x000033 param_unap
+0x001177 param_lap
+0x9e8b33 param_glap
+0x002540 param_class//0x180208 //0x002580//402500//240404
+0x12e904 param_hci_version
+0x000a04 param_lmp_version//0x0a04
+0x12e9 param_lmp_subversion
+0x0012 param_tisw
+0x0012 param_tpsw
+0x1000 param_tisi
+0x0800 param_tpsi
+0x0020 param_page_window
+0x0020 param_inq_window
+0x1c80 param_supervision_to
+39 param_fcomp_div
+2 param_fcomp_mul
+6     param_name_len
+0x535442 param_name
+0x344950 param_name1
+
+
+)
+
+/* ======= packet types  ========= */
+(
+0x0      type_null    
+0x1      type_poll   
+0x2      type_fhs    
+0x3      type_dm1    
+0x4      type_dh1    
+0x5      type_hv1    
+0x6      type_hv2    
+0x7      type_hv3    
+0x8      type_3dh1     
+0x9      type_aux1   
+0xa      type_dm3    
+0xb      type_dh3    
+0xe      type_dm5    
+0xf      type_dh5    
+0x10     type_id
+0x11     type_shutdown
+0x13     type_lmp
+)
+
+/* ========== flag[6] =============== */
+(
+0        always        /* always 1 */
+1        true          /* set/rstn by verify,compare,icompare (true) */
+2        positive      /* set/rstn by all alu operations (opcode = 0x03,0x13,0x0f,0x1f), if alu output >= 0 */
+3        timeout       /* read only, the timeout from timers */
+5        zero          /* set/rstn by all alu operations (opcode = 0x03,0x13,0x0f,0x1f), if alu output == 0 */
+6        crc_failed    /* level, cleared by hop_start */
+7        enable_white  /* outside mux decide whether to load bt_clk or response_X */
+8        enable_parity /* level */
+9        enable_crc    /* level */
+10       enable_hec    /* level */
+11       decode_fec1   /* level */
+12       decode_fec2   /* level */
+13       decode_fec0   /* level */
+14       encrypt       /* level */
+15       crc16       /* for caculate ccitt crc16 */
+16       swfine	/* =0 stop_watch count based on oneslot =1 on 1 clock */
+20       rqst_freq    /* pulse, to start calculating frequency */
+21       recalc        /* pulse, to recalculate the fhs_parity */
+22       init_encrypt  /* pulse, issued to initialize encrption */
+23       mhalfbnd    /* half slot boundary of clke_rt, or when clke_bt[0] toggles */
+24       sync          /* sync found as a result of correlation,set/rstn by correlate opcode */
+25       user10    /* user10 */
+26       kc_p_activate  /* pulse to recalc the kc_p */
+27       encode_fec1   /* level */
+28       encode_fec2   /* level */
+29       encode_fec0   /* level */
+30       packet_end    /* pulse */
+32       is_tx         /* level */
+33       is_rx         /* level */
+34       halfslot     /* pulse, read only, when clkn_bt[0] toggles */
+35       oneslot      /* pulse, read only, when clkn_bt[1] toggles */
+36       mslotbnd     /* pulse, read only, when clke_bt[1] toggles */
+37       expire       /* level, read only, when selected clock source exceed timeup value */
+38       meet         /* level, read only, when selected clock source meet timeup value */
+39       tx_clear     /* level, read only, indicate tx pipe is cleared */
+40       user         /* user0 */
+41       master        /* user1 */
+42       slave2         /* user2 */
+43       wake           /* user3 */
+44       user2        /* user4 */
+45       match         /* user5 */
+46       attempt        /* user6 */
+47       user3          /* user7 */
+48       clknt         /* user8 */
+49	   user7 	/* user9 */
+50       synchronize   /* synchronize lpo and regular version of the clock */
+51       lpo_edge  /* read only, 3 clocks after risling edge of lpo clock */
+52       blank         /* C0 only, means pdata == 0 */
+53       modone          /* set divide operation is done */
+54       le		/* bluetooth 4.0 LE enable */
+55       aes_ready	/* set when aes is ok */
+63       never         /* read only, always 0 */
+)
+
+default flag = always
+
+/* ========== reg[6] =============== */
+(
+0        mark   /* for keeping strobes, more permanent */
+1        type   /* save and verify during rx */     /* rw */
+2        temp   /* general purpose register, 64 bits */
+3        contru  /* contr uart */
+4        am_addr      /* verify during rx, read and send during tx */ /* ro */
+5        contw        /* last mem_addr during write */
+6        contr        /* last mem_addr during read */
+7        queue    /* the index of qset*,qisolate* commands, ie, if queue = 3, qset/qisolate operate on bit3 */
+8        debug    /* can be wired out for observation */
+9        access   /* the 72 bit access word */
+10       contwu   /* contw uart */
+11       timeup        /* when does certain counter expire */
+12       pwindow       /* bit 71-61 of pdata; because on rx, bits shifts in from 71 down */
+13       fhs_parity    /* re-gernated based on bt_adr( {nap,uap,lap} ) when recalc flag is pulsed */
+14       white_init    /* init value of the whitening */
+15       crc24_init        /* init crc24 lfsr, 24 bits */
+16       interrupts    /* set interrupts, 40 bits */
+17       rega          /* general purpose register, 32 bits */
+18       regb          /* general purpose register, 32 bits */
+19       regc          /* general purpose register, 17 bits */
+20       regab         /* concat of {rega,regb}, thus 64 bits */
+21       radio_ctrl   /* radio i/f direct i/o ctrl, check following "radio_ctrl" section */
+21       ctrl_reg     /* 2023 and after */
+22       jtag_addr    /* load jtag address field, lsb */
+23       freq_index   /* 7 bit read only */
+24       jtag_data    /* wdata to and rdata from jtag */
+25       clkn              /* {clkn_bt, clkn_rt} */
+26       clke              /* {clke_bt, clke_rt} */
+27       stop_watch
+28       fhs_misc   /* SR, SP, pscan mode */
+29       fhs_class  /* class field in fhs */
+30       fhs0   /* read only, bit 0-71 of fhs word */
+31       fhs1   /* read only, bit 72-142 of fhs word */
+32       bt_adr /* r/w, the bt_addr to access gen and freq hopping, contain only lap and uap */
+33       bt_clk /* r/w, the bt_clk for freq hopping */
+34       clkn_bt  /* read only, native bluetooth clock, free running 3.2KHz  or controlled by RTHALFSLOT register */
+35       clkn_rt  /* read only, native realtime clock, free running 12MHz, count from 0-3749, or controlled by RTHALFSLOT register */
+36       freq_mode
+/* wire even_train    = freq_mode[4];    // odd even train                            */
+/* wire conn_mode     = 3;    // connection                                           */
+/* wire iqpgscan_mode = 2;    // slave in inquiry and page (not response)             */
+/* wire iqpgresp_mode = 1;    // slave in inquriy and page (response only)            */
+/* wire inqypage_mode = 0;    // master in inquiry and page(response or not response) */
+37       xin   /* x parameter, read only */
+38       N_tx_slot /* the N factor in equations for Xi,Xp,Xprm,Xprs */
+39 	   auxcnt
+40       clke_bt  /* r/w,  external bluetooth clock , free running 3.2KHz or controlled by RTHALFSLOT register */
+41       clke_rt  /* r/w,  external realtime clock, , free running 12MHz, count from 0-3749, or controlled by RTHALFSLOT register */
+43       host_mode         /* generic stuff for kick starts */
+44       lap
+45       uap
+46       nap         
+47       regext		/* r/w extended 12x32bit registers,  indexed by regext_index */
+48       alarm             /* r/w, lpo wake up time, this is also how lpo and current clock keep sync */
+49       lpo_time          /* read only, this is the value to be copied back to clkn/clke after wakeup */
+50       kc_ls             /* secret key,                71: 0 */
+51       kc_ms             /* secret key,               127:72 */
+52       g1l               /* encryption length                */
+53		mask3ff		/* for mask 0x3ff operation */
+54       aes_ctrl		
+56       regext_index   /* index of regext */
+57	     loopcnt
+58      stack			/* current return address */
+59       stack_ptr		/* stack depth */
+61         pc /* direct goto */
+62       null              /* to nowhere */
+63       pdata /* the shift register */
+)
+default reg = pdata
+
+/* regext_index */
+(
+0 regidx_data
+4 regidx_key
+8 regidx_xor
+12 regidx_result
+)
+/* ========== radio_ctrl========= */
+(
+0 TXGFSK
+1 PSK
+2 PSK3M
+3 RESET
+)
+/* assign BPWR = radio_ctrl[0]; */
+/* assign PARAMP = radio_ctrl[1]; */
+/* assign XTALPU = radio_ctrl[2]; */
+/* assign SYNTHPU = radio_ctrl[3]; */
+/* assign TXPU = radio_ctrl[4]; */
+/* assign RXPU = radio_ctrl[5]; */
+/* assign SLCTRL = radio_ctrl[6]; */
+/* assign XTALSEL_MUX_SEL = radio_ctrl[7] */
+
+
+/* =========== destination[4] ============== */
+(
+0 bucket
+1 rxf
+2 back
+3 mod
+)
+default dest = bucket
+
+/* =========== source[4] ============= */
+(
+1 txf
+3 demod
+)
+default source = 0
+
+
+/* ============== mark ============= *//*0 - 47 */
+(
+
+0  mark_fhs_eir  
+1  mark_rxbuf_inuse
+2  mark_tx_l2cap
+3  mark_switch_initiated
+4  mark_accept_switch
+5  mark_loopback
+7  mark_esco
+8  mark_esco_rxok
+9  mark_context
+10 mark_am_addr_broadcast
+11 mark_fhs_already_good
+12 mark_page_trainb
+13 mark_lpm_mult_enable
+14 mark_usb_flag
+15 mark_old_packet
+16 mark_longpacket
+17 mark_testmode
+18 mark_ar2
+19 mark_h5tx_rp
+20 mark_h5tx_crc	
+21 mark_h5tx_retransmit
+22 mark_h5rx_pstart
+23 mark_h5_sync
+24 mark_h5_reinit
+25 mark_bccmd_patch//for bcsp
+26 mark_temp //for bcsp
+27 mark_h5_reset // fo bcsp
+28 mark_inquiry_on
+29 mark_inquiry_state
+30 mark_inquiry_trainb
+31 mark_periodical_diac
+32 mark_all_diac
+33 mark_slave_in_rand_accepted
+34 mark_reconn_recieve_switch
+35 mark_isstr
+36 mark_loadcode
+37 mark_ext_patch
+35 mark_24g
+15 mark_24g_conext
+// REVAB:max 35, REVC:max 63
+
+)
+
+(
+1 reload_type_otp
+2 reload_type_spi
+3 reload_type_iic
+)
+
+
+/* ============== soft timers ============== */
+(
+0 h5_reinit_timer
+1 hci_retransmit_timer
+1 le_adv_interval_timer
+2 inquiry_length_timer
+3 le_scan_interval_timer
+4 page_length_timer
+5 iscan_interval_timer
+6 pscan_interval_timer
+7 lpo_delay_timer
+8 ui_hundred_millisecond_timer
+9 ui_led_blink
+10 switch_wait_timer
+11 enpt_delay_timer
+12 temp_timer
+13 page_interval_timer
+14 uart_rx_timer
+)
+(
+0 ui_led_stop
+1 ui_led_start
+2 ui_led_dark_time
+3 ui_led_light_time
+)
+(
+1 hci_cmd_inquiry
+2 hci_cmd_inquiry_cancel
+3 hci_cmd_remote_name_req
+4 hci_cmd_remote_feature_req
+5 hci_cmd_create_conn
+6 hci_cmd_disconn
+7 hci_cmd_accept_conn
+8 hci_cmd_reject_conn
+9 hci_cmd_pair
+10 hci_cmd_nopair
+11 hci_cmd_linkkey
+12 hci_cmd_nokey
+13 hci_cmd_auth
+14 hci_cmd_stopencrypt
+15 hci_cmd_startencrypt
+16 hci_cmd_setup_sco
+17 hci_cmd_disconn_sco
+18 hci_cmd_in_sniff
+19 hci_cmd_exit_sniff
+20 hci_cmd_remote_version_req
+21 hci_cmd_remote_ext_features_req
+22 hci_cmd_io_cap
+23 hci_cmd_role_discovery
+24 hci_cmd_role_switch
+25 hci_cmd_accept_with_switch
+26 hci_cmd_detach
+27 hci_cmd_le_create_conn
+28 hci_cmd_accept_sco_conn
+80 hci_cmd_wait_remote_feature
+81 hci_cmd_wait_remote_ext_feature
+82 hci_cmd_wait_remote_name
+)
+
+
+
+/* ============== debug ============= */
+(
+0 debug_neg_skew
+1 debug_bitbucket
+2 debug_dont_clear_got_tx
+3 debug_scatter_enabled
+4 debug_tx_fixed_freq
+5 debug_rx_fixed_freq
+6 debug_tx_pattern
+)
+
+/* ============== tester_emulator ============= */
+(
+0 tester_fixed_flow
+1 tester_fixed_flow_polarity
+2 tester_change
+3 tester_exit
+4 tester_pattern_test
+5 tester_whitening_change
+6 tester_fixed_freq
+7 tester_no_whitening
+)
+
+/* ============== mode ==========*/
+(
+0 mode_le
+1 mode_master
+2 afh_enable
+3 afh_change
+4 send_sco_when_slave
+5 first_seqnx
+)
+
+/* ============== state_map ==========*/
+(
+0 smap_lmptidinit
+1 smap_lmptid
+2 smap_encryption
+3 smap_name_res
+4 smap_name_req
+5 smap_edr
+6 smap_rxlmp
+7 smap_rxl2cap
+)
+(
+0 state_inconn
+1 state_insniff
+2 state_insco 
+3 state_inpage
+4 state_conn_comp
+5 state_init_seq
+6 state_combkey
+7 state_linkkey
+)
+(
+0 op_send_sres
+1 op_auth_req
+2 op_inrand_req
+3 op_disconn
+4 op_stop_enc
+5 op_start_enc
+6 op_txl2cap
+7 op_pkt_comp
+)
+
+
+/* ============== arq [3] ================ */
+(
+0 flow
+1 arqn
+2 seqn
+3 wack
+4 flowx              /* out */  /* not really in memory */
+5 arqnx              /* out */
+6 seqnx              /* out */
+7 bcast1             /* first broadcast received */
+)
+
+/* arq          {flow,arqn,seqn}, read/write */
+/* [0] flow r/w  acl full status of the other, store during rx, checked during tx */
+/* [1] arqn r/w  ack of the other during rx (ack tx fifo),                        */
+/* [2] seqn r/w  seqn of the other, check during rx                               */ 
+/* arqx         {flowx,arqnx,seqnx} */
+/* [0] flowx r/o flow back to the other, 1 alow send, 0 not to send, read only tx */
+/* [1] arqnx r/w ack to the other, set by rx, send back on tx                     */
+/* [2] seqnx r/w toggled by arqn, to be send during tx                            */ 
+
+(
+0 llid0
+1 llid1
+2 nesn
+3 sn
+4 md
+5 wak
+)
+
+/* AFH flags */
+(
+0 AFH_CFG_ON
+1 AFH_CFG_TIMER
+2 send_lmp_set_afh
+3 AFH_CFG_REPORT_MODE
+4 AFH_CFG_MASTER_SENT_REQ
+)
+
+/* LLID CODE */
+(	
+1 LLID_L2CAP_CONT
+2 LLID_L2CAP_START
+3 LLID_LMP
+)
+
+/* ============== master_state ==========*/
+(
+0  master_in_idle
+1  master_in_inquiry
+2  master_in_page
+10 master_in_becoming_slave
+15 master_in_conn
+)
+(
+0 newrev_feature_bettx
+1 newrev_feature_betplltx
+2 newrev_feature_skip_retransmit
+3 newrev_feature_init_radio_after_sleep
+4 newrev_feature_no_lpolog
+)
+/*************mem_pincode_state****************/
+(
+0 pincode_state_ilde
+1 pincode_state_wait_pincode
+2 pincode_state_pincode_ready
+)
+
+
+// lpm_write
+(
+1 lpmreg_sel_ctrl
+2 lpmreg_sel_ctrl2
+4 lpmreg_sel_gpiolow
+8 lpmreg_sel_gpiohigh
+16 lpmreg_sel_counter
+)
+
+//scan_mode
+(
+0 inq_scan_mode
+1 page_scan_mode
+)
+//mem_neogotiation_state
+(
+ 0 default_neogotiation_state
+ 1 prarm_neogotiation
+)
+
+//mem_lpm_wake_lock
+(
+
+2 wake_lock_hci_host
+3 wake_link_key_exists
+4 wake_lock_delay
+5 wake_lock_uart_tx
+6 wake_lock_uart_rx
+7 wake_lock_button
+8 wake_lock_cmd
+9 wake_lock_app
+10 wake_lock_lmp_tx
+11 wake_lock_lmp_rx
+12 wake_lock_l2cap_tx
+13 wake_lock_l2cap_rx
+14 wake_lock_ipc_c512bt
+15 wake_lock_ipc_bt2c51
+
+)
+
+(
+0 bt_disabled
+1 ble_disabled
+2 module_disable
+
+)
+
+(
+0x33  REC_3_MODE
+0x34  REC_4_MODE
+)
+
+
+//sniff UART_TX UART_RX
+(
+6 UART_WAKEUP_TX
+7 UART_WAKEUP_RX
+)
+
+
Index: btkb/format/command.format
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/btkb/format/command.format	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/btkb/format/command.format	(working copy)
@@ -0,0 +1,1385 @@
+
+/* Parse Command:
+TX: take bits from tx fifo, jam it into shift and a destination (rf,bucket)
+RX: take bits from demod,  jam it into shift and a destination (acl,sco,bucket) */
+
+/* Inject Command:
+TX: 0 into shift, send tail of shift into a destination (rf,bucket)
+RX: 0 into shift, send tail of shift into a destination (acl,sco,bucket) */
+
+format
+  ! 15 romdat
+  % d0
+  % d1
+  % d2
+  % d3
+  [8] d0
+  [8] d1
+  [8] d2
+  [8] d3
+end
+
+format
+  ! 15 enable   /* set flag to 1 */
+  % flag
+  [5] opcode
+  [6] 1
+  [6] flag
+  [6] null
+  [9] 0
+end
+ /* High 5 bytes of channel map */
+format
+  ! 15 pulse   /* set flag to 1 */
+  % flag
+  [5] opcode
+  [6] 1
+  [6] flag
+  [6] null
+  [9] 0
+end
+
+format
+  ! 15 disable   /* set flag to 0 */
+  % flag
+  [5] opcode
+  [6] 2
+  [6] flag
+  [6] null
+  [9] 0
+end
+
+format
+  ! 15 set0  /* set selected bit of reg to 0 */
+  % immediate
+  % reg
+  [5] opcode
+  [6] 9
+  [6] never
+  [6] reg
+  [9] immediate
+end
+
+format
+  ! 15 set1  /* set selected bit of reg to 1 */
+  % immediate
+  % reg
+  [5] opcode
+  [6] 9          /* alu op demux */
+  [6] always
+  [6] reg
+  [9] immediate
+end
+
+format
+  ! 15 setflag  /* set selected bit of the reg to the polarity of the flag */
+  % flag
+  % immediate
+  % reg
+  [5] opcode
+  [6] 9
+  [6] flag
+  [6] reg
+  [9] immediate
+end
+
+format
+  ! 15 nsetflag  /* set the selected bit of the reg to the opposite polarity of the flag */
+  % flag
+  % immediate
+  % reg
+  [5] opcode
+  [6] 0x29
+  [6] flag
+  [6] reg
+  [9] immediate
+end
+
+format
+  ! 15 setflip    /* invert the selected bit of the reg */
+  % immediate
+  % reg
+  [5] opcode
+  [6] 10            /* this is alu op */
+  [6] always
+  [6] reg
+  [9] immediate
+end
+
+format
+  ! 0x1f qset1      /* demux the lowest 4 bit of queue and OR it with regr into regw */
+  % reg             /* in short, set the bit in reg indexed by queue to 1 */
+  [5] opcode
+  [6] 9
+  [6] always
+  [6] reg
+  [9] 0
+end
+  
+format
+  ! 0x1f qset0      /* demux the lowest 4 bit of queue and AND it with regr into regw */
+  % reg             /* in short, set the bit in reg indexed by queue to 0 */
+  [5] opcode
+  [6] 9
+  [6] never
+  [6] reg
+  [9] 0
+end
+
+format 
+  ! 0x1f qsetflag   /* set the bit in reg index by queue to same as flag */
+  % flag
+  % reg
+  [5] opcode
+  [6] 9
+  [6] flag
+  [6] reg
+  [9] 0
+end
+
+format 
+  ! 0x1f nqsetflag   /* set the bit in the reg index by queue to opposite of flag */
+  % flag
+  % reg
+  [5] opcode
+  [6] 0x29
+  [6] flag
+  [6] reg
+  [9] 0
+end
+
+format
+  ! 0x1f qsetflip      /* flip the bit in reg index by queue */
+  % reg
+  [5] opcode
+  [6] 10
+  [6] always
+  [6] reg
+  [9] 0
+end
+
+format
+  ! 1 parse       /* take bits out of source (sco_tx,tx_buffer,rx-elas) into pdata and dest (sco_rx,rx_fifo,tx-elas) */
+  % source
+  % dest
+  % immediate
+  [5] opcode
+  [4] source      /* voice, data, demod */
+  [2] 0
+  [6] 0    
+  [2] 0           /* parse or inject */ 
+  [4] dest        /* acl, sco, mod, bucket */
+  [9] immediate   /* number of bits to parse off */
+end
+
+format
+  ! 1 inject      /* shift data from pdata into destination (tx-elas,rx_fifo,sco_rx) */
+  % destination
+  % immediate
+  [5] opcode
+  [4] 0
+  [2] 0
+  [6] 1
+  [2] 0
+  [4] destination /* acl,sco,mod,bucket */
+  [9] immediate   /* number of bits to be injected */
+end
+
+format
+  ! 1 iinject
+  % destination
+  % regr
+  [5] opcode
+  [6] regr       /* contain the number of bits to inject */
+  [6] 3
+  [2] 0
+  [4] destination /* acl,sco,mod,bucket */
+  [9] 0 
+end
+
+format
+  ! 1 stuff  /* automatic parse, stuff_counter decrement on every bit until hits zero */
+  % source
+  % destination
+  [5] opcode
+  [4] source
+  [2] 0
+  [6] 2
+  [2] 0
+  [4] destination
+  [9] 0
+end
+
+format    /* force immediate value into registers */
+  ! 3 force
+  % immediate
+  % regw
+  [5] opcode
+  [6] 0
+  [6] 0    /* alu operation force */
+  [6] regw  /* destination register */
+  [9] immediate
+end
+
+format    /* force whatever is on shift_reg to regsiters */
+  ! 0x13 iforce
+  % regw
+  [5] opcode
+  [6] 0
+  [6] 0    /* alu operation force */
+  [6] regw  /* destination register */
+  [9] 0
+end
+
+format    /* force immediate value into registers */
+  ! 3 increase
+  % immediate
+  % reg
+  [5] opcode
+  [6] reg
+  [6] 1    /* alu operation add */
+  [6] reg
+  [9] immediate
+end
+
+format
+  ! 3 pincrease
+  % immediate
+  [5] opcode
+  [6] -1  /* pdata */
+  [6] 1   /* alu add */
+  [6] -1  /* back to pdata */
+  [9] immediate
+end
+
+format    /* force immediate value into registers */
+  ! 3 and_into
+  % immediate
+  % reg
+  [5] opcode
+  [6] reg
+  [6] 2    /* alu operation and into */
+  [6] reg
+  [9] immediate
+end
+
+format
+  ! 3 and
+  % regr
+  % immediate
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 2    /* alu operation and into */
+  [6] regw
+  [9] immediate
+end
+  
+format
+  ! 0x13 iand    /* pdata & regr -> regw */
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 2    /* alu operation and into */
+  [6] regw
+  [9] 0
+end
+  
+
+format    /* and whatever is in shiftreg with reg */
+  ! 0x13 iand_into
+  % reg
+  [5] opcode
+  [6] reg
+  [6] 2    /* alu operation and into */
+  [6] reg
+  [9] 0
+end
+
+format
+  ! 3 or_into
+  % immediate
+  % reg
+  [5] opcode
+  [6] reg
+  [6] 3    /* alu operation or into */
+  [6] reg
+  [9] immediate
+end
+
+format
+  ! 3 or
+  % regr
+  % immediate
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 3    /* alu operation or into */
+  [6] regw
+  [9] immediate
+end
+
+format
+  ! 0x13 ior
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 3    /* alu operation or into */
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 0x13 ior_into
+  % reg
+  [5] opcode
+  [6] reg
+  [6] 3    /* alu operation or into */
+  [6] reg
+  [9] 0
+end
+
+format
+  ! 3 skip_to   /* jump to location stored in reg */
+  % reg
+  [5] opcode
+  [6] reg
+  [6] 4   /* alu operation copy */
+  [6] rom_addr
+  [9] 0
+end
+
+format
+  ! 3 copy
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 4   /* alu operation copy */
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 deposit   /* copy the register content thru alu to shift register, not prealigned like preload */
+  % reg
+  [5] opcode
+  [6] reg
+  [6] 4   /* alu operation copy */
+  [6] -1  /* pdata */
+  [9] 0
+end
+
+format
+  ! 3 icopy     /* copy the shift register lsb content directly to register, not aligned */
+  % regw
+  [5] opcode
+  [6] -1  /* pdata */
+  [6]  4  /* alu copy */
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 add
+  % regr
+  % immediate
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 1
+  [6] regw
+  [9] immediate
+end
+
+format
+  ! 0x13 iadd       /* regr + pdata -> regw */
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 1
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 sub          /* immediate - regr -> regw */
+  % regr
+  % immediate
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 12
+  [6] regw
+  [9] immediate
+end
+
+format
+  ! 0x13 isub       /* pdata - regr -> regw */
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 12
+  [6] regw
+  [9] 0
+end
+
+
+format
+  ! 3 flip
+  % immediate
+  % reg
+  [5] opcode
+  [6] reg
+  [6] 5
+  [6] reg
+  [9] immediate
+end
+  
+format
+  ! 0x13 iflip  /* use shift register as immediate to do xor */
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 5
+  [6] regw
+  [9] 0
+end
+  
+format
+  ! 3 xor
+  % regr
+  % immediate
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 5
+  [6] regw
+  [9] immediate
+end
+
+format
+  ! 3 xor_into
+  % immediate
+  % reg
+  [5] opcode
+  [6] reg
+  [6] 5
+  [6] reg
+  [9] immediate
+end
+  
+format
+  ! 0x13 ixor  /* pdata xor regr and store result in regw */
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 5
+  [6] regw
+  [9] 0
+end
+  
+format
+  ! 3 invert
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 8
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 pinvert    /* invert pdata into itself */
+  [5] opcode
+  [6] -1
+  [6] 8
+  [6] -1
+  [9] 0
+end
+
+format
+  ! 3 div                 /* regr div immediate div */
+  % reg
+  % immediate
+  [5] opcode
+  [6] reg
+  [6] 13                   /* generate diven pulse to div */
+  [6] null
+  [9] immediate
+end
+
+format
+  ! 0x13 idiv           /* pdata div regr data ready at most after 41 nops */
+  % reg
+  [5] opcode
+  [6] reg
+  [6] 13                   /* generate diven pulse to div */
+  [6] null
+  [9] 0
+end
+
+format
+  ! 3 remainder            /* harvest div remainder */
+  % regw
+  [5] opcode
+  [6] 0
+  [6] 14
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 quotient             /* harvest div quotient */
+  % regw
+  [5] opcode
+  [6] 0
+  [6] 15
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 rshift
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 6
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 rshift2
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 22
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 rshift3
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 18
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 rshift4
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 35
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 rshift8
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 25
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 rshift16
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 34
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 rshift32
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 30
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 lshift
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 7
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 lshift2
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 23
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 lshift8
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 26
+  [6] regw
+  [9] 0
+end
+
+  
+format
+  ! 3 lshift3
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 19
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 lshift4
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 36
+  [6] regw
+  [9] 0
+end
+  
+
+format
+  ! 3 lshift16
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 32
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 random               /* random number into regw */
+  % reg
+  [5] opcode
+  [6] 0
+  [6] 20
+  [6] reg
+  [9] 0
+end
+
+format                     /* bit reverse within a byte */
+  ! 3 reverse
+  % reg
+  % regw
+  [5] opcode
+  [6] reg
+  [6] 27
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 priority    /* priority encode reg into regw, lsb is the top priority, ie, priority(8'b00010000) = 4 */
+  % reg
+  % regw
+  [5] opcode
+  [6] reg
+  [6] 21
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 7 setsect   /* set a section of pdata */
+  % section    /* 0 sets 17:0 of pdata with set_data, 1 sets 35:18, 2 sets 53:36, 3 sets 71:54 */
+  % set_data
+  [5] opcode
+  [7] 0
+  [2] section
+  [18] set_data
+end
+
+format
+  ! 10 preload   /* load stuff into pdata according to fhs format, check us.v */
+  % reg
+  [5] opcode
+  [6] reg
+  [6] 0
+  [6] -1
+  [9] 0
+end
+
+format  /* load register with pdata content, according to fhs format, check us.v */
+  ! 10 ialigned   /* all bits are in position */
+  % regw
+  [5] opcode
+  [6] -1
+  [6] 0
+  [6] regw
+  [9] 0
+end
+
+format  /* load register to another according to fhs format */
+  ! 10 aligned
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 0
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 4 branch
+  % addr
+  % flag
+  [5] opcode
+  [6] 1
+  [6] flag
+  [15] addr
+end
+
+format
+  ! 4 call
+  % addr
+  % flag
+  [5] opcode
+  [6] 2
+  [6] flag
+  [15] addr
+end
+
+format
+  ! 4 rtn
+  % flag
+  [5] opcode
+  [6] 3
+  [6] flag
+  [15] 0
+end
+
+format
+  ! 0x0c store          /* write to memory, data from pdata, address from immediate then mem_ptr */
+  % num_bytes
+  % addr
+  [5] opcode
+  [6] 0               /* memory */
+  [1] 0
+  [1] 0
+  [4] num_bytes
+  [15] addr
+end
+
+format
+  ! 0x0c hstore          /* write to memory, data from pdata, address from immediate then mem_ptr */
+  % num_bytes
+  % addr
+  [5] opcode
+  [6] 0               /* memory */
+  [1] 1
+  [1] 0
+  [4] num_bytes
+  [15] addr
+end
+
+format
+  ! 0x1c istore        /* write to memory, data from pdata, address from regr then mem_ptr */
+  % num_bytes
+  % reg
+  [5] opcode
+  [6] reg            /* hold address */
+  [1] 0
+  [1] 0
+  [4] num_bytes
+  [15] 0
+end
+
+format
+  ! 0x0d fetch          /* read from memory, data into pdata, address from immediate then mem_ptr */
+  % num_bytes
+  % addr
+  [5] opcode
+  [6] 0               /* memory */
+  [1] 0
+  [1] 0
+  [4] num_bytes
+  [15] addr
+end
+
+format
+  ! 0x0d hfetch          /* read from memory, data into pdata, address from immediate then mem_ptr */
+  % num_bytes
+  % addr
+  [5] opcode
+  [6] 0               /* memory */
+  [1] 1
+  [1] 0
+  [4] num_bytes
+  [15] addr
+end
+
+format
+  ! 0x0d crc         /* read from memory, count from loopcnt, put crc result into pdata */
+  % addr
+  [5] opcode
+  [6] 0
+  [1] 0
+  [1] 0
+  [4] 0
+  [15] addr
+end
+
+format
+  ! 0x1d icrc         /* read from memory, address from reg, count from loopcnt, put crc result into pdata */
+  % reg
+  [5] opcode
+  [6] reg             /* hold address */
+  [1] 0
+  [1] 0
+  [4] 0
+  [15] 0
+end
+
+
+format
+  ! 0x1d ifetch         /* read from memory, data into pdata, address from regr then mem_ptr */
+  % num_bytes
+  % reg
+  [5] opcode
+  [6] reg             /* hold address */
+  [1] 0
+  [1] 0
+  [4] num_bytes
+  [15] 0
+end
+
+format
+  ! 0x0c storet          /* write to memory, data from temp, address from immediate won't increment */
+  % num_bytes
+  % addr
+  [5] opcode
+  [6] 0               /* memory */
+  [1] 0
+  [1] 1
+  [4] num_bytes
+  [15] addr
+end
+
+format
+  ! 0x0c hstoret          /* write to corereg, data from temp, address from immediate won't increment */
+  % num_bytes
+  % addr
+  [5] opcode
+  [6] 0               /* memory */
+  [1] 1
+  [1] 1
+  [4] num_bytes
+  [15] addr
+end
+
+format
+  ! 0x1c istoret        /* write to memory, data from temp, address from regr won't increment */
+  % num_bytes
+  % reg
+  [5] opcode
+  [6] reg            /* hold address */
+  [1] 0
+  [1] 1
+  [4] num_bytes
+  [15] 0
+end
+
+format
+  ! 0x0d fetcht          /* read from memory, data into temp, address from immediate won't increment */
+  % num_bytes
+  % addr
+  [5] opcode
+  [6] 0               /* memory */
+  [1] 0
+  [1] 1
+  [4] num_bytes
+  [15] addr
+end
+
+format
+  ! 0x0d hfetcht          /* read from corereg, data into temp, address from immediate won't increment */
+  % num_bytes
+  % addr
+  [5] opcode
+  [6] 0               /* memory */
+  [1] 1
+  [1] 1
+  [4] num_bytes
+  [15] addr
+end
+
+format
+  ! 0x1d ifetcht         /* read from memory, data into temp, address from regr won't increment */
+  % num_bytes
+  % reg
+  [5] opcode
+  [6] reg             /* hold address */
+  [1] 0
+  [1] 1
+  [4] num_bytes
+  [15] 0
+end
+
+format
+  ! 0x0e jam
+  % immediate
+  % addr
+  [5] opcode
+  [3] 0
+  [16] addr
+  [8] immediate
+end
+
+format
+  ! 0x0e hjam
+  % immediate
+  % addr
+  [5] opcode
+  [3] 0
+  [1] 1   /* msb */
+  [15] addr
+  [8] immediate
+end
+
+format			/* 0x242... */
+  ! 4 nbranch
+  % addr
+  % flag
+  [5] opcode
+  [1] 1
+  [5] 1
+  [6] flag
+  [15] addr
+end
+
+format
+  ! 4 ncall
+  % addr
+  % flag
+  [5] opcode
+  [1] 1
+  [5] 2
+  [6] flag
+  [15] addr
+end
+
+format
+  ! 4 nrtn
+  % flag
+  [5] opcode
+  [1] 1
+  [5] 3
+  [6] flag
+  [15] 0
+end
+
+format
+  ! 4 nop
+  % addr  /* no-op for addr+2 clocks */
+  [5] opcode
+  [6] 0     
+  [6] 0     /* always */ 
+  [15] addr
+end
+
+format
+  ! 4 clear_stack
+  [5] opcode
+  [6] 4
+  [6] 0    /* always */
+  [15] 0
+end
+
+format
+  ! 6 until
+  % reg
+  % flag
+  [5] opcode
+  [6] reg
+  [6] flag
+  [6] 1
+  [9] 0
+end
+  
+format
+  ! 6 correlate   /* quit if 1. flag is true 2, regr time up 3, found sync,(cond_true) */
+  % reg          /* expire counter to check against */
+  % flag
+  [5] opcode
+  [6] reg
+  [6] flag
+  [6] 2           /* correlate */
+  [9] 0           
+end
+
+format
+  ! 5 compare   /* sets cond flag,  if reg equals immediate */
+  % immediate
+  % reg
+  % mask
+  [5] opcode
+  [6] reg
+  [3] 0
+  [9] mask
+  [9] immediate
+end
+
+format
+  ! 0x15 icompare   /* sets cond flag,  if reg equals pdata */
+  % mask
+  % reg
+  [5] opcode
+  [6] reg
+  [3] 0
+  [9] mask
+  [9] 0
+end
+
+format   /* sets cond. flag, if reg equals LS half of shift reg with MS half of reg being mask */
+  ! 5 iverify
+  % reg
+  [5] opcode
+  [6] reg
+  [3] 2
+  [18] 0
+end
+
+format
+  ! 0x15 qisolate1
+  % reg
+  [5] opcode
+  [6] reg
+  [3] 3
+  [18] -1
+end
+
+format
+  ! 0x15 qisolate0
+  % reg
+  [5] opcode
+  [6] reg
+  [3] 3
+  [18] 0
+end
+
+	/* REVAB bug: cannot access bit above 35 */
+format
+  ! 5 isolate1
+  % addr
+  % reg
+  [5] opcode
+  [6] reg
+  [3] 3
+  [9] -1
+  [9] addr
+end
+
+format
+  ! 5 isolate0
+  % addr
+  % reg
+  [5] opcode
+  [6] reg
+  [3] 3
+  [9] 0
+  [9] addr
+end
+
+format
+  ! 11 setarg
+  % immediate
+  [5] opcode
+  [27] immediate
+end
+
+format
+  ! 0x1b arg
+  % immediate
+  % reg
+  [5] opcode
+  [6] reg
+  [21] immediate
+end
+
+  
+format
+  ! 0 sleep
+  [5] opcode
+  [27] 0
+end
+
+format
+  ! 0 snooze
+  [5] opcode
+  [6] -1
+  [21] 0
+end
+
+format
+  ! 0 revision
+  % rev_num
+  [5] opcode
+  [27] rev_num
+end
+
+format
+  ! 0x18 loop   /* branch when loopcnt is NOT zero, and decrease loopcnt */
+  % addr
+  [5] opcode
+  [4] 4
+  [8] 0
+  [15] addr
+end
+
+format
+  ! 0x18 beq   /* branch when pdata is equal to immediate */
+  % imme
+  % addr
+  [5] opcode
+  [4] 0
+  [8] imme
+  [15] addr
+end
+
+format
+  ! 0x18 bne   /* branch when pdata is NOT equal to immediate */
+  % imme
+  % addr
+  [5] opcode
+  [4] 1
+  [8] imme
+  [15] addr
+end
+
+format
+  ! 0x18 rtneq   /* return when pdata is equal to immediate */
+  % imme
+  [5] opcode
+  [4] 2
+  [8] imme
+  [15] 0
+end
+
+format
+  ! 0x18 rtnne   /* return when pdata is NOT equal to immediate */
+  % imme
+  [5] opcode
+  [4] 3
+  [8] imme
+  [15] 0
+end
+
+format
+  ! 0x18 bbit1   /* branch when pdata's imme bit is 1 */
+  % imme
+  % addr
+  [5] opcode
+  [4] 5
+  [8] imme
+  [15] addr
+end
+
+format
+  ! 0x18 bbit0   /* branch when pdata's imme bit is 0 */
+  % imme
+  % addr
+  [5] opcode
+  [4] 6
+  [8] imme
+  [15] addr
+end
+
+format
+  ! 0x18 rtnbit1   /* return when pdata's imme bit is 0 */
+  % imme
+  [5] opcode
+  [4] 7
+  [8] imme
+  [15] 0
+end
+
+format
+  ! 0x18 rtnbit0   /* return when pdata's imme bit is 0 */
+  % imme
+  [5] opcode
+  [4] 8
+  [8] imme
+  [15] 0
+end
+
+format
+  ! 8	bpatch
+  % imme
+  % addr
+  [5] opcode
+  [4] 9
+  [8] imme
+  [15] addr
+end
+
+format
+  ! 0x18 bmark1   /* branch when mark's imme bit is 1 */
+  % imme
+  % addr
+  [5] opcode
+  [4] 10
+  [8] imme
+  [15] addr
+end
+
+format
+  ! 0x18 bmark0   /* branch when mark's imme bit is 0 */
+  % imme
+  % addr
+  [5] opcode
+  [4] 11
+  [8] imme
+  [15] addr
+end
+
+format
+  ! 0x18 rtnmark1   /* return when mark's imme bit is 0 */
+  % imme
+  [5] opcode
+  [4] 12
+  [8] imme
+  [15] 0
+end
+
+format
+  ! 0x18 rtnmark0   /* return when mark's imme bit is 0 */
+  % imme
+  [5] opcode
+  [4] 13
+  [8] imme
+  [15] 0
+end
+
+
+format
+  ! 3 mult                  /* immediate mult regr */  /* the product will be ready 17 clks later */
+  % immediate                                   /* use "product" instruction to get the result */
+  % reg
+  [5] opcode
+  [6] reg
+  [6] 16                   /* generate diven pulse to div */
+  [6] null
+  [9] immediate
+end
+
+format
+  ! 0x13 imult           /* pdata mult regr */  /* the product will be ready after 15 nops */
+  % reg                                         /* use product opcode to get the result */
+  [5] opcode
+  [6] reg
+  [6] 16                   /* generate mult pulse to multiplier */
+  [6] null
+  [9] 0
+end
+
+format
+  ! 3 mul32                  /* immediate mult regr */ 
+  % regr
+  % immediate                                  
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 31           
+  [6] regw
+  [9] immediate
+end
+
+format
+  ! 0x13 imul32           /* pdata mult regr 32x32=64bit */  
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 31                   
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 product              /* harvest mult product */
+  % regw
+  [5] opcode
+  [6] 0
+  [6] 17
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 byteswap
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 33
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 shasx          /* SHA256 Sx operation, immediate is Sx */
+  % regr
+  % immediate
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 28
+  [6] regw
+  [9] immediate
+end
+
+
+format
+  ! 0x13 regexrot 	/* regext[0] <- regext[7], regext[1] <- regext[0], regext[2] <- regext[1] ... */
+  [5] opcode
+  [6] 0
+  [6] 29
+  [6] null
+  [9] 0
+end
+
Index: btkb/format/dongle.format
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/btkb/format/dongle.format	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/btkb/format/dongle.format	(working copy)
@@ -0,0 +1,13 @@
+
+memalloc(
+1 mem_dongle_count
+6 mem_le_addr_slave1
+6 mem_le_addr_slave2
+1 mem_le_peer_state
+6 mem_app_peer_addr
+
+1 mem_dongle_peers
+1 mem_dongle_pairing_cnt
+2 mem_dongle_signature
+)
+160 context_3
Index: btkb/format/hci.format
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/btkb/format/hci.format	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/btkb/format/hci.format	(working copy)
@@ -0,0 +1,649 @@
+
+
+memalloc(
+1 mem_h5rx_ackcnt
+1 mem_check_err_acl_cont
+
+1 mem_rp_packets
+2 mem_packet_type
+
+2 mem_hci_sniff_conn_handle
+2 mem_hci_sniff_max_interval
+2 mem_hci_sniff_min_interval
+2 mem_hci_sniff_attempt
+2 mem_hci_sniff_timeout
+2 mem_voice_setting
+1 mem_retransmission_effort
+2 mem_sco_ptype
+3 mem_extm_uap_restore
+
+2 mem_h5rx_rptr
+1 mem_h5rx_ack
+1 mem_h5tx_ack
+2 mem_h5tx_rptr
+2 mem_h5tx_wptr
+2 mem_h5tx_free
+1 mem_h5rx_tmp
+1 mem_h5tx_seq
+
+2 mem_hci_acl_queue_wptr
+2 mem_hci_acl_queue_rptr
+2 mem_hci_acl_queue_end
+1 mem_hci_acl_queue_wcnt
+1 mem_hci_acl_cnt
+
+2 mem_hci_acl_tx_trigger_wptr //tx via uart
+
+
+1 mem_ucode_id_local
+8 mem_temp //8 bytes
+4 mem_timeup // 4 bytes
+4 mem_rega //4 bytes
+4 mem_regb //4 bytes
+3 mem_regc //3 bytes
+2 mem_contr //2 bytes
+2 mem_contw //2 bytes
+1 mem_ucode_id_remote
+1 mem_check_sum
+1 mem_ucode_temp
+1 mem_ucode_temp1
+1 mem_lock_in_enc//boolean
+
+1 mem_hci_disconn_reason
+
+1 mem_hci_curr_len
+2 mem_hci_curr_target 
+) 
+
+xmemalloc(
+
+2 mem_baud
+1 mem_hci_lt_rx_state
+)
+
+omemalloc(
+
+2 mem_acl_credits
+1 mem_allow_switch
+4 mem_hci_acl_queue_start	/*param_acl_pktcnt+2 byte*/
+4 mem_hci_wake_clk
+
+)
+15 hci_flag_rp
+//mem_hci_options bit map
+(
+0 hci_option_bcsp
+1 hci_option_h4
+2 hci_option_protocol2
+3 hci_option_protocol3
+4 hci_option_uart
+5 hci_option_usb
+6 hci_option_phy2
+7 hci_option_phy3
+)
+// UART baud rate @6MHz
+(
+0 uart_ctrl_bit_enable
+3 uart_ctrl_bit_slip_protocol
+
+)
+
+//bit map of core_uart_ctrl
+(
+
+)
+//bit map of core_uart_status
+(
+0 uart_status_tx_fifo_full
+1 uart_status_tx_fifo_empty
+2 uart_status_tx_busy
+3 uart_status_rx_fifo_empty
+
+)
+//HCI H4 LOG related
+(
+0x4850 mem_hci_log
+8 hci_log_size
+100 hci_log_cnt
+
+)
+//HCI H4 Packet TYPE
+(
+0x01 HCI_H4_TYPE_CMD
+0x02 HCI_H4_TYPE_ACL
+0x04 HCI_H4_TYPE_EVENT
+
+)
+// HCI command opcode group field values
+(
+0x01 HCI_OGF_LINK_CONTROL
+0x02 HCI_OGF_LINK_POLICY
+0x03 HCI_OGF_BASEBAND
+0x04 HCI_OGF_INFO
+0x05 HCI_OGF_STATUS
+0x06 HCI_OGF_TEST
+0x08 HCI_OGF_LOW_ENERGY
+0x3e HCI_OGF_LOGO_TESTING
+0x3f HCI_OGF_VENDOR_SPECIFIC
+)
+
+// HCI link control opcode command field values, OGF=1
+(
+0x01 HCI_INQUIRY 
+0x02 HCI_INQUIRY_CANCEL 
+0x03 HCI_PERIODIC_INQUIRY_MODE 
+0x04 HCI_EXIT_PERIODIC_INQUIRY_MODE 
+0x05 HCI_CREATE_CONNECTION 
+0x06 HCI_DISCONNECT 
+0x07 HCI_ADD_SCO_CONNECTION 
+0x08 HCI_CREATE_CONNECTION_CANCEL
+0x09 HCI_ACCEPT_CONNECTION 
+0x0A HCI_REJECT_CONNECTION 
+0x0B HCI_LINK_KEY_REQUEST_REPLY 
+0x0C HCI_LINK_KEY_REQUEST_NEGATIVE_REPLY 
+0x0D HCI_PIN_CODE_REQUEST_REPLY 
+0x0E HCI_PIN_CODE_REQUEST_NEGATIVE_REPLY 
+0x0F HCI_CHANGE_CONNECTION_PACKET_TYPE 
+0x11 HCI_AUTHENTICATION_REQUESTED 
+0x13 HCI_SET_CONNECTION_ENCRYPTION 
+0x15 HCI_CHANGE_CONNECTION_LINK_KEY 
+0x17 HCI_MASTER_LINK_KEY 
+0x19 HCI_REMOTE_NAME_REQUEST 
+0x1A HCI_REMOTE_NAME_REQUEST_CANCEL
+0x1B HCI_READ_REMOTE_SUPPORTED_FEATURES 
+0x1C HCI_READ_REMOTE_EXT_FEATURES 
+0x1D HCI_READ_REMOTE_VERSION_INFORMATION 
+0x1F HCI_READ_CLOCK_OFFSET 
+0x20 HCI_READ_LMP_HANDLE
+0x28 HCI_SETUP_SCO_CONNECTION
+0x29 HCI_ACCEPT_SCO_CONNECTION
+0x2A HCI_REJECT_SCO_CONNECTION
+0x2B HCI_IO_CAP_REQUEST_REPLY
+0x2C HCI_USER_CONFIRMATION_REQUEST_REPLY
+0x2D HCI_USER_CONFIRMATION_REQUEST_NEGATIVE_REPLY
+0x2E HCI_USER_PASSKEY_REQUEST_REPLY
+0x2F HCI_USER_PASSKEY_REQUEST_NEGATIVE_REPLY
+0x30 HCI_REMOTE_OOB_DATA_REQUEST_REPLY
+0x33 HCI_REMOTE_OOB_DATA_REQUEST_NEGATIVE_REPLY
+0x34 HCI_IO_CAPABILITY_REQUEST_NEGATIVE_REPLY
+0x35 HCI_CREATE_PHYSICAL_LINK
+0x36 HCI_ACCEPT_PHYSICAL_LINK
+0x37 HCI_DISCONNECT_PHYSICAL_LINK
+0x38 HCI_CREATE_LOGICAL_LINK
+0x39 HCI_ACCEPT_LOGICAL_LINK
+0x3A HCI_DISCONNECT_LOGICAL_LINK
+0x3B HCI_LOGICAL_LINK_CANCEL
+0x3C HCI_FLOW_SPEC_MODIFY
+0x3D HCI_ENHANCED_SETUP_SYNCHRONOUS_CONNECTION
+0x3E HCI_ENHANCED_ACCEPT_SYNCHRONOUS_CONNECTION_REQUEST
+0x3F HCI_TRUNCATED_PAGE
+0x40 HCI_TRUNCATED_PAGE_CANCEL
+0x41 HCI_SET_CONNECTIONLESS_SLAVE_BROADCAST
+0x42 HCI_SET_CONNECTIONLESS_SLAVE_BROADCAST_RECEIVE
+0x43 HCI_START_SYNCHRONIZATION_TRAIN
+0x44 HCI_RECEIVE_SYNCHRONIZATION_TRAIN
+0x45 HCI_REMOTE_OOB_EXTENDED_DATA_REQUEST_REPLY
+)
+
+
+// HCI link policy commands OCF value, OGF=2
+(
+0x01 HCI_HOLD_MODE 
+0x03 HCI_SNIFF_MODE 
+0x04 HCI_EXIT_SNIFF_MODE 
+0x05 HCI_PARK_MODE 
+0x06 HCI_EXIT_PARK_MODE 
+0x07 HCI_QOS_SETUP 
+0x09 HCI_ROLE_DISCOVERY 
+0x0B HCI_SWITCH_ROLE 
+0x0C HCI_READ_LINK_POLICY_SETTINGS 
+0x0D HCI_WRITE_LINK_POLICY_SETTINGS 
+0x0e HCI_READ_DEFAULT_LINK_POLICY_SETTINGS
+0x0f HCI_WRITE_DEFAULT_LINK_POLICY_SETTINGS
+0x10 HCI_FLOW_SPECIFICATION
+0x11 HCI_SNIFF_SUBRATING
+)
+
+// HCI host controller and baseband commands OCF values, OGF=3
+(
+0x01 HCI_SET_EVENT_MASK 
+0x03 HCI_RESET 
+0x05 HCI_SET_EVENT_FILTER 
+0x08 HCI_FLUSH 
+0x09 HCI_READ_PIN_TYPE 
+0x0A HCI_WRITE_PIN_TYPE 
+0x0B HCI_CREATE_NEW_UNIT_KEY 
+0x0D HCI_READ_STORED_LINK_KEY 
+0x11 HCI_WRITE_STORED_LINK_KEY 
+0x12 HCI_DELETE_STORED_LINK_KEY 
+0x13 HCI_WRITE_LOCAL_NAME 
+0x14 HCI_READ_LOCAL_NAME 
+0x15 HCI_READ_CONN_ACCEPT_TIMEOUT 
+0x16 HCI_WRITE_CONN_ACCEPT_TIMEOUT 
+0x17 HCI_READ_PAGE_TIMEOUT 
+0x18 HCI_WRITE_PAGE_TIMEOUT 
+0x19 HCI_READ_SCAN_ENABLE 
+0x1A HCI_WRITE_SCAN_ENABLE 
+0x1B HCI_READ_PAGE_SCAN_ACTIVITY 
+0x1C HCI_WRITE_PAGE_SCAN_ACTIVITY 
+0x1D HCI_READ_INQUIRY_SCAN_ACTIVITY 
+0x1E HCI_WRITE_INQUIRY_SCAN_ACTIVITY 
+0x1F HCI_READ_AUTHENTICATION_ENABLE 
+0x20 HCI_WRITE_AUTHENTICATION_ENABLE 
+0x21 HCI_READ_ENCRYPTION_MODE 
+0x22 HCI_WRITE_ENCRYPTION_MODE 
+0x23 HCI_READ_CLASS_OF_DEVICE 
+0x24 HCI_WRITE_CLASS_OF_DEVICE 
+0x25 HCI_READ_VOICE_SETTING 
+0x26 HCI_WRITE_VOICE_SETTING 
+0x27 HCI_READ_AUTOMATIC_FLUSH_TIMEOUT 
+0x28 HCI_WRITE_AUTOMATIC_FLUSH_TIMEOUT 
+0x29 HCI_READ_NUM_BROADCAST_RETRANSMISSIONS 
+0x2A HCI_WRITE_NUM_BROADCAST_RETRANSMISSIONS 
+0x2B HCI_READ_HOLD_MODE_ACTIVITY 
+0x2C HCI_WRITE_HOLD_MODE_ACTIVITY 
+0x2D HCI_READ_TRANSMIT_POWER_LEVEL 
+0x2E HCI_READ_SCO_FLOW_CONTROL_ENABLE 
+0x2F HCI_WRITE_SCO_FLOW_CONTROL_ENABLE 
+0x31 HCI_SET_CONTROLLER_TO_HOST_FLOW_CONTROL 
+0x33 HCI_HOST_BUFFER_SIZE 
+0x35 HCI_HOST_NUM_COMPLETED_PACKETS 
+0x36 HCI_READ_LINK_SUPERVISION_TIMEOUT 
+0x37 HCI_WRITE_LINK_SUPERVISION_TIMEOUT 
+0x38 HCI_READ_NUMBER_OF_SUPPORTED_IAC 
+0x39 HCI_READ_CURRENT_IAC_LAP 
+0x3A HCI_WRITE_CURRENT_IAC_LAP 
+0x3B HCI_READ_PAGE_SCAN_PERIOD_MODE 
+0x3C HCI_WRITE_PAGE_SCAN_PERIOD_MODE 
+0x3D HCI_READ_PAGE_SCAN_MODE 
+0x3E HCI_WRITE_PAGE_SCAN_MODE 
+0x3F HCI_SET_AFH_CHANNEL_CLASSIFICATION 
+
+
+0x42 HCI_READ_INQUIRY_SCAN_TYPE 
+0x43 HCI_WRITE_INQUIRY_SCAN_TYPE 
+0x44 HCI_READ_INQUIRY_MODE 
+0x45 HCI_WRITE_INQUIRY_MODE 
+0x46 HCI_READ_PAGE_SCAN_TYPE 
+0x47 HCI_WRITE_PAGE_SCAN_TYPE 
+
+0x48 HCI_READ_AFH_CHANNEL_ACCESSMENT_MODE 
+0x49 HCI_WRITE_AFH_CHANNEL_ACCESSMENT_MODE 
+0x51 HCI_READ_EXTENDED_INQUIRY_RESPONSE
+0x52 HCI_WRITE_EXTENDED_INQUIRY_RESPONSE
+0x53 HCI_REFRESH_ENCRYPTION_KEY
+0x55 HCI_READ_SIMPLE_PAIRING_MODE
+0x56 HCI_WRITE_SIMPLE_PAIRING_MODE
+0x57 HCI_READ_LOCAL_OOB_DATA
+0x58 HCI_READ_INQUIRY_RESPONSE_TRANSMIT_POWER_LEVEL
+0x59 HCI_WRITE_INQUIRY_TRANSMIT_POWER_LEVEL
+0x60 HCI_SEND_KEYPRESS_NOTIFICATION
+0x5A HCI_READ_DEFAULT_ERRONEOUS_DATA_REPORTING
+0x5B HCI_WRITE_DEFAULT_ERRONEOUS_DATA_REPORTING
+0x5F HCI_ENHANCED_FLUSH
+0x61 HCI_READ_LOGICAL_LINK_ACCEPT_TIMEOUT
+0x62 HCI_WRITE_LOGICAL_LINK_ACCEPT_TIMEOUT
+0x63 HCI_SET_EVENT_MASK_PAGE_2
+0x64 HCI_READ_LOCATION_DATA
+0x65 HCI_WRITE_LOCATION_DATA
+0x66 HCI_READ_FLOW_CONTROL_MODE
+0x67 HCI_WRITE_FLOW_CONTROL_MODE
+0x68 HCI_READ_ENHANCE_TRANSMIT_POWER_LEVEL
+0x69 HCI_READ_BEST_EFFORT_FLUSH_TIMEOUT
+0x6A HCI_WRITE_BEST_EFFORT_FLUSH_TIMEOUT
+0x6B HCI_SHORT_RANGE_MODE
+0x6C HCI_READ_LE_HOST_SUPPORT
+0x6D HCI_WRITE_LE_HOST_SUPPORT
+0x6E HCI_SET_MWS_CHANNEL_PARAMETERS
+0x6F HCI_SET_EXTERNAL_FRAME_CONFIGURATION
+0x70 HCI_SET_MWS_SIGNALING
+0x71 HCI_SET_MWS_TRANSPORT_LAYER
+0x72 HCI_SET_MWS_SCAN_FREQUENCY_TABLE
+0x73 HCI_SET_MWS_PATTERN_CONFIGURATION
+0x74 HCI_SET_RESERVED_LT_ADDR
+0x75 HCI_DELETE_RESERVED_LT_ADDR
+0x76 HCI_SET_CONNECTIONLESS_SLAVE_BROADCAST_DATA
+0x77 HCI_READ_SYNCHRONIZATION_TRAIN_PARAMETERS
+0x78 HCI_WRITE_SYNCHRONIZATION_TRAIN_PARAMETERS
+0x79 HCI_READ_SECURE_CONNECTIONS_HOST_SUPPORT
+0x7A HCI_WRITE_SECURE_CONNECTIONS_HOST_SUPPORT
+0x7B HCI_READ_AUTHENTICATED_PAYLOAD_TIMEOUT
+0x7C HCI_WRITE_AUTHENTICATED_PAYLOAD_TIMEOUT
+0x7D HCI_READ_LOCAL_OOB_EXTENDED_DATA
+0x7E HCI_READ_EXTENDED_PAGE_TIMEOUT
+0x7F HCI_WRITE_EXTENDED_PAGE_TIMEOUT
+0x80 HCI_READ_EXTENDED_INQUIRY_LENGTH
+0x81 HCI_WRITE_EXTENDED_INQUIRY_LENGTH
+)
+
+
+// HCI informational parameters OCF values, OGF=4
+(
+0x01 HCI_READ_LOCAL_VERSION_INFORMATION 
+0x02 HCI_READ_LOCAL_SUPPORTED_COMMANDS
+0x03 HCI_READ_LOCAL_SUPPORTED_FEATURES 
+0x04 HCI_READ_LOCAL_EXT_FEATURES 
+0x05 HCI_READ_BUFFER_SIZE 
+0x07 HCI_READ_COUNTRY_CODE 
+0x09 HCI_READ_BD_ADDR 
+0x0A HCI_REJECT_CONNECTION_REQUEST
+0x0B HCI_READ_LOCAL_SUPPORTED_CODECS
+)
+
+// HCI status parameters OCF values, OGF=5
+(
+0x01 HCI_READ_FAILED_CONTACT_COUNTER 
+0x02 HCI_RESET_FAILED_CONTACT_COUNTER 
+0x03 HCI_GET_LINK_QUALITY 
+0x05 HCI_READ_RSSI 
+0x06 HCI_READ_AFH_CHANNEL_MAP
+0x07 HCI_READ_BD_CLOCK
+0x08 HCI_READ_ENCRYPTION_KEY_SIZE
+0x09 HCI_READ_LOCAL_AMP_INFO
+0x0A HCI_READ_LOCAL_AMP_ASSOC
+0x0B HCI_WRITE_REMOTE_AMP_ASSOC
+0x0C HCI_GET_MWS_TRANSPORT_LAYER_CONFIGURATION
+0x0D HCI_SET_TRIGGERED_CLOCK_CAPTURE
+)
+
+// HCI testing command OCF values, OGF=6
+(
+0x01 HCI_READ_LOOPBACK_MODE 
+0x02 HCI_WRITE_LOOPBACK_MODE 
+0x03 HCI_ENABLE_DEVICE_UNDER_TEST_MODE 
+0x04 HCI_WRITE_SIMPLE_PAIRING_DEBUG_MODE
+0x07 HCI_ENABLE_AMP_RECEIVER_REPORTS
+0x08 HCI_AMP_TEST_END
+0x09 HCI_AMP_TEST
+0x0A HCI_WRITE_SECURE_CONNECTIONS_TEST_MODE
+)
+
+// HCI vendor specific command OCF values -OGF=3F
+(
+0x01 HCI_WRITE_BD_ADDR 
+0x02 HCI_READ_INQUIRY_RESPONSE_TIMEOUT 
+0x03 HCI_WRITE_INQUIRY_RESPONSE_TIMEOUT 
+0x04 HCI_READ_PAGE_SCAN_REPETITION_MODE 
+0x05 HCI_WRITE_PAGE_SCAN_REPETITION_MODE 
+0x06 HCI_READ_PAGE_RESPONSE_TIMEOUT 
+0x07 HCI_WRITE_PAGE_RESPONSE_TIMEOUT 
+0x08 HCI_READ_NEW_CONNECTION_TIMEOUT 
+0x09 HCI_WRITE_NEW_CONNECTION_TIMEOUT 
+0x0a HCI_INITIALIZE_BASEBAND 
+0x0b HCI_WRITE_LOCAL_SUPPORTED_FEATURES 
+0x0c HCI_WRITE_PARK_PARAMETERS 
+0x0d HCI_READ_PARK_PARAMETERS 
+0x0e HCI_WRITE_QUALITY_OF_SERVICE 
+0x0f HCI_NOT_USED 
+0x10 HCI_MODIFY_BEACON_PARAMETERS 
+0x11 HCI_UNPARK_USING_PM_ADDR 
+0x12 HCI_WRITE_HOPPING_CHANNELS 
+0x13 HCI_SLEEP_FOREVER_MODE 
+0x14 HCI_WRITE_AUTO_PAGE_SCAN_ENABLE 
+0x15 HCI_READ_AUTO_PAGE_SCAN_ENABLE 
+0x16 HCI_SET_ENCRYPTION_KEY_SIZE 
+0x17 HCI_INVALIDATE_FLASH_AND_REBOOT 
+0x18 HCI_UPDATE_UART_BAUD_RATE 
+0x19 HCI_WRITE_GPIO_1_4_AS_OUTPUT 
+0x1A HCI_WRITE_GPIO_2_LED 
+0x1B HCI_SET_TESTMODE_TYPE 
+0x1C HCI_WRITE_SCO_PCM_INT_PARAM 
+0x1D HCI_READ_SCO_PCM_INT_PARAM 
+0x1E HCI_WRITE_PCM_DATA_FORMAT_PARAM 
+0x1F HCI_READ_PCM_DATA_FORMAT_PARAM 
+0x20 HCI_WRITE_COMFORT_NOISE_PARAM 
+0x21 HCI_READ_COMFORT_NOISE_PARAM 
+0x22 HCI_WRITE_SCO_TS 
+0x23 HCI_READ_SCO_TS 
+0x24 HCI_WRITE_PCM_LOOPBACK_MODE 
+0x25 HCI_READ_PCM_LOOPBACK_MODE 
+0x26 HCI_SET_TRANSMIT_POWER 
+0x27 HCI_SET_SLEEPMODE_PARAM 
+0x28 HCI_READ_SLEEPMODE_PARAM 
+0x29 HCI_SLEEPMODE_CMD 
+0x2A HCI_DELAY_PERIPHERAL_SCO_STARTUP 
+0x2B HCI_WRITE_RECEIVE_ONLY 
+0x2C HCI_WRITE_RATE_CONTROL 
+0x2D HCI_TX_UNMOD_CARRIER 
+0x2E HCI_DOWNLOAD_MINIDRIVER 
+0x2F HCI_CRYSTAL_PPM 
+0x30 HCI_SET_POWER_AMP_BIAS 
+0x31 HCI_SET_HAM_BEHAVIOR 
+0x32 HCI_SET_AFH_BEHAVIOR 
+0x33 HCI_READ_USER_DEFINED_NVRAM 
+0x34 HCI_ENABLE_RADIO 
+0x35 HCI_READ_DIAGNOSTIC_INFO 
+0x36 HCI_GET_HID_DEVICE_LIST 
+0x37 HCI_ADD_HID_DEVICE 
+0x38 HCI_READ_APP_FW_CONFIG_VERSION 
+0x39 HCI_DELETE_HID_DEVICE 
+0x3B HCI_ENABLE_USB_HID_EMULATION 
+// 0x3A available
+// 0x3B available
+0x3C HCI_SEND_LMPDU 
+0x3D HCI_AUTO_PAIR_REQ 
+0x3E HCI_READ_VS_EXTENSION 
+0x3F HCI_WRITE_VS_EXTENSION 
+
+0x77 HCI_OPCODE_FC77
+0x79 HCI_OPCODE_FC79
+0xC4 HCI_DOWNLOAD_PATCH
+0xCC HCI_OPCODE_FCCC
+
+0x00 HCI_VENDOR_CMD_RESET
+0x01 HCI_VENDOR_CMD_CHIPID
+0x02 HCI_VENDOR_CMD_BAUD
+0x03 HCI_VENDOR_CMD_PATCH
+0x04 HCI_VENDOR_CMD_PATCH_DONE
+0x05 HCI_VENDOR_CMD_ECHO
+0x06 HCI_VENDOR_CMD_BDADDR
+
+0x07 HCI_VENDOR_CMD_ENTER_LPM
+0x08 HCI_VENDOR_CMD_COMMU_READY
+
+0x10 HCI_VENDOR_CMD_MEM
+0x11 HCI_VENDOR_CMD_EEP
+)
+
+//HCI LE controller command OCF values, OGF=8
+(
+0x01 HCI_LE_SET_EVENT_MASK
+0x02 HCI_LE_READ_BUFFER_SIZE
+0x03 HCI_LE_READ_LOCAL_SUPPORTED_FEATURES
+0x05 HCI_LE_SET_RANDOM_ADDRESS
+0x06 HCI_LE_SET_ADVERTISING_PARAMETERS
+0x07 HCI_LE_READ_ADVERTISING_CHANNEL_TX_POWER
+0x08 HCI_LE_SET_ADVERTISING_DATA
+0x09 HCI_LE_SET_SCAN_RESPONSE_DATA
+0x0A HCI_LE_SET_ADVERTISE_ENABLE
+0x0B HCI_LE_SET_SCAN_PARAMETERS
+0x0C HCI_LE_SET_SCAN_ENABLE
+0x0D HCI_LE_CREATE_CONNECTION
+0x0E HCI_LE_CREATE_CONNECTION_CANCEL
+0x0F HCI_LE_READ_WHITE_LIST_SIZE
+0x10 HCI_LE_CLEAR_WHITE_LIST
+0x11 HCI_LE_ADD_DEVICE_TO_WHITE_LIST
+0x12 HCI_LE_REMOVE_DEVICE_FROM_WHITE_LIST
+0x13 HCI_LE_CONNECTION_UPDATE
+0x14 HCI_LE_SET_HOST_CHANNEL_CLASSIFICATION
+0x15 HCI_LE_READ_CHANNEL_MAP
+0x16 HCI_LE_READ_REMOTE_USED_FEATURES
+0x17 HCI_LE_ENCRYPT
+0x18 HCI_LE_RAND
+0x19 HCI_LE_START_ENCRYPTION
+0x1A HCI_LE_LONG_TERM_KEY_REQUEST_REPLY
+0x1B HCI_LE_LONG_TERM_KEY_REQUEST_NEGATIVE_REPLY
+0x1C HCI_LE_READ_SUPPORTED_STATES
+0x1D HCI_LE_RECEIVER_TEST
+0x1E HCI_LE_TRANSMITTER_TEST
+0x1F HCI_LE_TEST_END
+0x20 HCI_LE_REMOTE_CONNECTION_PARAMETER_REQUEST_REPLY
+0x21 HCI_LE_REMOTE_CONNECTION_PARAMETER_REQUEST_NEGATIVE_REPLY
+)
+// HCI event code
+(
+0x01 HCI_EVENT_INQUIRY_COMPLETE
+0x02 HCI_EVENT_INQUIRY_RESULT
+0x03 HCI_EVENT_CONNECTION_COMPLETE
+0x04 HCI_EVENT_CONNECTION_REQUEST
+0x05 HCI_EVENT_DISCONNECTION_COMPLETE
+0x06 HCI_EVENT_AUTHENTICATION_COMPLETE
+0x07 HCI_EVENT_REMOTE_NAME_REQUEST_COMPLETE
+0x08 HCI_EVENT_ENCRYPTION_CHANGE_COMPLETE
+0x09 HCI_EVENT_CHANGE_CONNECTION_LINK_KEY_COMPLETE
+0x0A HCI_EVENT_MASTER_LINK_KEY_COMPLETE
+0x0B HCI_EVENT_READ_REMOTE_FEATURES_COMPLETE
+0x0C HCI_EVENT_READ_REMOTE_VERSION_INFORMATION_COMPLETE
+0x0D HCI_EVENT_QOS_SETUP_COMPLETE
+0x0E HCI_EVENT_COMMAND_COMPLETE
+0x0F HCI_EVENT_COMMAND_STATUS
+0x10 HCI_EVENT_HARDWARE_ERROR
+0x11 HCI_EVENT_FLUSH_OCCURRED
+0x12 HCI_EVENT_ROLE_CHANGE
+0x13 HCI_EVENT_NUM_COMPLETED_PACKETS
+0x14 HCI_EVENT_MODE_CHANGE
+0x15 HCI_EVENT_RETURN_LINK_KEYS
+0x16 HCI_EVENT_PIN_CODE_REQUEST
+0x17 HCI_EVENT_LINK_KEY_REQUEST
+0x18 HCI_EVENT_LINK_KEY_NOTIFICATION
+0x19 HCI_EVENT_LOOPBACK_COMMAND
+0x1A HCI_EVENT_DATA_BUFFER_OVERFLOW
+0x1B HCI_EVENT_MAX_SLOTS_CHANGE
+0x1C HCI_EVENT_READ_CLOCK_OFFSET_COMPLETE
+0x1D HCI_EVENT_CONNECTION_PACKET_TYPE_CHANGED
+0x1E HCI_EVENT_QOS_VIOLATION
+0x1F HCI_EVENT_PAGE_SCAN_MODE_CHANGE
+0x20 HCI_EVENT_PAGE_SCAN_REPETITION_MODE_CHANGE
+0x21 HCI_EVENT_FLOW_SPECIFICATION_COMPLETE
+0x22 HCI_EVENT_INQUIRY_RESULT_WITHRSSI
+0x23 HCI_EVENT_READ_REMOTE_EXT_FEATURES_COMPLETE
+0x2C HCI_EVENT_SCO_CONNECTION_COMPLETE
+0x2D HCI_EVENT_SCO_CONNECTION_CHANGED
+0x2E HCI_EVENT_SNIFF_SUBRATING
+0x2F HCI_EVENT_EXT_INQUIRY_RESULT
+0x30 HCI_EVENT_ENCRYPT_KEY_REFRESH_COMPLETE
+0x31 HCI_EVENT_IO_CAP_REQ
+0x32 HCI_EVENT_IO_CAP_RESPONSE
+0x33 HCI_EVENT_USER_CONFIRMATION_REQUEST
+0x34 HCI_EVENT_UESR_PASSKEY_REQUEST
+0x35 HCI_EVENT_REMOTE_OOB_DATA_REQUEST
+0x36 HCI_EVENT_SIMPLE_PAIRING_COMPLETE
+0x38 HCI_EVENT_LINK_SUPERVISION_TIMEOUT_CHANGED
+0x39 HCI_EVENT_ENHANCED_FLUSH_COMPLETE
+0x3B HCI_EVENT_USER_PASSKEY_NOTIFICATION
+0x3C HCI_EVENT_KEYPRESS_NOTIFICATION
+0x3D HCI_EVENT_REMOTE_HOST_SUPPORTED_FEATURES_NOTIFICATION 
+0x3E HCI_EVENT_LE_META_EVENT
+0x40 HCI_EVENT_PHYSICAL_LINK_COMPLETE
+0x41 HCI_EVENT_CHANNEL_SELECTED
+0x42 HCI_EVENT_DISCONNECTION_PHYSICAL_LINK_COMPLETE
+0x43 HCI_EVENT_PHYSICAL_LINK_LOSS_EARLY_WARNING
+0x44 HCI_EVENT_PHYSICAL_LINK_RECOVERY
+0x45 HCI_EVENT_LOGICAL_LINK_COMPLETE
+0x46 HCI_EVENT_DISCONNECTION_LOGICAL_LINK_COMPLETE
+0x47 HCI_EVENT_FLOW_SPEC_MODIFY_COMPLETE
+0x48 HCI_EVENT_NUMBER_OF_COMPLETED_DATA_BLOCKS
+0x49 HCI_EVENT_AMP_START_TEST
+0x4A HCI_EVENT_AMP_TEST_END
+0x4B HCI_EVENT_AMP_RECEIVER_REPORT
+0x4C HCI_EVENT_SHORT_RANGE_MODE_CHANGE_COMPLETE
+0x4D HCI_EVENT_AMP_STATUS_CHANGE
+0x4E HCI_EVENT_TRIGGERED_CLOCK_CAPTURE
+0x4F HCI_EVENT_SYNCHRONIZATION_TRAIN_COMPLETE
+0x50 HCI_EVENT_SYNCHRONIZATION_TRAIN_RECEIVED
+0x51 HCI_EVENT_CONNECTIONLESS_SLAVE_BROADCAST_RECEIVE
+0x52 HCI_EVENT_CONNECTIONLESS_SLAVE_BROADCAST_TIMEOUT
+0x53 HCI_EVENT_TRUNCATED_PAGE_COMPLETE
+0x54 HCI_EVENT_SLAVE_PAGE_RESPONSE_TIMEOUT
+0x55 HCI_EVENT_CONNECTIONLESS_SLAVE_BROADCAST_CHANNEL_MAP_CHANGE
+0x56 HCI_EVENT_INQUIRY_RESPONSE_NOTIFICATION
+0x57 HCI_EVENT_AUTHENTICATED_PAYLOAD_TIMEOUT_EXPIRED
+
+0xFE HCI_EVENT_LOGO_TESTING
+0xFF HCI_EVENT_VENDOR_SPECIFIC
+)
+(
+0x01 HCI_VENDOR_EVENT_COMMU_READY
+)
+//HCI LE SUBEVENT CODE
+(
+0x01 HCI_LE_SUBEVENT_CONN_COMPLETE
+0x02 HCI_LE_SUBEVENT_ADV_REPORT
+0x03 HCI_LE_SUBEVENT_CONN_UPDATE_COMPLETE
+0x04 HCI_LE_SUBEVENT_REMOTE_FEATURE_COMPLETE
+0x05 HCI_LE_SUBEVENT_LTK_REQUEST
+0x06 HCI_LE_SUBEVENT_REMOTE_CONN_PARAM_REQ
+)
+//HCI ErrorCodes
+(    
+0x00 HCI_SUCCESS
+0x01 HCI_ERROR_UNKNOWN_HCI_COMMAND
+0x02 HCI_ERROR_NO_CONNECTION
+0x03 HCI_ERROR_HARDWARE_FAILURE
+0x04 HCI_ERROR_PAGE_TIMEOUT
+0x05 HCI_ERROR_AUTHENTICATION_FAILURE
+0x06 HCI_ERROR_KEY_MISSING
+0x07 HCI_ERROR_MEMORY_FULL
+0x08 HCI_ERROR_CONNECTION_TIMEOUT
+0x09 HCI_ERROR_MAX_CONNECTIONS
+0x0A HCI_ERROR_MAX_SCO_CONNECTIONS
+0x0B HCI_ERROR_MAX_ACL_CONNECTIONS
+0x0C HCI_ERROR_COMMAND_DISALLOWED
+0x0D HCI_ERROR_HOST_REJECT_LIMITED_RESOURCES
+0x0E HCI_ERROR_HOST_REJECT_SECURITY_REASONS
+0x0F HCI_ERROR_HOST_REJECT_REMOTE_IS_ONLY_PERSONAL
+0x10 HCI_ERROR_HOST_TIMEOUT
+0x11 HCI_ERROR_UNSUPPORTED_FEATURE_OR_PARAMETER_VALUE
+0x12 HCI_ERROR_INVALID_HCI_COMMAND_PARAMETERS
+0x13 HCI_ERROR_REMOTE_USER_ENDED_CONNECTION
+0x14 HCI_ERROR_REMOTE_LOW_RESOURCES
+0x15 HCI_ERROR_REMOTE_POWERING_OFF
+0x16 HCI_ERROR_CONNECTION_TERMINATED_BY_LOCAL_HOST
+0x17 HCI_ERROR_REPEATED_ATTEMPTS
+0x18 HCI_ERROR_PAIRING_NOT_ALLOWED
+0x19 HCI_ERROR_UNKNOWN_LMP_PDU
+0x1A HCI_ERROR_UNSUPPORTED_REMOTE_FEATURE
+0x1B HCI_ERROR_SCO_OFFSET_REJECTED
+0x1C HCI_ERROR_SCO_INTERVAL_REJECTED
+0x1D HCI_ERROR_SCO_AIR_MODE_REJECTED
+0x1E HCI_ERROR_INVALID_LMP_PARAMETER
+0x1F HCI_ERROR_UNSPECIFIED_ERROR
+0x20 HCI_ERROR_UNSUPPORTED_LMP_PARAMETER_VALUE
+0x21 HCI_ERROR_ROLE_CHANGE_NOT_ALLOWD
+0x22 HCI_ERROR_LMP_RESPONSE_TIMEOUT
+0x23 HCI_ERROR_ERROR_TRANSACTION_COLLISION
+0x24 HCI_ERROR_LMP_PDU_NOT_ALLOWED
+0x25 HCI_ERROR_ENCRYPTION_MODE_NOT_ACCEPTABLE
+0x26 HCI_ERROR_UNIT_KEY_USED
+0x27 HCI_ERROR_QOS_NOT_SUPPORTED
+0x28 HCI_ERROR_INSTANT_PASSED
+0x29 HCI_ERROR_PAIRING_W_UNIT_KEY_NOT_SUPPORTED
+0x2a HCI_ERROR_DIFFERENT_TRANSACTION_COLLISION
+0x2c HCI_ERROR_QOS_UNACCEPTABLE_PARAMETER
+0x2d HIC_ERROR_QOS_REJECTED
+0x2e HIC_ERROR_CHANNEL_CLASSIFICATION_NOT_SUPPORTED
+0x2f HIC_ERROR_INSUFFICIENT_SECURITY
+0x30 HIC_ERROR_PARAMETER_OUT_OF_MANDATORY_PANGE
+0x32 HIC_ERROR_ROLE_SWITCH_PENDING
+0x34 HIC_ERROR_RESERVED_SLOT_VIOLATION
+0x35 HIC_ERROR_ROLE_SWITCH_FAILED
+0x36 HIC_ERROR_EXTENDED_INQUIRY_RESPONSE_TOO_LARGE
+0x37 HIC_ERROR_SIMPLE_PAIRING_NOT_SUPPORTED_BY_HOST
+0x38 HIC_ERROR_HOST_BUSY_PAIRING
+)
+
+(
+0x00 HCI_LPM_OFF
+0x01 HCI_LPM_ON
+)
+
+
+(
+33 HOST_WAKE_TIME
+)
+
+(
+1 HCI_RX_WAKE
+0 HCI_RX_READY
+)
+
Index: btkb/format/keyboard.format
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/btkb/format/keyboard.format	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/btkb/format/keyboard.format	(working copy)
@@ -0,0 +1,337 @@
+
+omemalloc(
+//Keyboard Work Area
+2 mem_kb_state
+6 mem_kb_report_data
+1 mem_kb_keys
+1 mem_kb_rcv_led_data
+4 mem_kb_fast_wake_last
+//Keyboard Config Area
+1 mem_led_cap_gpio
+1 mem_led_num_gpio
+1 mem_led_scl_gpio
+0 mem_kb_map
+630 mem_kb_uuid_list
+
+// patch area
+10 mem_24g_paring_tx_power_param
+10 mem_5db_tx_power_param
+
+//c51
+1 mem_current_event
+1 mem_ipc_lock_rx_data_bt
+1 mem_ipc_lock_rx_data_c51
+1 mem_ipc_lock_tx_data_bt
+1 mem_ipc_lock_tx_data_c51
+
+
+150 mem_ipc_2bt_fifo_head
+0	mem_ipc_2bt_fifo_end
+100 mem_ipc_2C51_fifo_head
+0	mem_ipc_2C51_fifo_end
+2	mem_ipc_2bt_read_index
+2	mem_ipc_2bt_write_index
+2	mem_ipc_2C51_read_index
+2	mem_ipc_2C51_write_index
+
+2 mem_ipc_tx_evt_buff
+1 mem_ipc_tx_evt
+
+2 mem_ipc_bt_timer
+1 mem_ipc_rx_type
+
+1 mem_queue_ele_num
+2 mem_queue_write
+2 mem_queue_read
+0 mem_queue_start
+12 mem_uart_packet
+12 mem_data_ele0
+12 mem_data_ele1
+12 mem_data_ele2
+0 mem_queue_end
+2 mem_queue_temp
+
+
+// patch allocated
+1 mem_24g_rxdata_length
+1 mem_24g_pid
+1 mem_24g_datalen
+1 mem_24g_data_type
+1 mem_24g_txlen
+2 mem_24g_rx_window
+1 mem_24g_ensure
+1 mem_24g_get_ack_fail
+1 mem_24g_retry
+1 mem_24g_ch
+1 mem_24g_current_ch_number
+4 mem_24g_paring_addr
+1 mem_24g_pairing_sm
+4 mem_24g_ch_map1
+4 mem_24g_ch_map2
+4 mem_24g_ch_map3
+4 mem_24g_ch_map4
+4 mem_24g_addr
+2 mem_24g_check_dongle_times
+4 mem_24g_device_addr
+1 mem_24g_no_ack
+
+
+1 mem_24g_enter_lpm_timer
+2 mem_24g_syncword
+1 mem_24g_syncword_crc8
+1 mem_24g_get_syncword_crc8
+
+1 mem_rssi_hex_received
+8 mem_rssi_signal_buf
+8 mem_rssi_noise_buf
+1 mem_rssi_noise_index
+1 mem_rssi_signal_index
+
+1 mem_last_txlch
+2 mem_last_txlen
+20 mem_last_txdata
+
+//le
+4 mem_ipc_last_check_timer
+2 mem_ipc_c51_timer
+1 mem_le_rx_window
+2 mem_le_find_type_value_start_handle
+2 mem_le_find_type_value_end_handle
+2 mem_le_cur_att_type
+1 mem_le_search_len
+1 mem_le_ll_unknown_type
+1 mem_le_pairing_state
+2 mem_le_local_mtu
+16 mem_le_connection_updata_param
+1 mem_ltk_states
+1 mem_pair_state
+1 mem_empty_count
+1 mem_shutter_find_type_value_flag
+
+1 mem_le51_payload_len
+1 mem_le51_cmd
+
+1 mem_le51_tx_length
+1 mem_le51_txbuff_inuse
+9 mem_le51_txbuf
+
+1 mem_ipc_bt_100ms_timer
+1 mem_ipc_c51_100ms_timer
+
+1 mem_adc_config_flag
+1 mem_adc_channel
+2 mem_adc_0v
+2 mem_adc_3v
+2 mem_adc_current_value
+
+1 mem_hibernate_flag
+2 mem_new_supervision_to
+1 mem_kb_wake_timer
+20 mem_kb_last_data
+
+1 mem_power_on_flag
+1 mem_caps_num_lock
+2 mem_att_report_standard_key
+2 mem_att_report_media_key
+2 mem_att_report_system_ctrl
+2 mem_att_report_battery
+2 mem_att_report_game
+2 mem_att_report_mouse
+
+1 mem_suspend_flag
+120 mem_32asm_data_end
+1 mem_store_ltk_timer
+1 mem_reconnect_continue
+4 mem_le_pin_code
+1 mem_le_send_security_request_flag
+
+4 mem_24g_enter_hibernate
+1 mem_24g_txfail_cnt
+1 mem_mouse_retry_flag
+1 mem_24g_led_flag
+4 mem_ui_timer_last_btclk_temp
+4 mem_ui_check_timer_setup
+2 mem_customize_timer_setup
+1 mem_customize_timer
+1 mem_ios_mode_flag
+4 mem_version_yy_mm_dd
+20 mem_24g_txbuf_new
+7 mem_le_adv_swift_pair
+4 mem_24g_enter_hibernate_setup
+4 mem_24g_enter_hibernate_max
+3 mem_24g_short_sleep_counter
+1 mem_pc_sleep_flag
+
+)
+
+//C51 synchronous task
+(
+3 START_C51_CORE
+)
+
+(
+0 ADC_CONFIG_VINLPM
+1 ADC_CONFIG_HVIN
+2 ADC_CONFIG_GPIO
+)
+
+(
+0 P24G_PAIRING_REQ_HEAD
+1 P24G_PAIRING_COMPLETE_HEAD
+)
+
+(
+0 ENSURE_OFF_24G
+1 ENSURE_ON_24G
+0x4e G24_PAIR_CH
+)
+
+(
+7 RSSI_BUF_LEN_SIGNAL
+255 RSSI_BUF_LEN_NOISE
+0x50 RSSI_THRESH_NOISE
+
+0x77 RSSI_DIS_MIN_24G
+0x82 RSSI_DIS_MAX_24G
+
+0x75 RSSI_DIS_MIN_BLE
+0x80 RSSI_DIS_MAX_BLE
+)
+
+(//bluetooth tx power
+0 TX_POWER_0DB
+1 TX_POWER_3DB
+2 TX_POWER_5DB
+3 TX_POWER_f3DB
+4 TX_POWER_f5DB
+)
+
+/* 24g */
+(
+6 dlen_24g
+14 plen_24g
+90 blen_tx_24g
+106 blen_rx_24g
+42 blen_txack_24g
+58 blen_rxack_24g
+7 retry_24g
+0xaaf08e acc_24g
+0x15c4 crc_data_3byte
+0xbb81 crc_data_6byte
+0x4160 crc_ack
+41390 crc_ack_4byte
+)
+
+(
+1 NO_ACK_24g
+0 with_ack_24g
+)
+
+(
+0 disable_24g
+1 tx_24g
+2 rx_24g
+
+0 bit_ack_24g
+)
+
+
+//mem_24g_data_type
+(
+0x07 bits_data
+//0-2 data type
+3 bit_abort
+4 bit_hop
+5 bit_sync
+//6-7 channel offset
+)
+
+// ble
+(
+0 FLAG_LE_PAIRING_NULL
+1 FLAG_LE_PAIRING_START
+2 FLAG_LE_PAIRING_AFTER_AUTH
+3 FLAG_LE_PAIRING_END
+)
+
+(
+0 PAIR_UNKNOWN
+1 PAIR_ING
+2 PAIR_DONE
+)
+
+(
+0 DEFAULT_STATES
+1 IPHONE_LOST_LTK
+2 MODULE_LOST_LTK
+3 LTK_NOT_LOST
+)
+
+(
+3 QUEUE_ELE_COUNT
+12 QUEUE_ELE_LENGTH
+)
+
+
+8 KB_KSCAN_ROW 
+7 KB_KSCAN_ROW_1
+20 KB_KSCAN_COL
+19 KB_KSCAN_COL_1
+
+/* ks_ctrl */
+(
+0x01 KB_KSCAN_CTRL_ENABLE					
+0x02 KB_KSCAN_CTRL_FREEZE					
+0x04 KB_KSCAN_CTRL_GHOST					
+0x08 KB_KSCAN_CTRL_INT						
+0x10 KB_KSCAN_CTRL_CLKON					
+0x20 KB_KSCAN_CTRL_FIFO_CLR				
+                  
+0 KB_KSCAN_STAT_EMPTY
+1 KB_KSCAN_STAT_FULL 					
+2 KB_KSCAN_STAT_OVERFLOW				
+6 KB_KSCAN_STAT_GHOST 
+
+0 KB_KSCAN_KEY_EVENT_STAT
+0 KB_KSCAN_KEY_PRESS	
+1 KB_KSCAN_KEY_RELEASE
+
+)
+
+
+/* special key codes */
+(
+0x1d KB_KCODE_1_M1
+0x27 KB_KCODE_0
+0x28 KB_KCODE_ENTER
+0x2a KB_KCODE_BKSP
+)
+
+(
+0x01 HID_REPORTID_1
+0x02 HID_REPORTID_2
+0x03 HID_REPORTID_3
+0x04 HID_REPORTID_4
+)
+
+(
+/*DATA OUTPUT report id = 1*/
+0 KB_NUM_LOCK_SELECTED
+1 KB_CAPS_LOCK_SELECTED
+2 KB_SCROLL_LOCK_SELECTED
+)
+
+(
+0x1f  KB_UI_BUTTON_GPIO
+)
+
+(
+0x0007 HANDLE_UUID_CHRCTR_DEVICE_NAME
+0x000e HANDLE_UUID_CHRCTR_MANUFACTURER_NAME
+0x0010 HANDLE_UUID_PNP_ID
+0x0021 HANDLE_UUID_CHRCTR_REPORT_ID1_OUTPUT
+0x0030 HANDLE_UUID_BATTERY_LEVEL
+0x0031 HANDLE_UUID_END
+)
+
+
Index: btkb/format/l2cap.format
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/btkb/format/l2cap.format	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/btkb/format/l2cap.format	(working copy)
@@ -0,0 +1,442 @@
+
+memalloc(
+0 mem_l2cap_mem_start
+// L2CAP RX 
+2 mem_l2cap_rxbuff1_len
+2 mem_l2cap_rxbuff2_len
+2 mem_l2cap_rxbuff_new
+1 mem_l2cap_rxbuff_inuse
+2 mem_l2cap_payload_ptr
+2 mem_l2cap_rx_pkt_length
+2 mem_l2cap_rx_cid
+1 mem_l2cap_rx_done
+
+
+
+// L2CAP TX Signal channel
+2 mem_l2cap_signal_tx_buff_ptr
+2 mem_l2cap_signal_tx_payload_ptr
+2 mem_l2cap_signal_tx_length
+// L2CAP TX SDP channel
+2 mem_sdp_tx_buff_ptr
+2 mem_sdp_tx_payload_ptr
+2 mem_sdp_tx_pkt_length
+// L2CAP TX RFCOMM channel
+2 mem_rfcomm_tx_buff_ptr
+2 mem_rfcomm_tx_payload_ptr
+2 mem_rfcomm_tx_pkt_length
+
+
+
+//L2CAP Util
+
+2 memL2CAP_T1
+
+1 mem_CONTROL_tasks
+1 mem_send_config_req
+
+
+1 mem_config_identifier
+2 mem_config_req_dest_CID
+1 mem_rfcomm_malloc_fail_flag
+
+//L2CAP STATE MACHINE
+1 mem_message_to_uppersm
+1 mem_upper_sm_remote_page
+1 mem_upper_sm_reconn
+1 mem_upper_sm_ss
+
+
+64 mem_tx_malloc_log
+0 mem_l2cap_mem_end
+
+
+2 mem_scid
+2 mem_cmd_length
+2 mem_tt2
+2 mem_tt3
+2 mem_id
+2 mem_psm
+
+
+4 mem_l2cap_sdpres_delay_time
+)
+
+xmemalloc(
+0 mem_l2cap_xmem_start
+//*******************L2CAP TX MULTI-PACKET*********************//
+2 mem_l2cap_tx_multi_offset //0 means single packet
+
+//*******************CHANNEL ID*********************//
+2 mem_sdp_remote_cid
+2 mem_rfcomm_remote_cid
+2 mem_hid_ctrl_remote_cid
+2 mem_hid_int_remote_cid
+//*******************CHANNEL STATE*********************//
+1 mem_sdp_state
+1 mem_rfcomm_state
+1 mem_hid_control_state
+1 mem_hid_interrupt_state
+1 mem_spp_state
+1 mem_ML2CAP_comm_id
+
+//*******************L2CAP malloc********************//
+1 mem_used_map
+0 mem_tx_fifo0
+1 mem_tx_fifo0_map
+2 mem_tx_fifo0_ptr
+0 mem_tx_fifo1
+1 mem_tx_fifo1_map
+2 mem_tx_fifo1_ptr
+0 mem_tx_fifo2
+1 mem_tx_fifo2_map
+2 mem_tx_fifo2_ptr
+0 mem_tx_fifo3
+1 mem_tx_fifo3_map
+2 mem_tx_fifo3_ptr
+0 mem_tx_fifo_end
+256 mem_l2cap_lpm_txbuf
+//*******************MISC*********************//
+1 mem_l2cap_flow_ctrl_flag
+1 mem_l2cap_pending_item
+0 mem_l2cap_xmem_end
+
+)
+
+
+//mem_l2cap_lpm_txbuf
+(
+256 l2cap_lpm_txbuf_len
+)
+
+(
+4 L2CAP_TX_FIFO_SIZE
+8 L2CAP_TX_BUFF_CNT
+
+)
+
+(
+0x0002 L2CAP_SIG_EXT_FEATRUE
+0x0003 L2CAP_SIG_FIX_FEATRUE
+)
+
+(
+0 HS_IDLE
+1 AG_INIT_CALL
+2 HS_INIT_CALL
+)
+(
+0 M_ACL_LINK_ABSENT
+1 M_ACL_LINK_EXIST
+)
+
+(
+0 L2CAP_INUSE_BUFF1
+1 L2CAP_INUSE_BUFF2
+)
+/* upper layer interface w/ lower layer */
+(
+1 MAX_NUM_LINKS_ALLOWED
+1 MAX_NUM_SCO_ALLOWED
+1 ACL_LINK_PRESENT
+0 ACL_LINK_ABSENT
+)
+(
+1 L2CAP_RX_DONE 
+0 L2CAP_RX_CLEAR
+)
+/* Scheduler */
+(
+0 L2CAP_DISCONNECT_INTERRUPT
+1 RFCOMM_wants_service
+2 L2CAP_sig_Tx_buff_full
+3 RFCOMM_Tx_buff_full
+4 SDP_Tx_buff_full
+5 got_complete_L2CAP_pkt	
+6 L2CAP_init_Config_Req
+7 L2CAP_DISCONNECT_CONTROL
+)
+
+/* mem_CONTROL_tasks2 */
+(
+0 UI_NEED_SERVICE
+)
+/* L2CAP logic channel identifiers (2 bytes) p.261 */
+(
+0x0001 L2CAP_signal_channel
+0x0050 L2CAP_SDP_channel
+0x0051 L2CAP_RFCOMM_channel
+0x0052 L2CAP_HID_Control_channel   
+0x0053 L2CAP_HID_Interrupt_channel
+0x0077 L2CAP_AVDTP_signal_channel		//------avdtp
+0x0078 L2CAP_AVDTP_media_channel
+0x0079 L2CAP_AVDTP_report_channel
+0x0080 L2CAP_AVDTP_recovery_channel
+0x00dd L2CAP_AVCTP_Control_channel
+)
+/* L2CAP signalling command codes (1 byte) p.284 */
+(
+0x00 reserved
+0x01 signal_cmd_reject
+0x02 signal_connect_req
+0x03 signal_connect_rsp
+0x04 signal_config_req
+0x05 signal_config_rsp
+0x06 signal_disconnect_req
+0x07 signal_disconnect_rsp
+0x08 signal_echo_req
+0x09 signal_echo_rsp
+0x0a signal_info_req
+0x0b signal_info_rsp
+)
+/* L2CAP signal_command_reject reason code (2 bytes), p.285 */
+(
+0x0000 cmd_not_understood
+0x0001 signalling_MTU_exceeded
+0x0002 invalid_CID_in_req
+)
+/* L2CAP PSM values used in signal_connect_req (2 bytes), p.286 */
+(
+0x0001 PSM_SDP
+0x0003 PSM_RFCOMM
+0x0005 PSM_TCS
+0x0011 PSM_HID_control
+0x0013 PSM_HID_interrupt
+0x0017 PSM_AVCTP
+0x0019 PSM_AVDTP
+)
+/* L2CAP connection response result code (2 bytes), p.288 */
+(
+0x0000 L2CAP_connect_successful
+0x0001 L2CAP_connect_pending
+0x0002 L2CAP_connect_refused_PSM_unsupported
+0x0003 L2CAP_connect_refused_security_block
+0x0004 L2CAP_connect_refused_no_resources
+)
+/* L2CAP connection status values (2 bytes), p.288 */
+(
+0x0000 L2CAP_no_info_available
+0x0001 L2CAP_authentication_pending
+0x0002 L2CAP_authorization_pending
+)
+/* L2CAP configuration response result code (2 bytes), p.292 */
+(
+0x0000 L2CAP_config_success
+0x0001 L2CAP_config_failure_bad_parameters
+0x0002 L2CAP_config_failure_no_reason
+0x0003 L2CAP_config_failure_unknown_options
+)
+/* L2CAP constant definitions */
+(
+128 L2CAP_Rx_buff_size
+48  L2CAP_signal_Tx_buff_size
+128 SDP_Tx_buff_size
+128 RFCOMM_Tx_buff_size
+1 AM_ADDRESS
+3 DM1TYPE
+4 DH1TYPE
+11 DH3TYPE
+8 DVTYPE
+0 channel_state_closed
+1 channel_state_config
+2 channel_state_open
+0x0030 L2CAP_config_MTU_SDP
+0xffff L2CAP_config_ftimeout_SDP
+0x03e3 L2CAP_config_MTU_RFCOMM
+0xffff L2CAP_config_ftimeout_RFCOMM
+260 l2cap_max_pkt_len
+)
+
+(
+0 FAILURE
+1 SUCCESS
+2 IN_PROGRESS
+)
+(
+0x00	IDLE
+0x01	WAIT_4_BB_PAGE
+0x02	WAIT_4_LMP_CONN
+0x03	WAIT_4_SCO_CONN
+0x04	WAIT_4_SCO_KILLED
+)
+
+/*mem_master_mss*/
+(
+0 STOP_ENC
+1 SEND_SWITCH_REQ
+)
+(
+0 HF_HS_READY
+1 HF_AG_READY
+)
+/* mem_hf_state */
+(
+0 HF_STATE_WAITING_RFCOMM_CONN
+1 HF_STATE_HF_SEND_FEATURE
+2 HF_STATE_WAITING_AG_FEATURE_OK
+3 HF_STATE_HF_SEND_INDICATORS
+4 HF_STATE_WAITING_AG_INDICATORS_OK
+5 HF_STATE_HF_SEND_CURR_STATUS
+6 HF_STATE_WAITING_AG_STATUS_OK
+7 HF_STATE_HF_SEND_UPDATE_STATUS
+8 HF_STATE_WAITING_AG_UPDATE_STATUS_OK
+9 HF_STATE_CONNECTED
+0x0a HF_STATE_HF_SEND_RECEIVE_INFO
+0x0b HF_STATE_WAITING_AG_INFO
+0x0c HF_STATE_HF_SEND_AT_CLIP
+0x0d HF_STATE_WAITING_AT_CLIP
+0x0e HF_STATE_HF_SEND_AT_CCWA
+0x0f HF_STATE_WAITING_AT_CCWA
+)
+/*mem_hf_call_state*/
+(
+0 HF_CALL_STATE_INACTIVE
+1 HF_CALL_STATE_SETUP
+2 HF_CALL_STATE_ACTIVE 
+)
+/* mem_pairing_state bit definition */
+(
+0 PAIR_INQUIRY_START
+1 PAIR_INQUIRY_TIME_OUT
+2 PAIR_INQUIRY_FAILED
+3 PAIR_INQUIRY_SUCCESS
+4 PAIR_READY_CONN
+5 PAIR_WAIT_CANCEL_RESPONSE
+6 PAIR_CONN_SUCCESS
+7 PAIR_WAIT_DETACH
+)  
+
+/* mem_pairing_mode bit definition */
+(
+0 FORCE_AUTHENTICATION
+)
+/* mem_hid_protecol_type */
+(
+0 PROTECOL_BOOT /*default*/
+1 PROTECOL_REPORT
+)
+
+/* mem_upper_sm_reconn */
+(
+1 UPPERSM_SEND_SDP_CONN_REQ
+2 UPPERSM_SEND_SDP_CFG_REQ
+3 UPPERSM_SEND_SDP_HF_SS
+4 UPPERSM_SEND_SDP_DISC_REQ
+5 UPPERSM_SEND_RFCOMM_CONN_REQ
+6 UPPERSM_SEND_RFCOMM_CFG_REQ
+7 UPPERSM_SEND_SABM_CMD
+8 UPPERSM_SEND_DISC
+9 UPPERSM_SEND_WAIT
+10 UPPERSM_SEND_HID_CONTROL_CONN_REQ
+11 UPPERSM_SEND_HID_CONTROL_CFG_REQ
+12 UPPERSM_SEND_HID_INTERRUPT_CONN_REQ
+13 UPPERSM_SEND_HID_INTERRUPT_CFG_REQ
+14 UPPERSM_SEND_SDP_HS_SS
+15 UPPERSM_SEND_SDP_PBAP_SS
+16 UPPERSM_SEND_SDP_AVTARG_SS
+)
+/* mem_upper_sm_remote_page */
+(
+1 UPPERSM_RP_SEND_SDP_CONN_REQ
+2 UPPERSM_RP_SEND_SDP_CFG_REQ
+3 UPPERSM_RP_SEND_SDP_HF_SS
+4 UPPERSM_RP_SEND_SDP_HS_SS
+5 UPPERSM_RP_SEND_SDP_PBAP_SS
+6 UPPERSM_RP_SEND_SDP_AVTARG_SS
+7 UPPERSM_RP_SEND_SDP_DISC_REQ
+8 UPPERSM_RP_SEND_AVCTP_CONN_REQ
+9 UPPERSM_RP_SEND_AVCTP_CFG_REQ
+)
+
+/* mem_ML2CAP_flag */
+(
+0 MSCHEDULER_HID_CONTROL_CONN_DONE
+1 MSCHEDULER_HID_INTERRUPT_CONN_DONE
+2 MSCHEDULER_HID_CONTROL_CFG_REQ_DONE
+3 MSCHEDULER_HID_CONTROL_CFG_RSP_DONE
+4 MSCHEDULER_HID_INTERRUPT_CFG_REQ_DONE
+5 MSCHEDULER_HID_INTERRUPT_CFG_RSP_DONE
+6 MSCHEDULER_HID_CONTROL_DISC_DONE
+7 MSCHEDULER_HID_INTERRUPT_DISC_DONE
+)
+/*    ui event    --add by lj*/
+(
+0x00 UI_DATA_EVNET_NONE
+0x01 UI_DATA_EVNET_HID
+0x02 UI_DATA_EVNET_AVDTP_S
+0x03 UI_DATA_EVNET_AVDTP_M
+0x04 UI_DATA_EVNET_AVCTP
+0x05 UI_DATA_EVNET_HS
+0x06 UI_DATA_EVNET_HF
+0x07 UI_DATA_EVNET_SPP
+0x08 UI_DATA_EVNET_OBEX
+)
+/*    ui ack --add by lj*/
+(
+0x00 UI_DATA_TX_NONE
+0x01 UI_DATA_TX_HID
+0x02 UI_DATA_TX_AVDTP_S
+0x03 UI_DATA_TX_AVDTP_M
+0x04 UI_DATA_TX_AVCTP
+0x05 UI_DATA_TX_HS
+0x06 UI_DATA_TX_HF
+0x07 UI_DATA_TX_SPP
+0x08 UI_DATA_TX_OBEX
+0x10 ACL_TX_L2CAP_SIGNAL
+0x11 ACL_TX_SDP
+0x12 ACL_TX_RFCOMM
+
+)
+
+(
+0 L2CAP_SDP_interface_conn
+1 L2CAP_SDP_interface_cfg
+)
+
+(                                   
+0 L2CAP_CHANNEL_STATE_CONN_REQ      
+1 L2CAP_CHANNEL_STATE_CONN_RES      
+2 L2CAP_CHANNEL_STATE_SND_CFG_REQ   
+3 L2CAP_CHANNEL_STATE_SND_CFG_RES   
+4 L2CAP_CHANNEL_STATE_RCV_CFG_REQ   
+5 L2CAP_CHANNEL_STATE_RCV_CFG_RES
+6 L2CAP_CHANNEL_RFCOMM_ONLY_SABM
+7 L2CAP_CHANNEL_RFCOMM_ONLY_UA
+6 L2CAP_CHANNEL_AVDTP_SIGNAL_INIT //set avdtp init complete
+6 L2CAP_CHANNEL_HID_HANDSHAKE_DONE
+0x3f L2CAP_CHANNEL_SETUP_COMPLETE
+0x7f L2CAP_CHANNEL_AVDTP_SIGNAL_COMPLETE
+0xff L2CAP_CHANNEL_RFCOMM_DLCI0_OPENED
+)                                     
+
+/*  AVDTP---lj*/
+(
+0 L2CAP_AVDTP_SIGNAL_CONNECT
+1 L2CAP_AVDTP_SIGNAL_CONFIG
+2 L2CAP_AVDTP_MEDIA_CONNECT
+3 L2CAP_AVDTP_MEDIA_CONFIG
+4 L2CAP_AVDTP_REPORT_CONNECT
+5 L2CAP_AVDTP_REPORT_CONFIG
+6 L2CAP_AVDTP_RECOVERY_CONNECT
+7 L2CAP_AVDTP_RECOVERY_CONFIG
+)
+/*  AVCTP---lj*/
+(
+0 L2CAP_AVCTP_SIGNAL_CONNECT
+1 L2CAP_AVCTP_SIGNAL_CONFIG
+)
+
+127 L2CAP_SIGNAL_MALLOC_SIZE
+
+//1 mem_rfcomm_malloc_fail_flag
+(
+0 RFCOMM_MALLOC_SUCCEED
+1 RFCOMM_MALLOC_FAIL
+)
+
+//mem_l2cap_flow_ctrl_flag
+(
+0 L2CAP_FLOW_CTRL_DISABLE
+1 L2CAP_FLOW_CTRL_ENABLE
+)
+
Index: btkb/format/le.format
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/btkb/format/le.format	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/btkb/format/le.format	(working copy)
@@ -0,0 +1,506 @@
+
+memalloc(
+56 mem_le_rxbuf
+
+
+/* security temp */
+4 mem_le_mic
+4 mem_le_peer_mic
+8 mem_le_skdm
+8 mem_le_skds
+16 mem_le_peer_ltk
+16 mem_le_my_ltk
+16 mem_le_mrand
+
+
+/* ========= le context =========== */
+1 mem_le_state
+1 mem_le_mode
+2 mem_le_tsniff
+4 mem_le_anchor
+6 mem_le_clk_offset
+2 mem_le_receive_window
+6 mem_le_plap
+1 mem_le_conn_handle
+1 mem_le_arq
+1 mem_le_ch
+1 mem_le_hop
+2 mem_le_event_count
+4 mem_le_supervision_timer
+2 mem_le_instant
+1 mem_le_channels
+1 mem_le_conn_sm
+1 mem_le_op
+
+	/* these 3 should NOT be seperated */
+4 mem_le_access
+3 mem_le_crcinit
+1 mem_le_window_size
+
+	/* these 3 should NOT be seperated */
+2 mem_le_slave_latency
+2 mem_le_superto
+5 mem_le_channel_map
+
+2 mem_le_no_using
+1 mem_le_peer_sca
+
+/* should be together */
+1 mem_le_att_opcode
+2 mem_le_att_handle
+
+1 mem_le_err_code
+
+16 mem_le_sk
+
+
+/* test */
+1 mem_le_testtype
+2 mem_le_test_sync
+2 mem_le_test_pcnt
+
+6 mem_le_rxon_ts
+
+1 mem_le_rx_ll_opcode
+
+2 mem_le_notify_attr_start
+1 mem_le_notify_len
+
+1 mem_cmd_le_create_conn
+20 mem_le_adv_temp
+1 mem_24g_id
+)
+
+
+xmemalloc(
+2 mem_le_dsniff
+
+// parameters
+2 mem_le_conn_interval
+1 mem_le_scan_enable
+2 mem_le_scan_interval
+2 mem_le_scan_window
+
+1 mem_le_adv_led
+1 mem_le_adv_enable
+1 mem_le_adv_data_len
+31 mem_le_adv_data
+1 mem_le_scan_data_len
+31 mem_le_scan_data
+
+//modified name
+1 mem_le_name_len
+20 mem_le_name
+
+1 mem_le_led_on_time
+//37 mem_le_chmap
+
+
+5 mem_le_new_map
+0 mem_le_new_param
+1 mem_le_new_window
+2 mem_le_new_offset
+2 mem_le_new_interval
+2 mem_le_new_latency
+2 mem_le_new_timeout
+1 mem_le_temp
+
+1 mem_le_txheader
+1 mem_le_txlen
+2 mem_le_txpayload
+2 mem_le_txcid
+1 mem_le_l2cap
+1 mem_le_l2cap_response
+31 mem_le_txbdy
+
+/* smp related */
+5 mem_le_pcnt_tx
+5 mem_le_pcnt_rx
+4 mem_le_last_mic
+4 mem_le_ivm
+4 mem_le_ivs
+16 mem_le_ltk
+1 mem_ltk_exists
+16 mem_le_rconfirm
+16 mem_le_srand
+1 mem_le_iat
+1 mem_le_rat
+7 mem_le_preq
+7 mem_le_pres
+
+/* att related */
+2 mem_le_search_handle_start
+2 mem_le_search_handle_end
+0 mem_le_att_offset
+2 mem_le_search_att_type
+2 mem_le_notify_handle
+2 mem_le_uuid
+
+1 mem_le_handle_data_len
+16 mem_le_handle_data
+
+
+//START of LE adv parameter structure
+0 mem_le_adv_param
+2 mem_le_adv_interval_min
+2 mem_le_adv_interval_max
+1 mem_le_adv_type
+1 mem_le_adv_own_addr_type
+1 mem_le_adv_direct_addr_type
+6 mem_le_adv_direct_addr
+1 mem_le_adv_channel_map
+1 mem_le_adv_filter_policy
+//END of LE adv parameter structure
+
+//START of LE conn parameter structure
+0 mem_le_conn_param
+1 mem_le_conn_peer_addr_type
+6 mem_le_conn_peer_addr
+1 mem_le_conn_own_addr_type
+2 mem_le_conn_interval_min
+2 mem_le_conn_interval_max
+2 mem_le_conn_latency
+2 mem_le_conn_superto
+//START of LE conn parameter structure
+
+//START of LE scan parameter structure
+0 mem_le_scan_params
+1 mem_le_scan_type
+1 mem_le_scan_own_addr_type
+1 mem_le_scan_filter_policy
+//END of LE scan parameter structure
+
+3 mem_le_lap
+1 mem_le_uap
+2 mem_le_nap
+5 mem_le_xtype_fifo
+
+
+//LE attribute list
+500 mem_le_att_list
+1 mem_le_switch_send_data
+4 mem_le_transmit_window
+
+)
+
+(
+20 notify_handle
+2 param_max_slaves
+1636 param_sifs
+0x000a06 param_le_version
+0x1d87 param_le_subversion
+0x000001 param_le_features
+23 param_le_mtu
+16 param_le_scan_interval
+16 param_le_scan_window
+0x1e0 param_clke_cal_le
+0x1000302 param_smp_paring_response		/* for mouse, noinputnooutput */
+0x010410 param_smp_key_dist	
+0x010010 param_smp_key_dist0
+0xa0 param_le_sca
+)
+
+(
+	0x2902  ATT_Configuration
+)
+
+/* mem_le_conn_sm */
+( 
+  0x21 CONN_SM_SEND_WRITE_REQ                      
+  0x25 CONN_SM_WAIT_WRITE_RES
+  0x26 CONN_SM_WAIT_WRITE_RES1
+) 
+/*LE MOUSE-KB*/
+(
+1 LE_CONTEXT_STATE_KB
+2 LE_CONTEXT_STATE_MOUSE
+
+3 USB_MOUSE_DATA_CMD
+
+1 SEND_MOUSE_DATA_CMD
+2 SEND_KB_DATA_CMD
+)
+
+
+  (
+  	0 LE_M_STATE_SLAVE1_STANDBY
+  	1 LE_M_STATE_SLAVE1_ADVERTISING
+  	2 LE_M_STATE_SLAVE1_SCANNING
+  	3 LE_M_STATE_SLAVE1_INITIATING
+  	4 LE_M_STATE_SLAVE1_CONNECTED
+  	5 LE_M_STATE_SLAVE1_RFU_1
+  	6 LE_M_STATE_SLAVE1_RFU_2
+  	7 LE_M_STATE_SLAVE1_RFU_3
+  )
+
+  (
+  	0 LE_M_STATE_SLAVE2_STANDBY
+  	1 LE_M_STATE_SLAVE2_ADVERTISING
+  	2 LE_M_STATE_SLAVE2_SCANNING
+  	3 LE_M_STATE_SLAVE2_INITIATING
+  	4 LE_M_STATE_SLAVE2_CONNECTED
+  	5 LE_M_STATE_SLAVE2_CONNECT_INIT
+  	6 LE_M_STATE_SLAVE2_RFU_2
+  	7 LE_M_STATE_SLAVE2_RFU_3
+  )
+
+  	(
+	0 LE_SM_IDLE
+	1 LE_SM_FBTV_1800
+	2 LE_SM_FBTV_1800_WAIT
+	3 LE_SM_RBT_DEVICE_NAME
+	4 LE_SM_RBT_DEVICE_NAME_WAIT
+	5 LE_SM_FBTV_1801
+	6 LE_SM_FBTV_1801_WAIT
+	7 LE_SM_RBT_DEVICE_CHARACTER
+	8 LE_SM_RBT_DEVICE_CHARACTER_WAIT
+	
+  	)
+
+/* advertising channel PDU type */
+(
+0 ADV_IND
+1 ADV_DIRECT_IND
+2 ADV_NONCONN_IND
+3 SCAN_REQ
+4 SCAN_RSP
+5 CONNECT_REQ
+6 ADV_SCAN_IND
+)
+
+	/* tx packet type */
+	(
+	0x20 XT_LL_CONNECTION_UPDATE_REQ
+	0x21 XT_LL_CHANNEL_MAP_REQ
+	0x22 XT_LL_TERMINATE_IND
+	0x23 XT_LL_ENC_REQ
+	0x24 XT_LL_ENC_RSP
+	0x25 XT_LL_START_ENC_REQ
+	0x26 XT_LL_START_ENC_RSP
+	0x27 XT_LL_UNKNOWN_RSP
+	0x28 XT_LL_FEATURE_REQ
+	0x29 XT_LL_FEATURE_RSP
+	0x2A XT_LL_PAUSE_ENC_REQ
+	0x2B XT_LL_PAUSE_ENC_RSP
+	0x2C XT_LL_VERSION_IND
+	0x2D XT_LL_REJECT_IND
+	0x2E XT_LL_SLAVE_FEATURE_REQ
+	0x2F XT_LL_CONNECTION_PARAM_REQ
+	0x30 XT_LL_CONNECTION_PARAM_RSP
+	0x31 XT_LL_REJECT_IND_EXT
+	0x32 XT_LL_PING_REQ
+	0x33 XT_LL_PING_RSP
+	0x41 XT_SMP_PAIRING_REQUEST
+	0x42 XT_SMP_PAIRING_RESPONSE
+	0x43 XT_SMP_PAIRING_CONFIRM
+	0x44 XT_SMP_PAIRING_RANDOM
+	0x45 XT_SMP_PAIRING_FAILED
+	0x46 XT_SMP_ENCRYPTION_INFORMATION
+	0x47 XT_SMP_MASTER_IDENTIFICATION
+	0x48 XT_SMP_IDENTITY_INFORMATION
+	0x49 XT_SMP_IDENTITY_ADDRESS_INFORMATION
+	0x4A XT_SMP_SIGNING_INFORMATION
+	0x4B XT_SMP_SECURITY_REQUEST
+	0x51 XT_L2CAP_CONN_PARAM_UPDATE_REQ
+	)
+
+
+	/* LE control packet type */
+	(
+	0x00 LL_CONNECTION_UPDATE_REQ
+	0x01 LL_CHANNEL_MAP_REQ
+	0x02 LL_TERMINATE_IND
+	0x03 LL_ENC_REQ
+	0x04 LL_ENC_RSP
+	0x05 LL_START_ENC_REQ
+	0x06 LL_START_ENC_RSP
+	0x07 LL_UNKNOWN_RSP
+	0x08 LL_FEATURE_REQ
+	0x09 LL_FEATURE_RSP
+	0x0A LL_PAUSE_ENC_REQ
+	0x0B LL_PAUSE_ENC_RSP
+	0x0C LL_VERSION_IND
+	0x0D LL_REJECT_IND
+	0x0E LL_SLAVE_FEATURE_REQ
+	0x0F LL_CONNECTION_PARAM_REQ
+	0x10 LL_CONNECTION_PARAM_RSP
+	0x11 LL_REJECT_IND_EXT
+	0x12 LL_PING_REQ
+	0x13 LL_PING_RSP
+	)
+
+	/* Security Manager Protocol Code */
+	(
+	0x01 SMP_PAIRING_REQUEST
+	0x02 SMP_PAIRING_RESPONSE
+	0x03 SMP_PAIRING_CONFIRM
+	0x04 SMP_PAIRING_RANDOM
+	0x05 SMP_PAIRING_FAILED
+	0x06 SMP_ENCRYPTION_INFORMATION
+	0x07 SMP_MASTER_IDENTIFICATION
+	0x08 SMP_IDENTITY_INFORMATION
+	0x09 SMP_IDENTITY_ADDRESS_INFORMATION
+	0x0A SMP_SIGNING_INFORMATION
+	0x0B SMP_SECURITY_REQUEST
+	)
+
+	/* ATT OPCODE */
+	(
+	0x01 ATTOP_ERROR_RESPONSE
+	0x02 ATTOP_EXCHANGE_MTU_REQUEST
+	0x03 ATTOP_EXCHANGE_MTU_RESPONSE
+	0x04 ATTOP_FIND_INFORMATION_REQUEST
+	0x05 ATTOP_FIND_INFORMATION_RESPONSE
+	0x06 ATTOP_FIND_BY_TYPE_VALUE_REQUEST
+	0x07 ATTOP_FIND_BY_TYPE_VALUE_RESPONSE
+	0x08 ATTOP_READ_BY_TYPE_REQUEST
+	0x09 ATTOP_READ_BY_TYPE_RESPONSE
+	0x0A ATTOP_READ_REQUEST
+	0x0B ATTOP_READ_RESPONSE
+	0x0C ATTOP_READ_BLOB_REQUEST
+	0x0D ATTOP_READ_BLOB_RESPONSE
+	0x0E ATTOP_READ_MULTIPLE_REQUEST
+	0x0F ATTOP_READ_MULTIPLE_RESPONSE
+	0x10 ATTOP_READ_BY_GROUP_TYPE_REQUEST
+	0x11 ATTOP_READ_BY_GROUP_TYPE_RESPONSE
+	0x12 ATTOP_WRITE_REQUEST
+	0x13 ATTOP_WRITE_RESPONSE
+	0x16 ATTOP_PREPARE_WRITE_REQUEST
+	0x17 ATTOP_PREPARE_WRITE_RESPONSE
+	0x18 ATTOP_EXECUTE_WRITE_REQUEST
+	0x19 ATTOP_EXECUTE_WRITE_RESPONSE
+	0x1B ATTOP_HANDLE_VALUE_NOTIFICATION
+	0x1D ATTOP_HANDLE_VALUE_INDICATION
+	0x1E ATTOP_HANDLE_VALUE_CONFIRMATION
+	0x52 ATTOP_WRITE_COMMAND
+	0xD2 ATTOP_SIGNED_WRITE_COMMAND
+	0x9e EMPTY_LE_DATA_PRE
+	0x9f EMPTY_LE_DATA
+	0xc1 XT_L2CAP_CMD_REJECT
+	)
+
+	/* ATT error code */
+	(
+	0x01 ATT_ERR_INVALID_HANDLE
+	0x02 ATT_ERR_READ_NOT_PERMITTED
+	0x03 ATT_ERR_WRITE_NOT_PERMITTED
+	0x04 ATT_ERR_INVALID_PDU
+	0x05 ATT_ERR_INSUFFICIENT_AUTHENTICATION
+	0x06 ATT_ERR_REQUEST_NOT_SUPPORTED
+	0x07 ATT_ERR_INVALID_OFFSET
+	0x08 ATT_ERR_INSUFFICIENT_AUTHORIZATION
+	0x09 ATT_ERR_PREPARE_QUEUE_FULL
+	0x0A ATT_ERR_ATTRIBUTE_NOT_FOUND
+	0x0B ATT_ERR_ATTRIBUTE_NOT_LONG
+	0x0C ATT_ERR_INSUFFICIENT_ENCRYPTION_KEY_SIZE
+	0x0D ATT_ERR_INVALID_ATTRIBUTE_VALUE_LENGTH
+	0x0E ATT_ERR_UNLIKELY_ERROR
+	0x0F ATT_ERR_INSUFFICIENT_ENCRYPTION
+	0x10 ATT_ERR_UNSUPPORTED_GROUP_TYPE
+	0x11 ATT_ERR_INSUFFICIENT_RESOURCES
+	)
+	/*	SERVICE UUID	*/
+	(
+	0x1800 UUID_SERVICE_GENERIC_ACC
+	0x1801 UUID_SERVICE_GENERIC_ATT
+	0x180a UUID_SERVICE_DEVICE_INFO
+	0x180f UUID_SERVICE_BATTERY
+	0x1812 UUID_SERVICE_HIDS
+	0x2800 UUID_GATT_PRIMARY_SERVICE
+	0x2801 UUID_GATT_SECONDARY_SERVICE
+	0X2802 UUID_GATT_INCLUDE
+	0X2803 UUID_GATT_CHARACTERISTIC
+	0X2902 UUID_CLIENT_CHARACTERISTIC
+	0X2A00 UUID_CHRCTR_DEVICE_NAME
+	0X2A19 UUID_CHRCTR_BATTERY_LEVEL
+	0X2A22 UUID_CHRCTR_KEYBOARD_INPUT
+	0X2A23 UUID_CHRCTR_SYSTEM_ID 
+	0X2A25 UUID_CHRCTR_SERIAL_NUMBER
+	0X2A26 UUID_CHRCTR_FIRMWARE
+	0X2A32 UUID_CHRCTR_KEYBOARD_OUTPUT
+	0X2A33 UUID_CHRCTR_MOUSE_INPUT
+	0X2A4A UUID_CHRCTR_HID_INFO
+	0X2A4B UUID_CHRCTR_REPORT_MAP
+	0X2A4C UUID_CHRCTR_HID_CTRL_POINT
+	0X2A4D UUID_CHRCTR_REPORT
+	0X2A4E UUID_CHRCTR_PROTOCOL_MODE
+	0X2A50 UUID_PNP_ID
+	)
+
+	//modified_name
+	(
+	0x14 MAX_NAME_LEN
+	0x16 ADV_DATA_NAME_LEN
+	0X20 SPACE
+	
+	)
+	/* GATT Specifications*/
+	(
+	0X2900 CHARACTERTIC_EXTENDED_PROPERTIES
+	0X2901 CHARACTERTIC_USER_DESCRIPTION
+	0X2902 CLIENT_CHARACTERTIC_CONFIGURATION
+	0X2903 SERVER_CHARACTERTIC_CONFIGURATION
+	0X2904 CHARACTERTIC_PRESENTATION_FORMAT
+	0X2905 CHARACTERTIC_AGGREGATE
+	0X2906 VALID_RANGE
+	0X2907 EXTERNAL_REPORT_REFERENCE
+	0X2908 REPORT_REFERENCE
+	0X290B ENVIR_SENSING_CONFIGURATION
+	0X290C ENVIR_SENSING_MEASUREMENT
+	0X290D ENVIR_SENSING_TRIGGER_SETTING
+	)
+	/* LE L2CAP CID */
+	(
+	0x04 LE_L2CAP_CID_ATT
+	0x05 LE_L2CAP_CID_SIGNAL
+	0x06 LE_L2CAP_CID_SMP
+	)
+
+	//LE address type
+	(
+	0 LE_ADDR_TYPE_PUBLIC
+	1 LE_ADDR_TYPE_RANDOM
+	)
+	//LE address type bitmap
+	(
+	7 LE_RECEIVER_ADDR_BIT
+	6 LE_SENDER_ADDR_BIT
+	)
+	//LE SCAN TYPE
+	(
+	0x00 LE_SCAN_TYPE_PASSIVE //no SCAN_REQ shall be sent
+	0x01 LE_SCAN_TYPE_ACTIVE
+	)
+
+	//LE SCAN ENABLE
+	(
+	0x00 LE_SCAN_DISABLE
+	0x01 LE_SCAN_ENABLE
+	0x0101 LE_ACTIVE_SCAN_ENABLE
+	)
+
+
+//	le_state_map 0-2 is reserved for state_inconn,state_insniff and state_sco
+(
+3 lestate_got_first_packet
+4 lestate_encryption
+5 lestate_update_param
+6 lestate_update_map
+7 lestate_version_ind_sent
+)
+
+// 	le mode
+(
+0 lemode_idle
+1 lemode_slave
+3 lemode_master
+)
+
+0xfeff ATT_HANDLE_SPECIAL
+
+// 	sm state
+(
+0 smstate_wait_confirm
+
+)
+
Index: btkb/format/lmp.format
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/btkb/format/lmp.format	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/btkb/format/lmp.format	(working copy)
@@ -0,0 +1,216 @@
+
+memalloc(
+
+1 mem_lmo_header_length
+1 mem_lmo_header_opcode
+17 mem_lmo_payload
+1 mem_lmi_accepted_opcode
+1 mem_disconn_reason_send
+1 mem_tx_fixed_freq
+1 mem_rx_fixed_freq
+1 mem_ext_features_page
+2 mem_lmpext_ssp_enable
+1 mem_remote_sppcap
+
+1 mem_lmp_conn_state
+2 mem_soft_timer
+1 mem_pincode_state
+
+1 mem_sres_tid
+1 mem_accptsco_tid
+
+1 mem_auth_enable
+1 mem_wait_encryption
+
+16 mem_sniff_payload
+4 mem_aurand_send_delay_time
+)
+
+xmemalloc(
+3 mem_lmp_version
+2 mem_lmp_subversion
+1 mem_local_name_length
+3 mem_local_name
+64 mem_local_name2
+1 mem_local_name_end
+1 mem_unsniff2sniff_timer
+1 mem_switch_flag
+)
+	(
+	//bit map
+	0 pair_state_inrand
+	1 pair_state_inrand_acpt
+	2 pair_state_send_comb
+	3 pair_state_recv_comb
+	4 pair_state_send_aurand
+	5 pair_state_recv_sres
+	6 pair_state_recv_aurand
+	7 pair_state_send_sres	
+	)
+	/* LMP opcodes */
+	(
+	1 LMP_NAME_REQ 
+	2 LMP_NAME_RES 
+	3 LMP_ACCEPTED 
+	4 LMP_NOT_ACCEPTED 
+	5 LMP_CLKOFFSET_REQ 
+	6 LMP_CLKOFFSET_RES 
+	7 LMP_DETACH 
+	8 LMP_IN_RAND 
+	9 LMP_COMB_KEY 
+	10 LMP_UNIT_KEY 
+	11 LMP_AU_RAND 
+	12 LMP_SRES 
+	13 LMP_TEMP_RAND 
+	14 LMP_TEMP_KEY 
+	15 LMP_ENCRYPTION_MODE_REQ 
+	16 LMP_ENCRYPTION_KEY_SIZE_REQ 
+	17 LMP_START_ENCRYPTION_REQ 
+	18 LMP_STOP_ENCRYPTION_REQ 
+	19 LMP_SWITCH_REQ 
+	20 LMP_HOLD
+	21 LMP_HOLD_REQ
+	23 LMP_SNIFF_REQ 
+	24 LMP_UNSNIFF_REQ 
+	26 LMP_PARK_REQ 
+	27 LMP_SET_BROADCAST_SCAN_WINDOW 
+	28 LMP_MODIFY_BEACON 
+	29 LMP_UNPARK_BD_ADDR_REQ 
+	30 LMP_UNPARK_PM_ADDR_REQ 
+	31 LMP_INCR_POWER_REQ 
+	32 LMP_DECR_POWER_REQ 
+	33 LMP_MAX_POWER 
+	34 LMP_MIN_POWER 
+	35 LMP_AUTO_RATE 
+	36 LMP_PREFERRED_RATE 
+	37 LMP_VERSION_REQ 
+	38 LMP_VERSION_RES 
+	39 LMP_FEATURES_REQ 
+	40 LMP_FEATURES_RES 
+	41 LMP_QUALITY_OF_SERVICE 
+	42 LMP_QUALITY_OF_SERVICE_REQ 
+	43 LMP_SCO_LINK_REQ 
+	44 LMP_REMOVE_SCO_LINK_REQ 
+	45 LMP_MAX_SLOT 
+	46 LMP_MAX_SLOT_REQ 
+	47 LMP_TIMING_ACCURACY_REQ 
+	48 LMP_TIMING_ACCURACY_RES 
+	49 LMP_SETUP_COMPLETE 
+	50 LMP_USE_SEMI_PERMANENT_KEY 
+	51 LMP_HOST_CONNECTION_REQ 
+	52 LMP_SLOT_OFFSET 
+	53 LMP_PAGE_MODE_REQ 
+	54 LMP_PAGE_SCAN_MODE_REQ 
+	55 LMP_SUPERVISION_TIMEOUT 
+	56 LMP_TEST_ACTIVATE
+	57 LMP_TEST_CONTROL
+	58 LMP_ENC_KEY_SIZE_MASK_REQ
+	59 LMP_ENC_KEY_SIZE_MASK_RES
+	60 LMP_SET_AFH
+
+	/* simple pairing support */
+	61 LMP_ENCAPSULATED_HEADER
+	62 LMP_ENCAPSULATED_PAYLOAD
+	63 LMP_SIMPLE_PAIRING_CONFIRM
+	64 LMP_SIMPLE_PAIRING_NUMBER
+	65 LMP_DHKEY_CHECK
+	127 LMP_ESCAPE
+	127 LMP_ESCAPE_4   /* add 2bytes LMP header support  */   
+	)
+	/* LMP EXT opcodes, ORed with bit 7 to make difference to nonEXT */
+	(
+	129 LMP_EXT_ACCEPTED
+	130 LMP_NOT_ACCEPTED_EXT
+	131 LMP_EXT_FEATURES_REQ
+	132 LMP_EXT_FEATURES_RES
+	139 LMP_PACKET_TYPE_TABLE_REQ
+	140 LMP_EXT_ESCO_LINK_REQ
+	141 LMP_EXT_REMOVE_ESCO_REQ
+	144 LMP_EXT_CHN_CLASSIFICATION_REQ
+	145 LMP_EXT_CHN_CLASSIFICATION
+	149 LMP_SNIFF_SUBRATING_REQ
+	150 LMP_SNIFF_SUBRATING_RES
+	151 LMP_PAUSE_ENCRYPTION_REQ
+	152 LMP_RESUME_ENCRYPTION_REQ
+	153 LMP_IO_CAP_REQ
+	154 LMP_IO_CAP_RES
+	)
+	/* LMP reason codes */
+	(
+	0x05 AUTHENTICATION_FAILURE_ERROR
+	0x06 KEY_MISSING
+	0x0b ACL_CONNECTION_ALREADY_EXISTS
+	0x13 OTHER_END_TERMINATED
+	0x15 ABOUT_TO_POEWR_OFF
+	0x16 LOCAL_HOST
+	0x18 PAIRING_NOT_ALLOWED
+	0x19 UNKNOWN_LMP_PDU
+	0x1A UNSUPPORTED_LMP_FEATURE 
+	0x1F UNSPECIFIED_ERROR
+	0x20 UNSUPPORTED_PARAMETERS
+	0x21 SWITCH_NOT_ALLOWED
+	0x23 TRANSACTION_COLLISION
+	0x24 PDU_NOT_ALLOWED
+	0x25 ENCRYPTION_MODE_NOT_ACCEPTABLE
+	0x2e NOT_SUPPORT_CHN_CLASSIFICATION
+	0x37 NOT_SUPPORT_SSP
+	)
+
+	/* test mode scenarios */
+	(
+	0 PAUSE_TEST_MODE
+	1 ZERO_PATTERN
+	2 ONE_PATTERN
+	3 ALT_PATTERN
+	4 PSEUDORANDOM
+	5 CLOSED_LOOP_BACK_ACL
+	6 CLOSED_LOOP_BACK_SCO
+	7 ACL_WITHOUT_WHITENING
+	8 SCO_WITHOUT_WHITENING
+	9 ALT2_PATTERN
+	255 EXIT_TEST_MODE
+	)
+	/* test mode hoppig modes */
+	(
+	0 FIXED_FREQ
+	1 NORMAL_HOP
+	)
+
+	/* mem_lmp_tid indicates which type of LMP will be sent */
+	(
+	0 TID_NORM_REPLY
+	1 TID_NORM_SEND
+	2 TID_ONE
+	3 TID_ZERO
+	4 TID_PAIRING
+	5 TID_ENCRYPTION
+	6 TID_VARIABLE
+	7 TID_RX
+	)
+
+	/* ============== lmp status ==========*/
+	(
+	0 lmp_incoming
+	1 lmp_outgoing
+	2 lmp_reject_msg
+	3 lmp_clear_msg
+	4 upper_reject_msg
+	5 upper_clear_msg
+	)
+
+(
+0x2ee00 TIMER_ONE_MINUTE //96000*2
+80 TIMER_SWITCH_WAITE
+12 TIMER_ENPT_WAITE
+)
+
+(
+0 SWITCH_FLAG_INIT
+1 SWITCH_FLAG_ACCEPT
+2 SWITCH_FLAG_NOT_ACCEPT
+)
+(
+0 NULL_ENCRYP
+1 DONE_ENCRYP
+)
+
Index: btkb/format/memblocks.format
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/btkb/format/memblocks.format	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/btkb/format/memblocks.format	(working copy)
@@ -0,0 +1,61 @@
+//
+//
+//Large memory blocks defined in this file.
+//Blocks Shall be defined with absolute address.
+//Blocks' length Shall be specified in comment following Blocks' names.
+//Different blocks MAY be overlap.
+//Blocks defined in this file Shall NOT be overlap with variable in memmap.format.
+
+// USB C51 exchange area
+(
+0xff0 mem_mcmd
+0xff1 mem_mouse_data
+)
+
+//l2cap RX buffers
+(
+0x1000 mem_l2cap_rxbuff1		//0x400
+0x1400 mem_l2cap_rxbuff2		//0x400
+//end address:0x17ff
+)
+//l2cap TX buffers
+(
+0x1800 mem_tx_buff0		//128
+0x1880 mem_tx_buff1		//128
+0x1900 mem_tx_buff2		//128
+0x1980 mem_tx_buff3		//128
+0x1a00 mem_tx_buff4		//128
+0x1a80 mem_tx_buff5		//128
+0x1b00 mem_tx_buff6		//128
+0x1b80 mem_tx_buff7		//128
+//end address: 0x1bff
+)
+
+//uart buffer
+(
+0x1800 mem_h5rx_buf//0x400
+0x1bff mem_h5rx_buf_end
+0x1c00 mem_h5tx_buf
+0x1fff mem_h5tx_buf_end
+)
+
+(
+0x4a00 mem_module_rx_buf//0x400
+0x4fff mem_module_rx_buf_end
+0x1c00 mem_module_tx_buf
+0x1fff mem_module_tx_buf_end
+)
+
+(
+0x1800 mem_ir_record
+0x1c      mem_ir_record_max
+)
+
+ifndef REVD 
+(
+0x4b00 memk
+)
+
+
+endif
+
Index: btkb/format/module.format
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/btkb/format/module.format	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/btkb/format/module.format	(working copy)
@@ -0,0 +1,67 @@
+memalloc(
+	2 mem_module_temp_len
+
+)
+omemalloc(	
+	1 mem_at_gpio
+	1 mem_module_wake_up_gpio
+	1 mem_module_state_gpio
+	1 mem_module_connect_state_gpio
+	6 mem_module_version
+
+	4 mem_last_uart_clock
+	2 mem_current_packet_length
+	2 mem_module_prepare_tx_len
+	1 mem_module_state
+	1 mem_module_task
+	6 mem_cmode_addr
+	2 mem_at_scan_time
+	4 mem_prarm_pswd
+	4 mem_prarm_uart
+	3 mem_prarm_blename
+	4 mem_prarm_name
+	3 mem_prarm_bleadss
+	4 mem_prarm_adss
+	4 mem_prarm_vers
+	5 mem_prarm_class
+	6 mem_prarm_clrflg
+	6 mem_prarm_reconn
+	2 mem_prarm_bledis
+	3 mem_prarm_dis
+	4 mem_prarm_stsn
+	3 mem_prarm_atp
+	4 mem_prarm_list
+	4 mem_prarm_role
+	5 mem_prarm_sniff
+	4 mem_prarm_ldev
+	4 mem_prarm_rssi
+	4 mem_prarm_cdev
+	3 mem_prarm_bleinqr
+	4 mem_prarm_inqr
+	5 mem_prarm_cmode
+	4 mem_prarm_mode	
+	7 mem_prarm_dmstate
+	6 mem_prarm_discov
+	3 mem_prarm_ota
+	2 mem_prarm_bleconn
+	4 mem_prarm_conn
+	7 mem_prarm_pageout
+	7 mem_prarm_recfail
+
+
+
+	//2 mem_rx_count
+	300 mem_module_uuid_list
+	
+)
+	(
+		110  DM_REFCOM_BUFF_LEN
+		20 DM_LE_BUFF_LEN
+	)
+	(
+		0x200 UART_AIR_CONTROL_THRESHOLD
+		0x150 UART_RX_CONTROL_THRESHOLD
+	)
+
+
+
Index: btkb/format/mouse.format
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/btkb/format/mouse.format	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/btkb/format/mouse.format	(working copy)
@@ -0,0 +1,236 @@
+
+memalloc(
+2 mem_init_cnt
+)
+//dpi eeprom addr
+(
+198 mouse_dpi_eeprom_addr
+)
+(
+199 mouse_last_device
+)
+omemalloc(
+// Mouse Work Area
+2 mem_mouse_x
+2 mem_mouse_y
+1 mem_mouse_z
+1 mem_mouse_key
+1 mem_mouse_z_last
+1 mem_mouse_z_before
+1 mem_mouse_z_now
+1 mem_mouse_z_data
+1 mem_mouse_move_flag
+1 mem_reconnect_timeout
+2 mem_mouse_direct_timeout
+2 mem_mouse_no_data_timeout
+2 mem_mouse_blank_data_timeout
+2 mem_mouse_discovery_timer
+2 mem_mouse_direct_timer
+2 mem_mouse_no_data_timer
+2 mem_mouse_blank_data_timer
+1 mem_mouse_send_blank_timer
+1 mem_mouse_dpi
+1 mem_mouse_dpi_button_state
+1 mem_mouse_test_cnt
+2 mem_le_hibernate_timer
+1 mem_mouse_mode_state
+
+// Mouse Config Area
+1 mem_sensor_type
+1 mem_lbutton_gpio
+1 mem_rbutton_gpio
+1 mem_mbutton_gpio
+1 mem_dpi_button_gpio
+1 mem_sensor_data_gpio
+1 mem_whee_a_data_gpio
+1 mem_whee_b_data_gpio
+1 mem_conn_cnt
+650 mem_mouse_uuid_list
+
+
+)
+
+//Mouse sensor ID1
+(
+0x30 P3204_ID
+0x31 P3065_ID
+)
+//Mouse sensor ID2
+(
+0x00 P3212_ID2
+0x70 P3065_ID2
+)
+
+//Mouse Button
+(
+0x01 MOUSE_BUTTON_L
+0x02 MOUSE_BUTTON_R
+0x03 MOUSE_BUTTON_LR
+0x04 MOUSE_BUTTON_M
+0x05 MOUSE_BUTTON_LM
+0x06 MOUSE_BUTTON_RM
+0x07 MOUSE_BUTTON_LRM
+)
+
+//mem_24g_rx_packet_flag
+(
+0 FLAG_24G_NOT_RX_PACKET
+1 FLAG_24G_RX_PACKET
+)
+
+//mem_24g_mode
+(
+0 MODE_24G_OFF
+1 MODE_24G_TX
+2 MODE_24G_RX
+3 MODE_24G_PAIRING
+
+)
+// device_led_gpio
+(
+0X05 DEVICE1_LED_GPIO
+0X08 DEVICE2_LED_GPIO
+0X01 DEVICE3_LED_GPIO
+)
+
+//bt mode device number
+(
+0X01 MODE_BT_DEVICE1
+0X02 MODE_BT_DEVICE2
+0X03 MODE_BT_DEVICE3
+0X04 MODE_24G_DEVICE
+)
+
+//mem_24g_pairing_sm
+(
+0 STATE_24G_PAIRING_NULL
+1 STATE_24G_PAIRING_1
+2 STATE_24G_PAIRING_2
+3 STATE_24G_PAIRING_3
+0X11 STATE_24G_PAIRING_1_WAITING_ACK
+0X12 STATE_24G_PAIRING_2_WAITING_ACK
+0X13 STATE_24G_PAIRING_3_WAITING_ACK
+0XFF STATE_24G_PAIRING_SUCCESS
+)
+
+
+//mem_mouse_find_type_value_flag
+(
+0X00 LE_FIND_TYPE_VALUE_HID_BIT
+0X01 LE_FIND_TYPE_VALUE_BATTERY_BIT
+0X02 LE_FIND_TYPE_VALUE_DEVICE_INFO_BIT
+0x03 LE_FIND_TYPE_VALUE_GATT_BIT
+
+)
+
+(
+1 MOUSE_SHUTDOWN
+
+)
+//mem_mouse_flag
+(
+0 MOUSE_CPI_FLAG
+1 MOUSE_SELECT_RECONN_FLAG
+2 MOUSE_CANCEL_RECONN_FLAG
+3 MOUSE_SELECT_BUTTON_CANCEL_RECONN_FLAG
+4 MOUSE_BLE_RECON_FLAG
+)
+
+(
+194 MOUSE_SHUTDOWN_FLAG
+)
+(
+0x00 DPI_BUTTON_STATE_DOWN
+0x01 DPI_BUTTON_STATE_UP
+
+)
+(
+  0x8971 rf_adc_mode
+  0x8972 rf_adc_gc
+  0x8973 rf_adc_ch
+)
+(
+2 MOUSE_ADC_GC
+)
+
+(
+1 ONE_TRADITION_MOUSE
+2 ONE_BLE_MOUSE
+)
+
+
+(
+1 SENSOR_TYPE_A7530
+2 SENSOR_TYPE_P3204
+3 SENSOR_TYPE_P3610
+)
+0x00 PAN_REG_PID_L
+0x01 PAN_REG_PID_H
+0x02 PAN_REG_MOTION_STAUS
+0x03 PAN_REG_DELTA_X
+0x04 PAN_REG_DELTA_Y
+0x05 PAN_REG_OPRATION_MODE
+0x06 PAN_REG_CONFIG
+0x07 PAN_REG_IMAGE_QUALITY
+0x08 PAN_REG_OPRATION_STATE
+0x09 PAN_REG_WRITE_PROTECT
+0x0A PAN_REG_SLEEP_1
+0x0B PAN_REG_ENTER_TIME
+0x0C PAN_REG_SLEEP_2
+0x0D PAN_REG_IMAGE_THRESHOLD
+0x0E PAN_REG_IMAGE_RECGNITION
+
+7 pan_bit_motion
+
+(
+1000 MOUSE_LPM_CLR_LOCK_TIME
+0x06 MOUSE_DPI_ADDRESS
+0x05 MOUSE_P3610_DPI_REG
+0x02 MOUSE_DPI_MAX_DECR
+)
+(
+80 MOUSE_SEND_BLANK_TIMER
+)
+
+
+//mem_mouse_mode_state
+(
+0x00 MOUSE_MODE_STATE_IDLE
+0x01 MOUSE_MODE_STATE_BT
+0x02 MOUSE_MODE_STATE_BLE
+)
+//ui led blink
+(
+200 FLAG_LED_RECONNECT_BLINK
+1000 FLAG_LED_BLINK_DISCOVERY
+)
+//rf param
+(
+0xFF RF_2M_IF 
+0x7F RF_1M_IF
+0x00 RF_0M_IF
+)
+(
+0 FLAG_ADC_CHANNEL1_GPIO5
+10 FLAG_MOUSE_CHECK_VDD_COUNT
+1 FLAG_VDD_LOW
+0 FLAG_VDD_NOT_LOW
+
+191 EEPROM_ADDR_VDD_FLAG
+193 EEPROM_ADDR_VDD_LOW_FLAG
+)
+
+//sniff param
+(
+0x000c   SNIFF_INTERVAL_7500US
+0x000e   SNIFF_INTERVAL_8750US
+0x0010	SNIFF_INTERVAL_10MS
+)
+
+//low vdd
+(
+33 FLAG_LOW_VDD_MULTIPLIER
+31 FLAG_LOW_VDD_DIVISOR
+)
+
+
Index: btkb/format/patch.format
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/btkb/format/patch.format	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/btkb/format/patch.format	(working copy)
@@ -0,0 +1,523 @@
+
+(
+	  0 patch00_0
+	  1 patch00_1
+	  2 patch00_2
+	  3 patch00_3
+	  4 patch00_4
+	  5 patch00_5
+	  6 patch00_6
+	  7 patch00_7
+	  8 patch01_0
+	  9 patch01_1
+	 10 patch01_2
+	 11 patch01_3
+	 12 patch01_4
+	 13 patch01_5
+	 14 patch01_6
+	 15 patch01_7
+	 16 patch02_0
+	 17 patch02_1
+	 18 patch02_2
+	 19 patch02_3
+	 20 patch02_4
+	 21 patch02_5
+	 22 patch02_6
+	 23 patch02_7
+	 24 patch03_0
+	 25 patch03_1
+	 26 patch03_2
+	 27 patch03_3
+	 28 patch03_4
+	 29 patch03_5
+	 30 patch03_6
+	 31 patch03_7
+	 32 patch04_0
+	 33 patch04_1
+	 34 patch04_2
+	 35 patch04_3
+	 36 patch04_4
+	 37 patch04_5
+	 38 patch04_6
+	 39 patch04_7
+	 40 patch05_0
+	 41 patch05_1
+	 42 patch05_2
+	 43 patch05_3
+	 44 patch05_4
+	 45 patch05_5
+	 46 patch05_6
+	 47 patch05_7
+	 48 patch06_0
+	 49 patch06_1
+	 50 patch06_2
+	 51 patch06_3
+	 52 patch06_4
+	 53 patch06_5
+	 54 patch06_6
+	 55 patch06_7
+	 56 patch07_0
+	 57 patch07_1
+	 58 patch07_2
+	 59 patch07_3
+	 60 patch07_4
+	 61 patch07_5
+	 62 patch07_6
+	 63 patch07_7
+	 64 patch08_0
+	 65 patch08_1
+	 66 patch08_2
+	 67 patch08_3
+	 68 patch08_4
+	 69 patch08_5
+	 70 patch08_6
+	 71 patch08_7
+	 72 patch09_0
+	 73 patch09_1
+	 74 patch09_2
+	 75 patch09_3
+	 76 patch09_4
+	 77 patch09_5
+	 78 patch09_6
+	 79 patch09_7
+	 80 patch0a_0
+	 81 patch0a_1
+	 82 patch0a_2
+	 83 patch0a_3
+	 84 patch0a_4
+	 85 patch0a_5
+	 86 patch0a_6
+	 87 patch0a_7
+	 88 patch0b_0
+	 89 patch0b_1
+	 90 patch0b_2
+	 91 patch0b_3
+	 92 patch0b_4
+	 93 patch0b_5
+	 94 patch0b_6
+	 95 patch0b_7
+	 96 patch0c_0
+	 97 patch0c_1
+	 98 patch0c_2
+	 99 patch0c_3
+	100 patch0c_4
+	101 patch0c_5
+	102 patch0c_6
+	103 patch0c_7
+	104 patch0d_0
+	105 patch0d_1
+	106 patch0d_2
+	107 patch0d_3
+	108 patch0d_4
+	109 patch0d_5
+	110 patch0d_6
+	111 patch0d_7
+	112 patch0e_0
+	113 patch0e_1
+	114 patch0e_2
+	115 patch0e_3
+	116 patch0e_4
+	117 patch0e_5
+	118 patch0e_6
+	119 patch0e_7
+	120 patch0f_0
+	121 patch0f_1
+	122 patch0f_2
+	123 patch0f_3
+	124 patch0f_4
+	125 patch0f_5
+	126 patch0f_6
+	127 patch0f_7
+	128 patch10_0
+	129 patch10_1
+	130 patch10_2
+	131 patch10_3
+	132 patch10_4
+	133 patch10_5
+	134 patch10_6
+	135 patch10_7
+	136 patch11_0
+	137 patch11_1
+	138 patch11_2
+	139 patch11_3
+	140 patch11_4
+	141 patch11_5
+	142 patch11_6
+	143 patch11_7
+	144 patch12_0
+	145 patch12_1
+	146 patch12_2
+	147 patch12_3
+	148 patch12_4
+	149 patch12_5
+	150 patch12_6
+	151 patch12_7
+	152 patch13_0
+	153 patch13_1
+	154 patch13_2
+	155 patch13_3
+	156 patch13_4
+	157 patch13_5
+	158 patch13_6
+	159 patch13_7
+	160 patch14_0
+	161 patch14_1
+	162 patch14_2
+	163 patch14_3
+	164 patch14_4
+	165 patch14_5
+	166 patch14_6
+	167 patch14_7
+	168 patch15_0
+	169 patch15_1
+	170 patch15_2
+	171 patch15_3
+	172 patch15_4
+	173 patch15_5
+	174 patch15_6
+	175 patch15_7
+	176 patch16_0
+	177 patch16_1
+	178 patch16_2
+	179 patch16_3
+	180 patch16_4
+	181 patch16_5
+	182 patch16_6
+	183 patch16_7
+	184 patch17_0
+	185 patch17_1
+	186 patch17_2
+	187 patch17_3
+	188 patch17_4
+	189 patch17_5
+	190 patch17_6
+	191 patch17_7
+	192 patch18_0
+	193 patch18_1
+	194 patch18_2
+	195 patch18_3
+	196 patch18_4
+	197 patch18_5
+	198 patch18_6
+	199 patch18_7
+	200 patch19_0
+	201 patch19_1
+	202 patch19_2
+	203 patch19_3
+	204 patch19_4
+	205 patch19_5
+	206 patch19_6
+	207 patch19_7
+	208 patch1a_0
+	209 patch1a_1
+	210 patch1a_2
+	211 patch1a_3
+	212 patch1a_4
+	213 patch1a_5
+	214 patch1a_6
+	215 patch1a_7
+	216 patch1b_0
+	217 patch1b_1
+	218 patch1b_2
+	219 patch1b_3
+	220 patch1b_4
+	221 patch1b_5
+	222 patch1b_6
+	223 patch1b_7
+	224 patch1c_0
+	225 patch1c_1
+	226 patch1c_2
+	227 patch1c_3
+	228 patch1c_4
+	229 patch1c_5
+	230 patch1c_6
+	231 patch1c_7
+	232 patch1d_0
+	233 patch1d_1
+	234 patch1d_2
+	235 patch1d_3
+	236 patch1d_4
+	237 patch1d_5
+	238 patch1d_6
+	239 patch1d_7
+	240 patch1e_0
+	241 patch1e_1
+	242 patch1e_2
+	243 patch1e_3
+	244 patch1e_4
+	245 patch1e_5
+	246 patch1e_6
+	247 patch1e_7
+	248 patch1f_0
+	249 patch1f_1
+	250 patch1f_2
+	251 patch1f_3
+	252 patch1f_4
+	253 patch1f_5
+	254 patch1f_6
+	255 patch1f_7
+	  0 patch20_0
+	  1 patch20_1
+	  2 patch20_2
+	  3 patch20_3
+	  4 patch20_4
+	  5 patch20_5
+	  6 patch20_6
+	  7 patch20_7
+	  8 patch21_0
+	  9 patch21_1
+	 10 patch21_2
+	 11 patch21_3
+	 12 patch21_4
+	 13 patch21_5
+	 14 patch21_6
+	 15 patch21_7
+	 16 patch22_0
+	 17 patch22_1
+	 18 patch22_2
+	 19 patch22_3
+	 20 patch22_4
+	 21 patch22_5
+	 22 patch22_6
+	 23 patch22_7
+	 24 patch23_0
+	 25 patch23_1
+	 26 patch23_2
+	 27 patch23_3
+	 28 patch23_4
+	 29 patch23_5
+	 30 patch23_6
+	 31 patch23_7
+	 32 patch24_0
+	 33 patch24_1
+	 34 patch24_2
+	 35 patch24_3
+	 36 patch24_4
+	 37 patch24_5
+	 38 patch24_6
+	 39 patch24_7
+	 40 patch25_0
+	 41 patch25_1
+	 42 patch25_2
+	 43 patch25_3
+	 44 patch25_4
+	 45 patch25_5
+	 46 patch25_6
+	 47 patch25_7
+	 48 patch26_0
+	 49 patch26_1
+	 50 patch26_2
+	 51 patch26_3
+	 52 patch26_4
+	 53 patch26_5
+	 54 patch26_6
+	 55 patch26_7
+	 56 patch27_0
+	 57 patch27_1
+	 58 patch27_2
+	 59 patch27_3
+	 60 patch27_4
+	 61 patch27_5
+	 62 patch27_6
+	 63 patch27_7
+	 64 patch28_0
+	 65 patch28_1
+	 66 patch28_2
+	 67 patch28_3
+	 68 patch28_4
+	 69 patch28_5
+	 70 patch28_6
+	 71 patch28_7
+	 72 patch29_0
+	 73 patch29_1
+	 74 patch29_2
+	 75 patch29_3
+	 76 patch29_4
+	 77 patch29_5
+	 78 patch29_6
+	 79 patch29_7
+	 80 patch2a_0
+	 81 patch2a_1
+	 82 patch2a_2
+	 83 patch2a_3
+	 84 patch2a_4
+	 85 patch2a_5
+	 86 patch2a_6
+	 87 patch2a_7
+	 88 patch2b_0
+	 89 patch2b_1
+	 90 patch2b_2
+	 91 patch2b_3
+	 92 patch2b_4
+	 93 patch2b_5
+	 94 patch2b_6
+	 95 patch2b_7
+	 96 patch2c_0
+	 97 patch2c_1
+	 98 patch2c_2
+	 99 patch2c_3
+	100 patch2c_4
+	101 patch2c_5
+	102 patch2c_6
+	103 patch2c_7
+	104 patch2d_0
+	105 patch2d_1
+	106 patch2d_2
+	107 patch2d_3
+	108 patch2d_4
+	109 patch2d_5
+	110 patch2d_6
+	111 patch2d_7
+	112 patch2e_0
+	113 patch2e_1
+	114 patch2e_2
+	115 patch2e_3
+	116 patch2e_4
+	117 patch2e_5
+	118 patch2e_6
+	119 patch2e_7
+	120 patch2f_0
+	121 patch2f_1
+	122 patch2f_2
+	123 patch2f_3
+	124 patch2f_4
+	125 patch2f_5
+	126 patch2f_6
+	127 patch2f_7
+	128 patch30_0
+	129 patch30_1
+	130 patch30_2
+	131 patch30_3
+	132 patch30_4
+	133 patch30_5
+	134 patch30_6
+	135 patch30_7
+	136 patch31_0
+	137 patch31_1
+	138 patch31_2
+	139 patch31_3
+	140 patch31_4
+	141 patch31_5
+	142 patch31_6
+	143 patch31_7
+	144 patch32_0
+	145 patch32_1
+	146 patch32_2
+	147 patch32_3
+	148 patch32_4
+	149 patch32_5
+	150 patch32_6
+	151 patch32_7
+	152 patch33_0
+	153 patch33_1
+	154 patch33_2
+	155 patch33_3
+	156 patch33_4
+	157 patch33_5
+	158 patch33_6
+	159 patch33_7
+	160 patch34_0
+	161 patch34_1
+	162 patch34_2
+	163 patch34_3
+	164 patch34_4
+	165 patch34_5
+	166 patch34_6
+	167 patch34_7
+	168 patch35_0
+	169 patch35_1
+	170 patch35_2
+	171 patch35_3
+	172 patch35_4
+	173 patch35_5
+	174 patch35_6
+	175 patch35_7
+	176 patch36_0
+	177 patch36_1
+	178 patch36_2
+	179 patch36_3
+	180 patch36_4
+	181 patch36_5
+	182 patch36_6
+	183 patch36_7
+	184 patch37_0
+	185 patch37_1
+	186 patch37_2
+	187 patch37_3
+	188 patch37_4
+	189 patch37_5
+	190 patch37_6
+	191 patch37_7
+	192 patch38_0
+	193 patch38_1
+	194 patch38_2
+	195 patch38_3
+	196 patch38_4
+	197 patch38_5
+	198 patch38_6
+	199 patch38_7
+	200 patch39_0
+	201 patch39_1
+	202 patch39_2
+	203 patch39_3
+	204 patch39_4
+	205 patch39_5
+	206 patch39_6
+	207 patch39_7
+	208 patch3a_0
+	209 patch3a_1
+	210 patch3a_2
+	211 patch3a_3
+	212 patch3a_4
+	213 patch3a_5
+	214 patch3a_6
+	215 patch3a_7
+	216 patch3b_0
+	217 patch3b_1
+	218 patch3b_2
+	219 patch3b_3
+	220 patch3b_4
+	221 patch3b_5
+	222 patch3b_6
+	223 patch3b_7
+	224 patch3c_0
+	225 patch3c_1
+	226 patch3c_2
+	227 patch3c_3
+	228 patch3c_4
+	229 patch3c_5
+	230 patch3c_6
+	231 patch3c_7
+	232 patch3d_0
+	233 patch3d_1
+	234 patch3d_2
+	235 patch3d_3
+	236 patch3d_4
+	237 patch3d_5
+	238 patch3d_6
+	239 patch3d_7
+	240 patch3e_0
+	241 patch3e_1
+	242 patch3e_2
+	243 patch3e_3
+	244 patch3e_4
+	245 patch3e_5
+	246 patch3e_6
+	247 patch3e_7
+	248 patch3f_0
+	249 patch3f_1
+	250 patch3f_2
+	251 patch3f_3
+	252 patch3f_4
+	253 patch3f_5
+	254 patch3f_6
+	255 patch3f_7
+
+)
+//ota
+(
+0x80 cmd_read_eep
+0x81 cmd_write_eep
+0x82 cmd_crc_eep
+0x83 cmd_size_eep
+)
Index: btkb/format/prcp.format
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/btkb/format/prcp.format	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/btkb/format/prcp.format	(working copy)
@@ -0,0 +1,45 @@
+
+//prcp opcode
+(
+
+0x00 COMMON_RES
+0x01 READ_REGISTERS_REQ
+0x02 READ_REGISTERS_RES
+0x03 WRITE_REGISTERS_REQ
+0x04 I2C_CONFIG_REQ
+0x05 I2C_READ_REQ
+0x06 I2C_READ_RES
+0x07 I2C_WRITE_REQ
+0x08 SPI_CONFIG_REQ
+0x09 SPI_READ_REQ
+0x0a SPI_READ_RES
+0x0b SPI_WRITE_REQ
+0x0c PWM_CONFIG_REQ
+0x0d PWM_WRITE_REQ
+0x0e GPIO_CONFIG_REQ
+0x0f GPIO_READ_REQ
+0x10 GPIO_READ_RES
+0x11 GPIO_WRITE_REQ
+0x12 OTA_WRITE_REQ
+0X13 OTA_END_CMD
+
+)
+(
+1 PRCP_LE
+2 PRCP_SSP
+0x14 PRCP_TX_LE 
+0x17 PRCP_RX_LE
+20 PRCP_TX_DATA_LEN
+)
+memalloc(
+20 mem_prcp_data
+1 mem_prcp
+1 mem_prcp_tx_len
+//ota
+2 rx_buf_data_ptr
+)
+xmemalloc(
+//ota
+2 mem_eeprom_ota_base_addr  /*the start- writing addr in eeprom  */
+)
+
Index: btkb/format/regs.format
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/btkb/format/regs.format	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/btkb/format/regs.format	(working copy)
@@ -0,0 +1,291 @@
+(
+  0x8000 core_chipid
+  0x8003 core_kick
+  0x8005 core_lpm_wr
+  0x8006 core_misc_ctrl
+  0x8007 core_otp_rdata
+  0x8009 core_pcmoutfifo
+  0x8010 core_reset
+  0x8011 core_encrypt
+  0x8015 core_uart_txd
+  0x8022 core_ucode_hi
+  0x8023 core_ucode_ctrl
+  0x8024 core_ucode_low
+  0x8025 core_ucode_data
+  0x8040 core_halfslot
+  0x8042 core_clksel
+  0x8043 core_uart_clksel
+  0x8043 core_config 
+  0x8044 core_xtal_stable_time
+  0x8045 core_otp_addr
+  0x8046 core_otp_din
+  0x8047 core_otp_ctrl
+  0x8048 core_otpd_addr
+  0x804a core_otpd_len
+  0x804b core_otpd_ctrl
+  0x804c core_lpm_reg
+  0x804f core_lpm_isogate
+  0x8050 core_clkoff
+  0x8052 core_uart_baud
+  0x8054 core_uart_rsaddr
+  0x8056 core_uart_readdr
+  0x8058 core_uart_rrptr
+  0x805a core_uart_tsaddr
+  0x805c core_uart_teaddr
+  0x805e core_uart_twptr
+  0x8060 core_uart_trptrp
+  0x8062 core_uart_ctrl
+  0x8063 core_kscn_ksctrl
+  0x8064 core_kscn_rctc
+  0x8065 core_kscn_scancycle_timer_l
+  0x8066 core_kscn_scancycle_timer_h
+  0x8067 core_kscn_m_debounce          
+  0x8068 core_kscn_modkey
+  0x806f core_kscn_rowmask
+  0x8070 core_gpio_oe0
+  0x8071 core_gpio_oe1
+  0x8072 core_gpio_oe2
+  0x8073 core_gpio_oe3
+  0x8074 core_gpio_out0
+  0x8075 core_gpio_out1
+  0x8076 core_gpio_out2
+  0x8077 core_gpio_out3
+  0x8078 core_gpio_pu0
+  0x8079 core_gpio_pu1
+  0x807a core_gpio_pu2
+  0x807b core_gpio_pu3
+  0x807c core_gpio_pd0
+  0x807d core_gpio_pd1
+  0x807e core_gpio_pd2
+  0x807f core_gpio_pd3
+  0x8080 core_gpio_sel
+  0x8081 core_gpio_sel1
+  0x8082 core_gpio_sel2
+  0x8083 core_gpio_key0
+  0x8084 core_gpio_key1
+  0x8085 core_gpio_key2
+  0x8086 core_spid_ctrl
+  0x8087 core_spid_delay
+  0x8088 core_spid_txlen
+  0x808a core_spid_txaddr
+  0x808c core_spid_rxaddr
+  0x808e core_spid_rxlen
+  0x8090 core_iicd_ctrl
+  0x8091 core_iicd_scl_low
+  0x8092 core_iicd_scl_high
+  0x8093 core_iicd_start_setup
+  0x8094 core_iicd_start_hold
+  0x8095 core_iicd_stop_setup
+  0x8096 core_iicd_data_setup
+  0x8097 core_iicd_data_hold
+  0x8098 core_iicd_txlen
+  0x809a core_iicd_txaddr
+  0x809c core_iicd_rxaddr
+  0x809e core_iicd_rxlen
+  0x80a0 core_pwm_pcnt0
+  0x80a2 core_pwm_ncnt0
+  0x80a4 core_pwm_pcnt1
+  0x80a6 core_pwm_ncnt1
+  0x80b0 core_enc_ctrl
+  0x80b1 core_cvsd_ctrl
+  0x80b2 core_codec_ctrl
+  0x80b3 core_dec_ctrl
+  0x80b4 core_bist_ctrl
+
+
+
+  
+  0x8108 core_misc_status
+  0x8109 core_qdec_cntx
+  0x810a core_qdec_cnty
+  0x810b core_qdec_cntz
+  0x810c core_uart_status
+  0x810d core_uart_rbaud
+  0x810e core_uart_txitems
+  0x8110 core_uart_trptr
+  0x8112 core_uart_rxitems
+  0x8114 core_uart_rdptr
+  0x8116 core_uart_rwptr
+  0x8119 core_kscn_kstat
+  0x811a core_kscn_event
+  0x811b core_kscn_event_num
+  0x811c core_gpio_in
+  0x811d core_gpio_in1
+  0x8124 core_current_otp_addr
+  0x8126 core_otpd_remain
+  0x8128 core_spid_remain
+  0x812a core_iicd_remain
+  0x812c core_dma_status
+  0x812d core_perf_status
+  0x812e core_adc_in
+  0x8134 core_pcminfifo
+  0x8135 core_pcminfifo_remain
+  0x8136 core_pcmoutfifo_remain
+  0x8138 core_lpm_ctrl
+  0x813c core_lpm_xtalcnt
+  0x813d core_lpm_buckcnt
+  0x813e core_lpm_ldocnt
+  0x813f core_lpm_latch
+  0x8140 core_gpio_wakeup_low
+  0x8144 core_gpio_wakeup_high
+  0x8149 core_clk_counter
+  0x8150 core_adc_sum
+// dummy regs  
+
+  0x8203 core_ice_ctrl
+  0x8204 core_ice_status
+  0x8205 core_ice_break0
+  0x8207 core_ice_break1
+  
+  0x8280 core_docd_ctrl
+  0x8288 core_docd_paddr
+  0x828a core_docd_pdata
+
+  0x8300 iic_prer_low		
+  0x8301 iic_slave_addr	
+  0x8302 iic_ctr					
+  0x8303 iic_cr					
+  0x8304 iic_rxr					
+  0x8305 iic_txr					
+  0x8306 iic_sr					
+  0x8307 iic_fifo				
+
+  0x8400   mem_b_box          /* entire bank */
+  0x8500   mem_e_box          /* entire bank */
+  0x8600   mem_l_box          /* entire bank */
+
+ifdef REVD
+  0x8700 memk
+endif
+
+  0x8900 rfen_rx
+  0x8901 rfen_tx
+  0x8902 rfen_mdm
+  0x8903 rfen_sn
+  0x8904 rfen_msc
+  0x8905 rfen_ck
+  0x8906 rfen_adc
+  0x8907 rfen_mod
+  0x8912 rf_agc_ctrl
+  0x8914 rfen_ulp
+
+  0x894b rf_rx_vctrl_reg1
+  0x894c rf_rx_vctrl_reg2
+  0x894d rf_rx_lna_ctrim
+
+  0x8950 rf_bpf_ctrim
+  0x8951 rf_bpf_ib
+  0x8952 rf_adc_rccal
+  0x8952 rf_rccal_ctrl
+  0x8953 rf_rccal_sel
+  0x8955 rf_tx_pa
+  0x895f rf_pll_rstn
+  0x8964 rf_sdm_en
+  0x8960 rf_pll_intg
+  0x8961 rf_pll_frac
+  0x8963 rf_pll_frachi
+  0x896c rf_afc_cap
+  0x8967 rf_clkpll_bias
+  0x896f rf_clkpll_en
+  0x8968 rf_clkpll_int
+  0x8969 rf_clkpll_frac
+  0x896d rf_balun_ctrim
+  0x8972 rf_saradc_ctrl
+  0x8973 rfen_chgpump
+  0x8980 rf_rccal_result
+  0x8981 rf_afc_d2a
+  0x8982 rf_rssi
+
+
+0x8c00 core_usb_config		
+0x8c01 core_usb_int_mask	
+0x8c10 core_usb_trig	
+0x8c11 core_usb_stall		
+0x8c12 core_usb_clear		
+0x8c18 core_usb_ep
+0x8c18 core_usb_dfifo0 
+0x8c19 core_usb_dfifo1  
+0x8c1a core_usb_dfifo2 
+0x8c20 core_usb_ep_len
+0x8c26 core_usb_status		
+0x8c27 core_usb_fifo_empty
+0x8c28 core_usb_fifo_full
+
+
+ifdef FPGA
+0 rx_freq_offset
+else
+4 rx_freq_offset
+endif
+2 tx_freq_offset
+
+/* bit difinitions */
+  4 whiteoff_bit
+  6 clksel_rc
+  5 clksel_dpll
+  4 clksel_xtal
+  5 adc_rccal
+  0 bpf_rccal
+  1 demod_clkoff
+
+(
+  7 cold_wake
+  3 gpio_latch
+  4 enable_retmem
+  0xef isogate_mask
+  0xe0 cs_mask
+)
+
+// misc ctrl
+(
+  0x01 otpd_start
+  0x02 spid_start
+  0x04 iicd_start
+  0x08 lock_otp
+  0x10 x_sethi
+  0x20 y_sethi
+  0x40 z_sethi
+  0x80 ccnt_start
+)
+// dma status bit
+(
+  0 otpd_crcok
+  1 otpd_done
+  2 spid_crcok
+  3 spid_done
+  4 iicd_crcok
+  5 iicd_done
+)
+
+0x8b uart_ctrl_default //BCSP
+0x81 uart_ctrl_h4 //H4
+0x81 uart_ctrl_normal
+0x81 uart_ctrl_57600
+2 uart_baud_len
+0x01 uartclk_dpll
+0x1a0 uart_baud_115200
+0xbb uart_baud_256000
+0x340 uart_baud_57600
+0x2dc6c00 uart_clk
+
+//core_clkoff
+(
+	0 CLOCK_OFF_AUTH_ROM
+	1 CLOCK_OFF_UC_ROM
+	2 CLOCK_OFF_DEBUG_UART
+	3 CLOCK_OFF_SCHED_RAM
+	4 CLOCK_OFF_TRANCE_FIFO
+	5 CLOCK_OFF_CORDIC
+	6 CLOCK_OFF_OTPD
+	7 CLOCK_OFF_I2C
+	8 CLICK_OFF_8051
+	9 CLOCK_OFF_KEYSCAN
+	0x0a CLOCK_OFF_USB
+	0x0b CLOCK_OFF_QDECODER
+	0x0c CLOCK_OFF_SPI
+	0x0d CLOCK_OFF_PWM
+	0x0e CLOCK_OFF_CODEC
+	0x0f CLOCK_OFF_UART
+)
+
+
Index: btkb/format/rfcomm.format
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/btkb/format/rfcomm.format	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/btkb/format/rfcomm.format	(working copy)
@@ -0,0 +1,375 @@
+/*****************************************************************************/
+/* RCS HEADER -- DO NOT ERASE                                                */
+/* $Author: Administrator $                                                           */
+/* $Id: bt_rfcomm_format.upper,v 1.1 2009-09-28 04:06:17 Administrator Exp $ */
+/* Orisil Technology                                                      */
+/*****************************************************************************/
+
+/**********/
+/* memory */
+/**********/
+
+memalloc(
+1 memRemoteRPNBitRate
+1 memRemotePRNDataBits
+1 memRemotePRNStopBit
+1 memRemotePRNParity
+1 memRemotePRNFlowControl
+1 memRemotePRNXon
+1 memRemotePRNXoff
+
+
+3 mem_mod2div_temp
+2 mem_contw_temp
+2 mem_attrib_list
+
+//rfcomm head
+1 mem_current_adss
+1 mem_current_channel
+1 mem_current_frame_type
+1 mem_current_fcs
+2 mem_current_length
+2 mem_rfcomm_uih_payload_ptr
+
+//rfcomm uih
+1 mem_uih_cmd_type
+2 mem_uih_length
+2 mem_param_payload_ptr
+
+
+//rfcomm modem status
+1 mem_ms_param
+
+//rfcomm pn
+1 mem_pn_credit_flow_type_info
+1 mem_pn_priority
+1 mem_pn_acknowledg_timer
+1 mem_pn_max_retrans
+
+1 mem_rfcomm_send_adss
+1 mem_rfcomm_send_frame_type
+1 mem_rfcomm_send_fcs
+1 mem_rfcomm_send_offset
+
+)
+
+xmemalloc(
+1 mem_pn_dlci
+2 mem_pn_max_frame_size
+
+1 memFCStemp1
+1 memFCStemp2
+1 memFCStemp3
+
+1 mem_rfcomm_initiator
+
+1 mem_remote_spp_channel
+
+1 mem_HIUfcs_SPP
+1 mem_HIUfcs_SPP_WCredits
+
+1 mem_rfcomm_send_more_pkt
+
+1 mem_remote_credits
+1 mem_credit_given
+
+//rfcomm modem status
+1 mem_ms_channel
+
+)
+
+/************************************************************************/
+  
+
+ 
+/************/
+/* constant */
+/************/
+
+/* RFCOMM state for Headset (memRFCOMM_State) */ 
+  (
+    0 RFCOMM_IDLE           /* before the responsor HS receive SABM            */
+    1 RFCOMM_W4_DLCI0_OPEN
+    2 RFCOMM_W4_DLCI0_CLOSE
+    3 RFCOMM_START_DLCI0    /* After respond SABM frame (DLCI=0)               */
+    4 RFCOMM_W4_DLCI_OPEN
+    5 RFCOMM_W4_DLCI_CLOSE
+    6 RFCOMM_DLCI_OPENED    
+   
+  )
+  
+/* RFCOMM timer constants   */
+  (
+    1000  RFCOMM_T1         /* Used by SABM and DISC frames,100*20ms = 20s     */     
+    1000  RFCOMM_T2         /* Used by commands send in UIH on DLCI0,          */
+    300   RFCOMM_T3_RINGON  /* 6s for ring fade time                           */
+  
+  )
+
+/* Command Type */
+  (
+    0x3F RSP_RX_SABM        /*responsor expect SABM from initiator             */
+    0x3F INI_TX_SABM
+	
+    0x73 RSP_TX_UA          /*responsor send out UA command                    */
+    0x73 UA_WFBIT_SET	    /* UA control field with F bit set                 */
+	
+    0xEF RSP_RX_UIH         /*responsor expect UIH from initiator              */
+
+    0xEF RSP_TX_UIH         /*responsor send UIH to initiator                  */
+     
+    0x1F RSP_TX_DM          /*responsor send DM to initiator                   */
+    0x1F DM_WFBIT_SET       /* DM control field with F bit set                 */
+    0x0F DM_WFBIT_CLEAR     /* DM control field with F bit clear               */
+
+    0x53 RSP_RX_DISC        /*responsor expect DISC from initiator             */
+    0x53 INI_TX_DISC	    /*initiator send DISC control type command         */
+     
+    0xFF RSP_RX_UIH_WDATA   /*UIH data with credit flow control info           */
+    
+    
+  )
+
+/* Multiplexor commands and responses frames */
+  (
+    0x83 PN_COMMAND           /* Bit 0 EA C/R Type = 000001         */
+    0x81 PN_RESPONSOR         /* Bit 0 EA C/R Type = 000001         */
+    
+    0xE3 MSC_COMMAND          /* Bit 0 EA C/R Type = 000111         */
+    0xE1 MSC_RESPONSOR
+ 
+    0x13 NSC_COMMAND          /* Bit 0 EA C/R Type = 001000         */
+    0x11 NSC_RESPONSOR        /* Bit 0 EA C/R Type = 001000         */
+
+    0x23 TEST_COMMAND         /* Bit 0 EA C/R Type = 000111         */
+    0x21 TEST_RESPONSOR 
+    
+    0x93 RPN_COMMAND          /* Bit 0 EA C/R Type = 001001         */
+    0x91 RPN_RESPONSOR 
+    
+    0x53 RLS_COMMAND          /* Bit 0 EA C/R Type = 001010         */
+    0x51 RLS_RESPONSOR 
+
+    0xA3 FCON_COMMAND         /* Bit 0 EA C/R Type = 000101         */
+    0xA1 FCON_RESPONSOR 
+    
+    0x63 FCOFF_COMMAND        /* Bit 0 EA C/R Type = 000110         */
+    0x61 FCOFF_RESPONSOR 
+    	
+    0x03 RLS_OVERRUN
+    0x05 RLS_PARITY_ERROR
+    0x09 RLS_FRAMING_ERROR
+  )
+
+/* memLocalCredit */
+  (
+    0x01 RFCOMM_CREDIT
+  )
+
+  (
+  	0x007f RFCOMM_MAX_FRAME_SIZE
+  )
+
+/* UIH received Data length */
+  (
+    0  LENGTH_ZERO
+    
+    6  LENGTH_OK
+    7  LENGTH_HOT
+    8  LENGTH_RING
+    9  LENGTH_ERROR
+    9  LENGTH_AGVOL_ONEBYTE
+    10 LENGTH_AGVOL_TWOBYTE
+    10 LENGTH_VOL_ONEBYTE
+    11 LENGTH_VOL_TWOBYTE
+    12 LENGTH_BRSF
+    13 LENGTH_PLUS_CIEV
+    15 LENGTH_INBANDRING
+    14 LENGTH_CIEV_CALL
+    17 LENGTH_CRING
+    20 LENGTH_BRSF_OK
+    24 LENGTH_CIND0
+    28 LENGTH_CIEV_TWO
+    32 LENGTH_CIND_OK
+    59 LENGTH_CIND_OK2
+    100 LENGTH_DISCARD
+  )
+  
+/************/
+/* flags    */
+/************/
+  
+/* memRFCOMM_L2CAP_Interface */
+  (
+    0 RFCOMM_TX_W4BUF_FLAG    /* Wait for Tx buffer empty flag */
+    1 RFCOMM_CLOSE_LINK_FLAG
+  )
+  
+
+    
+/* memRemoteMSC		*/
+  (
+    0 MSC_EA_BIT
+    1 MSC_FC_BIT
+    2 MSC_RTC_BIT
+    3 MSC_RTR_BIT
+    6 MSC_IC_BIT
+    7 MSC_DV_BIT
+  )
+
+/* memRemoteRLS         */
+  (
+    0x0C OVERRUN_ERROR
+    0x0A PARITY_ERROR
+    0x09 FRAMING_RERROR
+  )
+  
+/* memRemoteRPNBitRate  */
+  (
+    0x00 BITS2400
+    0x01 BITS4800
+    0x02 BITS7200
+    0x03 BITS9600
+    0x04 BITS19200
+    0x05 BITS38400
+    0x06 BITS57600
+    0x07 BITS115200
+    0x08 BITS230400
+  )
+  
+/* memRemotePRNDataBits	*/
+  (
+    0x00 DATABITS5
+    0x01 DATABITS6
+    0x02 DATABITS7
+    0x03 DATABITS8
+  )
+  
+/* memRemotePRNStopBit	*/
+  (
+    0    ONESTOP
+    1    ONEHALFSTOP
+  )
+  
+/* memRemotePRNParity   */
+  (
+    0    ODDPARITY
+    1    EVENPARITY
+    2    MARKPARITY
+    3    SPACEPARITY
+    
+    7    PARITY_ENABLE_BIT
+  )
+
+/* RPN bit mask(in)     */
+  (
+     0   BIT_RATE_MASK_BIT
+     1   DATA_BITS_MASK_BIT
+     2   STOP_BITS_MASK_BIT
+     3   PARITY_MASK_BIT
+     4   PARITY_TYPE_MASK_BIT
+     5   XON_CHAR_MASK_BIT
+     6   XOFF_CHAR_MASK_BIT
+  )
+  
+/* RPN bit mask(in) 2    */
+  (
+     0   XON_XOFF_INPUT_MASK_BIT
+     1   XON_XOFF_OUTPUT_MASK_BIT
+     2	 RTR_INPUT_MASK_BIT
+     3   RTR_OUTPUT_MASK_BIT
+     4   RTC_INPUT_MASK_BIT
+     5   RTC_OUTPUT_MASK_BIT
+
+  )
+
+/* memRFCOMM_Request	*/
+  (
+    0 SEND_MSC_CMD_REQ_FLAG
+    1 SEND_AT_CKPD_REQ_FLAG
+    2 SEND_RING_REQ_FLAG
+    3 SEND_SABM_CMD
+  )
+  
+/* memRFCOMM_Misc_Flag  */
+  (
+    0 MSC_CDM_ALREADY_SEND_FLAG
+    1 CREDIT_FLOW_USED_FLAG
+    2 DONT_EMBEDDED_CREDIT_FLAG 
+    3 MSC_EXCHANGE_DONE_FLAG
+    4 FLOW_CONTROL_FCOFF_BIT            /* set when receive FCoff, clear when FCon   */
+  )
+  
+/* memRemoteMSC		*/
+  (
+    1 FLOW_CONTROL_FC_BIT		/* received MSC FC bits                      */
+  
+  )
+/* Address filed        */
+  (
+    0 ADDR_EA_BIT
+    1 ADDR_CR_BIT
+    2 ADDR_D_BIT
+  )
+//should be same as descripted in SDP
+(
+    1 SPP_SLAVE_CHANNEL
+    7 OBEX_SERVER_CHANNEL
+    8 HF_SERVER_CHANNEL 
+    9 HS_SERVER_CHANNEL
+)
+/* memRFCOMM_Flag */
+(
+	0 USING_HF_PROFILE
+	1 USING_HS_PROFILE
+	2 USING_SPP_PROFILE
+)
+/*RFCOMM Frame Type*/
+(
+	0x3f RFCOMM_FRAME_TYPE_SABM
+	0x73 RFCOMM_FRAME_TYPE_UA
+	0xEF RFCOMM_FRAME_TYPE_UIH
+	0xFF RFCOMM_FRAME_TYPE_UIH_CREDITS
+	0x53 RFCOMM_FRAME_TYPE_DISCONN
+)
+/*RFCOMM UIH CMD TYPE*/
+(
+	0x41 UIH_PARAM_NEG_CMD
+	0x40 UIH_PARAM_NEG_RES
+	0x71 UIH_MODEM_STATUS_CMD
+	0x70 UIH_MODEM_STATUS_RES
+	0x49 UIH_PARAM_CMD_REMOVE_PORT
+)
+
+/*bits in rfcomm address*/
+(
+	0 RFCOMM_ADDRESS_EXT_LEN
+	1 RFCOMM_ADDRESS_CR
+	2 RFCOMM_ADDRESS_DERECTION
+
+
+)
+
+	(                                   
+	0 RFCOMM_CHANNEL_STATE_PN_CMD
+	1 RFCOMM_CHANNEL_STATE_PN_RES
+	2 RFCOMM_CHANNEL_STATE_SABM
+	3 RFCOMM_CHANNEL_STATE_UA
+	4 RFCOMM_CHANNEL_STATE_SND_MS_CMD
+	5 RFCOMM_CHANNEL_STATE_RCV_MS_CMD
+	6 RFCOMM_CHANNEL_STATE_SND_MS_RES
+	7 RFCOMM_CHANNEL_STATE_RCV_MS_RES
+	0xff RFCOMM_CHANNEL_SETUP_COMPLETE
+	) 
+
+	/*mem_rfcomm_send_more_pkt*/
+	(
+	1 MORE_PKT_MSC_CMD_HF
+	2 MORE_PKT_MSC_CMD_HS
+	3 MORE_PKT_MSC_CMD_SPP
+	4 MORE_PKT_MSC_CMD_OBEX
+	)
+
+	(
+	127 RFCOMM_MALLOC_SIZE
+	)
\ No newline at end of file
Index: btkb/format/sdp.format
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/btkb/format/sdp.format	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/btkb/format/sdp.format	(working copy)
@@ -0,0 +1,62 @@
+
+memalloc(
+0 mem_sdp_mem_start
+4 mem_uuid_search_pat
+2 mem_sdp_continue_byte
+1 mem_sdp_pduid
+2 mem_sdp_transactionid
+2 mem_sdp_attribute_maxbyte
+2 mem_sdp_record_maxcnt
+8 mem_sdp_error_code
+4 mem_sdp_record_handle
+1 mem_sdp_search_failed
+1 mem_sdp_LACAP_found
+1 mem_sdp_RFCOMM_found
+24 mem_handle_list
+1 mem_handle_humber
+0 mem_sdp_mem_end
+)
+xmemalloc(
+2 memui_uuid_table
+22 mem_all_uuid_16bits
+34 mem_all_uuid_128bits
+)
+(
+0 AGORHS_SERVICE
+1 GENAUDIO_SERVICE
+2 HANDSFREE_SERVICE
+)
+
+(
+1 SDP_ERROR_RESPONSE
+2 SDP_SERVICE_SEARCH_REQUEST
+3 SDP_SERVICE_SEARCH_RESPONSE
+4 SDP_SERVICE_ATTRIBUTE_REQUEST
+5 SDP_SERVICE_ATTRIBUTE_RESPONSE
+6 SDP_SERVICE_SEARCH_ATTRIBUTE_REQUEST
+7 SDP_SERVICE_SEARCH_ATTRIBUTE_RESPONSE
+)
+
+(
+0 ATTRIBUTEID_0000
+1 ATTRIBUTEID_0001
+2 ATTRIBUTEID_0004
+3 ATTRIBUTEID_0009
+4 ATTRIBUTEID_0100
+5 ATTRIBUTEID_0302
+6 ATTRIBUTEID_0006
+7 ATTRIBUTEID_0311
+)
+/* mem_sdp_search_profile */
+(
+1	SDP_SS_HEADSET
+2  	SDP_SS_HANDSFREE
+)
+(
+0x06 sdp_pduid_serviceSearchAttrib
+)
+0x2600 sdp_max_amount
+767 SDP_MALLOC_SIZE
+0x6e sdp_tid_spp //any number
+
+ 
Index: btkb/format/security.format
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/btkb/format/security.format	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/btkb/format/security.format	(working copy)
@@ -0,0 +1,72 @@
+
+memalloc(
+/* moved from bt.format for 3dh5 1021bytes packet buffer */
+17 mem_rxbuf
+
+16 mem_random_number
+16 mem_round_key
+16 mem_kinit
+
+16 mem_input_store
+16 mem_x
+15 mem_y
+1 mem_y15
+1 mem_pin_length
+16 mem_pin
+17 mem_key_store
+1 mem_key_store_end
+2 memp_ar_key
+2 memp_ar_input
+10 mem_ar_hround
+
+
+1 mem_ec_infinite
+1 mem_ec_loopc
+
+0 memdat
+/* ecc calculation */
+
+
+24 mem_ax
+24 mem_ay
+24 mem_az
+24 mem_bx
+24 mem_by
+24 mem_bz
+24 mem_cx
+23 mem_cy
+1 mem_cy5
+24 mem_cz
+24 mem_k
+16 mem_align
+
+0 mem_tmp1
+24 memahbak
+8 mem_tmp5
+16 memahsave
+16  mem_tmp2
+0  memahsave_end 
+1  mem_addr_padding 
+7   mem_addr_value         /* 12 bytes     */ 
+0 mem_tmp3
+5 mem_t1
+3  mem_addr_value_end   
+16 mem_addr_iocap_end
+0 mem_tmp0
+8 mem_t0
+16 mem_tmp0a
+24 mem_t2
+24 mem_t3
+24 mem_t7
+24 mem_p		
+24 mem_a
+24 mem_b
+24 mem_gx
+24 mem_gy
+32 memh0
+
+
+
+)
+
+
Index: btkb/format/shutter.format
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/btkb/format/shutter.format	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/btkb/format/shutter.format	(working copy)
@@ -0,0 +1,48 @@
+
+
+omemalloc(
+4 mem_shutter_send_data
+1 mem_shutter_key_temp
+1 mem_shutter_send_length
+4 mem_shutter_clkn_bt_last
+1 mem_shutter_key
+1 mem_shutter_flag
+1 mem_shutter_cable_unplug_conut
+1 mem_shutter_hid_disconn_count
+1 mem_shutter_1key_send_sm
+
+1 mem_shutter_iphonekey_gpio
+1 mem_shutter_androidkey_gpio
+1 mem_shutter_key_number
+650 mem_shutter_uuid_list
+)
+
+(
+0 FLAG_SHUTTER_DEFAULT
+1 FLAG_SHUTTER_IPHONEKEY_SEND
+2 FLAG_SHUTTER_ANDROIDKEY_SEND
+)
+
+(
+0 FLAG_SHUTTER_IPHONEKEY_PRESS
+1 FLAG_SHUTTER_ANDROIDKEY_PRESS
+)
+
+(
+1  FLAG_SHUTTER_HID_DISCONN_TIMEOUT
+5 FLAG_SHUTTER_CABLE_UNPLUG_TIMEOUT
+)
+
+(
+1 FLAG_SHUTTER_1KEY
+2 FLAG_SHUTTER_2KEY
+)
+
+(
+0 FLAG_SHUTTER_1KEY_SEND_NULL
+1 FLAG_SHUTTER_1KEY_SEND_STEP1
+2 FLAG_SHUTTER_1KEY_SEND_STEP2
+3 FLAG_SHUTTER_1KEY_SEND_STEP3
+4 FLAG_SHUTTER_1KEY_SEND_STEP4
+)
+
Index: btkb/format/simple_pairing.format
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/btkb/format/simple_pairing.format	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/btkb/format/simple_pairing.format	(working copy)
@@ -0,0 +1,132 @@
+/* simple pairing page */
+
+memalloc(
+
+//4 mem_hci_ssp_mode
+0 mem_sp_state_start
+1 mem_sp_state
+1 mem_master_sp_state
+1 mem_sp_flag
+1 mem_master_sp_flag
+1 mem_sp_calc
+1 mem_sp_dh_ready
+1 mem_sp_localsm
+1 mem_pairing_auth
+
+0 mem_sp_flag_start
+1 mem_sp_local_key_send_count
+1 mem_sp_remote_key_recv_count
+1 mem_sp_remote_key_invalid
+1 mem_sp_dhkey_invalid
+
+3 mem_sp_iocap_local
+3 mem_sp_iocap_remote
+
+4 mem_sp_gkey
+
+0 mem_sp_pubkey_remote
+24 mem_sp_pubkey_remote_x
+0 mem_sp_pubkey_remote_x_end
+24 mem_sp_pubkey_remote_y
+24 mem_sp_dhkey
+0 mem_sp_dhkey_end
+16 mem_sp_random_local
+0 mem_sp_random_local_end
+16 mem_sp_random_remote
+0 mem_sp_random_remote_end
+0 memresult
+0 mem_sp_calc_result
+4 memh
+4 memg
+4 memf
+4 meme
+0 mem_sp_calc_result_high
+4 memd
+4 memc
+4 memb
+4 mema
+16 mem_sp_check_result
+16 mem_sp_confirm_remote
+16 mem_sp_prarm_stack
+)
+
+xmemalloc(
+1 mem_sp_local_key_invalid
+24 mem_sp_private_key
+0 mem_sp_pubkey_local
+24 mem_sp_pubkey_local_x
+0 mem_sp_pubkey_local_x_end
+24 mem_sp_pubkey_local_y
+1 mem_ssp_enable
+)
+/* simple pairing status flag */
+(
+  0x00   SP_FLAG_STANDBY
+  0x01   SP_FLAG_COMMIT
+)
+
+/* simple pairing calc flag */
+(
+  0x00   SP_CALC_STANDBY
+  0x01   SP_CALC_PUBKEY
+  0x02   SP_CALC_DHKEY
+)
+
+/* simple pairing state */
+(
+  0x00   SP_STAT_NULL
+  0x01   SP_STAT_KEY_RECV
+  0x02   SP_STAT_KEY_GENERATE
+  0x03   SP_STAT_KEY_SEND
+  0x04   SP_STAT_COMMIT_CALC
+  0x05   SP_STAT_COMMIT_SEND
+  0x06   SP_STAT_RANDOM_RECV
+  0x07   SP_STAT_RANDOM_SEND
+  0x08   SP_STAT_CONFIRM_RECV
+  0x09   SP_STAT_CONFIRM_CHECK
+  0x0A   SP_STAT_CONFIRM_CALC
+  0x0B   SP_STAT_CONFIRM_SEND
+  0x0C   SP_STAT_LINK_KEY_CALC
+  0x0F   SP_STAT_DONE
+  0x10   SP_STAT_FEATURE_EXT_SEND
+  0x11   SP_STAT_GKEY_CALC
+  /*simple pairing master only*/
+  0x12   SP_MASTER_STAT_START_SKIP
+  0x13   SP_MASTER_STAT_START_DONE
+  0x14   SP_STAT_COMMITMENT_COMPARE
+  0x15   SP_STATE_END
+)
+
+
+/* simple paring invalid flag */
+(
+  0x00   SP_KEY_INVALID
+  0x01   SP_KEY_VALID
+)
+
+/* encapsulated defination for P-192 key */
+(
+  0x01  ENCAPSULATED_MAJOR_TYPE_P192
+  0x01  ENCAPSULATED_MINOR_TYPE_P192
+  0x30  ENCAPSULATED_LEN_P192
+)
+
+/* bluetooth 2.1 support flag */
+(
+  0x00  SIMPLE_PAIRING_ENABLE
+  0x01  ENCRYPTION_PAUSE_ENABLE
+  0x02  EXTENDED_INQUIRY_RESPOSE_ENABLE
+  0x03  SNIFF_SUBRATING_ENABLE
+)
+
+/*mem_sp_localsm*/
+(
+  0x00 DEFAULT_STATEMACHINE
+  0x01 LOCAL_STATEMACHINE
+)
+
+(
+ 0x00 DEFALT_PAIRING_AUTH
+ 0x01 PAIRING_AUTH
+)
+  
Index: btkb/format/ui.format
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/btkb/format/ui.format	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/btkb/format/ui.format	(working copy)
@@ -0,0 +1,434 @@
+/*****************************************************************************/
+/* RCS HEADER -- DO NOT ERASE                                                */
+/* $Author: Administrator $                                                           */
+/* $Id: bt_ui_format.upper,v 1.1 2009-09-28 04:06:17 Administrator Exp $     */
+/************************************************************************/
+
+
+	/* ========= memory ============== */
+memalloc(
+2 mem_UI_data_txbuff_length
+
+1 mem_ipc_skip_continue_proc
+0 mem_ui_timer_temp  //length 4
+4 mem_ipc_rega_temp
+) 
+
+xmemalloc(
+//UI Work area
+1 mem_ipc_lock_bt
+1 mem_ipc_lock_c51
+5 mem_ipc_fifo_bt2c51
+5 mem_ipc_fifo_c512bt
+1 mem_led_switch
+1 mem_ui_button_timer
+1 mem_ui_button_last_state
+4 mem_ui_timer_last_btclk
+2 mem_discovery_timeout_timer_count
+1 mem_hid_handshake_timer_count
+1 memui_reconnect_mode
+2 mem_ui_state_map
+
+//UI Config area
+1 mem_ui_profile_supported
+1 mem_led_gpio
+2 mem_led_dark_time
+2 mem_led_light_time
+1 mem_ui_button_timeout
+1 mem_ui_button_gpio
+2 mem_discovery_timeout
+
+)
+/************/
+/* constant */
+/************/
+
+//mem_ui_state_map
+(
+0 UI_STATE_BT_CONNECTED
+1 UI_STATE_BT_SETUP_COMPLETE
+2 UI_STATE_BT_HID_CONN
+3 UI_STATE_BT_HID_HANDSHAKE
+4 UI_STATE_BT_SPP_CONN
+5 UI_STATE_BT_SNIFF
+6 UI_STATE_BT_DISCOVERY
+7 UI_STATE_BT_RECONNECT
+8 UI_STATE_BT_SLAVE_ROLE
+9 UI_STATE_BLE_CONNECTED
+10 UI_STATE_BLE_WRITE_RCV
+11 UI_STATE_BLE_ADV
+12 UI_STATE_BTN_DOWN
+13 UI_STATE_LED_BLINK
+14 UI_STATE_LED_ON
+)
+
+/* UI state for Headset (memui_HS_State) */ 
+   (
+    0 UI_HEADSET_DISCONNECT
+    1 UI_HEADSET_IDLE                   /* before the responsor HS receive SABM      */
+    2 UI_HEADSET_W4CONNECT
+    3 UI_HEADSET_RINGING
+    4 UI_HEADSET_CONNECTED
+    5 UI_HEADSET_PARING
+  )
+/* memui_BB_State */
+(
+  0 UI_BB_OFF
+  1 UI_BB_IDLE
+  2 UI_BB_DISCOVERY
+  3 UI_BB_CONNECTED_ACTIVE_NO_SCO
+  4 UI_BB_CONNECTED_ACTIVE_WITH_SCO
+  5 UI_BB_CONNECTED_ACTIVE_WAIT_SNIFF
+  6 UI_BB_CONNECTED_SNIFF
+  7 UI_BB_RECONNECT
+  8 UI_BB_CONNECTED_SNIFF_WITH_SCO
+)
+
+/************/
+/* flags    */
+/************/
+  
+/* memui_Misc_Flags */
+  (
+    5 NO_IDLE_TURN_OFF
+    7 ANSWER_RING_FLAG               /* 1 Answer,0 no*/
+  )
+
+/* mem_UI_SCH_Interface */
+  (
+    0  UI_HS_PAIRING 
+    2  UI_REQ_CLOSE_RFCOMM
+    3  UI_LINK_LOST
+    4  UI_REQ_OPEN_SCO
+    6  UI_REQ_CLOSE_SCO
+  )
+  
+/* memui_PassOverKey */
+  (
+    0  ANSWER_RING_BIT
+    0  AG_SEND_RING_BIT
+    1  VOL_UP_BIT
+    2  VOL_DOWN_BIT
+    3  INI_CALL_BIT
+    4  DAIL_LAST_CALL
+    5  END_CALL_BIT
+    6  NOKIA_VOICE_ACTIVE 
+    7  REJECT_CALL_BIT
+  )
+  
+/* memui_reconnect_mode */
+(
+  0 NO_RECONNECTION
+  1 RECONNECT_HID
+  2 RECONNECT_HF
+  3 RECONNECT_HS
+  4 RECONNECT_HID_HF
+  5 RECONNECT_HID_HS
+)
+/* memui_Commands */
+(
+0x00 BT_CMD_STANDBY
+0x01 BT_CMD_START_DISCOVERY
+0x02 BT_CMD_STOP_DISCOVERY
+0x03 BT_CMD_RECONNECT
+0x04 BT_CMD_DISCONNECT
+0x05 BT_CMD_ENTER_SNIFF
+0x06 BT_CMD_EXIT_SNIFF
+0x07 BT_CMD_ENTER_SNIFF_SUBRATING
+0x08 BT_CMD_EXIT_SNIFF_SUBRATING
+0x09 BT_CMD_SNIFF_TEST
+0x0a BT_CMD_SET_PIN_CODE
+0x0b BT_CMD_START_INQUIRY
+0x0c BT_CMD_STOP_INQUIRY
+0x0d BT_CMD_START_ADV
+0x0e BT_CMD_STOP_ADV
+0x0f BT_CMD_START_DIRECT_ADV
+0x10 BT_CMD_STOP_DIRECT_ADV
+0x11 BT_CMD_LE_DISCONNECT
+0x12 BT_CMD_LE_UPDATE_CONN
+0x13 BT_CMD_LED_OFF
+0x14 BT_CMD_LED_ON
+0x15 BT_CMD_LED_BLINK
+0x16 BT_CMD_LE_START_CONN
+0x17 BT_CMD_LE_START_SCAN
+0x18 BT_CMD_LE_STOP_SCAN
+0x19 BT_CMD_ENTER_HIBERNATE
+0x1b BT_CMD_LE_SMP_SECURITY_REQUEST
+0x1c BT_CMD_LE_START_WRITE
+0x1d BT_CMD_ROLE_SWITCH
+0x1e BT_CMD_BB_RECONN_CANCEL
+0x1f BT_CMD_STORE_RECONN_INFO_LE
+0x20 BT_CMD_STORE_RECONN_INFO_BT
+0x21 BT_CMD_START_24G
+0x22 BT_CMD_STOP_24G
+0x23 BT_CMD_PAIR_24G
+0x28 BT_CMD_UPDATE_SUPERVISION_TO
+0x29 BT_CMD_LE_SET_PINCODE
+0x2a BT_CMD_SET_RECONNECT_INIT
+0x2b BT_CMD_START_ADV_REC
+0x2c BT_CMD_START_ADV_DISCOVERY
+)
+
+(
+0x00 BT_EVT_NULL
+0x01 BT_EVT_BB_CONNECTED
+0x02 BT_EVT_BB_DISCONNECTED
+0x03 BT_EVT_RECONN_STARTED
+0x04 BT_EVT_RECONN_FAILED
+0x05 BT_EVT_SETUP_COMPLETE
+0x06 BT_EVT_HID_CONNECTED
+0x07 BT_EVT_HID_DISCONNECTED
+0x08 BT_EVT_SPP_CONNECTED
+0x09 BT_EVT_SPP_DISCONNECTED
+0x0A BT_EVT_PINCODE_REQ
+0x0B BT_EVT_ENTER_SNIFF
+0x0C BT_EVT_EXIT_SNIFF
+0x0D BT_EVT_ENTER_SNIFF_SUB
+0x0E BT_EVT_EXIT_SNIFF_SUB
+0x0F BT_EVT_DISCOVERY_STOPED
+0x10 BT_EVT_BUTTON_LONG_PRESSED
+0x12 BT_EVT_HID_HANDSHAKE
+0X13 BT_EVT_RECONN_PAGE_TIMEOUT
+0x14 BT_EVT_LE_CONNECTED
+0X15 BT_EVT_LE_DISCONNECTED
+0x16 BT_EVT_ML2CAP_CONN_REFUSED
+0x17 BT_EVT_BUTTON_ENTER_HIBERNATE
+0x18 BT_EVT_LINKKEY_GENERATE
+0x19 BT_EVT_SWITCH_NOT_ACCEPT
+0x20 BT_EVT_SWITCH_ACCEPT
+0x21 BT_EVT_SNIFF_NOT_ACCEPT
+0x22 BT_EVT_SNIFF_ACCEPT
+0x23 BT_EVT_UNSNIFF_ACCEPT
+0x24 BT_EVT_UNSNIFF_NOT_ACCEPT
+0x25 BT_EVT_BUTTON_ADJUST_DPI
+0x26 BT_EVT_SEND_UNSNIFF_ACCEPT
+0x27 BT_EVT_VIRTUAL_CABLE_UNPLUG
+0x28 BT_EVT_LE_WRITE_REQUEST
+0x29 BT_EVT_LE_ENC_INFO
+0x2a BT_EVT_SWITCH_FAIL_MASTER
+0x2b BT_EVT_SWITCH_SUCCESS_MASTER
+0x2c BT_EVT_BUTTON_DOWN
+0x2d BT_EVT_BUTTON_UP
+0x2e BT_EVT_REMOTE_UNSNIFF
+0x2f BT_EVT_RESET
+0x30 BT_EVT_WAKEUP
+0x31 BT_EVT_24G_PAIRING_COMPLETE
+0x32 BT_EVT_24G_ATTEMPT_FAIL
+0x33 BT_EVT_HIBERNATE_WAKE
+0x34 BT_EVT_LE_PROTOCOL_CONNECTED
+0x35 BT_EVT_LE_PINCODE_REQ
+0x37 BT_EVT_RECONNECT_STANDY
+0x39 BT_EVT_CLEAR_LINKKEY
+0x3c BT_EVT_24G_ATTEMPT_SUCCESS
+0x50 BT_EVT_TIMER_INIT
+0xF0 BT_EVT_TIMER_MASK
+0x51 BT_EVT_TIMER_100MS
+0x52 BT_EVT_TIMER_200MS
+0x53 BT_EVT_TIMER_300MS
+0x54 BT_EVT_TIMER_400MS
+0x55 BT_EVT_TIMER_500MS
+0x56 BT_EVT_TIMER_600MS
+0x57 BT_EVT_TIMER_700MS
+0x58 BT_EVT_TIMER_800MS
+0x59 BT_EVT_TIMER_900MS
+0x5A BT_EVT_TIMER_1KMS
+0x5B BT_EVT_TIMER_1K1MS
+0x5C BT_EVT_TIMER_1K2MS
+0x5D BT_EVT_TIMER_1K3MS
+0x5E BT_EVT_TIMER_1K4MS
+0x5F BT_EVT_TIMER_1K5MS
+)
+//switch
+(
+0 OFF
+1 ON
+)
+/* memui_mem_lock */
+(
+    0 MEM_UNLOCK
+    1 MEM_LOCK
+)
+/* memui_flag0 */
+(
+    0 UI_USER_DATA_FLAG
+    1 UI_WII_WAITING_SLEEP
+    2 UI_KEYBOARD_SNIFF_SKIP
+)
+/* mem_master_type */
+(
+    0 MTYPE_HID_DEFAULT
+    1 MTYPE_HID_SSP
+    2 MTYPE_SPP
+)
+
+	(	
+	0x01 RECIEVE_SDP_CONN_RES
+	0x02 RECIEVE_SDP_CFG_REQ
+	0x03 RECIEVE_SDP_CFG_RES
+	0x04 RECIEVE_RFCOMM_CONN_RES
+	0x05 RECIEVE_RFCOMM_CFG_REQ
+	0x06 RECIEVE_RFCOMM_CFG_RES
+	0x07 RECIEVE_HID_CTRL_CONN_RES
+	0x08 RECIEVE_HID_CTRL_CFG_REQ
+	0x09 RECIEVE_HID_CTRL_CFG_RES
+	0x0A RECIEVE_HID_INT_CONN_RES
+	0x0B RECIEVE_HID_INT_CFG_REQ
+	0x0C RECIEVE_HID_INT_CFG_RES
+	0x0D RECIEVE_AVCTP_CONN_RES
+	0x0E RECIEVE_AVCTP_CFG_REQ
+	0x0F RECIEVE_AVCTP_CFG_RES
+	0x10 RECIEVE_AVDTP_SIGNAL_CONN_RES
+	0x11 RECIEVE_AVDTP_SIGNAL_CFG_REQ
+	0x12 RECIEVE_AVDTP_SIGNAL_CFG_RES
+	0x13 RECIEVE_AVDTP_MEDIA_CONN_RES
+	0x14 RECIEVE_AVDTP_MEDIA_CFG_REQ
+	0x15 RECIEVE_AVDTP_MEDIA_CFG_RES
+	0x16 RECIEVE_SS_REASULT_HS                  
+	0x17 RECIEVE_SS_REASULT_HF                  
+	0x18 RECIEVE_SS_REASULT_AVTARG		          
+	0x19 RECIEVE_SS_REASULT_OBEX		            
+	0x1A RECIEVE_DLCI0_UA
+	0x1B RECIEVE_HS_PARAM_NEG_RES
+	0x1C RECIEVE_HS_UA
+	0x1D RECIEVE_HS_MODEM_STATUS_RES
+	0x1E RECIEVE_HS_MODEm_STATUS_CMD
+	0x1F RECIEVE_HF_PARAM_NEG_RES   
+	0x20 RECIEVE_HF_UA              
+	0x21 RECIEVE_HF_MODEM_STATUS_RES
+	0x22 RECIEVE_HF_MODEm_STATUS_CMD 
+	0x23 RECIEVE_OBEX_PARAM_NEG_RES     
+	0x24 RECIEVE_OBEX_UA              
+	0x25 RECIEVE_OBEX_MODEM_STATUS_RES
+	0x26 RECIEVE_OBEX_MODEm_STATUS_CMD    
+	0x27 RECIEVE_SPP_PARAM_NEG_RES   
+	0x28 RECIEVE_SPP_UA              
+	0x29 RECIEVE_SPP_MODEM_STATUS_RES
+	0x2A RECIEVE_SPP_MODEm_STATUS_CMD
+	0x2b RECIEVE_SDP_DISCONN_RES
+	)
+
+
+
+	(
+	0 UPPERSM_RP_IDLE
+	1 UPPERSM_RP_SDP_CONN
+	2 UPPERSM_RP_SDP_CONN_WAIT
+	3 UPPERSM_RP_SDP_CFG
+	4 UPPERSM_RP_SDP_CFG_WAIT
+	5 UPPERSM_RP_SS_AVTARG
+	6 UPPERSM_RP_SS_AVTARG_WAIT
+	7 UPPERSM_RP_SS_OBEX
+	8 UPPERSM_RP_SS_OBEX_WAIT
+	9 UPPERSM_RP_SDP_DISCONN
+	10 UPPERSM_RP_SDP_DISCONN_WAIT
+	11 UPPERSM_RP_AVDTP_CONN_WAIT
+	12 UPPERSM_RP_AVCTP_CONN
+	13 UPPERSM_RP_AVCTP_CONN_WAIT
+	14 UPPERSM_RP_AVCTP_CFG
+	15 UPPERSM_RP_AVCTP_CFG_WAIT
+	16 UPPERSM_RP_OBEX_CMD_PN
+	17 UPPERSM_RP_OBEX_CMD_PN_WAIT
+	18 UPPERSM_RP_OBEX_SABM
+	19 UPPERSM_RP_OBEX_SABM_WAIT
+	20 UPPERSM_RP_OBEX_CMD_MS
+	21 UPPERSM_RP_OBEX_CMD_MS_WAIT
+	)
+	(		/*mem_upper_sm_reconn*/
+	0 UPPERSM_RECONN_IDLE		
+	1 UPPERSM_RECONN_SDP_CONN		
+	2 UPPERSM_RECONN_SDP_CONN_WAIT		
+	3 UPPERSM_RECONN_SDP_CFG		
+	4 UPPERSM_RECONN_SDP_CFG_WAIT		
+	5 UPPERSM_RECONN_SS_HS
+	6 UPPERSM_RECONN_SS_HS_WAIT
+	7 UPPERSM_RECONN_SS_HF
+	8 UPPERSM_RECONN_SS_HF_WAIT
+	9 UPPERSM_RECONN_SS_AVTARG		
+	10 UPPERSM_RECONN_SS_AVTARG_WAIT		    
+	11 UPPERSM_RECONN_SS_OBEX		            
+	12 UPPERSM_RECONN_SS_OBEX_WAIT		      
+	13 UPPERSM_RECONN_SDP_DISCONN		        
+	14 UPPERSM_RECONN_SDP_DISCONN_WAIT      
+	15 UPPERSM_RECONN_HID_CTRL_CONN		      
+	16 UPPERSM_RECONN_HID_CTRL_CONN_WAIT		
+	17 UPPERSM_RECONN_HID_CTRL_CFG		      
+	18 UPPERSM_RECONN_HID_CTRL_CFG_WAIT     
+	19 UPPERSM_RECONN_HID_INT_CONN		      
+	20 UPPERSM_RECONN_HID_INT_CONN_WAIT		  
+	21 UPPERSM_RECONN_HID_INT_CFG		        
+	22 UPPERSM_RECONN_HID_INT_CFG_WAIT      
+	23 UPPERSM_RECONN_RFCOMM_CONN		        
+	24 UPPERSM_RECONN_RFCOMM_CONN_WAIT		  
+	25 UPPERSM_RECONN_RFCOMM_CFG		        
+	26 UPPERSM_RECONN_RFCOMM_CFG_WAIT       
+	27 UPPERSM_RECONN_RFCOMM_SABM		        
+	28 UPPERSM_RECONN_RFCOMM_SABM_WAIT		  
+	29 UPPERSM_RECONN_SPP_CMD_PN		        
+	30 UPPERSM_RECONN_SPP_CMD_PN_WAIT		    
+	31 UPPERSM_RECONN_SPP_SABM		          
+	32 UPPERSM_RECONN_SPP_SABM_WAIT		      
+	33 UPPERSM_RECONN_SPP_CMD_MS		        
+	34 UPPERSM_RECONN_SPP_CMD_MS_WAIT       
+	35 UPPERSM_RECONN_HF_CMD_PN		          
+	36 UPPERSM_RECONN_HF_CMD_PN_WAIT		    
+	37 UPPERSM_RECONN_HF_SABM		            
+	38 UPPERSM_RECONN_HF_SABM_WAIT		      
+	39 UPPERSM_RECONN_HF_CMD_MS		          
+	40 UPPERSM_RECONN_HF_CMD_MS_WAIT        
+	41 UPPERSM_RECONN_AVDTPs_CONN		        
+	42 UPPERSM_RECONN_AVDTPs_CONN_WAIT		  
+	43 UPPERSM_RECONN_AVDTPs_CFG		        
+	44 UPPERSM_RECONN_AVDTPs_CFG_WAIT       
+	45 UPPERSM_RECONN_AVDTPm_CONN		        
+	46 UPPERSM_RECONN_AVDTPm_CONN_WAIT		  
+	47 UPPERSM_RECONN_AVDTPm_CFG		        
+	48 UPPERSM_RECONN_AVDTPm_CFG_WAIT       
+	49 UPPERSM_RECONN_AVCTP_CONN		        
+	50 UPPERSM_RECONN_AVCTP_CONN_WAIT		    
+	51 UPPERSM_RECONN_AVCTP_CFG		          
+	52 UPPERSM_RECONN_AVCTP_CFG_WAIT		    
+	53 UPPERSM_RECONN_OBEX_CMD_PN		        
+	54 UPPERSM_RECONN_OBEX_CMD_PN_WAIT		  
+	55 UPPERSM_RECONN_OBEX_SABM		          
+	56 UPPERSM_RECONN_OBEX_SABM_WAIT		    
+	57 UPPERSM_RECONN_OBEX_CMD_MS		        
+	58 UPPERSM_RECONN_OBEX_CMD_MS_WAIT     
+	59 UPPERSM_RECONN_SS_SPP
+	60 UPPERSM_RECONN_SS_SPP_WAIT
+	)
+	(/*mem_UI_profile_supported*/
+	0 support_HID
+	1 support_A2DP
+	2 support_AVRCP
+	3 support_HF
+	4 support_HS
+	5 support_PBAP
+	6 support_SPP
+	)
+	/*mem_upper_sm_ss*/
+	(
+	0 UPPERSM_SS_HS
+	1 UPPERSM_SS_HF
+	2 UPPERSM_SS_AVTARG
+	3 UPPERSM_SS_OBEX
+	)
+
+	(
+	160 UI_HUNDRED_MILLISECOND_TIME
+	0XFF UI_BUTTON_GPIO_DISABLE
+	)
+	(
+	0x01 UI_BB_INCONNECT
+	0x10 UI_BB_DISCONNECT
+	)
+(
+0x00 UI_BUTTON_STATE_DOWN
+0x01 UI_BUTTON_STATE_UP
+)
+
+//mem_ipc_skip_continue_proc
+(
+	0 IPC_CONTINUE_PROCESS
+	1 IPC_SKIP_CONTINUE_PROCESS
+)
+
Index: btkb/format/usb.format
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/btkb/format/usb.format	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/btkb/format/usb.format	(working copy)
@@ -0,0 +1,141 @@
+
+memalloc(
+1 mem_usb_status
+1 mem_usb_fifo_empty
+1 mem_usb_read_len
+64 mem_usb_rxbuf
+2 mem_usb_cnt
+1 mem_usb_tx_enable
+1 mem_usb_tx_count
+1 mem_usb_set_protocol_count
+1 mem_usb_desc
+1 mem_usb_state
+2 mem_usb_idle_cnt
+2 mem_usb_idle_timeout
+2 mem_usb_trig_timeout
+
+0 mem_usb_setup
+1 mem_usb_setup_bmRequestType
+1 mem_usb_setup_bRequest
+1 mem_usb_setup_bValue
+1 mem_usb_setup_bValueH
+2 mem_usb_setup_wIndex
+1 mem_usb_setup_bLength
+1 mem_usb_setup_bLengthH
+
+
+8 mem_usb0_setup
+2 mem_bufptr
+1 mem_remain
+20 mem_devicedesc
+200 mem_hidreportdesc_kb
+200 mem_hidreportdesc_m
+100 mem_confdesc
+5 mem_string0
+30 mem_string1
+30 mem_string2
+30 mem_string3
+)
+
+(
+0x20 HCI_CLASS_REQUEST_TYPE      // SetReport HID Request
+0x21 HID_CLASS_REQUEST_TYPE 
+0x00 ZERO_CLASS_REQUEST_TYPE 
+)
+//Standard Request Codes
+(
+0x00 GET_STATUS                // Code for Get Status
+0x01 CLEAR_FEATURE             // Code for Clear Feature
+0x03 SET_FEATURE              // Code for Set Feature
+0x05 SET_ADDRESS              // Code for Set Address
+0x06 GET_DESCRIPTOR           // Code for Get Descriptor
+0x07 SET_DESCRIPTOR           // Code for Set Descriptor(not used)
+0x08 GET_CONFIGURATION        // Code for Get Configuration
+0x09 SET_CONFIGURATION        // Code for Set Configuration
+0x0A GET_INTERFACE            // Code for Get Interface
+0x0B SET_INTERFACE            // Code for Set Interface
+0x0C SYNCH_FRAME              // Code for Synch Frame(not used)
+)
+//Standard Descriptor Types
+(
+0x01 DSC_DEVICE               // Device Descriptor
+0x02 DSC_CONFIG               // Configuration Descriptor
+0x03 DSC_STRING               // String Descriptor
+0x04 DSC_INTERFACE            // Interface Descriptor
+0x05 DSC_ENDPOINT             // Endpoint Descriptor
+)
+//HID Descriptor Types
+(
+0x21 DSC_HID			      // HID Class Descriptor
+0x22 DSC_HID_REPORT			  // HID Report Descriptor
+)
+//Define bmRequestType bitmaps
+(
+0x00 IN_DEVICE                // Request made to device,
+                              // direction is IN
+0x80 OUT_DEVICE               // Request made to device,
+                              // direction is OUT
+0x01 IN_INTERFACE             // Request made to interface,
+                              // direction is IN
+0x81 OUT_INTERFACE            // Request made to interface,
+                              // direction is OUT
+0x02 IN_ENDPOINT              // Request made to endpoint,
+                              // direction is IN
+0x82 OUT_ENDPOINT             // Request made to endpoint,
+)
+//HID Request Codes
+(
+0x01 GET_REPORT 		       // Code for Get Report
+0x02 GET_IDLE				   // Code for Get Idle
+0x03 GET_PROTOCOL			   // Code for Get Protocol
+0x09 SET_REPORT				   // Code for Set Report
+0x0A SET_IDLE				   // Code for Set Idle
+0x0B SET_PROTOCOL			   // Code for Set Protocol
+0xF2 HID_REPORT_ID           
+64 EP0_PACKET_SIZE         
+6 EP1_PACKET_SIZE         
+16 HID_REPORT_SIZE         
+0x001B HID_REPORT_DESCRIPTOR_SIZE    
+)
+//math cordic
+(
+	
+
+0 TYPE_SIN		
+1 TYPE_ATAN	
+2 TYPE_MULT	
+3 TYPE_DIV		
+4 TYPE_ASIN	
+5 TYPE_SQRT	
+6 TYPE_COS		
+7 TYPE_TAN		 
+)
+   
+(
+0 DFIFO0_IN_EMPTY
+1 DFIFO1_IN_EMPTY
+2 DFIFO2_IN_EMPTY
+3 DFIFO3_IN_EMPTY
+4 DFIFO0_OUT_EMPTY
+5 DFIFO1_OUT_EMPTY
+6 DFIFO2_OUT_EMPTY
+7 DFIFO3_OUT_EMPTY
+)
+
+
+
+
+(
+4 USB_STATUS_SETUP
+6 USB_STATUS_NAK
+)
+
+(
+1 USB_GOT_REPORT_REQ
+2 USB_CONNECTED
+3 USB_SLEEP
+4 USB_RESUME
+5 USB_SETIDLE_1
+)
+
+
Index: btkb/format/utility.format
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/btkb/format/utility.format	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/btkb/format/utility.format	(working copy)
@@ -0,0 +1,86 @@
+/**
+*  @file:bt_utility_format.upper
+*  @author: lei.zhu
+*  utility header file. inlcude timer
+*  Copyright:  (C)Hanlynn Technology    
+*/
+
+memalloc(
+
+/*
+    temp parameter
+*/
+2 mem_hold_contr
+2 mem_hold_contw
+1 mem_fifo_temp
+
+
+1 mem_c51_flag
+1 mem_c51_lpm_lock
+1 mem_c51_wait_lpm
+1 mem_wakup_from_power_flag
+1 mem_lmp_bb_disconnect_reason
+100 mem_c51_eeprom_buf
+100 mem_c51_ipc_txbuf
+100 mem_c51_ipc_rxbuf
+4 mem_c51_iicd_buf
+34 mem_24g_rxbuf
+32 mem_24g_txbuf
+34 mem_24g_txpayload
+32 mem_24g_rxpayload
+32 mem_24g_common_temp
+1 mem_packet_length_temp
+2 mem_le_cur_handle_start
+2 mem_le_cur_handle_end
+1 mem_le_search_res
+)
+
+
+
+
+
+
+(
+/*mem_util_timer_flag0_7*/
+    0   UTIL_TIMER_0_USED
+    1   UTIL_TIMER_1_USED
+    2   UTIL_TIMER_2_USED
+    3   UTIL_TIMER_3_USED
+    4   UTIL_TIMER_4_USED
+    5   UTIL_TIMER_5_USED
+    6   UTIL_TIMER_6_USED
+    7   UTIL_TIMER_7_USED
+/*mem_util_timer_flag8_15*/
+    0   UTIL_TIMER_8_USED
+    1   UTIL_TIMER_9_USED
+    2   UTIL_TIMER_10_USED
+    3   UTIL_TIMER_11_USED
+    4   UTIL_TIMER_12_USED
+    5   UTIL_TIMER_13_USED
+    6   UTIL_TIMER_14_USED
+    7   UTIL_TIMER_15_USED
+)
+
+//util fifo param
+(
+
+5 UTIL_FIFO_LEN
+-1 UTIL_FIFO_OFFSET
+)
+
+
+//power control
+(
+99  POWER_CTRL_MAX_PACKET_CNT
+
+10 POWER_CTRL_RETRANS_THRESH_UP0
+0 POWER_CTRL_RETRANS_THRESH_DOWN0
+
+20 POWER_CTRL_RETRANS_THRESH_UP1
+5 POWER_CTRL_RETRANS_THRESH_DOWN1
+
+100 POWER_CTRL_RETRANS_THRESH_UP2
+10 POWER_CTRL_RETRANS_THRESH_DOWN2
+)
+
+
Index: btkb/format/var.format
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/btkb/format/var.format	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/btkb/format/var.format	(working copy)
@@ -0,0 +1,442 @@
+/************************************************************************/
+/* RCS HEADER -- DO NOT ERASE                                           */
+/* $Author: Administrator $                                                     */
+/* $Id: bt_var.osi,v 1.1 2009-09-28 04:06:18 Administrator Exp $   */
+/* Orisil Technology                                                 */
+/************************************************************************/
+
+
+/* packet types */
+(
+  0x02 FHS_PACKET 
+  0x03 DM1_PACKET 
+  0x03 DM1_LMP_PACKET 
+  0x04 DH1_PACKET 
+  0x05 HV1_PACKET 
+  0x06 HV2_PACKET 
+  0x07 HV3_PACKET 
+  0x08 DV_PACKET 
+  0x09 AUX1_PACKET 
+  0x0a DM3_PACKET 
+  0x0b DH3_PACKET 
+  0x0e DM5_PACKET 
+  0x0f DH5_PACKET 
+)
+
+
+/* mem_lmp_respond */
+(
+  0 RESPOND_TO_ALL
+  1 PASS_EVERYTHING
+  2 PASS_ONLY_UNKNOWNS
+  3 RESPOND_TO_LMPS
+)
+/* SCO algorithm defines */
+(
+  0 ULAW
+  1 ALAW
+  2 CVSD
+)
+/* encryption modes */
+(
+  0 NO_ENCRYPTION
+  1 PT_PT_ENCRYPTION
+  2 PT_BROADCAST_ENCRYPTION
+)
+
+/* bits used in mem_lmp_state1 variable */
+(
+  0 LMP_STATE_DETACH
+  1 LMP_STATE_HOLD
+  2 LMP_STATE_SNIFF
+  3 LMP_STATE_PARK
+  4 LMP_STATE_WAIT_SCO_CREATE
+  5 LMP_STATE_WAIT_SCO_KILL
+  6 LMP_STATE_SCO3
+  7 LMP_STATE_WAIT_SCO_START
+)
+/* mem_lmp_state2 */
+(
+  0 LMP_WAIT_FOR_SNIFF_ACCEPT
+  1 LMP_WAIT_FOR_PARK_ACCEPT
+  2 LMP_SEND_UNPARK_ACCEPTED
+  3 LMP_SEND_ENCRYPTION_START
+  4 LMP_SEND_ENCRYPTION_STOP
+  5 MESSAGE_QUEUE
+  7 LMP_STATE_WAIT_BEACON
+)
+/* mem_lmp_state3 */
+(
+ 0 INQUIRY_STATE_CHECK
+ 1 HOST_DELAY_MESSAGE
+ 2 VARIABLE_DELAY
+ 3 TEST_MODE_START_LOOPBACK
+ 4 TEST_MODE_START_PATTERN
+ 5 PARSE_TEST_CONTROL_MESSAGE
+ 6 H_AUTH_SEND_COMB_KEY
+)
+/* mem_rx_status */
+(
+  0 FROM_MASTER
+)
+/* mem_ms_flag */
+(
+  0 MS_RECEIVE_SWITCH_REQ
+  1 MS_SEND_SETUP_COMPLATE
+)
+/* mem_conn_sm */
+(
+  0 CONN_SM_STANDBY
+  1 CONN_SM_WAIT_PAGE
+  2 CONN_SM_SEND_FEATURES
+  3 CONN_SM_WAIT_FEATURES_RES
+  4 CONN_SM_SEND_CONN_REQ
+  5 CONN_SM_WAIT_CONN_ACCEPT
+  6 CONN_SM_AUTH_PAIR
+  7 CONN_SM_AUTH_PAIR_WAIT
+  8 CONN_SM_WAIT_MUTAL_AUTH
+  9 CONN_SM_ENCRYPT
+  0xa CONN_SM_ENCRYPT_WAIT
+  0xb CONN_SM_ENCRYPT_WAIT_CLEAR
+  0xc CONN_SM_SEND_SETUP_COMPLETE
+  0xd CONN_SM_WAIT_SETUP_COMPLETE 
+  0xe CONN_SM_SEND_SWITCH
+  0xf CONN_SM_DETACH_DELAY
+  0x10 CONN_SM_WAIT_SWITCH_AFTER_HOST_CONNECTION
+  0x11 CONN_SM_DELAY_RESTART_CONNECTION
+  0x12 CONN_SM_SEND_VERSION
+  0X13 CONN_SM_WAIT_VERSION
+  0x14 CONN_SM_SEND_FEATURES_EXT
+  0x15 CONN_SM_WAIT_FEATURES_EXT
+  0x16 CONN_SM_PAIRING
+  0x17 CONN_SM_AUTH
+  0x18 CONN_SM_PAIRING_WAIT
+  0x19 CONN_SM_AUTH_WAIT
+  0x1a CONN_SM_DONE
+  0x1b CONN_SM_WAIT_DONE
+)
+
+/* btStateConn1 */
+(
+  0 CONN_STANDBY
+  1 CONN_MASTER_SEND_CONN_REQ
+  2 CONN_MASTER_WAIT_FOR_CONN_ACCEPTED
+  3 CONN_MASTER_AUTH
+  4 CONN_MASTER_WAIT_FOR_FEATURES
+  5 CONN_MASTER_WAIT_FOR_SETUP_COMPLETE
+  6 CONN_MASTER_WAIT_FOR_MAX_SLOT
+  7 CONN_SLAVE_CONN_REQUESTED
+  8 CONN_SLAVE_WAIT_FOR_SETUP_COMPLETE
+  9 CONN_SLAVE_AUTH
+  10 CONN_USING_HOST_OPCODE
+  11 CONN_SLAVE_AUTH_WAIT
+  12 CONN_SLAVE_ENCRYPT_WAIT
+)
+
+/* mem_lmp_conn_state */
+(
+  0 RECEIVED_CONN_REQ
+  1 SENT_CONN_REQ
+  2 RECEIVED_SETUP_COMPLETE
+  3 SENT_SETUP_COMPLETE
+  4 HOST_CONNECTION_MADE
+  6 INIT_COMPLETE
+  7 SNIFF_NEGOTIATE
+)
+/* btStateAuth1 */
+(
+  0 WAIT_FOR_KINIT
+  1 WAIT_FOR_LKA
+  2 WAIT_FOR_LKB
+  3 WAIT_FOR_SRES
+  4 EXAMINE_RECEIVED_SRES
+  5 SEND_AU_RAND
+  6 WAIT_FOR_KC
+  7 DELAYED_ENCRYPT_RESPONSE
+)
+/* btStateAuth2 */
+(
+  0 SENT_SRES
+  1 RECEIVED_IN_RAND
+  2 SENT_AU_RAND
+  3 AUTHENTICATION_FAILED
+  4 AUTHENTICATION_PASSED
+  5 STARTED_AUTH
+  6 SENT_COMB_KEY
+  7 SENT_IN_RAND
+)
+/* btStateAuth3 */
+(
+  0 RECEIVED_AU_RAND
+  1 RECEIVED_SRES
+  2 MUTUALLY_AUTHENTICATE
+)
+/* btStateHost */
+(
+  0 H_AUTH_STARTED
+  2 H_ENCRYPTION_MODE_REQ_PT
+  3 H_ENCRYPTION_KEY_SIZE
+  4 H_ENCRYPTION_START
+  5 H_ENCRYPTION_STOP
+  6 H_AUTH_SECOND_TRY
+)
+/* btStateEncrypt2 */
+(
+  0 RECEIVED_ENCRYPT_MODE_REQ_PT
+  1 RECEIVED_ENCRYPT_KEY_SIZE
+  2 RECEIVED_ENCRYPT_START
+  3 RECEIVED_ENCRYPT_STOP
+  4 STARTED_ENCRYPT_START
+)
+/* mem_ms_state */
+(
+  0x00 MS_STANDBY
+  0x11 M_MINIT_1
+  0x12 M_MINIT_2
+  0x20 M_SINIT_0
+  0x30 S_MINIT_0
+  0x31 S_MINIT_1
+  0x32 S_MINIT_2
+  0x41 S_SINIT_1
+  0x42 S_SINIT_2
+  0x43 S_SINIT_3
+)
+/* mem_test_mode */
+(
+  0 TEST_MODE_ALLOWED
+  1 TEST_MODE_ACTIVE
+)
+/* values for mem_tester_emulate */
+(
+  0x00 NO_TEST_MODE
+  0x00 CONTINUOUS_TRANSMIT
+  0x10 TRANSMIT_TEST
+  0x08 LOOPBACK
+)
+
+/* mem_tx_misc */
+(
+  1 SEND_TX_ADDR
+)
+/* BBHWREG_page_stat */
+(
+  5 PAGE_MODE_END
+)
+/* host_return_parameters_status codes */
+(
+  0x00 HOST_RETURN_SUCCESS
+  0x01 HOST_RETURN_SLAVE_CANT_ISSUE
+  0x02 HOST_RETURN_NO_CONNECTION
+  0x04 HOST_RETURN_PAGE_TIMEOUT
+  0x05 HOST_RETURN_INQUIRY_TIMEOUT
+  0x08 HOST_RETURN_CONNECTION_TIMEOUT
+  0x09 HOST_RETURN_MAX_NUM_CONNECTIONS
+  0x0a HOST_RETURN_MAX_NUM_SCO
+  0x0b HOST_RETURN_MAX_NUM_ACL
+  0x0c HOST_RETURN_SECURITY_REASONS
+  0x10 HOST_RETURN_HOST_TIMEOUT
+  0x11 HOST_RETURN_UNSUPPORTED_FEATURE_PARAMETER
+  0x13 HOST_RETURN_OTHER_END_USER
+  0x14 HOST_RETURN_OTHER_END_LOW_RESOURCE
+  0x15 HOST_RETURN_OTHER_END_POWER_OFF
+  0x16 HOST_RETURN_LOCAL_HOST
+  0x18 HOST_RETURN_PAIRING_NOT_ALLOWED
+  0x19 HOST_RETURN_UNKNOWN_PDU
+  0x1a HOST_RETURN_UNSUPPORTED_REMOTE_FEATURE
+  0x1d HOST_RETURN_SCO_AIR_MODE_REJECTED
+  0x20 HOST_RETURN_UNSUPPORTED_LMP_VALUE
+  0x21 HOST_RETURN_AUTHENTICATION_FAILURE
+  0x22 HOST_RETURN_CHANGED_EXISTING_SCO
+  0x23 HOST_RETURN_HOST_REJECTED
+  0x24 HOST_RETURN_UNSPECIFIED_ERROR
+  0x25 HOST_RESET
+  0x26 HOST_RETURN_BAD_HANDLE
+
+  0x00 HOST_RETURN_ACCEPT_COMMAND
+  0x01 HOST_RETURN_REJECT_COMMAND
+)
+/* host_present */
+(
+  0 HOST_IS_PRESENT
+  1 BCI_IS_PRESENT
+  2 DONT_INIT_RADIO
+)
+/* mem_master_state */
+(
+  0 MASTER_STATE_STANDBY
+  1 MASTER_INQUIRY
+)
+/* misc */
+(
+  92 SECOND_SWITCH_REQ
+  93 SLAVE_DELAY_DETACH
+  94 MASTER_DELAY_DETACH
+  95 UNSNIFF_DELAY_DETACH
+  0 WE_STARTED_AS_MASTER
+  1 WE_STARTED_AS_SLAVE
+)
+/* mem_host_commands */
+(
+  0x01 HOST_INQUIRY
+  0x02 HOST_INQUIRY_CANCEL
+  0x03 HOST_CREATE_CONNECTION
+  0x04 HOST_DISCONNECT_CONNECTION
+  0x05 HOST_ADD_SCO_REQUEST
+  0x06 HOST_REMOTE_NAME_REQUEST
+  0x07 HOST_WRITE_SUPPORTED_FEATURES
+  0x08 HOST_SET_TX_LEVEL
+  0x09 HOST_SET_RX_LEVEL
+  0x0a HOST_SNIFF_REQUEST
+  0x0b HOST_UNSNIFF_REQUEST
+  0x0c HOST_WRITE_LINK_SUPERVISION_TIMEOUT
+  0x0e HOST_WRITE_SCAN_ENABLE
+  0x0f HOST_READ_AUDIO_QUALITY
+  0x10 HOST_ENABLE_DEVICE_UNDER_TEST
+  0x14 HOST_BUTTON_CONFIGURE
+  0x15 HOST_SET_LOW_BATTERY_LEVEL
+  0x16 HOST_WRITE_LOCAL_NAME
+  0x17 HOST_WRITE_LOCAL_PIN
+  0x18 HOST_KILL_SCO_REQUEST
+  0x19 HOST_QOS_REQ
+
+  0x1a HOST_FEATURES_REQUEST
+  0x1b HOST_VERSION_REQUEST
+  0x1c HOST_TIMING_REQUEST
+  0x1d HOST_CLK_OFFSET_REQUEST
+  0x1e HOST_AUTHENTICATE
+  0x1f HOST_START_ENCRYPTION
+  0x20 HOST_STOP_ENCRYPTION
+  0x21 HOST_HOLD_REQUEST
+  0x22 HOST_HOLD_FORCE
+  0x23 HOST_PARK_REQUEST
+  0x24 HOST_MOD_BEACON
+  0x25 HOST_SET_BROADCAST_SCAN_WINDOW
+  0x26 HOST_UNPARK_PM_REQUEST
+  0x27 HOST_UNPARK_BD_REQUEST
+  0x28 HOST_SLAVE_REQUEST_UNPARK
+  0x29 HOST_DECREASE_POWER_REQUEST
+  0x2a HOST_INCREASE_POWER_REQUEST
+  0x2b HOST_SEND_PREFERRED_RATE
+  0x2c HOST_MAX_SLOT_REQ
+  0x2d HOST_MAX_SLOT_FORCE
+  0x2e HOST_PAGE_MODE_REQUEST
+  0x2f HOST_PAGE_SCAN_MODE_REQUEST
+  0x30 HOST_MASTER_SLAVE_SWITCH
+  0x31 HOST_SEND_AUTO_RATE
+  0x32 HOST_PAGE_CANCEL
+  0x33 HOST_CHANGE_LINK_KEY
+  0x34 HOST_RADIO_READ
+  0x35 HOST_RADIO_WRITE
+  0x36 HOST_REMOTE_SLAVE_INIT_UNPARK_REQUESTED
+
+  0x40 HOST_REMOTE_CONNECTION_REQUESTED
+  0x41 HOST_REMOTE_DETACH
+  0x42 HOST_REMOTE_SCO_CREATE_REQUESTED
+  0x43 HOST_REMOTE_SCO_KILL_REQUESTED
+  0x44 HOST_REMOTE_PARK_REQUESTED
+  0x45 HOST_REMOTE_UNPARK_REQUESTED
+  0x46 HOST_REMOTE_SNIFF_REQUESTED
+  0x47 HOST_REMOTE_UNSNIFF_REQUESTED
+  0x48 HOST_REMOTE_HOLD_REQUESTED
+  0x49 HOST_REMOTE_AUTHENTICATION
+  0x4a HOST_REMOTE_START_ENCRYPTION_REQUESTED
+  0x4b HOST_REMOTE_STOP_ENCRYPTION_REQUESTED
+  0x4c HOST_MODE_CHANGE_EVENT
+  0x4d HOST_REMOTE_TEST_ACTIVATE
+  0x4e HOST_REMOTE_TEST_CONTROL
+  0x4f HOST_REMOTE_TIMING_REQUEST
+)
+/* BCI interface (not used if not compiled in ) */
+(
+  0x01 BCI_INQUIRY
+  0x02 BCI_INQUIRY_CANCEL
+  0x03 BCI_CREATE_CONNECTION
+  0x04 BCI_DISCONNECT
+  0x05 BCI_ADD_SCO_CONNECTION
+  0x06 BCI_REMOTE_NAME_REQUEST
+  0x07 BCI_WRITE_SUPPORTED_FEATURES
+  0x08 BCI_SET_TX_POWER_LEVEL
+  0x09 BCI_SET_RX_POWER_LEVEL
+  0x0a BCI_SNIFF_MODE
+  0x0b BCI_EXIT_SNIFF_MODE
+  0x0c BCI_WRITE_LINK_SUPERVISION_TIMEOUT
+  0x0d BCI_WRITE_PAGE_TIMEOUT
+  0x0e BCI_WRITE_SCAN_ENABLE
+  0x0f BCI_GET_AUDIO_QUALITY
+  0x10 BCI_ENABLE_DEVICE_UNDER_TEST
+  0x11 BCI_SEND_DATA
+  0x12 BCI_REGISTER_SERVICE_RECORD
+  0x13 BCI_SERVICE_SEARCH_ATTRIB_REQ
+  0x14 BCI_BUTTON_CONFIGURE
+  0x15 BCI_SET_LOW_BATTERY_LEVEL
+  0x16 BCI_WRITE_LOCAL_NAME
+  0x17 BCI_WRITE_LOCAL_PIN
+  0x18 BCI_REMOVE_SCO_CONNECTION
+  0x19 BCI_QUALITY_OF_SERVICE
+  0x40 BCI_REMOTE_CONNECTION_REQUEST
+  0x41 BCI_REMOTE_DETACH
+  0x42 BCI_REMOTE_ADD_SCO_REQUEST
+  0x43 BCI_REMOTE_REMOVE_SCO_REQUEST
+  0x44 BCI_REMOTE_PARK_REQUEST
+  0x45 BCI_REMOTE_UNPARK_REQUEST
+  0x46 BCI_REMOTE_SNIFF_REQUEST
+  0x47 BCI_REMOTE_UNSNIFF_REQUEST
+  0x48 BCI_REMOTE_HOLD_REQUEST
+  0x49 BCI_REMOTE_AUTHENTICATION_PAIRING_REQUEST
+  0x4a BCI_REMOTE_START_ENCRYPTION_REQUEST
+  0x4b BCI_REMOTE_STOP_ENCRYPTION_REQUEST
+  0x4c BCI_MODE_CHANGE_EVENT
+)
+/* mode changes */
+(
+  0 MODE_CHANGE_ACTIVE
+  1 MODE_CHANGE_SNIFFING
+  2 MODE_CHANGE_PARKED
+  3 MODE_CHANGE_HOLDING
+  4 MODE_CHANGE_SCO_ADDED
+  5 MODE_CHANGE_SCO_REMOVED
+  6 MODE_CHANGE_ACL_CONNECTION
+  7 MODE_CHANGE_DISCONNECT
+  8 MODE_CHANGE_SCO_CHANGED
+  9 MODE_CHANGE_ENCRYPTING
+  10 MODE_CHANGE_NOT_ENCRYPTING
+  11 MODE_CHANGE_BUTTON_UP
+  12 MODE_CHANGE_BUTTON_DOWN
+  13 MODE_CHANGE_BATTERY_LOW
+  14 MODE_CHANGE_RESET
+  15 MODE_CHANGE_INQUIRY_CANCELED_RMTCMD
+  16 MODE_ACTIVE_MSSWITCH_PASSED
+  17 MODE_ACTIVE_MSSWITCH_FAILED
+)
+/* mem_battery - low nibble is level information, upper nibble is status info */
+(
+  6 BATTERY_CHECK_LEVEL
+  7 BATTERY_SENT_STATUS
+)
+/* mem_radio_version */
+(
+  0x02 RADIO_2001
+  0x12 RADIO_2002
+  0x32 RADIO_2002_DDM
+  0x42 RADIO_1008A1
+  0x52 RADIO_1018A0
+)
+/* mem_slave_initiated_conn */
+(
+  0 SLAVE_INIT_AUTHENTICATION
+  1 SLAVE_INIT_ENCRYPTION
+  2 SLAVE_INIT_MASTER_SLAVE_SWITCH
+)
+/* connection_options */
+(
+  0 CONNECTION_AUTH
+  1 CONNECTION_ENCRYPT
+  2 CONNECTION_SWITCH
+  3 CONNECTION_ACL
+  4 CONNECTION_FEATURE_EXT
+)
+/* mem_debug_config */
+(
+  7 AA_INSERTION
+)
+
Index: btkb/output/bt_format.meta
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/btkb/output/bt_format.meta	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/btkb/output/bt_format.meta	(working copy)
@@ -0,0 +1,7485 @@
+0x4000 mem_patch00
+0x4001 mem_patch01
+0x4002 mem_patch02
+0x4003 mem_patch03
+0x4004 mem_patch04
+0x4005 mem_patch05
+0x4006 mem_patch06
+0x4007 mem_patch07
+0x4008 mem_patch08
+0x4009 mem_patch09
+0x400a mem_patch0a
+0x400b mem_patch0b
+0x400c mem_patch0c
+0x400d mem_patch0d
+0x400e mem_patch0e
+0x400f mem_patch0f
+0x4010 mem_patch10
+0x4011 mem_patch11
+0x4012 mem_patch12
+0x4013 mem_patch13
+0x4014 mem_patch14
+0x4015 mem_patch15
+0x4016 mem_patch16
+0x4017 mem_patch17
+0x4018 mem_patch18
+0x4019 mem_patch19
+0x401a mem_patch1a
+0x401b mem_patch1b
+0x401c mem_patch1c
+0x401d mem_patch1d
+0x401e mem_patch1e
+0x401f mem_patch1f
+0x4020 mem_patch20
+0x4021 mem_patch21
+0x4022 mem_patch22
+0x4023 mem_patch23
+0x4024 mem_patch24
+0x4025 mem_patch25
+0x4026 mem_patch26
+0x4027 mem_patch27
+0x4028 mem_patch28
+0x4029 mem_patch29
+0x402a mem_patch2a
+0x402b mem_patch2b
+0x402c mem_patch2c
+0x402d mem_patch2d
+0x402e mem_patch2e
+0x402f mem_patch2f
+0x4030 mem_patch30
+0x4031 mem_patch31
+0x4032 mem_patch32
+0x4033 mem_patch33
+0x4034 mem_patch34
+0x4035 mem_patch35
+0x4036 mem_patch36
+0x4037 mem_patch37
+0x4038 mem_patch38
+0x4039 mem_patch39
+0x403a mem_patch3a
+0x403b mem_patch3b
+0x403c mem_patch3c
+0x403d mem_patch3d
+0x403e mem_patch3e
+0x403f mem_patch3f
+0x4040 mem_context
+0x4130 mem_current_amaddr
+0x4131 mem_lpm_mode
+0x4132 mem_device_option
+0x4133 mem_scan_mode
+0x4134 mem_last_clkn
+0x4138 mem_features
+0x4140 mem_lap
+0x4143 mem_uap
+0x4144 mem_nap
+0x4146 mem_npage
+0x4147 mem_glap
+0x414a mem_class
+0x414d mem_iscan_window
+0x414f mem_iscan_interval
+0x4151 mem_pscan_window
+0x4153 mem_pscan_interval
+0x4155 mem_page_interval
+0x4157 mem_page_window
+0x4159 mem_page_to
+0x415b mem_inq_window
+0x415d mem_fcomp_mul
+0x415e mem_fcomp_div
+0x415f mem_rx_window_init
+0x4161 mem_rx_window_sniff
+0x4163 mem_rf_init_ptr
+0x4165 mem_last_type
+0x4166 mem_last_type_esco
+0x4167 mem_last_type_saved
+0x4168 mem_retransmission_cnt
+0x416a mem_next_btclk
+0x416e mem_seqi
+0x416f mem_rf_rccal
+0x4170 mem_handle_num
+0x4171 mem_max_slot
+0x4172 mem_eir_enable
+0x4173 mem_afh_instant
+0x4177 mem_afh_error_total
+0x4179 mem_afh_cfg
+0x417a mem_afh_new_mod
+0x417b mem_afh_map_lo
+0x4180 mem_afh_map_hi
+0x4185 mem_afh_used
+0x4186 mem_afh_index
+0x4188 mem_afh_map_new
+0x4193 mem_afh_map
+0x41e3 mem_afh_timer
+0x41e7 mem_afh_classify_channel_map
+0x41f1 mem_chip_functions
+0x41f3 mem_lpm_wake_lock
+0x41f5 mem_lpm_interval
+0x41f7 mem_lpm_overhead
+0x41f8 mem_lpm_hibernate_switch
+0x41f9 mem_esco_addr
+0x41fa mem_sniff_unint_lost
+0x41fb mem_ptt
+0x41fc mem_sleep_counter//should be 0x41fc in REVC
+0x4200 mem_sleep_counter_all
+0x4204 mem_sleep_clkn
+0x420a mem_sniff_rcv
+0x420d mem_sniff_lost
+0x4210 mem_clks_per_lpo
+0x4213 mem_lpm_mult
+0x4214 mem_lpm_mult_timeout
+0x4215 mem_lpm_mult_cnt
+0x4216 mem_lpm_config
+0x4219 mem_lpm_xtalcnt
+0x421a mem_lpm_buckcnt
+0x421b mem_lpm_ldocnt
+0x421c mem_lpm_isogate
+0x421d mem_lpm_isogate_final
+0x421e mem_saved_gpio// should be 0x421e in REVC
+0x422e mem_saved_gsel
+0x4231 mem_saved_mark
+0x4239 mem_saved_spidctrl
+0x423a mem_patch_ptr
+0x423c mem_patch_len
+0x423e mem_timers
+0x425e mem_link_key_exists
+0x425f mem_link_key_eeprom_head
+0x4262 mem_link_key
+0x4272 mem_hci_cmd
+0x4273 mem_hci_conn_handle
+0x4274 mem_hci_plap
+0x4277 mem_hci_puap
+0x4278 mem_hci_pnap
+0x427a mem_uartd_rxitems_got_data
+0x427b mem_uartd_rxitems_threshold
+0x427c mem_uartd_rx_timeout
+0x427e mem_app_state
+0x427f mem_app_handshake_flag
+0x4280 mem_sniff_param_interval
+0x4282 mem_sniff_param_attempt
+0x4284 mem_sniff_param_timeout
+0x4286 mem_cb_check_wakelock
+0x4288 mem_cb_before_hibernate
+0x428a mem_cb_before_lpm
+0x428c mem_cb_le_process
+0x428e mem_cb_bt_process
+0x4290 mem_cb_idle_process
+0x4292 mem_cb_bb_event_process
+0x4294 mem_cb_discovry_timeout
+0x4296 mem_cb_att_write
+0x4298 mem_cb_update_notify_value
+0x429a mem_device_nums
+0x429b mem_eeprom_base
+0x429d mem_unsniff2sniff_timer_count
+0x429e mem_wake_up_delay_timer
+0x429f mem_app_connection_options
+0x42a0 mem_app_disconn_reason
+0x42a2 mem_app_disconn_reason_flag
+0x42a4 mem_at_using_flag
+0x42a5 mem_lpm_delay_after_sniff
+0x42a9 mem_xrecord_mode
+0x42aa mem_eeprom_block_size
+0x42ac mem_baud
+0x42ae mem_hci_lt_rx_state
+0x42af mem_l2cap_xmem_start
+0x42af mem_l2cap_tx_multi_offset//0 means single packet
+0x42b1 mem_sdp_remote_cid
+0x42b3 mem_rfcomm_remote_cid
+0x42b5 mem_hid_ctrl_remote_cid
+0x42b7 mem_hid_int_remote_cid
+0x42b9 mem_sdp_state
+0x42ba mem_rfcomm_state
+0x42bb mem_hid_control_state
+0x42bc mem_hid_interrupt_state
+0x42bd mem_spp_state
+0x42be mem_ML2CAP_comm_id
+0x42bf mem_used_map
+0x42c0 mem_tx_fifo0
+0x42c0 mem_tx_fifo0_map
+0x42c1 mem_tx_fifo0_ptr
+0x42c3 mem_tx_fifo1
+0x42c3 mem_tx_fifo1_map
+0x42c4 mem_tx_fifo1_ptr
+0x42c6 mem_tx_fifo2
+0x42c6 mem_tx_fifo2_map
+0x42c7 mem_tx_fifo2_ptr
+0x42c9 mem_tx_fifo3
+0x42c9 mem_tx_fifo3_map
+0x42ca mem_tx_fifo3_ptr
+0x42cc mem_tx_fifo_end
+0x42cc mem_l2cap_lpm_txbuf
+0x43cc mem_l2cap_flow_ctrl_flag
+0x43cd mem_l2cap_pending_item
+0x43ce mem_l2cap_xmem_end
+0x43ce mem_le_dsniff
+0x43d0 mem_le_conn_interval
+0x43d2 mem_le_scan_enable
+0x43d3 mem_le_scan_interval
+0x43d5 mem_le_scan_window
+0x43d7 mem_le_adv_led
+0x43d8 mem_le_adv_enable
+0x43d9 mem_le_adv_data_len
+0x43da mem_le_adv_data
+0x43f9 mem_le_scan_data_len
+0x43fa mem_le_scan_data
+0x4419 mem_le_name_len
+0x441a mem_le_name
+0x442e mem_le_led_on_time
+0x442f mem_le_new_map
+0x4434 mem_le_new_param
+0x4434 mem_le_new_window
+0x4435 mem_le_new_offset
+0x4437 mem_le_new_interval
+0x4439 mem_le_new_latency
+0x443b mem_le_new_timeout
+0x443d mem_le_temp
+0x443e mem_le_txheader
+0x443f mem_le_txlen
+0x4440 mem_le_txpayload
+0x4442 mem_le_txcid
+0x4444 mem_le_l2cap
+0x4445 mem_le_l2cap_response
+0x4446 mem_le_txbdy
+0x4465 mem_le_pcnt_tx
+0x446a mem_le_pcnt_rx
+0x446f mem_le_last_mic
+0x4473 mem_le_ivm
+0x4477 mem_le_ivs
+0x447b mem_le_ltk
+0x448b mem_ltk_exists
+0x448c mem_le_rconfirm
+0x449c mem_le_srand
+0x44ac mem_le_iat
+0x44ad mem_le_rat
+0x44ae mem_le_preq
+0x44b5 mem_le_pres
+0x44bc mem_le_search_handle_start
+0x44be mem_le_search_handle_end
+0x44c0 mem_le_att_offset
+0x44c0 mem_le_search_att_type
+0x44c2 mem_le_notify_handle
+0x44c4 mem_le_uuid
+0x44c6 mem_le_handle_data_len
+0x44c7 mem_le_handle_data
+0x44d7 mem_le_adv_param
+0x44d7 mem_le_adv_interval_min
+0x44d9 mem_le_adv_interval_max
+0x44db mem_le_adv_type
+0x44dc mem_le_adv_own_addr_type
+0x44dd mem_le_adv_direct_addr_type
+0x44de mem_le_adv_direct_addr
+0x44e4 mem_le_adv_channel_map
+0x44e5 mem_le_adv_filter_policy
+0x44e6 mem_le_conn_param
+0x44e6 mem_le_conn_peer_addr_type
+0x44e7 mem_le_conn_peer_addr
+0x44ed mem_le_conn_own_addr_type
+0x44ee mem_le_conn_interval_min
+0x44f0 mem_le_conn_interval_max
+0x44f2 mem_le_conn_latency
+0x44f4 mem_le_conn_superto
+0x44f6 mem_le_scan_params
+0x44f6 mem_le_scan_type
+0x44f7 mem_le_scan_own_addr_type
+0x44f8 mem_le_scan_filter_policy
+0x44f9 mem_le_lap
+0x44fc mem_le_uap
+0x44fd mem_le_nap
+0x44ff mem_le_xtype_fifo
+0x4504 mem_le_att_list
+0x46f8 mem_le_switch_send_data
+0x46f9 mem_le_transmit_window
+0x46fd mem_lmp_version
+0x4700 mem_lmp_subversion
+0x4702 mem_local_name_length
+0x4703 mem_local_name
+0x4706 mem_local_name2
+0x4746 mem_local_name_end
+0x4747 mem_unsniff2sniff_timer
+0x4748 mem_switch_flag
+0x4749 mem_eeprom_ota_base_addr/*the start- writing addr in eeprom  */
+0x474b mem_pn_dlci
+0x474c mem_pn_max_frame_size
+0x474e memFCStemp1
+0x474f memFCStemp2
+0x4750 memFCStemp3
+0x4751 mem_rfcomm_initiator
+0x4752 mem_remote_spp_channel
+0x4753 mem_HIUfcs_SPP
+0x4754 mem_HIUfcs_SPP_WCredits
+0x4755 mem_rfcomm_send_more_pkt
+0x4756 mem_remote_credits
+0x4757 mem_credit_given
+0x4758 mem_ms_channel
+0x4759 memui_uuid_table
+0x475b mem_all_uuid_16bits
+0x4771 mem_all_uuid_128bits
+0x4793 mem_sp_local_key_invalid
+0x4794 mem_sp_private_key
+0x47ac mem_sp_pubkey_local
+0x47ac mem_sp_pubkey_local_x
+0x47c4 mem_sp_pubkey_local_x_end
+0x47c4 mem_sp_pubkey_local_y
+0x47dc mem_ssp_enable
+0x47dd mem_ipc_lock_bt
+0x47de mem_ipc_lock_c51
+0x47df mem_ipc_fifo_bt2c51
+0x47e4 mem_ipc_fifo_c512bt
+0x47e9 mem_led_switch
+0x47ea mem_ui_button_timer
+0x47eb mem_ui_button_last_state
+0x47ec mem_ui_timer_last_btclk
+0x47f0 mem_discovery_timeout_timer_count
+0x47f2 mem_hid_handshake_timer_count
+0x47f3 memui_reconnect_mode
+0x47f4 mem_ui_state_map
+0x47f6 mem_ui_profile_supported
+0x47f7 mem_led_gpio
+0x47f8 mem_led_dark_time
+0x47fa mem_led_light_time
+0x47fc mem_ui_button_timeout
+0x47fd mem_ui_button_gpio
+0x47fe mem_discovery_timeout
+0x4800 mem_ir_ptr
+0x4802 mem_ir_type
+0x4803 mem_ir_cmd
+0x4804 mem_ir_play_count
+0x4805 mem_ir_report_len
+0x4807 mem_ir_pulse_zero
+0x4808 mem_ir_pulse_one
+0x4809 mem_ir_pulses
+0x4825 mem_ir_sequence_len
+0x4826 mem_ir_sequence
+0x4800 mem_acl_credits
+0x4802 mem_allow_switch
+0x4803 mem_hci_acl_queue_start/*param_acl_pktcnt+2 byte*/
+0x4807 mem_hci_wake_clk
+0x4800 mem_kb_state
+0x4802 mem_kb_report_data
+0x4808 mem_kb_keys
+0x4809 mem_kb_rcv_led_data
+0x480a mem_kb_fast_wake_last
+0x480e mem_led_cap_gpio
+0x480f mem_led_num_gpio
+0x4810 mem_led_scl_gpio
+0x4811 mem_kb_map
+0x4811 mem_kb_uuid_list
+0x4a87 mem_24g_paring_tx_power_param
+0x4a91 mem_5db_tx_power_param
+0x4a9b mem_current_event
+0x4a9c mem_ipc_lock_rx_data_bt
+0x4a9d mem_ipc_lock_rx_data_c51
+0x4a9e mem_ipc_lock_tx_data_bt
+0x4a9f mem_ipc_lock_tx_data_c51
+0x4aa0 mem_ipc_2bt_fifo_head
+0x4b36 mem_ipc_2bt_fifo_end
+0x4b36 mem_ipc_2C51_fifo_head
+0x4b9a mem_ipc_2C51_fifo_end
+0x4b9a mem_ipc_2bt_read_index
+0x4b9c mem_ipc_2bt_write_index
+0x4b9e mem_ipc_2C51_read_index
+0x4ba0 mem_ipc_2C51_write_index
+0x4ba2 mem_ipc_tx_evt_buff
+0x4ba4 mem_ipc_tx_evt
+0x4ba5 mem_ipc_bt_timer
+0x4ba7 mem_ipc_rx_type
+0x4ba8 mem_queue_ele_num
+0x4ba9 mem_queue_write
+0x4bab mem_queue_read
+0x4bad mem_queue_start
+0x4bad mem_uart_packet
+0x4bb9 mem_data_ele0
+0x4bc5 mem_data_ele1
+0x4bd1 mem_data_ele2
+0x4bdd mem_queue_end
+0x4bdd mem_queue_temp
+0x4bdf mem_24g_rxdata_length
+0x4be0 mem_24g_pid
+0x4be1 mem_24g_datalen
+0x4be2 mem_24g_data_type
+0x4be3 mem_24g_txlen
+0x4be4 mem_24g_rx_window
+0x4be6 mem_24g_ensure
+0x4be7 mem_24g_get_ack_fail
+0x4be8 mem_24g_retry
+0x4be9 mem_24g_ch
+0x4bea mem_24g_current_ch_number
+0x4beb mem_24g_paring_addr
+0x4bef mem_24g_pairing_sm
+0x4bf0 mem_24g_ch_map1
+0x4bf4 mem_24g_ch_map2
+0x4bf8 mem_24g_ch_map3
+0x4bfc mem_24g_ch_map4
+0x4c00 mem_24g_addr
+0x4c04 mem_24g_check_dongle_times
+0x4c06 mem_24g_device_addr
+0x4c0a mem_24g_no_ack
+0x4c0b mem_24g_enter_lpm_timer
+0x4c0c mem_24g_syncword
+0x4c0e mem_24g_syncword_crc8
+0x4c0f mem_24g_get_syncword_crc8
+0x4c10 mem_rssi_hex_received
+0x4c11 mem_rssi_signal_buf
+0x4c19 mem_rssi_noise_buf
+0x4c21 mem_rssi_noise_index
+0x4c22 mem_rssi_signal_index
+0x4c23 mem_last_txlch
+0x4c24 mem_last_txlen
+0x4c26 mem_last_txdata
+0x4c3a mem_ipc_last_check_timer
+0x4c3e mem_ipc_c51_timer
+0x4c40 mem_le_rx_window
+0x4c41 mem_le_find_type_value_start_handle
+0x4c43 mem_le_find_type_value_end_handle
+0x4c45 mem_le_cur_att_type
+0x4c47 mem_le_search_len
+0x4c48 mem_le_ll_unknown_type
+0x4c49 mem_le_pairing_state
+0x4c4a mem_le_local_mtu
+0x4c4c mem_le_connection_updata_param
+0x4c5c mem_ltk_states
+0x4c5d mem_pair_state
+0x4c5e mem_empty_count
+0x4c5f mem_shutter_find_type_value_flag
+0x4c60 mem_le51_payload_len
+0x4c61 mem_le51_cmd
+0x4c62 mem_le51_tx_length
+0x4c63 mem_le51_txbuff_inuse
+0x4c64 mem_le51_txbuf
+0x4c6d mem_ipc_bt_100ms_timer
+0x4c6e mem_ipc_c51_100ms_timer
+0x4c6f mem_adc_config_flag
+0x4c70 mem_adc_channel
+0x4c71 mem_adc_0v
+0x4c73 mem_adc_3v
+0x4c75 mem_adc_current_value
+0x4c77 mem_hibernate_flag
+0x4c78 mem_new_supervision_to
+0x4c7a mem_kb_wake_timer
+0x4c7b mem_kb_last_data
+0x4c8f mem_power_on_flag
+0x4c90 mem_caps_num_lock
+0x4c91 mem_att_report_standard_key
+0x4c93 mem_att_report_media_key
+0x4c95 mem_att_report_system_ctrl
+0x4c97 mem_att_report_battery
+0x4c99 mem_att_report_game
+0x4c9b mem_att_report_mouse
+0x4c9d mem_suspend_flag
+0x4c9e mem_32asm_data_end
+0x4d16 mem_store_ltk_timer
+0x4d17 mem_reconnect_continue
+0x4d18 mem_le_pin_code
+0x4d1c mem_le_send_security_request_flag
+0x4d1d mem_24g_enter_hibernate
+0x4d21 mem_24g_txfail_cnt
+0x4d22 mem_mouse_retry_flag
+0x4d23 mem_24g_led_flag
+0x4d24 mem_ui_timer_last_btclk_temp
+0x4d28 mem_ui_check_timer_setup
+0x4d2c mem_customize_timer_setup
+0x4d2e mem_customize_timer
+0x4d2f mem_ios_mode_flag
+0x4d30 mem_version_yy_mm_dd
+0x4d34 mem_24g_txbuf_new
+0x4d48 mem_le_adv_swift_pair
+0x4d4f mem_24g_enter_hibernate_setup
+0x4d53 mem_24g_enter_hibernate_max
+0x4d57 mem_24g_short_sleep_counter
+0x4d5a mem_pc_sleep_flag
+0x4800 mem_at_gpio
+0x4801 mem_module_wake_up_gpio
+0x4802 mem_module_state_gpio
+0x4803 mem_module_connect_state_gpio
+0x4804 mem_module_version
+0x480a mem_last_uart_clock
+0x480e mem_current_packet_length
+0x4810 mem_module_prepare_tx_len
+0x4812 mem_module_state
+0x4813 mem_module_task
+0x4814 mem_cmode_addr
+0x481a mem_at_scan_time
+0x481c mem_prarm_pswd
+0x4820 mem_prarm_uart
+0x4824 mem_prarm_blename
+0x4827 mem_prarm_name
+0x482b mem_prarm_bleadss
+0x482e mem_prarm_adss
+0x4832 mem_prarm_vers
+0x4836 mem_prarm_class
+0x483b mem_prarm_clrflg
+0x4841 mem_prarm_reconn
+0x4847 mem_prarm_bledis
+0x4849 mem_prarm_dis
+0x484c mem_prarm_stsn
+0x4850 mem_prarm_atp
+0x4853 mem_prarm_list
+0x4857 mem_prarm_role
+0x485b mem_prarm_sniff
+0x4860 mem_prarm_ldev
+0x4864 mem_prarm_rssi
+0x4868 mem_prarm_cdev
+0x486c mem_prarm_bleinqr
+0x486f mem_prarm_inqr
+0x4873 mem_prarm_cmode
+0x4878 mem_prarm_mode
+0x487c mem_prarm_dmstate
+0x4883 mem_prarm_discov
+0x4889 mem_prarm_ota
+0x488c mem_prarm_bleconn
+0x488e mem_prarm_conn
+0x4892 mem_prarm_pageout
+0x4899 mem_prarm_recfail
+0x48a0 mem_module_uuid_list
+0x4800 mem_mouse_x
+0x4802 mem_mouse_y
+0x4804 mem_mouse_z
+0x4805 mem_mouse_key
+0x4806 mem_mouse_z_last
+0x4807 mem_mouse_z_before
+0x4808 mem_mouse_z_now
+0x4809 mem_mouse_z_data
+0x480a mem_mouse_move_flag
+0x480b mem_reconnect_timeout
+0x480c mem_mouse_direct_timeout
+0x480e mem_mouse_no_data_timeout
+0x4810 mem_mouse_blank_data_timeout
+0x4812 mem_mouse_discovery_timer
+0x4814 mem_mouse_direct_timer
+0x4816 mem_mouse_no_data_timer
+0x4818 mem_mouse_blank_data_timer
+0x481a mem_mouse_send_blank_timer
+0x481b mem_mouse_dpi
+0x481c mem_mouse_dpi_button_state
+0x481d mem_mouse_test_cnt
+0x481e mem_le_hibernate_timer
+0x4820 mem_mouse_mode_state
+0x4821 mem_sensor_type
+0x4822 mem_lbutton_gpio
+0x4823 mem_rbutton_gpio
+0x4824 mem_mbutton_gpio
+0x4825 mem_dpi_button_gpio
+0x4826 mem_sensor_data_gpio
+0x4827 mem_whee_a_data_gpio
+0x4828 mem_whee_b_data_gpio
+0x4829 mem_conn_cnt
+0x482a mem_mouse_uuid_list
+0x4800 mem_shutter_send_data
+0x4804 mem_shutter_key_temp
+0x4805 mem_shutter_send_length
+0x4806 mem_shutter_clkn_bt_last
+0x480a mem_shutter_key
+0x480b mem_shutter_flag
+0x480c mem_shutter_cable_unplug_conut
+0x480d mem_shutter_hid_disconn_count
+0x480e mem_shutter_1key_send_sm
+0x480f mem_shutter_iphonekey_gpio
+0x4810 mem_shutter_androidkey_gpio
+0x4811 mem_shutter_key_number
+0x4812 mem_shutter_uuid_list
+
+	width = 32
+	const length = 12000
+
+	/* ========= memory ============== */
+0x0000 mem_le_adv_transmit
+0x0001 mem_le_adv_waitcnt
+0x0002 mem_le_adv_rcv
+0x0003 mem_le_req_rcv
+0x0004 mem_le_scanrsp_rcv
+0x0005 mem_le_conn_rcv
+0x0006 mem_inquiryscan_waitcnt
+0x0007 mem_inquiryscan_rcvcnt
+0x0008 mem_pagescan_waitcnt
+0x0009 mem_pagescan_rcvcnt
+0x000a mem_pagescan_rcvfhscnt
+0x000b mem_slave_rcvcnt
+0x000c mem_page_transmit
+0x000d mem_page_rcv
+0x000e mem_page_rcv_fhs
+0x000f mem_master_rcvcnt
+0x0010 mem_fhs_wait_counter
+0x0011 mem_newconnto_counter
+0x0012 mem_inquiry_transmit
+0x0013 mem_inquiry_rcv
+0x0014 mem_fw_ver
+0x0015 mem_current_context
+0x0016 mem_le_ch_mapped
+0x0017 mem_last_freq
+0x0018 mem_rssi
+0x0019 mem_rx_type
+0x001a mem_rx_hec_err
+0x001c mem_rx_crc_err
+0x001e mem_context_ptr
+0x0020 mem_display
+0x0028 mem_bcd
+0x0030 mem_state
+0x0031 mem_mode
+0x0032 mem_tsniff
+0x0034 mem_sniff_anchor
+0x0038 mem_clk_offset
+0x003e mem_rx_window
+0x0040 mem_plap
+0x0043 mem_puap
+0x0044 mem_pnap
+0x0046 mem_conn_handle
+0x0047 mem_arq
+0x0048 mem_lmp_to_send
+0x0049 mem_lmi_opcode
+0x004a mem_lmo_reason
+0x004b mem_op
+0x004c mem_state_map
+0x004d mem_supervision_timer
+0x0051 mem_supervision_to
+0x0053 mem_name_offset
+0x0054 mem_key_size
+0x0055 mem_conn_sm
+0x0056 mem_aco
+0x0062 mem_kc
+0x0072 mem_conn_timer
+0x0073 mem_sniff_attempt
+0x0074 mem_sniff_timeout
+0x0075 mem_dsniff
+0x0077 mem_amaddr
+0x0078 mem_lmo_opcode1
+0x0079 mem_lmi_opcode1
+0x007a mem_lmo_reason1
+0x007b mem_lmo_tid1
+0x007c mem_lmo_opcode2
+0x007d mem_lmi_opcode2
+0x007e mem_lmo_reason2
+0x007f mem_lmo_tid2
+0x0080 mem_hci_version
+0x0083 mem_acl_pktlen
+0x0085 mem_sco_pktlen
+0x0086 mem_acl_pktcnt
+0x0088 mem_sco_pktcnt
+0x008a mem_current_sniff_attempt
+0x008b mem_current_sniff_timeout
+0x008c mem_nfreq_index_inq
+0x008d mem_nfreq_index_page
+0x008e mem_ninqy_index
+0x008f mem_fhs_misc
+0x0090 mem_tx_lch
+0x0091 mem_tx_len
+0x0093 mem_subsniff_instant
+0x0097 mem_subsniff_rate
+0x0098 mem_subsniff_tcmax
+0x009a mem_subsniff_tsniff
+0x009b mem_lpm_adjust
+0x009c mem_sync_clke
+0x00a2 mem_lpm_current_mult
+0x00a3 mem_gpio_wakeup_low
+0x00a7 mem_gpio_wakeup_high
+0x00ab mem_air_mode
+0x00ac mem_sco_asso_handle
+0x00ad mem_sco_handle
+0x00af mem_esco_desco
+0x00b0 mem_esco_type
+0x00b1 mem_neogotiation_state
+0x00b2 mem_saved_amaddr
+0x00b3 mem_esco_arq
+0x00b4 mem_esco_saved_arq
+0x00b5 mem_sco_obuf
+0x00d3 mem_sco_ibuf
+0x00f1 mem_sco_poll
+0x00f2 mem_npage_index
+0x00f3 mem_page_mode
+0x00f4 mem_page_clk
+0x00f8 mem_tst_pktcnt_sync
+0x00fa mem_tst_pktcnt_hec
+0x00fc mem_tst_pktcnt_crc
+0x00fe mem_tst_pktcnt_dmh
+0x0100 mem_tmp_buffer_head
+0x0103 mem_tmp_buffer
+0x0153 mem_tester_emulate
+0x0154 mem_temp_payload
+0x0154 test_mode_scenario
+0x0155 test_mode_hopping_mode
+0x0156 test_mode_tx_freq
+0x0157 test_mode_rx_freq
+0x0158 test_mode_power_mode
+0x0159 test_mode_poll_period
+0x015a test_mode_packet_type
+0x015b test_mode_data_length
+0x015d mem_test_mode_old_debug_config
+0x015e mem_tester_cnt
+0x015f mem_temp_am_addr
+0x0160 mem_temp_arq
+0x0161 mem_pdatatemp
+0x0169 mem_len
+0x016b mem_clkn_bt
+0x016f mem_clke_bt
+0x0173 mem_dpll_clkn
+0x0177 mem_connection_options
+0x0178 mem_nameres_cnt
+0x0179 mem_txptr
+0x017b mem_slot_offset
+0x017d extm_fhs_misc
+0x017e extm_newconn_am_addr
+0x017f extm_class
+0x0182 extm_lap
+0x0185 extm_uap
+0x0186 extm_nap
+0x0189 mem_debug_config
+0x018a mem_lch_code
+0x018b mem_fhs_am_addr
+0x018c mem_dpll_error
+0x018e mem_bdaddr_list_buff
+0x01b2 mem_select_list_item
+0x01b3 mem_temp_reconn_record
+0x01b3 mem_record_bt_mode
+0x01b4 mem_temp_lap
+0x01ba mem_list_item_ptr
+0x01bc mem_eir
+
+
+
+0x4c00 mem_savelist
+
+0x3b17 rom_lpm_sleep
+0x59e0 rom_save_ucode
+
+0x4219 rom_mem_lpm_xtalcnt
+0x423b rom_mem_patch_ptr
+0x423d rom_mem_patch_len
+
+0x5b1a rom_otpd_read_data
+0x5ada rom_otp_write
+	/* context */
+(
+0x01 coffset_mode
+0x02 coffset_tsniff
+0x04 coffset_sniff_anchor
+0x08 coffset_clk_offset
+0x0e coffset_rx_window
+0x10 coffset_plap
+0x16 coffset_conn_handle
+0x17 coffset_arq
+	/* 3.0 only */
+0x18 coffset_lmp_to_send
+0x1b coffset_op
+0x1c coffset_state_map
+	/* le only */
+0x18 coffset_le_ch
+0x19 coffset_le_hop
+0x1a coffset_le_event_cnt
+
+80 context_size
+3 context_num
+)
+
+(
+0 lpm_flag_wake
+1 lpm_flag_loadcode
+)
+
+/* ========= parameters ============== */
+(
+0x0050 param_newconn_arq
+0x0007 param_esco_addr
+0x0010 param_conn_handle
+0x01f0 param_conn_handle_comp
+0x0020 param_newconnto
+0x0008 param_pagerespto
+0x0a00 param_snooze_setup_orig
+0x5353 param_snooze_ahead_orig
+0x00ff param_ninquiry
+0x2000 param_page_to
+0x0005 param_max_slot
+0x0010 param_sco_poll
+
+/* 6Mhz clock setting */
+/* 12Mhz clock setting */
+0x0e43 param_tx_setup
+0x09d0 param_rx_setup_earlier
+0x0600 param_rf_setup
+0x03bb param_clke_cal
+0x0600 param_conn_access 
+0x0800 param_conn_access_wider
+0x0500 param_pll_setup		// 120 is minimum
+0x0d00 param_rx_setup	// 114us before sync
+2000 param_dpll_start_delay
+
+110 param_lpm_fix
+10 param_lpo_extra
+200 param_lpm_adjmax
+
+-1 param_hibernate_clks
+3000 param_chgpump_delay
+
+3 param_featrue_ssp
+0x0101 param_lmpext_ssp_enable
+339 param_acl_pktlen
+30   param_sco_pktlen
+1     param_acl_pktcnt		/*buffer acl pkt cnt*/
+7     param_sco_pktcnt
+
+
+0x8fffff param_features0
+0x9d83fe param_features1  // not support afh
+0x8359     param_features2
+0x000033 param_unap
+0x001177 param_lap
+0x9e8b33 param_glap
+0x002540 param_class//0x180208 //0x002580//402500//240404
+0x12e904 param_hci_version
+0x000a04 param_lmp_version//0x0a04
+0x12e9 param_lmp_subversion
+0x0012 param_tisw
+0x0012 param_tpsw
+0x1000 param_tisi
+0x0800 param_tpsi
+0x0020 param_page_window
+0x0020 param_inq_window
+0x1c80 param_supervision_to
+39 param_fcomp_div
+2 param_fcomp_mul
+6     param_name_len
+0x535442 param_name
+0x344950 param_name1
+
+
+)
+
+/* ======= packet types  ========= */
+(
+0x0      type_null    
+0x1      type_poll   
+0x2      type_fhs    
+0x3      type_dm1    
+0x4      type_dh1    
+0x5      type_hv1    
+0x6      type_hv2    
+0x7      type_hv3    
+0x8      type_3dh1     
+0x9      type_aux1   
+0xa      type_dm3    
+0xb      type_dh3    
+0xe      type_dm5    
+0xf      type_dh5    
+0x10     type_id
+0x11     type_shutdown
+0x13     type_lmp
+)
+
+/* ========== flag[6] =============== */
+(
+0        always        /* always 1 */
+1        true          /* set/rstn by verify,compare,icompare (true) */
+2        positive      /* set/rstn by all alu operations (opcode = 0x03,0x13,0x0f,0x1f), if alu output >= 0 */
+3        timeout       /* read only, the timeout from timers */
+5        zero          /* set/rstn by all alu operations (opcode = 0x03,0x13,0x0f,0x1f), if alu output == 0 */
+6        crc_failed    /* level, cleared by hop_start */
+7        enable_white  /* outside mux decide whether to load bt_clk or response_X */
+8        enable_parity /* level */
+9        enable_crc    /* level */
+10       enable_hec    /* level */
+11       decode_fec1   /* level */
+12       decode_fec2   /* level */
+13       decode_fec0   /* level */
+14       encrypt       /* level */
+15       crc16       /* for caculate ccitt crc16 */
+16       swfine	/* =0 stop_watch count based on oneslot =1 on 1 clock */
+20       rqst_freq    /* pulse, to start calculating frequency */
+21       recalc        /* pulse, to recalculate the fhs_parity */
+22       init_encrypt  /* pulse, issued to initialize encrption */
+23       mhalfbnd    /* half slot boundary of clke_rt, or when clke_bt[0] toggles */
+24       sync          /* sync found as a result of correlation,set/rstn by correlate opcode */
+25       user10    /* user10 */
+26       kc_p_activate  /* pulse to recalc the kc_p */
+27       encode_fec1   /* level */
+28       encode_fec2   /* level */
+29       encode_fec0   /* level */
+30       packet_end    /* pulse */
+32       is_tx         /* level */
+33       is_rx         /* level */
+34       halfslot     /* pulse, read only, when clkn_bt[0] toggles */
+35       oneslot      /* pulse, read only, when clkn_bt[1] toggles */
+36       mslotbnd     /* pulse, read only, when clke_bt[1] toggles */
+37       expire       /* level, read only, when selected clock source exceed timeup value */
+38       meet         /* level, read only, when selected clock source meet timeup value */
+39       tx_clear     /* level, read only, indicate tx pipe is cleared */
+40       user         /* user0 */
+41       master        /* user1 */
+42       slave2         /* user2 */
+43       wake           /* user3 */
+44       user2        /* user4 */
+45       match         /* user5 */
+46       attempt        /* user6 */
+47       user3          /* user7 */
+48       clknt         /* user8 */
+49	   user7 	/* user9 */
+50       synchronize   /* synchronize lpo and regular version of the clock */
+51       lpo_edge  /* read only, 3 clocks after risling edge of lpo clock */
+52       blank         /* C0 only, means pdata == 0 */
+53       modone          /* set divide operation is done */
+54       le		/* bluetooth 4.0 LE enable */
+55       aes_ready	/* set when aes is ok */
+63       never         /* read only, always 0 */
+)
+
+default flag = always
+
+/* ========== reg[6] =============== */
+(
+0        mark   /* for keeping strobes, more permanent */
+1        type   /* save and verify during rx */     /* rw */
+2        temp   /* general purpose register, 64 bits */
+3        contru  /* contr uart */
+4        am_addr      /* verify during rx, read and send during tx */ /* ro */
+5        contw        /* last mem_addr during write */
+6        contr        /* last mem_addr during read */
+7        queue    /* the index of qset*,qisolate* commands, ie, if queue = 3, qset/qisolate operate on bit3 */
+8        debug    /* can be wired out for observation */
+9        access   /* the 72 bit access word */
+10       contwu   /* contw uart */
+11       timeup        /* when does certain counter expire */
+12       pwindow       /* bit 71-61 of pdata; because on rx, bits shifts in from 71 down */
+13       fhs_parity    /* re-gernated based on bt_adr( {nap,uap,lap} ) when recalc flag is pulsed */
+14       white_init    /* init value of the whitening */
+15       crc24_init        /* init crc24 lfsr, 24 bits */
+16       interrupts    /* set interrupts, 40 bits */
+17       rega          /* general purpose register, 32 bits */
+18       regb          /* general purpose register, 32 bits */
+19       regc          /* general purpose register, 17 bits */
+20       regab         /* concat of {rega,regb}, thus 64 bits */
+21       radio_ctrl   /* radio i/f direct i/o ctrl, check following "radio_ctrl" section */
+21       ctrl_reg     /* 2023 and after */
+22       jtag_addr    /* load jtag address field, lsb */
+23       freq_index   /* 7 bit read only */
+24       jtag_data    /* wdata to and rdata from jtag */
+25       clkn              /* {clkn_bt, clkn_rt} */
+26       clke              /* {clke_bt, clke_rt} */
+27       stop_watch
+28       fhs_misc   /* SR, SP, pscan mode */
+29       fhs_class  /* class field in fhs */
+30       fhs0   /* read only, bit 0-71 of fhs word */
+31       fhs1   /* read only, bit 72-142 of fhs word */
+32       bt_adr /* r/w, the bt_addr to access gen and freq hopping, contain only lap and uap */
+33       bt_clk /* r/w, the bt_clk for freq hopping */
+34       clkn_bt  /* read only, native bluetooth clock, free running 3.2KHz  or controlled by RTHALFSLOT register */
+35       clkn_rt  /* read only, native realtime clock, free running 12MHz, count from 0-3749, or controlled by RTHALFSLOT register */
+36       freq_mode
+/* wire even_train    = freq_mode[4];    // odd even train                            */
+/* wire conn_mode     = 3;    // connection                                           */
+/* wire iqpgscan_mode = 2;    // slave in inquiry and page (not response)             */
+/* wire iqpgresp_mode = 1;    // slave in inquriy and page (response only)            */
+/* wire inqypage_mode = 0;    // master in inquiry and page(response or not response) */
+37       xin   /* x parameter, read only */
+38       N_tx_slot /* the N factor in equations for Xi,Xp,Xprm,Xprs */
+39 	   auxcnt
+40       clke_bt  /* r/w,  external bluetooth clock , free running 3.2KHz or controlled by RTHALFSLOT register */
+41       clke_rt  /* r/w,  external realtime clock, , free running 12MHz, count from 0-3749, or controlled by RTHALFSLOT register */
+43       host_mode         /* generic stuff for kick starts */
+44       lap
+45       uap
+46       nap         
+47       regext		/* r/w extended 12x32bit registers,  indexed by regext_index */
+48       alarm             /* r/w, lpo wake up time, this is also how lpo and current clock keep sync */
+49       lpo_time          /* read only, this is the value to be copied back to clkn/clke after wakeup */
+50       kc_ls             /* secret key,                71: 0 */
+51       kc_ms             /* secret key,               127:72 */
+52       g1l               /* encryption length                */
+53		mask3ff		/* for mask 0x3ff operation */
+54       aes_ctrl		
+56       regext_index   /* index of regext */
+57	     loopcnt
+58      stack			/* current return address */
+59       stack_ptr		/* stack depth */
+61         pc /* direct goto */
+62       null              /* to nowhere */
+63       pdata /* the shift register */
+)
+default reg = pdata
+
+/* regext_index */
+(
+0 regidx_data
+4 regidx_key
+8 regidx_xor
+12 regidx_result
+)
+/* ========== radio_ctrl========= */
+(
+0 TXGFSK
+1 PSK
+2 PSK3M
+3 RESET
+)
+/* assign BPWR = radio_ctrl[0]; */
+/* assign PARAMP = radio_ctrl[1]; */
+/* assign XTALPU = radio_ctrl[2]; */
+/* assign SYNTHPU = radio_ctrl[3]; */
+/* assign TXPU = radio_ctrl[4]; */
+/* assign RXPU = radio_ctrl[5]; */
+/* assign SLCTRL = radio_ctrl[6]; */
+/* assign XTALSEL_MUX_SEL = radio_ctrl[7] */
+
+
+/* =========== destination[4] ============== */
+(
+0 bucket
+1 rxf
+2 back
+3 mod
+)
+default dest = bucket
+
+/* =========== source[4] ============= */
+(
+1 txf
+3 demod
+)
+default source = 0
+
+
+/* ============== mark ============= *//*0 - 47 */
+(
+
+0  mark_fhs_eir  
+1  mark_rxbuf_inuse
+2  mark_tx_l2cap
+3  mark_switch_initiated
+4  mark_accept_switch
+5  mark_loopback
+7  mark_esco
+8  mark_esco_rxok
+9  mark_context
+10 mark_am_addr_broadcast
+11 mark_fhs_already_good
+12 mark_page_trainb
+13 mark_lpm_mult_enable
+14 mark_usb_flag
+15 mark_old_packet
+16 mark_longpacket
+17 mark_testmode
+18 mark_ar2
+19 mark_h5tx_rp
+20 mark_h5tx_crc	
+21 mark_h5tx_retransmit
+22 mark_h5rx_pstart
+23 mark_h5_sync
+24 mark_h5_reinit
+25 mark_bccmd_patch//for bcsp
+26 mark_temp //for bcsp
+27 mark_h5_reset // fo bcsp
+28 mark_inquiry_on
+29 mark_inquiry_state
+30 mark_inquiry_trainb
+31 mark_periodical_diac
+32 mark_all_diac
+33 mark_slave_in_rand_accepted
+34 mark_reconn_recieve_switch
+35 mark_isstr
+36 mark_loadcode
+37 mark_ext_patch
+35 mark_24g
+15 mark_24g_conext
+// REVAB:max 35, REVC:max 63
+
+)
+
+(
+1 reload_type_otp
+2 reload_type_spi
+3 reload_type_iic
+)
+
+
+/* ============== soft timers ============== */
+(
+0 h5_reinit_timer
+1 hci_retransmit_timer
+1 le_adv_interval_timer
+2 inquiry_length_timer
+3 le_scan_interval_timer
+4 page_length_timer
+5 iscan_interval_timer
+6 pscan_interval_timer
+7 lpo_delay_timer
+8 ui_hundred_millisecond_timer
+9 ui_led_blink
+10 switch_wait_timer
+11 enpt_delay_timer
+12 temp_timer
+13 page_interval_timer
+14 uart_rx_timer
+)
+(
+0 ui_led_stop
+1 ui_led_start
+2 ui_led_dark_time
+3 ui_led_light_time
+)
+(
+1 hci_cmd_inquiry
+2 hci_cmd_inquiry_cancel
+3 hci_cmd_remote_name_req
+4 hci_cmd_remote_feature_req
+5 hci_cmd_create_conn
+6 hci_cmd_disconn
+7 hci_cmd_accept_conn
+8 hci_cmd_reject_conn
+9 hci_cmd_pair
+10 hci_cmd_nopair
+11 hci_cmd_linkkey
+12 hci_cmd_nokey
+13 hci_cmd_auth
+14 hci_cmd_stopencrypt
+15 hci_cmd_startencrypt
+16 hci_cmd_setup_sco
+17 hci_cmd_disconn_sco
+18 hci_cmd_in_sniff
+19 hci_cmd_exit_sniff
+20 hci_cmd_remote_version_req
+21 hci_cmd_remote_ext_features_req
+22 hci_cmd_io_cap
+23 hci_cmd_role_discovery
+24 hci_cmd_role_switch
+25 hci_cmd_accept_with_switch
+26 hci_cmd_detach
+27 hci_cmd_le_create_conn
+28 hci_cmd_accept_sco_conn
+80 hci_cmd_wait_remote_feature
+81 hci_cmd_wait_remote_ext_feature
+82 hci_cmd_wait_remote_name
+)
+
+
+
+/* ============== debug ============= */
+(
+0 debug_neg_skew
+1 debug_bitbucket
+2 debug_dont_clear_got_tx
+3 debug_scatter_enabled
+4 debug_tx_fixed_freq
+5 debug_rx_fixed_freq
+6 debug_tx_pattern
+)
+
+/* ============== tester_emulator ============= */
+(
+0 tester_fixed_flow
+1 tester_fixed_flow_polarity
+2 tester_change
+3 tester_exit
+4 tester_pattern_test
+5 tester_whitening_change
+6 tester_fixed_freq
+7 tester_no_whitening
+)
+
+/* ============== mode ==========*/
+(
+0 mode_le
+1 mode_master
+2 afh_enable
+3 afh_change
+4 send_sco_when_slave
+5 first_seqnx
+)
+
+/* ============== state_map ==========*/
+(
+0 smap_lmptidinit
+1 smap_lmptid
+2 smap_encryption
+3 smap_name_res
+4 smap_name_req
+5 smap_edr
+6 smap_rxlmp
+7 smap_rxl2cap
+)
+(
+0 state_inconn
+1 state_insniff
+2 state_insco 
+3 state_inpage
+4 state_conn_comp
+5 state_init_seq
+6 state_combkey
+7 state_linkkey
+)
+(
+0 op_send_sres
+1 op_auth_req
+2 op_inrand_req
+3 op_disconn
+4 op_stop_enc
+5 op_start_enc
+6 op_txl2cap
+7 op_pkt_comp
+)
+
+
+/* ============== arq [3] ================ */
+(
+0 flow
+1 arqn
+2 seqn
+3 wack
+4 flowx              /* out */  /* not really in memory */
+5 arqnx              /* out */
+6 seqnx              /* out */
+7 bcast1             /* first broadcast received */
+)
+
+/* arq          {flow,arqn,seqn}, read/write */
+/* [0] flow r/w  acl full status of the other, store during rx, checked during tx */
+/* [1] arqn r/w  ack of the other during rx (ack tx fifo),                        */
+/* [2] seqn r/w  seqn of the other, check during rx                               */ 
+/* arqx         {flowx,arqnx,seqnx} */
+/* [0] flowx r/o flow back to the other, 1 alow send, 0 not to send, read only tx */
+/* [1] arqnx r/w ack to the other, set by rx, send back on tx                     */
+/* [2] seqnx r/w toggled by arqn, to be send during tx                            */ 
+
+(
+0 llid0
+1 llid1
+2 nesn
+3 sn
+4 md
+5 wak
+)
+
+/* AFH flags */
+(
+0 AFH_CFG_ON
+1 AFH_CFG_TIMER
+2 send_lmp_set_afh
+3 AFH_CFG_REPORT_MODE
+4 AFH_CFG_MASTER_SENT_REQ
+)
+
+/* LLID CODE */
+(	
+1 LLID_L2CAP_CONT
+2 LLID_L2CAP_START
+3 LLID_LMP
+)
+
+/* ============== master_state ==========*/
+(
+0  master_in_idle
+1  master_in_inquiry
+2  master_in_page
+10 master_in_becoming_slave
+15 master_in_conn
+)
+(
+0 newrev_feature_bettx
+1 newrev_feature_betplltx
+2 newrev_feature_skip_retransmit
+3 newrev_feature_init_radio_after_sleep
+4 newrev_feature_no_lpolog
+)
+/*************mem_pincode_state****************/
+(
+0 pincode_state_ilde
+1 pincode_state_wait_pincode
+2 pincode_state_pincode_ready
+)
+
+
+// lpm_write
+(
+1 lpmreg_sel_ctrl
+2 lpmreg_sel_ctrl2
+4 lpmreg_sel_gpiolow
+8 lpmreg_sel_gpiohigh
+16 lpmreg_sel_counter
+)
+
+//scan_mode
+(
+0 inq_scan_mode
+1 page_scan_mode
+)
+//mem_neogotiation_state
+(
+ 0 default_neogotiation_state
+ 1 prarm_neogotiation
+)
+
+//mem_lpm_wake_lock
+(
+
+2 wake_lock_hci_host
+3 wake_link_key_exists
+4 wake_lock_delay
+5 wake_lock_uart_tx
+6 wake_lock_uart_rx
+7 wake_lock_button
+8 wake_lock_cmd
+9 wake_lock_app
+10 wake_lock_lmp_tx
+11 wake_lock_lmp_rx
+12 wake_lock_l2cap_tx
+13 wake_lock_l2cap_rx
+14 wake_lock_ipc_c512bt
+15 wake_lock_ipc_bt2c51
+
+)
+
+(
+0 bt_disabled
+1 ble_disabled
+2 module_disable
+
+)
+
+(
+0x33  REC_3_MODE
+0x34  REC_4_MODE
+)
+
+
+//sniff UART_TX UART_RX
+(
+6 UART_WAKEUP_TX
+7 UART_WAKEUP_RX
+)
+
+
+
+0x0220 mem_ucode_status
+0x0221 mem_otp_ucode_flag
+0x0223 mem_spid_tbuf/* spid buf: 03 addr[23:16] addr[15:8] addr[7:0] */
+0x0224 mem_iicd_tbuf/* iicd buf: iic_adr addr[15:8] addr[7:0] iic_adr */
+0x0224 mem_addr_hi
+0x0225 mem_addr_mi
+0x0226 mem_addr_lo
+0x0227 mem_iicd_addr
+0x0228 mem_spid_rbuf
+0x022c mem_ucode_buf
+0x022e mem_ucode_len
+0x0230 mem_sched_addr
+0x0232 mem_ucode_ptr
+0x0234 mem_ucode_keybuf
+0x0244 mem_check_plap_temp
+0x0256 mem_sensor_id
+0x0257 mem_reconnect_flag
+0x0258 mem_switch_fail_master_count
+0x0259 mem_app_evt_timer_count
+
+
+/* ir */
+
+0x0000 otp_ucode_flag
+0x07f0 otp_ucode_aeskey
+
+
+/* data stored in eeprom */
+(
+0	eeprom_bdaddr_list
+28	eeprom_last_record
+29	eeprom_le_reconn_local_addr
+35	eeprom_linkkey_list//64
+
+99	eeprom_module_bt_adss//6
+105	eeprom_module_le_adss//6
+111	eeprom_module_pincode_length//1
+112	eeprom_module_pincode//15
+127	eeprom_module_bt_name_length//1
+128	eeprom_module_bt_name//32
+160	eeprom_module_ble_name_length//1
+161	eeprom_module_ble_name//31
+192	eeprom_module_trans_baud//3
+195	eeprom_module_init_flag//2
+197	eeprom_module_end
+
+//dpi eeprom addr
+198 eeprom_mouse_dpi
+)
+
+/*mem_app_handshake_flag*/
+(
+0 APP_HANDSHAKE_NULL
+1 APP_HANDSHAKE_DONE
+
+)
+/*mem_device_option*/
+(
+1 dvc_op_hci
+3 dvc_op_kb
+4 dvc_op_dongle
+5 dvc_op_spp
+6 dvc_op_ukey
+7 dvc_op_ir
+
+9 dvc_op_shutter
+10 dvc_op_module
+11 dvc_op_ble_mouse
+12 dvc_op_ble_kb
+13 dvc_op_ble_prcp
+255 dvc_op_test
+
+7 dvc_op_kbd
+
+//device option hight 4
+6 dvc_op_mouse
+//device option low 2
+(
+0 MODE_3_MOUSE
+1 MODE_4_MOUSE
+)
+)
+
+(
+3 twspi_sclk
+4 twspi_sdio
+)
+
+(
+4 pan_clk_bit
+5 pan_dat_bit
+6 pan_mov_bit
+)
+
+(
+7 otp_uflag_aes
+6 otp_uflag_skip_eep
+5 otp_uflag_skip_flash
+4 otp_uflag_hci
+)
+
+/* ir command */
+(
+1 ircmd_record
+2 ircmd_play
+3 ircmd_write_pulse
+4 ircmd_write_seq
+5 ircmd_write_next
+
+8 ircmd_test_play
+9 ircmd_test_rec
+
+10 ircmd_report_pulse
+11 ircmd_report_seq
+12 ircmd_report_raw
+
+20 ircmd_screen_on
+21 ircmd_screen_off
+)
+
+(
+7 gpio_active_bit
+)
+(
+2 HID_HANDSHAKE_TIMEOUT
+
+)
+
+(
+1 APP_FLAG_RECONNECT
+)
+(
+5 LPM_WAKE_UP_DELAY_TIMER
+)
+
+
+//mem_app_disconn_reason
+//mem_app_disconn_reason_flag
+//bit map
+(
+2 APP_DISC_RSN_SIZE
+)
+(
+0 APP_DISC_BY_BUTTON
+1 APP_DISC_AFTER_PAIRING
+2 APP_DISC_AFTER_RECONN
+3 APP_DISC_AFTER_SNIFF
+4 APP_DISC_AFTER_SETUP_DONE
+5 APP_DISC_AFTER_HANDSHAKE
+6 APP_DISC_BT
+7 APP_DISC_BLE
+8 APP_DISC_L2CAP_REFUSED
+9 APP_DISC_SWITCH_FAIL
+)
+//eeprom init flag
+(
+	0xaa55 EEPROM_INIT_FLAG
+)
+
+(
+	0x01 IPC_TYPE_CMD
+	0x02 IPC_TYPE_EVT
+	0x03 IPC_TYPE_HID
+	0x04 IPC_TYPE_SPP
+	0x05 IPC_TYPE_BLE
+	0x06 IPC_TYPE_24G
+)
+
+(
+	0x01 SYC_TASK_LPM
+	0x02 SYC_TASK_TIMER
+	0x03 SYC_TASK_HIBERNATE
+)
+
+
+
+	(
+	0x2b UI_PLUS
+	0x3A UI_COLON
+	0x454c42 UI_BLE
+	0x3d AT_EQU
+	0x3f AT_QUES
+	0 AT_NULL
+	44 AT_COMMA
+	)
+	(
+	0x1A0 AT_baud_115200
+	0x4e2 AT_baud_38400
+	0x1388 AT_baud_9600
+	)
+	(
+		0 AT_FLAG_INQ
+		1 AT_FLAG_LEINQ
+		2 AT_FLAG_NAME
+	)
+	(
+		0 AT_STATE_SET30
+		1 AT_STATE_SET40
+		2 AT_STATE_CMODE
+		3 AT_STATE_ISCONN
+		4 AT_STATE_ROLE
+		5 AT_STATE_SNIFF
+		6 AT_STATE_LE
+	)
+	(
+		0 AT_TASK_UNSINFF
+		1 AT_TASK_SNIFF
+		2 AT_TASK_RECONN
+		3 AT_TASK_INQ
+		4 AT_TASK_SWITCH
+		7 AT_TASK_CMD_FLAG
+	)
+	
+	(
+		0x0A0D AT_CMD_END
+	)
+
+
+0x025a mem_dongle_count
+0x025b mem_le_addr_slave1
+0x0261 mem_le_addr_slave2
+0x0267 mem_le_peer_state
+0x0268 mem_app_peer_addr
+0x026e mem_dongle_peers
+0x026f mem_dongle_pairing_cnt
+0x0270 mem_dongle_signature
+160 context_3
+
+
+0x0272 mem_h5rx_ackcnt
+0x0273 mem_check_err_acl_cont
+0x0274 mem_rp_packets
+0x0275 mem_packet_type
+0x0277 mem_hci_sniff_conn_handle
+0x0279 mem_hci_sniff_max_interval
+0x027b mem_hci_sniff_min_interval
+0x027d mem_hci_sniff_attempt
+0x027f mem_hci_sniff_timeout
+0x0281 mem_voice_setting
+0x0283 mem_retransmission_effort
+0x0284 mem_sco_ptype
+0x0286 mem_extm_uap_restore
+0x0289 mem_h5rx_rptr
+0x028b mem_h5rx_ack
+0x028c mem_h5tx_ack
+0x028d mem_h5tx_rptr
+0x028f mem_h5tx_wptr
+0x0291 mem_h5tx_free
+0x0293 mem_h5rx_tmp
+0x0294 mem_h5tx_seq
+0x0295 mem_hci_acl_queue_wptr
+0x0297 mem_hci_acl_queue_rptr
+0x0299 mem_hci_acl_queue_end
+0x029b mem_hci_acl_queue_wcnt
+0x029c mem_hci_acl_cnt
+0x029d mem_hci_acl_tx_trigger_wptr//tx via uart
+0x029f mem_ucode_id_local
+0x02a0 mem_temp//8 bytes
+0x02a8 mem_timeup// 4 bytes
+0x02ac mem_rega//4 bytes
+0x02b0 mem_regb//4 bytes
+0x02b4 mem_regc//3 bytes
+0x02b7 mem_contr//2 bytes
+0x02b9 mem_contw//2 bytes
+0x02bb mem_ucode_id_remote
+0x02bc mem_check_sum
+0x02bd mem_ucode_temp
+0x02be mem_ucode_temp1
+0x02bf mem_lock_in_enc//boolean
+0x02c0 mem_hci_disconn_reason
+0x02c1 mem_hci_curr_len
+0x02c2 mem_hci_curr_target
+
+
+15 hci_flag_rp
+//mem_hci_options bit map
+(
+0 hci_option_bcsp
+1 hci_option_h4
+2 hci_option_protocol2
+3 hci_option_protocol3
+4 hci_option_uart
+5 hci_option_usb
+6 hci_option_phy2
+7 hci_option_phy3
+)
+// UART baud rate @6MHz
+(
+0 uart_ctrl_bit_enable
+3 uart_ctrl_bit_slip_protocol
+
+)
+
+//bit map of core_uart_ctrl
+(
+
+)
+//bit map of core_uart_status
+(
+0 uart_status_tx_fifo_full
+1 uart_status_tx_fifo_empty
+2 uart_status_tx_busy
+3 uart_status_rx_fifo_empty
+
+)
+//HCI H4 LOG related
+(
+0x4850 mem_hci_log
+8 hci_log_size
+100 hci_log_cnt
+
+)
+//HCI H4 Packet TYPE
+(
+0x01 HCI_H4_TYPE_CMD
+0x02 HCI_H4_TYPE_ACL
+0x04 HCI_H4_TYPE_EVENT
+
+)
+// HCI command opcode group field values
+(
+0x01 HCI_OGF_LINK_CONTROL
+0x02 HCI_OGF_LINK_POLICY
+0x03 HCI_OGF_BASEBAND
+0x04 HCI_OGF_INFO
+0x05 HCI_OGF_STATUS
+0x06 HCI_OGF_TEST
+0x08 HCI_OGF_LOW_ENERGY
+0x3e HCI_OGF_LOGO_TESTING
+0x3f HCI_OGF_VENDOR_SPECIFIC
+)
+
+// HCI link control opcode command field values, OGF=1
+(
+0x01 HCI_INQUIRY 
+0x02 HCI_INQUIRY_CANCEL 
+0x03 HCI_PERIODIC_INQUIRY_MODE 
+0x04 HCI_EXIT_PERIODIC_INQUIRY_MODE 
+0x05 HCI_CREATE_CONNECTION 
+0x06 HCI_DISCONNECT 
+0x07 HCI_ADD_SCO_CONNECTION 
+0x08 HCI_CREATE_CONNECTION_CANCEL
+0x09 HCI_ACCEPT_CONNECTION 
+0x0A HCI_REJECT_CONNECTION 
+0x0B HCI_LINK_KEY_REQUEST_REPLY 
+0x0C HCI_LINK_KEY_REQUEST_NEGATIVE_REPLY 
+0x0D HCI_PIN_CODE_REQUEST_REPLY 
+0x0E HCI_PIN_CODE_REQUEST_NEGATIVE_REPLY 
+0x0F HCI_CHANGE_CONNECTION_PACKET_TYPE 
+0x11 HCI_AUTHENTICATION_REQUESTED 
+0x13 HCI_SET_CONNECTION_ENCRYPTION 
+0x15 HCI_CHANGE_CONNECTION_LINK_KEY 
+0x17 HCI_MASTER_LINK_KEY 
+0x19 HCI_REMOTE_NAME_REQUEST 
+0x1A HCI_REMOTE_NAME_REQUEST_CANCEL
+0x1B HCI_READ_REMOTE_SUPPORTED_FEATURES 
+0x1C HCI_READ_REMOTE_EXT_FEATURES 
+0x1D HCI_READ_REMOTE_VERSION_INFORMATION 
+0x1F HCI_READ_CLOCK_OFFSET 
+0x20 HCI_READ_LMP_HANDLE
+0x28 HCI_SETUP_SCO_CONNECTION
+0x29 HCI_ACCEPT_SCO_CONNECTION
+0x2A HCI_REJECT_SCO_CONNECTION
+0x2B HCI_IO_CAP_REQUEST_REPLY
+0x2C HCI_USER_CONFIRMATION_REQUEST_REPLY
+0x2D HCI_USER_CONFIRMATION_REQUEST_NEGATIVE_REPLY
+0x2E HCI_USER_PASSKEY_REQUEST_REPLY
+0x2F HCI_USER_PASSKEY_REQUEST_NEGATIVE_REPLY
+0x30 HCI_REMOTE_OOB_DATA_REQUEST_REPLY
+0x33 HCI_REMOTE_OOB_DATA_REQUEST_NEGATIVE_REPLY
+0x34 HCI_IO_CAPABILITY_REQUEST_NEGATIVE_REPLY
+0x35 HCI_CREATE_PHYSICAL_LINK
+0x36 HCI_ACCEPT_PHYSICAL_LINK
+0x37 HCI_DISCONNECT_PHYSICAL_LINK
+0x38 HCI_CREATE_LOGICAL_LINK
+0x39 HCI_ACCEPT_LOGICAL_LINK
+0x3A HCI_DISCONNECT_LOGICAL_LINK
+0x3B HCI_LOGICAL_LINK_CANCEL
+0x3C HCI_FLOW_SPEC_MODIFY
+0x3D HCI_ENHANCED_SETUP_SYNCHRONOUS_CONNECTION
+0x3E HCI_ENHANCED_ACCEPT_SYNCHRONOUS_CONNECTION_REQUEST
+0x3F HCI_TRUNCATED_PAGE
+0x40 HCI_TRUNCATED_PAGE_CANCEL
+0x41 HCI_SET_CONNECTIONLESS_SLAVE_BROADCAST
+0x42 HCI_SET_CONNECTIONLESS_SLAVE_BROADCAST_RECEIVE
+0x43 HCI_START_SYNCHRONIZATION_TRAIN
+0x44 HCI_RECEIVE_SYNCHRONIZATION_TRAIN
+0x45 HCI_REMOTE_OOB_EXTENDED_DATA_REQUEST_REPLY
+)
+
+
+// HCI link policy commands OCF value, OGF=2
+(
+0x01 HCI_HOLD_MODE 
+0x03 HCI_SNIFF_MODE 
+0x04 HCI_EXIT_SNIFF_MODE 
+0x05 HCI_PARK_MODE 
+0x06 HCI_EXIT_PARK_MODE 
+0x07 HCI_QOS_SETUP 
+0x09 HCI_ROLE_DISCOVERY 
+0x0B HCI_SWITCH_ROLE 
+0x0C HCI_READ_LINK_POLICY_SETTINGS 
+0x0D HCI_WRITE_LINK_POLICY_SETTINGS 
+0x0e HCI_READ_DEFAULT_LINK_POLICY_SETTINGS
+0x0f HCI_WRITE_DEFAULT_LINK_POLICY_SETTINGS
+0x10 HCI_FLOW_SPECIFICATION
+0x11 HCI_SNIFF_SUBRATING
+)
+
+// HCI host controller and baseband commands OCF values, OGF=3
+(
+0x01 HCI_SET_EVENT_MASK 
+0x03 HCI_RESET 
+0x05 HCI_SET_EVENT_FILTER 
+0x08 HCI_FLUSH 
+0x09 HCI_READ_PIN_TYPE 
+0x0A HCI_WRITE_PIN_TYPE 
+0x0B HCI_CREATE_NEW_UNIT_KEY 
+0x0D HCI_READ_STORED_LINK_KEY 
+0x11 HCI_WRITE_STORED_LINK_KEY 
+0x12 HCI_DELETE_STORED_LINK_KEY 
+0x13 HCI_WRITE_LOCAL_NAME 
+0x14 HCI_READ_LOCAL_NAME 
+0x15 HCI_READ_CONN_ACCEPT_TIMEOUT 
+0x16 HCI_WRITE_CONN_ACCEPT_TIMEOUT 
+0x17 HCI_READ_PAGE_TIMEOUT 
+0x18 HCI_WRITE_PAGE_TIMEOUT 
+0x19 HCI_READ_SCAN_ENABLE 
+0x1A HCI_WRITE_SCAN_ENABLE 
+0x1B HCI_READ_PAGE_SCAN_ACTIVITY 
+0x1C HCI_WRITE_PAGE_SCAN_ACTIVITY 
+0x1D HCI_READ_INQUIRY_SCAN_ACTIVITY 
+0x1E HCI_WRITE_INQUIRY_SCAN_ACTIVITY 
+0x1F HCI_READ_AUTHENTICATION_ENABLE 
+0x20 HCI_WRITE_AUTHENTICATION_ENABLE 
+0x21 HCI_READ_ENCRYPTION_MODE 
+0x22 HCI_WRITE_ENCRYPTION_MODE 
+0x23 HCI_READ_CLASS_OF_DEVICE 
+0x24 HCI_WRITE_CLASS_OF_DEVICE 
+0x25 HCI_READ_VOICE_SETTING 
+0x26 HCI_WRITE_VOICE_SETTING 
+0x27 HCI_READ_AUTOMATIC_FLUSH_TIMEOUT 
+0x28 HCI_WRITE_AUTOMATIC_FLUSH_TIMEOUT 
+0x29 HCI_READ_NUM_BROADCAST_RETRANSMISSIONS 
+0x2A HCI_WRITE_NUM_BROADCAST_RETRANSMISSIONS 
+0x2B HCI_READ_HOLD_MODE_ACTIVITY 
+0x2C HCI_WRITE_HOLD_MODE_ACTIVITY 
+0x2D HCI_READ_TRANSMIT_POWER_LEVEL 
+0x2E HCI_READ_SCO_FLOW_CONTROL_ENABLE 
+0x2F HCI_WRITE_SCO_FLOW_CONTROL_ENABLE 
+0x31 HCI_SET_CONTROLLER_TO_HOST_FLOW_CONTROL 
+0x33 HCI_HOST_BUFFER_SIZE 
+0x35 HCI_HOST_NUM_COMPLETED_PACKETS 
+0x36 HCI_READ_LINK_SUPERVISION_TIMEOUT 
+0x37 HCI_WRITE_LINK_SUPERVISION_TIMEOUT 
+0x38 HCI_READ_NUMBER_OF_SUPPORTED_IAC 
+0x39 HCI_READ_CURRENT_IAC_LAP 
+0x3A HCI_WRITE_CURRENT_IAC_LAP 
+0x3B HCI_READ_PAGE_SCAN_PERIOD_MODE 
+0x3C HCI_WRITE_PAGE_SCAN_PERIOD_MODE 
+0x3D HCI_READ_PAGE_SCAN_MODE 
+0x3E HCI_WRITE_PAGE_SCAN_MODE 
+0x3F HCI_SET_AFH_CHANNEL_CLASSIFICATION 
+
+
+0x42 HCI_READ_INQUIRY_SCAN_TYPE 
+0x43 HCI_WRITE_INQUIRY_SCAN_TYPE 
+0x44 HCI_READ_INQUIRY_MODE 
+0x45 HCI_WRITE_INQUIRY_MODE 
+0x46 HCI_READ_PAGE_SCAN_TYPE 
+0x47 HCI_WRITE_PAGE_SCAN_TYPE 
+
+0x48 HCI_READ_AFH_CHANNEL_ACCESSMENT_MODE 
+0x49 HCI_WRITE_AFH_CHANNEL_ACCESSMENT_MODE 
+0x51 HCI_READ_EXTENDED_INQUIRY_RESPONSE
+0x52 HCI_WRITE_EXTENDED_INQUIRY_RESPONSE
+0x53 HCI_REFRESH_ENCRYPTION_KEY
+0x55 HCI_READ_SIMPLE_PAIRING_MODE
+0x56 HCI_WRITE_SIMPLE_PAIRING_MODE
+0x57 HCI_READ_LOCAL_OOB_DATA
+0x58 HCI_READ_INQUIRY_RESPONSE_TRANSMIT_POWER_LEVEL
+0x59 HCI_WRITE_INQUIRY_TRANSMIT_POWER_LEVEL
+0x60 HCI_SEND_KEYPRESS_NOTIFICATION
+0x5A HCI_READ_DEFAULT_ERRONEOUS_DATA_REPORTING
+0x5B HCI_WRITE_DEFAULT_ERRONEOUS_DATA_REPORTING
+0x5F HCI_ENHANCED_FLUSH
+0x61 HCI_READ_LOGICAL_LINK_ACCEPT_TIMEOUT
+0x62 HCI_WRITE_LOGICAL_LINK_ACCEPT_TIMEOUT
+0x63 HCI_SET_EVENT_MASK_PAGE_2
+0x64 HCI_READ_LOCATION_DATA
+0x65 HCI_WRITE_LOCATION_DATA
+0x66 HCI_READ_FLOW_CONTROL_MODE
+0x67 HCI_WRITE_FLOW_CONTROL_MODE
+0x68 HCI_READ_ENHANCE_TRANSMIT_POWER_LEVEL
+0x69 HCI_READ_BEST_EFFORT_FLUSH_TIMEOUT
+0x6A HCI_WRITE_BEST_EFFORT_FLUSH_TIMEOUT
+0x6B HCI_SHORT_RANGE_MODE
+0x6C HCI_READ_LE_HOST_SUPPORT
+0x6D HCI_WRITE_LE_HOST_SUPPORT
+0x6E HCI_SET_MWS_CHANNEL_PARAMETERS
+0x6F HCI_SET_EXTERNAL_FRAME_CONFIGURATION
+0x70 HCI_SET_MWS_SIGNALING
+0x71 HCI_SET_MWS_TRANSPORT_LAYER
+0x72 HCI_SET_MWS_SCAN_FREQUENCY_TABLE
+0x73 HCI_SET_MWS_PATTERN_CONFIGURATION
+0x74 HCI_SET_RESERVED_LT_ADDR
+0x75 HCI_DELETE_RESERVED_LT_ADDR
+0x76 HCI_SET_CONNECTIONLESS_SLAVE_BROADCAST_DATA
+0x77 HCI_READ_SYNCHRONIZATION_TRAIN_PARAMETERS
+0x78 HCI_WRITE_SYNCHRONIZATION_TRAIN_PARAMETERS
+0x79 HCI_READ_SECURE_CONNECTIONS_HOST_SUPPORT
+0x7A HCI_WRITE_SECURE_CONNECTIONS_HOST_SUPPORT
+0x7B HCI_READ_AUTHENTICATED_PAYLOAD_TIMEOUT
+0x7C HCI_WRITE_AUTHENTICATED_PAYLOAD_TIMEOUT
+0x7D HCI_READ_LOCAL_OOB_EXTENDED_DATA
+0x7E HCI_READ_EXTENDED_PAGE_TIMEOUT
+0x7F HCI_WRITE_EXTENDED_PAGE_TIMEOUT
+0x80 HCI_READ_EXTENDED_INQUIRY_LENGTH
+0x81 HCI_WRITE_EXTENDED_INQUIRY_LENGTH
+)
+
+
+// HCI informational parameters OCF values, OGF=4
+(
+0x01 HCI_READ_LOCAL_VERSION_INFORMATION 
+0x02 HCI_READ_LOCAL_SUPPORTED_COMMANDS
+0x03 HCI_READ_LOCAL_SUPPORTED_FEATURES 
+0x04 HCI_READ_LOCAL_EXT_FEATURES 
+0x05 HCI_READ_BUFFER_SIZE 
+0x07 HCI_READ_COUNTRY_CODE 
+0x09 HCI_READ_BD_ADDR 
+0x0A HCI_REJECT_CONNECTION_REQUEST
+0x0B HCI_READ_LOCAL_SUPPORTED_CODECS
+)
+
+// HCI status parameters OCF values, OGF=5
+(
+0x01 HCI_READ_FAILED_CONTACT_COUNTER 
+0x02 HCI_RESET_FAILED_CONTACT_COUNTER 
+0x03 HCI_GET_LINK_QUALITY 
+0x05 HCI_READ_RSSI 
+0x06 HCI_READ_AFH_CHANNEL_MAP
+0x07 HCI_READ_BD_CLOCK
+0x08 HCI_READ_ENCRYPTION_KEY_SIZE
+0x09 HCI_READ_LOCAL_AMP_INFO
+0x0A HCI_READ_LOCAL_AMP_ASSOC
+0x0B HCI_WRITE_REMOTE_AMP_ASSOC
+0x0C HCI_GET_MWS_TRANSPORT_LAYER_CONFIGURATION
+0x0D HCI_SET_TRIGGERED_CLOCK_CAPTURE
+)
+
+// HCI testing command OCF values, OGF=6
+(
+0x01 HCI_READ_LOOPBACK_MODE 
+0x02 HCI_WRITE_LOOPBACK_MODE 
+0x03 HCI_ENABLE_DEVICE_UNDER_TEST_MODE 
+0x04 HCI_WRITE_SIMPLE_PAIRING_DEBUG_MODE
+0x07 HCI_ENABLE_AMP_RECEIVER_REPORTS
+0x08 HCI_AMP_TEST_END
+0x09 HCI_AMP_TEST
+0x0A HCI_WRITE_SECURE_CONNECTIONS_TEST_MODE
+)
+
+// HCI vendor specific command OCF values -OGF=3F
+(
+0x01 HCI_WRITE_BD_ADDR 
+0x02 HCI_READ_INQUIRY_RESPONSE_TIMEOUT 
+0x03 HCI_WRITE_INQUIRY_RESPONSE_TIMEOUT 
+0x04 HCI_READ_PAGE_SCAN_REPETITION_MODE 
+0x05 HCI_WRITE_PAGE_SCAN_REPETITION_MODE 
+0x06 HCI_READ_PAGE_RESPONSE_TIMEOUT 
+0x07 HCI_WRITE_PAGE_RESPONSE_TIMEOUT 
+0x08 HCI_READ_NEW_CONNECTION_TIMEOUT 
+0x09 HCI_WRITE_NEW_CONNECTION_TIMEOUT 
+0x0a HCI_INITIALIZE_BASEBAND 
+0x0b HCI_WRITE_LOCAL_SUPPORTED_FEATURES 
+0x0c HCI_WRITE_PARK_PARAMETERS 
+0x0d HCI_READ_PARK_PARAMETERS 
+0x0e HCI_WRITE_QUALITY_OF_SERVICE 
+0x0f HCI_NOT_USED 
+0x10 HCI_MODIFY_BEACON_PARAMETERS 
+0x11 HCI_UNPARK_USING_PM_ADDR 
+0x12 HCI_WRITE_HOPPING_CHANNELS 
+0x13 HCI_SLEEP_FOREVER_MODE 
+0x14 HCI_WRITE_AUTO_PAGE_SCAN_ENABLE 
+0x15 HCI_READ_AUTO_PAGE_SCAN_ENABLE 
+0x16 HCI_SET_ENCRYPTION_KEY_SIZE 
+0x17 HCI_INVALIDATE_FLASH_AND_REBOOT 
+0x18 HCI_UPDATE_UART_BAUD_RATE 
+0x19 HCI_WRITE_GPIO_1_4_AS_OUTPUT 
+0x1A HCI_WRITE_GPIO_2_LED 
+0x1B HCI_SET_TESTMODE_TYPE 
+0x1C HCI_WRITE_SCO_PCM_INT_PARAM 
+0x1D HCI_READ_SCO_PCM_INT_PARAM 
+0x1E HCI_WRITE_PCM_DATA_FORMAT_PARAM 
+0x1F HCI_READ_PCM_DATA_FORMAT_PARAM 
+0x20 HCI_WRITE_COMFORT_NOISE_PARAM 
+0x21 HCI_READ_COMFORT_NOISE_PARAM 
+0x22 HCI_WRITE_SCO_TS 
+0x23 HCI_READ_SCO_TS 
+0x24 HCI_WRITE_PCM_LOOPBACK_MODE 
+0x25 HCI_READ_PCM_LOOPBACK_MODE 
+0x26 HCI_SET_TRANSMIT_POWER 
+0x27 HCI_SET_SLEEPMODE_PARAM 
+0x28 HCI_READ_SLEEPMODE_PARAM 
+0x29 HCI_SLEEPMODE_CMD 
+0x2A HCI_DELAY_PERIPHERAL_SCO_STARTUP 
+0x2B HCI_WRITE_RECEIVE_ONLY 
+0x2C HCI_WRITE_RATE_CONTROL 
+0x2D HCI_TX_UNMOD_CARRIER 
+0x2E HCI_DOWNLOAD_MINIDRIVER 
+0x2F HCI_CRYSTAL_PPM 
+0x30 HCI_SET_POWER_AMP_BIAS 
+0x31 HCI_SET_HAM_BEHAVIOR 
+0x32 HCI_SET_AFH_BEHAVIOR 
+0x33 HCI_READ_USER_DEFINED_NVRAM 
+0x34 HCI_ENABLE_RADIO 
+0x35 HCI_READ_DIAGNOSTIC_INFO 
+0x36 HCI_GET_HID_DEVICE_LIST 
+0x37 HCI_ADD_HID_DEVICE 
+0x38 HCI_READ_APP_FW_CONFIG_VERSION 
+0x39 HCI_DELETE_HID_DEVICE 
+0x3B HCI_ENABLE_USB_HID_EMULATION 
+// 0x3A available
+// 0x3B available
+0x3C HCI_SEND_LMPDU 
+0x3D HCI_AUTO_PAIR_REQ 
+0x3E HCI_READ_VS_EXTENSION 
+0x3F HCI_WRITE_VS_EXTENSION 
+
+0x77 HCI_OPCODE_FC77
+0x79 HCI_OPCODE_FC79
+0xC4 HCI_DOWNLOAD_PATCH
+0xCC HCI_OPCODE_FCCC
+
+0x00 HCI_VENDOR_CMD_RESET
+0x01 HCI_VENDOR_CMD_CHIPID
+0x02 HCI_VENDOR_CMD_BAUD
+0x03 HCI_VENDOR_CMD_PATCH
+0x04 HCI_VENDOR_CMD_PATCH_DONE
+0x05 HCI_VENDOR_CMD_ECHO
+0x06 HCI_VENDOR_CMD_BDADDR
+
+0x07 HCI_VENDOR_CMD_ENTER_LPM
+0x08 HCI_VENDOR_CMD_COMMU_READY
+
+0x10 HCI_VENDOR_CMD_MEM
+0x11 HCI_VENDOR_CMD_EEP
+)
+
+//HCI LE controller command OCF values, OGF=8
+(
+0x01 HCI_LE_SET_EVENT_MASK
+0x02 HCI_LE_READ_BUFFER_SIZE
+0x03 HCI_LE_READ_LOCAL_SUPPORTED_FEATURES
+0x05 HCI_LE_SET_RANDOM_ADDRESS
+0x06 HCI_LE_SET_ADVERTISING_PARAMETERS
+0x07 HCI_LE_READ_ADVERTISING_CHANNEL_TX_POWER
+0x08 HCI_LE_SET_ADVERTISING_DATA
+0x09 HCI_LE_SET_SCAN_RESPONSE_DATA
+0x0A HCI_LE_SET_ADVERTISE_ENABLE
+0x0B HCI_LE_SET_SCAN_PARAMETERS
+0x0C HCI_LE_SET_SCAN_ENABLE
+0x0D HCI_LE_CREATE_CONNECTION
+0x0E HCI_LE_CREATE_CONNECTION_CANCEL
+0x0F HCI_LE_READ_WHITE_LIST_SIZE
+0x10 HCI_LE_CLEAR_WHITE_LIST
+0x11 HCI_LE_ADD_DEVICE_TO_WHITE_LIST
+0x12 HCI_LE_REMOVE_DEVICE_FROM_WHITE_LIST
+0x13 HCI_LE_CONNECTION_UPDATE
+0x14 HCI_LE_SET_HOST_CHANNEL_CLASSIFICATION
+0x15 HCI_LE_READ_CHANNEL_MAP
+0x16 HCI_LE_READ_REMOTE_USED_FEATURES
+0x17 HCI_LE_ENCRYPT
+0x18 HCI_LE_RAND
+0x19 HCI_LE_START_ENCRYPTION
+0x1A HCI_LE_LONG_TERM_KEY_REQUEST_REPLY
+0x1B HCI_LE_LONG_TERM_KEY_REQUEST_NEGATIVE_REPLY
+0x1C HCI_LE_READ_SUPPORTED_STATES
+0x1D HCI_LE_RECEIVER_TEST
+0x1E HCI_LE_TRANSMITTER_TEST
+0x1F HCI_LE_TEST_END
+0x20 HCI_LE_REMOTE_CONNECTION_PARAMETER_REQUEST_REPLY
+0x21 HCI_LE_REMOTE_CONNECTION_PARAMETER_REQUEST_NEGATIVE_REPLY
+)
+// HCI event code
+(
+0x01 HCI_EVENT_INQUIRY_COMPLETE
+0x02 HCI_EVENT_INQUIRY_RESULT
+0x03 HCI_EVENT_CONNECTION_COMPLETE
+0x04 HCI_EVENT_CONNECTION_REQUEST
+0x05 HCI_EVENT_DISCONNECTION_COMPLETE
+0x06 HCI_EVENT_AUTHENTICATION_COMPLETE
+0x07 HCI_EVENT_REMOTE_NAME_REQUEST_COMPLETE
+0x08 HCI_EVENT_ENCRYPTION_CHANGE_COMPLETE
+0x09 HCI_EVENT_CHANGE_CONNECTION_LINK_KEY_COMPLETE
+0x0A HCI_EVENT_MASTER_LINK_KEY_COMPLETE
+0x0B HCI_EVENT_READ_REMOTE_FEATURES_COMPLETE
+0x0C HCI_EVENT_READ_REMOTE_VERSION_INFORMATION_COMPLETE
+0x0D HCI_EVENT_QOS_SETUP_COMPLETE
+0x0E HCI_EVENT_COMMAND_COMPLETE
+0x0F HCI_EVENT_COMMAND_STATUS
+0x10 HCI_EVENT_HARDWARE_ERROR
+0x11 HCI_EVENT_FLUSH_OCCURRED
+0x12 HCI_EVENT_ROLE_CHANGE
+0x13 HCI_EVENT_NUM_COMPLETED_PACKETS
+0x14 HCI_EVENT_MODE_CHANGE
+0x15 HCI_EVENT_RETURN_LINK_KEYS
+0x16 HCI_EVENT_PIN_CODE_REQUEST
+0x17 HCI_EVENT_LINK_KEY_REQUEST
+0x18 HCI_EVENT_LINK_KEY_NOTIFICATION
+0x19 HCI_EVENT_LOOPBACK_COMMAND
+0x1A HCI_EVENT_DATA_BUFFER_OVERFLOW
+0x1B HCI_EVENT_MAX_SLOTS_CHANGE
+0x1C HCI_EVENT_READ_CLOCK_OFFSET_COMPLETE
+0x1D HCI_EVENT_CONNECTION_PACKET_TYPE_CHANGED
+0x1E HCI_EVENT_QOS_VIOLATION
+0x1F HCI_EVENT_PAGE_SCAN_MODE_CHANGE
+0x20 HCI_EVENT_PAGE_SCAN_REPETITION_MODE_CHANGE
+0x21 HCI_EVENT_FLOW_SPECIFICATION_COMPLETE
+0x22 HCI_EVENT_INQUIRY_RESULT_WITHRSSI
+0x23 HCI_EVENT_READ_REMOTE_EXT_FEATURES_COMPLETE
+0x2C HCI_EVENT_SCO_CONNECTION_COMPLETE
+0x2D HCI_EVENT_SCO_CONNECTION_CHANGED
+0x2E HCI_EVENT_SNIFF_SUBRATING
+0x2F HCI_EVENT_EXT_INQUIRY_RESULT
+0x30 HCI_EVENT_ENCRYPT_KEY_REFRESH_COMPLETE
+0x31 HCI_EVENT_IO_CAP_REQ
+0x32 HCI_EVENT_IO_CAP_RESPONSE
+0x33 HCI_EVENT_USER_CONFIRMATION_REQUEST
+0x34 HCI_EVENT_UESR_PASSKEY_REQUEST
+0x35 HCI_EVENT_REMOTE_OOB_DATA_REQUEST
+0x36 HCI_EVENT_SIMPLE_PAIRING_COMPLETE
+0x38 HCI_EVENT_LINK_SUPERVISION_TIMEOUT_CHANGED
+0x39 HCI_EVENT_ENHANCED_FLUSH_COMPLETE
+0x3B HCI_EVENT_USER_PASSKEY_NOTIFICATION
+0x3C HCI_EVENT_KEYPRESS_NOTIFICATION
+0x3D HCI_EVENT_REMOTE_HOST_SUPPORTED_FEATURES_NOTIFICATION 
+0x3E HCI_EVENT_LE_META_EVENT
+0x40 HCI_EVENT_PHYSICAL_LINK_COMPLETE
+0x41 HCI_EVENT_CHANNEL_SELECTED
+0x42 HCI_EVENT_DISCONNECTION_PHYSICAL_LINK_COMPLETE
+0x43 HCI_EVENT_PHYSICAL_LINK_LOSS_EARLY_WARNING
+0x44 HCI_EVENT_PHYSICAL_LINK_RECOVERY
+0x45 HCI_EVENT_LOGICAL_LINK_COMPLETE
+0x46 HCI_EVENT_DISCONNECTION_LOGICAL_LINK_COMPLETE
+0x47 HCI_EVENT_FLOW_SPEC_MODIFY_COMPLETE
+0x48 HCI_EVENT_NUMBER_OF_COMPLETED_DATA_BLOCKS
+0x49 HCI_EVENT_AMP_START_TEST
+0x4A HCI_EVENT_AMP_TEST_END
+0x4B HCI_EVENT_AMP_RECEIVER_REPORT
+0x4C HCI_EVENT_SHORT_RANGE_MODE_CHANGE_COMPLETE
+0x4D HCI_EVENT_AMP_STATUS_CHANGE
+0x4E HCI_EVENT_TRIGGERED_CLOCK_CAPTURE
+0x4F HCI_EVENT_SYNCHRONIZATION_TRAIN_COMPLETE
+0x50 HCI_EVENT_SYNCHRONIZATION_TRAIN_RECEIVED
+0x51 HCI_EVENT_CONNECTIONLESS_SLAVE_BROADCAST_RECEIVE
+0x52 HCI_EVENT_CONNECTIONLESS_SLAVE_BROADCAST_TIMEOUT
+0x53 HCI_EVENT_TRUNCATED_PAGE_COMPLETE
+0x54 HCI_EVENT_SLAVE_PAGE_RESPONSE_TIMEOUT
+0x55 HCI_EVENT_CONNECTIONLESS_SLAVE_BROADCAST_CHANNEL_MAP_CHANGE
+0x56 HCI_EVENT_INQUIRY_RESPONSE_NOTIFICATION
+0x57 HCI_EVENT_AUTHENTICATED_PAYLOAD_TIMEOUT_EXPIRED
+
+0xFE HCI_EVENT_LOGO_TESTING
+0xFF HCI_EVENT_VENDOR_SPECIFIC
+)
+(
+0x01 HCI_VENDOR_EVENT_COMMU_READY
+)
+//HCI LE SUBEVENT CODE
+(
+0x01 HCI_LE_SUBEVENT_CONN_COMPLETE
+0x02 HCI_LE_SUBEVENT_ADV_REPORT
+0x03 HCI_LE_SUBEVENT_CONN_UPDATE_COMPLETE
+0x04 HCI_LE_SUBEVENT_REMOTE_FEATURE_COMPLETE
+0x05 HCI_LE_SUBEVENT_LTK_REQUEST
+0x06 HCI_LE_SUBEVENT_REMOTE_CONN_PARAM_REQ
+)
+//HCI ErrorCodes
+(    
+0x00 HCI_SUCCESS
+0x01 HCI_ERROR_UNKNOWN_HCI_COMMAND
+0x02 HCI_ERROR_NO_CONNECTION
+0x03 HCI_ERROR_HARDWARE_FAILURE
+0x04 HCI_ERROR_PAGE_TIMEOUT
+0x05 HCI_ERROR_AUTHENTICATION_FAILURE
+0x06 HCI_ERROR_KEY_MISSING
+0x07 HCI_ERROR_MEMORY_FULL
+0x08 HCI_ERROR_CONNECTION_TIMEOUT
+0x09 HCI_ERROR_MAX_CONNECTIONS
+0x0A HCI_ERROR_MAX_SCO_CONNECTIONS
+0x0B HCI_ERROR_MAX_ACL_CONNECTIONS
+0x0C HCI_ERROR_COMMAND_DISALLOWED
+0x0D HCI_ERROR_HOST_REJECT_LIMITED_RESOURCES
+0x0E HCI_ERROR_HOST_REJECT_SECURITY_REASONS
+0x0F HCI_ERROR_HOST_REJECT_REMOTE_IS_ONLY_PERSONAL
+0x10 HCI_ERROR_HOST_TIMEOUT
+0x11 HCI_ERROR_UNSUPPORTED_FEATURE_OR_PARAMETER_VALUE
+0x12 HCI_ERROR_INVALID_HCI_COMMAND_PARAMETERS
+0x13 HCI_ERROR_REMOTE_USER_ENDED_CONNECTION
+0x14 HCI_ERROR_REMOTE_LOW_RESOURCES
+0x15 HCI_ERROR_REMOTE_POWERING_OFF
+0x16 HCI_ERROR_CONNECTION_TERMINATED_BY_LOCAL_HOST
+0x17 HCI_ERROR_REPEATED_ATTEMPTS
+0x18 HCI_ERROR_PAIRING_NOT_ALLOWED
+0x19 HCI_ERROR_UNKNOWN_LMP_PDU
+0x1A HCI_ERROR_UNSUPPORTED_REMOTE_FEATURE
+0x1B HCI_ERROR_SCO_OFFSET_REJECTED
+0x1C HCI_ERROR_SCO_INTERVAL_REJECTED
+0x1D HCI_ERROR_SCO_AIR_MODE_REJECTED
+0x1E HCI_ERROR_INVALID_LMP_PARAMETER
+0x1F HCI_ERROR_UNSPECIFIED_ERROR
+0x20 HCI_ERROR_UNSUPPORTED_LMP_PARAMETER_VALUE
+0x21 HCI_ERROR_ROLE_CHANGE_NOT_ALLOWD
+0x22 HCI_ERROR_LMP_RESPONSE_TIMEOUT
+0x23 HCI_ERROR_ERROR_TRANSACTION_COLLISION
+0x24 HCI_ERROR_LMP_PDU_NOT_ALLOWED
+0x25 HCI_ERROR_ENCRYPTION_MODE_NOT_ACCEPTABLE
+0x26 HCI_ERROR_UNIT_KEY_USED
+0x27 HCI_ERROR_QOS_NOT_SUPPORTED
+0x28 HCI_ERROR_INSTANT_PASSED
+0x29 HCI_ERROR_PAIRING_W_UNIT_KEY_NOT_SUPPORTED
+0x2a HCI_ERROR_DIFFERENT_TRANSACTION_COLLISION
+0x2c HCI_ERROR_QOS_UNACCEPTABLE_PARAMETER
+0x2d HIC_ERROR_QOS_REJECTED
+0x2e HIC_ERROR_CHANNEL_CLASSIFICATION_NOT_SUPPORTED
+0x2f HIC_ERROR_INSUFFICIENT_SECURITY
+0x30 HIC_ERROR_PARAMETER_OUT_OF_MANDATORY_PANGE
+0x32 HIC_ERROR_ROLE_SWITCH_PENDING
+0x34 HIC_ERROR_RESERVED_SLOT_VIOLATION
+0x35 HIC_ERROR_ROLE_SWITCH_FAILED
+0x36 HIC_ERROR_EXTENDED_INQUIRY_RESPONSE_TOO_LARGE
+0x37 HIC_ERROR_SIMPLE_PAIRING_NOT_SUPPORTED_BY_HOST
+0x38 HIC_ERROR_HOST_BUSY_PAIRING
+)
+
+(
+0x00 HCI_LPM_OFF
+0x01 HCI_LPM_ON
+)
+
+
+(
+33 HOST_WAKE_TIME
+)
+
+(
+1 HCI_RX_WAKE
+0 HCI_RX_READY
+)
+
+
+(
+/*HID TYPE*/
+0x01 HID_TYPE_CONTROL
+0x04 HID_TYPE_GET_REPORT
+0x05 HID_TYPE_SET_REPORT
+0x07 HID_TYPE_SET_PROTOCOL
+0x09 HID_TYPE_SET_IDLE
+0x0a HID_TYPE_DATA
+/*HID REPORT ID*/
+0x01 HID_REPORT_ID_KB
+
+0x00 HID_CONTROL_P_NOOPERATION
+0x01 HID_CONTROL_P_HARDRESET
+0x02 HID_CONTROL_P_SOFTRESET
+0x03 HID_CONTROL_P_SUSPEND
+0x04 HID_CONTROL_P_EXITSUSPEND
+0x05 HID_CONTROL_P_VIRTUALCABLEUNPLUG
+)
+
+
+
+
+//C51 synchronous task
+(
+3 START_C51_CORE
+)
+
+(
+0 ADC_CONFIG_VINLPM
+1 ADC_CONFIG_HVIN
+2 ADC_CONFIG_GPIO
+)
+
+(
+0 P24G_PAIRING_REQ_HEAD
+1 P24G_PAIRING_COMPLETE_HEAD
+)
+
+(
+0 ENSURE_OFF_24G
+1 ENSURE_ON_24G
+0x4e G24_PAIR_CH
+)
+
+(
+7 RSSI_BUF_LEN_SIGNAL
+255 RSSI_BUF_LEN_NOISE
+0x50 RSSI_THRESH_NOISE
+
+0x77 RSSI_DIS_MIN_24G
+0x82 RSSI_DIS_MAX_24G
+
+0x75 RSSI_DIS_MIN_BLE
+0x80 RSSI_DIS_MAX_BLE
+)
+
+(//bluetooth tx power
+0 TX_POWER_0DB
+1 TX_POWER_3DB
+2 TX_POWER_5DB
+3 TX_POWER_f3DB
+4 TX_POWER_f5DB
+)
+
+/* 24g */
+(
+6 dlen_24g
+14 plen_24g
+90 blen_tx_24g
+106 blen_rx_24g
+42 blen_txack_24g
+58 blen_rxack_24g
+7 retry_24g
+0xaaf08e acc_24g
+0x15c4 crc_data_3byte
+0xbb81 crc_data_6byte
+0x4160 crc_ack
+41390 crc_ack_4byte
+)
+
+(
+1 NO_ACK_24g
+0 with_ack_24g
+)
+
+(
+0 disable_24g
+1 tx_24g
+2 rx_24g
+
+0 bit_ack_24g
+)
+
+
+//mem_24g_data_type
+(
+0x07 bits_data
+//0-2 data type
+3 bit_abort
+4 bit_hop
+5 bit_sync
+//6-7 channel offset
+)
+
+// ble
+(
+0 FLAG_LE_PAIRING_NULL
+1 FLAG_LE_PAIRING_START
+2 FLAG_LE_PAIRING_AFTER_AUTH
+3 FLAG_LE_PAIRING_END
+)
+
+(
+0 PAIR_UNKNOWN
+1 PAIR_ING
+2 PAIR_DONE
+)
+
+(
+0 DEFAULT_STATES
+1 IPHONE_LOST_LTK
+2 MODULE_LOST_LTK
+3 LTK_NOT_LOST
+)
+
+(
+3 QUEUE_ELE_COUNT
+12 QUEUE_ELE_LENGTH
+)
+
+
+8 KB_KSCAN_ROW 
+7 KB_KSCAN_ROW_1
+20 KB_KSCAN_COL
+19 KB_KSCAN_COL_1
+
+/* ks_ctrl */
+(
+0x01 KB_KSCAN_CTRL_ENABLE					
+0x02 KB_KSCAN_CTRL_FREEZE					
+0x04 KB_KSCAN_CTRL_GHOST					
+0x08 KB_KSCAN_CTRL_INT						
+0x10 KB_KSCAN_CTRL_CLKON					
+0x20 KB_KSCAN_CTRL_FIFO_CLR				
+                  
+0 KB_KSCAN_STAT_EMPTY
+1 KB_KSCAN_STAT_FULL 					
+2 KB_KSCAN_STAT_OVERFLOW				
+6 KB_KSCAN_STAT_GHOST 
+
+0 KB_KSCAN_KEY_EVENT_STAT
+0 KB_KSCAN_KEY_PRESS	
+1 KB_KSCAN_KEY_RELEASE
+
+)
+
+
+/* special key codes */
+(
+0x1d KB_KCODE_1_M1
+0x27 KB_KCODE_0
+0x28 KB_KCODE_ENTER
+0x2a KB_KCODE_BKSP
+)
+
+(
+0x01 HID_REPORTID_1
+0x02 HID_REPORTID_2
+0x03 HID_REPORTID_3
+0x04 HID_REPORTID_4
+)
+
+(
+/*DATA OUTPUT report id = 1*/
+0 KB_NUM_LOCK_SELECTED
+1 KB_CAPS_LOCK_SELECTED
+2 KB_SCROLL_LOCK_SELECTED
+)
+
+(
+0x1f  KB_UI_BUTTON_GPIO
+)
+
+(
+0x0007 HANDLE_UUID_CHRCTR_DEVICE_NAME
+0x000e HANDLE_UUID_CHRCTR_MANUFACTURER_NAME
+0x0010 HANDLE_UUID_PNP_ID
+0x0021 HANDLE_UUID_CHRCTR_REPORT_ID1_OUTPUT
+0x0030 HANDLE_UUID_BATTERY_LEVEL
+0x0031 HANDLE_UUID_END
+)
+
+
+
+0x02c4 mem_l2cap_mem_start
+0x02c4 mem_l2cap_rxbuff1_len
+0x02c6 mem_l2cap_rxbuff2_len
+0x02c8 mem_l2cap_rxbuff_new
+0x02ca mem_l2cap_rxbuff_inuse
+0x02cb mem_l2cap_payload_ptr
+0x02cd mem_l2cap_rx_pkt_length
+0x02cf mem_l2cap_rx_cid
+0x02d1 mem_l2cap_rx_done
+0x02d2 mem_l2cap_signal_tx_buff_ptr
+0x02d4 mem_l2cap_signal_tx_payload_ptr
+0x02d6 mem_l2cap_signal_tx_length
+0x02d8 mem_sdp_tx_buff_ptr
+0x02da mem_sdp_tx_payload_ptr
+0x02dc mem_sdp_tx_pkt_length
+0x02de mem_rfcomm_tx_buff_ptr
+0x02e0 mem_rfcomm_tx_payload_ptr
+0x02e2 mem_rfcomm_tx_pkt_length
+0x02e4 memL2CAP_T1
+0x02e6 mem_CONTROL_tasks
+0x02e7 mem_send_config_req
+0x02e8 mem_config_identifier
+0x02e9 mem_config_req_dest_CID
+0x02eb mem_rfcomm_malloc_fail_flag
+0x02ec mem_message_to_uppersm
+0x02ed mem_upper_sm_remote_page
+0x02ee mem_upper_sm_reconn
+0x02ef mem_upper_sm_ss
+0x02f0 mem_tx_malloc_log
+0x0330 mem_l2cap_mem_end
+0x0330 mem_scid
+0x0332 mem_cmd_length
+0x0334 mem_tt2
+0x0336 mem_tt3
+0x0338 mem_id
+0x033a mem_psm
+0x033c mem_l2cap_sdpres_delay_time
+
+
+
+//mem_l2cap_lpm_txbuf
+(
+256 l2cap_lpm_txbuf_len
+)
+
+(
+4 L2CAP_TX_FIFO_SIZE
+8 L2CAP_TX_BUFF_CNT
+
+)
+
+(
+0x0002 L2CAP_SIG_EXT_FEATRUE
+0x0003 L2CAP_SIG_FIX_FEATRUE
+)
+
+(
+0 HS_IDLE
+1 AG_INIT_CALL
+2 HS_INIT_CALL
+)
+(
+0 M_ACL_LINK_ABSENT
+1 M_ACL_LINK_EXIST
+)
+
+(
+0 L2CAP_INUSE_BUFF1
+1 L2CAP_INUSE_BUFF2
+)
+/* upper layer interface w/ lower layer */
+(
+1 MAX_NUM_LINKS_ALLOWED
+1 MAX_NUM_SCO_ALLOWED
+1 ACL_LINK_PRESENT
+0 ACL_LINK_ABSENT
+)
+(
+1 L2CAP_RX_DONE 
+0 L2CAP_RX_CLEAR
+)
+/* Scheduler */
+(
+0 L2CAP_DISCONNECT_INTERRUPT
+1 RFCOMM_wants_service
+2 L2CAP_sig_Tx_buff_full
+3 RFCOMM_Tx_buff_full
+4 SDP_Tx_buff_full
+5 got_complete_L2CAP_pkt	
+6 L2CAP_init_Config_Req
+7 L2CAP_DISCONNECT_CONTROL
+)
+
+/* mem_CONTROL_tasks2 */
+(
+0 UI_NEED_SERVICE
+)
+/* L2CAP logic channel identifiers (2 bytes) p.261 */
+(
+0x0001 L2CAP_signal_channel
+0x0050 L2CAP_SDP_channel
+0x0051 L2CAP_RFCOMM_channel
+0x0052 L2CAP_HID_Control_channel   
+0x0053 L2CAP_HID_Interrupt_channel
+0x0077 L2CAP_AVDTP_signal_channel		//------avdtp
+0x0078 L2CAP_AVDTP_media_channel
+0x0079 L2CAP_AVDTP_report_channel
+0x0080 L2CAP_AVDTP_recovery_channel
+0x00dd L2CAP_AVCTP_Control_channel
+)
+/* L2CAP signalling command codes (1 byte) p.284 */
+(
+0x00 reserved
+0x01 signal_cmd_reject
+0x02 signal_connect_req
+0x03 signal_connect_rsp
+0x04 signal_config_req
+0x05 signal_config_rsp
+0x06 signal_disconnect_req
+0x07 signal_disconnect_rsp
+0x08 signal_echo_req
+0x09 signal_echo_rsp
+0x0a signal_info_req
+0x0b signal_info_rsp
+)
+/* L2CAP signal_command_reject reason code (2 bytes), p.285 */
+(
+0x0000 cmd_not_understood
+0x0001 signalling_MTU_exceeded
+0x0002 invalid_CID_in_req
+)
+/* L2CAP PSM values used in signal_connect_req (2 bytes), p.286 */
+(
+0x0001 PSM_SDP
+0x0003 PSM_RFCOMM
+0x0005 PSM_TCS
+0x0011 PSM_HID_control
+0x0013 PSM_HID_interrupt
+0x0017 PSM_AVCTP
+0x0019 PSM_AVDTP
+)
+/* L2CAP connection response result code (2 bytes), p.288 */
+(
+0x0000 L2CAP_connect_successful
+0x0001 L2CAP_connect_pending
+0x0002 L2CAP_connect_refused_PSM_unsupported
+0x0003 L2CAP_connect_refused_security_block
+0x0004 L2CAP_connect_refused_no_resources
+)
+/* L2CAP connection status values (2 bytes), p.288 */
+(
+0x0000 L2CAP_no_info_available
+0x0001 L2CAP_authentication_pending
+0x0002 L2CAP_authorization_pending
+)
+/* L2CAP configuration response result code (2 bytes), p.292 */
+(
+0x0000 L2CAP_config_success
+0x0001 L2CAP_config_failure_bad_parameters
+0x0002 L2CAP_config_failure_no_reason
+0x0003 L2CAP_config_failure_unknown_options
+)
+/* L2CAP constant definitions */
+(
+128 L2CAP_Rx_buff_size
+48  L2CAP_signal_Tx_buff_size
+128 SDP_Tx_buff_size
+128 RFCOMM_Tx_buff_size
+1 AM_ADDRESS
+3 DM1TYPE
+4 DH1TYPE
+11 DH3TYPE
+8 DVTYPE
+0 channel_state_closed
+1 channel_state_config
+2 channel_state_open
+0x0030 L2CAP_config_MTU_SDP
+0xffff L2CAP_config_ftimeout_SDP
+0x03e3 L2CAP_config_MTU_RFCOMM
+0xffff L2CAP_config_ftimeout_RFCOMM
+260 l2cap_max_pkt_len
+)
+
+(
+0 FAILURE
+1 SUCCESS
+2 IN_PROGRESS
+)
+(
+0x00	IDLE
+0x01	WAIT_4_BB_PAGE
+0x02	WAIT_4_LMP_CONN
+0x03	WAIT_4_SCO_CONN
+0x04	WAIT_4_SCO_KILLED
+)
+
+/*mem_master_mss*/
+(
+0 STOP_ENC
+1 SEND_SWITCH_REQ
+)
+(
+0 HF_HS_READY
+1 HF_AG_READY
+)
+/* mem_hf_state */
+(
+0 HF_STATE_WAITING_RFCOMM_CONN
+1 HF_STATE_HF_SEND_FEATURE
+2 HF_STATE_WAITING_AG_FEATURE_OK
+3 HF_STATE_HF_SEND_INDICATORS
+4 HF_STATE_WAITING_AG_INDICATORS_OK
+5 HF_STATE_HF_SEND_CURR_STATUS
+6 HF_STATE_WAITING_AG_STATUS_OK
+7 HF_STATE_HF_SEND_UPDATE_STATUS
+8 HF_STATE_WAITING_AG_UPDATE_STATUS_OK
+9 HF_STATE_CONNECTED
+0x0a HF_STATE_HF_SEND_RECEIVE_INFO
+0x0b HF_STATE_WAITING_AG_INFO
+0x0c HF_STATE_HF_SEND_AT_CLIP
+0x0d HF_STATE_WAITING_AT_CLIP
+0x0e HF_STATE_HF_SEND_AT_CCWA
+0x0f HF_STATE_WAITING_AT_CCWA
+)
+/*mem_hf_call_state*/
+(
+0 HF_CALL_STATE_INACTIVE
+1 HF_CALL_STATE_SETUP
+2 HF_CALL_STATE_ACTIVE 
+)
+/* mem_pairing_state bit definition */
+(
+0 PAIR_INQUIRY_START
+1 PAIR_INQUIRY_TIME_OUT
+2 PAIR_INQUIRY_FAILED
+3 PAIR_INQUIRY_SUCCESS
+4 PAIR_READY_CONN
+5 PAIR_WAIT_CANCEL_RESPONSE
+6 PAIR_CONN_SUCCESS
+7 PAIR_WAIT_DETACH
+)  
+
+/* mem_pairing_mode bit definition */
+(
+0 FORCE_AUTHENTICATION
+)
+/* mem_hid_protecol_type */
+(
+0 PROTECOL_BOOT /*default*/
+1 PROTECOL_REPORT
+)
+
+/* mem_upper_sm_reconn */
+(
+1 UPPERSM_SEND_SDP_CONN_REQ
+2 UPPERSM_SEND_SDP_CFG_REQ
+3 UPPERSM_SEND_SDP_HF_SS
+4 UPPERSM_SEND_SDP_DISC_REQ
+5 UPPERSM_SEND_RFCOMM_CONN_REQ
+6 UPPERSM_SEND_RFCOMM_CFG_REQ
+7 UPPERSM_SEND_SABM_CMD
+8 UPPERSM_SEND_DISC
+9 UPPERSM_SEND_WAIT
+10 UPPERSM_SEND_HID_CONTROL_CONN_REQ
+11 UPPERSM_SEND_HID_CONTROL_CFG_REQ
+12 UPPERSM_SEND_HID_INTERRUPT_CONN_REQ
+13 UPPERSM_SEND_HID_INTERRUPT_CFG_REQ
+14 UPPERSM_SEND_SDP_HS_SS
+15 UPPERSM_SEND_SDP_PBAP_SS
+16 UPPERSM_SEND_SDP_AVTARG_SS
+)
+/* mem_upper_sm_remote_page */
+(
+1 UPPERSM_RP_SEND_SDP_CONN_REQ
+2 UPPERSM_RP_SEND_SDP_CFG_REQ
+3 UPPERSM_RP_SEND_SDP_HF_SS
+4 UPPERSM_RP_SEND_SDP_HS_SS
+5 UPPERSM_RP_SEND_SDP_PBAP_SS
+6 UPPERSM_RP_SEND_SDP_AVTARG_SS
+7 UPPERSM_RP_SEND_SDP_DISC_REQ
+8 UPPERSM_RP_SEND_AVCTP_CONN_REQ
+9 UPPERSM_RP_SEND_AVCTP_CFG_REQ
+)
+
+/* mem_ML2CAP_flag */
+(
+0 MSCHEDULER_HID_CONTROL_CONN_DONE
+1 MSCHEDULER_HID_INTERRUPT_CONN_DONE
+2 MSCHEDULER_HID_CONTROL_CFG_REQ_DONE
+3 MSCHEDULER_HID_CONTROL_CFG_RSP_DONE
+4 MSCHEDULER_HID_INTERRUPT_CFG_REQ_DONE
+5 MSCHEDULER_HID_INTERRUPT_CFG_RSP_DONE
+6 MSCHEDULER_HID_CONTROL_DISC_DONE
+7 MSCHEDULER_HID_INTERRUPT_DISC_DONE
+)
+/*    ui event    --add by lj*/
+(
+0x00 UI_DATA_EVNET_NONE
+0x01 UI_DATA_EVNET_HID
+0x02 UI_DATA_EVNET_AVDTP_S
+0x03 UI_DATA_EVNET_AVDTP_M
+0x04 UI_DATA_EVNET_AVCTP
+0x05 UI_DATA_EVNET_HS
+0x06 UI_DATA_EVNET_HF
+0x07 UI_DATA_EVNET_SPP
+0x08 UI_DATA_EVNET_OBEX
+)
+/*    ui ack --add by lj*/
+(
+0x00 UI_DATA_TX_NONE
+0x01 UI_DATA_TX_HID
+0x02 UI_DATA_TX_AVDTP_S
+0x03 UI_DATA_TX_AVDTP_M
+0x04 UI_DATA_TX_AVCTP
+0x05 UI_DATA_TX_HS
+0x06 UI_DATA_TX_HF
+0x07 UI_DATA_TX_SPP
+0x08 UI_DATA_TX_OBEX
+0x10 ACL_TX_L2CAP_SIGNAL
+0x11 ACL_TX_SDP
+0x12 ACL_TX_RFCOMM
+
+)
+
+(
+0 L2CAP_SDP_interface_conn
+1 L2CAP_SDP_interface_cfg
+)
+
+(                                   
+0 L2CAP_CHANNEL_STATE_CONN_REQ      
+1 L2CAP_CHANNEL_STATE_CONN_RES      
+2 L2CAP_CHANNEL_STATE_SND_CFG_REQ   
+3 L2CAP_CHANNEL_STATE_SND_CFG_RES   
+4 L2CAP_CHANNEL_STATE_RCV_CFG_REQ   
+5 L2CAP_CHANNEL_STATE_RCV_CFG_RES
+6 L2CAP_CHANNEL_RFCOMM_ONLY_SABM
+7 L2CAP_CHANNEL_RFCOMM_ONLY_UA
+6 L2CAP_CHANNEL_AVDTP_SIGNAL_INIT //set avdtp init complete
+6 L2CAP_CHANNEL_HID_HANDSHAKE_DONE
+0x3f L2CAP_CHANNEL_SETUP_COMPLETE
+0x7f L2CAP_CHANNEL_AVDTP_SIGNAL_COMPLETE
+0xff L2CAP_CHANNEL_RFCOMM_DLCI0_OPENED
+)                                     
+
+/*  AVDTP---lj*/
+(
+0 L2CAP_AVDTP_SIGNAL_CONNECT
+1 L2CAP_AVDTP_SIGNAL_CONFIG
+2 L2CAP_AVDTP_MEDIA_CONNECT
+3 L2CAP_AVDTP_MEDIA_CONFIG
+4 L2CAP_AVDTP_REPORT_CONNECT
+5 L2CAP_AVDTP_REPORT_CONFIG
+6 L2CAP_AVDTP_RECOVERY_CONNECT
+7 L2CAP_AVDTP_RECOVERY_CONFIG
+)
+/*  AVCTP---lj*/
+(
+0 L2CAP_AVCTP_SIGNAL_CONNECT
+1 L2CAP_AVCTP_SIGNAL_CONFIG
+)
+
+127 L2CAP_SIGNAL_MALLOC_SIZE
+
+//1 mem_rfcomm_malloc_fail_flag
+(
+0 RFCOMM_MALLOC_SUCCEED
+1 RFCOMM_MALLOC_FAIL
+)
+
+//mem_l2cap_flow_ctrl_flag
+(
+0 L2CAP_FLOW_CTRL_DISABLE
+1 L2CAP_FLOW_CTRL_ENABLE
+)
+
+
+0x0340 mem_le_rxbuf
+0x0378 mem_le_mic
+0x037c mem_le_peer_mic
+0x0380 mem_le_skdm
+0x0388 mem_le_skds
+0x0390 mem_le_peer_ltk
+0x03a0 mem_le_my_ltk
+0x03b0 mem_le_mrand
+0x03c0 mem_le_state
+0x03c1 mem_le_mode
+0x03c2 mem_le_tsniff
+0x03c4 mem_le_anchor
+0x03c8 mem_le_clk_offset
+0x03ce mem_le_receive_window
+0x03d0 mem_le_plap
+0x03d6 mem_le_conn_handle
+0x03d7 mem_le_arq
+0x03d8 mem_le_ch
+0x03d9 mem_le_hop
+0x03da mem_le_event_count
+0x03dc mem_le_supervision_timer
+0x03e0 mem_le_instant
+0x03e2 mem_le_channels
+0x03e3 mem_le_conn_sm
+0x03e4 mem_le_op
+0x03e5 mem_le_access
+0x03e9 mem_le_crcinit
+0x03ec mem_le_window_size
+0x03ed mem_le_slave_latency
+0x03ef mem_le_superto
+0x03f1 mem_le_channel_map
+0x03f6 mem_le_no_using
+0x03f8 mem_le_peer_sca
+0x03f9 mem_le_att_opcode
+0x03fa mem_le_att_handle
+0x03fc mem_le_err_code
+0x03fd mem_le_sk
+0x040d mem_le_testtype
+0x040e mem_le_test_sync
+0x0410 mem_le_test_pcnt
+0x0412 mem_le_rxon_ts
+0x0418 mem_le_rx_ll_opcode
+0x0419 mem_le_notify_attr_start
+0x041b mem_le_notify_len
+0x041c mem_cmd_le_create_conn
+0x041d mem_le_adv_temp
+0x0431 mem_24g_id
+
+
+
+(
+20 notify_handle
+2 param_max_slaves
+1636 param_sifs
+0x000a06 param_le_version
+0x1d87 param_le_subversion
+0x000001 param_le_features
+23 param_le_mtu
+16 param_le_scan_interval
+16 param_le_scan_window
+0x1e0 param_clke_cal_le
+0x1000302 param_smp_paring_response		/* for mouse, noinputnooutput */
+0x010410 param_smp_key_dist	
+0x010010 param_smp_key_dist0
+0xa0 param_le_sca
+)
+
+(
+	0x2902  ATT_Configuration
+)
+
+/* mem_le_conn_sm */
+( 
+  0x21 CONN_SM_SEND_WRITE_REQ                      
+  0x25 CONN_SM_WAIT_WRITE_RES
+  0x26 CONN_SM_WAIT_WRITE_RES1
+) 
+/*LE MOUSE-KB*/
+(
+1 LE_CONTEXT_STATE_KB
+2 LE_CONTEXT_STATE_MOUSE
+
+3 USB_MOUSE_DATA_CMD
+
+1 SEND_MOUSE_DATA_CMD
+2 SEND_KB_DATA_CMD
+)
+
+
+  (
+  	0 LE_M_STATE_SLAVE1_STANDBY
+  	1 LE_M_STATE_SLAVE1_ADVERTISING
+  	2 LE_M_STATE_SLAVE1_SCANNING
+  	3 LE_M_STATE_SLAVE1_INITIATING
+  	4 LE_M_STATE_SLAVE1_CONNECTED
+  	5 LE_M_STATE_SLAVE1_RFU_1
+  	6 LE_M_STATE_SLAVE1_RFU_2
+  	7 LE_M_STATE_SLAVE1_RFU_3
+  )
+
+  (
+  	0 LE_M_STATE_SLAVE2_STANDBY
+  	1 LE_M_STATE_SLAVE2_ADVERTISING
+  	2 LE_M_STATE_SLAVE2_SCANNING
+  	3 LE_M_STATE_SLAVE2_INITIATING
+  	4 LE_M_STATE_SLAVE2_CONNECTED
+  	5 LE_M_STATE_SLAVE2_CONNECT_INIT
+  	6 LE_M_STATE_SLAVE2_RFU_2
+  	7 LE_M_STATE_SLAVE2_RFU_3
+  )
+
+  	(
+	0 LE_SM_IDLE
+	1 LE_SM_FBTV_1800
+	2 LE_SM_FBTV_1800_WAIT
+	3 LE_SM_RBT_DEVICE_NAME
+	4 LE_SM_RBT_DEVICE_NAME_WAIT
+	5 LE_SM_FBTV_1801
+	6 LE_SM_FBTV_1801_WAIT
+	7 LE_SM_RBT_DEVICE_CHARACTER
+	8 LE_SM_RBT_DEVICE_CHARACTER_WAIT
+	
+  	)
+
+/* advertising channel PDU type */
+(
+0 ADV_IND
+1 ADV_DIRECT_IND
+2 ADV_NONCONN_IND
+3 SCAN_REQ
+4 SCAN_RSP
+5 CONNECT_REQ
+6 ADV_SCAN_IND
+)
+
+	/* tx packet type */
+	(
+	0x20 XT_LL_CONNECTION_UPDATE_REQ
+	0x21 XT_LL_CHANNEL_MAP_REQ
+	0x22 XT_LL_TERMINATE_IND
+	0x23 XT_LL_ENC_REQ
+	0x24 XT_LL_ENC_RSP
+	0x25 XT_LL_START_ENC_REQ
+	0x26 XT_LL_START_ENC_RSP
+	0x27 XT_LL_UNKNOWN_RSP
+	0x28 XT_LL_FEATURE_REQ
+	0x29 XT_LL_FEATURE_RSP
+	0x2A XT_LL_PAUSE_ENC_REQ
+	0x2B XT_LL_PAUSE_ENC_RSP
+	0x2C XT_LL_VERSION_IND
+	0x2D XT_LL_REJECT_IND
+	0x2E XT_LL_SLAVE_FEATURE_REQ
+	0x2F XT_LL_CONNECTION_PARAM_REQ
+	0x30 XT_LL_CONNECTION_PARAM_RSP
+	0x31 XT_LL_REJECT_IND_EXT
+	0x32 XT_LL_PING_REQ
+	0x33 XT_LL_PING_RSP
+	0x41 XT_SMP_PAIRING_REQUEST
+	0x42 XT_SMP_PAIRING_RESPONSE
+	0x43 XT_SMP_PAIRING_CONFIRM
+	0x44 XT_SMP_PAIRING_RANDOM
+	0x45 XT_SMP_PAIRING_FAILED
+	0x46 XT_SMP_ENCRYPTION_INFORMATION
+	0x47 XT_SMP_MASTER_IDENTIFICATION
+	0x48 XT_SMP_IDENTITY_INFORMATION
+	0x49 XT_SMP_IDENTITY_ADDRESS_INFORMATION
+	0x4A XT_SMP_SIGNING_INFORMATION
+	0x4B XT_SMP_SECURITY_REQUEST
+	0x51 XT_L2CAP_CONN_PARAM_UPDATE_REQ
+	)
+
+
+	/* LE control packet type */
+	(
+	0x00 LL_CONNECTION_UPDATE_REQ
+	0x01 LL_CHANNEL_MAP_REQ
+	0x02 LL_TERMINATE_IND
+	0x03 LL_ENC_REQ
+	0x04 LL_ENC_RSP
+	0x05 LL_START_ENC_REQ
+	0x06 LL_START_ENC_RSP
+	0x07 LL_UNKNOWN_RSP
+	0x08 LL_FEATURE_REQ
+	0x09 LL_FEATURE_RSP
+	0x0A LL_PAUSE_ENC_REQ
+	0x0B LL_PAUSE_ENC_RSP
+	0x0C LL_VERSION_IND
+	0x0D LL_REJECT_IND
+	0x0E LL_SLAVE_FEATURE_REQ
+	0x0F LL_CONNECTION_PARAM_REQ
+	0x10 LL_CONNECTION_PARAM_RSP
+	0x11 LL_REJECT_IND_EXT
+	0x12 LL_PING_REQ
+	0x13 LL_PING_RSP
+	)
+
+	/* Security Manager Protocol Code */
+	(
+	0x01 SMP_PAIRING_REQUEST
+	0x02 SMP_PAIRING_RESPONSE
+	0x03 SMP_PAIRING_CONFIRM
+	0x04 SMP_PAIRING_RANDOM
+	0x05 SMP_PAIRING_FAILED
+	0x06 SMP_ENCRYPTION_INFORMATION
+	0x07 SMP_MASTER_IDENTIFICATION
+	0x08 SMP_IDENTITY_INFORMATION
+	0x09 SMP_IDENTITY_ADDRESS_INFORMATION
+	0x0A SMP_SIGNING_INFORMATION
+	0x0B SMP_SECURITY_REQUEST
+	)
+
+	/* ATT OPCODE */
+	(
+	0x01 ATTOP_ERROR_RESPONSE
+	0x02 ATTOP_EXCHANGE_MTU_REQUEST
+	0x03 ATTOP_EXCHANGE_MTU_RESPONSE
+	0x04 ATTOP_FIND_INFORMATION_REQUEST
+	0x05 ATTOP_FIND_INFORMATION_RESPONSE
+	0x06 ATTOP_FIND_BY_TYPE_VALUE_REQUEST
+	0x07 ATTOP_FIND_BY_TYPE_VALUE_RESPONSE
+	0x08 ATTOP_READ_BY_TYPE_REQUEST
+	0x09 ATTOP_READ_BY_TYPE_RESPONSE
+	0x0A ATTOP_READ_REQUEST
+	0x0B ATTOP_READ_RESPONSE
+	0x0C ATTOP_READ_BLOB_REQUEST
+	0x0D ATTOP_READ_BLOB_RESPONSE
+	0x0E ATTOP_READ_MULTIPLE_REQUEST
+	0x0F ATTOP_READ_MULTIPLE_RESPONSE
+	0x10 ATTOP_READ_BY_GROUP_TYPE_REQUEST
+	0x11 ATTOP_READ_BY_GROUP_TYPE_RESPONSE
+	0x12 ATTOP_WRITE_REQUEST
+	0x13 ATTOP_WRITE_RESPONSE
+	0x16 ATTOP_PREPARE_WRITE_REQUEST
+	0x17 ATTOP_PREPARE_WRITE_RESPONSE
+	0x18 ATTOP_EXECUTE_WRITE_REQUEST
+	0x19 ATTOP_EXECUTE_WRITE_RESPONSE
+	0x1B ATTOP_HANDLE_VALUE_NOTIFICATION
+	0x1D ATTOP_HANDLE_VALUE_INDICATION
+	0x1E ATTOP_HANDLE_VALUE_CONFIRMATION
+	0x52 ATTOP_WRITE_COMMAND
+	0xD2 ATTOP_SIGNED_WRITE_COMMAND
+	0x9e EMPTY_LE_DATA_PRE
+	0x9f EMPTY_LE_DATA
+	0xc1 XT_L2CAP_CMD_REJECT
+	)
+
+	/* ATT error code */
+	(
+	0x01 ATT_ERR_INVALID_HANDLE
+	0x02 ATT_ERR_READ_NOT_PERMITTED
+	0x03 ATT_ERR_WRITE_NOT_PERMITTED
+	0x04 ATT_ERR_INVALID_PDU
+	0x05 ATT_ERR_INSUFFICIENT_AUTHENTICATION
+	0x06 ATT_ERR_REQUEST_NOT_SUPPORTED
+	0x07 ATT_ERR_INVALID_OFFSET
+	0x08 ATT_ERR_INSUFFICIENT_AUTHORIZATION
+	0x09 ATT_ERR_PREPARE_QUEUE_FULL
+	0x0A ATT_ERR_ATTRIBUTE_NOT_FOUND
+	0x0B ATT_ERR_ATTRIBUTE_NOT_LONG
+	0x0C ATT_ERR_INSUFFICIENT_ENCRYPTION_KEY_SIZE
+	0x0D ATT_ERR_INVALID_ATTRIBUTE_VALUE_LENGTH
+	0x0E ATT_ERR_UNLIKELY_ERROR
+	0x0F ATT_ERR_INSUFFICIENT_ENCRYPTION
+	0x10 ATT_ERR_UNSUPPORTED_GROUP_TYPE
+	0x11 ATT_ERR_INSUFFICIENT_RESOURCES
+	)
+	/*	SERVICE UUID	*/
+	(
+	0x1800 UUID_SERVICE_GENERIC_ACC
+	0x1801 UUID_SERVICE_GENERIC_ATT
+	0x180a UUID_SERVICE_DEVICE_INFO
+	0x180f UUID_SERVICE_BATTERY
+	0x1812 UUID_SERVICE_HIDS
+	0x2800 UUID_GATT_PRIMARY_SERVICE
+	0x2801 UUID_GATT_SECONDARY_SERVICE
+	0X2802 UUID_GATT_INCLUDE
+	0X2803 UUID_GATT_CHARACTERISTIC
+	0X2902 UUID_CLIENT_CHARACTERISTIC
+	0X2A00 UUID_CHRCTR_DEVICE_NAME
+	0X2A19 UUID_CHRCTR_BATTERY_LEVEL
+	0X2A22 UUID_CHRCTR_KEYBOARD_INPUT
+	0X2A23 UUID_CHRCTR_SYSTEM_ID 
+	0X2A25 UUID_CHRCTR_SERIAL_NUMBER
+	0X2A26 UUID_CHRCTR_FIRMWARE
+	0X2A32 UUID_CHRCTR_KEYBOARD_OUTPUT
+	0X2A33 UUID_CHRCTR_MOUSE_INPUT
+	0X2A4A UUID_CHRCTR_HID_INFO
+	0X2A4B UUID_CHRCTR_REPORT_MAP
+	0X2A4C UUID_CHRCTR_HID_CTRL_POINT
+	0X2A4D UUID_CHRCTR_REPORT
+	0X2A4E UUID_CHRCTR_PROTOCOL_MODE
+	0X2A50 UUID_PNP_ID
+	)
+
+	//modified_name
+	(
+	0x14 MAX_NAME_LEN
+	0x16 ADV_DATA_NAME_LEN
+	0X20 SPACE
+	
+	)
+	/* GATT Specifications*/
+	(
+	0X2900 CHARACTERTIC_EXTENDED_PROPERTIES
+	0X2901 CHARACTERTIC_USER_DESCRIPTION
+	0X2902 CLIENT_CHARACTERTIC_CONFIGURATION
+	0X2903 SERVER_CHARACTERTIC_CONFIGURATION
+	0X2904 CHARACTERTIC_PRESENTATION_FORMAT
+	0X2905 CHARACTERTIC_AGGREGATE
+	0X2906 VALID_RANGE
+	0X2907 EXTERNAL_REPORT_REFERENCE
+	0X2908 REPORT_REFERENCE
+	0X290B ENVIR_SENSING_CONFIGURATION
+	0X290C ENVIR_SENSING_MEASUREMENT
+	0X290D ENVIR_SENSING_TRIGGER_SETTING
+	)
+	/* LE L2CAP CID */
+	(
+	0x04 LE_L2CAP_CID_ATT
+	0x05 LE_L2CAP_CID_SIGNAL
+	0x06 LE_L2CAP_CID_SMP
+	)
+
+	//LE address type
+	(
+	0 LE_ADDR_TYPE_PUBLIC
+	1 LE_ADDR_TYPE_RANDOM
+	)
+	//LE address type bitmap
+	(
+	7 LE_RECEIVER_ADDR_BIT
+	6 LE_SENDER_ADDR_BIT
+	)
+	//LE SCAN TYPE
+	(
+	0x00 LE_SCAN_TYPE_PASSIVE //no SCAN_REQ shall be sent
+	0x01 LE_SCAN_TYPE_ACTIVE
+	)
+
+	//LE SCAN ENABLE
+	(
+	0x00 LE_SCAN_DISABLE
+	0x01 LE_SCAN_ENABLE
+	0x0101 LE_ACTIVE_SCAN_ENABLE
+	)
+
+
+//	le_state_map 0-2 is reserved for state_inconn,state_insniff and state_sco
+(
+3 lestate_got_first_packet
+4 lestate_encryption
+5 lestate_update_param
+6 lestate_update_map
+7 lestate_version_ind_sent
+)
+
+// 	le mode
+(
+0 lemode_idle
+1 lemode_slave
+3 lemode_master
+)
+
+0xfeff ATT_HANDLE_SPECIAL
+
+// 	sm state
+(
+0 smstate_wait_confirm
+
+)
+
+
+0x0432 mem_lmo_header_length
+0x0433 mem_lmo_header_opcode
+0x0434 mem_lmo_payload
+0x0445 mem_lmi_accepted_opcode
+0x0446 mem_disconn_reason_send
+0x0447 mem_tx_fixed_freq
+0x0448 mem_rx_fixed_freq
+0x0449 mem_ext_features_page
+0x044a mem_lmpext_ssp_enable
+0x044c mem_remote_sppcap
+0x044d mem_lmp_conn_state
+0x044e mem_soft_timer
+0x0450 mem_pincode_state
+0x0451 mem_sres_tid
+0x0452 mem_accptsco_tid
+0x0453 mem_auth_enable
+0x0454 mem_wait_encryption
+0x0455 mem_sniff_payload
+0x0465 mem_aurand_send_delay_time
+
+	(
+	//bit map
+	0 pair_state_inrand
+	1 pair_state_inrand_acpt
+	2 pair_state_send_comb
+	3 pair_state_recv_comb
+	4 pair_state_send_aurand
+	5 pair_state_recv_sres
+	6 pair_state_recv_aurand
+	7 pair_state_send_sres	
+	)
+	/* LMP opcodes */
+	(
+	1 LMP_NAME_REQ 
+	2 LMP_NAME_RES 
+	3 LMP_ACCEPTED 
+	4 LMP_NOT_ACCEPTED 
+	5 LMP_CLKOFFSET_REQ 
+	6 LMP_CLKOFFSET_RES 
+	7 LMP_DETACH 
+	8 LMP_IN_RAND 
+	9 LMP_COMB_KEY 
+	10 LMP_UNIT_KEY 
+	11 LMP_AU_RAND 
+	12 LMP_SRES 
+	13 LMP_TEMP_RAND 
+	14 LMP_TEMP_KEY 
+	15 LMP_ENCRYPTION_MODE_REQ 
+	16 LMP_ENCRYPTION_KEY_SIZE_REQ 
+	17 LMP_START_ENCRYPTION_REQ 
+	18 LMP_STOP_ENCRYPTION_REQ 
+	19 LMP_SWITCH_REQ 
+	20 LMP_HOLD
+	21 LMP_HOLD_REQ
+	23 LMP_SNIFF_REQ 
+	24 LMP_UNSNIFF_REQ 
+	26 LMP_PARK_REQ 
+	27 LMP_SET_BROADCAST_SCAN_WINDOW 
+	28 LMP_MODIFY_BEACON 
+	29 LMP_UNPARK_BD_ADDR_REQ 
+	30 LMP_UNPARK_PM_ADDR_REQ 
+	31 LMP_INCR_POWER_REQ 
+	32 LMP_DECR_POWER_REQ 
+	33 LMP_MAX_POWER 
+	34 LMP_MIN_POWER 
+	35 LMP_AUTO_RATE 
+	36 LMP_PREFERRED_RATE 
+	37 LMP_VERSION_REQ 
+	38 LMP_VERSION_RES 
+	39 LMP_FEATURES_REQ 
+	40 LMP_FEATURES_RES 
+	41 LMP_QUALITY_OF_SERVICE 
+	42 LMP_QUALITY_OF_SERVICE_REQ 
+	43 LMP_SCO_LINK_REQ 
+	44 LMP_REMOVE_SCO_LINK_REQ 
+	45 LMP_MAX_SLOT 
+	46 LMP_MAX_SLOT_REQ 
+	47 LMP_TIMING_ACCURACY_REQ 
+	48 LMP_TIMING_ACCURACY_RES 
+	49 LMP_SETUP_COMPLETE 
+	50 LMP_USE_SEMI_PERMANENT_KEY 
+	51 LMP_HOST_CONNECTION_REQ 
+	52 LMP_SLOT_OFFSET 
+	53 LMP_PAGE_MODE_REQ 
+	54 LMP_PAGE_SCAN_MODE_REQ 
+	55 LMP_SUPERVISION_TIMEOUT 
+	56 LMP_TEST_ACTIVATE
+	57 LMP_TEST_CONTROL
+	58 LMP_ENC_KEY_SIZE_MASK_REQ
+	59 LMP_ENC_KEY_SIZE_MASK_RES
+	60 LMP_SET_AFH
+
+	/* simple pairing support */
+	61 LMP_ENCAPSULATED_HEADER
+	62 LMP_ENCAPSULATED_PAYLOAD
+	63 LMP_SIMPLE_PAIRING_CONFIRM
+	64 LMP_SIMPLE_PAIRING_NUMBER
+	65 LMP_DHKEY_CHECK
+	127 LMP_ESCAPE
+	127 LMP_ESCAPE_4   /* add 2bytes LMP header support  */   
+	)
+	/* LMP EXT opcodes, ORed with bit 7 to make difference to nonEXT */
+	(
+	129 LMP_EXT_ACCEPTED
+	130 LMP_NOT_ACCEPTED_EXT
+	131 LMP_EXT_FEATURES_REQ
+	132 LMP_EXT_FEATURES_RES
+	139 LMP_PACKET_TYPE_TABLE_REQ
+	140 LMP_EXT_ESCO_LINK_REQ
+	141 LMP_EXT_REMOVE_ESCO_REQ
+	144 LMP_EXT_CHN_CLASSIFICATION_REQ
+	145 LMP_EXT_CHN_CLASSIFICATION
+	149 LMP_SNIFF_SUBRATING_REQ
+	150 LMP_SNIFF_SUBRATING_RES
+	151 LMP_PAUSE_ENCRYPTION_REQ
+	152 LMP_RESUME_ENCRYPTION_REQ
+	153 LMP_IO_CAP_REQ
+	154 LMP_IO_CAP_RES
+	)
+	/* LMP reason codes */
+	(
+	0x05 AUTHENTICATION_FAILURE_ERROR
+	0x06 KEY_MISSING
+	0x0b ACL_CONNECTION_ALREADY_EXISTS
+	0x13 OTHER_END_TERMINATED
+	0x15 ABOUT_TO_POEWR_OFF
+	0x16 LOCAL_HOST
+	0x18 PAIRING_NOT_ALLOWED
+	0x19 UNKNOWN_LMP_PDU
+	0x1A UNSUPPORTED_LMP_FEATURE 
+	0x1F UNSPECIFIED_ERROR
+	0x20 UNSUPPORTED_PARAMETERS
+	0x21 SWITCH_NOT_ALLOWED
+	0x23 TRANSACTION_COLLISION
+	0x24 PDU_NOT_ALLOWED
+	0x25 ENCRYPTION_MODE_NOT_ACCEPTABLE
+	0x2e NOT_SUPPORT_CHN_CLASSIFICATION
+	0x37 NOT_SUPPORT_SSP
+	)
+
+	/* test mode scenarios */
+	(
+	0 PAUSE_TEST_MODE
+	1 ZERO_PATTERN
+	2 ONE_PATTERN
+	3 ALT_PATTERN
+	4 PSEUDORANDOM
+	5 CLOSED_LOOP_BACK_ACL
+	6 CLOSED_LOOP_BACK_SCO
+	7 ACL_WITHOUT_WHITENING
+	8 SCO_WITHOUT_WHITENING
+	9 ALT2_PATTERN
+	255 EXIT_TEST_MODE
+	)
+	/* test mode hoppig modes */
+	(
+	0 FIXED_FREQ
+	1 NORMAL_HOP
+	)
+
+	/* mem_lmp_tid indicates which type of LMP will be sent */
+	(
+	0 TID_NORM_REPLY
+	1 TID_NORM_SEND
+	2 TID_ONE
+	3 TID_ZERO
+	4 TID_PAIRING
+	5 TID_ENCRYPTION
+	6 TID_VARIABLE
+	7 TID_RX
+	)
+
+	/* ============== lmp status ==========*/
+	(
+	0 lmp_incoming
+	1 lmp_outgoing
+	2 lmp_reject_msg
+	3 lmp_clear_msg
+	4 upper_reject_msg
+	5 upper_clear_msg
+	)
+
+(
+0x2ee00 TIMER_ONE_MINUTE //96000*2
+80 TIMER_SWITCH_WAITE
+12 TIMER_ENPT_WAITE
+)
+
+(
+0 SWITCH_FLAG_INIT
+1 SWITCH_FLAG_ACCEPT
+2 SWITCH_FLAG_NOT_ACCEPT
+)
+(
+0 NULL_ENCRYP
+1 DONE_ENCRYP
+)
+
+//
+//
+//Large memory blocks defined in this file.
+//Blocks Shall be defined with absolute address.
+//Blocks' length Shall be specified in comment following Blocks' names.
+//Different blocks MAY be overlap.
+//Blocks defined in this file Shall NOT be overlap with variable in memmap.format.
+
+// USB C51 exchange area
+(
+0xff0 mem_mcmd
+0xff1 mem_mouse_data
+)
+
+//l2cap RX buffers
+(
+0x1000 mem_l2cap_rxbuff1		//0x400
+0x1400 mem_l2cap_rxbuff2		//0x400
+//end address:0x17ff
+)
+//l2cap TX buffers
+(
+0x1800 mem_tx_buff0		//128
+0x1880 mem_tx_buff1		//128
+0x1900 mem_tx_buff2		//128
+0x1980 mem_tx_buff3		//128
+0x1a00 mem_tx_buff4		//128
+0x1a80 mem_tx_buff5		//128
+0x1b00 mem_tx_buff6		//128
+0x1b80 mem_tx_buff7		//128
+//end address: 0x1bff
+)
+
+//uart buffer
+(
+0x1800 mem_h5rx_buf//0x400
+0x1bff mem_h5rx_buf_end
+0x1c00 mem_h5tx_buf
+0x1fff mem_h5tx_buf_end
+)
+
+(
+0x4a00 mem_module_rx_buf//0x400
+0x4fff mem_module_rx_buf_end
+0x1c00 mem_module_tx_buf
+0x1fff mem_module_tx_buf_end
+)
+
+(
+0x1800 mem_ir_record
+0x1c      mem_ir_record_max
+)
+
+
+0x0469 mem_module_temp_len
+	(
+		110  DM_REFCOM_BUFF_LEN
+		20 DM_LE_BUFF_LEN
+	)
+	(
+		0x200 UART_AIR_CONTROL_THRESHOLD
+		0x150 UART_RX_CONTROL_THRESHOLD
+	)
+
+
+
+
+0x046b mem_init_cnt
+//dpi eeprom addr
+(
+198 mouse_dpi_eeprom_addr
+)
+(
+199 mouse_last_device
+)
+
+//Mouse sensor ID1
+(
+0x30 P3204_ID
+0x31 P3065_ID
+)
+//Mouse sensor ID2
+(
+0x00 P3212_ID2
+0x70 P3065_ID2
+)
+
+//Mouse Button
+(
+0x01 MOUSE_BUTTON_L
+0x02 MOUSE_BUTTON_R
+0x03 MOUSE_BUTTON_LR
+0x04 MOUSE_BUTTON_M
+0x05 MOUSE_BUTTON_LM
+0x06 MOUSE_BUTTON_RM
+0x07 MOUSE_BUTTON_LRM
+)
+
+//mem_24g_rx_packet_flag
+(
+0 FLAG_24G_NOT_RX_PACKET
+1 FLAG_24G_RX_PACKET
+)
+
+//mem_24g_mode
+(
+0 MODE_24G_OFF
+1 MODE_24G_TX
+2 MODE_24G_RX
+3 MODE_24G_PAIRING
+
+)
+// device_led_gpio
+(
+0X05 DEVICE1_LED_GPIO
+0X08 DEVICE2_LED_GPIO
+0X01 DEVICE3_LED_GPIO
+)
+
+//bt mode device number
+(
+0X01 MODE_BT_DEVICE1
+0X02 MODE_BT_DEVICE2
+0X03 MODE_BT_DEVICE3
+0X04 MODE_24G_DEVICE
+)
+
+//mem_24g_pairing_sm
+(
+0 STATE_24G_PAIRING_NULL
+1 STATE_24G_PAIRING_1
+2 STATE_24G_PAIRING_2
+3 STATE_24G_PAIRING_3
+0X11 STATE_24G_PAIRING_1_WAITING_ACK
+0X12 STATE_24G_PAIRING_2_WAITING_ACK
+0X13 STATE_24G_PAIRING_3_WAITING_ACK
+0XFF STATE_24G_PAIRING_SUCCESS
+)
+
+
+//mem_mouse_find_type_value_flag
+(
+0X00 LE_FIND_TYPE_VALUE_HID_BIT
+0X01 LE_FIND_TYPE_VALUE_BATTERY_BIT
+0X02 LE_FIND_TYPE_VALUE_DEVICE_INFO_BIT
+0x03 LE_FIND_TYPE_VALUE_GATT_BIT
+
+)
+
+(
+1 MOUSE_SHUTDOWN
+
+)
+//mem_mouse_flag
+(
+0 MOUSE_CPI_FLAG
+1 MOUSE_SELECT_RECONN_FLAG
+2 MOUSE_CANCEL_RECONN_FLAG
+3 MOUSE_SELECT_BUTTON_CANCEL_RECONN_FLAG
+4 MOUSE_BLE_RECON_FLAG
+)
+
+(
+194 MOUSE_SHUTDOWN_FLAG
+)
+(
+0x00 DPI_BUTTON_STATE_DOWN
+0x01 DPI_BUTTON_STATE_UP
+
+)
+(
+  0x8971 rf_adc_mode
+  0x8972 rf_adc_gc
+  0x8973 rf_adc_ch
+)
+(
+2 MOUSE_ADC_GC
+)
+
+(
+1 ONE_TRADITION_MOUSE
+2 ONE_BLE_MOUSE
+)
+
+
+(
+1 SENSOR_TYPE_A7530
+2 SENSOR_TYPE_P3204
+3 SENSOR_TYPE_P3610
+)
+0x00 PAN_REG_PID_L
+0x01 PAN_REG_PID_H
+0x02 PAN_REG_MOTION_STAUS
+0x03 PAN_REG_DELTA_X
+0x04 PAN_REG_DELTA_Y
+0x05 PAN_REG_OPRATION_MODE
+0x06 PAN_REG_CONFIG
+0x07 PAN_REG_IMAGE_QUALITY
+0x08 PAN_REG_OPRATION_STATE
+0x09 PAN_REG_WRITE_PROTECT
+0x0A PAN_REG_SLEEP_1
+0x0B PAN_REG_ENTER_TIME
+0x0C PAN_REG_SLEEP_2
+0x0D PAN_REG_IMAGE_THRESHOLD
+0x0E PAN_REG_IMAGE_RECGNITION
+
+7 pan_bit_motion
+
+(
+1000 MOUSE_LPM_CLR_LOCK_TIME
+0x06 MOUSE_DPI_ADDRESS
+0x05 MOUSE_P3610_DPI_REG
+0x02 MOUSE_DPI_MAX_DECR
+)
+(
+80 MOUSE_SEND_BLANK_TIMER
+)
+
+
+//mem_mouse_mode_state
+(
+0x00 MOUSE_MODE_STATE_IDLE
+0x01 MOUSE_MODE_STATE_BT
+0x02 MOUSE_MODE_STATE_BLE
+)
+//ui led blink
+(
+200 FLAG_LED_RECONNECT_BLINK
+1000 FLAG_LED_BLINK_DISCOVERY
+)
+//rf param
+(
+0xFF RF_2M_IF 
+0x7F RF_1M_IF
+0x00 RF_0M_IF
+)
+(
+0 FLAG_ADC_CHANNEL1_GPIO5
+10 FLAG_MOUSE_CHECK_VDD_COUNT
+1 FLAG_VDD_LOW
+0 FLAG_VDD_NOT_LOW
+
+191 EEPROM_ADDR_VDD_FLAG
+193 EEPROM_ADDR_VDD_LOW_FLAG
+)
+
+//sniff param
+(
+0x000c   SNIFF_INTERVAL_7500US
+0x000e   SNIFF_INTERVAL_8750US
+0x0010	SNIFF_INTERVAL_10MS
+)
+
+//low vdd
+(
+33 FLAG_LOW_VDD_MULTIPLIER
+31 FLAG_LOW_VDD_DIVISOR
+)
+
+
+
+(
+	  0 patch00_0
+	  1 patch00_1
+	  2 patch00_2
+	  3 patch00_3
+	  4 patch00_4
+	  5 patch00_5
+	  6 patch00_6
+	  7 patch00_7
+	  8 patch01_0
+	  9 patch01_1
+	 10 patch01_2
+	 11 patch01_3
+	 12 patch01_4
+	 13 patch01_5
+	 14 patch01_6
+	 15 patch01_7
+	 16 patch02_0
+	 17 patch02_1
+	 18 patch02_2
+	 19 patch02_3
+	 20 patch02_4
+	 21 patch02_5
+	 22 patch02_6
+	 23 patch02_7
+	 24 patch03_0
+	 25 patch03_1
+	 26 patch03_2
+	 27 patch03_3
+	 28 patch03_4
+	 29 patch03_5
+	 30 patch03_6
+	 31 patch03_7
+	 32 patch04_0
+	 33 patch04_1
+	 34 patch04_2
+	 35 patch04_3
+	 36 patch04_4
+	 37 patch04_5
+	 38 patch04_6
+	 39 patch04_7
+	 40 patch05_0
+	 41 patch05_1
+	 42 patch05_2
+	 43 patch05_3
+	 44 patch05_4
+	 45 patch05_5
+	 46 patch05_6
+	 47 patch05_7
+	 48 patch06_0
+	 49 patch06_1
+	 50 patch06_2
+	 51 patch06_3
+	 52 patch06_4
+	 53 patch06_5
+	 54 patch06_6
+	 55 patch06_7
+	 56 patch07_0
+	 57 patch07_1
+	 58 patch07_2
+	 59 patch07_3
+	 60 patch07_4
+	 61 patch07_5
+	 62 patch07_6
+	 63 patch07_7
+	 64 patch08_0
+	 65 patch08_1
+	 66 patch08_2
+	 67 patch08_3
+	 68 patch08_4
+	 69 patch08_5
+	 70 patch08_6
+	 71 patch08_7
+	 72 patch09_0
+	 73 patch09_1
+	 74 patch09_2
+	 75 patch09_3
+	 76 patch09_4
+	 77 patch09_5
+	 78 patch09_6
+	 79 patch09_7
+	 80 patch0a_0
+	 81 patch0a_1
+	 82 patch0a_2
+	 83 patch0a_3
+	 84 patch0a_4
+	 85 patch0a_5
+	 86 patch0a_6
+	 87 patch0a_7
+	 88 patch0b_0
+	 89 patch0b_1
+	 90 patch0b_2
+	 91 patch0b_3
+	 92 patch0b_4
+	 93 patch0b_5
+	 94 patch0b_6
+	 95 patch0b_7
+	 96 patch0c_0
+	 97 patch0c_1
+	 98 patch0c_2
+	 99 patch0c_3
+	100 patch0c_4
+	101 patch0c_5
+	102 patch0c_6
+	103 patch0c_7
+	104 patch0d_0
+	105 patch0d_1
+	106 patch0d_2
+	107 patch0d_3
+	108 patch0d_4
+	109 patch0d_5
+	110 patch0d_6
+	111 patch0d_7
+	112 patch0e_0
+	113 patch0e_1
+	114 patch0e_2
+	115 patch0e_3
+	116 patch0e_4
+	117 patch0e_5
+	118 patch0e_6
+	119 patch0e_7
+	120 patch0f_0
+	121 patch0f_1
+	122 patch0f_2
+	123 patch0f_3
+	124 patch0f_4
+	125 patch0f_5
+	126 patch0f_6
+	127 patch0f_7
+	128 patch10_0
+	129 patch10_1
+	130 patch10_2
+	131 patch10_3
+	132 patch10_4
+	133 patch10_5
+	134 patch10_6
+	135 patch10_7
+	136 patch11_0
+	137 patch11_1
+	138 patch11_2
+	139 patch11_3
+	140 patch11_4
+	141 patch11_5
+	142 patch11_6
+	143 patch11_7
+	144 patch12_0
+	145 patch12_1
+	146 patch12_2
+	147 patch12_3
+	148 patch12_4
+	149 patch12_5
+	150 patch12_6
+	151 patch12_7
+	152 patch13_0
+	153 patch13_1
+	154 patch13_2
+	155 patch13_3
+	156 patch13_4
+	157 patch13_5
+	158 patch13_6
+	159 patch13_7
+	160 patch14_0
+	161 patch14_1
+	162 patch14_2
+	163 patch14_3
+	164 patch14_4
+	165 patch14_5
+	166 patch14_6
+	167 patch14_7
+	168 patch15_0
+	169 patch15_1
+	170 patch15_2
+	171 patch15_3
+	172 patch15_4
+	173 patch15_5
+	174 patch15_6
+	175 patch15_7
+	176 patch16_0
+	177 patch16_1
+	178 patch16_2
+	179 patch16_3
+	180 patch16_4
+	181 patch16_5
+	182 patch16_6
+	183 patch16_7
+	184 patch17_0
+	185 patch17_1
+	186 patch17_2
+	187 patch17_3
+	188 patch17_4
+	189 patch17_5
+	190 patch17_6
+	191 patch17_7
+	192 patch18_0
+	193 patch18_1
+	194 patch18_2
+	195 patch18_3
+	196 patch18_4
+	197 patch18_5
+	198 patch18_6
+	199 patch18_7
+	200 patch19_0
+	201 patch19_1
+	202 patch19_2
+	203 patch19_3
+	204 patch19_4
+	205 patch19_5
+	206 patch19_6
+	207 patch19_7
+	208 patch1a_0
+	209 patch1a_1
+	210 patch1a_2
+	211 patch1a_3
+	212 patch1a_4
+	213 patch1a_5
+	214 patch1a_6
+	215 patch1a_7
+	216 patch1b_0
+	217 patch1b_1
+	218 patch1b_2
+	219 patch1b_3
+	220 patch1b_4
+	221 patch1b_5
+	222 patch1b_6
+	223 patch1b_7
+	224 patch1c_0
+	225 patch1c_1
+	226 patch1c_2
+	227 patch1c_3
+	228 patch1c_4
+	229 patch1c_5
+	230 patch1c_6
+	231 patch1c_7
+	232 patch1d_0
+	233 patch1d_1
+	234 patch1d_2
+	235 patch1d_3
+	236 patch1d_4
+	237 patch1d_5
+	238 patch1d_6
+	239 patch1d_7
+	240 patch1e_0
+	241 patch1e_1
+	242 patch1e_2
+	243 patch1e_3
+	244 patch1e_4
+	245 patch1e_5
+	246 patch1e_6
+	247 patch1e_7
+	248 patch1f_0
+	249 patch1f_1
+	250 patch1f_2
+	251 patch1f_3
+	252 patch1f_4
+	253 patch1f_5
+	254 patch1f_6
+	255 patch1f_7
+	  0 patch20_0
+	  1 patch20_1
+	  2 patch20_2
+	  3 patch20_3
+	  4 patch20_4
+	  5 patch20_5
+	  6 patch20_6
+	  7 patch20_7
+	  8 patch21_0
+	  9 patch21_1
+	 10 patch21_2
+	 11 patch21_3
+	 12 patch21_4
+	 13 patch21_5
+	 14 patch21_6
+	 15 patch21_7
+	 16 patch22_0
+	 17 patch22_1
+	 18 patch22_2
+	 19 patch22_3
+	 20 patch22_4
+	 21 patch22_5
+	 22 patch22_6
+	 23 patch22_7
+	 24 patch23_0
+	 25 patch23_1
+	 26 patch23_2
+	 27 patch23_3
+	 28 patch23_4
+	 29 patch23_5
+	 30 patch23_6
+	 31 patch23_7
+	 32 patch24_0
+	 33 patch24_1
+	 34 patch24_2
+	 35 patch24_3
+	 36 patch24_4
+	 37 patch24_5
+	 38 patch24_6
+	 39 patch24_7
+	 40 patch25_0
+	 41 patch25_1
+	 42 patch25_2
+	 43 patch25_3
+	 44 patch25_4
+	 45 patch25_5
+	 46 patch25_6
+	 47 patch25_7
+	 48 patch26_0
+	 49 patch26_1
+	 50 patch26_2
+	 51 patch26_3
+	 52 patch26_4
+	 53 patch26_5
+	 54 patch26_6
+	 55 patch26_7
+	 56 patch27_0
+	 57 patch27_1
+	 58 patch27_2
+	 59 patch27_3
+	 60 patch27_4
+	 61 patch27_5
+	 62 patch27_6
+	 63 patch27_7
+	 64 patch28_0
+	 65 patch28_1
+	 66 patch28_2
+	 67 patch28_3
+	 68 patch28_4
+	 69 patch28_5
+	 70 patch28_6
+	 71 patch28_7
+	 72 patch29_0
+	 73 patch29_1
+	 74 patch29_2
+	 75 patch29_3
+	 76 patch29_4
+	 77 patch29_5
+	 78 patch29_6
+	 79 patch29_7
+	 80 patch2a_0
+	 81 patch2a_1
+	 82 patch2a_2
+	 83 patch2a_3
+	 84 patch2a_4
+	 85 patch2a_5
+	 86 patch2a_6
+	 87 patch2a_7
+	 88 patch2b_0
+	 89 patch2b_1
+	 90 patch2b_2
+	 91 patch2b_3
+	 92 patch2b_4
+	 93 patch2b_5
+	 94 patch2b_6
+	 95 patch2b_7
+	 96 patch2c_0
+	 97 patch2c_1
+	 98 patch2c_2
+	 99 patch2c_3
+	100 patch2c_4
+	101 patch2c_5
+	102 patch2c_6
+	103 patch2c_7
+	104 patch2d_0
+	105 patch2d_1
+	106 patch2d_2
+	107 patch2d_3
+	108 patch2d_4
+	109 patch2d_5
+	110 patch2d_6
+	111 patch2d_7
+	112 patch2e_0
+	113 patch2e_1
+	114 patch2e_2
+	115 patch2e_3
+	116 patch2e_4
+	117 patch2e_5
+	118 patch2e_6
+	119 patch2e_7
+	120 patch2f_0
+	121 patch2f_1
+	122 patch2f_2
+	123 patch2f_3
+	124 patch2f_4
+	125 patch2f_5
+	126 patch2f_6
+	127 patch2f_7
+	128 patch30_0
+	129 patch30_1
+	130 patch30_2
+	131 patch30_3
+	132 patch30_4
+	133 patch30_5
+	134 patch30_6
+	135 patch30_7
+	136 patch31_0
+	137 patch31_1
+	138 patch31_2
+	139 patch31_3
+	140 patch31_4
+	141 patch31_5
+	142 patch31_6
+	143 patch31_7
+	144 patch32_0
+	145 patch32_1
+	146 patch32_2
+	147 patch32_3
+	148 patch32_4
+	149 patch32_5
+	150 patch32_6
+	151 patch32_7
+	152 patch33_0
+	153 patch33_1
+	154 patch33_2
+	155 patch33_3
+	156 patch33_4
+	157 patch33_5
+	158 patch33_6
+	159 patch33_7
+	160 patch34_0
+	161 patch34_1
+	162 patch34_2
+	163 patch34_3
+	164 patch34_4
+	165 patch34_5
+	166 patch34_6
+	167 patch34_7
+	168 patch35_0
+	169 patch35_1
+	170 patch35_2
+	171 patch35_3
+	172 patch35_4
+	173 patch35_5
+	174 patch35_6
+	175 patch35_7
+	176 patch36_0
+	177 patch36_1
+	178 patch36_2
+	179 patch36_3
+	180 patch36_4
+	181 patch36_5
+	182 patch36_6
+	183 patch36_7
+	184 patch37_0
+	185 patch37_1
+	186 patch37_2
+	187 patch37_3
+	188 patch37_4
+	189 patch37_5
+	190 patch37_6
+	191 patch37_7
+	192 patch38_0
+	193 patch38_1
+	194 patch38_2
+	195 patch38_3
+	196 patch38_4
+	197 patch38_5
+	198 patch38_6
+	199 patch38_7
+	200 patch39_0
+	201 patch39_1
+	202 patch39_2
+	203 patch39_3
+	204 patch39_4
+	205 patch39_5
+	206 patch39_6
+	207 patch39_7
+	208 patch3a_0
+	209 patch3a_1
+	210 patch3a_2
+	211 patch3a_3
+	212 patch3a_4
+	213 patch3a_5
+	214 patch3a_6
+	215 patch3a_7
+	216 patch3b_0
+	217 patch3b_1
+	218 patch3b_2
+	219 patch3b_3
+	220 patch3b_4
+	221 patch3b_5
+	222 patch3b_6
+	223 patch3b_7
+	224 patch3c_0
+	225 patch3c_1
+	226 patch3c_2
+	227 patch3c_3
+	228 patch3c_4
+	229 patch3c_5
+	230 patch3c_6
+	231 patch3c_7
+	232 patch3d_0
+	233 patch3d_1
+	234 patch3d_2
+	235 patch3d_3
+	236 patch3d_4
+	237 patch3d_5
+	238 patch3d_6
+	239 patch3d_7
+	240 patch3e_0
+	241 patch3e_1
+	242 patch3e_2
+	243 patch3e_3
+	244 patch3e_4
+	245 patch3e_5
+	246 patch3e_6
+	247 patch3e_7
+	248 patch3f_0
+	249 patch3f_1
+	250 patch3f_2
+	251 patch3f_3
+	252 patch3f_4
+	253 patch3f_5
+	254 patch3f_6
+	255 patch3f_7
+
+)
+//ota
+(
+0x80 cmd_read_eep
+0x81 cmd_write_eep
+0x82 cmd_crc_eep
+0x83 cmd_size_eep
+)
+
+//prcp opcode
+(
+
+0x00 COMMON_RES
+0x01 READ_REGISTERS_REQ
+0x02 READ_REGISTERS_RES
+0x03 WRITE_REGISTERS_REQ
+0x04 I2C_CONFIG_REQ
+0x05 I2C_READ_REQ
+0x06 I2C_READ_RES
+0x07 I2C_WRITE_REQ
+0x08 SPI_CONFIG_REQ
+0x09 SPI_READ_REQ
+0x0a SPI_READ_RES
+0x0b SPI_WRITE_REQ
+0x0c PWM_CONFIG_REQ
+0x0d PWM_WRITE_REQ
+0x0e GPIO_CONFIG_REQ
+0x0f GPIO_READ_REQ
+0x10 GPIO_READ_RES
+0x11 GPIO_WRITE_REQ
+0x12 OTA_WRITE_REQ
+0X13 OTA_END_CMD
+
+)
+(
+1 PRCP_LE
+2 PRCP_SSP
+0x14 PRCP_TX_LE 
+0x17 PRCP_RX_LE
+20 PRCP_TX_DATA_LEN
+)
+0x046d mem_prcp_data
+0x0481 mem_prcp
+0x0482 mem_prcp_tx_len
+0x0483 rx_buf_data_ptr
+
+(
+  0x8000 core_chipid
+  0x8003 core_kick
+  0x8005 core_lpm_wr
+  0x8006 core_misc_ctrl
+  0x8007 core_otp_rdata
+  0x8009 core_pcmoutfifo
+  0x8010 core_reset
+  0x8011 core_encrypt
+  0x8015 core_uart_txd
+  0x8022 core_ucode_hi
+  0x8023 core_ucode_ctrl
+  0x8024 core_ucode_low
+  0x8025 core_ucode_data
+  0x8040 core_halfslot
+  0x8042 core_clksel
+  0x8043 core_uart_clksel
+  0x8043 core_config 
+  0x8044 core_xtal_stable_time
+  0x8045 core_otp_addr
+  0x8046 core_otp_din
+  0x8047 core_otp_ctrl
+  0x8048 core_otpd_addr
+  0x804a core_otpd_len
+  0x804b core_otpd_ctrl
+  0x804c core_lpm_reg
+  0x804f core_lpm_isogate
+  0x8050 core_clkoff
+  0x8052 core_uart_baud
+  0x8054 core_uart_rsaddr
+  0x8056 core_uart_readdr
+  0x8058 core_uart_rrptr
+  0x805a core_uart_tsaddr
+  0x805c core_uart_teaddr
+  0x805e core_uart_twptr
+  0x8060 core_uart_trptrp
+  0x8062 core_uart_ctrl
+  0x8063 core_kscn_ksctrl
+  0x8064 core_kscn_rctc
+  0x8065 core_kscn_scancycle_timer_l
+  0x8066 core_kscn_scancycle_timer_h
+  0x8067 core_kscn_m_debounce          
+  0x8068 core_kscn_modkey
+  0x806f core_kscn_rowmask
+  0x8070 core_gpio_oe0
+  0x8071 core_gpio_oe1
+  0x8072 core_gpio_oe2
+  0x8073 core_gpio_oe3
+  0x8074 core_gpio_out0
+  0x8075 core_gpio_out1
+  0x8076 core_gpio_out2
+  0x8077 core_gpio_out3
+  0x8078 core_gpio_pu0
+  0x8079 core_gpio_pu1
+  0x807a core_gpio_pu2
+  0x807b core_gpio_pu3
+  0x807c core_gpio_pd0
+  0x807d core_gpio_pd1
+  0x807e core_gpio_pd2
+  0x807f core_gpio_pd3
+  0x8080 core_gpio_sel
+  0x8081 core_gpio_sel1
+  0x8082 core_gpio_sel2
+  0x8083 core_gpio_key0
+  0x8084 core_gpio_key1
+  0x8085 core_gpio_key2
+  0x8086 core_spid_ctrl
+  0x8087 core_spid_delay
+  0x8088 core_spid_txlen
+  0x808a core_spid_txaddr
+  0x808c core_spid_rxaddr
+  0x808e core_spid_rxlen
+  0x8090 core_iicd_ctrl
+  0x8091 core_iicd_scl_low
+  0x8092 core_iicd_scl_high
+  0x8093 core_iicd_start_setup
+  0x8094 core_iicd_start_hold
+  0x8095 core_iicd_stop_setup
+  0x8096 core_iicd_data_setup
+  0x8097 core_iicd_data_hold
+  0x8098 core_iicd_txlen
+  0x809a core_iicd_txaddr
+  0x809c core_iicd_rxaddr
+  0x809e core_iicd_rxlen
+  0x80a0 core_pwm_pcnt0
+  0x80a2 core_pwm_ncnt0
+  0x80a4 core_pwm_pcnt1
+  0x80a6 core_pwm_ncnt1
+  0x80b0 core_enc_ctrl
+  0x80b1 core_cvsd_ctrl
+  0x80b2 core_codec_ctrl
+  0x80b3 core_dec_ctrl
+  0x80b4 core_bist_ctrl
+
+
+
+  
+  0x8108 core_misc_status
+  0x8109 core_qdec_cntx
+  0x810a core_qdec_cnty
+  0x810b core_qdec_cntz
+  0x810c core_uart_status
+  0x810d core_uart_rbaud
+  0x810e core_uart_txitems
+  0x8110 core_uart_trptr
+  0x8112 core_uart_rxitems
+  0x8114 core_uart_rdptr
+  0x8116 core_uart_rwptr
+  0x8119 core_kscn_kstat
+  0x811a core_kscn_event
+  0x811b core_kscn_event_num
+  0x811c core_gpio_in
+  0x811d core_gpio_in1
+  0x8124 core_current_otp_addr
+  0x8126 core_otpd_remain
+  0x8128 core_spid_remain
+  0x812a core_iicd_remain
+  0x812c core_dma_status
+  0x812d core_perf_status
+  0x812e core_adc_in
+  0x8134 core_pcminfifo
+  0x8135 core_pcminfifo_remain
+  0x8136 core_pcmoutfifo_remain
+  0x8138 core_lpm_ctrl
+  0x813c core_lpm_xtalcnt
+  0x813d core_lpm_buckcnt
+  0x813e core_lpm_ldocnt
+  0x813f core_lpm_latch
+  0x8140 core_gpio_wakeup_low
+  0x8144 core_gpio_wakeup_high
+  0x8149 core_clk_counter
+  0x8150 core_adc_sum
+// dummy regs  
+
+  0x8203 core_ice_ctrl
+  0x8204 core_ice_status
+  0x8205 core_ice_break0
+  0x8207 core_ice_break1
+  
+  0x8280 core_docd_ctrl
+  0x8288 core_docd_paddr
+  0x828a core_docd_pdata
+
+  0x8300 iic_prer_low		
+  0x8301 iic_slave_addr	
+  0x8302 iic_ctr					
+  0x8303 iic_cr					
+  0x8304 iic_rxr					
+  0x8305 iic_txr					
+  0x8306 iic_sr					
+  0x8307 iic_fifo				
+
+  0x8400   mem_b_box          /* entire bank */
+  0x8500   mem_e_box          /* entire bank */
+  0x8600   mem_l_box          /* entire bank */
+
+  0x8700 memk
+
+  0x8900 rfen_rx
+  0x8901 rfen_tx
+  0x8902 rfen_mdm
+  0x8903 rfen_sn
+  0x8904 rfen_msc
+  0x8905 rfen_ck
+  0x8906 rfen_adc
+  0x8907 rfen_mod
+  0x8912 rf_agc_ctrl
+  0x8914 rfen_ulp
+
+  0x894b rf_rx_vctrl_reg1
+  0x894c rf_rx_vctrl_reg2
+  0x894d rf_rx_lna_ctrim
+
+  0x8950 rf_bpf_ctrim
+  0x8951 rf_bpf_ib
+  0x8952 rf_adc_rccal
+  0x8952 rf_rccal_ctrl
+  0x8953 rf_rccal_sel
+  0x8955 rf_tx_pa
+  0x895f rf_pll_rstn
+  0x8964 rf_sdm_en
+  0x8960 rf_pll_intg
+  0x8961 rf_pll_frac
+  0x8963 rf_pll_frachi
+  0x896c rf_afc_cap
+  0x8967 rf_clkpll_bias
+  0x896f rf_clkpll_en
+  0x8968 rf_clkpll_int
+  0x8969 rf_clkpll_frac
+  0x896d rf_balun_ctrim
+  0x8972 rf_saradc_ctrl
+  0x8973 rfen_chgpump
+  0x8980 rf_rccal_result
+  0x8981 rf_afc_d2a
+  0x8982 rf_rssi
+
+
+0x8c00 core_usb_config		
+0x8c01 core_usb_int_mask	
+0x8c10 core_usb_trig	
+0x8c11 core_usb_stall		
+0x8c12 core_usb_clear		
+0x8c18 core_usb_ep
+0x8c18 core_usb_dfifo0 
+0x8c19 core_usb_dfifo1  
+0x8c1a core_usb_dfifo2 
+0x8c20 core_usb_ep_len
+0x8c26 core_usb_status		
+0x8c27 core_usb_fifo_empty
+0x8c28 core_usb_fifo_full
+
+
+4 rx_freq_offset
+2 tx_freq_offset
+
+/* bit difinitions */
+  4 whiteoff_bit
+  6 clksel_rc
+  5 clksel_dpll
+  4 clksel_xtal
+  5 adc_rccal
+  0 bpf_rccal
+  1 demod_clkoff
+
+(
+  7 cold_wake
+  3 gpio_latch
+  4 enable_retmem
+  0xef isogate_mask
+  0xe0 cs_mask
+)
+
+// misc ctrl
+(
+  0x01 otpd_start
+  0x02 spid_start
+  0x04 iicd_start
+  0x08 lock_otp
+  0x10 x_sethi
+  0x20 y_sethi
+  0x40 z_sethi
+  0x80 ccnt_start
+)
+// dma status bit
+(
+  0 otpd_crcok
+  1 otpd_done
+  2 spid_crcok
+  3 spid_done
+  4 iicd_crcok
+  5 iicd_done
+)
+
+0x8b uart_ctrl_default //BCSP
+0x81 uart_ctrl_h4 //H4
+0x81 uart_ctrl_normal
+0x81 uart_ctrl_57600
+2 uart_baud_len
+0x01 uartclk_dpll
+0x1a0 uart_baud_115200
+0xbb uart_baud_256000
+0x340 uart_baud_57600
+0x2dc6c00 uart_clk
+
+//core_clkoff
+(
+	0 CLOCK_OFF_AUTH_ROM
+	1 CLOCK_OFF_UC_ROM
+	2 CLOCK_OFF_DEBUG_UART
+	3 CLOCK_OFF_SCHED_RAM
+	4 CLOCK_OFF_TRANCE_FIFO
+	5 CLOCK_OFF_CORDIC
+	6 CLOCK_OFF_OTPD
+	7 CLOCK_OFF_I2C
+	8 CLICK_OFF_8051
+	9 CLOCK_OFF_KEYSCAN
+	0x0a CLOCK_OFF_USB
+	0x0b CLOCK_OFF_QDECODER
+	0x0c CLOCK_OFF_SPI
+	0x0d CLOCK_OFF_PWM
+	0x0e CLOCK_OFF_CODEC
+	0x0f CLOCK_OFF_UART
+)
+
+
+/*****************************************************************************/
+/* RCS HEADER -- DO NOT ERASE                                                */
+/* $Author: Administrator $                                                           */
+/* $Id: bt_rfcomm_format.upper,v 1.1 2009-09-28 04:06:17 Administrator Exp $ */
+/* Orisil Technology                                                      */
+/*****************************************************************************/
+
+/**********/
+/* memory */
+/**********/
+
+0x0485 memRemoteRPNBitRate
+0x0486 memRemotePRNDataBits
+0x0487 memRemotePRNStopBit
+0x0488 memRemotePRNParity
+0x0489 memRemotePRNFlowControl
+0x048a memRemotePRNXon
+0x048b memRemotePRNXoff
+0x048c mem_mod2div_temp
+0x048f mem_contw_temp
+0x0491 mem_attrib_list
+0x0493 mem_current_adss
+0x0494 mem_current_channel
+0x0495 mem_current_frame_type
+0x0496 mem_current_fcs
+0x0497 mem_current_length
+0x0499 mem_rfcomm_uih_payload_ptr
+0x049b mem_uih_cmd_type
+0x049c mem_uih_length
+0x049e mem_param_payload_ptr
+0x04a0 mem_ms_param
+0x04a1 mem_pn_credit_flow_type_info
+0x04a2 mem_pn_priority
+0x04a3 mem_pn_acknowledg_timer
+0x04a4 mem_pn_max_retrans
+0x04a5 mem_rfcomm_send_adss
+0x04a6 mem_rfcomm_send_frame_type
+0x04a7 mem_rfcomm_send_fcs
+0x04a8 mem_rfcomm_send_offset
+
+
+/************************************************************************/
+  
+
+ 
+/************/
+/* constant */
+/************/
+
+/* RFCOMM state for Headset (memRFCOMM_State) */ 
+  (
+    0 RFCOMM_IDLE           /* before the responsor HS receive SABM            */
+    1 RFCOMM_W4_DLCI0_OPEN
+    2 RFCOMM_W4_DLCI0_CLOSE
+    3 RFCOMM_START_DLCI0    /* After respond SABM frame (DLCI=0)               */
+    4 RFCOMM_W4_DLCI_OPEN
+    5 RFCOMM_W4_DLCI_CLOSE
+    6 RFCOMM_DLCI_OPENED    
+   
+  )
+  
+/* RFCOMM timer constants   */
+  (
+    1000  RFCOMM_T1         /* Used by SABM and DISC frames,100*20ms = 20s     */     
+    1000  RFCOMM_T2         /* Used by commands send in UIH on DLCI0,          */
+    300   RFCOMM_T3_RINGON  /* 6s for ring fade time                           */
+  
+  )
+
+/* Command Type */
+  (
+    0x3F RSP_RX_SABM        /*responsor expect SABM from initiator             */
+    0x3F INI_TX_SABM
+	
+    0x73 RSP_TX_UA          /*responsor send out UA command                    */
+    0x73 UA_WFBIT_SET	    /* UA control field with F bit set                 */
+	
+    0xEF RSP_RX_UIH         /*responsor expect UIH from initiator              */
+
+    0xEF RSP_TX_UIH         /*responsor send UIH to initiator                  */
+     
+    0x1F RSP_TX_DM          /*responsor send DM to initiator                   */
+    0x1F DM_WFBIT_SET       /* DM control field with F bit set                 */
+    0x0F DM_WFBIT_CLEAR     /* DM control field with F bit clear               */
+
+    0x53 RSP_RX_DISC        /*responsor expect DISC from initiator             */
+    0x53 INI_TX_DISC	    /*initiator send DISC control type command         */
+     
+    0xFF RSP_RX_UIH_WDATA   /*UIH data with credit flow control info           */
+    
+    
+  )
+
+/* Multiplexor commands and responses frames */
+  (
+    0x83 PN_COMMAND           /* Bit 0 EA C/R Type = 000001         */
+    0x81 PN_RESPONSOR         /* Bit 0 EA C/R Type = 000001         */
+    
+    0xE3 MSC_COMMAND          /* Bit 0 EA C/R Type = 000111         */
+    0xE1 MSC_RESPONSOR
+ 
+    0x13 NSC_COMMAND          /* Bit 0 EA C/R Type = 001000         */
+    0x11 NSC_RESPONSOR        /* Bit 0 EA C/R Type = 001000         */
+
+    0x23 TEST_COMMAND         /* Bit 0 EA C/R Type = 000111         */
+    0x21 TEST_RESPONSOR 
+    
+    0x93 RPN_COMMAND          /* Bit 0 EA C/R Type = 001001         */
+    0x91 RPN_RESPONSOR 
+    
+    0x53 RLS_COMMAND          /* Bit 0 EA C/R Type = 001010         */
+    0x51 RLS_RESPONSOR 
+
+    0xA3 FCON_COMMAND         /* Bit 0 EA C/R Type = 000101         */
+    0xA1 FCON_RESPONSOR 
+    
+    0x63 FCOFF_COMMAND        /* Bit 0 EA C/R Type = 000110         */
+    0x61 FCOFF_RESPONSOR 
+    	
+    0x03 RLS_OVERRUN
+    0x05 RLS_PARITY_ERROR
+    0x09 RLS_FRAMING_ERROR
+  )
+
+/* memLocalCredit */
+  (
+    0x01 RFCOMM_CREDIT
+  )
+
+  (
+  	0x007f RFCOMM_MAX_FRAME_SIZE
+  )
+
+/* UIH received Data length */
+  (
+    0  LENGTH_ZERO
+    
+    6  LENGTH_OK
+    7  LENGTH_HOT
+    8  LENGTH_RING
+    9  LENGTH_ERROR
+    9  LENGTH_AGVOL_ONEBYTE
+    10 LENGTH_AGVOL_TWOBYTE
+    10 LENGTH_VOL_ONEBYTE
+    11 LENGTH_VOL_TWOBYTE
+    12 LENGTH_BRSF
+    13 LENGTH_PLUS_CIEV
+    15 LENGTH_INBANDRING
+    14 LENGTH_CIEV_CALL
+    17 LENGTH_CRING
+    20 LENGTH_BRSF_OK
+    24 LENGTH_CIND0
+    28 LENGTH_CIEV_TWO
+    32 LENGTH_CIND_OK
+    59 LENGTH_CIND_OK2
+    100 LENGTH_DISCARD
+  )
+  
+/************/
+/* flags    */
+/************/
+  
+/* memRFCOMM_L2CAP_Interface */
+  (
+    0 RFCOMM_TX_W4BUF_FLAG    /* Wait for Tx buffer empty flag */
+    1 RFCOMM_CLOSE_LINK_FLAG
+  )
+  
+
+    
+/* memRemoteMSC		*/
+  (
+    0 MSC_EA_BIT
+    1 MSC_FC_BIT
+    2 MSC_RTC_BIT
+    3 MSC_RTR_BIT
+    6 MSC_IC_BIT
+    7 MSC_DV_BIT
+  )
+
+/* memRemoteRLS         */
+  (
+    0x0C OVERRUN_ERROR
+    0x0A PARITY_ERROR
+    0x09 FRAMING_RERROR
+  )
+  
+/* memRemoteRPNBitRate  */
+  (
+    0x00 BITS2400
+    0x01 BITS4800
+    0x02 BITS7200
+    0x03 BITS9600
+    0x04 BITS19200
+    0x05 BITS38400
+    0x06 BITS57600
+    0x07 BITS115200
+    0x08 BITS230400
+  )
+  
+/* memRemotePRNDataBits	*/
+  (
+    0x00 DATABITS5
+    0x01 DATABITS6
+    0x02 DATABITS7
+    0x03 DATABITS8
+  )
+  
+/* memRemotePRNStopBit	*/
+  (
+    0    ONESTOP
+    1    ONEHALFSTOP
+  )
+  
+/* memRemotePRNParity   */
+  (
+    0    ODDPARITY
+    1    EVENPARITY
+    2    MARKPARITY
+    3    SPACEPARITY
+    
+    7    PARITY_ENABLE_BIT
+  )
+
+/* RPN bit mask(in)     */
+  (
+     0   BIT_RATE_MASK_BIT
+     1   DATA_BITS_MASK_BIT
+     2   STOP_BITS_MASK_BIT
+     3   PARITY_MASK_BIT
+     4   PARITY_TYPE_MASK_BIT
+     5   XON_CHAR_MASK_BIT
+     6   XOFF_CHAR_MASK_BIT
+  )
+  
+/* RPN bit mask(in) 2    */
+  (
+     0   XON_XOFF_INPUT_MASK_BIT
+     1   XON_XOFF_OUTPUT_MASK_BIT
+     2	 RTR_INPUT_MASK_BIT
+     3   RTR_OUTPUT_MASK_BIT
+     4   RTC_INPUT_MASK_BIT
+     5   RTC_OUTPUT_MASK_BIT
+
+  )
+
+/* memRFCOMM_Request	*/
+  (
+    0 SEND_MSC_CMD_REQ_FLAG
+    1 SEND_AT_CKPD_REQ_FLAG
+    2 SEND_RING_REQ_FLAG
+    3 SEND_SABM_CMD
+  )
+  
+/* memRFCOMM_Misc_Flag  */
+  (
+    0 MSC_CDM_ALREADY_SEND_FLAG
+    1 CREDIT_FLOW_USED_FLAG
+    2 DONT_EMBEDDED_CREDIT_FLAG 
+    3 MSC_EXCHANGE_DONE_FLAG
+    4 FLOW_CONTROL_FCOFF_BIT            /* set when receive FCoff, clear when FCon   */
+  )
+  
+/* memRemoteMSC		*/
+  (
+    1 FLOW_CONTROL_FC_BIT		/* received MSC FC bits                      */
+  
+  )
+/* Address filed        */
+  (
+    0 ADDR_EA_BIT
+    1 ADDR_CR_BIT
+    2 ADDR_D_BIT
+  )
+//should be same as descripted in SDP
+(
+    1 SPP_SLAVE_CHANNEL
+    7 OBEX_SERVER_CHANNEL
+    8 HF_SERVER_CHANNEL 
+    9 HS_SERVER_CHANNEL
+)
+/* memRFCOMM_Flag */
+(
+	0 USING_HF_PROFILE
+	1 USING_HS_PROFILE
+	2 USING_SPP_PROFILE
+)
+/*RFCOMM Frame Type*/
+(
+	0x3f RFCOMM_FRAME_TYPE_SABM
+	0x73 RFCOMM_FRAME_TYPE_UA
+	0xEF RFCOMM_FRAME_TYPE_UIH
+	0xFF RFCOMM_FRAME_TYPE_UIH_CREDITS
+	0x53 RFCOMM_FRAME_TYPE_DISCONN
+)
+/*RFCOMM UIH CMD TYPE*/
+(
+	0x41 UIH_PARAM_NEG_CMD
+	0x40 UIH_PARAM_NEG_RES
+	0x71 UIH_MODEM_STATUS_CMD
+	0x70 UIH_MODEM_STATUS_RES
+	0x49 UIH_PARAM_CMD_REMOVE_PORT
+)
+
+/*bits in rfcomm address*/
+(
+	0 RFCOMM_ADDRESS_EXT_LEN
+	1 RFCOMM_ADDRESS_CR
+	2 RFCOMM_ADDRESS_DERECTION
+
+
+)
+
+	(                                   
+	0 RFCOMM_CHANNEL_STATE_PN_CMD
+	1 RFCOMM_CHANNEL_STATE_PN_RES
+	2 RFCOMM_CHANNEL_STATE_SABM
+	3 RFCOMM_CHANNEL_STATE_UA
+	4 RFCOMM_CHANNEL_STATE_SND_MS_CMD
+	5 RFCOMM_CHANNEL_STATE_RCV_MS_CMD
+	6 RFCOMM_CHANNEL_STATE_SND_MS_RES
+	7 RFCOMM_CHANNEL_STATE_RCV_MS_RES
+	0xff RFCOMM_CHANNEL_SETUP_COMPLETE
+	) 
+
+	/*mem_rfcomm_send_more_pkt*/
+	(
+	1 MORE_PKT_MSC_CMD_HF
+	2 MORE_PKT_MSC_CMD_HS
+	3 MORE_PKT_MSC_CMD_SPP
+	4 MORE_PKT_MSC_CMD_OBEX
+	)
+
+	(
+	127 RFCOMM_MALLOC_SIZE
+	)
+0x04a9 mem_sdp_mem_start
+0x04a9 mem_uuid_search_pat
+0x04ad mem_sdp_continue_byte
+0x04af mem_sdp_pduid
+0x04b0 mem_sdp_transactionid
+0x04b2 mem_sdp_attribute_maxbyte
+0x04b4 mem_sdp_record_maxcnt
+0x04b6 mem_sdp_error_code
+0x04be mem_sdp_record_handle
+0x04c2 mem_sdp_search_failed
+0x04c3 mem_sdp_LACAP_found
+0x04c4 mem_sdp_RFCOMM_found
+0x04c5 mem_handle_list
+0x04dd mem_handle_humber
+0x04de mem_sdp_mem_end
+(
+0 AGORHS_SERVICE
+1 GENAUDIO_SERVICE
+2 HANDSFREE_SERVICE
+)
+
+(
+1 SDP_ERROR_RESPONSE
+2 SDP_SERVICE_SEARCH_REQUEST
+3 SDP_SERVICE_SEARCH_RESPONSE
+4 SDP_SERVICE_ATTRIBUTE_REQUEST
+5 SDP_SERVICE_ATTRIBUTE_RESPONSE
+6 SDP_SERVICE_SEARCH_ATTRIBUTE_REQUEST
+7 SDP_SERVICE_SEARCH_ATTRIBUTE_RESPONSE
+)
+
+(
+0 ATTRIBUTEID_0000
+1 ATTRIBUTEID_0001
+2 ATTRIBUTEID_0004
+3 ATTRIBUTEID_0009
+4 ATTRIBUTEID_0100
+5 ATTRIBUTEID_0302
+6 ATTRIBUTEID_0006
+7 ATTRIBUTEID_0311
+)
+/* mem_sdp_search_profile */
+(
+1	SDP_SS_HEADSET
+2  	SDP_SS_HANDSFREE
+)
+(
+0x06 sdp_pduid_serviceSearchAttrib
+)
+0x2600 sdp_max_amount
+767 SDP_MALLOC_SIZE
+0x6e sdp_tid_spp //any number
+
+ 
+
+0x04de mem_rxbuf
+0x04ef mem_random_number
+0x04ff mem_round_key
+0x050f mem_kinit
+0x051f mem_input_store
+0x052f mem_x
+0x053f mem_y
+0x054e mem_y15
+0x054f mem_pin_length
+0x0550 mem_pin
+0x0560 mem_key_store
+0x0571 mem_key_store_end
+0x0572 memp_ar_key
+0x0574 memp_ar_input
+0x0576 mem_ar_hround
+0x0580 mem_ec_infinite
+0x0581 mem_ec_loopc
+0x0582 memdat
+0x0582 mem_ax
+0x059a mem_ay
+0x05b2 mem_az
+0x05ca mem_bx
+0x05e2 mem_by
+0x05fa mem_bz
+0x0612 mem_cx
+0x062a mem_cy
+0x0641 mem_cy5
+0x0642 mem_cz
+0x065a mem_k
+0x0672 mem_align
+0x0682 mem_tmp1
+0x0682 memahbak
+0x069a mem_tmp5
+0x06a2 memahsave
+0x06b2 mem_tmp2
+0x06c2 memahsave_end
+0x06c2 mem_addr_padding
+0x06c3 mem_addr_value/* 12 bytes     */ 
+0x06ca mem_tmp3
+0x06ca mem_t1
+0x06cf mem_addr_value_end
+0x06d2 mem_addr_iocap_end
+0x06e2 mem_tmp0
+0x06e2 mem_t0
+0x06ea mem_tmp0a
+0x06fa mem_t2
+0x0712 mem_t3
+0x072a mem_t7
+0x0742 mem_p
+0x075a mem_a
+0x0772 mem_b
+0x078a mem_gx
+0x07a2 mem_gy
+0x07ba memh0
+
+
+
+
+
+(
+0 FLAG_SHUTTER_DEFAULT
+1 FLAG_SHUTTER_IPHONEKEY_SEND
+2 FLAG_SHUTTER_ANDROIDKEY_SEND
+)
+
+(
+0 FLAG_SHUTTER_IPHONEKEY_PRESS
+1 FLAG_SHUTTER_ANDROIDKEY_PRESS
+)
+
+(
+1  FLAG_SHUTTER_HID_DISCONN_TIMEOUT
+5 FLAG_SHUTTER_CABLE_UNPLUG_TIMEOUT
+)
+
+(
+1 FLAG_SHUTTER_1KEY
+2 FLAG_SHUTTER_2KEY
+)
+
+(
+0 FLAG_SHUTTER_1KEY_SEND_NULL
+1 FLAG_SHUTTER_1KEY_SEND_STEP1
+2 FLAG_SHUTTER_1KEY_SEND_STEP2
+3 FLAG_SHUTTER_1KEY_SEND_STEP3
+4 FLAG_SHUTTER_1KEY_SEND_STEP4
+)
+
+/* simple pairing page */
+
+0x07da mem_sp_state_start
+0x07da mem_sp_state
+0x07db mem_master_sp_state
+0x07dc mem_sp_flag
+0x07dd mem_master_sp_flag
+0x07de mem_sp_calc
+0x07df mem_sp_dh_ready
+0x07e0 mem_sp_localsm
+0x07e1 mem_pairing_auth
+0x07e2 mem_sp_flag_start
+0x07e2 mem_sp_local_key_send_count
+0x07e3 mem_sp_remote_key_recv_count
+0x07e4 mem_sp_remote_key_invalid
+0x07e5 mem_sp_dhkey_invalid
+0x07e6 mem_sp_iocap_local
+0x07e9 mem_sp_iocap_remote
+0x07ec mem_sp_gkey
+0x07f0 mem_sp_pubkey_remote
+0x07f0 mem_sp_pubkey_remote_x
+0x0808 mem_sp_pubkey_remote_x_end
+0x0808 mem_sp_pubkey_remote_y
+0x0820 mem_sp_dhkey
+0x0838 mem_sp_dhkey_end
+0x0838 mem_sp_random_local
+0x0848 mem_sp_random_local_end
+0x0848 mem_sp_random_remote
+0x0858 mem_sp_random_remote_end
+0x0858 memresult
+0x0858 mem_sp_calc_result
+0x0858 memh
+0x085c memg
+0x0860 memf
+0x0864 meme
+0x0868 mem_sp_calc_result_high
+0x0868 memd
+0x086c memc
+0x0870 memb
+0x0874 mema
+0x0878 mem_sp_check_result
+0x0888 mem_sp_confirm_remote
+0x0898 mem_sp_prarm_stack
+
+/* simple pairing status flag */
+(
+  0x00   SP_FLAG_STANDBY
+  0x01   SP_FLAG_COMMIT
+)
+
+/* simple pairing calc flag */
+(
+  0x00   SP_CALC_STANDBY
+  0x01   SP_CALC_PUBKEY
+  0x02   SP_CALC_DHKEY
+)
+
+/* simple pairing state */
+(
+  0x00   SP_STAT_NULL
+  0x01   SP_STAT_KEY_RECV
+  0x02   SP_STAT_KEY_GENERATE
+  0x03   SP_STAT_KEY_SEND
+  0x04   SP_STAT_COMMIT_CALC
+  0x05   SP_STAT_COMMIT_SEND
+  0x06   SP_STAT_RANDOM_RECV
+  0x07   SP_STAT_RANDOM_SEND
+  0x08   SP_STAT_CONFIRM_RECV
+  0x09   SP_STAT_CONFIRM_CHECK
+  0x0A   SP_STAT_CONFIRM_CALC
+  0x0B   SP_STAT_CONFIRM_SEND
+  0x0C   SP_STAT_LINK_KEY_CALC
+  0x0F   SP_STAT_DONE
+  0x10   SP_STAT_FEATURE_EXT_SEND
+  0x11   SP_STAT_GKEY_CALC
+  /*simple pairing master only*/
+  0x12   SP_MASTER_STAT_START_SKIP
+  0x13   SP_MASTER_STAT_START_DONE
+  0x14   SP_STAT_COMMITMENT_COMPARE
+  0x15   SP_STATE_END
+)
+
+
+/* simple paring invalid flag */
+(
+  0x00   SP_KEY_INVALID
+  0x01   SP_KEY_VALID
+)
+
+/* encapsulated defination for P-192 key */
+(
+  0x01  ENCAPSULATED_MAJOR_TYPE_P192
+  0x01  ENCAPSULATED_MINOR_TYPE_P192
+  0x30  ENCAPSULATED_LEN_P192
+)
+
+/* bluetooth 2.1 support flag */
+(
+  0x00  SIMPLE_PAIRING_ENABLE
+  0x01  ENCRYPTION_PAUSE_ENABLE
+  0x02  EXTENDED_INQUIRY_RESPOSE_ENABLE
+  0x03  SNIFF_SUBRATING_ENABLE
+)
+
+/*mem_sp_localsm*/
+(
+  0x00 DEFAULT_STATEMACHINE
+  0x01 LOCAL_STATEMACHINE
+)
+
+(
+ 0x00 DEFALT_PAIRING_AUTH
+ 0x01 PAIRING_AUTH
+)
+  
+/*****************************************************************************/
+/* RCS HEADER -- DO NOT ERASE                                                */
+/* $Author: Administrator $                                                           */
+/* $Id: bt_ui_format.upper,v 1.1 2009-09-28 04:06:17 Administrator Exp $     */
+/************************************************************************/
+
+
+	/* ========= memory ============== */
+0x08a8 mem_UI_data_txbuff_length
+0x08aa mem_ipc_skip_continue_proc
+0x08ab mem_ui_timer_temp//length 4
+0x08ab mem_ipc_rega_temp
+
+/************/
+/* constant */
+/************/
+
+//mem_ui_state_map
+(
+0 UI_STATE_BT_CONNECTED
+1 UI_STATE_BT_SETUP_COMPLETE
+2 UI_STATE_BT_HID_CONN
+3 UI_STATE_BT_HID_HANDSHAKE
+4 UI_STATE_BT_SPP_CONN
+5 UI_STATE_BT_SNIFF
+6 UI_STATE_BT_DISCOVERY
+7 UI_STATE_BT_RECONNECT
+8 UI_STATE_BT_SLAVE_ROLE
+9 UI_STATE_BLE_CONNECTED
+10 UI_STATE_BLE_WRITE_RCV
+11 UI_STATE_BLE_ADV
+12 UI_STATE_BTN_DOWN
+13 UI_STATE_LED_BLINK
+14 UI_STATE_LED_ON
+)
+
+/* UI state for Headset (memui_HS_State) */ 
+   (
+    0 UI_HEADSET_DISCONNECT
+    1 UI_HEADSET_IDLE                   /* before the responsor HS receive SABM      */
+    2 UI_HEADSET_W4CONNECT
+    3 UI_HEADSET_RINGING
+    4 UI_HEADSET_CONNECTED
+    5 UI_HEADSET_PARING
+  )
+/* memui_BB_State */
+(
+  0 UI_BB_OFF
+  1 UI_BB_IDLE
+  2 UI_BB_DISCOVERY
+  3 UI_BB_CONNECTED_ACTIVE_NO_SCO
+  4 UI_BB_CONNECTED_ACTIVE_WITH_SCO
+  5 UI_BB_CONNECTED_ACTIVE_WAIT_SNIFF
+  6 UI_BB_CONNECTED_SNIFF
+  7 UI_BB_RECONNECT
+  8 UI_BB_CONNECTED_SNIFF_WITH_SCO
+)
+
+/************/
+/* flags    */
+/************/
+  
+/* memui_Misc_Flags */
+  (
+    5 NO_IDLE_TURN_OFF
+    7 ANSWER_RING_FLAG               /* 1 Answer,0 no*/
+  )
+
+/* mem_UI_SCH_Interface */
+  (
+    0  UI_HS_PAIRING 
+    2  UI_REQ_CLOSE_RFCOMM
+    3  UI_LINK_LOST
+    4  UI_REQ_OPEN_SCO
+    6  UI_REQ_CLOSE_SCO
+  )
+  
+/* memui_PassOverKey */
+  (
+    0  ANSWER_RING_BIT
+    0  AG_SEND_RING_BIT
+    1  VOL_UP_BIT
+    2  VOL_DOWN_BIT
+    3  INI_CALL_BIT
+    4  DAIL_LAST_CALL
+    5  END_CALL_BIT
+    6  NOKIA_VOICE_ACTIVE 
+    7  REJECT_CALL_BIT
+  )
+  
+/* memui_reconnect_mode */
+(
+  0 NO_RECONNECTION
+  1 RECONNECT_HID
+  2 RECONNECT_HF
+  3 RECONNECT_HS
+  4 RECONNECT_HID_HF
+  5 RECONNECT_HID_HS
+)
+/* memui_Commands */
+(
+0x00 BT_CMD_STANDBY
+0x01 BT_CMD_START_DISCOVERY
+0x02 BT_CMD_STOP_DISCOVERY
+0x03 BT_CMD_RECONNECT
+0x04 BT_CMD_DISCONNECT
+0x05 BT_CMD_ENTER_SNIFF
+0x06 BT_CMD_EXIT_SNIFF
+0x07 BT_CMD_ENTER_SNIFF_SUBRATING
+0x08 BT_CMD_EXIT_SNIFF_SUBRATING
+0x09 BT_CMD_SNIFF_TEST
+0x0a BT_CMD_SET_PIN_CODE
+0x0b BT_CMD_START_INQUIRY
+0x0c BT_CMD_STOP_INQUIRY
+0x0d BT_CMD_START_ADV
+0x0e BT_CMD_STOP_ADV
+0x0f BT_CMD_START_DIRECT_ADV
+0x10 BT_CMD_STOP_DIRECT_ADV
+0x11 BT_CMD_LE_DISCONNECT
+0x12 BT_CMD_LE_UPDATE_CONN
+0x13 BT_CMD_LED_OFF
+0x14 BT_CMD_LED_ON
+0x15 BT_CMD_LED_BLINK
+0x16 BT_CMD_LE_START_CONN
+0x17 BT_CMD_LE_START_SCAN
+0x18 BT_CMD_LE_STOP_SCAN
+0x19 BT_CMD_ENTER_HIBERNATE
+0x1b BT_CMD_LE_SMP_SECURITY_REQUEST
+0x1c BT_CMD_LE_START_WRITE
+0x1d BT_CMD_ROLE_SWITCH
+0x1e BT_CMD_BB_RECONN_CANCEL
+0x1f BT_CMD_STORE_RECONN_INFO_LE
+0x20 BT_CMD_STORE_RECONN_INFO_BT
+0x21 BT_CMD_START_24G
+0x22 BT_CMD_STOP_24G
+0x23 BT_CMD_PAIR_24G
+0x28 BT_CMD_UPDATE_SUPERVISION_TO
+0x29 BT_CMD_LE_SET_PINCODE
+0x2a BT_CMD_SET_RECONNECT_INIT
+0x2b BT_CMD_START_ADV_REC
+0x2c BT_CMD_START_ADV_DISCOVERY
+)
+
+(
+0x00 BT_EVT_NULL
+0x01 BT_EVT_BB_CONNECTED
+0x02 BT_EVT_BB_DISCONNECTED
+0x03 BT_EVT_RECONN_STARTED
+0x04 BT_EVT_RECONN_FAILED
+0x05 BT_EVT_SETUP_COMPLETE
+0x06 BT_EVT_HID_CONNECTED
+0x07 BT_EVT_HID_DISCONNECTED
+0x08 BT_EVT_SPP_CONNECTED
+0x09 BT_EVT_SPP_DISCONNECTED
+0x0A BT_EVT_PINCODE_REQ
+0x0B BT_EVT_ENTER_SNIFF
+0x0C BT_EVT_EXIT_SNIFF
+0x0D BT_EVT_ENTER_SNIFF_SUB
+0x0E BT_EVT_EXIT_SNIFF_SUB
+0x0F BT_EVT_DISCOVERY_STOPED
+0x10 BT_EVT_BUTTON_LONG_PRESSED
+0x12 BT_EVT_HID_HANDSHAKE
+0X13 BT_EVT_RECONN_PAGE_TIMEOUT
+0x14 BT_EVT_LE_CONNECTED
+0X15 BT_EVT_LE_DISCONNECTED
+0x16 BT_EVT_ML2CAP_CONN_REFUSED
+0x17 BT_EVT_BUTTON_ENTER_HIBERNATE
+0x18 BT_EVT_LINKKEY_GENERATE
+0x19 BT_EVT_SWITCH_NOT_ACCEPT
+0x20 BT_EVT_SWITCH_ACCEPT
+0x21 BT_EVT_SNIFF_NOT_ACCEPT
+0x22 BT_EVT_SNIFF_ACCEPT
+0x23 BT_EVT_UNSNIFF_ACCEPT
+0x24 BT_EVT_UNSNIFF_NOT_ACCEPT
+0x25 BT_EVT_BUTTON_ADJUST_DPI
+0x26 BT_EVT_SEND_UNSNIFF_ACCEPT
+0x27 BT_EVT_VIRTUAL_CABLE_UNPLUG
+0x28 BT_EVT_LE_WRITE_REQUEST
+0x29 BT_EVT_LE_ENC_INFO
+0x2a BT_EVT_SWITCH_FAIL_MASTER
+0x2b BT_EVT_SWITCH_SUCCESS_MASTER
+0x2c BT_EVT_BUTTON_DOWN
+0x2d BT_EVT_BUTTON_UP
+0x2e BT_EVT_REMOTE_UNSNIFF
+0x2f BT_EVT_RESET
+0x30 BT_EVT_WAKEUP
+0x31 BT_EVT_24G_PAIRING_COMPLETE
+0x32 BT_EVT_24G_ATTEMPT_FAIL
+0x33 BT_EVT_HIBERNATE_WAKE
+0x34 BT_EVT_LE_PROTOCOL_CONNECTED
+0x35 BT_EVT_LE_PINCODE_REQ
+0x37 BT_EVT_RECONNECT_STANDY
+0x39 BT_EVT_CLEAR_LINKKEY
+0x3c BT_EVT_24G_ATTEMPT_SUCCESS
+0x50 BT_EVT_TIMER_INIT
+0xF0 BT_EVT_TIMER_MASK
+0x51 BT_EVT_TIMER_100MS
+0x52 BT_EVT_TIMER_200MS
+0x53 BT_EVT_TIMER_300MS
+0x54 BT_EVT_TIMER_400MS
+0x55 BT_EVT_TIMER_500MS
+0x56 BT_EVT_TIMER_600MS
+0x57 BT_EVT_TIMER_700MS
+0x58 BT_EVT_TIMER_800MS
+0x59 BT_EVT_TIMER_900MS
+0x5A BT_EVT_TIMER_1KMS
+0x5B BT_EVT_TIMER_1K1MS
+0x5C BT_EVT_TIMER_1K2MS
+0x5D BT_EVT_TIMER_1K3MS
+0x5E BT_EVT_TIMER_1K4MS
+0x5F BT_EVT_TIMER_1K5MS
+)
+//switch
+(
+0 OFF
+1 ON
+)
+/* memui_mem_lock */
+(
+    0 MEM_UNLOCK
+    1 MEM_LOCK
+)
+/* memui_flag0 */
+(
+    0 UI_USER_DATA_FLAG
+    1 UI_WII_WAITING_SLEEP
+    2 UI_KEYBOARD_SNIFF_SKIP
+)
+/* mem_master_type */
+(
+    0 MTYPE_HID_DEFAULT
+    1 MTYPE_HID_SSP
+    2 MTYPE_SPP
+)
+
+	(	
+	0x01 RECIEVE_SDP_CONN_RES
+	0x02 RECIEVE_SDP_CFG_REQ
+	0x03 RECIEVE_SDP_CFG_RES
+	0x04 RECIEVE_RFCOMM_CONN_RES
+	0x05 RECIEVE_RFCOMM_CFG_REQ
+	0x06 RECIEVE_RFCOMM_CFG_RES
+	0x07 RECIEVE_HID_CTRL_CONN_RES
+	0x08 RECIEVE_HID_CTRL_CFG_REQ
+	0x09 RECIEVE_HID_CTRL_CFG_RES
+	0x0A RECIEVE_HID_INT_CONN_RES
+	0x0B RECIEVE_HID_INT_CFG_REQ
+	0x0C RECIEVE_HID_INT_CFG_RES
+	0x0D RECIEVE_AVCTP_CONN_RES
+	0x0E RECIEVE_AVCTP_CFG_REQ
+	0x0F RECIEVE_AVCTP_CFG_RES
+	0x10 RECIEVE_AVDTP_SIGNAL_CONN_RES
+	0x11 RECIEVE_AVDTP_SIGNAL_CFG_REQ
+	0x12 RECIEVE_AVDTP_SIGNAL_CFG_RES
+	0x13 RECIEVE_AVDTP_MEDIA_CONN_RES
+	0x14 RECIEVE_AVDTP_MEDIA_CFG_REQ
+	0x15 RECIEVE_AVDTP_MEDIA_CFG_RES
+	0x16 RECIEVE_SS_REASULT_HS                  
+	0x17 RECIEVE_SS_REASULT_HF                  
+	0x18 RECIEVE_SS_REASULT_AVTARG		          
+	0x19 RECIEVE_SS_REASULT_OBEX		            
+	0x1A RECIEVE_DLCI0_UA
+	0x1B RECIEVE_HS_PARAM_NEG_RES
+	0x1C RECIEVE_HS_UA
+	0x1D RECIEVE_HS_MODEM_STATUS_RES
+	0x1E RECIEVE_HS_MODEm_STATUS_CMD
+	0x1F RECIEVE_HF_PARAM_NEG_RES   
+	0x20 RECIEVE_HF_UA              
+	0x21 RECIEVE_HF_MODEM_STATUS_RES
+	0x22 RECIEVE_HF_MODEm_STATUS_CMD 
+	0x23 RECIEVE_OBEX_PARAM_NEG_RES     
+	0x24 RECIEVE_OBEX_UA              
+	0x25 RECIEVE_OBEX_MODEM_STATUS_RES
+	0x26 RECIEVE_OBEX_MODEm_STATUS_CMD    
+	0x27 RECIEVE_SPP_PARAM_NEG_RES   
+	0x28 RECIEVE_SPP_UA              
+	0x29 RECIEVE_SPP_MODEM_STATUS_RES
+	0x2A RECIEVE_SPP_MODEm_STATUS_CMD
+	0x2b RECIEVE_SDP_DISCONN_RES
+	)
+
+
+
+	(
+	0 UPPERSM_RP_IDLE
+	1 UPPERSM_RP_SDP_CONN
+	2 UPPERSM_RP_SDP_CONN_WAIT
+	3 UPPERSM_RP_SDP_CFG
+	4 UPPERSM_RP_SDP_CFG_WAIT
+	5 UPPERSM_RP_SS_AVTARG
+	6 UPPERSM_RP_SS_AVTARG_WAIT
+	7 UPPERSM_RP_SS_OBEX
+	8 UPPERSM_RP_SS_OBEX_WAIT
+	9 UPPERSM_RP_SDP_DISCONN
+	10 UPPERSM_RP_SDP_DISCONN_WAIT
+	11 UPPERSM_RP_AVDTP_CONN_WAIT
+	12 UPPERSM_RP_AVCTP_CONN
+	13 UPPERSM_RP_AVCTP_CONN_WAIT
+	14 UPPERSM_RP_AVCTP_CFG
+	15 UPPERSM_RP_AVCTP_CFG_WAIT
+	16 UPPERSM_RP_OBEX_CMD_PN
+	17 UPPERSM_RP_OBEX_CMD_PN_WAIT
+	18 UPPERSM_RP_OBEX_SABM
+	19 UPPERSM_RP_OBEX_SABM_WAIT
+	20 UPPERSM_RP_OBEX_CMD_MS
+	21 UPPERSM_RP_OBEX_CMD_MS_WAIT
+	)
+	(		/*mem_upper_sm_reconn*/
+	0 UPPERSM_RECONN_IDLE		
+	1 UPPERSM_RECONN_SDP_CONN		
+	2 UPPERSM_RECONN_SDP_CONN_WAIT		
+	3 UPPERSM_RECONN_SDP_CFG		
+	4 UPPERSM_RECONN_SDP_CFG_WAIT		
+	5 UPPERSM_RECONN_SS_HS
+	6 UPPERSM_RECONN_SS_HS_WAIT
+	7 UPPERSM_RECONN_SS_HF
+	8 UPPERSM_RECONN_SS_HF_WAIT
+	9 UPPERSM_RECONN_SS_AVTARG		
+	10 UPPERSM_RECONN_SS_AVTARG_WAIT		    
+	11 UPPERSM_RECONN_SS_OBEX		            
+	12 UPPERSM_RECONN_SS_OBEX_WAIT		      
+	13 UPPERSM_RECONN_SDP_DISCONN		        
+	14 UPPERSM_RECONN_SDP_DISCONN_WAIT      
+	15 UPPERSM_RECONN_HID_CTRL_CONN		      
+	16 UPPERSM_RECONN_HID_CTRL_CONN_WAIT		
+	17 UPPERSM_RECONN_HID_CTRL_CFG		      
+	18 UPPERSM_RECONN_HID_CTRL_CFG_WAIT     
+	19 UPPERSM_RECONN_HID_INT_CONN		      
+	20 UPPERSM_RECONN_HID_INT_CONN_WAIT		  
+	21 UPPERSM_RECONN_HID_INT_CFG		        
+	22 UPPERSM_RECONN_HID_INT_CFG_WAIT      
+	23 UPPERSM_RECONN_RFCOMM_CONN		        
+	24 UPPERSM_RECONN_RFCOMM_CONN_WAIT		  
+	25 UPPERSM_RECONN_RFCOMM_CFG		        
+	26 UPPERSM_RECONN_RFCOMM_CFG_WAIT       
+	27 UPPERSM_RECONN_RFCOMM_SABM		        
+	28 UPPERSM_RECONN_RFCOMM_SABM_WAIT		  
+	29 UPPERSM_RECONN_SPP_CMD_PN		        
+	30 UPPERSM_RECONN_SPP_CMD_PN_WAIT		    
+	31 UPPERSM_RECONN_SPP_SABM		          
+	32 UPPERSM_RECONN_SPP_SABM_WAIT		      
+	33 UPPERSM_RECONN_SPP_CMD_MS		        
+	34 UPPERSM_RECONN_SPP_CMD_MS_WAIT       
+	35 UPPERSM_RECONN_HF_CMD_PN		          
+	36 UPPERSM_RECONN_HF_CMD_PN_WAIT		    
+	37 UPPERSM_RECONN_HF_SABM		            
+	38 UPPERSM_RECONN_HF_SABM_WAIT		      
+	39 UPPERSM_RECONN_HF_CMD_MS		          
+	40 UPPERSM_RECONN_HF_CMD_MS_WAIT        
+	41 UPPERSM_RECONN_AVDTPs_CONN		        
+	42 UPPERSM_RECONN_AVDTPs_CONN_WAIT		  
+	43 UPPERSM_RECONN_AVDTPs_CFG		        
+	44 UPPERSM_RECONN_AVDTPs_CFG_WAIT       
+	45 UPPERSM_RECONN_AVDTPm_CONN		        
+	46 UPPERSM_RECONN_AVDTPm_CONN_WAIT		  
+	47 UPPERSM_RECONN_AVDTPm_CFG		        
+	48 UPPERSM_RECONN_AVDTPm_CFG_WAIT       
+	49 UPPERSM_RECONN_AVCTP_CONN		        
+	50 UPPERSM_RECONN_AVCTP_CONN_WAIT		    
+	51 UPPERSM_RECONN_AVCTP_CFG		          
+	52 UPPERSM_RECONN_AVCTP_CFG_WAIT		    
+	53 UPPERSM_RECONN_OBEX_CMD_PN		        
+	54 UPPERSM_RECONN_OBEX_CMD_PN_WAIT		  
+	55 UPPERSM_RECONN_OBEX_SABM		          
+	56 UPPERSM_RECONN_OBEX_SABM_WAIT		    
+	57 UPPERSM_RECONN_OBEX_CMD_MS		        
+	58 UPPERSM_RECONN_OBEX_CMD_MS_WAIT     
+	59 UPPERSM_RECONN_SS_SPP
+	60 UPPERSM_RECONN_SS_SPP_WAIT
+	)
+	(/*mem_UI_profile_supported*/
+	0 support_HID
+	1 support_A2DP
+	2 support_AVRCP
+	3 support_HF
+	4 support_HS
+	5 support_PBAP
+	6 support_SPP
+	)
+	/*mem_upper_sm_ss*/
+	(
+	0 UPPERSM_SS_HS
+	1 UPPERSM_SS_HF
+	2 UPPERSM_SS_AVTARG
+	3 UPPERSM_SS_OBEX
+	)
+
+	(
+	160 UI_HUNDRED_MILLISECOND_TIME
+	0XFF UI_BUTTON_GPIO_DISABLE
+	)
+	(
+	0x01 UI_BB_INCONNECT
+	0x10 UI_BB_DISCONNECT
+	)
+(
+0x00 UI_BUTTON_STATE_DOWN
+0x01 UI_BUTTON_STATE_UP
+)
+
+//mem_ipc_skip_continue_proc
+(
+	0 IPC_CONTINUE_PROCESS
+	1 IPC_SKIP_CONTINUE_PROCESS
+)
+
+
+0x08af mem_usb_status
+0x08b0 mem_usb_fifo_empty
+0x08b1 mem_usb_read_len
+0x08b2 mem_usb_rxbuf
+0x08f2 mem_usb_cnt
+0x08f4 mem_usb_tx_enable
+0x08f5 mem_usb_tx_count
+0x08f6 mem_usb_set_protocol_count
+0x08f7 mem_usb_desc
+0x08f8 mem_usb_state
+0x08f9 mem_usb_idle_cnt
+0x08fb mem_usb_idle_timeout
+0x08fd mem_usb_trig_timeout
+0x08ff mem_usb_setup
+0x08ff mem_usb_setup_bmRequestType
+0x0900 mem_usb_setup_bRequest
+0x0901 mem_usb_setup_bValue
+0x0902 mem_usb_setup_bValueH
+0x0903 mem_usb_setup_wIndex
+0x0905 mem_usb_setup_bLength
+0x0906 mem_usb_setup_bLengthH
+0x0907 mem_usb0_setup
+0x090f mem_bufptr
+0x0911 mem_remain
+0x0912 mem_devicedesc
+0x0926 mem_hidreportdesc_kb
+0x09ee mem_hidreportdesc_m
+0x0ab6 mem_confdesc
+0x0b1a mem_string0
+0x0b1f mem_string1
+0x0b3d mem_string2
+0x0b5b mem_string3
+
+(
+0x20 HCI_CLASS_REQUEST_TYPE      // SetReport HID Request
+0x21 HID_CLASS_REQUEST_TYPE 
+0x00 ZERO_CLASS_REQUEST_TYPE 
+)
+//Standard Request Codes
+(
+0x00 GET_STATUS                // Code for Get Status
+0x01 CLEAR_FEATURE             // Code for Clear Feature
+0x03 SET_FEATURE              // Code for Set Feature
+0x05 SET_ADDRESS              // Code for Set Address
+0x06 GET_DESCRIPTOR           // Code for Get Descriptor
+0x07 SET_DESCRIPTOR           // Code for Set Descriptor(not used)
+0x08 GET_CONFIGURATION        // Code for Get Configuration
+0x09 SET_CONFIGURATION        // Code for Set Configuration
+0x0A GET_INTERFACE            // Code for Get Interface
+0x0B SET_INTERFACE            // Code for Set Interface
+0x0C SYNCH_FRAME              // Code for Synch Frame(not used)
+)
+//Standard Descriptor Types
+(
+0x01 DSC_DEVICE               // Device Descriptor
+0x02 DSC_CONFIG               // Configuration Descriptor
+0x03 DSC_STRING               // String Descriptor
+0x04 DSC_INTERFACE            // Interface Descriptor
+0x05 DSC_ENDPOINT             // Endpoint Descriptor
+)
+//HID Descriptor Types
+(
+0x21 DSC_HID			      // HID Class Descriptor
+0x22 DSC_HID_REPORT			  // HID Report Descriptor
+)
+//Define bmRequestType bitmaps
+(
+0x00 IN_DEVICE                // Request made to device,
+                              // direction is IN
+0x80 OUT_DEVICE               // Request made to device,
+                              // direction is OUT
+0x01 IN_INTERFACE             // Request made to interface,
+                              // direction is IN
+0x81 OUT_INTERFACE            // Request made to interface,
+                              // direction is OUT
+0x02 IN_ENDPOINT              // Request made to endpoint,
+                              // direction is IN
+0x82 OUT_ENDPOINT             // Request made to endpoint,
+)
+//HID Request Codes
+(
+0x01 GET_REPORT 		       // Code for Get Report
+0x02 GET_IDLE				   // Code for Get Idle
+0x03 GET_PROTOCOL			   // Code for Get Protocol
+0x09 SET_REPORT				   // Code for Set Report
+0x0A SET_IDLE				   // Code for Set Idle
+0x0B SET_PROTOCOL			   // Code for Set Protocol
+0xF2 HID_REPORT_ID           
+64 EP0_PACKET_SIZE         
+6 EP1_PACKET_SIZE         
+16 HID_REPORT_SIZE         
+0x001B HID_REPORT_DESCRIPTOR_SIZE    
+)
+//math cordic
+(
+	
+
+0 TYPE_SIN		
+1 TYPE_ATAN	
+2 TYPE_MULT	
+3 TYPE_DIV		
+4 TYPE_ASIN	
+5 TYPE_SQRT	
+6 TYPE_COS		
+7 TYPE_TAN		 
+)
+   
+(
+0 DFIFO0_IN_EMPTY
+1 DFIFO1_IN_EMPTY
+2 DFIFO2_IN_EMPTY
+3 DFIFO3_IN_EMPTY
+4 DFIFO0_OUT_EMPTY
+5 DFIFO1_OUT_EMPTY
+6 DFIFO2_OUT_EMPTY
+7 DFIFO3_OUT_EMPTY
+)
+
+
+
+
+(
+4 USB_STATUS_SETUP
+6 USB_STATUS_NAK
+)
+
+(
+1 USB_GOT_REPORT_REQ
+2 USB_CONNECTED
+3 USB_SLEEP
+4 USB_RESUME
+5 USB_SETIDLE_1
+)
+
+
+/**
+*  @file:bt_utility_format.upper
+*  @author: lei.zhu
+*  utility header file. inlcude timer
+*  Copyright:  (C)Hanlynn Technology    
+*/
+
+0x0b79 mem_hold_contr
+0x0b7b mem_hold_contw
+0x0b7d mem_fifo_temp
+0x0b7e mem_c51_flag
+0x0b7f mem_c51_lpm_lock
+0x0b80 mem_c51_wait_lpm
+0x0b81 mem_wakup_from_power_flag
+0x0b82 mem_lmp_bb_disconnect_reason
+0x0b83 mem_c51_eeprom_buf
+0x0be7 mem_c51_ipc_txbuf
+0x0c4b mem_c51_ipc_rxbuf
+0x0caf mem_c51_iicd_buf
+0x0cb3 mem_24g_rxbuf
+0x0cd5 mem_24g_txbuf
+0x0cf5 mem_24g_txpayload
+0x0d17 mem_24g_rxpayload
+0x0d37 mem_24g_common_temp
+0x0d57 mem_packet_length_temp
+0x0d58 mem_le_cur_handle_start
+0x0d5a mem_le_cur_handle_end
+0x0d5c mem_le_search_res
+
+
+
+
+
+
+(
+/*mem_util_timer_flag0_7*/
+    0   UTIL_TIMER_0_USED
+    1   UTIL_TIMER_1_USED
+    2   UTIL_TIMER_2_USED
+    3   UTIL_TIMER_3_USED
+    4   UTIL_TIMER_4_USED
+    5   UTIL_TIMER_5_USED
+    6   UTIL_TIMER_6_USED
+    7   UTIL_TIMER_7_USED
+/*mem_util_timer_flag8_15*/
+    0   UTIL_TIMER_8_USED
+    1   UTIL_TIMER_9_USED
+    2   UTIL_TIMER_10_USED
+    3   UTIL_TIMER_11_USED
+    4   UTIL_TIMER_12_USED
+    5   UTIL_TIMER_13_USED
+    6   UTIL_TIMER_14_USED
+    7   UTIL_TIMER_15_USED
+)
+
+//util fifo param
+(
+
+5 UTIL_FIFO_LEN
+-1 UTIL_FIFO_OFFSET
+)
+
+
+//power control
+(
+99  POWER_CTRL_MAX_PACKET_CNT
+
+10 POWER_CTRL_RETRANS_THRESH_UP0
+0 POWER_CTRL_RETRANS_THRESH_DOWN0
+
+20 POWER_CTRL_RETRANS_THRESH_UP1
+5 POWER_CTRL_RETRANS_THRESH_DOWN1
+
+100 POWER_CTRL_RETRANS_THRESH_UP2
+10 POWER_CTRL_RETRANS_THRESH_DOWN2
+)
+
+
+/************************************************************************/
+/* RCS HEADER -- DO NOT ERASE                                           */
+/* $Author: Administrator $                                                     */
+/* $Id: bt_var.osi,v 1.1 2009-09-28 04:06:18 Administrator Exp $   */
+/* Orisil Technology                                                 */
+/************************************************************************/
+
+
+/* packet types */
+(
+  0x02 FHS_PACKET 
+  0x03 DM1_PACKET 
+  0x03 DM1_LMP_PACKET 
+  0x04 DH1_PACKET 
+  0x05 HV1_PACKET 
+  0x06 HV2_PACKET 
+  0x07 HV3_PACKET 
+  0x08 DV_PACKET 
+  0x09 AUX1_PACKET 
+  0x0a DM3_PACKET 
+  0x0b DH3_PACKET 
+  0x0e DM5_PACKET 
+  0x0f DH5_PACKET 
+)
+
+
+/* mem_lmp_respond */
+(
+  0 RESPOND_TO_ALL
+  1 PASS_EVERYTHING
+  2 PASS_ONLY_UNKNOWNS
+  3 RESPOND_TO_LMPS
+)
+/* SCO algorithm defines */
+(
+  0 ULAW
+  1 ALAW
+  2 CVSD
+)
+/* encryption modes */
+(
+  0 NO_ENCRYPTION
+  1 PT_PT_ENCRYPTION
+  2 PT_BROADCAST_ENCRYPTION
+)
+
+/* bits used in mem_lmp_state1 variable */
+(
+  0 LMP_STATE_DETACH
+  1 LMP_STATE_HOLD
+  2 LMP_STATE_SNIFF
+  3 LMP_STATE_PARK
+  4 LMP_STATE_WAIT_SCO_CREATE
+  5 LMP_STATE_WAIT_SCO_KILL
+  6 LMP_STATE_SCO3
+  7 LMP_STATE_WAIT_SCO_START
+)
+/* mem_lmp_state2 */
+(
+  0 LMP_WAIT_FOR_SNIFF_ACCEPT
+  1 LMP_WAIT_FOR_PARK_ACCEPT
+  2 LMP_SEND_UNPARK_ACCEPTED
+  3 LMP_SEND_ENCRYPTION_START
+  4 LMP_SEND_ENCRYPTION_STOP
+  5 MESSAGE_QUEUE
+  7 LMP_STATE_WAIT_BEACON
+)
+/* mem_lmp_state3 */
+(
+ 0 INQUIRY_STATE_CHECK
+ 1 HOST_DELAY_MESSAGE
+ 2 VARIABLE_DELAY
+ 3 TEST_MODE_START_LOOPBACK
+ 4 TEST_MODE_START_PATTERN
+ 5 PARSE_TEST_CONTROL_MESSAGE
+ 6 H_AUTH_SEND_COMB_KEY
+)
+/* mem_rx_status */
+(
+  0 FROM_MASTER
+)
+/* mem_ms_flag */
+(
+  0 MS_RECEIVE_SWITCH_REQ
+  1 MS_SEND_SETUP_COMPLATE
+)
+/* mem_conn_sm */
+(
+  0 CONN_SM_STANDBY
+  1 CONN_SM_WAIT_PAGE
+  2 CONN_SM_SEND_FEATURES
+  3 CONN_SM_WAIT_FEATURES_RES
+  4 CONN_SM_SEND_CONN_REQ
+  5 CONN_SM_WAIT_CONN_ACCEPT
+  6 CONN_SM_AUTH_PAIR
+  7 CONN_SM_AUTH_PAIR_WAIT
+  8 CONN_SM_WAIT_MUTAL_AUTH
+  9 CONN_SM_ENCRYPT
+  0xa CONN_SM_ENCRYPT_WAIT
+  0xb CONN_SM_ENCRYPT_WAIT_CLEAR
+  0xc CONN_SM_SEND_SETUP_COMPLETE
+  0xd CONN_SM_WAIT_SETUP_COMPLETE 
+  0xe CONN_SM_SEND_SWITCH
+  0xf CONN_SM_DETACH_DELAY
+  0x10 CONN_SM_WAIT_SWITCH_AFTER_HOST_CONNECTION
+  0x11 CONN_SM_DELAY_RESTART_CONNECTION
+  0x12 CONN_SM_SEND_VERSION
+  0X13 CONN_SM_WAIT_VERSION
+  0x14 CONN_SM_SEND_FEATURES_EXT
+  0x15 CONN_SM_WAIT_FEATURES_EXT
+  0x16 CONN_SM_PAIRING
+  0x17 CONN_SM_AUTH
+  0x18 CONN_SM_PAIRING_WAIT
+  0x19 CONN_SM_AUTH_WAIT
+  0x1a CONN_SM_DONE
+  0x1b CONN_SM_WAIT_DONE
+)
+
+/* btStateConn1 */
+(
+  0 CONN_STANDBY
+  1 CONN_MASTER_SEND_CONN_REQ
+  2 CONN_MASTER_WAIT_FOR_CONN_ACCEPTED
+  3 CONN_MASTER_AUTH
+  4 CONN_MASTER_WAIT_FOR_FEATURES
+  5 CONN_MASTER_WAIT_FOR_SETUP_COMPLETE
+  6 CONN_MASTER_WAIT_FOR_MAX_SLOT
+  7 CONN_SLAVE_CONN_REQUESTED
+  8 CONN_SLAVE_WAIT_FOR_SETUP_COMPLETE
+  9 CONN_SLAVE_AUTH
+  10 CONN_USING_HOST_OPCODE
+  11 CONN_SLAVE_AUTH_WAIT
+  12 CONN_SLAVE_ENCRYPT_WAIT
+)
+
+/* mem_lmp_conn_state */
+(
+  0 RECEIVED_CONN_REQ
+  1 SENT_CONN_REQ
+  2 RECEIVED_SETUP_COMPLETE
+  3 SENT_SETUP_COMPLETE
+  4 HOST_CONNECTION_MADE
+  6 INIT_COMPLETE
+  7 SNIFF_NEGOTIATE
+)
+/* btStateAuth1 */
+(
+  0 WAIT_FOR_KINIT
+  1 WAIT_FOR_LKA
+  2 WAIT_FOR_LKB
+  3 WAIT_FOR_SRES
+  4 EXAMINE_RECEIVED_SRES
+  5 SEND_AU_RAND
+  6 WAIT_FOR_KC
+  7 DELAYED_ENCRYPT_RESPONSE
+)
+/* btStateAuth2 */
+(
+  0 SENT_SRES
+  1 RECEIVED_IN_RAND
+  2 SENT_AU_RAND
+  3 AUTHENTICATION_FAILED
+  4 AUTHENTICATION_PASSED
+  5 STARTED_AUTH
+  6 SENT_COMB_KEY
+  7 SENT_IN_RAND
+)
+/* btStateAuth3 */
+(
+  0 RECEIVED_AU_RAND
+  1 RECEIVED_SRES
+  2 MUTUALLY_AUTHENTICATE
+)
+/* btStateHost */
+(
+  0 H_AUTH_STARTED
+  2 H_ENCRYPTION_MODE_REQ_PT
+  3 H_ENCRYPTION_KEY_SIZE
+  4 H_ENCRYPTION_START
+  5 H_ENCRYPTION_STOP
+  6 H_AUTH_SECOND_TRY
+)
+/* btStateEncrypt2 */
+(
+  0 RECEIVED_ENCRYPT_MODE_REQ_PT
+  1 RECEIVED_ENCRYPT_KEY_SIZE
+  2 RECEIVED_ENCRYPT_START
+  3 RECEIVED_ENCRYPT_STOP
+  4 STARTED_ENCRYPT_START
+)
+/* mem_ms_state */
+(
+  0x00 MS_STANDBY
+  0x11 M_MINIT_1
+  0x12 M_MINIT_2
+  0x20 M_SINIT_0
+  0x30 S_MINIT_0
+  0x31 S_MINIT_1
+  0x32 S_MINIT_2
+  0x41 S_SINIT_1
+  0x42 S_SINIT_2
+  0x43 S_SINIT_3
+)
+/* mem_test_mode */
+(
+  0 TEST_MODE_ALLOWED
+  1 TEST_MODE_ACTIVE
+)
+/* values for mem_tester_emulate */
+(
+  0x00 NO_TEST_MODE
+  0x00 CONTINUOUS_TRANSMIT
+  0x10 TRANSMIT_TEST
+  0x08 LOOPBACK
+)
+
+/* mem_tx_misc */
+(
+  1 SEND_TX_ADDR
+)
+/* BBHWREG_page_stat */
+(
+  5 PAGE_MODE_END
+)
+/* host_return_parameters_status codes */
+(
+  0x00 HOST_RETURN_SUCCESS
+  0x01 HOST_RETURN_SLAVE_CANT_ISSUE
+  0x02 HOST_RETURN_NO_CONNECTION
+  0x04 HOST_RETURN_PAGE_TIMEOUT
+  0x05 HOST_RETURN_INQUIRY_TIMEOUT
+  0x08 HOST_RETURN_CONNECTION_TIMEOUT
+  0x09 HOST_RETURN_MAX_NUM_CONNECTIONS
+  0x0a HOST_RETURN_MAX_NUM_SCO
+  0x0b HOST_RETURN_MAX_NUM_ACL
+  0x0c HOST_RETURN_SECURITY_REASONS
+  0x10 HOST_RETURN_HOST_TIMEOUT
+  0x11 HOST_RETURN_UNSUPPORTED_FEATURE_PARAMETER
+  0x13 HOST_RETURN_OTHER_END_USER
+  0x14 HOST_RETURN_OTHER_END_LOW_RESOURCE
+  0x15 HOST_RETURN_OTHER_END_POWER_OFF
+  0x16 HOST_RETURN_LOCAL_HOST
+  0x18 HOST_RETURN_PAIRING_NOT_ALLOWED
+  0x19 HOST_RETURN_UNKNOWN_PDU
+  0x1a HOST_RETURN_UNSUPPORTED_REMOTE_FEATURE
+  0x1d HOST_RETURN_SCO_AIR_MODE_REJECTED
+  0x20 HOST_RETURN_UNSUPPORTED_LMP_VALUE
+  0x21 HOST_RETURN_AUTHENTICATION_FAILURE
+  0x22 HOST_RETURN_CHANGED_EXISTING_SCO
+  0x23 HOST_RETURN_HOST_REJECTED
+  0x24 HOST_RETURN_UNSPECIFIED_ERROR
+  0x25 HOST_RESET
+  0x26 HOST_RETURN_BAD_HANDLE
+
+  0x00 HOST_RETURN_ACCEPT_COMMAND
+  0x01 HOST_RETURN_REJECT_COMMAND
+)
+/* host_present */
+(
+  0 HOST_IS_PRESENT
+  1 BCI_IS_PRESENT
+  2 DONT_INIT_RADIO
+)
+/* mem_master_state */
+(
+  0 MASTER_STATE_STANDBY
+  1 MASTER_INQUIRY
+)
+/* misc */
+(
+  92 SECOND_SWITCH_REQ
+  93 SLAVE_DELAY_DETACH
+  94 MASTER_DELAY_DETACH
+  95 UNSNIFF_DELAY_DETACH
+  0 WE_STARTED_AS_MASTER
+  1 WE_STARTED_AS_SLAVE
+)
+/* mem_host_commands */
+(
+  0x01 HOST_INQUIRY
+  0x02 HOST_INQUIRY_CANCEL
+  0x03 HOST_CREATE_CONNECTION
+  0x04 HOST_DISCONNECT_CONNECTION
+  0x05 HOST_ADD_SCO_REQUEST
+  0x06 HOST_REMOTE_NAME_REQUEST
+  0x07 HOST_WRITE_SUPPORTED_FEATURES
+  0x08 HOST_SET_TX_LEVEL
+  0x09 HOST_SET_RX_LEVEL
+  0x0a HOST_SNIFF_REQUEST
+  0x0b HOST_UNSNIFF_REQUEST
+  0x0c HOST_WRITE_LINK_SUPERVISION_TIMEOUT
+  0x0e HOST_WRITE_SCAN_ENABLE
+  0x0f HOST_READ_AUDIO_QUALITY
+  0x10 HOST_ENABLE_DEVICE_UNDER_TEST
+  0x14 HOST_BUTTON_CONFIGURE
+  0x15 HOST_SET_LOW_BATTERY_LEVEL
+  0x16 HOST_WRITE_LOCAL_NAME
+  0x17 HOST_WRITE_LOCAL_PIN
+  0x18 HOST_KILL_SCO_REQUEST
+  0x19 HOST_QOS_REQ
+
+  0x1a HOST_FEATURES_REQUEST
+  0x1b HOST_VERSION_REQUEST
+  0x1c HOST_TIMING_REQUEST
+  0x1d HOST_CLK_OFFSET_REQUEST
+  0x1e HOST_AUTHENTICATE
+  0x1f HOST_START_ENCRYPTION
+  0x20 HOST_STOP_ENCRYPTION
+  0x21 HOST_HOLD_REQUEST
+  0x22 HOST_HOLD_FORCE
+  0x23 HOST_PARK_REQUEST
+  0x24 HOST_MOD_BEACON
+  0x25 HOST_SET_BROADCAST_SCAN_WINDOW
+  0x26 HOST_UNPARK_PM_REQUEST
+  0x27 HOST_UNPARK_BD_REQUEST
+  0x28 HOST_SLAVE_REQUEST_UNPARK
+  0x29 HOST_DECREASE_POWER_REQUEST
+  0x2a HOST_INCREASE_POWER_REQUEST
+  0x2b HOST_SEND_PREFERRED_RATE
+  0x2c HOST_MAX_SLOT_REQ
+  0x2d HOST_MAX_SLOT_FORCE
+  0x2e HOST_PAGE_MODE_REQUEST
+  0x2f HOST_PAGE_SCAN_MODE_REQUEST
+  0x30 HOST_MASTER_SLAVE_SWITCH
+  0x31 HOST_SEND_AUTO_RATE
+  0x32 HOST_PAGE_CANCEL
+  0x33 HOST_CHANGE_LINK_KEY
+  0x34 HOST_RADIO_READ
+  0x35 HOST_RADIO_WRITE
+  0x36 HOST_REMOTE_SLAVE_INIT_UNPARK_REQUESTED
+
+  0x40 HOST_REMOTE_CONNECTION_REQUESTED
+  0x41 HOST_REMOTE_DETACH
+  0x42 HOST_REMOTE_SCO_CREATE_REQUESTED
+  0x43 HOST_REMOTE_SCO_KILL_REQUESTED
+  0x44 HOST_REMOTE_PARK_REQUESTED
+  0x45 HOST_REMOTE_UNPARK_REQUESTED
+  0x46 HOST_REMOTE_SNIFF_REQUESTED
+  0x47 HOST_REMOTE_UNSNIFF_REQUESTED
+  0x48 HOST_REMOTE_HOLD_REQUESTED
+  0x49 HOST_REMOTE_AUTHENTICATION
+  0x4a HOST_REMOTE_START_ENCRYPTION_REQUESTED
+  0x4b HOST_REMOTE_STOP_ENCRYPTION_REQUESTED
+  0x4c HOST_MODE_CHANGE_EVENT
+  0x4d HOST_REMOTE_TEST_ACTIVATE
+  0x4e HOST_REMOTE_TEST_CONTROL
+  0x4f HOST_REMOTE_TIMING_REQUEST
+)
+/* BCI interface (not used if not compiled in ) */
+(
+  0x01 BCI_INQUIRY
+  0x02 BCI_INQUIRY_CANCEL
+  0x03 BCI_CREATE_CONNECTION
+  0x04 BCI_DISCONNECT
+  0x05 BCI_ADD_SCO_CONNECTION
+  0x06 BCI_REMOTE_NAME_REQUEST
+  0x07 BCI_WRITE_SUPPORTED_FEATURES
+  0x08 BCI_SET_TX_POWER_LEVEL
+  0x09 BCI_SET_RX_POWER_LEVEL
+  0x0a BCI_SNIFF_MODE
+  0x0b BCI_EXIT_SNIFF_MODE
+  0x0c BCI_WRITE_LINK_SUPERVISION_TIMEOUT
+  0x0d BCI_WRITE_PAGE_TIMEOUT
+  0x0e BCI_WRITE_SCAN_ENABLE
+  0x0f BCI_GET_AUDIO_QUALITY
+  0x10 BCI_ENABLE_DEVICE_UNDER_TEST
+  0x11 BCI_SEND_DATA
+  0x12 BCI_REGISTER_SERVICE_RECORD
+  0x13 BCI_SERVICE_SEARCH_ATTRIB_REQ
+  0x14 BCI_BUTTON_CONFIGURE
+  0x15 BCI_SET_LOW_BATTERY_LEVEL
+  0x16 BCI_WRITE_LOCAL_NAME
+  0x17 BCI_WRITE_LOCAL_PIN
+  0x18 BCI_REMOVE_SCO_CONNECTION
+  0x19 BCI_QUALITY_OF_SERVICE
+  0x40 BCI_REMOTE_CONNECTION_REQUEST
+  0x41 BCI_REMOTE_DETACH
+  0x42 BCI_REMOTE_ADD_SCO_REQUEST
+  0x43 BCI_REMOTE_REMOVE_SCO_REQUEST
+  0x44 BCI_REMOTE_PARK_REQUEST
+  0x45 BCI_REMOTE_UNPARK_REQUEST
+  0x46 BCI_REMOTE_SNIFF_REQUEST
+  0x47 BCI_REMOTE_UNSNIFF_REQUEST
+  0x48 BCI_REMOTE_HOLD_REQUEST
+  0x49 BCI_REMOTE_AUTHENTICATION_PAIRING_REQUEST
+  0x4a BCI_REMOTE_START_ENCRYPTION_REQUEST
+  0x4b BCI_REMOTE_STOP_ENCRYPTION_REQUEST
+  0x4c BCI_MODE_CHANGE_EVENT
+)
+/* mode changes */
+(
+  0 MODE_CHANGE_ACTIVE
+  1 MODE_CHANGE_SNIFFING
+  2 MODE_CHANGE_PARKED
+  3 MODE_CHANGE_HOLDING
+  4 MODE_CHANGE_SCO_ADDED
+  5 MODE_CHANGE_SCO_REMOVED
+  6 MODE_CHANGE_ACL_CONNECTION
+  7 MODE_CHANGE_DISCONNECT
+  8 MODE_CHANGE_SCO_CHANGED
+  9 MODE_CHANGE_ENCRYPTING
+  10 MODE_CHANGE_NOT_ENCRYPTING
+  11 MODE_CHANGE_BUTTON_UP
+  12 MODE_CHANGE_BUTTON_DOWN
+  13 MODE_CHANGE_BATTERY_LOW
+  14 MODE_CHANGE_RESET
+  15 MODE_CHANGE_INQUIRY_CANCELED_RMTCMD
+  16 MODE_ACTIVE_MSSWITCH_PASSED
+  17 MODE_ACTIVE_MSSWITCH_FAILED
+)
+/* mem_battery - low nibble is level information, upper nibble is status info */
+(
+  6 BATTERY_CHECK_LEVEL
+  7 BATTERY_SENT_STATUS
+)
+/* mem_radio_version */
+(
+  0x02 RADIO_2001
+  0x12 RADIO_2002
+  0x32 RADIO_2002_DDM
+  0x42 RADIO_1008A1
+  0x52 RADIO_1018A0
+)
+/* mem_slave_initiated_conn */
+(
+  0 SLAVE_INIT_AUTHENTICATION
+  1 SLAVE_INIT_ENCRYPTION
+  2 SLAVE_INIT_MASTER_SLAVE_SWITCH
+)
+/* connection_options */
+(
+  0 CONNECTION_AUTH
+  1 CONNECTION_ENCRYPT
+  2 CONNECTION_SWITCH
+  3 CONNECTION_ACL
+  4 CONNECTION_FEATURE_EXT
+)
+/* mem_debug_config */
+(
+  7 AA_INSERTION
+)
+
+
+/* Parse Command:
+TX: take bits from tx fifo, jam it into shift and a destination (rf,bucket)
+RX: take bits from demod,  jam it into shift and a destination (acl,sco,bucket) */
+
+/* Inject Command:
+TX: 0 into shift, send tail of shift into a destination (rf,bucket)
+RX: 0 into shift, send tail of shift into a destination (acl,sco,bucket) */
+
+format
+  ! 15 romdat
+  % d0
+  % d1
+  % d2
+  % d3
+  [8] d0
+  [8] d1
+  [8] d2
+  [8] d3
+end
+
+format
+  ! 15 enable   /* set flag to 1 */
+  % flag
+  [5] opcode
+  [6] 1
+  [6] flag
+  [6] null
+  [9] 0
+end
+ /* High 5 bytes of channel map */
+format
+  ! 15 pulse   /* set flag to 1 */
+  % flag
+  [5] opcode
+  [6] 1
+  [6] flag
+  [6] null
+  [9] 0
+end
+
+format
+  ! 15 disable   /* set flag to 0 */
+  % flag
+  [5] opcode
+  [6] 2
+  [6] flag
+  [6] null
+  [9] 0
+end
+
+format
+  ! 15 set0  /* set selected bit of reg to 0 */
+  % immediate
+  % reg
+  [5] opcode
+  [6] 9
+  [6] never
+  [6] reg
+  [9] immediate
+end
+
+format
+  ! 15 set1  /* set selected bit of reg to 1 */
+  % immediate
+  % reg
+  [5] opcode
+  [6] 9          /* alu op demux */
+  [6] always
+  [6] reg
+  [9] immediate
+end
+
+format
+  ! 15 setflag  /* set selected bit of the reg to the polarity of the flag */
+  % flag
+  % immediate
+  % reg
+  [5] opcode
+  [6] 9
+  [6] flag
+  [6] reg
+  [9] immediate
+end
+
+format
+  ! 15 nsetflag  /* set the selected bit of the reg to the opposite polarity of the flag */
+  % flag
+  % immediate
+  % reg
+  [5] opcode
+  [6] 0x29
+  [6] flag
+  [6] reg
+  [9] immediate
+end
+
+format
+  ! 15 setflip    /* invert the selected bit of the reg */
+  % immediate
+  % reg
+  [5] opcode
+  [6] 10            /* this is alu op */
+  [6] always
+  [6] reg
+  [9] immediate
+end
+
+format
+  ! 0x1f qset1      /* demux the lowest 4 bit of queue and OR it with regr into regw */
+  % reg             /* in short, set the bit in reg indexed by queue to 1 */
+  [5] opcode
+  [6] 9
+  [6] always
+  [6] reg
+  [9] 0
+end
+  
+format
+  ! 0x1f qset0      /* demux the lowest 4 bit of queue and AND it with regr into regw */
+  % reg             /* in short, set the bit in reg indexed by queue to 0 */
+  [5] opcode
+  [6] 9
+  [6] never
+  [6] reg
+  [9] 0
+end
+
+format 
+  ! 0x1f qsetflag   /* set the bit in reg index by queue to same as flag */
+  % flag
+  % reg
+  [5] opcode
+  [6] 9
+  [6] flag
+  [6] reg
+  [9] 0
+end
+
+format 
+  ! 0x1f nqsetflag   /* set the bit in the reg index by queue to opposite of flag */
+  % flag
+  % reg
+  [5] opcode
+  [6] 0x29
+  [6] flag
+  [6] reg
+  [9] 0
+end
+
+format
+  ! 0x1f qsetflip      /* flip the bit in reg index by queue */
+  % reg
+  [5] opcode
+  [6] 10
+  [6] always
+  [6] reg
+  [9] 0
+end
+
+format
+  ! 1 parse       /* take bits out of source (sco_tx,tx_buffer,rx-elas) into pdata and dest (sco_rx,rx_fifo,tx-elas) */
+  % source
+  % dest
+  % immediate
+  [5] opcode
+  [4] source      /* voice, data, demod */
+  [2] 0
+  [6] 0    
+  [2] 0           /* parse or inject */ 
+  [4] dest        /* acl, sco, mod, bucket */
+  [9] immediate   /* number of bits to parse off */
+end
+
+format
+  ! 1 inject      /* shift data from pdata into destination (tx-elas,rx_fifo,sco_rx) */
+  % destination
+  % immediate
+  [5] opcode
+  [4] 0
+  [2] 0
+  [6] 1
+  [2] 0
+  [4] destination /* acl,sco,mod,bucket */
+  [9] immediate   /* number of bits to be injected */
+end
+
+format
+  ! 1 iinject
+  % destination
+  % regr
+  [5] opcode
+  [6] regr       /* contain the number of bits to inject */
+  [6] 3
+  [2] 0
+  [4] destination /* acl,sco,mod,bucket */
+  [9] 0 
+end
+
+format
+  ! 1 stuff  /* automatic parse, stuff_counter decrement on every bit until hits zero */
+  % source
+  % destination
+  [5] opcode
+  [4] source
+  [2] 0
+  [6] 2
+  [2] 0
+  [4] destination
+  [9] 0
+end
+
+format    /* force immediate value into registers */
+  ! 3 force
+  % immediate
+  % regw
+  [5] opcode
+  [6] 0
+  [6] 0    /* alu operation force */
+  [6] regw  /* destination register */
+  [9] immediate
+end
+
+format    /* force whatever is on shift_reg to regsiters */
+  ! 0x13 iforce
+  % regw
+  [5] opcode
+  [6] 0
+  [6] 0    /* alu operation force */
+  [6] regw  /* destination register */
+  [9] 0
+end
+
+format    /* force immediate value into registers */
+  ! 3 increase
+  % immediate
+  % reg
+  [5] opcode
+  [6] reg
+  [6] 1    /* alu operation add */
+  [6] reg
+  [9] immediate
+end
+
+format
+  ! 3 pincrease
+  % immediate
+  [5] opcode
+  [6] -1  /* pdata */
+  [6] 1   /* alu add */
+  [6] -1  /* back to pdata */
+  [9] immediate
+end
+
+format    /* force immediate value into registers */
+  ! 3 and_into
+  % immediate
+  % reg
+  [5] opcode
+  [6] reg
+  [6] 2    /* alu operation and into */
+  [6] reg
+  [9] immediate
+end
+
+format
+  ! 3 and
+  % regr
+  % immediate
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 2    /* alu operation and into */
+  [6] regw
+  [9] immediate
+end
+  
+format
+  ! 0x13 iand    /* pdata & regr -> regw */
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 2    /* alu operation and into */
+  [6] regw
+  [9] 0
+end
+  
+
+format    /* and whatever is in shiftreg with reg */
+  ! 0x13 iand_into
+  % reg
+  [5] opcode
+  [6] reg
+  [6] 2    /* alu operation and into */
+  [6] reg
+  [9] 0
+end
+
+format
+  ! 3 or_into
+  % immediate
+  % reg
+  [5] opcode
+  [6] reg
+  [6] 3    /* alu operation or into */
+  [6] reg
+  [9] immediate
+end
+
+format
+  ! 3 or
+  % regr
+  % immediate
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 3    /* alu operation or into */
+  [6] regw
+  [9] immediate
+end
+
+format
+  ! 0x13 ior
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 3    /* alu operation or into */
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 0x13 ior_into
+  % reg
+  [5] opcode
+  [6] reg
+  [6] 3    /* alu operation or into */
+  [6] reg
+  [9] 0
+end
+
+format
+  ! 3 skip_to   /* jump to location stored in reg */
+  % reg
+  [5] opcode
+  [6] reg
+  [6] 4   /* alu operation copy */
+  [6] rom_addr
+  [9] 0
+end
+
+format
+  ! 3 copy
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 4   /* alu operation copy */
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 deposit   /* copy the register content thru alu to shift register, not prealigned like preload */
+  % reg
+  [5] opcode
+  [6] reg
+  [6] 4   /* alu operation copy */
+  [6] -1  /* pdata */
+  [9] 0
+end
+
+format
+  ! 3 icopy     /* copy the shift register lsb content directly to register, not aligned */
+  % regw
+  [5] opcode
+  [6] -1  /* pdata */
+  [6]  4  /* alu copy */
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 add
+  % regr
+  % immediate
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 1
+  [6] regw
+  [9] immediate
+end
+
+format
+  ! 0x13 iadd       /* regr + pdata -> regw */
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 1
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 sub          /* immediate - regr -> regw */
+  % regr
+  % immediate
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 12
+  [6] regw
+  [9] immediate
+end
+
+format
+  ! 0x13 isub       /* pdata - regr -> regw */
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 12
+  [6] regw
+  [9] 0
+end
+
+
+format
+  ! 3 flip
+  % immediate
+  % reg
+  [5] opcode
+  [6] reg
+  [6] 5
+  [6] reg
+  [9] immediate
+end
+  
+format
+  ! 0x13 iflip  /* use shift register as immediate to do xor */
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 5
+  [6] regw
+  [9] 0
+end
+  
+format
+  ! 3 xor
+  % regr
+  % immediate
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 5
+  [6] regw
+  [9] immediate
+end
+
+format
+  ! 3 xor_into
+  % immediate
+  % reg
+  [5] opcode
+  [6] reg
+  [6] 5
+  [6] reg
+  [9] immediate
+end
+  
+format
+  ! 0x13 ixor  /* pdata xor regr and store result in regw */
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 5
+  [6] regw
+  [9] 0
+end
+  
+format
+  ! 3 invert
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 8
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 pinvert    /* invert pdata into itself */
+  [5] opcode
+  [6] -1
+  [6] 8
+  [6] -1
+  [9] 0
+end
+
+format
+  ! 3 div                 /* regr div immediate div */
+  % reg
+  % immediate
+  [5] opcode
+  [6] reg
+  [6] 13                   /* generate diven pulse to div */
+  [6] null
+  [9] immediate
+end
+
+format
+  ! 0x13 idiv           /* pdata div regr data ready at most after 41 nops */
+  % reg
+  [5] opcode
+  [6] reg
+  [6] 13                   /* generate diven pulse to div */
+  [6] null
+  [9] 0
+end
+
+format
+  ! 3 remainder            /* harvest div remainder */
+  % regw
+  [5] opcode
+  [6] 0
+  [6] 14
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 quotient             /* harvest div quotient */
+  % regw
+  [5] opcode
+  [6] 0
+  [6] 15
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 rshift
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 6
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 rshift2
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 22
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 rshift3
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 18
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 rshift4
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 35
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 rshift8
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 25
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 rshift16
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 34
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 rshift32
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 30
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 lshift
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 7
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 lshift2
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 23
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 lshift8
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 26
+  [6] regw
+  [9] 0
+end
+
+  
+format
+  ! 3 lshift3
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 19
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 lshift4
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 36
+  [6] regw
+  [9] 0
+end
+  
+
+format
+  ! 3 lshift16
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 32
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 random               /* random number into regw */
+  % reg
+  [5] opcode
+  [6] 0
+  [6] 20
+  [6] reg
+  [9] 0
+end
+
+format                     /* bit reverse within a byte */
+  ! 3 reverse
+  % reg
+  % regw
+  [5] opcode
+  [6] reg
+  [6] 27
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 priority    /* priority encode reg into regw, lsb is the top priority, ie, priority(8'b00010000) = 4 */
+  % reg
+  % regw
+  [5] opcode
+  [6] reg
+  [6] 21
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 7 setsect   /* set a section of pdata */
+  % section    /* 0 sets 17:0 of pdata with set_data, 1 sets 35:18, 2 sets 53:36, 3 sets 71:54 */
+  % set_data
+  [5] opcode
+  [7] 0
+  [2] section
+  [18] set_data
+end
+
+format
+  ! 10 preload   /* load stuff into pdata according to fhs format, check us.v */
+  % reg
+  [5] opcode
+  [6] reg
+  [6] 0
+  [6] -1
+  [9] 0
+end
+
+format  /* load register with pdata content, according to fhs format, check us.v */
+  ! 10 ialigned   /* all bits are in position */
+  % regw
+  [5] opcode
+  [6] -1
+  [6] 0
+  [6] regw
+  [9] 0
+end
+
+format  /* load register to another according to fhs format */
+  ! 10 aligned
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 0
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 4 branch
+  % addr
+  % flag
+  [5] opcode
+  [6] 1
+  [6] flag
+  [15] addr
+end
+
+format
+  ! 4 call
+  % addr
+  % flag
+  [5] opcode
+  [6] 2
+  [6] flag
+  [15] addr
+end
+
+format
+  ! 4 rtn
+  % flag
+  [5] opcode
+  [6] 3
+  [6] flag
+  [15] 0
+end
+
+format
+  ! 0x0c store          /* write to memory, data from pdata, address from immediate then mem_ptr */
+  % num_bytes
+  % addr
+  [5] opcode
+  [6] 0               /* memory */
+  [1] 0
+  [1] 0
+  [4] num_bytes
+  [15] addr
+end
+
+format
+  ! 0x0c hstore          /* write to memory, data from pdata, address from immediate then mem_ptr */
+  % num_bytes
+  % addr
+  [5] opcode
+  [6] 0               /* memory */
+  [1] 1
+  [1] 0
+  [4] num_bytes
+  [15] addr
+end
+
+format
+  ! 0x1c istore        /* write to memory, data from pdata, address from regr then mem_ptr */
+  % num_bytes
+  % reg
+  [5] opcode
+  [6] reg            /* hold address */
+  [1] 0
+  [1] 0
+  [4] num_bytes
+  [15] 0
+end
+
+format
+  ! 0x0d fetch          /* read from memory, data into pdata, address from immediate then mem_ptr */
+  % num_bytes
+  % addr
+  [5] opcode
+  [6] 0               /* memory */
+  [1] 0
+  [1] 0
+  [4] num_bytes
+  [15] addr
+end
+
+format
+  ! 0x0d hfetch          /* read from memory, data into pdata, address from immediate then mem_ptr */
+  % num_bytes
+  % addr
+  [5] opcode
+  [6] 0               /* memory */
+  [1] 1
+  [1] 0
+  [4] num_bytes
+  [15] addr
+end
+
+format
+  ! 0x0d crc         /* read from memory, count from loopcnt, put crc result into pdata */
+  % addr
+  [5] opcode
+  [6] 0
+  [1] 0
+  [1] 0
+  [4] 0
+  [15] addr
+end
+
+format
+  ! 0x1d icrc         /* read from memory, address from reg, count from loopcnt, put crc result into pdata */
+  % reg
+  [5] opcode
+  [6] reg             /* hold address */
+  [1] 0
+  [1] 0
+  [4] 0
+  [15] 0
+end
+
+
+format
+  ! 0x1d ifetch         /* read from memory, data into pdata, address from regr then mem_ptr */
+  % num_bytes
+  % reg
+  [5] opcode
+  [6] reg             /* hold address */
+  [1] 0
+  [1] 0
+  [4] num_bytes
+  [15] 0
+end
+
+format
+  ! 0x0c storet          /* write to memory, data from temp, address from immediate won't increment */
+  % num_bytes
+  % addr
+  [5] opcode
+  [6] 0               /* memory */
+  [1] 0
+  [1] 1
+  [4] num_bytes
+  [15] addr
+end
+
+format
+  ! 0x0c hstoret          /* write to corereg, data from temp, address from immediate won't increment */
+  % num_bytes
+  % addr
+  [5] opcode
+  [6] 0               /* memory */
+  [1] 1
+  [1] 1
+  [4] num_bytes
+  [15] addr
+end
+
+format
+  ! 0x1c istoret        /* write to memory, data from temp, address from regr won't increment */
+  % num_bytes
+  % reg
+  [5] opcode
+  [6] reg            /* hold address */
+  [1] 0
+  [1] 1
+  [4] num_bytes
+  [15] 0
+end
+
+format
+  ! 0x0d fetcht          /* read from memory, data into temp, address from immediate won't increment */
+  % num_bytes
+  % addr
+  [5] opcode
+  [6] 0               /* memory */
+  [1] 0
+  [1] 1
+  [4] num_bytes
+  [15] addr
+end
+
+format
+  ! 0x0d hfetcht          /* read from corereg, data into temp, address from immediate won't increment */
+  % num_bytes
+  % addr
+  [5] opcode
+  [6] 0               /* memory */
+  [1] 1
+  [1] 1
+  [4] num_bytes
+  [15] addr
+end
+
+format
+  ! 0x1d ifetcht         /* read from memory, data into temp, address from regr won't increment */
+  % num_bytes
+  % reg
+  [5] opcode
+  [6] reg             /* hold address */
+  [1] 0
+  [1] 1
+  [4] num_bytes
+  [15] 0
+end
+
+format
+  ! 0x0e jam
+  % immediate
+  % addr
+  [5] opcode
+  [3] 0
+  [16] addr
+  [8] immediate
+end
+
+format
+  ! 0x0e hjam
+  % immediate
+  % addr
+  [5] opcode
+  [3] 0
+  [1] 1   /* msb */
+  [15] addr
+  [8] immediate
+end
+
+format			/* 0x242... */
+  ! 4 nbranch
+  % addr
+  % flag
+  [5] opcode
+  [1] 1
+  [5] 1
+  [6] flag
+  [15] addr
+end
+
+format
+  ! 4 ncall
+  % addr
+  % flag
+  [5] opcode
+  [1] 1
+  [5] 2
+  [6] flag
+  [15] addr
+end
+
+format
+  ! 4 nrtn
+  % flag
+  [5] opcode
+  [1] 1
+  [5] 3
+  [6] flag
+  [15] 0
+end
+
+format
+  ! 4 nop
+  % addr  /* no-op for addr+2 clocks */
+  [5] opcode
+  [6] 0     
+  [6] 0     /* always */ 
+  [15] addr
+end
+
+format
+  ! 4 clear_stack
+  [5] opcode
+  [6] 4
+  [6] 0    /* always */
+  [15] 0
+end
+
+format
+  ! 6 until
+  % reg
+  % flag
+  [5] opcode
+  [6] reg
+  [6] flag
+  [6] 1
+  [9] 0
+end
+  
+format
+  ! 6 correlate   /* quit if 1. flag is true 2, regr time up 3, found sync,(cond_true) */
+  % reg          /* expire counter to check against */
+  % flag
+  [5] opcode
+  [6] reg
+  [6] flag
+  [6] 2           /* correlate */
+  [9] 0           
+end
+
+format
+  ! 5 compare   /* sets cond flag,  if reg equals immediate */
+  % immediate
+  % reg
+  % mask
+  [5] opcode
+  [6] reg
+  [3] 0
+  [9] mask
+  [9] immediate
+end
+
+format
+  ! 0x15 icompare   /* sets cond flag,  if reg equals pdata */
+  % mask
+  % reg
+  [5] opcode
+  [6] reg
+  [3] 0
+  [9] mask
+  [9] 0
+end
+
+format   /* sets cond. flag, if reg equals LS half of shift reg with MS half of reg being mask */
+  ! 5 iverify
+  % reg
+  [5] opcode
+  [6] reg
+  [3] 2
+  [18] 0
+end
+
+format
+  ! 0x15 qisolate1
+  % reg
+  [5] opcode
+  [6] reg
+  [3] 3
+  [18] -1
+end
+
+format
+  ! 0x15 qisolate0
+  % reg
+  [5] opcode
+  [6] reg
+  [3] 3
+  [18] 0
+end
+
+	/* REVAB bug: cannot access bit above 35 */
+format
+  ! 5 isolate1
+  % addr
+  % reg
+  [5] opcode
+  [6] reg
+  [3] 3
+  [9] -1
+  [9] addr
+end
+
+format
+  ! 5 isolate0
+  % addr
+  % reg
+  [5] opcode
+  [6] reg
+  [3] 3
+  [9] 0
+  [9] addr
+end
+
+format
+  ! 11 setarg
+  % immediate
+  [5] opcode
+  [27] immediate
+end
+
+format
+  ! 0x1b arg
+  % immediate
+  % reg
+  [5] opcode
+  [6] reg
+  [21] immediate
+end
+
+  
+format
+  ! 0 sleep
+  [5] opcode
+  [27] 0
+end
+
+format
+  ! 0 snooze
+  [5] opcode
+  [6] -1
+  [21] 0
+end
+
+format
+  ! 0 revision
+  % rev_num
+  [5] opcode
+  [27] rev_num
+end
+
+format
+  ! 0x18 loop   /* branch when loopcnt is NOT zero, and decrease loopcnt */
+  % addr
+  [5] opcode
+  [4] 4
+  [8] 0
+  [15] addr
+end
+
+format
+  ! 0x18 beq   /* branch when pdata is equal to immediate */
+  % imme
+  % addr
+  [5] opcode
+  [4] 0
+  [8] imme
+  [15] addr
+end
+
+format
+  ! 0x18 bne   /* branch when pdata is NOT equal to immediate */
+  % imme
+  % addr
+  [5] opcode
+  [4] 1
+  [8] imme
+  [15] addr
+end
+
+format
+  ! 0x18 rtneq   /* return when pdata is equal to immediate */
+  % imme
+  [5] opcode
+  [4] 2
+  [8] imme
+  [15] 0
+end
+
+format
+  ! 0x18 rtnne   /* return when pdata is NOT equal to immediate */
+  % imme
+  [5] opcode
+  [4] 3
+  [8] imme
+  [15] 0
+end
+
+format
+  ! 0x18 bbit1   /* branch when pdata's imme bit is 1 */
+  % imme
+  % addr
+  [5] opcode
+  [4] 5
+  [8] imme
+  [15] addr
+end
+
+format
+  ! 0x18 bbit0   /* branch when pdata's imme bit is 0 */
+  % imme
+  % addr
+  [5] opcode
+  [4] 6
+  [8] imme
+  [15] addr
+end
+
+format
+  ! 0x18 rtnbit1   /* return when pdata's imme bit is 0 */
+  % imme
+  [5] opcode
+  [4] 7
+  [8] imme
+  [15] 0
+end
+
+format
+  ! 0x18 rtnbit0   /* return when pdata's imme bit is 0 */
+  % imme
+  [5] opcode
+  [4] 8
+  [8] imme
+  [15] 0
+end
+
+format
+  ! 8	bpatch
+  % imme
+  % addr
+  [5] opcode
+  [4] 9
+  [8] imme
+  [15] addr
+end
+
+format
+  ! 0x18 bmark1   /* branch when mark's imme bit is 1 */
+  % imme
+  % addr
+  [5] opcode
+  [4] 10
+  [8] imme
+  [15] addr
+end
+
+format
+  ! 0x18 bmark0   /* branch when mark's imme bit is 0 */
+  % imme
+  % addr
+  [5] opcode
+  [4] 11
+  [8] imme
+  [15] addr
+end
+
+format
+  ! 0x18 rtnmark1   /* return when mark's imme bit is 0 */
+  % imme
+  [5] opcode
+  [4] 12
+  [8] imme
+  [15] 0
+end
+
+format
+  ! 0x18 rtnmark0   /* return when mark's imme bit is 0 */
+  % imme
+  [5] opcode
+  [4] 13
+  [8] imme
+  [15] 0
+end
+
+
+format
+  ! 3 mult                  /* immediate mult regr */  /* the product will be ready 17 clks later */
+  % immediate                                   /* use "product" instruction to get the result */
+  % reg
+  [5] opcode
+  [6] reg
+  [6] 16                   /* generate diven pulse to div */
+  [6] null
+  [9] immediate
+end
+
+format
+  ! 0x13 imult           /* pdata mult regr */  /* the product will be ready after 15 nops */
+  % reg                                         /* use product opcode to get the result */
+  [5] opcode
+  [6] reg
+  [6] 16                   /* generate mult pulse to multiplier */
+  [6] null
+  [9] 0
+end
+
+format
+  ! 3 mul32                  /* immediate mult regr */ 
+  % regr
+  % immediate                                  
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 31           
+  [6] regw
+  [9] immediate
+end
+
+format
+  ! 0x13 imul32           /* pdata mult regr 32x32=64bit */  
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 31                   
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 product              /* harvest mult product */
+  % regw
+  [5] opcode
+  [6] 0
+  [6] 17
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 byteswap
+  % regr
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 33
+  [6] regw
+  [9] 0
+end
+
+format
+  ! 3 shasx          /* SHA256 Sx operation, immediate is Sx */
+  % regr
+  % immediate
+  % regw
+  [5] opcode
+  [6] regr
+  [6] 28
+  [6] regw
+  [9] immediate
+end
+
+
+format
+  ! 0x13 regexrot 	/* regext[0] <- regext[7], regext[1] <- regext[0], regext[2] <- regext[1] ... */
+  [5] opcode
+  [6] 0
+  [6] 29
+  [6] null
+  [9] 0
+end
+
Index: btkb/output/bt_program23.icode
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/btkb/output/bt_program23.icode	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/btkb/output/bt_program23.icode	(working copy)
@@ -0,0 +1,22409 @@
+ 00000000  0x00000027 bmark1  0x00000025 , 0x0000001a 
+ 00000001  0x00000028 beq  0x00000000 , 0x00000045 
+ 00000002  0x00000029 beq  0x00000003 , 0x00000049 
+ 00000003  0x0000002a beq  0x00000005 , 0x00000055 
+ 00000004  0x0000002b beq  0x00000006 , 0x00000300 
+ 00000005  0x0000002c beq  0x0000000a , 0x00000321 
+ 00000006  0x0000002d beq  0x00000027 , 0x00000325 
+ 00000007  0x0000002e beq  0x00000028 , 0x00000337 
+ 00000008  0x0000002f beq  0x0000002b , 0x0000033d 
+ 00000009  0x00000030 beq  0x00000042 , 0x00000348 
+ 00000010  0x00000031 beq  0x00000043 , 0x0000034c 
+ 00000011  0x00000032 beq  0x00000050 , 0x00000354 
+ 00000012  0x00000033 beq  0x00000054 , 0x00000363 
+ 00000013  0x00000034 beq  0x00000031 , 0x00000041 
+ 00000014  0x00000035 beq  0x00000033 , 0x0000003e 
+ 00000015  0x00000036 beq  0x00000090 , 0x0000020e 
+ 00000016  0x00000037 beq  0x00000092 , 0x000001d8 
+ 00000017  0x00000038 beq  0x00000094 , 0x000001de 
+ 00000018  0x00000039 beq  0x00000095 , 0x000001c8 
+ 00000019  0x0000003a beq  0x000000b0 , 0x000002fe 
+ 00000020  0x0000003b beq  0x000000b1 , 0x0000018c 
+ 00000021  0x0000003c beq  0x000000b2 , 0x000001a0 
+ 00000022  0x0000003d beq  0x000000b3 , 0x000001ba 
+ 00000023  0x0000003e beq  0x000000b6 , 0x000001c3 
+ 00000024  0x0000003f beq  0x000000b9 , 0x00000194 
+ 00000025  0x00000040 branch  0x00003bf1 
+ 00000026  0x00000043 beq  0x00000018 , 0x0000036f 
+ 00000027  0x00000044 beq  0x0000001b , 0x00000377 
+ 00000028  0x00000045 beq  0x00000023 , 0x00000396 
+ 00000029  0x00000046 beq  0x00000024 , 0x000003b2 
+ 00000030  0x00000047 beq  0x00000032 , 0x00000430 
+ 00000031  0x00000048 beq  0x0000003b , 0x000053b0 
+ 00000032  0x00000049 beq  0x0000003e , 0x00000273 
+ 00000033  0x0000004a beq  0x0000003f , 0x00000277 
+ 00000034  0x0000004b beq  0x0000004a , 0x0000047c 
+ 00000035  0x0000004c beq  0x0000004b , 0x00000429 
+ 00000036  0x0000004d beq  0x0000004c , 0x00000433 
+ 00000037  0x0000004e beq  0x0000004e , 0x00000439 
+ 00000038  0x0000004f beq  0x00000056 , 0x00000440 
+ 00000039  0x00000050 beq  0x00000061 , 0x00000447 
+ 00000040  0x00000051 beq  0x00000063 , 0x0000044c 
+ 00000041  0x00000052 beq  0x00000064 , 0x00000470 
+ 00000042  0x00000053 beq  0x00000065 , 0x000004a6 
+ 00000043  0x00000054 beq  0x00000069 , 0x00000602 
+ 00000044  0x00000055 beq  0x0000006a , 0x000005ed 
+ 00000045  0x00000056 beq  0x0000006b , 0x000005ef 
+ 00000046  0x00000057 beq  0x0000006e , 0x0000060d 
+ 00000047  0x00000058 beq  0x0000006f , 0x00000487 
+ 00000048  0x00000059 beq  0x00000087 , 0x00000127 
+ 00000049  0x0000005a beq  0x0000008d , 0x00000292 
+ 00000050  0x0000005b beq  0x0000008e , 0x000002ab 
+ 00000051  0x0000005c beq  0x0000008f , 0x0000027b 
+ 00000052  0x0000005d beq  0x000000bd , 0x00000289 
+ 00000053  0x0000005e beq  0x000000cd , 0x0000021b 
+ 00000054  0x0000005f beq  0x000000cf , 0x00000133 
+ 00000055  0x00000060 beq  0x000000d0 , 0x00000148 
+ 00000056  0x00000061 beq  0x0000009c , 0x000003b6 
+ 00000057  0x00000062 beq  0x0000009f , 0x000003cc 
+ 00000058  0x00000063 beq  0x000000e2 , 0x000003d9 
+ 00000059  0x00000064 beq  0x000000e3 , 0x000003eb 
+ 00000060  0x00000065 beq  0x000000e6 , 0x00000403 
+ 00000061  0x00000066 branch  0x00003bf1 
+ 00000062  0x0000006a arg  0x00004040 , 0x00000011 
+ 00000063  0x0000006b force  0x00000001 , 0x00000039 
+ 00000064  0x0000006c branch  0x00003305 
+ 00000065  0x0000006f arg  0x00004040 , 0x00000005 
+ 00000066  0x00000070 arg  0x0000000a , 0x00000039 
+ 00000067  0x00000071 call  0x00007e3b 
+ 00000068  0x00000072 branch  0x000032d8 
+ 00000069  0x00000076 hfetch  0x00000001 , 0x0000813b 
+ 00000070  0x00000077 store  0x00000001 , 0x00000b81 
+ 00000071  0x00000078 hjam  0x00000008 , 0x00008006 
+ 00000072  0x00000079 branch  0x00003003 
+ 00000073  0x0000007e call  0x000000d7 
+ 00000074  0x0000007f call  0x000000c9 
+ 00000075  0x00000080 call  0x0000005a 
+ 00000076  0x00000081 call  0x0000004e 
+ 00000077  0x00000082 branch  0x00003015 
+ 00000078  0x00000085 fetcht  0x00000002 , 0x000047f4 
+ 00000079  0x00000086 fetch  0x00000001 , 0x000043d8 
+ 00000080  0x00000087 nsetflag  0x00000034 , 0x0000000b , 0x00000002 
+ 00000081  0x00000088 fetch  0x00000001 , 0x00004133 
+ 00000082  0x00000089 nsetflag  0x00000034 , 0x00000006 , 0x00000002 
+ 00000083  0x0000008a storet  0x00000002 , 0x000047f4 
+ 00000084  0x0000008b rtn 
+ 00000085  0x0000008e call  0x00003392 
+ 00000086  0x0000008f call  0x00003407 
+ 00000087  0x00000090 call  0x00003024 
+ 00000088  0x00000091 call  0x0000062e 
+ 00000089  0x00000092 branch  0x00003022 
+ 00000090  0x00000096 fetch  0x00000001 , 0x000047dc 
+ 00000091  0x00000097 branch  0x0000005e , 0x00000034 
+ 00000092  0x00000098 fetch  0x00000001 , 0x00004793 
+ 00000093  0x00000099 rtn  0x00000034 
+ 00000094  0x0000009b call  0x00000122 
+ 00000095  0x0000009c rtn  0x00000028 
+ 00000096  0x0000009d byteswap  0x0000003f , 0x0000003f 
+ 00000097  0x0000009e copy  0x0000003f , 0x00000006 
+ 00000098  0x0000009f call  0x00000103 
+ 00000099  0x000000a0 store  0x00000001 , 0x00004ba7 
+ 00000100  0x000000a1 beq  0x00000001 , 0x00000073 
+ 00000101  0x000000a2 beq  0x00000006 , 0x0000007d 
+ 00000102  0x000000a3 copy  0x0000003f , 0x00000002 
+ 00000103  0x000000a4 copy  0x00000006 , 0x00000011 
+ 00000104  0x000000a5 fetch  0x00000001 , 0x00004040 
+ 00000105  0x000000a6 bbit0  0x00000000 , 0x00000070 
+ 00000106  0x000000a7 copy  0x00000011 , 0x00000006 
+ 00000107  0x000000a8 rtnmark0  0x00000009 
+ 00000108  0x000000a9 copy  0x00000002 , 0x0000003f 
+ 00000109  0x000000aa beq  0x00000003 , 0x0000007f 
+ 00000110  0x000000ab beq  0x00000005 , 0x0000009d 
+ 00000111  0x000000ac branch  0x00003bf1 
+ 00000112  0x000000af copy  0x00000011 , 0x00000006 
+ 00000113  0x000000b0 arg  0x000000f8 , 0x00000005 
+ 00000114  0x000000b1 branch  0x000000fb 
+ 00000115  0x000000b4 call  0x00000103 
+ 00000116  0x000000b5 call  0x00000103 
+ 00000117  0x000000b6 store  0x00000001 , 0x00000b7d 
+ 00000118  0x000000b7 call  0x00000078 
+ 00000119  0x000000b8 branch  0x00007c33 
+ 00000120  0x000000ba call  0x00000106 
+ 00000121  0x000000bb copy  0x00000006 , 0x00000002 
+ 00000122  0x000000bc byteswap  0x00000002 , 0x00000002 
+ 00000123  0x000000bd storet  0x00000002 , 0x00004b9a 
+ 00000124  0x000000be rtn 
+ 00000125  0x000000c1 arg  0x00004d34 , 0x00000005 
+ 00000126  0x000000c2 branch  0x000000fb 
+ 00000127  0x000000c5 call  0x00000103 
+ 00000128  0x000000c6 copy  0x0000003f , 0x00000011 
+ 00000129  0x000000c7 copy  0x00000006 , 0x0000003f 
+ 00000130  0x000000c8 store  0x00000002 , 0x000002b7 
+ 00000131  0x000000c9 call  0x0000527c 
+ 00000132  0x000000ca nbranch  0x00000088 , 0x00000034 
+ 00000133  0x000000cb increase  0x00000001 , 0x00000011 
+ 00000134  0x000000cc call  0x00004b2c 
+ 00000135  0x000000cd branch  0x0000008d 
+ 00000136  0x000000cf arg  0x00004bad , 0x00000005 
+ 00000137  0x000000d0 copy  0x00000011 , 0x00000039 
+ 00000138  0x000000d1 fetch  0x00000002 , 0x000002b7 
+ 00000139  0x000000d2 copy  0x0000003f , 0x00000006 
+ 00000140  0x000000d3 branch  0x000000fd 
+ 00000141  0x000000d6 add  0x00000005 , 0xfffffffe , 0x00000012 
+ 00000142  0x000000d7 fetch  0x00000002 , 0x000042b7 
+ 00000143  0x000000d8 istore  0x00000002 , 0x00000005 
+ 00000144  0x000000d9 setarg  0x000000a1 
+ 00000145  0x000000da istore  0x00000001 , 0x00000005 
+ 00000146  0x000000db add  0x00000011 , 0xffffffff , 0x00000039 
+ 00000147  0x000000dc fetch  0x00000002 , 0x000002b7 
+ 00000148  0x000000dd copy  0x0000003f , 0x00000006 
+ 00000149  0x000000de call  0x000000fd 
+ 00000150  0x000000df copy  0x00000012 , 0x00000006 
+ 00000151  0x000000e0 ifetch  0x00000002 , 0x00000006 
+ 00000152  0x000000e1 store  0x00000002 , 0x00004c7b 
+ 00000153  0x000000e2 add  0x0000003f , 0x00000002 , 0x00000039 
+ 00000154  0x000000e3 call  0x00007e45 
+ 00000155  0x000000e4 jam  0x00000064 , 0x00004c7a 
+ 00000156  0x000000e5 rtn 
+ 00000157  0x000000e7 copy  0x00000006 , 0x00000011 
+ 00000158  0x000000e9 fetch  0x00000001 , 0x00004ba9 
+ 00000159  0x000000ea add  0x0000003f , 0x00000001 , 0x00000002 
+ 00000160  0x000000eb and  0x00000002 , 0x00000003 , 0x00000002 
+ 00000161  0x000000ec storet  0x00000001 , 0x00004ba9 
+ 00000162  0x000000ed mul32  0x0000003f , 0x00000007 , 0x0000003f 
+ 00000163  0x000000ee arg  0x00004bad , 0x00000005 
+ 00000164  0x000000ef iadd  0x00000005 , 0x00000005 
+ 00000165  0x000000f1 copy  0x00000011 , 0x00000006 
+ 00000166  0x000000f2 call  0x00000103 
+ 00000167  0x000000f3 copy  0x00000006 , 0x00000011 
+ 00000168  0x000000f4 increase  0xffffffff , 0x0000003f 
+ 00000169  0x000000f5 copy  0x0000003f , 0x00000039 
+ 00000170  0x000000f6 increase  0x00000007 , 0x0000003f 
+ 00000171  0x000000f7 store  0x00000001 , 0x00004c62 
+ 00000172  0x000000f8 copy  0x00000011 , 0x00000006 
+ 00000173  0x000000f9 call  0x00000103 
+ 00000174  0x000000fa copy  0x00000006 , 0x00000011 
+ 00000175  0x000000fb beq  0x00000001 , 0x000000b5 
+ 00000176  0x000000fc beq  0x00000002 , 0x000000bd 
+ 00000177  0x000000fd beq  0x00000003 , 0x000000bf 
+ 00000178  0x000000fe beq  0x00000004 , 0x000000c5 
+ 00000179  0x000000ff beq  0x00000006 , 0x000000c1 
+ 00000180  0x00000100 beq  0x00000008 , 0x000000c3 
+ 00000181  0x00000102 fetch  0x00000002 , 0x00004c91 
+ 00000182  0x00000104 istore  0x00000002 , 0x00000005 
+ 00000183  0x00000105 copy  0x00000011 , 0x00000006 
+ 00000184  0x00000106 call  0x000000fd 
+ 00000185  0x00000107 call  0x0000561e 
+ 00000186  0x00000108 nrtn  0x00000034 
+ 00000187  0x00000109 jam  0x0000001b , 0x00000b7d 
+ 00000188  0x0000010a branch  0x00005620 
+ 00000189  0x0000010d fetch  0x00000002 , 0x00004c93 
+ 00000190  0x0000010e branch  0x000000b6 
+ 00000191  0x00000110 fetch  0x00000002 , 0x00004c95 
+ 00000192  0x00000111 branch  0x000000b6 
+ 00000193  0x00000113 fetch  0x00000002 , 0x00004c99 
+ 00000194  0x00000114 branch  0x000000b6 
+ 00000195  0x00000116 fetch  0x00000002 , 0x00004c99 
+ 00000196  0x00000117 branch  0x000000b6 
+ 00000197  0x0000011b fetch  0x00000002 , 0x00004c97 
+ 00000198  0x0000011c istore  0x00000002 , 0x00000005 
+ 00000199  0x0000011d copy  0x00000011 , 0x00000006 
+ 00000200  0x0000011e branch  0x000000fd 
+ 00000201  0x00000123 fetcht  0x00000004 , 0x00004d28 
+ 00000202  0x00000124 copy  0x00000022 , 0x0000003f 
+ 00000203  0x00000125 isub  0x00000002 , 0x0000003f 
+ 00000204  0x00000126 fetcht  0x00000002 , 0x00004d2c 
+ 00000205  0x00000127 idiv  0x00000002 
+ 00000206  0x00000128 call  0x00007efd 
+ 00000207  0x00000129 quotient  0x0000003f 
+ 00000208  0x0000012a rtn  0x00000034 
+ 00000209  0x0000012b copy  0x00000022 , 0x00000002 
+ 00000210  0x0000012c storet  0x00000004 , 0x00004d28 
+ 00000211  0x0000012d fetch  0x00000001 , 0x00004d2e 
+ 00000212  0x0000012e increase  0x00000001 , 0x0000003f 
+ 00000213  0x0000012f store  0x00000001 , 0x00004d2e 
+ 00000214  0x00000130 rtn 
+ 00000215  0x00000136 fetcht  0x00000004 , 0x00004c3a 
+ 00000216  0x00000137 copy  0x00000022 , 0x0000003f 
+ 00000217  0x00000138 isub  0x00000002 , 0x0000003f 
+ 00000218  0x0000013a arg  0x00000640 , 0x00000002 
+ 00000219  0x0000013b idiv  0x00000002 
+ 00000220  0x0000013c call  0x00007efd 
+ 00000221  0x0000013d quotient  0x0000003f 
+ 00000222  0x0000013e rtn  0x00000034 
+ 00000223  0x0000013f copy  0x00000022 , 0x00000002 
+ 00000224  0x00000140 storet  0x00000004 , 0x00004c3a 
+ 00000225  0x00000141 fetcht  0x00000002 , 0x00004ba5 
+ 00000226  0x00000142 byteswap  0x00000002 , 0x00000002 
+ 00000227  0x00000143 iadd  0x00000002 , 0x0000003f 
+ 00000228  0x00000144 byteswap  0x0000003f , 0x0000003f 
+ 00000229  0x00000145 store  0x00000002 , 0x00004ba5 
+ 00000230  0x00000146 byteswap  0x0000003f , 0x0000003f 
+ 00000231  0x00000147 and  0x0000003f , 0x00000003 , 0x0000003f 
+ 00000232  0x00000148 rtnne  0x00000000 
+ 00000233  0x0000014a hjam  0x000000af , 0x00008971 
+ 00000234  0x0000014c hfetch  0x00000001 , 0x00008053 
+ 00000235  0x0000014d set1  0x00000007 , 0x0000003f 
+ 00000236  0x0000014e hstore  0x00000001 , 0x00008053 
+ 00000237  0x0000014f hfetch  0x00000001 , 0x00008973 
+ 00000238  0x00000150 or_into  0x00000030 , 0x0000003f 
+ 00000239  0x00000151 hstore  0x00000001 , 0x00008973 
+ 00000240  0x00000152 hjam  0x00000074 , 0x00008906 
+ 00000241  0x00000153 hjam  0x0000007c , 0x00008906 
+ 00000242  0x00000154 hjam  0x000000aa , 0x00008972 
+ 00000243  0x00000155 nop  0x00001388 
+ 00000244  0x00000156 hfetcht  0x00000002 , 0x00008150 
+ 00000245  0x00000157 hfetch  0x00000001 , 0x00008053 
+ 00000246  0x00000158 set0  0x00000007 , 0x0000003f 
+ 00000247  0x00000159 hstore  0x00000001 , 0x00008053 
+ 00000248  0x0000015a byteswap  0x00000002 , 0x00000002 
+ 00000249  0x0000015b storet  0x00000002 , 0x00004c75 
+ 00000250  0x0000015c rtn 
+ 00000251  0x0000015f call  0x00000103 
+ 00000252  0x00000160 copy  0x0000003f , 0x00000039 
+ 00000253  0x00000162 call  0x000000ff 
+ 00000254  0x00000163 branch  0x00000078 
+ 00000255  0x00000166 call  0x00000103 
+ 00000256  0x00000167 istore  0x00000001 , 0x00000005 
+ 00000257  0x00000168 loop  0x000000ff 
+ 00000258  0x00000169 rtn 
+ 00000259  0x0000016c call  0x00000106 
+ 00000260  0x0000016d ifetch  0x00000001 , 0x00000006 
+ 00000261  0x0000016e rtn 
+ 00000262  0x00000171 setarg  0x00004b36 
+ 00000263  0x00000172 isub  0x00000006 , 0x0000003e 
+ 00000264  0x00000173 nrtn  0x00000005 
+ 00000265  0x00000174 arg  0x00004aa0 , 0x00000006 
+ 00000266  0x00000175 rtn 
+ 00000267  0x00000178 arg  0x00000003 , 0x00000039 
+ 00000268  0x00000179 arg  0x00004ba2 , 0x00000006 
+ 00000269  0x0000017b copy  0x00000006 , 0x00000011 
+ 00000270  0x0000017c fetch  0x00000002 , 0x00004ba0 
+ 00000271  0x0000017d byteswap  0x0000003f , 0x0000003f 
+ 00000272  0x0000017e copy  0x0000003f , 0x00000005 
+ 00000273  0x0000017f copy  0x00000011 , 0x00000006 
+ 00000274  0x00000181 ifetch  0x00000001 , 0x00000006 
+ 00000275  0x00000182 istore  0x00000001 , 0x00000005 
+ 00000276  0x00000183 call  0x0000011a 
+ 00000277  0x00000184 loop  0x00000112 
+ 00000278  0x00000185 copy  0x00000005 , 0x0000003f 
+ 00000279  0x00000186 byteswap  0x0000003f , 0x0000003f 
+ 00000280  0x00000187 store  0x00000002 , 0x00004ba0 
+ 00000281  0x00000188 rtn 
+ 00000282  0x0000018a setarg  0x00004b9a 
+ 00000283  0x0000018b isub  0x00000005 , 0x0000003e 
+ 00000284  0x0000018c nrtn  0x00000005 
+ 00000285  0x0000018d arg  0x00004b36 , 0x00000005 
+ 00000286  0x0000018e rtn 
+ 00000287  0x00000192 fetch  0x00000002 , 0x00004b9e 
+ 00000288  0x00000193 fetcht  0x00000002 , 0x00004ba0 
+ 00000289  0x00000194 branch  0x00000124 
+ 00000290  0x00000196 fetch  0x00000002 , 0x00004b9a 
+ 00000291  0x00000197 fetcht  0x00000002 , 0x00004b9c 
+ 00000292  0x00000199 isub  0x00000002 , 0x0000003e 
+ 00000293  0x0000019a branch  0x000069b1 , 0x00000005 
+ 00000294  0x0000019b branch  0x0000320b 
+ 00000295  0x0000019f copy  0x00000022 , 0x0000003f 
+ 00000296  0x000001a0 store  0x00000004 , 0x00004d24 
+ 00000297  0x000001a1 fetcht  0x00000001 , 0x000047ef 
+ 00000298  0x000001a2 fetch  0x00000001 , 0x00004d27 
+ 00000299  0x000001a3 isub  0x00000002 , 0x0000003e 
+ 00000300  0x000001a4 ncall  0x0000012e , 0x00000002 
+ 00000301  0x000001a5 branch  0x00007c06 
+ 00000302  0x000001a8 fetcht  0x00000004 , 0x00004d24 
+ 00000303  0x000001a9 storet  0x00000004 , 0x000047ec 
+ 00000304  0x000001aa storet  0x00000004 , 0x00004c3a 
+ 00000305  0x000001ab storet  0x00000004 , 0x00004d28 
+ 00000306  0x000001ac rtn 
+ 00000307  0x000001b0 arg  0x000047df , 0x00000011 
+ 00000308  0x000001b1 call  0x00007f9f 
+ 00000309  0x000001b2 rtn  0x00000034 
+ 00000310  0x000001b4 copy  0x0000003f , 0x00000013 
+ 00000311  0x000001b5 call  0x00000139 
+ 00000312  0x000001b6 branch  0x00003ea5 
+ 00000313  0x000001b8 rtneq  0x00000018 
+ 00000314  0x000001b9 beq  0x00000014 , 0x0000061f 
+ 00000315  0x000001ba beq  0x00000015 , 0x00000624 
+ 00000316  0x000001bb beq  0x00000006 , 0x00006614 
+ 00000317  0x000001bc beq  0x00000002 , 0x0000013f 
+ 00000318  0x000001bd branch  0x00003e7d 
+ 00000319  0x000001c0 jam  0x00000000 , 0x0000429d 
+ 00000320  0x000001c1 fetch  0x00000002 , 0x000047f4 
+ 00000321  0x000001c2 bbit1  0x00000007 , 0x00003f08 
+ 00000322  0x000001c3 isolate0  0x00000001 , 0x0000003f 
+ 00000323  0x000001c4 call  0x00000145 , 0x00000001 
+ 00000324  0x000001c5 branch  0x00003f08 
+ 00000325  0x000001c9 fetch  0x00000001 , 0x00000450 
+ 00000326  0x000001ca rtneq  0x00000002 
+ 00000327  0x000001cb branch  0x00003e7b 
+ 00000328  0x000001d0 storet  0x00000001 , 0x00000259 
+ 00000329  0x000001d1 fetch  0x00000001 , 0x00004c6d 
+ 00000330  0x000001d2 increase  0x00000001 , 0x0000003f 
+ 00000331  0x000001d3 store  0x00000001 , 0x00004c6d 
+ 00000332  0x000001d5 fetch  0x00000001 , 0x00000259 
+ 00000333  0x000001d6 rtn  0x00000034 
+ 00000334  0x000001d7 increase  0xffffffff , 0x0000003f 
+ 00000335  0x000001d8 store  0x00000001 , 0x00000259 
+ 00000336  0x000001d9 call  0x00000168 
+ 00000337  0x000001da call  0x0000016f 
+ 00000338  0x000001db call  0x00000154 
+ 00000339  0x000001dc branch  0x0000014c 
+ 00000340  0x000001df fetch  0x00000001 , 0x00004c9d 
+ 00000341  0x000001e0 nrtn  0x00000034 
+ 00000342  0x000001e1 fetch  0x00000001 , 0x00004c7a 
+ 00000343  0x000001e2 rtn  0x00000034 
+ 00000344  0x000001e3 increase  0xffffffff , 0x0000003f 
+ 00000345  0x000001e4 store  0x00000001 , 0x00004c7a 
+ 00000346  0x000001e5 rtnne  0x00000001 
+ 00000347  0x000001e6 jam  0x00000064 , 0x00004c7a 
+ 00000348  0x000001e9 fetch  0x00000002 , 0x000047f4 
+ 00000349  0x000001eb rtnbit0  0x00000005 
+ 00000350  0x000001ec fetch  0x00000002 , 0x00004c7b 
+ 00000351  0x000001ed rtn  0x00000034 
+ 00000352  0x000001ee call  0x0000527e 
+ 00000353  0x000001ef nrtn  0x00000034 
+ 00000354  0x000001f0 fetch  0x00000002 , 0x00004c7b 
+ 00000355  0x000001f1 copy  0x0000003f , 0x00000011 
+ 00000356  0x000001f2 call  0x00004b2c 
+ 00000357  0x000001f3 add  0x00000011 , 0x00000002 , 0x00000039 
+ 00000358  0x000001f4 arg  0x00004c7d , 0x00000006 
+ 00000359  0x000001f5 branch  0x00007e45 
+ 00000360  0x000001f8 fetch  0x00000001 , 0x000047f2 
+ 00000361  0x000001f9 rtn  0x00000034 
+ 00000362  0x000001fa increase  0xffffffff , 0x0000003f 
+ 00000363  0x000001fb store  0x00000001 , 0x000047f2 
+ 00000364  0x000001fc nrtn  0x00000034 
+ 00000365  0x000001fd call  0x00003ebd 
+ 00000366  0x000001fe branch  0x00004b22 
+ 00000367  0x00000201 fetch  0x00000001 , 0x00004c0b 
+ 00000368  0x00000202 rtn  0x00000034 
+ 00000369  0x00000203 increase  0xffffffff , 0x0000003f 
+ 00000370  0x00000204 store  0x00000001 , 0x00004c0b 
+ 00000371  0x00000205 rtn 
+ 00000372  0x00000209 copy  0x00000013 , 0x0000003f 
+ 00000373  0x0000020a and_into  0x000000f0 , 0x0000003f 
+ 00000374  0x0000020b rtneq  0x00000050 
+ 00000375  0x0000020c call  0x0000017c 
+ 00000376  0x0000020d copy  0x00000013 , 0x0000003f 
+ 00000377  0x0000020e rtn  0x00000034 
+ 00000378  0x0000020f store  0x00000001 , 0x00004ba4 
+ 00000379  0x00000210 branch  0x0000010b 
+ 00000380  0x00000212 copy  0x00000013 , 0x0000003f 
+ 00000381  0x00000213 beq  0x0000000b , 0x00000180 
+ 00000382  0x00000214 beq  0x00000002 , 0x00000188 
+ 00000383  0x00000215 rtn 
+ 00000384  0x00000217 jam  0x00000028 , 0x00004c7a 
+ 00000385  0x00000218 setarg  0x0000000a 
+ 00000386  0x00000219 store  0x00000002 , 0x00004c7b 
+ 00000387  0x0000021a fetch  0x00000002 , 0x000042b7 
+ 00000388  0x0000021b istore  0x00000002 , 0x00000005 
+ 00000389  0x0000021c setarg  0x000001a1 
+ 00000390  0x0000021d istore  0x00000002 , 0x00000005 
+ 00000391  0x0000021e rtn 
+ 00000392  0x00000220 jam  0x00000000 , 0x00004c7a 
+ 00000393  0x00000221 arg  0x00000014 , 0x00000039 
+ 00000394  0x00000222 arg  0x00004c7b , 0x00000005 
+ 00000395  0x00000223 branch  0x00007e3f 
+ 00000396  0x0000022d jam  0x0000007f , 0x0000416e 
+ 00000397  0x0000022e call  0x00003cf3 
+ 00000398  0x0000022f fetch  0x00000001 , 0x00004c77 
+ 00000399  0x00000230 rtn  0x00000034 
+ 00000400  0x00000231 jam  0x00000000 , 0x00004c77 
+ 00000401  0x00000232 copy  0x00000022 , 0x0000003f 
+ 00000402  0x00000233 store  0x00000004 , 0x00004c3a 
+ 00000403  0x00000234 rtn 
+ 00000404  0x00000239 fetch  0x00000001 , 0x00004219 
+ 00000405  0x0000023a nrtn  0x00000034 
+ 00000406  0x0000023b hjam  0x00000006 , 0x00008042 
+ 00000407  0x0000023c setarg  0x00000f0c 
+ 00000408  0x0000023d call  0x00003da7 
+ 00000409  0x0000023e setarg  0x00030d40 
+ 00000410  0x0000023f call  0x00003bf3 
+ 00000411  0x00000240 until  0x0000003e , 0x00000033 
+ 00000412  0x00000241 copy  0x00000031 , 0x00000030 
+ 00000413  0x00000242 call  0x00003b36 
+ 00000414  0x00000243 nop  0x00001388 
+ 00000415  0x00000244 branch  0x00003d9d 
+ 00000416  0x00000248 rtnmark1  0x00000023 
+ 00000417  0x00000249 fetch  0x00000002 , 0x000047f4 
+ 00000418  0x0000024a bbit1  0x00000009 , 0x00003d1e 
+ 00000419  0x0000024b call  0x00003cab 
+ 00000420  0x0000024c fetch  0x00000003 , 0x00004210 
+ 00000421  0x0000024d rtn  0x00000034 
+ 00000422  0x00000250 fetch  0x00000001 , 0x00004131 
+ 00000423  0x00000251 rtn  0x00000034 
+ 00000424  0x00000253 call  0x0000527e 
+ 00000425  0x00000254 nrtn  0x00000034 
+ 00000426  0x00000255 call  0x00003dca 
+ 00000427  0x00000256 nrtn  0x00000034 
+ 00000428  0x00000257 call  0x00003b36 
+ 00000429  0x00000258 fetch  0x00000001 , 0x000047dc 
+ 00000430  0x00000259 branch  0x00003d25 , 0x00000034 
+ 00000431  0x0000025a fetch  0x00000001 , 0x00004793 
+ 00000432  0x0000025b rtn  0x00000034 
+ 00000433  0x0000025c branch  0x00003d25 
+ 00000434  0x0000025f call  0x00000122 
+ 00000435  0x00000260 nrtn  0x00000028 
+ 00000436  0x00000261 call  0x0000011f 
+ 00000437  0x00000262 nrtn  0x00000028 
+ 00000438  0x00000263 jam  0x00000001 , 0x00000b7f 
+ 00000439  0x00000264 jam  0x00000001 , 0x00000b7e 
+ 00000440  0x00000265 call  0x000001bf 
+ 00000441  0x00000266 branch  0x00000122 
+ 00000442  0x00000269 call  0x000001b2 
+ 00000443  0x0000026a nrtn  0x00000028 
+ 00000444  0x0000026b fetch  0x00000001 , 0x00000b7f 
+ 00000445  0x0000026c nrtn  0x00000034 
+ 00000446  0x0000026d branch  0x00003d2d 
+ 00000447  0x00000270 fetch  0x00000001 , 0x00000b7e 
+ 00000448  0x00000271 nop  0x0000000a 
+ 00000449  0x00000272 bne  0x00000000 , 0x000001bf 
+ 00000450  0x00000273 rtn 
+ 00000451  0x00000277 call  0x000001b2 
+ 00000452  0x00000278 nrtn  0x00000028 
+ 00000453  0x00000279 fetch  0x00000001 , 0x00000b7f 
+ 00000454  0x0000027a nrtn  0x00000034 
+ 00000455  0x0000027b branch  0x00003d4f 
+ 00000456  0x00000280 call  0x000001ca 
+ 00000457  0x00000281 branch  0x00003aaf 
+ 00000458  0x00000283 fetch  0x00000001 , 0x00004219 
+ 00000459  0x00000284 nbranch  0x000001d0 , 0x00000034 
+ 00000460  0x00000285 call  0x00003d91 
+ 00000461  0x00000286 nop  0x00007530 
+ 00000462  0x00000287 nop  0x00007530 
+ 00000463  0x00000288 nop  0x00007530 
+ 00000464  0x0000028a call  0x00003b0a 
+ 00000465  0x0000028b hjam  0x00000004 , 0x00008042 
+ 00000466  0x0000028c hfetch  0x00000001 , 0x0000896b 
+ 00000467  0x0000028d and_into  0x000000cf , 0x0000003f 
+ 00000468  0x0000028e hstore  0x00000001 , 0x0000896b 
+ 00000469  0x0000028f or_into  0x00000030 , 0x0000003f 
+ 00000470  0x00000290 hstore  0x00000001 , 0x0000896b 
+ 00000471  0x00000291 rtn 
+ 00000472  0x00000296 storet  0x00000001 , 0x00000017 
+ 00000473  0x00000297 add  0x00000002 , 0x00000004 , 0x00000011 
+ 00000474  0x00000298 branch  0x00003a86 
+ 00000475  0x0000029b storet  0x00000001 , 0x00000017 
+ 00000476  0x0000029c add  0x00000002 , 0x00000000 , 0x00000011 
+ 00000477  0x0000029d branch  0x00003ab6 
+ 00000478  0x000002a0 call  0x000001db 
+ 00000479  0x000002a1 setarg  0x00000500 
+ 00000480  0x000002a2 call  0x00003bf3 
+ 00000481  0x000002a4 hjam  0x00000001 , 0x00008906 
+ 00000482  0x000002a5 hjam  0x0000003c , 0x00008900 
+ 00000483  0x000002a6 hjam  0x000000e0 , 0x00008901 
+ 00000484  0x000002a7 hjam  0x00000012 , 0x0000096d 
+ 00000485  0x000002a8 nop  0x0000000a 
+ 00000486  0x000002a9 hjam  0x00000001 , 0x00008902 
+ 00000487  0x000002aa hjam  0x0000003d , 0x00008902 
+ 00000488  0x000002ab nop  0x0000000a 
+ 00000489  0x000002ac hjam  0x000000b7 , 0x00008903 
+ 00000490  0x000002ad nop  0x0000000a 
+ 00000491  0x000002ae hjam  0x0000007d , 0x00008902 
+ 00000492  0x000002af fetch  0x00000001 , 0x00004bef 
+ 00000493  0x000002b0 bne  0x000000ff , 0x000001f6 
+ 00000494  0x000002b1 fetch  0x00000005 , 0x00004a91 
+ 00000495  0x000002b2 istore  0x00000005 , 0x00000005 
+ 00000496  0x000002b3 ifetch  0x00000005 , 0x00000006 
+ 00000497  0x000002b4 istore  0x00000005 , 0x00000005 
+ 00000498  0x000002b5 hjam  0x000000df , 0x00000956 
+ 00000499  0x000002b6 call  0x000001fd 
+ 00000500  0x000002b7 hjam  0x000000df , 0x00000955 
+ 00000501  0x000002b8 rtn 
+ 00000502  0x000002bb fetch  0x00000005 , 0x00004a87 
+ 00000503  0x000002bc istore  0x00000005 , 0x00000005 
+ 00000504  0x000002bd ifetch  0x00000005 , 0x00000006 
+ 00000505  0x000002be istore  0x00000005 , 0x00000005 
+ 00000506  0x000002bf hjam  0x000000c2 , 0x00000956 
+ 00000507  0x000002c0 hjam  0x000000d0 , 0x00000955 
+ 00000508  0x000002c1 rtn 
+ 00000509  0x000002c8 nop  0x00000004 
+ 00000510  0x000002c9 hjam  0x000000d1 , 0x00000955 
+ 00000511  0x000002ca nop  0x00000004 
+ 00000512  0x000002cb hjam  0x000000d2 , 0x00000955 
+ 00000513  0x000002cc nop  0x00000004 
+ 00000514  0x000002cd hjam  0x000000d4 , 0x00000955 
+ 00000515  0x000002ce nop  0x00000004 
+ 00000516  0x000002d1 rtn 
+ 00000517  0x000002d4 hjam  0x000000d4 , 0x00000955 
+ 00000518  0x000002d5 nop  0x00000004 
+ 00000519  0x000002d6 hjam  0x000000d2 , 0x00000955 
+ 00000520  0x000002d7 nop  0x00000004 
+ 00000521  0x000002d8 hjam  0x000000d1 , 0x00000955 
+ 00000522  0x000002d9 nop  0x00000004 
+ 00000523  0x000002da hjam  0x000000d0 , 0x00000955 
+ 00000524  0x000002db hjam  0x000000c0 , 0x00000956 
+ 00000525  0x000002dc rtn 
+ 00000526  0x000002df branch  0x00003a6f , 0x00000021 
+ 00000527  0x000002e0 call  0x00000205 
+ 00000528  0x000002e1 branch  0x00003a6f 
+ 00000529  0x000002e4 call  0x0000527c 
+ 00000530  0x000002e5 nrtn  0x00000034 
+ 00000531  0x000002e6 branch  0x0000005a 
+ 00000532  0x000002e9 enable  0x00000028 
+ 00000533  0x000002ea hfetch  0x00000004 , 0x00008138 
+ 00000534  0x000002eb setflag  0x00000028 , 0x0000001a , 0x0000003f 
+ 00000535  0x000002ec hstore  0x00000004 , 0x0000804c 
+ 00000536  0x000002ed call  0x00003db0 
+ 00000537  0x000002ee jam  0x00000001 , 0x000000a2 
+ 00000538  0x000002f0 rtn 
+ 00000539  0x000002f3 fetch  0x00000001 , 0x00004419 
+ 00000540  0x000002f4 increase  0x00000002 , 0x0000003f 
+ 00000541  0x000002f5 store  0x00000001 , 0x000043f9 
+ 00000542  0x000002f6 jam  0x00000000 , 0x00000b7e 
+ 00000543  0x000002f7 jam  0x00000006 , 0x00000177 
+ 00000544  0x000002f8 call  0x00003fa4 
+ 00000545  0x000002f9 setarg  0x00000211 
+ 00000546  0x000002fa store  0x00000002 , 0x0000428e 
+ 00000547  0x000002fb setarg  0x0000021a 
+ 00000548  0x000002fc store  0x00000002 , 0x0000428a 
+ 00000549  0x000002fd setarg  0x00000174 
+ 00000550  0x000002fe store  0x00000002 , 0x00004292 
+ 00000551  0x000002ff setarg  0x0000027a 
+ 00000552  0x00000300 store  0x00000002 , 0x00004290 
+ 00000553  0x00000301 setarg  0x0000005a 
+ 00000554  0x00000302 store  0x00000002 , 0x0000428c 
+ 00000555  0x00000303 setarg  0x00000214 
+ 00000556  0x00000304 store  0x00000002 , 0x00004288 
+ 00000557  0x00000305 setarg  0x00004aa0 
+ 00000558  0x00000306 byteswap  0x0000003f , 0x0000003f 
+ 00000559  0x00000307 store  0x00000002 , 0x00004b9a 
+ 00000560  0x00000308 store  0x00000002 , 0x00004b9c 
+ 00000561  0x00000309 call  0x00003e0b 
+ 00000562  0x0000030a setarg  0x00004b36 
+ 00000563  0x0000030b byteswap  0x0000003f , 0x0000003f 
+ 00000564  0x0000030c store  0x00000002 , 0x00004b9e 
+ 00000565  0x0000030d store  0x00000002 , 0x00004ba0 
+ 00000566  0x0000030e fetch  0x00000001 , 0x00004c77 
+ 00000567  0x0000030f beq  0x0000005a , 0x0000024e 
+ 00000568  0x00000310 branch  0x0000024c , 0x0000002b 
+ 00000569  0x00000311 fetch  0x00000002 , 0x00004c71 
+ 00000570  0x00000312 byteswap  0x0000003f , 0x0000003f 
+ 00000571  0x00000313 store  0x00000002 , 0x00004c71 
+ 00000572  0x00000314 fetch  0x00000002 , 0x00004c73 
+ 00000573  0x00000315 byteswap  0x0000003f , 0x0000003f 
+ 00000574  0x00000316 store  0x00000002 , 0x00004c73 
+ 00000575  0x00000317 call  0x00000259 
+ 00000576  0x00000318 fetch  0x00000008 , 0x000002a0 
+ 00000577  0x00000319 nbranch  0x00000246 , 0x00000034 
+ 00000578  0x0000031a fetch  0x00000002 , 0x00004ad4 
+ 00000579  0x0000031b byteswap  0x0000003f , 0x0000003f 
+ 00000580  0x0000031c branch  0x00000246 , 0x00000034 
+ 00000581  0x0000031d store  0x00000002 , 0x00004c73 
+ 00000582  0x0000031f call  0x0000062b 
+ 00000583  0x00000320 jam  0x0000002f , 0x00004ba4 
+ 00000584  0x00000322 call  0x0000010b 
+ 00000585  0x00000323 jam  0x00000000 , 0x00004c77 
+ 00000586  0x00000324 hjam  0x00000003 , 0x00008280 
+ 00000587  0x00000325 rtn 
+ 00000588  0x00000327 jam  0x00000030 , 0x00004ba4 
+ 00000589  0x00000328 branch  0x00000248 
+ 00000590  0x0000032a copy  0x00000027 , 0x0000003f 
+ 00000591  0x0000032b branch  0x00000281 , 0x00000034 
+ 00000592  0x0000032c call  0x00005b63 
+ 00000593  0x0000032d call  0x00004d99 
+ 00000594  0x0000032e setarg  0x00000000 
+ 00000595  0x0000032f store  0x00000008 , 0x00004040 
+ 00000596  0x00000330 store  0x00000002 , 0x000047f4 
+ 00000597  0x00000331 copy  0x00000022 , 0x0000003f 
+ 00000598  0x00000332 store  0x00000004 , 0x00004c3a 
+ 00000599  0x00000333 jam  0x00000033 , 0x00004ba4 
+ 00000600  0x00000334 branch  0x00000248 
+ 00000601  0x00000337 call  0x0000688a 
+ 00000602  0x00000338 setarg  0x000007e0 
+ 00000603  0x00000339 arg  0x000002a0 , 0x00000011 
+ 00000604  0x0000033a arg  0x0000000e , 0x00000002 
+ 00000605  0x0000033b call  0x000068d3 
+ 00000606  0x0000033c call  0x0000688d 
+ 00000607  0x0000033d fetch  0x00000001 , 0x000002a0 
+ 00000608  0x0000033e bbit1  0x00000000 , 0x00003bf1 
+ 00000609  0x0000033f fetch  0x00000008 , 0x000002a2 
+ 00000610  0x00000340 rtn  0x00000034 
+ 00000611  0x00000342 fetcht  0x00000002 , 0x000002a4 
+ 00000612  0x00000343 fetch  0x00000002 , 0x000002aa 
+ 00000613  0x00000344 copy  0x00000002 , 0x00000012 
+ 00000614  0x00000345 copy  0x0000003f , 0x00000011 
+ 00000615  0x00000346 isub  0x00000002 , 0x00000013 
+ 00000616  0x00000347 rshift2  0x00000013 , 0x00000013 
+ 00000617  0x00000348 copy  0x00000012 , 0x0000003f 
+ 00000618  0x00000349 isub  0x00000013 , 0x0000003f 
+ 00000619  0x0000034a byteswap  0x0000003f , 0x0000003f 
+ 00000620  0x0000034b store  0x00000002 , 0x00004c71 
+ 00000621  0x0000034c lshift  0x00000013 , 0x00000013 
+ 00000622  0x0000034d copy  0x00000011 , 0x0000003f 
+ 00000623  0x0000034e isub  0x00000013 , 0x0000003f 
+ 00000624  0x0000034f byteswap  0x0000003f , 0x0000003f 
+ 00000625  0x00000350 store  0x00000002 , 0x00004c73 
+ 00000626  0x00000351 rtn 
+ 00000627  0x00000355 jam  0x00000027 , 0x00000016 
+ 00000628  0x00000356 hjam  0x00000036 , 0x0000090f 
+ 00000629  0x00000357 hjam  0x0000005f , 0x0000090b 
+ 00000630  0x00000358 branch  0x000053d4 
+ 00000631  0x0000035a hjam  0x0000002e , 0x0000090f 
+ 00000632  0x0000035b hjam  0x000000ff , 0x0000090b 
+ 00000633  0x0000035c branch  0x000053d9 
+ 00000634  0x00000360 rtn 
+ 00000635  0x00000362 fetch  0x00000002 , 0x00004ba0 
+ 00000636  0x00000363 store  0x00000002 , 0x00004b9e 
+ 00000637  0x00000364 fetch  0x00000002 , 0x00004b9c 
+ 00000638  0x00000365 store  0x00000002 , 0x00004b9a 
+ 00000639  0x00000366 jam  0x00000003 , 0x00000b7e 
+ 00000640  0x00000367 call  0x000001bf 
+ 00000641  0x0000036b jam  0x0000005a , 0x00004c77 
+ 00000642  0x0000036c call  0x00003db8 
+ 00000643  0x0000036d hfetch  0x00000004 , 0x00008138 
+ 00000644  0x0000036e set0  0x0000000f , 0x0000003f 
+ 00000645  0x0000036f hstore  0x00000004 , 0x0000804c 
+ 00000646  0x00000370 call  0x00003db0 
+ 00000647  0x00000371 arg  0xffffffff , 0x00000002 
+ 00000648  0x00000372 branch  0x00003cda 
+ 00000649  0x00000375 ifetcht  0x00000005 , 0x00000011 
+ 00000650  0x00000376 and  0x00000002 , 0x000000ff , 0x0000003f 
+ 00000651  0x00000377 nbranch  0x0000028e , 0x00000034 
+ 00000652  0x00000378 rshift8  0x00000002 , 0x0000003f 
+ 00000653  0x00000379 istore  0x00000005 , 0x00000011 
+ 00000654  0x0000037b increase  0x00000004 , 0x00000011 
+ 00000655  0x0000037c ifetch  0x00000001 , 0x00000011 
+ 00000656  0x0000037d nrtn , 0x00000034 
+ 00000657  0x0000037e branch  0x00007f9c 
+ 00000658  0x00000384 call  0x00007c20 
+ 00000659  0x00000385 arg  0x000047e4 , 0x00000011 
+ 00000660  0x00000386 call  0x00007f9f 
+ 00000661  0x00000387 copy  0x0000003f , 0x00000002 
+ 00000662  0x00000388 call  0x00007c24 
+ 00000663  0x00000389 copy  0x00000002 , 0x0000003f 
+ 00000664  0x0000038a rtn  0x00000034 
+ 00000665  0x0000038b beq  0x00000021 , 0x000002a4 
+ 00000666  0x0000038c beq  0x00000022 , 0x000002a6 
+ 00000667  0x0000038d beq  0x00000023 , 0x000006c1 
+ 00000668  0x0000038f beq  0x00000001 , 0x000002e6 
+ 00000669  0x00000390 beq  0x0000000d , 0x000002c1 
+ 00000670  0x00000391 beq  0x0000002c , 0x000002c0 
+ 00000671  0x00000392 beq  0x0000002b , 0x000002cc 
+ 00000672  0x00000393 beq  0x00000003 , 0x000002e9 
+ 00000673  0x00000394 beq  0x0000002a , 0x000002f2 
+ 00000674  0x00000395 beq  0x00000012 , 0x00007c85 
+ 00000675  0x00000396 branch  0x00007c5a 
+ 00000676  0x00000398 jam  0x000000ff , 0x00004bef 
+ 00000677  0x00000399 branch  0x000006f4 
+ 00000678  0x0000039b set0  0x00000023 , 0x00000000 
+ 00000679  0x0000039c jam  0x000000ff , 0x00004bef 
+ 00000680  0x0000039d branch  0x000006ac 
+ 00000681  0x000003a1 jam  0x00000022 , 0x00000b7d 
+ 00000682  0x000003a2 branch  0x00005620 
+ 00000683  0x000003a5 fetch  0x00000001 , 0x0000007c 
+ 00000684  0x000003a6 branch  0x000002b0 , 0x00000034 
+ 00000685  0x000003a7 call  0x000061d9 
+ 00000686  0x000003a8 fetch  0x00000001 , 0x0000007c 
+ 00000687  0x000003a9 nbranch  0x00007c8c , 0x00000034 
+ 00000688  0x000003ab fetch  0x00000001 , 0x00000b7d 
+ 00000689  0x000003ac bmark0  0x00000009 , 0x00007c87 
+ 00000690  0x000003ad beq  0x00000004 , 0x000002b6 
+ 00000691  0x000003ae beq  0x00000011 , 0x000002a9 
+ 00000692  0x000003af beq  0x00000028 , 0x000002bc 
+ 00000693  0x000003b0 branch  0x00007c7b 
+ 00000694  0x000003b2 fetch  0x00000002 , 0x000047f4 
+ 00000695  0x000003b3 bbit0  0x00000003 , 0x000002b9 
+ 00000696  0x000003b4 branch  0x00007ca4 
+ 00000697  0x000003b6 setarg  0x0000000a 
+ 00000698  0x000003b7 store  0x00000004 , 0x00000051 
+ 00000699  0x000003b8 branch  0x00007ca4 
+ 00000700  0x000003bb jam  0x00000037 , 0x0000007c 
+ 00000701  0x000003bc fetch  0x00000002 , 0x00004c78 
+ 00000702  0x000003bd store  0x00000002 , 0x00000051 
+ 00000703  0x000003be rtn 
+ 00000704  0x000003c1 call  0x000002e6 
+ 00000705  0x000003c3 call  0x00003eff 
+ 00000706  0x000003c4 call  0x00007cd5 
+ 00000707  0x000003c5 jam  0x00000000 , 0x00004131 
+ 00000708  0x000003c6 random  0x0000003f 
+ 00000709  0x000003c7 store  0x00000001 , 0x000044f9 
+ 00000710  0x000003c9 jam  0x00000005 , 0x000043dc 
+ 00000711  0x000003ca setarg  0x00181203 
+ 00000712  0x000003cb store  0x00000003 , 0x000043e2 
+ 00000713  0x000003cd arg  0x00000007 , 0x00000002 
+ 00000714  0x000003ce call  0x000002d2 
+ 00000715  0x000003cf branch  0x00007cae 
+ 00000716  0x000003d2 jam  0x00000004 , 0x000043dc 
+ 00000717  0x000003d3 setarg  0x000000ff 
+ 00000718  0x000003d4 store  0x00000003 , 0x000043e2 
+ 00000719  0x000003d6 arg  0x00000000 , 0x00000002 
+ 00000720  0x000003d7 call  0x000002d2 
+ 00000721  0x000003d8 branch  0x00007cae 
+ 00000722  0x000003db fetch  0x00000001 , 0x000043f9 
+ 00000723  0x000003dc iadd  0x00000002 , 0x0000003f 
+ 00000724  0x000003dd add  0x0000003f , 0x0000000b , 0x0000003f 
+ 00000725  0x000003de sub  0x0000003f , 0x0000001f , 0x0000003e 
+ 00000726  0x000003df nbranch  0x000002e2 , 0x00000002 
+ 00000727  0x000003e0 store  0x00000001 , 0x000043d9 
+ 00000728  0x000003e2 arg  0x000043e5 , 0x00000005 
+ 00000729  0x000003e3 copy  0x00000002 , 0x0000003f 
+ 00000730  0x000003e4 ncall  0x000002df , 0x00000034 
+ 00000731  0x000003e6 fetch  0x00000001 , 0x000043f9 
+ 00000732  0x000003e7 copy  0x0000003f , 0x00000039 
+ 00000733  0x000003e8 arg  0x000043fa , 0x00000006 
+ 00000734  0x000003e9 branch  0x00007e45 
+ 00000735  0x000003ed copy  0x0000003f , 0x00000039 
+ 00000736  0x000003ee arg  0x00004d48 , 0x00000006 
+ 00000737  0x000003ef branch  0x00007e45 
+ 00000738  0x000003f2 fetch  0x00000001 , 0x000043f9 
+ 00000739  0x000003f3 add  0x0000003f , 0x0000000b , 0x0000003f 
+ 00000740  0x000003f4 store  0x00000001 , 0x000043d9 
+ 00000741  0x000003f5 rtn 
+ 00000742  0x000003f8 call  0x00003eff 
+ 00000743  0x000003f9 jam  0x00000006 , 0x00000177 
+ 00000744  0x000003fa branch  0x00007c97 
+ 00000745  0x000003fc call  0x00003bfa 
+ 00000746  0x000003fd call  0x00004d98 
+ 00000747  0x000003fe call  0x00005b62 
+ 00000748  0x000003ff jam  0x00000006 , 0x00000177 
+ 00000749  0x00000400 fetch  0x00000001 , 0x000047dc 
+ 00000750  0x00000401 beq  0x00000000 , 0x000002f0 
+ 00000751  0x00000402 jam  0x00000017 , 0x00000177 
+ 00000752  0x00000404 jam  0x00000001 , 0x0000425e 
+ 00000753  0x00000405 branch  0x00007ca2 
+ 00000754  0x00000409 fetch  0x00000002 , 0x000047f4 
+ 00000755  0x0000040a bbit1  0x00000009 , 0x00003f90 
+ 00000756  0x0000040b bbit1  0x00000000 , 0x000002fb 
+ 00000757  0x0000040c bbit1  0x00000007 , 0x00007cd5 
+ 00000758  0x0000040d bmark1  0x00000023 , 0x000006ac 
+ 00000759  0x0000040e jam  0x00000000 , 0x000043d8 
+ 00000760  0x0000040f call  0x00003f7e 
+ 00000761  0x00000411 jam  0x00000037 , 0x00000b7d 
+ 00000762  0x00000412 branch  0x00007c27 
+ 00000763  0x00000416 call  0x00003eff 
+ 00000764  0x00000417 call  0x00007cd5 
+ 00000765  0x00000419 branch  0x00003f77 
+ 00000766  0x0000041e call  0x00003b36 
+ 00000767  0x0000041f branch  0x00003cdc 
+ 00000768  0x00000423 call  0x00000302 
+ 00000769  0x00000424 branch  0x0000302c 
+ 00000770  0x00000426 arg  0x00000304 , 0x00000013 
+ 00000771  0x00000427 branch  0x00003301 
+ 00000772  0x0000042a bbit0  0x00000001 , 0x00003307 
+ 00000773  0x0000042c call  0x0000333d 
+ 00000774  0x0000042d call  0x00000311 
+ 00000775  0x0000042e isub  0x00000002 , 0x0000003f 
+ 00000776  0x0000042f increase  0x00000001 , 0x0000003f 
+ 00000777  0x00000430 branch  0x0000030b , 0x00000002 
+ 00000778  0x00000431 branch  0x00003325 
+ 00000779  0x00000433 iforce  0x00000012 
+ 00000780  0x00000434 add  0x00000011 , 0x00000002 , 0x00000006 
+ 00000781  0x00000435 ifetch  0x00000002 , 0x00000006 
+ 00000782  0x00000436 branch  0x00003327 , 0x00000034 
+ 00000783  0x00000437 call  0x00003349 
+ 00000784  0x00000438 branch  0x00000305 
+ 00000785  0x0000043c rshift16  0x0000003f , 0x0000000b 
+ 00000786  0x0000043d rshift8  0x0000000b , 0x0000000b 
+ 00000787  0x0000043e branch  0x0000031b , 0x00000005 
+ 00000788  0x0000043f compare  0x0000000f , 0x0000000b , 0x0000000f 
+ 00000789  0x00000440 nrtn  0x00000001 
+ 00000790  0x00000441 rshift16  0x00000002 , 0x0000000b 
+ 00000791  0x00000442 rshift8  0x0000000b , 0x0000000b 
+ 00000792  0x00000443 nrtn  0x00000005 
+ 00000793  0x00000444 set1  0x0000001c , 0x00000002 
+ 00000794  0x00000445 rtn 
+ 00000795  0x00000447 rshift16  0x00000002 , 0x0000000b 
+ 00000796  0x00000448 rshift8  0x0000000b , 0x0000000b 
+ 00000797  0x00000449 compare  0x0000000f , 0x0000000b , 0x0000000f 
+ 00000798  0x0000044a nrtn  0x00000001 
+ 00000799  0x0000044b set1  0x0000001c , 0x0000003f 
+ 00000800  0x0000044c rtn 
+ 00000801  0x00000450 storet  0x00000008 , 0x000002a0 
+ 00000802  0x00000451 call  0x00007e53 
+ 00000803  0x00000452 fetcht  0x00000008 , 0x000002a0 
+ 00000804  0x00000453 branch  0x0000307c 
+ 00000805  0x00000457 disable  0x00000028 
+ 00000806  0x00000458 fetch  0x00000002 , 0x00000032 
+ 00000807  0x00000459 arg  0x0000ffff , 0x00000002 
+ 00000808  0x0000045a isub  0x00000002 , 0x0000003e 
+ 00000809  0x0000045b nrtn  0x00000005 
+ 00000810  0x0000045c fetch  0x00000004 , 0x00000034 
+ 00000811  0x0000045d branch  0x0000032e , 0x00000030 
+ 00000812  0x0000045e isub  0x00000028 , 0x0000003f 
+ 00000813  0x0000045f branch  0x0000032f 
+ 00000814  0x00000462 isub  0x00000022 , 0x0000003f 
+ 00000815  0x00000464 sub  0x0000003f , 0x00000004 , 0x0000003e 
+ 00000816  0x00000465 nrtn  0x00000002 
+ 00000817  0x00000466 force  0x00000000 , 0x0000003f 
+ 00000818  0x00000467 store  0x00000002 , 0x00000032 
+ 00000819  0x00000468 branch  0x000034df 
+ 00000820  0x0000046c jam  0x00000020 , 0x00000b7d 
+ 00000821  0x0000046d call  0x00007c27 
+ 00000822  0x0000046e branch  0x00000338 
+ 00000823  0x00000473 storet  0x00000004 , 0x00000034 
+ 00000824  0x00000475 jam  0x00000001 , 0x00004748 
+ 00000825  0x00000476 setarg  0x0000ffff 
+ 00000826  0x00000477 store  0x00000002 , 0x00000032 
+ 00000827  0x00000478 jam  0x00000001 , 0x00000073 
+ 00000828  0x00000479 rtn 
+ 00000829  0x0000047c call  0x00003baa 
+ 00000830  0x0000047d call  0x00000340 
+ 00000831  0x0000047e branch  0x00003267 
+ 00000832  0x00000481 add  0x00000022 , 0x00000001 , 0x00000021 
+ 00000833  0x00000482 call  0x00003a54 
+ 00000834  0x00000483 force  0x00000003 , 0x00000024 
+ 00000835  0x00000484 call  0x00003a42 
+ 00000836  0x00000485 call  0x00003bae 
+ 00000837  0x00000486 call  0x00003bb4 
+ 00000838  0x00000487 call  0x00003bc5 
+ 00000839  0x00000488 branch  0x0000375c 
+ 00000840  0x0000048d call  0x00003e25 
+ 00000841  0x0000048e call  0x00006dec 
+ 00000842  0x0000048f call  0x000035d6 
+ 00000843  0x00000490 branch  0x00003480 
+ 00000844  0x00000494 call  0x00003d61 
+ 00000845  0x00000495 call  0x00003be2 
+ 00000846  0x00000496 branch  0x00003498 , 0x00000002 
+ 00000847  0x00000497 call  0x00003204 
+ 00000848  0x00000498 nbranch  0x00003498 , 0x00000028 
+ 00000849  0x00000499 call  0x00003812 
+ 00000850  0x0000049a nbranch  0x00000349 , 0x00000034 
+ 00000851  0x0000049b rtn 
+ 00000852  0x0000049f call  0x000032df 
+ 00000853  0x000004a0 nbranch  0x00003568 , 0x00000005 
+ 00000854  0x000004a1 fetch  0x00000001 , 0x00000047 
+ 00000855  0x000004a2 bbit0  0x00000003 , 0x00003571 
+ 00000856  0x000004a3 fetch  0x00000001 , 0x00004165 
+ 00000857  0x000004a4 beq  0x00000013 , 0x00003562 
+ 00000858  0x000004a5 fetch  0x00000002 , 0x00004c24 
+ 00000859  0x000004a6 sub  0x0000003f , 0x00000014 , 0x0000003e 
+ 00000860  0x000004a7 nbranch  0x00003562 , 0x00000002 
+ 00000861  0x000004a8 store  0x00000002 , 0x00000091 
+ 00000862  0x000004a9 fetch  0x00000001 , 0x00004c23 
+ 00000863  0x000004aa store  0x00000001 , 0x00000090 
+ 00000864  0x000004ab setarg  0x00004c26 
+ 00000865  0x000004ac store  0x00000002 , 0x00000179 
+ 00000866  0x000004ad branch  0x00003562 
+ 00000867  0x000004b1 fetch  0x00000002 , 0x00000091 
+ 00000868  0x000004b2 store  0x00000002 , 0x00004c24 
+ 00000869  0x000004b3 sub  0x0000003f , 0x00000014 , 0x0000003e 
+ 00000870  0x000004b4 nbranch  0x0000358f , 0x00000002 
+ 00000871  0x000004b5 iforce  0x00000039 
+ 00000872  0x000004b6 fetch  0x00000001 , 0x00000090 
+ 00000873  0x000004b7 store  0x00000001 , 0x00004c23 
+ 00000874  0x000004b8 fetch  0x00000002 , 0x00000179 
+ 00000875  0x000004b9 iforce  0x00000006 
+ 00000876  0x000004ba arg  0x00004c26 , 0x00000005 
+ 00000877  0x000004bb call  0x00007e45 
+ 00000878  0x000004bc branch  0x0000358f 
+ 00000879  0x000004c0 fetch  0x00000002 , 0x000002cd 
+ 00000880  0x000004c1 branch  0x00004dfc , 0x00000034 
+ 00000881  0x000004c2 fetch  0x00000001 , 0x000002cf 
+ 00000882  0x000004c3 beq  0x00000001 , 0x00000374 
+ 00000883  0x000004c4 branch  0x00004dbb 
+ 00000884  0x000004c6 call  0x0000527a 
+ 00000885  0x000004c7 nrtn  0x00000034 
+ 00000886  0x000004c8 branch  0x00004dc3 
+ 00000887  0x000004cc ifetch  0x00000001 , 0x00000006 
+ 00000888  0x000004cd beq  0x0000000a , 0x0000037a 
+ 00000889  0x000004ce branch  0x00004e14 
+ 00000890  0x000004d0 ifetch  0x00000001 , 0x00000006 
+ 00000891  0x000004d1 copy  0x0000003f , 0x00000007 
+ 00000892  0x000004d2 ifetch  0x00000002 , 0x00000006 
+ 00000893  0x000004d3 copy  0x0000003f , 0x00000011 
+ 00000894  0x000004d4 copy  0x00000013 , 0x0000003f 
+ 00000895  0x000004d5 isub  0x00000011 , 0x00000013 
+ 00000896  0x000004d6 setarg  0x0000000b 
+ 00000897  0x000004d7 istore  0x00000001 , 0x00000005 
+ 00000898  0x000004d8 copy  0x00000007 , 0x0000003f 
+ 00000899  0x000004d9 istore  0x00000001 , 0x00000005 
+ 00000900  0x000004da ifetch  0x00000002 , 0x00000006 
+ 00000901  0x000004dc beq  0x00000002 , 0x00000388 
+ 00000902  0x000004dd beq  0x00000003 , 0x0000038f 
+ 00000903  0x000004de branch  0x00003bf1 
+ 00000904  0x000004e0 setarg  0x00020008 
+ 00000905  0x000004e1 istore  0x00000006 , 0x00000005 
+ 00000906  0x000004e2 setarg  0x00000200 
+ 00000907  0x000004e3 istore  0x00000004 , 0x00000005 
+ 00000908  0x000004e4 force  0x0000000c , 0x0000003f 
+ 00000909  0x000004e5 iadd  0x00000012 , 0x00000012 
+ 00000910  0x000004e6 branch  0x00004e20 
+ 00000911  0x000004e8 setarg  0x0003000c 
+ 00000912  0x000004e9 istore  0x00000006 , 0x00000005 
+ 00000913  0x000004ea setarg  0x00000006 
+ 00000914  0x000004eb istore  0x00000008 , 0x00000005 
+ 00000915  0x000004ec force  0x00000010 , 0x0000003f 
+ 00000916  0x000004ed iadd  0x00000012 , 0x00000012 
+ 00000917  0x000004ee branch  0x00004e20 
+ 00000918  0x000004f2 call  0x000052c4 
+ 00000919  0x000004f3 force  0x00000000 , 0x00000012 
+ 00000920  0x000004f4 call  0x000052d0 
+ 00000921  0x000004f5 copy  0x0000003f , 0x00000005 
+ 00000922  0x000004f6 fetch  0x00000002 , 0x000002cd 
+ 00000923  0x000004f7 copy  0x0000003f , 0x00000013 
+ 00000924  0x000004f8 fetch  0x00000002 , 0x000002cb 
+ 00000925  0x000004f9 iforce  0x00000006 
+ 00000926  0x000004fa call  0x000003a0 
+ 00000927  0x000004fb branch  0x00005110 
+ 00000928  0x000004fd ifetch  0x00000001 , 0x00000006 
+ 00000929  0x000004fe beq  0x0000000a , 0x000003a3 
+ 00000930  0x000004ff branch  0x00005116 
+ 00000931  0x00000501 ifetch  0x00000001 , 0x00000006 
+ 00000932  0x00000502 copy  0x0000003f , 0x00000007 
+ 00000933  0x00000503 ifetch  0x00000002 , 0x00000006 
+ 00000934  0x00000504 copy  0x0000003f , 0x00000011 
+ 00000935  0x00000505 ifetch  0x00000002 , 0x00000006 
+ 00000936  0x00000506 store  0x00000002 , 0x000002a0 
+ 00000937  0x00000507 copy  0x00000013 , 0x0000003f 
+ 00000938  0x00000508 isub  0x00000011 , 0x00000013 
+ 00000939  0x00000509 call  0x000052d0 
+ 00000940  0x0000050a setarg  0x0000000b 
+ 00000941  0x0000050b istore  0x00000001 , 0x00000005 
+ 00000942  0x0000050c copy  0x00000007 , 0x0000003f 
+ 00000943  0x0000050d istore  0x00000001 , 0x00000005 
+ 00000944  0x0000050e fetch  0x00000002 , 0x000002a0 
+ 00000945  0x0000050f branch  0x00000385 
+ 00000946  0x00000513 arg  0x00000000 , 0x00000012 
+ 00000947  0x00000514 call  0x0000527a 
+ 00000948  0x00000515 nrtn  0x00000034 
+ 00000949  0x00000516 branch  0x0000524d 
+ 00000950  0x00000519 fetch  0x00000002 , 0x000002cb 
+ 00000951  0x0000051a copy  0x0000003f , 0x00000006 
+ 00000952  0x0000051b ifetch  0x00000001 , 0x00000006 
+ 00000953  0x0000051c and  0x0000003f , 0x0000000f , 0x00000002 
+ 00000954  0x0000051d rshift4  0x0000003f , 0x0000003f 
+ 00000955  0x00000520 beq  0x0000000a , 0x000003c9 
+ 00000956  0x00000521 beq  0x00000005 , 0x000003c7 
+ 00000957  0x00000523 beq  0x00000001 , 0x000003c0 
+ 00000958  0x00000524 beq  0x00000004 , 0x00004b18 
+ 00000959  0x00000525 branch  0x00004aff 
+ 00000960  0x00000529 copy  0x00000002 , 0x0000003f 
+ 00000961  0x0000052a beq  0x00000005 , 0x00004b09 
+ 00000962  0x0000052b jam  0x00000001 , 0x00004c9d 
+ 00000963  0x0000052c beq  0x00000003 , 0x00004b18 
+ 00000964  0x0000052d jam  0x00000000 , 0x00004c9d 
+ 00000965  0x0000052e beq  0x00000004 , 0x00004b18 
+ 00000966  0x0000052f rtn 
+ 00000967  0x00000533 call  0x000003c9 
+ 00000968  0x00000534 branch  0x00004b11 
+ 00000969  0x00000536 ifetch  0x00000001 , 0x00000006 
+ 00000970  0x00000537 beq  0x00000001 , 0x00000426 
+ 00000971  0x00000538 rtn 
+ 00000972  0x0000053b call  0x0000527a 
+ 00000973  0x0000053c nrtn  0x00000034 
+ 00000974  0x0000053e call  0x000003d0 
+ 00000975  0x0000053f branch  0x00006dfd 
+ 00000976  0x00000542 fetch  0x00000001 , 0x00004132 
+ 00000977  0x00000543 rtneq  0x00000001 
+ 00000978  0x00000544 fetch  0x00000001 , 0x000043cd 
+ 00000979  0x00000545 rtn  0x00000034 
+ 00000980  0x00000546 copy  0x0000003f , 0x00000011 
+ 00000981  0x00000547 jam  0x00000000 , 0x000043cd 
+ 00000982  0x00000548 copy  0x00000011 , 0x0000003f 
+ 00000983  0x00000549 beq  0x00000050 , 0x00004ddc 
+ 00000984  0x0000054a rtn 
+ 00000985  0x0000054e fetch  0x00000001 , 0x0000007d 
+ 00000986  0x0000054f beq  0x00000003 , 0x000003dd 
+ 00000987  0x00000550 beq  0x00000007 , 0x000003e8 
+ 00000988  0x00000552 branch  0x00005b92 
+ 00000989  0x00000554 fetch  0x00000001 , 0x000004df 
+ 00000990  0x00000555 store  0x00000001 , 0x00000445 
+ 00000991  0x00000556 beq  0x00000013 , 0x00000334 
+ 00000992  0x00000557 beq  0x00000033 , 0x000003e2 
+ 00000993  0x00000558 branch  0x00005c58 
+ 00000994  0x0000055c fetch  0x00000001 , 0x0000044d 
+ 00000995  0x0000055d set1  0x00000000 , 0x0000003f 
+ 00000996  0x0000055e store  0x00000001 , 0x0000044d 
+ 00000997  0x0000055f jam  0x00000001 , 0x00000b7d 
+ 00000998  0x00000560 call  0x00007c27 
+ 00000999  0x00000561 branch  0x00005c83 
+ 00001000  0x00000565 fetch  0x00000001 , 0x000004df 
+ 00001001  0x00000566 store  0x00000001 , 0x00000446 
+ 00001002  0x00000567 branch  0x00005cf3 
+ 00001003  0x00000578 disable  0x00000028 
+ 00001004  0x00000579 call  0x000061d9 
+ 00001005  0x0000057a fetch  0x00000001 , 0x00000048 
+ 00001006  0x0000057b rtn  0x00000034 
+ 00001007  0x0000057c bbit1  0x00000007 , 0x00005f10 
+ 00001008  0x0000057d beq  0x00000002 , 0x000003f3 
+ 00001009  0x0000057e beq  0x00000007 , 0x00000400 
+ 00001010  0x0000057f branch  0x00005ee0 
+ 00001011  0x00000581 force  0x00000011 , 0x0000003f 
+ 00001012  0x00000582 call  0x000061b5 
+ 00001013  0x00000583 fetch  0x00000001 , 0x00000049 
+ 00001014  0x00000584 copy  0x0000003f , 0x00000002 
+ 00001015  0x00000585 beq  0x00000000 , 0x000003fb 
+ 00001016  0x00000586 beq  0x0000000e , 0x000003fb 
+ 00001017  0x00000587 beq  0x0000001c , 0x000003fb 
+ 00001018  0x00000588 rtn 
+ 00001019  0x0000058a istore  0x00000001 , 0x00000005 
+ 00001020  0x0000058b fetch  0x00000001 , 0x00004702 
+ 00001021  0x0000058c istore  0x00000001 , 0x00000005 
+ 00001022  0x0000058d setarg  0x0000000e 
+ 00001023  0x0000058e branch  0x00005fa6 
+ 00001024  0x00000591 call  0x00006055 
+ 00001025  0x00000592 jam  0x00000064 , 0x00000072 
+ 00001026  0x00000593 rtn 
+ 00001027  0x00000597 fetch  0x00000001 , 0x0000007c 
+ 00001028  0x00000598 branch  0x00000408 , 0x00000034 
+ 00001029  0x00000599 call  0x000061d9 
+ 00001030  0x0000059a fetch  0x00000001 , 0x0000007c 
+ 00001031  0x0000059b nrtn  0x00000034 
+ 00001032  0x0000059d fetch  0x00000001 , 0x00000055 
+ 00001033  0x0000059e rtn  0x00000034 
+ 00001034  0x0000059f beq  0x00000006 , 0x00000417 
+ 00001035  0x000005a0 beq  0x00000010 , 0x0000040d 
+ 00001036  0x000005a1 branch  0x0000623e 
+ 00001037  0x000005a4 fetch  0x00000001 , 0x00004748 
+ 00001038  0x000005a5 rtneq  0x00000000 
+ 00001039  0x000005a6 beq  0x00000001 , 0x00000415 
+ 00001040  0x000005a7 arg  0x0000000a , 0x00000007 
+ 00001041  0x000005a8 call  0x00007e53 
+ 00001042  0x000005a9 nrtn  0x00000034 
+ 00001043  0x000005aa jam  0x00000000 , 0x00004748 
+ 00001044  0x000005ab branch  0x0000629b 
+ 00001045  0x000005ad rtn  0x00000029 
+ 00001046  0x000005ae branch  0x00000417 
+ 00001047  0x000005b1 fetch  0x00000001 , 0x00000177 
+ 00001048  0x000005b2 bbit1  0x00000002 , 0x0000629b 
+ 00001049  0x000005b3 bbit1  0x00000000 , 0x0000041a 
+ 00001050  0x000005b5 fetch  0x00000001 , 0x0000425e 
+ 00001051  0x000005b6 branch  0x000062c7 , 0x00000034 
+ 00001052  0x000005b7 fetch  0x00000001 , 0x0000044d 
+ 00001053  0x000005b8 rtnbit0  0x00000003 
+ 00001054  0x000005b9 rtnbit0  0x00000002 
+ 00001055  0x000005ba fetch  0x00000004 , 0x00000465 
+ 00001056  0x000005bb arg  0x00000320 , 0x00000002 
+ 00001057  0x000005bc iadd  0x00000002 , 0x00000002 
+ 00001058  0x000005bd copy  0x00000022 , 0x0000003f 
+ 00001059  0x000005be isub  0x00000002 , 0x0000003e 
+ 00001060  0x000005bf nrtn  0x00000002 
+ 00001061  0x000005c0 branch  0x00006267 
+ 00001062  0x000005c3 ifetch  0x00000001 , 0x00000006 
+ 00001063  0x000005c4 store  0x00000001 , 0x00004c90 
+ 00001064  0x000005c5 rtn 
+ 00001065  0x000005cb call  0x000054bd 
+ 00001066  0x000005cc fetcht  0x00000001 , 0x00000017 
+ 00001067  0x000005cd call  0x00003a82 
+ 00001068  0x000005ce call  0x00003a87 
+ 00001069  0x000005cf enable  0x00000010 
+ 00001070  0x000005d0 arg  0x0000157c , 0x0000000b 
+ 00001071  0x000005d2 branch  0x0000547f 
+ 00001072  0x000005d5 jam  0x00000001 , 0x0000443e 
+ 00001073  0x000005d6 jam  0x00000000 , 0x0000443f 
+ 00001074  0x000005d7 branch  0x0000534e 
+ 00001075  0x000005da call  0x000053dd 
+ 00001076  0x000005db call  0x00000436 
+ 00001077  0x000005dc branch  0x000054c1 
+ 00001078  0x000005df branch  0x000001e1 , 0x0000002d 
+ 00001079  0x000005e0 call  0x000053ee 
+ 00001080  0x000005e1 branch  0x00003a91 
+ 00001081  0x000005e4 fetch  0x00000001 , 0x00004c40 
+ 00001082  0x000005e5 store  0x00000004 , 0x000046f9 
+ 00001083  0x000005e6 fetch  0x00000001 , 0x000044db 
+ 00001084  0x000005e7 beq  0x00000001 , 0x0000043e 
+ 00001085  0x000005e8 branch  0x000054e0 
+ 00001086  0x000005ea jam  0x00000000 , 0x000044db 
+ 00001087  0x000005eb branch  0x000054ef 
+ 00001088  0x000005ee fetch  0x00000001 , 0x000003c0 
+ 00001089  0x000005ef rtnbit0  0x00000005 
+ 00001090  0x000005f0 fetch  0x00000002 , 0x000003da 
+ 00001091  0x000005f1 fetcht  0x00000002 , 0x000003e0 
+ 00001092  0x000005f2 isub  0x00000002 , 0x0000003f 
+ 00001093  0x000005f3 nrtn  0x00000002 
+ 00001094  0x000005f4 branch  0x0000557e 
+ 00001095  0x000005f8 fetch  0x00000001 , 0x000003d7 
+ 00001096  0x000005f9 rtnbit1  0x00000005 
+ 00001097  0x000005fb fetch  0x00000001 , 0x00000341 
+ 00001098  0x000005fc branch  0x00005626 , 0x00000034 
+ 00001099  0x000005fd branch  0x00005890 
+ 00001100  0x00000604 fetch  0x00000001 , 0x00004440 
+ 00001101  0x00000605 beq  0x00000007 , 0x00000465 
+ 00001102  0x00000606 beq  0x0000000f , 0x00000469 
+ 00001103  0x00000607 beq  0x00000006 , 0x00000458 
+ 00001104  0x00000609 beq  0x00000002 , 0x00000455 
+ 00001105  0x0000060a beq  0x00000013 , 0x00000453 
+ 00001106  0x0000060b branch  0x0000563a 
+ 00001107  0x0000060e force  0x00000001 , 0x00000002 
+ 00001108  0x0000060f branch  0x00005892 
+ 00001109  0x00000612 setarg  0x0000000a 
+ 00001110  0x00000613 store  0x00000002 , 0x000003ef 
+ 00001111  0x00000614 branch  0x00005693 
+ 00001112  0x00000617 jam  0x00000012 , 0x00000b7d 
+ 00001113  0x00000618 call  0x00007c33 
+ 00001114  0x00000619 force  0x00000001 , 0x00000002 
+ 00001115  0x0000061a branch  0x00005892 , 0x00000029 
+ 00001116  0x0000061b jam  0x00000034 , 0x00000b7d 
+ 00001117  0x0000061c call  0x00007c27 
+ 00001118  0x0000061d fetch  0x00000001 , 0x00004c49 
+ 00001119  0x0000061e beq  0x00000002 , 0x00000461 
+ 00001120  0x0000061f branch  0x00000463 
+ 00001121  0x00000621 jam  0x00000046 , 0x00000b7d 
+ 00001122  0x00000622 call  0x00005620 
+ 00001123  0x00000624 force  0x00000001 , 0x00000002 
+ 00001124  0x00000625 branch  0x00005892 
+ 00001125  0x00000630 fetch  0x00000001 , 0x00004c48 
+ 00001126  0x00000631 istore  0x00000001 , 0x00000005 
+ 00001127  0x00000632 force  0x00000002 , 0x00000002 
+ 00001128  0x00000633 branch  0x00005892 
+ 00001129  0x00000636 increase  0xffffffff , 0x00000005 
+ 00001130  0x00000637 fetch  0x00000008 , 0x00004c4c 
+ 00001131  0x00000638 istore  0x00000008 , 0x00000005 
+ 00001132  0x00000639 ifetch  0x00000008 , 0x00000006 
+ 00001133  0x0000063a istore  0x00000008 , 0x00000005 
+ 00001134  0x0000063b force  0x00000002 , 0x00000001 
+ 00001135  0x0000063c branch  0x0000588a 
+ 00001136  0x0000063f fetch  0x00000001 , 0x00004444 
+ 00001137  0x00000640 beq  0x00000009 , 0x00005719 
+ 00001138  0x00000641 beq  0x00000002 , 0x00000475 
+ 00001139  0x00000642 beq  0x00000007 , 0x0000570d 
+ 00001140  0x00000643 branch  0x00005656 
+ 00001141  0x00000648 setarg  0x01000302 
+ 00001142  0x00000649 store  0x00000003 , 0x000044b5 
+ 00001143  0x0000064a setarg  0x00000001 
+ 00001144  0x0000064b istore  0x00000001 , 0x00000005 
+ 00001145  0x0000064c setarg  0x00010010 
+ 00001146  0x0000064d istore  0x00000003 , 0x00000005 
+ 00001147  0x0000064e branch  0x000056f1 
+ 00001148  0x00000655 parse  0x00000003 , 0x00000000 , 0x00000018 
+ 00001149  0x00000656 enable  0x00000010 
+ 00001150  0x00000657 arg  0x00000664 , 0x0000001b 
+ 00001151  0x00000658 rshift32  0x0000003f , 0x0000003f 
+ 00001152  0x00000659 rshift16  0x0000003f , 0x0000003f 
+ 00001153  0x0000065a istore  0x00000003 , 0x00000005 
+ 00001154  0x0000065b branch  0x0000375c , 0x00000006 
+ 00001155  0x0000065c enable  0x0000002d 
+ 00001156  0x0000065d fetch  0x00000001 , 0x00000017 
+ 00001157  0x0000065e add  0x0000003f , 0x00000000 , 0x00000011 
+ 00001158  0x0000065f branch  0x000054af 
+ 00001159  0x00000662 ifetch  0x00000003 , 0x00000006 
+ 00001160  0x00000663 store  0x00000003 , 0x000003f9 
+ 00001161  0x00000665 beq  0x00000052 , 0x0000048d 
+ 00001162  0x00000668 beq  0x00000002 , 0x000004a4 
+ 00001163  0x00000669 beq  0x00000012 , 0x00000493 
+ 00001164  0x0000066a branch  0x00005907 
+ 00001165  0x0000066d jam  0x00000001 , 0x00004d17 
+ 00001166  0x0000066e fetch  0x00000002 , 0x000003fa 
+ 00001167  0x0000066f beq  0x00000021 , 0x00000491 
+ 00001168  0x00000670 branch  0x000059ed 
+ 00001169  0x00000673 arg  0x00000349 , 0x00000006 
+ 00001170  0x00000674 branch  0x00000426 
+ 00001171  0x00000677 fetch  0x00000002 , 0x000003fa 
+ 00001172  0x00000678 sub  0x0000003f , 0x00000021 , 0x0000003e 
+ 00001173  0x00000679 call  0x00000491 , 0x00000005 
+ 00001174  0x0000067a fetch  0x00000002 , 0x000003fa 
+ 00001175  0x0000067b sub  0x0000003f , 0x00000031 , 0x0000003e 
+ 00001176  0x0000067c call  0x000004a2 , 0x00000005 
+ 00001177  0x0000067d fetch  0x00000002 , 0x000003fa 
+ 00001178  0x0000067e fetcht  0x00000002 , 0x00004c99 
+ 00001179  0x0000067f increase  0x00000001 , 0x00000002 
+ 00001180  0x00000680 isub  0x00000002 , 0x0000003e 
+ 00001181  0x00000681 branch  0x0000049f , 0x00000005 
+ 00001182  0x00000682 branch  0x000059ca 
+ 00001183  0x00000684 jam  0x00000034 , 0x00000b7d 
+ 00001184  0x00000685 call  0x00007c27 
+ 00001185  0x00000686 branch  0x000059ca 
+ 00001186  0x0000068a jam  0x00000001 , 0x00004131 
+ 00001187  0x0000068b rtn 
+ 00001188  0x0000068f jam  0x00000003 , 0x00000b7d 
+ 00001189  0x00000690 branch  0x00005620 
+ 00001190  0x00000693 fetch  0x00000001 , 0x00004444 
+ 00001191  0x00000694 beq  0x0000001b , 0x000005df 
+ 00001192  0x00000695 beq  0x0000001d , 0x000005df 
+ 00001193  0x00000696 beq  0x00000011 , 0x00000573 
+ 00001194  0x00000697 beq  0x00000009 , 0x00000525 
+ 00001195  0x00000698 beq  0x00000005 , 0x00000513 
+ 00001196  0x00000699 beq  0x00000007 , 0x000004c7 
+ 00001197  0x0000069a beq  0x00000013 , 0x0000585c 
+ 00001198  0x0000069b beq  0x00000003 , 0x000004b7 
+ 00001199  0x0000069c beq  0x0000000b , 0x000004ba 
+ 00001200  0x0000069d beq  0x0000000d , 0x000004b2 
+ 00001201  0x0000069e branch  0x00005666 
+ 00001202  0x000006a1 fetch  0x00000002 , 0x000003fa 
+ 00001203  0x000006a2 beq  0x00000007 , 0x000004b5 
+ 00001204  0x000006a3 branch  0x000057d6 
+ 00001205  0x000006a6 jam  0x00000007 , 0x000003fc 
+ 00001206  0x000006a7 branch  0x00005729 
+ 00001207  0x000006ad fetch  0x00000002 , 0x00004c4a 
+ 00001208  0x000006ae istore  0x00000002 , 0x00000005 
+ 00001209  0x000006af branch  0x0000588a 
+ 00001210  0x000006b2 fetch  0x00000002 , 0x000003fa 
+ 00001211  0x000006b4 beq  0x00000030 , 0x00005728 
+ 00001212  0x000006b5 beq  0x0000000e , 0x000004be 
+ 00001213  0x000006b7 branch  0x000057c6 
+ 00001214  0x000006ba fetch  0x00000001 , 0x00004c49 
+ 00001215  0x000006bb bne  0x00000000 , 0x000057c6 
+ 00001216  0x000006bc fetch  0x00000001 , 0x00004c5c 
+ 00001217  0x000006bd beq  0x00000003 , 0x000057c6 
+ 00001218  0x000006c0 copy  0x00000005 , 0x00000002 
+ 00001219  0x000006c1 jam  0x00000001 , 0x00004c49 
+ 00001220  0x000006c2 copy  0x00000002 , 0x00000005 
+ 00001221  0x000006c3 jam  0x00000005 , 0x000003fc 
+ 00001222  0x000006c4 branch  0x00005729 
+ 00001223  0x000006c7 call  0x0000577b 
+ 00001224  0x000006c8 rtn  0x00000028 
+ 00001225  0x000006c9 fetcht  0x00000002 , 0x000044c0 
+ 00001226  0x000006ca setarg  0x00001812 
+ 00001227  0x000006cb isub  0x00000002 , 0x0000003e 
+ 00001228  0x000006cc branch  0x000004e0 , 0x00000005 
+ 00001229  0x000006cd setarg  0x0000180f 
+ 00001230  0x000006ce isub  0x00000002 , 0x0000003e 
+ 00001231  0x000006cf branch  0x000004e2 , 0x00000005 
+ 00001232  0x000006d0 setarg  0x0000180a 
+ 00001233  0x000006d1 isub  0x00000002 , 0x0000003e 
+ 00001234  0x000006d2 branch  0x000004e6 , 0x00000005 
+ 00001235  0x000006d3 setarg  0x00001801 
+ 00001236  0x000006d4 isub  0x00000002 , 0x0000003e 
+ 00001237  0x000006d5 branch  0x000004e4 , 0x00000005 
+ 00001238  0x000006d6 branch  0x00005754 
+ 00001239  0x000006d9 fetch  0x00000001 , 0x00004c5f 
+ 00001240  0x000006da arg  0x00000000 , 0x00000002 
+ 00001241  0x000006db qset1  0x00000002 
+ 00001242  0x000006dc iand  0x00000002 , 0x0000003f 
+ 00001243  0x000006dd bne  0x00000000 , 0x00005728 
+ 00001244  0x000006de fetch  0x00000001 , 0x00004c5f 
+ 00001245  0x000006df qset1  0x0000003f 
+ 00001246  0x000006e0 store  0x00000001 , 0x00004c5f 
+ 00001247  0x000006e1 branch  0x000004e8 
+ 00001248  0x000006e4 arg  0x00000000 , 0x00000007 
+ 00001249  0x000006e5 branch  0x000004d7 
+ 00001250  0x000006e8 arg  0x00000001 , 0x00000007 
+ 00001251  0x000006e9 branch  0x000004d7 
+ 00001252  0x000006ec arg  0x00000003 , 0x00000007 
+ 00001253  0x000006ed branch  0x000004d7 
+ 00001254  0x000006ef arg  0x00000002 , 0x00000007 
+ 00001255  0x000006f0 branch  0x000004d7 
+ 00001256  0x000006f2 fetch  0x00000002 , 0x000044c0 
+ 00001257  0x000006f3 copy  0x0000003f , 0x00000011 
+ 00001258  0x000006f4 fetcht  0x00000002 , 0x000044c4 
+ 00001259  0x000006f5 copy  0x00000002 , 0x00000012 
+ 00001260  0x000006f6 call  0x000004ef 
+ 00001261  0x000006f7 branch  0x000004fa , 0x00000005 
+ 00001262  0x000006f8 branch  0x00005728 
+ 00001263  0x000006fb arg  0x00004504 , 0x00000006 
+ 00001264  0x000006fd ifetch  0x00000002 , 0x00000006 
+ 00001265  0x000006fe rtn  0x00000034 
+ 00001266  0x000006ff ifetch  0x00000003 , 0x00000006 
+ 00001267  0x00000700 ifetch  0x00000002 , 0x00000006 
+ 00001268  0x00000701 isub  0x00000011 , 0x0000003e 
+ 00001269  0x00000702 rtn  0x00000005 
+ 00001270  0x00000703 increase  0xfffffffd , 0x00000006 
+ 00001271  0x00000704 ifetch  0x00000001 , 0x00000006 
+ 00001272  0x00000705 iadd  0x00000006 , 0x00000006 
+ 00001273  0x00000706 branch  0x000004f0 
+ 00001274  0x00000709 increase  0xfffffff9 , 0x00000006 
+ 00001275  0x0000070a ifetch  0x00000002 , 0x00000006 
+ 00001276  0x0000070b store  0x00000002 , 0x00004c41 
+ 00001277  0x0000070c call  0x00000508 
+ 00001278  0x0000070d branch  0x00005728 , 0x00000034 
+ 00001279  0x0000070e increase  0xfffffffc , 0x00000006 
+ 00001280  0x0000070f ifetch  0x00000002 , 0x00000006 
+ 00001281  0x00000710 increase  0xffffffff , 0x0000003f 
+ 00001282  0x00000711 store  0x00000002 , 0x00004c43 
+ 00001283  0x00000712 jam  0x00000007 , 0x00004444 
+ 00001284  0x00000713 fetch  0x00000004 , 0x00004c41 
+ 00001285  0x00000714 store  0x00000004 , 0x00004445 
+ 00001286  0x00000717 force  0x00000009 , 0x00000002 
+ 00001287  0x00000718 branch  0x00005892 
+ 00001288  0x0000071b ifetch  0x00000002 , 0x00000006 
+ 00001289  0x0000071c ifetch  0x00000001 , 0x00000006 
+ 00001290  0x0000071d iadd  0x00000006 , 0x00000006 
+ 00001291  0x0000071f ifetch  0x00000002 , 0x00000006 
+ 00001292  0x00000720 rtn  0x00000034 
+ 00001293  0x00000721 ifetch  0x00000002 , 0x00000006 
+ 00001294  0x00000722 isub  0x00000012 , 0x0000003e 
+ 00001295  0x00000723 rtn  0x00000005 
+ 00001296  0x00000724 ifetch  0x00000001 , 0x00000006 
+ 00001297  0x00000725 iadd  0x00000006 , 0x00000006 
+ 00001298  0x00000726 branch  0x0000050b 
+ 00001299  0x00000729 arg  0x00000003 , 0x0000000b 
+ 00001300  0x0000072a force  0x00000001 , 0x0000003f 
+ 00001301  0x0000072b store  0x00000001 , 0x00004445 
+ 00001302  0x0000072c call  0x00005a74 
+ 00001303  0x0000072e call  0x00005a7d 
+ 00001304  0x0000072f branch  0x00005746 , 0x00000034 
+ 00001305  0x00000730 nbranch  0x00000523 , 0x00000002 
+ 00001306  0x00000731 disable  0x00000028 
+ 00001307  0x00000732 istore  0x00000002 , 0x00000005 
+ 00001308  0x00000733 ifetch  0x00000002 , 0x00000006 
+ 00001309  0x00000734 istore  0x00000002 , 0x00000005 
+ 00001310  0x00000735 increase  0xffffffff , 0x0000000b 
+ 00001311  0x00000736 branch  0x00005746 , 0x00000005 
+ 00001312  0x00000738 ifetch  0x00000001 , 0x00000006 
+ 00001313  0x00000739 iadd  0x00000006 , 0x00000006 
+ 00001314  0x0000073a branch  0x00000517 
+ 00001315  0x0000073c increase  0x00000002 , 0x00000006 
+ 00001316  0x0000073d branch  0x00000520 
+ 00001317  0x00000742 fetcht  0x00000002 , 0x000044c0 
+ 00001318  0x00000743 setarg  0x00002a00 
+ 00001319  0x00000744 isub  0x00000002 , 0x0000003e 
+ 00001320  0x00000745 branch  0x00000565 , 0x00000005 
+ 00001321  0x00000746 setarg  0x00002a50 
+ 00001322  0x00000747 isub  0x00000002 , 0x0000003e 
+ 00001323  0x00000748 branch  0x00000570 , 0x00000005 
+ 00001324  0x00000749 setarg  0x00002803 
+ 00001325  0x0000074a isub  0x00000002 , 0x0000003e 
+ 00001326  0x0000074b nbranch  0x00005728 , 0x00000005 
+ 00001327  0x0000074c fetch  0x00000002 , 0x000044bc 
+ 00001328  0x0000074d store  0x00000002 , 0x000002a0 
+ 00001329  0x0000074e enable  0x00000028 
+ 00001330  0x00000750 call  0x000005b7 
+ 00001331  0x00000751 nbranch  0x00000541 , 0x00000002 
+ 00001332  0x00000752 fetcht  0x00000002 , 0x000002a0 
+ 00001333  0x00000753 call  0x000005bf 
+ 00001334  0x00000754 beq  0x00000001 , 0x00000541 
+ 00001335  0x00000755 call  0x000005bb 
+ 00001336  0x00000756 nbranch  0x0000053f , 0x00000005 
+ 00001337  0x00000757 disable  0x00000028 
+ 00001338  0x00000758 call  0x00000543 
+ 00001339  0x00000759 call  0x000005a5 
+ 00001340  0x0000075a call  0x000005bf 
+ 00001341  0x0000075b call  0x0000054b 
+ 00001342  0x0000075c branch  0x00000541 
+ 00001343  0x0000075e call  0x000005a5 
+ 00001344  0x0000075f branch  0x00000532 
+ 00001345  0x00000761 branch  0x00005728 , 0x00000028 
+ 00001346  0x00000762 branch  0x000005dd 
+ 00001347  0x00000764 fetch  0x00000002 , 0x000002a0 
+ 00001348  0x00000765 store  0x00000002 , 0x00004446 
+ 00001349  0x00000766 fetch  0x00000001 , 0x00004c47 
+ 00001350  0x00000767 copy  0x0000003f , 0x00000039 
+ 00001351  0x00000768 call  0x000005d4 
+ 00001352  0x00000769 arg  0x00004448 , 0x00000005 
+ 00001353  0x0000076a call  0x00007e45 
+ 00001354  0x0000076b branch  0x000005d7 
+ 00001355  0x0000076d fetcht  0x00000002 , 0x00004c45 
+ 00001356  0x0000076e rshift8  0x00000002 , 0x0000003f 
+ 00001357  0x0000076f bne  0x00000005 , 0x0000055d 
+ 00001358  0x00000770 call  0x000005d1 
+ 00001359  0x00000771 fetch  0x00000002 , 0x000002a0 
+ 00001360  0x00000772 istore  0x00000002 , 0x00000005 
+ 00001361  0x00000773 call  0x000005d7 
+ 00001362  0x00000774 setarg  0x00004504 
+ 00001363  0x00000775 iadd  0x00000002 , 0x00000006 
+ 00001364  0x00000776 ifetch  0x00000001 , 0x00000006 
+ 00001365  0x00000777 copy  0x00000006 , 0x00000002 
+ 00001366  0x00000778 copy  0x0000003f , 0x00000039 
+ 00001367  0x00000779 increase  0x00000005 , 0x0000003f 
+ 00001368  0x0000077a store  0x00000001 , 0x00004445 
+ 00001369  0x0000077b call  0x000005d1 
+ 00001370  0x0000077c copy  0x00000002 , 0x00000006 
+ 00001371  0x0000077d call  0x00007e45 
+ 00001372  0x0000077e branch  0x000005d7 
+ 00001373  0x00000780 call  0x000005d1 
+ 00001374  0x00000781 fetch  0x00000002 , 0x000002a0 
+ 00001375  0x00000782 istore  0x00000002 , 0x00000005 
+ 00001376  0x00000783 fetch  0x00000002 , 0x00004c45 
+ 00001377  0x00000784 istore  0x00000002 , 0x00000005 
+ 00001378  0x00000785 call  0x000005d7 
+ 00001379  0x00000786 jam  0x00000007 , 0x00004445 
+ 00001380  0x00000787 rtn 
+ 00001381  0x00000789 call  0x00005b08 
+ 00001382  0x0000078b ifetch  0x00000001 , 0x00000006 
+ 00001383  0x0000078c copy  0x0000003f , 0x00000039 
+ 00001384  0x0000078d increase  0x00000002 , 0x0000003f 
+ 00001385  0x0000078e store  0x00000001 , 0x00004445 
+ 00001386  0x0000078f increase  0xfffffffb , 0x00000006 
+ 00001387  0x00000790 ifetch  0x00000002 , 0x00000006 
+ 00001388  0x00000791 istore  0x00000002 , 0x00000005 
+ 00001389  0x00000792 increase  0x00000003 , 0x00000006 
+ 00001390  0x00000793 call  0x00007e45 
+ 00001391  0x00000794 branch  0x0000588a 
+ 00001392  0x00000797 arg  0x00002a50 , 0x00000002 
+ 00001393  0x00000798 call  0x00005b0c 
+ 00001394  0x00000799 branch  0x00000566 
+ 00001395  0x0000079d arg  0x00000002 , 0x0000000b 
+ 00001396  0x0000079e fetch  0x00000002 , 0x000044bc 
+ 00001397  0x0000079f store  0x00000002 , 0x000002a0 
+ 00001398  0x000007a0 jam  0x00000000 , 0x00000d5c 
+ 00001399  0x000007a1 enable  0x00000028 
+ 00001400  0x000007a3 call  0x000005b7 
+ 00001401  0x000007a4 nbranch  0x0000059b , 0x00000002 
+ 00001402  0x000007a5 fetcht  0x00000002 , 0x000002a0 
+ 00001403  0x000007a6 call  0x000005bf 
+ 00001404  0x000007a7 beq  0x00000001 , 0x0000059e 
+ 00001405  0x000007a8 call  0x000005bb 
+ 00001406  0x000007a9 nbranch  0x00000597 , 0x00000005 
+ 00001407  0x000007aa fetch  0x00000001 , 0x00000d5c 
+ 00001408  0x000007ab beq  0x00000001 , 0x0000059e 
+ 00001409  0x000007ac nbranch  0x00000588 , 0x00000028 
+ 00001410  0x000007ad disable  0x00000028 
+ 00001411  0x000007ae fetch  0x00000001 , 0x00004c47 
+ 00001412  0x000007af increase  0x00000004 , 0x0000003f 
+ 00001413  0x000007b0 store  0x00000001 , 0x00004445 
+ 00001414  0x000007b1 call  0x000005d7 
+ 00001415  0x000007b2 branch  0x00000592 
+ 00001416  0x000007b4 fetch  0x00000001 , 0x00004c47 
+ 00001417  0x000007b5 sub  0x0000003f , 0x00000010 , 0x0000003e 
+ 00001418  0x000007b6 branch  0x0000059e , 0x00000005 
+ 00001419  0x000007b7 fetch  0x00000001 , 0x00004445 
+ 00001420  0x000007b8 sub  0x0000003f , 0x00000010 , 0x0000003e 
+ 00001421  0x000007b9 branch  0x0000059e , 0x00000005 
+ 00001422  0x000007ba fetch  0x00000002 , 0x000002a0 
+ 00001423  0x000007bb increase  0xffffffff , 0x0000003f 
+ 00001424  0x000007bc store  0x00000002 , 0x00000d5a 
+ 00001425  0x000007bd call  0x000005ae 
+ 00001426  0x000007bf fetch  0x00000002 , 0x000002a0 
+ 00001427  0x000007c0 store  0x00000002 , 0x00000d58 
+ 00001428  0x000007c1 call  0x000005a9 
+ 00001429  0x000007c2 increase  0xffffffff , 0x0000000b 
+ 00001430  0x000007c3 branch  0x00000599 , 0x00000005 
+ 00001431  0x000007c5 call  0x000005a5 
+ 00001432  0x000007c6 branch  0x00000578 
+ 00001433  0x000007c8 jam  0x00000001 , 0x00000d5c 
+ 00001434  0x000007c9 branch  0x00000597 
+ 00001435  0x000007cb fetch  0x00000002 , 0x000002a0 
+ 00001436  0x000007cc store  0x00000002 , 0x00000d5a 
+ 00001437  0x000007cd branch  0x000005a2 
+ 00001438  0x000007cf fetch  0x00000002 , 0x000002a0 
+ 00001439  0x000007d0 increase  0xffffffff , 0x0000003f 
+ 00001440  0x000007d1 store  0x00000002 , 0x00000d5a 
+ 00001441  0x000007d2 branch  0x000005a2 
+ 00001442  0x000007d4 branch  0x00005728 , 0x00000028 
+ 00001443  0x000007d5 call  0x000005ae 
+ 00001444  0x000007d6 branch  0x000005dd 
+ 00001445  0x000007d9 fetcht  0x00000002 , 0x000002a0 
+ 00001446  0x000007da increase  0x00000001 , 0x00000002 
+ 00001447  0x000007db storet  0x00000002 , 0x000002a0 
+ 00001448  0x000007dc rtn 
+ 00001449  0x000007df fetch  0x00000001 , 0x00004c47 
+ 00001450  0x000007e0 store  0x00000001 , 0x00000103 
+ 00001451  0x000007e1 copy  0x0000003f , 0x00000039 
+ 00001452  0x000007e2 call  0x000005d4 
+ 00001453  0x000007e3 branch  0x00007e45 
+ 00001454  0x000007e6 call  0x000005d1 
+ 00001455  0x000007e7 fetch  0x00000002 , 0x00000d58 
+ 00001456  0x000007e8 istore  0x00000002 , 0x00000005 
+ 00001457  0x000007e9 fetch  0x00000002 , 0x00000d5a 
+ 00001458  0x000007ea istore  0x00000002 , 0x00000005 
+ 00001459  0x000007eb fetch  0x00000001 , 0x00000103 
+ 00001460  0x000007ec copy  0x0000003f , 0x00000039 
+ 00001461  0x000007ed call  0x00007e45 
+ 00001462  0x000007ee branch  0x000005d7 
+ 00001463  0x000007f2 fetcht  0x00000002 , 0x000002a0 
+ 00001464  0x000007f3 fetch  0x00000002 , 0x000044be 
+ 00001465  0x000007f4 isub  0x00000002 , 0x0000003e 
+ 00001466  0x000007f5 rtn 
+ 00001467  0x000007f8 fetch  0x00000002 , 0x000044c0 
+ 00001468  0x000007f9 fetcht  0x00000002 , 0x00004c45 
+ 00001469  0x000007fa isub  0x00000002 , 0x0000003e 
+ 00001470  0x000007fb rtn 
+ 00001471  0x000007fe arg  0x00004504 , 0x00000006 
+ 00001472  0x000007ff copy  0x00000002 , 0x00000011 
+ 00001473  0x00000801 ifetch  0x00000002 , 0x00000006 
+ 00001474  0x00000802 branch  0x000005ca , 0x00000034 
+ 00001475  0x00000803 ifetcht  0x00000002 , 0x00000006 
+ 00001476  0x00000804 storet  0x00000002 , 0x00004c45 
+ 00001477  0x00000805 isub  0x00000011 , 0x0000003e 
+ 00001478  0x00000806 branch  0x000005cc , 0x00000005 
+ 00001479  0x00000807 ifetch  0x00000001 , 0x00000006 
+ 00001480  0x00000808 iadd  0x00000006 , 0x00000006 
+ 00001481  0x00000809 branch  0x000005c1 
+ 00001482  0x0000080b setarg  0x00000001 
+ 00001483  0x0000080c rtn 
+ 00001484  0x0000080e ifetch  0x00000001 , 0x00000006 
+ 00001485  0x0000080f store  0x00000001 , 0x00004c47 
+ 00001486  0x00000810 call  0x000005da 
+ 00001487  0x00000811 setarg  0x00000000 
+ 00001488  0x00000812 rtn 
+ 00001489  0x00000814 fetch  0x00000002 , 0x000002b9 
+ 00001490  0x00000815 copy  0x0000003f , 0x00000005 
+ 00001491  0x00000816 rtn 
+ 00001492  0x00000818 fetch  0x00000002 , 0x000002b7 
+ 00001493  0x00000819 copy  0x0000003f , 0x00000006 
+ 00001494  0x0000081a rtn 
+ 00001495  0x0000081c copy  0x00000005 , 0x0000003f 
+ 00001496  0x0000081d store  0x00000002 , 0x000002b9 
+ 00001497  0x0000081e rtn 
+ 00001498  0x00000820 copy  0x00000006 , 0x0000003f 
+ 00001499  0x00000821 store  0x00000002 , 0x000002b7 
+ 00001500  0x00000822 rtn 
+ 00001501  0x00000825 call  0x000005d1 
+ 00001502  0x00000826 branch  0x0000588a 
+ 00001503  0x0000082a fetch  0x00000001 , 0x00004bab 
+ 00001504  0x0000082b add  0x0000003f , 0x00000001 , 0x00000002 
+ 00001505  0x0000082c and  0x00000002 , 0x00000003 , 0x00000002 
+ 00001506  0x0000082d storet  0x00000001 , 0x00004bab 
+ 00001507  0x0000082e mul32  0x0000003f , 0x00000007 , 0x0000003f 
+ 00001508  0x0000082f arg  0x00004bad , 0x00000006 
+ 00001509  0x00000830 iadd  0x00000006 , 0x00000006 
+ 00001510  0x00000831 fetch  0x00000001 , 0x00004c62 
+ 00001511  0x00000832 increase  0xfffffffb , 0x0000003f 
+ 00001512  0x00000833 copy  0x0000003f , 0x00000039 
+ 00001513  0x00000834 arg  0x00004445 , 0x00000005 
+ 00001514  0x00000835 call  0x00007e45 
+ 00001515  0x00000836 fetcht  0x00000001 , 0x00004c62 
+ 00001516  0x00000837 branch  0x00005892 
+ 00001517  0x0000083a call  0x0000561c 
+ 00001518  0x0000083b branch  0x000058b0 
+ 00001519  0x0000083f copy  0x00000013 , 0x0000003f 
+ 00001520  0x00000840 beq  0x00000003 , 0x000005f9 
+ 00001521  0x00000841 beq  0x0000000a , 0x000005fd 
+ 00001522  0x00000843 beq  0x00000012 , 0x000005fb 
+ 00001523  0x00000844 beq  0x00000002 , 0x000005ff 
+ 00001524  0x00000845 sub  0x0000003f , 0x0000000d , 0x0000003e 
+ 00001525  0x00000846 branch  0x000058c0 , 0x00000002 
+ 00001526  0x00000847 store  0x00000001 , 0x00004c48 
+ 00001527  0x00000848 jam  0x00000027 , 0x00000b7d 
+ 00001528  0x00000849 branch  0x00005620 
+ 00001529  0x00000853 jam  0x00000000 , 0x00004c5c 
+ 00001530  0x00000854 branch  0x00005938 
+ 00001531  0x00000857 jam  0x00000033 , 0x00000b7d 
+ 00001532  0x00000858 branch  0x00005620 
+ 00001533  0x0000085b jam  0x0000002b , 0x00000b7d 
+ 00001534  0x0000085c branch  0x00005620 
+ 00001535  0x0000085f setarg  0x00000014 
+ 00001536  0x00000860 store  0x00000002 , 0x000003ef 
+ 00001537  0x00000861 rtn 
+ 00001538  0x00000864 fetch  0x00000001 , 0x0000443e 
+ 00001539  0x00000865 compare  0x00000001 , 0x00000001 , 0x00000003 
+ 00001540  0x00000866 branch  0x00000606 , 0x00000001 
+ 00001541  0x00000867 branch  0x000058a7 
+ 00001542  0x00000869 fetch  0x00000001 , 0x0000443f 
+ 00001543  0x0000086a branch  0x00000609 , 0x00000034 
+ 00001544  0x0000086b branch  0x000058a7 
+ 00001545  0x0000086e fetch  0x00000001 , 0x0000443e 
+ 00001546  0x0000086f set0  0x00000004 , 0x0000003f 
+ 00001547  0x00000870 store  0x00000001 , 0x0000443e 
+ 00001548  0x00000871 rtn 
+ 00001549  0x00000874 ifetch  0x00000001 , 0x00000006 
+ 00001550  0x00000875 beq  0x00000001 , 0x00000614 
+ 00001551  0x00000876 beq  0x00000004 , 0x0000061a 
+ 00001552  0x00000877 beq  0x00000009 , 0x00000612 
+ 00001553  0x00000878 branch  0x000058f8 
+ 00001554  0x0000087c jam  0x00000003 , 0x00004c49 
+ 00001555  0x0000087d branch  0x00005974 
+ 00001556  0x00000880 jam  0x00000001 , 0x00004d1c 
+ 00001557  0x00000881 store  0x00000001 , 0x000044ae 
+ 00001558  0x00000882 ifetch  0x00000006 , 0x00000006 
+ 00001559  0x00000883 istore  0x00000006 , 0x00000005 
+ 00001560  0x00000884 jam  0x00000042 , 0x00000b7d 
+ 00001561  0x00000885 branch  0x00005620 
+ 00001562  0x00000888 call  0x000074a8 
+ 00001563  0x00000889 branch  0x0000061d , 0x00000005 
+ 00001564  0x0000088a branch  0x00005968 
+ 00001565  0x0000088c jam  0x00000002 , 0x00004c49 
+ 00001566  0x0000088d branch  0x0000596a 
+ 00001567  0x000008ac jam  0x00000000 , 0x00004c5d 
+ 00001568  0x000008ad call  0x00003f86 
+ 00001569  0x000008ae call  0x00003f7e 
+ 00001570  0x000008af call  0x00003fa4 
+ 00001571  0x000008b0 branch  0x00003ecc 
+ 00001572  0x000008b4 jam  0x00000000 , 0x00004213 
+ 00001573  0x000008b5 jam  0x00000000 , 0x0000448b 
+ 00001574  0x000008b6 jam  0x00000000 , 0x00004c5c 
+ 00001575  0x000008b7 jam  0x00000000 , 0x00004c49 
+ 00001576  0x000008b8 jam  0x00000000 , 0x00004c5f 
+ 00001577  0x000008b9 jam  0x00000000 , 0x00004c5d 
+ 00001578  0x000008ba branch  0x00003ed0 
+ 00001579  0x000008be setarg  0x00000000 
+ 00001580  0x000008bf store  0x00000004 , 0x00004ba9 
+ 00001581  0x000008c0 rtn 
+ 00001582  0x000008c4 rtnmark0  0x00000023 
+ 00001583  0x000008c5 fetch  0x00000004 , 0x00004d1d 
+ 00001584  0x000008c6 store  0x00000004 , 0x00004d4f 
+ 00001585  0x000008c7 call  0x00000653 
+ 00001586  0x000008c8 nbranch  0x00000646 , 0x00000028 
+ 00001587  0x000008c9 jam  0x0000000a , 0x00004c0b 
+ 00001588  0x000008ca call  0x00000679 
+ 00001589  0x000008cb fetch  0x00000001 , 0x00004bef 
+ 00001590  0x000008cc rtnne  0x000000ff 
+ 00001591  0x000008ce fetch  0x00000001 , 0x00004d22 
+ 00001592  0x000008cf nrtn  0x00000034 
+ 00001593  0x000008d0 call  0x000001b2 
+ 00001594  0x000008d1 nrtn  0x00000028 
+ 00001595  0x000008d2 fetch  0x00000001 , 0x00000b7f 
+ 00001596  0x000008d3 nrtn  0x00000034 
+ 00001597  0x000008d4 call  0x00003cab 
+ 00001598  0x000008d5 fetch  0x00000003 , 0x00004210 
+ 00001599  0x000008d6 rtn  0x00000034 
+ 00001600  0x000008d7 fetch  0x00000001 , 0x00004131 
+ 00001601  0x000008d8 rtn  0x00000034 
+ 00001602  0x000008dc fetch  0x00000003 , 0x00004d57 
+ 00001603  0x000008de call  0x00007e8a 
+ 00001604  0x000008df storet  0x00000004 , 0x000041fc 
+ 00001605  0x000008e0 branch  0x00003cda 
+ 00001606  0x000008e3 call  0x000001b2 
+ 00001607  0x000008e4 nrtn  0x00000028 
+ 00001608  0x000008e5 fetch  0x00000001 , 0x00000b7f 
+ 00001609  0x000008e6 nrtn  0x00000034 
+ 00001610  0x000008e7 call  0x00003cab 
+ 00001611  0x000008e8 fetch  0x00000003 , 0x00004210 
+ 00001612  0x000008e9 rtn  0x00000034 
+ 00001613  0x000008ea fetch  0x00000001 , 0x00004131 
+ 00001614  0x000008eb rtn  0x00000034 
+ 00001615  0x000008ec fetch  0x00000001 , 0x00004c0b 
+ 00001616  0x000008ed nbranch  0x00000642 , 0x00000034 
+ 00001617  0x000008ee fetch  0x00000004 , 0x00004d4f 
+ 00001618  0x000008ef branch  0x00000643 
+ 00001619  0x000008f2 fetch  0x00000001 , 0x00004bef 
+ 00001620  0x000008f3 bne  0x000000ff , 0x000006ca 
+ 00001621  0x000008f4 call  0x0000065a 
+ 00001622  0x000008f5 call  0x00000675 , 0x00000028 
+ 00001623  0x000008f6 call  0x00000734 , 0x00000028 
+ 00001624  0x000008f8 jam  0x00000001 , 0x00004be6 
+ 00001625  0x000008f9 rtn 
+ 00001626  0x000008fc disable  0x00000028 
+ 00001627  0x000008fd jam  0x00000002 , 0x00004be2 
+ 00001628  0x000008fe fetch  0x00000001 , 0x00004d34 
+ 00001629  0x000008ff beq  0x00000004 , 0x00000665 
+ 00001630  0x00000900 beq  0x00000005 , 0x0000066b 
+ 00001631  0x00000901 beq  0x00000006 , 0x00000671 
+ 00001632  0x00000902 beq  0x00000007 , 0x0000066e 
+ 00001633  0x00000903 beq  0x00000008 , 0x00000668 
+ 00001634  0x00000904 fetch  0x00000001 , 0x00004d22 
+ 00001635  0x00000905 ncall  0x000034df , 0x00000034 
+ 00001636  0x00000906 rtn 
+ 00001637  0x00000908 jam  0x00000000 , 0x00004d34 
+ 00001638  0x00000909 jam  0x0000000a , 0x00004be1 
+ 00001639  0x0000090a branch  0x00000673 
+ 00001640  0x0000090d jam  0x00000008 , 0x00004d34 
+ 00001641  0x0000090e jam  0x00000010 , 0x00004be1 
+ 00001642  0x0000090f branch  0x00000673 
+ 00001643  0x00000912 jam  0x00000003 , 0x00004d34 
+ 00001644  0x00000913 jam  0x00000004 , 0x00004be1 
+ 00001645  0x00000914 branch  0x00000673 
+ 00001646  0x00000916 jam  0x00000002 , 0x00004d34 
+ 00001647  0x00000917 jam  0x00000003 , 0x00004be1 
+ 00001648  0x00000918 branch  0x00000673 
+ 00001649  0x0000091a jam  0x00000001 , 0x00004be2 
+ 00001650  0x0000091b jam  0x00000008 , 0x00004be1 
+ 00001651  0x0000091d jam  0x00000000 , 0x00004be7 
+ 00001652  0x0000091e branch  0x000034df 
+ 00001653  0x00000922 arg  0x00000cd5 , 0x00000005 
+ 00001654  0x00000923 arg  0x00004d34 , 0x00000006 
+ 00001655  0x00000924 arg  0x00000014 , 0x00000039 
+ 00001656  0x00000925 branch  0x00007e45 
+ 00001657  0x00000929 jam  0x00000000 , 0x00004be8 
+ 00001658  0x0000092b arg  0x00000d00 , 0x0000000b 
+ 00001659  0x0000092c until  0x00000023 , 0x00000026 
+ 00001660  0x0000092d call  0x000006a0 
+ 00001661  0x0000092e nbranch  0x00000689 , 0x0000002f 
+ 00001662  0x0000092f call  0x000006af 
+ 00001663  0x00000930 fetch  0x00000001 , 0x00004be0 
+ 00001664  0x00000931 increase  0x00000001 , 0x0000003f 
+ 00001665  0x00000932 store  0x00000001 , 0x00004be0 
+ 00001666  0x00000933 jam  0x00000000 , 0x00004d22 
+ 00001667  0x00000934 fetch  0x00000001 , 0x00004bef 
+ 00001668  0x00000935 bne  0x000000ff , 0x0000069f 
+ 00001669  0x00000937 call  0x0000069b 
+ 00001670  0x00000938 jam  0x00000000 , 0x00004be7 
+ 00001671  0x00000939 jam  0x00000000 , 0x00004be6 
+ 00001672  0x0000093a rtn 
+ 00001673  0x0000093e jam  0x00000001 , 0x00004d22 
+ 00001674  0x0000093f fetch  0x00000001 , 0x00004be7 
+ 00001675  0x00000940 increase  0x00000001 , 0x0000003f 
+ 00001676  0x00000941 store  0x00000001 , 0x00004be7 
+ 00001677  0x00000942 fetch  0x00000001 , 0x00004bef 
+ 00001678  0x00000943 bne  0x000000ff , 0x000006ab 
+ 00001679  0x00000944 fetch  0x00000001 , 0x00004be7 
+ 00001680  0x00000945 beq  0x000000ff , 0x000006ac 
+ 00001681  0x00000946 fetch  0x00000001 , 0x00004be7 
+ 00001682  0x00000947 arg  0x00000010 , 0x00000002 
+ 00001683  0x00000948 isub  0x00000002 , 0x0000003e 
+ 00001684  0x00000949 branch  0x00000753 , 0x00000002 
+ 00001685  0x0000094a fetch  0x00000001 , 0x00004be8 
+ 00001686  0x0000094b increase  0x00000001 , 0x0000003f 
+ 00001687  0x0000094c store  0x00000001 , 0x00004be8 
+ 00001688  0x0000094d nop  0x0000000a 
+ 00001689  0x0000094e bne  0x00000007 , 0x0000067a 
+ 00001690  0x0000094f branch  0x00000753 
+ 00001691  0x00000953 setarg  0x00000000 
+ 00001692  0x00000954 store  0x00000014 , 0x00000cd5 
+ 00001693  0x00000955 store  0x00000014 , 0x00004d34 
+ 00001694  0x00000956 rtn 
+ 00001695  0x00000963 branch  0x000006e4 
+ 00001696  0x00000966 disable  0x0000002f 
+ 00001697  0x00000967 call  0x000007ab 
+ 00001698  0x0000096a force  0x00000000 , 0x00000015 
+ 00001699  0x0000096b fetch  0x00000004 , 0x00004c00 
+ 00001700  0x0000096c iforce  0x00000009 
+ 00001701  0x0000096d fetcht  0x00000001 , 0x00000017 
+ 00001702  0x0000096e call  0x00003a82 
+ 00001703  0x0000096f call  0x00003a87 
+ 00001704  0x00000970 call  0x0000076b 
+ 00001705  0x00000971 call  0x000007a5 , 0x0000002f 
+ 00001706  0x00000972 rtn 
+ 00001707  0x0000097a rtn 
+ 00001708  0x0000097f jam  0x00000000 , 0x00004d22 
+ 00001709  0x00000980 jam  0x00000032 , 0x00000b7d 
+ 00001710  0x00000981 branch  0x00007c27 
+ 00001711  0x00000985 call  0x00000719 
+ 00001712  0x00000986 fetch  0x00000001 , 0x00000cb3 
+ 00001713  0x00000987 rtnne  0x00000002 
+ 00001714  0x00000988 fetch  0x00000001 , 0x00004bdf 
+ 00001715  0x00000989 rtn  0x00000034 
+ 00001716  0x0000098a iforce  0x00000039 
+ 00001717  0x0000098b arg  0x00000cb5 , 0x00000006 
+ 00001718  0x0000098c arg  0x00000d17 , 0x00000005 
+ 00001719  0x0000098d call  0x00007e45 
+ 00001720  0x0000098e fetch  0x00000001 , 0x00000cb4 
+ 00001721  0x0000098f compare  0x00000008 , 0x0000003f , 0x000000f8 
+ 00001722  0x00000990 nrtn  0x00000001 
+ 00001723  0x00000991 fetch  0x00000001 , 0x00000cb5 
+ 00001724  0x00000992 beq  0x000000ff , 0x000006bf 
+ 00001725  0x00000993 store  0x00000001 , 0x00004c90 
+ 00001726  0x00000995 rtn 
+ 00001727  0x00000998 jam  0x00000001 , 0x00004d5a 
+ 00001728  0x00000999 rtn 
+ 00001729  0x0000099e set1  0x00000023 , 0x00000000 
+ 00001730  0x0000099f call  0x000006c6 
+ 00001731  0x000009a0 call  0x00000685 
+ 00001732  0x000009a1 jam  0x00000001 , 0x00004bef 
+ 00001733  0x000009a2 rtn 
+ 00001734  0x000009a5 jam  0x00000000 , 0x00004be0 
+ 00001735  0x000009a6 jam  0x0000004e , 0x00004be9 
+ 00001736  0x000009a7 fetch  0x00000004 , 0x00004beb 
+ 00001737  0x000009a8 branch  0x00000726 
+ 00001738  0x000009ab call  0x000006c6 
+ 00001739  0x000009ac fetch  0x00000001 , 0x00004be6 
+ 00001740  0x000009ad beq  0x00000001 , 0x000034df 
+ 00001741  0x000009ae fetch  0x00000001 , 0x00004bef 
+ 00001742  0x000009af beq  0x00000001 , 0x000006d2 
+ 00001743  0x000009b0 beq  0x00000002 , 0x000006d5 
+ 00001744  0x000009b1 beq  0x00000003 , 0x000006d8 
+ 00001745  0x000009b2 branch  0x00003bf1 
+ 00001746  0x000009b5 jam  0x00000011 , 0x00004bef 
+ 00001747  0x000009b6 jam  0x000000aa , 0x00000d37 
+ 00001748  0x000009b7 branch  0x000006da 
+ 00001749  0x000009b9 jam  0x00000012 , 0x00004bef 
+ 00001750  0x000009ba jam  0x00000055 , 0x00000d37 
+ 00001751  0x000009bb branch  0x000006da 
+ 00001752  0x000009bd jam  0x00000013 , 0x00004bef 
+ 00001753  0x000009be jam  0x00000022 , 0x00000d37 
+ 00001754  0x000009c3 jam  0x00000002 , 0x00000d38 
+ 00001755  0x000009c4 fetch  0x00000004 , 0x00004c06 
+ 00001756  0x000009c5 store  0x00000004 , 0x00000d39 
+ 00001757  0x000009c6 jam  0x00000000 , 0x00000d3d 
+ 00001758  0x000009c7 arg  0x00000d37 , 0x00000011 
+ 00001759  0x000009c8 arg  0x00000007 , 0x00000002 
+ 00001760  0x000009c9 call  0x00000714 
+ 00001761  0x000009ca call  0x00000734 
+ 00001762  0x000009cb call  0x00000658 
+ 00001763  0x000009cc branch  0x000034df 
+ 00001764  0x000009cf fetch  0x00000001 , 0x00004bef 
+ 00001765  0x000009d0 rtneq  0x000000ff 
+ 00001766  0x000009d1 beq  0x00000011 , 0x000006ea 
+ 00001767  0x000009d2 beq  0x00000012 , 0x000006ec 
+ 00001768  0x000009d3 beq  0x00000013 , 0x000006ee 
+ 00001769  0x000009d4 rtn 
+ 00001770  0x000009d8 jam  0x00000002 , 0x00004bef 
+ 00001771  0x000009d9 branch  0x00000685 
+ 00001772  0x000009db jam  0x00000003 , 0x00004bef 
+ 00001773  0x000009dc branch  0x00000685 
+ 00001774  0x000009de jam  0x000000ff , 0x00004bef 
+ 00001775  0x000009df jam  0x00000031 , 0x00000b7d 
+ 00001776  0x000009e0 call  0x00007c27 
+ 00001777  0x000009e1 fetch  0x00000004 , 0x00000d19 
+ 00001778  0x000009e2 call  0x00000726 
+ 00001779  0x000009e3 branch  0x00000685 
+ 00001780  0x000009e7 set1  0x00000023 , 0x00000000 
+ 00001781  0x000009e8 call  0x00000727 
+ 00001782  0x000009e9 call  0x00000753 
+ 00001783  0x000009ea fetch  0x00000001 , 0x00004bef 
+ 00001784  0x000009eb rtnne  0x000000ff 
+ 00001785  0x000009ec call  0x00000706 
+ 00001786  0x000009ed setarg  0x00000000 
+ 00001787  0x000009ee store  0x00000002 , 0x00004c04 
+ 00001788  0x000009f0 call  0x00003cab 
+ 00001789  0x000009f1 nop  0x000007d0 
+ 00001790  0x000009f2 fetch  0x00000001 , 0x00004c04 
+ 00001791  0x000009f3 beq  0x000000ff , 0x000006ac 
+ 00001792  0x000009f4 call  0x000006a0 
+ 00001793  0x000009f5 nbranch  0x0000070f , 0x0000002f 
+ 00001794  0x000009f7 call  0x0000069b 
+ 00001795  0x000009f8 set1  0x00000023 , 0x00000000 
+ 00001796  0x000009f9 jam  0x0000003c , 0x00000b7d 
+ 00001797  0x000009fa branch  0x00007c27 
+ 00001798  0x000009fe jam  0x000000ff , 0x00000d37 
+ 00001799  0x000009ff fetch  0x00000001 , 0x00004be2 
+ 00001800  0x00000a00 store  0x00000001 , 0x00000d38 
+ 00001801  0x00000a01 fetch  0x00000004 , 0x00004c06 
+ 00001802  0x00000a02 store  0x00000004 , 0x00000d39 
+ 00001803  0x00000a03 arg  0x00000006 , 0x00000002 
+ 00001804  0x00000a04 arg  0x00000d37 , 0x00000011 
+ 00001805  0x00000a05 call  0x00000714 
+ 00001806  0x00000a06 branch  0x00000734 
+ 00001807  0x00000a09 fetch  0x00000002 , 0x00004c04 
+ 00001808  0x00000a0a increase  0x00000001 , 0x0000003f 
+ 00001809  0x00000a0b store  0x00000002 , 0x00004c04 
+ 00001810  0x00000a0c call  0x00000753 
+ 00001811  0x00000a0d branch  0x000006fc 
+ 00001812  0x00000a11 storet  0x00000001 , 0x00004be1 
+ 00001813  0x00000a12 copy  0x00000002 , 0x00000039 
+ 00001814  0x00000a13 arg  0x00000cd5 , 0x00000005 
+ 00001815  0x00000a14 copy  0x00000011 , 0x00000006 
+ 00001816  0x00000a15 branch  0x00007e45 
+ 00001817  0x00000a19 fetch  0x00000001 , 0x00000cb4 
+ 00001818  0x00000a1a rshift3  0x0000003f , 0x0000003f 
+ 00001819  0x00000a1b store  0x00000001 , 0x00004bdf 
+ 00001820  0x00000a1c rtn 
+ 00001821  0x00000a1f fetcht  0x00000001 , 0x00004c22 
+ 00001822  0x00000a20 setarg  0x00004c11 
+ 00001823  0x00000a21 iadd  0x00000002 , 0x00000005 
+ 00001824  0x00000a22 copy  0x00000011 , 0x0000003f 
+ 00001825  0x00000a23 istore  0x00000001 , 0x00000005 
+ 00001826  0x00000a24 increase  0x00000001 , 0x00000002 
+ 00001827  0x00000a25 and_into  0x00000007 , 0x00000002 
+ 00001828  0x00000a26 storet  0x00000001 , 0x00004c22 
+ 00001829  0x00000a27 rtn 
+ 00001830  0x00000a3c store  0x00000004 , 0x00004c00 
+ 00001831  0x00000a40 arg  0x00000000 , 0x00000011 
+ 00001832  0x00000a41 arg  0x00000004 , 0x00000039 
+ 00001833  0x00000a42 arg  0x00004c00 , 0x00000006 
+ 00001834  0x00000a44 ifetch  0x00000001 , 0x00000006 
+ 00001835  0x00000a45 iadd  0x00000011 , 0x00000011 
+ 00001836  0x00000a46 loop  0x0000072a 
+ 00001837  0x00000a47 copy  0x00000011 , 0x0000003f 
+ 00001838  0x00000a48 store  0x00000002 , 0x00004c0c 
+ 00001839  0x00000a49 fetch  0x00000001 , 0x00004c0c 
+ 00001840  0x00000a4a fetcht  0x00000001 , 0x00004c0d 
+ 00001841  0x00000a4b iadd  0x00000002 , 0x0000003f 
+ 00001842  0x00000a4c store  0x00000001 , 0x00004c0e 
+ 00001843  0x00000a4d rtn 
+ 00001844  0x00000a52 fetch  0x00000001 , 0x00004be1 
+ 00001845  0x00000a53 increase  0x00000002 , 0x0000003f 
+ 00001846  0x00000a54 store  0x00000001 , 0x00004be3 
+ 00001847  0x00000a56 fetch  0x00000001 , 0x00004be2 
+ 00001848  0x00000a57 store  0x00000001 , 0x00000cf5 
+ 00001849  0x00000a59 fetch  0x00000001 , 0x00004be1 
+ 00001850  0x00000a5a lshift3  0x0000003f , 0x0000003f 
+ 00001851  0x00000a5b fetcht  0x00000001 , 0x00004be0 
+ 00001852  0x00000a5c and  0x00000002 , 0x00000003 , 0x00000002 
+ 00001853  0x00000a5d lshift  0x00000002 , 0x00000002 
+ 00001854  0x00000a5e ior  0x00000002 , 0x0000003f 
+ 00001855  0x00000a5f fetcht  0x00000001 , 0x00004c0a 
+ 00001856  0x00000a60 iadd  0x00000002 , 0x0000003f 
+ 00001857  0x00000a61 istore  0x00000001 , 0x00000005 
+ 00001858  0x00000a63 fetch  0x00000001 , 0x00004bef 
+ 00001859  0x00000a64 bne  0x000000ff , 0x00000746 
+ 00001860  0x00000a65 fetch  0x00000001 , 0x00004be2 
+ 00001861  0x00000a66 istore  0x00000001 , 0x00000005 
+ 00001862  0x00000a68 fetch  0x00000001 , 0x00004be1 
+ 00001863  0x00000a69 iforce  0x00000039 
+ 00001864  0x00000a6a fetch  0x00000001 , 0x00004be2 
+ 00001865  0x00000a6b beq  0x00000001 , 0x00000751 
+ 00001866  0x00000a6c arg  0x00000cd5 , 0x00000006 
+ 00001867  0x00000a6d call  0x00007e45 
+ 00001868  0x00000a71 fetch  0x00000001 , 0x00000cd5 
+ 00001869  0x00000a72 beq  0x00000003 , 0x0000074f 
+ 00001870  0x00000a73 rtn 
+ 00001871  0x00000a75 jam  0x00000002 , 0x00000cd5 
+ 00001872  0x00000a76 rtn 
+ 00001873  0x00000a7a arg  0x00000cd6 , 0x00000006 
+ 00001874  0x00000a7b branch  0x00007e45 
+ 00001875  0x00000a7e fetcht  0x00000001 , 0x00004bea 
+ 00001876  0x00000a7f call  0x00000759 
+ 00001877  0x00000a80 increase  0x00000001 , 0x00000002 
+ 00001878  0x00000a81 and_into  0x00000003 , 0x00000002 
+ 00001879  0x00000a82 storet  0x00000001 , 0x00004bea 
+ 00001880  0x00000a83 rtn 
+ 00001881  0x00000a86 fetch  0x00000001 , 0x00004c00 
+ 00001882  0x00000a87 and_into  0x00000003 , 0x0000003f 
+ 00001883  0x00000a88 mul32  0x0000003f , 0x00000004 , 0x00000011 
+ 00001884  0x00000a89 setarg  0x00004bf0 
+ 00001885  0x00000a8a iadd  0x00000011 , 0x0000003f 
+ 00001886  0x00000a8b iadd  0x00000002 , 0x00000006 
+ 00001887  0x00000a8c ifetch  0x00000001 , 0x00000006 
+ 00001888  0x00000a8d store  0x00000001 , 0x00004be9 
+ 00001889  0x00000a8e rtn 
+ 00001890  0x00000a91 disable  0x00000009 
+ 00001891  0x00000a92 disable  0x00000007 
+ 00001892  0x00000a93 setarg  0x00555555 
+ 00001893  0x00000a94 iforce  0x0000000f 
+ 00001894  0x00000a95 fetch  0x00000001 , 0x00004be9 
+ 00001895  0x00000a96 reverse  0x0000003f , 0x00000002 
+ 00001896  0x00000a97 set1  0x00000001 , 0x00000002 
+ 00001897  0x00000a98 rshift  0x00000002 , 0x0000000e 
+ 00001898  0x00000a99 rtn 
+ 00001899  0x00000a9c call  0x00000762 
+ 00001900  0x00000a9d enable  0x0000000d 
+ 00001901  0x00000a9e enable  0x00000021 
+ 00001902  0x00000a9f disable  0x00000020 
+ 00001903  0x00000aa0 enable  0x00000010 
+ 00001904  0x00000aa1 fetch  0x00000002 , 0x00004be4 
+ 00001905  0x00000aa2 iforce  0x0000001b 
+ 00001906  0x00000aa3 correlate  0x0000003e , 0x00000003 
+ 00001907  0x00000aa4 nbranch  0x000007a5 , 0x00000018 
+ 00001908  0x00000aa5 disable  0x0000000d 
+ 00001909  0x00000aa6 enable  0x0000000b 
+ 00001910  0x00000aa7 enable  0x00000007 
+ 00001911  0x00000aa8 enable  0x00000009 
+ 00001912  0x00000aa9 parse  0x00000003 , 0x00000000 , 0x00000008 
+ 00001913  0x00000aaa rshift3  0x0000000c , 0x0000003f 
+ 00001914  0x00000aab store  0x00000001 , 0x00004c0f 
+ 00001915  0x00000aac fetcht  0x00000001 , 0x00004c0e 
+ 00001916  0x00000aad isub  0x00000002 , 0x0000003e 
+ 00001917  0x00000aae nbranch  0x000007a5 , 0x00000005 
+ 00001918  0x00000aaf parse  0x00000003 , 0x00000000 , 0x00000008 
+ 00001919  0x00000ab0 rshift3  0x0000000c , 0x0000003f 
+ 00001920  0x00000ab1 store  0x00000001 , 0x00000cb3 
+ 00001921  0x00000ab5 fetch  0x00000001 , 0x00000cb3 
+ 00001922  0x00000ab6 fetcht  0x00000001 , 0x00004be2 
+ 00001923  0x00000ab7 icompare  0x00000007 , 0x00000002 
+ 00001924  0x00000ab8 nbranch  0x000007a5 , 0x00000001 
+ 00001925  0x00000aba parse  0x00000003 , 0x00000000 , 0x00000008 
+ 00001926  0x00000abb rshift3  0x0000000c , 0x0000003f 
+ 00001927  0x00000abc istore  0x00000001 , 0x00000005 
+ 00001928  0x00000abd rshift3  0x0000003f , 0x0000003f 
+ 00001929  0x00000abe and  0x0000003f , 0x0000001f , 0x00000039 
+ 00001930  0x00000abf branch  0x0000078f , 0x00000005 
+ 00001931  0x00000ac1 parse  0x00000003 , 0x00000000 , 0x00000008 
+ 00001932  0x00000ac2 rshift3  0x0000000c , 0x0000003f 
+ 00001933  0x00000ac3 istore  0x00000001 , 0x00000005 
+ 00001934  0x00000ac4 loop  0x0000078b 
+ 00001935  0x00000ac7 copy  0x00000005 , 0x00000011 
+ 00001936  0x00000ac8 parse  0x00000003 , 0x00000000 , 0x00000008 
+ 00001937  0x00000ac9 rshift3  0x0000000c , 0x0000003f 
+ 00001938  0x00000aca store  0x00000001 , 0x00004c10 
+ 00001939  0x00000acb copy  0x00000011 , 0x00000005 
+ 00001940  0x00000acc parse  0x00000003 , 0x00000000 , 0x00000018 
+ 00001941  0x00000acd enable  0x00000010 
+ 00001942  0x00000ace arg  0x00000664 , 0x0000001b 
+ 00001943  0x00000acf rshift32  0x0000003f , 0x0000003f 
+ 00001944  0x00000ad0 rshift16  0x0000003f , 0x0000003f 
+ 00001945  0x00000ad1 istore  0x00000003 , 0x00000005 
+ 00001946  0x00000ad2 disable  0x0000000b 
+ 00001947  0x00000ad3 branch  0x000007a5 , 0x00000006 
+ 00001948  0x00000ad4 enable  0x0000002f 
+ 00001949  0x00000ad5 fetch  0x00000001 , 0x00000017 
+ 00001950  0x00000ad6 add  0x0000003f , 0x00000000 , 0x00000011 
+ 00001951  0x00000ad7 call  0x00003ab6 
+ 00001952  0x00000ad8 disable  0x0000000d 
+ 00001953  0x00000ad9 call  0x00003a7a 
+ 00001954  0x00000ada fetch  0x00000001 , 0x00004c10 
+ 00001955  0x00000adb copy  0x0000003f , 0x00000011 
+ 00001956  0x00000adc branch  0x0000071d 
+ 00001957  0x00000ae3 disable  0x0000001b 
+ 00001958  0x00000ae4 disable  0x0000000b 
+ 00001959  0x00000ae5 branch  0x0000375c 
+ 00001960  0x00000ae8 call  0x00003a7a 
+ 00001961  0x00000ae9 fetcht  0x00000001 , 0x00004be9 
+ 00001962  0x00000aea branch  0x00003a91 
+ 00001963  0x00000aed call  0x000053d2 
+ 00001964  0x00000aee fetch  0x00000004 , 0x00004c00 
+ 00001965  0x00000aef iforce  0x00000009 
+ 00001966  0x00000af0 call  0x00000762 
+ 00001967  0x00000af1 call  0x000007a8 
+ 00001968  0x00000af2 set1  0x00000000 , 0x00000015 
+ 00001969  0x00000af3 enable  0x0000001d 
+ 00001970  0x00000af4 enable  0x00000020 
+ 00001971  0x00000af5 disable  0x00000021 
+ 00001972  0x00000af6 rshift16  0x00000009 , 0x0000003f 
+ 00001973  0x00000af7 rshift8  0x0000003f , 0x0000003f 
+ 00001974  0x00000af8 rshift4  0x0000003f , 0x0000003f 
+ 00001975  0x00000af9 inject  0x00000003 , 0x00000028 
+ 00001976  0x00000afa disable  0x0000001d 
+ 00001977  0x00000afb enable  0x0000001b 
+ 00001978  0x00000afc enable  0x00000007 
+ 00001979  0x00000afd enable  0x00000009 
+ 00001980  0x00000afe fetch  0x00000001 , 0x00004c0e 
+ 00001981  0x00000aff inject  0x00000003 , 0x00000008 
+ 00001982  0x00000b00 fetch  0x00000001 , 0x00004be3 
+ 00001983  0x00000b01 iforce  0x00000039 
+ 00001984  0x00000b02 arg  0x00000cf5 , 0x00000006 
+ 00001985  0x00000b04 ifetch  0x00000001 , 0x00000006 
+ 00001986  0x00000b05 inject  0x00000003 , 0x00000008 
+ 00001987  0x00000b06 loop  0x000007c1 
+ 00001988  0x00000b07 enable  0x00000008 
+ 00001989  0x00000b08 inject  0x00000003 , 0x00000018 
+ 00001990  0x00000b09 disable  0x00000008 
+ 00001991  0x00000b0a until  0x0000003e , 0x00000027 
+ 00001992  0x00000b0b nop  0x00000064 
+ 00001993  0x00000b0c disable  0x0000001d 
+ 00001994  0x00000b0d disable  0x0000001b 
+ 00001995  0x00000b0e branch  0x00003a7a 
+ 00012288  0x00000b1a call  0x00003c74 
+ 00012289  0x00000b1e set0  0x00000025 , 0x00000000 
+ 00012290  0x00000b1f bpatch  0x00000000 , 0x00004000 
+ 00012291  0x00000b20 clear_stack 
+ 00012292  0x00000b21 call  0x00003a9e 
+ 00012293  0x00000b22 call  0x00006805 
+ 00012294  0x00000b23 call  0x00003bfa 
+ 00012295  0x00000b24 call  0x00004d98 
+ 00012296  0x00000b25 set0  0x00000025 , 0x00000000 
+ 00012297  0x00000b26 bpatch  0x00000001 , 0x00004000 
+ 00012298  0x00000b27 call  0x00006b53 
+ 00012299  0x00000b28 call  0x00005b62 
+ 00012300  0x00000b29 call  0x00007b9d 
+ 00012301  0x00000b2a call  0x00003e4f 
+ 00012302  0x00000b2b set0  0x00000025 , 0x00000000 
+ 00012303  0x00000b2c bpatch  0x00000002 , 0x00004000 
+ 00012304  0x00000b2d call  0x00003e5f , 0x0000002b 
+ 00012305  0x00000b2e call  0x00007719 
+ 00012306  0x00000b2f call  0x00003cf1 , 0x0000002b 
+ 00012307  0x00000b31 set0  0x00000025 , 0x00000000 
+ 00012308  0x00000b32 bpatch  0x00000003 , 0x00004000 
+ 00012309  0x00000b33 call  0x00007813 
+ 00012310  0x00000b34 call  0x00005373 
+ 00012311  0x00000b35 call  0x00004449 
+ 00012312  0x00000b36 set0  0x00000025 , 0x00000000 
+ 00012313  0x00000b37 bpatch  0x00000004 , 0x00004000 
+ 00012314  0x00000b38 call  0x0000303e 
+ 00012315  0x00000b39 call  0x00003e6a 
+ 00012316  0x00000b3a call  0x000030a1 
+ 00012317  0x00000b3b set0  0x00000025 , 0x00000000 
+ 00012318  0x00000b3c bpatch  0x00000005 , 0x00004000 
+ 00012319  0x00000b3d call  0x00003392 
+ 00012320  0x00000b3e call  0x00003407 
+ 00012321  0x00000b3f call  0x00003024 
+ 00012322  0x00000b40 call  0x00003d1c 
+ 00012323  0x00000b41 branch  0x00003013 
+ 00012324  0x00000b44 call  0x00003029 
+ 00012325  0x00000b45 rtnmark0  0x00000009 
+ 00012326  0x00000b46 set0  0x00000009 , 0x00000000 
+ 00012327  0x00000b47 call  0x000032bd 
+ 00012328  0x00000b48 branch  0x000053d7 
+ 00012329  0x00000b4b set0  0x00000025 , 0x00000000 
+ 00012330  0x00000b4c bpatch  0x00000006 , 0x00004000 
+ 00012331  0x00000b4d call  0x000032fe 
+ 00012332  0x00000b4e nbranch  0x00003033 , 0x00000005 
+ 00012333  0x00000b4f call  0x000032a3 
+ 00012334  0x00000b50 add  0x00000011 , 0x00000001 , 0x00000006 
+ 00012335  0x00000b51 ifetch  0x00000001 , 0x00000006 
+ 00012336  0x00000b52 bbit1  0x00000000 , 0x00005377 
+ 00012337  0x00000b53 bbit1  0x00000001 , 0x000031a7 
+ 00012338  0x00000b54 branch  0x00003473 
+ 00012339  0x00000b56 set0  0x00000025 , 0x00000000 
+ 00012340  0x00000b57 bpatch  0x00000007 , 0x00004000 
+ 00012341  0x00000b58 call  0x000032c6 
+ 00012342  0x00000b59 copy  0x00000039 , 0x0000003e 
+ 00012343  0x00000b5a rtn  0x00000005 
+ 00012344  0x00000b5b call  0x000032a3 
+ 00012345  0x00000b5c fetch  0x00000001 , 0x00000030 
+ 00012346  0x00000b5d bbit1  0x00000003 , 0x00003103 
+ 00012347  0x00000b5e fetch  0x00000001 , 0x00000031 
+ 00012348  0x00000b5f bbit1  0x00000001 , 0x000031a7 
+ 00012349  0x00000b60 branch  0x00003473 
+ 00012350  0x00000b69 fetch  0x00000001 , 0x00004272 
+ 00012351  0x00000b6a rtn  0x00000034 
+ 00012352  0x00000b6b beq  0x00000001 , 0x0000304e 
+ 00012353  0x00000b6c beq  0x00000002 , 0x00003053 
+ 00012354  0x00000b6d beq  0x00000003 , 0x00003056 
+ 00012355  0x00000b6e beq  0x00000005 , 0x0000305b 
+ 00012356  0x00000b6f beq  0x0000001b , 0x0000304b 
+ 00012357  0x00000b70 call  0x000032f6 
+ 00012358  0x00000b71 rtn  0x00000005 
+ 00012359  0x00000b72 call  0x000032f9 
+ 00012360  0x00000b73 rtn  0x00000005 
+ 00012361  0x00000b75 jam  0x00000000 , 0x00004272 
+ 00012362  0x00000b76 rtn 
+ 00012363  0x00000b79 jam  0x0000001b , 0x0000041c 
+ 00012364  0x00000b7a jam  0x00000000 , 0x00004272 
+ 00012365  0x00000b7b rtn 
+ 00012366  0x00000b7e set1  0x0000001c , 0x00000000 
+ 00012367  0x00000b7f set0  0x0000001e , 0x00000000 
+ 00012368  0x00000b80 jam  0x000000ff , 0x0000008e 
+ 00012369  0x00000b81 jam  0x0000001f , 0x0000008c 
+ 00012370  0x00000b82 branch  0x00003049 
+ 00012371  0x00000b85 set0  0x0000001c , 0x00000000 
+ 00012372  0x00000b86 force  0x00000000 , 0x0000001b 
+ 00012373  0x00000b87 branch  0x00003049 
+ 00012374  0x00000b8a call  0x000032f9 
+ 00012375  0x00000b8b rtn  0x00000005 
+ 00012376  0x00000b8c force  0x00000001 , 0x00000002 
+ 00012377  0x00000b8d jam  0x00000005 , 0x00000178 
+ 00012378  0x00000b8e branch  0x00003068 
+ 00012379  0x00000b91 set0  0x00000025 , 0x00000000 
+ 00012380  0x00000b92 bpatch  0x00000008 , 0x00004001 
+ 00012381  0x00000b93 fetch  0x00000001 , 0x00004132 
+ 00012382  0x00000b94 beq  0x00000001 , 0x00003064 
+ 00012383  0x00000b96 fetch  0x00000006 , 0x00004274 
+ 00012384  0x00000b97 branch  0x00003049 , 0x00000034 
+ 00012385  0x00000b98 jam  0x00000001 , 0x000047f3 
+ 00012386  0x00000b9a jam  0x00000003 , 0x00000055 
+ 00012387  0x00000b9b branch  0x00003067 
+ 00012388  0x00000b9e fetch  0x00000006 , 0x00004274 
+ 00012389  0x00000b9f branch  0x00003049 , 0x00000034 
+ 00012390  0x00000ba0 store  0x00000006 , 0x00000040 
+ 00012391  0x00000ba2 force  0x00000025 , 0x00000002 
+ 00012392  0x00000ba4 set0  0x00000025 , 0x00000000 
+ 00012393  0x00000ba5 bpatch  0x00000009 , 0x00004001 
+ 00012394  0x00000ba6 fetch  0x00000001 , 0x000000f3 
+ 00012395  0x00000ba7 branch  0x0000306f , 0x00000034 
+ 00012396  0x00000ba8 lshift3  0x0000003f , 0x0000003f 
+ 00012397  0x00000ba9 lshift4  0x0000003f , 0x0000003f 
+ 00012398  0x00000baa increase  0xffffffff , 0x0000003f 
+ 00012399  0x00000bac store  0x00000001 , 0x00004146 
+ 00012400  0x00000bad store  0x00000001 , 0x000000f2 
+ 00012401  0x00000bae jam  0x0000001f , 0x0000008d 
+ 00012402  0x00000baf set0  0x0000000c , 0x00000000 
+ 00012403  0x00000bb0 call  0x000032d6 
+ 00012404  0x00000bb1 nbranch  0x00003090 , 0x00000005 
+ 00012405  0x00000bb2 call  0x00003bd1 
+ 00012406  0x00000bb3 store  0x00000001 , 0x00000077 
+ 00012407  0x00000bb4 storet  0x00000001 , 0x0000007c 
+ 00012408  0x00000bb5 fetch  0x00000006 , 0x00004274 
+ 00012409  0x00000bb6 store  0x00000006 , 0x00000040 
+ 00012410  0x00000bb7 set0  0x00000025 , 0x00000000 
+ 00012411  0x00000bb8 bpatch  0x0000000a , 0x00004001 
+ 00012412  0x00000bb9 force  0x00000000 , 0x0000003f 
+ 00012413  0x00000bba compare  0x00000001 , 0x00000002 , 0x000000ff 
+ 00012414  0x00000bbb nsetflag  0x00000001 , 0x00000005 , 0x0000003f 
+ 00012415  0x00000bbc set1  0x00000003 , 0x0000003f 
+ 00012416  0x00000bbd store  0x00000001 , 0x00000030 
+ 00012417  0x00000bbe jam  0x00000003 , 0x00000b7d 
+ 00012418  0x00000bbf call  0x00007c27 
+ 00012419  0x00000bc0 force  0x00000000 , 0x0000003f 
+ 00012420  0x00000bc1 setflag  0x00000001 , 0x00000004 , 0x0000003f 
+ 00012421  0x00000bc2 store  0x00000001 , 0x0000004c 
+ 00012422  0x00000bc3 setarg  0x00000000 
+ 00012423  0x00000bc4 set1  0x00000001 , 0x0000003f 
+ 00012424  0x00000bc5 store  0x00000001 , 0x00000031 
+ 00012425  0x00000bc6 enable  0x00000029 
+ 00012426  0x00000bc7 call  0x000032bd 
+ 00012427  0x00000bc8 disable  0x00000029 
+ 00012428  0x00000bc9 force  0x00000004 , 0x00000007 
+ 00012429  0x00000bca fetch  0x00000002 , 0x00004159 
+ 00012430  0x00000bcb call  0x00007e4c 
+ 00012431  0x00000bcc branch  0x00003049 
+ 00012432  0x00000bce set0  0x00000025 , 0x00000000 
+ 00012433  0x00000bcf bpatch  0x0000000b , 0x00004001 
+ 00012434  0x00000bd0 fetch  0x00000006 , 0x00004274 
+ 00012435  0x00000bd1 store  0x00000006 , 0x00000040 
+ 00012436  0x00000bd2 compare  0x00000001 , 0x00000002 , 0x000000ff 
+ 00012437  0x00000bd3 branch  0x00003099 , 0x00000001 
+ 00012438  0x00000bd4 force  0x00000007 , 0x00000002 
+ 00012439  0x00000bd5 call  0x00004826 
+ 00012440  0x00000bd6 branch  0x00003049 
+ 00012441  0x00000bd8 arg  0x00000103 , 0x00000005 
+ 00012442  0x00000bd9 arg  0x00000008 , 0x00000039 
+ 00012443  0x00000bda call  0x00007e3b 
+ 00012444  0x00000bdb force  0x00000007 , 0x00000007 
+ 00012445  0x00000bdc call  0x00004898 
+ 00012446  0x00000bdd jam  0x00000004 , 0x00000b7d 
+ 00012447  0x00000bde call  0x00007c27 
+ 00012448  0x00000bdf branch  0x00003049 
+ 00012449  0x00000be7 rtnmark0  0x0000001c 
+ 00012450  0x00000be8 force  0x00000002 , 0x00000007 
+ 00012451  0x00000be9 call  0x00007e53 
+ 00012452  0x00000bea nsetflag  0x00000034 , 0x0000001c , 0x00000000 
+ 00012453  0x00000beb nbranch  0x000030a7 , 0x00000034 
+ 00012454  0x00000bec rtn 
+ 00012455  0x00000bf1 set0  0x00000025 , 0x00000000 
+ 00012456  0x00000bf2 bpatch  0x0000000c , 0x00004001 
+ 00012457  0x00000bf3 fetcht  0x00000002 , 0x0000415b 
+ 00012458  0x00000bf4 force  0x00000004 , 0x00000007 
+ 00012459  0x00000bf5 call  0x0000383d 
+ 00012460  0x00000bf6 rtn  0x00000028 
+ 00012461  0x00000bf7 call  0x00003a12 
+ 00012462  0x00000bf8 force  0x00000000 , 0x00000024 
+ 00012463  0x00000bfa rtn  0x00000003 
+ 00012464  0x00000bfb set0  0x0000000b , 0x00000000 
+ 00012465  0x00000bfc set0  0x00000000 , 0x00000000 
+ 00012466  0x00000bfe add  0x00000022 , 0x00000001 , 0x00000021 
+ 00012467  0x00000bff isolate1  0x0000001e , 0x00000000 
+ 00012468  0x00000c00 setflag  0x00000001 , 0x00000002 , 0x00000024 
+ 00012469  0x00000c01 compare  0x00000000 , 0x00000021 , 0x00000002 
+ 00012470  0x00000c02 nbranch  0x000030d3 , 0x00000001 
+ 00012471  0x00000c05 set0  0x00000025 , 0x00000000 
+ 00012472  0x00000c06 bpatch  0x0000000d , 0x00004001 
+ 00012473  0x00000c07 fetch  0x00000001 , 0x00000012 
+ 00012474  0x00000c08 increase  0x00000001 , 0x0000003f 
+ 00012475  0x00000c09 store  0x00000001 , 0x00000012 
+ 00012476  0x00000c0a call  0x00003a49 
+ 00012477  0x00000c0b call  0x00003a42 
+ 00012478  0x00000c0c call  0x00003a66 
+ 00012479  0x00000c0d call  0x00003bae 
+ 00012480  0x00000c0e call  0x00003bb4 
+ 00012481  0x00000c0f call  0x00003bc5 
+ 00012482  0x00000c10 call  0x0000375c 
+ 00012483  0x00000c11 call  0x000030c5 
+ 00012484  0x00000c12 branch  0x000030af 
+ 00012485  0x00000c15 set0  0x00000025 , 0x00000000 
+ 00012486  0x00000c16 bpatch  0x0000000e , 0x00004001 
+ 00012487  0x00000c17 fetch  0x00000001 , 0x0000008c 
+ 00012488  0x00000c18 increase  0xffffffff , 0x0000003f 
+ 00012489  0x00000c19 store  0x00000001 , 0x0000008c 
+ 00012490  0x00000c1a rtn  0x00000002 
+ 00012491  0x00000c1b jam  0x0000001f , 0x0000008c 
+ 00012492  0x00000c1c fetch  0x00000001 , 0x0000008e 
+ 00012493  0x00000c1d increase  0xffffffff , 0x0000003f 
+ 00012494  0x00000c1e store  0x00000001 , 0x0000008e 
+ 00012495  0x00000c1f rtn  0x00000002 
+ 00012496  0x00000c20 setflip  0x0000001e , 0x00000000 
+ 00012497  0x00000c21 jam  0x000000ff , 0x0000008e 
+ 00012498  0x00000c22 rtn 
+ 00012499  0x00000c25 set0  0x00000025 , 0x00000000 
+ 00012500  0x00000c26 bpatch  0x0000000f , 0x00004001 
+ 00012501  0x00000c27 call  0x00003a49 
+ 00012502  0x00000c28 call  0x00003a3b 
+ 00012503  0x00000c29 call  0x00003a66 
+ 00012504  0x00000c2a call  0x00003bba 
+ 00012505  0x00000c2b call  0x00003b3a 
+ 00012506  0x00000c2c call  0x00003b63 
+ 00012507  0x00000c2d branch  0x000030de , 0x00000018 
+ 00012508  0x00000c2e call  0x000030c5 
+ 00012509  0x00000c2f branch  0x000030b2 
+ 00012510  0x00000c31 set0  0x00000025 , 0x00000000 
+ 00012511  0x00000c32 bpatch  0x00000010 , 0x00004002 
+ 00012512  0x00000c33 call  0x00003af3 
+ 00012513  0x00000c34 call  0x00003bcd 
+ 00012514  0x00000c35 call  0x000035e1 
+ 00012515  0x00000c36 set0  0x00000001 , 0x00000000 
+ 00012516  0x00000c37 rtnmark0  0x0000000b 
+ 00012517  0x00000c39 set0  0x00000025 , 0x00000000 
+ 00012518  0x00000c3a bpatch  0x00000011 , 0x00004002 
+ 00012519  0x00000c3b fetch  0x00000001 , 0x000042a4 
+ 00012520  0x00000c3c bbit1  0x00000000 , 0x00004221 
+ 00012521  0x00000c3d call  0x0000477b 
+ 00012522  0x00000c3f fetch  0x00000001 , 0x00000013 
+ 00012523  0x00000c40 increase  0x00000001 , 0x0000003f 
+ 00012524  0x00000c41 store  0x00000001 , 0x00000013 
+ 00012525  0x00000c42 rtn 
+ 00012526  0x00000c44 set0  0x0000000b , 0x00000000 
+ 00012527  0x00000c45 call  0x000030fe 
+ 00012528  0x00000c46 call  0x00003a49 
+ 00012529  0x00000c47 call  0x00003a3b 
+ 00012530  0x00000c48 call  0x000034e1 
+ 00012531  0x00000c49 call  0x00003bba 
+ 00012532  0x00000c4a call  0x00003b3a 
+ 00012533  0x00000c4b call  0x00003b63 
+ 00012534  0x00000c4c branch  0x000030f8 , 0x00000018 
+ 00012535  0x00000c4d rtn 
+ 00012536  0x00000c4f call  0x00003bcd 
+ 00012537  0x00000c50 call  0x000035e1 
+ 00012538  0x00000c51 set0  0x00000001 , 0x00000000 
+ 00012539  0x00000c52 branch  0x000030e5 , 0x00000006 
+ 00012540  0x00000c53 call  0x0000479b 
+ 00012541  0x00000c54 branch  0x000030ea 
+ 00012542  0x00000c57 arg  0x00000600 , 0x0000000b 
+ 00012543  0x00000c59 until  0x00000023 , 0x00000026 
+ 00012544  0x00000c5a and  0x00000022 , 0x00000003 , 0x0000003f 
+ 00012545  0x00000c5b bne  0x00000001 , 0x000030ff 
+ 00012546  0x00000c5c rtn 
+ 00012547  0x00000c66 set0  0x00000025 , 0x00000000 
+ 00012548  0x00000c67 bpatch  0x00000012 , 0x00004002 
+ 00012549  0x00000c68 enable  0x00000029 
+ 00012550  0x00000c69 enable  0x00000030 
+ 00012551  0x00000c6a fetch  0x00000002 , 0x00004155 
+ 00012552  0x00000c6b branch  0x0000310c , 0x00000034 
+ 00012553  0x00000c6c force  0x0000000d , 0x00000007 
+ 00012554  0x00000c6d call  0x00007e53 
+ 00012555  0x00000c6e nrtn  0x00000034 
+ 00012556  0x00000c70 set0  0x00000025 , 0x00000000 
+ 00012557  0x00000c71 bpatch  0x00000013 , 0x00004002 
+ 00012558  0x00000c72 fetcht  0x00000002 , 0x00004157 
+ 00012559  0x00000c73 force  0x00000028 , 0x00000007 
+ 00012560  0x00000c74 call  0x0000383d 
+ 00012561  0x00000c75 branch  0x0000314e , 0x00000028 
+ 00012562  0x00000c76 force  0x00000004 , 0x00000007 
+ 00012563  0x00000c77 call  0x00007e53 
+ 00012564  0x00000c78 nbranch  0x00003127 , 0x00000034 
+ 00012565  0x00000c79 fetch  0x00000001 , 0x0000004c 
+ 00012566  0x00000c7a bbit1  0x00000004 , 0x0000311a 
+ 00012567  0x00000c7b force  0x00000004 , 0x00000002 
+ 00012568  0x00000c7c call  0x00004826 
+ 00012569  0x00000c7d branch  0x0000311f 
+ 00012570  0x00000c7f arg  0x00000103 , 0x00000005 
+ 00012571  0x00000c80 arg  0x00000008 , 0x00000039 
+ 00012572  0x00000c81 call  0x00007e3b 
+ 00012573  0x00000c82 force  0x00000004 , 0x00000007 
+ 00012574  0x00000c83 call  0x00004898 
+ 00012575  0x00000c85 set0  0x00000025 , 0x00000000 
+ 00012576  0x00000c86 bpatch  0x00000014 , 0x00004002 
+ 00012577  0x00000c87 jam  0x00000000 , 0x00000030 
+ 00012578  0x00000c88 call  0x00005b63 
+ 00012579  0x00000c89 jam  0x00000000 , 0x000047f3 
+ 00012580  0x00000c8a jam  0x00000013 , 0x00000b7d 
+ 00012581  0x00000c8b call  0x00007c27 
+ 00012582  0x00000c8c branch  0x0000314e 
+ 00012583  0x00000c8f set0  0x00000025 , 0x00000000 
+ 00012584  0x00000c90 bpatch  0x00000015 , 0x00004002 
+ 00012585  0x00000c91 force  0x00000000 , 0x0000000b 
+ 00012586  0x00000c92 until  0x00000023 , 0x00000026 
+ 00012587  0x00000c93 fetch  0x00000001 , 0x000000f4 
+ 00012588  0x00000c94 increase  0xffffffff , 0x0000003f 
+ 00012589  0x00000c95 ixor  0x00000022 , 0x0000003f 
+ 00012590  0x00000c96 compare  0x00000000 , 0x0000003f , 0x00000003 
+ 00012591  0x00000c97 nbranch  0x00003127 , 0x00000001 
+ 00012592  0x00000c98 deposit  0x00000004 
+ 00012593  0x00000c99 store  0x00000001 , 0x0000018b 
+ 00012594  0x00000c9a force  0x00000000 , 0x00000026 
+ 00012595  0x00000c9b force  0x00000000 , 0x00000024 
+ 00012596  0x00000c9e set0  0x00000025 , 0x00000000 
+ 00012597  0x00000c9f bpatch  0x00000016 , 0x00004002 
+ 00012598  0x00000ca0 branch  0x0000314e , 0x00000003 
+ 00012599  0x00000ca1 call  0x00003a4d 
+ 00012600  0x00000ca2 arg  0x00000600 , 0x0000000b 
+ 00012601  0x00000ca3 until  0x00000023 , 0x00000026 
+ 00012602  0x00000ca5 set0  0x00000025 , 0x00000000 
+ 00012603  0x00000ca6 bpatch  0x00000017 , 0x00004002 
+ 00012604  0x00000ca7 fetch  0x00000004 , 0x000000f4 
+ 00012605  0x00000ca8 iforce  0x00000021 
+ 00012606  0x00000ca9 increase  0x00000001 , 0x0000003f 
+ 00012607  0x00000caa store  0x00000004 , 0x000000f4 
+ 00012608  0x00000cab isolate1  0x0000000c , 0x00000000 
+ 00012609  0x00000cac setflag  0x00000001 , 0x00000002 , 0x00000024 
+ 00012610  0x00000cad compare  0x00000000 , 0x00000021 , 0x00000002 
+ 00012611  0x00000cae nbranch  0x00003164 , 0x00000001 
+ 00012612  0x00000caf fetch  0x00000001 , 0x0000000c 
+ 00012613  0x00000cb0 increase  0x00000001 , 0x0000003f 
+ 00012614  0x00000cb1 store  0x00000001 , 0x0000000c 
+ 00012615  0x00000cb2 call  0x00003a42 
+ 00012616  0x00000cb3 call  0x00003bae 
+ 00012617  0x00000cb4 call  0x00003bb4 
+ 00012618  0x00000cb5 call  0x00003bc5 
+ 00012619  0x00000cb6 call  0x0000375c 
+ 00012620  0x00000cb7 call  0x00003155 
+ 00012621  0x00000cb8 branch  0x00003134 
+ 00012622  0x00000cbb set0  0x00000025 , 0x00000000 
+ 00012623  0x00000cbc bpatch  0x00000018 , 0x00004003 
+ 00012624  0x00000cbd disable  0x00000029 
+ 00012625  0x00000cbe fetch  0x00000002 , 0x00004155 
+ 00012626  0x00000cbf rtn  0x00000034 
+ 00012627  0x00000cc0 force  0x0000000d , 0x00000007 
+ 00012628  0x00000cc1 branch  0x00007e4c 
+ 00012629  0x00000cc4 set0  0x00000025 , 0x00000000 
+ 00012630  0x00000cc5 bpatch  0x00000019 , 0x00004003 
+ 00012631  0x00000cc6 fetch  0x00000001 , 0x0000008d 
+ 00012632  0x00000cc7 increase  0xffffffff , 0x0000003f 
+ 00012633  0x00000cc8 store  0x00000001 , 0x0000008d 
+ 00012634  0x00000cc9 rtn  0x00000002 
+ 00012635  0x00000cca jam  0x0000001f , 0x0000008d 
+ 00012636  0x00000ccb fetch  0x00000001 , 0x000000f2 
+ 00012637  0x00000ccc increase  0xffffffff , 0x0000003f 
+ 00012638  0x00000ccd store  0x00000001 , 0x000000f2 
+ 00012639  0x00000cce rtn  0x00000002 
+ 00012640  0x00000ccf setflip  0x0000000c , 0x00000000 
+ 00012641  0x00000cd0 fetch  0x00000001 , 0x00004146 
+ 00012642  0x00000cd1 store  0x00000001 , 0x000000f2 
+ 00012643  0x00000cd2 rtn 
+ 00012644  0x00000cd5 set0  0x00000025 , 0x00000000 
+ 00012645  0x00000cd6 bpatch  0x0000001a , 0x00004003 
+ 00012646  0x00000cd7 call  0x00003a3b 
+ 00012647  0x00000cd8 call  0x00003bba 
+ 00012648  0x00000cd9 call  0x00003b3a 
+ 00012649  0x00000cda call  0x00003b63 
+ 00012650  0x00000cdb branch  0x0000316d , 0x00000018 
+ 00012651  0x00000cdc call  0x00003155 
+ 00012652  0x00000cdd branch  0x0000313a 
+ 00012653  0x00000cdf call  0x0000375c 
+ 00012654  0x00000ce0 fetch  0x00000001 , 0x0000000d 
+ 00012655  0x00000ce1 increase  0x00000001 , 0x0000003f 
+ 00012656  0x00000ce2 store  0x00000001 , 0x0000000d 
+ 00012657  0x00000ce3 force  0x00000000 , 0x0000001b 
+ 00012658  0x00000ce4 fetch  0x00000004 , 0x000000f4 
+ 00012659  0x00000ce6 set0  0x00000025 , 0x00000000 
+ 00012660  0x00000ce7 bpatch  0x0000001b , 0x00004003 
+ 00012661  0x00000ce8 call  0x00003bac 
+ 00012662  0x00000ce9 call  0x00003a4d 
+ 00012663  0x00000cea increase  0x00000001 , 0x00000026 
+ 00012664  0x00000cec and_into  0x000001fd , 0x00000021 
+ 00012665  0x00000ced and_into  0x000001fc , 0x00000024 
+ 00012666  0x00000cee call  0x00003a42 
+ 00012667  0x00000cef call  0x00003bae 
+ 00012668  0x00000cf0 call  0x00003bb4 
+ 00012669  0x00000cf1 call  0x00003bc5 
+ 00012670  0x00000cf2 deposit  0x00000022 
+ 00012671  0x00000cf3 store  0x00000004 , 0x0000016b 
+ 00012672  0x00000cf4 force  0x00000000 , 0x00000004 
+ 00012673  0x00000cf5 force  0x00000002 , 0x00000001 
+ 00012674  0x00000cf6 call  0x00003bcd 
+ 00012675  0x00000cf7 call  0x000038c1 
+ 00012676  0x00000cf9 set0  0x00000025 , 0x00000000 
+ 00012677  0x00000cfa bpatch  0x0000001c , 0x00004003 
+ 00012678  0x00000cfb call  0x00003baa 
+ 00012679  0x00000cfc or_into  0x00000002 , 0x00000021 
+ 00012680  0x00000cfd and_into  0x000001fc , 0x00000024 
+ 00012681  0x00000cfe call  0x00003a3b 
+ 00012682  0x00000cff call  0x00003bba 
+ 00012683  0x00000d00 call  0x00003b3a 
+ 00012684  0x00000d01 call  0x00003b63 
+ 00012685  0x00000d02 call  0x0000375c , 0x00000018 
+ 00012686  0x00000d03 branch  0x00003194 , 0x00000018 
+ 00012687  0x00000d04 fetch  0x00000001 , 0x00000010 
+ 00012688  0x00000d05 branch  0x00003134 , 0x00000034 
+ 00012689  0x00000d06 increase  0xffffffff , 0x0000003f 
+ 00012690  0x00000d07 store  0x00000001 , 0x00000010 
+ 00012691  0x00000d08 branch  0x00003173 
+ 00012692  0x00000d0b set0  0x00000025 , 0x00000000 
+ 00012693  0x00000d0c bpatch  0x0000001d , 0x00004003 
+ 00012694  0x00000d0d fetch  0x00000001 , 0x0000000e 
+ 00012695  0x00000d0e increase  0x00000001 , 0x0000003f 
+ 00012696  0x00000d0f store  0x00000001 , 0x0000000e 
+ 00012697  0x00000d10 call  0x000034ed 
+ 00012698  0x00000d12 call  0x0000338b 
+ 00012699  0x00000d13 branch  0x0000319f , 0x00000018 
+ 00012700  0x00000d14 call  0x0000350e 
+ 00012701  0x00000d15 nbranch  0x0000319a , 0x00000034 
+ 00012702  0x00000d16 branch  0x00003134 
+ 00012703  0x00000d19 set0  0x00000025 , 0x00000000 
+ 00012704  0x00000d1a bpatch  0x0000001e , 0x00004003 
+ 00012705  0x00000d1b fetch  0x00000001 , 0x00000030 
+ 00012706  0x00000d1c set0  0x00000003 , 0x0000003f 
+ 00012707  0x00000d1d store  0x00000001 , 0x00000030 
+ 00012708  0x00000d1e call  0x000034f9 
+ 00012709  0x00000d1f disable  0x00000029 
+ 00012710  0x00000d20 rtn 
+ 00012711  0x00000d24 set0  0x00000025 , 0x00000000 
+ 00012712  0x00000d25 bpatch  0x0000001f , 0x00004003 
+ 00012713  0x00000d26 enable  0x00000029 
+ 00012714  0x00000d27 enable  0x00000030 
+ 00012715  0x00000d28 call  0x0000324e 
+ 00012716  0x00000d29 rtn  0x00000028 
+ 00012717  0x00000d2a call  0x00003e25 
+ 00012718  0x00000d2b call  0x00003bac 
+ 00012719  0x00000d2c add  0x00000022 , 0x00000001 , 0x00000021 
+ 00012720  0x00000d2d call  0x00003a54 
+ 00012721  0x00000d2e force  0x00000003 , 0x00000024 
+ 00012722  0x00000d2f call  0x0000327c 
+ 00012723  0x00000d30 call  0x00006a54 
+ 00012724  0x00000d31 call  0x00006e10 
+ 00012725  0x00000d32 call  0x00003547 
+ 00012726  0x00000d33 call  0x00003a42 
+ 00012727  0x00000d34 call  0x00003bae 
+ 00012728  0x00000d35 call  0x00003bb4 
+ 00012729  0x00000d36 call  0x00003bc5 
+ 00012730  0x00000d37 call  0x000038bf 
+ 00012731  0x00000d39 set0  0x00000025 , 0x00000000 
+ 00012732  0x00000d3a bpatch  0x00000020 , 0x00004004 
+ 00012733  0x00000d3b call  0x00005b78 
+ 00012734  0x00000d3c call  0x00004995 
+ 00012735  0x00000d3d call  0x000048a9 
+ 00012736  0x00000d3e call  0x0000337c 
+ 00012737  0x00000d3f nbranch  0x000031c7 , 0x0000002d 
+ 00012738  0x00000d40 call  0x00003bec 
+ 00012739  0x00000d41 call  0x00003870 
+ 00012740  0x00000d42 fetch  0x00000001 , 0x0000000f 
+ 00012741  0x00000d43 increase  0x00000001 , 0x0000003f 
+ 00012742  0x00000d44 store  0x00000001 , 0x0000000f 
+ 00012743  0x00000d46 set0  0x00000025 , 0x00000000 
+ 00012744  0x00000d47 bpatch  0x00000021 , 0x00004004 
+ 00012745  0x00000d48 call  0x00006dec 
+ 00012746  0x00000d49 call  0x000031d5 
+ 00012747  0x00000d4a nrtn  0x00000029 
+ 00012748  0x00000d4b call  0x00003812 
+ 00012749  0x00000d4c nbranch  0x000031d2 , 0x00000034 
+ 00012750  0x00000d4e call  0x00006a5c 
+ 00012751  0x00000d4f call  0x00003290 
+ 00012752  0x00000d50 disable  0x00000029 
+ 00012753  0x00000d51 rtn 
+ 00012754  0x00000d54 call  0x00003547 
+ 00012755  0x00000d55 call  0x00003371 
+ 00012756  0x00000d56 branch  0x000031bb 
+ 00012757  0x00000d5a branch  0x000031d8 , 0x0000002d 
+ 00012758  0x00000d5b call  0x00003be2 
+ 00012759  0x00000d5c branch  0x000031e6 , 0x00000002 
+ 00012760  0x00000d5e call  0x00003204 
+ 00012761  0x00000d5f nbranch  0x000031e6 , 0x00000028 
+ 00012762  0x00000d60 fetch  0x00000001 , 0x0000004c 
+ 00012763  0x00000d61 rtnbit0  0x00000004 
+ 00012764  0x00000d62 rtnbit1  0x00000003 
+ 00012765  0x00000d63 fetch  0x00000001 , 0x0000004b 
+ 00012766  0x00000d64 rtnbit1  0x00000003 
+ 00012767  0x00000d65 call  0x0000320d 
+ 00012768  0x00000d66 nrtn  0x00000034 
+ 00012769  0x00000d67 fetch  0x00000001 , 0x00000178 
+ 00012770  0x00000d68 increase  0xffffffff , 0x0000003f 
+ 00012771  0x00000d69 store  0x00000001 , 0x00000178 
+ 00012772  0x00000d6a nrtn  0x00000034 
+ 00012773  0x00000d6b branch  0x00005ed5 
+ 00012774  0x00000d6e set0  0x00000025 , 0x00000000 
+ 00012775  0x00000d6f bpatch  0x00000022 , 0x00004004 
+ 00012776  0x00000d70 call  0x00003516 
+ 00012777  0x00000d71 disable  0x00000029 
+ 00012778  0x00000d72 fetch  0x00000001 , 0x0000004c 
+ 00012779  0x00000d73 bbit1  0x00000004 , 0x000031f2 
+ 00012780  0x00000d74 fetch  0x00000001 , 0x00000030 
+ 00012781  0x00000d75 bbit0  0x00000004 , 0x000031f0 
+ 00012782  0x00000d76 fetcht  0x00000001 , 0x00000046 
+ 00012783  0x00000d77 branch  0x000048c4 
+ 00012784  0x00000d79 force  0x00000008 , 0x00000002 
+ 00012785  0x00000d7a branch  0x00004826 
+ 00012786  0x00000d7c force  0x00000000 , 0x00000007 
+ 00012787  0x00000d7d fetch  0x00000001 , 0x0000004c 
+ 00012788  0x00000d7e bbit1  0x00000003 , 0x00004898 
+ 00012789  0x00000d80 force  0x00000004 , 0x00000007 
+ 00012790  0x00000d81 arg  0x00000103 , 0x00000005 
+ 00012791  0x00000d82 arg  0x00000008 , 0x00000039 
+ 00012792  0x00000d83 call  0x00007e3b 
+ 00012793  0x00000d84 branch  0x00004898 
+ 00012794  0x00000d87 set0  0x00000025 , 0x00000000 
+ 00012795  0x00000d88 bpatch  0x00000023 , 0x00004004 
+ 00012796  0x00000d89 fetch  0x00000001 , 0x00000030 
+ 00012797  0x00000d8a rtnbit0  0x00000002 
+ 00012798  0x00000d8b fetcht  0x00000001 , 0x00000046 
+ 00012799  0x00000d8c fetch  0x00000001 , 0x000000ac 
+ 00012800  0x00000d8d isub  0x00000002 , 0x0000003e 
+ 00012801  0x00000d8e nrtn  0x00000005 
+ 00012802  0x00000d8f call  0x00003869 
+ 00012803  0x00000d90 branch  0x00003293 
+ 00012804  0x00000d93 set0  0x00000025 , 0x00000000 
+ 00012805  0x00000d94 bpatch  0x00000024 , 0x00004004 
+ 00012806  0x00000d95 enable  0x00000028 
+ 00012807  0x00000d96 fetch  0x00000001 , 0x0000004b 
+ 00012808  0x00000d97 rtnbit0  0x00000003 
+ 00012809  0x00000d98 call  0x0000320d 
+ 00012810  0x00000d99 nrtn  0x00000034 
+ 00012811  0x00000d9b disable  0x00000028 
+ 00012812  0x00000d9c rtn 
+ 00012813  0x00000d9f fetch  0x00000001 , 0x00000072 
+ 00012814  0x00000da0 increase  0xffffffff , 0x0000003f 
+ 00012815  0x00000da1 store  0x00000001 , 0x00000072 
+ 00012816  0x00000da2 rtn 
+ 00012817  0x00000da5 set0  0x00000025 , 0x00000000 
+ 00012818  0x00000da6 bpatch  0x00000025 , 0x00004004 
+ 00012819  0x00000da7 fetch  0x00000001 , 0x00000030 
+ 00012820  0x00000da8 bbit1  0x00000007 , 0x0000321f 
+ 00012821  0x00000da9 fetch  0x00000001 , 0x00004132 
+ 00012822  0x00000daa beq  0x00000001 , 0x0000321d 
+ 00012823  0x00000dab fetch  0x00000001 , 0x000007e1 
+ 00012824  0x00000dac branch  0x0000321f , 0x00000034 
+ 00012825  0x00000dad jam  0x00000000 , 0x000007e1 
+ 00012826  0x00000dae jam  0x00000018 , 0x00000b7d 
+ 00012827  0x00000daf call  0x00007c27 
+ 00012828  0x00000db0 branch  0x0000321f 
+ 00012829  0x00000db2 call  0x00006216 
+ 00012830  0x00000db3 ncall  0x00004852 , 0x00000001 
+ 00012831  0x00000db5 set0  0x00000025 , 0x00000000 
+ 00012832  0x00000db6 bpatch  0x00000026 , 0x00004004 
+ 00012833  0x00000db7 call  0x000032f0 
+ 00012834  0x00000db8 fetch  0x00000001 , 0x00000030 
+ 00012835  0x00000db9 set1  0x00000007 , 0x0000003f 
+ 00012836  0x00000dba store  0x00000001 , 0x00000030 
+ 00012837  0x00000dbb jam  0x00000001 , 0x0000425e 
+ 00012838  0x00000dbc fetch  0x00000001 , 0x00000055 
+ 00012839  0x00000dbd bne  0x00000016 , 0x00003228 
+ 00012840  0x00000dbf rtn 
+ 00012841  0x00000dc2 jam  0x00000001 , 0x000007e1 
+ 00012842  0x00000dc4 fetch  0x00000001 , 0x00000030 
+ 00012843  0x00000dc5 set0  0x00000007 , 0x0000003f 
+ 00012844  0x00000dc6 store  0x00000001 , 0x00000030 
+ 00012845  0x00000dc7 rtn 
+ 00012846  0x00000dcc set0  0x00000025 , 0x00000000 
+ 00012847  0x00000dcd bpatch  0x00000027 , 0x00004004 
+ 00012848  0x00000dce disable  0x00000028 
+ 00012849  0x00000dcf fetch  0x00000001 , 0x00000030 
+ 00012850  0x00000dd0 rtnbit0  0x00000001 
+ 00012851  0x00000dd1 fetch  0x00000002 , 0x00000032 
+ 00012852  0x00000dd2 nrtn  0x00000034 
+ 00012853  0x00000dd3 fetch  0x00000004 , 0x00000034 
+ 00012854  0x00000dd4 branch  0x00003239 , 0x00000030 
+ 00012855  0x00000dd5 isub  0x00000028 , 0x0000003f 
+ 00012856  0x00000dd6 branch  0x0000323a 
+ 00012857  0x00000dd8 isub  0x00000022 , 0x0000003f 
+ 00012858  0x00000dda sub  0x0000003f , 0x00000004 , 0x0000003e 
+ 00012859  0x00000ddb nrtn  0x00000002 
+ 00012860  0x00000ddc fetch  0x00000001 , 0x00000030 
+ 00012861  0x00000ddd set0  0x00000001 , 0x0000003f 
+ 00012862  0x00000dde store  0x00000001 , 0x00000030 
+ 00012863  0x00000ddf enable  0x00000028 
+ 00012864  0x00000de0 rtn 
+ 00012865  0x00000de4 copy  0x0000003f , 0x00000002 
+ 00012866  0x00000de5 set0  0x00000025 , 0x00000000 
+ 00012867  0x00000de6 bpatch  0x00000028 , 0x00004005 
+ 00012868  0x00000de7 store  0x00000004 , 0x00000034 
+ 00012869  0x00000de9 jam  0x00000001 , 0x00004748 
+ 00012870  0x00000dea fetch  0x00000001 , 0x00000030 
+ 00012871  0x00000deb set1  0x00000001 , 0x0000003f 
+ 00012872  0x00000dec store  0x00000001 , 0x00000030 
+ 00012873  0x00000ded force  0x00000000 , 0x0000003f 
+ 00012874  0x00000dee store  0x00000002 , 0x00000032 
+ 00012875  0x00000def jam  0x0000000a , 0x0000008a 
+ 00012876  0x00000df0 jam  0x00000001 , 0x00000073 
+ 00012877  0x00000df1 rtn 
+ 00012878  0x00000df5 set0  0x00000025 , 0x00000000 
+ 00012879  0x00000df6 bpatch  0x00000029 , 0x00004005 
+ 00012880  0x00000df7 call  0x0000322e 
+ 00012881  0x00000df8 nrtn  0x00000028 
+ 00012882  0x00000df9 disable  0x00000028 
+ 00012883  0x00000dfa jam  0x00000020 , 0x00000011 
+ 00012884  0x00000dfb set0  0x0000000b , 0x00000000 
+ 00012885  0x00000dfd call  0x00003bac 
+ 00012886  0x00000dfe call  0x0000337f 
+ 00012887  0x00000dff bmark1  0x0000000b , 0x00003263 
+ 00012888  0x00000e00 call  0x0000350e 
+ 00012889  0x00000e01 nbranch  0x00003255 , 0x00000034 
+ 00012890  0x00000e03 set0  0x00000025 , 0x00000000 
+ 00012891  0x00000e04 bpatch  0x0000002a , 0x00004005 
+ 00012892  0x00000e05 disable  0x00000028 
+ 00012893  0x00000e06 deposit  0x00000022 
+ 00012894  0x00000e07 store  0x00000004 , 0x0000416a 
+ 00012895  0x00000e08 enable  0x00000030 
+ 00012896  0x00000e09 enable  0x00000029 
+ 00012897  0x00000e0a jam  0x0000002a , 0x00000b7d 
+ 00012898  0x00000e0b branch  0x00007c27 
+ 00012899  0x00000e0e set0  0x00000025 , 0x00000000 
+ 00012900  0x00000e0f bpatch  0x0000002b , 0x00004005 
+ 00012901  0x00000e10 call  0x00003baa 
+ 00012902  0x00000e11 call  0x00003374 
+ 00012903  0x00000e12 disable  0x00000030 
+ 00012904  0x00000e13 disable  0x00000029 
+ 00012905  0x00000e14 call  0x00003982 
+ 00012906  0x00000e15 call  0x000034ed 
+ 00012907  0x00000e17 set0  0x00000025 , 0x00000000 
+ 00012908  0x00000e18 bpatch  0x0000002c , 0x00004005 
+ 00012909  0x00000e19 call  0x00003539 
+ 00012910  0x00000e1a branch  0x00003272 , 0x0000002d 
+ 00012911  0x00000e1b call  0x0000350e 
+ 00012912  0x00000e1c nbranch  0x0000326b , 0x00000034 
+ 00012913  0x00000e1d branch  0x0000325a 
+ 00012914  0x00000e1f force  0x00000001 , 0x00000002 
+ 00012915  0x00000e20 call  0x0000487f 
+ 00012916  0x00000e21 fetch  0x00000001 , 0x00000031 
+ 00012917  0x00000e22 set0  0x00000001 , 0x0000003f 
+ 00012918  0x00000e23 store  0x00000001 , 0x00000031 
+ 00012919  0x00000e24 call  0x00003bec 
+ 00012920  0x00000e25 call  0x000039ac 
+ 00012921  0x00000e26 enable  0x00000028 
+ 00012922  0x00000e27 jam  0x0000002b , 0x00000b7d 
+ 00012923  0x00000e28 branch  0x00007c27 
+ 00012924  0x00000e2c set0  0x00000025 , 0x00000000 
+ 00012925  0x00000e2d bpatch  0x0000002d , 0x00004005 
+ 00012926  0x00000e2e rtnmark0  0x00000007 
+ 00012927  0x00000e2f fetch  0x00000001 , 0x00000030 
+ 00012928  0x00000e30 rtnbit0  0x00000002 
+ 00012929  0x00000e32 call  0x00003c23 
+ 00012930  0x00000e33 fetch  0x00000001 , 0x000000b3 
+ 00012931  0x00000e34 fetcht  0x00000001 , 0x00000047 
+ 00012932  0x00000e35 storet  0x00000001 , 0x000000b4 
+ 00012933  0x00000e36 store  0x00000001 , 0x00000047 
+ 00012934  0x00000e37 deposit  0x00000004 
+ 00012935  0x00000e38 store  0x00000001 , 0x000000b2 
+ 00012936  0x00000e39 fetch  0x00000001 , 0x000041f9 
+ 00012937  0x00000e3a iforce  0x00000004 
+ 00012938  0x00000e3b set0  0x00000008 , 0x00000000 
+ 00012939  0x00000e3c fetch  0x00000001 , 0x00004165 
+ 00012940  0x00000e3d store  0x00000001 , 0x00004167 
+ 00012941  0x00000e3e fetch  0x00000001 , 0x00004166 
+ 00012942  0x00000e3f store  0x00000001 , 0x00004165 
+ 00012943  0x00000e40 rtn 
+ 00012944  0x00000e43 set0  0x00000025 , 0x00000000 
+ 00012945  0x00000e44 bpatch  0x0000002e , 0x00004005 
+ 00012946  0x00000e45 rtnmark0  0x00000007 
+ 00012947  0x00000e47 call  0x00003847 
+ 00012948  0x00000e48 nrtn  0x00000001 
+ 00012949  0x00000e4a call  0x00003799 
+ 00012950  0x00000e4b fetch  0x00000001 , 0x000000b4 
+ 00012951  0x00000e4c fetcht  0x00000001 , 0x00000047 
+ 00012952  0x00000e4d store  0x00000001 , 0x00000047 
+ 00012953  0x00000e4e storet  0x00000001 , 0x000000b3 
+ 00012954  0x00000e4f fetch  0x00000001 , 0x000000b2 
+ 00012955  0x00000e50 iforce  0x00000004 
+ 00012956  0x00000e51 fetch  0x00000001 , 0x00004165 
+ 00012957  0x00000e52 store  0x00000001 , 0x00004166 
+ 00012958  0x00000e53 fetch  0x00000001 , 0x00004167 
+ 00012959  0x00000e54 store  0x00000001 , 0x00004165 
+ 00012960  0x00000e55 setarg  0x0000ffff 
+ 00012961  0x00000e56 store  0x00000002 , 0x00004168 
+ 00012962  0x00000e57 rtn 
+ 00012963  0x00000e5d set0  0x00000025 , 0x00000000 
+ 00012964  0x00000e5e bpatch  0x0000002f , 0x00004005 
+ 00012965  0x00000e5f set1  0x00000009 , 0x00000000 
+ 00012966  0x00000e60 deposit  0x00000011 
+ 00012967  0x00000e61 store  0x00000002 , 0x0000001e 
+ 00012968  0x00000e62 force  0x00000050 , 0x00000039 
+ 00012969  0x00000e63 arg  0x000003c0 , 0x00000005 
+ 00012970  0x00000e64 add  0x00000011 , 0x00000001 , 0x00000006 
+ 00012971  0x00000e65 ifetch  0x00000001 , 0x00000006 
+ 00012972  0x00000e66 copy  0x00000011 , 0x00000006 
+ 00012973  0x00000e67 bbit1  0x00000000 , 0x00007e45 
+ 00012974  0x00000e68 arg  0x00000030 , 0x00000005 
+ 00012975  0x00000e69 call  0x00007e45 
+ 00012976  0x00000e6a disable  0x0000002e 
+ 00012977  0x00000e6b fetch  0x00000001 , 0x00000077 
+ 00012978  0x00000e6c iforce  0x00000004 
+ 00012979  0x00000e6d jam  0x00000001 , 0x0000008a 
+ 00012980  0x00000e6e branch  0x000032b6 , 0x00000029 
+ 00012981  0x00000e6f jam  0x00000001 , 0x0000008a 
+ 00012982  0x00000e71 fetch  0x00000001 , 0x00000030 
+ 00012983  0x00000e72 rtnbit0  0x00000001 
+ 00012984  0x00000e73 fetch  0x00000001 , 0x00000073 
+ 00012985  0x00000e74 store  0x00000001 , 0x0000008a 
+ 00012986  0x00000e75 fetch  0x00000001 , 0x00000074 
+ 00012987  0x00000e76 store  0x00000001 , 0x0000008b 
+ 00012988  0x00000e77 rtn 
+ 00012989  0x00000e7a set0  0x00000025 , 0x00000000 
+ 00012990  0x00000e7b bpatch  0x00000030 , 0x00004006 
+ 00012991  0x00000e7c fetch  0x00000002 , 0x0000001e 
+ 00012992  0x00000e7d iforce  0x00000005 
+ 00012993  0x00000e7e force  0x00000050 , 0x00000039 
+ 00012994  0x00000e7f arg  0x000003c0 , 0x00000006 
+ 00012995  0x00000e80 branch  0x00007e45 , 0x00000036 
+ 00012996  0x00000e81 arg  0x00000030 , 0x00000006 
+ 00012997  0x00000e82 branch  0x00007e45 
+ 00012998  0x00000e87 fetcht  0x00000001 , 0x00000015 
+ 00012999  0x00000e88 arg  0x00000003 , 0x00000039 
+ 00013000  0x00000e8a increase  0x00000001 , 0x00000002 
+ 00013001  0x00000e8b compare  0x00000003 , 0x00000002 , 0x000000ff 
+ 00013002  0x00000e8c nbranch  0x000032cc , 0x00000001 
+ 00013003  0x00000e8d arg  0x00000000 , 0x00000002 
+ 00013004  0x00000e8f storet  0x00000001 , 0x00000015 
+ 00013005  0x00000e90 mul32  0x00000002 , 0x00000050 , 0x0000003f 
+ 00013006  0x00000e91 arg  0x00004040 , 0x00000011 
+ 00013007  0x00000e92 iadd  0x00000011 , 0x00000011 
+ 00013008  0x00000e93 ifetch  0x00000001 , 0x00000011 
+ 00013009  0x00000e94 bbit1  0x00000001 , 0x000032d4 
+ 00013010  0x00000e95 rtnbit1  0x00000000 
+ 00013011  0x00000e96 rtnbit1  0x00000003 
+ 00013012  0x00000e98 loop  0x000032c8 
+ 00013013  0x00000e99 rtn 
+ 00013014  0x00000e9c set0  0x00000025 , 0x00000000 
+ 00013015  0x00000e9d bpatch  0x00000031 , 0x00004006 
+ 00013016  0x00000e9e arg  0x0000330b , 0x00000013 
+ 00013017  0x00000e9f call  0x00003301 
+ 00013018  0x00000ea0 nrtn  0x00000005 
+ 00013019  0x00000ea1 deposit  0x00000011 
+ 00013020  0x00000ea2 store  0x00000002 , 0x0000001e 
+ 00013021  0x00000ea3 force  0x00000000 , 0x0000003e 
+ 00013022  0x00000ea4 rtn 
+ 00013023  0x00000ea9 call  0x00003847 
+ 00013024  0x00000eaa branch  0x000032e7 , 0x00000001 
+ 00013025  0x00000eab fetch  0x00000002 , 0x0000001e 
+ 00013026  0x00000eac add  0x0000003f , 0x00000017 , 0x00000005 
+ 00013027  0x00000ead fetch  0x00000001 , 0x00000047 
+ 00013028  0x00000eae istore  0x00000001 , 0x00000005 
+ 00013029  0x00000eaf arg  0x00003334 , 0x00000013 
+ 00013030  0x00000eb0 branch  0x00003301 
+ 00013031  0x00000eb3 fetch  0x00000001 , 0x00000047 
+ 00013032  0x00000eb4 isolate1  0x00000003 , 0x0000003f 
+ 00013033  0x00000eb5 branch  0x000032ec , 0x00000001 
+ 00013034  0x00000eb6 force  0x00000001 , 0x0000003e 
+ 00013035  0x00000eb7 rtn 
+ 00013036  0x00000eb9 force  0x00000000 , 0x0000003e 
+ 00013037  0x00000eba rtn 
+ 00013038  0x00000ebe arg  0x00003331 , 0x00000013 
+ 00013039  0x00000ebf branch  0x00003301 
+ 00013040  0x00000ec2 fetcht  0x00000002 , 0x0000001e 
+ 00013041  0x00000ec3 arg  0x00003366 , 0x00000013 
+ 00013042  0x00000ec4 branch  0x00003301 
+ 00013043  0x00000ec7 fetcht  0x00000002 , 0x0000001e 
+ 00013044  0x00000ec8 arg  0x00003359 , 0x00000013 
+ 00013045  0x00000ec9 branch  0x00003301 
+ 00013046  0x00000ecd fetcht  0x00000001 , 0x00004273 
+ 00013047  0x00000ecf arg  0x00003316 , 0x00000013 
+ 00013048  0x00000ed0 branch  0x00003301 
+ 00013049  0x00000ed3 set0  0x00000025 , 0x00000000 
+ 00013050  0x00000ed4 bpatch  0x00000032 , 0x00004006 
+ 00013051  0x00000ed5 fetcht  0x00000006 , 0x00004274 
+ 00013052  0x00000ed7 arg  0x0000330f , 0x00000013 
+ 00013053  0x00000ed8 branch  0x00003301 
+ 00013054  0x00000edb arg  0x0000331c , 0x00000013 
+ 00013055  0x00000edc branch  0x00003301 
+ 00013056  0x00000edf arg  0x00003350 , 0x00000013 
+ 00013057  0x00000ee1 set0  0x00000025 , 0x00000000 
+ 00013058  0x00000ee2 bpatch  0x00000033 , 0x00004006 
+ 00013059  0x00000ee3 arg  0x00004040 , 0x00000011 
+ 00013060  0x00000ee4 force  0x00000003 , 0x00000039 
+ 00013061  0x00000ee6 ifetch  0x00000001 , 0x00000011 
+ 00013062  0x00000ee7 copy  0x00000013 , 0x0000003d 
+ 00013063  0x00000ee9 increase  0x00000050 , 0x00000011 
+ 00013064  0x00000eea loop  0x00003305 
+ 00013065  0x00000eeb force  0x00000001 , 0x0000003e 
+ 00013066  0x00000eec rtn 
+ 00013067  0x00000eef bbit1  0x00000000 , 0x00003307 
+ 00013068  0x00000ef0 bbit1  0x00000003 , 0x00003307 
+ 00013069  0x00000ef1 force  0x00000000 , 0x0000003e 
+ 00013070  0x00000ef2 rtn 
+ 00013071  0x00000ef5 bbit1  0x00000003 , 0x00003311 
+ 00013072  0x00000ef6 bbit0  0x00000000 , 0x00003307 
+ 00013073  0x00000ef8 add  0x00000011 , 0x00000010 , 0x00000006 
+ 00013074  0x00000ef9 ifetch  0x00000006 , 0x00000006 
+ 00013075  0x00000efa isub  0x00000002 , 0x0000003e 
+ 00013076  0x00000efb rtn  0x00000005 
+ 00013077  0x00000efc branch  0x00003307 
+ 00013078  0x00000eff bbit0  0x00000000 , 0x00003307 
+ 00013079  0x00000f00 add  0x00000011 , 0x00000016 , 0x00000006 
+ 00013080  0x00000f01 ifetch  0x00000001 , 0x00000006 
+ 00013081  0x00000f02 isub  0x00000002 , 0x0000003e 
+ 00013082  0x00000f03 rtn  0x00000005 
+ 00013083  0x00000f04 branch  0x00003307 
+ 00013084  0x00000f07 bbit0  0x00000001 , 0x00003307 
+ 00013085  0x00000f09 call  0x0000333d 
+ 00013086  0x00000f0a bbit1  0x0000001b , 0x00003322 
+ 00013087  0x00000f0b isolate0  0x0000001b , 0x00000002 
+ 00013088  0x00000f0c branch  0x00003322 , 0x00000001 
+ 00013089  0x00000f0d set1  0x0000001c , 0x0000003f 
+ 00013090  0x00000f0f isub  0x00000002 , 0x0000003f 
+ 00013091  0x00000f10 increase  0x00000001 , 0x0000003f 
+ 00013092  0x00000f11 branch  0x0000332b , 0x00000002 
+ 00013093  0x00000f12 increase  0x00000005 , 0x0000003f 
+ 00013094  0x00000f13 nbranch  0x00003307 , 0x00000002 
+ 00013095  0x00000f15 copy  0x00000002 , 0x00000021 
+ 00013096  0x00000f16 call  0x00003349 
+ 00013097  0x00000f17 force  0x00000000 , 0x0000003e 
+ 00013098  0x00000f18 rtn 
+ 00013099  0x00000f1b iforce  0x00000012 
+ 00013100  0x00000f1c add  0x00000011 , 0x00000002 , 0x00000006 
+ 00013101  0x00000f1d ifetch  0x00000002 , 0x00000006 
+ 00013102  0x00000f1e branch  0x00003327 , 0x00000034 
+ 00013103  0x00000f1f call  0x00003349 
+ 00013104  0x00000f20 branch  0x0000331d 
+ 00013105  0x00000f23 bbit0  0x00000000 , 0x00003307 
+ 00013106  0x00000f24 force  0x00000000 , 0x0000003e 
+ 00013107  0x00000f25 rtn 
+ 00013108  0x00000f28 bbit0  0x00000000 , 0x00003307 
+ 00013109  0x00000f29 add  0x00000011 , 0x00000001 , 0x00000006 
+ 00013110  0x00000f2a ifetch  0x00000001 , 0x00000006 
+ 00013111  0x00000f2b bbit1  0x00000000 , 0x00003307 
+ 00013112  0x00000f2c add  0x00000011 , 0x00000017 , 0x00000006 
+ 00013113  0x00000f2d ifetch  0x00000001 , 0x00000006 
+ 00013114  0x00000f2e bbit0  0x00000003 , 0x00003307 
+ 00013115  0x00000f2f force  0x00000000 , 0x0000003e 
+ 00013116  0x00000f30 rtn 
+ 00013117  0x00000f33 add  0x00000011 , 0x00000001 , 0x00000006 
+ 00013118  0x00000f34 ifetcht  0x00000001 , 0x00000006 
+ 00013119  0x00000f35 deposit  0x00000022 
+ 00013120  0x00000f36 isolate1  0x00000001 , 0x00000002 
+ 00013121  0x00000f37 add  0x00000011 , 0x00000004 , 0x00000006 
+ 00013122  0x00000f38 ifetcht  0x00000004 , 0x00000006 
+ 00013123  0x00000f39 rtn  0x00000001 
+ 00013124  0x00000f3a add  0x00000011 , 0x00000008 , 0x00000006 
+ 00013125  0x00000f3b ifetch  0x00000006 , 0x00000006 
+ 00013126  0x00000f3c call  0x000039c0 
+ 00013127  0x00000f3d deposit  0x00000028 
+ 00013128  0x00000f3e rtn 
+ 00013129  0x00000f41 add  0x00000011 , 0x00000002 , 0x00000006 
+ 00013130  0x00000f42 add  0x00000011 , 0x00000004 , 0x00000005 
+ 00013131  0x00000f43 ifetch  0x00000002 , 0x00000006 
+ 00013132  0x00000f44 iadd  0x00000002 , 0x0000000b 
+ 00013133  0x00000f45 deposit  0x0000000b 
+ 00013134  0x00000f46 istore  0x00000004 , 0x00000005 
+ 00013135  0x00000f47 branch  0x00005434 
+ 00013136  0x00000f4b bbit0  0x00000001 , 0x00003307 
+ 00013137  0x00000f4c call  0x0000333d 
+ 00013138  0x00000f4d iadd  0x0000001b , 0x0000003f 
+ 00013139  0x00000f4e iadd  0x0000001b , 0x0000003f 
+ 00013140  0x00000f4f iadd  0x00000007 , 0x0000003f 
+ 00013141  0x00000f50 isub  0x00000002 , 0x0000003e 
+ 00013142  0x00000f51 nbranch  0x00003307 , 0x00000002 
+ 00013143  0x00000f52 force  0x00000000 , 0x0000003e 
+ 00013144  0x00000f53 rtn 
+ 00013145  0x00000f56 bbit0  0x00000000 , 0x00003307 
+ 00013146  0x00000f57 deposit  0x00000002 
+ 00013147  0x00000f58 isub  0x00000011 , 0x0000003e 
+ 00013148  0x00000f59 branch  0x00003307 , 0x0000003e 
+ 00013149  0x00000f5a add  0x00000011 , 0x00000001 , 0x00000006 
+ 00013150  0x00000f5b ifetch  0x00000001 , 0x00000006 
+ 00013151  0x00000f5c bbit1  0x00000000 , 0x00003307 
+ 00013152  0x00000f5d add  0x00000011 , 0x00000018 , 0x00000005 
+ 00013153  0x00000f5e ifetch  0x00000001 , 0x00000005 
+ 00013154  0x00000f5f nbranch  0x00003307 , 0x00000034 
+ 00013155  0x00000f60 force  0x0000002d , 0x0000003f 
+ 00013156  0x00000f61 istore  0x00000001 , 0x00000005 
+ 00013157  0x00000f62 branch  0x00003307 
+ 00013158  0x00000f65 bbit0  0x00000000 , 0x00003307 
+ 00013159  0x00000f66 deposit  0x00000002 
+ 00013160  0x00000f67 isub  0x00000011 , 0x0000003e 
+ 00013161  0x00000f68 branch  0x00003307 , 0x0000003e 
+ 00013162  0x00000f69 add  0x00000011 , 0x00000001 , 0x00000006 
+ 00013163  0x00000f6a ifetch  0x00000001 , 0x00000006 
+ 00013164  0x00000f6b bbit1  0x00000000 , 0x00003307 
+ 00013165  0x00000f6c ifetch  0x00000001 , 0x00000011 
+ 00013166  0x00000f6d set0  0x00000007 , 0x0000003f 
+ 00013167  0x00000f6e istore  0x00000001 , 0x00000011 
+ 00013168  0x00000f6f branch  0x00003307 
+ 00013169  0x00000f73 set0  0x00000025 , 0x00000000 
+ 00013170  0x00000f74 bpatch  0x00000034 , 0x00004006 
+ 00013171  0x00000f75 call  0x00003bac 
+ 00013172  0x00000f77 add  0x00000022 , 0x00000001 , 0x00000021 
+ 00013173  0x00000f78 call  0x00003a54 
+ 00013174  0x00000f79 force  0x00000003 , 0x00000024 
+ 00013175  0x00000f7a call  0x00003a42 
+ 00013176  0x00000f7b call  0x00003bae 
+ 00013177  0x00000f7c call  0x00003bb4 
+ 00013178  0x00000f7d call  0x00003bc5 
+ 00013179  0x00000f7e branch  0x000038bf 
+ 00013180  0x00000f81 set0  0x00000025 , 0x00000000 
+ 00013181  0x00000f82 bpatch  0x00000035 , 0x00004006 
+ 00013182  0x00000f83 call  0x00003baa 
+ 00013183  0x00000f85 add  0x00000022 , 0x00000001 , 0x00000021 
+ 00013184  0x00000f86 call  0x00003a54 
+ 00013185  0x00000f87 force  0x00000003 , 0x00000024 
+ 00013186  0x00000f88 call  0x00003a3b 
+ 00013187  0x00000f89 call  0x000034e1 
+ 00013188  0x00000f8a call  0x00003b41 
+ 00013189  0x00000f8b call  0x00003bba 
+ 00013190  0x00000f8c call  0x00003b3a 
+ 00013191  0x00000f8e call  0x00003b63 
+ 00013192  0x00000f8f nrtn  0x00000018 
+ 00013193  0x00000f90 call  0x00003af3 
+ 00013194  0x00000f91 branch  0x000035df 
+ 00013195  0x00000f96 set0  0x00000025 , 0x00000000 
+ 00013196  0x00000f97 bpatch  0x00000036 , 0x00004006 
+ 00013197  0x00000f98 fetch  0x00000001 , 0x0000018b 
+ 00013198  0x00000f99 iforce  0x00000004 
+ 00013199  0x00000f9a force  0x00000001 , 0x00000001 
+ 00013200  0x00000f9b call  0x00003371 
+ 00013201  0x00000f9c branch  0x0000337c 
+ 00013202  0x00000fa8 fetch  0x00000001 , 0x00004133 
+ 00013203  0x00000fa9 rtnbit0  0x00000000 
+ 00013204  0x00000faa force  0x00000005 , 0x00000007 
+ 00013205  0x00000fab call  0x00007e53 
+ 00013206  0x00000fac nrtn  0x00000034 
+ 00013207  0x00000fad fetcht  0x00000002 , 0x0000414d 
+ 00013208  0x00000fae force  0x00000004 , 0x00000007 
+ 00013209  0x00000faf call  0x0000383d 
+ 00013210  0x00000fb0 rtn  0x00000028 
+ 00013211  0x00000fb1 call  0x000033a2 
+ 00013212  0x00000fb2 force  0x00000005 , 0x00000007 
+ 00013213  0x00000fb3 fetch  0x00000002 , 0x0000414f 
+ 00013214  0x00000fb4 nbranch  0x00007e4c , 0x00000018 
+ 00013215  0x00000fb5 random  0x0000003f 
+ 00013216  0x00000fb6 iand  0x00000035 , 0x0000003f 
+ 00013217  0x00000fb7 branch  0x00007e4c 
+ 00013218  0x00000fbb set0  0x00000025 , 0x00000000 
+ 00013219  0x00000fbc bpatch  0x00000037 , 0x00004006 
+ 00013220  0x00000fbd jam  0x00000000 , 0x0000018b 
+ 00013221  0x00000fbe disable  0x00000030 
+ 00013222  0x00000fbf disable  0x0000002e 
+ 00013223  0x00000fc0 call  0x00003a12 
+ 00013224  0x00000fc1 and  0x00000022 , 0x000001fc , 0x00000021 
+ 00013225  0x00000fc2 force  0x00000001 , 0x00000024 
+ 00013226  0x00000fc3 call  0x00003a49 
+ 00013227  0x00000fc4 call  0x00003a3b 
+ 00013228  0x00000fc5 setflip  0x0000001d , 0x00000000 
+ 00013229  0x00000fc6 fetch  0x00000001 , 0x00000006 
+ 00013230  0x00000fc7 increase  0x00000001 , 0x0000003f 
+ 00013231  0x00000fc8 store  0x00000001 , 0x00000006 
+ 00013232  0x00000fc9 call  0x00003a66 
+ 00013233  0x00000fca call  0x00003b3a 
+ 00013234  0x00000fcb call  0x00003b6b 
+ 00013235  0x00000fcc nrtn  0x00000018 
+ 00013236  0x00000fcd set0  0x00000025 , 0x00000000 
+ 00013237  0x00000fce bpatch  0x00000038 , 0x00004007 
+ 00013238  0x00000fcf force  0x00000000 , 0x0000001b 
+ 00013239  0x00000fd0 call  0x00003a6d 
+ 00013240  0x00000fd1 fetch  0x00000001 , 0x00000007 
+ 00013241  0x00000fd2 increase  0x00000001 , 0x0000003f 
+ 00013242  0x00000fd3 store  0x00000001 , 0x00000007 
+ 00013243  0x00000fd4 call  0x00003a49 
+ 00013244  0x00000fd5 call  0x00003baa 
+ 00013245  0x00000fd6 or_into  0x00000002 , 0x00000021 
+ 00013246  0x00000fd7 force  0x00000001 , 0x00000024 
+ 00013247  0x00000fd8 call  0x00003a42 
+ 00013248  0x00000fd9 call  0x00003a66 
+ 00013249  0x00000fda call  0x00003bae 
+ 00013250  0x00000fdb call  0x00003bbf 
+ 00013251  0x00000fdc deposit  0x00000022 
+ 00013252  0x00000fdd store  0x00000004 , 0x0000016b 
+ 00013253  0x00000fde call  0x00003bc5 
+ 00013254  0x00000fdf force  0x00000002 , 0x00000001 
+ 00013255  0x00000fe0 force  0x00000000 , 0x00000004 
+ 00013256  0x00000fe1 call  0x00003bcd 
+ 00013257  0x00000fe2 call  0x000038c1 
+ 00013258  0x00000fe3 call  0x000033ce 
+ 00013259  0x00000fe4 and_into  0x000001fd , 0x00000021 
+ 00013260  0x00000fe5 increase  0x00000001 , 0x00000026 
+ 00013261  0x00000fe6 rtn 
+ 00013262  0x00000fe9 set0  0x00000025 , 0x00000000 
+ 00013263  0x00000fea bpatch  0x00000039 , 0x00004007 
+ 00013264  0x00000feb fetch  0x00000001 , 0x00004172 
+ 00013265  0x00000fec rtn  0x00000034 
+ 00013266  0x00000fed arg  0x000001bc , 0x00000005 
+ 00013267  0x00000fee fetch  0x00000001 , 0x00004702 
+ 00013268  0x00000fef copy  0x0000003f , 0x00000039 
+ 00013269  0x00000ff0 increase  0x00000001 , 0x0000003f 
+ 00013270  0x00000ff1 istore  0x00000001 , 0x00000005 
+ 00013271  0x00000ff2 copy  0x00000005 , 0x00000002 
+ 00013272  0x00000ff3 increase  0x00000001 , 0x0000003f 
+ 00013273  0x00000ff4 store  0x00000002 , 0x00000091 
+ 00013274  0x00000ff5 copy  0x00000002 , 0x00000005 
+ 00013275  0x00000ff6 setarg  0x00000009 
+ 00013276  0x00000ff7 istore  0x00000001 , 0x00000005 
+ 00013277  0x00000ff8 arg  0x00004703 , 0x00000006 
+ 00013278  0x00000ff9 call  0x00007e45 
+ 00013279  0x00000ffa arg  0x00004771 , 0x00000013 
+ 00013280  0x00000ffb arg  0x00000004 , 0x00000039 
+ 00013281  0x00000ffc call  0x000033f1 
+ 00013282  0x00000ffd arg  0x0000475b , 0x00000013 
+ 00013283  0x00000ffe arg  0x00000001 , 0x00000039 
+ 00013284  0x00000fff call  0x000033f1 
+ 00013285  0x00001000 force  0x0000000a , 0x00000001 
+ 00013286  0x00001001 jam  0x00000002 , 0x00000090 
+ 00013287  0x00001002 setarg  0x000001bc 
+ 00013288  0x00001003 store  0x00000002 , 0x00000179 
+ 00013289  0x00001004 call  0x00003baa 
+ 00013290  0x00001005 call  0x00003a42 
+ 00013291  0x00001006 call  0x00003bae 
+ 00013292  0x00001007 call  0x00003bbf 
+ 00013293  0x00001008 call  0x00003bc5 
+ 00013294  0x00001009 call  0x00003bcd 
+ 00013295  0x0000100a call  0x000038c1 
+ 00013296  0x0000100b rtn 
+ 00013297  0x0000100f copy  0x00000005 , 0x00000002 
+ 00013298  0x00001010 copy  0x00000013 , 0x00000006 
+ 00013299  0x00001011 ifetch  0x00000001 , 0x00000006 
+ 00013300  0x00001012 rtn  0x00000034 
+ 00013301  0x00001014 lshift  0x0000003f , 0x0000003f 
+ 00013302  0x00001015 loop  0x000033f5 
+ 00013303  0x00001016 copy  0x0000003f , 0x00000011 
+ 00013304  0x00001017 increase  0x00000002 , 0x0000003f 
+ 00013305  0x00001018 copy  0x0000003f , 0x00000007 
+ 00013306  0x00001019 fetch  0x00000002 , 0x00000091 
+ 00013307  0x0000101a iadd  0x00000007 , 0x0000003f 
+ 00013308  0x0000101b store  0x00000002 , 0x00000091 
+ 00013309  0x0000101c copy  0x00000002 , 0x00000005 
+ 00013310  0x0000101d copy  0x00000011 , 0x0000003f 
+ 00013311  0x0000101e increase  0x00000001 , 0x0000003f 
+ 00013312  0x0000101f istore  0x00000001 , 0x00000005 
+ 00013313  0x00001020 copy  0x00000013 , 0x00000006 
+ 00013314  0x00001021 ifetch  0x00000001 , 0x00000006 
+ 00013315  0x00001022 ifetch  0x00000001 , 0x00000006 
+ 00013316  0x00001023 istore  0x00000001 , 0x00000005 
+ 00013317  0x00001024 copy  0x00000011 , 0x00000039 
+ 00013318  0x00001025 branch  0x00007e45 
+ 00013319  0x0000102c fetch  0x00000001 , 0x00004133 
+ 00013320  0x0000102d rtnbit0  0x00000001 
+ 00013321  0x0000102e force  0x00000006 , 0x00000007 
+ 00013322  0x0000102f call  0x00007e53 
+ 00013323  0x00001030 nrtn  0x00000034 
+ 00013324  0x00001031 fetcht  0x00000002 , 0x00004151 
+ 00013325  0x00001032 force  0x00000028 , 0x00000007 
+ 00013326  0x00001033 call  0x0000383d 
+ 00013327  0x00001034 rtn  0x00000028 
+ 00013328  0x00001035 force  0x00000000 , 0x00000004 
+ 00013329  0x00001036 jam  0x00000008 , 0x00000010 
+ 00013330  0x00001037 set0  0x0000000b , 0x00000000 
+ 00013331  0x00001038 call  0x00003417 
+ 00013332  0x00001039 force  0x00000006 , 0x00000007 
+ 00013333  0x0000103a fetch  0x00000002 , 0x00004153 
+ 00013334  0x0000103b branch  0x00007e4c 
+ 00013335  0x0000103f set0  0x00000025 , 0x00000000 
+ 00013336  0x00001040 bpatch  0x0000003a , 0x00004007 
+ 00013337  0x00001041 disable  0x00000030 
+ 00013338  0x00001042 call  0x00003a12 
+ 00013339  0x00001043 fetch  0x00000001 , 0x00000008 
+ 00013340  0x00001044 increase  0x00000001 , 0x0000003f 
+ 00013341  0x00001045 store  0x00000001 , 0x00000008 
+ 00013342  0x00001046 force  0x00000000 , 0x00000026 
+ 00013343  0x00001047 call  0x00003a54 
+ 00013344  0x00001048 add  0x00000022 , 0x00000001 , 0x00000021 
+ 00013345  0x00001049 force  0x00000002 , 0x00000024 
+ 00013346  0x0000104a set0  0x00000025 , 0x00000000 
+ 00013347  0x0000104b bpatch  0x0000003b , 0x00004007 
+ 00013348  0x0000104c call  0x00003a3b 
+ 00013349  0x0000104d call  0x00003b3a 
+ 00013350  0x0000104e call  0x00003b6b 
+ 00013351  0x0000104f nrtn  0x00000018 
+ 00013352  0x00001050 call  0x00003a6d 
+ 00013353  0x00001051 fetch  0x00000001 , 0x00000009 
+ 00013354  0x00001052 increase  0x00000001 , 0x0000003f 
+ 00013355  0x00001053 store  0x00000001 , 0x00000009 
+ 00013356  0x00001054 force  0x00000000 , 0x0000001b 
+ 00013357  0x00001055 call  0x00003baa 
+ 00013358  0x00001056 or_into  0x00000002 , 0x00000021 
+ 00013359  0x00001057 force  0x00000001 , 0x00000024 
+ 00013360  0x00001058 call  0x00003a42 
+ 00013361  0x00001059 call  0x00003bae 
+ 00013362  0x0000105a call  0x00003bbf 
+ 00013363  0x0000105b call  0x00003bc5 
+ 00013364  0x0000105c call  0x0000375c 
+ 00013365  0x0000105d force  0x00000000 , 0x00000004 
+ 00013366  0x0000105e arg  0x00000600 , 0x0000000b 
+ 00013367  0x0000105f until  0x00000029 , 0x00000026 
+ 00013368  0x00001060 or_into  0x00000003 , 0x00000028 
+ 00013369  0x00001061 and_into  0x000001fd , 0x00000021 
+ 00013370  0x00001063 set0  0x00000025 , 0x00000000 
+ 00013371  0x00001064 bpatch  0x0000003c , 0x00004007 
+ 00013372  0x00001065 increase  0x00000001 , 0x00000026 
+ 00013373  0x00001066 call  0x00003a3b 
+ 00013374  0x00001067 call  0x00003b3a 
+ 00013375  0x00001068 call  0x00003b5d 
+ 00013376  0x00001069 nbranch  0x00003444 , 0x00000018 
+ 00013377  0x0000106a call  0x00003bcd 
+ 00013378  0x0000106b call  0x000035e1 
+ 00013379  0x0000106c bmark1  0x0000000b , 0x0000344c 
+ 00013380  0x0000106e set0  0x00000025 , 0x00000000 
+ 00013381  0x0000106f bpatch  0x0000003d , 0x00004007 
+ 00013382  0x00001070 fetch  0x00000001 , 0x00000010 
+ 00013383  0x00001071 rtn  0x00000034 
+ 00013384  0x00001072 increase  0xffffffff , 0x0000003f 
+ 00013385  0x00001073 store  0x00000001 , 0x00000010 
+ 00013386  0x00001074 call  0x00003bac 
+ 00013387  0x00001075 branch  0x0000343a 
+ 00013388  0x00001079 set0  0x00000025 , 0x00000000 
+ 00013389  0x0000107a bpatch  0x0000003e , 0x00004007 
+ 00013390  0x0000107b set0  0x00000001 , 0x00000028 
+ 00013391  0x0000107c set1  0x00000000 , 0x00000028 
+ 00013392  0x0000107d fetch  0x00000001 , 0x0000000a 
+ 00013393  0x0000107e increase  0x00000001 , 0x0000003f 
+ 00013394  0x0000107f store  0x00000001 , 0x0000000a 
+ 00013395  0x00001080 call  0x00003baa 
+ 00013396  0x00001081 or_into  0x00000002 , 0x00000021 
+ 00013397  0x00001082 call  0x00003a42 
+ 00013398  0x00001083 call  0x00003bae 
+ 00013399  0x00001084 call  0x00003bbf 
+ 00013400  0x00001085 call  0x00003bc5 
+ 00013401  0x00001086 call  0x0000375c 
+ 00013402  0x00001088 compare  0x00000003 , 0x00000028 , 0x00000003 
+ 00013403  0x00001089 branch  0x0000345e , 0x00000001 
+ 00013404  0x0000108a until  0x0000003e , 0x00000017 
+ 00013405  0x0000108b branch  0x0000345a 
+ 00013406  0x0000108d fetch  0x00000004 , 0x0000016f 
+ 00013407  0x0000108e or_into  0x00000003 , 0x0000003f 
+ 00013408  0x0000108f icopy  0x00000028 
+ 00013409  0x00001092 set0  0x00000025 , 0x00000000 
+ 00013410  0x00001093 bpatch  0x0000003f , 0x00004007 
+ 00013411  0x00001094 fetch  0x00000006 , 0x00000182 
+ 00013412  0x00001095 store  0x00000006 , 0x00000040 
+ 00013413  0x00001096 call  0x000034ed 
+ 00013414  0x00001098 call  0x00003539 
+ 00013415  0x00001099 branch  0x0000346b , 0x0000002d 
+ 00013416  0x0000109a call  0x0000350e 
+ 00013417  0x0000109b nbranch  0x00003466 , 0x00000034 
+ 00013418  0x0000109c rtn 
+ 00013419  0x000010a0 set0  0x00000025 , 0x00000000 
+ 00013420  0x000010a1 bpatch  0x00000040 , 0x00004008 
+ 00013421  0x000010a2 call  0x000034f9 
+ 00013422  0x000010a3 call  0x000032d6 
+ 00013423  0x000010a4 nrtn  0x00000005 
+ 00013424  0x000010a5 jam  0x00000000 , 0x00000031 
+ 00013425  0x000010a6 call  0x000039ac 
+ 00013426  0x000010a7 branch  0x000032bd 
+ 00013427  0x000010ab set0  0x00000025 , 0x00000000 
+ 00013428  0x000010ac bpatch  0x00000041 , 0x00004008 
+ 00013429  0x000010ad call  0x000039bc 
+ 00013430  0x000010ae call  0x000034a5 
+ 00013431  0x000010af rtn  0x00000028 
+ 00013432  0x000010b0 call  0x0000327c 
+ 00013433  0x000010b1 call  0x00006a54 
+ 00013434  0x000010b3 set0  0x00000025 , 0x00000000 
+ 00013435  0x000010b4 bpatch  0x00000042 , 0x00004008 
+ 00013436  0x000010b5 call  0x00003e25 
+ 00013437  0x000010b6 call  0x00006dec 
+ 00013438  0x000010b7 call  0x000035d6 
+ 00013439  0x000010b8 call  0x00007f39 
+ 00013440  0x000010b9 nbranch  0x0000348d , 0x0000002d 
+ 00013441  0x000010ba call  0x00003bec 
+ 00013442  0x000010bb call  0x00003870 
+ 00013443  0x000010bc call  0x00006e10 
+ 00013444  0x000010bd call  0x00003547 
+ 00013445  0x000010be call  0x000038b1 
+ 00013446  0x000010bf call  0x00005b78 
+ 00013447  0x000010c0 call  0x00004995 
+ 00013448  0x000010c1 call  0x000048a9 
+ 00013449  0x000010c2 fetch  0x00000001 , 0x0000000b 
+ 00013450  0x000010c3 increase  0x00000001 , 0x0000003f 
+ 00013451  0x000010c4 store  0x00000001 , 0x0000000b 
+ 00013452  0x000010c5 call  0x000039ac 
+ 00013453  0x000010c7 set0  0x00000025 , 0x00000000 
+ 00013454  0x000010c8 bpatch  0x00000043 , 0x00004008 
+ 00013455  0x000010c9 call  0x00003d61 
+ 00013456  0x000010ca call  0x00003be2 
+ 00013457  0x000010cb branch  0x00003498 , 0x00000002 
+ 00013458  0x000010cc call  0x00003204 
+ 00013459  0x000010cd nbranch  0x00003498 , 0x00000028 
+ 00013460  0x000010ce call  0x00003812 
+ 00013461  0x000010cf nbranch  0x0000347a , 0x00000034 
+ 00013462  0x000010d0 call  0x00006a5c 
+ 00013463  0x000010d1 branch  0x00003290 
+ 00013464  0x000010d5 set0  0x00000025 , 0x00000000 
+ 00013465  0x000010d6 bpatch  0x00000044 , 0x00004008 
+ 00013466  0x000010d7 jam  0x00000000 , 0x00000153 
+ 00013467  0x000010d8 jam  0x00000000 , 0x00000189 
+ 00013468  0x000010d9 call  0x00003516 
+ 00013469  0x000010da set0  0x00000011 , 0x00000000 
+ 00013470  0x000010db call  0x00007f8a 
+ 00013471  0x000010dc fetch  0x00000001 , 0x00000030 
+ 00013472  0x000010dd bbit0  0x00000004 , 0x000034a3 
+ 00013473  0x000010de fetcht  0x00000001 , 0x00000046 
+ 00013474  0x000010df branch  0x000048c4 
+ 00013475  0x000010e2 force  0x00000006 , 0x00000002 
+ 00013476  0x000010e3 branch  0x00004826 
+ 00013477  0x000010e6 set0  0x00000025 , 0x00000000 
+ 00013478  0x000010e7 bpatch  0x00000045 , 0x00004008 
+ 00013479  0x000010e8 call  0x0000322e 
+ 00013480  0x000010e9 nrtn  0x00000028 
+ 00013481  0x000010ea copy  0x00000004 , 0x00000002 
+ 00013482  0x000010eb call  0x00003bd1 
+ 00013483  0x000010ec store  0x00000001 , 0x0000018b 
+ 00013484  0x000010ed copy  0x00000002 , 0x00000004 
+ 00013485  0x000010ee jam  0x00000020 , 0x00000011 
+ 00013486  0x000010f0 set0  0x00000025 , 0x00000000 
+ 00013487  0x000010f1 bpatch  0x00000046 , 0x00004008 
+ 00013488  0x000010f2 call  0x00003bac 
+ 00013489  0x000010f3 force  0x00000002 , 0x00000001 
+ 00013490  0x000010f4 call  0x000038a8 
+ 00013491  0x000010f5 deposit  0x00000022 
+ 00013492  0x000010f6 store  0x00000004 , 0x0000016b 
+ 00013493  0x000010f7 call  0x000038bf 
+ 00013494  0x000010f8 call  0x00003baa 
+ 00013495  0x000010f9 enable  0x0000002f 
+ 00013496  0x000010fa call  0x000035b7 
+ 00013497  0x000010fb branch  0x000034c1 , 0x00000018 
+ 00013498  0x000010fc call  0x00003a6d 
+ 00013499  0x000010fd call  0x0000350e 
+ 00013500  0x000010fe nbranch  0x000034ae , 0x00000034 
+ 00013501  0x000010ff rtnmark0  0x00000004 
+ 00013502  0x00001100 jam  0x00000034 , 0x0000007c 
+ 00013503  0x00001101 set1  0x00000003 , 0x00000000 
+ 00013504  0x00001102 rtn 
+ 00013505  0x00001104 enable  0x00000030 
+ 00013506  0x00001105 call  0x000034ed 
+ 00013507  0x00001106 call  0x00003a12 
+ 00013508  0x00001108 set0  0x00000025 , 0x00000000 
+ 00013509  0x00001109 bpatch  0x00000047 , 0x00004008 
+ 00013510  0x0000110a call  0x0000338b 
+ 00013511  0x0000110b branch  0x000034ce , 0x00000018 
+ 00013512  0x0000110c call  0x0000350e 
+ 00013513  0x0000110d nbranch  0x000034c4 , 0x00000034 
+ 00013514  0x0000110e disable  0x00000030 
+ 00013515  0x0000110f deposit  0x00000028 
+ 00013516  0x00001110 store  0x00000004 , 0x0000416a 
+ 00013517  0x00001111 rtn 
+ 00013518  0x00001113 force  0x00000000 , 0x00000002 
+ 00013519  0x00001114 call  0x0000487f 
+ 00013520  0x00001115 enable  0x00000029 
+ 00013521  0x00001116 bmark0  0x00000004 , 0x000034d6 
+ 00013522  0x00001117 set0  0x00000004 , 0x00000000 
+ 00013523  0x00001118 jam  0x00000003 , 0x0000007c 
+ 00013524  0x00001119 jam  0x00000033 , 0x0000007d 
+ 00013525  0x0000111a call  0x00006212 
+ 00013526  0x0000111c deposit  0x00000004 
+ 00013527  0x0000111d store  0x00000001 , 0x00000077 
+ 00013528  0x0000111e force  0x00000000 , 0x0000003f 
+ 00013529  0x0000111f store  0x00000006 , 0x00000038 
+ 00013530  0x00001120 fetch  0x00000001 , 0x00000031 
+ 00013531  0x00001121 set1  0x00000001 , 0x0000003f 
+ 00013532  0x00001122 store  0x00000001 , 0x00000031 
+ 00013533  0x00001123 call  0x00003bec 
+ 00013534  0x00001124 disable  0x00000029 
+ 00013535  0x00001126 enable  0x00000028 
+ 00013536  0x00001127 rtn 
+ 00013537  0x0000112c set0  0x00000025 , 0x00000000 
+ 00013538  0x0000112d bpatch  0x00000048 , 0x00004009 
+ 00013539  0x0000112e disable  0x0000002d 
+ 00013540  0x0000112f set0  0x00000005 , 0x00000000 
+ 00013541  0x00001130 set0  0x0000000a , 0x00000000 
+ 00013542  0x00001131 set0  0x00000010 , 0x00000000 
+ 00013543  0x00001132 set0  0x0000000f , 0x00000000 
+ 00013544  0x00001133 fetch  0x00000001 , 0x00000047 
+ 00013545  0x00001134 set0  0x00000005 , 0x0000003f 
+ 00013546  0x00001135 set1  0x00000004 , 0x0000003f 
+ 00013547  0x00001136 store  0x00000001 , 0x00000047 
+ 00013548  0x00001137 rtn 
+ 00013549  0x0000113a set0  0x00000025 , 0x00000000 
+ 00013550  0x0000113b bpatch  0x00000049 , 0x00004009 
+ 00013551  0x0000113c jam  0x00000020 , 0x00000011 
+ 00013552  0x0000113d jam  0x00000050 , 0x00000047 
+ 00013553  0x0000113e fetch  0x00000002 , 0x0000415f 
+ 00013554  0x0000113f store  0x00000002 , 0x0000003e 
+ 00013555  0x00001140 deposit  0x00000022 
+ 00013556  0x00001141 store  0x00000004 , 0x0000416a 
+ 00013557  0x00001142 rtn  0x00000030 
+ 00013558  0x00001143 deposit  0x00000028 
+ 00013559  0x00001144 store  0x00000004 , 0x0000416a 
+ 00013560  0x00001145 rtn 
+ 00013561  0x00001148 set0  0x00000025 , 0x00000000 
+ 00013562  0x00001149 bpatch  0x0000004a , 0x00004009 
+ 00013563  0x0000114a call  0x00005b6f 
+ 00013564  0x0000114b call  0x00003512 
+ 00013565  0x0000114c store  0x00000001 , 0x00000046 
+ 00013566  0x0000114d setarg  0x00001c80 
+ 00013567  0x0000114e store  0x00000002 , 0x00000051 
+ 00013568  0x0000114f fetch  0x00000001 , 0x00000030 
+ 00013569  0x00001150 set1  0x00000000 , 0x0000003f 
+ 00013570  0x00001151 store  0x00000001 , 0x00000030 
+ 00013571  0x00001152 jam  0x00000000 , 0x0000004b 
+ 00013572  0x00001153 jam  0x00000000 , 0x0000004c 
+ 00013573  0x00001154 jam  0x00000000 , 0x000000a2 
+ 00013574  0x00001155 branch  0x00003bec 
+ 00013575  0x00001159 set0  0x00000025 , 0x00000000 
+ 00013576  0x0000115a bpatch  0x0000004b , 0x00004009 
+ 00013577  0x0000115b force  0x00000000 , 0x0000003f 
+ 00013578  0x0000115c store  0x00000008 , 0x00004262 
+ 00013579  0x0000115d istore  0x00000008 , 0x00000005 
+ 00013580  0x0000115e call  0x0000322a 
+ 00013581  0x0000115f branch  0x000032f0 
+ 00013582  0x00001162 fetch  0x00000001 , 0x00000011 
+ 00013583  0x00001163 increase  0xffffffff , 0x0000003f 
+ 00013584  0x00001164 store  0x00000001 , 0x00000011 
+ 00013585  0x00001165 rtn 
+ 00013586  0x00001168 fetch  0x00000001 , 0x00004170 
+ 00013587  0x00001169 increase  0x00000001 , 0x0000003f 
+ 00013588  0x0000116a store  0x00000001 , 0x00004170 
+ 00013589  0x0000116b rtn 
+ 00013590  0x0000116f set0  0x00000025 , 0x00000000 
+ 00013591  0x00001170 bpatch  0x0000004c , 0x00004009 
+ 00013592  0x00001171 call  0x000031fa 
+ 00013593  0x00001172 fetch  0x00000001 , 0x00004272 
+ 00013594  0x00001173 beq  0x00000003 , 0x0000351d 
+ 00013595  0x00001174 fetch  0x00000001 , 0x00000048 
+ 00013596  0x00001175 bne  0x00000001 , 0x00003521 
+ 00013597  0x00001177 call  0x000049be 
+ 00013598  0x00001178 nbranch  0x00003521 , 0x00000005 
+ 00013599  0x00001179 call  0x000031f5 
+ 00013600  0x0000117a jam  0x00000000 , 0x00004272 
+ 00013601  0x0000117c set0  0x00000025 , 0x00000000 
+ 00013602  0x0000117d bpatch  0x0000004d , 0x00004009 
+ 00013603  0x0000117e call  0x00003f18 
+ 00013604  0x0000117f call  0x00004995 
+ 00013605  0x00001180 call  0x00003806 
+ 00013606  0x00001181 jam  0x00000002 , 0x00000b7d 
+ 00013607  0x00001182 call  0x00007c27 
+ 00013608  0x00001183 call  0x00005b63 
+ 00013609  0x00001184 call  0x00004d99 
+ 00013610  0x00001185 call  0x00007719 
+ 00013611  0x00001186 fetch  0x00000001 , 0x00000030 
+ 00013612  0x00001187 set0  0x00000000 
+ 00013613  0x00001188 store  0x00000001 , 0x00000030 
+ 00013614  0x00001189 jam  0x00000000 , 0x000047f3 
+ 00013615  0x0000118b fetch  0x00000001 , 0x0000004c 
+ 00013616  0x0000118c compare  0x00000000 , 0x0000003f , 0x000000c0 
+ 00013617  0x0000118d branch  0x00003533 , 0x00000001 
+ 00013618  0x0000118e set0  0x00000001 , 0x00000000 
+ 00013619  0x00001190 fetch  0x00000001 , 0x00000047 
+ 00013620  0x00001191 bbit0  0x00000003 , 0x00003535 
+ 00013621  0x00001193 fetch  0x00000001 , 0x0000004b 
+ 00013622  0x00001194 rtnbit0  0x00000006 
+ 00013623  0x00001195 set0  0x00000002 , 0x00000000 
+ 00013624  0x00001196 rtn 
+ 00013625  0x00001199 set0  0x00000025 , 0x00000000 
+ 00013626  0x0000119a bpatch  0x0000004e , 0x00004009 
+ 00013627  0x0000119b fetch  0x00000001 , 0x0000017e 
+ 00013628  0x0000119c rtn  0x00000034 
+ 00013629  0x0000119d icopy  0x00000004 
+ 00013630  0x0000119e call  0x000035d6 
+ 00013631  0x0000119f nrtn  0x0000002d 
+ 00013632  0x000011a0 force  0x00000000 , 0x00000001 
+ 00013633  0x000011a1 call  0x000038b1 
+ 00013634  0x000011a2 deposit  0x00000004 
+ 00013635  0x000011a3 store  0x00000001 , 0x00000077 
+ 00013636  0x000011a4 force  0x00000000 , 0x0000003f 
+ 00013637  0x000011a5 store  0x00000001 , 0x0000017e 
+ 00013638  0x000011a6 rtn 
+ 00013639  0x000011ad set0  0x00000025 , 0x00000000 
+ 00013640  0x000011ae bpatch  0x0000004f , 0x00004009 
+ 00013641  0x000011af fetch  0x00000001 , 0x00000030 
+ 00013642  0x000011b0 bbit0  0x00000002 , 0x00003555 
+ 00013643  0x000011b1 force  0x00000007 , 0x00000001 
+ 00013644  0x000011b2 bmark0  0x00000007 , 0x00003554 
+ 00013645  0x000011b3 call  0x00003847 
+ 00013646  0x000011b4 nbranch  0x00003555 , 0x00000001 
+ 00013647  0x000011b5 branch  0x00003555 , 0x0000002e 
+ 00013648  0x000011b6 call  0x00003583 
+ 00013649  0x000011b7 setarg  0x00000002 
+ 00013650  0x000011b8 store  0x00000002 , 0x00004168 
+ 00013651  0x000011b9 rtn 
+ 00013652  0x000011bb nrtn  0x0000002e 
+ 00013653  0x000011bd set0  0x00000025 , 0x00000000 
+ 00013654  0x000011be bpatch  0x00000050 , 0x0000400a 
+ 00013655  0x000011bf call  0x000032df 
+ 00013656  0x000011c0 nbranch  0x00003568 , 0x00000005 
+ 00013657  0x000011c1 fetch  0x00000001 , 0x00000047 
+ 00013658  0x000011c2 bbit0  0x00000003 , 0x00003571 
+ 00013659  0x000011c4 bmark1  0x00000005 , 0x00003575 
+ 00013660  0x000011c5 fetch  0x00000001 , 0x00000189 
+ 00013661  0x000011c6 bbit1  0x00000006 , 0x0000357c 
+ 00013662  0x000011c7 fetch  0x00000002 , 0x00004168 
+ 00013663  0x000011c8 increase  0xffffffff , 0x0000003f 
+ 00013664  0x000011c9 store  0x00000002 , 0x00004168 
+ 00013665  0x000011ca branch  0x00003565 , 0x00000034 
+ 00013666  0x000011cb fetch  0x00000001 , 0x00004165 
+ 00013667  0x000011cc iforce  0x00000001 
+ 00013668  0x000011cd rtn 
+ 00013669  0x000011d0 set0  0x00000025 , 0x00000000 
+ 00013670  0x000011d1 bpatch  0x00000051 , 0x0000400a 
+ 00013671  0x000011d2 call  0x00003799 
+ 00013672  0x000011d4 call  0x00003847 
+ 00013673  0x000011d5 branch  0x00003571 , 0x00000001 
+ 00013674  0x000011d6 call  0x00005ed9 
+ 00013675  0x000011d7 branch  0x00003580 , 0x00000028 
+ 00013676  0x000011d8 fetch  0x00000001 , 0x0000004b 
+ 00013677  0x000011d9 bbit1  0x00000006 , 0x00003582 
+ 00013678  0x000011da bmark1  0x00000005 , 0x00003575 
+ 00013679  0x000011db fetch  0x00000001 , 0x00000189 
+ 00013680  0x000011dc bbit1  0x00000006 , 0x0000357c 
+ 00013681  0x000011de force  0x00000001 , 0x00000001 
+ 00013682  0x000011df rtn  0x00000029 
+ 00013683  0x000011e0 force  0x00000000 , 0x00000001 
+ 00013684  0x000011e1 rtn 
+ 00013685  0x000011e3 set0  0x00000025 , 0x00000000 
+ 00013686  0x000011e4 bpatch  0x00000052 , 0x0000400a 
+ 00013687  0x000011e5 fetch  0x00000001 , 0x00000019 
+ 00013688  0x000011e6 iforce  0x00000001 
+ 00013689  0x000011e7 rtnne  0x00000001 
+ 00013690  0x000011e8 force  0x00000000 , 0x00000001 
+ 00013691  0x000011e9 rtn 
+ 00013692  0x000011eb fetch  0x00000001 , 0x0000015a 
+ 00013693  0x000011ec and  0x0000003f , 0x0000000f , 0x00000001 
+ 00013694  0x000011ed set1  0x00000005 , 0x00000000 
+ 00013695  0x000011ee rtn 
+ 00013696  0x000011f0 force  0x00000013 , 0x00000001 
+ 00013697  0x000011f1 branch  0x00003583 
+ 00013698  0x000011f3 call  0x0000358d 
+ 00013699  0x000011f6 set0  0x00000025 , 0x00000000 
+ 00013700  0x000011f7 bpatch  0x00000053 , 0x0000400a 
+ 00013701  0x000011f8 fetcht  0x00000001 , 0x00000047 
+ 00013702  0x000011f9 set1  0x00000003 , 0x00000002 
+ 00013703  0x000011fa storet  0x00000001 , 0x00000047 
+ 00013704  0x000011fb deposit  0x00000001 
+ 00013705  0x000011fc store  0x00000001 , 0x00004165 
+ 00013706  0x000011fd setarg  0x0000ffff 
+ 00013707  0x000011fe store  0x00000002 , 0x00004168 
+ 00013708  0x000011ff rtn 
+ 00013709  0x00001202 set0  0x00000025 , 0x00000000 
+ 00013710  0x00001203 bpatch  0x00000054 , 0x0000400a 
+ 00013711  0x00001204 fetch  0x00000001 , 0x0000004c 
+ 00013712  0x00001205 isolate1  0x00000005 , 0x0000003f 
+ 00013713  0x00001206 fetch  0x00000002 , 0x00000091 
+ 00013714  0x00001207 branch  0x000035a1 , 0x00000001 
+ 00013715  0x00001208 force  0x00000003 , 0x00000001 
+ 00013716  0x00001209 sub  0x0000003f , 0x00000011 , 0x0000003e 
+ 00013717  0x0000120a rtn  0x00000002 
+ 00013718  0x0000120b force  0x00000004 , 0x00000001 
+ 00013719  0x0000120c sub  0x0000003f , 0x0000001b , 0x0000003e 
+ 00013720  0x0000120d rtn  0x00000002 
+ 00013721  0x0000120e force  0x0000000a , 0x00000001 
+ 00013722  0x0000120f sub  0x0000003f , 0x00000079 , 0x0000003e 
+ 00013723  0x00001210 rtn  0x00000002 
+ 00013724  0x00001211 force  0x0000000e , 0x00000001 
+ 00013725  0x00001212 sub  0x0000003f , 0x000000e0 , 0x0000003e 
+ 00013726  0x00001213 rtn  0x00000002 
+ 00013727  0x00001214 force  0x0000000f , 0x00000001 
+ 00013728  0x00001215 rtn 
+ 00013729  0x00001217 force  0x00000003 , 0x00000001 
+ 00013730  0x00001218 sub  0x0000003f , 0x00000011 , 0x0000003e 
+ 00013731  0x00001219 rtn  0x00000002 
+ 00013732  0x0000121a force  0x00000004 , 0x00000001 
+ 00013733  0x0000121b sub  0x0000003f , 0x00000036 , 0x0000003e 
+ 00013734  0x0000121c rtn  0x00000002 
+ 00013735  0x0000121d force  0x0000000a , 0x00000001 
+ 00013736  0x0000121e arg  0x0000016f , 0x00000002 
+ 00013737  0x0000121f isub  0x00000002 , 0x0000003e 
+ 00013738  0x00001220 nrtn  0x00000002 
+ 00013739  0x00001221 force  0x0000000e , 0x00000001 
+ 00013740  0x00001222 arg  0x000002a7 , 0x00000002 
+ 00013741  0x00001223 isub  0x00000002 , 0x0000003e 
+ 00013742  0x00001224 nrtn  0x00000002 
+ 00013743  0x00001225 force  0x0000000f , 0x00000001 
+ 00013744  0x00001226 rtn 
+ 00013745  0x00001230 fetch  0x00000001 , 0x00000030 
+ 00013746  0x00001231 bbit0  0x00000001 , 0x000035b6 
+ 00013747  0x00001232 fetch  0x00000002 , 0x00000032 
+ 00013748  0x00001233 branch  0x000035b6 , 0x00000034 
+ 00013749  0x00001234 nbranch  0x000035b8 , 0x0000002e 
+ 00013750  0x00001236 call  0x00003bac 
+ 00013751  0x00001238 add  0x00000028 , 0x00000001 , 0x00000021 
+ 00013752  0x0000123a enable  0x00000010 
+ 00013753  0x0000123b fetch  0x00000002 , 0x0000003e 
+ 00013754  0x0000123c rshift  0x0000003f , 0x0000003f 
+ 00013755  0x0000123d arg  0x00000500 , 0x00000002 
+ 00013756  0x0000123e iadd  0x00000002 , 0x0000003f 
+ 00013757  0x0000123f call  0x00003b7d 
+ 00013758  0x00001240 call  0x00003a5d 
+ 00013759  0x00001241 force  0x00000003 , 0x00000024 
+ 00013760  0x00001242 call  0x00003a3b 
+ 00013761  0x00001243 call  0x000034e1 
+ 00013762  0x00001244 call  0x00003b41 
+ 00013763  0x00001245 set0  0x00000025 , 0x00000000 
+ 00013764  0x00001246 bpatch  0x00000055 , 0x0000400a 
+ 00013765  0x00001247 fetch  0x00000002 , 0x0000003e 
+ 00013766  0x00001248 rshift  0x0000003f , 0x0000003f 
+ 00013767  0x00001249 call  0x00003b7d 
+ 00013768  0x0000124a call  0x00003b3a 
+ 00013769  0x0000124b enable  0x0000000d 
+ 00013770  0x0000124c fetch  0x00000002 , 0x0000003e 
+ 00013771  0x0000124d arg  0x000003bb , 0x00000002 
+ 00013772  0x0000124e iadd  0x00000002 , 0x0000001b 
+ 00013773  0x0000124f correlate  0x0000003e , 0x00000003 
+ 00013774  0x00001250 copy  0x0000001a , 0x00000002 
+ 00013775  0x00001251 storet  0x00000006 , 0x0000009c 
+ 00013776  0x00001252 disable  0x0000000d 
+ 00013777  0x00001253 nrtn  0x00000018 
+ 00013778  0x00001254 arg  0x000003bb , 0x00000029 
+ 00013779  0x00001255 copy  0x00000021 , 0x00000028 
+ 00013780  0x00001256 branch  0x00003cb6 , 0x0000002b 
+ 00013781  0x00001257 rtn 
+ 00013782  0x0000125b set0  0x00000025 , 0x00000000 
+ 00013783  0x0000125c bpatch  0x00000056 , 0x0000400a 
+ 00013784  0x0000125d call  0x000035b1 
+ 00013785  0x0000125e nbranch  0x00003a6d , 0x00000018 
+ 00013786  0x0000125f call  0x00003af3 
+ 00013787  0x00001260 bmark0  0x00000011 , 0x000035df 
+ 00013788  0x00001261 fetch  0x00000002 , 0x000000f8 
+ 00013789  0x00001262 increase  0x00000001 , 0x0000003f 
+ 00013790  0x00001263 store  0x00000002 , 0x000000f8 
+ 00013791  0x00001265 rshift  0x00000021 , 0x00000002 
+ 00013792  0x00001266 or  0x00000002 , 0x00000040 , 0x0000000e 
+ 00013793  0x00001268 set0  0x00000025 , 0x00000000 
+ 00013794  0x00001269 bpatch  0x00000057 , 0x0000400a 
+ 00013795  0x0000126a enable  0x00000007 
+ 00013796  0x0000126b enable  0x0000000a 
+ 00013797  0x0000126c enable  0x0000000b 
+ 00013798  0x0000126d parse  0x00000003 , 0x00000000 , 0x00000003 
+ 00013799  0x0000126e rshift8  0x0000000c , 0x0000003f 
+ 00013800  0x0000126f store  0x00000001 , 0x0000015f 
+ 00013801  0x00001270 parse  0x00000003 , 0x00000000 , 0x00000004 
+ 00013802  0x00001271 inject  0x00000000 , 0x00000007 
+ 00013803  0x00001272 copy  0x0000000c , 0x0000003f 
+ 00013804  0x00001273 store  0x00000001 , 0x00000019 
+ 00013805  0x00001274 parse  0x00000003 , 0x00000000 , 0x00000003 
+ 00013806  0x00001275 rshift8  0x0000000c , 0x0000003f 
+ 00013807  0x00001276 store  0x00000001 , 0x00000160 
+ 00013808  0x00001277 fetch  0x00000001 , 0x00000019 
+ 00013809  0x00001278 sub  0x0000003f , 0x00000003 , 0x0000003e 
+ 00013810  0x00001279 branch  0x000035f7 , 0x00000002 
+ 00013811  0x0000127a beq  0x00000007 , 0x000035f7 
+ 00013812  0x0000127b fetch  0x00000001 , 0x0000004c 
+ 00013813  0x0000127c isolate1  0x00000005 , 0x0000003f 
+ 00013814  0x0000127d setflag  0x00000001 , 0x00000001 , 0x00000015 
+ 00013815  0x0000127f set0  0x00000025 , 0x00000000 
+ 00013816  0x00001280 bpatch  0x00000058 , 0x0000400b 
+ 00013817  0x00001281 parse  0x00000003 , 0x00000000 , 0x00000008 
+ 00013818  0x00001282 disable  0x0000000b 
+ 00013819  0x00001283 disable  0x0000000a 
+ 00013820  0x00001284 branch  0x0000373e , 0x00000006 
+ 00013821  0x00001285 bmark0  0x00000011 , 0x00003601 
+ 00013822  0x00001286 fetch  0x00000002 , 0x000000fa 
+ 00013823  0x00001287 increase  0x00000001 , 0x0000003f 
+ 00013824  0x00001288 store  0x00000002 , 0x000000fa 
+ 00013825  0x0000128a set0  0x00000025 , 0x00000000 
+ 00013826  0x0000128b bpatch  0x00000059 , 0x0000400b 
+ 00013827  0x0000128c fetch  0x00000001 , 0x0000015f 
+ 00013828  0x0000128d compare  0x00000000 , 0x0000003f , 0x00000007 
+ 00013829  0x0000128e setflag  0x00000001 , 0x0000000a , 0x00000000 
+ 00013830  0x0000128f branch  0x00003613 , 0x00000001 
+ 00013831  0x00001290 icompare  0x00000007 , 0x00000004 
+ 00013832  0x00001291 branch  0x00003612 , 0x00000001 
+ 00013833  0x00001292 bmark0  0x00000007 , 0x0000375c 
+ 00013834  0x00001293 fetcht  0x00000001 , 0x000000b2 
+ 00013835  0x00001294 icompare  0x00000007 , 0x00000002 
+ 00013836  0x00001295 nbranch  0x0000375c , 0x00000001 
+ 00013837  0x00001296 call  0x00003290 
+ 00013838  0x00001297 fetch  0x00000001 , 0x00000047 
+ 00013839  0x00001298 set0  0x00000005 , 0x0000003f 
+ 00013840  0x00001299 set1  0x00000004 , 0x0000003f 
+ 00013841  0x0000129a store  0x00000001 , 0x00000047 
+ 00013842  0x0000129c enable  0x0000002d 
+ 00013843  0x0000129e set0  0x00000025 , 0x00000000 
+ 00013844  0x0000129f bpatch  0x0000005a , 0x0000400b 
+ 00013845  0x000012a0 fetch  0x00000001 , 0x00000019 
+ 00013846  0x000012a1 icopy  0x00000001 
+ 00013847  0x000012a2 bmark1  0x0000000a , 0x00003623 
+ 00013848  0x000012a3 fetcht  0x00000001 , 0x00000160 
+ 00013849  0x000012a4 fetch  0x00000001 , 0x00000047 
+ 00013850  0x000012a5 set0  0x00000000 , 0x0000003f 
+ 00013851  0x000012a6 isolate1  0x00000000 , 0x00000002 
+ 00013852  0x000012a7 setflag  0x00000001 , 0x00000000 , 0x0000003f 
+ 00013853  0x000012a8 isolate1  0x00000001 , 0x00000002 
+ 00013854  0x000012a9 setflag  0x00000001 , 0x00000001 , 0x0000003f 
+ 00013855  0x000012aa store  0x00000001 , 0x00000047 
+ 00013856  0x000012ab isolate0  0x00000001 , 0x00000002 
+ 00013857  0x000012ac branch  0x00003623 , 0x00000001 
+ 00013858  0x000012ad call  0x00003799 
+ 00013859  0x000012af set0  0x00000025 , 0x00000000 
+ 00013860  0x000012b0 bpatch  0x0000005b , 0x0000400b 
+ 00013861  0x000012b1 arg  0x00000000 , 0x00000002 
+ 00013862  0x000012b2 call  0x00003b74 
+ 00013863  0x000012b3 and  0x00000001 , 0x0000000f , 0x0000003f 
+ 00013864  0x000012b4 beq  0x00000001 , 0x00003656 
+ 00013865  0x000012b5 beq  0x00000000 , 0x0000375c 
+ 00013866  0x000012b6 beq  0x00000002 , 0x00003769 
+ 00013867  0x000012b7 fetcht  0x00000001 , 0x00000160 
+ 00013868  0x000012b8 fetch  0x00000001 , 0x00000047 
+ 00013869  0x000012b9 icompare  0x00000004 , 0x00000002 
+ 00013870  0x000012ba nbranch  0x00003632 , 0x00000001 
+ 00013871  0x000012bb bmark0  0x0000000a , 0x00003631 
+ 00013872  0x000012bc bbit0  0x00000007 , 0x00003632 
+ 00013873  0x000012be set1  0x0000000f , 0x00000000 
+ 00013874  0x000012c0 set0  0x00000025 , 0x00000000 
+ 00013875  0x000012c1 bpatch  0x0000005c , 0x0000400b 
+ 00013876  0x000012c2 deposit  0x00000001 
+ 00013877  0x000012c3 beq  0x00000003 , 0x00003658 
+ 00013878  0x000012c4 beq  0x00000004 , 0x0000365c 
+ 00013879  0x000012c5 beq  0x00000007 , 0x00003642 
+ 00013880  0x000012c6 beq  0x00000008 , 0x0000365b 
+ 00013881  0x000012c7 arg  0x00000004 , 0x00000002 
+ 00013882  0x000012c8 call  0x00003b74 
+ 00013883  0x000012c9 beq  0x0000000a , 0x00003657 
+ 00013884  0x000012ca beq  0x0000000b , 0x0000365a 
+ 00013885  0x000012cb arg  0x00000008 , 0x00000002 
+ 00013886  0x000012cc call  0x00003b74 
+ 00013887  0x000012cd beq  0x0000000e , 0x00003657 
+ 00013888  0x000012ce beq  0x0000000f , 0x0000365a 
+ 00013889  0x000012cf rtn 
+ 00013890  0x000012d3 set0  0x00000025 , 0x00000000 
+ 00013891  0x000012d4 bpatch  0x0000005d , 0x0000400b 
+ 00013892  0x000012d5 enable  0x0000000d 
+ 00013893  0x000012d6 enable  0x00000009 
+ 00013894  0x000012d7 enable  0x0000000e 
+ 00013895  0x000012d8 arg  0x000000d3 , 0x00000005 
+ 00013896  0x000012d9 force  0x0000001e , 0x00000039 
+ 00013897  0x000012db parse  0x00000003 , 0x00000000 , 0x00000008 
+ 00013898  0x000012dc rshift3  0x0000000c , 0x0000003f 
+ 00013899  0x000012dd istore  0x00000001 , 0x00000005 
+ 00013900  0x000012de loop  0x00003649 
+ 00013901  0x000012df bmark0  0x00000007 , 0x0000375c 
+ 00013902  0x000012e0 parse  0x00000003 , 0x00000000 , 0x00000010 
+ 00013903  0x000012e1 nsetflag  0x00000006 , 0x00000008 , 0x00000000 
+ 00013904  0x000012e2 call  0x00003653 , 0x00000006 
+ 00013905  0x000012e3 branch  0x0000374b , 0x00000006 
+ 00013906  0x000012e4 branch  0x0000372c 
+ 00013907  0x000012e7 deposit  0x0000001a 
+ 00013908  0x000012e8 store  0x00000006 , 0x00000020 
+ 00013909  0x000012e9 rtn 
+ 00013910  0x000012ec branch  0x0000375c 
+ 00013911  0x000012f0 set1  0x00000010 , 0x00000000 
+ 00013912  0x000012f2 enable  0x0000000c 
+ 00013913  0x000012f3 branch  0x0000365d 
+ 00013914  0x000012f7 set1  0x00000010 , 0x00000000 
+ 00013915  0x000012f9 set1  0x00000002 , 0x00000015 
+ 00013916  0x000012fb enable  0x0000000d 
+ 00013917  0x000012fd set0  0x00000025 , 0x00000000 
+ 00013918  0x000012fe bpatch  0x0000005e , 0x0000400b 
+ 00013919  0x000012ff bmark1  0x00000001 , 0x0000375c 
+ 00013920  0x00001300 isolate0  0x00000001 , 0x00000015 
+ 00013921  0x00001301 branch  0x0000366a , 0x00000001 
+ 00013922  0x00001302 disable  0x00000007 
+ 00013923  0x00001303 enable  0x0000000d 
+ 00013924  0x00001304 disable  0x0000000c 
+ 00013925  0x00001305 add  0x00000022 , 0x00000002 , 0x0000000b 
+ 00013926  0x00001306 correlate  0x00000022 , 0x00000026 
+ 00013927  0x00001307 nbranch  0x0000374b , 0x00000018 
+ 00013928  0x00001308 set1  0x00000010 , 0x00000000 
+ 00013929  0x00001309 enable  0x00000007 
+ 00013930  0x0000130b set0  0x00000025 , 0x00000000 
+ 00013931  0x0000130c bpatch  0x0000005f , 0x0000400b 
+ 00013932  0x0000130d enable  0x0000000e 
+ 00013933  0x0000130e enable  0x00000009 
+ 00013934  0x0000130f parse  0x00000003 , 0x00000000 , 0x00000003 
+ 00013935  0x00001310 rshift8  0x0000000c , 0x0000003f 
+ 00013936  0x00001311 store  0x00000001 , 0x0000018a 
+ 00013937  0x00001312 parse  0x00000003 , 0x00000000 , 0x00000005 
+ 00013938  0x00001313 bmark1  0x00000010 , 0x00003676 
+ 00013939  0x00001314 rshift3  0x0000000c , 0x00000039 
+ 00013940  0x00001315 rshift3  0x00000039 , 0x00000039 
+ 00013941  0x00001316 branch  0x00003679 
+ 00013942  0x00001318 parse  0x00000003 , 0x00000000 , 0x00000005 
+ 00013943  0x00001319 rshift  0x0000000c , 0x00000039 
+ 00013944  0x0000131a parse  0x00000003 , 0x00000000 , 0x00000003 
+ 00013945  0x0000131c set0  0x00000025 , 0x00000000 
+ 00013946  0x0000131d bpatch  0x00000060 , 0x0000400c 
+ 00013947  0x0000131e deposit  0x00000039 
+ 00013948  0x0000131f store  0x00000002 , 0x00000169 
+ 00013949  0x00001320 branch  0x000036ee , 0x00000034 
+ 00013950  0x00001321 isub  0x00000035 , 0x0000003e 
+ 00013951  0x00001322 branch  0x0000374b , 0x00000002 
+ 00013952  0x00001323 set0  0x00000025 , 0x00000000 
+ 00013953  0x00001324 bpatch  0x00000061 , 0x0000400c 
+ 00013954  0x00001325 set0  0x00000000 , 0x00000000 
+ 00013955  0x00001326 fetch  0x00000001 , 0x0000018a 
+ 00013956  0x00001327 and_into  0x00000003 , 0x0000003f 
+ 00013957  0x00001328 arg  0x000004de , 0x00000005 
+ 00013958  0x00001329 beq  0x00000003 , 0x0000368f 
+ 00013959  0x0000132a bmark1  0x00000011 , 0x000036ea 
+ 00013960  0x0000132b fetch  0x00000001 , 0x00004132 
+ 00013961  0x0000132c beq  0x00000001 , 0x00003694 
+ 00013962  0x0000132e fetch  0x00000001 , 0x0000018a 
+ 00013963  0x0000132f and_into  0x00000003 , 0x0000003f 
+ 00013964  0x00001330 beq  0x00000002 , 0x000036c3 
+ 00013965  0x00001331 beq  0x00000001 , 0x000036d8 
+ 00013966  0x00001332 branch  0x0000374b 
+ 00013967  0x00001335 fetch  0x00000002 , 0x00000169 
+ 00013968  0x00001336 sub  0x0000003f , 0x00000070 , 0x0000003e 
+ 00013969  0x00001337 nbranch  0x0000374b , 0x00000002 
+ 00013970  0x00001338 bmark1  0x0000000f , 0x0000372c 
+ 00013971  0x00001339 branch  0x000036ea 
+ 00013972  0x0000133c set0  0x00000025 , 0x00000000 
+ 00013973  0x0000133d bpatch  0x00000062 , 0x0000400c 
+ 00013974  0x0000133e bmark1  0x0000000f , 0x0000372c 
+ 00013975  0x0000133f fetch  0x00000002 , 0x00000169 
+ 00013976  0x00001340 branch  0x0000374b , 0x00000034 
+ 00013977  0x00001341 call  0x00004494 
+ 00013978  0x00001342 nbranch  0x000036a1 , 0x00000001 
+ 00013979  0x00001344 fetcht  0x00000002 , 0x00000291 
+ 00013980  0x00001345 increase  0x0000000a , 0x0000003f 
+ 00013981  0x00001346 isub  0x00000002 , 0x0000003e 
+ 00013982  0x00001347 nbranch  0x000036a7 , 0x00000002 
+ 00013983  0x00001348 call  0x00004449 
+ 00013984  0x00001349 branch  0x0000369b 
+ 00013985  0x0000134b hfetch  0x00000002 , 0x0000810e 
+ 00013986  0x0000134c arg  0x0000012c , 0x00000002 
+ 00013987  0x0000134d isub  0x00000002 , 0x0000003e 
+ 00013988  0x0000134e branch  0x0000374b , 0x00000002 
+ 00013989  0x0000134f fetch  0x00000002 , 0x00004800 
+ 00013990  0x00001350 branch  0x0000374b , 0x00000034 
+ 00013991  0x00001352 set0  0x00000025 , 0x00000000 
+ 00013992  0x00001353 bpatch  0x00000063 , 0x0000400c 
+ 00013993  0x00001354 call  0x00004972 
+ 00013994  0x00001355 fetch  0x00000001 , 0x00000046 
+ 00013995  0x00001356 fetcht  0x00000001 , 0x0000018a 
+ 00013996  0x00001357 and_into  0x00000003 , 0x00000002 
+ 00013997  0x00001358 lshift8  0x00000002 , 0x00000002 
+ 00013998  0x00001359 lshift4  0x00000002 , 0x00000002 
+ 00013999  0x0000135a ior  0x00000002 , 0x0000003f 
+ 00014000  0x0000135b istore  0x00000002 , 0x0000000a 
+ 00014001  0x0000135c fetcht  0x00000002 , 0x00000169 
+ 00014002  0x0000135d copy  0x00000002 , 0x00000039 
+ 00014003  0x0000135e istoret  0x00000002 , 0x0000000a 
+ 00014004  0x00001360 set0  0x00000025 , 0x00000000 
+ 00014005  0x00001361 bpatch  0x00000064 , 0x0000400c 
+ 00014006  0x00001362 parse  0x00000003 , 0x00000000 , 0x00000008 
+ 00014007  0x00001363 rshift3  0x0000000c , 0x0000003f 
+ 00014008  0x00001364 istore  0x00000001 , 0x0000000a 
+ 00014009  0x00001365 loop  0x000036b4 
+ 00014010  0x00001366 add  0x00000002 , 0x00000004 , 0x00000039 
+ 00014011  0x00001367 call  0x00004494 
+ 00014012  0x00001368 nbranch  0x000036c1 , 0x00000001 
+ 00014013  0x00001369 set1  0x00000013 , 0x00000000 
+ 00014014  0x0000136a force  0x00000006 , 0x00000007 
+ 00014015  0x0000136b call  0x00004378 
+ 00014016  0x0000136c branch  0x000036ee 
+ 00014017  0x0000136e call  0x00004424 
+ 00014018  0x0000136f branch  0x000036ee 
+ 00014019  0x00001372 set0  0x00000025 , 0x00000000 
+ 00014020  0x00001373 bpatch  0x00000065 , 0x0000400c 
+ 00014021  0x00001374 bmark1  0x0000000f , 0x0000372c 
+ 00014022  0x00001375 fetch  0x00000002 , 0x00000169 
+ 00014023  0x00001376 arg  0x000002e0 , 0x00000002 
+ 00014024  0x00001377 isub  0x00000002 , 0x0000003e 
+ 00014025  0x00001378 branch  0x0000374b , 0x00000002 
+ 00014026  0x00001379 fetch  0x00000001 , 0x000002ca 
+ 00014027  0x0000137a bbit0  0x00000000 , 0x000036ce 
+ 00014028  0x0000137b bbit0  0x00000001 , 0x000036d3 
+ 00014029  0x0000137c branch  0x0000375c 
+ 00014030  0x0000137e jam  0x00000001 , 0x000002c8 
+ 00014031  0x0000137f fetch  0x00000002 , 0x000002c4 
+ 00014032  0x00001380 bne  0x00000000 , 0x0000375c 
+ 00014033  0x00001381 arg  0x00001000 , 0x00000005 
+ 00014034  0x00001382 branch  0x000036ea 
+ 00014035  0x00001384 jam  0x00000002 , 0x000002c8 
+ 00014036  0x00001385 fetch  0x00000002 , 0x000002c6 
+ 00014037  0x00001386 bne  0x00000000 , 0x0000375c 
+ 00014038  0x00001387 arg  0x00001400 , 0x00000005 
+ 00014039  0x00001388 branch  0x000036ea 
+ 00014040  0x0000138b set0  0x00000025 , 0x00000000 
+ 00014041  0x0000138c bpatch  0x00000066 , 0x0000400c 
+ 00014042  0x0000138d bmark1  0x0000000f , 0x0000372c 
+ 00014043  0x0000138e fetch  0x00000002 , 0x00000169 
+ 00014044  0x0000138f arg  0x000002e0 , 0x00000002 
+ 00014045  0x00001390 isub  0x00000002 , 0x0000003e 
+ 00014046  0x00001391 branch  0x0000374b , 0x00000002 
+ 00014047  0x00001392 fetch  0x00000001 , 0x000002c8 
+ 00014048  0x00001393 beq  0x00000001 , 0x000036e3 
+ 00014049  0x00001394 beq  0x00000002 , 0x000036e7 
+ 00014050  0x00001395 branch  0x0000375c 
+ 00014051  0x00001397 arg  0x00001000 , 0x00000005 
+ 00014052  0x00001398 fetch  0x00000002 , 0x000002c4 
+ 00014053  0x00001399 iadd  0x00000005 , 0x00000005 
+ 00014054  0x0000139a branch  0x000036ea 
+ 00014055  0x0000139c arg  0x00001400 , 0x00000005 
+ 00014056  0x0000139d fetch  0x00000002 , 0x000002c6 
+ 00014057  0x0000139e iadd  0x00000005 , 0x00000005 
+ 00014058  0x000013a0 parse  0x00000003 , 0x00000000 , 0x00000008 
+ 00014059  0x000013a1 rshift3  0x0000000c , 0x0000003f 
+ 00014060  0x000013a2 istore  0x00000001 , 0x00000005 
+ 00014061  0x000013a3 loop  0x000036ea 
+ 00014062  0x000013a5 set0  0x00000025 , 0x00000000 
+ 00014063  0x000013a6 bpatch  0x00000067 , 0x0000400c 
+ 00014064  0x000013a7 parse  0x00000003 , 0x00000000 , 0x00000010 
+ 00014065  0x000013a8 branch  0x00003745 , 0x00000006 
+ 00014066  0x000013a9 call  0x00003e0f 
+ 00014067  0x000013aa fetch  0x00000001 , 0x000043cc 
+ 00014068  0x000013ab beq  0x00000001 , 0x0000375c 
+ 00014069  0x000013ac bmark1  0x00000011 , 0x00003718 
+ 00014070  0x000013ad bmark1  0x0000000f , 0x00003759 
+ 00014071  0x000013ae fetch  0x00000001 , 0x0000018a 
+ 00014072  0x000013af compare  0x00000003 , 0x0000003f , 0x00000003 
+ 00014073  0x000013b0 branch  0x00003718 , 0x00000001 
+ 00014074  0x000013b1 fetch  0x00000002 , 0x00000169 
+ 00014075  0x000013b2 branch  0x00003718 , 0x00000034 
+ 00014076  0x000013b3 fetch  0x00000001 , 0x00004132 
+ 00014077  0x000013b4 beq  0x00000001 , 0x00003718 
+ 00014078  0x000013b5 set0  0x00000025 , 0x00000000 
+ 00014079  0x000013b6 bpatch  0x00000068 , 0x0000400d 
+ 00014080  0x000013b7 fetch  0x00000001 , 0x000002c8 
+ 00014081  0x000013b8 beq  0x00000001 , 0x00003704 
+ 00014082  0x000013b9 beq  0x00000002 , 0x0000370e 
+ 00014083  0x000013ba branch  0x00003bf1 
+ 00014084  0x000013bc fetch  0x00000002 , 0x000002c4 
+ 00014085  0x000013bd fetcht  0x00000002 , 0x00000169 
+ 00014086  0x000013be iadd  0x00000002 , 0x0000003f 
+ 00014087  0x000013bf store  0x00000002 , 0x000002c4 
+ 00014088  0x000013c0 beq  0x00000000 , 0x00003bf1 
+ 00014089  0x000013c1 fetcht  0x00000002 , 0x00001000 
+ 00014090  0x000013c2 increase  0x00000004 , 0x00000002 
+ 00014091  0x000013c3 isub  0x00000002 , 0x0000003e 
+ 00014092  0x000013c4 call  0x000038a0 , 0x00000005 
+ 00014093  0x000013c5 branch  0x00003718 
+ 00014094  0x000013c7 fetch  0x00000002 , 0x000002c6 
+ 00014095  0x000013c8 fetcht  0x00000002 , 0x00000169 
+ 00014096  0x000013c9 iadd  0x00000002 , 0x0000003f 
+ 00014097  0x000013ca store  0x00000002 , 0x000002c6 
+ 00014098  0x000013cb beq  0x00000000 , 0x00003bf1 
+ 00014099  0x000013cc fetcht  0x00000002 , 0x00001400 
+ 00014100  0x000013cd add  0x00000002 , 0x00000004 , 0x00000002 
+ 00014101  0x000013ce isub  0x00000002 , 0x0000003e 
+ 00014102  0x000013cf call  0x000038a4 , 0x00000005 
+ 00014103  0x000013d0 branch  0x00003718 
+ 00014104  0x000013d2 set0  0x00000025 , 0x00000000 
+ 00014105  0x000013d3 bpatch  0x00000069 , 0x0000400d 
+ 00014106  0x000013d4 fetcht  0x00000001 , 0x0000004c 
+ 00014107  0x000013d5 fetch  0x00000001 , 0x0000018a 
+ 00014108  0x000013d6 compare  0x00000003 , 0x0000003f , 0x00000003 
+ 00014109  0x000013d7 setflag  0x00000001 , 0x00000006 , 0x00000002 
+ 00014110  0x000013d8 nsetflag  0x00000001 , 0x00000007 , 0x00000002 
+ 00014111  0x000013d9 storet  0x00000001 , 0x0000004c 
+ 00014112  0x000013da nbranch  0x00003722 , 0x00000001 
+ 00014113  0x000013db set1  0x00000001 , 0x00000000 
+ 00014114  0x000013dd bmark0  0x00000011 , 0x0000372c 
+ 00014115  0x000013de isolate1  0x00000006 , 0x00000002 
+ 00014116  0x000013df branch  0x0000372c , 0x00000001 
+ 00014117  0x000013e0 fetch  0x00000002 , 0x000000fc 
+ 00014118  0x000013e1 increase  0x00000001 , 0x0000003f 
+ 00014119  0x000013e2 store  0x00000002 , 0x000000fc 
+ 00014120  0x000013e3 set1  0x00000005 , 0x00000000 
+ 00014121  0x000013e4 set0  0x00000007 , 0x00000002 
+ 00014122  0x000013e5 set0  0x00000001 , 0x00000000 
+ 00014123  0x000013e6 storet  0x00000001 , 0x0000004c 
+ 00014124  0x000013e8 set0  0x00000025 , 0x00000000 
+ 00014125  0x000013e9 bpatch  0x0000006a , 0x0000400d 
+ 00014126  0x000013ea fetcht  0x00000001 , 0x00000160 
+ 00014127  0x000013eb fetch  0x00000001 , 0x00000047 
+ 00014128  0x000013ec set1  0x00000005 , 0x0000003f 
+ 00014129  0x000013ed isolate1  0x00000002 , 0x00000002 
+ 00014130  0x000013ee setflag  0x00000001 , 0x00000002 , 0x0000003f 
+ 00014131  0x000013ef isolate1  0x0000000a , 0x00000000 
+ 00014132  0x000013f0 setflag  0x00000001 , 0x00000007 , 0x0000003f 
+ 00014133  0x000013f1 store  0x00000001 , 0x00000047 
+ 00014134  0x000013f2 fetch  0x00000002 , 0x00000169 
+ 00014135  0x000013f3 nbranch  0x0000375c , 0x00000034 
+ 00014136  0x000013f4 fetch  0x00000001 , 0x0000004c 
+ 00014137  0x000013f5 set0  0x00000007 , 0x0000003f 
+ 00014138  0x000013f6 store  0x00000001 , 0x0000004c 
+ 00014139  0x000013f7 fetch  0x00000001 , 0x0000018a 
+ 00014140  0x000013f8 compare  0x00000001 , 0x0000003f , 0x00000007 
+ 00014141  0x000013fa branch  0x0000375c 
+ 00014142  0x000013fd set0  0x00000025 , 0x00000000 
+ 00014143  0x000013fe bpatch  0x0000006b , 0x0000400d 
+ 00014144  0x000013ff disable  0x0000002d 
+ 00014145  0x00001400 fetch  0x00000002 , 0x0000001a 
+ 00014146  0x00001401 increase  0x00000001 , 0x0000003f 
+ 00014147  0x00001402 store  0x00000002 , 0x0000001a 
+ 00014148  0x00001403 branch  0x0000375c 
+ 00014149  0x00001405 fetch  0x00000002 , 0x0000001c 
+ 00014150  0x00001406 increase  0x00000001 , 0x0000003f 
+ 00014151  0x00001407 store  0x00000002 , 0x0000001c 
+ 00014152  0x00001408 call  0x0000374c 
+ 00014153  0x00001409 bmark0  0x00000011 , 0x0000374b 
+ 00014154  0x0000140a set1  0x00000005 , 0x00000000 
+ 00014155  0x0000140c branch  0x0000375c 
+ 00014156  0x0000140f set0  0x00000025 , 0x00000000 
+ 00014157  0x00001410 bpatch  0x0000006c , 0x0000400d 
+ 00014158  0x00001411 fetch  0x00000001 , 0x0000018a 
+ 00014159  0x00001412 compare  0x00000003 , 0x0000003f , 0x00000003 
+ 00014160  0x00001413 nbranch  0x00003755 , 0x00000001 
+ 00014161  0x00001415 fetcht  0x00000001 , 0x0000004c 
+ 00014162  0x00001416 set0  0x00000006 , 0x00000002 
+ 00014163  0x00001417 storet  0x00000001 , 0x0000004c 
+ 00014164  0x00001418 rtn 
+ 00014165  0x0000141c fetcht  0x00000001 , 0x0000004c 
+ 00014166  0x0000141d set0  0x00000007 , 0x00000002 
+ 00014167  0x0000141e storet  0x00000001 , 0x0000004c 
+ 00014168  0x0000141f branch  0x0000443b 
+ 00014169  0x00001422 fetch  0x00000001 , 0x00000047 
+ 00014170  0x00001423 set1  0x00000005 , 0x0000003f 
+ 00014171  0x00001424 store  0x00000001 , 0x00000047 
+ 00014172  0x00001426 set0  0x00000025 , 0x00000000 
+ 00014173  0x00001427 bpatch  0x0000006d , 0x0000400d 
+ 00014174  0x00001428 disable  0x0000001d 
+ 00014175  0x00001429 disable  0x0000001c 
+ 00014176  0x0000142a disable  0x0000000d 
+ 00014177  0x0000142b disable  0x0000000c 
+ 00014178  0x0000142c disable  0x00000009 
+ 00014179  0x0000142d disable  0x0000000e 
+ 00014180  0x0000142e disable  0x00000007 
+ 00014181  0x0000142f branch  0x00003a6d , 0x00000021 
+ 00014182  0x00001430 until  0x0000003e , 0x00000027 
+ 00014183  0x00001431 nop  0x00000064 
+ 00014184  0x00001432 branch  0x00003a6d 
+ 00014185  0x00001435 set0  0x00000025 , 0x00000000 
+ 00014186  0x00001436 bpatch  0x0000006e , 0x0000400d 
+ 00014187  0x00001437 enable  0x00000009 
+ 00014188  0x00001438 enable  0x0000000c 
+ 00014189  0x00001439 parse  0x00000003 , 0x00000000 , 0x00000048 
+ 00014190  0x0000143a isolate1  0x0000003a , 0x0000003f 
+ 00014191  0x0000143b setflag  0x00000001 , 0x00000000 , 0x00000000 
+ 00014192  0x0000143c copy  0x00000020 , 0x00000002 
+ 00014193  0x0000143d ialigned  0x00000020 
+ 00014194  0x0000143e ialigned  0x0000001e 
+ 00014195  0x0000143f pulse  0x00000015 
+ 00014196  0x00001440 setsect  0x00000002 , 0x000fffff 
+ 00014197  0x00001441 setsect  0x00000003 , 0x0000ffff 
+ 00014198  0x00001442 nop  0x00000020 
+ 00014199  0x00001443 iverify  0x0000000d 
+ 00014200  0x00001444 deposit  0x0000002c 
+ 00014201  0x00001445 store  0x00000003 , 0x00000182 
+ 00014202  0x00001446 deposit  0x0000002d 
+ 00014203  0x00001447 store  0x00000001 , 0x00000185 
+ 00014204  0x00001448 copy  0x00000002 , 0x00000020 
+ 00014205  0x00001449 branch  0x0000377f , 0x00000001 
+ 00014206  0x0000144a branch  0x0000374b 
+ 00014207  0x0000144c set0  0x00000025 , 0x00000000 
+ 00014208  0x0000144d bpatch  0x0000006f , 0x0000400d 
+ 00014209  0x0000144e parse  0x00000003 , 0x00000000 , 0x00000048 
+ 00014210  0x0000144f ialigned  0x0000001f 
+ 00014211  0x00001450 ialigned  0x00000004 
+ 00014212  0x00001451 ialigned  0x0000002e 
+ 00014213  0x00001452 ialigned  0x00000012 
+ 00014214  0x00001453 force  0x00000000 , 0x0000003f 
+ 00014215  0x00001454 parse  0x00000003 , 0x00000000 , 0x00000010 
+ 00014216  0x00001455 branch  0x0000374b , 0x00000006 
+ 00014217  0x00001456 setarg  0x0ffffffc 
+ 00014218  0x00001457 iand  0x00000012 , 0x0000003f 
+ 00014219  0x00001458 store  0x00000004 , 0x0000016f 
+ 00014220  0x00001459 deposit  0x0000001d 
+ 00014221  0x0000145a store  0x00000003 , 0x0000017f 
+ 00014222  0x0000145b deposit  0x0000001c 
+ 00014223  0x0000145c store  0x00000001 , 0x0000017d 
+ 00014224  0x0000145d deposit  0x00000004 
+ 00014225  0x0000145e store  0x00000001 , 0x0000017e 
+ 00014226  0x0000145f deposit  0x0000002e 
+ 00014227  0x00001460 store  0x00000002 , 0x00000186 
+ 00014228  0x00001461 deposit  0x00000021 
+ 00014229  0x00001462 inject  0x00000001 , 0x00000020 
+ 00014230  0x00001463 compare  0x00000002 , 0x00000001 , 0x0000000f 
+ 00014231  0x00001464 setflag  0x00000001 , 0x0000000b , 0x00000000 
+ 00014232  0x00001465 branch  0x0000375c 
+ 00014233  0x00001468 set0  0x00000025 , 0x00000000 
+ 00014234  0x00001469 bpatch  0x00000070 , 0x0000400e 
+ 00014235  0x0000146a fetch  0x00000001 , 0x00000047 
+ 00014236  0x0000146b rtnbit0  0x00000003 
+ 00014237  0x0000146c set0  0x00000003 , 0x0000003f 
+ 00014238  0x0000146d setflip  0x00000006 , 0x0000003f 
+ 00014239  0x0000146e store  0x00000001 , 0x00000047 
+ 00014240  0x0000146f fetch  0x00000001 , 0x00004165 
+ 00014241  0x00001470 beq  0x00000013 , 0x000037b1 
+ 00014242  0x00001471 rtneq  0x00000007 
+ 00014243  0x00001472 fetch  0x00000001 , 0x0000004b 
+ 00014244  0x00001473 rtnbit0  0x00000006 , 0x0000003f 
+ 00014245  0x00001474 set0  0x00000006 , 0x0000003f 
+ 00014246  0x00001475 set1  0x00000007 , 0x0000003f 
+ 00014247  0x00001476 store  0x00000001 , 0x0000004b 
+ 00014248  0x00001477 set0  0x00000002 , 0x00000000 
+ 00014249  0x00001478 fetch  0x00000001 , 0x00004132 
+ 00014250  0x00001479 rtneq  0x00000001 
+ 00014251  0x0000147a fetch  0x00000002 , 0x000042af 
+ 00014252  0x0000147b nrtn  0x00000034 
+ 00014253  0x0000147c fetch  0x00000001 , 0x0000004b 
+ 00014254  0x0000147d set0  0x00000007 , 0x0000003f 
+ 00014255  0x0000147e store  0x00000001 , 0x0000004b 
+ 00014256  0x0000147f branch  0x00005267 
+ 00014257  0x00001482 set0  0x00000025 , 0x00000000 
+ 00014258  0x00001483 bpatch  0x00000071 , 0x0000400e 
+ 00014259  0x00001484 fetch  0x00000001 , 0x00000433 
+ 00014260  0x00001485 rshift  0x0000003f , 0x0000003f 
+ 00014261  0x00001486 beq  0x00000011 , 0x000037d0 
+ 00014262  0x00001487 beq  0x00000012 , 0x000037da 
+ 00014263  0x00001488 beq  0x00000018 , 0x00003806 
+ 00014264  0x00001489 beq  0x0000007f , 0x000037bf 
+ 00014265  0x0000148a beq  0x0000002c , 0x0000385e 
+ 00014266  0x0000148b rtnne  0x00000003 
+ 00014267  0x0000148c fetch  0x00000001 , 0x00000434 
+ 00014268  0x0000148d beq  0x0000002b , 0x000037c8 
+ 00014269  0x0000148e beq  0x00000011 , 0x000037c3 
+ 00014270  0x0000148f rtn 
+ 00014271  0x00001492 fetch  0x00000001 , 0x00000434 
+ 00014272  0x00001493 set1  0x00000007 , 0x0000003f 
+ 00014273  0x00001494 beq  0x0000008d , 0x0000385e 
+ 00014274  0x00001495 rtn 
+ 00014275  0x00001497 rtn  0x00000029 
+ 00014276  0x00001498 fetch  0x00000001 , 0x00000030 
+ 00014277  0x00001499 rtnbit1  0x00000004 
+ 00014278  0x0000149a jam  0x00000031 , 0x0000007c 
+ 00014279  0x0000149b rtn 
+ 00014280  0x0000149f rtn  0x00000029 
+ 00014281  0x000014a0 fetch  0x00000001 , 0x00000031 
+ 00014282  0x000014a1 isolate1  0x00000004 , 0x0000003f 
+ 00014283  0x000014a2 branch  0x000037cd , 0x00000001 
+ 00014284  0x000014a4 rtn 
+ 00014285  0x000014a6 set0  0x00000004 , 0x0000003f 
+ 00014286  0x000014a7 store  0x00000001 , 0x00000031 
+ 00014287  0x000014a8 rtn 
+ 00014288  0x000014ab set0  0x00000025 , 0x00000000 
+ 00014289  0x000014ac bpatch  0x00000072 , 0x0000400e 
+ 00014290  0x000014ad fetch  0x00000001 , 0x0000004c 
+ 00014291  0x000014ae set1  0x00000002 , 0x0000003f 
+ 00014292  0x000014af store  0x00000001 , 0x0000004c 
+ 00014293  0x000014b0 hjam  0x00000001 , 0x00008011 
+ 00014294  0x000014b1 fetch  0x00000001 , 0x00000030 
+ 00014295  0x000014b2 isolate1  0x00000004 , 0x0000003f 
+ 00014296  0x000014b3 branch  0x00004845 , 0x00000001 
+ 00014297  0x000014b4 rtn 
+ 00014298  0x000014b7 set0  0x00000025 , 0x00000000 
+ 00014299  0x000014b8 bpatch  0x00000073 , 0x0000400e 
+ 00014300  0x000014b9 fetch  0x00000001 , 0x0000004c 
+ 00014301  0x000014ba set0  0x00000002 , 0x0000003f 
+ 00014302  0x000014bb store  0x00000001 , 0x0000004c 
+ 00014303  0x000014bc hjam  0x00000000 , 0x00008011 
+ 00014304  0x000014bd rtn 
+ 00014305  0x000014c1 set0  0x00000025 , 0x00000000 
+ 00014306  0x000014c2 bpatch  0x00000074 , 0x0000400e 
+ 00014307  0x000014c3 copy  0x00000022 , 0x0000003f 
+ 00014308  0x000014c4 store  0x00000004 , 0x000042a5 
+ 00014309  0x000014c5 add  0x00000022 , 0x00000003 , 0x00000011 
+ 00014310  0x000014c6 branch  0x000037e8 , 0x00000029 
+ 00014311  0x000014c7 add  0x00000028 , 0x00000003 , 0x00000011 
+ 00014312  0x000014c9 fetcht  0x00000002 , 0x00000032 
+ 00014313  0x000014ca deposit  0x00000011 
+ 00014314  0x000014cb set0  0x0000001b , 0x0000003f 
+ 00014315  0x000014cc idiv  0x00000002 
+ 00014316  0x000014cd fetch  0x00000002 , 0x00000075 
+ 00014317  0x000014ce call  0x00007efd 
+ 00014318  0x000014cf remainder  0x00000013 
+ 00014319  0x000014d0 isub  0x00000013 , 0x0000003f 
+ 00014320  0x000014d1 branch  0x000037f2 , 0x00000002 
+ 00014321  0x000014d2 iadd  0x00000002 , 0x0000003f 
+ 00014322  0x000014d4 iadd  0x00000011 , 0x0000003f 
+ 00014323  0x000014d5 store  0x00000004 , 0x00000034 
+ 00014324  0x000014d6 jam  0x00000000 , 0x00004748 
+ 00014325  0x000014d7 fetch  0x00000001 , 0x00000030 
+ 00014326  0x000014d8 set1  0x00000001 , 0x0000003f 
+ 00014327  0x000014d9 store  0x00000001 , 0x00000030 
+ 00014328  0x000014da fetch  0x00000001 , 0x00000073 
+ 00014329  0x000014db store  0x00000001 , 0x0000008a 
+ 00014330  0x000014dc jam  0x00000080 , 0x0000416e 
+ 00014331  0x000014dd setarg  0x00000000 
+ 00014332  0x000014de store  0x00000003 , 0x0000420a 
+ 00014333  0x000014df store  0x00000003 , 0x0000420d 
+ 00014334  0x000014e0 store  0x00000001 , 0x000041fa 
+ 00014335  0x000014e1 jam  0x0000000b , 0x00000b7d 
+ 00014336  0x000014e2 call  0x00007c27 
+ 00014337  0x000014e3 fetch  0x00000002 , 0x00004161 
+ 00014338  0x000014e4 store  0x00000002 , 0x0000003e 
+ 00014339  0x000014e5 nrtn  0x00000029 
+ 00014340  0x000014e6 add  0x00000004 , 0xffffffff , 0x00000007 
+ 00014341  0x000014e7 rtn 
+ 00014342  0x000014ea set0  0x00000025 , 0x00000000 
+ 00014343  0x000014eb bpatch  0x00000075 , 0x0000400e 
+ 00014344  0x000014ec fetch  0x00000001 , 0x00000030 
+ 00014345  0x000014ed rtnbit0  0x00000001 
+ 00014346  0x000014ee set0  0x00000001 , 0x0000003f 
+ 00014347  0x000014ef store  0x00000001 , 0x00000030 
+ 00014348  0x000014f0 jam  0x0000007f , 0x0000416e 
+ 00014349  0x000014f1 fetch  0x00000002 , 0x0000415f 
+ 00014350  0x000014f2 store  0x00000002 , 0x0000003e 
+ 00014351  0x000014f3 disable  0x0000002b 
+ 00014352  0x000014f4 jam  0x0000000c , 0x00000b7d 
+ 00014353  0x000014f5 branch  0x00007c27 
+ 00014354  0x000014f9 set0  0x00000025 , 0x00000000 
+ 00014355  0x000014fa bpatch  0x00000076 , 0x0000400e 
+ 00014356  0x000014fb enable  0x0000002e 
+ 00014357  0x000014fc fetch  0x00000001 , 0x00000030 
+ 00014358  0x000014fd bbit1  0x00000001 , 0x00003820 
+ 00014359  0x000014fe rtnmark1  0x00000011 
+ 00014360  0x000014ff fetch  0x00000001 , 0x00000047 
+ 00014361  0x00001500 rtnbit1  0x00000003 
+ 00014362  0x00001501 fetch  0x00000001 , 0x00000048 
+ 00014363  0x00001502 nrtn  0x00000034 
+ 00014364  0x00001503 fetch  0x00000001 , 0x0000004b 
+ 00014365  0x00001504 rtnbit1  0x00000006 
+ 00014366  0x00001506 force  0x00000000 , 0x0000003f 
+ 00014367  0x00001507 rtn 
+ 00014368  0x0000150a bbit0  0x00000002 , 0x00003830 
+ 00014369  0x0000150b fetch  0x00000001 , 0x0000008a 
+ 00014370  0x0000150c beq  0x00000002 , 0x00003826 
+ 00014371  0x0000150d fetch  0x00000001 , 0x00000047 
+ 00014372  0x0000150e bbit1  0x00000003 , 0x00003839 
+ 00014373  0x0000150f bmark0  0x00000008 , 0x00003839 
+ 00014374  0x00001511 call  0x00003290 
+ 00014375  0x00001512 nbranch  0x00003839 , 0x00000029 
+ 00014376  0x00001513 fetch  0x00000001 , 0x00000048 
+ 00014377  0x00001514 nbranch  0x00003839 , 0x00000034 
+ 00014378  0x00001516 fetch  0x00000001 , 0x000000f1 
+ 00014379  0x00001517 increase  0xffffffff , 0x0000003f 
+ 00014380  0x00001518 store  0x00000001 , 0x000000f1 
+ 00014381  0x00001519 nbranch  0x0000381e , 0x00000034 
+ 00014382  0x0000151a jam  0x00000010 , 0x000000f1 
+ 00014383  0x0000151b branch  0x00003839 
+ 00014384  0x0000151e fetch  0x00000001 , 0x0000008a 
+ 00014385  0x0000151f bne  0x00000001 , 0x00003839 
+ 00014386  0x00001520 fetch  0x00000001 , 0x0000008b 
+ 00014387  0x00001521 branch  0x00003839 , 0x00000034 
+ 00014388  0x00001522 increase  0xffffffff , 0x0000003f 
+ 00014389  0x00001523 store  0x00000001 , 0x0000008b 
+ 00014390  0x00001524 fetch  0x00000001 , 0x00000047 
+ 00014391  0x00001525 rtnbit1  0x00000003 
+ 00014392  0x00001526 nrtn  0x0000002d 
+ 00014393  0x00001528 fetch  0x00000001 , 0x0000008a 
+ 00014394  0x00001529 increase  0xffffffff , 0x0000003f 
+ 00014395  0x0000152a store  0x00000001 , 0x0000008a 
+ 00014396  0x0000152b rtn 
+ 00014397  0x0000152f set0  0x00000025 , 0x00000000 
+ 00014398  0x00001530 bpatch  0x00000077 , 0x0000400e 
+ 00014399  0x00001531 disable  0x00000010 
+ 00014400  0x00001532 copy  0x00000002 , 0x0000001b 
+ 00014401  0x00001533 call  0x00003300 
+ 00014402  0x00001534 disable  0x00000028 
+ 00014403  0x00001535 nrtn  0x00000005 
+ 00014404  0x00001536 force  0x00000000 , 0x0000001b 
+ 00014405  0x00001537 enable  0x00000028 
+ 00014406  0x00001538 rtn 
+ 00014407  0x0000153c fetch  0x00000001 , 0x000041f9 
+ 00014408  0x0000153d icompare  0x000000ff , 0x00000004 
+ 00014409  0x0000153e rtn 
+ 00014410  0x00001541 set0  0x00000025 , 0x00000000 
+ 00014411  0x00001542 bpatch  0x00000078 , 0x0000400f 
+ 00014412  0x00001543 jam  0x00000001 , 0x00004171 
+ 00014413  0x00001545 call  0x00006a40 
+ 00014414  0x00001546 force  0x0000000c , 0x0000003f 
+ 00014415  0x00001547 store  0x00000002 , 0x00000032 
+ 00014416  0x00001548 fetch  0x00000001 , 0x000000af 
+ 00014417  0x00001549 lshift  0x0000003f , 0x0000003f 
+ 00014418  0x0000154a store  0x00000002 , 0x00000075 
+ 00014419  0x0000154b fetch  0x00000001 , 0x00000030 
+ 00014420  0x0000154c set1  0x00000002 , 0x0000003f 
+ 00014421  0x0000154d store  0x00000001 , 0x00000030 
+ 00014422  0x0000154e jam  0x00000003 , 0x00000073 
+ 00014423  0x0000154f jam  0x00000003 , 0x0000008a 
+ 00014424  0x00001550 call  0x000037e1 
+ 00014425  0x00001551 force  0x00000000 , 0x00000002 
+ 00014426  0x00001552 call  0x00004914 
+ 00014427  0x00001553 jam  0x00000050 , 0x000000b3 
+ 00014428  0x00001554 jam  0x00000010 , 0x000000f1 
+ 00014429  0x00001555 rtn 
+ 00014430  0x00001558 set0  0x00000025 , 0x00000000 
+ 00014431  0x00001559 bpatch  0x00000079 , 0x0000400f 
+ 00014432  0x0000155a call  0x00003806 
+ 00014433  0x0000155b jam  0x00000005 , 0x00004171 
+ 00014434  0x0000155d call  0x00006a4a 
+ 00014435  0x0000155e fetch  0x00000001 , 0x00000030 
+ 00014436  0x0000155f set0  0x00000002 , 0x0000003f 
+ 00014437  0x00001560 store  0x00000001 , 0x00000030 
+ 00014438  0x00001562 arg  0x00000e00 , 0x00000002 
+ 00014439  0x00001563 jam  0x00000013 , 0x000002c0 
+ 00014440  0x00001564 branch  0x000048c4 
+ 00014441  0x00001567 set0  0x00000025 , 0x00000000 
+ 00014442  0x00001568 bpatch  0x0000007a , 0x0000400f 
+ 00014443  0x00001569 jam  0x00000000 , 0x000000b1 
+ 00014444  0x0000156a call  0x0000385e 
+ 00014445  0x0000156b call  0x00003290 
+ 00014446  0x0000156c set0  0x00000007 , 0x00000000 
+ 00014447  0x0000156d rtn 
+ 00014448  0x00001570 set0  0x00000025 , 0x00000000 
+ 00014449  0x00001571 bpatch  0x0000007b , 0x0000400f 
+ 00014450  0x00001572 fetch  0x00000001 , 0x00004132 
+ 00014451  0x00001573 beq  0x00000001 , 0x00003898 
+ 00014452  0x00001574 set0  0x00000001 , 0x00000000 
+ 00014453  0x00001576 jam  0x00000000 , 0x000002d1 
+ 00014454  0x00001577 fetch  0x00000001 , 0x000002ca 
+ 00014455  0x00001578 rtn  0x00000034 
+ 00014456  0x00001579 isolate1  0x00000000 , 0x0000003f 
+ 00014457  0x0000157a arg  0x00001000 , 0x00000006 
+ 00014458  0x0000157b call  0x00004da8 , 0x00000001 
+ 00014459  0x0000157c set0  0x00000025 , 0x00000000 
+ 00014460  0x0000157d bpatch  0x0000007c , 0x0000400f 
+ 00014461  0x0000157e fetch  0x00000001 , 0x000002d1 
+ 00014462  0x0000157f beq  0x00000001 , 0x0000388c 
+ 00014463  0x00001581 jam  0x00000000 , 0x000002d1 
+ 00014464  0x00001582 fetch  0x00000001 , 0x000002ca 
+ 00014465  0x00001583 rtnbit0  0x00000001 
+ 00014466  0x00001584 arg  0x00001400 , 0x00000006 
+ 00014467  0x00001585 call  0x00004da8 
+ 00014468  0x00001586 fetch  0x00000001 , 0x000002d1 
+ 00014469  0x00001587 beq  0x00000001 , 0x00003892 
+ 00014470  0x00001588 rtn 
+ 00014471  0x0000158b fetch  0x00000001 , 0x0000004c 
+ 00014472  0x0000158c set0  0x00000007 , 0x0000003f 
+ 00014473  0x0000158d store  0x00000001 , 0x0000004c 
+ 00014474  0x0000158e set0  0x00000001 , 0x00000000 
+ 00014475  0x0000158f branch  0x0000443b 
+ 00014476  0x00001592 fetch  0x00000001 , 0x000002ca 
+ 00014477  0x00001593 set0  0x00000000 , 0x0000003f 
+ 00014478  0x00001594 store  0x00000001 , 0x000002ca 
+ 00014479  0x00001595 setarg  0x00000000 
+ 00014480  0x00001596 store  0x00000002 , 0x000002c4 
+ 00014481  0x00001597 rtn 
+ 00014482  0x00001599 fetch  0x00000001 , 0x000002ca 
+ 00014483  0x0000159a set0  0x00000001 , 0x0000003f 
+ 00014484  0x0000159b store  0x00000001 , 0x000002ca 
+ 00014485  0x0000159c setarg  0x00000000 
+ 00014486  0x0000159d store  0x00000002 , 0x000002c6 
+ 00014487  0x0000159e rtn 
+ 00014488  0x000015a1 fetch  0x00000001 , 0x0000004c 
+ 00014489  0x000015a2 rtnbit0  0x00000007 , 0x0000003f 
+ 00014490  0x000015a3 call  0x00004435 
+ 00014491  0x000015a4 fetch  0x00000002 , 0x00004800 
+ 00014492  0x000015a5 branch  0x00003bf1 , 0x00000034 
+ 00014493  0x000015a6 increase  0xffffffff , 0x0000003f 
+ 00014494  0x000015a7 store  0x00000002 , 0x00004800 
+ 00014495  0x000015a8 branch  0x00003887 
+ 00014496  0x000015ab fetch  0x00000001 , 0x000002ca 
+ 00014497  0x000015ac set1  0x00000000 , 0x0000003f 
+ 00014498  0x000015ad store  0x00000001 , 0x000002ca 
+ 00014499  0x000015ae rtn 
+ 00014500  0x000015b1 fetch  0x00000001 , 0x000002ca 
+ 00014501  0x000015b2 set1  0x00000001 , 0x0000003f 
+ 00014502  0x000015b3 store  0x00000001 , 0x000002ca 
+ 00014503  0x000015b4 rtn 
+ 00014504  0x000015bb set0  0x00000025 , 0x00000000 
+ 00014505  0x000015bc bpatch  0x0000007d , 0x0000400f 
+ 00014506  0x000015bd add  0x00000028 , 0x00000001 , 0x00000021 
+ 00014507  0x000015be call  0x00003a5d 
+ 00014508  0x000015bf force  0x00000003 , 0x00000024 
+ 00014509  0x000015c0 call  0x00003a42 
+ 00014510  0x000015c1 call  0x00003bae 
+ 00014511  0x000015c2 call  0x00003bbf 
+ 00014512  0x000015c3 branch  0x00003bc5 
+ 00014513  0x000015c7 set0  0x00000025 , 0x00000000 
+ 00014514  0x000015c8 bpatch  0x0000007e , 0x0000400f 
+ 00014515  0x000015c9 call  0x00003baa 
+ 00014516  0x000015ca deposit  0x00000028 
+ 00014517  0x000015cb fetcht  0x00000004 , 0x0000416a 
+ 00014518  0x000015cc isub  0x00000002 , 0x0000003f 
+ 00014519  0x000015cd rtnne  0x00000001 
+ 00014520  0x000015ce compare  0x00000000 , 0x00000001 , 0x0000001f 
+ 00014521  0x000015cf nbranch  0x000038bc , 0x00000001 
+ 00014522  0x000015d0 fetch  0x00000001 , 0x00000019 
+ 00014523  0x000015d1 rtn  0x00000034 
+ 00014524  0x000015d3 call  0x000038a8 
+ 00014525  0x000015d4 compare  0x00000010 , 0x00000001 , 0x0000001f 
+ 00014526  0x000015d5 branch  0x0000375c , 0x00000001 
+ 00014527  0x000015d7 rshift  0x00000021 , 0x00000002 
+ 00014528  0x000015d8 or  0x00000002 , 0x00000040 , 0x0000000e 
+ 00014529  0x000015da set0  0x00000025 , 0x00000000 
+ 00014530  0x000015db bpatch  0x0000007f , 0x0000400f 
+ 00014531  0x000015dc enable  0x00000007 
+ 00014532  0x000015dd enable  0x0000000a 
+ 00014533  0x000015de enable  0x0000001b 
+ 00014534  0x000015df set0  0x00000010 , 0x00000000 
+ 00014535  0x000015e0 deposit  0x00000004 
+ 00014536  0x000015e1 inject  0x00000003 , 0x00000003 
+ 00014537  0x000015e2 deposit  0x00000001 
+ 00014538  0x000015e3 inject  0x00000003 , 0x00000004 
+ 00014539  0x000015e4 fetch  0x00000001 , 0x00000047 
+ 00014540  0x000015e5 inject  0x00000000 , 0x00000004 
+ 00014541  0x000015e6 inject  0x00000003 , 0x00000003 
+ 00014542  0x000015e7 enable  0x00000008 
+ 00014543  0x000015e8 inject  0x00000003 , 0x00000008 
+ 00014544  0x000015e9 disable  0x0000001b 
+ 00014545  0x000015ea disable  0x00000008 
+ 00014546  0x000015eb disable  0x0000000a 
+ 00014547  0x000015ec set0  0x00000002 , 0x00000015 
+ 00014548  0x000015ed arg  0x00000000 , 0x00000002 
+ 00014549  0x000015ee call  0x00003b74 
+ 00014550  0x000015ef set0  0x00000025 , 0x00000000 
+ 00014551  0x000015f0 bpatch  0x00000080 , 0x00004010 
+ 00014552  0x000015f1 and  0x00000001 , 0x0000001f , 0x0000003f 
+ 00014553  0x000015f2 beq  0x00000013 , 0x00003913 
+ 00014554  0x000015f3 beq  0x00000000 , 0x0000375c 
+ 00014555  0x000015f4 beq  0x00000001 , 0x0000375c 
+ 00014556  0x000015f5 beq  0x00000002 , 0x000038f5 
+ 00014557  0x000015f6 beq  0x00000003 , 0x00003925 
+ 00014558  0x000015f7 beq  0x00000004 , 0x0000392b 
+ 00014559  0x000015f8 beq  0x00000007 , 0x000038e9 
+ 00014560  0x000015f9 beq  0x00000008 , 0x0000392a 
+ 00014561  0x000015fa arg  0x00000004 , 0x00000002 
+ 00014562  0x000015fb call  0x00003b74 
+ 00014563  0x000015fc beq  0x0000000a , 0x00003927 
+ 00014564  0x000015fd beq  0x0000000b , 0x0000392d 
+ 00014565  0x000015fe arg  0x00000008 , 0x00000002 
+ 00014566  0x000015ff call  0x00003b74 
+ 00014567  0x00001600 beq  0x0000000f , 0x0000392d 
+ 00014568  0x00001601 branch  0x00003927 
+ 00014569  0x00001605 set0  0x00000025 , 0x00000000 
+ 00014570  0x00001606 bpatch  0x00000081 , 0x00004010 
+ 00014571  0x00001607 enable  0x0000001d 
+ 00014572  0x00001608 enable  0x00000009 
+ 00014573  0x00001609 enable  0x0000000e 
+ 00014574  0x0000160a force  0x0000001e , 0x00000039 
+ 00014575  0x0000160b arg  0x000000b5 , 0x00000006 
+ 00014576  0x0000160d ifetch  0x00000001 , 0x00000006 
+ 00014577  0x0000160e inject  0x00000003 , 0x00000008 
+ 00014578  0x0000160f loop  0x000038f0 
+ 00014579  0x00001610 bmark1  0x00000007 , 0x00003960 
+ 00014580  0x00001611 branch  0x0000375c 
+ 00014581  0x00001614 set0  0x00000025 , 0x00000000 
+ 00014582  0x00001615 bpatch  0x00000082 , 0x00004010 
+ 00014583  0x00001616 fetch  0x00000001 , 0x0000018b 
+ 00014584  0x00001617 icopy  0x00000004 
+ 00014585  0x00001618 fetch  0x00000001 , 0x0000008f 
+ 00014586  0x00001619 icopy  0x0000001c 
+ 00014587  0x0000161a fetch  0x00000003 , 0x0000414a 
+ 00014588  0x0000161b icopy  0x0000001d 
+ 00014589  0x0000161c fetch  0x00000002 , 0x00004144 
+ 00014590  0x0000161d icopy  0x0000002e 
+ 00014591  0x0000161e enable  0x00000009 
+ 00014592  0x0000161f enable  0x0000001c 
+ 00014593  0x00001620 copy  0x00000020 , 0x00000011 
+ 00014594  0x00001621 call  0x00003a54 
+ 00014595  0x00001622 pulse  0x00000015 
+ 00014596  0x00001623 nop  0x00000020 
+ 00014597  0x00001624 copy  0x00000021 , 0x0000000b 
+ 00014598  0x00001625 fetch  0x00000004 , 0x0000016b 
+ 00014599  0x00001626 icopy  0x00000021 
+ 00014600  0x00001627 preload  0x0000001e 
+ 00014601  0x00001628 set1  0x0000003a , 0x0000003f 
+ 00014602  0x00001629 inject  0x00000003 , 0x00000048 
+ 00014603  0x0000162a preload  0x0000001f 
+ 00014604  0x0000162b inject  0x00000003 , 0x00000048 
+ 00014605  0x0000162c copy  0x0000000b , 0x00000021 
+ 00014606  0x0000162d copy  0x00000011 , 0x00000020 
+ 00014607  0x0000162e enable  0x00000008 
+ 00014608  0x0000162f inject  0x00000003 , 0x00000010 
+ 00014609  0x00001630 disable  0x00000008 
+ 00014610  0x00001631 branch  0x0000375c 
+ 00014611  0x00001634 set0  0x00000025 , 0x00000000 
+ 00014612  0x00001635 bpatch  0x00000083 , 0x00004010 
+ 00014613  0x00001636 enable  0x0000000e 
+ 00014614  0x00001637 enable  0x00000009 
+ 00014615  0x00001638 enable  0x0000001c 
+ 00014616  0x00001639 fetch  0x00000001 , 0x00000432 
+ 00014617  0x0000163a and  0x0000003f , 0x000001f8 , 0x00000002 
+ 00014618  0x0000163b arg  0x00000432 , 0x00000006 
+ 00014619  0x0000163c increase  0x00000008 , 0x00000002 
+ 00014620  0x0000163e add  0x00000002 , 0xffffffb8 , 0x00000013 
+ 00014621  0x0000163f nbranch  0x00003922 , 0x00000002 
+ 00014622  0x00001640 ifetch  0x00000009 , 0x00000006 
+ 00014623  0x00001641 inject  0x00000003 , 0x00000048 
+ 00014624  0x00001642 copy  0x00000013 , 0x00000002 
+ 00014625  0x00001643 branch  0x0000391c 
+ 00014626  0x00001645 ifetch  0x00000009 , 0x00000006 
+ 00014627  0x00001646 iinject  0x00000003 , 0x00000002 
+ 00014628  0x00001647 branch  0x00003960 
+ 00014629  0x0000164a enable  0x0000001c 
+ 00014630  0x0000164b branch  0x00003930 
+ 00014631  0x0000164e enable  0x0000001c 
+ 00014632  0x0000164f set1  0x00000010 , 0x00000000 
+ 00014633  0x00001650 branch  0x00003930 
+ 00014634  0x00001653 set1  0x00000002 , 0x00000015 
+ 00014635  0x00001655 enable  0x0000001d 
+ 00014636  0x00001656 branch  0x00003930 
+ 00014637  0x0000165a set1  0x00000002 , 0x00000015 
+ 00014638  0x0000165b enable  0x0000001d 
+ 00014639  0x0000165c set1  0x00000010 , 0x00000000 
+ 00014640  0x0000165f set0  0x00000025 , 0x00000000 
+ 00014641  0x00001660 bpatch  0x00000084 , 0x00004010 
+ 00014642  0x00001661 fetch  0x00000001 , 0x0000004c 
+ 00014643  0x00001662 bbit0  0x00000005 , 0x00003946 
+ 00014644  0x00001663 sub  0x00000001 , 0x00000003 , 0x0000003e 
+ 00014645  0x00001664 branch  0x00003946 , 0x00000002 
+ 00014646  0x00001665 disable  0x0000000e 
+ 00014647  0x00001666 disable  0x0000001c 
+ 00014648  0x00001667 enable  0x0000001d 
+ 00014649  0x00001668 disable  0x00000007 
+ 00014650  0x00001669 set1  0x00000001 , 0x00000015 
+ 00014651  0x0000166a isolate1  0x00000002 , 0x00000015 
+ 00014652  0x0000166b branch  0x00003940 , 0x00000001 
+ 00014653  0x0000166c setarg  0x000abeee 
+ 00014654  0x0000166d inject  0x00000003 , 0x00000014 
+ 00014655  0x0000166e branch  0x00003944 
+ 00014656  0x00001670 setarg  0x005faeba 
+ 00014657  0x00001671 inject  0x00000003 , 0x00000018 
+ 00014658  0x00001672 setarg  0x00000012 
+ 00014659  0x00001673 inject  0x00000003 , 0x00000006 
+ 00014660  0x00001675 enable  0x00000007 
+ 00014661  0x00001676 set1  0x00000010 , 0x00000000 
+ 00014662  0x00001678 enable  0x0000000e 
+ 00014663  0x00001679 enable  0x00000009 
+ 00014664  0x0000167a bmark1  0x00000005 , 0x00003969 
+ 00014665  0x0000167b fetch  0x00000001 , 0x00000090 
+ 00014666  0x0000167c inject  0x00000003 , 0x00000003 
+ 00014667  0x0000167d fetch  0x00000002 , 0x00000091 
+ 00014668  0x0000167e iforce  0x00000039 
+ 00014669  0x0000167f bmark1  0x00000010 , 0x00003950 
+ 00014670  0x00001680 inject  0x00000003 , 0x00000005 
+ 00014671  0x00001681 branch  0x00003951 
+ 00014672  0x00001683 inject  0x00000003 , 0x0000000d 
+ 00014673  0x00001685 fetch  0x00000001 , 0x00004132 
+ 00014674  0x00001686 beq  0x00000001 , 0x0000395b 
+ 00014675  0x00001687 deposit  0x00000039 
+ 00014676  0x00001688 branch  0x00003960 , 0x00000034 
+ 00014677  0x00001689 fetch  0x00000002 , 0x00000179 
+ 00014678  0x0000168a iforce  0x00000006 
+ 00014679  0x0000168c ifetch  0x00000001 , 0x00000006 
+ 00014680  0x0000168d inject  0x00000003 , 0x00000008 
+ 00014681  0x0000168e loop  0x00003957 
+ 00014682  0x0000168f branch  0x00003960 
+ 00014683  0x00001691 fetch  0x00000002 , 0x00000179 
+ 00014684  0x00001692 iforce  0x00000003 
+ 00014685  0x00001694 ifetch  0x00000001 , 0x00000003 
+ 00014686  0x00001695 inject  0x00000003 , 0x00000008 
+ 00014687  0x00001696 loop  0x0000395d 
+ 00014688  0x00001698 enable  0x00000008 
+ 00014689  0x00001699 inject  0x00000003 , 0x00000010 
+ 00014690  0x0000169a disable  0x00000008 
+ 00014691  0x0000169b call  0x00003583 
+ 00014692  0x0000169c fetch  0x00000001 , 0x0000004c 
+ 00014693  0x0000169d bbit0  0x00000005 , 0x0000375c 
+ 00014694  0x0000169e force  0x00000000 , 0x0000003f 
+ 00014695  0x0000169f inject  0x00000003 , 0x00000006 
+ 00014696  0x000016a0 branch  0x0000375c 
+ 00014697  0x000016a4 set0  0x00000025 , 0x00000000 
+ 00014698  0x000016a5 bpatch  0x00000085 , 0x00004010 
+ 00014699  0x000016a6 bmark1  0x00000010 , 0x00003972 
+ 00014700  0x000016a8 fetch  0x00000001 , 0x0000018a 
+ 00014701  0x000016a9 inject  0x00000003 , 0x00000003 
+ 00014702  0x000016aa fetch  0x00000001 , 0x00000169 
+ 00014703  0x000016ab iforce  0x00000013 
+ 00014704  0x000016ac inject  0x00000003 , 0x00000005 
+ 00014705  0x000016ad branch  0x00003977 
+ 00014706  0x000016af fetch  0x00000001 , 0x0000018a 
+ 00014707  0x000016b0 inject  0x00000003 , 0x00000003 
+ 00014708  0x000016b1 fetch  0x00000002 , 0x00000169 
+ 00014709  0x000016b2 iforce  0x00000013 
+ 00014710  0x000016b3 inject  0x00000003 , 0x0000000d 
+ 00014711  0x000016b5 arg  0x000004de , 0x00000006 
+ 00014712  0x000016b7 copy  0x00000013 , 0x0000003e 
+ 00014713  0x000016b8 branch  0x0000397e , 0x00000005 
+ 00014714  0x000016b9 ifetch  0x00000001 , 0x00000006 
+ 00014715  0x000016ba inject  0x00000003 , 0x00000008 
+ 00014716  0x000016bb increase  0xffffffff , 0x00000013 
+ 00014717  0x000016bc branch  0x00003978 
+ 00014718  0x000016be fetch  0x00000002 , 0x000000fe 
+ 00014719  0x000016bf increase  0x00000001 , 0x0000003f 
+ 00014720  0x000016c0 store  0x00000002 , 0x000000fe 
+ 00014721  0x000016c1 branch  0x00003960 
+ 00014722  0x000016c5 fetch  0x00000004 , 0x0000016f 
+ 00014723  0x000016c6 add  0x0000003f , 0x00000007 , 0x00000011 
+ 00014724  0x000016c7 fetch  0x00000002 , 0x0000017b 
+ 00014725  0x000016c8 nbranch  0x00003988 , 0x00000034 
+ 00014726  0x000016c9 increase  0xfffffffd , 0x00000011 
+ 00014727  0x000016ca branch  0x00003990 
+ 00014728  0x000016cc mul32  0x0000003f , 0x0000000c , 0x0000003f 
+ 00014729  0x000016cd hfetcht  0x00000002 , 0x00008040 
+ 00014730  0x000016ce increase  0x00000001 , 0x00000002 
+ 00014731  0x000016d0 isub  0x00000002 , 0x0000003f 
+ 00014732  0x000016d1 nbranch  0x0000398f , 0x00000002 
+ 00014733  0x000016d2 increase  0xffffffff , 0x00000011 
+ 00014734  0x000016d3 branch  0x0000398b 
+ 00014735  0x000016d5 sub  0x0000003f , 0x00000000 , 0x0000003f 
+ 00014736  0x000016d7 until  0x0000003e , 0x00000023 
+ 00014737  0x000016d8 compare  0x00000000 , 0x00000022 , 0x00000003 
+ 00014738  0x000016d9 nbranch  0x00003990 , 0x00000001 
+ 00014739  0x000016da iforce  0x00000029 
+ 00014740  0x000016db copy  0x00000011 , 0x00000028 
+ 00014741  0x000016dc iforce  0x00000029 
+ 00014742  0x000016dd rtn 
+ 00014743  0x000016e1 set0  0x00000025 , 0x00000000 
+ 00014744  0x000016e2 bpatch  0x00000086 , 0x00004010 
+ 00014745  0x000016e3 until  0x0000003e , 0x00000022 
+ 00014746  0x000016e4 deposit  0x0000001a 
+ 00014747  0x000016e5 iforce  0x00000006 
+ 00014748  0x000016e6 rshift16 , 0x0000003f , 0x0000003f 
+ 00014749  0x000016e7 isub  0x00000022 , 0x00000039 
+ 00014750  0x000016e8 and_into  0x00000003 , 0x00000039 
+ 00014751  0x000016e9 nbranch  0x000039a2 , 0x00000005 
+ 00014752  0x000016ea force  0x00000000 , 0x0000003f 
+ 00014753  0x000016eb branch  0x000039a6 
+ 00014754  0x000016ed arg  0x00000ea6 , 0x00000002 
+ 00014755  0x000016ee force  0x00000000 , 0x0000003f 
+ 00014756  0x000016f0 iadd  0x00000002 , 0x0000003f 
+ 00014757  0x000016f1 loop  0x000039a4 
+ 00014758  0x000016f3 iadd  0x00000006 , 0x0000003f 
+ 00014759  0x000016f4 div  0x0000003f , 0x0000000c 
+ 00014760  0x000016f5 call  0x00007efd 
+ 00014761  0x000016f6 quotient  0x0000003f 
+ 00014762  0x000016f7 store  0x00000002 , 0x0000017b 
+ 00014763  0x000016f8 rtn 
+ 00014764  0x000016fb set0  0x00000025 , 0x00000000 
+ 00014765  0x000016fc bpatch  0x00000087 , 0x00004010 
+ 00014766  0x000016fd deposit  0x0000001a 
+ 00014767  0x000016fe copy  0x00000019 , 0x00000002 
+ 00014768  0x000016ff isub  0x00000002 , 0x0000003e 
+ 00014769  0x00001700 nsetflag  0x00000002 , 0x0000002c , 0x0000003f 
+ 00014770  0x00001701 isub  0x00000002 , 0x00000002 
+ 00014771  0x00001702 setarg  0x00000ea6 
+ 00014772  0x00001703 isolate0  0x0000000f , 0x00000002 
+ 00014773  0x00001704 branch  0x000039b8 , 0x00000001 
+ 00014774  0x00001705 setarg  0xffff0ea6 
+ 00014775  0x00001706 iadd  0x00000002 , 0x00000002 
+ 00014776  0x00001708 storet  0x00000006 , 0x000003c8 
+ 00014777  0x00001709 rtn  0x00000036 
+ 00014778  0x0000170a storet  0x00000006 , 0x00000038 
+ 00014779  0x0000170b rtn 
+ 00014780  0x0000170e disable  0x00000030 
+ 00014781  0x0000170f fetch  0x00000006 , 0x000003c8 
+ 00014782  0x00001710 branch  0x000039c0 , 0x00000036 
+ 00014783  0x00001711 fetch  0x00000006 , 0x00000038 
+ 00014784  0x00001713 iadd  0x00000019 , 0x00000030 
+ 00014785  0x00001714 increase  0x0000000a , 0x00000030 
+ 00014786  0x00001715 setarg  0x00000ea6 
+ 00014787  0x00001716 isub  0x00000030 , 0x0000003f 
+ 00014788  0x00001717 isolate0  0x0000000f , 0x0000003f 
+ 00014789  0x00001718 branch  0x000039ca , 0x00000001 
+ 00014790  0x00001719 setarg  0x0000f15a 
+ 00014791  0x0000171a iadd  0x00000030 , 0x00000030 
+ 00014792  0x0000171c copy  0x00000030 , 0x0000001a 
+ 00014793  0x0000171d rtn 
+ 00014794  0x0000171f force  0x00000000 , 0x0000003e 
+ 00014795  0x00001720 branch  0x000039c8 
+ 00014796  0x00001728 set0  0x00000025 , 0x00000000 
+ 00014797  0x00001729 bpatch  0x00000088 , 0x00004011 
+ 00014798  0x0000172a call  0x00003a7a 
+ 00014799  0x0000172b copy  0x00000021 , 0x0000003f 
+ 00014800  0x0000172c and_into  0x00000180 , 0x0000003f 
+ 00014801  0x0000172d compare  0x00000003 , 0x00000024 , 0x00000007 
+ 00014802  0x0000172e nbranch  0x000039d6 , 0x00000001 
+ 00014803  0x0000172f rshift3  0x0000003f , 0x0000003f 
+ 00014804  0x00001730 iadd  0x00000017 , 0x0000003f 
+ 00014805  0x00001731 branch  0x000039d7 
+ 00014806  0x00001733 copy  0x00000017 , 0x0000003f 
+ 00014807  0x00001735 div  0x0000003f , 0x0000004f 
+ 00014808  0x00001736 pulse  0x00000015 
+ 00014809  0x00001737 call  0x00007efd 
+ 00014810  0x00001738 remainder  0x00000011 
+ 00014811  0x00001739 add  0x00000011 , 0xffffffd8 , 0x00000002 
+ 00014812  0x0000173a branch  0x000039df , 0x00000002 
+ 00014813  0x0000173b lshift  0x00000011 , 0x00000002 
+ 00014814  0x0000173c branch  0x000039e1 
+ 00014815  0x0000173e lshift  0x00000002 , 0x00000002 
+ 00014816  0x0000173f increase  0x00000001 , 0x00000002 
+ 00014817  0x00001741 set0  0x00000025 , 0x00000000 
+ 00014818  0x00001742 bpatch  0x00000089 , 0x00004011 
+ 00014819  0x00001743 fetch  0x00000001 , 0x00000031 
+ 00014820  0x00001744 bbit0  0x00000003 , 0x000039f3 
+ 00014821  0x00001746 fetch  0x00000004 , 0x00004173 
+ 00014822  0x00001747 isub  0x00000021 , 0x0000003e 
+ 00014823  0x00001748 branch  0x000039f3 , 0x00000002 
+ 00014824  0x00001749 call  0x00003a12 
+ 00014825  0x0000174a fetch  0x00000001 , 0x0000417a 
+ 00014826  0x0000174b rtn  0x00000034 
+ 00014827  0x0000174c fetch  0x00000001 , 0x00000031 
+ 00014828  0x0000174d set1  0x00000002 , 0x0000003f 
+ 00014829  0x0000174e store  0x00000001 , 0x00000031 
+ 00014830  0x0000174f fetch  0x00000005 , 0x00004188 
+ 00014831  0x00001750 store  0x00000005 , 0x0000417b 
+ 00014832  0x00001751 ifetch  0x00000005 , 0x00000006 
+ 00014833  0x00001752 store  0x00000005 , 0x00004180 
+ 00014834  0x00001753 call  0x00003a17 
+ 00014835  0x00001755 fetch  0x00000001 , 0x00000031 
+ 00014836  0x00001756 rtnbit0  0x00000002 
+ 00014837  0x00001757 isolate1  0x00000001 , 0x00000021 
+ 00014838  0x00001758 branch  0x00003a0f , 0x00000001 
+ 00014839  0x00001759 rshift3  0x00000002 , 0x00000011 
+ 00014840  0x0000175a and  0x00000002 , 0x00000007 , 0x00000007 
+ 00014841  0x0000175b setarg  0x0000417b 
+ 00014842  0x0000175c iadd  0x00000011 , 0x00000011 
+ 00014843  0x0000175d ifetch  0x00000001 , 0x00000011 
+ 00014844  0x0000175e qisolate0  0x0000003f 
+ 00014845  0x0000175f branch  0x00003a00 , 0x00000001 
+ 00014846  0x00001760 deposit  0x00000002 
+ 00014847  0x00001761 branch  0x00003a0c 
+ 00014848  0x00001763 fetch  0x00000001 , 0x00004185 
+ 00014849  0x00001764 iforce  0x00000012 
+ 00014850  0x00001765 deposit  0x00000021 
+ 00014851  0x00001766 and_into  0x00000180 , 0x0000003f 
+ 00014852  0x00001767 rshift3  0x0000003f , 0x0000003f 
+ 00014853  0x00001768 iadd  0x00000017 , 0x0000003f 
+ 00014854  0x00001769 idiv  0x00000012 
+ 00014855  0x0000176a setarg  0x00004193 
+ 00014856  0x0000176b call  0x00007efd 
+ 00014857  0x0000176c remainder  0x00000011 
+ 00014858  0x0000176d iadd  0x00000011 , 0x00000006 
+ 00014859  0x0000176e ifetch  0x00000001 , 0x00000006 
+ 00014860  0x00001770 store  0x00000001 , 0x00004186 
+ 00014861  0x00001771 iforce  0x00000002 
+ 00014862  0x00001772 rtn 
+ 00014863  0x00001775 fetch  0x00000001 , 0x00004186 
+ 00014864  0x00001776 iforce  0x00000002 
+ 00014865  0x00001777 rtn 
+ 00014866  0x0000177a fetch  0x00000001 , 0x00000031 
+ 00014867  0x0000177b set0  0x00000002 , 0x0000003f 
+ 00014868  0x0000177c set0  0x00000003 , 0x0000003f 
+ 00014869  0x0000177d store  0x00000001 , 0x00000031 
+ 00014870  0x0000177e rtn 
+ 00014871  0x00001785 set0  0x00000025 , 0x00000000 
+ 00014872  0x00001786 bpatch  0x0000008a , 0x00004011 
+ 00014873  0x00001787 arg  0x00004193 , 0x00000005 
+ 00014874  0x00001788 force  0x0000000a , 0x00000039 
+ 00014875  0x00001789 call  0x00007e3b 
+ 00014876  0x0000178a arg  0x00004193 , 0x00000005 
+ 00014877  0x0000178b force  0x00000000 , 0x00000013 
+ 00014878  0x0000178c force  0x00000002 , 0x00000007 
+ 00014879  0x0000178e fetch  0x00000005 , 0x0000417b 
+ 00014880  0x0000178f iforce  0x00000002 
+ 00014881  0x00001790 compare  0x00000002 , 0x00000007 , 0x000000ff 
+ 00014882  0x00001791 branch  0x00003a24 , 0x00000001 
+ 00014883  0x00001792 rshift  0x00000002 , 0x00000002 
+ 00014884  0x00001794 isolate0  0x00000000 , 0x00000002 
+ 00014885  0x00001795 branch  0x00003a28 , 0x00000001 
+ 00014886  0x00001796 deposit  0x00000013 
+ 00014887  0x00001797 istore  0x00000001 , 0x00000005 
+ 00014888  0x00001799 rshift2  0x00000002 , 0x00000002 
+ 00014889  0x0000179a increase  0x00000002 , 0x00000013 
+ 00014890  0x0000179b compare  0x00000028 , 0x00000013 , 0x000000fe 
+ 00014891  0x0000179c nbranch  0x00003a31 , 0x00000001 
+ 00014892  0x0000179d fetch  0x00000005 , 0x00004180 
+ 00014893  0x0000179e iforce  0x00000002 
+ 00014894  0x0000179f compare  0x00000002 , 0x00000007 , 0x000000ff 
+ 00014895  0x000017a0 branch  0x00003a31 , 0x00000001 
+ 00014896  0x000017a1 rshift  0x00000002 , 0x00000002 
+ 00014897  0x000017a3 sub  0x00000013 , 0x0000004e , 0x0000003e 
+ 00014898  0x000017a4 branch  0x00003a24 , 0x00000002 
+ 00014899  0x000017a5 force  0x00000001 , 0x00000013 
+ 00014900  0x000017a6 increase  0xffffffff , 0x00000007 
+ 00014901  0x000017a7 nbranch  0x00003a1f , 0x00000005 
+ 00014902  0x000017a8 arg  0x00004193 , 0x00000011 
+ 00014903  0x000017a9 deposit  0x00000005 
+ 00014904  0x000017aa isub  0x00000011 , 0x0000003f 
+ 00014905  0x000017ab store  0x00000001 , 0x00004185 
+ 00014906  0x000017ac rtn 
+ 00014907  0x000017af set0  0x00000025 , 0x00000000 
+ 00014908  0x000017b0 bpatch  0x0000008b , 0x00004011 
+ 00014909  0x000017b1 call  0x000039cc 
+ 00014910  0x000017b2 fetch  0x00000001 , 0x00000189 
+ 00014911  0x000017b3 bbit0  0x00000005 , 0x00003a41 
+ 00014912  0x000017b4 fetcht  0x00000001 , 0x00000448 
+ 00014913  0x000017b6 branch  0x00003a82 
+ 00014914  0x000017ba set0  0x00000025 , 0x00000000 
+ 00014915  0x000017bb bpatch  0x0000008c , 0x00004011 
+ 00014916  0x000017bc call  0x000039cc 
+ 00014917  0x000017bd fetch  0x00000001 , 0x00000189 
+ 00014918  0x000017be bbit0  0x00000004 , 0x00003a48 
+ 00014919  0x000017bf fetcht  0x00000001 , 0x00000447 
+ 00014920  0x000017c1 branch  0x00003a91 
+ 00014921  0x000017c5 force  0x00000000 , 0x0000002d 
+ 00014922  0x000017c6 fetch  0x00000003 , 0x00004147 
+ 00014923  0x000017c7 iforce  0x0000002c 
+ 00014924  0x000017c8 rtn 
+ 00014925  0x000017cb set0  0x00000025 , 0x00000000 
+ 00014926  0x000017cc bpatch  0x0000008d , 0x00004011 
+ 00014927  0x000017cd fetch  0x00000001 , 0x00004277 
+ 00014928  0x000017ce icopy  0x0000002d 
+ 00014929  0x000017cf fetch  0x00000003 , 0x00004274 
+ 00014930  0x000017d0 icopy  0x0000002c 
+ 00014931  0x000017d1 rtn 
+ 00014932  0x000017d4 set0  0x00000025 , 0x00000000 
+ 00014933  0x000017d5 bpatch  0x0000008e , 0x00004011 
+ 00014934  0x000017d6 fetch  0x00000002 , 0x00004144 
+ 00014935  0x000017d7 icopy  0x0000002e 
+ 00014936  0x000017d8 fetch  0x00000001 , 0x00004143 
+ 00014937  0x000017d9 icopy  0x0000002d 
+ 00014938  0x000017da fetch  0x00000003 , 0x00004140 
+ 00014939  0x000017db icopy  0x0000002c 
+ 00014940  0x000017dc rtn 
+ 00014941  0x000017df set0  0x00000025 , 0x00000000 
+ 00014942  0x000017e0 bpatch  0x0000008f , 0x00004011 
+ 00014943  0x000017e1 fetch  0x00000002 , 0x00000044 
+ 00014944  0x000017e2 icopy  0x0000002e 
+ 00014945  0x000017e3 fetch  0x00000001 , 0x00000043 
+ 00014946  0x000017e4 icopy  0x0000002d 
+ 00014947  0x000017e5 fetch  0x00000003 , 0x00000040 
+ 00014948  0x000017e6 icopy  0x0000002c 
+ 00014949  0x000017e7 rtn 
+ 00014950  0x000017eb bmark1  0x00000020 , 0x00003a69 
+ 00014951  0x000017ec rtnmark0  0x0000001d 
+ 00014952  0x000017ed rtnmark0  0x0000001f 
+ 00014953  0x000017ef and_into  0xffffff00 , 0x0000002c 
+ 00014954  0x000017f0 pulse  0x00000015 
+ 00014955  0x000017f1 nop  0x00000020 
+ 00014956  0x000017f2 rtn 
+ 00014957  0x000017f6 set0  0x00000025 , 0x00000000 
+ 00014958  0x000017f7 bpatch  0x00000090 , 0x00004012 
+ 00014959  0x000017f8 force  0x00000000 , 0x00000015 
+ 00014960  0x000017f9 disable  0x00000021 
+ 00014961  0x000017fa disable  0x00000020 
+ 00014962  0x000017fb pulse  0x0000001e 
+ 00014963  0x000017fc hjam  0x00000000 , 0x00008902 
+ 00014964  0x000017fd hjam  0x00000000 , 0x00008901 
+ 00014965  0x000017fe hjam  0x00000000 , 0x00008900 
+ 00014966  0x000017ff hjam  0x00000000 , 0x00008903 
+ 00014967  0x00001800 hjam  0x00000070 , 0x00008904 
+ 00014968  0x00001801 hjam  0x00000000 , 0x00008906 
+ 00014969  0x00001802 rtn 
+ 00014970  0x00001805 set0  0x00000025 , 0x00000000 
+ 00014971  0x00001806 bpatch  0x00000091 , 0x00004012 
+ 00014972  0x00001807 hjam  0x00000000 , 0x00008902 
+ 00014973  0x00001808 hjam  0x00000000 , 0x00008901 
+ 00014974  0x00001809 hjam  0x00000018 , 0x00008900 
+ 00014975  0x0000180a hjam  0x000000a7 , 0x00008903 
+ 00014976  0x0000180b hjam  0x0000007f , 0x00008904 
+ 00014977  0x0000180c rtn 
+ 00014978  0x00001810 set0  0x00000025 , 0x00000000 
+ 00014979  0x00001811 bpatch  0x00000092 , 0x00004012 
+ 00014980  0x00001813 storet  0x00000001 , 0x00000017 
+ 00014981  0x00001814 add  0x00000002 , 0x00000004 , 0x00000011 
+ 00014982  0x00001815 branch  0x00003ab6 
+ 00014983  0x00001817 set0  0x00000025 , 0x00000000 
+ 00014984  0x00001818 bpatch  0x00000093 , 0x00004012 
+ 00014985  0x00001819 hjam  0x000000cf , 0x00008901 
+ 00014986  0x0000181a nop  0x0000000a 
+ 00014987  0x0000181b hjam  0x000000ff , 0x00008900 
+ 00014988  0x0000181c hjam  0x000000af , 0x00008903 
+ 00014989  0x0000181d hjam  0x000000ff , 0x00008904 
+ 00014990  0x0000181e nop  0x0000000a 
+ 00014991  0x0000181f hjam  0x000000a0 , 0x00008902 
+ 00014992  0x00001820 rtn 
+ 00014993  0x00001824 set0  0x00000025 , 0x00000000 
+ 00014994  0x00001825 bpatch  0x00000094 , 0x00004012 
+ 00014995  0x00001826 storet  0x00000001 , 0x00000017 
+ 00014996  0x00001827 add  0x00000002 , 0x00000002 , 0x00000011 
+ 00014997  0x00001828 call  0x00003ab6 
+ 00014998  0x00001829 setarg  0x00000500 
+ 00014999  0x0000182a call  0x00003bf3 
+ 00015000  0x0000182c hjam  0x00000001 , 0x00008906 
+ 00015001  0x0000182d hjam  0x0000003c , 0x00008900 
+ 00015002  0x0000182e hjam  0x000000e0 , 0x00008901 
+ 00015003  0x0000182f hjam  0x000000b7 , 0x00008903 
+ 00015004  0x00001830 hjam  0x0000007f , 0x00008902 
+ 00015005  0x00001831 rtn 
+ 00015006  0x00001834 hjam  0x00000006 , 0x00008042 
+ 00015007  0x00001835 call  0x00003c29 
+ 00015008  0x00001836 call  0x00003c3a 
+ 00015009  0x00001838 fetch  0x00000002 , 0x00004163 
+ 00015010  0x00001839 bbit0  0x0000000e , 0x00003aa1 
+ 00015011  0x0000183a iforce  0x00000006 
+ 00015012  0x0000183b arg  0x00008900 , 0x00000002 
+ 00015013  0x0000183d ifetch  0x00000001 , 0x00000006 
+ 00015014  0x0000183e beq  0x000000ff , 0x00003aab 
+ 00015015  0x0000183f ior  0x00000002 , 0x00000005 
+ 00015016  0x00001840 ifetch  0x00000001 , 0x00000006 
+ 00015017  0x00001841 istore  0x00000001 , 0x00000005 
+ 00015018  0x00001842 branch  0x00003aa5 
+ 00015019  0x00001844 set0  0x00000025 , 0x00000000 
+ 00015020  0x00001845 bpatch  0x00000095 , 0x00004012 
+ 00015021  0x00001846 call  0x00003d91 
+ 00015022  0x00001847 call  0x00003b0a 
+ 00015023  0x00001849 setarg  0x000007d0 
+ 00015024  0x0000184a iadd  0x00000022 , 0x0000003f 
+ 00015025  0x0000184b store  0x00000004 , 0x00000173 
+ 00015026  0x0000184c set1  0x00000003 , 0x00000015 
+ 00015027  0x0000184d force  0x00000000 , 0x00000015 
+ 00015028  0x0000184e ncall  0x00003ace , 0x0000002b 
+ 00015029  0x0000184f branch  0x00003ae2 
+ 00015030  0x00001853 set0  0x00000025 , 0x00000000 
+ 00015031  0x00001854 bpatch  0x00000096 , 0x00004012 
+ 00015032  0x00001855 setarg  0x00000960 
+ 00015033  0x00001856 iadd  0x00000011 , 0x00000002 
+ 00015034  0x00001857 fetch  0x00000001 , 0x0000415d 
+ 00015035  0x00001858 hjam  0x00000004 , 0x0000895f 
+ 00015036  0x00001859 imul32  0x00000002 , 0x0000003f 
+ 00015037  0x0000185a fetcht  0x00000001 , 0x0000415e 
+ 00015038  0x0000185b idiv  0x00000002 
+ 00015039  0x0000185c call  0x00007efd 
+ 00015040  0x0000185d quotient  0x00000011 
+ 00015041  0x0000185e remainder  0x0000003f 
+ 00015042  0x0000185f lshift16  0x0000003f , 0x0000003f 
+ 00015043  0x00001860 lshift4  0x0000003f , 0x0000003f 
+ 00015044  0x00001861 idiv  0x00000002 
+ 00015045  0x00001862 call  0x00007efd 
+ 00015046  0x00001863 quotient  0x0000003f 
+ 00015047  0x00001864 lshift8  0x0000003f , 0x0000003f 
+ 00015048  0x00001865 lshift  0x0000003f , 0x0000003f 
+ 00015049  0x00001866 ior  0x00000011 , 0x0000003f 
+ 00015050  0x00001867 hstore  0x00000004 , 0x00008960 
+ 00015051  0x00001868 hjam  0x00000044 , 0x0000895f 
+ 00015052  0x00001869 hjam  0x000000c4 , 0x0000895f 
+ 00015053  0x0000186a rtn 
+ 00015054  0x0000186e set0  0x00000025 , 0x00000000 
+ 00015055  0x0000186f bpatch  0x00000097 , 0x00004012 
+ 00015056  0x00001870 hjam  0x00000002 , 0x00008906 
+ 00015057  0x00001871 setarg  0x0003d090 
+ 00015058  0x00001872 call  0x00003bf3 
+ 00015059  0x00001873 hjam  0x0000007f , 0x00008900 
+ 00015060  0x00001874 nop  0x00000082 
+ 00015061  0x00001875 hjam  0x00000030 , 0x00008952 
+ 00015062  0x00001876 hjam  0x000000d0 , 0x00008901 
+ 00015063  0x00001877 hjam  0x00000070 , 0x00008952 
+ 00015064  0x00001878 hjam  0x000000f0 , 0x00008952 
+ 00015065  0x00001879 force  0x00000032 , 0x00000039 
+ 00015066  0x0000187b hfetch  0x00000001 , 0x00008980 
+ 00015067  0x0000187c bbit1  0x00000005 , 0x00003add 
+ 00015068  0x0000187d loop  0x00003ada 
+ 00015069  0x0000187f store  0x00000001 , 0x0000416f 
+ 00015070  0x00001880 hjam  0x00000000 , 0x00008901 
+ 00015071  0x00001881 hjam  0x00000000 , 0x00008900 
+ 00015072  0x00001882 hjam  0x00000000 , 0x00008906 
+ 00015073  0x00001883 rtn 
+ 00015074  0x00001886 set0  0x00000025 , 0x00000000 
+ 00015075  0x00001887 bpatch  0x00000098 , 0x00004013 
+ 00015076  0x00001888 fetch  0x00000001 , 0x0000416f 
+ 00015077  0x00001889 set1  0x00000005 , 0x0000003f 
+ 00015078  0x0000188a hstore  0x00000001 , 0x00008952 
+ 00015079  0x0000188b hfetcht  0x00000001 , 0x00008950 
+ 00015080  0x0000188c and_into  0x00000007 , 0x00000002 
+ 00015081  0x0000188d lshift3  0x0000003f , 0x0000003f 
+ 00015082  0x0000188e ior  0x00000002 , 0x0000003f 
+ 00015083  0x0000188f hstore  0x00000001 , 0x00008950 
+ 00015084  0x00001890 hfetch  0x00000001 , 0x00008951 
+ 00015085  0x00001891 set0  0x00000000 , 0x0000003f 
+ 00015086  0x00001892 hstore  0x00000001 , 0x00008951 
+ 00015087  0x00001893 hfetch  0x00000001 , 0x00008952 
+ 00015088  0x00001894 set0  0x00000005 , 0x0000003f 
+ 00015089  0x00001895 hstore  0x00000001 , 0x00008952 
+ 00015090  0x00001896 rtn 
+ 00015091  0x00001899 set0  0x00000025 , 0x00000000 
+ 00015092  0x0000189a bpatch  0x00000099 , 0x00004013 
+ 00015093  0x0000189b hfetch  0x00000002 , 0x00008981 
+ 00015094  0x0000189c rshift4  0x0000003f , 0x0000003f 
+ 00015095  0x0000189d rshift3  0x0000003f , 0x0000003f 
+ 00015096  0x0000189e sub  0x0000003f , 0x00000000 , 0x0000003f 
+ 00015097  0x0000189f and_into  0x000000ff , 0x0000003f 
+ 00015098  0x000018a0 div  0x0000003f , 0x0000000a 
+ 00015099  0x000018a1 call  0x00007efd 
+ 00015100  0x000018a2 quotient  0x0000003f 
+ 00015101  0x000018a3 lshift4  0x0000003f , 0x0000003f 
+ 00015102  0x000018a4 remainder  0x00000002 
+ 00015103  0x000018a5 ior  0x00000002 , 0x0000003f 
+ 00015104  0x000018a6 store  0x00000001 , 0x00000018 
+ 00015105  0x000018a7 rtn 
+ 00015106  0x000018aa hjam  0x0000000a , 0x00008042 
+ 00015107  0x000018ab hjam  0x00000000 , 0x00008905 
+ 00015108  0x000018ac hfetch  0x00000003 , 0x00008138 
+ 00015109  0x000018ad hstore  0x00000003 , 0x0000804c 
+ 00015110  0x000018ae hjam  0x000000fc , 0x0000804c 
+ 00015111  0x000018af call  0x00003db0 
+ 00015112  0x000018b0 nop  0x000003e8 
+ 00015113  0x000018b1 rtn 
+ 00015114  0x000018b4 hjam  0x00000006 , 0x00008042 
+ 00015115  0x000018b5 hfetch  0x00000001 , 0x0000896b 
+ 00015116  0x000018b6 set0  0x00000004 , 0x0000003f 
+ 00015117  0x000018b7 set0  0x00000005 , 0x0000003f 
+ 00015118  0x000018b8 hstore  0x00000001 , 0x0000896b 
+ 00015119  0x000018b9 hjam  0x00000000 , 0x00008905 
+ 00015120  0x000018ba hjam  0x00000000 , 0x00008904 
+ 00015121  0x000018bb hjam  0x00000070 , 0x00008904 
+ 00015122  0x000018bc hjam  0x000000ff , 0x00008905 
+ 00015123  0x000018bd hfetch  0x00000001 , 0x0000896b 
+ 00015124  0x000018be set1  0x00000004 , 0x0000003f 
+ 00015125  0x000018bf set1  0x00000005 , 0x0000003f 
+ 00015126  0x000018c0 hstore  0x00000001 , 0x0000896b 
+ 00015127  0x000018c1 call  0x00003b38 
+ 00015128  0x000018c2 hfetch  0x00000001 , 0x00008968 
+ 00015129  0x000018c3 set1  0x00000007 , 0x0000003f 
+ 00015130  0x000018c4 hstore  0x00000001 , 0x00008968 
+ 00015131  0x000018c5 set0  0x00000007 , 0x0000003f 
+ 00015132  0x000018c6 hstore  0x00000001 , 0x00008968 
+ 00015133  0x000018c7 set1  0x00000007 , 0x0000003f 
+ 00015134  0x000018c8 hstore  0x00000001 , 0x00008968 
+ 00015135  0x000018c9 hjam  0x00000005 , 0x00008042 
+ 00015136  0x000018ca rtn 
+ 00015137  0x000018cd nop  0x000003e8 
+ 00015138  0x000018ce hjam  0x00000004 , 0x00008042 
+ 00015139  0x000018cf nop  0x0000000a 
+ 00015140  0x000018d0 hjam  0x00000000 , 0x000080b4 
+ 00015141  0x000018d1 hjam  0x00000080 , 0x00008006 
+ 00015142  0x000018d3 hfetch  0x00000001 , 0x0000812d 
+ 00015143  0x000018d4 bbit0  0x00000001 , 0x00003b26 
+ 00015144  0x000018d5 hfetcht  0x00000003 , 0x00008149 
+ 00015145  0x000018d6 hjam  0x00000005 , 0x00008042 
+ 00015146  0x000018d7 nop  0x0000000a 
+ 00015147  0x000018d8 hjam  0x00000080 , 0x00008006 
+ 00015148  0x000018da hfetch  0x00000001 , 0x0000812d 
+ 00015149  0x000018db bbit0  0x00000001 , 0x00003b2c 
+ 00015150  0x000018dc hfetch  0x00000003 , 0x00008149 
+ 00015151  0x000018dd isub  0x00000002 , 0x0000003f 
+ 00015152  0x000018de branch  0x00003b32 , 0x00000002 
+ 00015153  0x000018df sub  0x0000003f , 0x00000000 , 0x0000003f 
+ 00015154  0x000018e1 store  0x00000002 , 0x0000018c 
+ 00015155  0x000018e2 sub  0x0000003f , 0x00000046 , 0x0000003e 
+ 00015156  0x000018e4 nbranch  0x00003b34 , 0x00000002 
+ 00015157  0x000018e5 rtn 
+ 00015158  0x000018e8 setarg  0x00000f0f 
+ 00015159  0x000018e9 branch  0x00003da7 
+ 00015160  0x000018ec setarg  0x0000080f 
+ 00015161  0x000018ed branch  0x00003da7 
+ 00015162  0x000018f2 set0  0x00000025 , 0x00000000 
+ 00015163  0x000018f3 bpatch  0x0000009a , 0x00004013 
+ 00015164  0x000018f4 call  0x00003a87 
+ 00015165  0x000018f5 disable  0x00000020 
+ 00015166  0x000018f6 enable  0x00000021 
+ 00015167  0x000018f7 pulse  0x00000016 
+ 00015168  0x000018f8 rtn 
+ 00015169  0x000018fb set0  0x00000025 , 0x00000000 
+ 00015170  0x000018fc bpatch  0x0000009b , 0x00004013 
+ 00015171  0x000018fd fetch  0x00000001 , 0x0000004c 
+ 00015172  0x000018fe isolate1  0x00000002 , 0x0000003f 
+ 00015173  0x000018ff setflag  0x00000001 , 0x00000000 , 0x0000003f 
+ 00015174  0x00001900 hstore  0x00000001 , 0x00008011 
+ 00015175  0x00001901 arg  0x00000062 , 0x00000006 
+ 00015176  0x00001902 ifetch  0x00000009 , 0x00000006 
+ 00015177  0x00001903 iforce  0x00000032 
+ 00015178  0x00001904 ifetch  0x00000007 , 0x00000006 
+ 00015179  0x00001905 iforce  0x00000033 
+ 00015180  0x00001906 fetch  0x00000001 , 0x00000054 
+ 00015181  0x00001907 add  0x0000003f , 0xffffffff , 0x00000034 
+ 00015182  0x00001908 pulse  0x0000001a 
+ 00015183  0x00001909 rtn 
+ 00015184  0x0000190c set0  0x00000025 , 0x00000000 
+ 00015185  0x0000190d bpatch  0x0000009c , 0x00004013 
+ 00015186  0x0000190e enable  0x0000000d 
+ 00015187  0x0000190f arg  0x00000600 , 0x0000000b 
+ 00015188  0x00001910 correlate  0x00000029 , 0x00000026 
+ 00015189  0x00001912 deposit  0x0000001a 
+ 00015190  0x00001913 store  0x00000006 , 0x0000009c 
+ 00015191  0x00001914 disable  0x0000000d 
+ 00015192  0x00001915 nbranch  0x00003a6d , 0x00000018 
+ 00015193  0x00001916 arg  0x000003bb , 0x00000029 
+ 00015194  0x00001917 increase  0x00000001 , 0x00000028 
+ 00015195  0x00001918 and_into  0x000001fc , 0x00000028 
+ 00015196  0x00001919 rtn 
+ 00015197  0x0000191e enable  0x0000000d 
+ 00015198  0x00001920 correlate  0x0000003e , 0x00000017 
+ 00015199  0x00001921 branch  0x00003b55 , 0x00000018 
+ 00015200  0x00001922 compare  0x00000002 , 0x00000028 , 0x00000002 
+ 00015201  0x00001923 nbranch  0x00003b5e , 0x00000001 
+ 00015202  0x00001924 branch  0x00003b55 
+ 00015203  0x00001927 set0  0x00000025 , 0x00000000 
+ 00015204  0x00001928 bpatch  0x0000009d , 0x00004013 
+ 00015205  0x00001929 arg  0x00000600 , 0x0000000b 
+ 00015206  0x0000192a enable  0x0000000d 
+ 00015207  0x0000192b correlate  0x00000023 , 0x00000026 
+ 00015208  0x0000192c disable  0x0000000d 
+ 00015209  0x0000192d nbranch  0x00003a6d , 0x00000018 
+ 00015210  0x0000192e rtn 
+ 00015211  0x00001931 set0  0x00000025 , 0x00000000 
+ 00015212  0x00001932 bpatch  0x0000009e , 0x00004013 
+ 00015213  0x00001933 enable  0x0000000d 
+ 00015214  0x00001934 correlate  0x0000003e , 0x00000003 
+ 00015215  0x00001935 disable  0x0000000d 
+ 00015216  0x00001936 nbranch  0x00003a6d , 0x00000018 
+ 00015217  0x00001937 arg  0x000003bb , 0x00000029 
+ 00015218  0x00001938 and_into  0x000001fc , 0x00000028 
+ 00015219  0x00001939 rtn 
+ 00015220  0x0000193d set0  0x00000025 , 0x00000000 
+ 00015221  0x0000193e bpatch  0x0000009f , 0x00004013 
+ 00015222  0x0000193f iforce  0x00000011 
+ 00015223  0x00001940 deposit  0x00000021 
+ 00015224  0x00001941 iadd  0x00000002 , 0x0000000b 
+ 00015225  0x00001942 copy  0x0000000b , 0x0000003f 
+ 00015226  0x00001943 store  0x00000004 , 0x0000416a 
+ 00015227  0x00001944 deposit  0x00000011 
+ 00015228  0x00001945 rtn 
+ 00015229  0x00001949 copy  0x0000003f , 0x00000002 
+ 00015230  0x0000194a set0  0x00000025 , 0x00000000 
+ 00015231  0x0000194b bpatch  0x000000a0 , 0x00004014 
+ 00015232  0x0000194c copy  0x00000002 , 0x0000003f 
+ 00015233  0x0000194d call  0x00007e91 
+ 00015234  0x0000194e lshift16  0x00000021 , 0x0000003f 
+ 00015235  0x0000194f set1  0x0000002c , 0x0000003f 
+ 00015236  0x00001950 call  0x00007e7a 
+ 00015237  0x00001951 set0  0x0000002c , 0x0000003f 
+ 00015238  0x00001952 call  0x00003bda 
+ 00015239  0x00001953 call  0x00007e7a 
+ 00015240  0x00001954 rtn  0x00000028 
+ 00015241  0x00001955 call  0x00007e84 
+ 00015242  0x00001956 iforce  0x0000001b 
+ 00015243  0x00001957 until  0x0000003e , 0x00000003 
+ 00015244  0x00001958 rtn 
+ 00015245  0x0000195c set0  0x00000025 , 0x00000000 
+ 00015246  0x0000195d bpatch  0x000000a1 , 0x00004014 
+ 00015247  0x0000195e branch  0x00003b93 , 0x00000030 
+ 00015248  0x0000195f until  0x00000029 , 0x00000026 
+ 00015249  0x00001961 copy  0x00000028 , 0x00000002 
+ 00015250  0x00001962 branch  0x00003b96 
+ 00015251  0x00001964 branch  0x00003b95 , 0x0000002e 
+ 00015252  0x00001965 until  0x00000023 , 0x00000026 
+ 00015253  0x00001967 copy  0x00000022 , 0x00000002 
+ 00015254  0x00001969 branch  0x00003ba3 , 0x00000028 
+ 00015255  0x0000196a compare  0x00000001 , 0x00000002 , 0x00000003 
+ 00015256  0x0000196b nbranch  0x00003b8d , 0x00000001 
+ 00015257  0x0000196d set0  0x00000025 , 0x00000000 
+ 00015258  0x0000196e bpatch  0x000000a2 , 0x00004014 
+ 00015259  0x0000196f fetch  0x00000001 , 0x00000030 
+ 00015260  0x00001970 rtnbit0  0x00000000 
+ 00015261  0x00001971 fetch  0x00000004 , 0x0000416a 
+ 00015262  0x00001972 isub  0x00000002 , 0x0000003f 
+ 00015263  0x00001973 nrtn  0x00000002 
+ 00015264  0x00001974 sub  0x0000003f , 0x000000ff , 0x0000003e 
+ 00015265  0x00001975 branch  0x00003b8d , 0x00000002 
+ 00015266  0x00001976 rtn 
+ 00015267  0x00001978 compare  0x00000003 , 0x00000002 , 0x00000003 
+ 00015268  0x00001979 nbranch  0x00003b8d , 0x00000001 
+ 00015269  0x0000197a branch  0x00003b99 
+ 00015270  0x0000197d set0  0x00000025 , 0x00000000 
+ 00015271  0x0000197e bpatch  0x000000a3 , 0x00004014 
+ 00015272  0x0000197f arg  0x00000600 , 0x0000000b 
+ 00015273  0x00001980 branch  0x00003b8d 
+ 00015274  0x00001983 disable  0x00000028 
+ 00015275  0x00001984 branch  0x00003ba6 
+ 00015276  0x00001987 enable  0x00000028 
+ 00015277  0x00001988 branch  0x00003ba6 
+ 00015278  0x0000198b set0  0x00000025 , 0x00000000 
+ 00015279  0x0000198c bpatch  0x000000a4 , 0x00004014 
+ 00015280  0x0000198d call  0x00003b41 
+ 00015281  0x0000198e disable  0x00000021 
+ 00015282  0x0000198f enable  0x00000020 
+ 00015283  0x00001990 rtn 
+ 00015284  0x00001995 set0  0x00000025 , 0x00000000 
+ 00015285  0x00001996 bpatch  0x000000a5 , 0x00004014 
+ 00015286  0x00001997 arg  0x00000e43 , 0x0000000b 
+ 00015287  0x00001998 until  0x00000023 , 0x00000026 
+ 00015288  0x00001999 pulse  0x00000016 
+ 00015289  0x0000199a rtn 
+ 00015290  0x0000199d set0  0x00000025 , 0x00000000 
+ 00015291  0x0000199e bpatch  0x000000a6 , 0x00004014 
+ 00015292  0x0000199f arg  0x00000d00 , 0x0000000b 
+ 00015293  0x000019a0 until  0x00000023 , 0x00000026 
+ 00015294  0x000019a1 rtn 
+ 00015295  0x000019a5 set0  0x00000025 , 0x00000000 
+ 00015296  0x000019a6 bpatch  0x000000a7 , 0x00004014 
+ 00015297  0x000019a7 arg  0x00000e43 , 0x0000000b 
+ 00015298  0x000019a8 until  0x00000029 , 0x00000026 
+ 00015299  0x000019a9 pulse  0x00000016 
+ 00015300  0x000019aa rtn 
+ 00015301  0x000019ad set0  0x00000025 , 0x00000000 
+ 00015302  0x000019ae bpatch  0x000000a8 , 0x00004015 
+ 00015303  0x000019af preload  0x00000009 
+ 00015304  0x000019b0 enable  0x0000001d 
+ 00015305  0x000019b1 set1  0x00000000 , 0x00000015 
+ 00015306  0x000019b2 inject  0x00000003 , 0x00000048 
+ 00015307  0x000019b3 disable  0x0000001d 
+ 00015308  0x000019b4 rtn 
+ 00015309  0x000019b8 copy  0x00000025 , 0x00000002 
+ 00015310  0x000019b9 or_into  0x00000060 , 0x00000002 
+ 00015311  0x000019ba copy  0x00000002 , 0x0000000e 
+ 00015312  0x000019bb rtn 
+ 00015313  0x000019c1 set0  0x00000025 , 0x00000000 
+ 00015314  0x000019c2 bpatch  0x000000a9 , 0x00004015 
+ 00015315  0x000019c3 fetch  0x00000001 , 0x00004130 
+ 00015316  0x000019c4 increase  0x00000001 , 0x0000003f 
+ 00015317  0x000019c5 bne  0x00000007 , 0x00003bd7 
+ 00015318  0x000019c6 force  0x00000001 , 0x0000003f 
+ 00015319  0x000019c8 store  0x00000001 , 0x00004130 
+ 00015320  0x000019c9 iforce  0x00000004 
+ 00015321  0x000019ca rtn 
+ 00015322  0x000019cd copy  0x00000019 , 0x00000002 
+ 00015323  0x000019ce rtn  0x00000029 
+ 00015324  0x000019cf copy  0x0000001a , 0x00000002 
+ 00015325  0x000019d0 rtn 
+ 00015326  0x000019d3 deposit  0x00000022 
+ 00015327  0x000019d4 rtn  0x00000029 
+ 00015328  0x000019d5 deposit  0x00000028 
+ 00015329  0x000019d6 rtn 
+ 00015330  0x000019da set0  0x00000025 , 0x00000000 
+ 00015331  0x000019db bpatch  0x000000aa , 0x00004015 
+ 00015332  0x000019dc fetcht  0x00000004 , 0x0000004d 
+ 00015333  0x000019dd call  0x00003bde 
+ 00015334  0x000019de isub  0x00000002 , 0x0000000b 
+ 00015335  0x000019df deposit  0x0000000b 
+ 00015336  0x000019e0 fetcht  0x00000002 , 0x00000051 
+ 00015337  0x000019e1 lshift  0x00000002 , 0x00000002 
+ 00015338  0x000019e2 isub  0x00000002 , 0x0000003f 
+ 00015339  0x000019e3 rtn 
+ 00015340  0x000019e6 set0  0x00000025 , 0x00000000 
+ 00015341  0x000019e7 bpatch  0x000000ab , 0x00004015 
+ 00015342  0x000019e8 call  0x00003bde 
+ 00015343  0x000019e9 store  0x00000004 , 0x0000004d 
+ 00015344  0x000019ea rtn 
+ 00015345  0x000019ed branch  0x00003bf1 
+ 00015346  0x000019f0 branch  0x00003bf2 
+ 00015347  0x000019f3 rtn  0x00000034 
+ 00015348  0x000019f5 rshift  0x0000003f , 0x0000003f 
+ 00015349  0x000019f6 increase  0xfffffffd , 0x0000003f 
+ 00015350  0x000019f8 increase  0xffffffff , 0x0000003f 
+ 00015351  0x000019f9 nbranch  0x00003bf6 , 0x00000005 
+ 00015352  0x000019fa force  0x00000000 , 0x0000003f 
+ 00015353  0x000019fb rtn 
+ 00015354  0x00001a01 arg  0x00000010 , 0x00000039 
+ 00015355  0x00001a02 arg  0x00000000 , 0x00000005 
+ 00015356  0x00001a03 call  0x00007e3b 
+ 00015357  0x00001a04 arg  0x000003c0 , 0x00000005 
+ 00015358  0x00001a05 arg  0x0000000a , 0x00000039 
+ 00015359  0x00001a06 call  0x00007e3b 
+ 00015360  0x00001a07 jam  0x00000000 , 0x000007de 
+ 00015361  0x00001a08 jam  0x00000000 , 0x00000b7d 
+ 00015362  0x00001a09 jam  0x00000000 , 0x0000040d 
+ 00015363  0x00001a0a jam  0x00000000 , 0x00000189 
+ 00015364  0x00001a0b jam  0x00000000 , 0x0000044d 
+ 00015365  0x00001a0c set0  0x00000025 , 0x00000000 
+ 00015366  0x00001a0d bpatch  0x000000ac , 0x00004015 
+ 00015367  0x00001a0e jam  0x00000000 , 0x00000177 
+ 00015368  0x00001a0f jam  0x00000000 , 0x00000153 
+ 00015369  0x00001a10 jam  0x00000000 , 0x0000015e 
+ 00015370  0x00001a11 setarg  0x009e8b33 
+ 00015371  0x00001a12 store  0x00000003 , 0x00004147 
+ 00015372  0x00001a13 setarg  0x00000153 
+ 00015373  0x00001a14 store  0x00000002 , 0x00000083 
+ 00015374  0x00001a15 jam  0x0000001e , 0x00000085 
+ 00015375  0x00001a16 jam  0x00000001 , 0x00000086 
+ 00015376  0x00001a17 jam  0x00000007 , 0x00000088 
+ 00015377  0x00001a18 setarg  0x0012e904 
+ 00015378  0x00001a19 store  0x00000003 , 0x00000080 
+ 00015379  0x00001a1a setarg  0x00000a04 
+ 00015380  0x00001a1b store  0x00000003 , 0x000046fd 
+ 00015381  0x00001a1c setarg  0x000012e9 
+ 00015382  0x00001a1d store  0x00000002 , 0x00004700 
+ 00015383  0x00001a1e jam  0x00000060 , 0x0000008f 
+ 00015384  0x00001a1f jam  0x00000005 , 0x00004171 
+ 00015385  0x00001a20 jam  0x00000002 , 0x00000014 
+ 00015386  0x00001a21 call  0x000075cd 
+ 00015387  0x00001a22 set0  0x00000025 , 0x00000000 
+ 00015388  0x00001a23 bpatch  0x000000ad , 0x00004015 
+ 00015389  0x00001a24 rtn  0x0000002b 
+ 00015390  0x00001a25 setarg  0x00000000 
+ 00015391  0x00001a26 store  0x00000002 , 0x00000091 
+ 00015392  0x00001a27 rshift  0x00000022 , 0x0000003f 
+ 00015393  0x00001a28 store  0x00000004 , 0x00004134 
+ 00015394  0x00001a29 rtn 
+ 00015395  0x00001a2e setarg  0x000000aa , 0x0000003f 
+ 00015396  0x00001a2f arg  0x000000d3 , 0x00000005 
+ 00015397  0x00001a30 force  0x0000001e , 0x00000039 
+ 00015398  0x00001a32 istore  0x00000001 , 0x00000005 
+ 00015399  0x00001a33 loop  0x00003c26 
+ 00015400  0x00001a34 rtn 
+ 00015401  0x00001a37 hjam  0x00000002 , 0x00000907 
+ 00015402  0x00001a38 hjam  0x0000001f , 0x00000908 
+ 00015403  0x00001a39 hjam  0x0000001f , 0x00000909 
+ 00015404  0x00001a3a hjam  0x000000e0 , 0x0000090a 
+ 00015405  0x00001a3b hjam  0x0000004e , 0x0000090b 
+ 00015406  0x00001a3c hjam  0x00000045 , 0x00008912 
+ 00015407  0x00001a3d hjam  0x00000000 , 0x00000953 
+ 00015408  0x00001a3f hjam  0x000000fb , 0x0000094c 
+ 00015409  0x00001a40 hjam  0x000000ef , 0x0000094d 
+ 00015410  0x00001a41 hjam  0x0000000c , 0x0000094e 
+ 00015411  0x00001a43 hjam  0x00000088 , 0x0000096f 
+ 00015412  0x00001a44 hjam  0x00000030 , 0x00000973 
+ 00015413  0x00001a47 hjam  0x00000000 , 0x00000953 
+ 00015414  0x00001a48 hjam  0x000000c9 , 0x00000956 
+ 00015415  0x00001a49 hjam  0x0000006c , 0x00000958 
+ 00015416  0x00001a4a hjam  0x00000050 , 0x00000959 
+ 00015417  0x00001a4b rtn 
+ 00015418  0x00001a4f hjam  0x000000a9 , 0x00000930 
+ 00015419  0x00001a50 hjam  0x000000b1 , 0x0000092f 
+ 00015420  0x00001a51 hjam  0x000000b9 , 0x0000092e 
+ 00015421  0x00001a52 hjam  0x000000ad , 0x0000092d 
+ 00015422  0x00001a53 hjam  0x000000b1 , 0x0000092c 
+ 00015423  0x00001a54 hjam  0x000000b5 , 0x0000092b 
+ 00015424  0x00001a55 hjam  0x000000ba , 0x0000092a 
+ 00015425  0x00001a56 hjam  0x000000be , 0x00000929 
+ 00015426  0x00001a57 hjam  0x000000c2 , 0x00000928 
+ 00015427  0x00001a58 hjam  0x000000c6 , 0x00000927 
+ 00015428  0x00001a59 hjam  0x000000ca , 0x00000926 
+ 00015429  0x00001a5a hjam  0x000000ce , 0x00000925 
+ 00015430  0x00001a5b hjam  0x000000d2 , 0x00000924 
+ 00015431  0x00001a5c hjam  0x000000d6 , 0x00000923 
+ 00015432  0x00001a5d hjam  0x000000da , 0x00000922 
+ 00015433  0x00001a5e hjam  0x000000de , 0x00000921 
+ 00015434  0x00001a5f hjam  0x000000e2 , 0x00000920 
+ 00015435  0x00001a60 hjam  0x000000e6 , 0x0000091f 
+ 00015436  0x00001a61 hjam  0x000000ea , 0x0000091e 
+ 00015437  0x00001a62 hjam  0x000000ee , 0x0000091d 
+ 00015438  0x00001a63 hjam  0x000000f2 , 0x0000091c 
+ 00015439  0x00001a64 hjam  0x000000f6 , 0x0000091b 
+ 00015440  0x00001a65 hjam  0x000000fb , 0x0000091a 
+ 00015441  0x00001a67 hjam  0x000000f5 , 0x00000947 
+ 00015442  0x00001a68 hjam  0x000000e5 , 0x00000946 
+ 00015443  0x00001a69 hjam  0x000000d5 , 0x00000945 
+ 00015444  0x00001a6a hjam  0x000000d8 , 0x00000944 
+ 00015445  0x00001a6b hjam  0x000000c9 , 0x00000943 
+ 00015446  0x00001a6c hjam  0x000000c8 , 0x00000942 
+ 00015447  0x00001a6d hjam  0x00000089 , 0x00000941 
+ 00015448  0x00001a6e hjam  0x00000088 , 0x00000940 
+ 00015449  0x00001a6f hjam  0x00000087 , 0x0000093f 
+ 00015450  0x00001a70 hjam  0x00000048 , 0x0000093e 
+ 00015451  0x00001a71 hjam  0x00000009 , 0x0000093d 
+ 00015452  0x00001a72 hjam  0x00000008 , 0x0000093c 
+ 00015453  0x00001a73 hjam  0x000000c9 , 0x0000093b 
+ 00015454  0x00001a74 hjam  0x000000c8 , 0x0000093a 
+ 00015455  0x00001a75 hjam  0x000000c7 , 0x00000939 
+ 00015456  0x00001a76 hjam  0x000000c6 , 0x00000938 
+ 00015457  0x00001a77 hjam  0x000000c5 , 0x00000937 
+ 00015458  0x00001a78 hjam  0x000000c4 , 0x00000936 
+ 00015459  0x00001a79 hjam  0x000000c3 , 0x00000935 
+ 00015460  0x00001a7a hjam  0x000000c2 , 0x00000934 
+ 00015461  0x00001a7b hjam  0x000000c1 , 0x00000933 
+ 00015462  0x00001a7c hjam  0x000000c0 , 0x00000932 
+ 00015463  0x00001a7d hjam  0x00000080 , 0x00000931 
+ 00015464  0x00001a7e rtn 
+ 00015465  0x00001a83 enable  0x00000036 
+ 00015466  0x00001a84 setarg  0x008e89be 
+ 00015467  0x00001a85 lshift8  0x0000003f , 0x0000003f 
+ 00015468  0x00001a86 or_into  0x000000d6 , 0x0000003f 
+ 00015469  0x00001a87 iforce  0x00000009 
+ 00015470  0x00001a88 hjam  0x00000007 , 0x00000914 
+ 00015471  0x00001a89 hjam  0x000000a0 , 0x0000090a 
+ 00015472  0x00001a8a hjam  0x0000008f , 0x0000090d 
+ 00015473  0x00001a8b hjam  0x0000000f , 0x00000911 
+ 00015474  0x00001a8c hjam  0x00000087 , 0x00000912 
+ 00015475  0x00001a8d rtn 
+ 00015476  0x00001a93 setarg  0x0000ee21 
+ 00015477  0x00001a94 hstore  0x00000002 , 0x00008050 
+ 00015478  0x00001a95 hfetch  0x00000001 , 0x0000813e 
+ 00015479  0x00001a96 bbit0  0x00000003 , 0x00006725 
+ 00015480  0x00001a97 enable  0x0000002b 
+ 00015481  0x00001a98 bbit0  0x00000007 , 0x00003c7f 
+ 00015482  0x00001a99 disable  0x0000002b 
+ 00015483  0x00001a9a deposit  0x00000027 
+ 00015484  0x00001a9b nbranch  0x00003c7f , 0x00000034 
+ 00015485  0x00001a9c arg  0xffffffff , 0x00000002 
+ 00015486  0x00001a9d branch  0x00003cec 
+ 00015487  0x00001a9f hfetch  0x00000003 , 0x0000813c 
+ 00015488  0x00001aa0 hstore  0x00000003 , 0x0000804c 
+ 00015489  0x00001aa1 ifetch  0x00000001 , 0x00000006 
+ 00015490  0x00001aa2 or_into  0x000000ef , 0x0000003f 
+ 00015491  0x00001aa3 istore  0x00000001 , 0x00000005 
+ 00015492  0x00001aa4 call  0x00003db2 
+ 00015493  0x00001aa5 hfetch  0x00000001 , 0x0000804f 
+ 00015494  0x00001aa6 set1  0x00000004 , 0x0000003f 
+ 00015495  0x00001aa7 hstore  0x00000001 , 0x0000804f 
+ 00015496  0x00001aa8 call  0x00003db2 
+ 00015497  0x00001aa9 call  0x00003c90 , 0x0000002b 
+ 00015498  0x00001aaa hfetch  0x00000001 , 0x0000804e 
+ 00015499  0x00001aab set0  0x00000003 , 0x0000003f 
+ 00015500  0x00001aac hstore  0x00000001 , 0x0000804e 
+ 00015501  0x00001aad call  0x00003db2 
+ 00015502  0x00001aae rtn  0x0000002b 
+ 00015503  0x00001aaf branch  0x00006725 
+ 00015504  0x00001ab2 fetch  0x00000001 , 0x00004239 
+ 00015505  0x00001ab3 hstore  0x00000001 , 0x00008086 
+ 00015506  0x00001ab4 fetch  0x00000003 , 0x0000422e 
+ 00015507  0x00001ab5 hstore  0x00000003 , 0x00008080 
+ 00015508  0x00001ab6 fetch  0x00000004 , 0x00004222 
+ 00015509  0x00001ab7 hstore  0x00000004 , 0x00008074 
+ 00015510  0x00001ab8 fetch  0x00000004 , 0x0000421e 
+ 00015511  0x00001ab9 hstore  0x00000004 , 0x00008070 
+ 00015512  0x00001aba fetch  0x00000008 , 0x00004226 
+ 00015513  0x00001abb hstore  0x00000008 , 0x00008078 
+ 00015514  0x00001abc fetch  0x00000008 , 0x00004231 
+ 00015515  0x00001abd iforce  0x00000000 
+ 00015516  0x00001abe hfetch  0x00000008 , 0x00008140 
+ 00015517  0x00001abf store  0x00000008 , 0x000000a3 
+ 00015518  0x00001ac0 call  0x00006781 
+ 00015519  0x00001ac1 rtn 
+ 00015520  0x00001ac4 deposit  0x00000000 
+ 00015521  0x00001ac5 store  0x00000008 , 0x00004231 
+ 00015522  0x00001ac6 hfetch  0x00000008 , 0x00008070 
+ 00015523  0x00001ac7 store  0x00000008 , 0x0000421e 
+ 00015524  0x00001ac8 ifetch  0x00000008 , 0x00000006 
+ 00015525  0x00001ac9 istore  0x00000008 , 0x00000005 
+ 00015526  0x00001aca hfetch  0x00000003 , 0x00008080 
+ 00015527  0x00001acb store  0x00000003 , 0x0000422e 
+ 00015528  0x00001acc hfetch  0x00000001 , 0x00008086 
+ 00015529  0x00001acd store  0x00000001 , 0x00004239 
+ 00015530  0x00001ace branch  0x00003db8 
+ 00015531  0x00001ad1 hfetch  0x00000001 , 0x000080b4 
+ 00015532  0x00001ad2 nbranch  0x00003cb1 , 0x00000034 
+ 00015533  0x00001ad3 fetch  0x00000003 , 0x00004210 
+ 00015534  0x00001ad4 nrtn  0x00000034 
+ 00015535  0x00001ad5 hjam  0x000000c0 , 0x000080b4 
+ 00015536  0x00001ad6 hjam  0x00000080 , 0x00008006 
+ 00015537  0x00001ad8 hfetch  0x00000001 , 0x0000812d 
+ 00015538  0x00001ad9 rtnbit0  0x00000001 
+ 00015539  0x00001ada hfetch  0x00000003 , 0x00008149 
+ 00015540  0x00001adb store  0x00000003 , 0x00004210 
+ 00015541  0x00001adc rtn 
+ 00015542  0x00001ae1 set0  0x00000025 , 0x00000000 
+ 00015543  0x00001ae2 bpatch  0x000000ae , 0x00004015 
+ 00015544  0x00001ae3 deposit  0x0000001a 
+ 00015545  0x00001ae4 call  0x00007e78 
+ 00015546  0x00001ae5 fetcht  0x00000004 , 0x00004200 
+ 00015547  0x00001ae6 sub  0x00000002 , 0x000000ff , 0x0000003e 
+ 00015548  0x00001ae7 rtn  0x00000002 
+ 00015549  0x00001ae8 lshift8  0x0000003f , 0x0000003f 
+ 00015550  0x00001ae9 lshift4  0x0000003f , 0x0000003f 
+ 00015551  0x00001aea idiv  0x00000002 
+ 00015552  0x00001aeb call  0x00007efd 
+ 00015553  0x00001aec quotient  0x0000003f 
+ 00015554  0x00001aed arg  0x000000c8 , 0x00000002 
+ 00015555  0x00001aee call  0x00007f2e 
+ 00015556  0x00001aef store  0x00000001 , 0x0000009b 
+ 00015557  0x00001af0 nbranch  0x00003cc7 , 0x00000028 
+ 00015558  0x00001af1 sub  0x0000003f , 0x00000000 , 0x0000003f 
+ 00015559  0x00001af3 fetcht  0x00000003 , 0x00004210 
+ 00015560  0x00001af4 iadd  0x00000002 , 0x0000003f 
+ 00015561  0x00001af5 store  0x00000003 , 0x00004210 
+ 00015562  0x00001af7 setarg  0x00000000 
+ 00015563  0x00001af8 store  0x00000004 , 0x00004200 
+ 00015564  0x00001af9 rtn 
+ 00015565  0x00001afd set0  0x00000025 , 0x00000000 
+ 00015566  0x00001afe bpatch  0x000000af , 0x00004015 
+ 00015567  0x00001aff call  0x00003db8 
+ 00015568  0x00001b00 hfetch  0x00000004 , 0x00008138 
+ 00015569  0x00001b01 set0  0x0000000f , 0x0000003f 
+ 00015570  0x00001b02 hstore  0x00000004 , 0x0000804c 
+ 00015571  0x00001b03 call  0x00003db0 
+ 00015572  0x00001b05 arg  0xffffffff , 0x00000002 
+ 00015573  0x00001b06 fetch  0x00000001 , 0x000041f8 
+ 00015574  0x00001b07 store  0x00000001 , 0x0000421d 
+ 00015575  0x00001b08 fetch  0x00000001 , 0x0000421b 
+ 00015576  0x00001b09 set1  0x00000007 , 0x0000003f 
+ 00015577  0x00001b0a store  0x00000001 , 0x0000421b 
+ 00015578  0x00001b0e set0  0x00000025 , 0x00000000 
+ 00015579  0x00001b0f bpatch  0x000000b0 , 0x00004016 
+ 00015580  0x00001b10 fetch  0x00000004 , 0x00004200 
+ 00015581  0x00001b11 iadd  0x00000002 , 0x0000003f 
+ 00015582  0x00001b12 store  0x00000004 , 0x00004200 
+ 00015583  0x00001b13 call  0x00003ca0 
+ 00015584  0x00001b14 fetch  0x00000005 , 0x00004219 
+ 00015585  0x00001b15 hstore  0x00000004 , 0x0000804c 
+ 00015586  0x00001b16 rshift32  0x0000003f , 0x00000011 
+ 00015587  0x00001b17 until  0x0000003e , 0x00000033 
+ 00015588  0x00001b18 deposit  0x00000019 
+ 00015589  0x00001b19 store  0x00000006 , 0x00004204 
+ 00015590  0x00001b1a hjam  0x00000002 , 0x00008005 
+ 00015591  0x00001b1b until  0x0000003e , 0x00000033 
+ 00015592  0x00001b1c until  0x0000003e , 0x00000033 
+ 00015593  0x00001b1d deposit  0x00000011 
+ 00015594  0x00001b1e hstore  0x00000001 , 0x0000804f 
+ 00015595  0x00001b1f hjam  0x00000002 , 0x00008005 
+ 00015596  0x00001b21 until  0x0000003e , 0x00000033 
+ 00015597  0x00001b22 until  0x0000003e , 0x00000033 
+ 00015598  0x00001b23 hstoret  0x00000004 , 0x0000804c 
+ 00015599  0x00001b24 hjam  0x00000010 , 0x00008005 
+ 00015600  0x00001b25 until  0x0000003e , 0x0000003f 
+ 00015601  0x00001b2b set0  0x00000025 , 0x00000000 
+ 00015602  0x00001b2c bpatch  0x000000b1 , 0x00004016 
+ 00015603  0x00001b2d setarg  0x00000000 
+ 00015604  0x00001b2e copy  0x00000027 , 0x0000003e 
+ 00015605  0x00001b2f branch  0x00003cfd , 0x00000005 
+ 00015606  0x00001b30 hfetch  0x00000001 , 0x0000813c 
+ 00015607  0x00001b31 hfetcht  0x00000001 , 0x0000813d 
+ 00015608  0x00001b32 isub  0x00000002 , 0x0000003e 
+ 00015609  0x00001b33 branch  0x00003cfb , 0x00000002 
+ 00015610  0x00001b34 deposit  0x00000002 
+ 00015611  0x00001b36 isub  0x00000027 , 0x0000003f 
+ 00015612  0x00001b37 increase  0x00000001 , 0x0000003f 
+ 00015613  0x00001b39 increase  0x00000008 , 0x0000003f 
+ 00015614  0x00001b3a until  0x0000003e , 0x00000033 
+ 00015615  0x00001b3b iadd  0x00000031 , 0x0000003f 
+ 00015616  0x00001b3c fetcht  0x00000004 , 0x000041fc 
+ 00015617  0x00001b3d iadd  0x00000002 , 0x0000003f 
+ 00015618  0x00001b3e fetcht  0x00000003 , 0x00004210 
+ 00015619  0x00001b3f imul32  0x00000002 , 0x0000003f 
+ 00015620  0x00001b40 rshift8  0x0000003f , 0x0000003f 
+ 00015621  0x00001b41 rshift4  0x0000003f , 0x0000003f 
+ 00015622  0x00001b42 increase  0x0000006e , 0x0000003f 
+ 00015623  0x00001b43 arg  0x00000ea6 , 0x00000002 
+ 00015624  0x00001b44 idiv  0x00000002 
+ 00015625  0x00001b45 call  0x00007efd 
+ 00015626  0x00001b46 quotient  0x0000003f 
+ 00015627  0x00001b47 lshift16  0x0000003f , 0x0000003f 
+ 00015628  0x00001b48 remainder  0x00000002 
+ 00015629  0x00001b49 ior  0x00000002 , 0x0000003f 
+ 00015630  0x00001b4a fetcht  0x00000006 , 0x00004204 
+ 00015631  0x00001b4b call  0x00007e6d 
+ 00015632  0x00001b4c copy  0x00000002 , 0x00000019 
+ 00015633  0x00001b4d fetch  0x00000006 , 0x00004048 
+ 00015634  0x00001b4e call  0x000039c0 
+ 00015635  0x00001b4f deposit  0x0000001a 
+ 00015636  0x00001b50 store  0x00000006 , 0x00000161 
+ 00015637  0x00001b51 deposit  0x00000027 
+ 00015638  0x00001b52 istore  0x00000001 , 0x00000005 
+ 00015639  0x00001b53 hfetch  0x00000001 , 0x0000811d 
+ 00015640  0x00001b54 or_into  0x000000f0 , 0x0000003f 
+ 00015641  0x00001b55 istore  0x00000001 , 0x00000005 
+ 00015642  0x00001b56 call  0x00007f52 
+ 00015643  0x00001b57 rtn 
+ 00015644  0x00001b5a set0  0x00000025 , 0x00000000 
+ 00015645  0x00001b5b bpatch  0x000000b2 , 0x00004016 
+ 00015646  0x00001b5c call  0x00003cab 
+ 00015647  0x00001b5d fetch  0x00000003 , 0x00004210 
+ 00015648  0x00001b5e rtn  0x00000034 
+ 00015649  0x00001b5f fetch  0x00000001 , 0x00004131 
+ 00015650  0x00001b60 rtn  0x00000034 
+ 00015651  0x00001b61 call  0x00003dca 
+ 00015652  0x00001b62 nrtn  0x00000034 
+ 00015653  0x00001b64 fetch  0x00000001 , 0x00004040 
+ 00015654  0x00001b65 compare  0x00000003 , 0x0000003f , 0x00000007 
+ 00015655  0x00001b66 nbranch  0x00003d4d , 0x00000001 
+ 00015656  0x00001b67 fetch  0x00000002 , 0x00004042 
+ 00015657  0x00001b68 rtn  0x00000034 
+ 00015658  0x00001b69 rtn  0x0000002b 
+ 00015659  0x00001b6a set0  0x00000025 , 0x00000000 
+ 00015660  0x00001b6b bpatch  0x000000b3 , 0x00004016 
+ 00015661  0x00001b6d fetcht  0x00000001 , 0x000000a2 
+ 00015662  0x00001b6e fetch  0x00000002 , 0x00004042 
+ 00015663  0x00001b6f imul32  0x00000002 , 0x0000003f 
+ 00015664  0x00001b70 rshift4  0x00000002 , 0x00000002 
+ 00015665  0x00001b71 rshift2  0x00000002 , 0x00000002 
+ 00015666  0x00001b72 isub  0x00000002 , 0x0000003f 
+ 00015667  0x00001b73 fetcht  0x00000004 , 0x00004044 
+ 00015668  0x00001b74 iadd  0x00000002 , 0x0000003f 
+ 00015669  0x00001b75 fetcht  0x00000001 , 0x000041f7 
+ 00015670  0x00001b76 isub  0x00000002 , 0x0000003f 
+ 00015671  0x00001b77 lshift16  0x0000003f , 0x00000030 
+ 00015672  0x00001b78 set0  0x00000025 , 0x00000000 
+ 00015673  0x00001b79 bpatch  0x000000b4 , 0x00004016 
+ 00015674  0x00001b7a fetch  0x00000002 , 0x0000404e 
+ 00015675  0x00001b7b rshift  0x0000003f , 0x0000003f 
+ 00015676  0x00001b7c call  0x00007e91 
+ 00015677  0x00001b7d deposit  0x00000030 
+ 00015678  0x00001b7e call  0x00007e7a 
+ 00015679  0x00001b7f copy  0x0000001a , 0x00000002 
+ 00015680  0x00001b80 call  0x00007e78 
+ 00015681  0x00001b81 rtn  0x00000028 
+ 00015682  0x00001b83 call  0x00007e8a 
+ 00015683  0x00001b85 set0  0x00000025 , 0x00000000 
+ 00015684  0x00001b86 bpatch  0x000000b5 , 0x00004016 
+ 00015685  0x00001b87 fetch  0x00000001 , 0x00004219 
+ 00015686  0x00001b88 isub  0x00000002 , 0x0000003e 
+ 00015687  0x00001b89 branch  0x00003cca , 0x00000002 
+ 00015688  0x00001b8a storet  0x00000004 , 0x000041fc 
+ 00015689  0x00001b8b call  0x00003ea9 
+ 00015690  0x00001b8c call  0x0000530c 
+ 00015691  0x00001b8d fetcht  0x00000004 , 0x000041fc 
+ 00015692  0x00001b8e branch  0x00003cda 
+ 00015693  0x00001b91 set0  0x00000025 , 0x00000000 
+ 00015694  0x00001b92 bpatch  0x000000b6 , 0x00004016 
+ 00015695  0x00001b93 fetch  0x00000001 , 0x00004040 
+ 00015696  0x00001b94 rtnbit1  0x00000000 
+ 00015697  0x00001b95 rtnbit1  0x00000003 
+ 00015698  0x00001b96 fetch  0x00000001 , 0x000047dc 
+ 00015699  0x00001b97 branch  0x00003d56 , 0x00000034 
+ 00015700  0x00001b98 fetch  0x00000001 , 0x00004793 
+ 00015701  0x00001b99 rtn  0x00000034 
+ 00015702  0x00001b9b fetch  0x00000001 , 0x000043d8 
+ 00015703  0x00001b9c nbranch  0x00003d5a , 0x00000034 
+ 00015704  0x00001b9d fetch  0x00000001 , 0x00004133 
+ 00015705  0x00001b9e rtn  0x00000034 
+ 00015706  0x00001ba0 fetch  0x00000002 , 0x000041f5 
+ 00015707  0x00001ba1 rtn  0x00000034 
+ 00015708  0x00001ba3 fetcht  0x00000001 , 0x000041f7 
+ 00015709  0x00001ba4 isub  0x00000002 , 0x0000003f 
+ 00015710  0x00001ba5 arg  0x00001d4c , 0x00000002 
+ 00015711  0x00001ba6 imul32  0x00000002 , 0x0000003f 
+ 00015712  0x00001ba7 branch  0x00003d42 
+ 00015713  0x00001baa set0  0x00000025 , 0x00000000 
+ 00015714  0x00001bab bpatch  0x000000b7 , 0x00004016 
+ 00015715  0x00001bac disable  0x0000002b 
+ 00015716  0x00001bad fetch  0x00000001 , 0x00000030 
+ 00015717  0x00001bae rtnbit0  0x00000001 
+ 00015718  0x00001baf nbranch  0x00003d7b , 0x0000002d 
+ 00015719  0x00001bb0 call  0x00003d76 
+ 00015720  0x00001bb1 fetch  0x00000002 , 0x00004161 
+ 00015721  0x00001bb2 store  0x00000002 , 0x0000003e 
+ 00015722  0x00001bb3 fetch  0x00000001 , 0x00000047 
+ 00015723  0x00001bb4 bbit1  0x00000003 , 0x00003d8a 
+ 00015724  0x00001bb5 bmark0  0x0000000d , 0x00003d8a 
+ 00015725  0x00001bb6 call  0x0000527e 
+ 00015726  0x00001bb7 nbranch  0x00003d8a , 0x00000034 
+ 00015727  0x00001bb9 jam  0x00000000 , 0x000000a2 
+ 00015728  0x00001bba bmark0  0x0000000d , 0x00003d8a 
+ 00015729  0x00001bbb fetch  0x00000001 , 0x00004215 
+ 00015730  0x00001bbc branch  0x00003d8e , 0x00000034 
+ 00015731  0x00001bbd increase  0xffffffff , 0x0000003f 
+ 00015732  0x00001bbe store  0x00000001 , 0x00004215 
+ 00015733  0x00001bbf rtn 
+ 00015734  0x00001bc2 jam  0x00000000 , 0x000041fa 
+ 00015735  0x00001bc3 fetch  0x00000003 , 0x0000420a 
+ 00015736  0x00001bc4 increase  0x00000001 , 0x0000003f 
+ 00015737  0x00001bc5 store  0x00000003 , 0x0000420a 
+ 00015738  0x00001bc6 rtn 
+ 00015739  0x00001bc9 set0  0x00000025 , 0x00000000 
+ 00015740  0x00001bca bpatch  0x000000b8 , 0x00004017 
+ 00015741  0x00001bcb fetcht  0x00000002 , 0x00004161 
+ 00015742  0x00001bcc rshift  0x00000002 , 0x00000002 
+ 00015743  0x00001bcd fetch  0x00000002 , 0x0000003e 
+ 00015744  0x00001bce iadd  0x00000002 , 0x0000003f 
+ 00015745  0x00001bcf store  0x00000002 , 0x0000003e 
+ 00015746  0x00001bd1 jam  0x00000000 , 0x000000a2 
+ 00015747  0x00001bd2 fetch  0x00000003 , 0x0000420d 
+ 00015748  0x00001bd3 increase  0x00000001 , 0x0000003f 
+ 00015749  0x00001bd4 store  0x00000003 , 0x0000420d 
+ 00015750  0x00001bd5 fetch  0x00000001 , 0x000041fa 
+ 00015751  0x00001bd6 increase  0x00000001 , 0x0000003f 
+ 00015752  0x00001bd7 store  0x00000001 , 0x000041fa 
+ 00015753  0x00001bd8 rtn 
+ 00015754  0x00001bdb jam  0x00000000 , 0x000000a2 
+ 00015755  0x00001bdc fetch  0x00000001 , 0x00004214 
+ 00015756  0x00001bdd store  0x00000001 , 0x00004215 
+ 00015757  0x00001bde rtn 
+ 00015758  0x00001be1 fetcht  0x00000001 , 0x00004213 
+ 00015759  0x00001be2 storet  0x00000001 , 0x000000a2 
+ 00015760  0x00001be3 rtn 
+ 00015761  0x00001be6 set0  0x00000025 , 0x00000000 
+ 00015762  0x00001be7 bpatch  0x000000b9 , 0x00004017 
+ 00015763  0x00001be8 fetch  0x00000001 , 0x00004219 
+ 00015764  0x00001be9 nrtn  0x00000034 
+ 00015765  0x00001bea hjam  0x00000006 , 0x00008042 
+ 00015766  0x00001beb setarg  0x00000f0c 
+ 00015767  0x00001bec call  0x00003da7 
+ 00015768  0x00001bed setarg  0x00030d40 
+ 00015769  0x00001bee call  0x00003bf3 
+ 00015770  0x00001bef until  0x0000003e , 0x00000033 
+ 00015771  0x00001bf0 copy  0x00000031 , 0x00000030 
+ 00015772  0x00001bf1 call  0x00003b36 
+ 00015773  0x00001bf2 hjam  0x00000004 , 0x00008042 
+ 00015774  0x00001bf3 nop  0x0000000a 
+ 00015775  0x00001bf4 until  0x0000003e , 0x00000033 
+ 00015776  0x00001bf5 deposit  0x00000031 
+ 00015777  0x00001bf6 isub  0x00000030 , 0x0000003f 
+ 00015778  0x00001bf7 increase  0x00000030 , 0x0000003f 
+ 00015779  0x00001bf8 arg  0x000000ff , 0x00000002 
+ 00015780  0x00001bf9 call  0x00007f2e 
+ 00015781  0x00001bfa store  0x00000001 , 0x00004219 
+ 00015782  0x00001bfb rtn 
+ 00015783  0x00001c01 arg  0x00000fff , 0x00000005 
+ 00015784  0x00001c02 iand  0x00000005 , 0x00000005 
+ 00015785  0x00001c03 fetch  0x00000001 , 0x00004216 
+ 00015786  0x00001c04 and_into  0x000000f0 , 0x0000003f 
+ 00015787  0x00001c05 lshift8  0x0000003f , 0x0000003f 
+ 00015788  0x00001c06 ior  0x00000005 , 0x0000003f 
+ 00015789  0x00001c07 hstore  0x00000002 , 0x0000804c 
+ 00015790  0x00001c08 ifetch  0x00000002 , 0x00000006 
+ 00015791  0x00001c09 istore  0x00000002 , 0x00000005 
+ 00015792  0x00001c0c setarg  0x00000001 
+ 00015793  0x00001c0d branch  0x00003db3 
+ 00015794  0x00001c10 setarg  0x00000002 
+ 00015795  0x00001c12 until  0x0000003e , 0x00000033 
+ 00015796  0x00001c13 hstore  0x00000001 , 0x00008005 
+ 00015797  0x00001c14 until  0x0000003e , 0x00000033 
+ 00015798  0x00001c15 until  0x0000003e , 0x00000033 
+ 00015799  0x00001c16 rtn 
+ 00015800  0x00001c1a set0  0x00000025 , 0x00000000 
+ 00015801  0x00001c1b bpatch  0x000000ba , 0x00004017 
+ 00015802  0x00001c1c fetch  0x00000004 , 0x000000a3 
+ 00015803  0x00001c1d hstore  0x00000004 , 0x0000804c 
+ 00015804  0x00001c1e setarg  0x00000004 
+ 00015805  0x00001c1f call  0x00003db3 
+ 00015806  0x00001c20 fetch  0x00000004 , 0x000000a7 
+ 00015807  0x00001c21 hstore  0x00000004 , 0x0000804c 
+ 00015808  0x00001c22 setarg  0x00000008 
+ 00015809  0x00001c23 branch  0x00003db3 
+ 00015810  0x00001c26 fetch  0x00000002 , 0x000041f3 
+ 00015811  0x00001c27 qset1  0x0000003f 
+ 00015812  0x00001c28 store  0x00000002 , 0x000041f3 
+ 00015813  0x00001c29 rtn 
+ 00015814  0x00001c2c fetch  0x00000002 , 0x000041f3 
+ 00015815  0x00001c2d qset0  0x0000003f 
+ 00015816  0x00001c2e store  0x00000002 , 0x000041f3 
+ 00015817  0x00001c2f rtn 
+ 00015818  0x00001c34 set0  0x00000025 , 0x00000000 
+ 00015819  0x00001c35 bpatch  0x000000bb , 0x00004017 
+ 00015820  0x00001c36 call  0x00003ea7 
+ 00015821  0x00001c37 fetch  0x00000002 , 0x000041f3 
+ 00015822  0x00001c38 copy  0x0000003f , 0x00000011 
+ 00015823  0x00001c39 fetch  0x00000001 , 0x0000004c 
+ 00015824  0x00001c3a isolate1  0x00000006 , 0x0000003f 
+ 00015825  0x00001c3b setflag  0x00000001 , 0x0000000b , 0x00000011 
+ 00015826  0x00001c3c fetch  0x00000001 , 0x00000078 
+ 00015827  0x00001c3d fetcht  0x00000001 , 0x0000007c 
+ 00015828  0x00001c3e iadd  0x00000002 , 0x0000003f 
+ 00015829  0x00001c3f fetcht  0x00000001 , 0x00000048 
+ 00015830  0x00001c40 iadd  0x00000002 , 0x0000003f 
+ 00015831  0x00001c41 nsetflag  0x00000034 , 0x0000000a , 0x00000011 
+ 00015832  0x00001c42 set0  0x00000025 , 0x00000000 
+ 00015833  0x00001c43 bpatch  0x000000bc , 0x00004017 
+ 00015834  0x00001c44 fetch  0x00000002 , 0x000002c4 
+ 00015835  0x00001c45 fetcht  0x00000002 , 0x000002c6 
+ 00015836  0x00001c46 iadd  0x00000002 , 0x0000003f 
+ 00015837  0x00001c47 nsetflag  0x00000034 , 0x0000000d , 0x00000011 
+ 00015838  0x00001c48 fetch  0x00000005 , 0x000047df 
+ 00015839  0x00001c49 nsetflag  0x00000034 , 0x0000000f , 0x00000011 
+ 00015840  0x00001c4a fetch  0x00000005 , 0x000047e4 
+ 00015841  0x00001c4b nsetflag  0x00000034 , 0x0000000e , 0x00000011 
+ 00015842  0x00001c4c fetch  0x00000001 , 0x00004272 
+ 00015843  0x00001c4d nsetflag  0x00000034 , 0x00000008 , 0x00000011 
+ 00015844  0x00001c4e fetch  0x00000001 , 0x00004132 
+ 00015845  0x00001c4f compare  0x0000000a , 0x0000003f , 0x000000ff 
+ 00015846  0x00001c50 call  0x00003df5 , 0x00000001 
+ 00015847  0x00001c51 set0  0x00000025 , 0x00000000 
+ 00015848  0x00001c52 bpatch  0x000000bd , 0x00004017 
+ 00015849  0x00001c53 fetch  0x00000001 , 0x00004132 
+ 00015850  0x00001c54 bne  0x00000001 , 0x00003dfa 
+ 00015851  0x00001c55 call  0x00003df5 
+ 00015852  0x00001c56 fetch  0x00000001 , 0x0000425e 
+ 00015853  0x00001c57 setflag  0x00000034 , 0x00000003 , 0x00000011 
+ 00015854  0x00001c58 fetch  0x00000004 , 0x000042a5 
+ 00015855  0x00001c59 arg  0x00001710 , 0x00000002 
+ 00015856  0x00001c5a iadd  0x00000002 , 0x00000002 
+ 00015857  0x00001c5b copy  0x00000022 , 0x0000003f 
+ 00015858  0x00001c5c isub  0x00000002 , 0x0000003e 
+ 00015859  0x00001c5d nsetflag  0x00000002 , 0x00000004 , 0x00000011 
+ 00015860  0x00001c5e branch  0x00003dfc 
+ 00015861  0x00001c61 hfetch  0x00000002 , 0x00008112 
+ 00015862  0x00001c62 nsetflag  0x00000034 , 0x00000006 , 0x00000011 
+ 00015863  0x00001c63 hfetch  0x00000002 , 0x0000810e 
+ 00015864  0x00001c64 nsetflag  0x00000034 , 0x00000005 , 0x00000011 
+ 00015865  0x00001c65 rtn 
+ 00015866  0x00001c68 setarg  0xfffffff8 
+ 00015867  0x00001c69 iand  0x00000011 , 0x00000011 
+ 00015868  0x00001c6b copy  0x00000011 , 0x0000003f 
+ 00015869  0x00001c6c store  0x00000002 , 0x000041f3 
+ 00015870  0x00001c6d rtn  0x00000034 
+ 00015871  0x00001c6e rtn  0x0000002d 
+ 00015872  0x00001c6f enable  0x0000002b 
+ 00015873  0x00001c70 rtn 
+ 00015874  0x00001c73 hfetch  0x00000004 , 0x00008138 
+ 00015875  0x00001c74 set0  0x0000001b , 0x0000003f 
+ 00015876  0x00001c75 hstore  0x00000004 , 0x0000804c 
+ 00015877  0x00001c76 call  0x00003db0 
+ 00015878  0x00001c77 branch  0x00003bf1 
+ 00015879  0x00001c7a hfetch  0x00000004 , 0x0000813c 
+ 00015880  0x00001c7b set1  0x00000014 , 0x0000003f 
+ 00015881  0x00001c7c hstore  0x00000004 , 0x0000804c 
+ 00015882  0x00001c7d branch  0x00003db2 
+ 00015883  0x00001c80 hfetch  0x00000004 , 0x0000813c 
+ 00015884  0x00001c81 set0  0x00000014 , 0x0000003f 
+ 00015885  0x00001c82 hstore  0x00000004 , 0x0000804c 
+ 00015886  0x00001c83 branch  0x00003db2 
+ 00015887  0x00001c86 set0  0x00000025 , 0x00000000 
+ 00015888  0x00001c87 bpatch  0x000000be , 0x00004017 
+ 00015889  0x00001c88 fetch  0x00000001 , 0x00004132 
+ 00015890  0x00001c89 rtnne  0x00000001 
+ 00015891  0x00001c8a call  0x00006a8b 
+ 00015892  0x00001c8b rtn  0x00000001 
+ 00015893  0x00001c8c fetch  0x00000004 , 0x00004807 
+ 00015894  0x00001c8d nbranch  0x00003e1a , 0x00000034 
+ 00015895  0x00001c8e copy  0x00000022 , 0x0000003f 
+ 00015896  0x00001c8f store  0x00000004 , 0x00004807 
+ 00015897  0x00001c90 branch  0x00006a6b 
+ 00015898  0x00001c92 set0  0x00000025 , 0x00000000 
+ 00015899  0x00001c93 bpatch  0x000000bf , 0x00004017 
+ 00015900  0x00001c94 copy  0x00000022 , 0x0000003f 
+ 00015901  0x00001c95 fetcht  0x00000004 , 0x00004807 
+ 00015902  0x00001c96 isub  0x00000002 , 0x0000003f 
+ 00015903  0x00001c97 arg  0x00000021 , 0x00000002 
+ 00015904  0x00001c98 isub  0x00000002 , 0x0000003e 
+ 00015905  0x00001c99 nrtn  0x00000002 
+ 00015906  0x00001c9a setarg  0x00000000 
+ 00015907  0x00001c9b store  0x00000004 , 0x00004807 
+ 00015908  0x00001c9c branch  0x00004599 
+ 00015909  0x00001c9f fetch  0x00000002 , 0x000041f1 
+ 00015910  0x00001ca0 bbit1  0x00000000 , 0x00003bf1 
+ 00015911  0x00001ca1 rtn 
+ 00015912  0x00001ca3 fetch  0x00000002 , 0x000041f1 
+ 00015913  0x00001ca4 bbit1  0x00000001 , 0x00003bf1 
+ 00015914  0x00001ca5 rtn 
+ 00015915  0x00001ca7 fetch  0x00000002 , 0x000041f1 
+ 00015916  0x00001ca8 bbit1  0x00000002 , 0x00003bf1 
+ 00015917  0x00001ca9 rtn 
+ 00015918  0x00001cac setarg  0x00003e37 
+ 00015919  0x00001cad store  0x00000002 , 0x0000428e 
+ 00015920  0x00001cae setarg  0x00003e3d 
+ 00015921  0x00001caf store  0x00000002 , 0x00004292 
+ 00015922  0x00001cb0 setarg  0x00003e37 
+ 00015923  0x00001cb1 store  0x00000002 , 0x00004290 
+ 00015924  0x00001cb2 rtn  0x0000002b 
+ 00015925  0x00001cb3 jam  0x00000001 , 0x000047e9 
+ 00015926  0x00001cb4 rtn 
+ 00015927  0x00001cb7 fetch  0x00000001 , 0x00000030 
+ 00015928  0x00001cb8 bbit0  0x00000001 , 0x00005e9f 
+ 00015929  0x00001cb9 set1  0x0000000d , 0x00000000 
+ 00015930  0x00001cba fetch  0x00000006 , 0x0000420a 
+ 00015931  0x00001cbb store  0x00000006 , 0x00004703 
+ 00015932  0x00001cbc branch  0x00007bde 
+ 00015933  0x00001cc0 deposit  0x00000013 
+ 00015934  0x00001cc1 rtnne  0x00000010 
+ 00015935  0x00001cc3 call  0x00007bb1 
+ 00015936  0x00001cc4 fetch  0x00000001 , 0x000047eb 
+ 00015937  0x00001cc5 beq  0x00000001 , 0x00003e3f 
+ 00015938  0x00001cc6 call  0x00007be2 
+ 00015939  0x00001cc7 branch  0x00003ccd 
+ 00015940  0x00001ccb force  0x00000002 , 0x00000002 
+ 00015941  0x00001ccc increase  0xfffffffe , 0x00000002 
+ 00015942  0x00001ccd call  0x00003a7a 
+ 00015943  0x00001cce call  0x00003a91 
+ 00015944  0x00001ccf disable  0x00000007 
+ 00015945  0x00001cd0 enable  0x0000001d 
+ 00015946  0x00001cd1 set1  0x00000000 , 0x00000015 
+ 00015947  0x00001cd2 call  0x00003bae 
+ 00015948  0x00001cd4 fetch  0x00000001 , 0x00000000 
+ 00015949  0x00001cd5 inject  0x00000003 , 0x00000008 
+ 00015950  0x00001cd6 branch  0x00003e4c 
+ 00015951  0x00001cdd set1  0x00000025 , 0x00000000 
+ 00015952  0x00001cde bpatch  0x000000cd , 0x00004039 
+ 00015953  0x00001cdf fetch  0x00000001 , 0x00004132 
+ 00015954  0x00001ce0 branch  0x00003e4f , 0x00000034 
+ 00015955  0x00001ce1 beq  0x00000006 , 0x00005aa2 
+ 00015956  0x00001ce2 beq  0x00000007 , 0x00004b33 
+ 00015957  0x00001ce3 beq  0x00000004 , 0x00004293 
+ 00015958  0x00001ce4 beq  0x00000003 , 0x00004c09 
+ 00015959  0x00001ce5 beq  0x00000001 , 0x00004461 
+ 00015960  0x00001ce6 beq  0x00000009 , 0x00007624 
+ 00015961  0x00001ce7 beq  0x0000000a , 0x000062ef 
+ 00015962  0x00001ce8 beq  0x0000000c , 0x00004bf3 
+ 00015963  0x00001ce9 beq  0x0000000d , 0x00006a8e 
+ 00015964  0x00001cea beq  0x000000ff , 0x00003e2e 
+ 00015965  0x00001ceb bbit1  0x00000006 , 0x00006486 
+ 00015966  0x00001cec rtn 
+ 00015967  0x00001cef set1  0x00000025 , 0x00000000 
+ 00015968  0x00001cf0 bpatch  0x000000ce , 0x00004039 
+ 00015969  0x00001cf1 jam  0x00000000 , 0x00000153 
+ 00015970  0x00001cf2 jam  0x00000000 , 0x00000189 
+ 00015971  0x00001cf3 jam  0x00000000 , 0x0000018a 
+ 00015972  0x00001cf4 setarg  0x00000000 
+ 00015973  0x00001cf5 store  0x00000005 , 0x000007da 
+ 00015974  0x00001cf6 fetch  0x00000001 , 0x00004132 
+ 00015975  0x00001cf7 branch  0x00003e5f , 0x00000034 
+ 00015976  0x00001cf8 beq  0x0000000a , 0x0000631f 
+ 00015977  0x00001cf9 rtn 
+ 00015978  0x00001cfd call  0x00007ba1 
+ 00015979  0x00001cfe call  0x00007c45 
+ 00015980  0x00001cff call  0x00003e73 
+ 00015981  0x00001d00 fetch  0x00000002 , 0x00004290 
+ 00015982  0x00001d01 branch  0x00007f66 
+ 00015983  0x00001d04 fetch  0x00000002 , 0x0000428e 
+ 00015984  0x00001d05 branch  0x00007f66 
+ 00015985  0x00001d08 fetch  0x00000002 , 0x0000428c 
+ 00015986  0x00001d09 branch  0x00007f66 
+ 00015987  0x00001d0c set1  0x00000025 , 0x00000000 
+ 00015988  0x00001d0d bpatch  0x000000cf , 0x00004039 
+ 00015989  0x00001d0f arg  0x000047df , 0x00000011 
+ 00015990  0x00001d10 call  0x00007f9f 
+ 00015991  0x00001d11 rtn  0x00000034 
+ 00015992  0x00001d13 copy  0x0000003f , 0x00000013 
+ 00015993  0x00001d14 call  0x00003e7d 
+ 00015994  0x00001d15 branch  0x00003ea5 
+ 00015995  0x00001d18 arg  0x00000000 , 0x00000013 
+ 00015996  0x00001d19 rtn 
+ 00015997  0x00001d1f beq  0x00000001 , 0x00003e92 
+ 00015998  0x00001d20 beq  0x00000010 , 0x00003ed9 
+ 00015999  0x00001d21 beq  0x00000005 , 0x00003eb6 
+ 00016000  0x00001d22 beq  0x00000012 , 0x00003ebd 
+ 00016001  0x00001d23 beq  0x00000006 , 0x00003ed5 
+ 00016002  0x00001d24 beq  0x00000004 , 0x00003efe 
+ 00016003  0x00001d25 beq  0x00000002 , 0x00003f03 
+ 00016004  0x00001d26 beq  0x00000013 , 0x00003efe 
+ 00016005  0x00001d27 beq  0x00000014 , 0x00003ecc 
+ 00016006  0x00001d28 beq  0x00000015 , 0x00003ed0 
+ 00016007  0x00001d29 beq  0x00000003 , 0x00003eaf 
+ 00016008  0x00001d2a beq  0x0000000b , 0x00003ec1 
+ 00016009  0x00001d2b beq  0x0000000c , 0x00003ec8 
+ 00016010  0x00001d2d beq  0x00000016 , 0x00003edd 
+ 00016011  0x00001d2e beq  0x00000018 , 0x00003eab 
+ 00016012  0x00001d2f beq  0x0000002a , 0x00003e9b 
+ 00016013  0x00001d30 beq  0x0000002b , 0x00003e99 
+ 00016014  0x00001d32 and  0x0000003f , 0x0000000f , 0x00000002 
+ 00016015  0x00001d33 and_into  0x000000f0 , 0x0000003f 
+ 00016016  0x00001d34 beq  0x00000050 , 0x00003ee1 
+ 00016017  0x00001d35 rtn 
+ 00016018  0x00001d38 fetch  0x00000002 , 0x000047f4 
+ 00016019  0x00001d39 set1  0x00000000 , 0x0000003f 
+ 00016020  0x00001d3a store  0x00000002 , 0x000047f4 
+ 00016021  0x00001d3b fetch  0x00000002 , 0x000042a2 
+ 00016022  0x00001d3c set0  0x00000000 , 0x0000003f 
+ 00016023  0x00001d3d store  0x00000002 , 0x000042a2 
+ 00016024  0x00001d3e rtn 
+ 00016025  0x00001d40 jam  0x00000000 , 0x00000258 
+ 00016026  0x00001d41 rtn 
+ 00016027  0x00001d44 fetch  0x00000001 , 0x00000258 
+ 00016028  0x00001d45 increase  0x00000001 , 0x0000003f 
+ 00016029  0x00001d46 store  0x00000001 , 0x00000258 
+ 00016030  0x00001d47 sub  0x0000003f , 0x00000001 , 0x0000003e 
+ 00016031  0x00001d48 branch  0x00003f6c , 0x00000002 
+ 00016032  0x00001d49 jam  0x00000000 , 0x00000258 
+ 00016033  0x00001d4a fetch  0x00000002 , 0x000042a2 
+ 00016034  0x00001d4b set1  0x00000009 , 0x0000003f 
+ 00016035  0x00001d4c store  0x00000002 , 0x000042a2 
+ 00016036  0x00001d4d branch  0x00003f77 
+ 00016037  0x00001d50 fetch  0x00000002 , 0x00004292 
+ 00016038  0x00001d51 branch  0x00007f66 
+ 00016039  0x00001d54 fetch  0x00000002 , 0x00004286 
+ 00016040  0x00001d55 branch  0x00007f66 
+ 00016041  0x00001d58 fetch  0x00000002 , 0x0000428a 
+ 00016042  0x00001d59 branch  0x00007f66 
+ 00016043  0x00001d5c fetch  0x00000002 , 0x000042a2 
+ 00016044  0x00001d5d set1  0x00000001 , 0x0000003f 
+ 00016045  0x00001d5e store  0x00000002 , 0x000042a2 
+ 00016046  0x00001d5f branch  0x00003fa2 
+ 00016047  0x00001d62 fetch  0x00000002 , 0x000047f4 
+ 00016048  0x00001d63 set1  0x00000007 , 0x0000003f 
+ 00016049  0x00001d64 store  0x00000002 , 0x000047f4 
+ 00016050  0x00001d65 fetch  0x00000002 , 0x000042a2 
+ 00016051  0x00001d66 set1  0x00000002 , 0x0000003f 
+ 00016052  0x00001d67 store  0x00000002 , 0x000042a2 
+ 00016053  0x00001d68 rtn 
+ 00016054  0x00001d6b fetch  0x00000002 , 0x000047f4 
+ 00016055  0x00001d6c set1  0x00000001 , 0x0000003f 
+ 00016056  0x00001d6d store  0x00000002 , 0x000047f4 
+ 00016057  0x00001d6e fetch  0x00000002 , 0x000042a2 
+ 00016058  0x00001d6f set1  0x00000004 , 0x0000003f 
+ 00016059  0x00001d70 store  0x00000002 , 0x000042a2 
+ 00016060  0x00001d71 rtn 
+ 00016061  0x00001d74 fetch  0x00000002 , 0x000047f4 
+ 00016062  0x00001d75 set1  0x00000003 , 0x0000003f 
+ 00016063  0x00001d76 store  0x00000002 , 0x000047f4 
+ 00016064  0x00001d77 rtn 
+ 00016065  0x00001d7a fetch  0x00000002 , 0x000047f4 
+ 00016066  0x00001d7b set1  0x00000005 , 0x0000003f 
+ 00016067  0x00001d7c store  0x00000002 , 0x000047f4 
+ 00016068  0x00001d7d fetch  0x00000002 , 0x000042a2 
+ 00016069  0x00001d7e set1  0x00000003 , 0x0000003f 
+ 00016070  0x00001d7f store  0x00000002 , 0x000042a2 
+ 00016071  0x00001d80 rtn 
+ 00016072  0x00001d83 fetch  0x00000002 , 0x000047f4 
+ 00016073  0x00001d84 set0  0x00000005 , 0x0000003f 
+ 00016074  0x00001d85 store  0x00000002 , 0x000047f4 
+ 00016075  0x00001d86 rtn 
+ 00016076  0x00001d89 fetch  0x00000002 , 0x000047f4 
+ 00016077  0x00001d8a set1  0x00000009 , 0x0000003f 
+ 00016078  0x00001d8b store  0x00000002 , 0x000047f4 
+ 00016079  0x00001d8c rtn 
+ 00016080  0x00001d8f fetch  0x00000002 , 0x000047f4 
+ 00016081  0x00001d90 set0  0x00000009 , 0x0000003f 
+ 00016082  0x00001d91 store  0x00000002 , 0x000047f4 
+ 00016083  0x00001d92 jam  0x00000000 , 0x000046f8 
+ 00016084  0x00001d93 branch  0x00003fa6 
+ 00016085  0x00001d96 fetch  0x00000002 , 0x000047f4 
+ 00016086  0x00001d97 set1  0x00000002 , 0x0000003f 
+ 00016087  0x00001d98 store  0x00000002 , 0x000047f4 
+ 00016088  0x00001d99 rtn 
+ 00016089  0x00001d9c fetch  0x00000002 , 0x000042a2 
+ 00016090  0x00001d9d set1  0x00000000 , 0x0000003f 
+ 00016091  0x00001d9e store  0x00000002 , 0x000042a2 
+ 00016092  0x00001d9f rtn 
+ 00016093  0x00001da2 fetch  0x00000002 , 0x000042a2 
+ 00016094  0x00001da3 set1  0x00000008 , 0x0000003f 
+ 00016095  0x00001da4 store  0x00000002 , 0x000042a2 
+ 00016096  0x00001da5 branch  0x00003f77 
+ 00016097  0x00001da9 set1  0x00000025 , 0x00000000 
+ 00016098  0x00001daa bpatch  0x000000d0 , 0x0000403a 
+ 00016099  0x00001dab storet  0x00000001 , 0x00000259 
+ 00016100  0x00001dad fetch  0x00000001 , 0x00000259 
+ 00016101  0x00001dae rtn  0x00000034 
+ 00016102  0x00001daf increase  0xffffffff , 0x0000003f 
+ 00016103  0x00001db0 store  0x00000001 , 0x00000259 
+ 00016104  0x00001db1 call  0x00007bb1 
+ 00016105  0x00001db2 call  0x00003f60 
+ 00016106  0x00001db3 call  0x00003eed 
+ 00016107  0x00001db4 call  0x00003ef5 
+ 00016108  0x00001db5 branch  0x00003ee4 
+ 00016109  0x00001db8 fetch  0x00000001 , 0x0000429d 
+ 00016110  0x00001db9 rtn  0x00000034 
+ 00016111  0x00001dba increase  0xffffffff , 0x0000003f 
+ 00016112  0x00001dbb store  0x00000001 , 0x0000429d 
+ 00016113  0x00001dbc nrtn  0x00000034 
+ 00016114  0x00001dbd call  0x000032ee 
+ 00016115  0x00001dbe branch  0x00003f9e , 0x00000005 
+ 00016116  0x00001dbf rtn 
+ 00016117  0x00001dc1 fetch  0x00000002 , 0x000047f0 
+ 00016118  0x00001dc2 rtn  0x00000034 
+ 00016119  0x00001dc3 increase  0xffffffff , 0x0000003f 
+ 00016120  0x00001dc4 store  0x00000002 , 0x000047f0 
+ 00016121  0x00001dc5 nrtn  0x00000034 
+ 00016122  0x00001dc6 call  0x00003f7e 
+ 00016123  0x00001dc7 call  0x00003f98 
+ 00016124  0x00001dc8 fetch  0x00000002 , 0x00004294 
+ 00016125  0x00001dc9 branch  0x00007f66 
+ 00016126  0x00001dcc call  0x00003f15 
+ 00016127  0x00001dce fetch  0x00000002 , 0x000047f4 
+ 00016128  0x00001dcf set0  0x00000007 , 0x0000003f 
+ 00016129  0x00001dd0 store  0x00000002 , 0x000047f4 
+ 00016130  0x00001dd1 rtn 
+ 00016131  0x00001dd4 jam  0x00000000 , 0x0000429d 
+ 00016132  0x00001dd5 fetch  0x00000002 , 0x000047f4 
+ 00016133  0x00001dd6 bbit1  0x00000007 , 0x00003f08 
+ 00016134  0x00001dd7 isolate0  0x00000001 , 0x0000003f 
+ 00016135  0x00001dd8 call  0x00003e7b , 0x00000001 
+ 00016136  0x00001dda fetch  0x00000002 , 0x000047f4 
+ 00016137  0x00001ddb set0  0x00000000 , 0x0000003f 
+ 00016138  0x00001ddc set0  0x00000001 , 0x0000003f 
+ 00016139  0x00001ddd set0  0x00000002 , 0x0000003f 
+ 00016140  0x00001dde set0  0x00000003 , 0x0000003f 
+ 00016141  0x00001ddf set0  0x00000004 , 0x0000003f 
+ 00016142  0x00001de0 store  0x00000002 , 0x000047f4 
+ 00016143  0x00001de1 branch  0x00003fa6 
+ 00016144  0x00001de4 call  0x00003f12 
+ 00016145  0x00001de5 branch  0x00003f9a 
+ 00016146  0x00001dea setarg  0x00000000 
+ 00016147  0x00001deb store  0x00000002 , 0x000042a0 
+ 00016148  0x00001dec rtn 
+ 00016149  0x00001dee setarg  0x00000000 
+ 00016150  0x00001def store  0x00000002 , 0x000042a2 
+ 00016151  0x00001df0 rtn 
+ 00016152  0x00001df4 fetch  0x00000002 , 0x000042a2 
+ 00016153  0x00001df5 store  0x00000002 , 0x000042a0 
+ 00016154  0x00001df6 setarg  0x00000000 
+ 00016155  0x00001df7 store  0x00000002 , 0x000042a2 
+ 00016156  0x00001df8 rtn 
+ 00016157  0x00001dfb fetch  0x00000002 , 0x000042a2 
+ 00016158  0x00001dfc set1  0x00000007 , 0x0000003f 
+ 00016159  0x00001dfd store  0x00000002 , 0x000042a0 
+ 00016160  0x00001dfe setarg  0x00000000 
+ 00016161  0x00001dff store  0x00000002 , 0x000042a2 
+ 00016162  0x00001e00 rtn 
+ 00016163  0x00001e07 call  0x0000691d 
+ 00016164  0x00001e08 fetch  0x00000006 , 0x00004274 
+ 00016165  0x00001e09 rtn 
+ 00016166  0x00001e0c fetch  0x00000001 , 0x0000448b 
+ 00016167  0x00001e0d branch  0x00003f2a , 0x00000034 
+ 00016168  0x00001e0e call  0x00003f96 
+ 00016169  0x00001e0f branch  0x00003f82 
+ 00016170  0x00001e11 call  0x00003f94 
+ 00016171  0x00001e12 branch  0x00003f88 
+ 00016172  0x00001e15 set1  0x00000025 , 0x00000000 
+ 00016173  0x00001e16 bpatch  0x000000d1 , 0x0000403a 
+ 00016174  0x00001e17 arg  0x00000244 , 0x00000012 
+ 00016175  0x00001e18 arg  0x00003f31 , 0x00000013 
+ 00016176  0x00001e19 branch  0x00003301 
+ 00016177  0x00001e1c arg  0x00000000 , 0x00000002 
+ 00016178  0x00001e1d bbit0  0x00000000 , 0x00003f35 
+ 00016179  0x00001e1e add  0x00000011 , 0x00000010 , 0x00000006 
+ 00016180  0x00001e1f ifetcht  0x00000006 , 0x00000006 
+ 00016181  0x00001e21 copy  0x00000002 , 0x0000003f 
+ 00016182  0x00001e22 ncall  0x00003f3a , 0x00000034 
+ 00016183  0x00001e23 istoret  0x00000006 , 0x00000012 
+ 00016184  0x00001e24 increase  0x00000006 , 0x00000012 
+ 00016185  0x00001e25 branch  0x00003307 
+ 00016186  0x00001e27 fetch  0x00000001 , 0x0000429a 
+ 00016187  0x00001e28 increase  0x00000001 , 0x0000003f 
+ 00016188  0x00001e29 store  0x00000001 , 0x0000429a 
+ 00016189  0x00001e2a rtn 
+ 00016190  0x00001e2d jam  0x00000000 , 0x0000429a 
+ 00016191  0x00001e2e branch  0x00003f2c 
+ 00016192  0x00001e31 fetch  0x00000001 , 0x000047f4 
+ 00016193  0x00001e32 isolate1  0x00000005 , 0x0000003f 
+ 00016194  0x00001e33 rtn 
+ 00016195  0x00001e39 setarg  0x00000000 
+ 00016196  0x00001e3a branch  0x00003f46 
+ 00016197  0x00001e3c setarg  0x0000aa55 
+ 00016198  0x00001e3e store  0x00000002 , 0x000002a8 
+ 00016199  0x00001e3f set1  0x00000025 , 0x00000000 
+ 00016200  0x00001e40 bpatch  0x000000d2 , 0x0000403a 
+ 00016201  0x00001e41 arg  0x00000002 , 0x00000002 
+ 00016202  0x00001e42 arg  0x000002a8 , 0x00000011 
+ 00016203  0x00001e43 arg  0x000000c3 , 0x00000012 
+ 00016204  0x00001e44 branch  0x0000683e 
+ 00016205  0x00001e48 set1  0x00000025 , 0x00000000 
+ 00016206  0x00001e49 bpatch  0x000000d3 , 0x0000403a 
+ 00016207  0x00001e4a arg  0x00000002 , 0x00000002 
+ 00016208  0x00001e4b arg  0x00000161 , 0x00000011 
+ 00016209  0x00001e4c arg  0x000000c3 , 0x00000012 
+ 00016210  0x00001e4d call  0x0000681d 
+ 00016211  0x00001e4e fetch  0x00000002 , 0x00000161 
+ 00016212  0x00001e4f arg  0x0000aa55 , 0x00000002 
+ 00016213  0x00001e50 isub  0x00000002 , 0x0000003e 
+ 00016214  0x00001e51 rtn 
+ 00016215  0x00001e55 fetch  0x00000001 , 0x00004747 
+ 00016216  0x00001e56 store  0x00000001 , 0x0000429d 
+ 00016217  0x00001e57 rtn 
+ 00016218  0x00001e5a arg  0x00000009 , 0x00000007 
+ 00016219  0x00001e5b branch  0x00003dc2 
+ 00016220  0x00001e5e arg  0x00000009 , 0x00000007 
+ 00016221  0x00001e5f branch  0x00003dc6 
+ 00016222  0x00001e62 jam  0x00000005 , 0x0000429e 
+ 00016223  0x00001e63 branch  0x00003f5a 
+ 00016224  0x00001e65 fetch  0x00000001 , 0x0000429e 
+ 00016225  0x00001e66 rtn  0x00000034 
+ 00016226  0x00001e67 increase  0xffffffff , 0x0000003f 
+ 00016227  0x00001e68 store  0x00000001 , 0x0000429e 
+ 00016228  0x00001e69 nrtn  0x00000034 
+ 00016229  0x00001e6a branch  0x00003f5c 
+ 00016230  0x00001e6d jam  0x00000001 , 0x000043cc 
+ 00016231  0x00001e6e rtn 
+ 00016232  0x00001e71 jam  0x00000000 , 0x000043cc 
+ 00016233  0x00001e72 rtn 
+ 00016234  0x00001e75 jam  0x0000000a , 0x00000b7d 
+ 00016235  0x00001e76 branch  0x00007c33 
+ 00016236  0x00001e79 jam  0x0000001d , 0x00000b7d 
+ 00016237  0x00001e7a branch  0x00007c33 
+ 00016238  0x00001e7d set1  0x00000025 , 0x00000000 
+ 00016239  0x00001e7e bpatch  0x000000d4 , 0x0000403a 
+ 00016240  0x00001e7f fetch  0x00000001 , 0x0000429f 
+ 00016241  0x00001e80 store  0x00000001 , 0x00000177 
+ 00016242  0x00001e81 jam  0x00000001 , 0x00000257 
+ 00016243  0x00001e82 jam  0x00000003 , 0x00000b7d 
+ 00016244  0x00001e83 branch  0x00007c33 
+ 00016245  0x00001e86 jam  0x0000001e , 0x00000b7d 
+ 00016246  0x00001e87 branch  0x00007c33 
+ 00016247  0x00001e8a jam  0x00000004 , 0x00000b7d 
+ 00016248  0x00001e8b branch  0x00007c33 
+ 00016249  0x00001e8e fetch  0x00000002 , 0x000047fe 
+ 00016250  0x00001e8f store  0x00000002 , 0x000047f0 
+ 00016251  0x00001e91 call  0x00003f94 
+ 00016252  0x00001e93 jam  0x00000001 , 0x00000b7d 
+ 00016253  0x00001e94 branch  0x00007c33 
+ 00016254  0x00001e97 setarg  0x00000000 
+ 00016255  0x00001e98 store  0x00000002 , 0x000047f0 
+ 00016256  0x00001e99 jam  0x00000002 , 0x00000b7d 
+ 00016257  0x00001e9a branch  0x00007c33 
+ 00016258  0x00001e9d jam  0x0000000f , 0x00000b7d 
+ 00016259  0x00001e9e branch  0x00007c33 
+ 00016260  0x00001ea1 jam  0x00000010 , 0x00000b7d 
+ 00016261  0x00001ea2 branch  0x00007c33 
+ 00016262  0x00001ea5 jam  0x0000000e , 0x00000b7d 
+ 00016263  0x00001ea6 branch  0x00007c33 
+ 00016264  0x00001ea9 jam  0x0000000d , 0x00000b7d 
+ 00016265  0x00001eaa branch  0x00007c33 
+ 00016266  0x00001ead jam  0x00000017 , 0x00000b7d 
+ 00016267  0x00001eae branch  0x00007c33 
+ 00016268  0x00001eb1 jam  0x00000018 , 0x00000b7d 
+ 00016269  0x00001eb2 branch  0x00007c33 
+ 00016270  0x00001eb5 jam  0x00000016 , 0x00000b7d 
+ 00016271  0x00001eb6 branch  0x00007c33 
+ 00016272  0x00001eb9 jam  0x00000011 , 0x00000b7d 
+ 00016273  0x00001eba branch  0x00007c33 
+ 00016274  0x00001ebd jam  0x0000001c , 0x00000b7d 
+ 00016275  0x00001ebe branch  0x00007c33 
+ 00016276  0x00001ec1 jam  0x00000015 , 0x00000b7d 
+ 00016277  0x00001ec2 branch  0x00007c33 
+ 00016278  0x00001ec5 jam  0x00000014 , 0x00000b7d 
+ 00016279  0x00001ec6 branch  0x00007c33 
+ 00016280  0x00001eca jam  0x00000013 , 0x00000b7d 
+ 00016281  0x00001ecb branch  0x00007c33 
+ 00016282  0x00001ece jam  0x00000019 , 0x00000b7d 
+ 00016283  0x00001ecf branch  0x00007c33 
+ 00016284  0x00001ed2 jam  0x00000006 , 0x00000b7d 
+ 00016285  0x00001ed3 branch  0x00007c33 
+ 00016286  0x00001ed6 jam  0x00000005 , 0x00000b7d 
+ 00016287  0x00001ed7 branch  0x00007c33 
+ 00016288  0x00001eda jam  0x0000001f , 0x00000b7d 
+ 00016289  0x00001edb branch  0x00007c33 
+ 00016290  0x00001ede jam  0x00000020 , 0x00000b7d 
+ 00016291  0x00001edf branch  0x00007c33 
+ 00016292  0x00001ee2 set1  0x0000000d , 0x00000000 
+ 00016293  0x00001ee3 rtn 
+ 00016294  0x00001ee6 set0  0x0000000d , 0x00000000 
+ 00016295  0x00001ee7 rtn 
+ 00016296  0x00001eec set1  0x00000025 , 0x00000000 
+ 00016297  0x00001eed bpatch  0x00000090 , 0x00004032 
+ 00016298  0x00001eee arg  0x00000020 , 0x00000002 
+ 00016299  0x00001eef arg  0x00004419 , 0x00000011 
+ 00016300  0x00001ef0 arg  0x000000a0 , 0x00000012 
+ 00016301  0x00001ef1 call  0x0000681d 
+ 00016302  0x00001ef4 arg  0x00000020 , 0x00000002 
+ 00016303  0x00001ef5 arg  0x00004702 , 0x00000011 
+ 00016304  0x00001ef6 arg  0x0000007f , 0x00000012 
+ 00016305  0x00001ef7 call  0x0000681d 
+ 00016306  0x00001ef9 arg  0x00000006 , 0x00000002 
+ 00016307  0x00001efa arg  0x00004140 , 0x00000011 
+ 00016308  0x00001efb arg  0x00000063 , 0x00000012 
+ 00016309  0x00001efc call  0x0000681d 
+ 00016310  0x00001efe arg  0x00000006 , 0x00000002 
+ 00016311  0x00001eff arg  0x000044f9 , 0x00000011 
+ 00016312  0x00001f00 arg  0x00000069 , 0x00000012 
+ 00016313  0x00001f01 call  0x0000681d 
+ 00016314  0x00001f02 call  0x00005adb 
+ 00016315  0x00001f04 arg  0x00000002 , 0x00000002 
+ 00016316  0x00001f05 arg  0x000042ac , 0x00000011 
+ 00016317  0x00001f06 arg  0x000000c0 , 0x00000012 
+ 00016318  0x00001f07 call  0x0000681d 
+ 00016319  0x00001f08 call  0x00006909 
+ 00016320  0x00001f0a branch  0x00003fc1 
+ 00016321  0x00001f0d arg  0x0000000e , 0x00000002 
+ 00016322  0x00001f0e arg  0x0000054f , 0x00000011 
+ 00016323  0x00001f0f arg  0x0000006f , 0x00000012 
+ 00016324  0x00001f10 branch  0x0000681d 
+ 00016325  0x00001f13 set1  0x00000025 , 0x00000000 
+ 00016326  0x00001f14 bpatch  0x00000091 , 0x00004032 
+ 00016327  0x00001f15 call  0x00003f4d 
+ 00016328  0x00001f16 branch  0x00003fa8 , 0x00000005 
+ 00016329  0x00001f18 call  0x00003fd2 
+ 00016330  0x00001f19 call  0x00003fd7 
+ 00016331  0x00001f1a call  0x00005adb 
+ 00016332  0x00001f1b call  0x00003fdc 
+ 00016333  0x00001f1c call  0x00003fe0 
+ 00016334  0x00001f1d call  0x000062e9 
+ 00016335  0x00001f1e call  0x00003fe4 
+ 00016336  0x00001f1f call  0x00003fe9 
+ 00016337  0x00001f20 branch  0x00003f45 
+ 00016338  0x00001f23 fetcht  0x00000001 , 0x00004702 
+ 00016339  0x00001f24 increase  0x00000001 , 0x00000002 
+ 00016340  0x00001f25 arg  0x00004702 , 0x00000011 
+ 00016341  0x00001f26 arg  0x0000007f , 0x00000012 
+ 00016342  0x00001f27 branch  0x0000683e 
+ 00016343  0x00001f2a fetcht  0x00000001 , 0x00004419 
+ 00016344  0x00001f2b increase  0x00000001 , 0x00000002 
+ 00016345  0x00001f2c arg  0x00004419 , 0x00000011 
+ 00016346  0x00001f2d arg  0x000000a0 , 0x00000012 
+ 00016347  0x00001f2e branch  0x0000683e 
+ 00016348  0x00001f31 arg  0x00000006 , 0x00000002 
+ 00016349  0x00001f32 arg  0x000044f9 , 0x00000011 
+ 00016350  0x00001f33 arg  0x00000069 , 0x00000012 
+ 00016351  0x00001f34 branch  0x0000683e 
+ 00016352  0x00001f37 arg  0x00000006 , 0x00000002 
+ 00016353  0x00001f38 arg  0x00004140 , 0x00000011 
+ 00016354  0x00001f39 arg  0x00000063 , 0x00000012 
+ 00016355  0x00001f3a branch  0x0000683e 
+ 00016356  0x00001f3d fetcht  0x00000001 , 0x0000054f 
+ 00016357  0x00001f3e increase  0x00000001 , 0x00000002 
+ 00016358  0x00001f3f arg  0x0000054f , 0x00000011 
+ 00016359  0x00001f40 arg  0x0000006f , 0x00000012 
+ 00016360  0x00001f41 branch  0x0000683e 
+ 00016361  0x00001f44 setarg  0x000001a0 
+ 00016362  0x00001f45 store  0x00000002 , 0x000002a8 
+ 00016363  0x00001f47 arg  0x00000002 , 0x00000002 
+ 00016364  0x00001f48 arg  0x000002a8 , 0x00000011 
+ 00016365  0x00001f49 arg  0x000000c0 , 0x00000012 
+ 00016366  0x00001f4a branch  0x0000683e 
+ 00016367  0x00001f4e set1  0x00000025 , 0x00000000 
+ 00016368  0x00001f4f bpatch  0x00000092 , 0x00004032 
+ 00016369  0x00001f50 fetch  0x00000002 , 0x0000480e 
+ 00016370  0x00001f51 arg  0x0000012c , 0x00000002 
+ 00016371  0x00001f52 isub  0x00000002 , 0x0000003e 
+ 00016372  0x00001f53 branch  0x0000427f , 0x00000002 
+ 00016373  0x00001f54 call  0x00003e2b 
+ 00016374  0x00001f55 call  0x00007f6b 
+ 00016375  0x00001f56 copy  0x00000003 , 0x00000011 
+ 00016376  0x00001f57 fetch  0x00000002 , 0x0000480e 
+ 00016377  0x00001f58 increase  0xfffffffe , 0x0000003f 
+ 00016378  0x00001f59 iadd  0x00000003 , 0x00000003 
+ 00016379  0x00001f5a ifetch  0x00000002 , 0x00000003 
+ 00016380  0x00001f5b arg  0x00000a0d , 0x00000002 
+ 00016381  0x00001f5c isub  0x00000002 , 0x0000003e 
+ 00016382  0x00001f5d nrtn  0x00000005 
+ 00016383  0x00001f5e copy  0x00000011 , 0x00000003 
+ 00016384  0x00001f5f arg  0x00004850 , 0x00000012 
+ 00016385  0x00001f60 arg  0x00000003 , 0x00000039 
+ 00016386  0x00001f61 call  0x00004237 
+ 00016387  0x00001f62 nbranch  0x0000427f , 0x00000001 
+ 00016388  0x00001f63 branch  0x00004005 
+ 00016389  0x00001f66 set1  0x00000025 , 0x00000000 
+ 00016390  0x00001f67 bpatch  0x00000093 , 0x00004032 
+ 00016391  0x00001f69 copy  0x00000003 , 0x00000011 
+ 00016392  0x00001f6a arg  0x00004827 , 0x00000012 
+ 00016393  0x00001f6b force  0x00000004 , 0x00000039 
+ 00016394  0x00001f6c call  0x00004237 
+ 00016395  0x00001f6d branch  0x0000406d , 0x00000001 
+ 00016396  0x00001f6f arg  0x00004824 , 0x00000012 
+ 00016397  0x00001f70 force  0x00000007 , 0x00000039 
+ 00016398  0x00001f71 call  0x00004237 
+ 00016399  0x00001f72 branch  0x00004074 , 0x00000001 
+ 00016400  0x00001f74 arg  0x0000482e , 0x00000012 
+ 00016401  0x00001f75 force  0x00000004 , 0x00000039 
+ 00016402  0x00001f76 call  0x00004237 
+ 00016403  0x00001f77 branch  0x0000407b , 0x00000001 
+ 00016404  0x00001f79 arg  0x0000482b , 0x00000012 
+ 00016405  0x00001f7a force  0x00000007 , 0x00000039 
+ 00016406  0x00001f7b call  0x00004237 
+ 00016407  0x00001f7c branch  0x00004081 , 0x00000001 
+ 00016408  0x00001f7e arg  0x00004832 , 0x00000012 
+ 00016409  0x00001f7f force  0x00000004 , 0x00000039 
+ 00016410  0x00001f80 call  0x00004237 
+ 00016411  0x00001f81 branch  0x00004087 , 0x00000001 
+ 00016412  0x00001f83 arg  0x00004820 , 0x00000012 
+ 00016413  0x00001f84 force  0x00000004 , 0x00000039 
+ 00016414  0x00001f85 call  0x00004237 
+ 00016415  0x00001f86 branch  0x0000408c , 0x00000001 
+ 00016416  0x00001f88 arg  0x0000481c , 0x00000012 
+ 00016417  0x00001f89 force  0x00000004 , 0x00000039 
+ 00016418  0x00001f8a call  0x00004237 
+ 00016419  0x00001f8b branch  0x0000408f , 0x00000001 
+ 00016420  0x00001f8d arg  0x00004836 , 0x00000012 
+ 00016421  0x00001f8e force  0x00000005 , 0x00000039 
+ 00016422  0x00001f8f call  0x00004237 
+ 00016423  0x00001f90 branch  0x00004095 , 0x00000001 
+ 00016424  0x00001f92 arg  0x00004853 , 0x00000012 
+ 00016425  0x00001f93 force  0x00000004 , 0x00000039 
+ 00016426  0x00001f94 call  0x00004237 
+ 00016427  0x00001f95 branch  0x0000409b , 0x00000001 
+ 00016428  0x00001f97 arg  0x00004857 , 0x00000012 
+ 00016429  0x00001f98 force  0x00000004 , 0x00000039 
+ 00016430  0x00001f99 call  0x00004237 
+ 00016431  0x00001f9a branch  0x000040a1 , 0x00000001 
+ 00016432  0x00001f9c arg  0x0000485b , 0x00000012 
+ 00016433  0x00001f9d force  0x00000005 , 0x00000039 
+ 00016434  0x00001f9e call  0x00004237 
+ 00016435  0x00001f9f branch  0x000040a5 , 0x00000001 
+ 00016436  0x00001fa1 arg  0x00004860 , 0x00000012 
+ 00016437  0x00001fa2 force  0x00000004 , 0x00000039 
+ 00016438  0x00001fa3 call  0x00004237 
+ 00016439  0x00001fa4 branch  0x000040ab , 0x00000001 
+ 00016440  0x00001fa6 arg  0x00004864 , 0x00000012 
+ 00016441  0x00001fa7 force  0x00000004 , 0x00000039 
+ 00016442  0x00001fa8 call  0x00004237 
+ 00016443  0x00001fa9 branch  0x000040b0 , 0x00000001 
+ 00016444  0x00001fab arg  0x00004868 , 0x00000012 
+ 00016445  0x00001fac force  0x00000004 , 0x00000039 
+ 00016446  0x00001fad call  0x00004237 
+ 00016447  0x00001fae branch  0x000040b7 , 0x00000001 
+ 00016448  0x00001fb0 arg  0x0000486f , 0x00000012 
+ 00016449  0x00001fb1 force  0x00000004 , 0x00000039 
+ 00016450  0x00001fb2 call  0x00004237 
+ 00016451  0x00001fb3 branch  0x000040d6 , 0x00000001 
+ 00016452  0x00001fb5 arg  0x0000486c , 0x00000012 
+ 00016453  0x00001fb6 force  0x00000007 , 0x00000039 
+ 00016454  0x00001fb7 call  0x00004237 
+ 00016455  0x00001fb8 branch  0x000040dd , 0x00000001 
+ 00016456  0x00001fba arg  0x00004873 , 0x00000012 
+ 00016457  0x00001fbb force  0x00000005 , 0x00000039 
+ 00016458  0x00001fbc call  0x00004237 
+ 00016459  0x00001fbd branch  0x000040f2 , 0x00000001 
+ 00016460  0x00001fbf arg  0x00004878 , 0x00000012 
+ 00016461  0x00001fc0 force  0x00000004 , 0x00000039 
+ 00016462  0x00001fc1 call  0x00004237 
+ 00016463  0x00001fc2 branch  0x000040f8 , 0x00000001 
+ 00016464  0x00001fc4 arg  0x0000487c , 0x00000012 
+ 00016465  0x00001fc5 force  0x00000007 , 0x00000039 
+ 00016466  0x00001fc6 call  0x00004237 
+ 00016467  0x00001fc7 branch  0x000040fb , 0x00000001 
+ 00016468  0x00001fc9 arg  0x00004841 , 0x00000012 
+ 00016469  0x00001fca force  0x00000006 , 0x00000039 
+ 00016470  0x00001fcb call  0x00004237 
+ 00016471  0x00001fcc branch  0x00004100 , 0x00000001 
+ 00016472  0x00001fce arg  0x00004883 , 0x00000012 
+ 00016473  0x00001fcf force  0x00000006 , 0x00000039 
+ 00016474  0x00001fd0 call  0x00004237 
+ 00016475  0x00001fd1 branch  0x0000412c , 0x00000001 
+ 00016476  0x00001fd3 arg  0x00004849 , 0x00000012 
+ 00016477  0x00001fd4 force  0x00000003 , 0x00000039 
+ 00016478  0x00001fd5 call  0x00004237 
+ 00016479  0x00001fd6 branch  0x0000410e , 0x00000001 
+ 00016480  0x00001fd8 arg  0x0000484c , 0x00000012 
+ 00016481  0x00001fd9 force  0x00000004 , 0x00000039 
+ 00016482  0x00001fda call  0x00004237 
+ 00016483  0x00001fdb branch  0x00004117 , 0x00000001 
+ 00016484  0x00001fdd arg  0x0000483b , 0x00000012 
+ 00016485  0x00001fde force  0x00000006 , 0x00000039 
+ 00016486  0x00001fdf call  0x00004237 
+ 00016487  0x00001fe0 branch  0x00004127 , 0x00000001 
+ 00016488  0x00001fe2 arg  0x00004889 , 0x00000012 
+ 00016489  0x00001fe3 force  0x00000003 , 0x00000039 
+ 00016490  0x00001fe4 call  0x00004237 
+ 00016491  0x00001fe5 branch  0x00004129 , 0x00000001 
+ 00016492  0x00001fe6 branch  0x0000427f 
+ 00016493  0x00001fea ifetch  0x00000001 , 0x00000003 
+ 00016494  0x00001feb beq  0x0000003f , 0x00004071 
+ 00016495  0x00001fec beq  0x0000003d , 0x00004131 
+ 00016496  0x00001fed branch  0x0000427f 
+ 00016497  0x00001fef call  0x00007f6e 
+ 00016498  0x00001ff0 call  0x00004194 
+ 00016499  0x00001ff1 branch  0x00004286 
+ 00016500  0x00001ff5 ifetch  0x00000001 , 0x00000003 
+ 00016501  0x00001ff6 beq  0x0000003f , 0x00004078 
+ 00016502  0x00001ff7 beq  0x0000003d , 0x00004136 
+ 00016503  0x00001ff8 branch  0x0000427f 
+ 00016504  0x00001ffa call  0x00007f6e 
+ 00016505  0x00001ffb call  0x0000419b 
+ 00016506  0x00001ffc branch  0x00004286 
+ 00016507  0x00001fff ifetch  0x00000001 , 0x00000003 
+ 00016508  0x00002000 beq  0x0000003f , 0x0000407f 
+ 00016509  0x00002001 beq  0x0000003d , 0x0000413c 
+ 00016510  0x00002002 branch  0x0000427f 
+ 00016511  0x00002004 call  0x000041a2 
+ 00016512  0x00002005 branch  0x00004286 
+ 00016513  0x00002008 ifetch  0x00000001 , 0x00000003 
+ 00016514  0x00002009 beq  0x0000003f , 0x00004085 
+ 00016515  0x0000200a beq  0x0000003d , 0x00004140 
+ 00016516  0x0000200b branch  0x0000427f 
+ 00016517  0x0000200e call  0x000041a8 
+ 00016518  0x0000200f branch  0x00004286 
+ 00016519  0x00002012 ifetch  0x00000001 , 0x00000003 
+ 00016520  0x00002013 beq  0x0000003f , 0x0000408a 
+ 00016521  0x00002014 branch  0x0000427f 
+ 00016522  0x00002016 call  0x000041ae 
+ 00016523  0x00002017 branch  0x00004286 
+ 00016524  0x0000201b ifetch  0x00000001 , 0x00000003 
+ 00016525  0x0000201c beq  0x0000003d , 0x00004149 
+ 00016526  0x0000201d branch  0x0000427f 
+ 00016527  0x00002021 ifetch  0x00000001 , 0x00000003 
+ 00016528  0x00002022 beq  0x0000003f , 0x00004093 
+ 00016529  0x00002023 beq  0x0000003d , 0x00004144 
+ 00016530  0x00002024 branch  0x0000427f 
+ 00016531  0x00002026 call  0x00004204 
+ 00016532  0x00002027 branch  0x00004286 
+ 00016533  0x0000202a ifetch  0x00000001 , 0x00000003 
+ 00016534  0x0000202b beq  0x0000003f , 0x00004099 
+ 00016535  0x0000202c beq  0x0000003d , 0x00004157 
+ 00016536  0x0000202d branch  0x0000427f 
+ 00016537  0x0000202f call  0x000041b4 
+ 00016538  0x00002030 branch  0x00004286 
+ 00016539  0x00002033 ifetch  0x00000001 , 0x00000003 
+ 00016540  0x00002034 beq  0x0000003f , 0x0000409f 
+ 00016541  0x00002035 beq  0x0000003d , 0x00004172 
+ 00016542  0x00002036 branch  0x0000427f 
+ 00016543  0x00002038 call  0x000041ba 
+ 00016544  0x00002039 branch  0x00004286 
+ 00016545  0x0000203c ifetch  0x00000001 , 0x00000003 
+ 00016546  0x0000203d beq  0x0000003f , 0x000040e1 
+ 00016547  0x0000203e beq  0x0000003d , 0x0000415a 
+ 00016548  0x0000203f branch  0x0000427f 
+ 00016549  0x00002043 ifetch  0x00000001 , 0x00000003 
+ 00016550  0x00002044 beq  0x0000003f , 0x000040a9 
+ 00016551  0x00002045 beq  0x0000003d , 0x0000416b 
+ 00016552  0x00002046 branch  0x0000427f 
+ 00016553  0x00002048 call  0x0000420b 
+ 00016554  0x00002049 branch  0x00004286 
+ 00016555  0x0000204c ifetch  0x00000001 , 0x00000003 
+ 00016556  0x0000204d beq  0x0000003f , 0x000040ae 
+ 00016557  0x0000204e branch  0x0000427f 
+ 00016558  0x00002050 call  0x000041c0 
+ 00016559  0x00002051 branch  0x00004286 
+ 00016560  0x00002054 ifetch  0x00000001 , 0x00000003 
+ 00016561  0x00002055 beq  0x0000003f , 0x000040b3 
+ 00016562  0x00002056 branch  0x00004286 
+ 00016563  0x00002058 call  0x000032ee 
+ 00016564  0x00002059 nbranch  0x0000427f , 0x00000005 
+ 00016565  0x0000205a call  0x000041cd 
+ 00016566  0x0000205b branch  0x00004286 
+ 00016567  0x0000205e ifetch  0x00000001 , 0x00000003 
+ 00016568  0x0000205f beq  0x0000003f , 0x000040ba 
+ 00016569  0x00002060 branch  0x0000427f 
+ 00016570  0x00002062 fetch  0x00000001 , 0x00004040 
+ 00016571  0x00002063 bbit0  0x00000000 , 0x0000427f 
+ 00016572  0x00002064 call  0x00007f6e 
+ 00016573  0x00002065 fetch  0x00000001 , 0x00004041 
+ 00016574  0x00002066 bbit1  0x00000000 , 0x000040c0 
+ 00016575  0x00002067 branch  0x000040cb 
+ 00016576  0x00002069 arg  0x00004868 , 0x00000011 
+ 00016577  0x0000206a arg  0x00000004 , 0x00000039 
+ 00016578  0x0000206b call  0x00004232 
+ 00016579  0x0000206c call  0x00004247 
+ 00016580  0x0000206d setarg  0x00000034 
+ 00016581  0x0000206e istore  0x00000001 , 0x0000000a 
+ 00016582  0x0000206f call  0x0000424e 
+ 00016583  0x00002070 arg  0x000003d0 , 0x00000011 
+ 00016584  0x00002071 call  0x00007e9d 
+ 00016585  0x00002072 call  0x000068fa 
+ 00016586  0x00002073 branch  0x00004286 
+ 00016587  0x00002075 arg  0x00004868 , 0x00000011 
+ 00016588  0x00002076 arg  0x00000004 , 0x00000039 
+ 00016589  0x00002077 call  0x00004232 
+ 00016590  0x00002078 call  0x00004247 
+ 00016591  0x00002079 setarg  0x00000033 
+ 00016592  0x0000207a istore  0x00000001 , 0x0000000a 
+ 00016593  0x0000207b call  0x0000424e 
+ 00016594  0x0000207c arg  0x00000040 , 0x00000011 
+ 00016595  0x0000207d call  0x00007e9d 
+ 00016596  0x0000207e call  0x000068fa 
+ 00016597  0x0000207f branch  0x00004286 
+ 00016598  0x00002083 set1  0x00000025 , 0x00000000 
+ 00016599  0x00002084 bpatch  0x00000094 , 0x00004032 
+ 00016600  0x00002085 call  0x00003f3e 
+ 00016601  0x00002086 fetch  0x00000001 , 0x0000429a 
+ 00016602  0x00002087 bne  0x00000000 , 0x0000427f 
+ 00016603  0x00002088 call  0x000041f0 
+ 00016604  0x00002089 branch  0x00004286 
+ 00016605  0x0000208c set1  0x00000025 , 0x00000000 
+ 00016606  0x0000208d bpatch  0x00000095 , 0x00004032 
+ 00016607  0x0000208e call  0x000041f6 
+ 00016608  0x0000208f branch  0x00004286 
+ 00016609  0x00002092 arg  0x00004857 , 0x00000011 
+ 00016610  0x00002093 arg  0x00000004 , 0x00000039 
+ 00016611  0x00002094 call  0x00004232 
+ 00016612  0x00002095 call  0x000032ee 
+ 00016613  0x00002096 nbranch  0x0000424a , 0x00000005 
+ 00016614  0x00002097 fetch  0x00000001 , 0x00004041 
+ 00016615  0x00002098 bbit1  0x00000001 , 0x000040eb 
+ 00016616  0x00002099 call  0x000040ef 
+ 00016617  0x0000209a call  0x000068fa 
+ 00016618  0x0000209b branch  0x00004286 
+ 00016619  0x0000209d setarg  0x0000004d 
+ 00016620  0x0000209e istore  0x00000001 , 0x0000000a 
+ 00016621  0x0000209f call  0x000068fa 
+ 00016622  0x000020a0 branch  0x00004286 
+ 00016623  0x000020a2 setarg  0x00000053 
+ 00016624  0x000020a3 istore  0x00000001 , 0x0000000a 
+ 00016625  0x000020a4 rtn 
+ 00016626  0x000020a7 ifetch  0x00000001 , 0x00000003 
+ 00016627  0x000020a8 beq  0x0000003f , 0x000040f6 
+ 00016628  0x000020a9 beq  0x0000003d , 0x0000417e 
+ 00016629  0x000020aa branch  0x0000427f 
+ 00016630  0x000020ac call  0x000041d8 
+ 00016631  0x000020ad branch  0x00004286 
+ 00016632  0x000020b0 ifetch  0x00000001 , 0x00000003 
+ 00016633  0x000020b1 beq  0x0000003d , 0x00004151 
+ 00016634  0x000020b2 branch  0x0000427f 
+ 00016635  0x000020b5 ifetch  0x00000001 , 0x00000003 
+ 00016636  0x000020b6 beq  0x0000003f , 0x000040fe 
+ 00016637  0x000020b7 branch  0x0000427f 
+ 00016638  0x000020b9 call  0x000041de 
+ 00016639  0x000020ba branch  0x00004286 
+ 00016640  0x000020bd fetch  0x00000001 , 0x0000429f 
+ 00016641  0x000020be store  0x00000001 , 0x00000177 
+ 00016642  0x000020bf call  0x0000691d 
+ 00016643  0x000020c0 call  0x00003f3e 
+ 00016644  0x000020c1 fetch  0x00000001 , 0x0000429a 
+ 00016645  0x000020c2 bne  0x00000000 , 0x0000427f 
+ 00016646  0x000020c3 fetch  0x00000001 , 0x000042a9 
+ 00016647  0x000020c4 beq  0x00000033 , 0x0000410c 
+ 00016648  0x000020c5 beq  0x00000034 , 0x0000410a 
+ 00016649  0x000020c6 branch  0x0000427f 
+ 00016650  0x000020c9 call  0x00003f82 
+ 00016651  0x000020ca branch  0x00004286 
+ 00016652  0x000020cc call  0x00003f6e 
+ 00016653  0x000020cd branch  0x00004286 
+ 00016654  0x000020d0 call  0x00003f3e 
+ 00016655  0x000020d1 fetch  0x00000001 , 0x0000429a 
+ 00016656  0x000020d2 bne  0x00000001 , 0x0000427f 
+ 00016657  0x000020d3 fetch  0x00000001 , 0x00004041 
+ 00016658  0x000020d4 bbit1  0x00000000 , 0x00004115 
+ 00016659  0x000020d5 call  0x00003f77 
+ 00016660  0x000020d6 branch  0x00004286 
+ 00016661  0x000020da call  0x00003f90 
+ 00016662  0x000020db branch  0x00004286 
+ 00016663  0x000020df ifetch  0x00000001 , 0x00000003 
+ 00016664  0x000020e0 beq  0x0000003d , 0x0000411a 
+ 00016665  0x000020e1 branch  0x0000427f 
+ 00016666  0x000020e3 ifetch  0x00000001 , 0x00000003 
+ 00016667  0x000020e4 beq  0x00000031 , 0x00004122 
+ 00016668  0x000020e5 beq  0x00000030 , 0x0000411e 
+ 00016669  0x000020e6 branch  0x0000427f 
+ 00016670  0x000020e8 call  0x00003f40 
+ 00016671  0x000020e9 branch  0x00004286 , 0x00000001 
+ 00016672  0x000020ea call  0x00003f9e 
+ 00016673  0x000020eb branch  0x00004286 
+ 00016674  0x000020ed call  0x00003f40 
+ 00016675  0x000020ee nbranch  0x00004286 , 0x00000001 
+ 00016676  0x000020ef call  0x000063ab 
+ 00016677  0x000020f0 call  0x00006414 
+ 00016678  0x000020f1 branch  0x00004286 
+ 00016679  0x000020f5 call  0x00003f43 
+ 00016680  0x000020f6 branch  0x00004286 
+ 00016681  0x000020f9 ifetch  0x00000001 , 0x00000003 
+ 00016682  0x000020fa beq  0x0000003d , 0x00004187 
+ 00016683  0x000020fb branch  0x0000427f 
+ 00016684  0x000020fe call  0x00003f3e 
+ 00016685  0x000020ff fetch  0x00000001 , 0x0000429a 
+ 00016686  0x00002100 bne  0x00000000 , 0x0000427f 
+ 00016687  0x00002101 call  0x0000638a 
+ 00016688  0x00002102 branch  0x00004286 
+ 00016689  0x00002109 arg  0x00004703 , 0x00000011 
+ 00016690  0x0000210a call  0x0000422b 
+ 00016691  0x0000210b storet  0x00000001 , 0x00004702 
+ 00016692  0x0000210c call  0x00003fd2 
+ 00016693  0x0000210d branch  0x00004286 
+ 00016694  0x00002110 arg  0x0000441a , 0x00000011 
+ 00016695  0x00002111 call  0x0000422b 
+ 00016696  0x00002112 storet  0x00000001 , 0x00004419 
+ 00016697  0x00002113 call  0x00003fd7 
+ 00016698  0x00002114 call  0x00005adb 
+ 00016699  0x00002115 branch  0x00004286 
+ 00016700  0x00002118 arg  0x00004140 , 0x00000005 
+ 00016701  0x00002119 call  0x00007ebf 
+ 00016702  0x0000211a call  0x00003fe0 
+ 00016703  0x0000211b branch  0x00004286 
+ 00016704  0x0000211e arg  0x000044f9 , 0x00000005 
+ 00016705  0x0000211f call  0x00007ebf 
+ 00016706  0x00002120 call  0x00003fdc 
+ 00016707  0x00002121 branch  0x00004286 
+ 00016708  0x00002124 arg  0x00000550 , 0x00000011 
+ 00016709  0x00002125 call  0x0000422b 
+ 00016710  0x00002126 storet  0x00000001 , 0x0000054f 
+ 00016711  0x00002127 call  0x00003fe4 
+ 00016712  0x00002128 branch  0x00004286 
+ 00016713  0x0000212b call  0x00007eb0 
+ 00016714  0x0000212c setarg  0x02dc6c00 
+ 00016715  0x0000212d idiv  0x00000002 
+ 00016716  0x0000212e call  0x00007efd 
+ 00016717  0x0000212f quotient  0x0000003f 
+ 00016718  0x00002130 store  0x00000002 , 0x000002a8 
+ 00016719  0x00002131 call  0x00003feb 
+ 00016720  0x00002132 branch  0x00004286 
+ 00016721  0x00002135 ifetch  0x00000001 , 0x00000003 
+ 00016722  0x00002136 sub  0x0000003f , 0x00000033 , 0x0000003e 
+ 00016723  0x00002137 nbranch  0x0000427f , 0x00000002 
+ 00016724  0x00002138 and  0x0000003f , 0x00000003 , 0x0000003f 
+ 00016725  0x00002139 store  0x00000001 , 0x00004812 
+ 00016726  0x0000213a branch  0x00004286 
+ 00016727  0x0000213d ifetch  0x00000003 , 0x00000003 
+ 00016728  0x0000213e store  0x00000003 , 0x0000414a 
+ 00016729  0x0000213f branch  0x00004286 
+ 00016730  0x00002142 call  0x000032ee 
+ 00016731  0x00002143 nbranch  0x0000427f , 0x00000005 
+ 00016732  0x00002144 ifetch  0x00000001 , 0x00000003 
+ 00016733  0x00002145 beq  0x00000053 , 0x00004160 
+ 00016734  0x00002146 beq  0x0000004d , 0x00004163 
+ 00016735  0x00002147 branch  0x0000427f 
+ 00016736  0x0000214a fetch  0x00000001 , 0x00004041 
+ 00016737  0x0000214b bbit1  0x00000001 , 0x00004166 
+ 00016738  0x0000214c branch  0x0000427f 
+ 00016739  0x0000214f fetch  0x00000001 , 0x00004041 
+ 00016740  0x00002150 bbit0  0x00000001 , 0x00004166 
+ 00016741  0x00002151 branch  0x0000427f 
+ 00016742  0x00002154 fetch  0x00000001 , 0x00004813 
+ 00016743  0x00002155 set1  0x00000004 , 0x0000003f 
+ 00016744  0x00002156 store  0x00000001 , 0x00004813 
+ 00016745  0x00002157 jam  0x00000018 , 0x00004272 
+ 00016746  0x00002158 branch  0x0000428c 
+ 00016747  0x0000215b arg  0x00004280 , 0x00000005 
+ 00016748  0x0000215c call  0x00007ebd 
+ 00016749  0x0000215d arg  0x00004282 , 0x00000005 
+ 00016750  0x0000215e call  0x00007ebd 
+ 00016751  0x0000215f arg  0x00004284 , 0x00000005 
+ 00016752  0x00002160 call  0x00007ebd 
+ 00016753  0x00002161 branch  0x00004286 
+ 00016754  0x00002164 ifetch  0x00000001 , 0x00000003 
+ 00016755  0x00002165 beq  0x00000031 , 0x00004176 
+ 00016756  0x00002166 beq  0x00000032 , 0x0000417c 
+ 00016757  0x00002167 branch  0x0000427f 
+ 00016758  0x00002169 ifetch  0x00000001 , 0x00000003 
+ 00016759  0x0000216a arg  0x000001b4 , 0x00000005 
+ 00016760  0x0000216b call  0x00007ebf 
+ 00016761  0x0000216c call  0x00006931 
+ 00016762  0x0000216d nrtn  0x00000028 
+ 00016763  0x0000216e branch  0x00004286 
+ 00016764  0x00002170 call  0x0000693d 
+ 00016765  0x00002171 branch  0x00004286 
+ 00016766  0x00002174 ifetch  0x00000001 , 0x00000003 
+ 00016767  0x00002175 fetcht  0x00000001 , 0x00004812 
+ 00016768  0x00002176 nsetflag  0x00000034 , 0x00000002 , 0x00000002 
+ 00016769  0x00002177 storet  0x00000001 , 0x00004812 
+ 00016770  0x00002178 branch  0x00004286 , 0x00000034 
+ 00016771  0x00002179 ifetch  0x00000001 , 0x00000003 
+ 00016772  0x0000217a arg  0x00004814 , 0x00000005 
+ 00016773  0x0000217b call  0x00007ebf 
+ 00016774  0x0000217c branch  0x00004286 
+ 00016775  0x0000217f set1  0x00000025 , 0x00000000 
+ 00016776  0x00002180 bpatch  0x00000096 , 0x00004032 
+ 00016777  0x00002181 arg  0x00000014 , 0x00000039 
+ 00016778  0x00002182 arg  0x00001000 , 0x00000005 
+ 00016779  0x00002183 call  0x0000497c 
+ 00016780  0x00002184 arg  0x00001000 , 0x00000011 
+ 00016781  0x00002185 fetch  0x00000001 , 0x00001000 
+ 00016782  0x00002186 compare  0x00000012 , 0x0000003f , 0x000000ff 
+ 00016783  0x00002187 call  0x00006b19 , 0x00000001 
+ 00016784  0x00002188 fetch  0x00000001 , 0x00001000 
+ 00016785  0x00002189 compare  0x00000013 , 0x0000003f , 0x000000ff 
+ 00016786  0x0000218a call  0x00006b45 , 0x00000001 
+ 00016787  0x0000218b branch  0x00004286 
+ 00016788  0x00002191 arg  0x00004827 , 0x00000011 
+ 00016789  0x00002192 arg  0x00000004 , 0x00000039 
+ 00016790  0x00002193 call  0x00004232 
+ 00016791  0x00002194 fetch  0x00000001 , 0x00004702 
+ 00016792  0x00002195 copy  0x0000003f , 0x00000039 
+ 00016793  0x00002196 arg  0x00004703 , 0x00000006 
+ 00016794  0x00002197 branch  0x00007f74 
+ 00016795  0x00002199 arg  0x00004824 , 0x00000011 
+ 00016796  0x0000219a force  0x00000007 , 0x00000039 
+ 00016797  0x0000219b call  0x00004232 
+ 00016798  0x0000219c call  0x00005b08 
+ 00016799  0x0000219d ifetch  0x00000001 , 0x00000006 
+ 00016800  0x0000219e copy  0x0000003f , 0x00000039 
+ 00016801  0x0000219f branch  0x00007f74 
+ 00016802  0x000021a3 arg  0x0000482e , 0x00000011 
+ 00016803  0x000021a4 arg  0x00000004 , 0x00000039 
+ 00016804  0x000021a5 call  0x00004232 
+ 00016805  0x000021a6 arg  0x00004140 , 0x00000011 
+ 00016806  0x000021a7 call  0x00007e9d 
+ 00016807  0x000021a8 branch  0x000068fa 
+ 00016808  0x000021aa arg  0x0000482b , 0x00000011 
+ 00016809  0x000021ab arg  0x00000007 , 0x00000039 
+ 00016810  0x000021ac call  0x00004232 
+ 00016811  0x000021ad arg  0x000044f9 , 0x00000011 
+ 00016812  0x000021ae call  0x00007e9d 
+ 00016813  0x000021af branch  0x000068fa 
+ 00016814  0x000021b3 arg  0x00004832 , 0x00000011 
+ 00016815  0x000021b4 arg  0x00000004 , 0x00000039 
+ 00016816  0x000021b5 call  0x00004232 
+ 00016817  0x000021b6 arg  0x00000006 , 0x00000039 
+ 00016818  0x000021b7 arg  0x00004804 , 0x00000006 
+ 00016819  0x000021b8 branch  0x00007f74 
+ 00016820  0x000021bb arg  0x00004836 , 0x00000011 
+ 00016821  0x000021bc arg  0x00000005 , 0x00000039 
+ 00016822  0x000021bd call  0x00004232 
+ 00016823  0x000021be arg  0x00000003 , 0x00000039 
+ 00016824  0x000021bf arg  0x0000414a , 0x00000006 
+ 00016825  0x000021c0 branch  0x00007f74 
+ 00016826  0x000021c3 arg  0x00004853 , 0x00000011 
+ 00016827  0x000021c4 arg  0x00000004 , 0x00000039 
+ 00016828  0x000021c5 call  0x00004232 
+ 00016829  0x000021c6 call  0x00006988 
+ 00016830  0x000021c7 call  0x00004253 
+ 00016831  0x000021c8 branch  0x000068fa 
+ 00016832  0x000021cc call  0x00006929 
+ 00016833  0x000021cd arg  0x00004860 , 0x00000011 
+ 00016834  0x000021ce arg  0x00000004 , 0x00000039 
+ 00016835  0x000021cf call  0x00004232 
+ 00016836  0x000021d0 fetch  0x00000001 , 0x000001b3 
+ 00016837  0x000021d1 beq  0x00000033 , 0x000041c8 
+ 00016838  0x000021d2 beq  0x00000034 , 0x000041c8 
+ 00016839  0x000021d3 branch  0x000068fa 
+ 00016840  0x000021d5 istore  0x00000001 , 0x0000000a 
+ 00016841  0x000021d6 call  0x0000424e 
+ 00016842  0x000021d7 arg  0x000001b4 , 0x00000011 
+ 00016843  0x000021d8 call  0x00007e9d 
+ 00016844  0x000021d9 branch  0x000068fa 
+ 00016845  0x000021dc set1  0x00000025 , 0x00000000 
+ 00016846  0x000021dd bpatch  0x00000097 , 0x00004032 
+ 00016847  0x000021de arg  0x00004864 , 0x00000011 
+ 00016848  0x000021df arg  0x00000004 , 0x00000039 
+ 00016849  0x000021e0 call  0x00004232 
+ 00016850  0x000021e1 call  0x000041d4 
+ 00016851  0x000021e2 branch  0x000068fa 
+ 00016852  0x000021e4 arg  0x00000018 , 0x00000011 
+ 00016853  0x000021e5 arg  0x00000001 , 0x00000039 
+ 00016854  0x000021e6 branch  0x00007e9e 
+ 00016855  0x000021e9 rtn 
+ 00016856  0x000021ed arg  0x00004873 , 0x00000011 
+ 00016857  0x000021ee arg  0x00000005 , 0x00000039 
+ 00016858  0x000021ef call  0x00004232 
+ 00016859  0x000021f0 arg  0x00004814 , 0x00000011 
+ 00016860  0x000021f1 call  0x00007e9d 
+ 00016861  0x000021f2 branch  0x000068fa 
+ 00016862  0x000021f6 arg  0x0000487c , 0x00000011 
+ 00016863  0x000021f7 arg  0x00000007 , 0x00000039 
+ 00016864  0x000021f8 call  0x00004232 
+ 00016865  0x000021f9 fetch  0x00000001 , 0x00004812 
+ 00016866  0x000021fa copy  0x0000003f , 0x00000011 
+ 00016867  0x000021fb fetch  0x00000001 , 0x00004040 
+ 00016868  0x000021fc isolate1  0x00000000 , 0x0000003f 
+ 00016869  0x000021fd setflag  0x00000001 , 0x00000003 , 0x00000011 
+ 00016870  0x000021fe isolate1  0x00000001 , 0x0000003f 
+ 00016871  0x000021ff setflag  0x00000001 , 0x00000005 , 0x00000011 
+ 00016872  0x00002200 fetch  0x00000001 , 0x00004041 
+ 00016873  0x00002201 isolate1  0x00000001 , 0x0000003f 
+ 00016874  0x00002202 setflag  0x00000001 , 0x00000004 , 0x00000011 
+ 00016875  0x00002203 isolate1  0x00000000 , 0x0000003f 
+ 00016876  0x00002204 setflag  0x00000001 , 0x00000006 , 0x00000011 
+ 00016877  0x00002205 copy  0x00000011 , 0x0000003f 
+ 00016878  0x00002206 istore  0x00000001 , 0x0000000a 
+ 00016879  0x00002207 branch  0x000068fa 
+ 00016880  0x0000220a setarg  0x009e8b33 
+ 00016881  0x0000220b store  0x00000003 , 0x00004147 
+ 00016882  0x0000220c fetch  0x00000001 , 0x000042a4 
+ 00016883  0x0000220d set1  0x00000000 , 0x0000003f 
+ 00016884  0x0000220e store  0x00000001 , 0x000042a4 
+ 00016885  0x0000220f branch  0x00004636 
+ 00016886  0x00002212 call  0x00003f3e 
+ 00016887  0x00002213 fetch  0x00000001 , 0x0000429a 
+ 00016888  0x00002214 bne  0x00000000 , 0x0000427f 
+ 00016889  0x00002215 call  0x00003f8a 
+ 00016890  0x00002216 fetch  0x00000001 , 0x000042a4 
+ 00016891  0x00002217 set1  0x00000001 , 0x0000003f 
+ 00016892  0x00002218 store  0x00000001 , 0x000042a4 
+ 00016893  0x00002219 setarg  0x00000200 
+ 00016894  0x0000221a store  0x00000002 , 0x0000481a 
+ 00016895  0x0000221b arg  0x0000486c , 0x00000011 
+ 00016896  0x0000221c arg  0x00000006 , 0x00000039 
+ 00016897  0x0000221d call  0x00004232 
+ 00016898  0x0000221e call  0x00007f74 
+ 00016899  0x0000221f branch  0x0000428c 
+ 00016900  0x00002224 arg  0x0000481c , 0x00000011 
+ 00016901  0x00002225 arg  0x00000004 , 0x00000039 
+ 00016902  0x00002226 call  0x00004232 
+ 00016903  0x00002227 fetch  0x00000001 , 0x0000054f 
+ 00016904  0x00002228 copy  0x0000003f , 0x00000039 
+ 00016905  0x00002229 arg  0x00000550 , 0x00000006 
+ 00016906  0x0000222a branch  0x00007f74 
+ 00016907  0x0000222f arg  0x0000485b , 0x00000011 
+ 00016908  0x00002230 arg  0x00000005 , 0x00000039 
+ 00016909  0x00002231 call  0x00004232 
+ 00016910  0x00002232 call  0x00004247 
+ 00016911  0x00002233 setarg  0x00000054 
+ 00016912  0x00002234 istore  0x00000001 , 0x0000000a 
+ 00016913  0x00002235 call  0x00004244 
+ 00016914  0x00002236 arg  0x00004280 , 0x00000011 
+ 00016915  0x00002237 call  0x00007e9b 
+ 00016916  0x00002238 call  0x00004247 
+ 00016917  0x00002239 setarg  0x00000041 
+ 00016918  0x0000223a istore  0x00000001 , 0x0000000a 
+ 00016919  0x0000223b call  0x00004244 
+ 00016920  0x0000223c arg  0x00004282 , 0x00000011 
+ 00016921  0x0000223d call  0x00007e9b 
+ 00016922  0x0000223e call  0x00004247 
+ 00016923  0x0000223f setarg  0x0000004f 
+ 00016924  0x00002240 istore  0x00000001 , 0x0000000a 
+ 00016925  0x00002241 call  0x00004244 
+ 00016926  0x00002242 arg  0x00004284 , 0x00000011 
+ 00016927  0x00002243 call  0x00007e9b 
+ 00016928  0x00002244 branch  0x00007f74 
+ 00016929  0x00002246 call  0x00007f6e 
+ 00016930  0x00002247 call  0x00004247 
+ 00016931  0x00002248 arg  0x00000182 , 0x00000011 
+ 00016932  0x00002249 call  0x00007e9d 
+ 00016933  0x0000224a call  0x0000424e 
+ 00016934  0x0000224b arg  0x0000017f , 0x00000011 
+ 00016935  0x0000224c call  0x00007e99 
+ 00016936  0x0000224d call  0x0000424e 
+ 00016937  0x0000224e call  0x000041d4 
+ 00016938  0x0000224f branch  0x000068fa 
+ 00016939  0x0000225b call  0x0000422d 
+ 00016940  0x0000225c branch  0x0000497c 
+ 00016941  0x0000225e call  0x00004269 
+ 00016942  0x0000225f copy  0x0000003f , 0x00000002 
+ 00016943  0x00002260 copy  0x0000003f , 0x00000039 
+ 00016944  0x00002261 copy  0x00000011 , 0x00000005 
+ 00016945  0x00002262 rtn 
+ 00016946  0x00002266 call  0x00007f6e 
+ 00016947  0x00002267 call  0x00004241 
+ 00016948  0x00002269 copy  0x00000011 , 0x00000006 
+ 00016949  0x0000226a call  0x00004976 
+ 00016950  0x0000226b branch  0x00004244 
+ 00016951  0x0000226f ifetch  0x00000001 , 0x00000003 
+ 00016952  0x00002270 ifetcht  0x00000001 , 0x00000012 
+ 00016953  0x00002271 isub  0x00000002 , 0x0000003e 
+ 00016954  0x00002272 disable  0x00000001 
+ 00016955  0x00002273 nbranch  0x00004240 , 0x00000005 
+ 00016956  0x00002274 increase  0x00000001 , 0x00000012 
+ 00016957  0x00002275 loop  0x00004237 
+ 00016958  0x00002276 enable  0x00000001 
+ 00016959  0x00002277 rtn 
+ 00016960  0x00002279 branch  0x00004251 
+ 00016961  0x0000227d setarg  0x0000002b 
+ 00016962  0x0000227e istore  0x00000001 , 0x0000000a 
+ 00016963  0x0000227f rtn 
+ 00016964  0x00002282 setarg  0x0000003a 
+ 00016965  0x00002283 istore  0x00000001 , 0x0000000a 
+ 00016966  0x00002284 rtn 
+ 00016967  0x00002288 setarg  0x0000003e 
+ 00016968  0x00002289 istore  0x00000001 , 0x0000000a 
+ 00016969  0x0000228a rtn 
+ 00016970  0x0000228c setarg  0x0000004e 
+ 00016971  0x0000228d istore  0x00000001 , 0x0000000a 
+ 00016972  0x0000228e call  0x000068fa 
+ 00016973  0x0000228f branch  0x00004286 
+ 00016974  0x00002294 setarg  0x0000002c 
+ 00016975  0x00002295 istore  0x00000001 , 0x0000000a 
+ 00016976  0x00002296 rtn 
+ 00016977  0x00002299 copy  0x00000011 , 0x00000003 
+ 00016978  0x0000229a rtn 
+ 00016979  0x0000229d arg  0x00000195 , 0x00000013 
+ 00016980  0x0000229e arg  0x00000004 , 0x00000039 
+ 00016981  0x000022a0 copy  0x00000039 , 0x0000003f 
+ 00016982  0x000022a1 store  0x00000001 , 0x00000161 
+ 00016983  0x000022a2 ifetch  0x00000001 , 0x00000013 
+ 00016984  0x000022a3 beq  0x00000033 , 0x0000425b 
+ 00016985  0x000022a4 beq  0x00000034 , 0x0000425b 
+ 00016986  0x000022a5 branch  0x00004267 
+ 00016987  0x000022a7 call  0x00004247 
+ 00016988  0x000022a8 ifetch  0x00000001 , 0x00000013 
+ 00016989  0x000022a9 istore  0x00000001 , 0x0000000a 
+ 00016990  0x000022aa increase  0x00000001 , 0x00000013 
+ 00016991  0x000022ab call  0x0000424e 
+ 00016992  0x000022ac copy  0x00000013 , 0x00000011 
+ 00016993  0x000022ad call  0x00007e9d 
+ 00016994  0x000022af increase  0x00000006 , 0x00000013 
+ 00016995  0x000022b0 fetch  0x00000001 , 0x00000161 
+ 00016996  0x000022b1 copy  0x0000003f , 0x00000039 
+ 00016997  0x000022b2 loop  0x00004255 
+ 00016998  0x000022b3 rtn 
+ 00016999  0x000022b5 increase  0x00000001 , 0x00000013 
+ 00017000  0x000022b6 branch  0x00004262 
+ 00017001  0x000022bb set1  0x00000025 , 0x00000000 
+ 00017002  0x000022bc bpatch  0x00000098 , 0x00004033 
+ 00017003  0x000022bd hfetch  0x00000002 , 0x00008058 
+ 00017004  0x000022be isub  0x00000003 , 0x0000003f 
+ 00017005  0x000022bf rtn  0x00000005 
+ 00017006  0x000022c0 branch  0x00004273 , 0x00000002 
+ 00017007  0x000022c2 fetcht  0x00000002 , 0x0000480e 
+ 00017008  0x000022c3 iadd  0x00000002 , 0x0000003f 
+ 00017009  0x000022c4 increase  0xfffffffe , 0x0000003f 
+ 00017010  0x000022c5 rtn 
+ 00017011  0x000022c7 call  0x00004278 
+ 00017012  0x000022c8 iadd  0x00000003 , 0x00000002 
+ 00017013  0x000022c9 hfetch  0x00000002 , 0x00008058 
+ 00017014  0x000022ca isub  0x00000002 , 0x0000003f 
+ 00017015  0x000022cb branch  0x0000426f 
+ 00017016  0x000022ce arg  0x00004fff , 0x0000003f 
+ 00017017  0x000022cf increase  0x00000001 , 0x0000003f 
+ 00017018  0x000022d0 arg  0x00004a00 , 0x00000002 
+ 00017019  0x000022d1 isub  0x00000002 , 0x0000003f 
+ 00017020  0x000022d2 rtn 
+ 00017021  0x000022d5 fetcht  0x00000002 , 0x0000480e 
+ 00017022  0x000022d6 branch  0x00006903 
+ 00017023  0x000022dc set1  0x00000025 , 0x00000000 
+ 00017024  0x000022dd bpatch  0x00000099 , 0x00004033 
+ 00017025  0x000022de call  0x00007f6e 
+ 00017026  0x000022df setarg  0x00525245 
+ 00017027  0x000022e0 istore  0x00000003 , 0x0000000a 
+ 00017028  0x000022e1 call  0x000068fa 
+ 00017029  0x000022e2 branch  0x0000428c 
+ 00017030  0x000022e5 set1  0x00000025 , 0x00000000 
+ 00017031  0x000022e6 bpatch  0x0000009a , 0x00004033 
+ 00017032  0x000022e7 call  0x00007f6e 
+ 00017033  0x000022e8 setarg  0x00004b4f 
+ 00017034  0x000022e9 istore  0x00000002 , 0x0000000a 
+ 00017035  0x000022ea call  0x000068fa 
+ 00017036  0x000022ed set1  0x00000025 , 0x00000000 
+ 00017037  0x000022ee bpatch  0x0000009b , 0x00004033 
+ 00017038  0x000022ef call  0x0000427d 
+ 00017039  0x000022f1 setarg  0x00000000 
+ 00017040  0x000022f2 store  0x00000002 , 0x0000480e 
+ 00017041  0x000022f3 store  0x00000004 , 0x0000480a 
+ 00017042  0x000022f4 rtn 
+ 00017043  0x000022f8 call  0x00007db2 
+ 00017044  0x000022f9 call  0x00003f94 
+ 00017045  0x000022fa setarg  0x0000429f 
+ 00017046  0x000022fb store  0x00000002 , 0x0000428c 
+ 00017047  0x000022fc setarg  0x000042be 
+ 00017048  0x000022fd store  0x00000002 , 0x00004292 
+ 00017049  0x000022fe setarg  0x00007cdb 
+ 00017050  0x000022ff store  0x00000002 , 0x00004290 
+ 00017051  0x00002300 jam  0x00000005 , 0x0000025a 
+ 00017052  0x00002301 jam  0x00000000 , 0x0000026e 
+ 00017053  0x00002302 jam  0x0000001b , 0x00004272 
+ 00017054  0x00002303 rtn 
+ 00017055  0x00002307 disable  0x00000001 
+ 00017056  0x00002308 call  0x00003f3e 
+ 00017057  0x0000230a jam  0x0000001b , 0x0000041c 
+ 00017058  0x0000230b fetch  0x00000001 , 0x0000429a 
+ 00017059  0x0000230c compare  0x00000002 , 0x0000003f , 0x00000003 
+ 00017060  0x0000230d nrtn  0x00000001 
+ 00017061  0x0000230e jam  0x00000000 , 0x000043d2 
+ 00017062  0x0000230f rtn 
+ 00017063  0x00002312 fetch  0x00000001 , 0x00000340 
+ 00017064  0x00002313 bbit0  0x00000000 , 0x000042b0 
+ 00017065  0x00002314 fetch  0x00000006 , 0x00000342 
+ 00017066  0x00002315 fetcht  0x00000006 , 0x000003d0 
+ 00017067  0x00002316 isub  0x00000002 , 0x0000003e 
+ 00017068  0x00002317 nrtn  0x00000005 
+ 00017069  0x00002319 fetch  0x00000006 , 0x000003d0 
+ 00017070  0x0000231a store  0x00000006 , 0x000044e7 
+ 00017071  0x0000231b rtn 
+ 00017072  0x0000231e arg  0x000000ff , 0x00000011 
+ 00017073  0x0000231f call  0x00005b52 
+ 00017074  0x00002320 nrtn  0x00000005 
+ 00017075  0x00002321 ifetch  0x00000002 , 0x00000006 
+ 00017076  0x00002322 fetcht  0x00000002 , 0x00000270 
+ 00017077  0x00002323 isub  0x00000002 , 0x0000003e 
+ 00017078  0x00002324 nrtn  0x00000005 
+ 00017079  0x00002325 fetch  0x00000001 , 0x0000026e 
+ 00017080  0x00002326 increase  0x00000001 , 0x0000003f 
+ 00017081  0x00002327 store  0x00000001 , 0x0000026e 
+ 00017082  0x00002328 fetcht  0x00000001 , 0x0000026f 
+ 00017083  0x00002329 isub  0x00000002 , 0x0000003e 
+ 00017084  0x0000232a branch  0x000042ad , 0x00000002 
+ 00017085  0x0000232b rtn 
+ 00017086  0x0000232e copy  0x00000013 , 0x0000003f 
+ 00017087  0x0000232f beq  0x00000015 , 0x000042c5 
+ 00017088  0x00002330 beq  0x00000014 , 0x000042d7 
+ 00017089  0x00002331 and  0x0000003f , 0x0000000f , 0x00000002 
+ 00017090  0x00002332 and_into  0x000000f0 , 0x0000003f 
+ 00017091  0x00002333 beq  0x00000050 , 0x000042cd 
+ 00017092  0x00002334 rtn 
+ 00017093  0x00002337 setarg  0x00000000 
+ 00017094  0x00002338 store  0x00000006 , 0x000044e7 
+ 00017095  0x00002339 jam  0x00000000 , 0x0000026e 
+ 00017096  0x0000233a setarg  0x00000000 
+ 00017097  0x0000233b store  0x00000005 , 0x00000ff1 
+ 00017098  0x0000233c jam  0x00000001 , 0x00000ff0 
+ 00017099  0x0000233d call  0x00007cdb 
+ 00017100  0x0000233e branch  0x00003f8a 
+ 00017101  0x00002341 rtn 
+ 00017102  0x00002342 fetch  0x00000001 , 0x000043d2 
+ 00017103  0x00002343 rtn  0x00000034 
+ 00017104  0x00002344 fetch  0x00000001 , 0x0000025a 
+ 00017105  0x00002345 rtn  0x00000034 
+ 00017106  0x00002346 increase  0xffffffff , 0x0000003f 
+ 00017107  0x00002347 store  0x00000001 , 0x0000025a 
+ 00017108  0x00002348 nrtn  0x00000034 
+ 00017109  0x00002349 call  0x000042d8 
+ 00017110  0x0000234a branch  0x00003f8e 
+ 00017111  0x0000234e branch  0x00003f8c 
+ 00017112  0x00002352 jam  0x00000005 , 0x0000025a 
+ 00017113  0x00002353 fetch  0x00000001 , 0x00000267 
+ 00017114  0x00002354 beq  0x00000001 , 0x000042e1 
+ 00017115  0x00002355 beq  0x00000002 , 0x000042dd 
+ 00017116  0x00002356 rtn 
+ 00017117  0x00002358 fetch  0x00000006 , 0x0000025b 
+ 00017118  0x00002359 store  0x00000006 , 0x00000268 
+ 00017119  0x0000235a jam  0x00000001 , 0x00000267 
+ 00017120  0x0000235b rtn 
+ 00017121  0x0000235d fetch  0x00000006 , 0x00000261 
+ 00017122  0x0000235e store  0x00000006 , 0x00000268 
+ 00017123  0x0000235f jam  0x00000002 , 0x00000267 
+ 00017124  0x00002360 rtn 
+ 00017125  0x00002364 ifetch  0x00000002 , 0x00000003 
+ 00017126  0x00002365 branch  0x00004490 , 0x00000034 
+ 00017127  0x00002366 iforce  0x00000013 
+ 00017128  0x00002367 ifetch  0x00000001 , 0x00000003 
+ 00017129  0x00002368 store  0x00000001 , 0x00000293 
+ 00017130  0x00002369 iforce  0x00000011 
+ 00017131  0x0000236a bbit0  0x00000006 , 0x000042ed 
+ 00017132  0x0000236b increase  0xfffffffe , 0x00000013 
+ 00017133  0x0000236d ifetch  0x00000002 , 0x00000003 
+ 00017134  0x0000236e rshift4  0x0000003f , 0x00000039 
+ 00017135  0x0000236f and  0x0000003f , 0x0000000f , 0x00000008 
+ 00017136  0x00002370 iadd  0x00000011 , 0x00000011 
+ 00017137  0x00002371 rshift8  0x0000003f , 0x0000003f 
+ 00017138  0x00002372 iadd  0x00000011 , 0x00000011 
+ 00017139  0x00002373 ifetch  0x00000001 , 0x00000003 
+ 00017140  0x00002374 iadd  0x00000011 , 0x0000003f 
+ 00017141  0x00002375 bne  0x000000ff , 0x00004319 
+ 00017142  0x00002376 add  0x00000013 , 0xfffffffc , 0x0000003f 
+ 00017143  0x00002377 isub  0x00000039 , 0x0000003e 
+ 00017144  0x00002378 nbranch  0x00004316 , 0x00000005 
+ 00017145  0x00002379 fetch  0x00000001 , 0x00000293 
+ 00017146  0x0000237a isolate0  0x00000007 , 0x0000003f 
+ 00017147  0x0000237b branch  0x00004302 , 0x00000001 
+ 00017148  0x0000237c set0  0x0000001b , 0x00000000 
+ 00017149  0x0000237d bmark1  0x0000001b , 0x00004302 
+ 00017150  0x0000237e and_into  0x00000007 , 0x0000003f 
+ 00017151  0x0000237f fetcht  0x00000001 , 0x0000028c 
+ 00017152  0x00002380 isub  0x00000002 , 0x0000003e 
+ 00017153  0x00002381 nbranch  0x00004316 , 0x00000005 
+ 00017154  0x00002383 setarg  0x00000640 
+ 00017155  0x00002384 force  0x00000007 , 0x00000007 
+ 00017156  0x00002385 call  0x00007e4c 
+ 00017157  0x00002386 deposit  0x00000008 
+ 00017158  0x00002387 call  0x00004320 
+ 00017159  0x00002388 rtn  0x00000028 
+ 00017160  0x00002389 fetch  0x00000001 , 0x00000293 
+ 00017161  0x0000238a iforce  0x00000011 
+ 00017162  0x0000238b rshift3  0x0000003f , 0x00000002 
+ 00017163  0x0000238c and_into  0x00000007 , 0x00000002 
+ 00017164  0x0000238d fetch  0x00000001 , 0x0000028b 
+ 00017165  0x0000238e isub  0x00000002 , 0x0000003f 
+ 00017166  0x0000238f sub  0x0000003f , 0x00000000 , 0x0000003f 
+ 00017167  0x00002390 and_into  0x00000007 , 0x0000003f 
+ 00017168  0x00002391 bne  0x00000001 , 0x00004316 
+ 00017169  0x00002392 storet  0x00000001 , 0x0000028b 
+ 00017170  0x00002393 fetch  0x00000001 , 0x00000272 
+ 00017171  0x00002394 increase  0x00000001 , 0x0000003f 
+ 00017172  0x00002395 store  0x00000001 , 0x00000272 
+ 00017173  0x00002396 branch  0x00004319 
+ 00017174  0x00002399 fetch  0x00000001 , 0x00000273 
+ 00017175  0x0000239a increase  0x00000001 , 0x0000003f 
+ 00017176  0x0000239b store  0x00000001 , 0x00000273 
+ 00017177  0x0000239d hfetch  0x00000002 , 0x00008058 
+ 00017178  0x0000239e iforce  0x00000003 
+ 00017179  0x0000239f ifetch  0x00000002 , 0x00000003 
+ 00017180  0x000023a0 iadd  0x00000003 , 0x00000003 
+ 00017181  0x000023a1 deposit  0x00000003 
+ 00017182  0x000023a2 hstore  0x00000002 , 0x00008058 
+ 00017183  0x000023a3 rtn 
+ 00017184  0x000023a6 disable  0x00000028 
+ 00017185  0x000023a7 rtn  0x00000034 
+ 00017186  0x000023a8 beq  0x00000001 , 0x00004328 
+ 00017187  0x000023a9 beq  0x00000002 , 0x00004346 
+ 00017188  0x000023aa beq  0x00000005 , 0x00004507 
+ 00017189  0x000023ab beq  0x00000006 , 0x000044dd 
+ 00017190  0x000023ac beq  0x00000008 , 0x00004a56 
+ 00017191  0x000023ad rtn 
+ 00017192  0x000023b0 set0  0x00000018 , 0x00000000 
+ 00017193  0x000023b1 ifetch  0x00000001 , 0x00000003 
+ 00017194  0x000023b2 beq  0x000000da , 0x0000432f 
+ 00017195  0x000023b3 beq  0x000000ac , 0x00004336 
+ 00017196  0x000023b4 beq  0x000000ad , 0x0000433a 
+ 00017197  0x000023b5 beq  0x000000de , 0x00004344 
+ 00017198  0x000023b6 rtn 
+ 00017199  0x000023b8 bmark1  0x00000017 , 0x00004333 
+ 00017200  0x000023b9 force  0x000000da , 0x00000002 
+ 00017201  0x000023ba setarg  0x00ededdc 
+ 00017202  0x000023bb call  0x0000433c 
+ 00017203  0x000023bd force  0x000000ac , 0x00000002 
+ 00017204  0x000023be setarg  0x00eeefaf 
+ 00017205  0x000023bf branch  0x0000433c 
+ 00017206  0x000023c1 set1  0x00000017 , 0x00000000 
+ 00017207  0x000023c2 force  0x000000ad , 0x00000002 
+ 00017208  0x000023c3 setarg  0x00edacef 
+ 00017209  0x000023c4 branch  0x0000433c 
+ 00017210  0x000023c6 force  0x000000de , 0x00000002 
+ 00017211  0x000023c7 setarg  0x00d0d0ad 
+ 00017212  0x000023c9 lshift8  0x0000003f , 0x0000003f 
+ 00017213  0x000023ca ior  0x00000002 , 0x00000002 
+ 00017214  0x000023cb call  0x00004972 
+ 00017215  0x000023cc istoret  0x00000004 , 0x0000000a 
+ 00017216  0x000023cd force  0x00000001 , 0x00000007 
+ 00017217  0x000023ce force  0x00000004 , 0x00000039 
+ 00017218  0x000023cf set0  0x00000013 , 0x00000000 
+ 00017219  0x000023d0 branch  0x00004378 
+ 00017220  0x000023d2 force  0x00000000 , 0x00000030 
+ 00017221  0x000023d3 branch  0x00004933 
+ 00017222  0x000023d6 copy  0x00000039 , 0x00000030 
+ 00017223  0x000023d7 call  0x00004371 
+ 00017224  0x000023d8 force  0x00000000 , 0x00000012 
+ 00017225  0x000023d9 call  0x00004972 
+ 00017226  0x000023da copy  0x00000030 , 0x00000039 
+ 00017227  0x000023db ifetch  0x00000001 , 0x00000003 
+ 00017228  0x000023dc setarg  0x00000001 
+ 00017229  0x000023dd istore  0x00000001 , 0x0000000a 
+ 00017230  0x000023de set0  0x0000001a , 0x00000000 
+ 00017231  0x000023e0 ifetch  0x00000001 , 0x00000003 
+ 00017232  0x000023e1 increase  0x00000001 , 0x00000012 
+ 00017233  0x000023e2 beq  0x0000001c , 0x0000435b 
+ 00017234  0x000023e3 compare  0x00000004 , 0x00000012 , 0x000000ff 
+ 00017235  0x000023e4 nbranch  0x0000435d , 0x00000001 
+ 00017236  0x000023e5 setflag  0x00000034 , 0x0000001a , 0x00000000 
+ 00017237  0x000023e6 bne  0x0000003a , 0x0000435d 
+ 00017238  0x000023e7 setarg  0x000007d0 
+ 00017239  0x000023e8 force  0x00000000 , 0x00000007 
+ 00017240  0x000023e9 call  0x00007e4c 
+ 00017241  0x000023ea set1  0x00000018 , 0x00000000 
+ 00017242  0x000023eb rtn 
+ 00017243  0x000023ee compare  0x00000006 , 0x00000012 , 0x000000ff 
+ 00017244  0x000023ef branch  0x00004366 , 0x00000001 
+ 00017245  0x000023f1 isolate1  0x0000001a , 0x00000000 
+ 00017246  0x000023f2 call  0x00004368 , 0x00000001 
+ 00017247  0x000023f3 istore  0x00000001 , 0x0000000a 
+ 00017248  0x000023f4 loop  0x0000434f 
+ 00017249  0x000023f5 set0  0x00000019 , 0x00000000 
+ 00017250  0x000023f6 copy  0x00000030 , 0x00000039 
+ 00017251  0x000023f7 set1  0x00000013 , 0x00000000 
+ 00017252  0x000023f8 force  0x00000002 , 0x00000007 
+ 00017253  0x000023f9 branch  0x00004378 
+ 00017254  0x000023fb set1  0x00000019 , 0x00000000 
+ 00017255  0x000023fc branch  0x0000435d 
+ 00017256  0x000023ff rtnmark1  0x00000019 
+ 00017257  0x00002400 compare  0x0000000a , 0x00000012 , 0x000000ff 
+ 00017258  0x00002401 branch  0x0000436f , 0x00000001 
+ 00017259  0x00002402 compare  0x0000000b , 0x00000012 , 0x000000ff 
+ 00017260  0x00002403 nrtn  0x00000001 
+ 00017261  0x00002404 setarg  0x00000012 
+ 00017262  0x00002405 rtn 
+ 00017263  0x00002407 setarg  0x000000e9 
+ 00017264  0x00002408 rtn 
+ 00017265  0x0000240b fetch  0x00000001 , 0x00000293 
+ 00017266  0x0000240c increase  0x00000001 , 0x0000003f 
+ 00017267  0x0000240d and_into  0x00000007 , 0x0000003f 
+ 00017268  0x0000240e store  0x00000001 , 0x0000028c 
+ 00017269  0x0000240f force  0x00000000 , 0x00000039 
+ 00017270  0x00002410 force  0x00000000 , 0x00000007 
+ 00017271  0x00002411 set0  0x00000013 , 0x00000000 
+ 00017272  0x00002414 add  0x00000039 , 0x00000004 , 0x00000012 
+ 00017273  0x00002415 fetch  0x00000001 , 0x0000028c 
+ 00017274  0x00002416 lshift3  0x0000003f , 0x00000013 
+ 00017275  0x00002417 isolate0  0x00000014 , 0x00000000 
+ 00017276  0x00002418 nsetflag  0x00000001 , 0x00000006 , 0x00000013 
+ 00017277  0x00002419 branch  0x0000437f , 0x00000001 
+ 00017278  0x0000241a increase  0x00000002 , 0x00000012 
+ 00017279  0x0000241c bmark0  0x00000013 , 0x00004389 
+ 00017280  0x0000241d set1  0x00000007 , 0x00000013 
+ 00017281  0x0000241e fetch  0x00000001 , 0x00000294 
+ 00017282  0x0000241f ior  0x00000013 , 0x00000013 
+ 00017283  0x00002420 increase  0x00000001 , 0x0000003f 
+ 00017284  0x00002421 and_into  0x00000007 , 0x0000003f 
+ 00017285  0x00002422 store  0x00000001 , 0x00000294 
+ 00017286  0x00002423 fetch  0x00000001 , 0x00000274 
+ 00017287  0x00002424 increase  0x00000001 , 0x0000003f 
+ 00017288  0x00002425 store  0x00000001 , 0x00000274 
+ 00017289  0x00002427 fetch  0x00000002 , 0x0000028f 
+ 00017290  0x00002428 iforce  0x0000000a 
+ 00017291  0x00002429 deposit  0x00000012 
+ 00017292  0x0000242a isolate1  0x00000013 , 0x00000000 
+ 00017293  0x0000242b setflag  0x00000001 , 0x0000000f , 0x0000003f 
+ 00017294  0x0000242c istore  0x00000002 , 0x0000000a 
+ 00017295  0x0000242d copy  0x0000000a , 0x00000011 
+ 00017296  0x0000242e deposit  0x00000013 
+ 00017297  0x0000242f istore  0x00000001 , 0x0000000a 
+ 00017298  0x00002430 lshift4  0x00000039 , 0x0000003f 
+ 00017299  0x00002431 ior  0x00000007 , 0x0000003f 
+ 00017300  0x00002432 iadd  0x00000013 , 0x00000013 
+ 00017301  0x00002433 istore  0x00000002 , 0x0000000a 
+ 00017302  0x00002434 rshift8  0x0000003f , 0x0000003f 
+ 00017303  0x00002435 iadd  0x00000013 , 0x0000003f 
+ 00017304  0x00002436 sub  0x0000003f , 0x000000ff , 0x0000003f 
+ 00017305  0x00002437 istore  0x00000001 , 0x0000000a 
+ 00017306  0x00002438 bmark0  0x00000014 , 0x0000439f 
+ 00017307  0x00002439 increase  0x00000004 , 0x00000039 
+ 00017308  0x0000243a copy  0x00000011 , 0x0000000a 
+ 00017309  0x0000243b call  0x00004986 
+ 00017310  0x0000243c istore  0x00000002 , 0x0000000a 
+ 00017311  0x0000243e fetch  0x00000002 , 0x0000028f 
+ 00017312  0x0000243f iadd  0x00000012 , 0x0000000a 
+ 00017313  0x00002440 increase  0x00000002 , 0x0000000a 
+ 00017314  0x00002441 deposit  0x0000000a 
+ 00017315  0x00002442 store  0x00000002 , 0x0000028f 
+ 00017316  0x00002443 hstore  0x00000002 , 0x0000805e 
+ 00017317  0x00002444 fetcht  0x00000002 , 0x0000028d 
+ 00017318  0x00002445 call  0x000043d8 
+ 00017319  0x00002446 call  0x000043ab 
+ 00017320  0x00002447 setarg  0x00000640 
+ 00017321  0x00002448 force  0x00000007 , 0x00000007 
+ 00017322  0x00002449 branch  0x00007e4c 
+ 00017323  0x0000244c setarg  0x00000190 
+ 00017324  0x0000244d force  0x00000001 , 0x00000007 
+ 00017325  0x0000244e call  0x00007e4c 
+ 00017326  0x0000244f set1  0x00000015 , 0x00000000 
+ 00017327  0x00002450 rtn 
+ 00017328  0x00002453 rtnmark0  0x00000015 
+ 00017329  0x00002454 force  0x00000001 , 0x00000007 
+ 00017330  0x00002455 call  0x00007e53 
+ 00017331  0x00002456 nrtn  0x00000034 
+ 00017332  0x00002457 fetch  0x00000002 , 0x0000028d 
+ 00017333  0x00002458 hstore  0x00000002 , 0x00008060 
+ 00017334  0x00002459 branch  0x000043ab 
+ 00017335  0x0000245c fetch  0x00000002 , 0x0000028f 
+ 00017336  0x0000245d fetcht  0x00000002 , 0x0000028d 
+ 00017337  0x0000245e isub  0x00000002 , 0x0000003e 
+ 00017338  0x0000245f branch  0x000043d6 , 0x00000005 
+ 00017339  0x00002460 copy  0x00000002 , 0x0000000a 
+ 00017340  0x00002461 ifetch  0x00000002 , 0x0000000a 
+ 00017341  0x00002462 iforce  0x00000011 
+ 00017342  0x00002463 iand  0x00000035 , 0x0000003f 
+ 00017343  0x00002464 iadd  0x0000000a , 0x0000000a 
+ 00017344  0x00002465 hfetch  0x00000002 , 0x00008110 
+ 00017345  0x00002466 isub  0x0000000a , 0x0000003f 
+ 00017346  0x00002467 iand  0x00000035 , 0x00000012 
+ 00017347  0x00002468 fetch  0x00000002 , 0x0000028f 
+ 00017348  0x00002469 isub  0x0000000a , 0x0000003f 
+ 00017349  0x0000246a iand  0x00000035 , 0x0000003f 
+ 00017350  0x0000246b isub  0x00000012 , 0x0000003f 
+ 00017351  0x0000246c nrtn  0x00000002 
+ 00017352  0x0000246d isolate0  0x0000000f , 0x00000011 
+ 00017353  0x0000246e branch  0x000043d1 , 0x00000001 
+ 00017354  0x0000246f fetch  0x00000001 , 0x00000272 
+ 00017355  0x00002470 rtn  0x00000034 
+ 00017356  0x00002471 increase  0xffffffff , 0x0000003f 
+ 00017357  0x00002472 store  0x00000001 , 0x00000272 
+ 00017358  0x00002473 fetch  0x00000001 , 0x00000274 
+ 00017359  0x00002474 increase  0xffffffff , 0x0000003f 
+ 00017360  0x00002475 store  0x00000001 , 0x00000274 
+ 00017361  0x00002477 copy  0x0000000a , 0x00000002 
+ 00017362  0x00002478 storet  0x00000002 , 0x0000028d 
+ 00017363  0x00002479 fetch  0x00000002 , 0x0000028f 
+ 00017364  0x0000247a call  0x000043d8 
+ 00017365  0x0000247b branch  0x000043b7 
+ 00017366  0x0000247d set0  0x00000015 , 0x00000000 
+ 00017367  0x0000247e rtn 
+ 00017368  0x00002481 isub  0x00000002 , 0x0000003f 
+ 00017369  0x00002482 iand  0x00000035 , 0x0000003f 
+ 00017370  0x00002483 isub  0x00000035 , 0x0000003f 
+ 00017371  0x00002484 sub  0x0000003f , 0x00000000 , 0x0000003f 
+ 00017372  0x00002485 store  0x00000002 , 0x00000291 
+ 00017373  0x00002486 rtn 
+ 00017374  0x00002489 fetch  0x00000002 , 0x0000028f 
+ 00017375  0x0000248a iadd  0x0000000a , 0x0000000a 
+ 00017376  0x0000248b rtn 
+ 00017377  0x00002490 rtn 
+ 00017378  0x00002493 set1  0x00000025 , 0x00000000 
+ 00017379  0x00002494 bpatch  0x000000ec , 0x0000403d 
+ 00017380  0x00002495 fetch  0x00000001 , 0x00004272 
+ 00017381  0x00002496 nrtn  0x00000034 
+ 00017382  0x00002498 call  0x000043e9 
+ 00017383  0x00002499 ncall  0x0000440e , 0x00000028 
+ 00017384  0x0000249a rtn 
+ 00017385  0x0000249d set1  0x00000025 , 0x00000000 
+ 00017386  0x0000249e bpatch  0x000000ed , 0x0000403d 
+ 00017387  0x0000249f copy  0x00000003 , 0x00000011 
+ 00017388  0x000024a0 arg  0x00000004 , 0x00000002 
+ 00017389  0x000024a1 ifetch  0x00000001 , 0x00000003 
+ 00017390  0x000024a2 beq  0x00000001 , 0x000043f4 
+ 00017391  0x000024a3 increase  0x00000001 , 0x00000002 
+ 00017392  0x000024a4 beq  0x00000002 , 0x000043f4 
+ 00017393  0x000024a5 copy  0x00000003 , 0x0000003f 
+ 00017394  0x000024a6 hstore  0x00000002 , 0x00008058 
+ 00017395  0x000024a7 rtn 
+ 00017396  0x000024a9 hfetch  0x00000002 , 0x00008112 
+ 00017397  0x000024aa isub  0x00000002 , 0x0000003e 
+ 00017398  0x000024ab nbranch  0x000043f4 , 0x00000002 
+ 00017399  0x000024ad disable  0x00000028 
+ 00017400  0x000024ae copy  0x00000011 , 0x00000003 
+ 00017401  0x000024af call  0x00004417 
+ 00017402  0x000024b0 iadd  0x00000002 , 0x00000002 
+ 00017403  0x000024b2 hfetch  0x00000002 , 0x00008112 
+ 00017404  0x000024b3 isub  0x00000002 , 0x0000003e 
+ 00017405  0x000024b4 nbranch  0x000043fb , 0x00000002 
+ 00017406  0x000024b5 copy  0x00000011 , 0x00000003 
+ 00017407  0x000024b6 ifetch  0x00000001 , 0x00000003 
+ 00017408  0x000024b7 beq  0x00000001 , 0x00004507 
+ 00017409  0x000024b8 beq  0x00000002 , 0x00004403 
+ 00017410  0x000024b9 branch  0x00003bf1 
+ 00017411  0x000024bb set1  0x00000025 , 0x00000000 
+ 00017412  0x000024bc bpatch  0x000000ee , 0x0000403d 
+ 00017413  0x000024bd copy  0x00000003 , 0x00000011 
+ 00017414  0x000024be ifetch  0x00000002 , 0x00000003 
+ 00017415  0x000024bf copy  0x00000011 , 0x00000003 
+ 00017416  0x000024c0 fetcht  0x00000001 , 0x00000046 
+ 00017417  0x000024c1 icompare  0x000000ff , 0x00000002 
+ 00017418  0x000024c2 branch  0x000044dd , 0x00000001 
+ 00017419  0x000024c3 branch  0x000058ea , 0x00000036 
+ 00017420  0x000024c4 enable  0x00000028 
+ 00017421  0x000024c5 rtn 
+ 00017422  0x000024c7 set1  0x00000025 , 0x00000000 
+ 00017423  0x000024c8 bpatch  0x000000ef , 0x0000403d 
+ 00017424  0x000024c9 hfetch  0x00000002 , 0x00008058 
+ 00017425  0x000024ca iforce  0x00000003 
+ 00017426  0x000024cb call  0x00004417 
+ 00017427  0x000024cc iadd  0x00000003 , 0x00000003 
+ 00017428  0x000024cd deposit  0x00000003 
+ 00017429  0x000024ce hstore  0x00000002 , 0x00008058 
+ 00017430  0x000024cf rtn 
+ 00017431  0x000024d5 ifetch  0x00000001 , 0x00000003 
+ 00017432  0x000024d6 increase  0x00000002 , 0x00000003 
+ 00017433  0x000024d7 beq  0x00000002 , 0x0000441c 
+ 00017434  0x000024d8 ifetch  0x00000001 , 0x00000003 
+ 00017435  0x000024d9 rtn 
+ 00017436  0x000024db ifetch  0x00000002 , 0x00000003 
+ 00017437  0x000024dc rtn 
+ 00017438  0x000024df hfetch  0x00000002 , 0x0000805e 
+ 00017439  0x000024e0 increase  0xfffffffb , 0x0000000a 
+ 00017440  0x000024e1 iadd  0x0000000a , 0x0000000a 
+ 00017441  0x000024e2 rtn 
+ 00017442  0x000024e5 arg  0x00000004 , 0x00000002 
+ 00017443  0x000024e6 branch  0x00004425 
+ 00017444  0x000024e8 arg  0x00000002 , 0x00000002 
+ 00017445  0x000024ea set1  0x00000025 , 0x00000000 
+ 00017446  0x000024eb bpatch  0x000000f0 , 0x0000403e 
+ 00017447  0x000024ec increase  0x00000001 , 0x00000039 
+ 00017448  0x000024ed hfetch  0x00000002 , 0x0000805e 
+ 00017449  0x000024ee copy  0x0000003f , 0x0000000a 
+ 00017450  0x000024ef copy  0x00000039 , 0x0000003f 
+ 00017451  0x000024f0 istoret  0x00000001 , 0x0000000a 
+ 00017452  0x000024f1 increase  0xffffffff , 0x0000003f 
+ 00017453  0x000024f2 iadd  0x0000000a , 0x0000000a 
+ 00017454  0x000024f3 copy  0x0000000a , 0x0000003f 
+ 00017455  0x000024f4 store  0x00000002 , 0x0000029d 
+ 00017456  0x000024f5 copy  0x00000002 , 0x0000003f 
+ 00017457  0x000024f6 rtneq  0x00000002 
+ 00017458  0x000024f7 fetch  0x00000002 , 0x0000029d 
+ 00017459  0x000024f8 hstore  0x00000002 , 0x0000805e 
+ 00017460  0x000024f9 branch  0x0000443b 
+ 00017461  0x000024fc set1  0x00000025 , 0x00000000 
+ 00017462  0x000024fd bpatch  0x000000f1 , 0x0000403e 
+ 00017463  0x000024fe fetch  0x00000002 , 0x0000029d 
+ 00017464  0x000024ff branch  0x00003bf1 , 0x00000034 
+ 00017465  0x00002500 hstore  0x00000002 , 0x0000805e 
+ 00017466  0x00002501 branch  0x0000443b 
+ 00017467  0x00002504 setarg  0x00000000 
+ 00017468  0x00002505 store  0x00000002 , 0x0000029d 
+ 00017469  0x00002506 rtn 
+ 00017470  0x00002509 hfetcht  0x00000002 , 0x00008110 
+ 00017471  0x0000250a hfetch  0x00000002 , 0x0000805e 
+ 00017472  0x0000250b isub  0x00000002 , 0x00000011 
+ 00017473  0x0000250c nbranch  0x00004447 , 0x00000002 
+ 00017474  0x0000250d hfetcht  0x00000002 , 0x0000805a 
+ 00017475  0x0000250e hfetch  0x00000002 , 0x0000805c 
+ 00017476  0x0000250f isub  0x00000002 , 0x0000003f 
+ 00017477  0x00002510 isub  0x00000011 , 0x00000002 
+ 00017478  0x00002511 rtn 
+ 00017479  0x00002513 sub  0x00000011 , 0xffffffff , 0x00000002 
+ 00017480  0x00002514 rtn 
+ 00017481  0x0000251a set0  0x00000025 , 0x00000000 
+ 00017482  0x0000251b bpatch  0x000000cd , 0x00004019 
+ 00017483  0x0000251c fetch  0x00000001 , 0x00004132 
+ 00017484  0x0000251d rtnne  0x00000001 
+ 00017485  0x0000251e call  0x000044a3 
+ 00017486  0x0000251f call  0x00004494 
+ 00017487  0x00002520 call  0x000043b0 , 0x00000001 
+ 00017488  0x00002521 call  0x00004494 
+ 00017489  0x00002522 call  0x000043b7 , 0x00000001 
+ 00017490  0x00002523 branch  0x000044e6 
+ 00017491  0x00002524 rtnmark0  0x00000018 
+ 00017492  0x00002525 force  0x00000000 , 0x00000007 
+ 00017493  0x00002526 call  0x00007e53 
+ 00017494  0x00002527 nrtn  0x00000034 
+ 00017495  0x00002528 call  0x00004472 
+ 00017496  0x00002529 call  0x00004494 
+ 00017497  0x0000252a nrtn  0x00000001 
+ 00017498  0x0000252b set0  0x00000017 , 0x00000000 
+ 00017499  0x0000252c force  0x000000da , 0x00000002 
+ 00017500  0x0000252d setarg  0x00ededdc 
+ 00017501  0x0000252e call  0x0000433c 
+ 00017502  0x0000252f setarg  0x000007d0 
+ 00017503  0x00002530 force  0x00000000 , 0x00000007 
+ 00017504  0x00002531 branch  0x00007e4c 
+ 00017505  0x00002535 set0  0x00000025 , 0x00000000 
+ 00017506  0x00002536 bpatch  0x000000ce , 0x00004019 
+ 00017507  0x00002537 rtn  0x0000002b 
+ 00017508  0x00002538 setarg  0x00004aed 
+ 00017509  0x00002539 store  0x00000002 , 0x00004290 
+ 00017510  0x0000253b setarg  0x000001a0 
+ 00017511  0x0000253c store  0x00000002 , 0x000042ac 
+ 00017512  0x0000253e set0  0x00000025 , 0x00000000 
+ 00017513  0x0000253f bpatch  0x000000cf , 0x00004019 
+ 00017514  0x00002540 call  0x00006a0d 
+ 00017515  0x00002541 setarg  0x00001800 
+ 00017516  0x00002542 hstore  0x00000002 , 0x00008054 
+ 00017517  0x00002543 setarg  0x00001bff 
+ 00017518  0x00002544 hstore  0x00000002 , 0x00008056 
+ 00017519  0x00002545 setarg  0x00001c00 
+ 00017520  0x00002546 hstore  0x00000002 , 0x0000805a 
+ 00017521  0x00002547 call  0x00004489 
+ 00017522  0x00002549 set0  0x00000025 , 0x00000000 
+ 00017523  0x0000254a bpatch  0x000000d0 , 0x0000401a 
+ 00017524  0x0000254b hjam  0x00000000 , 0x00008062 
+ 00017525  0x0000254c jam  0x00000000 , 0x0000028b 
+ 00017526  0x0000254d jam  0x00000000 , 0x0000028c 
+ 00017527  0x0000254e jam  0x00000000 , 0x00000294 
+ 00017528  0x0000254f setarg  0x00001c00 
+ 00017529  0x00002550 store  0x00000002 , 0x0000028f 
+ 00017530  0x00002551 store  0x00000002 , 0x0000028d 
+ 00017531  0x00002552 hstore  0x00000002 , 0x0000805e 
+ 00017532  0x00002553 hstore  0x00000002 , 0x00008060 
+ 00017533  0x00002554 setarg  0x00001800 
+ 00017534  0x00002555 hstore  0x00000002 , 0x00008058 
+ 00017535  0x00002556 store  0x00000002 , 0x00000289 
+ 00017536  0x00002558 set0  0x00000025 , 0x00000000 
+ 00017537  0x00002559 bpatch  0x000000d1 , 0x0000401a 
+ 00017538  0x0000255a hfetch  0x00000002 , 0x00008050 
+ 00017539  0x0000255b set0  0x0000000f , 0x0000003f 
+ 00017540  0x0000255c hstore  0x00000002 , 0x00008050 
+ 00017541  0x0000255d call  0x00006909 
+ 00017542  0x0000255e hjam  0x00000001 , 0x00008043 
+ 00017543  0x0000255f hjam  0x00000081 , 0x00008062 
+ 00017544  0x00002560 branch  0x00004497 
+ 00017545  0x00002563 setarg  0x00001fff 
+ 00017546  0x00002564 hstore  0x00000002 , 0x0000805c 
+ 00017547  0x00002565 hfetch  0x00000001 , 0x00008081 
+ 00017548  0x00002566 or_into  0x00000007 , 0x0000003f 
+ 00017549  0x00002567 hstore  0x00000001 , 0x00008081 
+ 00017550  0x00002568 jam  0x000000ff , 0x0000029f 
+ 00017551  0x00002569 rtn 
+ 00017552  0x0000256c hfetch  0x00000002 , 0x00008116 
+ 00017553  0x0000256d hstore  0x00000002 , 0x00008058 
+ 00017554  0x0000256e set1  0x0000001b , 0x00000000 
+ 00017555  0x0000256f rtn 
+ 00017556  0x00002573 hfetch  0x00000001 , 0x00008062 
+ 00017557  0x00002574 isolate1  0x00000003 , 0x0000003f 
+ 00017558  0x00002575 rtn 
+ 00017559  0x00002578 setarg  0x00004803 
+ 00017560  0x00002579 store  0x00000002 , 0x00000295 
+ 00017561  0x0000257a store  0x00000002 , 0x00000297 
+ 00017562  0x0000257b force  0x00000001 , 0x00000002 
+ 00017563  0x0000257c iadd  0x00000002 , 0x0000003f 
+ 00017564  0x0000257d iadd  0x00000002 , 0x0000003f 
+ 00017565  0x0000257e increase  0x00000002 , 0x0000003f 
+ 00017566  0x0000257f store  0x00000002 , 0x00000299 
+ 00017567  0x00002580 setarg  0x00000000 
+ 00017568  0x00002581 store  0x00000001 , 0x0000029c 
+ 00017569  0x00002582 store  0x00000001 , 0x0000029b 
+ 00017570  0x00002583 rtn 
+ 00017571  0x00002586 set0  0x00000025 , 0x00000000 
+ 00017572  0x00002587 bpatch  0x000000d2 , 0x0000401a 
+ 00017573  0x00002588 hfetch  0x00000001 , 0x0000810c 
+ 00017574  0x00002589 iforce  0x00000012 
+ 00017575  0x0000258a bbit0  0x00000003 , 0x000044ad 
+ 00017576  0x0000258b hfetch  0x00000002 , 0x00008112 
+ 00017577  0x0000258c iforce  0x00000013 
+ 00017578  0x0000258d arg  0x0000044f , 0x00000002 
+ 00017579  0x0000258e isub  0x00000002 , 0x0000003e 
+ 00017580  0x0000258f nrtn  0x00000005 
+ 00017581  0x00002591 hfetch  0x00000002 , 0x00008058 
+ 00017582  0x00002592 iforce  0x00000003 
+ 00017583  0x00002593 call  0x00004494 
+ 00017584  0x00002594 branch  0x000042e5 , 0x00000001 
+ 00017585  0x00002595 branch  0x000043e2 
+ 00017586  0x00002598 call  0x00004494 
+ 00017587  0x00002599 branch  0x00004371 , 0x00000001 
+ 00017588  0x0000259a rtn 
+ 00017589  0x0000259d hfetcht  0x00000001 , 0x0000810c 
+ 00017590  0x0000259e isolate1  0x00000006 , 0x00000002 
+ 00017591  0x0000259f branch  0x000044b5 , 0x00000001 
+ 00017592  0x000025a0 hstore  0x00000001 , 0x00008015 
+ 00017593  0x000025a1 rtn 
+ 00017594  0x000025a5 fetcht  0x00000002 , 0x00000299 
+ 00017595  0x000025a6 fetch  0x00000002 , 0x00000295 
+ 00017596  0x000025a7 iforce  0x00000005 
+ 00017597  0x000025a8 deposit  0x00000003 
+ 00017598  0x000025a9 istore  0x00000002 , 0x00000005 
+ 00017599  0x000025aa deposit  0x00000005 
+ 00017600  0x000025ab store  0x00000002 , 0x00000295 
+ 00017601  0x000025ac icompare  0x000000ff , 0x00000002 
+ 00017602  0x000025ad call  0x000044c7 , 0x00000001 
+ 00017603  0x000025ae fetch  0x00000001 , 0x0000029b 
+ 00017604  0x000025af increase  0x00000001 , 0x0000003f 
+ 00017605  0x000025b0 store  0x00000001 , 0x0000029b 
+ 00017606  0x000025b1 rtn 
+ 00017607  0x000025b3 setarg  0x00004803 
+ 00017608  0x000025b4 store  0x00000002 , 0x00000295 
+ 00017609  0x000025b5 rtn 
+ 00017610  0x000025b9 fetch  0x00000001 , 0x0000029b 
+ 00017611  0x000025ba rtn  0x00000034 
+ 00017612  0x000025bb fetcht  0x00000002 , 0x00000299 
+ 00017613  0x000025bc fetch  0x00000002 , 0x00000297 
+ 00017614  0x000025bd iforce  0x00000006 
+ 00017615  0x000025be ifetch  0x00000002 , 0x00000006 
+ 00017616  0x000025bf iforce  0x00000003 
+ 00017617  0x000025c0 deposit  0x00000006 
+ 00017618  0x000025c1 store  0x00000002 , 0x00000297 
+ 00017619  0x000025c2 icompare  0x000000ff , 0x00000002 
+ 00017620  0x000025c3 call  0x000044da , 0x00000001 
+ 00017621  0x000025c4 fetch  0x00000001 , 0x0000029b 
+ 00017622  0x000025c5 increase  0xffffffff , 0x0000003f 
+ 00017623  0x000025c6 store  0x00000001 , 0x0000029b 
+ 00017624  0x000025c7 force  0x00000001 , 0x0000003f 
+ 00017625  0x000025c8 rtn 
+ 00017626  0x000025ca setarg  0x00004803 
+ 00017627  0x000025cb store  0x00000002 , 0x00000297 
+ 00017628  0x000025cc rtn 
+ 00017629  0x000025cf set0  0x00000025 , 0x00000000 
+ 00017630  0x000025d0 bpatch  0x000000d3 , 0x0000401a 
+ 00017631  0x000025d1 fetch  0x00000001 , 0x0000029b 
+ 00017632  0x000025d2 sub  0x0000003f , 0x00000002 , 0x0000003e 
+ 00017633  0x000025d3 branch  0x000044e4 , 0x00000002 
+ 00017634  0x000025d4 enable  0x00000028 
+ 00017635  0x000025d5 branch  0x000044e6 
+ 00017636  0x000025d7 call  0x000044b2 
+ 00017637  0x000025d8 call  0x000044ba 
+ 00017638  0x000025da set0  0x00000025 , 0x00000000 
+ 00017639  0x000025db bpatch  0x000000d4 , 0x0000401a 
+ 00017640  0x000025dc rtnmark1  0x00000002 
+ 00017641  0x000025dd call  0x000044ca 
+ 00017642  0x000025de rtn  0x00000034 
+ 00017643  0x000025df ifetcht  0x00000001 , 0x00000003 
+ 00017644  0x000025e0 call  0x000032f7 
+ 00017645  0x000025e1 nrtn  0x00000005 
+ 00017646  0x000025e2 ifetch  0x00000001 , 0x00000003 
+ 00017647  0x000025e3 rshift4  0x0000003f , 0x0000003f 
+ 00017648  0x000025e4 and  0x0000003f , 0x00000003 , 0x0000003f 
+ 00017649  0x000025e5 nbranch  0x000044f3 , 0x00000034 
+ 00017650  0x000025e6 set1  0x00000001 , 0x0000003f 
+ 00017651  0x000025e8 set1  0x00000002 , 0x0000003f 
+ 00017652  0x000025e9 store  0x00000001 , 0x00000090 
+ 00017653  0x000025ea ifetch  0x00000002 , 0x00000003 
+ 00017654  0x000025eb store  0x00000002 , 0x00000091 
+ 00017655  0x000025ec deposit  0x00000003 
+ 00017656  0x000025ed store  0x00000002 , 0x00000179 
+ 00017657  0x000025ee set1  0x00000002 , 0x00000000 
+ 00017658  0x000025ef bmark0  0x00000009 , 0x00004502 
+ 00017659  0x000025f0 fetch  0x00000001 , 0x00000046 
+ 00017660  0x000025f1 isub  0x00000002 , 0x0000003e 
+ 00017661  0x000025f2 nbranch  0x00004502 , 0x00000005 
+ 00017662  0x000025f3 fetch  0x00000001 , 0x0000004b 
+ 00017663  0x000025f4 set1  0x00000006 , 0x0000003f 
+ 00017664  0x000025f5 store  0x00000001 , 0x0000004b 
+ 00017665  0x000025f6 rtn 
+ 00017666  0x000025f9 increase  0x0000001b , 0x00000011 
+ 00017667  0x000025fa ifetch  0x00000001 , 0x00000011 
+ 00017668  0x000025fb set1  0x00000006 , 0x0000003f 
+ 00017669  0x000025fc istore  0x00000001 , 0x00000011 
+ 00017670  0x000025fd rtn 
+ 00017671  0x00002603 set0  0x00000025 , 0x00000000 
+ 00017672  0x00002604 bpatch  0x000000d5 , 0x0000401a 
+ 00017673  0x00002605 fetch  0x00000001 , 0x00004272 
+ 00017674  0x00002606 branch  0x0000450d , 0x00000034 
+ 00017675  0x00002607 enable  0x00000028 
+ 00017676  0x00002608 rtn 
+ 00017677  0x0000260a call  0x000044b2 
+ 00017678  0x0000260b ifetch  0x00000002 , 0x00000003 
+ 00017679  0x0000260c iforce  0x00000030 
+ 00017680  0x0000260d iforce  0x00000007 
+ 00017681  0x0000260e ifetch  0x00000001 , 0x00000003 
+ 00017682  0x0000260f iforce  0x00000002 
+ 00017683  0x00002610 rshift2  0x00000030 , 0x0000003f 
+ 00017684  0x00002611 rshift8  0x0000003f , 0x0000003f 
+ 00017685  0x00002612 beq  0x00000001 , 0x0000451e 
+ 00017686  0x00002613 beq  0x00000002 , 0x0000453d 
+ 00017687  0x00002614 beq  0x00000003 , 0x0000454f 
+ 00017688  0x00002615 beq  0x00000004 , 0x00004569 
+ 00017689  0x00002616 beq  0x00000005 , 0x00004572 
+ 00017690  0x00002617 beq  0x00000006 , 0x0000457c 
+ 00017691  0x00002618 beq  0x0000003f , 0x00004585 
+ 00017692  0x00002619 beq  0x00000008 , 0x000045e0 
+ 00017693  0x0000261a rtn 
+ 00017694  0x0000261e set0  0x00000025 , 0x00000000 
+ 00017695  0x0000261f bpatch  0x000000d6 , 0x0000401a 
+ 00017696  0x00002620 deposit  0x00000007 
+ 00017697  0x00002621 beq  0x00000001 , 0x00004634 
+ 00017698  0x00002622 beq  0x00000002 , 0x00004643 
+ 00017699  0x00002623 beq  0x00000003 , 0x00004949 
+ 00017700  0x00002624 beq  0x00000004 , 0x00004949 
+ 00017701  0x00002625 beq  0x00000005 , 0x00004645 
+ 00017702  0x00002626 beq  0x00000006 , 0x0000464f 
+ 00017703  0x00002627 beq  0x00000007 , 0x00004949 
+ 00017704  0x00002628 beq  0x00000008 , 0x0000465d 
+ 00017705  0x00002629 beq  0x00000009 , 0x00004739 
+ 00017706  0x0000262a beq  0x0000000a , 0x0000473f 
+ 00017707  0x0000262b beq  0x0000000b , 0x00004664 
+ 00017708  0x0000262c beq  0x0000000c , 0x0000466a 
+ 00017709  0x0000262d beq  0x0000000d , 0x0000466d 
+ 00017710  0x0000262e beq  0x0000000e , 0x00004675 
+ 00017711  0x0000262f beq  0x0000000f , 0x00004743 
+ 00017712  0x00002630 beq  0x00000011 , 0x00004688 
+ 00017713  0x00002631 beq  0x00000013 , 0x0000468b 
+ 00017714  0x00002632 beq  0x00000015 , 0x00004949 
+ 00017715  0x00002633 beq  0x00000017 , 0x00004949 
+ 00017716  0x00002634 beq  0x00000019 , 0x00004690 
+ 00017717  0x00002635 beq  0x0000001b , 0x0000469b 
+ 00017718  0x00002636 beq  0x0000001c , 0x00004696 
+ 00017719  0x00002637 beq  0x0000001d , 0x000046a1 
+ 00017720  0x00002638 beq  0x0000001f , 0x000046a7 
+ 00017721  0x00002639 beq  0x00000028 , 0x000046ab 
+ 00017722  0x0000263a beq  0x00000029 , 0x000046b6 
+ 00017723  0x0000263b beq  0x0000002b , 0x0000467b 
+ 00017724  0x0000263c branch  0x0000474d 
+ 00017725  0x00002640 set0  0x00000025 , 0x00000000 
+ 00017726  0x00002641 bpatch  0x000000d7 , 0x0000401a 
+ 00017727  0x00002642 deposit  0x00000007 
+ 00017728  0x00002643 beq  0x00000009 , 0x000046cc 
+ 00017729  0x00002644 beq  0x0000000d , 0x000046d7 
+ 00017730  0x00002645 beq  0x00000001 , 0x00004949 
+ 00017731  0x00002646 beq  0x00000003 , 0x0000474f 
+ 00017732  0x00002647 beq  0x00000004 , 0x0000475a 
+ 00017733  0x00002648 beq  0x00000005 , 0x00004949 
+ 00017734  0x00002649 beq  0x00000006 , 0x00004949 
+ 00017735  0x0000264a beq  0x00000007 , 0x00004949 
+ 00017736  0x0000264b beq  0x0000000b , 0x00004760 
+ 00017737  0x0000264c beq  0x0000000c , 0x00004949 
+ 00017738  0x0000264d beq  0x0000000e , 0x00004949 
+ 00017739  0x0000264e beq  0x0000000f , 0x00004949 
+ 00017740  0x0000264f beq  0x00000010 , 0x00004949 
+ 00017741  0x00002650 beq  0x00000011 , 0x0000475f 
+ 00017742  0x00002651 branch  0x0000474d 
+ 00017743  0x00002654 set0  0x00000025 , 0x00000000 
+ 00017744  0x00002655 bpatch  0x000000d8 , 0x0000401b 
+ 00017745  0x00002656 deposit  0x00000007 
+ 00017746  0x00002657 beq  0x00000001 , 0x00004725 
+ 00017747  0x00002658 beq  0x00000003 , 0x00004949 
+ 00017748  0x00002659 beq  0x00000012 , 0x000046da 
+ 00017749  0x0000265a beq  0x00000013 , 0x000046c2 
+ 00017750  0x0000265b beq  0x00000014 , 0x000046b8 
+ 00017751  0x0000265c beq  0x00000018 , 0x000046db 
+ 00017752  0x0000265d beq  0x00000019 , 0x00004705 
+ 00017753  0x0000265e beq  0x0000001a , 0x000046de 
+ 00017754  0x0000265f beq  0x0000001c , 0x000046e1 
+ 00017755  0x00002660 beq  0x0000001e , 0x000046e6 
+ 00017756  0x00002661 beq  0x00000020 , 0x000046ec 
+ 00017757  0x00002662 beq  0x00000022 , 0x000046eb 
+ 00017758  0x00002663 beq  0x00000024 , 0x000046ef 
+ 00017759  0x00002664 beq  0x00000026 , 0x00004949 
+ 00017760  0x00002665 beq  0x00000031 , 0x00004949 
+ 00017761  0x00002666 beq  0x00000033 , 0x00004949 
+ 00017762  0x00002667 beq  0x00000035 , 0x0000462e 
+ 00017763  0x00002668 beq  0x00000043 , 0x00004949 
+ 00017764  0x00002669 beq  0x00000045 , 0x00004949 
+ 00017765  0x0000266a beq  0x00000047 , 0x00004949 
+ 00017766  0x0000266b beq  0x00000051 , 0x000046f2 
+ 00017767  0x0000266c beq  0x00000056 , 0x00004701 
+ 00017768  0x0000266d branch  0x0000474d 
+ 00017769  0x00002670 set0  0x00000025 , 0x00000000 
+ 00017770  0x00002671 bpatch  0x000000d9 , 0x0000401b 
+ 00017771  0x00002672 deposit  0x00000007 
+ 00017772  0x00002673 beq  0x00000001 , 0x0000470a 
+ 00017773  0x00002674 beq  0x00000003 , 0x0000470f 
+ 00017774  0x00002675 beq  0x00000004 , 0x00004714 
+ 00017775  0x00002676 beq  0x00000005 , 0x0000471b 
+ 00017776  0x00002677 beq  0x00000009 , 0x00004720 
+ 00017777  0x00002678 branch  0x0000474d 
+ 00017778  0x0000267b set0  0x00000025 , 0x00000000 
+ 00017779  0x0000267c bpatch  0x000000da , 0x0000401b 
+ 00017780  0x0000267d deposit  0x00000007 
+ 00017781  0x0000267e beq  0x00000001 , 0x00004949 
+ 00017782  0x0000267f beq  0x00000002 , 0x00004726 
+ 00017783  0x00002680 beq  0x00000003 , 0x00004727 
+ 00017784  0x00002681 beq  0x00000005 , 0x0000472d 
+ 00017785  0x00002682 beq  0x00000006 , 0x00004733 
+ 00017786  0x00002683 beq  0x00000007 , 0x00004736 
+ 00017787  0x00002684 branch  0x0000474d 
+ 00017788  0x00002687 set0  0x00000025 , 0x00000000 
+ 00017789  0x00002688 bpatch  0x000000db , 0x0000401b 
+ 00017790  0x00002689 deposit  0x00000007 
+ 00017791  0x0000268a beq  0x00000001 , 0x00004949 
+ 00017792  0x0000268b beq  0x00000002 , 0x00004949 
+ 00017793  0x0000268c beq  0x00000003 , 0x00004949 
+ 00017794  0x0000268d beq  0x00000004 , 0x00004949 
+ 00017795  0x0000268e branch  0x0000474d 
+ 00017796  0x0000268f rtn 
+ 00017797  0x00002692 set0  0x00000025 , 0x00000000 
+ 00017798  0x00002693 bpatch  0x000000dc , 0x0000401b 
+ 00017799  0x00002694 deposit  0x00000007 
+ 00017800  0x00002695 beq  0x00000000 , 0x00004949 
+ 00017801  0x00002696 beq  0x00000001 , 0x0000459d 
+ 00017802  0x00002697 beq  0x00000002 , 0x000045a2 
+ 00017803  0x00002698 beq  0x00000003 , 0x000045a6 
+ 00017804  0x00002699 beq  0x00000004 , 0x000045b9 
+ 00017805  0x0000269a beq  0x00000005 , 0x00004949 
+ 00017806  0x0000269b beq  0x00000006 , 0x000045ca 
+ 00017807  0x0000269c beq  0x00000007 , 0x00004593 
+ 00017808  0x0000269e beq  0x00000010 , 0x000045cd 
+ 00017809  0x0000269f beq  0x00000011 , 0x000045d5 
+ 00017810  0x000026a0 branch  0x00004949 
+ 00017811  0x000026a3 call  0x00004949 
+ 00017812  0x000026a4 call  0x00007f68 
+ 00017813  0x000026a5 call  0x00006a68 
+ 00017814  0x000026a7 call  0x00003f5c 
+ 00017815  0x000026a8 call  0x00003f66 
+ 00017816  0x000026a9 branch  0x00006a7d 
+ 00017817  0x000026ac jam  0x00000000 , 0x000042ae 
+ 00017818  0x000026ad call  0x00003f5a 
+ 00017819  0x000026ae call  0x00004468 
+ 00017820  0x000026af branch  0x00003f68 
+ 00017821  0x000026b2 call  0x0000496e 
+ 00017822  0x000026b3 hfetch  0x00000002 , 0x00008000 
+ 00017823  0x000026b4 istore  0x00000002 , 0x0000000a 
+ 00017824  0x000026b5 force  0x00000006 , 0x00000039 
+ 00017825  0x000026b6 branch  0x0000494c 
+ 00017826  0x000026b9 ifetch  0x00000002 , 0x00000003 
+ 00017827  0x000026ba store  0x00000002 , 0x000042ac 
+ 00017828  0x000026bb hstore  0x00000002 , 0x00008052 
+ 00017829  0x000026bc rtn 
+ 00017830  0x000026c0 ifetch  0x00000001 , 0x00000003 
+ 00017831  0x000026c1 copy  0x0000003f , 0x00000002 
+ 00017832  0x000026c2 hstore  0x00000001 , 0x00008024 
+ 00017833  0x000026c3 ifetch  0x00000001 , 0x00000003 
+ 00017834  0x000026c4 iadd  0x00000002 , 0x00000002 
+ 00017835  0x000026c5 set1  0x00000007 , 0x0000003f 
+ 00017836  0x000026c6 hstore  0x00000001 , 0x00008023 
+ 00017837  0x000026c7 ifetch  0x00000001 , 0x00000003 
+ 00017838  0x000026c8 iadd  0x00000002 , 0x00000002 
+ 00017839  0x000026c9 copy  0x0000003f , 0x00000039 
+ 00017840  0x000026cb ifetch  0x00000001 , 0x00000003 
+ 00017841  0x000026cc hstore  0x00000001 , 0x00008025 
+ 00017842  0x000026cd iadd  0x00000002 , 0x00000002 
+ 00017843  0x000026ce loop  0x000045b0 
+ 00017844  0x000026cf and  0x00000002 , 0x000000ff , 0x00000002 
+ 00017845  0x000026d0 ifetch  0x00000001 , 0x00000003 
+ 00017846  0x000026d1 isub  0x00000002 , 0x0000003e 
+ 00017847  0x000026d2 nbranch  0x000045c8 , 0x00000005 
+ 00017848  0x000026d3 branch  0x00004949 
+ 00017849  0x000026d6 arg  0x00000020 , 0x00000039 
+ 00017850  0x000026d7 arg  0x00004000 , 0x00000005 
+ 00017851  0x000026d8 arg  0x00000000 , 0x00000002 
+ 00017852  0x000026da ifetch  0x00000001 , 0x00000003 
+ 00017853  0x000026db istore  0x00000001 , 0x00000005 
+ 00017854  0x000026dc iadd  0x00000002 , 0x00000002 
+ 00017855  0x000026dd loop  0x000045bc 
+ 00017856  0x000026de and  0x00000002 , 0x000000ff , 0x00000002 
+ 00017857  0x000026df ifetch  0x00000001 , 0x00000003 
+ 00017858  0x000026e0 isub  0x00000002 , 0x0000003e 
+ 00017859  0x000026e1 nbranch  0x000045c8 , 0x00000005 
+ 00017860  0x000026e2 hjam  0x00000000 , 0x00008023 
+ 00017861  0x000026e3 call  0x00004949 
+ 00017862  0x000026e4 call  0x0000440e 
+ 00017863  0x000026e5 branch  0x00003001 
+ 00017864  0x000026e8 hjam  0x00000000 , 0x00008023 
+ 00017865  0x000026e9 branch  0x00003000 
+ 00017866  0x000026ec ifetch  0x00000006 , 0x00000003 
+ 00017867  0x000026ed store  0x00000006 , 0x00004140 
+ 00017868  0x000026ee branch  0x00004949 
+ 00017869  0x000026f2 ifetch  0x00000001 , 0x00000003 
+ 00017870  0x000026f3 store  0x00000001 , 0x000002c1 
+ 00017871  0x000026f4 copy  0x0000003f , 0x00000039 
+ 00017872  0x000026f5 ifetch  0x00000002 , 0x00000003 
+ 00017873  0x000026f6 store  0x00000002 , 0x000002c2 
+ 00017874  0x000026f7 copy  0x0000003f , 0x00000005 
+ 00017875  0x000026f8 call  0x0000497c 
+ 00017876  0x000026f9 branch  0x00004949 
+ 00017877  0x000026fd ifetch  0x00000001 , 0x00000003 
+ 00017878  0x000026fe store  0x00000001 , 0x000002c1 
+ 00017879  0x000026ff copy  0x0000003f , 0x00000039 
+ 00017880  0x00002700 ifetch  0x00000002 , 0x00000003 
+ 00017881  0x00002701 store  0x00000002 , 0x000002c2 
+ 00017882  0x00002702 arg  0x00001000 , 0x00000005 
+ 00017883  0x00002703 call  0x0000497c 
+ 00017884  0x00002704 fetcht  0x00000001 , 0x000002c1 
+ 00017885  0x00002705 arg  0x00001000 , 0x00000011 
+ 00017886  0x00002706 fetch  0x00000002 , 0x000002c2 
+ 00017887  0x00002707 branch  0x00006842 
+ 00017888  0x0000270e set0  0x00000025 , 0x00000000 
+ 00017889  0x0000270f bpatch  0x000000dd , 0x0000401b 
+ 00017890  0x00002710 deposit  0x00000007 
+ 00017891  0x00002711 beq  0x00000001 , 0x00004949 
+ 00017892  0x00002712 beq  0x00000002 , 0x000045f3 
+ 00017893  0x00002713 beq  0x00000003 , 0x000045f8 
+ 00017894  0x00002714 beq  0x00000006 , 0x000045ff 
+ 00017895  0x00002715 beq  0x00000008 , 0x00004603 
+ 00017896  0x00002716 beq  0x00000009 , 0x00004607 
+ 00017897  0x00002717 beq  0x0000000a , 0x0000460b 
+ 00017898  0x00002718 beq  0x0000000b , 0x0000460e 
+ 00017899  0x00002719 beq  0x0000000c , 0x00004611 
+ 00017900  0x0000271a beq  0x0000000d , 0x00004614 
+ 00017901  0x0000271b beq  0x0000000e , 0x00004626 
+ 00017902  0x0000271c beq  0x00000015 , 0x00004627 
+ 00017903  0x0000271d beq  0x00000016 , 0x00004933 
+ 00017904  0x0000271e beq  0x00000013 , 0x00004949 
+ 00017905  0x0000271f branch  0x0000474d 
+ 00017906  0x00002720 rtn 
+ 00017907  0x00002722 call  0x0000496e 
+ 00017908  0x00002723 setarg  0x00000000 
+ 00017909  0x00002724 istore  0x00000003 , 0x0000000a 
+ 00017910  0x00002725 force  0x00000007 , 0x00000039 
+ 00017911  0x00002726 branch  0x0000494c 
+ 00017912  0x00002729 call  0x0000496e 
+ 00017913  0x0000272a setarg  0x00000001 
+ 00017914  0x0000272b istore  0x00000002 , 0x0000000a 
+ 00017915  0x0000272c setarg  0x00000000 
+ 00017916  0x0000272d istore  0x00000006 , 0x0000000a 
+ 00017917  0x0000272e force  0x0000000c , 0x00000039 
+ 00017918  0x0000272f branch  0x0000494c 
+ 00017919  0x00002732 arg  0x0000000f , 0x00000039 
+ 00017920  0x00002733 arg  0x000044d7 , 0x00000005 
+ 00017921  0x00002734 call  0x0000497c 
+ 00017922  0x00002735 branch  0x00004949 
+ 00017923  0x00002738 arg  0x00000020 , 0x00000039 
+ 00017924  0x00002739 arg  0x000043d9 , 0x00000005 
+ 00017925  0x0000273a call  0x0000497c 
+ 00017926  0x0000273b branch  0x00004949 
+ 00017927  0x0000273e arg  0x00000020 , 0x00000039 
+ 00017928  0x0000273f arg  0x000043f9 , 0x00000005 
+ 00017929  0x00002740 call  0x0000497c 
+ 00017930  0x00002741 branch  0x00004949 
+ 00017931  0x00002744 ifetch  0x00000001 , 0x00000003 
+ 00017932  0x00002745 store  0x00000001 , 0x000043d8 
+ 00017933  0x00002746 branch  0x00004949 
+ 00017934  0x00002749 ifetch  0x00000007 , 0x00000003 
+ 00017935  0x0000274a store  0x00000007 , 0x000044f6 
+ 00017936  0x0000274b branch  0x00004949 
+ 00017937  0x0000274e ifetch  0x00000001 , 0x00000003 
+ 00017938  0x0000274f store  0x00000001 , 0x000043d2 
+ 00017939  0x00002750 branch  0x00004949 
+ 00017940  0x00002753 ifetch  0x00000004 , 0x00000003 
+ 00017941  0x00002754 store  0x00000004 , 0x000043d3 
+ 00017942  0x00002755 ifetch  0x00000001 , 0x00000003 
+ 00017943  0x00002756 store  0x00000001 , 0x000044f8 
+ 00017944  0x00002757 arg  0x00000014 , 0x00000039 
+ 00017945  0x00002758 arg  0x000044e6 , 0x00000005 
+ 00017946  0x00002759 call  0x0000497c 
+ 00017947  0x0000275a jam  0x00000001 , 0x000043d2 
+ 00017948  0x0000275b fetch  0x00000001 , 0x000044ed 
+ 00017949  0x0000275c store  0x00000001 , 0x000044f7 
+ 00017950  0x0000275d fetch  0x00000002 , 0x000044f0 
+ 00017951  0x0000275e store  0x00000002 , 0x000043d0 
+ 00017952  0x0000275f fetch  0x00000002 , 0x000044f2 
+ 00017953  0x00002760 store  0x00000002 , 0x000003ed 
+ 00017954  0x00002761 fetch  0x00000002 , 0x000044f4 
+ 00017955  0x00002762 store  0x00000002 , 0x000003ef 
+ 00017956  0x00002763 jam  0x0000001b , 0x00004272 
+ 00017957  0x00002764 branch  0x00004933 
+ 00017958  0x00002768 branch  0x00004949 
+ 00017959  0x0000276b call  0x0000496e 
+ 00017960  0x0000276c ifetch  0x00000002 , 0x00000003 
+ 00017961  0x0000276d istore  0x00000002 , 0x0000000a 
+ 00017962  0x0000276e setarg  0x001fffff 
+ 00017963  0x0000276f istore  0x00000005 , 0x0000000a 
+ 00017964  0x00002770 force  0x0000000b , 0x00000039 
+ 00017965  0x00002771 branch  0x0000494c 
+ 00017966  0x00002777 ifetch  0x00000003 , 0x00000003 
+ 00017967  0x00002778 ifetcht  0x00000003 , 0x00000003 
+ 00017968  0x00002779 fetch  0x00000002 , 0x00004800 
+ 00017969  0x0000277a iadd  0x00000002 , 0x0000003f 
+ 00017970  0x0000277b store  0x00000002 , 0x00004800 
+ 00017971  0x0000277c rtn 
+ 00017972  0x0000277f ifetch  0x00000003 , 0x00000003 
+ 00017973  0x00002780 store  0x00000003 , 0x00004147 
+ 00017974  0x00002782 jam  0x00000001 , 0x00004272 
+ 00017975  0x00002783 ifetch  0x00000001 , 0x00000003 
+ 00017976  0x00002784 arg  0x00000640 , 0x00000002 
+ 00017977  0x00002785 imul32  0x00000002 , 0x0000003f 
+ 00017978  0x00002786 arg  0x0000ffff , 0x00000002 
+ 00017979  0x00002787 isub  0x00000002 , 0x0000003e 
+ 00017980  0x00002788 nbranch  0x0000463e , 0x00000002 
+ 00017981  0x00002789 deposit  0x00000002 
+ 00017982  0x0000278b force  0x00000002 , 0x00000007 
+ 00017983  0x0000278c call  0x00007e4c 
+ 00017984  0x0000278d fetch  0x00000001 , 0x000042a4 
+ 00017985  0x0000278e bbit1  0x00000000 , 0x0000428c 
+ 00017986  0x0000278f branch  0x00004933 
+ 00017987  0x00002793 jam  0x00000002 , 0x00004272 
+ 00017988  0x00002794 branch  0x00004949 
+ 00017989  0x00002797 call  0x00004763 
+ 00017990  0x00002798 ifetch  0x00000002 , 0x00000003 
+ 00017991  0x00002799 store  0x00000002 , 0x00000275 
+ 00017992  0x0000279a ifetch  0x00000002 , 0x00000003 
+ 00017993  0x0000279b store  0x00000001 , 0x000000f3 
+ 00017994  0x0000279c call  0x00004776 
+ 00017995  0x0000279d ifetch  0x00000001 , 0x00000003 
+ 00017996  0x0000279e store  0x00000001 , 0x00004802 
+ 00017997  0x0000279f jam  0x00000005 , 0x00004272 
+ 00017998  0x000027a0 branch  0x00004933 
+ 00017999  0x000027a4 jam  0x00000006 , 0x00004272 
+ 00018000  0x000027a5 ifetch  0x00000002 , 0x00000003 
+ 00018001  0x000027a6 store  0x00000001 , 0x00004273 
+ 00018002  0x000027a7 ifetch  0x00000001 , 0x00000003 
+ 00018003  0x000027a8 store  0x00000001 , 0x00000446 
+ 00018004  0x000027a9 jam  0x00000016 , 0x000002c0 
+ 00018005  0x000027aa fetch  0x00000001 , 0x00004273 
+ 00018006  0x000027ab fetcht  0x00000001 , 0x000000ad 
+ 00018007  0x000027ac isub  0x00000002 , 0x0000003e 
+ 00018008  0x000027ad nbranch  0x00004933 , 0x00000005 
+ 00018009  0x000027ae jam  0x00000011 , 0x00004272 
+ 00018010  0x000027af fetch  0x00000001 , 0x000000ac 
+ 00018011  0x000027b0 store  0x00000001 , 0x00004273 
+ 00018012  0x000027b1 branch  0x00004933 
+ 00018013  0x000027b4 call  0x0000496e 
+ 00018014  0x000027b5 call  0x00004965 
+ 00018015  0x000027b6 force  0x0000000a , 0x00000039 
+ 00018016  0x000027b7 call  0x0000494c 
+ 00018017  0x000027b9 jam  0x0000001a , 0x00004272 
+ 00018018  0x000027ba force  0x00000002 , 0x00000002 
+ 00018019  0x000027bb branch  0x00004826 
+ 00018020  0x000027be call  0x00004763 
+ 00018021  0x000027bf arg  0x00004262 , 0x00000005 
+ 00018022  0x000027c0 force  0x00000010 , 0x00000039 
+ 00018023  0x000027c1 call  0x0000497c 
+ 00018024  0x000027c2 jam  0x0000000b , 0x00004272 
+ 00018025  0x000027c3 branch  0x00004677 
+ 00018026  0x000027c6 call  0x00004763 
+ 00018027  0x000027c7 jam  0x0000000c , 0x00004272 
+ 00018028  0x000027c8 branch  0x00004677 
+ 00018029  0x000027cb call  0x00004763 
+ 00018030  0x000027cc ifetch  0x00000001 , 0x00000003 
+ 00018031  0x000027cd store  0x00000001 , 0x0000054f 
+ 00018032  0x000027ce iforce  0x00000039 
+ 00018033  0x000027cf arg  0x00000550 , 0x00000005 
+ 00018034  0x000027d0 call  0x0000497c 
+ 00018035  0x000027d1 jam  0x00000009 , 0x00004272 
+ 00018036  0x000027d2 branch  0x00004677 
+ 00018037  0x000027d5 call  0x00004763 
+ 00018038  0x000027d6 jam  0x0000000a , 0x00004272 
+ 00018039  0x000027d8 call  0x0000496e 
+ 00018040  0x000027d9 call  0x00004965 
+ 00018041  0x000027da force  0x0000000a , 0x00000039 
+ 00018042  0x000027db branch  0x0000494c 
+ 00018043  0x000027df increase  0x00000006 , 0x00000003 
+ 00018044  0x000027e0 ifetch  0x00000003 , 0x00000003 
+ 00018045  0x000027e1 store  0x00000003 , 0x000007e6 
+ 00018046  0x000027e2 fetch  0x00000001 , 0x000007db 
+ 00018047  0x000027e3 beq  0x00000013 , 0x00004683 
+ 00018048  0x000027e4 beq  0x00000003 , 0x00004683 
+ 00018049  0x000027e5 jam  0x00000016 , 0x00004272 
+ 00018050  0x000027e6 branch  0x00004684 
+ 00018051  0x000027e8 jam  0x00000001 , 0x000007dd 
+ 00018052  0x000027ea call  0x0000496e 
+ 00018053  0x000027eb call  0x00004965 
+ 00018054  0x000027ec force  0x0000000a , 0x00000039 
+ 00018055  0x000027ed branch  0x0000494c 
+ 00018056  0x000027f1 call  0x00004766 
+ 00018057  0x000027f2 jam  0x0000000d , 0x00004272 
+ 00018058  0x000027f3 branch  0x00004933 
+ 00018059  0x000027f6 call  0x00004766 
+ 00018060  0x000027f7 ifetch  0x00000001 , 0x00000003 
+ 00018061  0x000027f8 increase  0x0000000e , 0x0000003f 
+ 00018062  0x000027f9 store  0x00000001 , 0x00004272 
+ 00018063  0x000027fa branch  0x00004933 
+ 00018064  0x000027fd call  0x00004763 
+ 00018065  0x000027fe ifetch  0x00000002 , 0x00000003 
+ 00018066  0x000027ff store  0x00000001 , 0x000000f3 
+ 00018067  0x00002800 call  0x00004776 
+ 00018068  0x00002801 jam  0x00000003 , 0x00004272 
+ 00018069  0x00002802 branch  0x00004933 
+ 00018070  0x00002805 ifetch  0x00000002 , 0x00000003 
+ 00018071  0x00002806 ifetch  0x00000001 , 0x00000003 
+ 00018072  0x00002807 store  0x00000001 , 0x00000449 
+ 00018073  0x00002808 jam  0x00000015 , 0x00004272 
+ 00018074  0x00002809 branch  0x00004933 
+ 00018075  0x0000280d fetch  0x00000001 , 0x00000046 
+ 00018076  0x0000280e force  0x00000002 , 0x00000011 
+ 00018077  0x0000280f branch  0x0000493d , 0x00000034 
+ 00018078  0x00002810 call  0x00004766 
+ 00018079  0x00002811 jam  0x00000004 , 0x00004272 
+ 00018080  0x00002812 branch  0x00004933 
+ 00018081  0x00002817 fetch  0x00000001 , 0x00000046 
+ 00018082  0x00002818 force  0x00000002 , 0x00000011 
+ 00018083  0x00002819 branch  0x0000493d , 0x00000034 
+ 00018084  0x0000281a call  0x00004766 
+ 00018085  0x0000281b jam  0x00000014 , 0x00004272 
+ 00018086  0x0000281c branch  0x00004933 
+ 00018087  0x00002820 call  0x0000476e 
+ 00018088  0x00002821 force  0x0000001c , 0x00000007 
+ 00018089  0x00002822 force  0x00000005 , 0x00000039 
+ 00018090  0x00002823 branch  0x00004952 
+ 00018091  0x00002826 call  0x00004766 
+ 00018092  0x00002827 increase  0x0000000a , 0x00000003 
+ 00018093  0x00002828 ifetch  0x00000002 , 0x00000003 
+ 00018094  0x00002829 store  0x00000002 , 0x00000281 
+ 00018095  0x0000282a ifetch  0x00000001 , 0x00000003 
+ 00018096  0x0000282b store  0x00000001 , 0x00000283 
+ 00018097  0x0000282c ifetch  0x00000002 , 0x00000003 
+ 00018098  0x0000282d store  0x00000002 , 0x00000284 
+ 00018099  0x0000282e jam  0x00000002 , 0x000000ab 
+ 00018100  0x0000282f jam  0x00000010 , 0x00004272 
+ 00018101  0x00002830 branch  0x00004933 
+ 00018102  0x00002833 jam  0x0000001c , 0x00004272 
+ 00018103  0x00002834 branch  0x00004933 
+ 00018104  0x00002839 call  0x0000496e 
+ 00018105  0x0000283a arg  0x00004703 , 0x00000006 
+ 00018106  0x0000283b sub  0x00000006 , 0x000000ff , 0x00000039 
+ 00018107  0x0000283c call  0x00004976 
+ 00018108  0x0000283d force  0x00000000 , 0x0000003f 
+ 00018109  0x0000283e sub  0x00000006 , 0x00004703 , 0x00000039 
+ 00018110  0x0000283f increase  0x000000f8 , 0x00000039 
+ 00018111  0x00002840 call  0x00004982 
+ 00018112  0x00002841 force  0x000000fc , 0x00000039 
+ 00018113  0x00002842 branch  0x0000494c 
+ 00018114  0x00002845 arg  0x00004703 , 0x00000005 
+ 00018115  0x00002846 sub  0x00000005 , 0x000000ff , 0x00000039 
+ 00018116  0x00002848 ifetch  0x00000001 , 0x00000003 
+ 00018117  0x00002849 istore  0x00000001 , 0x00000005 
+ 00018118  0x0000284a branch  0x000046c8 , 0x00000034 
+ 00018119  0x0000284b loop  0x000046c4 
+ 00018120  0x0000284d sub  0x00000005 , 0x00004703 , 0x0000003f 
+ 00018121  0x0000284e sub  0x0000003f , 0x00000000 , 0x0000003f 
+ 00018122  0x0000284f store  0x00000001 , 0x00004702 
+ 00018123  0x00002850 branch  0x00004949 
+ 00018124  0x00002853 call  0x0000496e 
+ 00018125  0x00002854 call  0x0000496b 
+ 00018126  0x00002855 force  0x00000000 , 0x0000003f 
+ 00018127  0x00002856 nsetflag  0x00000029 , 0x00000000 , 0x0000003f 
+ 00018128  0x00002857 istore  0x00000001 , 0x0000000a 
+ 00018129  0x00002858 force  0x00000007 , 0x00000039 
+ 00018130  0x00002859 arg  0x00000809 , 0x00000030 
+ 00018131  0x0000285a call  0x0000494c 
+ 00018132  0x0000285b branch  0x000049bc 
+ 00018133  0x0000285c jam  0x00000017 , 0x00004272 
+ 00018134  0x0000285d rtn 
+ 00018135  0x00002861 call  0x00004769 
+ 00018136  0x00002862 force  0x00000006 , 0x00000039 
+ 00018137  0x00002863 branch  0x0000494c 
+ 00018138  0x00002867 branch  0x00004949 
+ 00018139  0x0000286a ifetch  0x00000002 , 0x00000003 
+ 00018140  0x0000286b store  0x00000002 , 0x00004159 
+ 00018141  0x0000286c branch  0x00004949 
+ 00018142  0x00002870 ifetch  0x00000001 , 0x00000003 
+ 00018143  0x00002871 store  0x00000001 , 0x00004133 
+ 00018144  0x00002872 branch  0x00004949 
+ 00018145  0x00002875 ifetch  0x00000002 , 0x00000003 
+ 00018146  0x00002876 store  0x00000002 , 0x00004153 
+ 00018147  0x00002877 ifetch  0x00000002 , 0x00000003 
+ 00018148  0x00002878 store  0x00000002 , 0x00004151 
+ 00018149  0x00002879 branch  0x00004949 
+ 00018150  0x0000287c ifetch  0x00000002 , 0x00000003 
+ 00018151  0x0000287d store  0x00000002 , 0x0000414f 
+ 00018152  0x0000287e ifetch  0x00000002 , 0x00000003 
+ 00018153  0x0000287f store  0x00000002 , 0x0000414d 
+ 00018154  0x00002880 branch  0x00004949 
+ 00018155  0x00002883 branch  0x00004949 
+ 00018156  0x00002887 ifetch  0x00000001 , 0x00000003 
+ 00018157  0x00002888 store  0x00000001 , 0x00000453 
+ 00018158  0x00002889 branch  0x00004949 
+ 00018159  0x0000288c ifetch  0x00000003 , 0x00000003 
+ 00018160  0x0000288d store  0x00000003 , 0x0000414a 
+ 00018161  0x0000288e branch  0x00004949 
+ 00018162  0x00002894 deposit  0x00000002 
+ 00018163  0x00002895 branch  0x00004949 , 0x00000034 
+ 00018164  0x00002896 call  0x00004970 
+ 00018165  0x00002897 force  0x00000001 , 0x0000003f 
+ 00018166  0x00002898 istore  0x00000001 , 0x0000000a 
+ 00018167  0x00002899 deposit  0x00000030 
+ 00018168  0x0000289a istore  0x00000002 , 0x0000000a 
+ 00018169  0x0000289b force  0x00000012 , 0x0000003f 
+ 00018170  0x0000289c istore  0x00000001 , 0x0000000a 
+ 00018171  0x0000289d setarg  0x00000000 
+ 00018172  0x0000289e increase  0x000000f1 , 0x00000039 
+ 00018173  0x0000289f call  0x00004982 
+ 00018174  0x000028a1 force  0x0000000e , 0x00000007 
+ 00018175  0x000028a2 force  0x000000f5 , 0x00000039 
+ 00018176  0x000028a3 branch  0x00004952 
+ 00018177  0x000028a8 ifetch  0x00000001 , 0x00000003 
+ 00018178  0x000028a9 ncall  0x00006003 , 0x00000034 
+ 00018179  0x000028aa call  0x00006009 , 0x00000034 
+ 00018180  0x000028ab branch  0x00004949 
+ 00018181  0x000028ae call  0x0000496e 
+ 00018182  0x000028af fetch  0x00000001 , 0x00004133 
+ 00018183  0x000028b0 istore  0x00000001 , 0x0000000a 
+ 00018184  0x000028b1 force  0x00000005 , 0x00000039 
+ 00018185  0x000028b2 branch  0x0000494c 
+ 00018186  0x000028b5 call  0x0000496e 
+ 00018187  0x000028b6 fetch  0x00000008 , 0x00000080 
+ 00018188  0x000028b7 istore  0x00000008 , 0x0000000a 
+ 00018189  0x000028b8 force  0x0000000c , 0x00000039 
+ 00018190  0x000028b9 branch  0x0000494c 
+ 00018191  0x000028bc call  0x0000496e 
+ 00018192  0x000028bd fetch  0x00000008 , 0x00004138 
+ 00018193  0x000028be istore  0x00000008 , 0x0000000a 
+ 00018194  0x000028bf force  0x0000000c , 0x00000039 
+ 00018195  0x000028c0 branch  0x0000494c 
+ 00018196  0x000028c3 call  0x0000496e 
+ 00018197  0x000028c4 setarg  0x00000101 
+ 00018198  0x000028c5 istore  0x00000002 , 0x0000000a 
+ 00018199  0x000028c6 setarg  0x00000001 
+ 00018200  0x000028c7 istore  0x00000008 , 0x0000000a 
+ 00018201  0x000028c8 force  0x0000000e , 0x00000039 
+ 00018202  0x000028c9 branch  0x0000494c 
+ 00018203  0x000028cc call  0x0000496e 
+ 00018204  0x000028cd fetch  0x00000007 , 0x00000083 
+ 00018205  0x000028ce istore  0x00000007 , 0x0000000a 
+ 00018206  0x000028cf force  0x0000000b , 0x00000039 
+ 00018207  0x000028d0 branch  0x0000494c 
+ 00018208  0x000028d3 call  0x0000496e 
+ 00018209  0x000028d4 fetch  0x00000006 , 0x00004140 
+ 00018210  0x000028d5 istore  0x00000006 , 0x0000000a 
+ 00018211  0x000028d6 force  0x0000000a , 0x00000039 
+ 00018212  0x000028d7 branch  0x0000494c 
+ 00018213  0x000028da branch  0x00004949 
+ 00018214  0x000028de branch  0x00004949 
+ 00018215  0x000028e0 call  0x0000496e 
+ 00018216  0x000028e1 call  0x0000496b 
+ 00018217  0x000028e2 setarg  0x000000ff 
+ 00018218  0x000028e3 istore  0x00000001 , 0x0000000a 
+ 00018219  0x000028e4 force  0x00000007 , 0x00000039 
+ 00018220  0x000028e5 branch  0x0000494c 
+ 00018221  0x000028e8 call  0x0000496e 
+ 00018222  0x000028e9 call  0x0000496b 
+ 00018223  0x000028ea setarg  0x00000000 
+ 00018224  0x000028eb istore  0x00000001 , 0x0000000a 
+ 00018225  0x000028ec force  0x00000007 , 0x00000039 
+ 00018226  0x000028ed branch  0x0000494c 
+ 00018227  0x000028f0 set0  0x00000025 , 0x00000000 
+ 00018228  0x000028f1 bpatch  0x000000de , 0x0000401b 
+ 00018229  0x000028f2 branch  0x00004949 
+ 00018230  0x000028f4 set0  0x00000025 , 0x00000000 
+ 00018231  0x000028f5 bpatch  0x000000df , 0x0000401b 
+ 00018232  0x000028f6 branch  0x00004949 
+ 00018233  0x000028fc call  0x00004763 
+ 00018234  0x000028fd jam  0x00000007 , 0x00004272 
+ 00018235  0x000028fe ifetch  0x00000001 , 0x00000003 
+ 00018236  0x000028ff beq  0x00000001 , 0x00004933 
+ 00018237  0x00002900 jam  0x00000019 , 0x00004272 
+ 00018238  0x00002901 branch  0x00004933 
+ 00018239  0x00002904 branch  0x00004739 
+ 00018240  0x00002905 call  0x00004763 
+ 00018241  0x00002906 jam  0x00000008 , 0x00004272 
+ 00018242  0x00002907 branch  0x00004949 
+ 00018243  0x0000290a call  0x00004933 
+ 00018244  0x0000290b call  0x00004970 
+ 00018245  0x0000290c setarg  0x00000000 
+ 00018246  0x0000290d istore  0x00000001 , 0x0000000a 
+ 00018247  0x0000290e ifetch  0x00000004 , 0x00000003 
+ 00018248  0x0000290f istore  0x00000004 , 0x0000000a 
+ 00018249  0x00002910 force  0x00000008 , 0x00000039 
+ 00018250  0x00002911 arg  0x0000001d , 0x00000007 
+ 00018251  0x00002912 arg  0x00000005 , 0x00000039 
+ 00018252  0x00002913 branch  0x00004952 
+ 00018253  0x00002916 force  0x00000001 , 0x00000011 
+ 00018254  0x00002917 branch  0x0000493d 
+ 00018255  0x0000291c call  0x00004766 
+ 00018256  0x0000291d ifetch  0x00000002 , 0x00000003 
+ 00018257  0x0000291e store  0x00000002 , 0x00004280 
+ 00018258  0x0000291f ifetch  0x00000002 , 0x00000003 
+ 00018259  0x00002920 store  0x00000002 , 0x0000027b 
+ 00018260  0x00002921 ifetch  0x00000002 , 0x00000003 
+ 00018261  0x00002922 store  0x00000002 , 0x00004282 
+ 00018262  0x00002923 ifetch  0x00000002 , 0x00000003 
+ 00018263  0x00002924 store  0x00000002 , 0x00004284 
+ 00018264  0x00002925 jam  0x00000012 , 0x00004272 
+ 00018265  0x00002926 branch  0x00004933 
+ 00018266  0x00002929 call  0x00004766 
+ 00018267  0x0000292a call  0x0000475d 
+ 00018268  0x0000292b branch  0x00004933 
+ 00018269  0x0000292e jam  0x00000013 , 0x00004272 
+ 00018270  0x0000292f rtn 
+ 00018271  0x00002932 branch  0x00004949 
+ 00018272  0x00002935 call  0x00004763 
+ 00018273  0x00002936 jam  0x00000018 , 0x00004272 
+ 00018274  0x00002937 branch  0x00004933 
+ 00018275  0x0000293a ifetch  0x00000006 , 0x00000003 
+ 00018276  0x0000293b store  0x00000006 , 0x00004274 
+ 00018277  0x0000293c rtn 
+ 00018278  0x0000293f ifetch  0x00000002 , 0x00000003 
+ 00018279  0x00002940 store  0x00000001 , 0x00004273 
+ 00018280  0x00002941 rtn 
+ 00018281  0x00002944 call  0x00004766 
+ 00018282  0x00002945 call  0x0000496e 
+ 00018283  0x00002946 fetch  0x00000001 , 0x00004273 
+ 00018284  0x00002947 istore  0x00000002 , 0x0000000a 
+ 00018285  0x00002948 rtn 
+ 00018286  0x0000294d call  0x00004766 
+ 00018287  0x0000294e call  0x00004933 
+ 00018288  0x0000294f call  0x00004970 
+ 00018289  0x00002950 force  0x00000000 , 0x0000003f 
+ 00018290  0x00002951 istore  0x00000001 , 0x0000000a 
+ 00018291  0x00002952 fetch  0x00000001 , 0x00004273 
+ 00018292  0x00002953 istore  0x00000002 , 0x0000000a 
+ 00018293  0x00002954 rtn 
+ 00018294  0x00002957 ifetch  0x00000002 , 0x00000003 
+ 00018295  0x00002958 iadd  0x00000022 , 0x0000003f 
+ 00018296  0x00002959 and_into  0x000001fc , 0x0000003f 
+ 00018297  0x0000295a store  0x00000004 , 0x000000f4 
+ 00018298  0x0000295b rtn 
+ 00018299  0x0000295e set0  0x00000025 , 0x00000000 
+ 00018300  0x0000295f bpatch  0x000000e0 , 0x0000401c 
+ 00018301  0x00002960 fetch  0x00000001 , 0x00000274 
+ 00018302  0x00002961 sub  0x0000003f , 0x00000002 , 0x0000003e 
+ 00018303  0x00002962 nrtn  0x00000002 
+ 00018304  0x00002963 fetcht  0x00000006 , 0x00000182 
+ 00018305  0x00002964 call  0x000032fc 
+ 00018306  0x00002965 rtn  0x00000005 
+ 00018307  0x00002966 call  0x00004972 
+ 00018308  0x00002967 setarg  0x00010f22 
+ 00018309  0x00002968 istore  0x00000003 , 0x0000000a 
+ 00018310  0x00002969 fetch  0x00000006 , 0x00000182 
+ 00018311  0x0000296a istore  0x00000006 , 0x0000000a 
+ 00018312  0x0000296b fetch  0x00000001 , 0x0000017d 
+ 00018313  0x0000296c copy  0x0000003f , 0x00000002 
+ 00018314  0x0000296d rshift3  0x0000003f , 0x0000003f 
+ 00018315  0x0000296e rshift3  0x0000003f , 0x0000003f 
+ 00018316  0x0000296f istore  0x00000001 , 0x0000000a 
+ 00018317  0x00002970 copy  0x00000002 , 0x0000003f 
+ 00018318  0x00002971 and  0x0000003f , 0x00000030 , 0x0000003f 
+ 00018319  0x00002972 rshift3  0x0000003f , 0x0000003f 
+ 00018320  0x00002973 rshift  0x0000003f , 0x0000003f 
+ 00018321  0x00002974 istore  0x00000001 , 0x0000000a 
+ 00018322  0x00002975 fetch  0x00000003 , 0x0000017f 
+ 00018323  0x00002976 istore  0x00000003 , 0x0000000a 
+ 00018324  0x00002977 fetch  0x00000004 , 0x0000016f 
+ 00018325  0x00002978 isub  0x00000022 , 0x0000003f 
+ 00018326  0x00002979 istore  0x00000002 , 0x0000000a 
+ 00018327  0x0000297a setarg  0x000000c8 
+ 00018328  0x0000297b istore  0x00000001 , 0x0000000a 
+ 00018329  0x0000297c force  0x0000000f , 0x00000039 
+ 00018330  0x0000297d branch  0x00004959 
+ 00018331  0x00002980 set0  0x00000025 , 0x00000000 
+ 00018332  0x00002981 bpatch  0x000000e1 , 0x0000401c 
+ 00018333  0x00002982 force  0x0000021c , 0x00000002 
+ 00018334  0x00002983 fetch  0x00000002 , 0x00000291 
+ 00018335  0x00002984 isub  0x00000002 , 0x0000003e 
+ 00018336  0x00002985 nrtn  0x00000002 
+ 00018337  0x00002986 fetcht  0x00000003 , 0x00000286 
+ 00018338  0x00002987 fetch  0x00000003 , 0x00000185 
+ 00018339  0x00002988 isub  0x00000002 , 0x0000003e 
+ 00018340  0x00002989 rtn  0x00000005 
+ 00018341  0x0000298a rtn  0x00000034 
+ 00018342  0x0000298b store  0x00000003 , 0x00000286 
+ 00018343  0x0000298c fetch  0x00000001 , 0x00000274 
+ 00018344  0x0000298d sub  0x0000003f , 0x00000002 , 0x0000003e 
+ 00018345  0x0000298e nrtn  0x00000002 
+ 00018346  0x0000298f fetcht  0x00000006 , 0x00000182 
+ 00018347  0x00002990 call  0x000032fc 
+ 00018348  0x00002991 rtn  0x00000005 
+ 00018349  0x00002992 call  0x000047cc 
+ 00018350  0x00002993 force  0x0000000f , 0x00000002 
+ 00018351  0x00002994 fetch  0x00000001 , 0x000004df 
+ 00018352  0x00002995 bne  0x00000009 , 0x000047c5 
+ 00018353  0x00002996 fetch  0x00000001 , 0x000004de 
+ 00018354  0x00002997 branch  0x000047c5 , 0x00000034 
+ 00018355  0x00002998 iforce  0x00000039 
+ 00018356  0x00002999 istore  0x00000001 , 0x0000000a 
+ 00018357  0x0000299a iadd  0x00000002 , 0x00000002 
+ 00018358  0x0000299b increase  0x00000001 , 0x00000002 
+ 00018359  0x0000299c arg  0x000004df , 0x00000006 
+ 00018360  0x0000299f ifetch  0x00000001 , 0x00000006 
+ 00018361  0x000029a0 istore  0x00000001 , 0x0000000a 
+ 00018362  0x000029a1 loop  0x000047b8 
+ 00018363  0x000029a3 ifetch  0x00000001 , 0x00000006 
+ 00018364  0x000029a4 branch  0x000047c5 , 0x00000034 
+ 00018365  0x000029a5 iforce  0x00000039 
+ 00018366  0x000029a6 istore  0x00000001 , 0x0000000a 
+ 00018367  0x000029a7 iadd  0x00000002 , 0x00000002 
+ 00018368  0x000029a8 increase  0x00000001 , 0x00000002 
+ 00018369  0x000029aa ifetch  0x00000001 , 0x00000006 
+ 00018370  0x000029ab istore  0x00000001 , 0x0000000a 
+ 00018371  0x000029ac loop  0x000047c1 
+ 00018372  0x000029ad branch  0x000047bb 
+ 00018373  0x000029af sub  0x00000002 , 0x000000ff , 0x0000003f 
+ 00018374  0x000029b0 iforce  0x00000039 
+ 00018375  0x000029b2 setarg  0x00000000 
+ 00018376  0x000029b3 istore  0x00000001 , 0x0000000a 
+ 00018377  0x000029b4 loop  0x000047c7 
+ 00018378  0x000029b5 force  0x000000ff , 0x00000039 
+ 00018379  0x000029b6 branch  0x00004959 
+ 00018380  0x000029b9 set0  0x00000025 , 0x00000000 
+ 00018381  0x000029ba bpatch  0x000000e2 , 0x0000401c 
+ 00018382  0x000029bb call  0x00004972 
+ 00018383  0x000029bc setarg  0x0001ff2f 
+ 00018384  0x000029bd istore  0x00000003 , 0x0000000a 
+ 00018385  0x000029be fetch  0x00000006 , 0x00000182 
+ 00018386  0x000029bf istore  0x00000006 , 0x0000000a 
+ 00018387  0x000029c0 fetch  0x00000001 , 0x0000017d 
+ 00018388  0x000029c1 copy  0x0000003f , 0x00000002 
+ 00018389  0x000029c2 rshift3  0x0000003f , 0x0000003f 
+ 00018390  0x000029c3 rshift3  0x0000003f , 0x0000003f 
+ 00018391  0x000029c4 istore  0x00000001 , 0x0000000a 
+ 00018392  0x000029c5 copy  0x00000002 , 0x0000003f 
+ 00018393  0x000029c6 and  0x0000003f , 0x00000030 , 0x0000003f 
+ 00018394  0x000029c7 rshift3  0x0000003f , 0x0000003f 
+ 00018395  0x000029c8 rshift  0x0000003f , 0x0000003f 
+ 00018396  0x000029c9 istore  0x00000001 , 0x0000000a 
+ 00018397  0x000029ca fetch  0x00000003 , 0x0000017f 
+ 00018398  0x000029cb istore  0x00000003 , 0x0000000a 
+ 00018399  0x000029cc fetch  0x00000004 , 0x0000016f 
+ 00018400  0x000029cd isub  0x00000022 , 0x0000003f 
+ 00018401  0x000029ce istore  0x00000002 , 0x0000000a 
+ 00018402  0x000029cf setarg  0x000000c8 
+ 00018403  0x000029d0 istore  0x00000001 , 0x0000000a 
+ 00018404  0x000029d1 rtn 
+ 00018405  0x000029d4 set0  0x00000025 , 0x00000000 
+ 00018406  0x000029d5 bpatch  0x000000e3 , 0x0000401c 
+ 00018407  0x000029d6 fetch  0x00000001 , 0x00004132 
+ 00018408  0x000029d7 rtnne  0x00000001 
+ 00018409  0x000029d8 call  0x00004968 
+ 00018410  0x000029d9 istoret  0x00000008 , 0x0000000a 
+ 00018411  0x000029da force  0x0000000b , 0x00000039 
+ 00018412  0x000029db force  0x0000000b , 0x00000007 
+ 00018413  0x000029dc branch  0x00004952 
+ 00018414  0x000029df set0  0x00000025 , 0x00000000 
+ 00018415  0x000029e0 bpatch  0x000000e4 , 0x0000401c 
+ 00018416  0x000029e1 fetch  0x00000001 , 0x00004132 
+ 00018417  0x000029e2 rtnne  0x00000001 
+ 00018418  0x000029e4 call  0x00004970 
+ 00018419  0x000029e5 fetch  0x00000006 , 0x00000040 
+ 00018420  0x000029e6 istore  0x00000006 , 0x0000000a 
+ 00018421  0x000029e7 istoret  0x00000008 , 0x0000000a 
+ 00018422  0x000029e8 force  0x0000000e , 0x00000039 
+ 00018423  0x000029e9 force  0x0000003d , 0x00000007 
+ 00018424  0x000029ea branch  0x00004952 
+ 00018425  0x000029ed set0  0x00000025 , 0x00000000 
+ 00018426  0x000029ee bpatch  0x000000e5 , 0x0000401c 
+ 00018427  0x000029ef fetch  0x00000001 , 0x00004132 
+ 00018428  0x000029f0 rtnne  0x00000001 
+ 00018429  0x000029f2 call  0x00004968 
+ 00018430  0x000029f3 fetch  0x00000001 , 0x00000449 
+ 00018431  0x000029f4 istore  0x00000001 , 0x0000000a 
+ 00018432  0x000029f5 setarg  0x00000001 
+ 00018433  0x000029f6 istore  0x00000001 , 0x0000000a 
+ 00018434  0x000029f7 istoret  0x00000008 , 0x0000000a 
+ 00018435  0x000029f8 force  0x0000000d , 0x00000039 
+ 00018436  0x000029f9 force  0x00000023 , 0x00000007 
+ 00018437  0x000029fa branch  0x00004952 
+ 00018438  0x000029fe set0  0x00000025 , 0x00000000 
+ 00018439  0x000029ff bpatch  0x000000e6 , 0x0000401c 
+ 00018440  0x00002a00 fetch  0x00000001 , 0x00004132 
+ 00018441  0x00002a01 rtnne  0x00000001 
+ 00018442  0x00002a02 call  0x00004968 
+ 00018443  0x00002a03 istoret  0x00000005 , 0x0000000a 
+ 00018444  0x00002a04 force  0x00000008 , 0x00000039 
+ 00018445  0x00002a05 force  0x0000000c , 0x00000007 
+ 00018446  0x00002a06 branch  0x00004952 
+ 00018447  0x00002a09 set0  0x00000025 , 0x00000000 
+ 00018448  0x00002a0a bpatch  0x000000e7 , 0x0000401c 
+ 00018449  0x00002a0b fetch  0x00000001 , 0x00004132 
+ 00018450  0x00002a0c rtnne  0x00000001 
+ 00018451  0x00002a0e call  0x00004970 
+ 00018452  0x00002a0f fetch  0x00000006 , 0x00000040 
+ 00018453  0x00002a10 istore  0x00000006 , 0x0000000a 
+ 00018454  0x00002a11 fetch  0x00000003 , 0x000007e9 
+ 00018455  0x00002a12 istore  0x00000003 , 0x0000000a 
+ 00018456  0x00002a13 force  0x00000009 , 0x00000039 
+ 00018457  0x00002a14 force  0x00000032 , 0x00000007 
+ 00018458  0x00002a15 branch  0x00004952 
+ 00018459  0x00002a18 set0  0x00000025 , 0x00000000 
+ 00018460  0x00002a19 bpatch  0x000000e8 , 0x0000401d 
+ 00018461  0x00002a1a fetch  0x00000001 , 0x00004132 
+ 00018462  0x00002a1b rtnne  0x00000001 
+ 00018463  0x00002a1d call  0x00004970 
+ 00018464  0x00002a1e fetch  0x00000006 , 0x00000040 
+ 00018465  0x00002a1f istore  0x00000006 , 0x0000000a 
+ 00018466  0x00002a20 force  0x00000006 , 0x00000039 
+ 00018467  0x00002a21 force  0x00000031 , 0x00000007 
+ 00018468  0x00002a22 branch  0x00004952 
+ 00018469  0x00002a26 force  0x00000000 , 0x00000002 
+ 00018470  0x00002a28 set0  0x00000025 , 0x00000000 
+ 00018471  0x00002a29 bpatch  0x000000e9 , 0x0000401d 
+ 00018472  0x00002a2a fetch  0x00000001 , 0x00004132 
+ 00018473  0x00002a2b rtnne  0x00000001 
+ 00018474  0x00002a2c force  0x00000003 , 0x00000007 
+ 00018475  0x00002a2d jam  0x00000005 , 0x00004800 
+ 00018476  0x00002a2e call  0x00004970 
+ 00018477  0x00002a2f istoret  0x00000001 , 0x0000000a 
+ 00018478  0x00002a30 call  0x0000496b 
+ 00018479  0x00002a31 call  0x00004965 
+ 00018480  0x00002a32 force  0x00000001 , 0x0000003f 
+ 00018481  0x00002a33 istore  0x00000001 , 0x0000000a 
+ 00018482  0x00002a34 force  0x00000000 , 0x0000003f 
+ 00018483  0x00002a35 fetcht  0x00000001 , 0x0000004c 
+ 00018484  0x00002a36 isolate1  0x00000002 , 0x00000002 
+ 00018485  0x00002a37 setflag  0x00000001 , 0x00000000 , 0x0000003f 
+ 00018486  0x00002a38 istore  0x00000001 , 0x0000000a 
+ 00018487  0x00002a39 force  0x0000000b , 0x00000039 
+ 00018488  0x00002a3a branch  0x00004952 
+ 00018489  0x00002a3e set0  0x00000025 , 0x00000000 
+ 00018490  0x00002a3f bpatch  0x000000ea , 0x0000401d 
+ 00018491  0x00002a40 fetch  0x00000001 , 0x00004132 
+ 00018492  0x00002a41 rtnne  0x00000001 
+ 00018493  0x00002a42 force  0x00000004 , 0x00000007 
+ 00018494  0x00002a43 call  0x00004970 
+ 00018495  0x00002a44 call  0x00004965 
+ 00018496  0x00002a46 fetch  0x00000003 , 0x0000017f 
+ 00018497  0x00002a47 istore  0x00000003 , 0x0000000a 
+ 00018498  0x00002a48 istoret  0x00000001 , 0x0000000a 
+ 00018499  0x00002a49 force  0x0000000a , 0x00000039 
+ 00018500  0x00002a4a branch  0x00004952 
+ 00018501  0x00002a4d set0  0x00000025 , 0x00000000 
+ 00018502  0x00002a4e bpatch  0x000000eb , 0x0000401d 
+ 00018503  0x00002a4f fetch  0x00000001 , 0x00004132 
+ 00018504  0x00002a50 rtnne  0x00000001 
+ 00018505  0x00002a51 call  0x00004968 
+ 00018506  0x00002a52 force  0x00000000 , 0x0000003f 
+ 00018507  0x00002a53 fetcht  0x00000001 , 0x0000004c 
+ 00018508  0x00002a54 isolate1  0x00000002 , 0x00000002 
+ 00018509  0x00002a55 setflag  0x00000001 , 0x00000000 , 0x0000003f 
+ 00018510  0x00002a56 istore  0x00000001 , 0x0000000a 
+ 00018511  0x00002a57 force  0x00000008 , 0x00000007 
+ 00018512  0x00002a58 force  0x00000004 , 0x00000039 
+ 00018513  0x00002a59 branch  0x00004952 
+ 00018514  0x00002a5d set0  0x00000025 , 0x00000000 
+ 00018515  0x00002a5e bpatch  0x000000ec , 0x0000401d 
+ 00018516  0x00002a5f fetch  0x00000001 , 0x00004132 
+ 00018517  0x00002a60 rtnne  0x00000001 
+ 00018518  0x00002a61 force  0x00000018 , 0x00000007 
+ 00018519  0x00002a62 call  0x00004970 
+ 00018520  0x00002a63 call  0x00004965 
+ 00018521  0x00002a64 arg  0x00004262 , 0x00000006 
+ 00018522  0x00002a65 force  0x00000010 , 0x00000039 
+ 00018523  0x00002a66 call  0x00004976 
+ 00018524  0x00002a67 force  0x00000005 , 0x0000003f 
+ 00018525  0x00002a68 istore  0x00000001 , 0x0000000a 
+ 00018526  0x00002a69 force  0x00000017 , 0x00000039 
+ 00018527  0x00002a6a branch  0x00004952 
+ 00018528  0x00002a6d fetch  0x00000001 , 0x00004132 
+ 00018529  0x00002a6e rtnne  0x00000001 
+ 00018530  0x00002a6f force  0x00000033 , 0x00000007 
+ 00018531  0x00002a70 call  0x00004970 
+ 00018532  0x00002a71 call  0x00004965 
+ 00018533  0x00002a72 fetch  0x00000004 , 0x000007ec 
+ 00018534  0x00002a73 istore  0x00000004 , 0x0000000a 
+ 00018535  0x00002a74 force  0x0000000a , 0x00000039 
+ 00018536  0x00002a75 branch  0x00004952 
+ 00018537  0x00002a78 fetch  0x00000001 , 0x00004132 
+ 00018538  0x00002a79 rtnne  0x00000001 
+ 00018539  0x00002a7a force  0x00000036 , 0x00000007 
+ 00018540  0x00002a7b call  0x00004970 
+ 00018541  0x00002a7c setarg  0x00000000 
+ 00018542  0x00002a7d istore  0x00000001 , 0x0000000a 
+ 00018543  0x00002a7e call  0x00004965 
+ 00018544  0x00002a7f force  0x00000007 , 0x00000039 
+ 00018545  0x00002a80 branch  0x00004952 
+ 00018546  0x00002a84 set0  0x00000025 , 0x00000000 
+ 00018547  0x00002a85 bpatch  0x000000ed , 0x0000401d 
+ 00018548  0x00002a86 force  0x00000017 , 0x00000007 
+ 00018549  0x00002a88 fetch  0x00000001 , 0x00004132 
+ 00018550  0x00002a89 rtnne  0x00000001 
+ 00018551  0x00002a8a call  0x00004970 
+ 00018552  0x00002a8b call  0x00004965 
+ 00018553  0x00002a8c force  0x00000006 , 0x00000039 
+ 00018554  0x00002a8d branch  0x00004952 
+ 00018555  0x00002a90 fetch  0x00000001 , 0x00004132 
+ 00018556  0x00002a91 rtnne  0x00000001 
+ 00018557  0x00002a92 force  0x00000016 , 0x00000007 
+ 00018558  0x00002a93 branch  0x00004875 
+ 00018559  0x00002a97 fetch  0x00000001 , 0x00004132 
+ 00018560  0x00002a98 rtnne  0x00000001 
+ 00018561  0x00002a99 force  0x00000012 , 0x00000007 
+ 00018562  0x00002a9a call  0x00004970 
+ 00018563  0x00002a9b force  0x00000000 , 0x0000003f 
+ 00018564  0x00002a9c istore  0x00000001 , 0x0000000a 
+ 00018565  0x00002a9d call  0x00004965 
+ 00018566  0x00002a9e istoret  0x00000001 , 0x0000000a 
+ 00018567  0x00002a9f force  0x00000008 , 0x00000039 
+ 00018568  0x00002aa0 branch  0x00004952 
+ 00018569  0x00002aa3 fetch  0x00000001 , 0x00004132 
+ 00018570  0x00002aa4 rtnne  0x00000001 
+ 00018571  0x00002aa5 force  0x00000000 , 0x00000002 
+ 00018572  0x00002aa6 nbranch  0x0000488e , 0x00000029 
+ 00018573  0x00002aa7 force  0x00000001 , 0x00000002 
+ 00018574  0x00002aa9 fetch  0x00000001 , 0x00004132 
+ 00018575  0x00002aaa rtnne  0x00000001 
+ 00018576  0x00002aab force  0x00000012 , 0x00000007 
+ 00018577  0x00002aac call  0x00004970 
+ 00018578  0x00002aad force  0x00000035 , 0x0000003f 
+ 00018579  0x00002aae istore  0x00000001 , 0x0000000a 
+ 00018580  0x00002aaf call  0x00004965 
+ 00018581  0x00002ab0 istoret  0x00000001 , 0x0000000a 
+ 00018582  0x00002ab1 force  0x00000008 , 0x00000039 
+ 00018583  0x00002ab2 branch  0x00004952 
+ 00018584  0x00002ab5 set0  0x00000025 , 0x00000000 
+ 00018585  0x00002ab6 bpatch  0x000000ee , 0x0000401d 
+ 00018586  0x00002ab7 fetch  0x00000001 , 0x00004132 
+ 00018587  0x00002ab8 rtnne  0x00000001 
+ 00018588  0x00002ab9 call  0x00004972 
+ 00018589  0x00002aba setarg  0x0000ff07 
+ 00018590  0x00002abb istore  0x00000002 , 0x0000000a 
+ 00018591  0x00002abc deposit  0x00000007 
+ 00018592  0x00002abd istore  0x00000001 , 0x0000000a 
+ 00018593  0x00002abe call  0x00004965 
+ 00018594  0x00002abf arg  0x00000103 , 0x00000006 
+ 00018595  0x00002ac0 force  0x000000f8 , 0x00000039 
+ 00018596  0x00002ac2 ifetch  0x00000001 , 0x00000006 
+ 00018597  0x00002ac3 istore  0x00000001 , 0x0000000a 
+ 00018598  0x00002ac4 loop  0x000048a4 
+ 00018599  0x00002ac5 force  0x000000ff , 0x00000039 
+ 00018600  0x00002ac6 branch  0x00004959 
+ 00018601  0x00002ac9 set0  0x00000025 , 0x00000000 
+ 00018602  0x00002aca bpatch  0x000000ef , 0x0000401d 
+ 00018603  0x00002acb fetch  0x00000001 , 0x00004132 
+ 00018604  0x00002acc rtnne  0x00000001 
+ 00018605  0x00002acd hfetch  0x00000001 , 0x0000810e 
+ 00018606  0x00002ace nrtn  0x00000034 
+ 00018607  0x00002acf fetch  0x00000001 , 0x0000004b 
+ 00018608  0x00002ad0 rtnbit0  0x00000007 
+ 00018609  0x00002ad1 set0  0x00000007 , 0x0000003f 
+ 00018610  0x00002ad2 store  0x00000001 , 0x0000004b 
+ 00018611  0x00002ad3 call  0x00004970 
+ 00018612  0x00002ad4 force  0x00000001 , 0x0000003f 
+ 00018613  0x00002ad5 istore  0x00000001 , 0x0000000a 
+ 00018614  0x00002ad6 call  0x0000496b 
+ 00018615  0x00002ad7 force  0x00000001 , 0x0000003f 
+ 00018616  0x00002ad8 istore  0x00000002 , 0x0000000a 
+ 00018617  0x00002ad9 force  0x00000013 , 0x00000007 
+ 00018618  0x00002ada force  0x00000005 , 0x00000039 
+ 00018619  0x00002adb branch  0x00004952 
+ 00018620  0x00002ae0 set0  0x00000025 , 0x00000000 
+ 00018621  0x00002ae1 bpatch  0x000000f0 , 0x0000401e 
+ 00018622  0x00002ae2 fetch  0x00000001 , 0x00004132 
+ 00018623  0x00002ae3 rtnne  0x00000001 
+ 00018624  0x00002ae4 call  0x00004968 
+ 00018625  0x00002ae5 force  0x00000006 , 0x00000007 
+ 00018626  0x00002ae6 force  0x00000003 , 0x00000039 
+ 00018627  0x00002ae7 branch  0x00004952 
+ 00018628  0x00002aec set0  0x00000025 , 0x00000000 
+ 00018629  0x00002aed bpatch  0x000000f1 , 0x0000401e 
+ 00018630  0x00002aee fetch  0x00000001 , 0x00004132 
+ 00018631  0x00002aef rtnne  0x00000001 
+ 00018632  0x00002af0 call  0x00004970 
+ 00018633  0x00002af1 force  0x00000000 , 0x0000003f 
+ 00018634  0x00002af2 istore  0x00000001 , 0x0000000a 
+ 00018635  0x00002af3 istoret  0x00000002 , 0x0000000a 
+ 00018636  0x00002af4 fetch  0x00000001 , 0x000002c0 
+ 00018637  0x00002af5 istore  0x00000001 , 0x0000000a 
+ 00018638  0x00002af6 force  0x00000005 , 0x00000007 
+ 00018639  0x00002af7 force  0x00000004 , 0x00000039 
+ 00018640  0x00002af8 branch  0x00004952 
+ 00018641  0x00002afc set0  0x00000025 , 0x00000000 
+ 00018642  0x00002afd bpatch  0x000000f2 , 0x0000401e 
+ 00018643  0x00002afe fetch  0x00000001 , 0x00004132 
+ 00018644  0x00002aff rtnne  0x00000001 , 0x0000003f 
+ 00018645  0x00002b00 call  0x00004970 
+ 00018646  0x00002b01 setarg  0x00000102 
+ 00018647  0x00002b02 istore  0x00000002 , 0x0000000a 
+ 00018648  0x00002b03 fetcht  0x00000001 , 0x00000340 
+ 00018649  0x00002b04 and  0x00000002 , 0x0000000f , 0x0000003f 
+ 00018650  0x00002b05 istore  0x00000001 , 0x0000000a 
+ 00018651  0x00002b06 copy  0x00000011 , 0x0000003f 
+ 00018652  0x00002b07 istore  0x00000001 , 0x0000000a 
+ 00018653  0x00002b08 fetcht  0x00000001 , 0x00000341 
+ 00018654  0x00002b09 increase  0xfffffffa , 0x00000002 
+ 00018655  0x00002b0a fetch  0x00000006 , 0x00000342 
+ 00018656  0x00002b0b istore  0x00000006 , 0x0000000a 
+ 00018657  0x00002b0c istoret  0x00000001 , 0x0000000a 
+ 00018658  0x00002b0d copy  0x00000002 , 0x00000039 
+ 00018659  0x00002b0e call  0x00004976 
+ 00018660  0x00002b0f setarg  0x0000007f 
+ 00018661  0x00002b10 istore  0x00000001 , 0x0000000a 
+ 00018662  0x00002b11 copy  0x00000002 , 0x00000039 
+ 00018663  0x00002b12 add  0x00000039 , 0x0000000c , 0x00000039 
+ 00018664  0x00002b13 force  0x0000003e , 0x00000007 
+ 00018665  0x00002b14 branch  0x00004952 
+ 00018666  0x00002b17 set0  0x00000025 , 0x00000000 
+ 00018667  0x00002b18 bpatch  0x000000f3 , 0x0000401e 
+ 00018668  0x00002b19 fetch  0x00000001 , 0x00004132 
+ 00018669  0x00002b1a rtnne  0x00000001 , 0x0000003f 
+ 00018670  0x00002b1b call  0x00004970 
+ 00018671  0x00002b1c setarg  0x00000001 
+ 00018672  0x00002b1d istore  0x00000001 , 0x0000000a 
+ 00018673  0x00002b1e istoret  0x00000001 , 0x0000000a 
+ 00018674  0x00002b1f fetch  0x00000001 , 0x000003d6 
+ 00018675  0x00002b20 istore  0x00000002 , 0x0000000a 
+ 00018676  0x00002b21 fetch  0x00000001 , 0x000003c1 
+ 00018677  0x00002b22 rshift  0x0000003f , 0x0000003f 
+ 00018678  0x00002b23 setflip  0x00000000 , 0x0000003f 
+ 00018679  0x00002b24 istore  0x00000001 , 0x0000000a 
+ 00018680  0x00002b25 fetch  0x00000001 , 0x000044e6 
+ 00018681  0x00002b26 istore  0x00000001 , 0x0000000a 
+ 00018682  0x00002b27 fetch  0x00000006 , 0x000003d0 
+ 00018683  0x00002b28 istore  0x00000006 , 0x0000000a 
+ 00018684  0x00002b29 fetch  0x00000002 , 0x000043d0 
+ 00018685  0x00002b2a istore  0x00000002 , 0x0000000a 
+ 00018686  0x00002b2b fetch  0x00000002 , 0x000003ed 
+ 00018687  0x00002b2c istore  0x00000002 , 0x0000000a 
+ 00018688  0x00002b2d fetch  0x00000002 , 0x000003ef 
+ 00018689  0x00002b2e istore  0x00000002 , 0x0000000a 
+ 00018690  0x00002b2f fetch  0x00000001 , 0x000003f8 
+ 00018691  0x00002b30 istore  0x00000001 , 0x0000000a 
+ 00018692  0x00002b31 force  0x0000003e , 0x00000007 
+ 00018693  0x00002b32 arg  0x00000013 , 0x00000039 
+ 00018694  0x00002b33 branch  0x00004952 
+ 00018695  0x00002b38 set0  0x00000025 , 0x00000000 
+ 00018696  0x00002b39 bpatch  0x000000f4 , 0x0000401e 
+ 00018697  0x00002b3a fetch  0x00000001 , 0x00004132 
+ 00018698  0x00002b3b rtnne  0x00000001 
+ 00018699  0x00002b3d call  0x00004970 
+ 00018700  0x00002b3e call  0x00004968 
+ 00018701  0x00002b3f istoret  0x00000001 , 0x0000000a 
+ 00018702  0x00002b40 fetch  0x00000002 , 0x00000032 
+ 00018703  0x00002b41 rshift  0x0000003f , 0x0000003f 
+ 00018704  0x00002b42 istore  0x00000002 , 0x0000000a 
+ 00018705  0x00002b43 force  0x00000006 , 0x00000039 
+ 00018706  0x00002b44 force  0x00000014 , 0x00000007 
+ 00018707  0x00002b45 branch  0x00004952 
+ 00018708  0x00002b49 set0  0x00000025 , 0x00000000 
+ 00018709  0x00002b4a bpatch  0x000000f5 , 0x0000401e 
+ 00018710  0x00002b4b fetch  0x00000001 , 0x00004132 
+ 00018711  0x00002b4c rtnne  0x00000001 
+ 00018712  0x00002b4d set0  0x00000025 , 0x00000000 
+ 00018713  0x00002b4e bpatch  0x000000f6 , 0x0000401e 
+ 00018714  0x00002b4f call  0x00004970 
+ 00018715  0x00002b50 istoret  0x00000001 , 0x0000000a 
+ 00018716  0x00002b51 setarg  0x00000e00 
+ 00018717  0x00002b52 istore  0x00000002 , 0x0000000a 
+ 00018718  0x00002b53 call  0x00004965 
+ 00018719  0x00002b54 force  0x00000000 , 0x0000003f 
+ 00018720  0x00002b55 bmark1  0x00000007 , 0x00004924 
+ 00018721  0x00002b56 force  0x00000000 , 0x0000003f 
+ 00018722  0x00002b57 istore  0x00000007 , 0x0000000a 
+ 00018723  0x00002b58 branch  0x0000492c 
+ 00018724  0x00002b5a fetch  0x00000001 , 0x00004132 
+ 00018725  0x00002b5b rtnne  0x00000001 
+ 00018726  0x00002b5c setarg  0x00020602 
+ 00018727  0x00002b5d istore  0x00000003 , 0x0000000a 
+ 00018728  0x00002b5e setarg  0x0000001e 
+ 00018729  0x00002b5f istore  0x00000002 , 0x0000000a 
+ 00018730  0x00002b60 setarg  0x0000001e 
+ 00018731  0x00002b61 istore  0x00000002 , 0x0000000a 
+ 00018732  0x00002b63 fetch  0x00000001 , 0x00004132 
+ 00018733  0x00002b64 rtnne  0x00000001 
+ 00018734  0x00002b65 fetch  0x00000001 , 0x000000ab 
+ 00018735  0x00002b66 istore  0x00000001 , 0x0000000a 
+ 00018736  0x00002b67 force  0x0000002c , 0x00000007 
+ 00018737  0x00002b68 force  0x00000011 , 0x00000039 
+ 00018738  0x00002b69 branch  0x00004952 
+ 00018739  0x00002b6d set0  0x00000025 , 0x00000000 
+ 00018740  0x00002b6e bpatch  0x000000f7 , 0x0000401e 
+ 00018741  0x00002b6f call  0x00004970 
+ 00018742  0x00002b70 setarg  0x00000100 
+ 00018743  0x00002b71 istore  0x00000002 , 0x0000000a 
+ 00018744  0x00002b72 deposit  0x00000030 
+ 00018745  0x00002b73 istore  0x00000002 , 0x0000000a 
+ 00018746  0x00002b74 force  0x00000004 , 0x00000039 
+ 00018747  0x00002b75 force  0x0000000f , 0x00000007 
+ 00018748  0x00002b76 branch  0x00004952 
+ 00018749  0x00002b79 set0  0x00000025 , 0x00000000 
+ 00018750  0x00002b7a bpatch  0x000000f8 , 0x0000401f 
+ 00018751  0x00002b7b call  0x00004970 
+ 00018752  0x00002b7c deposit  0x00000011 
+ 00018753  0x00002b7d istore  0x00000001 , 0x0000000a 
+ 00018754  0x00002b7e setarg  0x00000001 
+ 00018755  0x00002b7f istore  0x00000001 , 0x0000000a 
+ 00018756  0x00002b80 deposit  0x00000030 
+ 00018757  0x00002b81 istore  0x00000002 , 0x0000000a 
+ 00018758  0x00002b82 force  0x00000004 , 0x00000039 
+ 00018759  0x00002b83 force  0x0000000f , 0x00000007 
+ 00018760  0x00002b84 branch  0x00004952 
+ 00018761  0x00002b87 set0  0x00000025 , 0x00000000 
+ 00018762  0x00002b88 bpatch  0x000000f9 , 0x0000401f 
+ 00018763  0x00002b89 force  0x00000004 , 0x00000039 
+ 00018764  0x00002b8b call  0x00004970 
+ 00018765  0x00002b8c force  0x00000001 , 0x0000003f 
+ 00018766  0x00002b8d istore  0x00000001 , 0x0000000a 
+ 00018767  0x00002b8e deposit  0x00000030 
+ 00018768  0x00002b8f istore  0x00000003 , 0x0000000a 
+ 00018769  0x00002b90 force  0x0000000e , 0x00000007 
+ 00018770  0x00002b92 set0  0x00000025 , 0x00000000 
+ 00018771  0x00002b93 bpatch  0x000000fa , 0x0000401f 
+ 00018772  0x00002b94 call  0x00004972 
+ 00018773  0x00002b95 deposit  0x00000007 
+ 00018774  0x00002b96 istore  0x00000001 , 0x0000000a 
+ 00018775  0x00002b97 deposit  0x00000039 
+ 00018776  0x00002b98 istore  0x00000001 , 0x0000000a 
+ 00018777  0x00002b9a set1  0x00000013 , 0x00000000 
+ 00018778  0x00002b9b force  0x00000005 , 0x00000007 
+ 00018779  0x00002b9c increase  0x00000002 , 0x00000039 
+ 00018780  0x00002b9e call  0x00004494 
+ 00018781  0x00002b9f branch  0x00004378 , 0x00000001 
+ 00018782  0x00002ba0 branch  0x00004422 
+ 00018783  0x00002ba3 force  0x000000ff , 0x00000007 
+ 00018784  0x00002ba4 call  0x00004970 
+ 00018785  0x00002ba5 setarg  0x00000001 
+ 00018786  0x00002ba6 istore  0x00000001 , 0x0000000a 
+ 00018787  0x00002ba7 force  0x00000001 , 0x00000039 
+ 00018788  0x00002ba8 branch  0x00004952 
+ 00018789  0x00002bac fetch  0x00000006 , 0x00000040 
+ 00018790  0x00002bad istore  0x00000006 , 0x0000000a 
+ 00018791  0x00002bae rtn 
+ 00018792  0x00002bb1 call  0x00004970 
+ 00018793  0x00002bb2 force  0x00000000 , 0x0000003f 
+ 00018794  0x00002bb3 istore  0x00000001 , 0x0000000a 
+ 00018795  0x00002bb5 fetch  0x00000001 , 0x00000046 
+ 00018796  0x00002bb6 istore  0x00000002 , 0x0000000a 
+ 00018797  0x00002bb7 rtn 
+ 00018798  0x00002bba force  0x0000000c , 0x0000000a 
+ 00018799  0x00002bbb branch  0x00004973 
+ 00018800  0x00002bbe force  0x00000008 , 0x0000000a 
+ 00018801  0x00002bbf branch  0x00004973 
+ 00018802  0x00002bc2 force  0x00000006 , 0x0000000a 
+ 00018803  0x00002bc4 call  0x00004494 
+ 00018804  0x00002bc5 branch  0x000043de , 0x00000001 
+ 00018805  0x00002bc6 branch  0x0000441e 
+ 00018806  0x00002bc9 deposit  0x00000039 
+ 00018807  0x00002bca rtn  0x00000034 
+ 00018808  0x00002bcc ifetch  0x00000001 , 0x00000006 
+ 00018809  0x00002bcd istore  0x00000001 , 0x0000000a 
+ 00018810  0x00002bce loop  0x00004978 
+ 00018811  0x00002bcf rtn 
+ 00018812  0x00002bd2 deposit  0x00000039 
+ 00018813  0x00002bd3 rtn  0x00000034 
+ 00018814  0x00002bd5 ifetch  0x00000001 , 0x00000003 
+ 00018815  0x00002bd6 istore  0x00000001 , 0x00000005 
+ 00018816  0x00002bd7 loop  0x0000497e 
+ 00018817  0x00002bd8 rtn 
+ 00018818  0x00002bdb istore  0x00000001 , 0x0000000a 
+ 00018819  0x00002bdc rshift8  0x0000003f , 0x0000003f 
+ 00018820  0x00002bdd loop  0x00004982 
+ 00018821  0x00002bde rtn 
+ 00018822  0x00002be2 pulse  0x0000000f 
+ 00018823  0x00002be3 enable  0x00000009 
+ 00018824  0x00002be5 ifetch  0x00000001 , 0x0000000a 
+ 00018825  0x00002be6 inject  0x00000000 , 0x00000008 
+ 00018826  0x00002be7 loop  0x00004988 
+ 00018827  0x00002be8 enable  0x00000008 
+ 00018828  0x00002be9 inject  0x00000000 , 0x00000010 
+ 00018829  0x00002bea disable  0x00000008 
+ 00018830  0x00002beb disable  0x00000009 
+ 00018831  0x00002bec disable  0x0000000f 
+ 00018832  0x00002bed byteswap  0x0000003f , 0x0000003f 
+ 00018833  0x00002bee rtn 
+ 00018834  0x00002bf1 nop  0x00000001 
+ 00018835  0x00002bf2 hjam  0x00000001 , 0x00008203 
+ 00018836  0x00002bf3 branch  0x00004992 
+ 00018837  0x00002bf8 set0  0x00000025 , 0x00000000 
+ 00018838  0x00002bf9 bpatch  0x000000fb , 0x0000401f 
+ 00018839  0x00002bfa fetch  0x00000001 , 0x00004272 
+ 00018840  0x00002bfb rtn  0x00000034 
+ 00018841  0x00002bfc fetch  0x00000001 , 0x0000007c 
+ 00018842  0x00002bfd nrtn  0x00000034 
+ 00018843  0x00002bfe call  0x000049be 
+ 00018844  0x00002bff nbranch  0x000049aa , 0x00000005 
+ 00018845  0x00002c00 fetch  0x00000001 , 0x00004272 
+ 00018846  0x00002c01 beq  0x00000003 , 0x000049d4 
+ 00018847  0x00002c02 beq  0x00000009 , 0x000049da 
+ 00018848  0x00002c03 beq  0x0000000a , 0x000049e6 
+ 00018849  0x00002c04 beq  0x0000000b , 0x000049ed 
+ 00018850  0x00002c05 beq  0x0000000c , 0x000049f7 
+ 00018851  0x00002c06 beq  0x00000008 , 0x00004a32 
+ 00018852  0x00002c07 beq  0x00000018 , 0x000049cc 
+ 00018853  0x00002c08 beq  0x00000007 , 0x000049c6 
+ 00018854  0x00002c09 beq  0x00000019 , 0x000049ca 
+ 00018855  0x00002c0a beq  0x0000001a , 0x00004a53 
+ 00018856  0x00002c0b beq  0x00000012 , 0x00004a19 
+ 00018857  0x00002c0c beq  0x00000013 , 0x00004a28 
+ 00018858  0x00002c0e set0  0x00000025 , 0x00000000 
+ 00018859  0x00002c0f bpatch  0x000000fc , 0x0000401f 
+ 00018860  0x00002c10 call  0x000049c2 
+ 00018861  0x00002c11 nrtn  0x00000034 
+ 00018862  0x00002c12 fetch  0x00000001 , 0x00004272 
+ 00018863  0x00002c13 beq  0x0000000d , 0x00004a01 
+ 00018864  0x00002c14 beq  0x0000000f , 0x00004a0b 
+ 00018865  0x00002c15 beq  0x0000000e , 0x00004a0d 
+ 00018866  0x00002c16 beq  0x00000010 , 0x00004a2a 
+ 00018867  0x00002c17 beq  0x00000011 , 0x00004a34 
+ 00018868  0x00002c18 beq  0x0000001c , 0x00004a38 
+ 00018869  0x00002c19 beq  0x00000004 , 0x00004a0f 
+ 00018870  0x00002c1a beq  0x00000015 , 0x00004a14 
+ 00018871  0x00002c1b beq  0x00000014 , 0x00004a17 
+ 00018872  0x00002c1c beq  0x00000017 , 0x00004a48 
+ 00018873  0x00002c1d beq  0x00000016 , 0x00004a51 
+ 00018874  0x00002c1e rtnne  0x00000006 
+ 00018875  0x00002c1f call  0x00005ed5 
+ 00018876  0x00002c21 jam  0x00000000 , 0x00004272 
+ 00018877  0x00002c22 rtn 
+ 00018878  0x00002c25 fetch  0x00000006 , 0x00004274 
+ 00018879  0x00002c26 fetcht  0x00000006 , 0x00000040 
+ 00018880  0x00002c27 isub  0x00000002 , 0x0000003e 
+ 00018881  0x00002c28 rtn 
+ 00018882  0x00002c2c fetch  0x00000001 , 0x00004273 
+ 00018883  0x00002c2d fetcht  0x00000001 , 0x00000046 
+ 00018884  0x00002c2e isub  0x00000002 , 0x0000003f 
+ 00018885  0x00002c2f rtn 
+ 00018886  0x00002c32 jam  0x00000003 , 0x0000007c 
+ 00018887  0x00002c33 jam  0x00000033 , 0x0000007d 
+ 00018888  0x00002c34 call  0x00006212 
+ 00018889  0x00002c35 branch  0x000049bc 
+ 00018890  0x00002c38 branch  0x00004a38 , 0x00000029 
+ 00018891  0x00002c39 set1  0x00000004 , 0x00000000 
+ 00018892  0x00002c3b jam  0x00000034 , 0x0000007c 
+ 00018893  0x00002c3c set1  0x00000003 , 0x00000000 
+ 00018894  0x00002c3d nbranch  0x000049bc , 0x00000029 
+ 00018895  0x00002c3e jam  0x00000013 , 0x0000007c 
+ 00018896  0x00002c3f fetch  0x00000001 , 0x00000177 
+ 00018897  0x00002c40 set0  0x00000002 , 0x0000003f 
+ 00018898  0x00002c41 store  0x00000001 , 0x00000177 
+ 00018899  0x00002c42 branch  0x000049bc 
+ 00018900  0x00002c46 jam  0x00000001 , 0x0000007c 
+ 00018901  0x00002c47 jam  0x00000000 , 0x00000053 
+ 00018902  0x00002c48 branch  0x000049bc 
+ 00018903  0x00002c4c jam  0x00000001 , 0x000007dd 
+ 00018904  0x00002c4d jam  0x00000012 , 0x000007db 
+ 00018905  0x00002c4e branch  0x000049bc 
+ 00018906  0x00002c51 fetch  0x00000001 , 0x0000004b 
+ 00018907  0x00002c52 bbit1  0x00000002 , 0x000049df 
+ 00018908  0x00002c53 call  0x00006209 
+ 00018909  0x00002c54 jam  0x00000008 , 0x0000007c 
+ 00018910  0x00002c55 branch  0x000049bc 
+ 00018911  0x00002c57 set0  0x00000002 , 0x0000003f 
+ 00018912  0x00002c58 store  0x00000001 , 0x0000004b 
+ 00018913  0x00002c59 call  0x00005ed0 
+ 00018914  0x00002c5a setarg  0x00000000 
+ 00018915  0x00002c5b setflag  0x00000029 , 0x00000001 , 0x0000003f 
+ 00018916  0x00002c5c store  0x00000001 , 0x0000007f 
+ 00018917  0x00002c5d branch  0x000049bc 
+ 00018918  0x00002c60 jam  0x00000018 , 0x00000446 
+ 00018919  0x00002c61 jam  0x00000007 , 0x0000007c 
+ 00018920  0x00002c62 fetch  0x00000001 , 0x00000030 
+ 00018921  0x00002c63 bbit1  0x00000000 , 0x000049bc 
+ 00018922  0x00002c64 force  0x00000018 , 0x00000002 
+ 00018923  0x00002c65 call  0x00004826 
+ 00018924  0x00002c66 branch  0x000049bc 
+ 00018925  0x00002c6a call  0x0000321f 
+ 00018926  0x00002c6b fetch  0x00000001 , 0x0000004b 
+ 00018927  0x00002c6c bbit1  0x00000001 , 0x00004a08 
+ 00018928  0x00002c6d bbit1  0x00000000 , 0x000049f3 
+ 00018929  0x00002c6e bbit1  0x00000002 , 0x000049df 
+ 00018930  0x00002c6f branch  0x000049bc 
+ 00018931  0x00002c71 set0  0x00000000 , 0x0000003f 
+ 00018932  0x00002c72 store  0x00000001 , 0x0000004b 
+ 00018933  0x00002c73 jam  0x0000000c , 0x0000007c 
+ 00018934  0x00002c74 branch  0x000049bc 
+ 00018935  0x00002c77 fetch  0x00000001 , 0x0000004b 
+ 00018936  0x00002c78 bbit1  0x00000000 , 0x000049fb 
+ 00018937  0x00002c79 call  0x0000487b 
+ 00018938  0x00002c7a branch  0x000049bc 
+ 00018939  0x00002c7c set0  0x00000000 , 0x0000003f 
+ 00018940  0x00002c7d store  0x00000001 , 0x0000004b 
+ 00018941  0x00002c7e jam  0x00000004 , 0x0000007c 
+ 00018942  0x00002c7f jam  0x0000000b , 0x0000007d 
+ 00018943  0x00002c80 jam  0x00000006 , 0x0000007e 
+ 00018944  0x00002c81 branch  0x000049bc 
+ 00018945  0x00002c85 fetch  0x00000001 , 0x0000004b 
+ 00018946  0x00002c86 set1  0x00000001 , 0x0000003f 
+ 00018947  0x00002c87 store  0x00000001 , 0x0000004b 
+ 00018948  0x00002c88 fetch  0x00000001 , 0x00000030 
+ 00018949  0x00002c89 bbit1  0x00000007 , 0x00004a08 
+ 00018950  0x00002c8a call  0x00004872 
+ 00018951  0x00002c8b branch  0x000049bc 
+ 00018952  0x00002c8f call  0x00006209 
+ 00018953  0x00002c90 jam  0x0000000b , 0x0000007c 
+ 00018954  0x00002c91 branch  0x000049bc 
+ 00018955  0x00002c94 jam  0x0000000f , 0x0000007c 
+ 00018956  0x00002c95 branch  0x000049bc 
+ 00018957  0x00002c98 jam  0x0000000f , 0x0000007c 
+ 00018958  0x00002c99 branch  0x000049bc 
+ 00018959  0x00002c9c set0  0x00000025 , 0x00000000 
+ 00018960  0x00002c9d bpatch  0x000000fd , 0x0000401f 
+ 00018961  0x00002c9e jam  0x00000027 , 0x0000007c 
+ 00018962  0x00002c9f jam  0x00000050 , 0x00004272 
+ 00018963  0x00002ca0 rtn 
+ 00018964  0x00002ca3 jam  0x00000083 , 0x0000007c 
+ 00018965  0x00002ca4 jam  0x00000051 , 0x00004272 
+ 00018966  0x00002ca5 rtn 
+ 00018967  0x00002ca8 jam  0x00000025 , 0x0000007c 
+ 00018968  0x00002ca9 branch  0x000049bc 
+ 00018969  0x00002cac jam  0x00000017 , 0x0000007c 
+ 00018970  0x00002cad arg  0x00000455 , 0x00000005 
+ 00018971  0x00002cae setarg  0x00000000 
+ 00018972  0x00002caf isolate1  0x0000001b , 0x00000028 
+ 00018973  0x00002cb0 setflag  0x00000001 , 0x00000001 , 0x0000003f 
+ 00018974  0x00002cb1 istore  0x00000001 , 0x00000005 
+ 00018975  0x00002cb2 setarg  0x00000000 
+ 00018976  0x00002cb3 istore  0x00000002 , 0x00000005 
+ 00018977  0x00002cb4 fetch  0x00000002 , 0x00004280 
+ 00018978  0x00002cb5 istore  0x00000002 , 0x00000005 
+ 00018979  0x00002cb6 fetch  0x00000001 , 0x00004282 
+ 00018980  0x00002cb7 istore  0x00000002 , 0x00000005 
+ 00018981  0x00002cb8 fetch  0x00000001 , 0x00004284 
+ 00018982  0x00002cb9 istore  0x00000002 , 0x00000005 
+ 00018983  0x00002cba branch  0x000049bc 
+ 00018984  0x00002cbd jam  0x00000018 , 0x0000007c 
+ 00018985  0x00002cbe branch  0x000049bc 
+ 00018986  0x00002cc1 call  0x00003512 
+ 00018987  0x00002cc2 store  0x00000001 , 0x000000ad 
+ 00018988  0x00002cc3 fetch  0x00000001 , 0x00000046 
+ 00018989  0x00002cc4 store  0x00000001 , 0x000000ac 
+ 00018990  0x00002cc5 jam  0x0000002b , 0x0000007c 
+ 00018991  0x00002cc6 set1  0x00000007 , 0x00000000 
+ 00018992  0x00002cc7 jam  0x0000008c , 0x0000007c 
+ 00018993  0x00002cc8 branch  0x000049bc 
+ 00018994  0x00002ccb call  0x00005ed5 
+ 00018995  0x00002ccc branch  0x000049bc 
+ 00018996  0x00002ccf jam  0x0000002c , 0x0000007c 
+ 00018997  0x00002cd0 bmark0  0x00000007 , 0x000049bc 
+ 00018998  0x00002cd1 jam  0x0000008d , 0x0000007c 
+ 00018999  0x00002cd2 branch  0x000049bc 
+ 00019000  0x00002cd5 branch  0x00004a41 , 0x00000029 
+ 00019001  0x00002cd6 jam  0x00000003 , 0x0000007c 
+ 00019002  0x00002cd7 jam  0x0000002b , 0x0000007d 
+ 00019003  0x00002cd8 bmark0  0x00000007 , 0x000049bc 
+ 00019004  0x00002cd9 fetch  0x00000001 , 0x000000b0 
+ 00019005  0x00002cda bne  0x00000007 , 0x00005c04 
+ 00019006  0x00002cdb jam  0x00000081 , 0x0000007c 
+ 00019007  0x00002cdc jam  0x0000008c , 0x0000007d 
+ 00019008  0x00002cdd branch  0x000049bc 
+ 00019009  0x00002cdf call  0x00003512 
+ 00019010  0x00002ce0 store  0x00000001 , 0x000000ad 
+ 00019011  0x00002ce1 fetch  0x00000001 , 0x00000046 
+ 00019012  0x00002ce2 store  0x00000001 , 0x000000ac 
+ 00019013  0x00002ce3 jam  0x0000002b , 0x0000007c 
+ 00019014  0x00002ce4 bmark0  0x00000007 , 0x000049bc 
+ 00019015  0x00002ce5 branch  0x00005c04 
+ 00019016  0x00002ce9 call  0x0000496e 
+ 00019017  0x00002cea call  0x0000496b 
+ 00019018  0x00002ceb force  0x00000000 , 0x0000003f 
+ 00019019  0x00002cec nsetflag  0x00000029 , 0x00000000 , 0x0000003f 
+ 00019020  0x00002ced istore  0x00000001 , 0x0000000a 
+ 00019021  0x00002cee force  0x00000007 , 0x00000039 
+ 00019022  0x00002cef arg  0x00000809 , 0x00000030 
+ 00019023  0x00002cf0 call  0x0000494c 
+ 00019024  0x00002cf1 branch  0x000049bc 
+ 00019025  0x00002cf4 jam  0x0000009a , 0x0000007c 
+ 00019026  0x00002cf5 branch  0x000049bc 
+ 00019027  0x00002cf8 jam  0x00000007 , 0x0000007c 
+ 00019028  0x00002cf9 jam  0x00000013 , 0x00000446 
+ 00019029  0x00002cfa branch  0x000049bc 
+ 00019030  0x00002d00 jam  0x00000000 , 0x000002bc 
+ 00019031  0x00002d03 ifetch  0x00000001 , 0x00000003 
+ 00019032  0x00002d04 store  0x00000001 , 0x000002bb 
+ 00019033  0x00002d05 call  0x00004a6d 
+ 00019034  0x00002d07 call  0x00007e00 
+ 00019035  0x00002d08 fetch  0x00000001 , 0x000002bb 
+ 00019036  0x00002d09 copy  0x0000003f , 0x00000002 
+ 00019037  0x00002d0a fetch  0x00000001 , 0x0000029f 
+ 00019038  0x00002d0b increase  0x00000001 , 0x0000003f 
+ 00019039  0x00002d0c icompare  0x000000ff , 0x00000002 
+ 00019040  0x00002d0d nbranch  0x00004a77 , 0x00000001 
+ 00019041  0x00002d0e store  0x00000001 , 0x0000029f 
+ 00019042  0x00002d0f call  0x00007e0e 
+ 00019043  0x00002d11 ifetch  0x00000001 , 0x00000003 
+ 00019044  0x00002d12 beq  0x00000001 , 0x00004ad8 
+ 00019045  0x00002d13 beq  0x00000002 , 0x00004aae 
+ 00019046  0x00002d14 beq  0x00000003 , 0x00004adf 
+ 00019047  0x00002d15 beq  0x00000005 , 0x00004ac3 
+ 00019048  0x00002d16 beq  0x00000006 , 0x00004a80 
+ 00019049  0x00002d17 beq  0x00000007 , 0x00004a91 
+ 00019050  0x00002d18 beq  0x00000008 , 0x00004aa8 
+ 00019051  0x00002d19 beq  0x00000009 , 0x00004ae6 
+ 00019052  0x00002d1a rtn 
+ 00019053  0x00002d1c copy  0x0000003f , 0x00000002 
+ 00019054  0x00002d1d call  0x00007e00 
+ 00019055  0x00002d1e fetch  0x00000001 , 0x000002bc 
+ 00019056  0x00002d1f iadd  0x00000002 , 0x0000003f 
+ 00019057  0x00002d20 store  0x00000001 , 0x000002bc 
+ 00019058  0x00002d21 branch  0x00007e0e 
+ 00019059  0x00002d25 force  0x00000001 , 0x0000003f 
+ 00019060  0x00002d26 call  0x000044b5 
+ 00019061  0x00002d27 fetch  0x00000001 , 0x0000029f 
+ 00019062  0x00002d28 branch  0x000044b5 
+ 00019063  0x00002d2b call  0x00007e0e 
+ 00019064  0x00002d2c branch  0x00004a7c 
+ 00019065  0x00002d2e fetch  0x00000001 , 0x0000029f 
+ 00019066  0x00002d2f increase  0xffffffff , 0x0000003f 
+ 00019067  0x00002d30 store  0x00000001 , 0x0000029f 
+ 00019068  0x00002d32 force  0x00000000 , 0x0000003f 
+ 00019069  0x00002d33 call  0x000044b5 
+ 00019070  0x00002d34 fetch  0x00000001 , 0x0000029f 
+ 00019071  0x00002d35 branch  0x000044b5 
+ 00019072  0x00002d38 call  0x00004a6d 
+ 00019073  0x00002d39 ifetch  0x00000001 , 0x00000003 
+ 00019074  0x00002d3a store  0x00000001 , 0x000002bd 
+ 00019075  0x00002d3b call  0x00004a6d 
+ 00019076  0x00002d3c ifetch  0x00000001 , 0x00000003 
+ 00019077  0x00002d3d lshift8  0x0000003f , 0x00000005 
+ 00019078  0x00002d3e call  0x00004a6d 
+ 00019079  0x00002d3f fetch  0x00000001 , 0x000002bd 
+ 00019080  0x00002d40 iadd  0x00000005 , 0x00000005 
+ 00019081  0x00002d41 ifetch  0x00000001 , 0x00000003 
+ 00019082  0x00002d42 istore  0x00000001 , 0x00000005 
+ 00019083  0x00002d43 call  0x00004a6d 
+ 00019084  0x00002d44 ifetch  0x00000001 , 0x00000003 
+ 00019085  0x00002d45 call  0x00004a6d 
+ 00019086  0x00002d46 fetch  0x00000001 , 0x000002bc 
+ 00019087  0x00002d47 bne  0x000000ff , 0x00004a79 
+ 00019088  0x00002d48 branch  0x00004a73 
+ 00019089  0x00002d4b call  0x00004a6d 
+ 00019090  0x00002d4c ifetch  0x00000001 , 0x00000003 
+ 00019091  0x00002d4d store  0x00000001 , 0x000002bd 
+ 00019092  0x00002d4e call  0x00004a6d 
+ 00019093  0x00002d4f ifetch  0x00000001 , 0x00000003 
+ 00019094  0x00002d50 store  0x00000001 , 0x000002be 
+ 00019095  0x00002d51 call  0x00004a6d 
+ 00019096  0x00002d52 ifetch  0x00000001 , 0x00000003 
+ 00019097  0x00002d53 call  0x00004a6d 
+ 00019098  0x00002d54 fetch  0x00000001 , 0x000002bc 
+ 00019099  0x00002d55 bne  0x000000ff , 0x00004a79 
+ 00019100  0x00002d57 fetch  0x00000001 , 0x000002be 
+ 00019101  0x00002d58 lshift8  0x0000003f , 0x00000002 
+ 00019102  0x00002d59 fetch  0x00000001 , 0x000002bd 
+ 00019103  0x00002d5a iadd  0x00000002 , 0x00000003 
+ 00019104  0x00002d5b ifetch  0x00000001 , 0x00000003 
+ 00019105  0x00002d5c store  0x00000001 , 0x000002bd 
+ 00019106  0x00002d5e force  0x00000001 , 0x0000003f 
+ 00019107  0x00002d5f call  0x000044b5 
+ 00019108  0x00002d60 fetch  0x00000001 , 0x000002bd 
+ 00019109  0x00002d61 call  0x000044b5 
+ 00019110  0x00002d62 jam  0x000000ff , 0x0000029f 
+ 00019111  0x00002d63 rtn 
+ 00019112  0x00002d66 call  0x00004a6d 
+ 00019113  0x00002d67 ifetch  0x00000001 , 0x00000003 
+ 00019114  0x00002d68 call  0x00004a6d 
+ 00019115  0x00002d69 fetch  0x00000001 , 0x000002bc 
+ 00019116  0x00002d6a bne  0x000000ff , 0x00004a79 
+ 00019117  0x00002d6b branch  0x00004a73 
+ 00019118  0x00002d6e call  0x00004a6d 
+ 00019119  0x00002d6f ifetch  0x00000001 , 0x00000003 
+ 00019120  0x00002d70 hstore  0x00000001 , 0x00008024 
+ 00019121  0x00002d71 call  0x00004a6d 
+ 00019122  0x00002d72 ifetch  0x00000001 , 0x00000003 
+ 00019123  0x00002d73 set1  0x00000007 , 0x0000003f 
+ 00019124  0x00002d74 hstore  0x00000001 , 0x00008023 
+ 00019125  0x00002d75 set0  0x00000007 , 0x0000003f 
+ 00019126  0x00002d76 call  0x00004a6d 
+ 00019127  0x00002d77 ifetch  0x00000001 , 0x00000003 
+ 00019128  0x00002d78 copy  0x0000003f , 0x00000039 
+ 00019129  0x00002d79 call  0x00004a6d 
+ 00019130  0x00002d7b ifetch  0x00000001 , 0x00000003 
+ 00019131  0x00002d7c hstore  0x00000001 , 0x00008025 
+ 00019132  0x00002d7d call  0x00004a6d 
+ 00019133  0x00002d7e loop  0x00004aba 
+ 00019134  0x00002d7f ifetch  0x00000001 , 0x00000003 
+ 00019135  0x00002d80 call  0x00004a6d 
+ 00019136  0x00002d81 fetch  0x00000001 , 0x000002bc 
+ 00019137  0x00002d82 bne  0x000000ff , 0x00004a79 
+ 00019138  0x00002d83 branch  0x00004a73 
+ 00019139  0x00002d86 call  0x00004a6d 
+ 00019140  0x00002d87 ifetch  0x00000001 , 0x00000003 
+ 00019141  0x00002d88 store  0x00000001 , 0x000002bd 
+ 00019142  0x00002d89 call  0x00004a6d 
+ 00019143  0x00002d8a ifetch  0x00000001 , 0x00000003 
+ 00019144  0x00002d8b lshift8  0x0000003f , 0x00000005 
+ 00019145  0x00002d8c call  0x00004a6d 
+ 00019146  0x00002d8d fetch  0x00000001 , 0x000002bd 
+ 00019147  0x00002d8e iadd  0x00000005 , 0x00000005 
+ 00019148  0x00002d8f ifetch  0x00000001 , 0x00000003 
+ 00019149  0x00002d90 iforce  0x00000039 
+ 00019150  0x00002d91 call  0x00004a6d 
+ 00019151  0x00002d93 ifetch  0x00000001 , 0x00000003 
+ 00019152  0x00002d94 istore  0x00000001 , 0x00000005 
+ 00019153  0x00002d95 call  0x00004a6d 
+ 00019154  0x00002d96 loop  0x00004acf 
+ 00019155  0x00002d97 ifetch  0x00000001 , 0x00000003 
+ 00019156  0x00002d98 call  0x00004a6d 
+ 00019157  0x00002d99 fetch  0x00000001 , 0x000002bc 
+ 00019158  0x00002d9a bne  0x000000ff , 0x00004a79 
+ 00019159  0x00002d9b branch  0x00004a73 
+ 00019160  0x00002da0 call  0x00004a6d 
+ 00019161  0x00002da1 ifetch  0x00000001 , 0x00000003 
+ 00019162  0x00002da2 call  0x00004a6d 
+ 00019163  0x00002da3 fetch  0x00000001 , 0x000002bc 
+ 00019164  0x00002da4 bne  0x000000ff , 0x00004a79 
+ 00019165  0x00002da5 hjam  0x00000080 , 0x00008023 
+ 00019166  0x00002da6 branch  0x00004a73 
+ 00019167  0x00002da9 call  0x00004a6d 
+ 00019168  0x00002daa ifetch  0x00000001 , 0x00000003 
+ 00019169  0x00002dab call  0x00004a6d 
+ 00019170  0x00002dac fetch  0x00000001 , 0x000002bc 
+ 00019171  0x00002dad bne  0x000000ff , 0x00004a79 
+ 00019172  0x00002dae hjam  0x00000000 , 0x00008023 
+ 00019173  0x00002daf branch  0x00004a73 
+ 00019174  0x00002db2 call  0x00004a6d 
+ 00019175  0x00002db3 ifetch  0x00000001 , 0x00000003 
+ 00019176  0x00002db4 call  0x00004a6d 
+ 00019177  0x00002db5 fetch  0x00000001 , 0x000002bc 
+ 00019178  0x00002db6 bne  0x000000ff , 0x00004a79 
+ 00019179  0x00002db7 call  0x00004a73 
+ 00019180  0x00002db8 branch  0x00003001 
+ 00019181  0x00002dbc call  0x00006a8b 
+ 00019182  0x00002dbd rtn  0x00000001 
+ 00019183  0x00002dbe arg  0x00000007 , 0x00000002 
+ 00019184  0x00002dbf call  0x000069e5 
+ 00019185  0x00002dc0 nbranch  0x00004af4 , 0x00000001 
+ 00019186  0x00002dc1 jam  0x00000001 , 0x000042ae 
+ 00019187  0x00002dc2 rtn 
+ 00019188  0x00002dc4 fetch  0x00000001 , 0x000042ae 
+ 00019189  0x00002dc5 rtnne  0x00000001 
+ 00019190  0x00002dc6 call  0x00004599 
+ 00019191  0x00002dc7 branch  0x0000495f 
+ 00019192  0x00002dd6 set1  0x00000025 , 0x00000000 
+ 00019193  0x00002dd7 bpatch  0x0000009c , 0x00004033 
+ 00019194  0x00002dd8 fetch  0x00000002 , 0x000002cb 
+ 00019195  0x00002dd9 copy  0x0000003f , 0x00000006 
+ 00019196  0x00002dda ifetch  0x00000001 , 0x00000006 
+ 00019197  0x00002ddb and  0x0000003f , 0x0000000f , 0x00000002 
+ 00019198  0x00002ddc rshift4  0x0000003f , 0x0000003f 
+ 00019199  0x00002ddd beq  0x00000009 , 0x00004b18 
+ 00019200  0x00002dde beq  0x00000007 , 0x00004b18 
+ 00019201  0x00002ddf beq  0x0000000a , 0x00004b24 
+ 00019202  0x00002de0 beq  0x00000005 , 0x00004b11 
+ 00019203  0x00002de1 beq  0x00000001 , 0x00004b05 
+ 00019204  0x00002de2 rtn 
+ 00019205  0x00002de5 copy  0x00000002 , 0x0000003f 
+ 00019206  0x00002de6 beq  0x00000005 , 0x00004b09 
+ 00019207  0x00002de7 beq  0x00000003 , 0x00004b10 
+ 00019208  0x00002de8 rtn 
+ 00019209  0x00002deb jam  0x00000027 , 0x00000b7d 
+ 00019210  0x00002dec call  0x00007c27 
+ 00019211  0x00002ded fetch  0x00000001 , 0x00004132 
+ 00019212  0x00002dee rtnne  0x00000006 , 0x0000003f 
+ 00019213  0x00002def copy  0x00000002 , 0x0000003f 
+ 00019214  0x00002df0 beq  0x00000005 , 0x00006946 
+ 00019215  0x00002df1 rtn 
+ 00019216  0x00002df3 rtn 
+ 00019217  0x00002df6 arg  0x00000001 , 0x00000011 
+ 00019218  0x00002df7 call  0x00004b2c 
+ 00019219  0x00002df8 fetch  0x00000002 , 0x000042b5 
+ 00019220  0x00002df9 istore  0x00000002 , 0x00000005 
+ 00019221  0x00002dfa setarg  0x00000000 
+ 00019222  0x00002dfb istore  0x00000001 , 0x00000005 
+ 00019223  0x00002dfc rtn 
+ 00019224  0x00002dff arg  0x00000001 , 0x00000011 
+ 00019225  0x00002e00 call  0x00004b2c 
+ 00019226  0x00002e01 fetch  0x00000002 , 0x000042b5 
+ 00019227  0x00002e02 istore  0x00000002 , 0x00000005 
+ 00019228  0x00002e03 setarg  0x00000000 
+ 00019229  0x00002e04 istore  0x00000001 , 0x00000005 
+ 00019230  0x00002e05 jam  0x00000001 , 0x000008a8 
+ 00019231  0x00002e06 fetch  0x00000001 , 0x000042bb 
+ 00019232  0x00002e07 set1  0x00000006 
+ 00019233  0x00002e08 store  0x00000001 , 0x000042bb 
+ 00019234  0x00002e0a jam  0x00000012 , 0x00000b7d 
+ 00019235  0x00002e0b branch  0x00007c27 
+ 00019236  0x00002e0e ifetch  0x00000001 , 0x00000006 
+ 00019237  0x00002e0f beq  0x00000001 , 0x00004b27 
+ 00019238  0x00002e10 rtn 
+ 00019239  0x00002e13 copy  0x00000006 , 0x00000011 
+ 00019240  0x00002e14 fetch  0x00000001 , 0x00004132 
+ 00019241  0x00002e15 rtnne  0x00000003 , 0x0000003f 
+ 00019242  0x00002e16 copy  0x00000011 , 0x00000006 
+ 00019243  0x00002e17 branch  0x00004c4a 
+ 00019244  0x00002e1a call  0x00005248 
+ 00019245  0x00002e1b copy  0x00000011 , 0x00000002 
+ 00019246  0x00002e1c storet  0x00000001 , 0x000008a8 
+ 00019247  0x00002e1d copy  0x0000003f , 0x00000005 
+ 00019248  0x00002e1e copy  0x00000011 , 0x0000003f 
+ 00019249  0x00002e1f istore  0x00000002 , 0x00000005 
+ 00019250  0x00002e20 rtn 
+ 00019251  0x00002e24 setarg  0x00004b5b 
+ 00019252  0x00002e25 store  0x00000002 , 0x0000428c 
+ 00019253  0x00002e26 setarg  0x00004b44 
+ 00019254  0x00002e27 store  0x00000002 , 0x00004296 
+ 00019255  0x00002e28 call  0x0000691d 
+ 00019256  0x00002e29 call  0x00005347 
+ 00019257  0x00002e2a hjam  0x0000009e , 0x000080a2 
+ 00019258  0x00002e2b hjam  0x00000008 , 0x00008081 
+ 00019259  0x00002e2c hjam  0x00000005 , 0x00008075 
+ 00019260  0x00002e2d setarg  0xffffffff 
+ 00019261  0x00002e2e set0  0x00000001 , 0x0000003f 
+ 00019262  0x00002e2f set0  0x00000015 , 0x0000003f 
+ 00019263  0x00002e30 hstore  0x00000004 , 0x00008070 
+ 00019264  0x00002e31 hjam  0x00000002 , 0x00008078 
+ 00019265  0x00002e32 rtn  0x0000002b 
+ 00019266  0x00002e33 jam  0x00000001 , 0x000043d8 
+ 00019267  0x00002e34 rtn 
+ 00019268  0x00002e38 ifetch  0x00000001 , 0x00000011 
+ 00019269  0x00002e39 store  0x00000001 , 0x00004803 
+ 00019270  0x00002e3a beq  0x00000003 , 0x00004b4f 
+ 00019271  0x00002e3b beq  0x00000004 , 0x00004b51 
+ 00019272  0x00002e3c beq  0x00000005 , 0x00004b53 
+ 00019273  0x00002e3d beq  0x00000014 , 0x00004b64 
+ 00019274  0x00002e3e beq  0x00000015 , 0x00004b67 
+ 00019275  0x00002e3f rtnne  0x00000002 
+ 00019276  0x00002e40 ifetch  0x00000001 , 0x00000006 
+ 00019277  0x00002e41 store  0x00000001 , 0x00004804 
+ 00019278  0x00002e42 rtn 
+ 00019279  0x00002e45 arg  0x00004807 , 0x00000005 
+ 00019280  0x00002e46 branch  0x00004b55 
+ 00019281  0x00002e49 arg  0x00004825 , 0x00000005 
+ 00019282  0x00002e4a branch  0x00004b55 
+ 00019283  0x00002e4d fetch  0x00000002 , 0x00004800 
+ 00019284  0x00002e4e iforce  0x00000005 
+ 00019285  0x00002e51 arg  0x00000013 , 0x00000039 
+ 00019286  0x00002e52 call  0x00007e45 
+ 00019287  0x00002e53 deposit  0x00000005 
+ 00019288  0x00002e54 store  0x00000002 , 0x00004800 
+ 00019289  0x00002e55 jam  0x00000000 , 0x00004803 
+ 00019290  0x00002e56 rtn 
+ 00019291  0x00002e5b fetch  0x00000001 , 0x00004803 
+ 00019292  0x00002e5c beq  0x00000001 , 0x00004b71 
+ 00019293  0x00002e5d beq  0x00000002 , 0x00004b8d 
+ 00019294  0x00002e5e beq  0x0000000a , 0x00004b7a 
+ 00019295  0x00002e5f beq  0x0000000b , 0x00004b7a 
+ 00019296  0x00002e60 beq  0x0000000c , 0x00004b7a 
+ 00019297  0x00002e61 beq  0x00000008 , 0x00004b8d 
+ 00019298  0x00002e62 beq  0x00000009 , 0x00004b6a 
+ 00019299  0x00002e63 rtn 
+ 00019300  0x00002e66 jam  0x00000000 , 0x00004213 
+ 00019301  0x00002e67 jam  0x00000000 , 0x00004803 
+ 00019302  0x00002e68 rtn 
+ 00019303  0x00002e6a jam  0x0000001e , 0x00004213 
+ 00019304  0x00002e6b jam  0x00000000 , 0x00004803 
+ 00019305  0x00002e6c rtn 
+ 00019306  0x00002e71 jam  0x00000000 , 0x00004803 
+ 00019307  0x00002e72 arg  0x000fffff , 0x0000001b 
+ 00019308  0x00002e73 call  0x00004b91 
+ 00019309  0x00002e74 rtn 
+ 00019310  0x00002e77 fetcht  0x00000002 , 0x000003c2 
+ 00019311  0x00002e78 iadd  0x00000002 , 0x0000003f 
+ 00019312  0x00002e79 store  0x00000004 , 0x000003c4 
+ 00019313  0x00002e7b fetch  0x00000004 , 0x000003c4 
+ 00019314  0x00002e7c isub  0x00000028 , 0x0000003f 
+ 00019315  0x00002e7d nbranch  0x00004b6e , 0x00000002 
+ 00019316  0x00002e7e rshift  0x0000003f , 0x0000001b 
+ 00019317  0x00002e7f call  0x00004b91 
+ 00019318  0x00002e80 rtn  0x00000034 
+ 00019319  0x00002e81 jam  0x0000000c , 0x00004803 
+ 00019320  0x00002e82 arg  0x00001800 , 0x00000002 
+ 00019321  0x00002e83 storet  0x00000002 , 0x00004800 
+ 00019322  0x00002e86 call  0x0000561c 
+ 00019323  0x00002e87 nrtn  0x00000034 
+ 00019324  0x00002e88 jam  0x00000014 , 0x000044c2 
+ 00019325  0x00002e89 jam  0x0000001b , 0x00000b7d 
+ 00019326  0x00002e8a call  0x00005620 
+ 00019327  0x00002e8b fetch  0x00000002 , 0x00000419 
+ 00019328  0x00002e8c iforce  0x00000005 
+ 00019329  0x00002e8d fetch  0x00000002 , 0x00004800 
+ 00019330  0x00002e8e iforce  0x00000006 
+ 00019331  0x00002e8f arg  0x00000014 , 0x00000039 
+ 00019332  0x00002e90 call  0x00007e45 
+ 00019333  0x00002e91 deposit  0x00000006 
+ 00019334  0x00002e92 store  0x00000002 , 0x00004800 
+ 00019335  0x00002e93 fetch  0x00000002 , 0x00004805 
+ 00019336  0x00002e94 increase  0xffffffec , 0x0000003f 
+ 00019337  0x00002e95 store  0x00000002 , 0x00004805 
+ 00019338  0x00002e96 rtn  0x00000002 
+ 00019339  0x00002e97 jam  0x00000000 , 0x00004803 
+ 00019340  0x00002e98 rtn 
+ 00019341  0x00002e9c fetch  0x00000001 , 0x00004804 
+ 00019342  0x00002e9d call  0x00004be2 
+ 00019343  0x00002e9e jam  0x00000000 , 0x00004803 
+ 00019344  0x00002e9f rtn 
+ 00019345  0x00002ea3 call  0x00004b97 
+ 00019346  0x00002ea4 setarg  0x00001800 
+ 00019347  0x00002ea5 isub  0x00000005 , 0x0000003f 
+ 00019348  0x00002ea6 sub  0x0000003f , 0x00000000 , 0x0000003f 
+ 00019349  0x00002ea7 store  0x00000002 , 0x00004805 
+ 00019350  0x00002ea8 rtn 
+ 00019351  0x00002ead disable  0x00000010 
+ 00019352  0x00002eae arg  0x00001800 , 0x00000005 
+ 00019353  0x00002eb0 rtn  0x00000003 
+ 00019354  0x00002eb1 hfetch  0x00000001 , 0x0000811e 
+ 00019355  0x00002eb2 bbit0  0x00000005 , 0x00004b99 
+ 00019356  0x00002eb3 copy  0x00000019 , 0x00000002 
+ 00019357  0x00002eb4 arg  0x00000080 , 0x00000039 
+ 00019358  0x00002eb5 call  0x00007e3b 
+ 00019359  0x00002eb6 arg  0x00001800 , 0x00000005 
+ 00019360  0x00002eb7 arg  0x00000000 , 0x00000013 
+ 00019361  0x00002eb9 arg  0x000000b4 , 0x0000001b 
+ 00019362  0x00002ebb rtn  0x00000003 
+ 00019363  0x00002ebc hfetch  0x00000001 , 0x0000811e 
+ 00019364  0x00002ebd ixor  0x00000013 , 0x0000003f 
+ 00019365  0x00002ebe bbit1  0x00000005 , 0x00004ba2 
+ 00019366  0x00002ebf copy  0x00000019 , 0x0000003f 
+ 00019367  0x00002ec0 iforce  0x00000030 
+ 00019368  0x00002ec1 call  0x00007e78 
+ 00019369  0x00002ec2 sub  0x0000003f , 0x000000ff , 0x0000003e 
+ 00019370  0x00002ec3 branch  0x00004ba2 , 0x00000002 
+ 00019371  0x00002ec4 isolate0  0x00000005 , 0x00000013 
+ 00019372  0x00002ec5 setflag  0x00000001 , 0x00000017 , 0x0000003f 
+ 00019373  0x00002ec6 istore  0x00000003 , 0x00000005 
+ 00019374  0x00002ec7 rshift8  0x00000005 , 0x0000003f 
+ 00019375  0x00002ec8 rtneq  0x0000001c 
+ 00019376  0x00002ec9 copy  0x00000030 , 0x00000002 
+ 00019377  0x00002eca xor_into  0x00000020 , 0x00000013 
+ 00019378  0x00002ecb branch  0x00004ba1 
+ 00019379  0x00002ed0 branch  0x00004bc7 , 0x00000028 
+ 00019380  0x00002ed1 branch  0x00004bca , 0x0000002c 
+ 00019381  0x00002ed3 arg  0x00004826 , 0x00000002 
+ 00019382  0x00002ed4 fetch  0x00000001 , 0x00004825 
+ 00019383  0x00002ed5 iadd  0x00000002 , 0x0000003f 
+ 00019384  0x00002ed6 isub  0x00000011 , 0x0000003e 
+ 00019385  0x00002ed7 branch  0x00004bda , 0x00000005 
+ 00019386  0x00002ed8 ifetch  0x00000001 , 0x00000011 
+ 00019387  0x00002ed9 copy  0x00000006 , 0x00000011 
+ 00019388  0x00002eda bbit0  0x00000007 , 0x00004bc1 
+ 00019389  0x00002edb enable  0x0000002c 
+ 00019390  0x00002edc and  0x0000003f , 0x0000007f , 0x00000012 
+ 00019391  0x00002edd lshift3  0x00000011 , 0x00000011 
+ 00019392  0x00002ede branch  0x00004bca 
+ 00019393  0x00002ee0 rshift4  0x0000003f , 0x00000008 
+ 00019394  0x00002ee1 and_into  0x0000000f , 0x0000003f 
+ 00019395  0x00002ee2 isub  0x00000008 , 0x0000003e 
+ 00019396  0x00002ee3 rtn  0x00000005 
+ 00019397  0x00002ee4 enable  0x00000028 
+ 00019398  0x00002ee5 rtn 
+ 00019399  0x00002ee7 deposit  0x00000008 
+ 00019400  0x00002ee8 disable  0x00000028 
+ 00019401  0x00002ee9 rtn 
+ 00019402  0x00002eeb deposit  0x00000012 
+ 00019403  0x00002eec branch  0x00004bd6 , 0x00000034 
+ 00019404  0x00002eed and  0x00000011 , 0x00000007 , 0x00000007 
+ 00019405  0x00002eee rshift3  0x00000011 , 0x00000006 
+ 00019406  0x00002eef ifetch  0x00000001 , 0x00000006 
+ 00019407  0x00002ef0 increase  0x00000001 , 0x00000011 
+ 00019408  0x00002ef1 increase  0xffffffff , 0x00000012 
+ 00019409  0x00002ef2 qisolate0  0x0000003f 
+ 00019410  0x00002ef3 fetch  0x00000001 , 0x00004807 
+ 00019411  0x00002ef4 branch  0x00004bc1 , 0x00000001 
+ 00019412  0x00002ef5 fetch  0x00000001 , 0x00004808 
+ 00019413  0x00002ef6 branch  0x00004bc1 
+ 00019414  0x00002ef8 disable  0x0000002c 
+ 00019415  0x00002ef9 increase  0x00000007 , 0x00000011 
+ 00019416  0x00002efa rshift3  0x00000011 , 0x00000011 
+ 00019417  0x00002efb branch  0x00004bb5 
+ 00019418  0x00002efd setarg  0x000000ff 
+ 00019419  0x00002efe rtn 
+ 00019420  0x00002f02 lshift  0x0000003f , 0x00000006 
+ 00019421  0x00002f03 iadd  0x00000006 , 0x0000003f 
+ 00019422  0x00002f04 arg  0x00004809 , 0x00000006 
+ 00019423  0x00002f05 iadd  0x00000006 , 0x00000006 
+ 00019424  0x00002f06 ifetch  0x00000003 , 0x00000006 
+ 00019425  0x00002f07 rtn 
+ 00019426  0x00002f0b enable  0x00000010 
+ 00019427  0x00002f0c iforce  0x00000039 
+ 00019428  0x00002f0e disable  0x00000028 
+ 00019429  0x00002f0f disable  0x0000002c 
+ 00019430  0x00002f10 arg  0x00004826 , 0x00000011 
+ 00019431  0x00002f12 call  0x00004bb3 
+ 00019432  0x00002f13 beq  0x000000ff , 0x00004bf1 
+ 00019433  0x00002f14 call  0x00004bdc 
+ 00019434  0x00002f15 bbit0  0x00000017 , 0x00004bed 
+ 00019435  0x00002f16 set0  0x00000017 , 0x0000003f 
+ 00019436  0x00002f17 hjam  0x0000009e , 0x000080a0 
+ 00019437  0x00002f19 iforce  0x0000001b 
+ 00019438  0x00002f1a until  0x0000003e , 0x00000003 
+ 00019439  0x00002f1b hjam  0x00000000 , 0x000080a0 
+ 00019440  0x00002f1c branch  0x00004be7 
+ 00019441  0x00002f1e loop  0x00004be4 
+ 00019442  0x00002f1f rtn 
+ 00019443  0x00002f26 call  0x00004c21 
+ 00019444  0x00002f27 setarg  0x00004d21 
+ 00019445  0x00002f28 store  0x00000002 , 0x00004290 
+ 00019446  0x00002f29 setarg  0x00004c59 
+ 00019447  0x00002f2a store  0x00000002 , 0x0000428e 
+ 00019448  0x00002f2b setarg  0x00004d37 
+ 00019449  0x00002f2c store  0x00000002 , 0x00004292 
+ 00019450  0x00002f2d setarg  0x00004d7e 
+ 00019451  0x00002f2e store  0x00000002 , 0x0000428a 
+ 00019452  0x00002f2f setarg  0x00004d7b 
+ 00019453  0x00002f30 store  0x00000002 , 0x00004294 
+ 00019454  0x00002f31 setarg  0x00004d7e 
+ 00019455  0x00002f32 store  0x00000002 , 0x00004288 
+ 00019456  0x00002f33 setarg  0x00004d22 
+ 00019457  0x00002f34 store  0x00000002 , 0x00004286 
+ 00019458  0x00002f35 rtn  0x0000002b 
+ 00019459  0x00002f37 fetch  0x00000002 , 0x000047f4 
+ 00019460  0x00002f38 bbit1  0x0000000c , 0x00003f79 
+ 00019461  0x00002f39 call  0x00003f23 
+ 00019462  0x00002f3a branch  0x00004d79 , 0x00000034 
+ 00019463  0x00002f3b call  0x00003f7e 
+ 00019464  0x00002f3c branch  0x00003f6e 
+ 00019465  0x00002f40 call  0x00004c21 
+ 00019466  0x00002f41 setarg  0x00004d21 
+ 00019467  0x00002f42 store  0x00000002 , 0x00004290 
+ 00019468  0x00002f43 setarg  0x00004c59 
+ 00019469  0x00002f44 store  0x00000002 , 0x0000428e 
+ 00019470  0x00002f45 setarg  0x00004d37 
+ 00019471  0x00002f46 store  0x00000002 , 0x00004292 
+ 00019472  0x00002f47 setarg  0x00004d7e 
+ 00019473  0x00002f48 store  0x00000002 , 0x0000428a 
+ 00019474  0x00002f49 setarg  0x00004d7b 
+ 00019475  0x00002f4a store  0x00000002 , 0x00004294 
+ 00019476  0x00002f4b setarg  0x00004d7e 
+ 00019477  0x00002f4c store  0x00000002 , 0x00004288 
+ 00019478  0x00002f4d setarg  0x00004d22 
+ 00019479  0x00002f4e store  0x00000002 , 0x00004286 
+ 00019480  0x00002f4f rtn  0x0000002b 
+ 00019481  0x00002f51 jam  0x00000000 , 0x000007dc 
+ 00019482  0x00002f52 jam  0x00000000 , 0x000007dd 
+ 00019483  0x00002f54 fetch  0x00000002 , 0x000047f4 
+ 00019484  0x00002f55 bbit1  0x0000000c , 0x00003f79 
+ 00019485  0x00002f56 call  0x00003f23 
+ 00019486  0x00002f57 branch  0x00004d79 , 0x00000034 
+ 00019487  0x00002f58 call  0x00003f7e 
+ 00019488  0x00002f59 branch  0x00003f6e 
+ 00019489  0x00002f5e set1  0x00000025 , 0x00000000 
+ 00019490  0x00002f5f bpatch  0x000000b6 , 0x00004036 
+ 00019491  0x00002f61 fetch  0x00000001 , 0x00008140 
+ 00019492  0x00002f62 branch  0x00003bf1 , 0x00000034 
+ 00019493  0x00002f63 hjam  0x00000000 , 0x00008070 
+ 00019494  0x00002f64 hjam  0x000000ff , 0x00008078 
+ 00019495  0x00002f66 hjam  0x000000ff , 0x00008071 
+ 00019496  0x00002f67 hjam  0x000000ff , 0x00008072 
+ 00019497  0x00002f68 hfetch  0x00000001 , 0x00008073 
+ 00019498  0x00002f69 or_into  0x0000000f , 0x0000003f 
+ 00019499  0x00002f6a hstore  0x00000001 , 0x00008073 
+ 00019500  0x00002f6c hjam  0x00000000 , 0x00008080 
+ 00019501  0x00002f6d hjam  0x00000000 , 0x00008081 
+ 00019502  0x00002f6e hjam  0x000000ff , 0x00008083 
+ 00019503  0x00002f6f hjam  0x000000ff , 0x00008084 
+ 00019504  0x00002f70 hfetch  0x00000001 , 0x00008085 
+ 00019505  0x00002f71 or_into  0x00000003 , 0x0000003f 
+ 00019506  0x00002f72 hstore  0x00000001 , 0x00008085 
+ 00019507  0x00002f73 hjam  0x00000000 , 0x0000806f 
+ 00019508  0x00002f74 setarg  0x00000013 
+ 00019509  0x00002f75 lshift3  0x0000003f , 0x0000003f 
+ 00019510  0x00002f76 add  0x0000003f , 0x00000007 , 0x0000003f 
+ 00019511  0x00002f77 hstore  0x00000001 , 0x00008064 
+ 00019512  0x00002f79 hfetch  0x00000001 , 0x00008043 
+ 00019513  0x00002f7a set1  0x00000002 , 0x0000003f 
+ 00019514  0x00002f7b hstore  0x00000001 , 0x00008043 
+ 00019515  0x00002f7c hfetch  0x00000001 , 0x00008051 
+ 00019516  0x00002f7d set0  0x00000001 , 0x0000003f 
+ 00019517  0x00002f7e hstore  0x00000001 , 0x00008051 
+ 00019518  0x00002f7f hjam  0x0000000d , 0x00008063 
+ 00019519  0x00002f80 hjam  0x000000d3 , 0x00008067 
+ 00019520  0x00002f81 hjam  0x00000000 , 0x00008065 
+ 00019521  0x00002f82 hjam  0x00000031 , 0x00008066 
+ 00019522  0x00002f83 call  0x00003e0b 
+ 00019523  0x00002f84 fetcht  0x00000001 , 0x0000480e 
+ 00019524  0x00002f85 call  0x000069da 
+ 00019525  0x00002f86 fetcht  0x00000001 , 0x0000480f 
+ 00019526  0x00002f87 call  0x000069da 
+ 00019527  0x00002f88 fetcht  0x00000001 , 0x00004810 
+ 00019528  0x00002f89 call  0x000069da 
+ 00019529  0x00002f8a rtn 
+ 00019530  0x00002f8d set1  0x00000025 , 0x00000000 
+ 00019531  0x00002f8e bpatch  0x000000b7 , 0x00004036 
+ 00019532  0x00002f8f ifetch  0x00000001 , 0x00000006 
+ 00019533  0x00002f90 copy  0x0000003f , 0x00000011 
+ 00019534  0x00002f91 fetcht  0x00000001 , 0x0000480f 
+ 00019535  0x00002f92 isolate1  0x00000000 , 0x00000011 
+ 00019536  0x00002f93 call  0x000069f0 
+ 00019537  0x00002f94 fetcht  0x00000001 , 0x0000480e 
+ 00019538  0x00002f95 isolate1  0x00000001 , 0x00000011 
+ 00019539  0x00002f96 call  0x000069f0 
+ 00019540  0x00002f97 fetcht  0x00000001 , 0x00004810 
+ 00019541  0x00002f98 isolate1  0x00000002 , 0x00000011 
+ 00019542  0x00002f99 call  0x000069f0 
+ 00019543  0x00002f9a jam  0x00000001 , 0x00004809 
+ 00019544  0x00002f9b rtn 
+ 00019545  0x00002fa0 call  0x00004c99 
+ 00019546  0x00002fa1 nrtn  0x00000028 
+ 00019547  0x00002fa2 nrtn  0x0000002c 
+ 00019548  0x00002fa4 fetch  0x00000001 , 0x00000450 
+ 00019549  0x00002fa5 beq  0x00000001 , 0x00004c69 
+ 00019550  0x00002fa6 fetch  0x00000001 , 0x000042bc 
+ 00019551  0x00002fa7 rtnne  0x0000003f 
+ 00019552  0x00002fa9 arg  0x0000000a , 0x00000011 
+ 00019553  0x00002faa call  0x00004b2c 
+ 00019554  0x00002fab fetch  0x00000002 , 0x000042b7 
+ 00019555  0x00002fac istore  0x00000002 , 0x00000005 
+ 00019556  0x00002fad setarg  0x000001a1 
+ 00019557  0x00002fae istore  0x00000002 , 0x00000005 
+ 00019558  0x00002faf fetch  0x00000008 , 0x00004800 
+ 00019559  0x00002fb0 istore  0x00000008 , 0x00000005 
+ 00019560  0x00002fb1 rtn 
+ 00019561  0x00002fb4 fetcht  0x00000001 , 0x0000054f 
+ 00019562  0x00002fb5 setarg  0x00000550 
+ 00019563  0x00002fb6 iadd  0x00000002 , 0x00000005 
+ 00019564  0x00002fb7 fetch  0x00000001 , 0x00004802 
+ 00019565  0x00002fb8 branch  0x00004c72 , 0x00000034 
+ 00019566  0x00002fb9 beq  0x0000002a , 0x00004c74 
+ 00019567  0x00002fba bne  0x00000028 , 0x00004c7e 
+ 00019568  0x00002fbb storet  0x00000001 , 0x0000054f 
+ 00019569  0x00002fbc branch  0x00003f6a 
+ 00019570  0x00002fbf storet  0x00000001 , 0x0000054f 
+ 00019571  0x00002fc0 rtn 
+ 00019572  0x00002fc2 fetch  0x00000001 , 0x0000054f 
+ 00019573  0x00002fc3 rtn  0x00000034 
+ 00019574  0x00002fc4 increase  0xffffffff , 0x0000003f 
+ 00019575  0x00002fc5 store  0x00000001 , 0x0000054f 
+ 00019576  0x00002fc6 arg  0x00000550 , 0x00000005 
+ 00019577  0x00002fc7 iadd  0x00000005 , 0x00000005 
+ 00019578  0x00002fc8 setarg  0x00000000 
+ 00019579  0x00002fc9 istore  0x00000001 , 0x00000005 
+ 00019580  0x00002fca enable  0x0000002c 
+ 00019581  0x00002fcb branch  0x00004c8d 
+ 00019582  0x00002fcd sub  0x0000003f , 0x0000001d , 0x0000003e 
+ 00019583  0x00002fce rtn  0x00000002 
+ 00019584  0x00002fcf arg  0x00000030 , 0x00000002 
+ 00019585  0x00002fd0 sub  0x0000003f , 0x00000027 , 0x0000003e 
+ 00019586  0x00002fd1 nrtn  0x00000002 
+ 00019587  0x00002fd2 branch  0x00004c87 , 0x00000005 
+ 00019588  0x00002fd3 arg  0x0000001d , 0x00000002 
+ 00019589  0x00002fd4 isub  0x00000002 , 0x00000002 
+ 00019590  0x00002fd5 or_into  0x00000030 , 0x00000002 
+ 00019591  0x00002fd7 istoret  0x00000001 , 0x00000005 
+ 00019592  0x00002fd8 fetch  0x00000001 , 0x0000054f 
+ 00019593  0x00002fd9 increase  0x00000001 , 0x0000003f 
+ 00019594  0x00002fda store  0x00000001 , 0x0000054f 
+ 00019595  0x00002fdb disable  0x0000002c 
+ 00019596  0x00002fdc branch  0x00004c8d 
+ 00019597  0x00002fdf fetch  0x00000002 , 0x000042b7 
+ 00019598  0x00002fe0 rtn  0x00000034 
+ 00019599  0x00002fe1 arg  0x00000003 , 0x00000011 
+ 00019600  0x00002fe2 call  0x00004b2c 
+ 00019601  0x00002fe3 fetch  0x00000002 , 0x000042b7 
+ 00019602  0x00002fe4 istore  0x00000002 , 0x00000005 
+ 00019603  0x00002fe5 setarg  0x0000ffa1 
+ 00019604  0x00002fe6 istore  0x00000002 , 0x00000005 
+ 00019605  0x00002fe7 setarg  0x00000000 
+ 00019606  0x00002fe8 setflag  0x0000002c , 0x00000000 , 0x0000003f 
+ 00019607  0x00002fe9 istore  0x00000001 , 0x00000005 
+ 00019608  0x00002fea rtn 
+ 00019609  0x00002fef disable  0x00000028 
+ 00019610  0x00002ff0 disable  0x0000002c 
+ 00019611  0x00002ff1 hfetch  0x00000001 , 0x00008119 
+ 00019612  0x00002ff2 rtnbit1  0x00000000 
+ 00019613  0x00002ff5 hfetch  0x00000001 , 0x0000811b 
+ 00019614  0x00002ff6 bbit1  0x00000000 , 0x00004ca3 
+ 00019615  0x00002ff7 hfetch  0x00000001 , 0x00008119 
+ 00019616  0x00002ff8 bbit0  0x00000006 , 0x00004ca3 
+ 00019617  0x00002ff9 hfetch  0x00000001 , 0x0000811a 
+ 00019618  0x00002ffa branch  0x00004c99 
+ 00019619  0x00002ffd enable  0x00000028 
+ 00019620  0x00002ffe enable  0x0000002c 
+ 00019621  0x00002fff hfetch  0x00000001 , 0x0000811b 
+ 00019622  0x00003000 isolate0  0x00000000 , 0x0000003f 
+ 00019623  0x00003001 hfetch  0x00000001 , 0x0000811a 
+ 00019624  0x00003002 arg  0x00004811 , 0x00000006 
+ 00019625  0x00003003 iadd  0x00000006 , 0x00000006 
+ 00019626  0x00003004 ifetch  0x00000001 , 0x00000006 
+ 00019627  0x00003005 bbit1  0x00000007 , 0x00004ce4 
+ 00019628  0x00003006 nbranch  0x00004ccc , 0x00000001 
+ 00019629  0x00003007 disable  0x0000002c 
+ 00019630  0x00003008 iforce  0x00000002 
+ 00019631  0x00003009 fetch  0x00000001 , 0x00004808 
+ 00019632  0x0000300a sub  0x0000003f , 0x00000004 , 0x0000003e 
+ 00019633  0x0000300b nrtn  0x00000002 
+ 00019634  0x0000300c copy  0x0000003f , 0x00000011 
+ 00019635  0x0000300d arg  0x00000003 , 0x00000039 
+ 00019636  0x0000300e arg  0x00004802 , 0x00000006 
+ 00019637  0x00003010 ifetch  0x00000001 , 0x00000006 
+ 00019638  0x00003011 isub  0x00000002 , 0x0000003e 
+ 00019639  0x00003012 branch  0x00004c99 , 0x00000005 
+ 00019640  0x00003013 loop  0x00004cb5 
+ 00019641  0x00003015 copy  0x00000011 , 0x0000003f 
+ 00019642  0x00003016 arg  0x00004802 , 0x00000005 
+ 00019643  0x00003017 iadd  0x00000005 , 0x00000005 
+ 00019644  0x00003018 istoret  0x00000001 , 0x00000005 
+ 00019645  0x00003019 increase  0x00000001 , 0x0000003f 
+ 00019646  0x0000301a store  0x00000001 , 0x00004808 
+ 00019647  0x0000301b hfetch  0x00000001 , 0x0000811b 
+ 00019648  0x0000301c rshift3  0x0000003f , 0x0000003f 
+ 00019649  0x0000301d nbranch  0x00004cc3 , 0x00000034 
+ 00019650  0x0000301e branch  0x00004cca 
+ 00019651  0x00003021 increase  0xffffffff , 0x0000003f 
+ 00019652  0x00003022 branch  0x00004cca , 0x00000005 
+ 00019653  0x00003023 hfetch  0x00000001 , 0x0000811b 
+ 00019654  0x00003024 and_into  0x00000001 , 0x0000003f 
+ 00019655  0x00003025 beq  0x00000000 , 0x00004c99 
+ 00019656  0x00003026 beq  0x00000001 , 0x00004cca 
+ 00019657  0x00003027 rtn 
+ 00019658  0x00003029 enable  0x0000002c 
+ 00019659  0x0000302a rtn 
+ 00019660  0x0000302d and  0x0000003f , 0x000000ff , 0x00000002 
+ 00019661  0x0000302e fetch  0x00000001 , 0x00004808 
+ 00019662  0x0000302f rtn  0x00000034 
+ 00019663  0x00003030 iforce  0x00000039 
+ 00019664  0x00003031 arg  0x00004802 , 0x00000006 
+ 00019665  0x00003033 ifetch  0x00000001 , 0x00000006 
+ 00019666  0x00003034 isub  0x00000002 , 0x0000003e 
+ 00019667  0x00003035 branch  0x00004cd6 , 0x00000005 
+ 00019668  0x00003036 loop  0x00004cd1 
+ 00019669  0x00003037 rtn 
+ 00019670  0x00003039 add  0x00000006 , 0xffffffff , 0x00000005 
+ 00019671  0x0000303a call  0x00007e45 
+ 00019672  0x0000303b fetch  0x00000001 , 0x00004808 
+ 00019673  0x0000303c increase  0xffffffff , 0x0000003f 
+ 00019674  0x0000303d store  0x00000001 , 0x00004808 
+ 00019675  0x0000303e hfetch  0x00000001 , 0x0000811b 
+ 00019676  0x0000303f rshift3  0x0000003f , 0x0000003f 
+ 00019677  0x00003040 nbranch  0x00004cdf , 0x00000034 
+ 00019678  0x00003041 rtn 
+ 00019679  0x00003044 hfetch  0x00000001 , 0x0000811b 
+ 00019680  0x00003045 and_into  0x00000001 , 0x0000003f 
+ 00019681  0x00003046 beq  0x00000000 , 0x00004cca 
+ 00019682  0x00003047 beq  0x00000001 , 0x00004c99 
+ 00019683  0x00003048 rtn 
+ 00019684  0x0000304b and  0x0000003f , 0x00000007 , 0x00000007 
+ 00019685  0x0000304c fetch  0x00000001 , 0x00004800 
+ 00019686  0x0000304d qsetflag  0x00000001 , 0x0000003f 
+ 00019687  0x0000304e store  0x00000001 , 0x00004800 
+ 00019688  0x0000304f rtn 
+ 00019689  0x00003052 setarg  0x00000000 
+ 00019690  0x00003053 store  0x00000008 , 0x00004800 
+ 00019691  0x00003054 store  0x00000001 , 0x00004808 
+ 00019692  0x00003055 rtn 
+ 00019693  0x00003058 hfetch  0x00000001 , 0x0000811b 
+ 00019694  0x00003059 hfetch  0x00000001 , 0x0000811a 
+ 00019695  0x0000305a hfetch  0x00000001 , 0x00008119 
+ 00019696  0x0000305b bbit0  0x00000000 , 0x00004ced 
+ 00019697  0x0000305c setarg  0x000000ff 
+ 00019698  0x0000305d enable  0x00000028 
+ 00019699  0x0000305e rtn 
+ 00019700  0x00003061 fetcht  0x00000002 , 0x000044c2 
+ 00019701  0x00003062 call  0x00005866 
+ 00019702  0x00003063 rtnbit0  0x00000000 
+ 00019703  0x00003064 fetch  0x00000001 , 0x000046f8 
+ 00019704  0x00003065 rtnbit0  0x00000000 
+ 00019705  0x00003066 call  0x0000561c 
+ 00019706  0x00003067 nrtn  0x00000034 
+ 00019707  0x00003068 call  0x00004c99 
+ 00019708  0x00003069 nrtn  0x00000028 
+ 00019709  0x0000306a nrtn  0x0000002c 
+ 00019710  0x0000306c call  0x00003f5e 
+ 00019711  0x0000306d jam  0x00000002 , 0x00004213 
+ 00019712  0x0000306e fetcht  0x00000002 , 0x000044c2 
+ 00019713  0x0000306f call  0x00005a88 
+ 00019714  0x00003070 add  0x00000006 , 0x00000001 , 0x00000005 
+ 00019715  0x00003071 fetch  0x00000008 , 0x00004800 
+ 00019716  0x00003072 istore  0x00000008 , 0x00000005 
+ 00019717  0x00003073 jam  0x0000001b , 0x00000b7d 
+ 00019718  0x00003074 call  0x00005620 
+ 00019719  0x00003075 fetch  0x00000001 , 0x000003e4 
+ 00019720  0x00003076 bbit1  0x00000003 , 0x00003bf2 
+ 00019721  0x00003077 rtn 
+ 00019722  0x00003079 copy  0x00000013 , 0x0000003f 
+ 00019723  0x0000307a beq  0x00000010 , 0x00004d15 
+ 00019724  0x0000307c beq  0x00000014 , 0x00004d13 
+ 00019725  0x0000307d beq  0x00000028 , 0x00004d11 
+ 00019726  0x0000307e beq  0x00000029 , 0x00004d11 
+ 00019727  0x0000307f beq  0x0000002e , 0x00003f57 
+ 00019728  0x00003080 rtn 
+ 00019729  0x00003083 call  0x00003fa4 
+ 00019730  0x00003084 branch  0x00003f92 
+ 00019731  0x00003086 call  0x00004ced 
+ 00019732  0x00003087 branch  0x00004ce9 
+ 00019733  0x0000308a call  0x00005b30 
+ 00019734  0x0000308b call  0x00003f90 
+ 00019735  0x0000308c call  0x00003f88 
+ 00019736  0x0000308d branch  0x00003f94 
+ 00019737  0x00003090 fetch  0x00000001 , 0x0000442e 
+ 00019738  0x00003091 rtn  0x00000034 
+ 00019739  0x00003092 increase  0xffffffff , 0x0000003f 
+ 00019740  0x00003093 store  0x00000001 , 0x0000442e 
+ 00019741  0x00003094 nrtn  0x00000034 
+ 00019742  0x00003095 fetch  0x00000001 , 0x000044db 
+ 00019743  0x00003096 rtn  0x00000034 
+ 00019744  0x00003097 branch  0x00003f98 
+ 00019745  0x0000309b branch  0x00004d2e 
+ 00019746  0x0000309f hfetch  0x00000003 , 0x0000811c 
+ 00019747  0x000030a0 copy  0x0000003f , 0x00000012 
+ 00019748  0x000030a1 hfetch  0x00000001 , 0x0000811f 
+ 00019749  0x000030a2 and_into  0x0000000f , 0x0000003f 
+ 00019750  0x000030a3 lshift16  0x0000003f , 0x0000003f 
+ 00019751  0x000030a4 lshift8  0x0000003f , 0x0000003f 
+ 00019752  0x000030a5 ior  0x00000012 , 0x0000003f 
+ 00019753  0x000030a6 fetcht  0x00000004 , 0x0000480a 
+ 00019754  0x000030a7 isub  0x00000002 , 0x0000003f 
+ 00019755  0x000030a8 rtn  0x00000034 
+ 00019756  0x000030a9 arg  0x000000bb , 0x00000012 
+ 00019757  0x000030aa branch  0x00003f5e 
+ 00019758  0x000030ae fetch  0x00000001 , 0x00004133 
+ 00019759  0x000030af nrtn  0x00000034 
+ 00019760  0x000030b0 fetch  0x00000001 , 0x0000427f 
+ 00019761  0x000030b1 nrtn  0x00000034 
+ 00019762  0x000030b2 fetch  0x00000001 , 0x000047ea 
+ 00019763  0x000030b3 rtn  0x00000034 
+ 00019764  0x000030b4 fetch  0x00000001 , 0x000047eb 
+ 00019765  0x000030b5 nrtn  0x00000034 
+ 00019766  0x000030b6 branch  0x00003f9a 
+ 00019767  0x000030b9 copy  0x00000013 , 0x0000003f 
+ 00019768  0x000030ba beq  0x00000006 , 0x00004d8b 
+ 00019769  0x000030bb beq  0x0000000a , 0x00004d7c 
+ 00019770  0x000030bc beq  0x00000006 , 0x00004d8f 
+ 00019771  0x000030bd beq  0x00000010 , 0x00004d68 
+ 00019772  0x000030be beq  0x0000002e , 0x00003f57 
+ 00019773  0x000030bf beq  0x00000001 , 0x00004d77 
+ 00019774  0x000030c0 beq  0x00000002 , 0x00004d51 
+ 00019775  0x000030c2 beq  0x00000004 , 0x00004d4e 
+ 00019776  0x000030c3 beq  0x00000013 , 0x00004d4e 
+ 00019777  0x000030c4 and  0x0000003f , 0x0000000f , 0x00000002 
+ 00019778  0x000030c5 and_into  0x000000f0 , 0x0000003f 
+ 00019779  0x000030c6 beq  0x00000050 , 0x00004d45 
+ 00019780  0x000030c7 rtn 
+ 00019781  0x000030ca set1  0x00000025 , 0x00000000 
+ 00019782  0x000030cb bpatch  0x000000b8 , 0x00004037 
+ 00019783  0x000030cc storet  0x00000001 , 0x00000259 
+ 00019784  0x000030ce fetch  0x00000001 , 0x00000259 
+ 00019785  0x000030cf rtn  0x00000034 
+ 00019786  0x000030d0 increase  0xffffffff , 0x0000003f 
+ 00019787  0x000030d1 store  0x00000001 , 0x00000259 
+ 00019788  0x000030d3 call  0x00004d62 
+ 00019789  0x000030d4 branch  0x00004d48 
+ 00019790  0x000030d7 fetch  0x00000002 , 0x000047f4 
+ 00019791  0x000030d8 bbit1  0x0000000c , 0x00004d79 
+ 00019792  0x000030d9 branch  0x00003f10 
+ 00019793  0x000030dd set1  0x00000025 , 0x00000000 
+ 00019794  0x000030de bpatch  0x000000b9 , 0x00004037 
+ 00019795  0x000030df call  0x00004d59 
+ 00019796  0x000030e0 fetch  0x00000002 , 0x000042a0 
+ 00019797  0x000030e2 bbit1  0x00000000 , 0x00003f12 
+ 00019798  0x000030e3 bbit1  0x00000001 , 0x00004d5c 
+ 00019799  0x000030e4 bbit1  0x00000002 , 0x00004d5f 
+ 00019800  0x000030e5 branch  0x00004d79 
+ 00019801  0x000030e7 jam  0x00000000 , 0x0000425e 
+ 00019802  0x000030e8 jam  0x00000000 , 0x0000448b 
+ 00019803  0x000030e9 rtn 
+ 00019804  0x000030ec bbit1  0x00000005 , 0x00003f10 
+ 00019805  0x000030ed bbit1  0x00000003 , 0x00003f10 
+ 00019806  0x000030ee branch  0x00004d79 
+ 00019807  0x000030f0 fetch  0x00000002 , 0x000047f4 
+ 00019808  0x000030f1 bbit1  0x0000000c , 0x00004d79 
+ 00019809  0x000030f2 branch  0x00003f10 
+ 00019810  0x000030f7 fetch  0x00000001 , 0x000047f2 
+ 00019811  0x000030f8 rtn  0x00000034 
+ 00019812  0x000030f9 increase  0xffffffff , 0x0000003f 
+ 00019813  0x000030fa store  0x00000001 , 0x000047f2 
+ 00019814  0x000030fb nrtn  0x00000034 
+ 00019815  0x000030fc branch  0x00004d8f 
+ 00019816  0x00003100 call  0x00004d6a 
+ 00019817  0x00003101 branch  0x00004d79 
+ 00019818  0x00003104 set1  0x00000025 , 0x00000000 
+ 00019819  0x00003105 bpatch  0x000000ba , 0x00004037 
+ 00019820  0x00003106 fetch  0x00000002 , 0x000047f4 
+ 00019821  0x00003107 isolate1  0x00000007 , 0x0000003f 
+ 00019822  0x00003108 call  0x00003f75 , 0x00000001 
+ 00019823  0x00003109 fetch  0x00000002 , 0x000047fe 
+ 00019824  0x0000310a store  0x00000002 , 0x000047f0 
+ 00019825  0x0000310b fetch  0x00000002 , 0x000042a2 
+ 00019826  0x0000310c set1  0x00000000 , 0x0000003f 
+ 00019827  0x0000310d store  0x00000002 , 0x000042a2 
+ 00019828  0x0000310e fetch  0x00000002 , 0x000047f4 
+ 00019829  0x0000310f bbit1  0x00000000 , 0x00003f77 
+ 00019830  0x00003110 rtn 
+ 00019831  0x00003114 call  0x00003f7e 
+ 00019832  0x00003115 branch  0x00003f98 
+ 00019833  0x00003118 call  0x00003f7c 
+ 00019834  0x00003119 branch  0x00003f94 
+ 00019835  0x0000311c branch  0x00003f9a 
+ 00019836  0x0000311f jam  0x00000000 , 0x0000054f 
+ 00019837  0x00003120 rtn 
+ 00019838  0x00003126 hjam  0x00000000 , 0x00008083 
+ 00019839  0x00003127 hjam  0x00000000 , 0x00008084 
+ 00019840  0x00003128 hfetch  0x00000001 , 0x00008085 
+ 00019841  0x00003129 and_into  0x000000f0 , 0x0000003f 
+ 00019842  0x0000312a hstore  0x00000001 , 0x00008085 
+ 00019843  0x0000312b setarg  0x00000000 
+ 00019844  0x0000312c store  0x00000004 , 0x000000a7 
+ 00019845  0x0000312d setarg  0x000000ff 
+ 00019846  0x0000312e fetcht  0x00000001 , 0x000047fd 
+ 00019847  0x0000312f copy  0x00000002 , 0x00000007 
+ 00019848  0x00003130 qset1  0x0000003f 
+ 00019849  0x00003131 store  0x00000004 , 0x000000a3 
+ 00019850  0x00003132 rtn 
+ 00019851  0x00003135 setarg  0x00000002 
+ 00019852  0x00003136 store  0x00000001 , 0x000047f2 
+ 00019853  0x00003137 call  0x00004ced 
+ 00019854  0x0000313b branch  0x00004ce9 
+ 00019855  0x0000313d set1  0x00000025 , 0x00000000 
+ 00019856  0x0000313e bpatch  0x000000bb , 0x00004037 
+ 00019857  0x0000313f jam  0x00000001 , 0x0000427f 
+ 00019858  0x00003140 call  0x00003fa4 
+ 00019859  0x00003141 call  0x00003fa2 
+ 00019860  0x00003143 setarg  0x00000000 
+ 00019861  0x00003144 store  0x00000002 , 0x000047f0 
+ 00019862  0x00003145 store  0x00000001 , 0x000047f2 
+ 00019863  0x00003146 branch  0x00003f9e 
+ 00019864  0x0000314e branch  0x00004d9d , 0x0000002b 
+ 00019865  0x00003150 setarg  0x000043ce 
+ 00019866  0x00003151 arg  0x000042af , 0x00000005 
+ 00019867  0x00003152 isub  0x00000005 , 0x00000039 
+ 00019868  0x00003153 call  0x00007e3f 
+ 00019869  0x00003155 set1  0x00000025 , 0x00000000 
+ 00019870  0x00003156 bpatch  0x00000016 , 0x00004022 
+ 00019871  0x00003157 setarg  0x000004de 
+ 00019872  0x00003158 arg  0x000004a9 , 0x00000005 
+ 00019873  0x00003159 isub  0x00000005 , 0x00000039 
+ 00019874  0x0000315a call  0x00007e3f 
+ 00019875  0x0000315b setarg  0x00000330 
+ 00019876  0x0000315c arg  0x000002c4 , 0x00000005 
+ 00019877  0x0000315d isub  0x00000005 , 0x00000039 
+ 00019878  0x0000315e call  0x00007e3f 
+ 00019879  0x0000315f branch  0x0000532a 
+ 00019880  0x00003162 set1  0x00000025 , 0x00000000 
+ 00019881  0x00003163 bpatch  0x00000017 , 0x00004022 
+ 00019882  0x00003164 copy  0x00000006 , 0x00000002 
+ 00019883  0x00003167 copy  0x00000002 , 0x00000006 
+ 00019884  0x00003168 ifetch  0x00000002 , 0x00000006 
+ 00019885  0x00003169 store  0x00000002 , 0x000002cd 
+ 00019886  0x0000316a ifetch  0x00000002 , 0x00000006 
+ 00019887  0x0000316b store  0x00000002 , 0x000002cf 
+ 00019888  0x0000316c deposit  0x00000006 
+ 00019889  0x0000316d store  0x00000002 , 0x000002cb 
+ 00019890  0x0000316e fetch  0x00000001 , 0x000047f3 
+ 00019891  0x0000316f beq  0x00000000 , 0x00004db5 
+ 00019892  0x00003170 branch  0x000050fa 
+ 00019893  0x00003173 set1  0x00000025 , 0x00000000 
+ 00019894  0x00003174 bpatch  0x00000018 , 0x00004023 
+ 00019895  0x00003175 fetch  0x00000002 , 0x000002cd 
+ 00019896  0x00003176 branch  0x00004dfc , 0x00000034 
+ 00019897  0x00003177 fetch  0x00000001 , 0x000002cf 
+ 00019898  0x00003178 beq  0x00000001 , 0x00004dc0 
+ 00019899  0x0000317a beq  0x00000050 , 0x00004de7 
+ 00019900  0x0000317b beq  0x00000051 , 0x00004df4 
+ 00019901  0x0000317c beq  0x00000052 , 0x00004df2 
+ 00019902  0x0000317d beq  0x00000053 , 0x00004df2 
+ 00019903  0x0000317e branch  0x00004dfc 
+ 00019904  0x00003181 call  0x0000527a 
+ 00019905  0x00003182 nrtn  0x00000034 
+ 00019906  0x00003183 jam  0x00000000 , 0x000043cd 
+ 00019907  0x00003185 call  0x000052c4 
+ 00019908  0x00003186 call  0x00004e01 
+ 00019909  0x00003187 fetcht  0x00000002 , 0x000002d6 
+ 00019910  0x00003188 branch  0x00004dfb , 0x00000034 
+ 00019911  0x00003189 call  0x000052ce 
+ 00019912  0x0000318a fetch  0x00000002 , 0x000002d6 
+ 00019913  0x0000318b istore  0x00000002 , 0x00000005 
+ 00019914  0x0000318c force  0x00000001 , 0x0000003f 
+ 00019915  0x0000318d istore  0x00000002 , 0x00000005 
+ 00019916  0x0000318e branch  0x00004dfc 
+ 00019917  0x00003191 fetch  0x00000001 , 0x00004132 
+ 00019918  0x00003192 rtneq  0x00000001 
+ 00019919  0x00003193 fetch  0x00000001 , 0x000043cd 
+ 00019920  0x00003194 rtn  0x00000034 
+ 00019921  0x00003195 copy  0x0000003f , 0x00000011 
+ 00019922  0x00003196 fetch  0x00000004 , 0x0000033c 
+ 00019923  0x00003197 arg  0x00000100 , 0x00000002 
+ 00019924  0x00003198 iadd  0x00000002 , 0x00000002 
+ 00019925  0x00003199 copy  0x00000022 , 0x0000003f 
+ 00019926  0x0000319a isub  0x00000002 , 0x0000003e 
+ 00019927  0x0000319b nrtn  0x00000002 
+ 00019928  0x0000319c jam  0x00000000 , 0x000043cd 
+ 00019929  0x0000319d copy  0x00000011 , 0x0000003f 
+ 00019930  0x0000319e beq  0x00000050 , 0x00004ddc 
+ 00019931  0x0000319f branch  0x00003bf1 
+ 00019932  0x000031a1 call  0x000052c4 
+ 00019933  0x000031a2 call  0x00004e84 
+ 00019934  0x000031a3 call  0x000052d0 
+ 00019935  0x000031a4 call  0x00007e1c 
+ 00019936  0x000031a5 call  0x00004eb7 
+ 00019937  0x000031a6 call  0x000052ce 
+ 00019938  0x000031a8 setarg  0x0000000c 
+ 00019939  0x000031a9 istore  0x00000002 , 0x00000005 
+ 00019940  0x000031aa force  0x00000001 , 0x0000003f 
+ 00019941  0x000031ab istore  0x00000002 , 0x00000005 
+ 00019942  0x000031ac branch  0x00004dfc 
+ 00019943  0x000031af call  0x0000527e 
+ 00019944  0x000031b0 nrtn  0x00000034 
+ 00019945  0x000031b1 call  0x000052d2 
+ 00019946  0x000031b2 call  0x00006f72 
+ 00019947  0x000031b3 call  0x000052dc 
+ 00019948  0x000031b4 fetch  0x00000002 , 0x000002dc 
+ 00019949  0x000031b5 branch  0x00004dfb , 0x00000034 
+ 00019950  0x000031b6 istore  0x00000002 , 0x00000005 
+ 00019951  0x000031b7 fetch  0x00000002 , 0x000042b1 
+ 00019952  0x000031b8 istore  0x00000002 , 0x00000005 
+ 00019953  0x000031b9 branch  0x00004dfc 
+ 00019954  0x000031bc call  0x00004af8 
+ 00019955  0x000031bd branch  0x00004dfc 
+ 00019956  0x000031c0 set1  0x00000025 , 0x00000000 
+ 00019957  0x000031c1 bpatch  0x00000019 , 0x00004023 
+ 00019958  0x000031c2 jam  0x00000000 , 0x000002eb 
+ 00019959  0x000031c3 call  0x00006bdc 
+ 00019960  0x000031c4 fetch  0x00000001 , 0x000002eb 
+ 00019961  0x000031c5 rtneq  0x00000001 
+ 00019962  0x000031c6 branch  0x00004dfc 
+ 00019963  0x000031c8 call  0x0000526f 
+ 00019964  0x000031cb setarg  0x00000000 
+ 00019965  0x000031cc store  0x00000002 , 0x000002cd 
+ 00019966  0x000031cd store  0x00000002 , 0x000002cf 
+ 00019967  0x000031ce jam  0x00000001 , 0x000002d1 
+ 00019968  0x000031cf rtn 
+ 00019969  0x000031d2 set1  0x00000025 , 0x00000000 
+ 00019970  0x000031d3 bpatch  0x0000001a , 0x00004023 
+ 00019971  0x000031d4 call  0x000052d0 
+ 00019972  0x000031d5 force  0x00000000 , 0x00000012 
+ 00019973  0x000031d6 fetch  0x00000002 , 0x000002cd 
+ 00019974  0x000031d7 copy  0x0000003f , 0x00000013 
+ 00019975  0x000031d8 fetch  0x00000002 , 0x000002cb 
+ 00019976  0x000031d9 iforce  0x00000006 
+ 00019977  0x000031db call  0x00004e11 
+ 00019978  0x000031dc deposit  0x00000013 
+ 00019979  0x000031dd increase  0xfffffffc , 0x00000013 
+ 00019980  0x000031de increase  0xfffffffc , 0x0000003f 
+ 00019981  0x000031df nbranch  0x00004e09 , 0x00000034 
+ 00019982  0x000031e0 copy  0x00000012 , 0x0000003f 
+ 00019983  0x000031e1 store  0x00000002 , 0x000002d6 
+ 00019984  0x000031e2 rtn 
+ 00019985  0x000031e5 set1  0x00000025 , 0x00000000 
+ 00019986  0x000031e6 bpatch  0x0000001b , 0x00004023 
+ 00019987  0x000031e7 ifetch  0x00000001 , 0x00000006 
+ 00019988  0x000031e8 beq  0x00000001 , 0x00004e54 
+ 00019989  0x000031e9 beq  0x00000002 , 0x00004e5c 
+ 00019990  0x000031ea beq  0x00000003 , 0x00004ee0 
+ 00019991  0x000031eb beq  0x00000004 , 0x00004f0f 
+ 00019992  0x000031ec beq  0x00000005 , 0x00004fad 
+ 00019993  0x000031ed beq  0x00000006 , 0x00004fd5 
+ 00019994  0x000031ee beq  0x00000007 , 0x00005024 
+ 00019995  0x000031ef beq  0x00000008 , 0x00005058 
+ 00019996  0x000031f0 beq  0x00000009 , 0x00005068 
+ 00019997  0x000031f1 beq  0x0000000a , 0x00004e21 
+ 00019998  0x000031f2 beq  0x0000000b , 0x00005069 
+ 00019999  0x000031f3 call  0x0000506a 
+ 00020000  0x000031f5 rtn 
+ 00020001  0x000031f8 ifetch  0x00000001 , 0x00000006 
+ 00020002  0x000031f9 copy  0x0000003f , 0x00000007 
+ 00020003  0x000031fa ifetch  0x00000002 , 0x00000006 
+ 00020004  0x000031fb copy  0x0000003f , 0x00000011 
+ 00020005  0x000031fc copy  0x00000013 , 0x0000003f 
+ 00020006  0x000031fd isub  0x00000011 , 0x00000013 
+ 00020007  0x000031fe copy  0x00000011 , 0x0000003f 
+ 00020008  0x000031ff iadd  0x00000006 , 0x00000006 
+ 00020009  0x00003200 setarg  0x0000000b 
+ 00020010  0x00003201 istore  0x00000001 , 0x00000005 
+ 00020011  0x00003202 copy  0x00000007 , 0x0000003f 
+ 00020012  0x00003203 istore  0x00000001 , 0x00000005 
+ 00020013  0x00003204 force  0x00000008 , 0x0000003f 
+ 00020014  0x00003205 istore  0x00000002 , 0x00000005 
+ 00020015  0x00003206 force  0x00000002 , 0x0000003f 
+ 00020016  0x00003207 istore  0x00000002 , 0x00000005 
+ 00020017  0x00003208 force  0x00000000 , 0x0000003f 
+ 00020018  0x00003209 istore  0x00000002 , 0x00000005 
+ 00020019  0x0000320a force  0x00000400 , 0x0000003f 
+ 00020020  0x0000320b istore  0x00000002 , 0x00000005 
+ 00020021  0x0000320c force  0x00000000 , 0x0000003f 
+ 00020022  0x0000320d istore  0x00000002 , 0x00000005 
+ 00020023  0x0000320e force  0x0000000c , 0x0000003f 
+ 00020024  0x0000320f iadd  0x00000012 , 0x00000012 
+ 00020025  0x00003210 branch  0x00004e20 
+ 00020026  0x00003213 ifetch  0x00000001 , 0x00000006 
+ 00020027  0x00003214 copy  0x0000003f , 0x00000007 
+ 00020028  0x00003215 ifetch  0x00000002 , 0x00000006 
+ 00020029  0x00003216 copy  0x0000003f , 0x00000011 
+ 00020030  0x00003217 copy  0x00000013 , 0x0000003f 
+ 00020031  0x00003218 isub  0x00000011 , 0x00000013 
+ 00020032  0x00003219 copy  0x00000011 , 0x0000003f 
+ 00020033  0x0000321a iadd  0x00000006 , 0x00000006 
+ 00020034  0x0000321b call  0x000052d0 
+ 00020035  0x0000321c setarg  0x0000000b 
+ 00020036  0x0000321d istore  0x00000001 , 0x00000005 
+ 00020037  0x0000321e copy  0x00000007 , 0x0000003f 
+ 00020038  0x0000321f istore  0x00000001 , 0x00000005 
+ 00020039  0x00003220 force  0x00000008 , 0x0000003f 
+ 00020040  0x00003221 istore  0x00000002 , 0x00000005 
+ 00020041  0x00003222 force  0x00000002 , 0x0000003f 
+ 00020042  0x00003223 istore  0x00000002 , 0x00000005 
+ 00020043  0x00003224 force  0x00000000 , 0x0000003f 
+ 00020044  0x00003225 istore  0x00000002 , 0x00000005 
+ 00020045  0x00003226 force  0x00000400 , 0x0000003f 
+ 00020046  0x00003227 istore  0x00000002 , 0x00000005 
+ 00020047  0x00003228 force  0x00000000 , 0x0000003f 
+ 00020048  0x00003229 istore  0x00000002 , 0x00000005 
+ 00020049  0x0000322a force  0x0000000c , 0x0000003f 
+ 00020050  0x0000322b iadd  0x00000012 , 0x00000012 
+ 00020051  0x0000322d branch  0x00004e20 
+ 00020052  0x00003232 ifetch  0x00000001 , 0x00000006 
+ 00020053  0x00003233 copy  0x0000003f , 0x00000007 
+ 00020054  0x00003234 ifetch  0x00000002 , 0x00000006 
+ 00020055  0x00003235 copy  0x0000003f , 0x00000011 
+ 00020056  0x00003236 iadd  0x00000006 , 0x00000006 
+ 00020057  0x00003237 copy  0x00000013 , 0x0000003f 
+ 00020058  0x00003238 isub  0x00000011 , 0x00000013 
+ 00020059  0x0000323a branch  0x00004e20 
+ 00020060  0x0000323d call  0x00007e1c 
+ 00020061  0x00003240 call  0x00007e21 
+ 00020062  0x00003241 arg  0x00000000 , 0x00000008 
+ 00020063  0x00003242 ifetch  0x00000001 , 0x00000006 
+ 00020064  0x00003243 copy  0x0000003f , 0x00000007 
+ 00020065  0x00003244 ifetch  0x00000002 , 0x00000006 
+ 00020066  0x00003245 copy  0x0000003f , 0x00000011 
+ 00020067  0x00003246 ifetch  0x00000002 , 0x00000006 
+ 00020068  0x00003247 copy  0x0000003f , 0x00000002 
+ 00020069  0x00003248 ifetch  0x00000002 , 0x00000006 
+ 00020070  0x00003249 copy  0x0000003f , 0x0000000b 
+ 00020071  0x0000324a copy  0x00000002 , 0x0000003f 
+ 00020072  0x0000324b beq  0x00000001 , 0x00004e6e 
+ 00020073  0x0000324c beq  0x00000003 , 0x00004e90 
+ 00020074  0x0000324d beq  0x00000011 , 0x00004e9c 
+ 00020075  0x0000324e beq  0x00000013 , 0x00004ea7 
+ 00020076  0x0000324f call  0x0000506a 
+ 00020077  0x00003250 branch  0x00004edf 
+ 00020078  0x00003253 call  0x00007e1c 
+ 00020079  0x00003254 arg  0x00000050 , 0x00000002 
+ 00020080  0x00003255 fetch  0x00000002 , 0x000042b1 
+ 00020081  0x00003256 nbranch  0x00004ed9 , 0x00000034 
+ 00020082  0x00003257 copy  0x0000000b , 0x0000003f 
+ 00020083  0x00003258 store  0x00000002 , 0x000042b1 
+ 00020084  0x00003259 copy  0x00000022 , 0x0000003f 
+ 00020085  0x0000325a store  0x00000004 , 0x0000033c 
+ 00020086  0x0000325b call  0x00004e78 
+ 00020087  0x0000325c branch  0x00004eb3 
+ 00020088  0x0000325f storet  0x00000002 , 0x0000033a 
+ 00020089  0x00003260 deposit  0x0000000b 
+ 00020090  0x00003261 store  0x00000002 , 0x00000330 
+ 00020091  0x00003262 deposit  0x00000011 
+ 00020092  0x00003263 store  0x00000002 , 0x00000332 
+ 00020093  0x00003264 deposit  0x00000012 
+ 00020094  0x00003265 store  0x00000002 , 0x00000334 
+ 00020095  0x00003266 deposit  0x00000013 
+ 00020096  0x00003267 store  0x00000002 , 0x00000336 
+ 00020097  0x00003268 deposit  0x00000007 
+ 00020098  0x00003269 store  0x00000002 , 0x00000338 
+ 00020099  0x0000326a rtn 
+ 00020100  0x0000326d fetcht  0x00000002 , 0x0000033a 
+ 00020101  0x0000326e fetch  0x00000002 , 0x00000330 
+ 00020102  0x0000326f copy  0x0000003f , 0x0000000b 
+ 00020103  0x00003270 fetch  0x00000002 , 0x00000332 
+ 00020104  0x00003271 copy  0x0000003f , 0x00000011 
+ 00020105  0x00003272 fetch  0x00000002 , 0x00000334 
+ 00020106  0x00003273 copy  0x0000003f , 0x00000012 
+ 00020107  0x00003274 fetch  0x00000002 , 0x00000336 
+ 00020108  0x00003275 copy  0x0000003f , 0x00000013 
+ 00020109  0x00003276 fetch  0x00000002 , 0x00000338 
+ 00020110  0x00003277 copy  0x0000003f , 0x00000007 
+ 00020111  0x00003278 rtn 
+ 00020112  0x0000327b call  0x00007e1c 
+ 00020113  0x0000327c setarg  0x00000051 
+ 00020114  0x0000327d arg  0x00000051 , 0x00000002 
+ 00020115  0x0000327e fetch  0x00000002 , 0x000042b3 
+ 00020116  0x0000327f nbranch  0x00004ed9 , 0x00000034 
+ 00020117  0x00003280 copy  0x0000000b , 0x0000003f 
+ 00020118  0x00003281 store  0x00000002 , 0x000042b3 
+ 00020119  0x00003282 fetch  0x00000001 , 0x000042ba 
+ 00020120  0x00003283 set1  0x00000000 , 0x0000003f 
+ 00020121  0x00003284 set1  0x00000001 , 0x0000003f 
+ 00020122  0x00003285 store  0x00000001 , 0x000042ba 
+ 00020123  0x00003286 branch  0x00004ebb 
+ 00020124  0x00003288 call  0x00007e1c 
+ 00020125  0x00003289 arg  0x00000052 , 0x00000002 
+ 00020126  0x0000328a fetch  0x00000002 , 0x000042b5 
+ 00020127  0x0000328b nbranch  0x00004ed9 , 0x00000034 
+ 00020128  0x0000328c copy  0x0000000b , 0x0000003f 
+ 00020129  0x0000328d store  0x00000002 , 0x000042b5 
+ 00020130  0x0000328e fetch  0x00000001 , 0x000042bb 
+ 00020131  0x0000328f set1  0x00000000 , 0x0000003f 
+ 00020132  0x00003290 set1  0x00000001 , 0x0000003f 
+ 00020133  0x00003291 store  0x00000001 , 0x000042bb 
+ 00020134  0x00003292 branch  0x00004ebb 
+ 00020135  0x00003294 call  0x00007e1c 
+ 00020136  0x00003295 deposit  0x0000001a 
+ 00020137  0x00003296 arg  0x00000053 , 0x00000002 
+ 00020138  0x00003297 fetch  0x00000002 , 0x000042b7 
+ 00020139  0x00003298 nbranch  0x00004ed9 , 0x00000034 
+ 00020140  0x00003299 copy  0x0000000b , 0x0000003f 
+ 00020141  0x0000329a store  0x00000002 , 0x000042b7 
+ 00020142  0x0000329b fetch  0x00000001 , 0x000042bc 
+ 00020143  0x0000329c set1  0x00000000 , 0x0000003f 
+ 00020144  0x0000329d set1  0x00000001 , 0x0000003f 
+ 00020145  0x0000329e store  0x00000001 , 0x000042bc 
+ 00020146  0x0000329f branch  0x00004ebb 
+ 00020147  0x000032a2 setarg  0x00000001 
+ 00020148  0x000032a3 store  0x00000002 , 0x000002e4 
+ 00020149  0x000032a4 jam  0x00000050 , 0x000043cd 
+ 00020150  0x000032a5 branch  0x00004ebd 
+ 00020151  0x000032a7 fetch  0x00000001 , 0x000042b9 
+ 00020152  0x000032a8 set1  0x00000000 , 0x0000003f 
+ 00020153  0x000032a9 set1  0x00000001 , 0x0000003f 
+ 00020154  0x000032aa store  0x00000001 , 0x000042b9 
+ 00020155  0x000032ac setarg  0x00000000 
+ 00020156  0x000032ad store  0x00000002 , 0x000002e4 
+ 00020157  0x000032af set1  0x00000025 , 0x00000000 
+ 00020158  0x000032b0 bpatch  0x0000001c , 0x00004023 
+ 00020159  0x000032b1 call  0x00007e21 
+ 00020160  0x000032b2 setarg  0x00000003 
+ 00020161  0x000032b3 istore  0x00000001 , 0x00000005 
+ 00020162  0x000032b4 copy  0x00000007 , 0x0000003f 
+ 00020163  0x000032b5 istore  0x00000001 , 0x00000005 
+ 00020164  0x000032b6 setarg  0x00000008 
+ 00020165  0x000032b7 istore  0x00000002 , 0x00000005 
+ 00020166  0x000032b8 copy  0x00000002 , 0x0000003f 
+ 00020167  0x000032b9 istore  0x00000002 , 0x00000005 
+ 00020168  0x000032ba copy  0x0000000b , 0x0000003f 
+ 00020169  0x000032bb istore  0x00000002 , 0x00000005 
+ 00020170  0x000032bc fetch  0x00000002 , 0x000002e4 
+ 00020171  0x000032bd beq  0x00000001 , 0x00004ed4 
+ 00020172  0x000032be isolate0  0x00000000 , 0x00000008 
+ 00020173  0x000032bf branch  0x00004ecf , 0x00000001 
+ 00020174  0x000032c0 setarg  0x00000004 
+ 00020175  0x000032c2 istore  0x00000002 , 0x00000005 
+ 00020176  0x000032c3 force  0x00000000 , 0x0000003f 
+ 00020177  0x000032c4 istore  0x00000002 , 0x00000005 
+ 00020178  0x000032c5 setarg  0x0000000c 
+ 00020179  0x000032c6 branch  0x00004edb 
+ 00020180  0x000032c8 istore  0x00000002 , 0x00000005 
+ 00020181  0x000032c9 force  0x00000002 , 0x0000003f 
+ 00020182  0x000032ca istore  0x00000002 , 0x00000005 
+ 00020183  0x000032cb setarg  0x0000000c 
+ 00020184  0x000032cc branch  0x00004edb 
+ 00020185  0x000032cf set1  0x00000000 , 0x00000008 
+ 00020186  0x000032d0 branch  0x00004ebb 
+ 00020187  0x000032d2 iadd  0x00000012 , 0x00000012 
+ 00020188  0x000032d3 copy  0x00000013 , 0x0000003f 
+ 00020189  0x000032d4 isub  0x00000011 , 0x00000013 
+ 00020190  0x000032d5 branch  0x00004edf 
+ 00020191  0x000032d7 branch  0x00004e20 
+ 00020192  0x000032da ifetch  0x00000001 , 0x00000006 
+ 00020193  0x000032db copy  0x0000003f , 0x00000007 
+ 00020194  0x000032dc ifetch  0x00000002 , 0x00000006 
+ 00020195  0x000032dd copy  0x0000003f , 0x00000011 
+ 00020196  0x000032de copy  0x00000013 , 0x0000003f 
+ 00020197  0x000032df isub  0x00000011 , 0x00000013 
+ 00020198  0x000032e0 ifetch  0x00000002 , 0x00000006 
+ 00020199  0x000032e1 copy  0x0000003f , 0x0000000b 
+ 00020200  0x000032e2 ifetch  0x00000002 , 0x00000006 
+ 00020201  0x000032e3 copy  0x0000003f , 0x00000002 
+ 00020202  0x000032e4 setarg  0x00000050 
+ 00020203  0x000032e5 isub  0x00000002 , 0x0000003e 
+ 00020204  0x000032e6 branch  0x00004ef7 , 0x00000005 
+ 00020205  0x000032e7 setarg  0x00000051 
+ 00020206  0x000032e8 isub  0x00000002 , 0x0000003e 
+ 00020207  0x000032e9 branch  0x00004efd , 0x00000005 
+ 00020208  0x000032ea setarg  0x00000052 
+ 00020209  0x000032eb isub  0x00000002 , 0x0000003e 
+ 00020210  0x000032ec branch  0x00004f09 , 0x00000005 
+ 00020211  0x000032ed setarg  0x00000053 
+ 00020212  0x000032ee isub  0x00000002 , 0x0000003e 
+ 00020213  0x000032ef branch  0x00004f03 , 0x00000005 
+ 00020214  0x000032f0 rtn 
+ 00020215  0x000032f3 copy  0x0000000b , 0x0000003f 
+ 00020216  0x000032f4 store  0x00000002 , 0x000042b1 
+ 00020217  0x000032f5 fetch  0x00000001 , 0x000042b9 
+ 00020218  0x000032f6 set1  0x00000001 , 0x0000003f 
+ 00020219  0x000032f7 store  0x00000001 , 0x000042b9 
+ 00020220  0x000032f8 branch  0x00004e20 
+ 00020221  0x000032fa copy  0x0000000b , 0x0000003f 
+ 00020222  0x000032fb store  0x00000002 , 0x000042b3 
+ 00020223  0x000032fc fetch  0x00000001 , 0x000042ba 
+ 00020224  0x000032fd set1  0x00000001 , 0x0000003f 
+ 00020225  0x000032fe store  0x00000001 , 0x000042ba 
+ 00020226  0x000032ff rtn 
+ 00020227  0x00003301 copy  0x0000000b , 0x0000003f 
+ 00020228  0x00003302 store  0x00000002 , 0x000042b5 
+ 00020229  0x00003303 fetch  0x00000001 , 0x000042bc 
+ 00020230  0x00003304 set1  0x00000001 , 0x0000003f 
+ 00020231  0x00003305 store  0x00000001 , 0x000042bc 
+ 00020232  0x00003306 rtn 
+ 00020233  0x00003308 copy  0x0000000b , 0x0000003f 
+ 00020234  0x00003309 store  0x00000002 , 0x000042b7 
+ 00020235  0x0000330a fetch  0x00000001 , 0x000042bb 
+ 00020236  0x0000330b set1  0x00000001 , 0x0000003f 
+ 00020237  0x0000330c store  0x00000001 , 0x000042bb 
+ 00020238  0x0000330d rtn 
+ 00020239  0x00003310 ifetch  0x00000001 , 0x00000006 
+ 00020240  0x00003311 copy  0x0000003f , 0x00000007 
+ 00020241  0x00003312 ifetch  0x00000002 , 0x00000006 
+ 00020242  0x00003313 copy  0x0000003f , 0x00000011 
+ 00020243  0x00003314 copy  0x00000013 , 0x0000003f 
+ 00020244  0x00003315 isub  0x00000011 , 0x00000013 
+ 00020245  0x00003316 ifetch  0x00000002 , 0x00000006 
+ 00020246  0x00003317 copy  0x0000003f , 0x00000002 
+ 00020247  0x00003318 copy  0x00000002 , 0x00000011 
+ 00020248  0x00003319 setarg  0x00000050 
+ 00020249  0x0000331a isub  0x00000002 , 0x0000003e 
+ 00020250  0x0000331b branch  0x00004f25 , 0x00000005 
+ 00020251  0x0000331c setarg  0x00000051 
+ 00020252  0x0000331d isub  0x00000002 , 0x0000003e 
+ 00020253  0x0000331e branch  0x00004f43 , 0x00000005 
+ 00020254  0x0000331f setarg  0x00000052 
+ 00020255  0x00003320 isub  0x00000002 , 0x0000003e 
+ 00020256  0x00003321 branch  0x00004f2f , 0x00000005 
+ 00020257  0x00003322 setarg  0x00000053 
+ 00020258  0x00003323 isub  0x00000002 , 0x0000003e 
+ 00020259  0x00003324 branch  0x00004f39 , 0x00000005 
+ 00020260  0x00003325 branch  0x0000506a 
+ 00020261  0x00003328 copy  0x00000005 , 0x0000000b 
+ 00020262  0x00003329 fetch  0x00000001 , 0x000042b9 
+ 00020263  0x0000332a set1  0x00000004 , 0x0000003f 
+ 00020264  0x0000332b set1  0x00000003 , 0x0000003f 
+ 00020265  0x0000332d store  0x00000001 , 0x000042b9 
+ 00020266  0x0000332e copy  0x0000000b , 0x00000005 
+ 00020267  0x0000332f arg  0x00000050 , 0x0000000b 
+ 00020268  0x00003330 fetch  0x00000002 , 0x000042b1 
+ 00020269  0x00003331 copy  0x0000003f , 0x00000002 
+ 00020270  0x00003332 branch  0x00004f4c 
+ 00020271  0x00003334 copy  0x00000005 , 0x0000000b 
+ 00020272  0x00003335 fetch  0x00000001 , 0x000042bb 
+ 00020273  0x00003336 set1  0x00000004 , 0x0000003f 
+ 00020274  0x00003337 set1  0x00000003 , 0x0000003f 
+ 00020275  0x00003339 store  0x00000001 , 0x000042bb 
+ 00020276  0x0000333a copy  0x0000000b , 0x00000005 
+ 00020277  0x0000333b arg  0x00000052 , 0x0000000b 
+ 00020278  0x0000333c fetch  0x00000002 , 0x000042b5 
+ 00020279  0x0000333d copy  0x0000003f , 0x00000002 
+ 00020280  0x0000333e branch  0x00004f4c 
+ 00020281  0x00003340 copy  0x00000005 , 0x0000000b 
+ 00020282  0x00003341 fetch  0x00000001 , 0x000042bc 
+ 00020283  0x00003342 set1  0x00000004 , 0x0000003f 
+ 00020284  0x00003343 set1  0x00000003 , 0x0000003f 
+ 00020285  0x00003345 store  0x00000001 , 0x000042bc 
+ 00020286  0x00003346 copy  0x0000000b , 0x00000005 
+ 00020287  0x00003347 arg  0x00000053 , 0x0000000b 
+ 00020288  0x00003348 fetch  0x00000002 , 0x000042b7 
+ 00020289  0x00003349 copy  0x0000003f , 0x00000002 
+ 00020290  0x0000334a branch  0x00004f4c 
+ 00020291  0x0000334c copy  0x00000005 , 0x0000000b 
+ 00020292  0x0000334d fetch  0x00000001 , 0x000042ba 
+ 00020293  0x0000334e set1  0x00000004 , 0x0000003f 
+ 00020294  0x0000334f set1  0x00000003 , 0x0000003f 
+ 00020295  0x00003351 store  0x00000001 , 0x000042ba 
+ 00020296  0x00003353 copy  0x0000000b , 0x00000005 
+ 00020297  0x00003354 arg  0x00000051 , 0x0000000b 
+ 00020298  0x00003355 fetch  0x00000002 , 0x000042b3 
+ 00020299  0x00003356 copy  0x0000003f , 0x00000002 
+ 00020300  0x00003358 set1  0x00000025 , 0x00000000 
+ 00020301  0x00003359 bpatch  0x0000001d , 0x00004023 
+ 00020302  0x0000335a setarg  0x00000005 
+ 00020303  0x0000335b istore  0x00000001 , 0x00000005 
+ 00020304  0x0000335c copy  0x00000007 , 0x0000003f 
+ 00020305  0x0000335d istore  0x00000001 , 0x00000005 
+ 00020306  0x0000335e setarg  0x00000006 
+ 00020307  0x0000335f istore  0x00000002 , 0x00000005 
+ 00020308  0x00003360 copy  0x00000002 , 0x0000003f 
+ 00020309  0x00003361 istore  0x00000002 , 0x00000005 
+ 00020310  0x00003362 force  0x00000000 , 0x0000003f 
+ 00020311  0x00003363 istore  0x00000002 , 0x00000005 
+ 00020312  0x00003364 force  0x00000000 , 0x0000003f 
+ 00020313  0x00003365 istore  0x00000002 , 0x00000005 
+ 00020314  0x00003366 force  0x0000000a , 0x0000003f 
+ 00020315  0x00003367 iadd  0x00000012 , 0x00000012 
+ 00020316  0x00003369 storet  0x00000002 , 0x000002e9 
+ 00020317  0x0000336a copy  0x00000007 , 0x0000003f 
+ 00020318  0x0000336b store  0x00000001 , 0x000002e8 
+ 00020319  0x0000336c force  0x00000050 , 0x0000003f 
+ 00020320  0x0000336d icompare  0x000000ff , 0x0000000b 
+ 00020321  0x0000336e branch  0x00004f63 , 0x00000001 
+ 00020322  0x0000336f increase  0x00000001 , 0x0000003f 
+ 00020323  0x00003372 rtn 
+ 00020324  0x00003374 disable  0x00000028 
+ 00020325  0x00003375 rtnbit1  0x00000002 , 0x0000003f 
+ 00020326  0x00003376 rtnbit0  0x00000000 , 0x0000003f 
+ 00020327  0x00003377 rtnbit0  0x00000001 , 0x0000003f 
+ 00020328  0x00003378 set1  0x00000002 , 0x0000003f 
+ 00020329  0x00003379 copy  0x00000006 , 0x00000005 
+ 00020330  0x0000337a increase  0xffffffff , 0x00000005 
+ 00020331  0x0000337b istore  0x00000001 , 0x00000005 
+ 00020332  0x0000337c enable  0x00000028 
+ 00020333  0x0000337d rtn 
+ 00020334  0x00003380 fetch  0x00000001 , 0x000042b9 
+ 00020335  0x00003381 call  0x00004f64 
+ 00020336  0x00003382 nbranch  0x00004f75 , 0x00000028 
+ 00020337  0x00003383 jam  0x00000050 , 0x000002e7 
+ 00020338  0x00003384 fetch  0x00000002 , 0x000042b1 
+ 00020339  0x00003385 store  0x00000002 , 0x000002e9 
+ 00020340  0x00003386 branch  0x00004f89 
+ 00020341  0x00003388 fetch  0x00000001 , 0x000042ba 
+ 00020342  0x00003389 call  0x00004f64 
+ 00020343  0x0000338a nbranch  0x00004f7c , 0x00000028 
+ 00020344  0x0000338b jam  0x00000051 , 0x000002e7 
+ 00020345  0x0000338c fetch  0x00000002 , 0x000042b3 
+ 00020346  0x0000338d store  0x00000002 , 0x000002e9 
+ 00020347  0x0000338e branch  0x00004f89 
+ 00020348  0x00003390 fetch  0x00000001 , 0x000042bb 
+ 00020349  0x00003391 call  0x00004f64 
+ 00020350  0x00003392 nbranch  0x00004f83 , 0x00000028 
+ 00020351  0x00003393 jam  0x00000052 , 0x000002e7 
+ 00020352  0x00003394 fetch  0x00000002 , 0x000042b5 
+ 00020353  0x00003395 store  0x00000002 , 0x000002e9 
+ 00020354  0x00003396 branch  0x00004f89 
+ 00020355  0x00003398 fetch  0x00000001 , 0x000042bc 
+ 00020356  0x00003399 call  0x00004f64 
+ 00020357  0x0000339a nrtn  0x00000028 
+ 00020358  0x0000339b jam  0x00000053 , 0x000002e7 
+ 00020359  0x0000339c fetch  0x00000002 , 0x000042b7 
+ 00020360  0x0000339d store  0x00000002 , 0x000002e9 
+ 00020361  0x000033a1 set1  0x00000025 , 0x00000000 
+ 00020362  0x000033a2 bpatch  0x0000001e , 0x00004023 
+ 00020363  0x000033a3 call  0x00005242 
+ 00020364  0x000033a4 call  0x000052c4 
+ 00020365  0x000033a5 force  0x00000000 , 0x00000012 
+ 00020366  0x000033a6 call  0x000052d0 
+ 00020367  0x000033a7 force  0x00000004 , 0x0000003f 
+ 00020368  0x000033a8 istore  0x00000001 , 0x00000005 
+ 00020369  0x000033a9 fetch  0x00000001 , 0x000042be 
+ 00020370  0x000033aa istore  0x00000001 , 0x00000005 
+ 00020371  0x000033ab setarg  0x00000008 
+ 00020372  0x000033ac istore  0x00000002 , 0x00000005 
+ 00020373  0x000033ad fetch  0x00000002 , 0x000002e9 
+ 00020374  0x000033ae istore  0x00000002 , 0x00000005 
+ 00020375  0x000033af setarg  0x00000000 
+ 00020376  0x000033b0 istore  0x00000002 , 0x00000005 
+ 00020377  0x000033b1 force  0x00000001 , 0x0000003f 
+ 00020378  0x000033b2 istore  0x00000001 , 0x00000005 
+ 00020379  0x000033b3 force  0x00000002 , 0x0000003f 
+ 00020380  0x000033b4 istore  0x00000001 , 0x00000005 
+ 00020381  0x000033b5 fetch  0x00000001 , 0x000002e7 
+ 00020382  0x000033b6 beq  0x00000051 , 0x00004fa2 
+ 00020383  0x000033b7 setarg  0x00000030 
+ 00020384  0x000033b8 istore  0x00000002 , 0x00000005 
+ 00020385  0x000033b9 branch  0x00004fa4 
+ 00020386  0x000033bb setarg  0x000003e3 
+ 00020387  0x000033bc istore  0x00000002 , 0x00000005 
+ 00020388  0x000033be arg  0x0000000c , 0x00000002 
+ 00020389  0x000033bf storet  0x00000002 , 0x000002d6 
+ 00020390  0x000033c0 call  0x000052ce 
+ 00020391  0x000033c1 fetch  0x00000002 , 0x000002d6 
+ 00020392  0x000033c2 istore  0x00000002 , 0x00000005 
+ 00020393  0x000033c3 force  0x00000001 , 0x0000003f 
+ 00020394  0x000033c4 istore  0x00000002 , 0x00000005 
+ 00020395  0x000033c5 jam  0x00000000 , 0x000002e7 
+ 00020396  0x000033c7 branch  0x00004e20 
+ 00020397  0x000033ca increase  0x00000001 , 0x00000006 
+ 00020398  0x000033cb ifetch  0x00000002 , 0x00000006 
+ 00020399  0x000033cc copy  0x0000003f , 0x00000011 
+ 00020400  0x000033cd copy  0x00000013 , 0x0000003f 
+ 00020401  0x000033ce isub  0x00000011 , 0x00000013 
+ 00020402  0x000033cf ifetch  0x00000002 , 0x00000006 
+ 00020403  0x000033d0 copy  0x0000003f , 0x00000011 
+ 00020404  0x000033d1 setarg  0x00000050 
+ 00020405  0x000033d2 isub  0x00000011 , 0x0000003e 
+ 00020406  0x000033d3 branch  0x00004fc4 , 0x00000005 
+ 00020407  0x000033d4 setarg  0x00000051 
+ 00020408  0x000033d5 isub  0x00000011 , 0x0000003e 
+ 00020409  0x000033d6 branch  0x00004fc8 , 0x00000005 
+ 00020410  0x000033d7 setarg  0x00000052 
+ 00020411  0x000033d8 isub  0x00000011 , 0x0000003e 
+ 00020412  0x000033d9 branch  0x00004fcc , 0x00000005 
+ 00020413  0x000033da setarg  0x00000053 
+ 00020414  0x000033db isub  0x00000011 , 0x0000003e 
+ 00020415  0x000033dc branch  0x00004fd0 , 0x00000005 
+ 00020416  0x000033dd increase  0x00000002 , 0x00000006 
+ 00020417  0x000033de ifetch  0x00000002 , 0x00000006 
+ 00020418  0x000033df iforce  0x0000003e 
+ 00020419  0x000033e0 branch  0x00004e20 
+ 00020420  0x000033e2 fetch  0x00000001 , 0x000042b9 
+ 00020421  0x000033e3 set1  0x00000005 , 0x0000003f 
+ 00020422  0x000033e4 store  0x00000001 , 0x000042b9 
+ 00020423  0x000033e5 branch  0x00004e20 
+ 00020424  0x000033e7 fetch  0x00000001 , 0x000042ba 
+ 00020425  0x000033e8 set1  0x00000005 , 0x0000003f 
+ 00020426  0x000033e9 store  0x00000001 , 0x000042ba 
+ 00020427  0x000033ea branch  0x00004e20 
+ 00020428  0x000033ec fetch  0x00000001 , 0x000042bb 
+ 00020429  0x000033ed set1  0x00000005 , 0x0000003f 
+ 00020430  0x000033ee store  0x00000001 , 0x000042bb 
+ 00020431  0x000033ef branch  0x00004e20 
+ 00020432  0x000033f1 fetch  0x00000001 , 0x000042bc 
+ 00020433  0x000033f2 set1  0x00000005 , 0x0000003f 
+ 00020434  0x000033f3 store  0x00000001 , 0x000042bc 
+ 00020435  0x000033f4 jam  0x00000006 , 0x00000b7d 
+ 00020436  0x000033f5 branch  0x00007c27 
+ 00020437  0x000033fa ifetch  0x00000001 , 0x00000006 
+ 00020438  0x000033fb copy  0x0000003f , 0x00000007 
+ 00020439  0x000033fc ifetch  0x00000002 , 0x00000006 
+ 00020440  0x000033fd copy  0x0000003f , 0x00000011 
+ 00020441  0x000033fe copy  0x00000013 , 0x0000003f 
+ 00020442  0x000033ff isub  0x00000011 , 0x00000013 
+ 00020443  0x00003400 ifetch  0x00000002 , 0x00000006 
+ 00020444  0x00003401 copy  0x0000003f , 0x00000011 
+ 00020445  0x00003402 ifetch  0x00000002 , 0x00000006 
+ 00020446  0x00003403 copy  0x0000003f , 0x0000000b 
+ 00020447  0x00003404 copy  0x00000011 , 0x00000002 
+ 00020448  0x00003405 call  0x00007e1c 
+ 00020449  0x00003406 setarg  0x00000050 
+ 00020450  0x00003407 isub  0x00000002 , 0x0000003e 
+ 00020451  0x00003408 branch  0x00004ffb , 0x00000005 
+ 00020452  0x00003409 setarg  0x00000051 
+ 00020453  0x0000340a isub  0x00000002 , 0x0000003e 
+ 00020454  0x0000340b branch  0x0000500b , 0x00000005 
+ 00020455  0x0000340c setarg  0x00000052 
+ 00020456  0x0000340d isub  0x00000002 , 0x0000003e 
+ 00020457  0x0000340e branch  0x00004fef , 0x00000005 
+ 00020458  0x0000340f setarg  0x00000053 
+ 00020459  0x00003410 isub  0x00000002 , 0x0000003e 
+ 00020460  0x00003411 branch  0x00004ff5 , 0x00000005 
+ 00020461  0x00003412 call  0x0000506a 
+ 00020462  0x00003413 branch  0x00005020 
+ 00020463  0x00003415 copy  0x0000000b , 0x00000002 
+ 00020464  0x00003416 fetch  0x00000002 , 0x000042b5 
+ 00020465  0x00003417 isub  0x00000002 , 0x0000003e 
+ 00020466  0x00003418 branch  0x00005001 , 0x00000005 
+ 00020467  0x00003419 call  0x0000506a 
+ 00020468  0x0000341a branch  0x00005020 
+ 00020469  0x0000341c copy  0x0000000b , 0x00000002 
+ 00020470  0x0000341d fetch  0x00000002 , 0x000042b7 
+ 00020471  0x0000341e isub  0x00000002 , 0x0000003e 
+ 00020472  0x0000341f branch  0x00005003 , 0x00000005 
+ 00020473  0x00003420 call  0x0000506a 
+ 00020474  0x00003421 branch  0x00005020 
+ 00020475  0x00003424 copy  0x0000000b , 0x00000002 
+ 00020476  0x00003425 fetch  0x00000002 , 0x000042b1 
+ 00020477  0x00003426 isub  0x00000002 , 0x0000003e 
+ 00020478  0x00003427 branch  0x00005007 , 0x00000005 
+ 00020479  0x00003428 call  0x0000506a 
+ 00020480  0x00003429 branch  0x00005020 
+ 00020481  0x0000342b call  0x00005081 
+ 00020482  0x0000342c branch  0x00005013 
+ 00020483  0x0000342e call  0x00005087 
+ 00020484  0x0000342f fetch  0x00000002 , 0x000042b5 
+ 00020485  0x00003430 branch  0x00005013 , 0x00000034 
+ 00020486  0x00003438 branch  0x00005013 
+ 00020487  0x0000343b call  0x0000507c 
+ 00020488  0x0000343c fetch  0x00000001 , 0x000002ef 
+ 00020489  0x0000343d nbranch  0x00005013 , 0x00000034 
+ 00020490  0x00003440 branch  0x00005013 
+ 00020491  0x00003442 copy  0x0000000b , 0x00000002 
+ 00020492  0x00003443 fetch  0x00000002 , 0x000042b3 
+ 00020493  0x00003444 isub  0x00000002 , 0x0000003e 
+ 00020494  0x00003445 branch  0x00005011 , 0x00000005 
+ 00020495  0x00003446 call  0x0000506a 
+ 00020496  0x00003447 branch  0x00005020 
+ 00020497  0x00003449 call  0x00005077 
+ 00020498  0x0000344a branch  0x00005013 
+ 00020499  0x0000344c call  0x00007e21 
+ 00020500  0x0000344d setarg  0x00000007 
+ 00020501  0x0000344e istore  0x00000001 , 0x00000005 
+ 00020502  0x0000344f copy  0x00000007 , 0x0000003f 
+ 00020503  0x00003450 istore  0x00000001 , 0x00000005 
+ 00020504  0x00003451 setarg  0x00000004 
+ 00020505  0x00003452 istore  0x00000002 , 0x00000005 
+ 00020506  0x00003453 copy  0x00000011 , 0x0000003f 
+ 00020507  0x00003454 istore  0x00000002 , 0x00000005 
+ 00020508  0x00003455 copy  0x0000000b , 0x0000003f 
+ 00020509  0x00003456 istore  0x00000002 , 0x00000005 
+ 00020510  0x00003457 force  0x00000008 , 0x0000003f 
+ 00020511  0x00003458 branch  0x00005022 
+ 00020512  0x0000345a call  0x00007e21 
+ 00020513  0x0000345b branch  0x00005022 
+ 00020514  0x0000345d iadd  0x00000012 , 0x00000012 
+ 00020515  0x0000345e branch  0x00004e20 
+ 00020516  0x00003460 ifetch  0x00000001 , 0x00000006 
+ 00020517  0x00003461 copy  0x0000003f , 0x00000007 
+ 00020518  0x00003462 ifetch  0x00000002 , 0x00000006 
+ 00020519  0x00003463 copy  0x0000003f , 0x00000011 
+ 00020520  0x00003464 copy  0x00000013 , 0x0000003f 
+ 00020521  0x00003465 isub  0x00000011 , 0x00000013 
+ 00020522  0x00003466 ifetch  0x00000002 , 0x00000006 
+ 00020523  0x00003467 copy  0x0000003f , 0x0000000b 
+ 00020524  0x00003468 ifetch  0x00000002 , 0x00000006 
+ 00020525  0x00003469 copy  0x0000003f , 0x00000002 
+ 00020526  0x0000346a call  0x00007e1c 
+ 00020527  0x0000346b setarg  0x00000050 
+ 00020528  0x0000346c isub  0x00000002 , 0x0000003e 
+ 00020529  0x0000346d branch  0x0000503d , 0x00000005 
+ 00020530  0x0000346e setarg  0x00000051 
+ 00020531  0x0000346f isub  0x00000002 , 0x0000003e 
+ 00020532  0x00003470 branch  0x00005043 , 0x00000005 
+ 00020533  0x00003471 setarg  0x00000052 
+ 00020534  0x00003472 isub  0x00000002 , 0x0000003e 
+ 00020535  0x00003473 branch  0x00005049 , 0x00000005 
+ 00020536  0x00003474 setarg  0x00000053 
+ 00020537  0x00003475 isub  0x00000002 , 0x0000003e 
+ 00020538  0x00003476 branch  0x0000504f , 0x00000005 
+ 00020539  0x00003477 call  0x0000506a 
+ 00020540  0x00003478 branch  0x00005057 
+ 00020541  0x0000347a copy  0x00000002 , 0x00000011 
+ 00020542  0x0000347b copy  0x0000000b , 0x00000002 
+ 00020543  0x0000347c fetch  0x00000002 , 0x000042b1 
+ 00020544  0x0000347d isub  0x00000002 , 0x0000003e 
+ 00020545  0x0000347e call  0x0000507c , 0x00000005 
+ 00020546  0x0000347f branch  0x00005055 
+ 00020547  0x00003481 copy  0x00000002 , 0x00000011 
+ 00020548  0x00003482 copy  0x0000000b , 0x00000002 
+ 00020549  0x00003483 fetch  0x00000002 , 0x000042b3 
+ 00020550  0x00003484 isub  0x00000002 , 0x0000003e 
+ 00020551  0x00003485 call  0x00005077 , 0x00000005 
+ 00020552  0x00003486 branch  0x00005055 
+ 00020553  0x00003488 copy  0x00000002 , 0x00000011 
+ 00020554  0x00003489 copy  0x0000000b , 0x00000002 
+ 00020555  0x0000348a fetch  0x00000002 , 0x000042b5 
+ 00020556  0x0000348b isub  0x00000002 , 0x0000003e 
+ 00020557  0x0000348c call  0x00005081 , 0x00000005 
+ 00020558  0x0000348d branch  0x00005055 
+ 00020559  0x0000348f copy  0x00000002 , 0x00000011 
+ 00020560  0x00003490 copy  0x0000000b , 0x00000002 
+ 00020561  0x00003491 fetch  0x00000002 , 0x000042b7 
+ 00020562  0x00003492 isub  0x00000002 , 0x0000003e 
+ 00020563  0x00003493 call  0x00005087 , 0x00000005 
+ 00020564  0x00003494 branch  0x00005055 
+ 00020565  0x00003496 call  0x00007e21 
+ 00020566  0x00003497 branch  0x00004e20 
+ 00020567  0x00003499 branch  0x00004e20 
+ 00020568  0x0000349d ifetch  0x00000001 , 0x00000006 
+ 00020569  0x0000349e copy  0x0000003f , 0x00000007 
+ 00020570  0x0000349f ifetch  0x00000002 , 0x00000006 
+ 00020571  0x000034a0 copy  0x0000003f , 0x00000011 
+ 00020572  0x000034a1 iadd  0x00000006 , 0x00000006 
+ 00020573  0x000034a2 setarg  0x00000009 
+ 00020574  0x000034a3 istore  0x00000001 , 0x00000005 
+ 00020575  0x000034a4 copy  0x00000007 , 0x0000003f 
+ 00020576  0x000034a5 istore  0x00000001 , 0x00000005 
+ 00020577  0x000034a6 force  0x00000000 , 0x0000003f 
+ 00020578  0x000034a7 istore  0x00000002 , 0x00000005 
+ 00020579  0x000034a8 force  0x00000004 , 0x0000003f 
+ 00020580  0x000034a9 iadd  0x00000012 , 0x00000012 
+ 00020581  0x000034aa copy  0x00000013 , 0x0000003f 
+ 00020582  0x000034ab isub  0x00000011 , 0x00000013 
+ 00020583  0x000034ac branch  0x00004e20 
+ 00020584  0x000034ae branch  0x00004e20 
+ 00020585  0x000034b1 branch  0x00004e20 
+ 00020586  0x000034b3 force  0x00000000 , 0x00000012 
+ 00020587  0x000034b4 call  0x000052d0 
+ 00020588  0x000034b5 setarg  0x00000001 
+ 00020589  0x000034b6 istore  0x00000001 , 0x00000005 
+ 00020590  0x000034b7 copy  0x00000007 , 0x0000003f 
+ 00020591  0x000034b8 istore  0x00000001 , 0x00000005 
+ 00020592  0x000034b9 setarg  0x00000002 
+ 00020593  0x000034ba istore  0x00000002 , 0x00000005 
+ 00020594  0x000034bb setarg  0x00000000 
+ 00020595  0x000034bc istore  0x00000002 , 0x00000005 
+ 00020596  0x000034bd increase  0x00000006 , 0x00000012 
+ 00020597  0x000034be arg  0x00000004 , 0x00000013 
+ 00020598  0x000034bf branch  0x00004e20 
+ 00020599  0x000034c4 setarg  0x00000000 
+ 00020600  0x000034c5 store  0x00000002 , 0x000002e2 
+ 00020601  0x000034c6 store  0x00000002 , 0x000042b3 
+ 00020602  0x000034c7 jam  0x00000000 , 0x000042ba 
+ 00020603  0x000034c8 rtn 
+ 00020604  0x000034ca setarg  0x00000000 
+ 00020605  0x000034cb store  0x00000002 , 0x000002dc 
+ 00020606  0x000034cc store  0x00000002 , 0x000042b1 
+ 00020607  0x000034cd jam  0x00000000 , 0x000042b9 
+ 00020608  0x000034ce rtn 
+ 00020609  0x000034d0 setarg  0x00000000 
+ 00020610  0x000034d1 store  0x00000002 , 0x000042b5 
+ 00020611  0x000034d2 jam  0x00000000 , 0x000042bb 
+ 00020612  0x000034d3 fetch  0x00000001 , 0x000042bc 
+ 00020613  0x000034d4 beq  0x00000000 , 0x0000508d 
+ 00020614  0x000034d5 rtn 
+ 00020615  0x000034d8 setarg  0x00000000 
+ 00020616  0x000034d9 store  0x00000002 , 0x000042b7 
+ 00020617  0x000034da jam  0x00000000 , 0x000042bc 
+ 00020618  0x000034db fetch  0x00000001 , 0x000042bb 
+ 00020619  0x000034dc beq  0x00000000 , 0x0000508d 
+ 00020620  0x000034dd rtn 
+ 00020621  0x000034e0 jam  0x00000007 , 0x00000b7d 
+ 00020622  0x000034e1 branch  0x00007c27 
+ 00020623  0x000034e4 fetch  0x00000001 , 0x000002e6 
+ 00020624  0x000034e5 set0  0x00000000 , 0x0000003f 
+ 00020625  0x000034e6 store  0x00000001 , 0x000002e6 
+ 00020626  0x000034e7 fetch  0x00000002 , 0x000042b7 
+ 00020627  0x000034e8 rtn  0x00000034 
+ 00020628  0x000034e9 call  0x000052c4 
+ 00020629  0x000034ea fetch  0x00000002 , 0x000042b7 
+ 00020630  0x000034eb copy  0x0000003f , 0x00000011 
+ 00020631  0x000034ec force  0x00000053 , 0x00000012 
+ 00020632  0x000034ed branch  0x000050a2 
+ 00020633  0x000034ef fetch  0x00000001 , 0x000002e6 
+ 00020634  0x000034f0 set0  0x00000007 , 0x0000003f 
+ 00020635  0x000034f1 store  0x00000001 , 0x000002e6 
+ 00020636  0x000034f2 fetch  0x00000002 , 0x000042b5 
+ 00020637  0x000034f3 rtn  0x00000034 
+ 00020638  0x000034f4 call  0x000052c4 
+ 00020639  0x000034f5 fetch  0x00000002 , 0x000042b5 
+ 00020640  0x000034f6 copy  0x0000003f , 0x00000011 
+ 00020641  0x000034f7 force  0x00000052 , 0x00000012 
+ 00020642  0x000034f9 call  0x00005242 
+ 00020643  0x000034fa call  0x000052d0 
+ 00020644  0x000034fb force  0x00000006 , 0x0000003f 
+ 00020645  0x000034fc istore  0x00000001 , 0x00000005 
+ 00020646  0x000034fd fetch  0x00000001 , 0x000042be 
+ 00020647  0x000034fe istore  0x00000001 , 0x00000005 
+ 00020648  0x000034ff setarg  0x00000004 
+ 00020649  0x00003500 istore  0x00000002 , 0x00000005 
+ 00020650  0x00003501 copy  0x00000011 , 0x0000003f 
+ 00020651  0x00003502 istore  0x00000002 , 0x00000005 
+ 00020652  0x00003503 copy  0x00000012 , 0x0000003f 
+ 00020653  0x00003504 istore  0x00000002 , 0x00000005 
+ 00020654  0x00003505 force  0x00000008 , 0x00000002 
+ 00020655  0x00003506 branch  0x000050e9 
+ 00020656  0x00003509 set1  0x00000025 , 0x00000000 
+ 00020657  0x0000350a bpatch  0x0000001f , 0x00004023 
+ 00020658  0x0000350b call  0x00005242 
+ 00020659  0x0000350c call  0x000052d0 
+ 00020660  0x0000350d setarg  0x00000002 
+ 00020661  0x0000350e istore  0x00000001 , 0x00000005 
+ 00020662  0x0000350f fetch  0x00000001 , 0x000042be 
+ 00020663  0x00003510 istore  0x00000001 , 0x00000005 
+ 00020664  0x00003511 setarg  0x00000004 
+ 00020665  0x00003512 istore  0x00000002 , 0x00000005 
+ 00020666  0x00003513 copy  0x00000002 , 0x0000003f 
+ 00020667  0x00003514 istore  0x00000002 , 0x00000005 
+ 00020668  0x00003515 copy  0x0000000b , 0x0000003f 
+ 00020669  0x00003516 istore  0x00000002 , 0x00000005 
+ 00020670  0x00003517 arg  0x00000008 , 0x00000002 
+ 00020671  0x00003518 branch  0x000050e9 
+ 00020672  0x0000351a set1  0x00000025 , 0x00000000 
+ 00020673  0x0000351b bpatch  0x00000020 , 0x00004024 
+ 00020674  0x0000351c call  0x00005242 
+ 00020675  0x0000351d call  0x000052d0 
+ 00020676  0x0000351e setarg  0x00000004 
+ 00020677  0x0000351f istore  0x00000001 , 0x00000005 
+ 00020678  0x00003520 fetch  0x00000001 , 0x000042be 
+ 00020679  0x00003521 istore  0x00000001 , 0x00000005 
+ 00020680  0x00003522 setarg  0x00000008 
+ 00020681  0x00003523 istore  0x00000002 , 0x00000005 
+ 00020682  0x00003525 copy  0x00000002 , 0x0000003f 
+ 00020683  0x00003527 istore  0x00000002 , 0x00000005 
+ 00020684  0x00003528 setarg  0x00000000 
+ 00020685  0x00003529 istore  0x00000002 , 0x00000005 
+ 00020686  0x0000352a setarg  0x00000001 
+ 00020687  0x0000352b istore  0x00000001 , 0x00000005 
+ 00020688  0x0000352c setarg  0x00000002 
+ 00020689  0x0000352d istore  0x00000001 , 0x00000005 
+ 00020690  0x0000352e setarg  0x000003e3 
+ 00020691  0x0000352f istore  0x00000002 , 0x00000005 
+ 00020692  0x00003530 arg  0x0000000c , 0x00000002 
+ 00020693  0x00003531 branch  0x000050e9 
+ 00020694  0x00003533 set1  0x00000025 , 0x00000000 
+ 00020695  0x00003534 bpatch  0x00000021 , 0x00004024 
+ 00020696  0x00003535 call  0x00005242 
+ 00020697  0x00003536 call  0x000052d0 
+ 00020698  0x00003537 setarg  0x00000006 
+ 00020699  0x00003538 istore  0x00000001 , 0x00000005 
+ 00020700  0x00003539 fetch  0x00000001 , 0x000042be 
+ 00020701  0x0000353a increase  0x00000001 , 0x0000003f 
+ 00020702  0x0000353b copy  0x00000005 , 0x00000011 
+ 00020703  0x0000353c store  0x00000001 , 0x000042be 
+ 00020704  0x0000353d copy  0x00000011 , 0x00000005 
+ 00020705  0x0000353e istore  0x00000001 , 0x00000005 
+ 00020706  0x0000353f setarg  0x00000004 
+ 00020707  0x00003540 istore  0x00000002 , 0x00000005 
+ 00020708  0x00003541 copy  0x00000002 , 0x0000003f 
+ 00020709  0x00003542 istore  0x00000002 , 0x00000005 
+ 00020710  0x00003543 copy  0x0000000b , 0x0000003f 
+ 00020711  0x00003544 istore  0x00000002 , 0x00000005 
+ 00020712  0x00003545 arg  0x00000008 , 0x00000002 
+ 00020713  0x00003549 storet  0x00000002 , 0x000002d6 
+ 00020714  0x0000354a copy  0x00000002 , 0x0000003f 
+ 00020715  0x0000354b branch  0x0000526f , 0x00000034 
+ 00020716  0x0000354c call  0x000052ce 
+ 00020717  0x0000354d fetch  0x00000002 , 0x000002d6 
+ 00020718  0x0000354e istore  0x00000002 , 0x00000005 
+ 00020719  0x0000354f force  0x00000001 , 0x0000003f 
+ 00020720  0x00003550 istore  0x00000002 , 0x00000005 
+ 00020721  0x00003551 rtn 
+ 00020722  0x00003554 fetch  0x00000002 , 0x000002dc 
+ 00020723  0x00003555 branch  0x00003bf1 , 0x00000034 
+ 00020724  0x00003556 call  0x000052dc 
+ 00020725  0x00003557 fetch  0x00000002 , 0x000002dc 
+ 00020726  0x00003558 istore  0x00000002 , 0x00000005 
+ 00020727  0x00003559 fetch  0x00000002 , 0x000042b1 
+ 00020728  0x0000355a istore  0x00000002 , 0x00000005 
+ 00020729  0x0000355b rtn 
+ 00020730  0x0000355d set1  0x00000025 , 0x00000000 
+ 00020731  0x0000355e bpatch  0x00000022 , 0x00004024 
+ 00020732  0x0000355f fetch  0x00000002 , 0x000002cd 
+ 00020733  0x00003560 branch  0x00004dfc , 0x00000034 
+ 00020734  0x00003561 fetch  0x00000001 , 0x000002cf 
+ 00020735  0x00003562 beq  0x00000001 , 0x00005105 
+ 00020736  0x00003563 beq  0x00000050 , 0x00004de7 
+ 00020737  0x00003564 beq  0x00000051 , 0x00004df4 
+ 00020738  0x00003565 beq  0x00000052 , 0x00004df2 
+ 00020739  0x00003566 beq  0x00000053 , 0x00004df2 
+ 00020740  0x00003567 branch  0x00004dfc 
+ 00020741  0x0000356a set1  0x00000025 , 0x00000000 
+ 00020742  0x0000356b bpatch  0x00000023 , 0x00004024 
+ 00020743  0x0000356c call  0x000052c4 
+ 00020744  0x0000356d force  0x00000000 , 0x00000012 
+ 00020745  0x0000356e call  0x000052d0 
+ 00020746  0x0000356f copy  0x0000003f , 0x00000005 
+ 00020747  0x00003570 fetch  0x00000002 , 0x000002cd 
+ 00020748  0x00003571 copy  0x0000003f , 0x00000013 
+ 00020749  0x00003572 fetch  0x00000002 , 0x000002cb 
+ 00020750  0x00003573 iforce  0x00000006 
+ 00020751  0x00003575 call  0x00005115 
+ 00020752  0x00003576 increase  0xfffffffc , 0x00000013 
+ 00020753  0x00003577 nbranch  0x0000510f , 0x00000005 
+ 00020754  0x00003578 copy  0x00000012 , 0x00000002 
+ 00020755  0x00003579 call  0x000050e9 
+ 00020756  0x0000357a branch  0x00004dfc 
+ 00020757  0x0000357d ifetch  0x00000001 , 0x00000006 
+ 00020758  0x0000357e beq  0x00000002 , 0x00005120 
+ 00020759  0x0000357f beq  0x00000001 , 0x00005123 
+ 00020760  0x00003580 beq  0x00000003 , 0x0000512d 
+ 00020761  0x00003581 beq  0x00000005 , 0x00005168 
+ 00020762  0x00003582 beq  0x00000004 , 0x00005199 
+ 00020763  0x00003583 beq  0x00000007 , 0x0000521c 
+ 00020764  0x00003584 beq  0x00000006 , 0x000051eb 
+ 00020765  0x00003585 beq  0x00000008 , 0x00005058 
+ 00020766  0x00003586 beq  0x0000000a , 0x00004e3a 
+ 00020767  0x00003587 branch  0x00005236 
+ 00020768  0x0000358a call  0x00007e1c 
+ 00020769  0x0000358c call  0x00007e21 
+ 00020770  0x0000358d branch  0x00004e5c 
+ 00020771  0x0000358f ifetch  0x00000001 , 0x00000006 
+ 00020772  0x00003590 copy  0x0000003f , 0x00000007 
+ 00020773  0x00003591 ifetch  0x00000002 , 0x00000006 
+ 00020774  0x00003592 copy  0x0000003f , 0x00000011 
+ 00020775  0x00003593 copy  0x00000013 , 0x0000003f 
+ 00020776  0x00003594 isub  0x00000011 , 0x00000013 
+ 00020777  0x00003596 ifetch  0x00000001 , 0x00000006 
+ 00020778  0x00003597 increase  0xffffffff , 0x00000011 
+ 00020779  0x00003598 nbranch  0x00005129 , 0x00000005 
+ 00020780  0x00003599 rtn 
+ 00020781  0x0000359b ifetch  0x00000001 , 0x00000006 
+ 00020782  0x0000359c copy  0x0000003f , 0x00000007 
+ 00020783  0x0000359d ifetch  0x00000002 , 0x00000006 
+ 00020784  0x0000359e copy  0x0000003f , 0x00000011 
+ 00020785  0x0000359f ifetch  0x00000002 , 0x00000006 
+ 00020786  0x000035a0 copy  0x0000003f , 0x0000000b 
+ 00020787  0x000035a1 ifetch  0x00000002 , 0x00000006 
+ 00020788  0x000035a2 copy  0x0000003f , 0x00000002 
+ 00020789  0x000035a3 ifetch  0x00000002 , 0x00000006 
+ 00020790  0x000035a4 sub  0x0000003f , 0x00000000 , 0x0000003e 
+ 00020791  0x000035a5 branch  0x0000513f , 0x00000005 
+ 00020792  0x000035a6 beq  0x00000002 , 0x0000513b 
+ 00020793  0x000035a7 beq  0x00000004 , 0x0000513b 
+ 00020794  0x000035a8 branch  0x0000513d 
+ 00020795  0x000035aa jam  0x00000016 , 0x00000b7d 
+ 00020796  0x000035ab call  0x00007c27 
+ 00020797  0x000035ad ifetch  0x00000002 , 0x00000006 
+ 00020798  0x000035ae branch  0x00005165 
+ 00020799  0x000035b0 call  0x00007e1c 
+ 00020800  0x000035b4 setarg  0x00000050 
+ 00020801  0x000035b5 isub  0x00000002 , 0x0000003e 
+ 00020802  0x000035b6 branch  0x0000514d , 0x00000005 
+ 00020803  0x000035b7 setarg  0x00000051 
+ 00020804  0x000035b8 isub  0x00000002 , 0x0000003e 
+ 00020805  0x000035b9 branch  0x00005153 , 0x00000005 
+ 00020806  0x000035ba setarg  0x00000053 
+ 00020807  0x000035bb isub  0x00000002 , 0x0000003e 
+ 00020808  0x000035bc branch  0x0000515f , 0x00000005 
+ 00020809  0x000035bd setarg  0x00000052 
+ 00020810  0x000035be isub  0x00000002 , 0x0000003e 
+ 00020811  0x000035bf branch  0x00005159 , 0x00000005 
+ 00020812  0x000035c0 branch  0x00005165 
+ 00020813  0x000035c2 copy  0x0000000b , 0x0000003f 
+ 00020814  0x000035c3 store  0x00000002 , 0x000042b1 
+ 00020815  0x000035c4 fetch  0x00000001 , 0x000042b9 
+ 00020816  0x000035c5 set1  0x00000001 
+ 00020817  0x000035c6 store  0x00000001 , 0x000042b9 
+ 00020818  0x000035c7 branch  0x00005164 
+ 00020819  0x000035c9 copy  0x0000000b , 0x0000003f 
+ 00020820  0x000035ca store  0x00000002 , 0x000042b3 
+ 00020821  0x000035cb fetch  0x00000001 , 0x000042ba 
+ 00020822  0x000035cc set1  0x00000001 
+ 00020823  0x000035cd store  0x00000001 , 0x000042ba 
+ 00020824  0x000035ce branch  0x00005164 
+ 00020825  0x000035d0 copy  0x0000000b , 0x0000003f 
+ 00020826  0x000035d1 store  0x00000002 , 0x000042b5 
+ 00020827  0x000035d2 fetch  0x00000001 , 0x000042bb 
+ 00020828  0x000035d3 set1  0x00000001 
+ 00020829  0x000035d4 store  0x00000001 , 0x000042bb 
+ 00020830  0x000035d5 branch  0x00005164 
+ 00020831  0x000035d7 copy  0x0000000b , 0x0000003f 
+ 00020832  0x000035d8 store  0x00000002 , 0x000042b7 
+ 00020833  0x000035d9 fetch  0x00000001 , 0x000042bc 
+ 00020834  0x000035da set1  0x00000001 
+ 00020835  0x000035db store  0x00000001 , 0x000042bc 
+ 00020836  0x000035df call  0x00007e21 
+ 00020837  0x000035e1 copy  0x00000013 , 0x0000003f 
+ 00020838  0x000035e2 isub  0x00000011 , 0x00000013 
+ 00020839  0x000035e3 rtn 
+ 00020840  0x000035e6 ifetch  0x00000001 , 0x00000006 
+ 00020841  0x000035e7 copy  0x0000003f , 0x00000007 
+ 00020842  0x000035e8 ifetch  0x00000002 , 0x00000006 
+ 00020843  0x000035e9 copy  0x0000003f , 0x00000011 
+ 00020844  0x000035ea copy  0x00000013 , 0x0000003f 
+ 00020845  0x000035eb isub  0x00000011 , 0x00000013 
+ 00020846  0x000035ec ifetch  0x00000002 , 0x00000006 
+ 00020847  0x000035ed copy  0x0000003f , 0x0000000b 
+ 00020848  0x000035ee ifetch  0x00000002 , 0x00000006 
+ 00020849  0x000035ef ifetch  0x00000002 , 0x00000006 
+ 00020850  0x000035f0 nbranch  0x00005193 , 0x00000034 
+ 00020851  0x000035f1 call  0x00007e1c 
+ 00020852  0x000035f5 copy  0x0000000b , 0x00000002 
+ 00020853  0x000035f6 setarg  0x00000050 
+ 00020854  0x000035f7 isub  0x00000002 , 0x0000003e 
+ 00020855  0x000035f8 branch  0x00005181 , 0x00000005 
+ 00020856  0x000035f9 setarg  0x00000051 
+ 00020857  0x000035fa isub  0x00000002 , 0x0000003e 
+ 00020858  0x000035fb branch  0x00005185 , 0x00000005 
+ 00020859  0x000035fc setarg  0x00000052 
+ 00020860  0x000035fd isub  0x00000002 , 0x0000003e 
+ 00020861  0x000035fe branch  0x00005189 , 0x00000005 
+ 00020862  0x000035ff setarg  0x00000053 
+ 00020863  0x00003600 isub  0x00000002 , 0x0000003e 
+ 00020864  0x00003601 branch  0x0000518d , 0x00000005 
+ 00020865  0x00003603 fetch  0x00000001 , 0x000042b9 
+ 00020866  0x00003604 set1  0x00000005 
+ 00020867  0x00003605 store  0x00000001 , 0x000042b9 
+ 00020868  0x00003606 rtn 
+ 00020869  0x00003608 fetch  0x00000001 , 0x000042ba 
+ 00020870  0x00003609 set1  0x00000005 
+ 00020871  0x0000360a store  0x00000001 , 0x000042ba 
+ 00020872  0x0000360b rtn 
+ 00020873  0x0000360d fetch  0x00000001 , 0x000042bb 
+ 00020874  0x0000360e set1  0x00000005 
+ 00020875  0x0000360f store  0x00000001 , 0x000042bb 
+ 00020876  0x00003610 rtn 
+ 00020877  0x00003612 fetch  0x00000001 , 0x000042bc 
+ 00020878  0x00003613 set1  0x00000005 
+ 00020879  0x00003614 store  0x00000001 , 0x000042bc 
+ 00020880  0x00003615 jam  0x00000006 , 0x00000b7d 
+ 00020881  0x00003616 branch  0x00007c27 
+ 00020882  0x0000361a call  0x00007e21 
+ 00020883  0x0000361c increase  0xfffffffa , 0x00000011 
+ 00020884  0x0000361e branch  0x00005198 , 0x00000005 
+ 00020885  0x0000361f increase  0x00000001 , 0x00000006 
+ 00020886  0x00003620 increase  0xffffffff , 0x00000011 
+ 00020887  0x00003621 branch  0x00005194 
+ 00020888  0x00003623 rtn 
+ 00020889  0x00003625 ifetch  0x00000001 , 0x00000006 
+ 00020890  0x00003626 copy  0x0000003f , 0x00000007 
+ 00020891  0x00003627 ifetch  0x00000002 , 0x00000006 
+ 00020892  0x00003628 copy  0x0000003f , 0x00000011 
+ 00020893  0x00003629 copy  0x00000013 , 0x0000003f 
+ 00020894  0x0000362a isub  0x00000011 , 0x00000013 
+ 00020895  0x0000362b ifetch  0x00000002 , 0x00000006 
+ 00020896  0x0000362c increase  0x00000002 , 0x00000006 
+ 00020897  0x0000362d copy  0x0000003f , 0x00000002 
+ 00020898  0x0000362e setarg  0x00000005 
+ 00020899  0x0000362f istore  0x00000001 , 0x00000005 
+ 00020900  0x00003630 copy  0x00000007 , 0x0000003f 
+ 00020901  0x00003631 istore  0x00000001 , 0x00000005 
+ 00020902  0x00003632 increase  0x00000002 , 0x00000011 
+ 00020903  0x00003633 copy  0x00000011 , 0x0000003f 
+ 00020904  0x00003634 istore  0x00000002 , 0x00000005 
+ 00020905  0x00003635 call  0x00007e1c 
+ 00020906  0x00003636 setarg  0x00000050 
+ 00020907  0x00003637 isub  0x00000002 , 0x0000003e 
+ 00020908  0x00003638 branch  0x000051b7 , 0x00000005 
+ 00020909  0x00003639 setarg  0x00000051 
+ 00020910  0x0000363a isub  0x00000002 , 0x0000003e 
+ 00020911  0x0000363b branch  0x000051c8 , 0x00000005 
+ 00020912  0x0000363c setarg  0x00000052 
+ 00020913  0x0000363d isub  0x00000002 , 0x0000003e 
+ 00020914  0x0000363e branch  0x000051ce , 0x00000005 
+ 00020915  0x0000363f setarg  0x00000053 
+ 00020916  0x00003640 isub  0x00000002 , 0x0000003e 
+ 00020917  0x00003641 branch  0x000051d4 , 0x00000005 
+ 00020918  0x00003642 branch  0x000051d9 
+ 00020919  0x00003644 fetch  0x00000001 , 0x000042b9 
+ 00020920  0x00003645 set1  0x00000004 , 0x0000003f 
+ 00020921  0x00003646 set1  0x00000003 , 0x0000003f 
+ 00020922  0x00003647 store  0x00000001 , 0x000042b9 
+ 00020923  0x00003648 bbit1  0x00000002 , 0x000051c5 
+ 00020924  0x00003649 fetcht  0x00000001 , 0x000002e6 
+ 00020925  0x0000364a set1  0x00000006 , 0x00000002 
+ 00020926  0x0000364b storet  0x00000001 , 0x000002e6 
+ 00020927  0x0000364c copy  0x00000007 , 0x0000003f 
+ 00020928  0x0000364d increase  0x00000001 , 0x0000003f 
+ 00020929  0x0000364e store  0x00000001 , 0x000002e8 
+ 00020930  0x0000364f fetch  0x00000001 , 0x000042b9 
+ 00020931  0x00003650 set1  0x00000002 , 0x0000003f 
+ 00020932  0x00003651 store  0x00000001 , 0x000042b9 
+ 00020933  0x00003653 fetch  0x00000002 , 0x000042b1 
+ 00020934  0x00003654 store  0x00000002 , 0x000002e9 
+ 00020935  0x00003655 branch  0x000051d9 
+ 00020936  0x00003657 fetch  0x00000001 , 0x000042ba 
+ 00020937  0x00003658 set1  0x00000004 , 0x0000003f 
+ 00020938  0x00003659 set1  0x00000003 , 0x0000003f 
+ 00020939  0x0000365a store  0x00000001 , 0x000042ba 
+ 00020940  0x0000365b fetch  0x00000002 , 0x000042b3 
+ 00020941  0x0000365c branch  0x000051d9 
+ 00020942  0x0000365e fetch  0x00000001 , 0x000042bb 
+ 00020943  0x0000365f set1  0x00000004 , 0x0000003f 
+ 00020944  0x00003660 set1  0x00000003 , 0x0000003f 
+ 00020945  0x00003661 store  0x00000001 , 0x000042bb 
+ 00020946  0x00003662 fetch  0x00000002 , 0x000042b5 
+ 00020947  0x00003663 branch  0x000051d9 
+ 00020948  0x00003665 fetch  0x00000001 , 0x000042bc 
+ 00020949  0x00003666 set1  0x00000004 , 0x0000003f 
+ 00020950  0x00003667 set1  0x00000003 , 0x0000003f 
+ 00020951  0x00003668 store  0x00000001 , 0x000042bc 
+ 00020952  0x00003669 fetch  0x00000002 , 0x000042b7 
+ 00020953  0x0000366d copy  0x0000003f , 0x0000000b 
+ 00020954  0x0000366e call  0x00007e21 
+ 00020955  0x00003670 copy  0x0000000b , 0x0000003f 
+ 00020956  0x00003672 istore  0x00000002 , 0x00000005 
+ 00020957  0x00003673 force  0x00000000 , 0x0000003f 
+ 00020958  0x00003674 istore  0x00000002 , 0x00000005 
+ 00020959  0x00003675 force  0x00000000 , 0x0000003f 
+ 00020960  0x00003676 istore  0x00000002 , 0x00000005 
+ 00020961  0x00003677 force  0x0000000a , 0x0000003f 
+ 00020962  0x00003678 iadd  0x00000012 , 0x00000012 
+ 00020963  0x00003679 increase  0xfffffffa , 0x00000011 
+ 00020964  0x0000367b branch  0x000051ea , 0x00000005 
+ 00020965  0x0000367c ifetch  0x00000001 , 0x00000006 
+ 00020966  0x0000367d istore  0x00000001 , 0x00000005 
+ 00020967  0x0000367e increase  0x00000001 , 0x00000012 
+ 00020968  0x0000367f increase  0xffffffff , 0x00000011 
+ 00020969  0x00003680 branch  0x000051e4 
+ 00020970  0x00003682 rtn 
+ 00020971  0x00003684 ifetch  0x00000001 , 0x00000006 
+ 00020972  0x00003685 copy  0x0000003f , 0x00000007 
+ 00020973  0x00003686 ifetch  0x00000002 , 0x00000006 
+ 00020974  0x00003687 copy  0x0000003f , 0x00000011 
+ 00020975  0x00003688 copy  0x00000013 , 0x0000003f 
+ 00020976  0x00003689 isub  0x00000011 , 0x00000013 
+ 00020977  0x0000368b ifetch  0x00000002 , 0x00000006 
+ 00020978  0x0000368c copy  0x0000003f , 0x00000011 
+ 00020979  0x0000368d ifetch  0x00000002 , 0x00000006 
+ 00020980  0x0000368e copy  0x0000003f , 0x0000000b 
+ 00020981  0x0000368f call  0x00007e1c 
+ 00020982  0x00003690 setarg  0x00000050 
+ 00020983  0x00003691 copy  0x00000011 , 0x00000002 
+ 00020984  0x00003692 isub  0x00000002 , 0x0000003e 
+ 00020985  0x00003693 branch  0x00005203 , 0x00000005 
+ 00020986  0x00003694 setarg  0x00000052 
+ 00020987  0x00003695 copy  0x00000011 , 0x00000002 
+ 00020988  0x00003696 isub  0x00000002 , 0x0000003e 
+ 00020989  0x00003697 branch  0x00005208 , 0x00000005 
+ 00020990  0x00003698 setarg  0x00000053 
+ 00020991  0x00003699 copy  0x00000011 , 0x00000002 
+ 00020992  0x0000369a isub  0x00000002 , 0x0000003e 
+ 00020993  0x0000369b branch  0x0000520a , 0x00000005 
+ 00020994  0x0000369c branch  0x0000520c 
+ 00020995  0x0000369e setarg  0x00000000 
+ 00020996  0x0000369f store  0x00000002 , 0x000002dc 
+ 00020997  0x000036a0 store  0x00000002 , 0x000042b1 
+ 00020998  0x000036a1 store  0x00000001 , 0x000042b9 
+ 00020999  0x000036a2 branch  0x0000520e 
+ 00021000  0x000036a4 call  0x00005081 
+ 00021001  0x000036a5 branch  0x0000520e 
+ 00021002  0x000036a7 call  0x00005087 
+ 00021003  0x000036ad branch  0x0000520e 
+ 00021004  0x000036af setarg  0x00000000 
+ 00021005  0x000036b0 store  0x00000002 , 0x000002e2 
+ 00021006  0x000036b2 call  0x00007e21 
+ 00021007  0x000036b3 setarg  0x00000007 
+ 00021008  0x000036b4 istore  0x00000001 , 0x00000005 
+ 00021009  0x000036b5 copy  0x00000007 , 0x0000003f 
+ 00021010  0x000036b6 istore  0x00000001 , 0x00000005 
+ 00021011  0x000036b7 setarg  0x00000004 
+ 00021012  0x000036b8 istore  0x00000002 , 0x00000005 
+ 00021013  0x000036b9 copy  0x00000011 , 0x0000003f 
+ 00021014  0x000036ba istore  0x00000002 , 0x00000005 
+ 00021015  0x000036bb copy  0x0000000b , 0x0000003f 
+ 00021016  0x000036bc istore  0x00000002 , 0x00000005 
+ 00021017  0x000036bd force  0x00000008 , 0x0000003f 
+ 00021018  0x000036be iadd  0x00000012 , 0x00000012 
+ 00021019  0x000036bf rtn 
+ 00021020  0x000036c2 ifetch  0x00000001 , 0x00000006 
+ 00021021  0x000036c3 copy  0x0000003f , 0x00000007 
+ 00021022  0x000036c4 ifetch  0x00000002 , 0x00000006 
+ 00021023  0x000036c5 copy  0x0000003f , 0x00000011 
+ 00021024  0x000036c6 ifetch  0x00000002 , 0x00000006 
+ 00021025  0x000036c7 copy  0x0000003f , 0x0000000b 
+ 00021026  0x000036c8 ifetch  0x00000002 , 0x00000006 
+ 00021027  0x000036c9 copy  0x0000003f , 0x00000002 
+ 00021028  0x000036ca call  0x00007e1c 
+ 00021029  0x000036cb fetch  0x00000001 , 0x000042be 
+ 00021030  0x000036cc icompare  0x000000ff , 0x00000007 
+ 00021031  0x000036cd nbranch  0x00005232 , 0x00000001 
+ 00021032  0x000036ce setarg  0x00000050 
+ 00021033  0x000036cf isub  0x00000002 , 0x0000003e 
+ 00021034  0x000036d0 branch  0x0000522f , 0x00000005 
+ 00021035  0x000036d1 setarg  0x00000051 
+ 00021036  0x000036d2 isub  0x00000002 , 0x0000003e 
+ 00021037  0x000036d3 branch  0x00005232 , 0x00000005 
+ 00021038  0x000036d4 branch  0x00005232 
+ 00021039  0x000036d6 jam  0x00000000 , 0x000042b1 
+ 00021040  0x000036d7 jam  0x00000000 , 0x000042b9 
+ 00021041  0x000036d8 branch  0x00005232 
+ 00021042  0x000036dd call  0x00007e21 
+ 00021043  0x000036de copy  0x00000013 , 0x0000003f 
+ 00021044  0x000036df isub  0x00000011 , 0x00000013 
+ 00021045  0x000036e0 rtn 
+ 00021046  0x000036e3 setarg  0x00000001 
+ 00021047  0x000036e4 istore  0x00000001 , 0x00000005 
+ 00021048  0x000036e5 ifetch  0x00000001 , 0x00000006 
+ 00021049  0x000036e6 istore  0x00000001 , 0x00000005 
+ 00021050  0x000036e7 setarg  0x00000002 
+ 00021051  0x000036e8 istore  0x00000002 , 0x00000005 
+ 00021052  0x000036e9 setarg  0x00000000 
+ 00021053  0x000036ea istore  0x00000002 , 0x00000005 
+ 00021054  0x000036eb setarg  0x00000006 
+ 00021055  0x000036ec iadd  0x00000012 , 0x00000012 
+ 00021056  0x000036ed force  0x00000004 , 0x00000013 
+ 00021057  0x000036ee rtn 
+ 00021058  0x000036f2 fetch  0x00000001 , 0x000042be 
+ 00021059  0x000036f3 increase  0x00000001 , 0x0000003f 
+ 00021060  0x000036f4 bne  0x00000000 , 0x00005246 
+ 00021061  0x000036f5 increase  0x00000001 , 0x0000003f 
+ 00021062  0x000036f7 store  0x00000001 , 0x000042be 
+ 00021063  0x000036f8 rtn 
+ 00021064  0x00003703 set1  0x00000025 , 0x00000000 
+ 00021065  0x00003704 bpatch  0x00000024 , 0x00004024 
+ 00021066  0x00003705 arg  0x00000000 , 0x00000012 
+ 00021067  0x00003706 call  0x0000527a 
+ 00021068  0x00003707 nbranch  0x00003bf1 , 0x00000034 
+ 00021069  0x00003708 call  0x00005287 
+ 00021070  0x00003709 arg  0x00001800 , 0x00000012 
+ 00021071  0x0000370a arg  0x00000000 , 0x00000007 
+ 00021072  0x0000370c fetcht  0x00000001 , 0x000042bf 
+ 00021073  0x0000370d qisolate1  0x00000002 
+ 00021074  0x0000370e branch  0x00005258 , 0x00000001 
+ 00021075  0x0000370f call  0x000052ab 
+ 00021076  0x00003710 sub  0x0000000b , 0x00000000 , 0x0000003e 
+ 00021077  0x00003711 branch  0x00005258 , 0x00000002 
+ 00021078  0x00003712 call  0x00005292 
+ 00021079  0x00003713 branch  0x0000525e 
+ 00021080  0x00003715 increase  0x00000080 , 0x00000012 
+ 00021081  0x00003716 increase  0x00000001 , 0x00000007 
+ 00021082  0x00003717 setarg  0x00000008 
+ 00021083  0x00003718 isub  0x00000007 , 0x0000003e 
+ 00021084  0x00003719 branch  0x00005250 , 0x00000002 
+ 00021085  0x0000371a arg  0x00000000 , 0x00000012 
+ 00021086  0x0000371c copy  0x00000012 , 0x0000003f 
+ 00021087  0x0000371d branch  0x00003bf1 , 0x00000034 
+ 00021088  0x0000371e rtn 
+ 00021089  0x00003727 set1  0x00000025 , 0x00000000 
+ 00021090  0x00003728 bpatch  0x00000025 , 0x00004024 
+ 00021091  0x00003729 call  0x00005280 
+ 00021092  0x0000372a increase  0x00000001 , 0x00000006 
+ 00021093  0x0000372b ifetch  0x00000002 , 0x00000006 
+ 00021094  0x0000372c rtn 
+ 00021095  0x00003733 set1  0x00000025 , 0x00000000 
+ 00021096  0x00003734 bpatch  0x00000026 , 0x00004024 
+ 00021097  0x00003735 call  0x00005280 
+ 00021098  0x00003736 copy  0x00000006 , 0x00000005 
+ 00021099  0x00003737 copy  0x00000006 , 0x00000002 
+ 00021100  0x00003738 setarg  0x00000000 
+ 00021101  0x00003739 istore  0x00000003 , 0x00000005 
+ 00021102  0x0000373a rtn 
+ 00021103  0x00003740 set1  0x00000025 , 0x00000000 
+ 00021104  0x00003741 bpatch  0x00000027 , 0x00004024 
+ 00021105  0x00003742 call  0x0000527e 
+ 00021106  0x00003743 branch  0x00003bf1 , 0x00000034 
+ 00021107  0x00003744 fetch  0x00000003 , 0x000042c6 
+ 00021108  0x00003745 store  0x00000003 , 0x000042c9 
+ 00021109  0x00003746 fetch  0x00000003 , 0x000042c3 
+ 00021110  0x00003747 store  0x00000003 , 0x000042c6 
+ 00021111  0x00003748 fetch  0x00000003 , 0x000042c0 
+ 00021112  0x00003749 store  0x00000003 , 0x000042c3 
+ 00021113  0x0000374a rtn 
+ 00021114  0x00003751 fetch  0x00000003 , 0x000042c0 
+ 00021115  0x00003752 rtn 
+ 00021116  0x00003759 fetch  0x00000003 , 0x000042c3 
+ 00021117  0x0000375a rtn 
+ 00021118  0x00003761 fetch  0x00000003 , 0x000042c9 
+ 00021119  0x00003762 rtn 
+ 00021120  0x00003768 call  0x0000527e 
+ 00021121  0x00003769 branch  0x00003bf1 , 0x00000034 
+ 00021122  0x0000376a arg  0x000042c0 , 0x00000006 
+ 00021123  0x0000376c ifetch  0x00000003 , 0x00000006 
+ 00021124  0x0000376d branch  0x00005283 , 0x00000034 
+ 00021125  0x0000376e increase  0xfffffffd , 0x00000006 
+ 00021126  0x0000376f rtn 
+ 00021127  0x00003777 set1  0x00000025 , 0x00000000 
+ 00021128  0x00003778 bpatch  0x00000028 , 0x00004025 
+ 00021129  0x00003779 arg  0x00000004 , 0x00000039 
+ 00021130  0x0000377a arg  0x000042c0 , 0x00000006 
+ 00021131  0x0000377b arg  0x00000000 , 0x00000002 
+ 00021132  0x0000377d ifetch  0x00000003 , 0x00000006 
+ 00021133  0x0000377e and  0x0000003f , 0x000000ff , 0x0000003f 
+ 00021134  0x0000377f ior  0x00000002 , 0x00000002 
+ 00021135  0x00003780 loop  0x0000528c 
+ 00021136  0x00003781 storet  0x00000001 , 0x000042bf 
+ 00021137  0x00003782 rtn 
+ 00021138  0x0000378b set1  0x00000025 , 0x00000000 
+ 00021139  0x0000378c bpatch  0x00000029 , 0x00004025 
+ 00021140  0x0000378d call  0x0000527a 
+ 00021141  0x0000378e nbranch  0x00003bf1 , 0x00000034 
+ 00021142  0x0000378f call  0x0000527e 
+ 00021143  0x00003790 branch  0x000052a0 , 0x00000034 
+ 00021144  0x00003791 fetch  0x00000003 , 0x000042c3 
+ 00021145  0x00003792 store  0x00000003 , 0x000042c0 
+ 00021146  0x00003793 ifetch  0x00000003 , 0x00000006 
+ 00021147  0x00003794 istore  0x00000003 , 0x00000005 
+ 00021148  0x00003795 ifetch  0x00000003 , 0x00000006 
+ 00021149  0x00003796 istore  0x00000003 , 0x00000005 
+ 00021150  0x00003797 setarg  0x00000000 
+ 00021151  0x00003798 istore  0x00000003 , 0x00000005 
+ 00021152  0x0000379a arg  0x00000000 , 0x00000002 
+ 00021153  0x0000379b copy  0x0000000b , 0x0000003f 
+ 00021154  0x0000379c iadd  0x00000007 , 0x0000003f 
+ 00021155  0x0000379e qset1  0x00000002 
+ 00021156  0x0000379f increase  0x00000001 , 0x00000007 
+ 00021157  0x000037a0 isub  0x00000007 , 0x0000003e 
+ 00021158  0x000037a1 nbranch  0x000052a3 , 0x00000005 
+ 00021159  0x000037a3 lshift8  0x00000012 , 0x0000003f 
+ 00021160  0x000037a4 ior  0x00000002 , 0x0000003f 
+ 00021161  0x000037a5 store  0x00000003 , 0x000042c9 
+ 00021162  0x000037a6 rtn 
+ 00021163  0x000037b1 set1  0x00000025 , 0x00000000 
+ 00021164  0x000037b2 bpatch  0x0000002a , 0x00004025 
+ 00021165  0x000037b3 call  0x00005287 
+ 00021166  0x000037b4 copy  0x00000007 , 0x00000013 
+ 00021167  0x000037b5 arg  0x00000000 , 0x00000002 
+ 00021168  0x000037b6 arg  0x00000000 , 0x0000000b 
+ 00021169  0x000037b9 copy  0x00000007 , 0x0000003f 
+ 00021170  0x000037ba beq  0x00000008 , 0x000052bc 
+ 00021171  0x000037bb fetch  0x00000001 , 0x000042bf 
+ 00021172  0x000037bc qisolate1  0x0000003f 
+ 00021173  0x000037bd branch  0x000052bc , 0x00000001 
+ 00021174  0x000037be increase  0x00000080 , 0x00000002 
+ 00021175  0x000037bf increase  0x00000001 , 0x00000007 
+ 00021176  0x000037c0 copy  0x00000011 , 0x0000003f 
+ 00021177  0x000037c1 isub  0x00000002 , 0x0000003e 
+ 00021178  0x000037c2 branch  0x000052bc , 0x00000005 
+ 00021179  0x000037c3 branch  0x000052b1 , 0x00000002 
+ 00021180  0x000037c5 copy  0x00000002 , 0x0000003f 
+ 00021181  0x000037c6 isub  0x00000011 , 0x0000003e 
+ 00021182  0x000037c7 nbranch  0x000052c2 , 0x00000002 
+ 00021183  0x000037c8 copy  0x00000007 , 0x0000003f 
+ 00021184  0x000037c9 copy  0x00000013 , 0x00000002 
+ 00021185  0x000037ca isub  0x00000002 , 0x0000000b 
+ 00021186  0x000037cc copy  0x00000013 , 0x00000007 
+ 00021187  0x000037cd rtn 
+ 00021188  0x000037d1 set1  0x00000025 , 0x00000000 
+ 00021189  0x000037d2 bpatch  0x0000002b , 0x00004025 
+ 00021190  0x000037d3 arg  0x0000007f , 0x00000011 
+ 00021191  0x000037d4 call  0x00005248 
+ 00021192  0x000037d5 store  0x00000002 , 0x000002d2 
+ 00021193  0x000037d6 increase  0x00000004 , 0x0000003f 
+ 00021194  0x000037d7 store  0x00000002 , 0x000002d4 
+ 00021195  0x000037d8 setarg  0x00000000 
+ 00021196  0x000037d9 store  0x00000002 , 0x000002d6 
+ 00021197  0x000037da rtn 
+ 00021198  0x000037dd fetch  0x00000002 , 0x000002d2 
+ 00021199  0x000037de branch  0x000052f2 
+ 00021200  0x000037e1 fetch  0x00000002 , 0x000002d4 
+ 00021201  0x000037e2 branch  0x000052f2 
+ 00021202  0x000037e6 set1  0x00000025 , 0x00000000 
+ 00021203  0x000037e7 bpatch  0x0000002c , 0x00004025 
+ 00021204  0x000037e8 arg  0x000002ff , 0x00000011 
+ 00021205  0x000037e9 call  0x00005248 
+ 00021206  0x000037ea store  0x00000002 , 0x000002d8 
+ 00021207  0x000037eb increase  0x00000004 , 0x0000003f 
+ 00021208  0x000037ec store  0x00000002 , 0x000002da 
+ 00021209  0x000037ed setarg  0x00000000 
+ 00021210  0x000037ee store  0x00000002 , 0x000002dc 
+ 00021211  0x000037ef rtn 
+ 00021212  0x000037f2 fetch  0x00000002 , 0x000002d8 
+ 00021213  0x000037f3 branch  0x000052f2 
+ 00021214  0x000037f6 fetch  0x00000002 , 0x000002da 
+ 00021215  0x000037f7 branch  0x000052f2 
+ 00021216  0x000037fb set1  0x00000025 , 0x00000000 
+ 00021217  0x000037fc bpatch  0x0000002d , 0x00004025 
+ 00021218  0x000037fd call  0x00007e00 
+ 00021219  0x000037fe jam  0x00000001 , 0x000002eb 
+ 00021220  0x000037ff call  0x0000527a 
+ 00021221  0x00003800 nrtn  0x00000034 
+ 00021222  0x00003801 arg  0x0000007f , 0x00000011 
+ 00021223  0x00003802 call  0x00005248 
+ 00021224  0x00003803 store  0x00000002 , 0x000002de 
+ 00021225  0x00003804 increase  0x00000004 , 0x0000003f 
+ 00021226  0x00003805 store  0x00000002 , 0x000002e0 
+ 00021227  0x00003806 setarg  0x00000000 
+ 00021228  0x00003807 store  0x00000002 , 0x000002e2 
+ 00021229  0x00003808 jam  0x00000000 , 0x000002eb 
+ 00021230  0x00003809 branch  0x00007e0e 
+ 00021231  0x0000380c fetch  0x00000002 , 0x000002de 
+ 00021232  0x0000380d branch  0x000052f2 
+ 00021233  0x00003810 fetch  0x00000002 , 0x000002e0 
+ 00021234  0x00003813 branch  0x00003bf1 , 0x00000034 
+ 00021235  0x00003814 copy  0x0000003f , 0x00000005 
+ 00021236  0x00003815 rtn 
+ 00021237  0x00003819 set1  0x00000025 , 0x00000000 
+ 00021238  0x0000381a bpatch  0x0000002e , 0x00004025 
+ 00021239  0x0000381b arg  0x00000000 , 0x00000012 
+ 00021240  0x0000381c arg  0x000042c0 , 0x00000011 
+ 00021241  0x0000381d increase  0xfffffffe , 0x00000011 
+ 00021242  0x0000381f increase  0x00000002 , 0x00000011 
+ 00021243  0x00003820 setarg  0x000042cc 
+ 00021244  0x00003821 isub  0x00000011 , 0x0000003e 
+ 00021245  0x00003822 branch  0x00005306 , 0x00000005 
+ 00021246  0x00003823 ifetch  0x00000001 , 0x00000011 
+ 00021247  0x00003824 increase  0x00000001 , 0x00000011 
+ 00021248  0x00003825 branch  0x000052fa , 0x00000034 
+ 00021249  0x00003826 ifetcht  0x00000002 , 0x00000011 
+ 00021250  0x00003827 ifetch  0x00000002 , 0x00000002 
+ 00021251  0x00003828 iadd  0x00000012 , 0x00000012 
+ 00021252  0x00003829 increase  0x00000004 , 0x00000012 
+ 00021253  0x0000382a branch  0x000052fa 
+ 00021254  0x0000382c copy  0x00000012 , 0x0000003f 
+ 00021255  0x0000382d rtn 
+ 00021256  0x00003831 arg  0x0000000c , 0x00000007 
+ 00021257  0x00003832 branch  0x00003dc2 
+ 00021258  0x00003835 arg  0x0000000c , 0x00000007 
+ 00021259  0x00003836 branch  0x00003dc6 
+ 00021260  0x00003839 set1  0x00000025 , 0x00000000 
+ 00021261  0x0000383a bpatch  0x0000002f , 0x00004025 
+ 00021262  0x0000383b call  0x00005287 
+ 00021263  0x0000383c fetch  0x00000001 , 0x000042bf 
+ 00021264  0x0000383d rtn  0x00000034 
+ 00021265  0x0000383e call  0x000052f5 
+ 00021266  0x0000383f arg  0x00000100 , 0x00000002 
+ 00021267  0x00003840 isub  0x00000002 , 0x0000003e 
+ 00021268  0x00003841 branch  0x00005308 , 0x00000002 
+ 00021269  0x00003842 call  0x0000530a 
+ 00021270  0x00003843 arg  0x000042cc , 0x00000005 
+ 00021271  0x00003844 arg  0x000042c0 , 0x00000011 
+ 00021272  0x00003846 setarg  0x000042cc 
+ 00021273  0x00003847 isub  0x00000011 , 0x0000003e 
+ 00021274  0x00003848 rtn  0x00000005 
+ 00021275  0x00003849 ifetch  0x00000001 , 0x00000011 
+ 00021276  0x0000384a increase  0x00000001 , 0x00000011 
+ 00021277  0x0000384b nbranch  0x00005321 , 0x00000034 
+ 00021278  0x0000384c istore  0x00000002 , 0x00000005 
+ 00021279  0x0000384d increase  0x00000002 , 0x00000011 
+ 00021280  0x0000384e branch  0x00005318 
+ 00021281  0x00003850 ifetch  0x00000002 , 0x00000011 
+ 00021282  0x00003851 increase  0x00000002 , 0x00000011 
+ 00021283  0x00003852 copy  0x0000003f , 0x00000006 
+ 00021284  0x00003853 ifetch  0x00000002 , 0x00000006 
+ 00021285  0x00003854 istore  0x00000002 , 0x00000005 
+ 00021286  0x00003855 copy  0x0000003f , 0x00000039 
+ 00021287  0x00003856 increase  0x00000002 , 0x00000039 
+ 00021288  0x00003857 call  0x00007e45 
+ 00021289  0x00003858 branch  0x00005318 
+ 00021290  0x0000385b set1  0x00000025 , 0x00000000 
+ 00021291  0x0000385c bpatch  0x00000030 , 0x00004026 
+ 00021292  0x0000385d call  0x00005287 
+ 00021293  0x0000385e fetch  0x00000001 , 0x000042bf 
+ 00021294  0x0000385f rtn  0x00000034 
+ 00021295  0x00003860 arg  0x000042c1 , 0x00000011 
+ 00021296  0x00003861 increase  0xfffffffd , 0x00000011 
+ 00021297  0x00003862 arg  0x000042cc , 0x00000006 
+ 00021298  0x00003864 increase  0x00000003 , 0x00000011 
+ 00021299  0x00003865 setarg  0x000042cd 
+ 00021300  0x00003866 isub  0x00000011 , 0x0000003e 
+ 00021301  0x00003867 rtn  0x00000005 
+ 00021302  0x00003868 ifetch  0x00000002 , 0x00000006 
+ 00021303  0x00003869 branch  0x00005332 , 0x00000034 
+ 00021304  0x0000386a increase  0x00000004 , 0x0000003f 
+ 00021305  0x0000386b copy  0x0000003f , 0x00000039 
+ 00021306  0x0000386c copy  0x00000006 , 0x00000012 
+ 00021307  0x0000386d ifetch  0x00000002 , 0x00000011 
+ 00021308  0x0000386e copy  0x0000003f , 0x00000005 
+ 00021309  0x0000386f copy  0x00000012 , 0x00000006 
+ 00021310  0x00003870 increase  0xfffffffe , 0x00000006 
+ 00021311  0x00003871 call  0x00007e45 
+ 00021312  0x00003872 branch  0x00005332 
+ 00021313  0x0000387b rtn  0x0000002b 
+ 00021314  0x0000387c setarg  0x00000010 
+ 00021315  0x0000387d store  0x00000002 , 0x000043d3 
+ 00021316  0x0000387e setarg  0x00000010 
+ 00021317  0x0000387f store  0x00000002 , 0x000043d5 
+ 00021318  0x00003880 rtn 
+ 00021319  0x00003883 arg  0x00000014 , 0x00000002 
+ 00021320  0x00003884 call  0x00005a88 
+ 00021321  0x00003885 add  0x00000006 , 0x00000001 , 0x0000003f 
+ 00021322  0x00003886 store  0x00000002 , 0x00000419 
+ 00021323  0x00003887 rtn 
+ 00021324  0x0000388a set1  0x00000025 , 0x00000000 
+ 00021325  0x0000388b bpatch  0x00000032 , 0x00004026 
+ 00021326  0x0000388c disable  0x0000002b 
+ 00021327  0x0000388d jam  0x00000001 , 0x0000427e 
+ 00021328  0x0000388e jam  0x00000001 , 0x000003d6 
+ 00021329  0x0000388f jam  0x00000003 , 0x000003c0 
+ 00021330  0x00003890 jam  0x00000001 , 0x000003d7 
+ 00021331  0x00003891 setarg  0xffffffff 
+ 00021332  0x00003892 store  0x00000002 , 0x000003da 
+ 00021333  0x00003893 force  0x00000000 , 0x0000003f 
+ 00021334  0x00003894 store  0x00000001 , 0x000003e3 
+ 00021335  0x00003895 store  0x00000001 , 0x000003d8 
+ 00021336  0x00003896 store  0x00000001 , 0x000003e4 
+ 00021337  0x00003897 store  0x00000003 , 0x0000420a 
+ 00021338  0x00003898 store  0x00000003 , 0x0000420d 
+ 00021339  0x00003899 store  0x00000005 , 0x00004465 
+ 00021340  0x0000389a set1  0x00000027 , 0x0000003f 
+ 00021341  0x0000389b store  0x00000005 , 0x0000446a 
+ 00021342  0x0000389c branch  0x00005a0b 
+ 00021343  0x0000389f set1  0x00000025 , 0x00000000 
+ 00021344  0x000038a0 bpatch  0x00000033 , 0x00004026 
+ 00021345  0x000038a1 enable  0x00000029 
+ 00021346  0x000038a2 jam  0x00000003 , 0x000003c1 
+ 00021347  0x000038a3 jam  0x00000001 , 0x000003fa 
+ 00021348  0x000038a4 jam  0x00000001 , 0x000044bc 
+ 00021349  0x000038a5 setarg  0x0000ffff 
+ 00021350  0x000038a6 store  0x00000002 , 0x000044be 
+ 00021351  0x000038a7 force  0x00000000 , 0x0000003f 
+ 00021352  0x000038a8 store  0x00000005 , 0x0000446a 
+ 00021353  0x000038a9 set1  0x00000027 , 0x0000003f 
+ 00021354  0x000038aa store  0x00000005 , 0x00004465 
+ 00021355  0x000038ab branch  0x0000534c 
+ 00021356  0x000038af set1  0x00000025 , 0x00000000 
+ 00021357  0x000038b0 bpatch  0x00000034 , 0x00004026 
+ 00021358  0x000038b1 disable  0x00000029 
+ 00021359  0x000038b2 jam  0x00000001 , 0x000003c1 
+ 00021360  0x000038b3 jam  0x00000000 , 0x000043d8 
+ 00021361  0x000038b4 jam  0x00000000 , 0x000000a2 
+ 00021362  0x000038b5 branch  0x0000534c 
+ 00021363  0x000038bc call  0x000053d2 
+ 00021364  0x000038bd call  0x000055d3 
+ 00021365  0x000038be call  0x00005a0e 
+ 00021366  0x000038bf branch  0x000053d7 
+ 00021367  0x000038c2 set1  0x00000025 , 0x00000000 
+ 00021368  0x000038c3 bpatch  0x00000035 , 0x00004026 
+ 00021369  0x000038c4 call  0x000053d2 
+ 00021370  0x000038c5 call  0x00003e71 
+ 00021371  0x000038c6 fetch  0x00000001 , 0x000003c1 
+ 00021372  0x000038c7 beq  0x00000003 , 0x0000537e 
+ 00021373  0x000038c8 branch  0x00005395 
+ 00021374  0x000038cf set1  0x00000025 , 0x00000000 
+ 00021375  0x000038d0 bpatch  0x00000036 , 0x00004026 
+ 00021376  0x000038d1 enable  0x00000029 
+ 00021377  0x000038d2 call  0x00005a02 
+ 00021378  0x000038d3 branch  0x00005392 , 0x00000002 
+ 00021379  0x000038d4 call  0x00003e28 
+ 00021380  0x000038d5 call  0x0000541c 
+ 00021381  0x000038d6 call  0x00005622 
+ 00021382  0x000038d7 disable  0x0000002d 
+ 00021383  0x000038d8 call  0x000054b2 
+ 00021384  0x000038d9 nrtn  0x0000002d 
+ 00021385  0x000038da set1  0x00000025 , 0x00000000 
+ 00021386  0x000038db bpatch  0x00000037 , 0x00004026 
+ 00021387  0x000038dc fetch  0x00000001 , 0x00000005 
+ 00021388  0x000038dd increase  0x00000001 , 0x0000003f 
+ 00021389  0x000038de store  0x00000001 , 0x00000005 
+ 00021390  0x000038df call  0x000055a2 
+ 00021391  0x000038e0 call  0x00005a99 
+ 00021392  0x000038e1 disable  0x00000029 
+ 00021393  0x000038e2 rtn 
+ 00021394  0x000038e5 call  0x000053ba 
+ 00021395  0x000038e6 disable  0x00000029 
+ 00021396  0x000038e7 rtn 
+ 00021397  0x000038ed set1  0x00000025 , 0x00000000 
+ 00021398  0x000038ee bpatch  0x00000038 , 0x00004027 
+ 00021399  0x000038ef disable  0x0000002e 
+ 00021400  0x000038f0 call  0x00005a02 
+ 00021401  0x000038f1 branch  0x000053ba , 0x00000002 
+ 00021402  0x000038f2 call  0x00003e28 
+ 00021403  0x000038f3 call  0x0000541c 
+ 00021404  0x000038f4 call  0x00005478 
+ 00021405  0x000038f5 nbranch  0x000053ad , 0x0000002d 
+ 00021406  0x000038f7 set1  0x00000025 , 0x00000000 
+ 00021407  0x000038f8 bpatch  0x00000039 , 0x00004027 
+ 00021408  0x000038f9 call  0x000053c8 
+ 00021409  0x000038fa call  0x000055a2 
+ 00021410  0x000038fb call  0x00005622 
+ 00021411  0x000038fc fetch  0x00000001 , 0x00000340 
+ 00021412  0x000038fd bbit1  0x00000004 , 0x000053b4 
+ 00021413  0x000038fe call  0x0000561a 
+ 00021414  0x000038ff nbranch  0x000053b4 , 0x00000034 
+ 00021415  0x00003901 set1  0x00000025 , 0x00000000 
+ 00021416  0x00003902 bpatch  0x0000003a , 0x00004027 
+ 00021417  0x00003903 call  0x000054bb 
+ 00021418  0x00003905 call  0x00007c45 
+ 00021419  0x00003906 fetch  0x00000001 , 0x000003e4 
+ 00021420  0x00003907 bbit1  0x00000003 , 0x000053ba 
+ 00021421  0x00003909 set1  0x00000025 , 0x00000000 
+ 00021422  0x0000390a bpatch  0x0000003b , 0x00004027 
+ 00021423  0x0000390b call  0x00007f44 
+ 00021424  0x0000390c call  0x00005b19 
+ 00021425  0x0000390d call  0x00005594 
+ 00021426  0x0000390e call  0x00005576 
+ 00021427  0x0000390f branch  0x000039ac 
+ 00021428  0x00003912 set1  0x00000025 , 0x00000000 
+ 00021429  0x00003913 bpatch  0x0000003c , 0x00004027 
+ 00021430  0x00003914 enable  0x0000002e 
+ 00021431  0x00003915 call  0x000054b2 
+ 00021432  0x00003916 branch  0x0000539e , 0x0000002d 
+ 00021433  0x00003917 branch  0x000053aa 
+ 00021434  0x0000391d set1  0x00000025 , 0x00000000 
+ 00021435  0x0000391e bpatch  0x0000003d , 0x00004027 
+ 00021436  0x0000391f call  0x000053c0 
+ 00021437  0x00003920 call  0x00003f1d 
+ 00021438  0x00003921 jam  0x00000015 , 0x00000b7d 
+ 00021439  0x00003922 branch  0x00007c27 
+ 00021440  0x00003925 fetcht  0x00000001 , 0x000003d6 
+ 00021441  0x00003926 jam  0x00000008 , 0x000002c0 
+ 00021442  0x00003927 call  0x000048c4 
+ 00021443  0x00003928 jam  0x00000000 , 0x000003d6 
+ 00021444  0x00003929 jam  0x00000000 , 0x000003c1 
+ 00021445  0x0000392a jam  0x00000000 , 0x000003c0 
+ 00021446  0x0000392b jam  0x00000000 , 0x0000427e 
+ 00021447  0x0000392c rtn 
+ 00021448  0x0000392f fetch  0x00000001 , 0x00000005 
+ 00021449  0x00003930 increase  0x00000001 , 0x0000003f 
+ 00021450  0x00003931 store  0x00000001 , 0x00000005 
+ 00021451  0x00003932 fetch  0x00000001 , 0x000003c0 
+ 00021452  0x00003933 rtnbit1  0x00000003 
+ 00021453  0x00003934 set1  0x00000003 
+ 00021454  0x00003935 store  0x00000001 , 0x000003c0 
+ 00021455  0x00003936 setarg  0x00000000 
+ 00021456  0x00003937 store  0x00000004 , 0x000046f9 
+ 00021457  0x00003938 rtn 
+ 00021458  0x0000393e set1  0x00000025 , 0x00000000 
+ 00021459  0x0000393f bpatch  0x0000003e , 0x00004027 
+ 00021460  0x00003940 enable  0x00000036 
+ 00021461  0x00003941 hjam  0x00000007 , 0x00008914 
+ 00021462  0x00003942 branch  0x00003e28 
+ 00021463  0x00003945 set1  0x00000025 , 0x00000000 
+ 00021464  0x00003946 bpatch  0x0000003f , 0x00004027 
+ 00021465  0x00003947 disable  0x00000036 
+ 00021466  0x00003948 hjam  0x00000003 , 0x00008914 
+ 00021467  0x00003949 arg  0x00000000 , 0x0000001b 
+ 00021468  0x0000394a rtn 
+ 00021469  0x0000394d disable  0x00000009 
+ 00021470  0x0000394e disable  0x00000007 
+ 00021471  0x0000394f fetch  0x00000003 , 0x000003e9 
+ 00021472  0x00003950 iforce  0x0000000f 
+ 00021473  0x00003951 fetch  0x00000001 , 0x00000016 
+ 00021474  0x00003952 reverse  0x0000003f , 0x00000002 
+ 00021475  0x00003953 set1  0x00000001 , 0x00000002 
+ 00021476  0x00003954 rshift  0x00000002 , 0x0000000e 
+ 00021477  0x00003955 rtn 
+ 00021478  0x00003959 call  0x000053ee 
+ 00021479  0x0000395a call  0x00003a82 
+ 00021480  0x0000395b setarg  0x00000500 
+ 00021481  0x0000395c call  0x00003bf3 
+ 00021482  0x0000395d branch  0x00003a87 
+ 00021483  0x00003960 branch  0x00003a98 , 0x0000002d 
+ 00021484  0x00003961 call  0x000053ee 
+ 00021485  0x00003962 branch  0x00003a91 
+ 00021486  0x00003964 set1  0x00000025 , 0x00000000 
+ 00021487  0x00003965 bpatch  0x00000040 , 0x00004028 
+ 00021488  0x00003966 call  0x00003a7a 
+ 00021489  0x00003967 fetch  0x00000001 , 0x0000040d 
+ 00021490  0x00003968 nbranch  0x00005402 , 0x00000034 
+ 00021491  0x00003969 fetch  0x00000001 , 0x00000016 
+ 00021492  0x0000396a sub  0x0000003f , 0x00000024 , 0x0000003e 
+ 00021493  0x0000396b branch  0x000053fc , 0x00000002 
+ 00021494  0x0000396c force  0x00000000 , 0x00000002 
+ 00021495  0x0000396d rtneq  0x00000025 
+ 00021496  0x0000396e force  0x00000018 , 0x00000002 
+ 00021497  0x0000396f rtneq  0x00000026 
+ 00021498  0x00003970 force  0x0000004e , 0x00000002 
+ 00021499  0x00003971 rtn 
+ 00021500  0x00003974 sub  0x0000003f , 0x0000000a , 0x0000003e 
+ 00021501  0x00003975 branch  0x000053ff , 0x00000002 
+ 00021502  0x00003976 increase  0x00000001 , 0x0000003f 
+ 00021503  0x00003979 lshift  0x0000003f , 0x0000003f 
+ 00021504  0x0000397a add  0x0000003f , 0x00000002 , 0x00000002 
+ 00021505  0x0000397b rtn 
+ 00021506  0x0000397e fetch  0x00000001 , 0x00000016 
+ 00021507  0x0000397f lshift  0x0000003f , 0x00000002 
+ 00021508  0x00003980 rtn 
+ 00021509  0x00003983 arg  0x000001f4 , 0x00000002 
+ 00021510  0x00003984 rtn  0x00000034 
+ 00021511  0x00003985 arg  0x000000fa , 0x00000002 
+ 00021512  0x00003986 rtneq  0x00000001 
+ 00021513  0x00003987 arg  0x00000096 , 0x00000002 
+ 00021514  0x00003988 rtneq  0x00000002 
+ 00021515  0x00003989 arg  0x00000064 , 0x00000002 
+ 00021516  0x0000398a rtneq  0x00000003 
+ 00021517  0x0000398b arg  0x0000004b , 0x00000002 
+ 00021518  0x0000398c rtneq  0x00000004 
+ 00021519  0x0000398d arg  0x00000032 , 0x00000002 
+ 00021520  0x0000398e rtneq  0x00000005 
+ 00021521  0x0000398f arg  0x00000028 , 0x00000002 
+ 00021522  0x00003990 rtneq  0x00000006 
+ 00021523  0x00003991 arg  0x00000014 , 0x00000002 
+ 00021524  0x00003992 rtn 
+ 00021525  0x00003997 setarg  0x008e89be 
+ 00021526  0x00003998 lshift8  0x0000003f , 0x0000003f 
+ 00021527  0x00003999 or_into  0x000000d6 , 0x0000003f 
+ 00021528  0x0000399a iforce  0x00000009 
+ 00021529  0x0000399b setarg  0x00555555 
+ 00021530  0x0000399c store  0x00000003 , 0x000003e9 
+ 00021531  0x0000399d rtn 
+ 00021532  0x000039a0 set1  0x00000025 , 0x00000000 
+ 00021533  0x000039a1 bpatch  0x00000041 , 0x00004028 
+ 00021534  0x000039a2 enable  0x00000010 
+ 00021535  0x000039a3 fetch  0x00000004 , 0x000003e5 
+ 00021536  0x000039a4 iforce  0x00000009 
+ 00021537  0x000039a5 call  0x00005453 
+ 00021538  0x000039a6 setarg  0x00000200 
+ 00021539  0x000039a7 branch  0x00005426 , 0x00000029 
+ 00021540  0x000039a8 fetch  0x00000002 , 0x000003ce 
+ 00021541  0x000039a9 rshift  0x0000003f , 0x0000003f 
+ 00021542  0x000039ab arg  0x00000500 , 0x00000002 
+ 00021543  0x000039ac iadd  0x00000002 , 0x0000003f 
+ 00021544  0x000039ad call  0x00003b7d 
+ 00021545  0x000039ae deposit  0x0000001a 
+ 00021546  0x000039af store  0x00000006 , 0x00000412 
+ 00021547  0x000039b0 rtn 
+ 00021548  0x000039b3 set1  0x00000025 , 0x00000000 
+ 00021549  0x000039b4 bpatch  0x00000042 , 0x00004028 
+ 00021550  0x000039b5 fetch  0x00000001 , 0x00000016 
+ 00021551  0x000039b6 increase  0x00000001 , 0x0000003f 
+ 00021552  0x000039b7 store  0x00000001 , 0x00000016 
+ 00021553  0x000039b8 rtnne  0x00000028 
+ 00021554  0x000039b9 jam  0x00000025 , 0x00000016 
+ 00021555  0x000039ba rtn 
+ 00021556  0x000039bd set1  0x00000025 , 0x00000000 
+ 00021557  0x000039be bpatch  0x00000043 , 0x00004028 
+ 00021558  0x000039bf add  0x00000011 , 0x00000001 , 0x00000006 
+ 00021559  0x000039c0 ifetch  0x00000001 , 0x00000006 
+ 00021560  0x000039c1 rtnbit0  0x00000000 
+ 00021561  0x000039c2 add  0x00000011 , 0x0000001a , 0x00000005 
+ 00021562  0x000039c3 ifetch  0x00000002 , 0x00000005 
+ 00021563  0x000039c4 increase  0x00000001 , 0x0000003f 
+ 00021564  0x000039c5 istore  0x00000002 , 0x00000005 
+ 00021565  0x000039c6 add  0x00000011 , 0x00000019 , 0x00000006 
+ 00021566  0x000039c7 ifetch  0x00000001 , 0x00000006 
+ 00021567  0x000039c8 add  0x00000011 , 0x00000018 , 0x00000005 
+ 00021568  0x000039c9 ifetcht  0x00000001 , 0x00000005 
+ 00021569  0x000039ca iadd  0x00000002 , 0x0000003f 
+ 00021570  0x000039cb sub  0x0000003f , 0x00000024 , 0x0000003e 
+ 00021571  0x000039cc branch  0x00005445 , 0x00000002 
+ 00021572  0x000039cd increase  0xffffffdb , 0x0000003f 
+ 00021573  0x000039cf istore  0x00000001 , 0x00000005 
+ 00021574  0x000039d0 rtn 
+ 00021575  0x000039d4 set1  0x00000025 , 0x00000000 
+ 00021576  0x000039d5 bpatch  0x00000044 , 0x00004028 
+ 00021577  0x000039d6 fetch  0x00000005 , 0x000003f1 
+ 00021578  0x000039d7 force  0x00000000 , 0x00000002 
+ 00021579  0x000039d8 force  0x00000025 , 0x00000039 
+ 00021580  0x000039da bbit0  0x00000000 , 0x0000544e 
+ 00021581  0x000039db increase  0x00000001 , 0x00000002 
+ 00021582  0x000039dd rshift  0x0000003f , 0x0000003f 
+ 00021583  0x000039de loop  0x0000544c 
+ 00021584  0x000039df add  0x00000002 , 0xffffffff , 0x0000003f 
+ 00021585  0x000039e0 store  0x00000001 , 0x000003e2 
+ 00021586  0x000039e1 rtn 
+ 00021587  0x000039e4 set1  0x00000025 , 0x00000000 
+ 00021588  0x000039e5 bpatch  0x00000045 , 0x00004028 
+ 00021589  0x000039e6 fetch  0x00000001 , 0x000003d8 
+ 00021590  0x000039e7 iforce  0x00000007 
+ 00021591  0x000039e8 fetcht  0x00000005 , 0x000003f1 
+ 00021592  0x000039e9 qisolate1  0x00000002 
+ 00021593  0x000039ea branch  0x0000546b , 0x00000001 
+ 00021594  0x000039ec set1  0x00000025 , 0x00000000 
+ 00021595  0x000039ed bpatch  0x00000046 , 0x00004028 
+ 00021596  0x000039ee fetch  0x00000001 , 0x000003e2 
+ 00021597  0x000039ef isub  0x00000007 , 0x0000003f 
+ 00021598  0x000039f0 branch  0x00005461 , 0x00000002 
+ 00021599  0x000039f1 sub  0x0000003f , 0xffffffff , 0x00000007 
+ 00021600  0x000039f2 branch  0x0000545a 
+ 00021601  0x000039f4 copy  0x00000007 , 0x00000039 
+ 00021602  0x000039f5 force  0x00000000 , 0x00000007 
+ 00021603  0x000039f7 qisolate1  0x00000002 
+ 00021604  0x000039f8 branch  0x00005466 , 0x00000001 
+ 00021605  0x000039f9 increase  0x00000001 , 0x00000039 
+ 00021606  0x000039fb deposit  0x00000039 
+ 00021607  0x000039fc branch  0x0000546b , 0x00000034 
+ 00021608  0x000039fd increase  0x00000001 , 0x00000007 
+ 00021609  0x000039fe increase  0xffffffff , 0x00000039 
+ 00021610  0x000039ff branch  0x00005463 
+ 00021611  0x00003a01 deposit  0x00000007 
+ 00021612  0x00003a02 store  0x00000001 , 0x00000016 
+ 00021613  0x00003a03 rtn 
+ 00021614  0x00003a07 branch  0x00005471 , 0x00000029 
+ 00021615  0x00003a08 until  0x0000003e , 0x00000003 
+ 00021616  0x00003a09 rtn 
+ 00021617  0x00003a0c arg  0x00000ea0 , 0x0000000b 
+ 00021618  0x00003a0d until  0x00000023 , 0x00000026 
+ 00021619  0x00003a0e rtn 
+ 00021620  0x00003a11 disable  0x00000010 
+ 00021621  0x00003a12 fetch  0x00000002 , 0x000043d5 
+ 00021622  0x00003a13 copy  0x0000003f , 0x0000000b 
+ 00021623  0x00003a14 branch  0x0000547e 
+ 00021624  0x00003a18 set1  0x00000025 , 0x00000000 
+ 00021625  0x00003a19 bpatch  0x00000047 , 0x00004028 
+ 00021626  0x00003a1a enable  0x00000010 
+ 00021627  0x00003a1b fetch  0x00000002 , 0x000003ce 
+ 00021628  0x00003a1c fetcht  0x00000004 , 0x000046f9 
+ 00021629  0x00003a1d iadd  0x00000002 , 0x0000000b 
+ 00021630  0x00003a1f call  0x000053e6 
+ 00021631  0x00003a21 set1  0x00000025 , 0x00000000 
+ 00021632  0x00003a22 bpatch  0x00000048 , 0x00004029 
+ 00021633  0x00003a23 call  0x000053dd 
+ 00021634  0x00003a24 disable  0x0000002d 
+ 00021635  0x00003a25 enable  0x0000000d 
+ 00021636  0x00003a26 enable  0x00000021 
+ 00021637  0x00003a27 disable  0x00000020 
+ 00021638  0x00003a28 copy  0x0000000b , 0x0000001b 
+ 00021639  0x00003a29 correlate  0x0000003e , 0x00000003 
+ 00021640  0x00003a2a branch  0x0000548b , 0x0000002e 
+ 00021641  0x00003a2b copy  0x0000001a , 0x00000002 
+ 00021642  0x00003a2c storet  0x00000006 , 0x0000009c 
+ 00021643  0x00003a2e nbranch  0x0000375c , 0x00000018 
+ 00021644  0x00003a2f branch  0x00005492 , 0x0000002e 
+ 00021645  0x00003a30 arg  0x000001e0 , 0x00000029 
+ 00021646  0x00003a31 copy  0x00000021 , 0x00000028 
+ 00021647  0x00003a32 fetch  0x00000001 , 0x000003c0 
+ 00021648  0x00003a33 bbit0  0x00000003 , 0x00005492 
+ 00021649  0x00003a34 call  0x00003cb6 , 0x0000002b 
+ 00021650  0x00003a36 set1  0x00000025 , 0x00000000 
+ 00021651  0x00003a37 bpatch  0x00000049 , 0x00004029 
+ 00021652  0x00003a38 call  0x00003af3 
+ 00021653  0x00003a39 enable  0x00000007 
+ 00021654  0x00003a3a enable  0x00000009 
+ 00021655  0x00003a3b parse  0x00000003 , 0x00000000 , 0x00000008 
+ 00021656  0x00003a3c rshift3  0x0000000c , 0x0000003f 
+ 00021657  0x00003a3d store  0x00000001 , 0x00000340 
+ 00021658  0x00003a3e parse  0x00000003 , 0x00000000 , 0x00000008 
+ 00021659  0x00003a3f rshift3  0x0000000c , 0x0000003f 
+ 00021660  0x00003a40 istore  0x00000001 , 0x00000005 
+ 00021661  0x00003a41 and  0x0000003f , 0x0000003f , 0x00000039 
+ 00021662  0x00003a42 branch  0x000054a3 , 0x00000005 
+ 00021663  0x00003a45 parse  0x00000003 , 0x00000000 , 0x00000008 
+ 00021664  0x00003a46 rshift3  0x0000000c , 0x0000003f 
+ 00021665  0x00003a47 istore  0x00000001 , 0x00000005 
+ 00021666  0x00003a48 loop  0x0000549f 
+ 00021667  0x00003a4b set1  0x00000025 , 0x00000000 
+ 00021668  0x00003a4c bpatch  0x0000004a , 0x00004029 
+ 00021669  0x00003a4d parse  0x00000003 , 0x00000000 , 0x00000018 
+ 00021670  0x00003a4e enable  0x00000010 
+ 00021671  0x00003a4f arg  0x00000664 , 0x0000001b 
+ 00021672  0x00003a50 rshift32  0x0000003f , 0x0000003f 
+ 00021673  0x00003a51 rshift16  0x0000003f , 0x0000003f 
+ 00021674  0x00003a52 istore  0x00000003 , 0x00000005 
+ 00021675  0x00003a53 branch  0x0000375c , 0x00000006 
+ 00021676  0x00003a54 enable  0x0000002d 
+ 00021677  0x00003a55 fetch  0x00000001 , 0x00000017 
+ 00021678  0x00003a56 add  0x0000003f , 0x00000002 , 0x00000011 
+ 00021679  0x00003a57 call  0x00003ab6 
+ 00021680  0x00003a58 disable  0x0000000d 
+ 00021681  0x00003a59 branch  0x00003a7a 
+ 00021682  0x00003a5c set1  0x00000025 , 0x00000000 
+ 00021683  0x00003a5d bpatch  0x0000004b , 0x00004029 
+ 00021684  0x00003a5e call  0x000054bd 
+ 00021685  0x00003a5f fetcht  0x00000001 , 0x00000017 
+ 00021686  0x00003a60 call  0x00003a82 
+ 00021687  0x00003a61 call  0x00003a87 
+ 00021688  0x00003a62 enable  0x00000010 
+ 00021689  0x00003a63 arg  0x00001388 , 0x0000000b 
+ 00021690  0x00003a64 branch  0x0000547f 
+ 00021691  0x00003a67 call  0x000054bd 
+ 00021692  0x00003a68 branch  0x0000375c 
+ 00021693  0x00003a6b set1  0x00000025 , 0x00000000 
+ 00021694  0x00003a6c bpatch  0x0000004c , 0x00004029 
+ 00021695  0x00003a6d call  0x000053dd 
+ 00021696  0x00003a6e call  0x000053eb 
+ 00021697  0x00003a6f set1  0x00000000 , 0x00000015 
+ 00021698  0x00003a70 enable  0x0000001d 
+ 00021699  0x00003a71 enable  0x00000020 
+ 00021700  0x00003a72 disable  0x00000021 
+ 00021701  0x00003a73 call  0x0000546e 
+ 00021702  0x00003a74 rshift16  0x00000009 , 0x0000003f 
+ 00021703  0x00003a75 rshift8  0x0000003f , 0x0000003f 
+ 00021704  0x00003a76 rshift4  0x0000003f , 0x0000003f 
+ 00021705  0x00003a77 inject  0x00000003 , 0x00000028 
+ 00021706  0x00003a78 enable  0x00000007 
+ 00021707  0x00003a79 enable  0x00000009 
+ 00021708  0x00003a7a set1  0x00000025 , 0x00000000 
+ 00021709  0x00003a7b bpatch  0x0000004d , 0x00004029 
+ 00021710  0x00003a7c fetch  0x00000001 , 0x0000443e 
+ 00021711  0x00003a7d inject  0x00000003 , 0x00000008 
+ 00021712  0x00003a7e ifetch  0x00000001 , 0x00000006 
+ 00021713  0x00003a7f and  0x0000003f , 0x0000003f , 0x00000039 
+ 00021714  0x00003a80 inject  0x00000003 , 0x00000008 
+ 00021715  0x00003a81 branch  0x000054d7 , 0x00000005 
+ 00021716  0x00003a83 ifetch  0x00000001 , 0x00000006 
+ 00021717  0x00003a84 inject  0x00000003 , 0x00000008 
+ 00021718  0x00003a85 loop  0x000054d4 
+ 00021719  0x00003a88 enable  0x00000008 
+ 00021720  0x00003a89 inject  0x00000003 , 0x00000018 
+ 00021721  0x00003a8a disable  0x00000008 
+ 00021722  0x00003a8b until  0x0000003e , 0x00000027 
+ 00021723  0x00003a8c nop  0x00000064 
+ 00021724  0x00003a8d disable  0x0000001d 
+ 00021725  0x00003a8e rtn 
+ 00021726  0x00003a91 set1  0x00000025 , 0x00000000 
+ 00021727  0x00003a92 bpatch  0x0000004e , 0x00004029 
+ 00021728  0x00003a93 fetch  0x00000001 , 0x000044db 
+ 00021729  0x00003a94 beq  0x00000001 , 0x000054ef 
+ 00021730  0x00003a95 fetch  0x00000001 , 0x000044dc 
+ 00021731  0x00003a96 lshift4  0x0000003f , 0x0000003f 
+ 00021732  0x00003a97 lshift2  0x0000003f , 0x0000003f 
+ 00021733  0x00003a98 store  0x00000001 , 0x0000443e 
+ 00021734  0x00003a99 fetcht  0x00000001 , 0x000043d9 
+ 00021735  0x00003a9a add  0x00000002 , 0x00000006 , 0x0000003f 
+ 00021736  0x00003a9b store  0x00000001 , 0x0000443f 
+ 00021737  0x00003a9c fetch  0x00000006 , 0x000044f9 
+ 00021738  0x00003a9d store  0x00000006 , 0x00004440 
+ 00021739  0x00003a9e copy  0x00000002 , 0x00000039 
+ 00021740  0x00003a9f arg  0x000043da , 0x00000006 
+ 00021741  0x00003aa0 call  0x00007e45 
+ 00021742  0x00003aa1 branch  0x000054ff 
+ 00021743  0x00003aa3 fetcht  0x00000002 , 0x000044c2 
+ 00021744  0x00003aa4 call  0x00005866 
+ 00021745  0x00003aa5 copy  0x00000011 , 0x00000005 
+ 00021746  0x00003aa6 setarg  0x00000001 
+ 00021747  0x00003aa7 istore  0x00000001 , 0x00000005 
+ 00021748  0x00003aa8 fetch  0x00000001 , 0x000044dd 
+ 00021749  0x00003aa9 lshift4  0x0000003f , 0x0000003f 
+ 00021750  0x00003aaa lshift2  0x0000003f , 0x0000003f 
+ 00021751  0x00003aab increase  0x00000001 , 0x0000003f 
+ 00021752  0x00003aac store  0x00000001 , 0x0000443e 
+ 00021753  0x00003aad setarg  0x0000000c 
+ 00021754  0x00003aae store  0x00000001 , 0x0000443f 
+ 00021755  0x00003aaf fetch  0x00000006 , 0x000044f9 
+ 00021756  0x00003ab0 store  0x00000006 , 0x00004440 
+ 00021757  0x00003ab1 fetch  0x00000006 , 0x00004274 
+ 00021758  0x00003ab2 istore  0x00000006 , 0x00000005 
+ 00021759  0x00003ab4 set1  0x00000025 , 0x00000000 
+ 00021760  0x00003ab5 bpatch  0x0000004f , 0x00004029 
+ 00021761  0x00003ab6 fetch  0x00000001 , 0x00000000 
+ 00021762  0x00003ab7 increase  0x00000001 , 0x0000003f 
+ 00021763  0x00003ab8 store  0x00000001 , 0x00000000 
+ 00021764  0x00003ab9 arg  0x00000708 , 0x0000001b 
+ 00021765  0x00003aba disable  0x0000002d 
+ 00021766  0x00003abb branch  0x000054b2 
+ 00021767  0x00003abe set1  0x00000025 , 0x00000000 
+ 00021768  0x00003abf bpatch  0x00000050 , 0x0000402a 
+ 00021769  0x00003ac0 fetch  0x00000001 , 0x000044f6 
+ 00021770  0x00003ac1 rtnne  0x00000001 , 0x0000003f 
+ 00021771  0x00003ac2 fetch  0x00000001 , 0x00000000 
+ 00021772  0x00003ac3 increase  0x00000001 , 0x0000003f 
+ 00021773  0x00003ac4 store  0x00000001 , 0x00000000 
+ 00021774  0x00003ac5 arg  0x00000c03 , 0x00000002 
+ 00021775  0x00003ac6 fetch  0x00000001 , 0x000044f7 
+ 00021776  0x00003ac7 nsetflag  0x00000034 , 0x00000006 , 0x00000002 
+ 00021777  0x00003ac8 copy  0x00000011 , 0x0000003f 
+ 00021778  0x00003ac9 nsetflag  0x00000034 , 0x00000007 , 0x00000002 
+ 00021779  0x00003aca storet  0x00000002 , 0x0000443e 
+ 00021780  0x00003acb fetch  0x00000006 , 0x000044f9 
+ 00021781  0x00003acc istore  0x00000006 , 0x00000005 
+ 00021782  0x00003acd fetch  0x00000006 , 0x000003d0 
+ 00021783  0x00003ace istore  0x00000006 , 0x00000005 
+ 00021784  0x00003acf branch  0x000054b2 
+ 00021785  0x00003ad3 set1  0x00000025 , 0x00000000 
+ 00021786  0x00003ad4 bpatch  0x00000051 , 0x0000402a 
+ 00021787  0x00003ad5 arg  0x00000004 , 0x00000002 
+ 00021788  0x00003ad6 fetch  0x00000001 , 0x000044dc 
+ 00021789  0x00003ad7 nsetflag  0x00000034 , 0x00000006 , 0x00000002 
+ 00021790  0x00003ad8 storet  0x00000001 , 0x0000443e 
+ 00021791  0x00003ad9 fetcht  0x00000001 , 0x000043f9 
+ 00021792  0x00003ada add  0x00000002 , 0x00000006 , 0x0000003f 
+ 00021793  0x00003adb store  0x00000001 , 0x0000443f 
+ 00021794  0x00003adc fetch  0x00000006 , 0x000044f9 
+ 00021795  0x00003add store  0x00000006 , 0x00004440 
+ 00021796  0x00003ade arg  0x000043fa , 0x00000006 
+ 00021797  0x00003adf copy  0x00000002 , 0x00000039 
+ 00021798  0x00003ae0 call  0x00007e45 
+ 00021799  0x00003ae1 branch  0x000054bb 
+ 00021800  0x00003ae5 set1  0x00000025 , 0x00000000 
+ 00021801  0x00003ae6 bpatch  0x00000052 , 0x0000402a 
+ 00021802  0x00003ae7 force  0xffffffff , 0x0000003f 
+ 00021803  0x00003ae8 setsect  0x00000002 , 0x00000001 
+ 00021804  0x00003ae9 store  0x00000005 , 0x000003f1 
+ 00021805  0x00003aea call  0x00005447 
+ 00021806  0x00003aeb force  0x00000004 , 0x00000039 
+ 00021807  0x00003aec arg  0x000003e5 , 0x00000005 
+ 00021808  0x00003aed call  0x00006227 
+ 00021809  0x00003aee fetch  0x00000002 , 0x000044f4 
+ 00021810  0x00003aef store  0x00000002 , 0x000003ef 
+ 00021811  0x00003af1 random  0x0000003f 
+ 00021812  0x00003af2 and_into  0x0000000f , 0x0000003f 
+ 00021813  0x00003af3 sub  0x0000003f , 0x00000004 , 0x0000003e 
+ 00021814  0x00003af4 branch  0x00005533 , 0x00000002 
+ 00021815  0x00003af5 store  0x00000001 , 0x000003d9 
+ 00021816  0x00003af6 store  0x00000001 , 0x00000682 
+ 00021817  0x00003af7 set1  0x00000025 , 0x00000000 
+ 00021818  0x00003af8 bpatch  0x00000053 , 0x0000402a 
+ 00021819  0x00003af9 fetcht  0x00000002 , 0x000043d0 
+ 00021820  0x00003afa storet  0x00000002 , 0x000003c2 
+ 00021821  0x00003afb copy  0x00000002 , 0x00000013 
+ 00021822  0x00003afc add  0x00000022 , 0x00000007 , 0x0000003f 
+ 00021823  0x00003afd idiv  0x00000013 
+ 00021824  0x00003afe call  0x00007efd 
+ 00021825  0x00003aff remainder  0x00000011 
+ 00021826  0x00003b00 isub  0x00000011 , 0x0000003f 
+ 00021827  0x00003b01 iadd  0x00000013 , 0x0000003f 
+ 00021828  0x00003b02 fetcht  0x00000002 , 0x000043ce 
+ 00021829  0x00003b03 iadd  0x00000002 , 0x0000003f 
+ 00021830  0x00003b04 store  0x00000004 , 0x000003c4 
+ 00021831  0x00003b05 isub  0x00000022 , 0x00000011 
+ 00021832  0x00003b06 increase  0xfffffffa , 0x00000011 
+ 00021833  0x00003b07 arg  0x00002205 , 0x00000012 
+ 00021834  0x00003b08 fetch  0x00000001 , 0x000044ed 
+ 00021835  0x00003b09 nsetflag  0x00000034 , 0x00000006 , 0x00000012 
+ 00021836  0x00003b0a fetch  0x00000001 , 0x000044e6 
+ 00021837  0x00003b0b nsetflag  0x00000034 , 0x00000007 , 0x00000012 
+ 00021838  0x00003b0c copy  0x00000012 , 0x0000003f 
+ 00021839  0x00003b0d store  0x00000002 , 0x0000443e 
+ 00021840  0x00003b0e fetch  0x00000006 , 0x000044f9 
+ 00021841  0x00003b0f istore  0x00000006 , 0x00000005 
+ 00021842  0x00003b10 fetch  0x00000006 , 0x000003d0 
+ 00021843  0x00003b11 istore  0x00000006 , 0x00000005 
+ 00021844  0x00003b12 fetch  0x00000004 , 0x000003e5 
+ 00021845  0x00003b13 istore  0x00000004 , 0x00000005 
+ 00021846  0x00003b14 random  0x0000003f 
+ 00021847  0x00003b15 istore  0x00000002 , 0x00000005 
+ 00021848  0x00003b16 random  0x0000003f 
+ 00021849  0x00003b17 istore  0x00000001 , 0x00000005 
+ 00021850  0x00003b18 force  0x00000002 , 0x0000003f 
+ 00021851  0x00003b19 istore  0x00000001 , 0x00000005 
+ 00021852  0x00003b1a rshift2  0x00000011 , 0x0000003f 
+ 00021853  0x00003b1b istore  0x00000002 , 0x00000005 
+ 00021854  0x00003b1c rshift2  0x00000013 , 0x0000003f 
+ 00021855  0x00003b1d istore  0x00000002 , 0x00000005 
+ 00021856  0x00003b1e set1  0x00000025 , 0x00000000 
+ 00021857  0x00003b1f bpatch  0x00000054 , 0x0000402a 
+ 00021858  0x00003b20 fetch  0x00000002 , 0x000044f2 
+ 00021859  0x00003b21 istore  0x00000002 , 0x00000005 
+ 00021860  0x00003b22 fetch  0x00000002 , 0x000044f4 
+ 00021861  0x00003b23 istore  0x00000002 , 0x00000005 
+ 00021862  0x00003b24 fetch  0x00000005 , 0x000003f1 
+ 00021863  0x00003b25 istore  0x00000005 , 0x00000005 
+ 00021864  0x00003b26 fetch  0x00000001 , 0x000003d9 
+ 00021865  0x00003b27 arg  0x000000a0 , 0x00000002 
+ 00021866  0x00003b28 ior  0x00000002 , 0x0000003f 
+ 00021867  0x00003b29 istore  0x00000001 , 0x00000005 
+ 00021868  0x00003b2a call  0x000054bb 
+ 00021869  0x00003b2b setarg  0x0000443e 
+ 00021870  0x00003b2c add  0x0000003f , 0x00000012 , 0x00000006 
+ 00021871  0x00003b2d ifetch  0x00000003 , 0x00000006 
+ 00021872  0x00003b2e store  0x00000003 , 0x000003e9 
+ 00021873  0x00003b2f rtn 
+ 00021874  0x00003b32 set1  0x00000025 , 0x00000000 
+ 00021875  0x00003b33 bpatch  0x00000055 , 0x0000402a 
+ 00021876  0x00003b34 disable  0x00000029 
+ 00021877  0x00003b35 branch  0x00005415 
+ 00021878  0x00003b3a set1  0x00000025 , 0x00000000 
+ 00021879  0x00003b3b bpatch  0x00000056 , 0x0000402a 
+ 00021880  0x00003b3c fetch  0x00000001 , 0x000003c0 
+ 00021881  0x00003b3d rtnbit0  0x00000005 
+ 00021882  0x00003b3e fetch  0x00000002 , 0x000003da 
+ 00021883  0x00003b3f fetcht  0x00000002 , 0x000003e0 
+ 00021884  0x00003b40 isub  0x00000002 , 0x0000003f 
+ 00021885  0x00003b41 nrtn  0x00000002 
+ 00021886  0x00003b42 fetch  0x00000001 , 0x000003c0 
+ 00021887  0x00003b43 set0  0x00000005 , 0x0000003f 
+ 00021888  0x00003b44 set0  0x00000003 , 0x0000003f 
+ 00021889  0x00003b45 store  0x00000001 , 0x000003c0 
+ 00021890  0x00003b46 fetch  0x00000004 , 0x000003c4 
+ 00021891  0x00003b47 fetcht  0x00000002 , 0x000003c2 
+ 00021892  0x00003b48 isub  0x00000002 , 0x00000011 
+ 00021893  0x00003b49 set1  0x00000025 , 0x00000000 
+ 00021894  0x00003b4a bpatch  0x00000057 , 0x0000402a 
+ 00021895  0x00003b4b fetch  0x00000001 , 0x00004434 
+ 00021896  0x00003b4c store  0x00000001 , 0x000003ec 
+ 00021897  0x00003b4d ifetcht  0x00000002 , 0x00000006 
+ 00021898  0x00003b4e ifetch  0x00000002 , 0x00000006 
+ 00021899  0x00003b4f lshift2  0x0000003f , 0x0000003f 
+ 00021900  0x00003b50 store  0x00000002 , 0x000003c2 
+ 00021901  0x00003b51 lshift2  0x00000002 , 0x00000002 
+ 00021902  0x00003b52 iadd  0x00000002 , 0x0000003f 
+ 00021903  0x00003b53 ifetcht  0x00000004 , 0x00000006 
+ 00021904  0x00003b54 storet  0x00000004 , 0x000003ed 
+ 00021905  0x00003b55 iadd  0x00000011 , 0x0000003f 
+ 00021906  0x00003b56 store  0x00000004 , 0x000003c4 
+ 00021907  0x00003b57 branch  0x00005a2b 
+ 00021908  0x00003b5a set1  0x00000025 , 0x00000000 
+ 00021909  0x00003b5b bpatch  0x00000058 , 0x0000402b 
+ 00021910  0x00003b5c fetch  0x00000001 , 0x000003c0 
+ 00021911  0x00003b5d rtnbit0  0x00000006 
+ 00021912  0x00003b5e fetch  0x00000002 , 0x000003da 
+ 00021913  0x00003b5f fetcht  0x00000002 , 0x000003e0 
+ 00021914  0x00003b60 isub  0x00000002 , 0x0000003f 
+ 00021915  0x00003b61 nrtn  0x00000002 
+ 00021916  0x00003b62 fetch  0x00000001 , 0x000003c0 
+ 00021917  0x00003b63 set0  0x00000006 , 0x0000003f 
+ 00021918  0x00003b64 store  0x00000001 , 0x000003c0 
+ 00021919  0x00003b65 fetch  0x00000005 , 0x0000442f 
+ 00021920  0x00003b66 store  0x00000005 , 0x000003f1 
+ 00021921  0x00003b67 branch  0x00005447 
+ 00021922  0x00003b6b set1  0x00000025 , 0x00000000 
+ 00021923  0x00003b6c bpatch  0x00000059 , 0x0000402b 
+ 00021924  0x00003b6d call  0x00005a0b 
+ 00021925  0x00003b6e call  0x000055b7 
+ 00021926  0x00003b6f fetch  0x00000001 , 0x00000340 
+ 00021927  0x00003b70 rshift  0x0000003f , 0x0000003f 
+ 00021928  0x00003b71 ixor  0x00000002 , 0x0000003f 
+ 00021929  0x00003b72 isolate1  0x00000002 , 0x0000003f 
+ 00021930  0x00003b73 setflag  0x00000001 , 0x0000000f , 0x00000000 
+ 00021931  0x00003b74 fetch  0x00000001 , 0x00000341 
+ 00021932  0x00003b75 branch  0x000055b2 , 0x00000034 
+ 00021933  0x00003b76 fetch  0x00000001 , 0x000003c0 
+ 00021934  0x00003b77 bbit0  0x00000004 , 0x000055b2 
+ 00021935  0x00003b78 call  0x00007599 
+ 00021936  0x00003b79 call  0x0000750e 
+ 00021937  0x00003b7a nrtn  0x00000034 
+ 00021938  0x00003b7c rtnmark1  0x0000000f 
+ 00021939  0x00003b7d fetcht  0x00000001 , 0x000003d7 
+ 00021940  0x00003b7e setflip  0x00000002 , 0x00000002 
+ 00021941  0x00003b7f storet  0x00000001 , 0x000003d7 
+ 00021942  0x00003b80 branch  0x000058ac 
+ 00021943  0x00003b83 set1  0x00000025 , 0x00000000 
+ 00021944  0x00003b84 bpatch  0x0000005a , 0x0000402b 
+ 00021945  0x00003b85 fetcht  0x00000001 , 0x000003d7 
+ 00021946  0x00003b86 isolate0  0x00000005 , 0x00000002 
+ 00021947  0x00003b87 rtn  0x00000001 
+ 00021948  0x00003b88 fetch  0x00000001 , 0x00000340 
+ 00021949  0x00003b89 lshift  0x0000003f , 0x0000003f 
+ 00021950  0x00003b8a ixor  0x00000002 , 0x0000003f 
+ 00021951  0x00003b8b rtnbit0  0x00000003 
+ 00021952  0x00003b8c set0  0x00000005 , 0x00000002 
+ 00021953  0x00003b8d setflip  0x00000003 , 0x00000002 
+ 00021954  0x00003b8e storet  0x00000001 , 0x000003d7 
+ 00021955  0x00003b8f compare  0x00000003 , 0x00000002 , 0x00000003 
+ 00021956  0x00003b90 nrtn  0x00000001 
+ 00021957  0x00003b91 fetch  0x00000001 , 0x00004440 
+ 00021958  0x00003b92 rtnne  0x00000005 
+ 00021959  0x00003b93 fetch  0x00000001 , 0x000003c0 
+ 00021960  0x00003b94 set1  0x00000004 , 0x0000003f 
+ 00021961  0x00003b95 store  0x00000001 , 0x000003c0 
+ 00021962  0x00003b96 rtn 
+ 00021963  0x00003b99 set1  0x00000025 , 0x00000000 
+ 00021964  0x00003b9a bpatch  0x0000005b , 0x0000402b 
+ 00021965  0x00003b9b call  0x0000542c 
+ 00021966  0x00003b9c call  0x00005474 
+ 00021967  0x00003b9d fetch  0x00000001 , 0x00000001 
+ 00021968  0x00003b9e increase  0x00000001 , 0x0000003f 
+ 00021969  0x00003b9f store  0x00000001 , 0x00000001 
+ 00021970  0x00003ba0 rtn 
+ 00021971  0x00003ba3 set1  0x00000025 , 0x00000000 
+ 00021972  0x00003ba4 bpatch  0x0000005c , 0x0000402b 
+ 00021973  0x00003ba5 fetch  0x00000001 , 0x000043d2 
+ 00021974  0x00003ba6 rtnne  0x00000001 
+ 00021975  0x00003ba7 arg  0x00000003 , 0x00000007 
+ 00021976  0x00003ba8 call  0x00007e53 
+ 00021977  0x00003ba9 nrtn  0x00000034 
+ 00021978  0x00003baa fetch  0x00000002 , 0x000043d3 
+ 00021979  0x00003bab fetcht  0x00000002 , 0x000043d5 
+ 00021980  0x00003bac isub  0x00000002 , 0x0000003f 
+ 00021981  0x00003bad arg  0x00000003 , 0x00000007 
+ 00021982  0x00003bae call  0x00007e4c 
+ 00021983  0x00003baf disable  0x00000029 
+ 00021984  0x00003bb0 call  0x00005572 
+ 00021985  0x00003bb1 call  0x000055cb 
+ 00021986  0x00003bb2 nrtn  0x0000002d 
+ 00021987  0x00003bb3 set1  0x00000025 , 0x00000000 
+ 00021988  0x00003bb4 bpatch  0x0000005d , 0x0000402b 
+ 00021989  0x00003bb5 fetch  0x00000006 , 0x00000342 
+ 00021990  0x00003bb6 store  0x00000006 , 0x000003d0 
+ 00021991  0x00003bb7 call  0x000042a7 
+ 00021992  0x00003bb8 call  0x00005b39 
+ 00021993  0x00003bba fetch  0x00000001 , 0x00000002 
+ 00021994  0x00003bbb increase  0x00000001 , 0x0000003f 
+ 00021995  0x00003bbc store  0x00000001 , 0x00000002 
+ 00021996  0x00003bbd call  0x000055f9 
+ 00021997  0x00003bbe rtn  0x00000029 
+ 00021998  0x00003bbf call  0x000048d1 
+ 00021999  0x00003bc0 call  0x00005507 
+ 00022000  0x00003bc1 nrtn  0x0000002d 
+ 00022001  0x00003bc2 set1  0x00000025 , 0x00000000 
+ 00022002  0x00003bc3 bpatch  0x0000005e , 0x0000402b 
+ 00022003  0x00003bc4 fetch  0x00000001 , 0x00000004 
+ 00022004  0x00003bc5 increase  0x00000001 , 0x0000003f 
+ 00022005  0x00003bc6 store  0x00000001 , 0x00000004 
+ 00022006  0x00003bc7 fetch  0x00000009 , 0x00000348 
+ 00022007  0x00003bc8 store  0x00000009 , 0x00000103 
+ 00022008  0x00003bc9 branch  0x000048d1 
+ 00022009  0x00003bcc set1  0x00000025 , 0x00000000 
+ 00022010  0x00003bcd bpatch  0x0000005f , 0x0000402b 
+ 00022011  0x00003bce fetch  0x00000001 , 0x0000041c 
+ 00022012  0x00003bcf rtnne  0x0000001b , 0x0000003f 
+ 00022013  0x00003bd0 fetch  0x00000006 , 0x000003d0 
+ 00022014  0x00003bd1 fetcht  0x00000006 , 0x000044e7 
+ 00022015  0x00003bd2 isub  0x00000002 , 0x0000003e 
+ 00022016  0x00003bd3 nrtn  0x00000005 
+ 00022017  0x00003bd4 call  0x000032d6 
+ 00022018  0x00003bd5 nrtn  0x00000005 
+ 00022019  0x00003bd6 call  0x00005528 
+ 00022020  0x00003bd7 call  0x0000535f 
+ 00022021  0x00003bd8 set1  0x00000025 , 0x00000000 
+ 00022022  0x00003bd9 bpatch  0x00000060 , 0x0000402c 
+ 00022023  0x00003bda jam  0x00000000 , 0x00004272 
+ 00022024  0x00003bdb jam  0x00000000 , 0x000003f8 
+ 00022025  0x00003bdc fetch  0x00000001 , 0x00004132 
+ 00022026  0x00003bdd bne  0x00000004 , 0x0000560c 
+ 00022027  0x00003bde jam  0x00000021 , 0x000003e3 
+ 00022028  0x00003be0 arg  0x00000000 , 0x00000002 
+ 00022029  0x00003be1 call  0x000048ea 
+ 00022030  0x00003be2 jam  0x00000000 , 0x000043d2 
+ 00022031  0x00003be3 jam  0x00000000 , 0x0000041c 
+ 00022032  0x00003be4 jam  0x0000002c , 0x00000b7d 
+ 00022033  0x00003be5 call  0x00005620 
+ 00022034  0x00003be6 branch  0x000032bd 
+ 00022035  0x00003be9 arg  0x00000001 , 0x00000011 
+ 00022036  0x00003bea fetch  0x00000001 , 0x00000340 
+ 00022037  0x00003beb rtnbit1  0x00000006 
+ 00022038  0x00003bec arg  0x00000000 , 0x00000011 
+ 00022039  0x00003bed rtn 
+ 00022040  0x00003bf0 arg  0x000044ff , 0x00000006 
+ 00022041  0x00003bf1 branch  0x00007fb2 
+ 00022042  0x00003bf4 arg  0x000044ff , 0x00000011 
+ 00022043  0x00003bf5 branch  0x00007fac 
+ 00022044  0x00003bf8 arg  0x000044ff , 0x00000011 
+ 00022045  0x00003bf9 branch  0x00007fae 
+ 00022046  0x00003bfc arg  0x000044ff , 0x00000011 
+ 00022047  0x00003bfd branch  0x00007fb0 
+ 00022048  0x00003c00 arg  0x000044ff , 0x00000011 
+ 00022049  0x00003c01 branch  0x00007f92 
+ 00022050  0x00003c04 set1  0x00000025 , 0x00000000 
+ 00022051  0x00003c05 bpatch  0x00000061 , 0x0000402c 
+ 00022052  0x00003c06 fetch  0x00000001 , 0x000003d7 
+ 00022053  0x00003c07 rtnbit1  0x00000005 
+ 00022054  0x00003c08 arg  0x000044ff , 0x00000011 
+ 00022055  0x00003c09 call  0x00007f9f 
+ 00022056  0x00003c0a nbranch  0x00005630 , 0x00000034 
+ 00022057  0x00003c0b fetch  0x00000001 , 0x00004132 
+ 00022058  0x00003c0c bne  0x00000001 , 0x00005890 
+ 00022059  0x00003c0d arg  0x00000000 , 0x00000001 
+ 00022060  0x00003c0e call  0x000044a3 
+ 00022061  0x00003c0f copy  0x00000001 , 0x0000003f 
+ 00022062  0x00003c10 nrtn  0x00000034 
+ 00022063  0x00003c11 branch  0x00005890 
+ 00022064  0x00003c13 copy  0x0000003f , 0x00000002 
+ 00022065  0x00003c14 set1  0x00000025 , 0x00000000 
+ 00022066  0x00003c15 bpatch  0x00000062 , 0x0000402c 
+ 00022067  0x00003c16 copy  0x00000002 , 0x0000003f 
+ 00022068  0x00003c17 bbit0  0x00000005 , 0x0000564b 
+ 00022069  0x00003c18 force  0x00000003 , 0x00000001 
+ 00022070  0x00003c19 set0  0x00000005 , 0x0000003f 
+ 00022071  0x00003c1a store  0x00000001 , 0x00004440 
+ 00022072  0x00003c1b set1  0x00000025 , 0x00000000 
+ 00022073  0x00003c1c bpatch  0x00000063 , 0x0000402c 
+ 00022074  0x00003c1d fetch  0x00000001 , 0x00004440 
+ 00022075  0x00003c1e beq  0x00000000 , 0x0000568f 
+ 00022076  0x00003c1f beq  0x00000001 , 0x00005691 
+ 00022077  0x00003c20 beq  0x00000002 , 0x00005693 
+ 00022078  0x00003c21 beq  0x00000003 , 0x00005695 
+ 00022079  0x00003c22 beq  0x00000004 , 0x000056a6 
+ 00022080  0x00003c23 beq  0x00000005 , 0x000056b7 
+ 00022081  0x00003c24 beq  0x00000006 , 0x000056b9 
+ 00022082  0x00003c25 beq  0x00000007 , 0x000056bf 
+ 00022083  0x00003c26 beq  0x00000008 , 0x000056c1 
+ 00022084  0x00003c27 beq  0x00000009 , 0x000056c1 
+ 00022085  0x00003c28 beq  0x0000000a , 0x000056c5 
+ 00022086  0x00003c29 beq  0x0000000b , 0x000056c7 
+ 00022087  0x00003c2a beq  0x0000000c , 0x000056c9 
+ 00022088  0x00003c2b beq  0x0000000d , 0x000056cf 
+ 00022089  0x00003c2c beq  0x0000000f , 0x000056d1 
+ 00022090  0x00003c2d branch  0x00003bf1 
+ 00022091  0x00003c30 jam  0x00000000 , 0x00004443 
+ 00022092  0x00003c31 force  0x00000002 , 0x00000001 
+ 00022093  0x00003c32 bbit0  0x00000006 , 0x00005662 
+ 00022094  0x00003c33 beq  0x00000052 , 0x00005662 
+ 00022095  0x00003c34 beq  0x000000d2 , 0x00005662 
+ 00022096  0x00003c35 jam  0x00000006 , 0x00004442 
+ 00022097  0x00003c36 set0  0x00000006 , 0x0000003f 
+ 00022098  0x00003c37 store  0x00000001 , 0x00004444 
+ 00022099  0x00003c39 set1  0x00000025 , 0x00000000 
+ 00022100  0x00003c3a bpatch  0x00000064 , 0x0000402c 
+ 00022101  0x00003c3b fetch  0x00000001 , 0x00004444 
+ 00022102  0x00003c3d beq  0x00000001 , 0x000056e5 
+ 00022103  0x00003c3e beq  0x00000002 , 0x000056ed 
+ 00022104  0x00003c3f beq  0x00000003 , 0x000056f5 
+ 00022105  0x00003c40 beq  0x00000004 , 0x000056fa 
+ 00022106  0x00003c41 beq  0x00000005 , 0x000056ff 
+ 00022107  0x00003c42 beq  0x00000006 , 0x00005701 
+ 00022108  0x00003c43 beq  0x00000007 , 0x0000570b 
+ 00022109  0x00003c44 beq  0x00000008 , 0x00005712 
+ 00022110  0x00003c45 beq  0x00000009 , 0x00005717 
+ 00022111  0x00003c46 beq  0x0000000a , 0x0000571e 
+ 00022112  0x00003c47 beq  0x0000000b , 0x00005721 
+ 00022113  0x00003c48 branch  0x00003bf1 
+ 00022114  0x00003c4b jam  0x00000004 , 0x00004442 
+ 00022115  0x00003c4c store  0x00000001 , 0x00004444 
+ 00022116  0x00003c4d set1  0x00000025 , 0x00000000 
+ 00022117  0x00003c4e bpatch  0x00000065 , 0x0000402c 
+ 00022118  0x00003c50 fetch  0x00000001 , 0x00004444 
+ 00022119  0x00003c51 beq  0x00000001 , 0x00005729 
+ 00022120  0x00003c52 beq  0x00000002 , 0x0000572f 
+ 00022121  0x00003c53 beq  0x00000003 , 0x0000572f 
+ 00022122  0x00003c54 beq  0x00000004 , 0x00005732 
+ 00022123  0x00003c55 beq  0x00000005 , 0x00005737 
+ 00022124  0x00003c56 beq  0x00000006 , 0x00005748 
+ 00022125  0x00003c57 beq  0x00000007 , 0x00005752 
+ 00022126  0x00003c58 beq  0x00000008 , 0x00005793 
+ 00022127  0x00003c59 beq  0x00000009 , 0x0000579b 
+ 00022128  0x00003c5a beq  0x0000000a , 0x000057be 
+ 00022129  0x00003c5b beq  0x0000000b , 0x000057c6 
+ 00022130  0x00003c5c beq  0x0000000c , 0x000057d1 
+ 00022131  0x00003c5d beq  0x0000000d , 0x000057d6 
+ 00022132  0x00003c5e beq  0x0000000e , 0x000057e5 
+ 00022133  0x00003c5f beq  0x0000000f , 0x000057ec 
+ 00022134  0x00003c60 beq  0x00000010 , 0x00005812 
+ 00022135  0x00003c61 beq  0x00000011 , 0x0000581a 
+ 00022136  0x00003c62 beq  0x00000012 , 0x0000583e 
+ 00022137  0x00003c63 beq  0x00000013 , 0x00005845 
+ 00022138  0x00003c64 beq  0x00000016 , 0x0000585e 
+ 00022139  0x00003c65 beq  0x00000017 , 0x00005860 
+ 00022140  0x00003c66 beq  0x00000018 , 0x00005862 
+ 00022141  0x00003c67 beq  0x00000019 , 0x00005864 
+ 00022142  0x00003c68 beq  0x0000001b , 0x00005873 
+ 00022143  0x00003c69 beq  0x0000001d , 0x00005882 
+ 00022144  0x00003c6a beq  0x0000001e , 0x00005884 
+ 00022145  0x00003c6b beq  0x00000052 , 0x00005886 
+ 00022146  0x00003c6c beq  0x000000d2 , 0x00005888 
+ 00022147  0x00003c6d beq  0x0000009e , 0x00005686 
+ 00022148  0x00003c6e beq  0x0000009f , 0x00005688 
+ 00022149  0x00003c6f branch  0x00003bf1 
+ 00022150  0x00003c72 jam  0x00000010 , 0x00000b7d 
+ 00022151  0x00003c73 call  0x00005620 
+ 00022152  0x00003c76 setarg  0x00000011 
+ 00022153  0x00003c77 store  0x00000002 , 0x0000443e 
+ 00022154  0x00003c78 fetch  0x00000001 , 0x000003d7 
+ 00022155  0x00003c79 set1  0x00000005 , 0x0000003f 
+ 00022156  0x00003c7a store  0x00000001 , 0x000003d7 
+ 00022157  0x00003c7b jam  0x00000012 , 0x00000b7d 
+ 00022158  0x00003c7c branch  0x00005620 
+ 00022159  0x00003c7f force  0x0000000c , 0x00000002 
+ 00022160  0x00003c80 branch  0x00005892 
+ 00022161  0x00003c83 force  0x00000008 , 0x00000002 
+ 00022162  0x00003c84 branch  0x00005892 
+ 00022163  0x00003c87 force  0x00000002 , 0x00000002 
+ 00022164  0x00003c88 branch  0x00005892 
+ 00022165  0x00003c8b force  0x00000000 , 0x0000003f 
+ 00022166  0x00003c8c istore  0x00000008 , 0x00000005 
+ 00022167  0x00003c8d istore  0x00000002 , 0x00000005 
+ 00022168  0x00003c8e copy  0x00000005 , 0x00000002 
+ 00022169  0x00003c8f arg  0x00000380 , 0x00000005 
+ 00022170  0x00003c90 force  0x00000008 , 0x00000039 
+ 00022171  0x00003c91 call  0x00006227 
+ 00022172  0x00003c92 fetch  0x00000008 , 0x00000380 
+ 00022173  0x00003c93 istore  0x00000008 , 0x00000002 
+ 00022174  0x00003c94 copy  0x00000005 , 0x00000002 
+ 00022175  0x00003c95 arg  0x00004473 , 0x00000005 
+ 00022176  0x00003c96 force  0x00000004 , 0x00000039 
+ 00022177  0x00003c97 call  0x00006227 
+ 00022178  0x00003c98 fetch  0x00000004 , 0x00004473 
+ 00022179  0x00003c99 istore  0x00000004 , 0x00000002 
+ 00022180  0x00003c9a force  0x00000017 , 0x00000002 
+ 00022181  0x00003c9b branch  0x00005892 
+ 00022182  0x00003c9e copy  0x00000005 , 0x00000002 
+ 00022183  0x00003c9f arg  0x00000388 , 0x00000005 
+ 00022184  0x00003ca0 force  0x00000008 , 0x00000039 
+ 00022185  0x00003ca1 call  0x00006227 
+ 00022186  0x00003ca2 fetch  0x00000008 , 0x00000388 
+ 00022187  0x00003ca3 istore  0x00000008 , 0x00000002 
+ 00022188  0x00003ca4 copy  0x00000005 , 0x00000002 
+ 00022189  0x00003ca5 arg  0x00004477 , 0x00000005 
+ 00022190  0x00003ca6 force  0x00000004 , 0x00000039 
+ 00022191  0x00003ca7 call  0x00006227 
+ 00022192  0x00003ca8 fetch  0x00000004 , 0x00004477 
+ 00022193  0x00003ca9 istore  0x00000004 , 0x00000002 
+ 00022194  0x00003caa call  0x000074b6 
+ 00022195  0x00003cab jam  0x00000025 , 0x00000b7d 
+ 00022196  0x00003cac call  0x00005620 
+ 00022197  0x00003cad force  0x0000000d , 0x00000002 
+ 00022198  0x00003cae branch  0x00005892 
+ 00022199  0x00003cb1 force  0x00000001 , 0x00000002 
+ 00022200  0x00003cb2 branch  0x00005892 
+ 00022201  0x00003cb5 force  0x00000001 , 0x00000002 
+ 00022202  0x00003cb6 branch  0x00005892 , 0x00000029 
+ 00022203  0x00003cb7 jam  0x00000046 , 0x00000b7d 
+ 00022204  0x00003cb8 call  0x00005620 
+ 00022205  0x00003cb9 force  0x00000001 , 0x00000002 
+ 00022206  0x00003cba branch  0x00005892 
+ 00022207  0x00003cbd force  0x00000002 , 0x00000002 
+ 00022208  0x00003cbe branch  0x00005892 
+ 00022209  0x00003cc1 setarg  0x00000001 
+ 00022210  0x00003cc2 istore  0x00000008 , 0x00000005 
+ 00022211  0x00003cc3 force  0x00000009 , 0x00000002 
+ 00022212  0x00003cc4 branch  0x00005892 
+ 00022213  0x00003cc7 force  0x00000006 , 0x00000002 
+ 00022214  0x00003cc8 branch  0x00005892 
+ 00022215  0x00003ccb force  0x00000006 , 0x00000002 
+ 00022216  0x00003ccc branch  0x00005892 
+ 00022217  0x00003ccf setarg  0x00000a06 
+ 00022218  0x00003cd0 istore  0x00000003 , 0x00000005 
+ 00022219  0x00003cd1 setarg  0x00001d87 
+ 00022220  0x00003cd2 istore  0x00000002 , 0x00000005 
+ 00022221  0x00003cd3 force  0x00000006 , 0x00000002 
+ 00022222  0x00003cd4 branch  0x00005892 
+ 00022223  0x00003cd7 force  0x00000002 , 0x00000002 
+ 00022224  0x00003cd8 branch  0x00005892 
+ 00022225  0x00003cdb increase  0xffffffff , 0x00000005 
+ 00022226  0x00003cdc setarg  0x0000000c 
+ 00022227  0x00003cdd istore  0x00000002 , 0x00000005 
+ 00022228  0x00003cde setarg  0x00000005 
+ 00022229  0x00003cdf istore  0x00000002 , 0x00000005 
+ 00022230  0x00003ce0 setarg  0x0000b412 
+ 00022231  0x00003ce1 istore  0x00000002 , 0x00000005 
+ 00022232  0x00003ce2 setarg  0x00000008 
+ 00022233  0x00003ce3 istore  0x00000002 , 0x00000005 
+ 00022234  0x00003ce4 setarg  0x00000008 
+ 00022235  0x00003ce5 istore  0x00000002 , 0x00000005 
+ 00022236  0x00003ce6 setarg  0x00000010 
+ 00022237  0x00003ce7 istore  0x00000002 , 0x00000005 
+ 00022238  0x00003ce8 setarg  0x00000000 
+ 00022239  0x00003ce9 istore  0x00000002 , 0x00000005 
+ 00022240  0x00003cea setarg  0x0000012c 
+ 00022241  0x00003ceb istore  0x00000002 , 0x00000005 
+ 00022242  0x00003cec call  0x0000588a 
+ 00022243  0x00003ced force  0x00000002 , 0x00000001 
+ 00022244  0x00003cee branch  0x00005892 
+ 00022245  0x00003cf1 setarg  0x01000401 
+ 00022246  0x00003cf2 store  0x00000004 , 0x000044ae 
+ 00022247  0x00003cf3 setarg  0x00070710 
+ 00022248  0x00003cf4 istore  0x00000003 , 0x00000005 
+ 00022249  0x00003cf5 fetch  0x00000006 , 0x000044af 
+ 00022250  0x00003cf6 store  0x00000006 , 0x00004445 
+ 00022251  0x00003cf7 force  0x0000000b , 0x00000002 
+ 00022252  0x00003cf8 branch  0x00005892 
+ 00022253  0x00003cfb setarg  0x01000302 
+ 00022254  0x00003cfc store  0x00000004 , 0x000044b5 
+ 00022255  0x00003cfd setarg  0x00010410 
+ 00022256  0x00003cfe istore  0x00000003 , 0x00000005 
+ 00022257  0x00003cff fetch  0x00000006 , 0x000044b6 
+ 00022258  0x00003d00 store  0x00000006 , 0x00004445 
+ 00022259  0x00003d01 force  0x0000000b , 0x00000002 
+ 00022260  0x00003d02 branch  0x00005892 
+ 00022261  0x00003d05 call  0x000074b0 
+ 00022262  0x00003d06 arg  0x00004445 , 0x00000005 
+ 00022263  0x00003d07 call  0x000075a3 
+ 00022264  0x00003d08 force  0x00000015 , 0x00000002 
+ 00022265  0x00003d09 branch  0x00005892 
+ 00022266  0x00003d0c fetch  0x00000008 , 0x000003b0 
+ 00022267  0x00003d0d branch  0x000056fd , 0x00000029 
+ 00022268  0x00003d0e fetch  0x00000008 , 0x0000449c 
+ 00022269  0x00003d11 call  0x00005723 
+ 00022270  0x00003d12 branch  0x00005892 
+ 00022271  0x00003d15 force  0x00000006 , 0x00000002 
+ 00022272  0x00003d16 branch  0x00005892 
+ 00022273  0x00003d19 jam  0x00000029 , 0x00000b7d 
+ 00022274  0x00003d1a call  0x00007c27 
+ 00022275  0x00003d1b jam  0x00000047 , 0x00000b7d 
+ 00022276  0x00003d1c call  0x00005620 
+ 00022277  0x00003d1d arg  0x000003a0 , 0x00000005 
+ 00022278  0x00003d1e call  0x00006226 
+ 00022279  0x00003d1f fetch  0x00000008 , 0x000003a0 
+ 00022280  0x00003d20 fetch  0x00000008 , 0x0000447b 
+ 00022281  0x00003d21 call  0x00005723 
+ 00022282  0x00003d22 branch  0x00005892 
+ 00022283  0x00003d25 jam  0x00000048 , 0x00000b7d 
+ 00022284  0x00003d26 call  0x00005620 
+ 00022285  0x00003d27 arg  0x00004445 , 0x00000005 
+ 00022286  0x00003d28 force  0x00000008 , 0x00000039 
+ 00022287  0x00003d29 call  0x00006227 
+ 00022288  0x00003d2a force  0x0000000f , 0x00000002 
+ 00022289  0x00003d2b branch  0x00005892 
+ 00022290  0x00003d2e jam  0x00000049 , 0x00000b7d 
+ 00022291  0x00003d2f call  0x00005620 
+ 00022292  0x00003d30 arg  0x00004445 , 0x00000005 
+ 00022293  0x00003d31 call  0x00006226 
+ 00022294  0x00003d32 branch  0x0000588a 
+ 00022295  0x00003d35 jam  0x0000004a , 0x00000b7d 
+ 00022296  0x00003d36 call  0x00005620 
+ 00022297  0x00003d37 force  0x00000000 , 0x0000003f 
+ 00022298  0x00003d38 store  0x00000001 , 0x00004445 
+ 00022299  0x00003d39 fetch  0x00000006 , 0x000044f9 
+ 00022300  0x00003d3a istore  0x00000006 , 0x00000005 
+ 00022301  0x00003d3b branch  0x0000588a 
+ 00022302  0x00003d3e arg  0x00004445 , 0x00000005 
+ 00022303  0x00003d3f call  0x00006226 
+ 00022304  0x00003d40 branch  0x0000588a 
+ 00022305  0x00003d43 force  0x00000006 , 0x00000002 
+ 00022306  0x00003d44 branch  0x00005892 
+ 00022307  0x00003d47 store  0x00000008 , 0x00004445 
+ 00022308  0x00003d48 ifetch  0x00000008 , 0x00000006 
+ 00022309  0x00003d49 istore  0x00000008 , 0x00000005 
+ 00022310  0x00003d4a force  0x00000015 , 0x00000002 
+ 00022311  0x00003d4b rtn 
+ 00022312  0x00003d4e jam  0x0000000a , 0x000003fc 
+ 00022313  0x00003d50 jam  0x00000001 , 0x00004444 
+ 00022314  0x00003d51 fetch  0x00000003 , 0x000003f9 
+ 00022315  0x00003d52 store  0x00000003 , 0x00004445 
+ 00022316  0x00003d53 fetch  0x00000001 , 0x000003fc 
+ 00022317  0x00003d54 istore  0x00000001 , 0x00000005 
+ 00022318  0x00003d55 branch  0x0000588a 
+ 00022319  0x00003d58 setarg  0x00000017 
+ 00022320  0x00003d59 istore  0x00000002 , 0x00000005 
+ 00022321  0x00003d5a branch  0x0000588a 
+ 00022322  0x00003d5d fetch  0x00000002 , 0x000044bc 
+ 00022323  0x00003d5e store  0x00000002 , 0x00004445 
+ 00022324  0x00003d5f fetch  0x00000002 , 0x000044be 
+ 00022325  0x00003d60 istore  0x00000002 , 0x00000005 
+ 00022326  0x00003d61 branch  0x0000588a 
+ 00022327  0x00003d66 force  0x00000001 , 0x0000003f 
+ 00022328  0x00003d67 store  0x00000001 , 0x00004445 
+ 00022329  0x00003d68 call  0x00005a74 
+ 00022330  0x00003d6a call  0x00005a7d 
+ 00022331  0x00003d6b branch  0x00005746 , 0x00000034 
+ 00022332  0x00003d6c nbranch  0x00005744 , 0x00000002 
+ 00022333  0x00003d6d disable  0x00000028 
+ 00022334  0x00003d6e istore  0x00000002 , 0x00000005 
+ 00022335  0x00003d6f ifetch  0x00000002 , 0x00000006 
+ 00022336  0x00003d70 istore  0x00000002 , 0x00000005 
+ 00022337  0x00003d72 ifetch  0x00000001 , 0x00000006 
+ 00022338  0x00003d73 iadd  0x00000006 , 0x00000006 
+ 00022339  0x00003d74 branch  0x0000573a 
+ 00022340  0x00003d76 increase  0x00000002 , 0x00000006 
+ 00022341  0x00003d77 branch  0x00005741 
+ 00022342  0x00003d79 branch  0x00005728 , 0x00000028 
+ 00022343  0x00003d7a branch  0x0000588a 
+ 00022344  0x00003d7e fetch  0x00000002 , 0x000044bc 
+ 00022345  0x00003d7f branch  0x00005688 , 0x00000034 
+ 00022346  0x00003d80 store  0x00000002 , 0x00004445 
+ 00022347  0x00003d81 fetch  0x00000002 , 0x000044be 
+ 00022348  0x00003d83 istore  0x00000002 , 0x00000005 
+ 00022349  0x00003d84 fetch  0x00000002 , 0x000044c4 
+ 00022350  0x00003d86 istore  0x00000002 , 0x00000005 
+ 00022351  0x00003d87 fetch  0x00000002 , 0x000044c0 
+ 00022352  0x00003d89 istore  0x00000002 , 0x00000005 
+ 00022353  0x00003d8a branch  0x0000588a 
+ 00022354  0x00003d8e call  0x0000577b 
+ 00022355  0x00003d8f rtn  0x00000028 
+ 00022356  0x00003d90 fetcht  0x00000002 , 0x000044c4 
+ 00022357  0x00003d91 setarg  0x00002800 
+ 00022358  0x00003d92 isub  0x00000002 , 0x0000003e 
+ 00022359  0x00003d93 branch  0x00005762 , 0x00000005 
+ 00022360  0x00003d94 setarg  0x00002801 
+ 00022361  0x00003d95 isub  0x00000002 , 0x0000003e 
+ 00022362  0x00003d96 branch  0x00005728 , 0x00000005 
+ 00022363  0x00003d97 setarg  0x00002802 
+ 00022364  0x00003d98 isub  0x00000002 , 0x0000003e 
+ 00022365  0x00003d99 branch  0x00005728 , 0x00000005 
+ 00022366  0x00003d9a setarg  0x00002803 
+ 00022367  0x00003d9b isub  0x00000002 , 0x0000003e 
+ 00022368  0x00003d9c branch  0x00005728 , 0x00000005 
+ 00022369  0x00003d9d branch  0x00005728 
+ 00022370  0x00003da0 fetcht  0x00000002 , 0x000044c0 
+ 00022371  0x00003da1 increase  0x00000002 , 0x00000006 
+ 00022372  0x00003da2 ifetch  0x00000001 , 0x00000006 
+ 00022373  0x00003da3 icopy  0x00000013 
+ 00022374  0x00003da4 increase  0x00000001 , 0x00000013 
+ 00022375  0x00003da7 increase  0xffffffff , 0x00000013 
+ 00022376  0x00003da8 branch  0x00005728 , 0x00000005 
+ 00022377  0x00003da9 ifetch  0x00000002 , 0x00000006 
+ 00022378  0x00003daa isub  0x00000002 , 0x0000003e 
+ 00022379  0x00003dab branch  0x0000576e , 0x00000005 
+ 00022380  0x00003dac increase  0x00000004 , 0x00000006 
+ 00022381  0x00003dad branch  0x00005767 
+ 00022382  0x00003db0 ifetch  0x00000002 , 0x00000006 
+ 00022383  0x00003db1 icopy  0x00000011 
+ 00022384  0x00003db2 ifetch  0x00000002 , 0x00000006 
+ 00022385  0x00003db3 icopy  0x00000012 
+ 00022386  0x00003db4 call  0x00005785 
+ 00022387  0x00003db5 rtn  0x00000028 
+ 00022388  0x00003db6 jam  0x00000007 , 0x00004444 
+ 00022389  0x00003db7 deposit  0x00000011 
+ 00022390  0x00003db8 store  0x00000002 , 0x00004445 
+ 00022391  0x00003db9 deposit  0x00000012 
+ 00022392  0x00003dba istore  0x00000002 , 0x00000005 
+ 00022393  0x00003dbb force  0x00000009 , 0x00000002 
+ 00022394  0x00003dbc branch  0x00005892 
+ 00022395  0x00003dc2 disable  0x00000028 
+ 00022396  0x00003dc3 fetcht  0x00000002 , 0x000044bc 
+ 00022397  0x00003dc4 fetch  0x00000002 , 0x000044be 
+ 00022398  0x00003dc5 isub  0x00000002 , 0x0000003e 
+ 00022399  0x00003dc6 nbranch  0x00005782 , 0x00000002 
+ 00022400  0x00003dc7 deposit  0x00000002 
+ 00022401  0x00003dc8 rtnne  0x00000000 
+ 00022402  0x00003dcb enable  0x00000028 
+ 00022403  0x00003dcd jam  0x00000001 , 0x000003fc 
+ 00022404  0x00003dce branch  0x00005729 
+ 00022405  0x00003dd1 disable  0x00000028 
+ 00022406  0x00003dd2 fetcht  0x00000002 , 0x000044bc 
+ 00022407  0x00003dd3 deposit  0x00000011 
+ 00022408  0x00003dd4 isub  0x00000002 , 0x0000003e 
+ 00022409  0x00003dd5 nbranch  0x00005791 , 0x00000002 
+ 00022410  0x00003dd6 fetch  0x00000002 , 0x000044be 
+ 00022411  0x00003dd7 isub  0x00000012 , 0x0000003e 
+ 00022412  0x00003dd8 nbranch  0x00005791 , 0x00000002 
+ 00022413  0x00003dd9 deposit  0x00000012 
+ 00022414  0x00003dda isub  0x00000011 , 0x0000003e 
+ 00022415  0x00003ddb nbranch  0x00005791 , 0x00000002 
+ 00022416  0x00003ddc rtn 
+ 00022417  0x00003ddf enable  0x00000028 
+ 00022418  0x00003de0 branch  0x00005728 
+ 00022419  0x00003de4 fetch  0x00000002 , 0x000044bc 
+ 00022420  0x00003de6 istore  0x00000002 , 0x00000005 
+ 00022421  0x00003de7 fetch  0x00000002 , 0x000044be 
+ 00022422  0x00003de9 istore  0x00000002 , 0x00000005 
+ 00022423  0x00003dea fetch  0x00000002 , 0x000044c0 
+ 00022424  0x00003deb istore  0x00000002 , 0x00000005 
+ 00022425  0x00003dec force  0x0000000b , 0x00000002 
+ 00022426  0x00003ded branch  0x00005892 
+ 00022427  0x00003df1 fetcht  0x00000002 , 0x000044c0 
+ 00022428  0x00003df2 setarg  0x00002803 
+ 00022429  0x00003df3 isub  0x00000002 , 0x0000003e 
+ 00022430  0x00003df4 setarg  0x00000007 
+ 00022431  0x00003df5 branch  0x000057a5 , 0x00000005 
+ 00022432  0x00003df6 setarg  0x00002800 
+ 00022433  0x00003df7 isub  0x00000002 , 0x0000003e 
+ 00022434  0x00003df8 setarg  0x00000006 
+ 00022435  0x00003df9 branch  0x000057a5 , 0x00000005 
+ 00022436  0x00003dfa branch  0x00005728 
+ 00022437  0x00003dfc store  0x00000001 , 0x00004445 
+ 00022438  0x00003dfd call  0x00005a74 
+ 00022439  0x00003dfe force  0x00000003 , 0x00000030 
+ 00022440  0x00003e00 call  0x00005a7d 
+ 00022441  0x00003e01 branch  0x000057bc , 0x00000034 
+ 00022442  0x00003e02 nbranch  0x000057b8 , 0x00000002 
+ 00022443  0x00003e03 iforce  0x00000011 
+ 00022444  0x00003e04 ifetch  0x00000002 , 0x00000006 
+ 00022445  0x00003e05 isub  0x00000002 , 0x0000003e 
+ 00022446  0x00003e06 nbranch  0x000057b9 , 0x00000005 
+ 00022447  0x00003e07 disable  0x00000028 
+ 00022448  0x00003e08 deposit  0x00000011 
+ 00022449  0x00003e09 istore  0x00000002 , 0x00000005 
+ 00022450  0x00003e0a ifetch  0x00000001 , 0x00000006 
+ 00022451  0x00003e0b add  0x0000003f , 0x00000004 , 0x00000039 
+ 00022452  0x00003e0c call  0x00007e45 
+ 00022453  0x00003e0d increase  0xffffffff , 0x00000030 
+ 00022454  0x00003e0e branch  0x000057bc , 0x00000005 
+ 00022455  0x00003e0f branch  0x000057b9 
+ 00022456  0x00003e11 increase  0x00000002 , 0x00000006 
+ 00022457  0x00003e13 ifetch  0x00000001 , 0x00000006 
+ 00022458  0x00003e14 iadd  0x00000006 , 0x00000006 
+ 00022459  0x00003e15 branch  0x000057a8 
+ 00022460  0x00003e17 branch  0x00005728 , 0x00000028 
+ 00022461  0x00003e18 branch  0x0000588a 
+ 00022462  0x00003e1c fetch  0x00000001 , 0x0000443d 
+ 00022463  0x00003e1e increase  0xffffffff , 0x0000003f 
+ 00022464  0x00003e1f store  0x00000001 , 0x0000443d 
+ 00022465  0x00003e20 lshift  0x0000003f , 0x0000003f 
+ 00022466  0x00003e22 iadd  0x00000006 , 0x00000006 
+ 00022467  0x00003e23 ifetcht  0x00000002 , 0x00000006 
+ 00022468  0x00003e24 storet  0x00000002 , 0x00004445 
+ 00022469  0x00003e25 branch  0x0000588a 
+ 00022470  0x00003e28 fetcht  0x00000002 , 0x000003fa 
+ 00022471  0x00003e29 call  0x00005a88 
+ 00022472  0x00003e2a branch  0x00005728 , 0x00000034 
+ 00022473  0x00003e2b ifetch  0x00000001 , 0x00000006 
+ 00022474  0x00003e2c branch  0x0000588a , 0x00000034 
+ 00022475  0x00003e2d sub  0x0000003f , 0x00000016 , 0x0000003e 
+ 00022476  0x00003e2e branch  0x000057ce , 0x00000002 
+ 00022477  0x00003e2f force  0x00000016 , 0x0000003f 
+ 00022478  0x00003e31 icopy  0x00000039 
+ 00022479  0x00003e32 call  0x00007e45 
+ 00022480  0x00003e33 branch  0x0000588a 
+ 00022481  0x00003e37 setarg  0x00000003 
+ 00022482  0x00003e38 store  0x00000002 , 0x00004445 
+ 00022483  0x00003e39 setarg  0x00000008 
+ 00022484  0x00003e3a istore  0x00000002 , 0x00000005 
+ 00022485  0x00003e3b branch  0x0000588a 
+ 00022486  0x00003e3e fetch  0x00000002 , 0x000044c0 
+ 00022487  0x00003e3f iforce  0x00000011 
+ 00022488  0x00003e40 fetcht  0x00000002 , 0x000003fa 
+ 00022489  0x00003e41 call  0x00005a88 
+ 00022490  0x00003e42 branch  0x00005728 , 0x00000034 
+ 00022491  0x00003e43 ifetch  0x00000001 , 0x00000006 
+ 00022492  0x00003e44 isub  0x00000011 , 0x00000039 
+ 00022493  0x00003e45 nbranch  0x00005728 , 0x00000002 
+ 00022494  0x00003e46 sub  0x00000039 , 0x00000016 , 0x0000003e 
+ 00022495  0x00003e47 branch  0x000057e1 , 0x00000002 
+ 00022496  0x00003e48 force  0x00000016 , 0x00000039 
+ 00022497  0x00003e4a deposit  0x00000011 
+ 00022498  0x00003e4b iadd  0x00000006 , 0x00000006 
+ 00022499  0x00003e4c call  0x00007e45 
+ 00022500  0x00003e4d branch  0x0000588a 
+ 00022501  0x00003e50 setarg  0x00000003 
+ 00022502  0x00003e51 istore  0x00000002 , 0x00000005 
+ 00022503  0x00003e52 setarg  0x00000007 
+ 00022504  0x00003e53 istore  0x00000002 , 0x00000005 
+ 00022505  0x00003e54 setarg  0x00000009 
+ 00022506  0x00003e55 istore  0x00000002 , 0x00000005 
+ 00022507  0x00003e56 branch  0x0000588a 
+ 00022508  0x00003e59 fetch  0x00000001 , 0x0000443d 
+ 00022509  0x00003e5a icopy  0x00000013 
+ 00022510  0x00003e5b arg  0x00000347 , 0x00000011 
+ 00022511  0x00003e5c arg  0x00004445 , 0x00000012 
+ 00022512  0x00003e5d arg  0x00000000 , 0x0000000b 
+ 00022513  0x00003e5e disable  0x00000031 
+ 00022514  0x00003e61 copy  0x00000011 , 0x00000006 
+ 00022515  0x00003e62 ifetcht  0x00000002 , 0x00000006 
+ 00022516  0x00003e63 copy  0x00000006 , 0x00000011 
+ 00022517  0x00003e64 call  0x00005a88 
+ 00022518  0x00003e65 branch  0x00005805 , 0x00000034 
+ 00022519  0x00003e66 ifetch  0x00000001 , 0x00000006 
+ 00022520  0x00003e67 icopy  0x00000039 
+ 00022521  0x00003e68 iadd  0x0000000b , 0x0000000b 
+ 00022522  0x00003e6c sub  0x0000000b , 0x00000018 , 0x0000003e 
+ 00022523  0x00003e6d nbranch  0x0000580a , 0x00000002 
+ 00022524  0x00003e6e copy  0x00000012 , 0x00000005 
+ 00022525  0x00003e71 ifetch  0x00000001 , 0x00000006 
+ 00022526  0x00003e72 istore  0x00000001 , 0x00000005 
+ 00022527  0x00003e73 loop  0x000057fd 
+ 00022528  0x00003e74 copy  0x00000005 , 0x00000012 
+ 00022529  0x00003e75 enable  0x00000031 
+ 00022530  0x00003e76 increase  0xffffffff , 0x00000013 
+ 00022531  0x00003e77 branch  0x00005805 , 0x00000005 
+ 00022532  0x00003e78 branch  0x000057f2 
+ 00022533  0x00003e7b nbranch  0x00005810 , 0x00000031 
+ 00022534  0x00003e7c disable  0x00000031 
+ 00022535  0x00003e7d copy  0x0000000b , 0x00000002 
+ 00022536  0x00003e7e increase  0x00000005 , 0x00000002 
+ 00022537  0x00003e7f branch  0x00005892 
+ 00022538  0x00003e82 nbranch  0x00005810 , 0x00000031 
+ 00022539  0x00003e83 disable  0x00000031 
+ 00022540  0x00003e84 deposit  0x0000000b 
+ 00022541  0x00003e85 isub  0x00000039 , 0x00000002 
+ 00022542  0x00003e86 increase  0x00000005 , 0x00000002 
+ 00022543  0x00003e87 branch  0x00005892 
+ 00022544  0x00003e8a jam  0x00000010 , 0x000003fc 
+ 00022545  0x00003e8b branch  0x00005729 
+ 00022546  0x00003e8f fetch  0x00000002 , 0x000003fa 
+ 00022547  0x00003e90 branch  0x00005688 , 0x00000034 
+ 00022548  0x00003e91 istore  0x00000002 , 0x00000005 
+ 00022549  0x00003e92 setarg  0x0000ffff 
+ 00022550  0x00003e93 istore  0x00000002 , 0x00000005 
+ 00022551  0x00003e94 setarg  0x00002800 
+ 00022552  0x00003e95 istore  0x00000002 , 0x00000005 
+ 00022553  0x00003e96 branch  0x0000588a 
+ 00022554  0x00003e9a setarg  0x00000006 
+ 00022555  0x00003e9b store  0x00000001 , 0x00004445 
+ 00022556  0x00003e9c fetch  0x00000002 , 0x000044c0 
+ 00022557  0x00003e9d iforce  0x00000011 
+ 00022558  0x00003e9e call  0x00005a74 
+ 00022559  0x00003e9f force  0x00000003 , 0x00000039 
+ 00022560  0x00003ea1 call  0x00005a7d 
+ 00022561  0x00003ea2 branch  0x00005835 , 0x00000034 
+ 00022562  0x00003ea3 nbranch  0x0000583a , 0x00000002 
+ 00022563  0x00003ea4 iforce  0x00000030 
+ 00022564  0x00003ea5 ifetch  0x00000002 , 0x00000006 
+ 00022565  0x00003ea6 isub  0x00000011 , 0x0000003e 
+ 00022566  0x00003ea7 nbranch  0x0000583b , 0x00000005 
+ 00022567  0x00003ea8 deposit  0x00000030 
+ 00022568  0x00003ea9 branch  0x0000582f , 0x00000028 
+ 00022569  0x00003eaa increase  0xffffffff , 0x0000003f 
+ 00022570  0x00003eab istore  0x00000002 , 0x00000005 
+ 00022571  0x00003eac istoret  0x00000002 , 0x00000005 
+ 00022572  0x00003ead increase  0x00000001 , 0x0000003f 
+ 00022573  0x00003eae increase  0xffffffff , 0x00000039 
+ 00022574  0x00003eaf branch  0x0000588a , 0x00000005 
+ 00022575  0x00003eb1 disable  0x00000028 
+ 00022576  0x00003eb2 istore  0x00000002 , 0x00000005 
+ 00022577  0x00003eb3 increase  0x00000001 , 0x00000006 
+ 00022578  0x00003eb4 ifetcht  0x00000002 , 0x00000006 
+ 00022579  0x00003eb5 increase  0xfffffffd , 0x00000006 
+ 00022580  0x00003eb6 branch  0x0000583b 
+ 00022581  0x00003eb8 branch  0x00005728 , 0x00000028 
+ 00022582  0x00003eb9 force  0xffffffff , 0x0000003f 
+ 00022583  0x00003eba istore  0x00000002 , 0x00000005 
+ 00022584  0x00003ebb istoret  0x00000002 , 0x00000005 
+ 00022585  0x00003ebc branch  0x0000588a 
+ 00022586  0x00003ebe increase  0x00000002 , 0x00000006 
+ 00022587  0x00003ec0 ifetch  0x00000001 , 0x00000006 
+ 00022588  0x00003ec1 iadd  0x00000006 , 0x00000006 
+ 00022589  0x00003ec2 branch  0x00005820 
+ 00022590  0x00003ec7 fetch  0x00000002 , 0x000044c2 
+ 00022591  0x00003ec8 store  0x00000002 , 0x00004445 
+ 00022592  0x00003ec9 fetch  0x00000001 , 0x000044c6 
+ 00022593  0x00003eca copy  0x0000003f , 0x00000039 
+ 00022594  0x00003ecb arg  0x000044c7 , 0x00000006 
+ 00022595  0x00003ecc call  0x00007e45 
+ 00022596  0x00003ecd branch  0x0000588a 
+ 00022597  0x00003ed0 fetcht  0x00000002 , 0x000003fa 
+ 00022598  0x00003ed1 call  0x00005a88 
+ 00022599  0x00003ed2 branch  0x0000585c , 0x00000034 
+ 00022600  0x00003ed3 increase  0xfffffffe , 0x00000006 
+ 00022601  0x00003ed4 ifetcht  0x00000002 , 0x00000006 
+ 00022602  0x00003ed5 setarg  0x00002902 
+ 00022603  0x00003ed6 isub  0x00000002 , 0x0000003e 
+ 00022604  0x00003ed7 nbranch  0x0000585c , 0x00000005 
+ 00022605  0x00003ed8 increase  0x00000001 , 0x00000006 
+ 00022606  0x00003ed9 ifetcht  0x00000002 , 0x00000006 
+ 00022607  0x00003eda setarg  0x00000001 
+ 00022608  0x00003edb isub  0x00000002 , 0x0000003e 
+ 00022609  0x00003edc branch  0x00005856 , 0x00000005 
+ 00022610  0x00003edd setarg  0x00000000 
+ 00022611  0x00003ede isub  0x00000002 , 0x0000003e 
+ 00022612  0x00003edf nbranch  0x0000585c , 0x00000005 
+ 00022613  0x00003ee0 branch  0x0000585c 
+ 00022614  0x00003ee3 increase  0xfffffff9 , 0x00000006 
+ 00022615  0x00003ee4 ifetch  0x00000002 , 0x00000006 
+ 00022616  0x00003ee5 increase  0xffffffff , 0x0000003f 
+ 00022617  0x00003ee6 store  0x00000002 , 0x000044c2 
+ 00022618  0x00003ee7 jam  0x0000001b , 0x00000b7d 
+ 00022619  0x00003ee8 call  0x00005620 
+ 00022620  0x00003eec force  0x00000005 , 0x00000002 
+ 00022621  0x00003eed branch  0x00005892 
+ 00022622  0x00003ef0 force  0x00000006 , 0x00000002 
+ 00022623  0x00003ef1 branch  0x00005892 
+ 00022624  0x00003ef4 force  0x00000006 , 0x00000002 
+ 00022625  0x00003ef5 branch  0x00005892 
+ 00022626  0x00003ef8 force  0x00000006 , 0x00000002 
+ 00022627  0x00003ef9 branch  0x00005892 
+ 00022628  0x00003efc force  0x00000006 , 0x00000002 
+ 00022629  0x00003efd branch  0x00005892 
+ 00022630  0x00003f00 set1  0x00000025 , 0x00000000 
+ 00022631  0x00003f01 bpatch  0x00000066 , 0x0000402c 
+ 00022632  0x00003f02 increase  0x00000001 , 0x00000002 
+ 00022633  0x00003f03 call  0x00005a88 
+ 00022634  0x00003f04 increase  0xfffffffe , 0x00000006 
+ 00022635  0x00003f05 ifetch  0x00000002 , 0x00000006 
+ 00022636  0x00003f06 arg  0x00002902 , 0x00000002 
+ 00022637  0x00003f07 isub  0x00000002 , 0x0000003e 
+ 00022638  0x00003f08 nrtn  0x00000005 
+ 00022639  0x00003f09 increase  0x00000001 , 0x00000006 
+ 00022640  0x00003f0a copy  0x00000006 , 0x00000011 
+ 00022641  0x00003f0b ifetch  0x00000001 , 0x00000006 
+ 00022642  0x00003f0c rtn 
+ 00022643  0x00003f0f jam  0x00000000 , 0x0000041b 
+ 00022644  0x00003f10 fetch  0x00000002 , 0x00004298 
+ 00022645  0x00003f11 call  0x00007f66 
+ 00022646  0x00003f12 arg  0x00004444 , 0x00000005 
+ 00022647  0x00003f13 increase  0x00000001 , 0x00000005 
+ 00022648  0x00003f14 fetcht  0x00000002 , 0x000044c2 
+ 00022649  0x00003f15 istoret  0x00000002 , 0x00000005 
+ 00022650  0x00003f16 call  0x00005a88 
+ 00022651  0x00003f17 ifetch  0x00000001 , 0x00000006 
+ 00022652  0x00003f18 icopy  0x00000039 
+ 00022653  0x00003f19 call  0x00007e45 
+ 00022654  0x00003f1a fetcht  0x00000001 , 0x0000041b 
+ 00022655  0x00003f1b increase  0x00000007 , 0x00000002 
+ 00022656  0x00003f1c call  0x00005892 
+ 00022657  0x00003f1d branch  0x00005ace 
+ 00022658  0x00003f20 force  0x00000006 , 0x00000002 
+ 00022659  0x00003f21 branch  0x00005892 
+ 00022660  0x00003f24 force  0x00000006 , 0x00000002 
+ 00022661  0x00003f25 branch  0x00005892 
+ 00022662  0x00003f28 force  0x00000006 , 0x00000002 
+ 00022663  0x00003f29 branch  0x00005892 
+ 00022664  0x00003f2c force  0x00000006 , 0x00000002 
+ 00022665  0x00003f2d branch  0x00005892 
+ 00022666  0x00003f31 set1  0x00000025 , 0x00000000 
+ 00022667  0x00003f32 bpatch  0x00000067 , 0x0000402c 
+ 00022668  0x00003f33 setarg  0x00004440 
+ 00022669  0x00003f34 isub  0x00000005 , 0x0000003f 
+ 00022670  0x00003f35 sub  0x0000003f , 0x00000000 , 0x00000002 
+ 00022671  0x00003f36 branch  0x00005892 
+ 00022672  0x00003f3a force  0x00000000 , 0x00000002 
+ 00022673  0x00003f3b force  0x00000001 , 0x00000001 
+ 00022674  0x00003f3e set1  0x00000025 , 0x00000000 
+ 00022675  0x00003f3f bpatch  0x00000068 , 0x0000402d 
+ 00022676  0x00003f40 storet  0x00000001 , 0x0000443f 
+ 00022677  0x00003f41 compare  0x00000002 , 0x00000001 , 0x00000003 
+ 00022678  0x00003f42 nbranch  0x00005899 , 0x00000001 
+ 00022679  0x00003f43 add  0x00000002 , 0xfffffffc , 0x0000003f 
+ 00022680  0x00003f44 store  0x00000002 , 0x00004440 
+ 00022681  0x00003f47 fetcht  0x00000001 , 0x000003d7 
+ 00022682  0x00003f48 call  0x0000561a 
+ 00022683  0x00003f49 nsetflag  0x00000034 , 0x00000004 , 0x00000002 
+ 00022684  0x00003f4a set1  0x00000005 , 0x00000002 
+ 00022685  0x00003f4b and  0x00000002 , 0x000000fc , 0x0000003f 
+ 00022686  0x00003f4c ior  0x00000001 , 0x0000003f 
+ 00022687  0x00003f4d store  0x00000001 , 0x000003d7 
+ 00022688  0x00003f4e and_into  0x0000001f , 0x0000003f 
+ 00022689  0x00003f4f store  0x00000001 , 0x0000443e 
+ 00022690  0x00003f50 set1  0x00000025 , 0x00000000 
+ 00022691  0x00003f51 bpatch  0x00000069 , 0x0000402d 
+ 00022692  0x00003f52 fetch  0x00000001 , 0x0000443e 
+ 00022693  0x00003f53 compare  0x00000001 , 0x00000001 , 0x00000003 
+ 00022694  0x00003f54 rtn  0x00000001 
+ 00022695  0x00003f55 fetch  0x00000007 , 0x0000443f 
+ 00022696  0x00003f56 fetch  0x00000001 , 0x000003c0 
+ 00022697  0x00003f57 rtnbit0  0x00000004 
+ 00022698  0x00003f58 call  0x00007599 
+ 00022699  0x00003f59 branch  0x000074f7 
+ 00022700  0x00003f5c set1  0x00000025 , 0x00000000 
+ 00022701  0x00003f5d bpatch  0x0000006a , 0x0000402d 
+ 00022702  0x00003f5e call  0x0000561c 
+ 00022703  0x00003f5f nbranch  0x00003bf1 , 0x00000034 
+ 00022704  0x00003f60 nrtn  0x00000034 
+ 00022705  0x00003f61 fetch  0x00000001 , 0x00000341 
+ 00022706  0x00003f62 rtn  0x00000034 
+ 00022707  0x00003f63 fetch  0x00000001 , 0x00000340 
+ 00022708  0x00003f64 compare  0x00000001 , 0x0000003f , 0x00000003 
+ 00022709  0x00003f65 branch  0x000058cf , 0x00000001 
+ 00022710  0x00003f66 fetch  0x00000007 , 0x00000341 
+ 00022711  0x00003f67 fetch  0x00000001 , 0x00000340 
+ 00022712  0x00003f68 compare  0x00000002 , 0x0000003f , 0x00000003 
+ 00022713  0x00003f69 branch  0x000058cf , 0x00000001 
+ 00022714  0x00003f6a fetch  0x00000001 , 0x00000342 
+ 00022715  0x00003f6b store  0x00000001 , 0x00000418 
+ 00022716  0x00003f6c copy  0x0000003f , 0x00000013 
+ 00022717  0x00003f6d set1  0x00000025 , 0x00000000 
+ 00022718  0x00003f6e bpatch  0x0000006b , 0x0000402d 
+ 00022719  0x00003f6f copy  0x00000013 , 0x0000003f 
+ 00022720  0x00003f70 beq  0x00000000 , 0x00005924 
+ 00022721  0x00003f71 beq  0x00000001 , 0x0000592c 
+ 00022722  0x00003f72 beq  0x00000002 , 0x00005934 
+ 00022723  0x00003f73 beq  0x00000003 , 0x00005938 
+ 00022724  0x00003f74 beq  0x00000004 , 0x0000593f 
+ 00022725  0x00003f75 beq  0x00000005 , 0x00005944 
+ 00022726  0x00003f76 beq  0x00000006 , 0x00005949 
+ 00022727  0x00003f77 beq  0x00000007 , 0x0000594c 
+ 00022728  0x00003f78 beq  0x00000008 , 0x0000594d 
+ 00022729  0x00003f79 beq  0x00000009 , 0x0000594f 
+ 00022730  0x00003f7a beq  0x0000000a , 0x00005950 
+ 00022731  0x00003f7b beq  0x0000000b , 0x00005951 
+ 00022732  0x00003f7c beq  0x0000000c , 0x00005952 
+ 00022733  0x00003f7d beq  0x0000000d , 0x00005955 
+ 00022734  0x00003f7e branch  0x00003bf1 
+ 00022735  0x00003f81 fetch  0x00000001 , 0x00000341 
+ 00022736  0x00003f82 and  0x0000003f , 0x0000001f , 0x0000003f 
+ 00022737  0x00003f83 rtn  0x00000034 
+ 00022738  0x00003f84 fetch  0x00000001 , 0x00004132 
+ 00022739  0x00003f85 beq  0x00000001 , 0x000058d8 
+ 00022740  0x00003f86 fetch  0x00000002 , 0x00000344 
+ 00022741  0x00003f87 beq  0x00000004 , 0x00005903 
+ 00022742  0x00003f88 beq  0x00000006 , 0x000058f4 
+ 00022743  0x00003f89 rtn 
+ 00022744  0x00003f8c set1  0x00000025 , 0x00000000 
+ 00022745  0x00003f8d bpatch  0x0000006c , 0x0000402d 
+ 00022746  0x00003f8e call  0x00004972 
+ 00022747  0x00003f8f fetch  0x00000001 , 0x000003d6 
+ 00022748  0x00003f90 fetcht  0x00000001 , 0x00000340 
+ 00022749  0x00003f91 and_into  0x00000003 , 0x00000002 
+ 00022750  0x00003f92 lshift8  0x00000002 , 0x00000002 
+ 00022751  0x00003f93 lshift4  0x00000002 , 0x00000002 
+ 00022752  0x00003f94 ior  0x00000002 , 0x0000003f 
+ 00022753  0x00003f95 istore  0x00000002 , 0x0000000a 
+ 00022754  0x00003f96 fetcht  0x00000001 , 0x00000341 
+ 00022755  0x00003f97 and  0x00000002 , 0x0000001f , 0x00000002 
+ 00022756  0x00003f98 istoret  0x00000002 , 0x0000000a 
+ 00022757  0x00003f99 copy  0x00000002 , 0x00000039 
+ 00022758  0x00003f9a call  0x00004976 
+ 00022759  0x00003f9b add  0x00000002 , 0x00000004 , 0x00000039 
+ 00022760  0x00003f9c call  0x00004424 
+ 00022761  0x00003f9d branch  0x00004435 
+ 00022762  0x00003fa0 set1  0x00000025 , 0x00000000 
+ 00022763  0x00003fa1 bpatch  0x0000006d , 0x0000402d 
+ 00022764  0x00003fa2 arg  0x00000002 , 0x00000001 
+ 00022765  0x00003fa3 ifetch  0x00000002 , 0x00000003 
+ 00022766  0x00003fa4 ifetch  0x00000002 , 0x00000003 
+ 00022767  0x00003fa5 branch  0x00003bf1 , 0x00000034 
+ 00022768  0x00003fa6 copy  0x0000003f , 0x00000039 
+ 00022769  0x00003fa7 arg  0x00004440 , 0x00000005 
+ 00022770  0x00003fa8 call  0x0000497c 
+ 00022771  0x00003fa9 branch  0x0000588a 
+ 00022772  0x00003fac set1  0x00000025 , 0x00000000 
+ 00022773  0x00003fad bpatch  0x0000006e , 0x0000402d 
+ 00022774  0x00003fae ifetch  0x00000001 , 0x00000006 
+ 00022775  0x00003faf beq  0x00000001 , 0x00005956 
+ 00022776  0x00003fb0 beq  0x00000002 , 0x0000595b 
+ 00022777  0x00003fb1 beq  0x00000003 , 0x00005960 
+ 00022778  0x00003fb2 beq  0x00000004 , 0x00005966 
+ 00022779  0x00003fb3 beq  0x00000005 , 0x0000596f 
+ 00022780  0x00003fb4 beq  0x00000006 , 0x00005970 
+ 00022781  0x00003fb5 beq  0x00000007 , 0x00005972 
+ 00022782  0x00003fb6 beq  0x00000008 , 0x00005973 
+ 00022783  0x00003fb7 beq  0x00000009 , 0x00005974 
+ 00022784  0x00003fb8 beq  0x0000000a , 0x00005975 
+ 00022785  0x00003fb9 beq  0x0000000b , 0x00005976 
+ 00022786  0x00003fba branch  0x00003bf1 
+ 00022787  0x00003fbd set1  0x00000025 , 0x00000000 
+ 00022788  0x00003fbe bpatch  0x0000006f , 0x0000402d 
+ 00022789  0x00003fbf ifetch  0x00000003 , 0x00000006 
+ 00022790  0x00003fc0 store  0x00000003 , 0x000003f9 
+ 00022791  0x00003fc2 beq  0x00000001 , 0x00005977 
+ 00022792  0x00003fc3 beq  0x00000002 , 0x0000598e 
+ 00022793  0x00003fc4 beq  0x00000003 , 0x00005990 
+ 00022794  0x00003fc5 beq  0x00000004 , 0x00005991 
+ 00022795  0x00003fc6 beq  0x00000005 , 0x00005997 
+ 00022796  0x00003fc7 beq  0x00000006 , 0x0000599a 
+ 00022797  0x00003fc8 beq  0x00000007 , 0x000059a4 
+ 00022798  0x00003fc9 beq  0x00000008 , 0x000059a5 
+ 00022799  0x00003fca beq  0x00000009 , 0x000059ad 
+ 00022800  0x00003fcb beq  0x0000000a , 0x000059ae 
+ 00022801  0x00003fcc beq  0x0000000b , 0x000059b2 
+ 00022802  0x00003fcd beq  0x0000000c , 0x000059b5 
+ 00022803  0x00003fce beq  0x0000000d , 0x000059b9 
+ 00022804  0x00003fcf beq  0x0000000e , 0x000059ba 
+ 00022805  0x00003fd0 beq  0x0000000f , 0x000059c0 
+ 00022806  0x00003fd1 beq  0x00000010 , 0x000059c1 
+ 00022807  0x00003fd2 beq  0x00000011 , 0x000059c9 
+ 00022808  0x00003fd3 beq  0x00000012 , 0x000059ca 
+ 00022809  0x00003fd4 beq  0x00000013 , 0x000059da 
+ 00022810  0x00003fd5 beq  0x00000016 , 0x000059dc 
+ 00022811  0x00003fd6 beq  0x00000017 , 0x000059dd 
+ 00022812  0x00003fd7 beq  0x00000018 , 0x000059de 
+ 00022813  0x00003fd8 beq  0x00000019 , 0x000059df 
+ 00022814  0x00003fd9 beq  0x0000001b , 0x000059e0 
+ 00022815  0x00003fda beq  0x0000001d , 0x000059eb 
+ 00022816  0x00003fdb beq  0x0000001e , 0x000059ec 
+ 00022817  0x00003fdc beq  0x00000052 , 0x000059ed 
+ 00022818  0x00003fdd beq  0x000000d2 , 0x00005a01 
+ 00022819  0x00003fde branch  0x00003bf1 
+ 00022820  0x00003fe2 ifetch  0x00000009 , 0x00000006 
+ 00022821  0x00003fe3 store  0x00000009 , 0x00004434 
+ 00022822  0x00003fe4 ifetch  0x00000002 , 0x00000006 
+ 00022823  0x00003fe5 store  0x00000002 , 0x000003e0 
+ 00022824  0x00003fe6 fetch  0x00000001 , 0x000003c0 
+ 00022825  0x00003fe7 set1  0x00000005 , 0x0000003f 
+ 00022826  0x00003fe8 store  0x00000001 , 0x000003c0 
+ 00022827  0x00003fe9 rtn 
+ 00022828  0x00003fec ifetch  0x00000005 , 0x00000006 
+ 00022829  0x00003fed store  0x00000005 , 0x0000442f 
+ 00022830  0x00003fee ifetch  0x00000002 , 0x00000006 
+ 00022831  0x00003fef store  0x00000002 , 0x000003e0 
+ 00022832  0x00003ff0 fetch  0x00000001 , 0x000003c0 
+ 00022833  0x00003ff1 set1  0x00000006 , 0x0000003f 
+ 00022834  0x00003ff2 store  0x00000001 , 0x000003c0 
+ 00022835  0x00003ff3 rtn 
+ 00022836  0x00003ff6 fetch  0x00000001 , 0x000003e4 
+ 00022837  0x00003ff7 set1  0x00000003 , 0x0000003f 
+ 00022838  0x00003ff8 store  0x00000001 , 0x000003e4 
+ 00022839  0x00003ff9 rtn 
+ 00022840  0x00003ffc increase  0x0000000a , 0x00000006 
+ 00022841  0x00003ffd ifetch  0x00000008 , 0x00000006 
+ 00022842  0x00003ffe store  0x00000008 , 0x00000380 
+ 00022843  0x00003fff ifetch  0x00000004 , 0x00000006 
+ 00022844  0x00004000 store  0x00000004 , 0x00004473 
+ 00022845  0x00004001 jam  0x00000024 , 0x00000b7d 
+ 00022846  0x00004002 branch  0x00005620 
+ 00022847  0x00004005 ifetch  0x00000008 , 0x00000006 
+ 00022848  0x00004006 store  0x00000008 , 0x00000388 
+ 00022849  0x00004007 ifetch  0x00000004 , 0x00000006 
+ 00022850  0x00004008 store  0x00000004 , 0x00004477 
+ 00022851  0x00004009 branch  0x000074b6 
+ 00022852  0x0000400c fetch  0x00000001 , 0x000003c0 
+ 00022853  0x0000400d set1  0x00000004 , 0x0000003f 
+ 00022854  0x0000400e store  0x00000001 , 0x000003c0 
+ 00022855  0x0000400f jam  0x00000026 , 0x00000b7d 
+ 00022856  0x00004010 branch  0x00005620 
+ 00022857  0x00004013 rtn  0x00000029 
+ 00022858  0x00004014 jam  0x00000026 , 0x00000b7d 
+ 00022859  0x00004015 branch  0x00005620 
+ 00022860  0x00004018 rtn 
+ 00022861  0x0000401b jam  0x00000029 , 0x00000b7d 
+ 00022862  0x0000401c branch  0x00005620 
+ 00022863  0x0000401f rtn 
+ 00022864  0x00004022 rtn 
+ 00022865  0x00004025 rtn 
+ 00022866  0x00004028 rtn  0x00000029 
+ 00022867  0x00004029 jam  0x0000002c , 0x00000b7d 
+ 00022868  0x0000402a branch  0x00005620 
+ 00022869  0x0000402d rtn 
+ 00022870  0x00004031 store  0x00000001 , 0x000044ae 
+ 00022871  0x00004032 ifetch  0x00000006 , 0x00000006 
+ 00022872  0x00004033 istore  0x00000006 , 0x00000005 
+ 00022873  0x00004034 jam  0x00000042 , 0x00000b7d 
+ 00022874  0x00004035 branch  0x00005620 
+ 00022875  0x00004038 store  0x00000001 , 0x000044b5 
+ 00022876  0x00004039 ifetch  0x00000006 , 0x00000006 
+ 00022877  0x0000403a istore  0x00000006 , 0x00000005 
+ 00022878  0x0000403b jam  0x00000043 , 0x00000b7d 
+ 00022879  0x0000403c branch  0x00005620 
+ 00022880  0x0000403f arg  0x0000448c , 0x00000005 
+ 00022881  0x00004040 call  0x00007e35 
+ 00022882  0x00004041 jam  0x00000044 , 0x00000b7d 
+ 00022883  0x00004042 branch  0x00005620 , 0x00000029 
+ 00022884  0x00004043 jam  0x00000043 , 0x00000b7d 
+ 00022885  0x00004044 branch  0x00005620 
+ 00022886  0x00004047 call  0x000074a8 
+ 00022887  0x00004048 branch  0x0000596a , 0x00000005 
+ 00022888  0x00004049 jam  0x00000045 , 0x00000b7d 
+ 00022889  0x0000404a branch  0x00005620 
+ 00022890  0x0000404d call  0x000074a5 
+ 00022891  0x0000404e jam  0x00000023 , 0x00000b7d 
+ 00022892  0x0000404f branch  0x00005620 , 0x00000029 
+ 00022893  0x00004050 jam  0x00000044 , 0x00000b7d 
+ 00022894  0x00004051 branch  0x00005620 
+ 00022895  0x00004054 rtn 
+ 00022896  0x00004057 arg  0x00000390 , 0x00000005 
+ 00022897  0x00004058 branch  0x00007e35 
+ 00022898  0x0000405b rtn 
+ 00022899  0x0000405e rtn 
+ 00022900  0x00004061 rtn 
+ 00022901  0x00004064 rtn 
+ 00022902  0x00004067 rtn 
+ 00022903  0x0000406a increase  0xfffffffe , 0x00000006 
+ 00022904  0x0000406b ifetcht  0x00000001 , 0x00000006 
+ 00022905  0x0000406c setarg  0x00000006 
+ 00022906  0x0000406d isub  0x00000002 , 0x0000003e 
+ 00022907  0x0000406e branch  0x00005989 , 0x00000005 
+ 00022908  0x0000406f setarg  0x00000004 
+ 00022909  0x00004070 isub  0x00000002 , 0x0000003e 
+ 00022910  0x00004071 branch  0x0000598a , 0x00000005 
+ 00022911  0x00004072 setarg  0x00000008 
+ 00022912  0x00004073 isub  0x00000002 , 0x0000003e 
+ 00022913  0x00004074 branch  0x0000598b , 0x00000005 
+ 00022914  0x00004075 setarg  0x0000000c 
+ 00022915  0x00004076 isub  0x00000002 , 0x0000003e 
+ 00022916  0x00004077 branch  0x0000598c , 0x00000005 
+ 00022917  0x00004078 setarg  0x0000000e 
+ 00022918  0x00004079 isub  0x00000002 , 0x0000003e 
+ 00022919  0x0000407a branch  0x0000598d , 0x00000005 
+ 00022920  0x0000407b rtn 
+ 00022921  0x0000407e rtn 
+ 00022922  0x00004081 rtn 
+ 00022923  0x00004084 rtn 
+ 00022924  0x00004087 rtn 
+ 00022925  0x0000408a rtn 
+ 00022926  0x0000408e jam  0x00000003 , 0x00000b7d 
+ 00022927  0x0000408f branch  0x00005620 
+ 00022928  0x00004092 rtn 
+ 00022929  0x00004095 rshift8  0x0000003f , 0x0000003f 
+ 00022930  0x00004096 store  0x00000002 , 0x000044bc 
+ 00022931  0x00004097 ifetch  0x00000002 , 0x00000006 
+ 00022932  0x00004098 store  0x00000002 , 0x000044be 
+ 00022933  0x00004099 jam  0x00000005 , 0x00000b7d 
+ 00022934  0x0000409a branch  0x00005620 
+ 00022935  0x0000409d rtn 
+ 00022936  0x000040a0 rtn 
+ 00022937  0x000040a3 rtn 
+ 00022938  0x000040a6 rshift8  0x0000003f , 0x0000003f 
+ 00022939  0x000040a7 store  0x00000002 , 0x000044bc 
+ 00022940  0x000040a8 ifetch  0x00000002 , 0x00000006 
+ 00022941  0x000040a9 store  0x00000002 , 0x000044be 
+ 00022942  0x000040aa ifetch  0x00000002 , 0x00000006 
+ 00022943  0x000040ab store  0x00000002 , 0x000044c4 
+ 00022944  0x000040ac ifetch  0x00000002 , 0x00000006 
+ 00022945  0x000040ad store  0x00000002 , 0x000044c0 
+ 00022946  0x000040ae jam  0x00000007 , 0x00000b7d 
+ 00022947  0x000040af branch  0x00005620 
+ 00022948  0x000040b3 rtn 
+ 00022949  0x000040b6 rshift8  0x0000003f , 0x0000003f 
+ 00022950  0x000040b7 store  0x00000002 , 0x000044bc 
+ 00022951  0x000040b8 ifetch  0x00000002 , 0x00000006 
+ 00022952  0x000040b9 store  0x00000002 , 0x000044be 
+ 00022953  0x000040ba ifetch  0x00000002 , 0x00000006 
+ 00022954  0x000040bb store  0x00000002 , 0x000044c0 
+ 00022955  0x000040bc jam  0x00000009 , 0x00000b7d 
+ 00022956  0x000040bd branch  0x00005620 
+ 00022957  0x000040c0 rtn 
+ 00022958  0x000040c3 fetch  0x00000002 , 0x00000347 
+ 00022959  0x000040c4 store  0x00000002 , 0x000003fa 
+ 00022960  0x000040c5 jam  0x0000000b , 0x00000b7d 
+ 00022961  0x000040c6 branch  0x00005620 
+ 00022962  0x000040c9 rtn 
+ 00022963  0x000040cc rtn 
+ 00022964  0x000040cf rtn 
+ 00022965  0x000040d3 ifetch  0x00000002 , 0x00000006 
+ 00022966  0x000040d4 store  0x00000002 , 0x000044c0 
+ 00022967  0x000040d5 jam  0x0000000d , 0x00000b7d 
+ 00022968  0x000040d6 branch  0x00005620 
+ 00022969  0x000040d9 rtn 
+ 00022970  0x000040dc fetch  0x00000001 , 0x00000341 
+ 00022971  0x000040dd increase  0xfffffffb , 0x0000003f 
+ 00022972  0x000040de rshift  0x0000003f , 0x0000003f 
+ 00022973  0x000040df store  0x00000001 , 0x0000443d 
+ 00022974  0x000040e0 jam  0x0000000f , 0x00000b7d 
+ 00022975  0x000040e1 branch  0x00005620 
+ 00022976  0x000040e4 rtn 
+ 00022977  0x000040e7 rshift8  0x0000003f , 0x0000003f 
+ 00022978  0x000040e8 store  0x00000002 , 0x000044bc 
+ 00022979  0x000040e9 ifetch  0x00000002 , 0x00000006 
+ 00022980  0x000040ea store  0x00000002 , 0x000044be 
+ 00022981  0x000040eb ifetch  0x00000002 , 0x00000006 
+ 00022982  0x000040ec store  0x00000002 , 0x000044c0 
+ 00022983  0x000040ed jam  0x00000011 , 0x00000b7d 
+ 00022984  0x000040ee branch  0x00005620 
+ 00022985  0x000040f1 rtn 
+ 00022986  0x000040f4 fetch  0x00000001 , 0x00000341 
+ 00022987  0x000040f5 increase  0xfffffff9 , 0x0000003f 
+ 00022988  0x000040f6 icopy  0x00000039 
+ 00022989  0x000040f7 fetcht  0x00000002 , 0x000003fa 
+ 00022990  0x000040f8 call  0x00005a88 
+ 00022991  0x000040f9 branch  0x000059d8 , 0x00000034 
+ 00022992  0x000040fa ifetch  0x00000001 , 0x00000006 
+ 00022993  0x000040fb isub  0x00000039 , 0x0000003e 
+ 00022994  0x000040fc nbranch  0x000059d8 , 0x00000002 
+ 00022995  0x000040fd copy  0x00000006 , 0x00000005 
+ 00022996  0x000040ff arg  0x00000349 , 0x00000006 
+ 00022997  0x00004100 call  0x00007e45 
+ 00022998  0x00004101 jam  0x00000028 , 0x00000b7d 
+ 00022999  0x00004102 call  0x00007c27 
+ 00023000  0x00004104 jam  0x00000013 , 0x00000b7d 
+ 00023001  0x00004105 branch  0x00005620 
+ 00023002  0x00004108 fetch  0x00000001 , 0x000003e3 
+ 00023003  0x00004109 rtn 
+ 00023004  0x0000410c rtn 
+ 00023005  0x0000410f rtn 
+ 00023006  0x00004112 rtn 
+ 00023007  0x00004115 rtn 
+ 00023008  0x0000411e ifetch  0x00000005 , 0x00000006 
+ 00023009  0x0000411f store  0x00000005 , 0x00000ff1 
+ 00023010  0x00004120 jam  0x00000001 , 0x00000ff0 
+ 00023011  0x00004122 call  0x00007cdb 
+ 00023012  0x00004123 rtn 
+ 00023013  0x00004125 copy  0x00000011 , 0x00000006 
+ 00023014  0x00004126 ifetch  0x00000008 , 0x00000006 
+ 00023015  0x00004127 store  0x00000008 , 0x00000ff1 
+ 00023016  0x00004128 jam  0x00000002 , 0x00000ff0 
+ 00023017  0x00004129 call  0x00007cdb 
+ 00023018  0x0000412a rtn 
+ 00023019  0x0000412d rtn 
+ 00023020  0x00004130 rtn 
+ 00023021  0x00004133 fetch  0x00000001 , 0x00000341 
+ 00023022  0x00004134 increase  0xfffffff9 , 0x0000003f 
+ 00023023  0x00004135 icopy  0x00000039 
+ 00023024  0x00004136 fetcht  0x00000002 , 0x000003fa 
+ 00023025  0x00004137 call  0x00005a88 
+ 00023026  0x00004138 branch  0x000059fd , 0x00000034 
+ 00023027  0x00004139 ifetch  0x00000001 , 0x00000006 
+ 00023028  0x0000413a isub  0x00000039 , 0x0000003e 
+ 00023029  0x0000413b nbranch  0x000059fd , 0x00000002 
+ 00023030  0x0000413c copy  0x00000006 , 0x00000005 
+ 00023031  0x0000413d copy  0x00000006 , 0x00000011 
+ 00023032  0x0000413e copy  0x00000039 , 0x00000012 
+ 00023033  0x0000413f arg  0x00000349 , 0x00000006 
+ 00023034  0x00004140 call  0x00007e45 
+ 00023035  0x00004141 jam  0x00000001 , 0x00000481 
+ 00023036  0x00004142 call  0x000059fe 
+ 00023037  0x00004144 rtn 
+ 00023038  0x00004148 fetch  0x00000002 , 0x00004296 
+ 00023039  0x00004149 rtn  0x00000034 
+ 00023040  0x0000414a iforce  0x0000003d 
+ 00023041  0x0000414e rtn 
+ 00023042  0x00004151 fetcht  0x00000004 , 0x000003dc 
+ 00023043  0x00004152 call  0x00003bde 
+ 00023044  0x00004153 isub  0x00000002 , 0x0000000b 
+ 00023045  0x00004154 deposit  0x0000000b 
+ 00023046  0x00004155 fetcht  0x00000002 , 0x000003ef 
+ 00023047  0x00004156 lshift4  0x00000002 , 0x00000002 
+ 00023048  0x00004157 lshift  0x00000002 , 0x00000002 
+ 00023049  0x00004158 isub  0x00000002 , 0x0000003f 
+ 00023050  0x00004159 rtn 
+ 00023051  0x0000415c call  0x00003bde 
+ 00023052  0x0000415d store  0x00000004 , 0x000003dc 
+ 00023053  0x0000415e rtn 
+ 00023054  0x00004163 set1  0x00000025 , 0x00000000 
+ 00023055  0x00004164 bpatch  0x00000070 , 0x0000402e 
+ 00023056  0x00004165 fetch  0x00000001 , 0x000043d8 
+ 00023057  0x00004166 rtn  0x00000034 
+ 00023058  0x00004167 arg  0x00000001 , 0x00000007 
+ 00023059  0x00004168 call  0x00007e53 
+ 00023060  0x00004169 nrtn  0x00000034 
+ 00023061  0x0000416a disable  0x00000029 
+ 00023062  0x0000416b enable  0x00000010 
+ 00023063  0x0000416c call  0x00005572 
+ 00023064  0x0000416d call  0x0000542c 
+ 00023065  0x0000416e call  0x000054de 
+ 00023066  0x0000416f nbranch  0x00005a24 , 0x0000002d 
+ 00023067  0x00004170 set1  0x00000025 , 0x00000000 
+ 00023068  0x00004171 bpatch  0x00000071 , 0x0000402e 
+ 00023069  0x00004172 fetch  0x00000001 , 0x00000003 
+ 00023070  0x00004173 increase  0x00000001 , 0x0000003f 
+ 00023071  0x00004174 store  0x00000001 , 0x00000003 
+ 00023072  0x00004175 fetch  0x00000001 , 0x00000340 
+ 00023073  0x00004176 and  0x0000003f , 0x0000000f , 0x0000003f 
+ 00023074  0x00004177 beq  0x00000003 , 0x00005519 
+ 00023075  0x00004178 beq  0x00000005 , 0x00005a41 
+ 00023076  0x0000417a nop  0x00002710 
+ 00023077  0x0000417b fetch  0x00000001 , 0x00000016 
+ 00023078  0x0000417c bne  0x00000027 , 0x00005a0e 
+ 00023079  0x0000417d call  0x00005ad8 
+ 00023080  0x0000417e arg  0x00000001 , 0x00000007 
+ 00023081  0x0000417f fetch  0x00000002 , 0x000044d9 
+ 00023082  0x00004180 branch  0x00007e4c 
+ 00023083  0x00004184 set1  0x00000025 , 0x00000000 
+ 00023084  0x00004185 bpatch  0x00000072 , 0x0000402e 
+ 00023085  0x00004186 fetch  0x00000001 , 0x000003f8 
+ 00023086  0x00004187 call  0x00005405 
+ 00023087  0x00004188 fetch  0x00000002 , 0x000003c2 
+ 00023088  0x00004189 imul32  0x00000002 , 0x0000003f 
+ 00023089  0x0000418a arg  0x00000177 , 0x00000002 
+ 00023090  0x0000418b imul32  0x00000002 , 0x0000003f 
+ 00023091  0x0000418c arg  0x000186a0 , 0x00000002 
+ 00023092  0x0000418d idiv  0x00000002 
+ 00023093  0x0000418e fetch  0x00000001 , 0x000003ec 
+ 00023094  0x0000418f arg  0x00004e20 , 0x00000002 
+ 00023095  0x00004190 imul32  0x00000002 , 0x0000003f 
+ 00023096  0x00004191 store  0x00000004 , 0x000046f9 
+ 00023097  0x00004192 set1  0x00000025 , 0x00000000 
+ 00023098  0x00004193 bpatch  0x00000073 , 0x0000402e 
+ 00023099  0x00004194 fetch  0x00000002 , 0x00004161 
+ 00023100  0x00004195 call  0x00007efd 
+ 00023101  0x00004196 quotient  0x00000002 
+ 00023102  0x00004197 iadd  0x00000002 , 0x0000003f 
+ 00023103  0x00004198 store  0x00000002 , 0x000003ce 
+ 00023104  0x00004199 rtn 
+ 00023105  0x0000419c set1  0x00000025 , 0x00000000 
+ 00023106  0x0000419d bpatch  0x00000074 , 0x0000402e 
+ 00023107  0x0000419e fetch  0x00000006 , 0x00000348 
+ 00023108  0x0000419f fetcht  0x00000006 , 0x000044f9 
+ 00023109  0x000041a0 isub  0x00000002 , 0x0000003e 
+ 00023110  0x000041a1 nrtn  0x00000005 
+ 00023111  0x000041a2 call  0x00005613 
+ 00023112  0x000041a3 copy  0x00000011 , 0x0000003f 
+ 00023113  0x000041a4 store  0x00000001 , 0x000044e6 
+ 00023114  0x000041a5 fetch  0x00000007 , 0x00000355 
+ 00023115  0x000041a6 store  0x00000007 , 0x00000103 
+ 00023116  0x000041a7 ifetch  0x00000008 , 0x00000006 
+ 00023117  0x000041a8 istore  0x00000008 , 0x00000005 
+ 00023118  0x000041a9 fetch  0x00000006 , 0x00000342 
+ 00023119  0x000041aa store  0x00000006 , 0x000003d0 
+ 00023120  0x000041ab set1  0x00000025 , 0x00000000 
+ 00023121  0x000041ac bpatch  0x00000075 , 0x0000402e 
+ 00023122  0x000041ad increase  0x00000006 , 0x00000006 
+ 00023123  0x000041ae ifetch  0x00000008 , 0x00000006 
+ 00023124  0x000041af store  0x00000008 , 0x000003e5 
+ 00023125  0x000041b0 ifetcht  0x00000002 , 0x00000006 
+ 00023126  0x000041b1 lshift2  0x00000002 , 0x00000002 
+ 00023127  0x000041b2 ifetch  0x00000002 , 0x00000006 
+ 00023128  0x000041b3 lshift2  0x0000003f , 0x0000003f 
+ 00023129  0x000041b4 store  0x00000002 , 0x000003c2 
+ 00023130  0x000041b5 store  0x00000004 , 0x000003c4 
+ 00023131  0x000041b6 isub  0x00000002 , 0x0000003f 
+ 00023132  0x000041b7 add  0x0000003f , 0xfffffffe , 0x00000028 
+ 00023133  0x000041b8 ifetch  0x00000009 , 0x00000006 
+ 00023134  0x000041b9 store  0x00000009 , 0x000003ed 
+ 00023135  0x000041ba set1  0x00000025 , 0x00000000 
+ 00023136  0x000041bb bpatch  0x00000076 , 0x0000402e 
+ 00023137  0x000041bc ifetch  0x00000001 , 0x00000006 
+ 00023138  0x000041bd rshift4  0x0000003f , 0x00000002 
+ 00023139  0x000041be rshift  0x00000002 , 0x00000002 
+ 00023140  0x000041bf storet  0x00000001 , 0x000003f8 
+ 00023141  0x000041c0 and_into  0x0000001f , 0x0000003f 
+ 00023142  0x000041c1 store  0x00000001 , 0x000003d9 
+ 00023143  0x000041c2 call  0x00005a2b 
+ 00023144  0x000041c3 call  0x00005447 
+ 00023145  0x000041c4 call  0x0000536c 
+ 00023146  0x000041c5 call  0x000032d6 
+ 00023147  0x000041c6 nrtn  0x00000005 
+ 00023148  0x000041c7 set1  0x00000025 , 0x00000000 
+ 00023149  0x000041c8 bpatch  0x00000077 , 0x0000402e 
+ 00023150  0x000041c9 arg  0x00000000 , 0x00000002 
+ 00023151  0x000041ca call  0x000048ea 
+ 00023152  0x000041cb call  0x000039ac 
+ 00023153  0x000041cc jam  0x00000014 , 0x00000b7d 
+ 00023154  0x000041cd call  0x00007c27 
+ 00023155  0x000041cf branch  0x000032bd 
+ 00023156  0x000041d3 set1  0x00000025 , 0x00000000 
+ 00023157  0x000041d4 bpatch  0x00000078 , 0x0000402f 
+ 00023158  0x000041d5 fetch  0x00000002 , 0x000044bc 
+ 00023159  0x000041d6 iforce  0x00000012 
+ 00023160  0x000041d7 fetch  0x00000002 , 0x000044be 
+ 00023161  0x000041d8 iforce  0x00000013 
+ 00023162  0x000041d9 arg  0x00004504 , 0x00000006 
+ 00023163  0x000041da enable  0x00000028 
+ 00023164  0x000041db rtn 
+ 00023165  0x000041df ifetch  0x00000002 , 0x00000006 
+ 00023166  0x000041e0 rtn  0x00000034 
+ 00023167  0x000041e1 isub  0x00000012 , 0x0000003e 
+ 00023168  0x000041e2 nrtn  0x00000002 
+ 00023169  0x000041e3 isub  0x00000013 , 0x0000003e 
+ 00023170  0x000041e4 rtn  0x00000005 
+ 00023171  0x000041e5 branch  0x00005a86 , 0x00000002 
+ 00023172  0x000041e6 force  0x00000001 , 0x0000003e 
+ 00023173  0x000041e7 rtn 
+ 00023174  0x000041e9 force  0x00000000 , 0x0000003f 
+ 00023175  0x000041ea rtn 
+ 00023176  0x000041ee arg  0x00004504 , 0x00000006 
+ 00023177  0x000041f0 ifetch  0x00000002 , 0x00000006 
+ 00023178  0x000041f1 rtn  0x00000034 
+ 00023179  0x000041f2 increase  0x00000002 , 0x00000006 
+ 00023180  0x000041f3 isub  0x00000002 , 0x0000003e 
+ 00023181  0x000041f4 rtn  0x00000005 
+ 00023182  0x000041f5 ifetch  0x00000001 , 0x00000006 
+ 00023183  0x000041f6 iadd  0x00000006 , 0x00000006 
+ 00023184  0x000041f7 branch  0x00005a89 
+ 00023185  0x000041fa jam  0x00000002 , 0x000044c6 
+ 00023186  0x000041fb setarg  0x00000001 
+ 00023187  0x000041fc store  0x00000002 , 0x000044c7 
+ 00023188  0x000041fd jam  0x00000025 , 0x000003e3 
+ 00023189  0x000041fe jam  0x00000012 , 0x00000b7d 
+ 00023190  0x000041ff branch  0x00005620 
+ 00023191  0x00004202 rtn 
+ 00023192  0x00004204 rtn 
+ 00023193  0x00004206 set1  0x00000025 , 0x00000000 
+ 00023194  0x00004207 bpatch  0x00000079 , 0x0000402f 
+ 00023195  0x00004208 fetch  0x00000001 , 0x00004132 
+ 00023196  0x00004209 rtnne  0x00000004 
+ 00023197  0x0000420a fetch  0x00000001 , 0x000003e3 
+ 00023198  0x0000420b beq  0x00000021 , 0x00005a91 
+ 00023199  0x0000420c beq  0x00000025 , 0x00005a97 
+ 00023200  0x0000420d beq  0x00000026 , 0x00005a98 
+ 00023201  0x0000420e rtn 
+ 00023202  0x00004211 setarg  0x00005aae 
+ 00023203  0x00004212 store  0x00000002 , 0x0000428c 
+ 00023204  0x00004213 hjam  0x00000081 , 0x00008062 
+ 00023205  0x00004214 setarg  0x000001a0 
+ 00023206  0x00004215 hstore  0x00000002 , 0x00008052 
+ 00023207  0x00004216 hjam  0x00000001 , 0x00008043 
+ 00023208  0x00004217 hjam  0x00000004 , 0x00008081 
+ 00023209  0x00004218 setarg  0x00005ac6 
+ 00023210  0x00004219 store  0x00000002 , 0x00004296 
+ 00023211  0x0000421a call  0x00005347 
+ 00023212  0x0000421b rtn  0x0000002b 
+ 00023213  0x0000421c branch  0x0000691d 
+ 00023214  0x00004220 fetch  0x00000001 , 0x000003c1 
+ 00023215  0x00004221 compare  0x00000001 , 0x0000003f , 0x000000ff 
+ 00023216  0x00004222 setarg  0x00000005 
+ 00023217  0x00004223 call  0x00006a04 , 0x00000001 
+ 00023218  0x00004224 ncall  0x000069ff , 0x00000001 
+ 00023219  0x00004225 call  0x000068fd 
+ 00023220  0x00004226 branch  0x00005abe , 0x00000034 
+ 00023221  0x00004227 fetch  0x00000002 , 0x00000419 
+ 00023222  0x00004228 iforce  0x00000005 
+ 00023223  0x00004229 sub  0x00000039 , 0x00000014 , 0x0000003e 
+ 00023224  0x0000422a branch  0x00005aba , 0x00000002 
+ 00023225  0x0000422b force  0x00000014 , 0x00000039 
+ 00023226  0x0000422d ifetch  0x00000001 , 0x00000003 
+ 00023227  0x0000422e istore  0x00000001 , 0x00000005 
+ 00023228  0x0000422f loop  0x00005aba 
+ 00023229  0x00004230 call  0x00006906 
+ 00023230  0x00004232 jam  0x00000014 , 0x000044c2 
+ 00023231  0x00004233 fetcht  0x00000002 , 0x00000419 
+ 00023232  0x00004234 ifetch  0x00000001 , 0x00000002 
+ 00023233  0x00004235 rtn  0x00000034 
+ 00023234  0x00004236 call  0x0000561c 
+ 00023235  0x00004237 nrtn  0x00000034 
+ 00023236  0x00004238 jam  0x0000001b , 0x00000b7d 
+ 00023237  0x00004239 branch  0x00005620 
+ 00023238  0x0000423c copy  0x00000012 , 0x00000002 
+ 00023239  0x0000423d call  0x000068f7 
+ 00023240  0x0000423e copy  0x00000011 , 0x00000006 
+ 00023241  0x0000423f copy  0x00000012 , 0x00000039 
+ 00023242  0x00004241 ifetch  0x00000001 , 0x00000006 
+ 00023243  0x00004242 istore  0x00000001 , 0x0000000a 
+ 00023244  0x00004243 loop  0x00005aca 
+ 00023245  0x00004244 branch  0x000068fa 
+ 00023246  0x00004247 fetch  0x00000001 , 0x00004132 
+ 00023247  0x00004248 rtnne  0x00000006 
+ 00023248  0x00004249 fetch  0x00000002 , 0x000044c2 
+ 00023249  0x0000424a rtnne  0x00000014 
+ 00023250  0x0000424b fetcht  0x00000002 , 0x00000419 
+ 00023251  0x0000424c setarg  0x00000000 
+ 00023252  0x0000424d istore  0x00000009 , 0x00000002 
+ 00023253  0x0000424e istore  0x00000009 , 0x00000005 
+ 00023254  0x0000424f istore  0x00000002 , 0x00000005 
+ 00023255  0x00004250 rtn 
+ 00023256  0x00004254 fetcht  0x00000001 , 0x000043d7 
+ 00023257  0x00004255 setflip  0x00000007 , 0x00000002 
+ 00023258  0x00004256 branch  0x000069f3 
+ 00023259  0x0000425a set1  0x00000025 , 0x00000000 
+ 00023260  0x0000425b bpatch  0x0000007a , 0x0000402f 
+ 00023261  0x0000425c call  0x00005adf 
+ 00023262  0x0000425d branch  0x00005aed 
+ 00023263  0x00004260 fetch  0x00000001 , 0x00004419 
+ 00023264  0x00004261 copy  0x0000003f , 0x00000039 
+ 00023265  0x00004262 arg  0x00002a00 , 0x00000002 
+ 00023266  0x00004263 call  0x00005b0c 
+ 00023267  0x00004264 increase  0x00000001 , 0x00000006 
+ 00023268  0x00004265 copy  0x00000006 , 0x00000005 
+ 00023269  0x00004266 arg  0x0000441a , 0x00000006 
+ 00023270  0x00004267 call  0x00007e45 
+ 00023271  0x00004268 fetch  0x00000001 , 0x00004419 
+ 00023272  0x00004269 sub  0x0000003f , 0x00000014 , 0x00000039 
+ 00023273  0x0000426a copy  0x00000039 , 0x00000002 
+ 00023274  0x0000426b copy  0x00000039 , 0x0000003f 
+ 00023275  0x0000426c ncall  0x00005b15 , 0x00000034 
+ 00023276  0x0000426d rtn 
+ 00023277  0x00004270 fetch  0x00000001 , 0x000043d9 
+ 00023278  0x00004271 fetcht  0x00000001 , 0x000043da 
+ 00023279  0x00004272 isub  0x00000002 , 0x0000003f 
+ 00023280  0x00004273 copy  0x0000003f , 0x00000039 
+ 00023281  0x00004274 copy  0x0000003f , 0x00000011 
+ 00023282  0x00004275 fetch  0x00000001 , 0x000043da 
+ 00023283  0x00004276 increase  0x00000001 , 0x0000003f 
+ 00023284  0x00004277 arg  0x000043da , 0x00000006 
+ 00023285  0x00004278 iadd  0x00000006 , 0x00000006 
+ 00023286  0x00004279 arg  0x0000041d , 0x00000005 
+ 00023287  0x0000427a call  0x00007e45 
+ 00023288  0x0000427b set1  0x00000025 , 0x00000000 
+ 00023289  0x0000427c bpatch  0x0000007b , 0x0000402f 
+ 00023290  0x0000427d fetch  0x00000001 , 0x00004419 
+ 00023291  0x0000427e copy  0x0000003f , 0x00000039 
+ 00023292  0x0000427f increase  0x00000001 , 0x0000003f 
+ 00023293  0x00004280 store  0x00000001 , 0x000043da 
+ 00023294  0x00004281 arg  0x000043dc , 0x00000005 
+ 00023295  0x00004282 arg  0x0000441a , 0x00000006 
+ 00023296  0x00004283 call  0x00007e45 
+ 00023297  0x00004284 copy  0x00000011 , 0x00000039 
+ 00023298  0x00004285 arg  0x0000041d , 0x00000006 
+ 00023299  0x00004286 call  0x00007e45 
+ 00023300  0x00004287 fetch  0x00000001 , 0x000043da 
+ 00023301  0x00004288 iadd  0x00000011 , 0x0000003f 
+ 00023302  0x00004289 store  0x00000001 , 0x000043d9 
+ 00023303  0x0000428a rtn 
+ 00023304  0x0000428e set1  0x00000025 , 0x00000000 
+ 00023305  0x0000428f bpatch  0x0000007c , 0x0000402f 
+ 00023306  0x00004290 arg  0x00002a00 , 0x00000002 
+ 00023307  0x00004291 branch  0x00005b0c 
+ 00023308  0x00004295 arg  0x00004504 , 0x00000006 
+ 00023309  0x00004297 ifetch  0x00000002 , 0x00000006 
+ 00023310  0x00004298 branch  0x00003bf1 , 0x00000034 
+ 00023311  0x00004299 ifetch  0x00000002 , 0x00000006 
+ 00023312  0x0000429a isub  0x00000002 , 0x0000003e 
+ 00023313  0x0000429b rtn  0x00000005 
+ 00023314  0x0000429c ifetch  0x00000001 , 0x00000006 
+ 00023315  0x0000429d iadd  0x00000006 , 0x00000006 
+ 00023316  0x0000429e branch  0x00005b0d 
+ 00023317  0x000042a2 setarg  0x00000020 
+ 00023318  0x000042a3 istore  0x00000001 , 0x00000005 
+ 00023319  0x000042a4 loop  0x00005b15 
+ 00023320  0x000042a5 rtn 
+ 00023321  0x000042a9 set1  0x00000025 , 0x00000000 
+ 00023322  0x000042aa bpatch  0x0000007d , 0x0000402f 
+ 00023323  0x000042ab disable  0x0000002b 
+ 00023324  0x000042ac branch  0x00005b1e , 0x0000002e 
+ 00023325  0x000042ad nbranch  0x00005b2a , 0x0000002d 
+ 00023326  0x000042af call  0x00003d76 
+ 00023327  0x000042b0 fetch  0x00000002 , 0x00004161 
+ 00023328  0x000042b1 store  0x00000002 , 0x000003ce 
+ 00023329  0x000042b2 fetch  0x00000001 , 0x00000340 
+ 00023330  0x000042b3 compare  0x00000001 , 0x0000003f , 0x00000003 
+ 00023331  0x000042b4 nbranch  0x00003d8a , 0x00000001 
+ 00023332  0x000042b5 fetch  0x00000001 , 0x0000443e 
+ 00023333  0x000042b6 compare  0x00000001 , 0x0000003f , 0x00000003 
+ 00023334  0x000042b7 nbranch  0x00003d8a , 0x00000001 
+ 00023335  0x000042b8 fetch  0x00000001 , 0x000003c0 
+ 00023336  0x000042b9 bbit1  0x00000005 , 0x00003d8a 
+ 00023337  0x000042ba branch  0x00003d6f 
+ 00023338  0x000042bd fetcht  0x00000002 , 0x00004161 
+ 00023339  0x000042be rshift  0x00000002 , 0x00000002 
+ 00023340  0x000042bf fetch  0x00000002 , 0x000003ce 
+ 00023341  0x000042c0 iadd  0x00000002 , 0x0000003f 
+ 00023342  0x000042c1 store  0x00000002 , 0x000003ce 
+ 00023343  0x000042c2 branch  0x00003d82 
+ 00023344  0x000042c5 set1  0x00000025 , 0x00000000 
+ 00023345  0x000042c6 bpatch  0x0000007e , 0x0000402f 
+ 00023346  0x000042c7 jam  0x00000000 , 0x000046f8 
+ 00023347  0x000042c8 fetcht  0x00000002 , 0x000044c2 
+ 00023348  0x000042c9 call  0x00005866 
+ 00023349  0x000042ca copy  0x00000011 , 0x00000005 
+ 00023350  0x000042cb setarg  0x00000000 
+ 00023351  0x000042cc istore  0x00000001 , 0x00000005 
+ 00023352  0x000042cd rtn 
+ 00023353  0x000042cf fetch  0x00000001 , 0x00004132 
+ 00023354  0x000042d0 rtnne  0x0000000a 
+ 00023355  0x000042d1 call  0x00007f6e 
+ 00023356  0x000042d2 arg  0x000003d0 , 0x00000011 
+ 00023357  0x000042d3 call  0x00007e9d 
+ 00023358  0x000042d4 setarg  0x0000002c 
+ 00023359  0x000042d5 istore  0x00000001 , 0x0000000a 
+ 00023360  0x000042d6 call  0x000041d4 
+ 00023361  0x000042d7 branch  0x000068fa 
+ 00023362  0x000042db arg  0x00000014 , 0x00000002 
+ 00023363  0x000042dc call  0x00005866 
+ 00023364  0x000042dd rtnbit0  0x00000000 
+ 00023365  0x000042de call  0x0000561c 
+ 00023366  0x000042df nrtn  0x00000034 
+ 00023367  0x000042e0 arg  0x00000014 , 0x00000002 
+ 00023368  0x000042e1 storet  0x00000002 , 0x000044c2 
+ 00023369  0x000042e2 call  0x00005a88 
+ 00023370  0x000042e3 branch  0x00003bf1 , 0x00000034 
+ 00023371  0x000042e4 add  0x00000006 , 0x00000001 , 0x00000005 
+ 00023372  0x000042e5 arg  0x00000014 , 0x00000039 
+ 00023373  0x000042e6 arg  0x0000046d , 0x00000006 
+ 00023374  0x000042e7 call  0x00007e45 
+ 00023375  0x000042e8 jam  0x0000001b , 0x00000b7d 
+ 00023376  0x000042e9 branch  0x00005620 
+ 00023377  0x000042eb rtn 
+ 00023378  0x000042ef set1  0x00000025 , 0x00000000 
+ 00023379  0x000042f0 bpatch  0x0000007f , 0x0000402f 
+ 00023380  0x000042f1 fetch  0x00000001 , 0x00000341 
+ 00023381  0x000042f2 arg  0x00000348 , 0x00000006 
+ 00023382  0x000042f3 iadd  0x00000006 , 0x00000039 
+ 00023383  0x000042f5 ifetcht  0x00000001 , 0x00000006 
+ 00023384  0x000042f6 ifetch  0x00000001 , 0x00000006 
+ 00023385  0x000042f7 isub  0x00000011 , 0x0000003e 
+ 00023386  0x000042f8 rtn  0x00000005 
+ 00023387  0x000042f9 add  0x00000002 , 0xffffffff , 0x0000003f 
+ 00023388  0x000042fa iadd  0x00000006 , 0x00000006 
+ 00023389  0x000042fb deposit  0x00000039 
+ 00023390  0x000042fc isub  0x00000006 , 0x0000003e 
+ 00023391  0x000042fd branch  0x00005b57 , 0x00000002 
+ 00023392  0x000042fe force  0x00000001 , 0x0000003e 
+ 00023393  0x000042ff rtn 
+ 00023394  0x00004307 rtn  0x0000002b 
+ 00023395  0x00004309 setarg  0x00000000 
+ 00023396  0x0000430a store  0x00000001 , 0x00000048 
+ 00023397  0x0000430b store  0x00000001 , 0x00000055 
+ 00023398  0x0000430c store  0x00000001 , 0x00000078 
+ 00023399  0x0000430d store  0x00000001 , 0x0000007c 
+ 00023400  0x0000430e store  0x00000001 , 0x000041f9 
+ 00023401  0x0000430f store  0x00000001 , 0x00000453 
+ 00023402  0x00004310 store  0x00000001 , 0x00000177 
+ 00023403  0x00004311 store  0x00000001 , 0x000007e1 
+ 00023404  0x00004312 jam  0x00000000 , 0x00004748 
+ 00023405  0x00004313 jam  0x00000000 , 0x00000258 
+ 00023406  0x00004314 jam  0x00000000 , 0x00000454 
+ 00023407  0x00004316 set1  0x00000025 , 0x00000000 
+ 00023408  0x00004317 bpatch  0x000000e0 , 0x0000403c 
+ 00023409  0x00004318 jam  0x00000000 , 0x000007e1 
+ 00023410  0x00004319 jam  0x00000000 , 0x000007e0 
+ 00023411  0x0000431a jam  0x00000000 , 0x0000044d 
+ 00023412  0x0000431b fetch  0x00000001 , 0x00004132 
+ 00023413  0x0000431c rtnne  0x00000001 , 0x0000003f 
+ 00023414  0x0000431d jam  0x00000000 , 0x0000425e 
+ 00023415  0x00004320 rtn 
+ 00023416  0x00004323 set1  0x00000025 , 0x00000000 
+ 00023417  0x00004324 bpatch  0x000000e1 , 0x0000403c 
+ 00023418  0x00004325 call  0x00006219 , 0x00000029 
+ 00023419  0x00004326 ncall  0x0000621d , 0x00000029 
+ 00023420  0x00004327 fetch  0x00000001 , 0x0000007c 
+ 00023421  0x00004328 ncall  0x000061d9 , 0x00000034 
+ 00023422  0x00004329 fetch  0x00000001 , 0x0000007c 
+ 00023423  0x0000432a nrtn  0x00000034 
+ 00023424  0x0000432b fetch  0x00000001 , 0x0000004c 
+ 00023425  0x0000432c rtnbit0  0x00000006 
+ 00023426  0x0000432d set0  0x00000006 , 0x0000003f 
+ 00023427  0x0000432e set0  0x00000001 , 0x00000000 
+ 00023428  0x0000432f store  0x00000001 , 0x0000004c 
+ 00023429  0x00004330 fetch  0x00000001 , 0x000004de 
+ 00023430  0x00004331 fetcht  0x00000001 , 0x0000004c 
+ 00023431  0x00004332 isolate1  0x00000000 , 0x0000003f 
+ 00023432  0x00004333 setflag  0x00000001 , 0x00000001 , 0x00000002 
+ 00023433  0x00004334 storet  0x00000001 , 0x0000004c 
+ 00023434  0x00004335 and_into  0x00000002 , 0x00000002 
+ 00023435  0x00004336 storet  0x00000001 , 0x0000007f 
+ 00023436  0x00004337 fetcht  0x00000001 , 0x0000004c 
+ 00023437  0x00004338 rshift  0x0000003f , 0x0000003f 
+ 00023438  0x00004339 store  0x00000001 , 0x0000007d 
+ 00023439  0x0000433a set1  0x00000025 , 0x00000000 
+ 00023440  0x0000433b bpatch  0x000000e2 , 0x0000403c 
+ 00023441  0x0000433c fetch  0x00000001 , 0x0000007d 
+ 00023442  0x0000433d beq  0x0000007f , 0x00005bdc 
+ 00023443  0x0000433e beq  0x00000003 , 0x00005c56 
+ 00023444  0x0000433f beq  0x00000004 , 0x00005c67 
+ 00023445  0x00004340 beq  0x0000003c , 0x00005bcf 
+ 00023446  0x00004341 beq  0x00000005 , 0x00005bcb 
+ 00023447  0x00004342 beq  0x0000000f , 0x00005e48 
+ 00023448  0x00004343 beq  0x00000010 , 0x00005ce1 
+ 00023449  0x00004344 beq  0x00000023 , 0x00005cff 
+ 00023450  0x00004345 beq  0x00000039 , 0x00005e67 
+ 00023451  0x00004346 beq  0x00000038 , 0x00005e62 
+ 00023452  0x00004347 beq  0x00000031 , 0x00005ce4 
+ 00023453  0x00004348 beq  0x00000037 , 0x00005d72 
+ 00023454  0x00004349 beq  0x00000027 , 0x00005d6e 
+ 00023455  0x0000434a beq  0x00000033 , 0x00005d68 
+ 00023456  0x0000434b beq  0x00000025 , 0x00005d70 
+ 00023457  0x0000434c beq  0x00000026 , 0x00005cfb 
+ 00023458  0x0000434d beq  0x00000007 , 0x00005cf3 
+ 00023459  0x0000434e beq  0x0000002d , 0x00005cea 
+ 00023460  0x0000434f beq  0x0000002e , 0x00005ceb 
+ 00023461  0x00004350 beq  0x00000001 , 0x00005d64 
+ 00023462  0x00004351 beq  0x00000002 , 0x00005d4f 
+ 00023463  0x00004352 beq  0x00000028 , 0x00005e53 
+ 00023464  0x00004353 beq  0x00000009 , 0x00005d45 
+ 00023465  0x00004354 beq  0x0000000b , 0x00005d1a 
+ 00023466  0x00004355 beq  0x00000008 , 0x00005d00 
+ 00023467  0x00004356 beq  0x0000000c , 0x00005d2c 
+ 00023468  0x00004357 beq  0x0000001f , 0x00005cf7 
+ 00023469  0x00004358 beq  0x00000020 , 0x00005cf9 
+ 00023470  0x00004359 beq  0x00000021 , 0x00005d8d 
+ 00023471  0x0000435a beq  0x00000022 , 0x00005d8e 
+ 00023472  0x0000435b beq  0x00000035 , 0x00005d8f 
+ 00023473  0x0000435c beq  0x00000036 , 0x00005d90 
+ 00023474  0x0000435d beq  0x00000024 , 0x00005d91 
+ 00023475  0x0000435e beq  0x0000002c , 0x00005d92 
+ 00023476  0x0000435f beq  0x0000002b , 0x00005d95 
+ 00023477  0x00004360 beq  0x00000034 , 0x00005d9f 
+ 00023478  0x00004361 beq  0x00000017 , 0x00005da2 
+ 00023479  0x00004362 beq  0x00000011 , 0x00005db7 
+ 00023480  0x00004363 beq  0x00000012 , 0x00005dbb 
+ 00023481  0x00004364 beq  0x00000013 , 0x00005dbd 
+ 00023482  0x00004365 beq  0x0000000d , 0x00005dcf 
+ 00023483  0x00004366 beq  0x0000000e , 0x00005dd0 
+ 00023484  0x00004367 beq  0x0000002f , 0x00005d6c 
+ 00023485  0x00004368 beq  0x00000030 , 0x00005dd1 
+ 00023486  0x00004369 beq  0x0000000a , 0x00005dd2 
+ 00023487  0x0000436a beq  0x00000018 , 0x00005dd3 
+ 00023488  0x0000436b beq  0x00000032 , 0x00005dda 
+ 00023489  0x0000436c beq  0x0000003d , 0x00005ddb 
+ 00023490  0x0000436d beq  0x0000003e , 0x00005dff 
+ 00023491  0x0000436e beq  0x0000003f , 0x00005df9 
+ 00023492  0x0000436f beq  0x00000040 , 0x00005e22 
+ 00023493  0x00004370 beq  0x00000041 , 0x00005e34 
+ 00023494  0x00004371 beq  0x00000006 , 0x00005e47 
+ 00023495  0x00004372 beq  0x0000003a , 0x00005bcd 
+ 00023496  0x00004376 jam  0x00000019 , 0x0000007e 
+ 00023497  0x00004378 jam  0x00000004 , 0x0000007c 
+ 00023498  0x00004379 rtn 
+ 00023499  0x0000437c jam  0x00000006 , 0x0000007c 
+ 00023500  0x0000437d rtn 
+ 00023501  0x00004380 jam  0x0000003b , 0x0000007c 
+ 00023502  0x00004381 rtn 
+ 00023503  0x00004384 fetch  0x00000004 , 0x000004df 
+ 00023504  0x00004385 lshift  0x0000003f , 0x0000003f 
+ 00023505  0x00004386 store  0x00000004 , 0x00004173 
+ 00023506  0x00004387 fetch  0x00000001 , 0x000004e3 
+ 00023507  0x00004388 store  0x00000001 , 0x0000417a 
+ 00023508  0x00004389 fetch  0x00000005 , 0x000004e4 
+ 00023509  0x0000438a store  0x00000005 , 0x00004188 
+ 00023510  0x0000438b fetch  0x00000005 , 0x000004e9 
+ 00023511  0x0000438c istore  0x00000005 , 0x00000005 
+ 00023512  0x0000438d fetch  0x00000001 , 0x00000031 
+ 00023513  0x0000438e set1  0x00000003 , 0x0000003f 
+ 00023514  0x0000438f store  0x00000001 , 0x00000031 
+ 00023515  0x00004390 rtn 
+ 00023516  0x00004392 fetch  0x00000001 , 0x000004df 
+ 00023517  0x00004393 set1  0x00000007 , 0x0000003f 
+ 00023518  0x00004394 store  0x00000001 , 0x0000007d 
+ 00023519  0x00004395 beq  0x00000081 , 0x00005c26 
+ 00023520  0x00004396 beq  0x00000082 , 0x00005c2e 
+ 00023521  0x00004397 beq  0x00000095 , 0x00005d73 
+ 00023522  0x00004398 beq  0x00000096 , 0x00005d8c 
+ 00023523  0x00004399 beq  0x0000008b , 0x00005d81 
+ 00023524  0x0000439a beq  0x00000083 , 0x00005c49 
+ 00023525  0x0000439b beq  0x00000084 , 0x00005c4b 
+ 00023526  0x0000439c beq  0x00000090 , 0x00005bf1 
+ 00023527  0x0000439d beq  0x00000097 , 0x00005c42 
+ 00023528  0x0000439e beq  0x00000098 , 0x00005c47 
+ 00023529  0x0000439f beq  0x00000099 , 0x00005c14 
+ 00023530  0x000043a0 beq  0x0000009a , 0x00005c19 
+ 00023531  0x000043a1 beq  0x0000008d , 0x00005c11 
+ 00023532  0x000043a2 beq  0x0000008c , 0x00005bf4 
+ 00023533  0x000043a3 rtneq  0x00000084 
+ 00023534  0x000043a7 jam  0x00000082 , 0x0000007c 
+ 00023535  0x000043a8 jam  0x00000019 , 0x0000007e 
+ 00023536  0x000043aa rtn 
+ 00023537  0x000043ac jam  0x00000082 , 0x0000007c 
+ 00023538  0x000043ad jam  0x0000002e , 0x0000007e 
+ 00023539  0x000043ae rtn 
+ 00023540  0x000043b1 fetch  0x00000001 , 0x000004e0 
+ 00023541  0x000043b2 store  0x00000001 , 0x000000ad 
+ 00023542  0x000043b3 fetch  0x00000001 , 0x000004e1 
+ 00023543  0x000043b4 store  0x00000001 , 0x000041f9 
+ 00023544  0x000043b5 fetch  0x00000001 , 0x000004e3 
+ 00023545  0x000043b6 store  0x00000001 , 0x000000af 
+ 00023546  0x000043b7 fetch  0x00000001 , 0x000004e7 
+ 00023547  0x000043b8 store  0x00000001 , 0x000000b0 
+ 00023548  0x000043b9 fetch  0x00000001 , 0x000004ec 
+ 00023549  0x000043ba store  0x00000001 , 0x000000ab 
+ 00023550  0x000043bb bmark1  0x00000007 , 0x00005c07 
+ 00023551  0x000043bc set1  0x00000007 , 0x00000000 
+ 00023552  0x000043bd call  0x00005d16 
+ 00023553  0x000043be store  0x00000001 , 0x00000452 
+ 00023554  0x000043bf force  0x00000000 , 0x00000002 
+ 00023555  0x000043c0 branch  0x00004839 
+ 00023556  0x000043c3 jam  0x0000008c , 0x0000007c 
+ 00023557  0x000043c4 jam  0x00000001 , 0x000000b1 
+ 00023558  0x000043c5 branch  0x000049bc 
+ 00023559  0x000043c8 fetch  0x00000001 , 0x000000b0 
+ 00023560  0x000043c9 bne  0x00000007 , 0x00005c0b 
+ 00023561  0x000043ca jam  0x00000081 , 0x0000007c 
+ 00023562  0x000043cb branch  0x00005c0f 
+ 00023563  0x000043cd set0  0x00000007 , 0x00000000 
+ 00023564  0x000043ce jam  0x00000082 , 0x0000007c 
+ 00023565  0x000043cf force  0x00000001 , 0x00000002 
+ 00023566  0x000043d0 call  0x00004914 
+ 00023567  0x000043d2 jam  0x0000008c , 0x0000007d 
+ 00023568  0x000043d3 rtn 
+ 00023569  0x000043d7 jam  0x00000081 , 0x0000007c 
+ 00023570  0x000043d8 jam  0x0000008d , 0x0000007d 
+ 00023571  0x000043d9 branch  0x00003869 
+ 00023572  0x000043dc call  0x00005c1d 
+ 00023573  0x000043dd fetch  0x00000001 , 0x00004132 
+ 00023574  0x000043de beq  0x00000001 , 0x00005c21 
+ 00023575  0x000043df jam  0x0000009a , 0x0000007c 
+ 00023576  0x000043e0 rtn 
+ 00023577  0x000043e3 call  0x00005c1d 
+ 00023578  0x000043e4 fetch  0x00000001 , 0x00004132 
+ 00023579  0x000043e5 beq  0x00000001 , 0x00005c21 
+ 00023580  0x000043e6 branch  0x00005c22 
+ 00023581  0x000043e9 arg  0x000007e9 , 0x00000005 
+ 00023582  0x000043ea fetch  0x00000003 , 0x000004e0 
+ 00023583  0x000043eb istore  0x00000003 , 0x00000005 
+ 00023584  0x000043ec rtn 
+ 00023585  0x000043ef call  0x0000480f 
+ 00023586  0x000043f1 call  0x00006216 
+ 00023587  0x000043f2 ncall  0x0000481b , 0x00000001 
+ 00023588  0x000043f3 branch  0x0000780f , 0x00000001 
+ 00023589  0x000043f4 rtn 
+ 00023590  0x000043f6 fetch  0x00000001 , 0x000004e1 
+ 00023591  0x000043f7 set1  0x00000007 , 0x0000003f 
+ 00023592  0x000043f8 store  0x00000001 , 0x00000445 
+ 00023593  0x000043f9 beq  0x0000008b , 0x00005c36 
+ 00023594  0x000043fa beq  0x0000008c , 0x0000384a 
+ 00023595  0x000043fb beq  0x0000008d , 0x00005c2d 
+ 00023596  0x000043fc rtn 
+ 00023597  0x000043ff branch  0x00003869 
+ 00023598  0x00004402 fetch  0x00000001 , 0x000004e1 
+ 00023599  0x00004403 set1  0x00000007 , 0x0000003f 
+ 00023600  0x00004404 store  0x00000001 , 0x00000445 
+ 00023601  0x00004405 beq  0x0000008b , 0x00005c3a 
+ 00023602  0x00004406 beq  0x0000008c , 0x00005c34 
+ 00023603  0x00004407 rtn 
+ 00023604  0x0000440a set0  0x00000007 , 0x00000000 
+ 00023605  0x0000440b rtn 
+ 00023606  0x0000440e fetch  0x00000001 , 0x000041fb 
+ 00023607  0x0000440f fetcht  0x00000001 , 0x0000004c 
+ 00023608  0x00004410 nsetflag  0x00000034 , 0x00000005 , 0x00000002 
+ 00023609  0x00004411 storet  0x00000001 , 0x0000004c 
+ 00023610  0x00004413 fetch  0x00000001 , 0x00000030 
+ 00023611  0x00004414 rtnbit0  0x00000005 
+ 00023612  0x00004415 set0  0x00000005 , 0x0000003f 
+ 00023613  0x00004416 store  0x00000001 , 0x00000030 
+ 00023614  0x00004417 fetch  0x00000001 , 0x00000453 
+ 00023615  0x00004418 nbranch  0x00004872 , 0x00000034 
+ 00023616  0x00004419 jam  0x00000031 , 0x0000007c 
+ 00023617  0x0000441a rtn 
+ 00023618  0x0000441d nbranch  0x00005c45 , 0x00000029 
+ 00023619  0x0000441e jam  0x00000012 , 0x0000007c 
+ 00023620  0x0000441f branch  0x00006205 
+ 00023621  0x00004422 jam  0x00000097 , 0x0000007c 
+ 00023622  0x00004423 rtn 
+ 00023623  0x00004428 call  0x00006205 
+ 00023624  0x00004429 branch  0x00005ecd 
+ 00023625  0x0000442c jam  0x00000084 , 0x0000007c 
+ 00023626  0x0000442d rtn 
+ 00023627  0x00004430 fetcht  0x00000001 , 0x000004e2 
+ 00023628  0x00004431 and  0x00000002 , 0x00000001 , 0x00000002 
+ 00023629  0x00004432 storet  0x00000001 , 0x0000044c 
+ 00023630  0x00004433 fetch  0x00000001 , 0x00004272 
+ 00023631  0x00004434 bne  0x00000051 , 0x00005c52 
+ 00023632  0x00004435 jam  0x00000000 , 0x00004272 
+ 00023633  0x00004436 call  0x000047f9 
+ 00023634  0x00004438 fetch  0x00000001 , 0x00000055 
+ 00023635  0x00004439 rtnne  0x00000015 
+ 00023636  0x0000443a jam  0x00000004 , 0x00000055 
+ 00023637  0x0000443b branch  0x00006235 
+ 00023638  0x0000443e fetch  0x00000001 , 0x000004df 
+ 00023639  0x0000443f store  0x00000001 , 0x00000445 
+ 00023640  0x00004440 beq  0x00000033 , 0x00005c7d 
+ 00023641  0x00004441 beq  0x00000008 , 0x00005c90 
+ 00023642  0x00004442 beq  0x0000000f , 0x00005c97 
+ 00023643  0x00004443 beq  0x00000010 , 0x00005c9d 
+ 00023644  0x00004444 beq  0x00000011 , 0x00005c9e 
+ 00023645  0x00004445 beq  0x00000012 , 0x00005ca6 
+ 00023646  0x00004446 beq  0x00000018 , 0x00005ccc 
+ 00023647  0x00004447 beq  0x00000017 , 0x00005cd1 
+ 00023648  0x00004448 beq  0x0000002b , 0x0000384a 
+ 00023649  0x0000444a beq  0x00000013 , 0x00005c74 
+ 00023650  0x0000444c beq  0x0000003d , 0x00005de9 
+ 00023651  0x0000444d beq  0x0000003e , 0x00005e18 
+ 00023652  0x0000444e beq  0x00000040 , 0x00005deb 
+ 00023653  0x0000444f beq  0x00000041 , 0x00005def 
+ 00023654  0x00004450 rtn 
+ 00023655  0x00004453 fetch  0x00000001 , 0x000004df 
+ 00023656  0x00004454 store  0x00000001 , 0x00000445 
+ 00023657  0x00004455 beq  0x00000001 , 0x00005cc3 
+ 00023658  0x00004456 beq  0x00000033 , 0x00005c87 
+ 00023659  0x00004457 beq  0x0000000b , 0x00005ca7 
+ 00023660  0x00004458 beq  0x0000002b , 0x00005c8e 
+ 00023661  0x00004459 beq  0x00000008 , 0x00005cba 
+ 00023662  0x0000445a beq  0x00000013 , 0x00005c77 
+ 00023663  0x0000445c beq  0x00000040 , 0x00005cc4 
+ 00023664  0x0000445d beq  0x00000041 , 0x00005cc7 
+ 00023665  0x0000445e beq  0x00000018 , 0x00005cca 
+ 00023666  0x0000445f beq  0x00000017 , 0x00005cdf 
+ 00023667  0x00004460 rtn 
+ 00023668  0x00004463 jam  0x00000020 , 0x00000b7d 
+ 00023669  0x00004464 call  0x00007c27 
+ 00023670  0x00004465 branch  0x00003245 
+ 00023671  0x00004467 jam  0x00000019 , 0x00000b7d 
+ 00023672  0x00004468 call  0x00007c27 
+ 00023673  0x00004469 jam  0x00000002 , 0x00004748 
+ 00023674  0x0000446a setarg  0x00000050 
+ 00023675  0x0000446b arg  0x0000000a , 0x00000007 
+ 00023676  0x0000446c branch  0x00007e4c 
+ 00023677  0x00004472 fetch  0x00000001 , 0x0000044d 
+ 00023678  0x00004473 set1  0x00000000 , 0x0000003f 
+ 00023679  0x00004474 store  0x00000001 , 0x0000044d 
+ 00023680  0x00004475 jam  0x00000001 , 0x00000b7d 
+ 00023681  0x00004476 call  0x00007c27 
+ 00023682  0x00004477 jam  0x0000008b , 0x0000007c 
+ 00023683  0x0000447b fetch  0x00000001 , 0x00000055 
+ 00023684  0x0000447c bne  0x00000005 , 0x00005b77 
+ 00023685  0x0000447f jam  0x00000006 , 0x00000055 
+ 00023686  0x00004480 rtn 
+ 00023687  0x00004489 jam  0x0000000b , 0x00000446 
+ 00023688  0x0000448a jam  0x00000007 , 0x0000007c 
+ 00023689  0x0000448b force  0x00000010 , 0x00000002 
+ 00023690  0x0000448c call  0x00004826 
+ 00023691  0x0000448e jam  0x00000000 , 0x00000055 
+ 00023692  0x00004490 branch  0x00005b77 , 0x00000001 
+ 00023693  0x00004491 rtn 
+ 00023694  0x00004494 jam  0x0000002b , 0x0000007c 
+ 00023695  0x00004495 rtn 
+ 00023696  0x00004499 fetch  0x00000001 , 0x0000425e 
+ 00023697  0x0000449a nrtn  0x00000034 
+ 00023698  0x0000449b call  0x00003507 
+ 00023699  0x0000449c call  0x00005ecb 
+ 00023700  0x0000449d rtn  0x00000029 
+ 00023701  0x0000449e set1  0x00000021 , 0x00000000 
+ 00023702  0x0000449f rtn 
+ 00023703  0x000044a2 nrtn  0x00000029 
+ 00023704  0x000044a3 jam  0x00000010 , 0x0000007c 
+ 00023705  0x000044a4 fetch  0x00000001 , 0x0000004c 
+ 00023706  0x000044a5 rtnbit0  0x00000002 
+ 00023707  0x000044a6 jam  0x00000012 , 0x0000007c 
+ 00023708  0x000044a7 rtn 
+ 00023709  0x000044aa branch  0x00005ecd 
+ 00023710  0x000044ad call  0x00005f2d 
+ 00023711  0x000044ae fetch  0x00000001 , 0x00000030 
+ 00023712  0x000044af rtnbit1  0x00000004 
+ 00023713  0x000044b0 jam  0x00000031 , 0x0000007c 
+ 00023714  0x000044b1 fetch  0x00000001 , 0x00000055 
+ 00023715  0x000044b2 rtnne  0x0000000a 
+ 00023716  0x000044b3 jam  0x0000000b , 0x00000055 
+ 00023717  0x000044b4 rtn 
+ 00023718  0x000044be rtn 
+ 00023719  0x000044c1 fetch  0x00000001 , 0x00004132 
+ 00023720  0x000044c2 bne  0x00000001 , 0x00005cb7 
+ 00023721  0x000044c3 fetch  0x00000001 , 0x0000425e 
+ 00023722  0x000044c4 rtn  0x00000034 
+ 00023723  0x000044c5 fetcht  0x00000001 , 0x00000055 
+ 00023724  0x000044c6 jam  0x00000000 , 0x00000055 
+ 00023725  0x000044c7 jam  0x00000000 , 0x0000425e 
+ 00023726  0x000044c8 fetch  0x00000001 , 0x000004e0 
+ 00023727  0x000044c9 rtnne  0x00000006 
+ 00023728  0x000044ca storet  0x00000001 , 0x00000055 
+ 00023729  0x000044cb jam  0x00000001 , 0x000007e0 
+ 00023730  0x000044cc fetch  0x00000002 , 0x0000044a 
+ 00023731  0x000044cd fetcht  0x00000001 , 0x0000044c 
+ 00023732  0x000044ce iand  0x00000002 , 0x0000003f 
+ 00023733  0x000044cf branch  0x000049da , 0x00000034 
+ 00023734  0x000044d0 branch  0x000049d7 
+ 00023735  0x000044d3 jam  0x00000007 , 0x0000007c 
+ 00023736  0x000044d4 jam  0x00000013 , 0x00000446 
+ 00023737  0x000044d5 rtn 
+ 00023738  0x000044d8 fetch  0x00000001 , 0x000004e0 
+ 00023739  0x000044d9 beq  0x00000006 , 0x00005cc0 
+ 00023740  0x000044da rtnne  0x00000018 
+ 00023741  0x000044db jam  0x00000018 , 0x00000446 
+ 00023742  0x000044dc jam  0x00000007 , 0x0000007c 
+ 00023743  0x000044dd rtn 
+ 00023744  0x000044df jam  0x00000006 , 0x00000446 
+ 00023745  0x000044e0 jam  0x00000007 , 0x0000007c 
+ 00023746  0x000044e1 rtn 
+ 00023747  0x000044e4 rtn 
+ 00023748  0x000044e7 jam  0x00000000 , 0x000007da 
+ 00023749  0x000044e8 jam  0x00000007 , 0x0000007c 
+ 00023750  0x000044e9 branch  0x00005b77 
+ 00023751  0x000044ec jam  0x00000000 , 0x000007da 
+ 00023752  0x000044ed jam  0x00000007 , 0x0000007c 
+ 00023753  0x000044ee branch  0x00005b77 
+ 00023754  0x000044f0 jam  0x00000024 , 0x00000b7d 
+ 00023755  0x000044f1 branch  0x00007c27 
+ 00023756  0x000044f4 jam  0x00000023 , 0x00000b7d 
+ 00023757  0x000044f5 call  0x00007c27 
+ 00023758  0x000044f6 call  0x00003806 
+ 00023759  0x000044f7 force  0x00000000 , 0x00000002 
+ 00023760  0x000044f8 branch  0x00004907 
+ 00023761  0x000044fb jam  0x00000022 , 0x00000b7d 
+ 00023762  0x000044fc call  0x00007c27 
+ 00023763  0x000044fd force  0x00000002 , 0x00000002 
+ 00023764  0x000044fe call  0x00004907 
+ 00023765  0x000044ff setarg  0x00000000 
+ 00023766  0x00004500 store  0x00000002 , 0x00000075 
+ 00023767  0x00004501 fetch  0x00000002 , 0x00004280 
+ 00023768  0x00004502 lshift  0x0000003f , 0x0000003f 
+ 00023769  0x00004503 store  0x00000002 , 0x00000032 
+ 00023770  0x00004504 fetch  0x00000001 , 0x00004282 
+ 00023771  0x00004505 store  0x00000001 , 0x00000073 
+ 00023772  0x00004506 fetch  0x00000001 , 0x00004284 
+ 00023773  0x00004507 store  0x00000001 , 0x00000074 
+ 00023774  0x00004508 branch  0x000037e1 
+ 00023775  0x0000450b jam  0x00000021 , 0x00000b7d 
+ 00023776  0x0000450c branch  0x00007c27 
+ 00023777  0x0000450f fetcht  0x00000001 , 0x000004df 
+ 00023778  0x00004510 storet  0x00000001 , 0x00000054 
+ 00023779  0x00004511 branch  0x00005cf5 
+ 00023780  0x00004514 fetch  0x00000001 , 0x0000044d 
+ 00023781  0x00004515 set1  0x00000002 , 0x0000003f 
+ 00023782  0x00004516 store  0x00000001 , 0x0000044d 
+ 00023783  0x00004517 rtnbit1  0x00000003 
+ 00023784  0x00004518 jam  0x00000031 , 0x0000007c 
+ 00023785  0x00004519 branch  0x00005b77 
+ 00023786  0x0000451e rtn 
+ 00023787  0x00004521 fetch  0x00000001 , 0x00004171 
+ 00023788  0x00004522 fetcht  0x00000001 , 0x000004df 
+ 00023789  0x00004523 isub  0x00000002 , 0x0000003e 
+ 00023790  0x00004525 branch  0x00005cf5 , 0x00000002 
+ 00023791  0x00004526 jam  0x00000004 , 0x0000007c 
+ 00023792  0x00004527 jam  0x0000001f , 0x0000007e 
+ 00023793  0x00004528 jam  0x0000002e , 0x0000007d 
+ 00023794  0x00004529 rtn 
+ 00023795  0x0000452c call  0x0000605a 
+ 00023796  0x0000452d branch  0x00005cf5 
+ 00023797  0x00004530 jam  0x00000003 , 0x0000007c 
+ 00023798  0x00004531 rtn 
+ 00023799  0x00004534 jam  0x00000021 , 0x0000007c 
+ 00023800  0x00004535 rtn 
+ 00023801  0x00004538 jam  0x00000022 , 0x0000007c 
+ 00023802  0x00004539 rtn 
+ 00023803  0x0000453c fetch  0x00000001 , 0x00000055 
+ 00023804  0x0000453d rtneq  0x00000013 
+ 00023805  0x0000453f jam  0x00000002 , 0x00000055 
+ 00023806  0x00004541 rtn 
+ 00023807  0x00004545 rtn 
+ 00023808  0x00004548 call  0x00005ec8 
+ 00023809  0x00004549 jam  0x00000001 , 0x00000450 
+ 00023810  0x0000454a fetch  0x00000001 , 0x00004132 
+ 00023811  0x0000454b beq  0x00000001 , 0x00005d06 
+ 00023812  0x0000454c jam  0x0000000a , 0x00000b7d 
+ 00023813  0x0000454d call  0x00007c27 
+ 00023814  0x0000454f call  0x0000487b 
+ 00023815  0x00004550 call  0x0000620d 
+ 00023816  0x00004551 nbranch  0x00005ed0 , 0x00000001 
+ 00023817  0x00004552 nbranch  0x00005d0e , 0x00000029 
+ 00023818  0x00004553 jam  0x00000004 , 0x0000007c 
+ 00023819  0x00004554 jam  0x00000008 , 0x0000007d 
+ 00023820  0x00004555 jam  0x00000023 , 0x0000007e 
+ 00023821  0x00004556 rtn 
+ 00023822  0x00004558 fetch  0x00000001 , 0x0000004b 
+ 00023823  0x00004559 set1  0x00000002 , 0x0000003f 
+ 00023824  0x0000455a store  0x00000001 , 0x0000004b 
+ 00023825  0x0000455b rtn 
+ 00023826  0x0000455f fetcht  0x00000001 , 0x0000004c 
+ 00023827  0x00004560 nsetflag  0x00000034 , 0x00000001 , 0x00000002 
+ 00023828  0x00004561 storet  0x00000001 , 0x0000004c 
+ 00023829  0x00004562 rtn 
+ 00023830  0x00004566 fetch  0x00000001 , 0x0000007f 
+ 00023831  0x00004567 rshift  0x0000003f , 0x0000003f 
+ 00023832  0x00004568 and_into  0x00000001 , 0x0000003f 
+ 00023833  0x00004569 rtn 
+ 00023834  0x0000456c call  0x00005d16 
+ 00023835  0x0000456d store  0x00000001 , 0x00000451 
+ 00023836  0x0000456e call  0x00005ec8 
+ 00023837  0x0000456f jam  0x0000000c , 0x0000007c 
+ 00023838  0x00004570 fetch  0x00000001 , 0x0000425e 
+ 00023839  0x00004571 nrtn  0x00000034 
+ 00023840  0x00004572 fetch  0x00000001 , 0x00000030 
+ 00023841  0x00004573 rtnbit1  0x00000006 
+ 00023842  0x00004574 jam  0x00000006 , 0x0000007e 
+ 00023843  0x00004575 fetch  0x00000001 , 0x00004132 
+ 00023844  0x00004576 bne  0x00000001 , 0x00005bc9 
+ 00023845  0x00004577 fetch  0x00000001 , 0x00000453 
+ 00023846  0x00004578 nbranch  0x00005bc9 , 0x00000034 
+ 00023847  0x00004579 jam  0x00000000 , 0x0000007c 
+ 00023848  0x0000457b fetch  0x00000001 , 0x0000004b 
+ 00023849  0x0000457c set1  0x00000000 , 0x0000003f 
+ 00023850  0x0000457d store  0x00000001 , 0x0000004b 
+ 00023851  0x0000457e branch  0x00004872 
+ 00023852  0x00004581 arg  0x00000040 , 0x00000011 
+ 00023853  0x00004582 call  0x0000739d 
+ 00023854  0x00004583 fetch  0x00000004 , 0x000004df 
+ 00023855  0x00004584 fetcht  0x00000004 , 0x0000051f 
+ 00023856  0x00004585 isub  0x00000002 , 0x0000003e 
+ 00023857  0x00004586 branch  0x00005d35 , 0x00000005 
+ 00023858  0x00004587 jam  0x00000007 , 0x0000007c 
+ 00023859  0x00004588 jam  0x00000005 , 0x00000446 
+ 00023860  0x00004589 rtn 
+ 00023861  0x0000458b call  0x0000749b 
+ 00023862  0x0000458c call  0x00003211 
+ 00023863  0x0000458d fetch  0x00000001 , 0x0000004b 
+ 00023864  0x0000458e isolate1  0x00000001 , 0x0000003f 
+ 00023865  0x0000458f set0  0x00000001 , 0x0000003f 
+ 00023866  0x00004590 store  0x00000001 , 0x0000004b 
+ 00023867  0x00004591 call  0x000048bc , 0x00000001 
+ 00023868  0x00004592 fetch  0x00000001 , 0x00000055 
+ 00023869  0x00004593 beq  0x00000019 , 0x00005d40 
+ 00023870  0x00004594 beq  0x00000018 , 0x00005d40 
+ 00023871  0x00004595 rtn 
+ 00023872  0x00004597 fetch  0x00000001 , 0x000007e1 
+ 00023873  0x00004598 rtnne  0x00000000 
+ 00023874  0x00004599 fetch  0x00000001 , 0x0000004c 
+ 00023875  0x0000459a rtnbit1  0x00000002 
+ 00023876  0x0000459b branch  0x000062cf 
+ 00023877  0x0000459e arg  0x000004df , 0x00000011 
+ 00023878  0x0000459f arg  0x0000050f , 0x00000012 
+ 00023879  0x000045a0 arg  0x000004ef , 0x00000005 
+ 00023880  0x000045a1 call  0x00007467 
+ 00023881  0x000045a2 arg  0x00000040 , 0x00000011 
+ 00023882  0x000045a3 call  0x0000622b 
+ 00023883  0x000045a4 jam  0x0000000b , 0x0000007c 
+ 00023884  0x000045a5 fetch  0x00000001 , 0x00000030 
+ 00023885  0x000045a6 bbit0  0x00000006 , 0x00005ecb 
+ 00023886  0x000045a7 rtn 
+ 00023887  0x000045aa fetch  0x00000002 , 0x00000169 
+ 00023888  0x000045ab add  0x0000003f , 0xfffffffd , 0x00000039 
+ 00023889  0x000045ac fetcht  0x00000001 , 0x000004df 
+ 00023890  0x000045ad setarg  0x00000103 
+ 00023891  0x000045ae iadd  0x00000002 , 0x00000005 
+ 00023892  0x000045af arg  0x000004e1 , 0x00000006 
+ 00023893  0x000045b0 call  0x00007e45 
+ 00023894  0x000045b1 fetcht  0x00000001 , 0x00000053 
+ 00023895  0x000045b2 fetch  0x00000001 , 0x000004e0 
+ 00023896  0x000045b3 isub  0x00000002 , 0x0000003f 
+ 00023897  0x000045b4 sub  0x0000003f , 0x0000000e , 0x0000003e 
+ 00023898  0x000045b5 branch  0x00005d5f , 0x00000002 
+ 00023899  0x000045b6 add  0x00000002 , 0x0000000e , 0x0000003f 
+ 00023900  0x000045b7 store  0x00000001 , 0x00000053 
+ 00023901  0x000045b8 jam  0x00000001 , 0x0000007c 
+ 00023902  0x000045b9 rtn 
+ 00023903  0x000045bb fetch  0x00000001 , 0x0000004c 
+ 00023904  0x000045bc set1  0x00000003 , 0x0000003f 
+ 00023905  0x000045bd store  0x00000001 , 0x0000004c 
+ 00023906  0x000045be bbit1  0x00000004 , 0x00005ed5 
+ 00023907  0x000045c1 rtn 
+ 00023908  0x000045c3 fetch  0x00000001 , 0x000004df 
+ 00023909  0x000045c4 store  0x00000001 , 0x0000007d 
+ 00023910  0x000045c5 jam  0x00000002 , 0x0000007c 
+ 00023911  0x000045c6 rtn 
+ 00023912  0x000045c9 fetch  0x00000001 , 0x00004132 
+ 00023913  0x000045ca bne  0x00000001 , 0x00005cf5 
+ 00023914  0x000045cb force  0x00000001 , 0x00000002 
+ 00023915  0x000045cc branch  0x00004839 
+ 00023916  0x000045cf jam  0x00000030 , 0x0000007c 
+ 00023917  0x000045d0 rtn 
+ 00023918  0x000045d3 jam  0x00000028 , 0x0000007c 
+ 00023919  0x000045d4 rtn 
+ 00023920  0x000045d7 jam  0x00000026 , 0x0000007c 
+ 00023921  0x000045d8 rtn 
+ 00023922  0x000045dd rtn 
+ 00023923  0x000045e2 fetch  0x00000002 , 0x00000032 
+ 00023924  0x000045e3 iforce  0x00000002 
+ 00023925  0x000045e4 fetch  0x00000001 , 0x000004e0 
+ 00023926  0x000045e5 store  0x00000001 , 0x00000097 
+ 00023927  0x000045e6 imul32  0x00000002 , 0x00000002 
+ 00023928  0x000045e7 fetch  0x00000002 , 0x000004e1 
+ 00023929  0x000045e8 lshift  0x0000003f , 0x0000003f 
+ 00023930  0x000045e9 store  0x00000002 , 0x00000098 
+ 00023931  0x000045ea fetch  0x00000004 , 0x000004e3 
+ 00023932  0x000045eb lshift  0x0000003f , 0x0000003f 
+ 00023933  0x000045ec store  0x00000004 , 0x00000093 
+ 00023934  0x000045ee deposit  0x00000002 
+ 00023935  0x000045ef store  0x00000002 , 0x0000009a 
+ 00023936  0x000045f0 rtn 
+ 00023937  0x000045f2 fetcht  0x00000001 , 0x000041fb 
+ 00023938  0x000045f3 fetch  0x00000001 , 0x000004e0 
+ 00023939  0x000045f4 ixor  0x00000002 , 0x0000003e 
+ 00023940  0x000045f5 nbranch  0x00005bee , 0x00000005 
+ 00023941  0x000045f6 isolate1  0x00000000 , 0x0000003f 
+ 00023942  0x000045f7 fetch  0x00000001 , 0x0000004c 
+ 00023943  0x000045f8 setflag  0x00000001 , 0x00000005 , 0x0000003f 
+ 00023944  0x000045f9 store  0x00000001 , 0x0000004c 
+ 00023945  0x000045fa jam  0x00000081 , 0x0000007c 
+ 00023946  0x000045fb jam  0x0000008b , 0x0000007d 
+ 00023947  0x000045fc rtn 
+ 00023948  0x00004600 rtn 
+ 00023949  0x00004603 rtn 
+ 00023950  0x00004605 rtn 
+ 00023951  0x00004608 branch  0x00005cf5 
+ 00023952  0x0000460c branch  0x00005cf5 
+ 00023953  0x0000460e rtn 
+ 00023954  0x00004610 call  0x0000385e 
+ 00023955  0x00004611 jam  0x0000002c , 0x0000007d 
+ 00023956  0x00004612 branch  0x00005cf5 
+ 00023957  0x00004616 fetch  0x00000001 , 0x000004df 
+ 00023958  0x00004617 store  0x00000001 , 0x000000ad 
+ 00023959  0x00004618 fetch  0x00000001 , 0x000004e1 
+ 00023960  0x00004619 store  0x00000001 , 0x000000af 
+ 00023961  0x0000461a fetch  0x00000001 , 0x000004e4 
+ 00023962  0x0000461b store  0x00000001 , 0x000000ab 
+ 00023963  0x0000461c call  0x00005d16 
+ 00023964  0x0000461d store  0x00000001 , 0x00000452 
+ 00023965  0x0000461e force  0x00000000 , 0x00000002 
+ 00023966  0x0000461f branch  0x00004839 
+ 00023967  0x00004622 fetch  0x00000002 , 0x000004df 
+ 00023968  0x00004623 store  0x00000002 , 0x0000017b 
+ 00023969  0x00004624 rtn 
+ 00023970  0x00004627 fetch  0x00000001 , 0x00000030 
+ 00023971  0x00004628 bbit1  0x00000001 , 0x00005db5 
+ 00023972  0x00004629 fetch  0x00000002 , 0x000004e0 
+ 00023973  0x0000462a lshift  0x0000003f , 0x0000003f 
+ 00023974  0x0000462b store  0x00000002 , 0x00000075 
+ 00023975  0x0000462c fetch  0x00000002 , 0x000004e2 
+ 00023976  0x0000462d lshift  0x0000003f , 0x0000003f 
+ 00023977  0x0000462e store  0x00000002 , 0x00000032 
+ 00023978  0x0000462f fetch  0x00000002 , 0x000004e4 
+ 00023979  0x00004630 store  0x00000001 , 0x00000073 
+ 00023980  0x00004631 iforce  0x00000002 
+ 00023981  0x00004632 fetch  0x00000002 , 0x000004e6 
+ 00023982  0x00004633 store  0x00000001 , 0x00000074 
+ 00023983  0x00004634 isub  0x00000002 , 0x0000003e 
+ 00023984  0x00004635 nbranch  0x00005db2 , 0x00000002 
+ 00023985  0x00004636 store  0x00000001 , 0x00000073 
+ 00023986  0x00004639 jam  0x00000003 , 0x0000007c 
+ 00023987  0x0000463a jam  0x00000017 , 0x0000007d 
+ 00023988  0x0000463b rtn 
+ 00023989  0x0000463e jam  0x00000024 , 0x0000007e 
+ 00023990  0x0000463f branch  0x00005bc9 
+ 00023991  0x00004642 call  0x00005cf5 
+ 00023992  0x00004643 call  0x00005ec8 
+ 00023993  0x00004644 call  0x000073a0 
+ 00023994  0x00004645 branch  0x000037d0 
+ 00023995  0x00004648 call  0x00005cf5 
+ 00023996  0x00004649 branch  0x000037da 
+ 00023997  0x0000464d fetch  0x00000004 , 0x000004df 
+ 00023998  0x0000464e lshift  0x0000003f , 0x0000003f 
+ 00023999  0x00004650 branch  0x00005dc9 , 0x00000029 
+ 00024000  0x00004651 fetcht  0x00000001 , 0x0000425e 
+ 00024001  0x00004652 nbranch  0x00005dc6 , 0x00000034 
+ 00024002  0x00004654 jam  0x00000004 , 0x0000007c 
+ 00024003  0x00004655 jam  0x00000013 , 0x0000007d 
+ 00024004  0x00004656 jam  0x00000024 , 0x0000007e 
+ 00024005  0x00004657 rtn 
+ 00024006  0x00004659 jam  0x00000034 , 0x0000007c 
+ 00024007  0x0000465a jam  0x00000000 , 0x00000055 
+ 00024008  0x0000465b branch  0x00003241 
+ 00024009  0x0000465e call  0x00003241 
+ 00024010  0x0000465f set1  0x00000022 , 0x00000000 
+ 00024011  0x00004660 fetch  0x00000001 , 0x00000177 
+ 00024012  0x00004661 set0  0x00000002 , 0x0000003f 
+ 00024013  0x00004662 store  0x00000001 , 0x00000177 
+ 00024014  0x00004663 branch  0x00005cf5 
+ 00024015  0x00004668 rtn 
+ 00024016  0x0000466a rtn 
+ 00024017  0x0000466c rtn 
+ 00024018  0x00004670 rtn 
+ 00024019  0x00004674 jam  0x00000003 , 0x0000007c 
+ 00024020  0x00004675 jam  0x00000018 , 0x0000007d 
+ 00024021  0x00004676 jam  0x0000002e , 0x00000b7d 
+ 00024022  0x00004677 call  0x00007c27 
+ 00024023  0x00004678 force  0x00000000 , 0x00000002 
+ 00024024  0x00004679 call  0x00004907 
+ 00024025  0x0000467a branch  0x00003806 
+ 00024026  0x0000467c rtn 
+ 00024027  0x0000467f fetch  0x00000001 , 0x000004df 
+ 00024028  0x00004680 bne  0x00000001 , 0x00005de7 
+ 00024029  0x00004681 fetch  0x00000001 , 0x000004e0 
+ 00024030  0x00004682 bne  0x00000001 , 0x00005de7 
+ 00024031  0x00004683 fetch  0x00000001 , 0x000004e1 
+ 00024032  0x00004684 bne  0x00000030 , 0x00005de7 
+ 00024033  0x00004685 call  0x00006216 
+ 00024034  0x00004686 branch  0x00005de4 , 0x00000001 
+ 00024035  0x00004687 jam  0x00000001 , 0x000007da 
+ 00024036  0x00004689 jam  0x00000003 , 0x0000007c 
+ 00024037  0x0000468a jam  0x0000003d , 0x0000007d 
+ 00024038  0x0000468b branch  0x00005b77 
+ 00024039  0x0000468e jam  0x00000024 , 0x0000007e 
+ 00024040  0x0000468f branch  0x00005bc9 
+ 00024041  0x00004694 jam  0x0000003e , 0x0000007c 
+ 00024042  0x00004696 rtn 
+ 00024043  0x00004698 call  0x00006216 
+ 00024044  0x00004699 rtn  0x00000001 
+ 00024045  0x0000469a jam  0x00000008 , 0x000007da 
+ 00024046  0x0000469b rtn 
+ 00024047  0x0000469f call  0x00006216 
+ 00024048  0x000046a0 ncall  0x00007a9d , 0x00000001 
+ 00024049  0x000046a1 call  0x00007aab , 0x00000001 
+ 00024050  0x000046a2 call  0x00004860 
+ 00024051  0x000046a3 call  0x00004869 
+ 00024052  0x000046a4 call  0x00006216 
+ 00024053  0x000046a5 rtn  0x00000001 
+ 00024054  0x000046a6 jam  0x0000000c , 0x000007da 
+ 00024055  0x000046a7 jam  0x00000001 , 0x000007dc 
+ 00024056  0x000046a8 rtn 
+ 00024057  0x000046ab arg  0x00000888 , 0x00000005 
+ 00024058  0x000046ac fetch  0x00000008 , 0x000004df 
+ 00024059  0x000046ad istore  0x00000008 , 0x00000005 
+ 00024060  0x000046ae fetch  0x00000008 , 0x000004e7 
+ 00024061  0x000046af istore  0x00000008 , 0x00000005 
+ 00024062  0x000046b0 branch  0x0000780f 
+ 00024063  0x000046b3 fetch  0x00000001 , 0x000007db 
+ 00024064  0x000046b4 beq  0x00000007 , 0x00005e03 
+ 00024065  0x000046b5 fetch  0x00000001 , 0x000007da 
+ 00024066  0x000046b6 bne  0x00000001 , 0x00005e16 
+ 00024067  0x000046b8 fetch  0x00000001 , 0x000007e3 
+ 00024068  0x000046b9 sub  0x0000003f , 0x00000020 , 0x00000005 
+ 00024069  0x000046ba nbranch  0x00005e16 , 0x00000002 
+ 00024070  0x000046bb arg  0x000007f0 , 0x00000005 
+ 00024071  0x000046bc iadd  0x00000005 , 0x00000005 
+ 00024072  0x000046bd fetch  0x00000008 , 0x000004df 
+ 00024073  0x000046be istore  0x00000008 , 0x00000005 
+ 00024074  0x000046bf fetch  0x00000008 , 0x000004e7 
+ 00024075  0x000046c0 istore  0x00000008 , 0x00000005 
+ 00024076  0x000046c1 fetch  0x00000001 , 0x000007e3 
+ 00024077  0x000046c2 increase  0x00000010 , 0x0000003f 
+ 00024078  0x000046c3 store  0x00000001 , 0x000007e3 
+ 00024079  0x000046c4 bne  0x00000030 , 0x00005cf5 
+ 00024080  0x000046c6 call  0x00006216 
+ 00024081  0x000046c7 branch  0x00005cf5 , 0x00000001 
+ 00024082  0x000046c8 jam  0x00000001 , 0x000007e4 
+ 00024083  0x000046c9 jam  0x00000002 , 0x000007da 
+ 00024084  0x000046ca jam  0x00000001 , 0x000007dc 
+ 00024085  0x000046cb branch  0x00005cf5 
+ 00024086  0x000046cd jam  0x00000024 , 0x0000007e 
+ 00024087  0x000046ce branch  0x00005bc9 
+ 00024088  0x000046d0 fetch  0x00000001 , 0x000007e2 
+ 00024089  0x000046d1 beq  0x00000030 , 0x00005e1c 
+ 00024090  0x000046d2 jam  0x0000003e , 0x0000007c 
+ 00024091  0x000046d3 branch  0x00005b77 
+ 00024092  0x000046d5 call  0x00006216 
+ 00024093  0x000046d6 branch  0x00005e21 , 0x00000001 
+ 00024094  0x000046d7 jam  0x00000001 , 0x000007dc 
+ 00024095  0x000046d8 jam  0x00000004 , 0x000007da 
+ 00024096  0x000046d9 branch  0x00005b77 
+ 00024097  0x000046dc branch  0x00005b77 
+ 00024098  0x000046df fetch  0x00000001 , 0x000007db 
+ 00024099  0x000046e0 beq  0x00000007 , 0x00005e26 
+ 00024100  0x000046e1 fetch  0x00000001 , 0x000007da 
+ 00024101  0x000046e2 bne  0x00000006 , 0x00005e32 
+ 00024102  0x000046e4 arg  0x00000848 , 0x00000005 
+ 00024103  0x000046e5 fetch  0x00000008 , 0x000004df 
+ 00024104  0x000046e6 istore  0x00000008 , 0x00000005 
+ 00024105  0x000046e7 fetch  0x00000008 , 0x000004e7 
+ 00024106  0x000046e8 istore  0x00000008 , 0x00000005 
+ 00024107  0x000046e9 call  0x00006216 
+ 00024108  0x000046ea branch  0x00005e30 , 0x00000001 
+ 00024109  0x000046eb jam  0x00000007 , 0x000007da 
+ 00024110  0x000046ec jam  0x00000001 , 0x000007dc 
+ 00024111  0x000046ed branch  0x00005cf5 
+ 00024112  0x000046ef jam  0x00000004 , 0x000007db 
+ 00024113  0x000046f0 branch  0x0000780f 
+ 00024114  0x000046f4 jam  0x00000024 , 0x0000007e 
+ 00024115  0x000046f5 branch  0x00005bc9 
+ 00024116  0x000046f8 fetch  0x00000001 , 0x000007db 
+ 00024117  0x000046f9 beq  0x0000000b , 0x00005e38 
+ 00024118  0x000046fa fetch  0x00000001 , 0x000007da 
+ 00024119  0x000046fb bne  0x00000008 , 0x00005e45 
+ 00024120  0x000046fd arg  0x00000878 , 0x00000005 
+ 00024121  0x000046fe fetch  0x00000008 , 0x000004df 
+ 00024122  0x000046ff istore  0x00000008 , 0x00000005 
+ 00024123  0x00004700 fetch  0x00000008 , 0x000004e7 
+ 00024124  0x00004701 istore  0x00000008 , 0x00000005 
+ 00024125  0x00004702 call  0x00006216 
+ 00024126  0x00004703 branch  0x00005e42 , 0x00000001 
+ 00024127  0x00004704 jam  0x00000009 , 0x000007da 
+ 00024128  0x00004705 jam  0x00000001 , 0x000007dc 
+ 00024129  0x00004706 branch  0x00005b77 
+ 00024130  0x00004708 jam  0x00000009 , 0x000007db 
+ 00024131  0x00004709 jam  0x00000001 , 0x000007dd 
+ 00024132  0x0000470a branch  0x00005b77 
+ 00024133  0x0000470c jam  0x00000024 , 0x0000007e 
+ 00024134  0x0000470d branch  0x00005bc9 
+ 00024135  0x00004710 branch  0x00005b77 
+ 00024136  0x00004713 fetch  0x00000001 , 0x00000177 
+ 00024137  0x00004714 set0  0x00000001 
+ 00024138  0x00004715 store  0x00000001 , 0x00000177 
+ 00024139  0x00004716 call  0x00005cf5 
+ 00024140  0x00004717 nrtn  0x00000029 
+ 00024141  0x00004718 fetch  0x00000001 , 0x000004df 
+ 00024142  0x00004719 fetcht  0x00000001 , 0x0000004b 
+ 00024143  0x0000471a setflag  0x00000034 , 0x00000004 , 0x00000002 
+ 00024144  0x0000471b nsetflag  0x00000034 , 0x00000005 , 0x00000002 
+ 00024145  0x0000471c storet  0x00000001 , 0x0000004b 
+ 00024146  0x0000471d rtn 
+ 00024147  0x00004720 fetcht  0x00000008 , 0x000004df 
+ 00024148  0x00004721 fetch  0x00000001 , 0x00004272 
+ 00024149  0x00004722 bne  0x00000050 , 0x00005e58 
+ 00024150  0x00004723 jam  0x00000000 , 0x00004272 
+ 00024151  0x00004724 call  0x000047e5 
+ 00024152  0x00004726 fetch  0x00000001 , 0x00000055 
+ 00024153  0x00004727 rtnne  0x00000003 
+ 00024154  0x00004728 fetch  0x00000001 , 0x00004132 
+ 00024155  0x00004729 beq  0x00000001 , 0x00005e5e 
+ 00024156  0x0000472a fetch  0x00000001 , 0x00000177 
+ 00024157  0x0000472b bbit0  0x00000004 , 0x00005e60 
+ 00024158  0x0000472d jam  0x00000014 , 0x00000055 
+ 00024159  0x0000472e rtn 
+ 00024160  0x00004730 jam  0x00000004 , 0x00000055 
+ 00024161  0x00004731 rtn 
+ 00024162  0x00004733 fetch  0x00000001 , 0x00000189 
+ 00024163  0x00004734 store  0x00000001 , 0x0000015d 
+ 00024164  0x00004735 jam  0x00000003 , 0x0000007c 
+ 00024165  0x00004736 jam  0x00000038 , 0x0000007d 
+ 00024166  0x00004737 rtn 
+ 00024167  0x0000473b jam  0x00000003 , 0x0000007c 
+ 00024168  0x0000473c jam  0x00000039 , 0x0000007d 
+ 00024169  0x0000473d force  0x00000009 , 0x00000039 
+ 00024170  0x0000473e arg  0x000004df , 0x00000006 
+ 00024171  0x0000473f arg  0x00000154 , 0x00000005 
+ 00024172  0x00004741 ifetch  0x00000001 , 0x00000006 
+ 00024173  0x00004742 xor_into  0x00000055 , 0x0000003f 
+ 00024174  0x00004743 istore  0x00000001 , 0x00000005 
+ 00024175  0x00004744 loop  0x00005e6c 
+ 00024176  0x00004745 fetch  0x00000001 , 0x00000154 
+ 00024177  0x00004746 fetcht  0x00000001 , 0x00000153 
+ 00024178  0x00004747 set0  0x00000007 , 0x00000002 
+ 00024179  0x00004748 set0  0x00000004 , 0x00000002 
+ 00024180  0x00004749 beq  0x000000ff , 0x00005e80 
+ 00024181  0x0000474a beq  0x00000000 , 0x00005e99 
+ 00024182  0x0000474b beq  0x00000005 , 0x00005e8d 
+ 00024183  0x0000474c beq  0x00000007 , 0x00005e8c 
+ 00024184  0x0000474d beq  0x00000006 , 0x00005e8d 
+ 00024185  0x0000474e beq  0x00000008 , 0x00005e8c 
+ 00024186  0x0000474f beq  0x00000001 , 0x00005e85 
+ 00024187  0x00004750 beq  0x00000002 , 0x00005e85 
+ 00024188  0x00004751 beq  0x00000003 , 0x00005e85 
+ 00024189  0x00004752 beq  0x00000009 , 0x00005e85 
+ 00024190  0x00004753 beq  0x00000004 , 0x00005e85 
+ 00024191  0x00004754 rtn 
+ 00024192  0x00004757 fetch  0x00000001 , 0x00000153 
+ 00024193  0x00004758 set1  0x00000003 , 0x0000003f 
+ 00024194  0x00004759 set1  0x00000002 , 0x0000003f 
+ 00024195  0x0000475a store  0x00000001 , 0x00000153 
+ 00024196  0x0000475b rtn 
+ 00024197  0x0000475d set1  0x00000004 , 0x00000002 
+ 00024198  0x0000475e jam  0x00000005 , 0x0000018a 
+ 00024199  0x0000475f fetch  0x00000002 , 0x0000015b 
+ 00024200  0x00004760 iforce  0x00000039 
+ 00024201  0x00004761 store  0x00000002 , 0x00000169 
+ 00024202  0x00004762 arg  0x000004de , 0x00000005 
+ 00024203  0x00004763 call  0x00007ed8 
+ 00024204  0x00004765 set1  0x00000007 , 0x00000002 
+ 00024205  0x00004767 set1  0x00000002 , 0x00000002 
+ 00024206  0x00004768 force  0x00000000 , 0x0000003f 
+ 00024207  0x00004769 store  0x00000001 , 0x0000000b 
+ 00024208  0x0000476a store  0x00000002 , 0x000000fc 
+ 00024209  0x0000476b store  0x00000002 , 0x000000fe 
+ 00024210  0x0000476c store  0x00000002 , 0x000000fa 
+ 00024211  0x0000476d store  0x00000002 , 0x000000f8 
+ 00024212  0x0000476e fetch  0x00000001 , 0x00000155 
+ 00024213  0x0000476f compare  0x00000000 , 0x0000003f , 0x000000ff 
+ 00024214  0x00004770 setflag  0x00000001 , 0x00000006 , 0x00000002 
+ 00024215  0x00004771 storet  0x00000001 , 0x00000153 
+ 00024216  0x00004772 rtn 
+ 00024217  0x00004775 set0  0x00000011 , 0x00000000 
+ 00024218  0x00004776 jam  0x00000000 , 0x00000153 
+ 00024219  0x00004777 fetch  0x00000001 , 0x00000189 
+ 00024220  0x00004778 set0  0x00000006 , 0x0000003f 
+ 00024221  0x00004779 store  0x00000001 , 0x00000189 
+ 00024222  0x0000477a rtn 
+ 00024223  0x0000477d fetch  0x00000001 , 0x00000153 
+ 00024224  0x0000477e rtnbit0  0x00000002 
+ 00024225  0x0000477f fetch  0x00000001 , 0x0000015e 
+ 00024226  0x00004780 increase  0x00000001 , 0x0000003f 
+ 00024227  0x00004781 store  0x00000001 , 0x0000015e 
+ 00024228  0x00004782 rtnne  0x00000005 
+ 00024229  0x00004783 jam  0x00000000 , 0x0000015e 
+ 00024230  0x00004784 fetch  0x00000001 , 0x00000153 
+ 00024231  0x00004785 set0  0x00000002 , 0x0000003f 
+ 00024232  0x00004786 store  0x00000001 , 0x00000153 
+ 00024233  0x00004787 bbit1  0x00000003 , 0x00005ec0 
+ 00024234  0x00004788 isolate1  0x00000007 , 0x0000003f 
+ 00024235  0x00004789 call  0x00007f86 , 0x00000001 
+ 00024236  0x0000478a ncall  0x00007f8a , 0x00000001 
+ 00024237  0x0000478b fetch  0x00000001 , 0x0000015a 
+ 00024238  0x0000478c compare  0x00000020 , 0x0000003f , 0x00000030 
+ 00024239  0x0000478d fetch  0x00000001 , 0x0000004c 
+ 00024240  0x0000478e setflag  0x00000001 , 0x00000005 , 0x0000003f 
+ 00024241  0x0000478f store  0x00000001 , 0x0000004c 
+ 00024242  0x00004790 fetch  0x00000001 , 0x00000153 
+ 00024243  0x00004791 fetcht  0x00000001 , 0x00000189 
+ 00024244  0x00004792 isolate1  0x00000004 , 0x0000003f 
+ 00024245  0x00004793 setflag  0x00000001 , 0x00000006 , 0x00000002 
+ 00024246  0x00004794 isolate1  0x00000006 , 0x0000003f 
+ 00024247  0x00004795 setflag  0x00000001 , 0x00000004 , 0x00000002 
+ 00024248  0x00004796 setflag  0x00000001 , 0x00000005 , 0x00000002 
+ 00024249  0x00004797 storet  0x00000001 , 0x00000189 
+ 00024250  0x00004798 fetch  0x00000001 , 0x00000156 
+ 00024251  0x00004799 store  0x00000001 , 0x00000447 
+ 00024252  0x0000479a fetch  0x00000001 , 0x00000157 
+ 00024253  0x0000479b store  0x00000001 , 0x00000448 
+ 00024254  0x0000479c set1  0x00000011 , 0x00000000 
+ 00024255  0x0000479d rtn 
+ 00024256  0x000047a0 set0  0x00000011 , 0x00000000 
+ 00024257  0x000047a1 jam  0x00000000 , 0x00000153 
+ 00024258  0x000047a2 fetch  0x00000001 , 0x0000015d 
+ 00024259  0x000047a3 store  0x00000001 , 0x00000189 
+ 00024260  0x000047a4 hfetch  0x00000001 , 0x00008043 
+ 00024261  0x000047a5 and_into  0x000000fb , 0x0000003f 
+ 00024262  0x000047a6 hstore  0x00000001 , 0x00008043 
+ 00024263  0x000047a7 rtn 
+ 00024264  0x000047ab arg  0x000004df , 0x00000006 
+ 00024265  0x000047ac arg  0x000004ef , 0x00000005 
+ 00024266  0x000047ad branch  0x00007e35 
+ 00024267  0x000047b0 jam  0x00000009 , 0x0000007c 
+ 00024268  0x000047b1 rtn 
+ 00024269  0x000047b4 nrtn  0x00000029 
+ 00024270  0x000047b5 jam  0x00000011 , 0x0000007c 
+ 00024271  0x000047b6 rtn 
+ 00024272  0x000047b9 arg  0x00004140 , 0x00000011 
+ 00024273  0x000047ba call  0x0000736a 
+ 00024274  0x000047bb jam  0x00000003 , 0x0000007c 
+ 00024275  0x000047bc jam  0x00000008 , 0x0000007d 
+ 00024276  0x000047bd rtn 
+ 00024277  0x000047c0 jam  0x0000000a , 0x00000072 
+ 00024278  0x000047c1 jam  0x00000007 , 0x0000007c 
+ 00024279  0x000047c2 jam  0x00000016 , 0x00000446 
+ 00024280  0x000047c3 rtn 
+ 00024281  0x000047ca set1  0x00000025 , 0x00000000 
+ 00024282  0x000047cb bpatch  0x000000e3 , 0x0000403c 
+ 00024283  0x000047cc disable  0x00000028 
+ 00024284  0x000047cd call  0x000061d9 
+ 00024285  0x000047ce fetch  0x00000001 , 0x00000048 
+ 00024286  0x000047cf rtn  0x00000034 
+ 00024287  0x000047d4 bbit1  0x00000007 , 0x00005f10 
+ 00024288  0x000047d5 beq  0x00000001 , 0x00006072 
+ 00024289  0x000047d6 beq  0x00000002 , 0x00005f9b 
+ 00024290  0x000047d7 beq  0x00000003 , 0x00005f1d 
+ 00024291  0x000047d8 beq  0x00000004 , 0x00005f36 
+ 00024292  0x000047d9 beq  0x00000027 , 0x000060f2 
+ 00024293  0x000047da beq  0x00000028 , 0x00005fbf 
+ 00024294  0x000047db beq  0x00000030 , 0x00005fab 
+ 00024295  0x000047dc beq  0x00000025 , 0x000060ed 
+ 00024296  0x000047dd beq  0x00000026 , 0x00005fba 
+ 00024297  0x000047de beq  0x00000031 , 0x000060dc 
+ 00024298  0x000047df beq  0x00000037 , 0x0000606d 
+ 00024299  0x000047e0 beq  0x00000033 , 0x0000605f 
+ 00024300  0x000047e1 beq  0x00000008 , 0x00006174 
+ 00024301  0x000047e2 beq  0x00000009 , 0x0000616a 
+ 00024302  0x000047e3 beq  0x0000000b , 0x0000617f 
+ 00024303  0x000047e4 beq  0x0000000c , 0x00006188 
+ 00024304  0x000047e5 beq  0x0000000f , 0x00006065 
+ 00024305  0x000047e6 beq  0x00000010 , 0x000061af 
+ 00024306  0x000047e7 beq  0x00000011 , 0x000061a5 
+ 00024307  0x000047e8 beq  0x00000007 , 0x00006055 
+ 00024308  0x000047e9 beq  0x0000002a , 0x00006081 
+ 00024309  0x000047ea beq  0x0000000a , 0x00006082 
+ 00024310  0x000047ec beq  0x0000002b , 0x000060b5 
+ 00024311  0x000047ed beq  0x00000006 , 0x00005fb0 
+ 00024312  0x000047ee beq  0x00000021 , 0x00006062 
+ 00024313  0x000047ef beq  0x0000002d , 0x000060d2 
+ 00024314  0x000047f0 beq  0x0000002e , 0x000060d7 
+ 00024315  0x000047f1 beq  0x00000022 , 0x00006062 
+ 00024316  0x000047f2 beq  0x0000002c , 0x000060cb 
+ 00024317  0x000047f3 beq  0x00000034 , 0x00006083 
+ 00024318  0x000047f4 beq  0x00000013 , 0x00006098 
+ 00024319  0x000047f5 beq  0x00000017 , 0x000060a7 
+ 00024320  0x000047f6 beq  0x00000012 , 0x000061ac 
+ 00024321  0x000047f7 beq  0x0000002f , 0x000060ad 
+ 00024322  0x000047f8 beq  0x00000018 , 0x000060b2 
+ 00024323  0x000047f9 beq  0x0000003d , 0x00006119 
+ 00024324  0x000047fa beq  0x0000003e , 0x00006125 
+ 00024325  0x000047fb beq  0x0000003f , 0x00006137 
+ 00024326  0x000047fc beq  0x00000040 , 0x00006142 
+ 00024327  0x000047fd beq  0x00000041 , 0x00006157 
+ 00024328  0x000047fe beq  0x00000023 , 0x00006166 
+ 00024329  0x000047ff beq  0x0000003b , 0x00006161 
+ 00024330  0x00004801 beq  0x00000005 , 0x00006167 
+ 00024331  0x00004802 beq  0x00000029 , 0x00006168 
+ 00024332  0x00004803 beq  0x00000038 , 0x00006169 
+ 00024333  0x00004804 beq  0x00000039 , 0x00006078 
+ 00024334  0x00004806 branch  0x00003bf1 
+ 00024335  0x00004807 rtn 
+ 00024336  0x00004809 beq  0x0000008c , 0x00005fc4 
+ 00024337  0x0000480a beq  0x0000008d , 0x00005fe3 
+ 00024338  0x0000480b beq  0x00000081 , 0x00005f43 
+ 00024339  0x0000480c beq  0x00000084 , 0x00005f76 
+ 00024340  0x0000480d beq  0x00000082 , 0x00005f50 
+ 00024341  0x0000480e beq  0x00000083 , 0x00005fec 
+ 00024342  0x0000480f beq  0x0000008b , 0x00005ff7 
+ 00024343  0x00004810 beq  0x00000097 , 0x00006051 
+ 00024344  0x00004811 beq  0x00000099 , 0x00005f8c 
+ 00024345  0x00004812 beq  0x0000009a , 0x00005f81 
+ 00024346  0x00004813 beq  0x00000095 , 0x00005f91 
+ 00024347  0x00004814 beq  0x00000096 , 0x00005f92 
+ 00024348  0x00004815 branch  0x00003bf1 
+ 00024349  0x0000481c force  0x00000002 , 0x0000003f 
+ 00024350  0x0000481d call  0x000061b5 
+ 00024351  0x0000481e fetch  0x00000001 , 0x00000049 
+ 00024352  0x0000481f istore  0x00000001 , 0x00000005 
+ 00024353  0x00004820 beq  0x0000002b , 0x00005f5a 
+ 00024354  0x00004821 call  0x000061c4 
+ 00024355  0x00004822 fetch  0x00000001 , 0x00000049 
+ 00024356  0x00004823 beq  0x00000008 , 0x00005f5d 
+ 00024357  0x00004824 beq  0x0000000f , 0x00005f61 
+ 00024358  0x00004825 beq  0x00000010 , 0x00005f6c 
+ 00024359  0x00004826 beq  0x00000017 , 0x00005f33 
+ 00024360  0x00004827 beq  0x00000033 , 0x00005f6f 
+ 00024361  0x00004828 beq  0x0000002c , 0x00005f74 
+ 00024362  0x00004829 beq  0x00000041 , 0x00005f75 
+ 00024363  0x0000482a beq  0x00000011 , 0x00005f2d 
+ 00024364  0x0000482b rtn 
+ 00024365  0x0000482e fetch  0x00000001 , 0x00000055 
+ 00024366  0x0000482f rtn  0x00000034 
+ 00024367  0x00004830 jam  0x0000001b , 0x00000055 
+ 00024368  0x00004831 setarg  0x0000000c 
+ 00024369  0x00004832 arg  0x0000000b , 0x00000007 
+ 00024370  0x00004833 branch  0x00007e4c 
+ 00024371  0x00004836 force  0x00000002 , 0x00000002 
+ 00024372  0x00004837 call  0x00004907 
+ 00024373  0x00004838 branch  0x000037e1 
+ 00024374  0x0000483a force  0x00000003 , 0x0000003f 
+ 00024375  0x0000483b call  0x000061b5 
+ 00024376  0x0000483c fetch  0x00000001 , 0x00000049 
+ 00024377  0x0000483d beq  0x0000000b , 0x00005f3e 
+ 00024378  0x0000483e istore  0x00000001 , 0x00000005 
+ 00024379  0x0000483f fetch  0x00000001 , 0x0000004a 
+ 00024380  0x00004840 istore  0x00000001 , 0x00000005 
+ 00024381  0x00004841 branch  0x000061c4 
+ 00024382  0x00004844 istore  0x00000001 , 0x00000005 
+ 00024383  0x00004845 fetch  0x00000001 , 0x0000004a 
+ 00024384  0x00004846 istore  0x00000001 , 0x00000005 
+ 00024385  0x00004847 arg  0x00000451 , 0x00000002 
+ 00024386  0x00004848 branch  0x000061fb 
+ 00024387  0x0000484b force  0x00000004 , 0x00000007 
+ 00024388  0x0000484c call  0x000061bd 
+ 00024389  0x0000484d setarg  0x0000007f 
+ 00024390  0x0000484e istore  0x00000001 , 0x00000005 
+ 00024391  0x0000484f fetch  0x00000001 , 0x00000049 
+ 00024392  0x00004850 set0  0x00000007 , 0x0000003f 
+ 00024393  0x00004851 istore  0x00000001 , 0x00000005 
+ 00024394  0x00004852 fetch  0x00000001 , 0x00000049 
+ 00024395  0x00004853 beq  0x0000008c , 0x00005f5a 
+ 00024396  0x00004854 call  0x000061c4 
+ 00024397  0x00004855 fetch  0x00000001 , 0x00000049 
+ 00024398  0x00004856 beq  0x0000008d , 0x00005f74 
+ 00024399  0x00004857 rtn 
+ 00024400  0x0000485a force  0x00000005 , 0x00000007 
+ 00024401  0x0000485b call  0x000061bd 
+ 00024402  0x0000485c setarg  0x0000007f 
+ 00024403  0x0000485d istore  0x00000001 , 0x00000005 
+ 00024404  0x0000485e fetch  0x00000001 , 0x00000049 
+ 00024405  0x0000485f set0  0x00000007 , 0x0000003f 
+ 00024406  0x00004860 istore  0x00000001 , 0x00000005 
+ 00024407  0x00004861 fetch  0x00000001 , 0x0000004a 
+ 00024408  0x00004862 istore  0x00000001 , 0x00000005 
+ 00024409  0x00004863 branch  0x000061c4 
+ 00024410  0x00004866 call  0x0000384a 
+ 00024411  0x00004867 arg  0x00000452 , 0x00000002 
+ 00024412  0x00004868 branch  0x000061fb 
+ 00024413  0x0000486c call  0x00003507 
+ 00024414  0x0000486d call  0x0000620d 
+ 00024415  0x0000486e rtn  0x00000001 
+ 00024416  0x0000486f branch  0x00005ecb 
+ 00024417  0x00004872 fetch  0x00000001 , 0x0000004b 
+ 00024418  0x00004873 bbit1  0x00000005 , 0x00005f68 
+ 00024419  0x00004874 rtnbit0  0x00000004 
+ 00024420  0x00004875 jam  0x00000012 , 0x0000007c 
+ 00024421  0x00004876 set0  0x00000004 , 0x0000003f 
+ 00024422  0x00004877 call  0x00006205 
+ 00024423  0x00004878 branch  0x00005f6a 
+ 00024424  0x0000487a jam  0x00000010 , 0x0000007c 
+ 00024425  0x0000487b set0  0x00000005 , 0x0000003f 
+ 00024426  0x0000487d store  0x00000001 , 0x0000004b 
+ 00024427  0x0000487e rtn 
+ 00024428  0x00004881 call  0x00006216 
+ 00024429  0x00004882 branch  0x00005ecd , 0x00000001 
+ 00024430  0x00004883 rtn 
+ 00024431  0x00004887 fetch  0x00000001 , 0x0000044d 
+ 00024432  0x00004888 set1  0x00000000 , 0x0000003f 
+ 00024433  0x00004889 store  0x00000001 , 0x0000044d 
+ 00024434  0x0000488a jam  0x00000001 , 0x00000b7d 
+ 00024435  0x0000488b branch  0x00007c27 
+ 00024436  0x0000488f rtn 
+ 00024437  0x00004892 rtn 
+ 00024438  0x00004897 force  0x0000000c , 0x00000007 
+ 00024439  0x00004898 call  0x000061bd 
+ 00024440  0x00004899 setarg  0x00000001 
+ 00024441  0x0000489a istore  0x00000001 , 0x00000005 
+ 00024442  0x0000489b fetch  0x00000002 , 0x0000044a 
+ 00024443  0x0000489c istore  0x00000002 , 0x00000005 
+ 00024444  0x0000489d setarg  0x00000000 
+ 00024445  0x0000489e istore  0x00000003 , 0x00000005 
+ 00024446  0x0000489f setarg  0x00000000 
+ 00024447  0x000048a0 istore  0x00000004 , 0x00000005 
+ 00024448  0x000048a1 branch  0x000061cd 
+ 00024449  0x000048a4 force  0x00000005 , 0x00000007 
+ 00024450  0x000048a5 call  0x000061bd 
+ 00024451  0x000048a6 fetch  0x00000001 , 0x00004132 
+ 00024452  0x000048a7 beq  0x00000001 , 0x00005f89 
+ 00024453  0x000048a8 setarg  0x00040003 
+ 00024454  0x000048a9 istore  0x00000003 , 0x00000005 
+ 00024455  0x000048aa store  0x00000003 , 0x000007e6 
+ 00024456  0x000048ab branch  0x000061cd 
+ 00024457  0x000048ad fetch  0x00000003 , 0x000007e6 
+ 00024458  0x000048ae istore  0x00000003 , 0x00000005 
+ 00024459  0x000048af branch  0x000061cd 
+ 00024460  0x000048b2 force  0x00000005 , 0x00000007 
+ 00024461  0x000048b3 call  0x000061bd 
+ 00024462  0x000048b4 fetch  0x00000003 , 0x000007e6 
+ 00024463  0x000048b5 istore  0x00000003 , 0x00000005 
+ 00024464  0x000048b6 branch  0x000061cf 
+ 00024465  0x000048bb rtn 
+ 00024466  0x000048bd force  0x00000009 , 0x00000007 
+ 00024467  0x000048be call  0x000061bd 
+ 00024468  0x000048bf fetch  0x00000001 , 0x00000097 
+ 00024469  0x000048c0 istore  0x00000001 , 0x00000005 
+ 00024470  0x000048c1 fetch  0x00000002 , 0x00000098 
+ 00024471  0x000048c2 istore  0x00000002 , 0x00000005 
+ 00024472  0x000048c3 fetch  0x00000004 , 0x00000093 
+ 00024473  0x000048c4 istore  0x00000004 , 0x00000005 
+ 00024474  0x000048c5 branch  0x000061cd 
+ 00024475  0x000048c8 force  0x00000011 , 0x0000003f 
+ 00024476  0x000048c9 call  0x000061b5 
+ 00024477  0x000048ca fetch  0x00000001 , 0x00000049 
+ 00024478  0x000048cb copy  0x0000003f , 0x00000002 
+ 00024479  0x000048cc beq  0x00000000 , 0x00005fa3 
+ 00024480  0x000048cd beq  0x0000000e , 0x00005fa3 
+ 00024481  0x000048ce beq  0x0000001c , 0x00005fa3 
+ 00024482  0x000048cf rtn 
+ 00024483  0x000048d1 istore  0x00000001 , 0x00000005 
+ 00024484  0x000048d2 fetch  0x00000001 , 0x00004702 
+ 00024485  0x000048d3 istore  0x00000001 , 0x00000005 
+ 00024486  0x000048d4 copy  0x0000003f , 0x00000039 
+ 00024487  0x000048d5 setarg  0x00004703 
+ 00024488  0x000048d6 iadd  0x00000002 , 0x00000006 
+ 00024489  0x000048d7 call  0x00007e45 
+ 00024490  0x000048d8 branch  0x000061cd 
+ 00024491  0x000048dc force  0x00000003 , 0x0000003f 
+ 00024492  0x000048dd call  0x000061b5 
+ 00024493  0x000048de setarg  0x00000114 
+ 00024494  0x000048df istore  0x00000002 , 0x00000005 
+ 00024495  0x000048e0 branch  0x000061cd 
+ 00024496  0x000048e4 force  0x00000003 , 0x0000003f 
+ 00024497  0x000048e5 call  0x000061b5 
+ 00024498  0x000048e6 fetch  0x00000004 , 0x0000016f 
+ 00024499  0x000048e7 isub  0x00000022 , 0x0000003f 
+ 00024500  0x000048e8 branch  0x00005fb6 , 0x00000029 
+ 00024501  0x000048e9 sub  0x0000003f , 0x00000000 , 0x0000003f 
+ 00024502  0x000048ec rshift2  0x0000003f , 0x0000003f 
+ 00024503  0x000048ed set0  0x0000000f , 0x0000003f 
+ 00024504  0x000048ee istore  0x00000002 , 0x00000005 
+ 00024505  0x000048ef branch  0x000061cd 
+ 00024506  0x000048f2 force  0x00000006 , 0x0000003f 
+ 00024507  0x000048f3 call  0x000061b5 
+ 00024508  0x000048f4 fetch  0x00000005 , 0x000046fd 
+ 00024509  0x000048f5 istore  0x00000005 , 0x00000005 
+ 00024510  0x000048f6 branch  0x000061cd 
+ 00024511  0x000048f9 force  0x00000009 , 0x0000003f 
+ 00024512  0x000048fa call  0x000061b5 
+ 00024513  0x000048fb fetch  0x00000008 , 0x00004138 
+ 00024514  0x000048fc istore  0x00000008 , 0x00000005 
+ 00024515  0x000048fd branch  0x000061cd 
+ 00024516  0x00004904 branch  0x00005fc6 , 0x00000029 
+ 00024517  0x00004907 branch  0x00005fc7 
+ 00024518  0x00004909 jam  0x00000007 , 0x000041f9 
+ 00024519  0x0000490b jam  0x00000000 , 0x000000af 
+ 00024520  0x0000490c force  0x00000010 , 0x00000007 
+ 00024521  0x0000490d call  0x000061bd 
+ 00024522  0x0000490e fetch  0x00000001 , 0x000000ad 
+ 00024523  0x0000490f istore  0x00000001 , 0x00000005 
+ 00024524  0x00004910 fetch  0x00000001 , 0x000041f9 
+ 00024525  0x00004911 istore  0x00000001 , 0x00000005 
+ 00024526  0x00004912 setarg  0x00000000 
+ 00024527  0x00004913 istore  0x00000001 , 0x00000005 
+ 00024528  0x00004914 fetch  0x00000001 , 0x000000af 
+ 00024529  0x00004915 istore  0x00000001 , 0x00000005 
+ 00024530  0x00004916 setarg  0x00000006 
+ 00024531  0x00004917 istore  0x00000001 , 0x00000005 
+ 00024532  0x00004918 setarg  0x00000002 
+ 00024533  0x00004919 istore  0x00000001 , 0x00000005 
+ 00024534  0x0000491a setarg  0x00000007 
+ 00024535  0x0000491b istore  0x00000001 , 0x00000005 
+ 00024536  0x0000491c istore  0x00000001 , 0x00000005 
+ 00024537  0x0000491d setarg  0x0000001e 
+ 00024538  0x0000491e istore  0x00000002 , 0x00000005 
+ 00024539  0x0000491f istore  0x00000002 , 0x00000005 
+ 00024540  0x00004920 fetch  0x00000001 , 0x000000ab 
+ 00024541  0x00004921 istore  0x00000001 , 0x00000005 
+ 00024542  0x00004922 fetch  0x00000001 , 0x000000b1 
+ 00024543  0x00004923 istore  0x00000001 , 0x00000005 
+ 00024544  0x00004924 nbranch  0x000061cd , 0x00000034 
+ 00024545  0x00004925 branch  0x000061cd , 0x00000029 
+ 00024546  0x00004926 branch  0x000061cf 
+ 00024547  0x00004929 force  0x00000004 , 0x00000007 
+ 00024548  0x0000492a call  0x000061bd 
+ 00024549  0x0000492b fetch  0x00000001 , 0x000000ad 
+ 00024550  0x0000492c istore  0x00000001 , 0x00000005 
+ 00024551  0x0000492d fetch  0x00000001 , 0x00000446 
+ 00024552  0x0000492e istore  0x00000001 , 0x00000005 
+ 00024553  0x0000492f fetch  0x00000001 , 0x000000b4 
+ 00024554  0x00004930 store  0x00000001 , 0x00000047 
+ 00024555  0x00004931 branch  0x000061cf 
+ 00024556  0x00004935 force  0x0000000c , 0x00000007 
+ 00024557  0x00004936 call  0x000061bd 
+ 00024558  0x00004937 setarg  0x00000001 
+ 00024559  0x00004938 istore  0x00000001 , 0x00000005 
+ 00024560  0x00004939 fetch  0x00000002 , 0x0000044a 
+ 00024561  0x0000493a istore  0x00000002 , 0x00000005 
+ 00024562  0x0000493b setarg  0x00000000 
+ 00024563  0x0000493c istore  0x00000003 , 0x00000005 
+ 00024564  0x0000493d setarg  0x00000000 
+ 00024565  0x0000493e istore  0x00000004 , 0x00000005 
+ 00024566  0x0000493f branch  0x000061cf 
+ 00024567  0x00004942 force  0x00000003 , 0x00000007 
+ 00024568  0x00004943 call  0x000061bd 
+ 00024569  0x00004944 fetch  0x00000001 , 0x000041fb 
+ 00024570  0x00004945 istore  0x00000001 , 0x00000005 
+ 00024571  0x00004946 disable  0x00000028 
+ 00024572  0x00004947 call  0x000061cf 
+ 00024573  0x00004948 nrtn  0x00000028 
+ 00024574  0x00004949 nrtn  0x00000029 
+ 00024575  0x0000494a fetch  0x00000001 , 0x00004179 
+ 00024576  0x0000494b rtnbit0  0x00000000 
+ 00024577  0x0000494c call  0x0000600f 
+ 00024578  0x0000494d branch  0x00006019 
+ 00024579  0x00004951 fetch  0x00000001 , 0x0000413e 
+ 00024580  0x00004952 set1  0x00000003 , 0x0000003f 
+ 00024581  0x00004953 store  0x00000001 , 0x0000413e 
+ 00024582  0x00004954 setarg  0x00000101 
+ 00024583  0x00004955 store  0x00000002 , 0x0000044a 
+ 00024584  0x00004956 rtn 
+ 00024585  0x00004959 fetch  0x00000001 , 0x0000413e 
+ 00024586  0x0000495a set0  0x00000003 , 0x0000003f 
+ 00024587  0x0000495b store  0x00000001 , 0x0000413e 
+ 00024588  0x0000495c setarg  0x00000000 
+ 00024589  0x0000495d store  0x00000002 , 0x0000044a 
+ 00024590  0x0000495e rtn 
+ 00024591  0x00004961 jam  0x00000003 , 0x00004179 
+ 00024592  0x00004962 setarg  0x00000000 
+ 00024593  0x00004963 store  0x00000004 , 0x000041e3 
+ 00024594  0x00004964 arg  0x0000417b , 0x00000005 
+ 00024595  0x00004965 call  0x00006023 
+ 00024596  0x00004966 arg  0x00004188 , 0x00000005 
+ 00024597  0x00004967 call  0x00006023 
+ 00024598  0x00004968 arg  0x000041e7 , 0x00000005 
+ 00024599  0x00004969 call  0x00006023 
+ 00024600  0x0000496a branch  0x0000602a 
+ 00024601  0x0000496c arg  0x00004188 , 0x00000005 
+ 00024602  0x0000496d call  0x00006023 
+ 00024603  0x0000496e call  0x0000602a 
+ 00024604  0x0000496f branch  0x0000602d 
+ 00024605  0x00004973 fetch  0x00000005 , 0x000041e7 
+ 00024606  0x00004974 store  0x00000005 , 0x00004188 
+ 00024607  0x00004975 ifetch  0x00000005 , 0x00000006 
+ 00024608  0x00004976 istore  0x00000005 , 0x00000005 
+ 00024609  0x00004977 call  0x0000602a 
+ 00024610  0x00004978 branch  0x0000602d 
+ 00024611  0x0000497b setarg  0x00ffffff 
+ 00024612  0x0000497c istore  0x00000003 , 0x00000005 
+ 00024613  0x0000497d istore  0x00000003 , 0x00000005 
+ 00024614  0x0000497e istore  0x00000003 , 0x00000005 
+ 00024615  0x0000497f setarg  0x0000007f 
+ 00024616  0x00004980 istore  0x00000001 , 0x00000005 
+ 00024617  0x00004981 rtn 
+ 00024618  0x00004983 setarg  0x00000000 
+ 00024619  0x00004984 store  0x00000002 , 0x00004177 
+ 00024620  0x00004985 rtn 
+ 00024621  0x00004987 fetch  0x00000001 , 0x00004179 
+ 00024622  0x00004988 set1  0x00000002 , 0x0000003f 
+ 00024623  0x00004989 store  0x00000001 , 0x00004179 
+ 00024624  0x0000498a rtn 
+ 00024625  0x0000498c nrtn  0x00000029 
+ 00024626  0x0000498d force  0x00000010 , 0x0000003f 
+ 00024627  0x0000498e call  0x000061b5 
+ 00024628  0x0000498f deposit  0x00000022 
+ 00024629  0x00004990 arg  0x000001dc , 0x00000002 
+ 00024630  0x00004991 iadd  0x00000002 , 0x0000003f 
+ 00024631  0x00004992 rshift  0x0000003f , 0x0000003f 
+ 00024632  0x00004993 increase  0x00000001 , 0x0000003f 
+ 00024633  0x00004994 set0  0x00000000 , 0x0000003f 
+ 00024634  0x00004995 istore  0x00000004 , 0x00000005 
+ 00024635  0x00004996 copy  0x0000003f , 0x00000002 
+ 00024636  0x00004997 setarg  0x00000001 
+ 00024637  0x00004998 istore  0x00000001 , 0x00000005 
+ 00024638  0x00004999 fetch  0x00000005 , 0x00004188 
+ 00024639  0x0000499a istore  0x00000005 , 0x00000005 
+ 00024640  0x0000499b ifetch  0x00000005 , 0x00000006 
+ 00024641  0x0000499c istore  0x00000005 , 0x00000005 
+ 00024642  0x0000499d lshift  0x00000002 , 0x00000002 
+ 00024643  0x0000499e storet  0x00000004 , 0x00004173 
+ 00024644  0x0000499f call  0x000061cf 
+ 00024645  0x000049a0 fetch  0x00000001 , 0x00000031 
+ 00024646  0x000049a1 set1  0x00000003 , 0x0000003f 
+ 00024647  0x000049a2 store  0x00000001 , 0x00000031 
+ 00024648  0x000049a3 jam  0x00000001 , 0x0000417a 
+ 00024649  0x000049a4 fetch  0x00000004 , 0x00004173 
+ 00024650  0x000049a5 arg  0x0002ee00 , 0x00000002 
+ 00024651  0x000049a6 iadd  0x00000002 , 0x0000003f 
+ 00024652  0x000049a7 store  0x00000004 , 0x000041e3 
+ 00024653  0x000049a8 fetch  0x00000001 , 0x00004179 
+ 00024654  0x000049a9 rtnbit1  0x00000004 
+ 00024655  0x000049aa jam  0x00000090 , 0x0000007c 
+ 00024656  0x000049ab rtn 
+ 00024657  0x000049af force  0x00000002 , 0x00000007 
+ 00024658  0x000049b0 call  0x000061bd 
+ 00024659  0x000049b1 nbranch  0x000061cd , 0x00000029 
+ 00024660  0x000049b3 branch  0x000061cf 
+ 00024661  0x000049b8 force  0x00000002 , 0x0000003f 
+ 00024662  0x000049b9 call  0x000061b5 
+ 00024663  0x000049ba fetch  0x00000001 , 0x00000446 
+ 00024664  0x000049bb istore  0x00000001 , 0x00000005 
+ 00024665  0x000049bc call  0x000061cf 
+ 00024666  0x000049be fetch  0x00000001 , 0x0000004b 
+ 00024667  0x000049bf set1  0x00000003 , 0x0000003f 
+ 00024668  0x000049c0 store  0x00000001 , 0x0000004b 
+ 00024669  0x000049c1 jam  0x00000032 , 0x00000072 
+ 00024670  0x000049c2 rtn 
+ 00024671  0x000049c6 force  0x00000001 , 0x0000003f 
+ 00024672  0x000049c7 call  0x000061b5 
+ 00024673  0x000049c8 branch  0x000061cf 
+ 00024674  0x000049ca force  0x00000001 , 0x0000003f 
+ 00024675  0x000049cb call  0x000061b5 
+ 00024676  0x000049cc branch  0x000061cd 
+ 00024677  0x000049d0 force  0x00000002 , 0x0000003f 
+ 00024678  0x000049d1 call  0x000061b5 
+ 00024679  0x000049d2 fetch  0x00000001 , 0x0000004c 
+ 00024680  0x000049d3 isolate0  0x00000002 , 0x0000003f 
+ 00024681  0x000049d4 setflag  0x00000001 , 0x00000000 , 0x0000003f 
+ 00024682  0x000049d5 and_into  0x00000001 , 0x0000003f 
+ 00024683  0x000049d6 istore  0x00000001 , 0x00000005 
+ 00024684  0x000049d7 branch  0x000061cf 
+ 00024685  0x000049db force  0x00000003 , 0x0000003f 
+ 00024686  0x000049dc call  0x000061b5 
+ 00024687  0x000049dd fetch  0x00000002 , 0x00000051 
+ 00024688  0x000049de istore  0x00000002 , 0x00000005 
+ 00024689  0x000049df branch  0x000061cf 
+ 00024690  0x000049e2 jam  0x000000fa , 0x00000072 
+ 00024691  0x000049e3 force  0x00000002 , 0x0000003f 
+ 00024692  0x000049e4 call  0x000061b5 
+ 00024693  0x000049e5 fetch  0x00000001 , 0x00000053 
+ 00024694  0x000049e6 istore  0x00000001 , 0x00000005 
+ 00024695  0x000049e7 branch  0x000061cf 
+ 00024696  0x000049ea force  0x0000000a , 0x0000003f 
+ 00024697  0x000049eb call  0x000061b5 
+ 00024698  0x000049ec arg  0x00000154 , 0x00000006 
+ 00024699  0x000049ed force  0x00000009 , 0x00000039 
+ 00024700  0x000049ef ifetch  0x00000001 , 0x00000006 
+ 00024701  0x000049f0 xor_into  0x00000055 , 0x0000003f 
+ 00024702  0x000049f1 istore  0x00000001 , 0x00000005 
+ 00024703  0x000049f2 loop  0x0000607c 
+ 00024704  0x000049f3 branch  0x000061cf 
+ 00024705  0x000049f6 branch  0x000061cf 
+ 00024706  0x000049f8 branch  0x000061cf 
+ 00024707  0x000049fb rtn  0x00000029 
+ 00024708  0x000049fc call  0x00003997 
+ 00024709  0x000049fd force  0x00000009 , 0x0000003f 
+ 00024710  0x000049fe call  0x000061b5 
+ 00024711  0x000049ff fetch  0x00000002 , 0x0000017b 
+ 00024712  0x00004a00 istore  0x00000002 , 0x00000005 
+ 00024713  0x00004a01 fetch  0x00000003 , 0x00004140 
+ 00024714  0x00004a02 istore  0x00000003 , 0x00000005 
+ 00024715  0x00004a03 fetch  0x00000001 , 0x00004143 
+ 00024716  0x00004a04 istore  0x00000001 , 0x00000005 
+ 00024717  0x00004a05 fetch  0x00000002 , 0x00004144 
+ 00024718  0x00004a06 istore  0x00000002 , 0x00000005 
+ 00024719  0x00004a07 bmark0  0x00000003 , 0x00006094 
+ 00024720  0x00004a08 set0  0x00000003 , 0x00000000 
+ 00024721  0x00004a09 call  0x000061cf 
+ 00024722  0x00004a0a jam  0x00000013 , 0x0000007c 
+ 00024723  0x00004a0b rtn 
+ 00024724  0x00004a0d call  0x000061cd 
+ 00024725  0x00004a0e jam  0x00000003 , 0x0000007c 
+ 00024726  0x00004a0f jam  0x00000013 , 0x0000007d 
+ 00024727  0x00004a10 rtn 
+ 00024728  0x00004a13 arg  0x00000200 , 0x00000002 
+ 00024729  0x00004a14 branch  0x0000609c , 0x00000029 
+ 00024730  0x00004a15 deposit  0x00000028 
+ 00024731  0x00004a16 branch  0x0000609d 
+ 00024732  0x00004a18 deposit  0x00000022 
+ 00024733  0x00004a1a deposit  0x00000021 
+ 00024734  0x00004a1b iadd  0x00000002 , 0x0000003f 
+ 00024735  0x00004a1c and_into  0x000001fc , 0x0000003f 
+ 00024736  0x00004a1d store  0x00000004 , 0x00000034 
+ 00024737  0x00004a1e force  0x00000005 , 0x0000003f 
+ 00024738  0x00004a1f call  0x000061b5 
+ 00024739  0x00004a20 fetch  0x00000004 , 0x00000034 
+ 00024740  0x00004a21 rshift  0x0000003f , 0x0000003f 
+ 00024741  0x00004a22 istore  0x00000004 , 0x00000005 
+ 00024742  0x00004a23 branch  0x000061cf 
+ 00024743  0x00004a26 force  0x0000000a , 0x0000003f 
+ 00024744  0x00004a27 call  0x000061b5 
+ 00024745  0x00004a28 arg  0x00000455 , 0x00000006 
+ 00024746  0x00004a29 ifetch  0x00000009 , 0x00000006 
+ 00024747  0x00004a2a istore  0x00000009 , 0x00000005 
+ 00024748  0x00004a2b branch  0x000061cf 
+ 00024749  0x00004a30 force  0x00000003 , 0x0000003f 
+ 00024750  0x00004a31 call  0x000061b5 
+ 00024751  0x00004a32 setarg  0x00000114 
+ 00024752  0x00004a33 istore  0x00000002 , 0x00000005 
+ 00024753  0x00004a34 branch  0x000061cf 
+ 00024754  0x00004a38 force  0x00000001 , 0x0000003f 
+ 00024755  0x00004a39 call  0x000061b5 
+ 00024756  0x00004a42 branch  0x000061cf 
+ 00024757  0x00004a45 branch  0x000060ba , 0x00000029 
+ 00024758  0x00004a46 jam  0x00000000 , 0x000000ad 
+ 00024759  0x00004a47 fetch  0x00000001 , 0x00000031 
+ 00024760  0x00004a48 set1  0x00000004 , 0x0000003f 
+ 00024761  0x00004a49 store  0x00000001 , 0x00000031 
+ 00024762  0x00004a4b jam  0x00000000 , 0x000000af 
+ 00024763  0x00004a4c force  0x00000007 , 0x0000003f 
+ 00024764  0x00004a4d call  0x000061b5 
+ 00024765  0x00004a4e fetch  0x00000001 , 0x000000ad 
+ 00024766  0x00004a4f istore  0x00000001 , 0x00000005 
+ 00024767  0x00004a50 setarg  0x00000000 
+ 00024768  0x00004a51 istore  0x00000001 , 0x00000005 
+ 00024769  0x00004a52 fetch  0x00000001 , 0x000000af 
+ 00024770  0x00004a53 istore  0x00000001 , 0x00000005 
+ 00024771  0x00004a54 setarg  0x00000006 
+ 00024772  0x00004a55 istore  0x00000001 , 0x00000005 
+ 00024773  0x00004a56 setarg  0x00000002 
+ 00024774  0x00004a57 istore  0x00000001 , 0x00000005 
+ 00024775  0x00004a58 fetch  0x00000001 , 0x000000ab 
+ 00024776  0x00004a59 istore  0x00000001 , 0x00000005 
+ 00024777  0x00004a5a branch  0x000061cd , 0x00000029 
+ 00024778  0x00004a5b branch  0x000061ca 
+ 00024779  0x00004a5f force  0x00000003 , 0x0000003f 
+ 00024780  0x00004a60 call  0x000061b5 
+ 00024781  0x00004a61 fetch  0x00000001 , 0x000000ad 
+ 00024782  0x00004a62 istore  0x00000001 , 0x00000005 
+ 00024783  0x00004a63 force  0x00000013 , 0x0000003f 
+ 00024784  0x00004a64 istore  0x00000001 , 0x00000005 
+ 00024785  0x00004a65 branch  0x000061cf 
+ 00024786  0x00004a68 force  0x00000002 , 0x0000003f 
+ 00024787  0x00004a69 call  0x000061b5 
+ 00024788  0x00004a6a fetch  0x00000001 , 0x00004171 
+ 00024789  0x00004a6b istore  0x00000001 , 0x00000005 
+ 00024790  0x00004a6c branch  0x000061cf 
+ 00024791  0x00004a70 force  0x00000002 , 0x0000003f 
+ 00024792  0x00004a71 call  0x000061b5 
+ 00024793  0x00004a72 setarg  0x00000005 
+ 00024794  0x00004a73 istore  0x00000001 , 0x00000005 
+ 00024795  0x00004a74 branch  0x000061cf 
+ 00024796  0x00004a77 fetch  0x00000001 , 0x00000030 
+ 00024797  0x00004a78 set1  0x00000004 , 0x0000003f 
+ 00024798  0x00004a79 store  0x00000001 , 0x00000030 
+ 00024799  0x00004a7a copy  0x00000022 , 0x0000003f 
+ 00024800  0x00004a7b store  0x00000004 , 0x00000465 
+ 00024801  0x00004a7c fetch  0x00000001 , 0x0000044d 
+ 00024802  0x00004a7d bbit1  0x00000003 , 0x000060eb 
+ 00024803  0x00004a7e set1  0x00000003 , 0x0000003f 
+ 00024804  0x00004a7f store  0x00000001 , 0x0000044d 
+ 00024805  0x00004a80 jam  0x00000005 , 0x00000b7d 
+ 00024806  0x00004a81 call  0x00007c27 
+ 00024807  0x00004a82 call  0x00004825 
+ 00024808  0x00004a83 force  0x00000001 , 0x0000003f 
+ 00024809  0x00004a84 call  0x000061b5 
+ 00024810  0x00004a85 branch  0x000061cf 
+ 00024811  0x00004a87 jam  0x00000000 , 0x00000048 
+ 00024812  0x00004a88 rtn 
+ 00024813  0x00004a8b force  0x00000006 , 0x0000003f 
+ 00024814  0x00004a8c call  0x000061b5 
+ 00024815  0x00004a8d fetch  0x00000005 , 0x000046fd 
+ 00024816  0x00004a8e istore  0x00000005 , 0x00000005 
+ 00024817  0x00004a8f branch  0x000061cf 
+ 00024818  0x00004a92 force  0x00000009 , 0x0000003f 
+ 00024819  0x00004a93 call  0x000061b5 
+ 00024820  0x00004a94 fetch  0x00000008 , 0x00004138 
+ 00024821  0x00004a95 istore  0x00000008 , 0x00000005 
+ 00024822  0x00004a96 branch  0x000061cf 
+ 00024823  0x00004a99 call  0x0000481b 
+ 00024824  0x00004a9a fetch  0x00000001 , 0x00004132 
+ 00024825  0x00004a9b beq  0x00000001 , 0x000060fd 
+ 00024826  0x00004a9c jam  0x00000001 , 0x000007dd 
+ 00024827  0x00004a9d fetch  0x00000001 , 0x00004793 
+ 00024828  0x00004a9e rtnne  0x00000001 
+ 00024829  0x00004aa0 jam  0x00000013 , 0x000007db 
+ 00024830  0x00004aa1 rtn 
+ 00024831  0x00004aa4 call  0x00006209 
+ 00024832  0x00004aa5 jam  0x00000099 , 0x0000007c 
+ 00024833  0x00004aa6 jam  0x00000003 , 0x000007db 
+ 00024834  0x00004aa7 rtn 
+ 00024835  0x00004aab call  0x00006209 
+ 00024836  0x00004aac jam  0x0000003d , 0x0000007c 
+ 00024837  0x00004aad jam  0x00000007 , 0x000007db 
+ 00024838  0x00004aae rtn 
+ 00024839  0x00004ab1 arg  0x00000868 , 0x00000011 
+ 00024840  0x00004ab2 arg  0x00000888 , 0x00000012 
+ 00024841  0x00004ab3 arg  0x00000010 , 0x00000039 
+ 00024842  0x00004ab4 call  0x00007f25 
+ 00024843  0x00004ab5 branch  0x00006111 , 0x00000005 
+ 00024844  0x00004ab6 jam  0x00000000 , 0x000007db 
+ 00024845  0x00004ab7 call  0x00007811 
+ 00024846  0x00004ab8 jam  0x00000024 , 0x0000007e 
+ 00024847  0x00004ab9 jam  0x00000040 , 0x0000007d 
+ 00024848  0x00004aba branch  0x00005bc9 
+ 00024849  0x00004abc jam  0x0000000a , 0x000007db 
+ 00024850  0x00004abd call  0x0000780f 
+ 00024851  0x00004abe jam  0x00000040 , 0x0000007d 
+ 00024852  0x00004abf branch  0x00005cf5 
+ 00024853  0x00004ac4 jam  0x00000040 , 0x0000007c 
+ 00024854  0x00004ac5 rtn 
+ 00024855  0x00004acc jam  0x0000003d , 0x0000007c 
+ 00024856  0x00004ace rtn 
+ 00024857  0x00004ad5 jam  0x00000000 , 0x000007e2 
+ 00024858  0x00004ad6 force  0x00000004 , 0x0000003f 
+ 00024859  0x00004ad7 call  0x000061b5 
+ 00024860  0x00004ad8 force  0x00000001 , 0x0000003f 
+ 00024861  0x00004ad9 istore  0x00000001 , 0x00000005 
+ 00024862  0x00004ada force  0x00000001 , 0x0000003f 
+ 00024863  0x00004adb istore  0x00000001 , 0x00000005 
+ 00024864  0x00004adc force  0x00000030 , 0x0000003f 
+ 00024865  0x00004add istore  0x00000001 , 0x00000005 
+ 00024866  0x00004ade call  0x00006216 
+ 00024867  0x00004adf branch  0x000061cf , 0x00000001 
+ 00024868  0x00004ae0 branch  0x000061cd 
+ 00024869  0x00004ae4 force  0x00000011 , 0x0000003f 
+ 00024870  0x00004ae5 call  0x000061b5 
+ 00024871  0x00004ae6 fetch  0x00000001 , 0x000007e2 
+ 00024872  0x00004ae7 arg  0x000047ac , 0x00000006 
+ 00024873  0x00004ae8 iadd  0x00000006 , 0x00000006 
+ 00024874  0x00004ae9 ifetch  0x00000008 , 0x00000006 
+ 00024875  0x00004aea istore  0x00000008 , 0x00000005 
+ 00024876  0x00004aeb ifetch  0x00000008 , 0x00000006 
+ 00024877  0x00004aec istore  0x00000008 , 0x00000005 
+ 00024878  0x00004aed fetch  0x00000001 , 0x000007e2 
+ 00024879  0x00004aee increase  0x00000010 , 0x0000003f 
+ 00024880  0x00004aef store  0x00000001 , 0x000007e2 
+ 00024881  0x00004af0 call  0x00006216 
+ 00024882  0x00004af1 branch  0x000061cf , 0x00000001 
+ 00024883  0x00004af2 branch  0x000061cd 
+ 00024884  0x00004af6 jam  0x00000006 , 0x000007da 
+ 00024885  0x00004af7 jam  0x0000003f , 0x0000007c 
+ 00024886  0x00004af8 rtn 
+ 00024887  0x00004afc force  0x00000011 , 0x0000003f 
+ 00024888  0x00004afd call  0x000061b5 
+ 00024889  0x00004afe arg  0x00000868 , 0x00000006 
+ 00024890  0x00004aff ifetch  0x00000008 , 0x00000006 
+ 00024891  0x00004b00 istore  0x00000008 , 0x00000005 
+ 00024892  0x00004b01 ifetch  0x00000008 , 0x00000006 
+ 00024893  0x00004b02 istore  0x00000008 , 0x00000005 
+ 00024894  0x00004b03 branch  0x000061cd 
+ 00024895  0x00004b06 call  0x000061d9 
+ 00024896  0x00004b08 jam  0x00000040 , 0x0000007c 
+ 00024897  0x00004b09 rtn 
+ 00024898  0x00004b0d call  0x00006216 
+ 00024899  0x00004b0e call  0x0000774d , 0x00000001 
+ 00024900  0x00004b0f force  0x00000011 , 0x0000003f 
+ 00024901  0x00004b10 call  0x000061b5 
+ 00024902  0x00004b11 arg  0x00000838 , 0x00000006 
+ 00024903  0x00004b12 ifetch  0x00000008 , 0x00000006 
+ 00024904  0x00004b13 istore  0x00000008 , 0x00000005 
+ 00024905  0x00004b14 ifetch  0x00000008 , 0x00000006 
+ 00024906  0x00004b15 istore  0x00000008 , 0x00000005 
+ 00024907  0x00004b16 call  0x00006216 
+ 00024908  0x00004b17 nbranch  0x000061cd , 0x00000001 
+ 00024909  0x00004b18 branch  0x000061cf , 0x00000001 
+ 00024910  0x00004b1c jam  0x0000000f , 0x000007db 
+ 00024911  0x00004b1e call  0x00006209 
+ 00024912  0x00004b1f jam  0x0000000b , 0x0000007c 
+ 00024913  0x00004b20 call  0x00006221 
+ 00024914  0x00004b21 branch  0x00007785 , 0x00000001 
+ 00024915  0x00004b22 branch  0x0000778f 
+ 00024916  0x00004b24 call  0x00006205 
+ 00024917  0x00004b26 jam  0x00000041 , 0x0000007c 
+ 00024918  0x00004b27 rtn 
+ 00024919  0x00004b2a force  0x00000011 , 0x0000003f 
+ 00024920  0x00004b2b call  0x000061b5 
+ 00024921  0x00004b2c arg  0x00000868 , 0x00000006 
+ 00024922  0x00004b2d ifetch  0x00000008 , 0x00000006 
+ 00024923  0x00004b2e istore  0x00000008 , 0x00000005 
+ 00024924  0x00004b2f ifetch  0x00000008 , 0x00000006 
+ 00024925  0x00004b30 istore  0x00000008 , 0x00000005 
+ 00024926  0x00004b31 call  0x00006216 
+ 00024927  0x00004b32 nbranch  0x000061cd , 0x00000001 
+ 00024928  0x00004b33 branch  0x000061cf , 0x00000001 
+ 00024929  0x00004b36 force  0x00000003 , 0x0000003f 
+ 00024930  0x00004b37 call  0x000061b5 
+ 00024931  0x00004b38 setarg  0x0000fffe 
+ 00024932  0x00004b39 istore  0x00000002 , 0x00000005 
+ 00024933  0x00004b3a branch  0x000061cd 
+ 00024934  0x00004b3d branch  0x000061cf 
+ 00024935  0x00004b3f branch  0x000061cf 
+ 00024936  0x00004b41 branch  0x000061cf 
+ 00024937  0x00004b43 branch  0x000061cf 
+ 00024938  0x00004b49 call  0x00006225 
+ 00024939  0x00004b4a arg  0x00004140 , 0x00000011 
+ 00024940  0x00004b4b call  0x0000622b 
+ 00024941  0x00004b4c force  0x00000011 , 0x0000003f 
+ 00024942  0x00004b4d call  0x000061b5 
+ 00024943  0x00004b4e arg  0x0000050f , 0x00000011 
+ 00024944  0x00004b4f arg  0x000004ef , 0x00000012 
+ 00024945  0x00004b50 call  0x00007467 
+ 00024946  0x00004b51 nbranch  0x000061c4 , 0x00000029 
+ 00024947  0x00004b52 branch  0x000061ca 
+ 00024948  0x00004b55 call  0x00006225 
+ 00024949  0x00004b56 arg  0x00000040 , 0x00000011 
+ 00024950  0x00004b57 call  0x0000736a 
+ 00024951  0x00004b59 force  0x00000011 , 0x0000003f 
+ 00024952  0x00004b5a call  0x000061b5 
+ 00024953  0x00004b5b arg  0x000004ef , 0x00000006 
+ 00024954  0x00004b5c call  0x00007e35 
+ 00024955  0x00004b5d fetch  0x00000001 , 0x00000055 
+ 00024956  0x00004b5e beq  0x00000019 , 0x000061cf 
+ 00024957  0x00004b5f beq  0x00000018 , 0x000061cf 
+ 00024958  0x00004b60 branch  0x000061ca 
+ 00024959  0x00004b63 fetch  0x00000001 , 0x000007e1 
+ 00024960  0x00004b64 branch  0x00006185 , 0x00000034 
+ 00024961  0x00004b65 call  0x00006216 
+ 00024962  0x00004b66 call  0x00006209 , 0x00000001 
+ 00024963  0x00004b67 ncall  0x00006205 , 0x00000001 
+ 00024964  0x00004b68 branch  0x00006186 
+ 00024965  0x00004b6a call  0x00006209 
+ 00024966  0x00004b6c call  0x00006225 
+ 00024967  0x00004b6d branch  0x00006177 
+ 00024968  0x00004b70 arg  0x00004140 , 0x00000011 
+ 00024969  0x00004b71 call  0x0000739d 
+ 00024970  0x00004b72 force  0x00000005 , 0x0000003f 
+ 00024971  0x00004b73 call  0x000061b5 
+ 00024972  0x00004b74 fetch  0x00000004 , 0x0000051f 
+ 00024973  0x00004b75 istore  0x00000004 , 0x00000005 
+ 00024974  0x00004b76 arg  0x00000451 , 0x00000002 
+ 00024975  0x00004b77 call  0x000061fb 
+ 00024976  0x00004b78 call  0x0000749b 
+ 00024977  0x00004b79 call  0x00006216 
+ 00024978  0x00004b7a branch  0x00006197 , 0x00000001 
+ 00024979  0x00004b7b jam  0x00000001 , 0x00000454 
+ 00024980  0x00004b7c fetch  0x00000001 , 0x000007e1 
+ 00024981  0x00004b7d rtn  0x00000034 
+ 00024982  0x00004b7e jam  0x0000000b , 0x0000007c 
+ 00024983  0x00004b80 fetch  0x00000001 , 0x0000425e 
+ 00024984  0x00004b81 rtn  0x00000034 
+ 00024985  0x00004b82 call  0x00006216 
+ 00024986  0x00004b83 call  0x00004852 , 0x00000001 
+ 00024987  0x00004b85 call  0x00006216 
+ 00024988  0x00004b86 nbranch  0x000061a1 , 0x00000001 
+ 00024989  0x00004b87 fetch  0x00000001 , 0x00000453 
+ 00024990  0x00004b88 rtn  0x00000034 
+ 00024991  0x00004b89 jam  0x0000000f , 0x0000007c 
+ 00024992  0x00004b8a rtn 
+ 00024993  0x00004b8c rtnmark0  0x00000021 
+ 00024994  0x00004b8d set0  0x00000021 , 0x00000000 
+ 00024995  0x00004b8e jam  0x0000000f , 0x0000007c 
+ 00024996  0x00004b8f rtn 
+ 00024997  0x00004b94 call  0x00006225 
+ 00024998  0x00004b95 call  0x000073a0 
+ 00024999  0x00004b96 force  0x00000011 , 0x0000003f 
+ 00025000  0x00004b97 call  0x000061b5 
+ 00025001  0x00004b98 arg  0x000004ef , 0x00000006 
+ 00025002  0x00004b99 call  0x00007e35 
+ 00025003  0x00004b9a branch  0x000061ca 
+ 00025004  0x00004b9d force  0x00000001 , 0x0000003f 
+ 00025005  0x00004b9e call  0x000061b5 
+ 00025006  0x00004b9f branch  0x000061ca 
+ 00025007  0x00004ba2 force  0x00000002 , 0x0000003f 
+ 00025008  0x00004ba3 call  0x000061b5 
+ 00025009  0x00004ba4 force  0x00000010 , 0x0000003f 
+ 00025010  0x00004ba5 istore  0x00000001 , 0x00000005 
+ 00025011  0x00004ba6 store  0x00000001 , 0x00000054 
+ 00025012  0x00004ba7 branch  0x000061ca 
+ 00025013  0x00004bab lshift3  0x0000003f , 0x0000003f 
+ 00025014  0x00004bac or_into  0x00000007 , 0x0000003f 
+ 00025015  0x00004bad store  0x00000001 , 0x00000432 
+ 00025016  0x00004bae arg  0x00000011 , 0x00000039 
+ 00025017  0x00004baf arg  0x00000434 , 0x00000005 
+ 00025018  0x00004bb0 call  0x00007e3f 
+ 00025019  0x00004bb1 arg  0x00000434 , 0x00000005 
+ 00025020  0x00004bb2 rtn 
+ 00025021  0x00004bb5 and  0x0000003f , 0x0000007f , 0x00000011 
+ 00025022  0x00004bb6 jam  0x0000007f , 0x00000048 
+ 00025023  0x00004bb7 deposit  0x00000007 
+ 00025024  0x00004bb8 call  0x000061b5 
+ 00025025  0x00004bb9 deposit  0x00000011 
+ 00025026  0x00004bba istore  0x00000001 , 0x00000005 
+ 00025027  0x00004bbb rtn 
+ 00025028  0x00004bbe fetch  0x00000001 , 0x00000048 
+ 00025029  0x00004bbf lshift  0x0000003f , 0x0000003f 
+ 00025030  0x00004bc0 fetcht  0x00000001 , 0x0000004c 
+ 00025031  0x00004bc1 isolate1  0x00000001 , 0x00000002 
+ 00025032  0x00004bc2 setflag  0x00000001 , 0x00000000 , 0x0000003f 
+ 00025033  0x00004bc3 branch  0x000061d4 
+ 00025034  0x00004bc7 fetcht  0x00000001 , 0x0000004c 
+ 00025035  0x00004bc8 and_into  0x00000001 , 0x00000002 
+ 00025036  0x00004bc9 branch  0x000061d0 
+ 00025037  0x00004bcc force  0x00000000 , 0x00000002 
+ 00025038  0x00004bcd branch  0x000061d0 
+ 00025039  0x00004bd0 force  0x00000001 , 0x00000002 
+ 00025040  0x00004bd2 fetch  0x00000001 , 0x00000048 
+ 00025041  0x00004bd3 lshift  0x0000003f , 0x0000003f 
+ 00025042  0x00004bd4 setflag  0x00000029 , 0x00000000 , 0x0000003f 
+ 00025043  0x00004bd5 ixor  0x00000002 , 0x0000003f 
+ 00025044  0x00004bd7 store  0x00000001 , 0x00000433 
+ 00025045  0x00004bd8 jam  0x00000000 , 0x00000048 
+ 00025046  0x00004bd9 call  0x000061e0 
+ 00025047  0x00004bda enable  0x00000028 
+ 00025048  0x00004bdb rtn 
+ 00025049  0x00004bde set1  0x00000025 , 0x00000000 
+ 00025050  0x00004bdf bpatch  0x000000e4 , 0x0000403c 
+ 00025051  0x00004be0 fetch  0x00000001 , 0x00000048 
+ 00025052  0x00004be1 branch  0x000061e0 , 0x00000034 
+ 00025053  0x00004be2 fetch  0x00000001 , 0x00000078 
+ 00025054  0x00004be3 nrtn  0x00000034 
+ 00025055  0x00004be4 branch  0x000061ea 
+ 00025056  0x00004be6 fetch  0x00000001 , 0x00000078 
+ 00025057  0x00004be7 branch  0x000061f0 , 0x00000034 
+ 00025058  0x00004be8 fetch  0x00000003 , 0x00000078 
+ 00025059  0x00004be9 store  0x00000003 , 0x00000048 
+ 00025060  0x00004bea fetcht  0x00000001 , 0x0000007b 
+ 00025061  0x00004beb fetch  0x00000001 , 0x0000004c 
+ 00025062  0x00004bec set0  0x00000001 , 0x0000003f 
+ 00025063  0x00004bed ior  0x00000002 , 0x0000003f 
+ 00025064  0x00004bee store  0x00000001 , 0x0000004c 
+ 00025065  0x00004bef jam  0x00000000 , 0x00000078 
+ 00025066  0x00004bf1 fetch  0x00000001 , 0x0000007c 
+ 00025067  0x00004bf2 rtn  0x00000034 
+ 00025068  0x00004bf3 fetch  0x00000004 , 0x0000007c 
+ 00025069  0x00004bf4 store  0x00000004 , 0x00000078 
+ 00025070  0x00004bf5 jam  0x00000000 , 0x0000007c 
+ 00025071  0x00004bf6 rtn 
+ 00025072  0x00004bf8 fetch  0x00000001 , 0x0000007c 
+ 00025073  0x00004bf9 rtn  0x00000034 
+ 00025074  0x00004bfa fetch  0x00000003 , 0x0000007c 
+ 00025075  0x00004bfb store  0x00000003 , 0x00000048 
+ 00025076  0x00004bfc fetcht  0x00000001 , 0x0000007f 
+ 00025077  0x00004bfd fetch  0x00000001 , 0x0000004c 
+ 00025078  0x00004bfe set0  0x00000001 , 0x0000003f 
+ 00025079  0x00004bff ior  0x00000002 , 0x0000003f 
+ 00025080  0x00004c00 store  0x00000001 , 0x0000004c 
+ 00025081  0x00004c01 jam  0x00000000 , 0x0000007c 
+ 00025082  0x00004c02 rtn 
+ 00025083  0x00004c06 set1  0x00000025 , 0x00000000 
+ 00025084  0x00004c07 bpatch  0x000000e5 , 0x0000403c 
+ 00025085  0x00004c08 fetch  0x00000001 , 0x0000004c 
+ 00025086  0x00004c09 copy  0x0000003f , 0x00000013 
+ 00025087  0x00004c0a ifetch  0x00000001 , 0x00000002 
+ 00025088  0x00004c0b call  0x00005d12 
+ 00025089  0x00004c0c call  0x000061c4 
+ 00025090  0x00004c0d copy  0x00000013 , 0x0000003f 
+ 00025091  0x00004c0e store  0x00000001 , 0x0000004c 
+ 00025092  0x00004c0f rtn 
+ 00025093  0x00004c12 fetcht  0x00000001 , 0x0000004c 
+ 00025094  0x00004c13 set0  0x00000000 , 0x00000002 
+ 00025095  0x00004c14 storet  0x00000001 , 0x0000004c 
+ 00025096  0x00004c15 rtn 
+ 00025097  0x00004c18 fetcht  0x00000001 , 0x0000004c 
+ 00025098  0x00004c19 set1  0x00000000 , 0x00000002 
+ 00025099  0x00004c1a storet  0x00000001 , 0x0000004c 
+ 00025100  0x00004c1b rtn 
+ 00025101  0x00004c1f nsetflag  0x00000029 , 0x00000001 , 0x0000003f 
+ 00025102  0x00004c20 fetcht  0x00000001 , 0x0000004c 
+ 00025103  0x00004c21 ixor  0x00000002 , 0x0000003f 
+ 00025104  0x00004c22 isolate1  0x00000001 , 0x0000003f 
+ 00025105  0x00004c23 rtn 
+ 00025106  0x00004c27 fetch  0x00000001 , 0x0000004c 
+ 00025107  0x00004c28 setflag  0x00000029 , 0x00000001 , 0x0000003f 
+ 00025108  0x00004c29 store  0x00000001 , 0x0000004c 
+ 00025109  0x00004c2a rtn 
+ 00025110  0x00004c2e fetch  0x00000001 , 0x000007e0 
+ 00025111  0x00004c2f compare  0x00000001 , 0x0000003f , 0x0000007f 
+ 00025112  0x00004c30 rtn 
+ 00025113  0x00004c32 fetch  0x00000001 , 0x000007e0 
+ 00025114  0x00004c33 set1  0x00000007 , 0x0000003f 
+ 00025115  0x00004c34 store  0x00000001 , 0x000007e0 
+ 00025116  0x00004c35 rtn 
+ 00025117  0x00004c37 fetch  0x00000001 , 0x000007e0 
+ 00025118  0x00004c38 set0  0x00000007 , 0x0000003f 
+ 00025119  0x00004c39 store  0x00000001 , 0x000007e0 
+ 00025120  0x00004c3a rtn 
+ 00025121  0x00004c3c fetch  0x00000001 , 0x000007e0 
+ 00025122  0x00004c3d isolate1  0x00000007 , 0x0000003f 
+ 00025123  0x00004c3e store  0x00000001 , 0x000007e0 
+ 00025124  0x00004c3f rtn 
+ 00025125  0x00004c43 arg  0x000004ef , 0x00000005 
+ 00025126  0x00004c45 force  0x00000010 , 0x00000039 
+ 00025127  0x00004c48 random  0x0000003f 
+ 00025128  0x00004c49 istore  0x00000001 , 0x00000005 
+ 00025129  0x00004c4a loop  0x00006227 
+ 00025130  0x00004c4b rtn 
+ 00025131  0x00004c4e call  0x0000736e 
+ 00025132  0x00004c4f arg  0x00004262 , 0x00000011 
+ 00025133  0x00004c50 arg  0x0000051f , 0x00000012 
+ 00025134  0x00004c51 ifetch  0x00000008 , 0x00000011 
+ 00025135  0x00004c52 fetcht  0x00000001 , 0x00000030 
+ 00025136  0x00004c53 nsetflag  0x00000034 , 0x00000006 , 0x00000002 
+ 00025137  0x00004c54 storet  0x00000001 , 0x00000030 
+ 00025138  0x00004c55 copy  0x00000011 , 0x00000005 
+ 00025139  0x00004c56 call  0x00007467 
+ 00025140  0x00004c57 branch  0x00003229 
+ 00025141  0x00004c5f set1  0x00000025 , 0x00000000 
+ 00025142  0x00004c60 bpatch  0x000000e6 , 0x0000403c 
+ 00025143  0x00004c61 fetch  0x00000001 , 0x0000007c 
+ 00025144  0x00004c62 branch  0x0000623c , 0x00000034 
+ 00025145  0x00004c63 call  0x000061d9 
+ 00025146  0x00004c64 fetch  0x00000001 , 0x0000007c 
+ 00025147  0x00004c65 nrtn  0x00000034 
+ 00025148  0x00004c67 fetch  0x00000001 , 0x00000055 
+ 00025149  0x00004c68 rtn  0x00000034 
+ 00025150  0x00004c6c beq  0x00000004 , 0x0000628d 
+ 00025151  0x00004c6d beq  0x00000005 , 0x00006292 
+ 00025152  0x00004c6e beq  0x00000002 , 0x00006284 
+ 00025153  0x00004c6f beq  0x00000003 , 0x0000629a 
+ 00025154  0x00004c70 beq  0x0000000e , 0x00006287 
+ 00025155  0x00004c71 beq  0x00000006 , 0x000062b6 
+ 00025156  0x00004c72 beq  0x00000007 , 0x000062ce 
+ 00025157  0x00004c73 beq  0x00000009 , 0x000062cf 
+ 00025158  0x00004c74 beq  0x0000000a , 0x000062d8 
+ 00025159  0x00004c75 beq  0x0000000b , 0x000062dc 
+ 00025160  0x00004c76 beq  0x0000000c , 0x000062a4 
+ 00025161  0x00004c77 beq  0x0000000d , 0x000062a7 
+ 00025162  0x00004c78 beq  0x0000000f , 0x000062ad 
+ 00025163  0x00004c79 beq  0x00000012 , 0x00006277 
+ 00025164  0x00004c7a beq  0x00000013 , 0x0000629a 
+ 00025165  0x00004c7b beq  0x00000010 , 0x0000627a 
+ 00025166  0x00004c7c beq  0x00000014 , 0x00006274 
+ 00025167  0x00004c7d beq  0x00000015 , 0x0000629a 
+ 00025168  0x00004c7e beq  0x00000016 , 0x0000626e 
+ 00025169  0x00004c7f beq  0x00000018 , 0x00006273 
+ 00025170  0x00004c80 beq  0x00000017 , 0x00006267 
+ 00025171  0x00004c81 beq  0x00000019 , 0x0000626d 
+ 00025172  0x00004c82 beq  0x0000001a , 0x00006258 
+ 00025173  0x00004c83 beq  0x0000001b , 0x00006262 
+ 00025174  0x00004c84 jam  0x00000000 , 0x00000055 
+ 00025175  0x00004c86 rtn 
+ 00025176  0x00004c88 fetch  0x00000001 , 0x0000044d 
+ 00025177  0x00004c89 rtnbit0  0x00000002 
+ 00025178  0x00004c8a rtnbit0  0x00000003 
+ 00025179  0x00004c8b jam  0x00000000 , 0x00000055 
+ 00025180  0x00004c8c call  0x0000625e 
+ 00025181  0x00004c8d branch  0x00006e41 
+ 00025182  0x00004c90 fetch  0x00000001 , 0x00000177 
+ 00025183  0x00004c91 rtnbit0  0x00000001 
+ 00025184  0x00004c92 jam  0x0000000a , 0x00000055 
+ 00025185  0x00004c93 rtn 
+ 00025186  0x00004c96 arg  0x0000000b , 0x00000007 
+ 00025187  0x00004c97 call  0x00007e53 
+ 00025188  0x00004c98 nrtn  0x00000034 
+ 00025189  0x00004c99 jam  0x0000001a , 0x00000055 
+ 00025190  0x00004c9a rtn 
+ 00025191  0x00004c9d fetch  0x00000001 , 0x00000177 
+ 00025192  0x00004c9e set0  0x00000000 , 0x0000003f 
+ 00025193  0x00004c9f store  0x00000001 , 0x00000177 
+ 00025194  0x00004ca0 jam  0x00000019 , 0x00000055 
+ 00025195  0x00004ca1 jam  0x0000000b , 0x0000007c 
+ 00025196  0x00004ca2 rtn 
+ 00025197  0x00004ca4 rtn 
+ 00025198  0x00004ca6 fetch  0x00000001 , 0x00000450 
+ 00025199  0x00004ca7 rtnne  0x00000002 
+ 00025200  0x00004ca8 call  0x000062de 
+ 00025201  0x00004ca9 jam  0x00000018 , 0x00000055 
+ 00025202  0x00004caa rtn 
+ 00025203  0x00004cad rtn 
+ 00025204  0x00004caf jam  0x00000015 , 0x00000055 
+ 00025205  0x00004cb0 jam  0x00000083 , 0x0000007c 
+ 00025206  0x00004cb1 rtn 
+ 00025207  0x00004cb3 jam  0x00000013 , 0x00000055 
+ 00025208  0x00004cb4 jam  0x00000025 , 0x0000007c 
+ 00025209  0x00004cb5 rtn 
+ 00025210  0x00004cb8 fetch  0x00000001 , 0x00004748 
+ 00025211  0x00004cb9 rtneq  0x00000000 
+ 00025212  0x00004cba beq  0x00000001 , 0x00006282 
+ 00025213  0x00004cbb arg  0x0000000a , 0x00000007 
+ 00025214  0x00004cbc call  0x00007e53 
+ 00025215  0x00004cbd nrtn  0x00000034 
+ 00025216  0x00004cbe jam  0x00000000 , 0x00004748 
+ 00025217  0x00004cbf branch  0x0000629b 
+ 00025218  0x00004cc1 rtn  0x00000029 
+ 00025219  0x00004cc2 branch  0x000062b6 
+ 00025220  0x00004cc5 jam  0x00000003 , 0x00000055 
+ 00025221  0x00004cc6 jam  0x00000027 , 0x0000007c 
+ 00025222  0x00004cc7 rtn 
+ 00025223  0x00004cc9 jam  0x00000013 , 0x0000007c 
+ 00025224  0x00004cca set1  0x00000003 , 0x00000000 
+ 00025225  0x00004ccb jam  0x00000005 , 0x00000055 
+ 00025226  0x00004ccc setarg  0x000001ff 
+ 00025227  0x00004ccd store  0x00000002 , 0x0000044e 
+ 00025228  0x00004cce rtn 
+ 00025229  0x00004cd0 jam  0x00000005 , 0x00000055 
+ 00025230  0x00004cd1 jam  0x000000ff , 0x0000044e 
+ 00025231  0x00004cd2 set0  0x00000022 , 0x00000000 
+ 00025232  0x00004cd3 jam  0x00000033 , 0x0000007c 
+ 00025233  0x00004cd4 branch  0x00005b6f 
+ 00025234  0x00004cd6 rtnmark1  0x00000022 
+ 00025235  0x00004cd7 fetch  0x00000002 , 0x0000044e 
+ 00025236  0x00004cd8 sub  0x0000003f , 0x00000001 , 0x0000003f 
+ 00025237  0x00004cd9 branch  0x00006298 , 0x00000005 
+ 00025238  0x00004cda store  0x00000002 , 0x0000044e 
+ 00025239  0x00004cdb rtn 
+ 00025240  0x00004cdd jam  0x0000000e , 0x00000055 
+ 00025241  0x00004cde rtn 
+ 00025242  0x00004ce1 rtn 
+ 00025243  0x00004ce4 fetch  0x00000001 , 0x0000044d 
+ 00025244  0x00004ce5 rtnbit0  0x00000003 
+ 00025245  0x00004ce6 rtnbit0  0x00000002 
+ 00025246  0x00004ce7 fetch  0x00000001 , 0x00000177 
+ 00025247  0x00004ce8 set0  0x00000002 , 0x0000003f 
+ 00025248  0x00004ce9 store  0x00000001 , 0x00000177 
+ 00025249  0x00004cea jam  0x00000013 , 0x0000007c 
+ 00025250  0x00004ceb jam  0x00000010 , 0x00000055 
+ 00025251  0x00004cec rtn 
+ 00025252  0x00004cef jam  0x0000000d , 0x00000055 
+ 00025253  0x00004cf0 jam  0x00000031 , 0x0000007c 
+ 00025254  0x00004cf1 rtn 
+ 00025255  0x00004cf4 fetch  0x00000001 , 0x0000044d 
+ 00025256  0x00004cf5 rtnbit0  0x00000002 
+ 00025257  0x00004cf6 jam  0x00000000 , 0x00000055 
+ 00025258  0x00004cf8 rtn 
+ 00025259  0x00004cfa jam  0x00000006 , 0x00000055 
+ 00025260  0x00004cfb rtn 
+ 00025261  0x00004cfe fetch  0x00000001 , 0x0000044e 
+ 00025262  0x00004cff increase  0xffffffff , 0x0000003f 
+ 00025263  0x00004d00 branch  0x000062b2 , 0x00000034 
+ 00025264  0x00004d01 store  0x00000001 , 0x0000044e 
+ 00025265  0x00004d02 rtn 
+ 00025266  0x00004d04 jam  0x00000007 , 0x0000007c 
+ 00025267  0x00004d05 jam  0x00000016 , 0x00000446 
+ 00025268  0x00004d06 jam  0x00000000 , 0x00000055 
+ 00025269  0x00004d07 rtn 
+ 00025270  0x00004d0a fetch  0x00000001 , 0x00000177 
+ 00025271  0x00004d0b bbit1  0x00000002 , 0x0000629b 
+ 00025272  0x00004d0c bbit1  0x00000000 , 0x000062bb 
+ 00025273  0x00004d0e jam  0x0000001a , 0x00000055 
+ 00025274  0x00004d0f rtn 
+ 00025275  0x00004d11 fetch  0x00000001 , 0x0000425e 
+ 00025276  0x00004d12 branch  0x000062c7 , 0x00000034 
+ 00025277  0x00004d13 fetch  0x00000001 , 0x0000044d 
+ 00025278  0x00004d14 rtnbit0  0x00000003 
+ 00025279  0x00004d15 rtnbit0  0x00000002 
+ 00025280  0x00004d16 fetch  0x00000004 , 0x00000465 
+ 00025281  0x00004d17 arg  0x00000064 , 0x00000002 
+ 00025282  0x00004d18 iadd  0x00000002 , 0x00000002 
+ 00025283  0x00004d19 copy  0x00000022 , 0x0000003f 
+ 00025284  0x00004d1a isub  0x00000002 , 0x0000003e 
+ 00025285  0x00004d1b nrtn  0x00000002 
+ 00025286  0x00004d1c branch  0x00006267 
+ 00025287  0x00004d21 jam  0x00000016 , 0x00000055 
+ 00025288  0x00004d22 jam  0x00000004 , 0x0000054f 
+ 00025289  0x00004d23 setarg  0x00003030 
+ 00025290  0x00004d24 store  0x00000002 , 0x00000550 
+ 00025291  0x00004d25 istore  0x00000002 , 0x00000005 
+ 00025292  0x00004d26 jam  0x00000002 , 0x00000450 
+ 00025293  0x00004d27 branch  0x0000626e 
+ 00025294  0x00004d2a rtn 
+ 00025295  0x00004d2c fetch  0x00000001 , 0x00000177 
+ 00025296  0x00004d2d bbit1  0x00000001 , 0x000062d3 
+ 00025297  0x00004d2e jam  0x0000001a , 0x00000055 
+ 00025298  0x00004d2f rtn 
+ 00025299  0x00004d32 fetch  0x00000001 , 0x00000177 
+ 00025300  0x00004d33 set0  0x00000001 , 0x0000003f 
+ 00025301  0x00004d34 store  0x00000001 , 0x00000177 
+ 00025302  0x00004d35 jam  0x0000000f , 0x0000007c 
+ 00025303  0x00004d36 rtn 
+ 00025304  0x00004d39 fetch  0x00000001 , 0x00000454 
+ 00025305  0x00004d3a rtn  0x00000034 
+ 00025306  0x00004d3b jam  0x00000000 , 0x00000055 
+ 00025307  0x00004d3c branch  0x000062d3 
+ 00025308  0x00004d3f jam  0x0000000c , 0x00000055 
+ 00025309  0x00004d40 rtn 
+ 00025310  0x00004d43 fetch  0x00000001 , 0x0000004b 
+ 00025311  0x00004d44 bbit1  0x00000002 , 0x000062e3 
+ 00025312  0x00004d45 call  0x00006209 
+ 00025313  0x00004d46 jam  0x00000008 , 0x0000007c 
+ 00025314  0x00004d47 branch  0x000049bc 
+ 00025315  0x00004d49 fetch  0x00000001 , 0x0000004b 
+ 00025316  0x00004d4a set0  0x00000002 , 0x0000003f 
+ 00025317  0x00004d4b store  0x00000001 , 0x0000004b 
+ 00025318  0x00004d4c call  0x00005ed0 
+ 00025319  0x00004d4d call  0x00006212 
+ 00025320  0x00004d4e branch  0x000049bc 
+ 00025321  0x00004d51 setarg  0x00000004 
+ 00025322  0x00004d52 store  0x00000001 , 0x0000054f 
+ 00025323  0x00004d53 setarg  0x00003030 
+ 00025324  0x00004d54 istore  0x00000002 , 0x00000005 
+ 00025325  0x00004d55 istore  0x00000002 , 0x00000005 
+ 00025326  0x00004d56 rtn 
+ 00025327  0x00004d5f rtn  0x0000002b 
+ 00025328  0x00004d60 jam  0x00000000 , 0x00004813 
+ 00025329  0x00004d61 call  0x00006321 
+ 00025330  0x00004d62 call  0x00006438 
+ 00025331  0x00004d63 setarg  0x0000632e 
+ 00025332  0x00004d64 store  0x00000002 , 0x00004290 
+ 00025333  0x00004d65 setarg  0x0000632f 
+ 00025334  0x00004d66 store  0x00000002 , 0x0000428e 
+ 00025335  0x00004d67 setarg  0x00006337 
+ 00025336  0x00004d68 store  0x00000002 , 0x00004292 
+ 00025337  0x00004d69 setarg  0x000063b6 
+ 00025338  0x00004d6a store  0x00000002 , 0x00004296 
+ 00025339  0x00004d6b setarg  0x0000632f 
+ 00025340  0x00004d6c store  0x00000002 , 0x0000428c 
+ 00025341  0x00004d6d set1  0x00000025 , 0x00000000 
+ 00025342  0x00004d6e bpatch  0x00000080 , 0x00004030 
+ 00025343  0x00004d6f setarg  0x0000632a 
+ 00025344  0x00004d70 store  0x00000002 , 0x00004286 
+ 00025345  0x00004d71 setarg  0x000063be 
+ 00025346  0x00004d72 store  0x00000002 , 0x00004298 
+ 00025347  0x00004d73 setarg  0x00000000 
+ 00025348  0x00004d74 store  0x00000004 , 0x0000480a 
+ 00025349  0x00004d75 store  0x00000002 , 0x00004810 
+ 00025350  0x00004d76 call  0x0000630a 
+ 00025351  0x00004d77 call  0x00003fc5 
+ 00025352  0x00004d78 call  0x00003e2b 
+ 00025353  0x00004d79 branch  0x0000691d 
+ 00025354  0x00004d7c rtn  0x0000002b 
+ 00025355  0x00004d7d setarg  0x000001a0 
+ 00025356  0x00004d7e store  0x00000002 , 0x000042ac 
+ 00025357  0x00004d80 call  0x00006a0d 
+ 00025358  0x00004d81 setarg  0x00004a00 
+ 00025359  0x00004d82 hstore  0x00000002 , 0x00008054 
+ 00025360  0x00004d83 setarg  0x00004fff 
+ 00025361  0x00004d84 hstore  0x00000002 , 0x00008056 
+ 00025362  0x00004d85 setarg  0x00001c00 
+ 00025363  0x00004d86 hstore  0x00000002 , 0x0000805a 
+ 00025364  0x00004d87 setarg  0x00001fff 
+ 00025365  0x00004d88 hstore  0x00000002 , 0x0000805c 
+ 00025366  0x00004d89 hjam  0x00000004 , 0x00008081 
+ 00025367  0x00004d8a jam  0x000000ff , 0x0000029f 
+ 00025368  0x00004d8b hjam  0x00000000 , 0x00008062 
+ 00025369  0x00004d8c setarg  0x00001c00 
+ 00025370  0x00004d8d hstore  0x00000002 , 0x0000805e 
+ 00025371  0x00004d8e hstore  0x00000002 , 0x00008060 
+ 00025372  0x00004d8f setarg  0x00004a00 
+ 00025373  0x00004d90 hstore  0x00000002 , 0x00008058 
+ 00025374  0x00004d91 branch  0x00004480 
+ 00025375  0x00004d95 call  0x0000630d 
+ 00025376  0x00004d96 branch  0x00006321 
+ 00025377  0x00004d9a call  0x00007bd9 
+ 00025378  0x00004d9b call  0x00003f94 
+ 00025379  0x00004d9d fetcht  0x00000001 , 0x00004803 
+ 00025380  0x00004d9e call  0x000069da 
+ 00025381  0x00004d9f call  0x0000639e 
+ 00025382  0x00004da1 fetcht  0x00000001 , 0x00004801 
+ 00025383  0x00004da2 call  0x000069d1 
+ 00025384  0x00004da3 fetcht  0x00000001 , 0x00004800 
+ 00025385  0x00004da4 branch  0x000069d2 
+ 00025386  0x00004da7 fetcht  0x00000001 , 0x00004801 
+ 00025387  0x00004da8 call  0x000069e5 
+ 00025388  0x00004da9 nbranch  0x00003f5c , 0x00000001 
+ 00025389  0x00004daa branch  0x00003f5a 
+ 00025390  0x00004daf branch  0x00006330 
+ 00025391  0x00004db1 branch  0x00006330 
+ 00025392  0x00004db3 set1  0x00000025 , 0x00000000 
+ 00025393  0x00004db4 bpatch  0x00000081 , 0x00004030 
+ 00025394  0x00004db5 call  0x0000641c 
+ 00025395  0x00004db6 call  0x00006421 
+ 00025396  0x00004db7 call  0x0000527a 
+ 00025397  0x00004db8 nrtn  0x00000034 
+ 00025398  0x00004db9 branch  0x000063a0 
+ 00025399  0x00004dbb copy  0x00000013 , 0x0000003f 
+ 00025400  0x00004dbc beq  0x0000000a , 0x00006368 
+ 00025401  0x00004dbd beq  0x00000004 , 0x00006383 
+ 00025402  0x00004dbe beq  0x00000013 , 0x00006387 
+ 00025403  0x00004dbf beq  0x00000002 , 0x0000634c 
+ 00025404  0x00004dc0 beq  0x00000019 , 0x0000636a 
+ 00025405  0x00004dc1 beq  0x00000020 , 0x0000636f 
+ 00025406  0x00004dc2 beq  0x00000022 , 0x00006374 
+ 00025407  0x00004dc3 beq  0x00000021 , 0x00006375 
+ 00025408  0x00004dc4 beq  0x00000023 , 0x00006376 
+ 00025409  0x00004dc5 beq  0x00000024 , 0x00006379 
+ 00025410  0x00004dc6 beq  0x00000014 , 0x0000637a 
+ 00025411  0x00004dc7 beq  0x00000001 , 0x00006382 
+ 00025412  0x00004dc8 beq  0x00000015 , 0x00006364 
+ 00025413  0x00004dc9 beq  0x00000005 , 0x0000635d 
+ 00025414  0x00004dca beq  0x0000000b , 0x00006352 
+ 00025415  0x00004dcb beq  0x0000000c , 0x00003fa6 
+ 00025416  0x00004dcc and  0x0000003f , 0x0000000f , 0x00000002 
+ 00025417  0x00004dcd and_into  0x000000f0 , 0x0000003f 
+ 00025418  0x00004dce beq  0x00000050 , 0x000063ec 
+ 00025419  0x00004dcf rtn 
+ 00025420  0x00004dd2 call  0x0000638a 
+ 00025421  0x00004dd3 fetch  0x00000002 , 0x000042a0 
+ 00025422  0x00004dd4 rtnbit0  0x00000004 
+ 00025423  0x00004dd5 arg  0x00000003 , 0x00000039 
+ 00025424  0x00004dd6 arg  0x00004849 , 0x00000006 
+ 00025425  0x00004dd7 branch  0x00007f71 
+ 00025426  0x00004ddc fetch  0x00000002 , 0x00004042 
+ 00025427  0x00004ddd rshift  0x0000003f , 0x0000003f 
+ 00025428  0x00004dde fetcht  0x00000002 , 0x00004280 
+ 00025429  0x00004ddf isub  0x00000002 , 0x0000003e 
+ 00025430  0x00004de0 nbranch  0x00006358 , 0x00000005 
+ 00025431  0x00004de1 branch  0x00003fa4 
+ 00025432  0x00004de3 fetch  0x00000001 , 0x00004813 
+ 00025433  0x00004de4 rtnbit1  0x00000000 
+ 00025434  0x00004de5 hfetch  0x00000002 , 0x00008112 
+ 00025435  0x00004de6 ncall  0x0000640c , 0x00000034 
+ 00025436  0x00004de7 branch  0x00003f9c 
+ 00025437  0x00004dea call  0x00006395 
+ 00025438  0x00004deb call  0x0000642e 
+ 00025439  0x00004dec branch  0x00006361 , 0x00000005 
+ 00025440  0x00004ded branch  0x00003f77 
+ 00025441  0x00004def arg  0x00000004 , 0x00000039 
+ 00025442  0x00004df0 arg  0x0000488e , 0x00000006 
+ 00025443  0x00004df1 branch  0x00007f71 
+ 00025444  0x00004df4 call  0x0000638a 
+ 00025445  0x00004df5 arg  0x00000005 , 0x00000039 
+ 00025446  0x00004df6 arg  0x00004847 , 0x00000006 
+ 00025447  0x00004df7 branch  0x00007f71 
+ 00025448  0x00004dfa call  0x00003fc1 
+ 00025449  0x00004dfb branch  0x00003f6a 
+ 00025450  0x00004dfd fetch  0x00000001 , 0x00004813 
+ 00025451  0x00004dfe rtnbit0  0x00000004 
+ 00025452  0x00004dff set0  0x00000004 , 0x0000003f 
+ 00025453  0x00004e00 store  0x00000001 , 0x00004813 
+ 00025454  0x00004e01 branch  0x0000427f 
+ 00025455  0x00004e04 fetch  0x00000001 , 0x00004813 
+ 00025456  0x00004e05 rtnbit0  0x00000004 
+ 00025457  0x00004e06 set0  0x00000004 , 0x0000003f 
+ 00025458  0x00004e07 store  0x00000001 , 0x00004813 
+ 00025459  0x00004e08 branch  0x00004286 
+ 00025460  0x00004e0b rtn 
+ 00025461  0x00004e0e rtn 
+ 00025462  0x00004e11 fetch  0x00000001 , 0x00004813 
+ 00025463  0x00004e12 bbit0  0x00000000 , 0x00003f9e 
+ 00025464  0x00004e13 branch  0x00006410 
+ 00025465  0x00004e16 rtn 
+ 00025466  0x00004e19 call  0x00006395 
+ 00025467  0x00004e1a arg  0x000003d0 , 0x00000012 
+ 00025468  0x00004e1b call  0x0000642e 
+ 00025469  0x00004e1c branch  0x0000637f , 0x00000005 
+ 00025470  0x00004e1d branch  0x00003f90 
+ 00025471  0x00004e1f arg  0x00000006 , 0x00000039 
+ 00025472  0x00004e20 arg  0x0000488c , 0x00000006 
+ 00025473  0x00004e21 branch  0x00007f71 
+ 00025474  0x00004e24 rtn 
+ 00025475  0x00004e28 arg  0x00000007 , 0x00000039 
+ 00025476  0x00004e29 arg  0x00004899 , 0x00000006 
+ 00025477  0x00004e2a call  0x00007f71 
+ 00025478  0x00004e2b branch  0x0000638a 
+ 00025479  0x00004e2d arg  0x00000007 , 0x00000039 
+ 00025480  0x00004e2e arg  0x00004892 , 0x00000006 
+ 00025481  0x00004e2f call  0x00007f71 
+ 00025482  0x00004e31 call  0x0000638c 
+ 00025483  0x00004e32 branch  0x00006393 
+ 00025484  0x00004e35 fetch  0x00000001 , 0x00004812 
+ 00025485  0x00004e36 isolate1  0x00000000 , 0x0000003f 
+ 00025486  0x00004e37 call  0x00003f7c , 0x00000001 
+ 00025487  0x00004e38 fetch  0x00000001 , 0x00004812 
+ 00025488  0x00004e39 isolate1  0x00000001 , 0x0000003f 
+ 00025489  0x00004e3a call  0x00003f88 , 0x00000001 
+ 00025490  0x00004e3b rtn 
+ 00025491  0x00004e3d fetcht  0x00000001 , 0x00004803 
+ 00025492  0x00004e3e branch  0x000069ef 
+ 00025493  0x00004e41 call  0x00006397 
+ 00025494  0x00004e42 branch  0x0000639e 
+ 00025495  0x00004e45 fetch  0x00000001 , 0x00004812 
+ 00025496  0x00004e46 isolate1  0x00000000 , 0x0000003f 
+ 00025497  0x00004e47 call  0x00003f7e , 0x00000001 
+ 00025498  0x00004e48 fetch  0x00000001 , 0x00004812 
+ 00025499  0x00004e49 isolate1  0x00000001 , 0x0000003f 
+ 00025500  0x00004e4a call  0x00003f86 , 0x00000001 
+ 00025501  0x00004e4b rtn 
+ 00025502  0x00004e4d fetcht  0x00000001 , 0x00004803 
+ 00025503  0x00004e4e branch  0x000069ed 
+ 00025504  0x00004e54 fetch  0x00000001 , 0x00004132 
+ 00025505  0x00004e55 rtnne  0x0000000a 
+ 00025506  0x00004e56 hfetch  0x00000002 , 0x00008112 
+ 00025507  0x00004e57 rtn  0x00000034 
+ 00025508  0x00004e58 store  0x00000002 , 0x0000480e 
+ 00025509  0x00004e5a call  0x000063a9 
+ 00025510  0x00004e5b branch  0x00003fef , 0x00000001 
+ 00025511  0x00004e5c call  0x00006400 
+ 00025512  0x00004e5d branch  0x000063af 
+ 00025513  0x00004e61 fetcht  0x00000001 , 0x00004800 
+ 00025514  0x00004e62 branch  0x000069e5 
+ 00025515  0x00004e66 fetch  0x00000001 , 0x00004813 
+ 00025516  0x00004e67 rtnbit1  0x00000000 
+ 00025517  0x00004e68 call  0x0000640c 
+ 00025518  0x00004e69 branch  0x00003f9c 
+ 00025519  0x00004e6c fetch  0x00000001 , 0x00004040 
+ 00025520  0x00004e6d bbit0  0x00000000 , 0x0000428c 
+ 00025521  0x00004e6e fetch  0x00000001 , 0x00004041 
+ 00025522  0x00004e6f bbit1  0x00000000 , 0x000063d5 
+ 00025523  0x00004e70 call  0x00003f40 
+ 00025524  0x00004e71 branch  0x000063ab , 0x00000001 
+ 00025525  0x00004e72 branch  0x00006d97 
+ 00025526  0x00004e75 call  0x00005a88 
+ 00025527  0x00004e76 ifetch  0x00000001 , 0x00000006 
+ 00025528  0x00004e77 copy  0x00000006 , 0x00000011 
+ 00025529  0x00004e78 call  0x00007f6e 
+ 00025530  0x00004e79 copy  0x00000012 , 0x00000039 
+ 00025531  0x00004e7a copy  0x00000011 , 0x00000006 
+ 00025532  0x00004e7b call  0x00004976 
+ 00025533  0x00004e7c branch  0x000068fa 
+ 00025534  0x00004e81 fetch  0x00000002 , 0x00004810 
+ 00025535  0x00004e82 rtn  0x00000034 
+ 00025536  0x00004e83 arg  0x00000014 , 0x00000002 
+ 00025537  0x00004e84 call  0x00007fb9 
+ 00025538  0x00004e85 store  0x00000002 , 0x00000469 
+ 00025539  0x00004e87 copy  0x0000003f , 0x00000002 
+ 00025540  0x00004e88 fetch  0x00000002 , 0x00004810 
+ 00025541  0x00004e89 isub  0x00000002 , 0x0000003f 
+ 00025542  0x00004e8a store  0x00000002 , 0x00004810 
+ 00025543  0x00004e8b nbranch  0x00003bf1 , 0x00000002 
+ 00025544  0x00004e8d arg  0x00000014 , 0x00000002 
+ 00025545  0x00004e8e storet  0x00000002 , 0x000044c2 
+ 00025546  0x00004e8f call  0x00005a88 
+ 00025547  0x00004e90 branch  0x00003bf1 , 0x00000034 
+ 00025548  0x00004e91 add  0x00000006 , 0x00000001 , 0x00000005 
+ 00025549  0x00004e93 fetch  0x00000002 , 0x00000469 
+ 00025550  0x00004e94 copy  0x0000003f , 0x00000039 
+ 00025551  0x00004e96 call  0x00007f6b 
+ 00025552  0x00004e98 call  0x0000497c 
+ 00025553  0x00004e9a fetch  0x00000002 , 0x00000469 
+ 00025554  0x00004e9b store  0x00000002 , 0x0000480e 
+ 00025555  0x00004e9c store  0x00000002 , 0x0000041b 
+ 00025556  0x00004e9d branch  0x0000428c 
+ 00025557  0x00004ea1 rtnmark0  0x00000009 
+ 00025558  0x00004ea2 call  0x000063d8 
+ 00025559  0x00004ea3 call  0x000063d8 
+ 00025560  0x00004ea5 call  0x0000561e 
+ 00025561  0x00004ea6 nrtn  0x00000034 
+ 00025562  0x00004ea7 hfetch  0x00000002 , 0x00008112 
+ 00025563  0x00004ea8 rtn  0x00000034 
+ 00025564  0x00004ea9 fetcht  0x00000002 , 0x00004810 
+ 00025565  0x00004eaa isub  0x00000002 , 0x0000003f 
+ 00025566  0x00004eab nbranch  0x00003bf1 , 0x00000002 
+ 00025567  0x00004eac store  0x00000002 , 0x0000480e 
+ 00025568  0x00004ead rtn  0x00000034 
+ 00025569  0x00004eae call  0x00006407 
+ 00025570  0x00004eaf fetch  0x00000002 , 0x00004810 
+ 00025571  0x00004eb0 fetcht  0x00000002 , 0x0000480e 
+ 00025572  0x00004eb1 iadd  0x00000002 , 0x0000003f 
+ 00025573  0x00004eb2 store  0x00000002 , 0x00004810 
+ 00025574  0x00004eb3 fetcht  0x00000002 , 0x00004810 
+ 00025575  0x00004eb4 hfetch  0x00000002 , 0x00008112 
+ 00025576  0x00004eb5 isub  0x00000002 , 0x00000011 
+ 00025577  0x00004eb6 nbranch  0x00003bf1 , 0x00000002 
+ 00025578  0x00004eb7 jam  0x0000001b , 0x00000b7d 
+ 00025579  0x00004eb8 branch  0x00005620 
+ 00025580  0x00004ebb storet  0x00000001 , 0x00000259 
+ 00025581  0x00004ebd fetch  0x00000001 , 0x00000259 
+ 00025582  0x00004ebe rtn  0x00000034 
+ 00025583  0x00004ebf increase  0xffffffff , 0x0000003f 
+ 00025584  0x00004ec0 store  0x00000001 , 0x00000259 
+ 00025585  0x00004ec1 call  0x000063f3 
+ 00025586  0x00004ec2 branch  0x000063ed 
+ 00025587  0x00004ec5 fetch  0x00000002 , 0x0000481a 
+ 00025588  0x00004ec6 rtn  0x00000034 
+ 00025589  0x00004ec7 increase  0xffffffff , 0x0000003f 
+ 00025590  0x00004ec8 store  0x00000002 , 0x0000481a 
+ 00025591  0x00004ec9 nrtn  0x00000034 
+ 00025592  0x00004eca fetch  0x00000001 , 0x000042a4 
+ 00025593  0x00004ecb jam  0x00000000 , 0x000042a4 
+ 00025594  0x00004ecc bbit1  0x00000001 , 0x000063fd 
+ 00025595  0x00004ecd bbit1  0x00000000 , 0x000063fe 
+ 00025596  0x00004ece branch  0x00003bf1 
+ 00025597  0x00004ed0 branch  0x00003f8c 
+ 00025598  0x00004ed2 jam  0x00000002 , 0x00004272 
+ 00025599  0x00004ed3 rtn 
+ 00025600  0x00004ed6 fetch  0x00000001 , 0x00004041 
+ 00025601  0x00004ed7 bbit1  0x00000000 , 0x00006407 
+ 00025602  0x00004ed8 fetch  0x00000002 , 0x0000480e 
+ 00025603  0x00004ed9 arg  0x0000006e , 0x00000002 
+ 00025604  0x00004edb call  0x00007fb9 
+ 00025605  0x00004edc store  0x00000002 , 0x0000480e 
+ 00025606  0x00004edd rtn 
+ 00025607  0x00004edf fetch  0x00000002 , 0x0000480e 
+ 00025608  0x00004ee0 arg  0x00000014 , 0x00000002 
+ 00025609  0x00004ee1 call  0x00007fb9 
+ 00025610  0x00004ee2 store  0x00000002 , 0x0000480e 
+ 00025611  0x00004ee3 rtn 
+ 00025612  0x00004ee6 fetch  0x00000001 , 0x00004813 
+ 00025613  0x00004ee7 set1  0x00000000 , 0x0000003f 
+ 00025614  0x00004ee8 store  0x00000001 , 0x00004813 
+ 00025615  0x00004ee9 rtn 
+ 00025616  0x00004eec fetch  0x00000001 , 0x00004813 
+ 00025617  0x00004eed set0  0x00000000 , 0x0000003f 
+ 00025618  0x00004eee store  0x00000001 , 0x00004813 
+ 00025619  0x00004eef rtn 
+ 00025620  0x00004ef2 fetch  0x00000001 , 0x00004813 
+ 00025621  0x00004ef3 set1  0x00000007 , 0x0000003f 
+ 00025622  0x00004ef4 store  0x00000001 , 0x00004813 
+ 00025623  0x00004ef5 rtn 
+ 00025624  0x00004ef8 fetch  0x00000001 , 0x00004813 
+ 00025625  0x00004ef9 set0  0x00000007 , 0x0000003f 
+ 00025626  0x00004efa store  0x00000001 , 0x00004813 
+ 00025627  0x00004efb rtn 
+ 00025628  0x00004efe set1  0x00000025 , 0x00000000 
+ 00025629  0x00004eff bpatch  0x00000082 , 0x00004030 
+ 00025630  0x00004f00 call  0x00007f8e 
+ 00025631  0x00004f01 branch  0x00003f66 , 0x00000002 
+ 00025632  0x00004f02 branch  0x00003f68 
+ 00025633  0x00004f05 call  0x000063a9 
+ 00025634  0x00004f06 branch  0x00006428 , 0x00000001 
+ 00025635  0x00004f07 hfetcht  0x00000002 , 0x00008052 
+ 00025636  0x00004f08 fetch  0x00000002 , 0x000042ac 
+ 00025637  0x00004f09 isub  0x00000002 , 0x0000003e 
+ 00025638  0x00004f0a rtn  0x00000005 
+ 00025639  0x00004f0b branch  0x00006909 
+ 00025640  0x00004f0f hfetcht  0x00000002 , 0x00008052 
+ 00025641  0x00004f10 setarg  0x000001a0 
+ 00025642  0x00004f11 isub  0x00000002 , 0x0000003e 
+ 00025643  0x00004f12 rtn  0x00000005 
+ 00025644  0x00004f13 hstore  0x00000002 , 0x00008052 
+ 00025645  0x00004f14 rtn 
+ 00025646  0x00004f17 set1  0x00000025 , 0x00000000 
+ 00025647  0x00004f18 bpatch  0x00000083 , 0x00004030 
+ 00025648  0x00004f19 fetch  0x00000001 , 0x00004812 
+ 00025649  0x00004f1a isolate0  0x00000002 , 0x0000003f 
+ 00025650  0x00004f1b branch  0x00006436 , 0x00000001 
+ 00025651  0x00004f1c arg  0x00004814 , 0x00000011 
+ 00025652  0x00004f1d arg  0x00000006 , 0x00000039 
+ 00025653  0x00004f1e branch  0x00007f25 
+ 00025654  0x00004f20 force  0x00000000 , 0x0000003e 
+ 00025655  0x00004f21 rtn 
+ 00025656  0x00004f24 set1  0x00000025 , 0x00000000 
+ 00025657  0x00004f25 bpatch  0x00000084 , 0x00004030 
+ 00025658  0x00004f26 arg  0x0000481c , 0x00000005 
+ 00025659  0x00004f27 setsect  0x00000000 , 0x00035350 
+ 00025660  0x00004f28 setsect  0x00000001 , 0x00015115 
+ 00025661  0x00004f29 setsect  0x00000002 , 0x00012415 
+ 00025662  0x00004f2a setsect  0x00000003 , 0x00010951 
+ 00025663  0x00004f2b istore  0x00000009 , 0x00000005 
+ 00025664  0x00004f2c setsect  0x00000000 , 0x0002454c 
+ 00025665  0x00004f2d setsect  0x00000001 , 0x00035053 
+ 00025666  0x00004f2e setsect  0x00000002 , 0x00002454 
+ 00025667  0x00004f2f setsect  0x00000003 , 0x00011531 
+ 00025668  0x00004f30 istore  0x00000009 , 0x00000005 
+ 00025669  0x00004f31 setsect  0x00000000 , 0x00034441 
+ 00025670  0x00004f32 setsect  0x00000001 , 0x000194d4 
+ 00025671  0x00004f33 setsect  0x00000002 , 0x00012455 
+ 00025672  0x00004f34 setsect  0x00000003 , 0x00010d4d 
+ 00025673  0x00004f35 istore  0x00000009 , 0x00000005 
+ 00025674  0x00004f36 setsect  0x00000000 , 0x0003414c 
+ 00025675  0x00004f37 setsect  0x00000001 , 0x0000d4d4 
+ 00025676  0x00004f38 setsect  0x00000002 , 0x000124c4 
+ 00025677  0x00004f39 setsect  0x00000003 , 0x00013119 
+ 00025678  0x00004f3a istore  0x00000009 , 0x00000005 
+ 00025679  0x00004f3b setsect  0x00000000 , 0x00015247 
+ 00025680  0x00004f3c setsect  0x00000001 , 0x0003d0d1 
+ 00025681  0x00004f3d setsect  0x00000002 , 0x0000e4e4 
+ 00025682  0x00004f3e setsect  0x00000003 , 0x00011531 
+ 00025683  0x00004f3f istore  0x00000009 , 0x00000005 
+ 00025684  0x00004f40 setsect  0x00000000 , 0x00034944 
+ 00025685  0x00004f41 setsect  0x00000001 , 0x000114d4 
+ 00025686  0x00004f42 setsect  0x00000002 , 0x0000e535 
+ 00025687  0x00004f43 setsect  0x00000003 , 0x00015105 
+ 00025688  0x00004f44 istore  0x00000009 , 0x00000005 
+ 00025689  0x00004f45 setsect  0x00000000 , 0x00014c2b 
+ 00025690  0x00004f46 setsect  0x00000001 , 0x000114d2 
+ 00025691  0x00004f47 setsect  0x00000002 , 0x0000f525 
+ 00025692  0x00004f48 setsect  0x00000003 , 0x00011531 
+ 00025693  0x00004f49 istore  0x00000009 , 0x00000005 
+ 00025694  0x00004f4a setsect  0x00000000 , 0x00014e53 
+ 00025695  0x00004f4b setsect  0x00000001 , 0x00019192 
+ 00025696  0x00004f4c setsect  0x00000002 , 0x000044c4 
+ 00025697  0x00004f4d setsect  0x00000003 , 0x00015915 
+ 00025698  0x00004f4e istore  0x00000009 , 0x00000005 
+ 00025699  0x00004f4f setsect  0x00000000 , 0x00035352 
+ 00025700  0x00004f50 setsect  0x00000001 , 0x0000d254 
+ 00025701  0x00004f51 setsect  0x00000002 , 0x00005444 
+ 00025702  0x00004f52 setsect  0x00000003 , 0x00010959 
+ 00025703  0x00004f53 istore  0x00000009 , 0x00000005 
+ 00025704  0x00004f54 setsect  0x00000000 , 0x0001454c 
+ 00025705  0x00004f55 setsect  0x00000001 , 0x00005392 
+ 00025706  0x00004f56 setsect  0x00000002 , 0x00003525 
+ 00025707  0x00004f57 setsect  0x00000003 , 0x00013d35 
+ 00025708  0x00004f58 istore  0x00000009 , 0x00000005 
+ 00025709  0x00004f59 setsect  0x00000000 , 0x00014544 
+ 00025710  0x00004f5a setsect  0x00000001 , 0x000113d3 
+ 00025711  0x00004f5b setsect  0x00000002 , 0x00004454 
+ 00025712  0x00004f5c setsect  0x00000003 , 0x00014d35 
+ 00025713  0x00004f5d istore  0x00000009 , 0x00000005 
+ 00025714  0x00004f5e setsect  0x00000000 , 0x00004154 
+ 00025715  0x00004f5f setsect  0x00000001 , 0x00011155 
+ 00025716  0x00004f60 setsect  0x00000002 , 0x00013494 
+ 00025717  0x00004f61 setsect  0x00000003 , 0x00013d0d 
+ 00025718  0x00004f62 istore  0x00000009 , 0x00000005 
+ 00025719  0x00004f63 setsect  0x00000000 , 0x00004f56 
+ 00025720  0x00004f64 setsect  0x00000001 , 0x00031055 
+ 00025721  0x00004f65 setsect  0x00000002 , 0x00003454 
+ 00025722  0x00004f66 setsect  0x00000003 , 0x0001393d 
+ 00025723  0x00004f67 istore  0x00000009 , 0x00000005 
+ 00025724  0x00004f68 setsect  0x00000000 , 0x0001504e 
+ 00025725  0x00004f69 setsect  0x00000001 , 0x000151d0 
+ 00025726  0x00004f6a setsect  0x00000002 , 0x000154f4 
+ 00025727  0x00004f6b setsect  0x00000003 , 0x00014951 
+ 00025728  0x00004f6c istore  0x00000009 , 0x00000005 
+ 00025729  0x00004f6d setsect  0x00000000 , 0x00024345 
+ 00025730  0x00004f6e setsect  0x00000001 , 0x00025051 
+ 00025731  0x00004f6f setsect  0x00000002 , 0x000004c4 
+ 00025732  0x00004f70 istore  0x00000006 , 0x00000005 
+ 00025733  0x00004f71 rtn 
+ 00025734  0x00004f76 setarg  0x000065d7 
+ 00025735  0x00004f77 store  0x00000002 , 0x0000428c 
+ 00025736  0x00004f78 setarg  0x0000652e 
+ 00025737  0x00004f79 store  0x00000002 , 0x0000428e 
+ 00025738  0x00004f7a setarg  0x000064e3 
+ 00025739  0x00004f7b store  0x00000002 , 0x0000428a 
+ 00025740  0x00004f7c setarg  0x000065f3 
+ 00025741  0x00004f7d store  0x00000002 , 0x00004292 
+ 00025742  0x00004f7e setarg  0x000064a9 
+ 00025743  0x00004f7f store  0x00000002 , 0x00004290 
+ 00025744  0x00004f80 setarg  0x00006561 
+ 00025745  0x00004f81 store  0x00000002 , 0x00004298 
+ 00025746  0x00004f82 jam  0x00000000 , 0x000007dc 
+ 00025747  0x00004f83 jam  0x00000000 , 0x000007dd 
+ 00025748  0x00004f84 set0  0x00000025 , 0x00000000 
+ 00025749  0x00004f85 bpatch  0x000000c0 , 0x00004018 
+ 00025750  0x00004f86 call  0x000064c4 
+ 00025751  0x00004f87 rtn  0x0000002b 
+ 00025752  0x00004f88 call  0x0000649f 
+ 00025753  0x00004f89 call  0x000064a7 
+ 00025754  0x00004f8a setarg  0x000064e0 
+ 00025755  0x00004f8b store  0x00000002 , 0x00004288 
+ 00025756  0x00004f8c fetch  0x00000002 , 0x000047f4 
+ 00025757  0x00004f8d bbit1  0x0000000c , 0x00006697 
+ 00025758  0x00004f8e branch  0x00006693 
+ 00025759  0x00004f91 call  0x00003f4d 
+ 00025760  0x00004f92 branch  0x000064a4 , 0x00000005 
+ 00025761  0x00004f93 call  0x00006963 
+ 00025762  0x00004f94 call  0x000066ba 
+ 00025763  0x00004f95 branch  0x00003f45 
+ 00025764  0x00004f97 call  0x0000691d 
+ 00025765  0x00004f98 call  0x00006967 
+ 00025766  0x00004f99 branch  0x000066c0 
+ 00025767  0x00004f9c jam  0x00000001 , 0x0000481c 
+ 00025768  0x00004f9d branch  0x000064bb 
+ 00025769  0x00004fa0 call  0x00007cd7 
+ 00025770  0x00004fa1 call  0x000064ac 
+ 00025771  0x00004fa2 branch  0x000064f6 
+ 00025772  0x00004fa5 fetcht  0x00000001 , 0x00004825 
+ 00025773  0x00004fa6 call  0x000069e5 
+ 00025774  0x00004fa7 nbranch  0x000064b3 , 0x00000001 
+ 00025775  0x00004fa9 fetch  0x00000001 , 0x0000481c 
+ 00025776  0x00004faa rtneq  0x00000000 
+ 00025777  0x00004fab jam  0x00000000 , 0x0000481c 
+ 00025778  0x00004fac rtn 
+ 00025779  0x00004fae fetch  0x00000001 , 0x0000481c 
+ 00025780  0x00004faf rtneq  0x00000001 
+ 00025781  0x00004fb0 jam  0x00000001 , 0x0000481c 
+ 00025782  0x00004fb1 fetch  0x00000001 , 0x0000481b 
+ 00025783  0x00004fb2 increase  0x00000001 , 0x0000003f 
+ 00025784  0x00004fb3 and  0x0000003f , 0x00000003 , 0x0000003f 
+ 00025785  0x00004fb4 store  0x00000001 , 0x0000481b 
+ 00025786  0x00004fb5 branch  0x000064bb 
+ 00025787  0x00004fb7 setarg  0x00000006 
+ 00025788  0x00004fb8 call  0x000066d8 
+ 00025789  0x00004fb9 and  0x0000003f , 0x000000fc , 0x00000002 
+ 00025790  0x00004fba fetch  0x00000001 , 0x0000481b 
+ 00025791  0x00004fbb iadd  0x00000002 , 0x0000003f 
+ 00025792  0x00004fbc lshift8  0x0000003f , 0x0000003f 
+ 00025793  0x00004fbd add  0x0000003f , 0x00000006 , 0x0000003f 
+ 00025794  0x00004fbe call  0x000066d7 
+ 00025795  0x00004fbf branch  0x000066ba 
+ 00025796  0x00004fc2 call  0x000065c5 
+ 00025797  0x00004fc3 call  0x000064ca 
+ 00025798  0x00004fc4 hfetch  0x00000002 , 0x00008050 
+ 00025799  0x00004fc5 set0  0x0000000b , 0x0000003f 
+ 00025800  0x00004fc6 hstore  0x00000002 , 0x00008050 
+ 00025801  0x00004fc7 rtn 
+ 00025802  0x00004fca call  0x00003e0b 
+ 00025803  0x00004fcb fetcht  0x00000001 , 0x00004827 
+ 00025804  0x00004fcc call  0x000069d1 
+ 00025805  0x00004fcd fetcht  0x00000001 , 0x00004828 
+ 00025806  0x00004fce call  0x000069d1 
+ 00025807  0x00004fcf fetcht  0x00000001 , 0x00004822 
+ 00025808  0x00004fd0 call  0x000069d1 
+ 00025809  0x00004fd1 fetcht  0x00000001 , 0x00004823 
+ 00025810  0x00004fd2 call  0x000069d1 
+ 00025811  0x00004fd3 fetcht  0x00000001 , 0x00004824 
+ 00025812  0x00004fd4 call  0x000069d1 
+ 00025813  0x00004fd5 fetcht  0x00000001 , 0x00004826 
+ 00025814  0x00004fd6 call  0x000069d1 
+ 00025815  0x00004fd7 fetcht  0x00000001 , 0x00004825 
+ 00025816  0x00004fd8 call  0x000069d1 
+ 00025817  0x00004fd9 hfetch  0x00000001 , 0x0000807b 
+ 00025818  0x00004fda or_into  0x00000018 , 0x0000003f 
+ 00025819  0x00004fdb hstore  0x00000001 , 0x0000807b 
+ 00025820  0x00004fdc hfetch  0x00000001 , 0x0000807f 
+ 00025821  0x00004fdd and_into  0x000000e7 , 0x0000003f 
+ 00025822  0x00004fde hstore  0x00000001 , 0x0000807f 
+ 00025823  0x00004fdf rtn 
+ 00025824  0x00004fe3 setarg  0x0000bc05 
+ 00025825  0x00004fe4 call  0x000066d7 
+ 00025826  0x00004fe5 jam  0x00000001 , 0x000000a2 
+ 00025827  0x00004fe8 call  0x000064f6 
+ 00025828  0x00004fe9 arg  0x00000019 , 0x00000002 
+ 00025829  0x00004fea call  0x000069da 
+ 00025830  0x00004feb hjam  0x00000000 , 0x00008081 
+ 00025831  0x00004fec fetcht  0x00000001 , 0x00004827 
+ 00025832  0x00004fed call  0x000069b4 
+ 00025833  0x00004fee fetcht  0x00000001 , 0x00004828 
+ 00025834  0x00004fef call  0x000069b4 
+ 00025835  0x00004ff0 fetcht  0x00000001 , 0x00004822 
+ 00025836  0x00004ff1 call  0x000069b4 
+ 00025837  0x00004ff2 fetcht  0x00000001 , 0x00004823 
+ 00025838  0x00004ff3 call  0x000069b4 
+ 00025839  0x00004ff4 fetcht  0x00000001 , 0x00004824 
+ 00025840  0x00004ff5 call  0x000069b4 
+ 00025841  0x00004ff6 fetcht  0x00000001 , 0x00004826 
+ 00025842  0x00004ff7 call  0x000069b9 
+ 00025843  0x00004ff8 fetch  0x00000001 , 0x000000a2 
+ 00025844  0x00004ff9 nrtn  0x00000034 
+ 00025845  0x00004ffa branch  0x000069c4 
+ 00025846  0x00004ffd set0  0x00000025 , 0x00000000 
+ 00025847  0x00004ffe bpatch  0x000000c1 , 0x00004018 
+ 00025848  0x00004fff arg  0x00000000 , 0x00000011 
+ 00025849  0x00005000 fetcht  0x00000001 , 0x00004827 
+ 00025850  0x00005001 call  0x000069e5 
+ 00025851  0x00005002 setflag  0x00000001 , 0x00000000 , 0x00000011 
+ 00025852  0x00005003 fetcht  0x00000001 , 0x00004828 
+ 00025853  0x00005004 call  0x000069e5 
+ 00025854  0x00005005 setflag  0x00000001 , 0x00000001 , 0x00000011 
+ 00025855  0x00005006 copy  0x00000011 , 0x0000003f 
+ 00025856  0x00005008 and_into  0x00000003 , 0x0000003f 
+ 00025857  0x00005009 fetcht  0x00000001 , 0x00004808 
+ 00025858  0x0000500a store  0x00000001 , 0x00004808 
+ 00025859  0x0000500b isub  0x00000002 , 0x0000003e 
+ 00025860  0x0000500c branch  0x00006514 , 0x00000005 
+ 00025861  0x0000500d fetch  0x00000001 , 0x00004807 
+ 00025862  0x0000500e store  0x00000001 , 0x00004806 
+ 00025863  0x0000500f storet  0x00000001 , 0x00004807 
+ 00025864  0x00005010 fetch  0x00000001 , 0x00004808 
+ 00025865  0x00005011 lshift4  0x0000003f , 0x0000003f 
+ 00025866  0x00005012 fetcht  0x00000001 , 0x00004807 
+ 00025867  0x00005013 lshift2  0x00000002 , 0x00000002 
+ 00025868  0x00005014 iadd  0x00000002 , 0x0000003f 
+ 00025869  0x00005015 fetcht  0x00000001 , 0x00004806 
+ 00025870  0x00005016 iadd  0x00000002 , 0x0000003f 
+ 00025871  0x00005017 beq  0x00000038 , 0x00006515 
+ 00025872  0x00005018 beq  0x00000034 , 0x00006519 
+ 00025873  0x00005019 beq  0x0000000b , 0x00006519 
+ 00025874  0x0000501a beq  0x00000007 , 0x00006515 
+ 00025875  0x0000501b rtn 
+ 00025876  0x0000501e rtn 
+ 00025877  0x00005021 fetch  0x00000001 , 0x00004809 
+ 00025878  0x00005022 increase  0x00000001 , 0x0000003f 
+ 00025879  0x00005023 store  0x00000001 , 0x00004809 
+ 00025880  0x00005024 rtn 
+ 00025881  0x00005027 fetch  0x00000001 , 0x00004809 
+ 00025882  0x00005028 increase  0xffffffff , 0x0000003f 
+ 00025883  0x00005029 store  0x00000001 , 0x00004809 
+ 00025884  0x0000502a rtn 
+ 00025885  0x0000502e rtn 
+ 00025886  0x00005030 setarg  0x0000b805 
+ 00025887  0x00005031 branch  0x000066d7 
+ 00025888  0x00005034 rtn 
+ 00025889  0x00005037 call  0x00003fa0 
+ 00025890  0x00005038 jam  0x00000002 , 0x00004820 
+ 00025891  0x00005039 call  0x00003fa4 
+ 00025892  0x0000503b branch  0x00003f92 
+ 00025893  0x0000503e fetch  0x00000002 , 0x0000481e 
+ 00025894  0x0000503f rtn  0x00000034 
+ 00025895  0x00005040 increase  0xffffffff , 0x0000003f 
+ 00025896  0x00005041 store  0x00000002 , 0x0000481e 
+ 00025897  0x00005042 nrtn  0x00000034 
+ 00025898  0x00005043 branch  0x00003f9a 
+ 00025899  0x00005046 setarg  0x00000002 
+ 00025900  0x00005047 store  0x00000001 , 0x000047f2 
+ 00025901  0x00005048 rtn 
+ 00025902  0x0000504b fetch  0x00000001 , 0x0000427f 
+ 00025903  0x0000504c rtn  0x00000034 
+ 00025904  0x0000504d call  0x0000527c 
+ 00025905  0x0000504e nrtn  0x00000034 
+ 00025906  0x0000504f call  0x00006578 
+ 00025907  0x00005050 nrtn  0x00000028 
+ 00025908  0x00005051 call  0x0000655e 
+ 00025909  0x00005052 call  0x0000655a 
+ 00025910  0x00005054 arg  0x00000008 , 0x00000011 
+ 00025911  0x00005055 call  0x00004b2c 
+ 00025912  0x00005056 fetch  0x00000002 , 0x000042b7 
+ 00025913  0x00005057 istore  0x00000002 , 0x00000005 
+ 00025914  0x00005058 setarg  0x000002a1 
+ 00025915  0x00005059 istore  0x00000002 , 0x00000005 
+ 00025916  0x0000505a fetch  0x00000001 , 0x00004805 
+ 00025917  0x0000505b istore  0x00000001 , 0x00000005 
+ 00025918  0x0000505c fetch  0x00000002 , 0x00004800 
+ 00025919  0x0000505d arg  0x00000fff , 0x00000002 
+ 00025920  0x0000505e iand  0x00000002 , 0x0000003f 
+ 00025921  0x0000505f fetcht  0x00000002 , 0x00004802 
+ 00025922  0x00005060 lshift4  0x00000002 , 0x00000002 
+ 00025923  0x00005061 lshift8  0x00000002 , 0x00000002 
+ 00025924  0x00005062 ior  0x00000002 , 0x0000003f 
+ 00025925  0x00005063 istore  0x00000003 , 0x00000005 
+ 00025926  0x00005064 fetch  0x00000001 , 0x00004804 
+ 00025927  0x00005065 istore  0x00000001 , 0x00000005 
+ 00025928  0x00005066 setarg  0x00000000 
+ 00025929  0x00005067 istore  0x00000001 , 0x00000005 
+ 00025930  0x00005068 jam  0x00000008 , 0x000008a8 
+ 00025931  0x00005069 rtn 
+ 00025932  0x0000506d set0  0x00000025 , 0x00000000 
+ 00025933  0x0000506e bpatch  0x000000c2 , 0x00004018 
+ 00025934  0x0000506f fetch  0x00000001 , 0x0000481a 
+ 00025935  0x00005070 rtn  0x00000034 
+ 00025936  0x00005071 increase  0xffffffff , 0x0000003f 
+ 00025937  0x00005072 store  0x00000001 , 0x0000481a 
+ 00025938  0x00005073 nrtn  0x00000034 
+ 00025939  0x00005074 call  0x0000527e 
+ 00025940  0x00005075 nrtn  0x00000034 
+ 00025941  0x00005076 setarg  0x00000000 
+ 00025942  0x00005077 store  0x00000005 , 0x00004800 
+ 00025943  0x00005078 call  0x00006536 
+ 00025944  0x00005079 jam  0x00000050 , 0x0000481a 
+ 00025945  0x0000507a rtn 
+ 00025946  0x0000507c fetch  0x00000002 , 0x00004810 
+ 00025947  0x0000507d store  0x00000002 , 0x00004818 
+ 00025948  0x0000507e jam  0x00000050 , 0x0000481a 
+ 00025949  0x0000507f rtn 
+ 00025950  0x00005082 fetch  0x00000002 , 0x0000480e 
+ 00025951  0x00005083 store  0x00000002 , 0x00004816 
+ 00025952  0x00005084 rtn 
+ 00025953  0x00005088 fetcht  0x00000002 , 0x000044c2 
+ 00025954  0x00005089 call  0x00005a88 
+ 00025955  0x0000508a ifetch  0x00000001 , 0x00000006 
+ 00025956  0x0000508b store  0x00000001 , 0x0000041b 
+ 00025957  0x0000508c rtn 
+ 00025958  0x00005090 set0  0x00000025 , 0x00000000 
+ 00025959  0x00005091 bpatch  0x000000c3 , 0x00004018 
+ 00025960  0x00005092 fetcht  0x00000002 , 0x000044c2 
+ 00025961  0x00005093 call  0x00005a88 
+ 00025962  0x00005094 add  0x00000006 , 0x00000001 , 0x00000005 
+ 00025963  0x00005096 fetch  0x00000001 , 0x00004805 
+ 00025964  0x00005097 istore  0x00000001 , 0x00000005 
+ 00025965  0x00005098 fetch  0x00000002 , 0x00004800 
+ 00025966  0x00005099 arg  0x00000fff , 0x00000002 
+ 00025967  0x0000509a iand  0x00000002 , 0x0000003f 
+ 00025968  0x0000509b fetcht  0x00000002 , 0x00004802 
+ 00025969  0x0000509c lshift4  0x00000002 , 0x00000002 
+ 00025970  0x0000509d lshift8  0x00000002 , 0x00000002 
+ 00025971  0x0000509e ior  0x00000002 , 0x0000003f 
+ 00025972  0x0000509f istore  0x00000003 , 0x00000005 
+ 00025973  0x000050a0 fetch  0x00000001 , 0x00004804 
+ 00025974  0x000050a1 istore  0x00000001 , 0x00000005 
+ 00025975  0x000050a2 rtn 
+ 00025976  0x000050a5 set0  0x00000025 , 0x00000000 
+ 00025977  0x000050a6 bpatch  0x000000c4 , 0x00004018 
+ 00025978  0x000050a7 disable  0x00000028 
+ 00025979  0x000050a8 setarg  0x00000000 
+ 00025980  0x000050a9 store  0x00000005 , 0x00004800 
+ 00025981  0x000050aa call  0x00006581 
+ 00025982  0x000050ab call  0x000065b4 
+ 00025983  0x000050ac call  0x0000659c 
+ 00025984  0x000050ad branch  0x000065a2 
+ 00025985  0x000050b0 fetch  0x00000001 , 0x00004821 
+ 00025986  0x000050b1 rtnne  0x00000002 
+ 00025987  0x000050b2 fetch  0x00000001 , 0x0000480a 
+ 00025988  0x000050b3 call  0x000065ba , 0x00000034 
+ 00025989  0x000050b4 jam  0x00000001 , 0x0000480a 
+ 00025990  0x000050b5 disable  0x00000028 
+ 00025991  0x000050b6 fetcht  0x00000001 , 0x00004826 
+ 00025992  0x000050b7 call  0x000069e5 
+ 00025993  0x000050b8 nrtn  0x00000001 
+ 00025994  0x000050b9 setarg  0x00000000 
+ 00025995  0x000050ba call  0x000066d8 
+ 00025996  0x000050bb bne  0x00000030 , 0x000066c6 
+ 00025997  0x000050bc setarg  0x00000002 
+ 00025998  0x000050bd call  0x000066d8 
+ 00025999  0x000050be rtnbit0  0x00000007 
+ 00026000  0x000050bf setarg  0x00000003 
+ 00026001  0x000050c0 call  0x000066d8 
+ 00026002  0x000050c1 call  0x000065d3 
+ 00026003  0x000050c2 store  0x00000002 , 0x00004800 
+ 00026004  0x000050c3 setarg  0x00000004 
+ 00026005  0x000050c4 call  0x000066d8 
+ 00026006  0x000050c5 call  0x000065d3 
+ 00026007  0x000050c6 sub  0x0000003f , 0x00000000 , 0x0000003f 
+ 00026008  0x000050c7 store  0x00000002 , 0x00004802 
+ 00026009  0x000050c8 fetch  0x00000004 , 0x00004800 
+ 00026010  0x000050c9 enable  0x00000028 
+ 00026011  0x000050ca rtn 
+ 00026012  0x000050cc fetch  0x00000001 , 0x00004809 
+ 00026013  0x000050cd rtn  0x00000034 
+ 00026014  0x000050ce store  0x00000001 , 0x00004804 
+ 00026015  0x000050cf jam  0x00000000 , 0x00004809 
+ 00026016  0x000050d0 enable  0x00000028 
+ 00026017  0x000050d1 rtn 
+ 00026018  0x000050d3 arg  0x00000000 , 0x00000011 
+ 00026019  0x000050d4 fetcht  0x00000001 , 0x00004822 
+ 00026020  0x000050d5 call  0x000069e5 
+ 00026021  0x000050d6 setflag  0x00000001 , 0x00000000 , 0x00000011 
+ 00026022  0x000050d7 fetcht  0x00000001 , 0x00004823 
+ 00026023  0x000050d8 call  0x000069e5 
+ 00026024  0x000050d9 setflag  0x00000001 , 0x00000001 , 0x00000011 
+ 00026025  0x000050da fetcht  0x00000001 , 0x00004824 
+ 00026026  0x000050db call  0x000069e5 
+ 00026027  0x000050dc setflag  0x00000001 , 0x00000002 , 0x00000011 
+ 00026028  0x000050dd deposit  0x00000011 
+ 00026029  0x000050de fetcht  0x00000001 , 0x00004805 
+ 00026030  0x000050df store  0x00000001 , 0x00004805 
+ 00026031  0x000050e0 ixor  0x00000002 , 0x0000003f 
+ 00026032  0x000050e1 sub  0x0000003f , 0x00000000 , 0x0000003e 
+ 00026033  0x000050e2 rtn  0x00000005 
+ 00026034  0x000050e3 enable  0x00000028 
+ 00026035  0x000050e4 rtn 
+ 00026036  0x000050ea arg  0x0000001a , 0x00000002 
+ 00026037  0x000050eb call  0x000069e5 
+ 00026038  0x000050ec rtn  0x00000001 
+ 00026039  0x000050ed setarg  0x00000000 
+ 00026040  0x000050ee call  0x000066d8 
+ 00026041  0x000050ef branch  0x000065b4 
+ 00026042  0x000050f2 arg  0x00000000 , 0x00000039 
+ 00026043  0x000050f4 setarg  0x00000002 
+ 00026044  0x000050f5 call  0x000066d8 
+ 00026045  0x000050f6 nop  0x00000064 
+ 00026046  0x000050f7 increase  0x00000001 , 0x00000039 
+ 00026047  0x000050f8 fetcht  0x00000001 , 0x00004826 
+ 00026048  0x000050f9 call  0x000069e5 
+ 00026049  0x000050fa branch  0x000065bb , 0x00000001 
+ 00026050  0x000050fb deposit  0x00000039 
+ 00026051  0x000050fc store  0x00000002 , 0x0000046b 
+ 00026052  0x000050fd rtn 
+ 00026053  0x000050ff call  0x0000678e 
+ 00026054  0x00005100 rtn  0x0000002b 
+ 00026055  0x00005103 setarg  0x00000000 
+ 00026056  0x00005104 call  0x000066d8 
+ 00026057  0x00005105 store  0x00000001 , 0x00000256 
+ 00026058  0x00005106 beq  0x00000030 , 0x000065ce 
+ 00026059  0x00005107 call  0x000066c6 
+ 00026060  0x00005108 nop  0x00002710 
+ 00026061  0x00005109 branch  0x000065c7 
+ 00026062  0x0000510b setarg  0x00008006 
+ 00026063  0x0000510c call  0x000066d7 
+ 00026064  0x0000510d nop  0x000003e8 
+ 00026065  0x0000510e jam  0x00000002 , 0x00004821 
+ 00026066  0x0000510f rtn 
+ 00026067  0x00005114 rtnbit0  0x00000007 
+ 00026068  0x00005115 arg  0x0000ff00 , 0x00000002 
+ 00026069  0x00005116 ior  0x00000002 , 0x0000003f 
+ 00026070  0x00005117 rtn 
+ 00026071  0x0000511c call  0x0000561e 
+ 00026072  0x0000511d nrtn  0x00000034 
+ 00026073  0x0000511e fetcht  0x00000002 , 0x000044c2 
+ 00026074  0x0000511f call  0x00005866 
+ 00026075  0x00005120 rtnbit0  0x00000000 
+ 00026076  0x00005121 fetch  0x00000001 , 0x000046f8 
+ 00026077  0x00005122 rtnbit0  0x00000000 
+ 00026078  0x00005123 call  0x00006578 
+ 00026079  0x00005125 nrtn  0x00000028 
+ 00026080  0x00005126 call  0x0000655e 
+ 00026081  0x00005128 jam  0x0000001b , 0x00000b7d 
+ 00026082  0x00005129 call  0x00005620 
+ 00026083  0x0000512a branch  0x00006566 
+ 00026084  0x0000512d rtn  0x00000028 
+ 00026085  0x0000512e fetch  0x00000001 , 0x0000481d 
+ 00026086  0x0000512f increase  0x00000001 , 0x0000003f 
+ 00026087  0x00005130 store  0x00000001 , 0x0000481d 
+ 00026088  0x00005131 arg  0x00000001 , 0x00000002 
+ 00026089  0x00005132 bbit0  0x00000007 , 0x000065eb 
+ 00026090  0x00005133 arg  0x0000ffff , 0x00000002 
+ 00026091  0x00005135 storet  0x00000005 , 0x00004800 
+ 00026092  0x00005136 enable  0x00000028 
+ 00026093  0x00005137 rtn 
+ 00026094  0x0000513a disable  0x00000028 
+ 00026095  0x0000513b fetch  0x00000001 , 0x00004820 
+ 00026096  0x0000513c rtneq  0x00000002 
+ 00026097  0x0000513d enable  0x00000028 
+ 00026098  0x0000513e rtn 
+ 00026099  0x00005141 copy  0x00000013 , 0x0000003f 
+ 00026100  0x00005142 beq  0x00000014 , 0x00006606 
+ 00026101  0x00005143 beq  0x00000001 , 0x000066a6 
+ 00026102  0x00005144 beq  0x00000015 , 0x00006617 
+ 00026103  0x00005145 beq  0x00000002 , 0x00006617 
+ 00026104  0x00005146 beq  0x00000005 , 0x00006616 
+ 00026105  0x00005147 beq  0x00000010 , 0x0000666a 
+ 00026106  0x00005148 beq  0x00000012 , 0x0000668a 
+ 00026107  0x00005149 beq  0x00000006 , 0x00006614 
+ 00026108  0x0000514a beq  0x00000028 , 0x00006521 
+ 00026109  0x0000514b beq  0x00000029 , 0x00006524 
+ 00026110  0x0000514c beq  0x00000004 , 0x00006611 
+ 00026111  0x0000514d beq  0x00000013 , 0x00006611 
+ 00026112  0x0000514e beq  0x0000000a , 0x0000660f 
+ 00026113  0x0000514f beq  0x0000002e , 0x00003f57 
+ 00026114  0x00005150 and  0x0000003f , 0x0000000f , 0x00000002 
+ 00026115  0x00005151 and_into  0x000000f0 , 0x0000003f 
+ 00026116  0x00005152 beq  0x00000050 , 0x00006634 
+ 00026117  0x00005153 rtn 
+ 00026118  0x00005156 fetch  0x00000002 , 0x000042a2 
+ 00026119  0x00005157 set0  0x00000000 , 0x0000003f 
+ 00026120  0x00005158 store  0x00000002 , 0x000042a2 
+ 00026121  0x00005159 setarg  0x00000000 
+ 00026122  0x0000515a store  0x00000002 , 0x00004814 
+ 00026123  0x0000515b fetch  0x00000001 , 0x00004829 
+ 00026124  0x0000515c increase  0x00000001 , 0x0000003f 
+ 00026125  0x0000515d store  0x00000001 , 0x00004829 
+ 00026126  0x0000515e branch  0x000066a6 
+ 00026127  0x00005161 call  0x000062e9 
+ 00026128  0x00005162 branch  0x00003f6a 
+ 00026129  0x00005165 fetch  0x00000002 , 0x000047f4 
+ 00026130  0x00005166 bbit1  0x0000000c , 0x00006697 
+ 00026131  0x00005167 branch  0x00003f10 
+ 00026132  0x0000516b call  0x0000652b 
+ 00026133  0x0000516c rtn 
+ 00026134  0x0000516e rtn 
+ 00026135  0x00005171 set0  0x00000025 , 0x00000000 
+ 00026136  0x00005172 bpatch  0x000000c5 , 0x00004018 
+ 00026137  0x00005173 call  0x00006621 
+ 00026138  0x00005174 fetch  0x00000002 , 0x000042a0 
+ 00026139  0x00005175 bbit1  0x00000007 , 0x00006630 
+ 00026140  0x00005176 bbit1  0x00000000 , 0x00003f12 
+ 00026141  0x00005177 bbit1  0x00000001 , 0x0000662a 
+ 00026142  0x00005178 bbit1  0x00000002 , 0x0000662d 
+ 00026143  0x00005179 bbit1  0x00000003 , 0x0000662d 
+ 00026144  0x0000517a branch  0x00006697 
+ 00026145  0x0000517c setarg  0x00000000 
+ 00026146  0x0000517d store  0x00000004 , 0x00004806 
+ 00026147  0x0000517e jam  0x00000000 , 0x0000481a 
+ 00026148  0x0000517f jam  0x00000000 , 0x0000480a 
+ 00026149  0x00005180 jam  0x00000000 , 0x0000427f 
+ 00026150  0x00005181 jam  0x00000000 , 0x0000448b 
+ 00026151  0x00005182 jam  0x00000000 , 0x00004820 
+ 00026152  0x00005183 jam  0x00000000 , 0x0000480b 
+ 00026153  0x00005184 rtn 
+ 00026154  0x00005187 bbit1  0x00000005 , 0x0000662d 
+ 00026155  0x00005188 bbit1  0x00000003 , 0x0000662d 
+ 00026156  0x00005189 branch  0x00006697 
+ 00026157  0x0000518b fetch  0x00000002 , 0x000047f4 
+ 00026158  0x0000518c bbit1  0x0000000c , 0x00006697 
+ 00026159  0x0000518d branch  0x00003f10 
+ 00026160  0x00005190 call  0x00005b30 
+ 00026161  0x00005191 fetch  0x00000002 , 0x000042a0 
+ 00026162  0x00005192 bbit1  0x00000000 , 0x00003f12 
+ 00026163  0x00005193 branch  0x00003f10 
+ 00026164  0x00005196 set0  0x00000025 , 0x00000000 
+ 00026165  0x00005197 bpatch  0x000000c6 , 0x00004018 
+ 00026166  0x00005198 storet  0x00000001 , 0x00000259 
+ 00026167  0x0000519a fetch  0x00000001 , 0x00000259 
+ 00026168  0x0000519b rtn  0x00000034 
+ 00026169  0x0000519c increase  0xffffffff , 0x0000003f 
+ 00026170  0x0000519d store  0x00000001 , 0x00000259 
+ 00026171  0x000051a0 call  0x00006649 
+ 00026172  0x000051a1 call  0x0000664f 
+ 00026173  0x000051a2 call  0x00006656 
+ 00026174  0x000051a3 call  0x00006664 
+ 00026175  0x000051a5 fetch  0x00000001 , 0x00004820 
+ 00026176  0x000051a6 compare  0x00000002 , 0x0000003f , 0x000000ff 
+ 00026177  0x000051a7 call  0x00006648 , 0x00000001 
+ 00026178  0x000051a8 fetch  0x00000001 , 0x00004820 
+ 00026179  0x000051a9 compare  0x00000001 , 0x0000003f , 0x000000ff 
+ 00026180  0x000051aa call  0x00006646 , 0x00000001 
+ 00026181  0x000051ab branch  0x00006637 
+ 00026182  0x000051af call  0x0000665d 
+ 00026183  0x000051b0 branch  0x0000654c 
+ 00026184  0x000051b4 rtn 
+ 00026185  0x000051b7 fetch  0x00000001 , 0x000047f2 
+ 00026186  0x000051b8 rtn  0x00000034 
+ 00026187  0x000051b9 increase  0xffffffff , 0x0000003f 
+ 00026188  0x000051ba store  0x00000001 , 0x000047f2 
+ 00026189  0x000051bb nrtn  0x00000034 
+ 00026190  0x000051bc branch  0x0000668a 
+ 00026191  0x000051bf fetch  0x00000002 , 0x00004812 
+ 00026192  0x000051c0 rtn  0x00000034 
+ 00026193  0x000051c1 increase  0xffffffff , 0x0000003f 
+ 00026194  0x000051c2 store  0x00000002 , 0x00004812 
+ 00026195  0x000051c3 nrtn  0x00000034 
+ 00026196  0x000051c4 call  0x000066a6 
+ 00026197  0x000051c5 branch  0x00003f9a 
+ 00026198  0x000051c8 fetch  0x00000002 , 0x00004814 
+ 00026199  0x000051c9 rtn  0x00000034 
+ 00026200  0x000051ca increase  0xffffffff , 0x0000003f 
+ 00026201  0x000051cb store  0x00000002 , 0x00004814 
+ 00026202  0x000051cc nrtn  0x00000034 
+ 00026203  0x000051cd call  0x00003f84 
+ 00026204  0x000051ce branch  0x00003f9a 
+ 00026205  0x000051d1 fetch  0x00000002 , 0x00004818 
+ 00026206  0x000051d2 rtn  0x00000034 
+ 00026207  0x000051d3 increase  0xffffffff , 0x0000003f 
+ 00026208  0x000051d4 store  0x00000002 , 0x00004818 
+ 00026209  0x000051d5 nrtn  0x00000034 
+ 00026210  0x000051d6 jam  0x00000000 , 0x0000481a 
+ 00026211  0x000051d7 rtn 
+ 00026212  0x000051da fetch  0x00000002 , 0x00004816 
+ 00026213  0x000051db rtn  0x00000034 
+ 00026214  0x000051dc increase  0xffffffff , 0x0000003f 
+ 00026215  0x000051dd store  0x00000002 , 0x00004816 
+ 00026216  0x000051de nrtn  0x00000034 
+ 00026217  0x000051df branch  0x000066b1 
+ 00026218  0x000051e2 set0  0x00000025 , 0x00000000 
+ 00026219  0x000051e3 bpatch  0x000000c7 , 0x00004018 
+ 00026220  0x000051e4 jam  0x00000000 , 0x0000481a 
+ 00026221  0x000051e5 jam  0x00000001 , 0x0000480b 
+ 00026222  0x000051e6 setarg  0x00000000 
+ 00026223  0x000051e7 store  0x00000002 , 0x00004814 
+ 00026224  0x000051e8 call  0x000066b1 
+ 00026225  0x000051e9 fetch  0x00000001 , 0x00004132 
+ 00026226  0x000051ea isolate1  0x00000001 , 0x0000003f 
+ 00026227  0x000051eb call  0x00006688 , 0x00000001 
+ 00026228  0x000051ec fetch  0x00000001 , 0x00004132 
+ 00026229  0x000051ed isolate1  0x00000000 , 0x0000003f 
+ 00026230  0x000051ee call  0x00006684 , 0x00000001 
+ 00026231  0x000051ef call  0x00003fa6 
+ 00026232  0x000051f0 branch  0x00006697 
+ 00026233  0x000051f5 fetch  0x00000006 , 0x00004274 
+ 00026234  0x000051f6 branch  0x00003f79 , 0x00000034 
+ 00026235  0x000051f7 branch  0x00003f6e 
+ 00026236  0x000051fa fetch  0x00000006 , 0x00004274 
+ 00026237  0x000051fb branch  0x00006682 , 0x00000034 
+ 00026238  0x000051fc fetch  0x00000002 , 0x0000480c 
+ 00026239  0x000051fd store  0x00000002 , 0x00004814 
+ 00026240  0x000051fe call  0x00003fa4 
+ 00026241  0x000051ff branch  0x00003f82 
+ 00026242  0x00005201 call  0x00003f94 
+ 00026243  0x00005202 branch  0x00003f88 
+ 00026244  0x00005205 fetch  0x00000002 , 0x000047f4 
+ 00026245  0x00005206 isolate1  0x00000007 , 0x0000003f 
+ 00026246  0x00005207 call  0x00003f75 , 0x00000001 
+ 00026247  0x00005208 rtn 
+ 00026248  0x0000520a call  0x00005b30 
+ 00026249  0x0000520b rtn 
+ 00026250  0x0000520e jam  0x00000001 , 0x0000427f 
+ 00026251  0x0000520f call  0x00003fa4 
+ 00026252  0x00005210 call  0x00003fa2 
+ 00026253  0x00005211 jam  0x00000001 , 0x00004820 
+ 00026254  0x00005212 setarg  0x00000000 
+ 00026255  0x00005213 store  0x00000002 , 0x000047f0 
+ 00026256  0x00005214 store  0x00000001 , 0x000047f2 
+ 00026257  0x00005215 call  0x00003f9e 
+ 00026258  0x00005216 branch  0x0000655a 
+ 00026259  0x00005219 fetch  0x00000001 , 0x000042a9 
+ 00026260  0x0000521a beq  0x00000033 , 0x00006679 
+ 00026261  0x0000521b beq  0x00000034 , 0x0000667c 
+ 00026262  0x0000521c branch  0x00006697 
+ 00026263  0x0000521f set0  0x00000025 , 0x00000000 
+ 00026264  0x00005220 bpatch  0x000000c8 , 0x00004019 
+ 00026265  0x00005221 fetch  0x00000001 , 0x000044f9 
+ 00026266  0x00005222 increase  0x00000001 , 0x0000003f 
+ 00026267  0x00005223 store  0x00000001 , 0x000044f9 
+ 00026268  0x00005224 call  0x00003fa6 
+ 00026269  0x00005225 fetch  0x00000002 , 0x000047fe 
+ 00026270  0x00005226 store  0x00000002 , 0x00004812 
+ 00026271  0x00005227 fetch  0x00000001 , 0x00004132 
+ 00026272  0x00005228 isolate1  0x00000001 , 0x0000003f 
+ 00026273  0x00005229 call  0x00003f88 , 0x00000001 
+ 00026274  0x0000522a fetch  0x00000001 , 0x00004132 
+ 00026275  0x0000522b isolate1  0x00000000 , 0x0000003f 
+ 00026276  0x0000522c call  0x00003f7c , 0x00000001 
+ 00026277  0x0000522d branch  0x00003f94 
+ 00026278  0x00005230 set0  0x00000025 , 0x00000000 
+ 00026279  0x00005231 bpatch  0x000000c9 , 0x00004019 
+ 00026280  0x00005232 setarg  0x00000000 
+ 00026281  0x00005233 store  0x00000002 , 0x00004812 
+ 00026282  0x00005234 fetch  0x00000001 , 0x00004132 
+ 00026283  0x00005235 isolate1  0x00000001 , 0x0000003f 
+ 00026284  0x00005236 call  0x00003f86 , 0x00000001 
+ 00026285  0x00005237 fetch  0x00000001 , 0x00004132 
+ 00026286  0x00005238 isolate1  0x00000000 , 0x0000003f 
+ 00026287  0x00005239 call  0x00003f7e , 0x00000001 
+ 00026288  0x0000523a branch  0x00003f98 
+ 00026289  0x0000523d set0  0x00000025 , 0x00000000 
+ 00026290  0x0000523e bpatch  0x000000ca , 0x00004019 
+ 00026291  0x0000523f setarg  0x00000000 
+ 00026292  0x00005240 store  0x00000002 , 0x00004816 
+ 00026293  0x00005241 fetch  0x00000002 , 0x000047f4 
+ 00026294  0x00005242 bbit1  0x00000009 , 0x00003f90 
+ 00026295  0x00005243 fetch  0x00000002 , 0x000047f4 
+ 00026296  0x00005244 bbit1  0x00000000 , 0x00003f77 
+ 00026297  0x00005245 rtn 
+ 00026298  0x00005248 set0  0x00000025 , 0x00000000 
+ 00026299  0x00005249 bpatch  0x000000cb , 0x00004019 
+ 00026300  0x0000524a arg  0x00000001 , 0x00000002 
+ 00026301  0x0000524b arg  0x0000481b , 0x00000011 
+ 00026302  0x0000524c arg  0x000000c6 , 0x00000012 
+ 00026303  0x0000524d branch  0x0000683e 
+ 00026304  0x00005250 set0  0x00000025 , 0x00000000 
+ 00026305  0x00005251 bpatch  0x000000cc , 0x00004019 
+ 00026306  0x00005252 arg  0x00000001 , 0x00000002 
+ 00026307  0x00005253 arg  0x0000481b , 0x00000011 
+ 00026308  0x00005254 arg  0x000000c6 , 0x00000012 
+ 00026309  0x00005255 branch  0x0000681d 
+ 00026310  0x0000525e set0  0x00000025 , 0x00000000 
+ 00026311  0x0000525f bpatch  0x000000fe , 0x0000401f 
+ 00026312  0x00005260 hfetch  0x00000001 , 0x00008073 
+ 00026313  0x00005261 arg  0x00000006 , 0x00000002 
+ 00026314  0x00005262 ior  0x00000002 , 0x0000003f 
+ 00026315  0x00005263 hstore  0x00000001 , 0x00008073 
+ 00026316  0x00005264 hfetch  0x00000001 , 0x00008077 
+ 00026317  0x00005265 ior  0x00000002 , 0x0000003f 
+ 00026318  0x00005266 hstore  0x00000001 , 0x00008077 
+ 00026319  0x00005267 hjam  0x00000000 , 0x00008081 
+ 00026320  0x00005268 hfetch  0x00000001 , 0x00008077 
+ 00026321  0x00005269 set0  0x00000001 , 0x0000003f 
+ 00026322  0x0000526a set0  0x00000002 , 0x0000003f 
+ 00026323  0x0000526b hstore  0x00000001 , 0x00008077 
+ 00026324  0x0000526c nop  0x0000001e 
+ 00026325  0x0000526d hjam  0x00000001 , 0x00008081 
+ 00026326  0x0000526e rtn 
+ 00026327  0x00005270 branch  0x000067a1 
+ 00026328  0x00005273 branch  0x000067a9 
+ 00026329  0x0000527b nbranch  0x000066dd , 0x00000028 
+ 00026330  0x0000527c hfetch  0x00000001 , 0x00008085 
+ 00026331  0x0000527d or_into  0x00000020 , 0x0000003f 
+ 00026332  0x0000527e hstore  0x00000001 , 0x00008085 
+ 00026333  0x00005280 copy  0x00000002 , 0x0000003e 
+ 00026334  0x00005281 branch  0x000066e0 , 0x00000005 
+ 00026335  0x00005282 copy  0x00000013 , 0x0000003d 
+ 00026336  0x00005284 isolate0  0x00000000 , 0x0000003e 
+ 00026337  0x00005285 branch  0x00006763 
+ 00026338  0x00005289 force  0x00000004 , 0x00000002 
+ 00026339  0x0000528b arg  0x0000022c , 0x00000011 
+ 00026340  0x0000528c hfetch  0x00000001 , 0x00008085 
+ 00026341  0x0000528d and_into  0x000000df , 0x0000003f 
+ 00026342  0x0000528e hstore  0x00000001 , 0x00008085 
+ 00026343  0x0000528f call  0x000066dd 
+ 00026344  0x00005290 arg  0x000055aa , 0x00000011 
+ 00026345  0x00005291 fetch  0x00000002 , 0x0000022c 
+ 00026346  0x00005292 ifetcht  0x00000002 , 0x00000006 
+ 00026347  0x00005293 isub  0x00000011 , 0x0000003e 
+ 00026348  0x00005294 rtn 
+ 00026349  0x00005297 arg  0x00000002 , 0x00000002 
+ 00026350  0x00005298 arg  0x00000232 , 0x00000011 
+ 00026351  0x00005299 call  0x000066dd 
+ 00026352  0x0000529a fetch  0x00000002 , 0x00000232 
+ 00026353  0x0000529b store  0x00000002 , 0x00000225 
+ 00026354  0x0000529c call  0x000066f4 , 0x00000028 
+ 00026355  0x0000529d rtn 
+ 00026356  0x000052a0 arg  0x00000010 , 0x00000002 
+ 00026357  0x000052a1 arg  0x00000234 , 0x00000011 
+ 00026358  0x000052a2 hfetch  0x00000001 , 0x00008085 
+ 00026359  0x000052a3 and_into  0x000000df , 0x0000003f 
+ 00026360  0x000052a4 hstore  0x00000001 , 0x00008085 
+ 00026361  0x000052a5 call  0x000066dd 
+ 00026362  0x000052a6 arg  0x00000234 , 0x00000006 
+ 00026363  0x000052a7 arg  0x00000010 , 0x00000039 
+ 00026364  0x000052a8 call  0x00007584 
+ 00026365  0x000052a9 call  0x0000753d 
+ 00026366  0x000052aa call  0x0000759d 
+ 00026367  0x000052ab branch  0x00007534 
+ 00026368  0x000052ae disable  0x0000002d 
+ 00026369  0x000052af call  0x000066e2 
+ 00026370  0x000052b0 nrtn  0x00000005 
+ 00026371  0x000052b1 enable  0x0000002d 
+ 00026372  0x000052b2 hjam  0x00000080 , 0x00008023 
+ 00026373  0x000052b3 hjam  0x00000000 , 0x00008022 
+ 00026374  0x000052b4 hjam  0x00000000 , 0x00008024 
+ 00026375  0x000052b5 arg  0x00008025 , 0x00000011 
+ 00026376  0x000052b6 call  0x000066d9 
+ 00026377  0x000052b7 hjam  0x00000000 , 0x00008023 
+ 00026378  0x000052b8 call  0x000066e2 
+ 00026379  0x000052b9 nrtn  0x00000005 
+ 00026380  0x000052ba force  0x00000000 , 0x0000003f 
+ 00026381  0x000052bb hstore  0x00000002 , 0x00008288 
+ 00026382  0x000052bc arg  0x0000828a , 0x00000011 
+ 00026383  0x000052bd call  0x000066d9 
+ 00026384  0x000052bf arg  0x00000006 , 0x00000002 
+ 00026385  0x000052c0 call  0x000066e3 
+ 00026386  0x000052c1 nrtn  0x00000005 
+ 00026387  0x000052c2 ifetch  0x00000002 , 0x00000006 
+ 00026388  0x000052c3 iforce  0x00000011 
+ 00026389  0x000052c4 call  0x000066dd 
+ 00026390  0x000052c5 branch  0x00006710 
+ 00026391  0x000052cc call  0x00007f36 
+ 00026392  0x000052cd setarg  0x00001000 
+ 00026393  0x000052ce store  0x00000002 , 0x00000225 
+ 00026394  0x000052cf arg  0x00006823 , 0x00000013 
+ 00026395  0x000052d0 arg  0x00000002 , 0x00000039 
+ 00026396  0x000052d2 call  0x000066e2 
+ 00026397  0x000052d3 nrtn  0x00000005 
+ 00026398  0x000052d4 fetch  0x00000002 , 0x00000225 
+ 00026399  0x000052d5 byteswap  0x0000003f , 0x0000003f 
+ 00026400  0x000052d6 iadd  0x00000002 , 0x0000003f 
+ 00026401  0x000052d7 byteswap  0x0000003f , 0x0000003f 
+ 00026402  0x000052d8 store  0x00000002 , 0x00000225 
+ 00026403  0x000052d9 loop  0x0000671c 
+ 00026404  0x000052da branch  0x00006710 
+ 00026405  0x000052dd hjam  0x00000025 , 0x00008050 
+ 00026406  0x000052de hjam  0x00000005 , 0x00008280 
+ 00026407  0x000052df call  0x00007f36 
+ 00026408  0x000052e1 disable  0x00000028 
+ 00026409  0x000052e2 call  0x0000688a 
+ 00026410  0x000052e3 setarg  0x00000000 
+ 00026411  0x000052e4 arg  0x00000221 , 0x00000011 
+ 00026412  0x000052e5 arg  0x00000002 , 0x00000002 
+ 00026413  0x000052e6 call  0x000068d3 
+ 00026414  0x000052e7 fetch  0x00000002 , 0x00000221 
+ 00026415  0x000052e8 bbit0  0x00000007 , 0x00006738 
+ 00026416  0x000052e9 setarg  0x000007f0 
+ 00026417  0x000052ea arg  0x00000234 , 0x00000011 
+ 00026418  0x000052eb arg  0x00000010 , 0x00000002 
+ 00026419  0x000052ec call  0x000068d3 
+ 00026420  0x000052ed hjam  0x00000008 , 0x00008006 
+ 00026421  0x000052ee arg  0x00000234 , 0x00000006 
+ 00026422  0x000052ef call  0x00007590 
+ 00026423  0x000052f0 enable  0x00000028 
+ 00026424  0x000052f2 fetch  0x00000002 , 0x00000221 
+ 00026425  0x000052f3 byteswap  0x0000003f , 0x0000003f 
+ 00026426  0x000052f4 arg  0x000007ff , 0x00000002 
+ 00026427  0x000052f5 iand  0x00000002 , 0x0000003f 
+ 00026428  0x000052f6 branch  0x00006744 , 0x00000005 
+ 00026429  0x000052f7 call  0x0000688f 
+ 00026430  0x000052f8 arg  0x000068d8 , 0x00000013 
+ 00026431  0x000052f9 call  0x000066f4 , 0x00000028 
+ 00026432  0x000052fa call  0x00006700 
+ 00026433  0x000052fb fetch  0x00000001 , 0x00000220 
+ 00026434  0x000052fc compare  0x00000003 , 0x0000003f , 0x00000003 
+ 00026435  0x000052fd nbranch  0x00006738 , 0x00000001 
+ 00026436  0x000052ff call  0x0000688d 
+ 00026437  0x00005300 fetch  0x00000001 , 0x00000221 
+ 00026438  0x00005301 bbit1  0x00000005 , 0x00006751 
+ 00026439  0x00005302 setarg  0x00000000 
+ 00026440  0x00005303 store  0x00000003 , 0x00000224 
+ 00026441  0x00005304 call  0x000067b9 
+ 00026442  0x00005305 arg  0x000067db , 0x00000013 
+ 00026443  0x00005306 call  0x000066ed 
+ 00026444  0x00005307 call  0x00006700 
+ 00026445  0x00005308 nbranch  0x00006751 , 0x0000002d 
+ 00026446  0x00005309 fetch  0x00000001 , 0x00000220 
+ 00026447  0x0000530a compare  0x00000003 , 0x0000003f , 0x00000003 
+ 00026448  0x0000530b nbranch  0x00006744 , 0x00000001 
+ 00026449  0x0000530d fetch  0x00000001 , 0x00000221 
+ 00026450  0x0000530e bbit1  0x00000006 , 0x0000675d 
+ 00026451  0x0000530f setarg  0x00000000 
+ 00026452  0x00005310 store  0x00000002 , 0x00000225 
+ 00026453  0x00005311 arg  0x00006823 , 0x00000013 
+ 00026454  0x00005312 call  0x00006805 
+ 00026455  0x00005313 call  0x000066ed 
+ 00026456  0x00005314 call  0x00006700 
+ 00026457  0x00005315 nbranch  0x0000675d , 0x0000002d 
+ 00026458  0x00005316 fetch  0x00000001 , 0x00000220 
+ 00026459  0x00005317 compare  0x00000003 , 0x0000003f , 0x00000003 
+ 00026460  0x00005318 nbranch  0x00006751 , 0x00000001 
+ 00026461  0x0000531a hjam  0x00000021 , 0x00008050 
+ 00026462  0x0000531b fetch  0x00000001 , 0x00000221 
+ 00026463  0x0000531c rtnbit0  0x00000004 
+ 00026464  0x0000531d call  0x00004461 
+ 00026465  0x0000531f call  0x000044a3 
+ 00026466  0x00005320 branch  0x00006761 
+ 00026467  0x00005324 fetch  0x00000001 , 0x00000220 
+ 00026468  0x00005325 lshift  0x0000003f , 0x0000003f 
+ 00026469  0x00005326 setflag  0x00000001 , 0x00000000 , 0x0000003f 
+ 00026470  0x00005327 isolate0  0x0000000f , 0x00000011 
+ 00026471  0x00005328 rtn  0x00000001 
+ 00026472  0x00005329 store  0x00000001 , 0x00000220 
+ 00026473  0x0000532a rtn 
+ 00026474  0x0000532e hfetch  0x00000001 , 0x00008085 
+ 00026475  0x0000532f rtnbit0  0x00000005 
+ 00026476  0x00005330 branch  0x00006770 
+ 00026477  0x00005332 hfetch  0x00000001 , 0x0000812c 
+ 00026478  0x00005333 qisolate1  0x0000003f 
+ 00026479  0x00005334 rtn  0x00000001 
+ 00026480  0x00005336 hfetch  0x00000001 , 0x00008108 
+ 00026481  0x00005337 bbit0  0x00000001 , 0x0000676d 
+ 00026482  0x00005338 call  0x00007534 
+ 00026483  0x00005339 branch  0x0000676d 
+ 00026484  0x0000533e copy  0x00000039 , 0x00000002 
+ 00026485  0x0000533f storet  0x00000002 , 0x0000423c 
+ 00026486  0x00005340 hjam  0x00000080 , 0x00008023 
+ 00026487  0x00005341 hjam  0x00000000 , 0x00008022 
+ 00026488  0x00005342 hjam  0x00000000 , 0x00008024 
+ 00026489  0x00005343 store  0x00000002 , 0x0000423a 
+ 00026490  0x00005344 iforce  0x00000005 
+ 00026491  0x00005345 lshift2  0x00000039 , 0x00000039 
+ 00026492  0x00005347 hfetch  0x00000001 , 0x00008025 
+ 00026493  0x00005348 istore  0x00000001 , 0x00000005 
+ 00026494  0x00005349 loop  0x0000677c 
+ 00026495  0x0000534a hjam  0x00000000 , 0x00008023 
+ 00026496  0x0000534b rtn 
+ 00026497  0x0000534e fetch  0x00000002 , 0x0000423a 
+ 00026498  0x0000534f rtn  0x00000034 
+ 00026499  0x00005350 hjam  0x00000080 , 0x00008023 
+ 00026500  0x00005351 hjam  0x00000000 , 0x00008022 
+ 00026501  0x00005352 hjam  0x00000000 , 0x00008024 
+ 00026502  0x00005353 fetcht  0x00000002 , 0x0000423c 
+ 00026503  0x00005354 lshift2  0x00000002 , 0x00000039 
+ 00026504  0x00005355 iforce  0x00000006 
+ 00026505  0x00005357 ifetch  0x00000001 , 0x00000006 
+ 00026506  0x00005358 hstore  0x00000001 , 0x00008025 
+ 00026507  0x00005359 loop  0x00006789 
+ 00026508  0x0000535a hjam  0x00000000 , 0x00008023 
+ 00026509  0x0000535b rtn 
+ 00026510  0x00005361 set0  0x00000025 , 0x00000000 
+ 00026511  0x00005362 bpatch  0x000000ff , 0x0000401f 
+ 00026512  0x00005363 hjam  0x00000075 , 0x00008086 
+ 00026513  0x00005364 hjam  0x0000000a , 0x00008087 
+ 00026514  0x00005365 setarg  0x00000223 
+ 00026515  0x00005366 hstore  0x00000002 , 0x0000808a 
+ 00026516  0x00005367 setarg  0x00000228 
+ 00026517  0x00005368 hstore  0x00000002 , 0x0000808c 
+ 00026518  0x00005369 hfetch  0x00000001 , 0x00008081 
+ 00026519  0x0000536a set1  0x00000000 , 0x0000003f 
+ 00026520  0x0000536b set0  0x00000001 , 0x0000003f 
+ 00026521  0x0000536c hstore  0x00000001 , 0x00008081 
+ 00026522  0x0000536d rtn 
+ 00026523  0x00005370 hfetch  0x00000001 , 0x00008086 
+ 00026524  0x00005371 set1  0x00000007 , 0x0000003f 
+ 00026525  0x00005372 hstore  0x00000001 , 0x00008086 
+ 00026526  0x00005373 set0  0x00000007 , 0x0000003f 
+ 00026527  0x00005374 hstore  0x00000001 , 0x00008086 
+ 00026528  0x00005375 rtn 
+ 00026529  0x0000537a set1  0x00000007 , 0x0000003f 
+ 00026530  0x0000537b store  0x00000002 , 0x00000223 
+ 00026531  0x0000537c set1  0x00000025 , 0x00000000 
+ 00026532  0x0000537d bpatch  0x00000000 , 0x00004020 
+ 00026533  0x0000537e hjam  0x00000002 , 0x00008088 
+ 00026534  0x0000537f hjam  0x00000000 , 0x0000808e 
+ 00026535  0x00005380 hjam  0x00000002 , 0x00008006 
+ 00026536  0x00005381 branch  0x000067b3 
+ 00026537  0x00005385 force  0x00000001 , 0x00000002 
+ 00026538  0x00005389 store  0x00000001 , 0x00000223 
+ 00026539  0x0000538a set1  0x00000025 , 0x00000000 
+ 00026540  0x0000538b bpatch  0x00000001 , 0x00004020 
+ 00026541  0x0000538c hjam  0x00000001 , 0x00008088 
+ 00026542  0x0000538d hstoret  0x00000002 , 0x0000808e 
+ 00026543  0x0000538e hjam  0x00000002 , 0x00008006 
+ 00026544  0x0000538f call  0x000067b3 
+ 00026545  0x00005390 fetch  0x00000001 , 0x00000228 
+ 00026546  0x00005391 rtn 
+ 00026547  0x00005394 fetch  0x00000002 , 0x00004177 
+ 00026548  0x00005395 increase  0x00000001 , 0x0000003f 
+ 00026549  0x00005396 store  0x00000002 , 0x00004177 
+ 00026550  0x00005397 hfetch  0x00000001 , 0x0000812c 
+ 00026551  0x00005398 bbit0  0x00000003 , 0x000067b3 
+ 00026552  0x00005399 rtn 
+ 00026553  0x0000539c hjam  0x00000040 , 0x00008086 
+ 00026554  0x0000539d hjam  0x00000000 , 0x00008087 
+ 00026555  0x0000539e hfetch  0x00000001 , 0x00008081 
+ 00026556  0x0000539f set0  0x00000000 , 0x0000003f 
+ 00026557  0x000053a0 set1  0x00000001 , 0x0000003f 
+ 00026558  0x000053a1 hstore  0x00000001 , 0x00008081 
+ 00026559  0x000053a2 setarg  0x00000000 
+ 00026560  0x000053a3 store  0x00000004 , 0x00000223 
+ 00026561  0x000053a4 rtn 
+ 00026562  0x000053a7 setarg  0x00000000 
+ 00026563  0x000053a8 hstore  0x00000002 , 0x0000808e 
+ 00026564  0x000053a9 setarg  0x00000001 
+ 00026565  0x000053aa hstore  0x00000001 , 0x00008088 
+ 00026566  0x000053ab setarg  0x00000223 
+ 00026567  0x000053ac hstore  0x00000002 , 0x0000808a 
+ 00026568  0x000053ad jam  0x00000006 , 0x00000223 
+ 00026569  0x000053ae hjam  0x00000002 , 0x00008006 
+ 00026570  0x000053af branch  0x000067b3 
+ 00026571  0x000053b4 increase  0x00000004 , 0x00000002 
+ 00026572  0x000053b5 hstoret  0x00000002 , 0x00008088 
+ 00026573  0x000053b6 increase  0xfffffffc , 0x00000011 
+ 00026574  0x000053b7 arg  0x00000002 , 0x00000002 
+ 00026575  0x000053b8 istoret  0x00000001 , 0x00000011 
+ 00026576  0x000053b9 rshift16  0x0000003f , 0x00000002 
+ 00026577  0x000053ba istoret  0x00000001 , 0x00000005 
+ 00026578  0x000053bb rshift8  0x0000003f , 0x00000002 
+ 00026579  0x000053bc istoret  0x00000001 , 0x00000005 
+ 00026580  0x000053bd istore  0x00000001 , 0x00000005 
+ 00026581  0x000053be deposit  0x00000011 
+ 00026582  0x000053bf hstore  0x00000002 , 0x0000808a 
+ 00026583  0x000053c0 setarg  0x00000000 
+ 00026584  0x000053c1 hstore  0x00000002 , 0x0000808e 
+ 00026585  0x000053c2 hjam  0x00000002 , 0x00008006 
+ 00026586  0x000053c3 branch  0x000067b3 
+ 00026587  0x000053c8 hstoret  0x00000002 , 0x0000808e 
+ 00026588  0x000053c9 setarg  0x00000004 
+ 00026589  0x000053ca hstore  0x00000002 , 0x00008088 
+ 00026590  0x000053cb jam  0x00000003 , 0x00000223 
+ 00026591  0x000053cc setarg  0x00000223 
+ 00026592  0x000053cd hstore  0x00000002 , 0x0000808a 
+ 00026593  0x000053ce deposit  0x00000011 
+ 00026594  0x000053cf hstore  0x00000002 , 0x0000808c 
+ 00026595  0x000053d0 hfetch  0x00000001 , 0x00008086 
+ 00026596  0x000053d1 isolate0  0x0000000f , 0x00000011 
+ 00026597  0x000053d2 setflag  0x00000001 , 0x00000006 , 0x0000003f 
+ 00026598  0x000053d3 hstore  0x00000001 , 0x00008086 
+ 00026599  0x000053d4 hjam  0x00000002 , 0x00008006 
+ 00026600  0x000053d6 hfetch  0x00000001 , 0x0000812c 
+ 00026601  0x000053d7 bbit1  0x00000007 , 0x000067e8 
+ 00026602  0x000053d8 arg  0x00000003 , 0x00000007 
+ 00026603  0x000053d9 call  0x0000676a 
+ 00026604  0x000053da call  0x000067b3 
+ 00026605  0x000053db isolate1  0x00000002 , 0x0000003f 
+ 00026606  0x000053dc call  0x00006763 
+ 00026607  0x000053dd fetch  0x00000001 , 0x00000224 
+ 00026608  0x000053de lshift16  0x0000003f , 0x00000012 
+ 00026609  0x000053df fetch  0x00000001 , 0x00000225 
+ 00026610  0x000053e0 lshift8  0x0000003f , 0x0000003f 
+ 00026611  0x000053e1 ior  0x00000012 , 0x00000012 
+ 00026612  0x000053e2 fetch  0x00000001 , 0x00000226 
+ 00026613  0x000053e3 ior  0x00000012 , 0x0000003f 
+ 00026614  0x000053e4 iadd  0x00000002 , 0x0000003f 
+ 00026615  0x000053e5 store  0x00000001 , 0x00000226 
+ 00026616  0x000053e6 rshift8  0x0000003f , 0x0000003f 
+ 00026617  0x000053e7 store  0x00000001 , 0x00000225 
+ 00026618  0x000053e8 rshift8  0x0000003f , 0x0000003f 
+ 00026619  0x000053e9 store  0x00000001 , 0x00000224 
+ 00026620  0x000053ea rtn 
+ 00026621  0x000053ef hjam  0x0000000a , 0x00008042 
+ 00026622  0x000053f0 hjam  0x00000002 , 0x00008091 
+ 00026623  0x000053f1 hjam  0x00000003 , 0x00008092 
+ 00026624  0x000053f2 hjam  0x00000003 , 0x00008093 
+ 00026625  0x000053f3 hjam  0x00000003 , 0x00008094 
+ 00026626  0x000053f4 hjam  0x00000003 , 0x00008095 
+ 00026627  0x000053f5 hjam  0x00000002 , 0x00008096 
+ 00026628  0x000053f6 rtn 
+ 00026629  0x000053f9 hjam  0x00000005 , 0x00008091 
+ 00026630  0x000053fa hjam  0x00000007 , 0x00008092 
+ 00026631  0x000053fb hjam  0x00000007 , 0x00008093 
+ 00026632  0x000053fc hjam  0x00000007 , 0x00008094 
+ 00026633  0x000053fd hjam  0x00000007 , 0x00008095 
+ 00026634  0x000053fe hjam  0x00000005 , 0x00008096 
+ 00026635  0x000053ff rtn 
+ 00026636  0x00005404 hfetch  0x00000001 , 0x0000812c 
+ 00026637  0x00005405 bbit0  0x00000005 , 0x0000680c 
+ 00026638  0x00005406 rtn 
+ 00026639  0x0000540a store  0x00000001 , 0x00000224 
+ 00026640  0x0000540b setarg  0x00000224 
+ 00026641  0x0000540c hstore  0x00000002 , 0x0000809a 
+ 00026642  0x0000540d setarg  0x00000001 
+ 00026643  0x0000540e hstore  0x00000002 , 0x00008098 
+ 00026644  0x0000540f hstoret  0x00000002 , 0x0000809e 
+ 00026645  0x00005410 deposit  0x00000011 
+ 00026646  0x00005411 hstore  0x00000002 , 0x0000809c 
+ 00026647  0x00005412 hjam  0x00000001 , 0x00008090 
+ 00026648  0x00005413 hjam  0x00000004 , 0x00008006 
+ 00026649  0x00005414 branch  0x0000680c 
+ 00026650  0x00005417 byteswap  0x0000003f , 0x0000003f 
+ 00026651  0x00005418 store  0x00000002 , 0x00000225 
+ 00026652  0x00005419 rtn 
+ 00026653  0x00005420 set1  0x00000025 , 0x00000000 
+ 00026654  0x00005421 bpatch  0x00000002 , 0x00004020 
+ 00026655  0x00005422 fetch  0x00000002 , 0x0000429b 
+ 00026656  0x00005423 iadd  0x00000012 , 0x0000003f 
+ 00026657  0x00005427 byteswap  0x0000003f , 0x0000003f 
+ 00026658  0x00005428 store  0x00000002 , 0x00000225 
+ 00026659  0x0000542c set1  0x00000025 , 0x00000000 
+ 00026660  0x0000542d bpatch  0x00000003 , 0x00004020 
+ 00026661  0x0000542e setarg  0x00000004 
+ 00026662  0x0000542f hstore  0x00000002 , 0x00008098 
+ 00026663  0x00005430 jam  0x000000a0 , 0x00000224 
+ 00026664  0x00005431 jam  0x000000a1 , 0x00000227 
+ 00026665  0x00005432 setarg  0x00000224 
+ 00026666  0x00005433 hstore  0x00000002 , 0x0000809a 
+ 00026667  0x00005434 hstoret  0x00000002 , 0x0000809e 
+ 00026668  0x00005435 deposit  0x00000011 
+ 00026669  0x00005436 hstore  0x00000002 , 0x0000809c 
+ 00026670  0x00005437 setarg  0x00000002 
+ 00026671  0x00005438 isolate0  0x0000000f , 0x00000011 
+ 00026672  0x00005439 setflag  0x00000001 , 0x00000000 , 0x0000003f 
+ 00026673  0x0000543a hstore  0x00000001 , 0x00008090 
+ 00026674  0x0000543b hjam  0x00000004 , 0x00008006 
+ 00026675  0x0000543c arg  0x00000005 , 0x00000007 
+ 00026676  0x0000543d call  0x0000676a 
+ 00026677  0x0000543e call  0x0000680c 
+ 00026678  0x0000543f isolate1  0x00000004 , 0x0000003f 
+ 00026679  0x00005440 call  0x00006763 
+ 00026680  0x00005441 fetch  0x00000002 , 0x00000225 
+ 00026681  0x00005442 byteswap  0x0000003f , 0x0000003f 
+ 00026682  0x00005443 iadd  0x00000002 , 0x0000003f 
+ 00026683  0x00005444 byteswap  0x0000003f , 0x0000003f 
+ 00026684  0x00005445 store  0x00000002 , 0x00000225 
+ 00026685  0x00005446 rtn 
+ 00026686  0x0000544d set1  0x00000025 , 0x00000000 
+ 00026687  0x0000544e bpatch  0x00000004 , 0x00004020 
+ 00026688  0x0000544f fetch  0x00000002 , 0x0000429b 
+ 00026689  0x00005450 iadd  0x00000012 , 0x0000003f 
+ 00026690  0x00005454 store  0x00000002 , 0x00000161 
+ 00026691  0x00005455 set1  0x00000025 , 0x00000000 
+ 00026692  0x00005456 bpatch  0x00000005 , 0x00004020 
+ 00026693  0x00005457 storet  0x00000002 , 0x000002a0 
+ 00026694  0x00005458 copy  0x00000011 , 0x0000003f 
+ 00026695  0x00005459 store  0x00000002 , 0x000002b7 
+ 00026696  0x0000545b call  0x00006858 
+ 00026697  0x0000545d fetcht  0x00000002 , 0x000002b0 
+ 00026698  0x0000545e fetch  0x00000002 , 0x000002b7 
+ 00026699  0x0000545f copy  0x0000003f , 0x00000011 
+ 00026700  0x00005460 fetch  0x00000002 , 0x00000161 
+ 00026701  0x00005462 call  0x00006870 
+ 00026702  0x00005464 fetch  0x00000002 , 0x000002b0 
+ 00026703  0x00005465 fetcht  0x00000002 , 0x000002b7 
+ 00026704  0x00005466 iadd  0x00000002 , 0x00000002 
+ 00026705  0x00005467 storet  0x00000002 , 0x000002b7 
+ 00026706  0x00005468 fetcht  0x00000002 , 0x00000161 
+ 00026707  0x00005469 iadd  0x00000002 , 0x00000002 
+ 00026708  0x0000546a storet  0x00000002 , 0x00000161 
+ 00026709  0x0000546b fetch  0x00000002 , 0x000002a0 
+ 00026710  0x0000546c nbranch  0x00006848 , 0x00000034 
+ 00026711  0x0000546d rtn 
+ 00026712  0x00005476 set1  0x00000025 , 0x00000000 
+ 00026713  0x00005477 bpatch  0x00000006 , 0x00004020 
+ 00026714  0x00005478 fetch  0x00000002 , 0x000042aa 
+ 00026715  0x00005479 increase  0xffffffff , 0x0000003f 
+ 00026716  0x0000547a fetcht  0x00000002 , 0x00000161 
+ 00026717  0x0000547b ior  0x00000002 , 0x0000003f 
+ 00026718  0x0000547c increase  0x00000001 , 0x0000003f 
+ 00026719  0x0000547d store  0x00000003 , 0x000002b4 
+ 00026720  0x0000547f fetch  0x00000002 , 0x000002a0 
+ 00026721  0x00005480 iadd  0x00000002 , 0x0000003f 
+ 00026722  0x00005482 fetcht  0x00000003 , 0x000002b4 
+ 00026723  0x00005483 isub  0x00000002 , 0x0000003f 
+ 00026724  0x00005484 nbranch  0x0000686b , 0x00000002 
+ 00026725  0x00005485 store  0x00000002 , 0x000002a0 
+ 00026726  0x00005486 fetch  0x00000003 , 0x000002b4 
+ 00026727  0x00005487 fetcht  0x00000002 , 0x00000161 
+ 00026728  0x00005488 isub  0x00000002 , 0x0000003f 
+ 00026729  0x00005489 store  0x00000002 , 0x000002b0 
+ 00026730  0x0000548a rtn 
+ 00026731  0x0000548c fetch  0x00000002 , 0x000002a0 
+ 00026732  0x0000548d store  0x00000002 , 0x000002b0 
+ 00026733  0x0000548e setarg  0x00000000 
+ 00026734  0x0000548f store  0x00000002 , 0x000002a0 
+ 00026735  0x00005490 rtn 
+ 00026736  0x00005496 copy  0x0000003f , 0x00000012 
+ 00026737  0x00005497 set1  0x00000025 , 0x00000000 
+ 00026738  0x00005498 bpatch  0x00000007 , 0x00004020 
+ 00026739  0x00005499 copy  0x00000012 , 0x0000003f 
+ 00026740  0x0000549a increase  0x00000003 , 0x00000002 
+ 00026741  0x0000549b hstoret  0x00000002 , 0x00008098 
+ 00026742  0x0000549c increase  0xfffffffd , 0x00000011 
+ 00026743  0x0000549d ifetcht  0x00000003 , 0x00000011 
+ 00026744  0x0000549e copy  0x00000002 , 0x00000012 
+ 00026745  0x0000549f arg  0x000000a0 , 0x00000002 
+ 00026746  0x000054a0 istoret  0x00000001 , 0x00000011 
+ 00026747  0x000054a1 byteswap  0x0000003f , 0x0000003f 
+ 00026748  0x000054a2 istore  0x00000002 , 0x00000005 
+ 00026749  0x000054a3 deposit  0x00000011 
+ 00026750  0x000054a4 hstore  0x00000002 , 0x0000809a 
+ 00026751  0x000054a5 setarg  0x00000000 
+ 00026752  0x000054a6 hstore  0x00000002 , 0x0000809e 
+ 00026753  0x000054a7 hjam  0x00000001 , 0x00008090 
+ 00026754  0x000054a8 hjam  0x00000004 , 0x00008006 
+ 00026755  0x000054a9 call  0x0000680c 
+ 00026756  0x000054aa copy  0x00000012 , 0x0000003f 
+ 00026757  0x000054ab istore  0x00000003 , 0x00000011 
+ 00026758  0x000054ac nop  0x00002710 
+ 00026759  0x000054ad nop  0x00002710 
+ 00026760  0x000054ae nop  0x00002710 
+ 00026761  0x000054af rtn 
+ 00026762  0x000054b4 hjam  0x00000070 , 0x00008973 
+ 00026763  0x000054b5 nop  0x00000bb8 
+ 00026764  0x000054b6 rtn 
+ 00026765  0x000054b9 hjam  0x00000030 , 0x00008973 
+ 00026766  0x000054ba rtn 
+ 00026767  0x000054bd lshift3  0x0000003f , 0x0000003f 
+ 00026768  0x000054be hstore  0x00000002 , 0x00008045 
+ 00026769  0x000054bf hjam  0x00000000 , 0x0000804b 
+ 00026770  0x000054c0 rtn 
+ 00026771  0x000054c4 call  0x0000688f 
+ 00026772  0x000054c5 call  0x000068c0 
+ 00026773  0x000054c7 ifetcht  0x00000001 , 0x00000011 
+ 00026774  0x000054c8 increase  0x00000001 , 0x00000011 
+ 00026775  0x000054c9 force  0x00000000 , 0x00000007 
+ 00026776  0x000054cb qisolate0  0x00000002 
+ 00026777  0x000054cc branch  0x000068b7 , 0x00000001 
+ 00026778  0x000054cd hfetch  0x00000001 , 0x00008046 
+ 00026779  0x000054ce set1  0x00000006 , 0x0000003f 
+ 00026780  0x000054cf set1  0x00000007 , 0x0000003f 
+ 00026781  0x000054d0 hstore  0x00000001 , 0x00008046 
+ 00026782  0x000054d1 hjam  0x00000002 , 0x00008047 
+ 00026783  0x000054d2 hjam  0x00000082 , 0x00008047 
+ 00026784  0x000054d3 set0  0x00000007 , 0x0000003f 
+ 00026785  0x000054d4 hstore  0x00000001 , 0x00008046 
+ 00026786  0x000054d5 hjam  0x0000008a , 0x00008047 
+ 00026787  0x000054d6 nop  0x0000000b 
+ 00026788  0x000054d7 hjam  0x000000ca , 0x00008047 
+ 00026789  0x000054d8 nop  0x00000021 
+ 00026790  0x000054d9 hjam  0x0000004a , 0x00008047 
+ 00026791  0x000054da nop  0x0000002c 
+ 00026792  0x000054db hjam  0x000000ca , 0x00008047 
+ 00026793  0x000054dc nop  0x00000016 
+ 00026794  0x000054dd hjam  0x0000008a , 0x00008047 
+ 00026795  0x000054de nop  0x00000021 
+ 00026796  0x000054df hjam  0x00000082 , 0x00008047 
+ 00026797  0x000054e0 nop  0x00000001 
+ 00026798  0x000054e1 hjam  0x00000092 , 0x00008047 
+ 00026799  0x000054e2 nop  0x0000000a 
+ 00026800  0x000054e3 hjam  0x000000b2 , 0x00008047 
+ 00026801  0x000054e4 hfetch  0x00000001 , 0x00008007 
+ 00026802  0x000054e5 hjam  0x00000092 , 0x00008047 
+ 00026803  0x000054e6 nop  0x00000001 
+ 00026804  0x000054e7 hjam  0x00000082 , 0x00008047 
+ 00026805  0x000054e8 qisolate0  0x0000003f 
+ 00026806  0x000054e9 branch  0x00006898 , 0x00000001 
+ 00026807  0x000054eb hfetch  0x00000002 , 0x00008045 
+ 00026808  0x000054ec increase  0x00000001 , 0x0000003f 
+ 00026809  0x000054ed hstore  0x00000002 , 0x00008045 
+ 00026810  0x000054ee increase  0x00000001 , 0x00000007 
+ 00026811  0x000054ef compare  0x00000008 , 0x00000007 , 0x0000000f 
+ 00026812  0x000054f0 nbranch  0x00006898 , 0x00000001 
+ 00026813  0x000054f1 loop  0x00006895 
+ 00026814  0x000054f2 hjam  0x00000083 , 0x00008047 
+ 00026815  0x000054f3 rtn 
+ 00026816  0x000054f6 hjam  0x00000082 , 0x00008047 
+ 00026817  0x000054f7 nop  0x0000000c 
+ 00026818  0x000054f8 hjam  0x00000080 , 0x00008047 
+ 00026819  0x000054f9 hjam  0x00000082 , 0x00008047 
+ 00026820  0x000054fa nop  0x00000096 
+ 00026821  0x000054fb rtn 
+ 00026822  0x000054ff call  0x000068c0 
+ 00026823  0x00005501 hjam  0x000000a2 , 0x00008047 
+ 00026824  0x00005502 deposit  0x00000011 
+ 00026825  0x00005503 hstore  0x00000002 , 0x00008048 
+ 00026826  0x00005504 set1  0x0000000b , 0x00000002 
+ 00026827  0x00005505 isolate0  0x0000000f , 0x0000003f 
+ 00026828  0x00005506 setflag  0x00000001 , 0x0000000f , 0x00000002 
+ 00026829  0x00005507 hstoret  0x00000002 , 0x0000804a 
+ 00026830  0x00005508 hjam  0x00000001 , 0x00008006 
+ 00026831  0x00005509 rtn 
+ 00026832  0x0000550c hfetch  0x00000001 , 0x0000812c 
+ 00026833  0x0000550d bbit0  0x00000001 , 0x000068d0 
+ 00026834  0x0000550e rtn 
+ 00026835  0x00005512 call  0x0000688f 
+ 00026836  0x00005513 call  0x000068c6 
+ 00026837  0x00005514 call  0x000068d0 
+ 00026838  0x00005515 hjam  0x00000083 , 0x00008047 
+ 00026839  0x00005516 rtn 
+ 00026840  0x0000551c hfetch  0x00000002 , 0x00008124 
+ 00026841  0x0000551d hstore  0x00000002 , 0x00008045 
+ 00026842  0x0000551e call  0x000068c6 
+ 00026843  0x0000551f arg  0x00000001 , 0x00000007 
+ 00026844  0x00005520 call  0x0000676a 
+ 00026845  0x00005521 call  0x000068d0 
+ 00026846  0x00005522 isolate1  0x00000000 , 0x0000003f 
+ 00026847  0x00005523 call  0x00006763 
+ 00026848  0x00005524 hjam  0x00000083 , 0x00008047 
+ 00026849  0x00005525 rtn 
+ 00026850  0x00005529 jam  0x00000001 , 0x0000427a 
+ 00026851  0x0000552a force  0x0000000e , 0x00000007 
+ 00026852  0x0000552b fetch  0x00000002 , 0x0000427c 
+ 00026853  0x0000552c branch  0x00007e4c 
+ 00026854  0x0000552e hfetch  0x00000002 , 0x00008112 
+ 00026855  0x0000552f rtn  0x00000034 
+ 00026856  0x00005530 fetcht  0x00000001 , 0x0000427b 
+ 00026857  0x00005531 isub  0x00000002 , 0x0000003e 
+ 00026858  0x00005532 branch  0x000068f2 , 0x00000002 
+ 00026859  0x00005533 fetch  0x00000001 , 0x0000427a 
+ 00026860  0x00005534 branch  0x000068e2 , 0x00000034 
+ 00026861  0x00005535 arg  0x0000000e , 0x00000007 
+ 00026862  0x00005536 call  0x00007e53 
+ 00026863  0x00005537 branch  0x000068f2 , 0x00000034 
+ 00026864  0x00005538 setarg  0x00000000 
+ 00026865  0x00005539 rtn 
+ 00026866  0x0000553b force  0x0000000e , 0x00000007 
+ 00026867  0x0000553c call  0x00007e4b 
+ 00026868  0x0000553d jam  0x00000000 , 0x0000427a 
+ 00026869  0x0000553e hfetch  0x00000002 , 0x00008112 
+ 00026870  0x0000553f rtn 
+ 00026871  0x00005547 hfetch  0x00000002 , 0x0000805e 
+ 00026872  0x00005548 iforce  0x0000000a 
+ 00026873  0x00005549 rtn 
+ 00026874  0x0000554c deposit  0x0000000a 
+ 00026875  0x0000554d hstore  0x00000002 , 0x0000805e 
+ 00026876  0x0000554e rtn 
+ 00026877  0x00005551 hfetch  0x00000002 , 0x00008112 
+ 00026878  0x00005552 rtn  0x00000034 
+ 00026879  0x00005553 iforce  0x00000039 
+ 00026880  0x00005554 hfetch  0x00000002 , 0x00008058 
+ 00026881  0x00005555 iforce  0x00000003 
+ 00026882  0x00005556 rtn 
+ 00026883  0x0000555a hfetch  0x00000002 , 0x00008058 
+ 00026884  0x0000555b iadd  0x00000002 , 0x0000003f 
+ 00026885  0x0000555c copy  0x0000003f , 0x00000003 
+ 00026886  0x0000555e deposit  0x00000003 
+ 00026887  0x0000555f hstore  0x00000002 , 0x00008058 
+ 00026888  0x00005560 rtn 
+ 00026889  0x00005563 fetch  0x00000002 , 0x000042ac 
+ 00026890  0x00005564 hstore  0x00000002 , 0x00008052 
+ 00026891  0x00005565 rtn 
+ 00026892  0x0000556a fetch  0x00000006 , 0x000003d0 
+ 00026893  0x0000556b store  0x00000006 , 0x000001b4 
+ 00026894  0x0000556c jam  0x00000034 , 0x000001b3 
+ 00026895  0x0000556d branch  0x00006913 
+ 00026896  0x0000556f fetch  0x00000006 , 0x00000040 
+ 00026897  0x00005570 store  0x00000006 , 0x000001b4 
+ 00026898  0x00005571 jam  0x00000033 , 0x000001b3 
+ 00026899  0x00005573 set1  0x00000025 , 0x00000000 
+ 00026900  0x00005574 bpatch  0x00000008 , 0x00004021 
+ 00026901  0x00005575 call  0x00006954 
+ 00026902  0x00005576 call  0x00006950 
+ 00026903  0x00005577 fetch  0x00000001 , 0x000001b3 
+ 00026904  0x00005578 beq  0x00000034 , 0x0000691b 
+ 00026905  0x00005579 beq  0x00000033 , 0x0000697c 
+ 00026906  0x0000557a rtn 
+ 00026907  0x0000557c call  0x0000697a 
+ 00026908  0x0000557d branch  0x00006963 
+ 00026909  0x00005581 set1  0x00000025 , 0x00000000 
+ 00026910  0x00005582 bpatch  0x00000009 , 0x00004021 
+ 00026911  0x00005583 call  0x00006929 
+ 00026912  0x00005584 fetch  0x00000001 , 0x000001b2 
+ 00026913  0x00005585 rtneq  0x000000ff 
+ 00026914  0x00005586 fetch  0x00000006 , 0x000001b4 
+ 00026915  0x00005587 store  0x00000006 , 0x00004274 
+ 00026916  0x00005588 fetch  0x00000001 , 0x000001b3 
+ 00026917  0x00005589 store  0x00000001 , 0x000042a9 
+ 00026918  0x0000558a beq  0x00000033 , 0x0000692d 
+ 00026919  0x0000558b beq  0x00000034 , 0x0000692f 
+ 00026920  0x0000558c rtn 
+ 00026921  0x0000558e call  0x0000694c 
+ 00026922  0x0000558f fetch  0x00000001 , 0x000001b2 
+ 00026923  0x00005590 rtneq  0x000000ff 
+ 00026924  0x00005591 branch  0x0000696b 
+ 00026925  0x00005593 call  0x00006983 
+ 00026926  0x00005594 branch  0x000069a2 
+ 00026927  0x00005596 call  0x00006981 
+ 00026928  0x00005597 branch  0x000069a8 
+ 00026929  0x00005599 call  0x00006988 
+ 00026930  0x0000559a disable  0x00000028 
+ 00026931  0x0000559b call  0x0000698c 
+ 00026932  0x0000559c nbranch  0x0000427f , 0x00000028 
+ 00026933  0x0000559e fetcht  0x00000002 , 0x000001ba 
+ 00026934  0x0000559f increase  0xffffffff , 0x00000002 
+ 00026935  0x000055a0 setarg  0x00000000 
+ 00026936  0x000055a1 istore  0x00000007 , 0x00000002 
+ 00026937  0x000055a2 arg  0x0000001c , 0x00000002 
+ 00026938  0x000055a3 arg  0x00000195 , 0x00000011 
+ 00026939  0x000055a4 arg  0x00000000 , 0x00000012 
+ 00026940  0x000055a5 branch  0x0000683e 
+ 00026941  0x000055a8 set1  0x00000025 , 0x00000000 
+ 00026942  0x000055a9 bpatch  0x0000000a , 0x00004021 
+ 00026943  0x000055aa arg  0x0000018e , 0x00000005 
+ 00026944  0x000055ab force  0x00000004 , 0x00000039 
+ 00026945  0x000055ac call  0x00007e3b 
+ 00026946  0x000055ad arg  0x0000001c , 0x00000002 
+ 00026947  0x000055ae arg  0x0000018e , 0x00000011 
+ 00026948  0x000055af arg  0x00000000 , 0x00000012 
+ 00026949  0x000055b0 branch  0x0000683e 
+ 00026950  0x000055b3 set1  0x00000025 , 0x00000000 
+ 00026951  0x000055b4 bpatch  0x0000000b , 0x00004021 
+ 00026952  0x000055b5 setarg  0x00000000 
+ 00026953  0x000055b6 store  0x00000003 , 0x00000040 
+ 00026954  0x000055b7 istore  0x00000003 , 0x00000005 
+ 00026955  0x000055b8 branch  0x00006954 
+ 00026956  0x000055bb arg  0x00000001 , 0x00000002 
+ 00026957  0x000055bc arg  0x000001b2 , 0x00000011 
+ 00026958  0x000055bd arg  0x0000001c , 0x00000012 
+ 00026959  0x000055be branch  0x0000681d 
+ 00026960  0x000055c1 arg  0x00000001 , 0x00000002 
+ 00026961  0x000055c2 arg  0x000001b2 , 0x00000011 
+ 00026962  0x000055c3 arg  0x0000001c , 0x00000012 
+ 00026963  0x000055c4 branch  0x0000683e 
+ 00026964  0x000055c8 set1  0x00000025 , 0x00000000 
+ 00026965  0x000055c9 bpatch  0x0000000c , 0x00004021 
+ 00026966  0x000055ca call  0x00006988 
+ 00026967  0x000055cb disable  0x00000028 
+ 00026968  0x000055cc call  0x0000698c 
+ 00026969  0x000055cd rtn  0x00000028 
+ 00026970  0x000055cf jam  0x00000000 , 0x000001b2 
+ 00026971  0x000055d0 fetch  0x00000006 , 0x000001b4 
+ 00026972  0x000055d1 store  0x00000006 , 0x0000018f 
+ 00026973  0x000055d2 fetch  0x00000001 , 0x000001b3 
+ 00026974  0x000055d3 store  0x00000001 , 0x0000018e 
+ 00026975  0x000055d4 arg  0x0000001c , 0x00000002 
+ 00026976  0x000055d5 arg  0x0000018e , 0x00000011 
+ 00026977  0x000055d6 arg  0x00000000 , 0x00000012 
+ 00026978  0x000055d7 branch  0x0000683e 
+ 00026979  0x000055db arg  0x00000006 , 0x00000002 
+ 00026980  0x000055dc arg  0x000044f9 , 0x00000011 
+ 00026981  0x000055dd arg  0x0000001d , 0x00000012 
+ 00026982  0x000055de branch  0x0000683e 
+ 00026983  0x000055e1 arg  0x00000006 , 0x00000002 
+ 00026984  0x000055e2 arg  0x000044f9 , 0x00000011 
+ 00026985  0x000055e3 arg  0x0000001d , 0x00000012 
+ 00026986  0x000055e4 branch  0x0000681d 
+ 00026987  0x000055e8 set1  0x00000025 , 0x00000000 
+ 00026988  0x000055e9 bpatch  0x0000000d , 0x00004021 
+ 00026989  0x000055ea arg  0x00000007 , 0x00000002 
+ 00026990  0x000055eb arg  0x000001b3 , 0x00000011 
+ 00026991  0x000055ec arg  0x00000000 , 0x00000012 
+ 00026992  0x000055ed fetch  0x00000001 , 0x000001b2 
+ 00026993  0x000055ee mul32  0x0000003f , 0x00000007 , 0x0000003f 
+ 00026994  0x000055ef iadd  0x00000012 , 0x00000012 
+ 00026995  0x000055f0 branch  0x0000681d 
+ 00026996  0x000055f3 arg  0x00000010 , 0x00000002 
+ 00026997  0x000055f4 arg  0x00000023 , 0x00000012 
+ 00026998  0x000055f5 fetch  0x00000001 , 0x000001b2 
+ 00026999  0x000055f6 lshift4  0x0000003f , 0x0000003f 
+ 00027000  0x000055f7 iadd  0x00000012 , 0x00000012 
+ 00027001  0x000055f8 rtn 
+ 00027002  0x000055fb arg  0x0000447b , 0x00000011 
+ 00027003  0x000055fc branch  0x0000697d 
+ 00027004  0x000055fe arg  0x00004262 , 0x00000011 
+ 00027005  0x00005600 set1  0x00000025 , 0x00000000 
+ 00027006  0x00005601 bpatch  0x0000000e , 0x00004021 
+ 00027007  0x00005602 call  0x00006974 
+ 00027008  0x00005603 branch  0x0000683e 
+ 00027009  0x00005606 arg  0x0000447b , 0x00000011 
+ 00027010  0x00005607 branch  0x00006984 
+ 00027011  0x00005609 arg  0x00004262 , 0x00000011 
+ 00027012  0x0000560b set1  0x00000025 , 0x00000000 
+ 00027013  0x0000560c bpatch  0x0000000f , 0x00004021 
+ 00027014  0x0000560d call  0x00006974 
+ 00027015  0x0000560e branch  0x0000681d 
+ 00027016  0x00005613 arg  0x0000001c , 0x00000002 
+ 00027017  0x00005614 arg  0x00000195 , 0x00000011 
+ 00027018  0x00005615 arg  0x00000000 , 0x00000012 
+ 00027019  0x00005616 branch  0x0000681d 
+ 00027020  0x00005619 set1  0x00000025 , 0x00000000 
+ 00027021  0x0000561a bpatch  0x00000010 , 0x00004022 
+ 00027022  0x0000561b setarg  0x00000195 
+ 00027023  0x0000561c store  0x00000002 , 0x000001ba 
+ 00027024  0x0000561d jam  0x00000000 , 0x000001b2 
+ 00027025  0x0000561e arg  0x00000004 , 0x00000039 
+ 00027026  0x00005620 copy  0x00000039 , 0x0000003f 
+ 00027027  0x00005621 store  0x00000001 , 0x00000161 
+ 00027028  0x00005622 fetch  0x00000002 , 0x000001ba 
+ 00027029  0x00005623 copy  0x0000003f , 0x00000011 
+ 00027030  0x00005624 call  0x000069ac 
+ 00027031  0x00005625 rtn  0x00000028 
+ 00027032  0x00005626 fetch  0x00000002 , 0x000001ba 
+ 00027033  0x00005627 increase  0x00000007 , 0x0000003f 
+ 00027034  0x00005628 store  0x00000002 , 0x000001ba 
+ 00027035  0x00005629 fetch  0x00000001 , 0x000001b2 
+ 00027036  0x0000562a increase  0x00000001 , 0x0000003f 
+ 00027037  0x0000562b store  0x00000001 , 0x000001b2 
+ 00027038  0x0000562c fetch  0x00000001 , 0x00000161 
+ 00027039  0x0000562d copy  0x0000003f , 0x00000039 
+ 00027040  0x0000562e loop  0x00006992 
+ 00027041  0x0000562f rtn 
+ 00027042  0x00005632 fetch  0x00000008 , 0x00004262 
+ 00027043  0x00005633 fetcht  0x00000008 , 0x0000426a 
+ 00027044  0x00005634 ior  0x00000002 , 0x0000003f 
+ 00027045  0x00005635 rtn  0x00000034 
+ 00027046  0x00005636 jam  0x00000001 , 0x0000425e 
+ 00027047  0x00005637 rtn 
+ 00027048  0x00005639 fetch  0x00000006 , 0x00004274 
+ 00027049  0x0000563a rtn  0x00000034 
+ 00027050  0x0000563b jam  0x00000001 , 0x0000448b 
+ 00027051  0x0000563c rtn 
+ 00027052  0x0000563f arg  0x000001b3 , 0x00000012 
+ 00027053  0x00005640 arg  0x00000007 , 0x00000039 
+ 00027054  0x00005641 call  0x00007f25 
+ 00027055  0x00005642 branch  0x000069b1 , 0x00000005 
+ 00027056  0x00005643 rtn 
+ 00027057  0x00005645 enable  0x00000028 
+ 00027058  0x00005646 rtn 
+ 00027059  0x00005648 branch  0x00003bf1 
+ 00027060  0x00005650 set1  0x00000025 , 0x00000000 
+ 00027061  0x00005651 bpatch  0x00000011 , 0x00004022 
+ 00027062  0x00005652 set1  0x00000007 , 0x00000002 
+ 00027063  0x00005653 call  0x000069e5 
+ 00027064  0x00005654 nsetflag  0x00000001 , 0x00000007 , 0x00000002 
+ 00027065  0x0000565a set1  0x00000025 , 0x00000000 
+ 00027066  0x0000565b bpatch  0x00000012 , 0x00004022 
+ 00027067  0x0000565c isolate0  0x00000007 , 0x00000002 
+ 00027068  0x0000565d and  0x00000002 , 0x0000001f , 0x00000007 
+ 00027069  0x0000565e fetch  0x00000004 , 0x000000a3 
+ 00027070  0x0000565f qsetflag  0x00000001 , 0x0000003f 
+ 00027071  0x00005660 store  0x00000004 , 0x000000a3 
+ 00027072  0x00005661 fetch  0x00000004 , 0x000000a7 
+ 00027073  0x00005662 nqsetflag  0x00000001 , 0x0000003f 
+ 00027074  0x00005663 store  0x00000004 , 0x000000a7 
+ 00027075  0x00005664 rtn 
+ 00027076  0x00005668 set1  0x00000025 , 0x00000000 
+ 00027077  0x00005669 bpatch  0x00000013 , 0x00004022 
+ 00027078  0x0000566a isolate0  0x00000007 , 0x00000002 
+ 00027079  0x0000566b and  0x00000002 , 0x0000001f , 0x00000007 
+ 00027080  0x0000566c fetch  0x00000004 , 0x000000a3 
+ 00027081  0x0000566d qset0  0x0000003f 
+ 00027082  0x0000566e store  0x00000004 , 0x000000a3 
+ 00027083  0x0000566f fetch  0x00000004 , 0x000000a7 
+ 00027084  0x00005670 qset0  0x0000003f 
+ 00027085  0x00005671 store  0x00000004 , 0x000000a7 
+ 00027086  0x00005672 rtn 
+ 00027087  0x00005676 call  0x000069c4 
+ 00027088  0x00005677 branch  0x000069d2 
+ 00027089  0x0000567b ncall  0x000069b9 , 0x0000002b 
+ 00027090  0x0000567e arg  0x0000807c , 0x00000005 
+ 00027091  0x0000567f call  0x000069f4 
+ 00027092  0x00005680 setflip  0x00000007 , 0x00000002 
+ 00027093  0x00005681 arg  0x00008078 , 0x00000005 
+ 00027094  0x00005682 call  0x000069f4 
+ 00027095  0x00005683 set0  0x00000007 , 0x00000002 
+ 00027096  0x00005684 arg  0x00008070 , 0x00000005 
+ 00027097  0x00005685 branch  0x000069f4 
+ 00027098  0x00005689 setflip  0x00000007 , 0x00000002 
+ 00027099  0x0000568a call  0x000069f3 
+ 00027100  0x0000568b set1  0x00000007 , 0x00000002 
+ 00027101  0x0000568c arg  0x00008070 , 0x00000005 
+ 00027102  0x0000568d branch  0x000069f4 
+ 00027103  0x00005690 and  0x00000002 , 0x00000007 , 0x00000007 
+ 00027104  0x00005691 rshift3  0x00000002 , 0x0000003f 
+ 00027105  0x00005692 and_into  0x00000003 , 0x0000003f 
+ 00027106  0x00005693 iadd  0x00000005 , 0x00000005 
+ 00027107  0x00005694 ifetch  0x00000001 , 0x00000005 
+ 00027108  0x00005695 rtn 
+ 00027109  0x0000569a arg  0x0000811c , 0x00000005 
+ 00027110  0x0000569b call  0x000069df 
+ 00027111  0x0000569c isolate1  0x00000007 , 0x00000002 
+ 00027112  0x0000569d branch  0x000069eb , 0x00000001 
+ 00027113  0x0000569e qisolate0  0x0000003f 
+ 00027114  0x0000569f rtn 
+ 00027115  0x000056a1 qisolate1  0x0000003f 
+ 00027116  0x000056a2 rtn 
+ 00027117  0x000056a5 isolate1  0x00000007 , 0x0000003e 
+ 00027118  0x000056a6 branch  0x000069f0 
+ 00027119  0x000056a9 isolate0  0x00000007 , 0x0000003e 
+ 00027120  0x000056ad setarg  0x00000000 
+ 00027121  0x000056ae nsetflag  0x00000001 , 0x00000007 , 0x0000003f 
+ 00027122  0x000056af ixor  0x00000002 , 0x00000002 
+ 00027123  0x000056b3 arg  0x00008074 , 0x00000005 
+ 00027124  0x000056b7 call  0x000069df 
+ 00027125  0x000056b8 isolate1  0x00000007 , 0x00000002 
+ 00027126  0x000056b9 qsetflag  0x00000001 , 0x0000003f 
+ 00027127  0x000056ba istore  0x00000001 , 0x00000005 
+ 00027128  0x000056bb rtn 
+ 00027129  0x000056be fetch  0x00000001 , 0x0000416e 
+ 00027130  0x000056bf rtneq  0x0000007f 
+ 00027131  0x000056c0 hjam  0x00000000 , 0x00008077 
+ 00027132  0x000056c1 nop  0x0000001e 
+ 00027133  0x000056c2 hjam  0x00000008 , 0x00008077 
+ 00027134  0x000056c3 rtn 
+ 00027135  0x000056c9 lshift8  0x0000003f , 0x0000003f 
+ 00027136  0x000056ca lshift4  0x0000003f , 0x0000003f 
+ 00027137  0x000056cb hstore  0x00000002 , 0x000080a2 
+ 00027138  0x000056cc hstore  0x00000002 , 0x000080a0 
+ 00027139  0x000056cd rtn 
+ 00027140  0x000056d0 setarg  0x00000000 
+ 00027141  0x000056d1 hstore  0x00000002 , 0x000080a2 
+ 00027142  0x000056d2 setarg  0x00000001 
+ 00027143  0x000056d3 hstore  0x00000002 , 0x000080a0 
+ 00027144  0x000056d4 rtn 
+ 00027145  0x000056d7 setarg  0x00000000 
+ 00027146  0x000056d8 hstore  0x00000002 , 0x000080a2 
+ 00027147  0x000056d9 hstore  0x00000002 , 0x000080a0 
+ 00027148  0x000056da rtn 
+ 00027149  0x000056e0 arg  0x00008800 , 0x00000005 
+ 00027150  0x000056e1 arg  0x00000020 , 0x00000039 
+ 00027151  0x000056e2 call  0x00007e3b 
+ 00027152  0x000056e3 setarg  0x000004f9 
+ 00027153  0x000056e4 hstore  0x00000002 , 0x00008848 
+ 00027154  0x000056e5 hstore  0x00000002 , 0x0000884a 
+ 00027155  0x000056e6 hstore  0x00000002 , 0x0000884c 
+ 00027156  0x000056e7 hstore  0x00000002 , 0x0000886c 
+ 00027157  0x000056e8 hstore  0x00000002 , 0x0000888c 
+ 00027158  0x000056e9 hstore  0x00000002 , 0x000088ac 
+ 00027159  0x000056ea setarg  0x00000204 
+ 00027160  0x000056eb hstore  0x00000002 , 0x000088ae 
+ 00027161  0x000056ec setarg  0x00000506 
+ 00027162  0x000056ed hstore  0x00000002 , 0x000088b0 
+ 00027163  0x000056ee setarg  0x00000504 
+ 00027164  0x000056ef hstore  0x00000002 , 0x000088b2 
+ 00027165  0x000056f0 setarg  0x00000200 
+ 00027166  0x000056f1 hstore  0x00000002 , 0x000088b4 
+ 00027167  0x000056f2 setarg  0x0000fefb 
+ 00027168  0x000056f3 hstore  0x00000002 , 0x000088b6 
+ 00027169  0x000056f4 setarg  0x0000faf9 
+ 00027170  0x000056f5 hstore  0x00000002 , 0x000088b8 
+ 00027171  0x000056f6 setarg  0x0000fafb 
+ 00027172  0x000056f7 hstore  0x00000002 , 0x000088ba 
+ 00027173  0x000056f8 setarg  0x0000fd00 
+ 00027174  0x000056f9 hstore  0x00000002 , 0x000088bc 
+ 00027175  0x000056fa setarg  0x00000408 
+ 00027176  0x000056fb hstore  0x00000002 , 0x000088be 
+ 00027177  0x000056fc setarg  0x00000a0c 
+ 00027178  0x000056fd hstore  0x00000002 , 0x000088c0 
+ 00027179  0x000056fe setarg  0x00000b09 
+ 00027180  0x000056ff hstore  0x00000002 , 0x000088c2 
+ 00027181  0x00005700 setarg  0x00000500 
+ 00027182  0x00005701 hstore  0x00000002 , 0x000088c4 
+ 00027183  0x00005702 setarg  0x0000f8f1 
+ 00027184  0x00005703 hstore  0x00000002 , 0x000088c6 
+ 00027185  0x00005704 setarg  0x0000ece8 
+ 00027186  0x00005705 hstore  0x00000002 , 0x000088c8 
+ 00027187  0x00005706 setarg  0x0000e9eb 
+ 00027188  0x00005707 hstore  0x00000002 , 0x000088ca 
+ 00027189  0x00005708 setarg  0x0000f500 
+ 00027190  0x00005709 hstore  0x00000002 , 0x000088cc 
+ 00027191  0x0000570a setarg  0x00001223 
+ 00027192  0x0000570b hstore  0x00000002 , 0x000088ce 
+ 00027193  0x0000570c setarg  0x0000374b 
+ 00027194  0x0000570d hstore  0x00000002 , 0x000088d0 
+ 00027195  0x0000570e setarg  0x00005e71 
+ 00027196  0x0000570f hstore  0x00000002 , 0x000088d2 
+ 00027197  0x00005710 setarg  0x0000787f 
+ 00027198  0x00005711 hstore  0x00000002 , 0x000088d4 
+ 00027199  0x00005712 rtn 
+ 00027200  0x00005715 set1  0x00000025 , 0x00000000 
+ 00027201  0x00005716 bpatch  0x00000014 , 0x00004022 
+ 00027202  0x00005717 hfetch  0x00000002 , 0x00008050 
+ 00027203  0x00005718 set0  0x0000000e , 0x0000003f 
+ 00027204  0x00005719 hstore  0x00000002 , 0x00008050 
+ 00027205  0x0000571a hjam  0x00000011 , 0x000080b0 
+ 00027206  0x0000571b hjam  0x00000001 , 0x000080b1 
+ 00027207  0x0000571c hjam  0x00000001 , 0x000080b2 
+ 00027208  0x0000571d hjam  0x00000011 , 0x000080b3 
+ 00027209  0x0000571e rtn 
+ 00027210  0x00005721 set1  0x00000025 , 0x00000000 
+ 00027211  0x00005722 bpatch  0x00000015 , 0x00004022 
+ 00027212  0x00005723 hfetch  0x00000002 , 0x00008050 
+ 00027213  0x00005724 set1  0x0000000e , 0x0000003f 
+ 00027214  0x00005725 hstore  0x00000002 , 0x00008050 
+ 00027215  0x00005726 hjam  0x00000004 , 0x000080b0 
+ 00027216  0x00005727 hjam  0x00000004 , 0x000080b3 
+ 00027217  0x00005728 hjam  0x00000000 , 0x000080b1 
+ 00027218  0x00005729 hjam  0x00000000 , 0x000080b2 
+ 00027219  0x0000572a rtn 
+ 00027220  0x0000572f fetch  0x00000001 , 0x00000030 
+ 00027221  0x00005730 rtnbit0  0x00000002 
+ 00027222  0x00005731 arg  0x000000b5 , 0x00000005 
+ 00027223  0x00005732 arg  0x0000001e , 0x00000039 
+ 00027224  0x00005734 hfetch  0x00000001 , 0x00008134 
+ 00027225  0x00005735 istore  0x00000001 , 0x00000005 
+ 00027226  0x00005736 loop  0x00006a58 
+ 00027227  0x00005737 rtn 
+ 00027228  0x0000573b fetch  0x00000001 , 0x00000030 
+ 00027229  0x0000573c rtnbit0  0x00000002 
+ 00027230  0x0000573d arg  0x000000d3 , 0x00000006 
+ 00027231  0x0000573e force  0x0000001e , 0x00000039 
+ 00027232  0x00005740 ifetch  0x00000001 , 0x00000006 
+ 00027233  0x00005741 hstore  0x00000001 , 0x00008009 
+ 00027234  0x00005742 loop  0x00006a60 
+ 00027235  0x00005743 rtn 
+ 00027236  0x00005746 rtn 
+ 00027237  0x0000574c call  0x00006a87 
+ 00027238  0x0000574d arg  0x00000006 , 0x00000002 
+ 00027239  0x0000574e branch  0x000069da 
+ 00027240  0x00005751 call  0x00006a65 
+ 00027241  0x00005752 arg  0x00000006 , 0x00000002 
+ 00027242  0x00005753 branch  0x000069ed 
+ 00027243  0x00005756 call  0x00006a65 
+ 00027244  0x00005757 arg  0x00000006 , 0x00000002 
+ 00027245  0x00005758 branch  0x000069ef 
+ 00027246  0x0000575b call  0x00006a87 
+ 00027247  0x0000575c arg  0x00000007 , 0x00000002 
+ 00027248  0x0000575d branch  0x000069da 
+ 00027249  0x00005760 call  0x00006a6e 
+ 00027250  0x00005761 arg  0x00000007 , 0x00000002 
+ 00027251  0x00005762 branch  0x000069ed 
+ 00027252  0x00005765 call  0x00006a6e 
+ 00027253  0x00005766 arg  0x00000007 , 0x00000002 
+ 00027254  0x00005767 branch  0x000069ef 
+ 00027255  0x0000576a call  0x00006a87 
+ 00027256  0x0000576b hfetch  0x00000001 , 0x00008078 
+ 00027257  0x0000576c set1  0x00000006 , 0x0000003f 
+ 00027258  0x0000576d hstore  0x00000001 , 0x00008078 
+ 00027259  0x0000576e arg  0x00000006 , 0x00000002 
+ 00027260  0x0000576f branch  0x000069d1 
+ 00027261  0x00005772 call  0x00006a87 
+ 00027262  0x00005773 hfetch  0x00000001 , 0x00008078 
+ 00027263  0x00005774 set1  0x00000007 , 0x0000003f 
+ 00027264  0x00005775 hstore  0x00000001 , 0x00008078 
+ 00027265  0x00005776 arg  0x00000007 , 0x00000002 
+ 00027266  0x00005777 branch  0x000069d1 
+ 00027267  0x0000577a hfetch  0x00000001 , 0x00008081 
+ 00027268  0x0000577b or_into  0x00000004 , 0x0000003f 
+ 00027269  0x0000577c hstore  0x00000001 , 0x00008081 
+ 00027270  0x0000577d rtn 
+ 00027271  0x00005780 hfetch  0x00000001 , 0x00008081 
+ 00027272  0x00005781 and_into  0x000000fb , 0x0000003f 
+ 00027273  0x00005782 hstore  0x00000001 , 0x00008081 
+ 00027274  0x00005783 rtn 
+ 00027275  0x00005786 hfetch  0x00000001 , 0x00008081 
+ 00027276  0x00005787 isolate1  0x00000002 , 0x0000003f 
+ 00027277  0x00005788 rtn 
+ 00027278  0x0000578c setarg  0x00006a91 
+ 00027279  0x0000578d store  0x00000002 , 0x00004296 
+ 00027280  0x0000578e rtn 
+ 00027281  0x00005790 call  0x00006b14 
+ 00027282  0x00005791 fetch  0x00000001 , 0x00000481 
+ 00027283  0x00005792 beq  0x00000001 , 0x00006a96 
+ 00027284  0x00005793 beq  0x00000002 , 0x00006a9c 
+ 00027285  0x00005794 branch  0x00003bf1 
+ 00027286  0x00005796 arg  0x00000017 , 0x00000002 
+ 00027287  0x00005797 storet  0x00000002 , 0x000044c2 
+ 00027288  0x00005798 call  0x00005a88 
+ 00027289  0x00005799 ifetch  0x00000001 , 0x00000006 
+ 00027290  0x0000579a call  0x00006a9e 
+ 00027291  0x0000579b branch  0x00005b42 
+ 00027292  0x0000579d call  0x00006a9e 
+ 00027293  0x0000579e branch  0x00005b51 
+ 00027294  0x000057a0 copy  0x00000006 , 0x00000011 
+ 00027295  0x000057a1 set1  0x00000025 , 0x00000000 
+ 00027296  0x000057a2 bpatch  0x00000031 , 0x00004026 
+ 00027297  0x000057a3 ifetch  0x00000001 , 0x00000006 
+ 00027298  0x000057a4 beq  0x00000000 , 0x00006ab7 
+ 00027299  0x000057a5 beq  0x00000001 , 0x00006abc 
+ 00027300  0x000057a6 beq  0x00000002 , 0x00006abd 
+ 00027301  0x000057a7 beq  0x00000003 , 0x00006abe 
+ 00027302  0x000057a8 beq  0x00000004 , 0x00006b50 
+ 00027303  0x000057a9 beq  0x00000005 , 0x00006aff 
+ 00027304  0x000057aa beq  0x00000006 , 0x00006b51 
+ 00027305  0x000057ab beq  0x00000007 , 0x00006b52 
+ 00027306  0x000057ac beq  0x00000008 , 0x00006abf 
+ 00027307  0x000057ad beq  0x00000009 , 0x00006ac0 
+ 00027308  0x000057ae beq  0x0000000a , 0x00006ac1 
+ 00027309  0x000057af beq  0x0000000b , 0x00006ac2 
+ 00027310  0x000057b0 beq  0x0000000c , 0x00006ac3 
+ 00027311  0x000057b1 beq  0x0000000d , 0x00006ad5 
+ 00027312  0x000057b2 beq  0x0000000e , 0x00006ae3 
+ 00027313  0x000057b3 beq  0x0000000f , 0x00006af0 
+ 00027314  0x000057b4 beq  0x00000010 , 0x00006af1 
+ 00027315  0x000057b5 beq  0x00000011 , 0x00006af8 
+ 00027316  0x000057b6 beq  0x00000012 , 0x00006b19 
+ 00027317  0x000057b7 beq  0x00000013 , 0x00006b45 
+ 00027318  0x000057b8 rtn 
+ 00027319  0x000057bc copy  0x00000011 , 0x00000006 
+ 00027320  0x000057bd ifetch  0x00000001 , 0x00000006 
+ 00027321  0x000057be lshift8  0x0000003f , 0x0000003f 
+ 00027322  0x000057bf store  0x00000003 , 0x0000046d 
+ 00027323  0x000057c0 rtn 
+ 00027324  0x000057c2 rtn 
+ 00027325  0x000057c4 rtn 
+ 00027326  0x000057c6 rtn 
+ 00027327  0x000057cb rtn 
+ 00027328  0x000057cd rtn 
+ 00027329  0x000057cf rtn 
+ 00027330  0x000057d1 rtn 
+ 00027331  0x000057d6 ifetch  0x00000004 , 0x00000006 
+ 00027332  0x000057d7 hstore  0x00000001 , 0x00008082 
+ 00027333  0x000057d8 rshift8  0x0000003f , 0x0000003f 
+ 00027334  0x000057d9 hfetcht  0x00000001 , 0x00008081 
+ 00027335  0x000057da and_into  0x0000007f , 0x00000002 
+ 00027336  0x000057db ior  0x00000002 , 0x00000002 
+ 00027337  0x000057dc hstoret  0x00000001 , 0x00008081 
+ 00027338  0x000057dd rshift8  0x0000003f , 0x0000003f 
+ 00027339  0x000057de hfetcht  0x00000001 , 0x00008051 
+ 00027340  0x000057df and_into  0x000000df , 0x00000002 
+ 00027341  0x000057e0 ior  0x00000002 , 0x00000002 
+ 00027342  0x000057e1 hstoret  0x00000001 , 0x00008051 
+ 00027343  0x000057e2 rshift8  0x0000003f , 0x0000003f 
+ 00027344  0x000057e3 hfetcht  0x00000001 , 0x00008042 
+ 00027345  0x000057e4 and_into  0x0000003f , 0x00000002 
+ 00027346  0x000057e5 ior  0x00000002 , 0x00000002 
+ 00027347  0x000057e6 hstoret  0x00000001 , 0x00008042 
+ 00027348  0x000057e7 branch  0x00006ab7 
+ 00027349  0x000057e9 ifetch  0x00000009 , 0x00000006 
+ 00027350  0x000057ea hfetcht  0x00000001 , 0x00008085 
+ 00027351  0x000057eb and_into  0x0000003f , 0x00000002 
+ 00027352  0x000057ec ior  0x00000002 , 0x00000002 
+ 00027353  0x000057ed hstoret  0x00000001 , 0x00008085 
+ 00027354  0x000057ee rshift8  0x0000003f , 0x0000003f 
+ 00027355  0x000057ef hstore  0x00000002 , 0x000080a0 
+ 00027356  0x000057f0 rshift16  0x0000003f , 0x0000003f 
+ 00027357  0x000057f1 hstore  0x00000002 , 0x000080a2 
+ 00027358  0x000057f2 rshift16  0x0000003f , 0x0000003f 
+ 00027359  0x000057f3 hstore  0x00000002 , 0x000080a4 
+ 00027360  0x000057f4 rshift16  0x0000003f , 0x0000003f 
+ 00027361  0x000057f5 hstore  0x00000002 , 0x000080a6 
+ 00027362  0x000057f6 branch  0x00006ab7 
+ 00027363  0x000057fb ifetch  0x00000004 , 0x00000006 
+ 00027364  0x000057fc hstore  0x00000004 , 0x00008070 
+ 00027365  0x000057fd ifetch  0x00000004 , 0x00000006 
+ 00027366  0x000057fe hstore  0x00000004 , 0x00008078 
+ 00027367  0x000057ff ifetch  0x00000004 , 0x00000006 
+ 00027368  0x00005800 hstore  0x00000004 , 0x0000807c 
+ 00027369  0x00005801 ifetch  0x00000001 , 0x00000006 
+ 00027370  0x00005802 hstore  0x00000001 , 0x00008080 
+ 00027371  0x00005803 ifetch  0x00000001 , 0x00000006 
+ 00027372  0x00005804 hstore  0x00000001 , 0x00008081 
+ 00027373  0x00005805 ifetch  0x00000001 , 0x00000006 
+ 00027374  0x00005806 hstore  0x00000001 , 0x00008082 
+ 00027375  0x00005807 branch  0x00006ab7 
+ 00027376  0x00005809 branch  0x00006af1 
+ 00027377  0x0000580b jam  0x00000010 , 0x0000046d 
+ 00027378  0x0000580c arg  0x0000046e , 0x00000005 
+ 00027379  0x0000580d hfetch  0x00000004 , 0x00008074 
+ 00027380  0x0000580e istore  0x00000004 , 0x00000005 
+ 00027381  0x0000580f hfetch  0x00000004 , 0x0000811c 
+ 00027382  0x00005810 istore  0x00000004 , 0x00000005 
+ 00027383  0x00005811 rtn 
+ 00027384  0x00005813 ifetcht  0x00000001 , 0x00000006 
+ 00027385  0x00005814 ifetch  0x00000001 , 0x00000006 
+ 00027386  0x00005815 lshift3  0x0000003f , 0x0000003f 
+ 00027387  0x00005816 lshift4  0x0000003f , 0x0000003f 
+ 00027388  0x00005817 ior  0x00000002 , 0x00000002 
+ 00027389  0x00005818 call  0x000069f3 
+ 00027390  0x00005819 branch  0x00006ab7 
+ 00027391  0x0000581f ifetcht  0x00000001 , 0x00000006 
+ 00027392  0x00005820 hstoret  0x00000001 , 0x00008301 
+ 00027393  0x00005821 ifetch  0x00000001 , 0x00000006 
+ 00027394  0x00005822 compare  0x00000001 , 0x0000003f , 0x000000ff 
+ 00027395  0x00005823 ifetch  0x00000001 , 0x00000006 
+ 00027396  0x00005824 hstore  0x00000001 , 0x00008307 
+ 00027397  0x00005825 branch  0x00006b08 , 0x00000001 
+ 00027398  0x00005826 ifetch  0x00000001 , 0x00000006 
+ 00027399  0x00005827 hstore  0x00000001 , 0x00008307 
+ 00027400  0x00005829 ifetch  0x00000001 , 0x00000006 
+ 00027401  0x0000582a copy  0x0000003f , 0x00000039 
+ 00027402  0x0000582b increase  0xffffffff , 0x0000003f 
+ 00027403  0x0000582c or_into  0x00000090 , 0x0000003f 
+ 00027404  0x0000582d hstore  0x00000001 , 0x00008302 
+ 00027405  0x0000582e hjam  0x00000002 , 0x00008303 
+ 00027406  0x0000582f nop  0x00000001 
+ 00027407  0x00005831 arg  0x0000046d , 0x00000005 
+ 00027408  0x00005833 hfetch  0x00000001 , 0x00008307 
+ 00027409  0x00005834 istore  0x00000001 , 0x00000005 
+ 00027410  0x00005835 loop  0x00006b10 
+ 00027411  0x00005836 rtn 
+ 00027412  0x00005839 setarg  0x00000000 
+ 00027413  0x0000583a store  0x00000004 , 0x0000046d 
+ 00027414  0x0000583b istore  0x00000008 , 0x00000005 
+ 00027415  0x0000583c istore  0x00000008 , 0x00000005 
+ 00027416  0x0000583d rtn 
+ 00027417  0x00005844 copy  0x00000011 , 0x0000003f 
+ 00027418  0x00005845 increase  0x00000001 , 0x0000003f 
+ 00027419  0x00005846 store  0x00000002 , 0x00000483 
+ 00027420  0x00005847 fetch  0x00000002 , 0x00004749 
+ 00027421  0x00005848 beq  0x00000000 , 0x00006b28 
+ 00027422  0x0000584a fetch  0x00000002 , 0x00004749 
+ 00027423  0x0000584b fetcht  0x00000002 , 0x00000483 
+ 00027424  0x0000584c ifetcht  0x00000002 , 0x00000002 
+ 00027425  0x0000584d iadd  0x00000002 , 0x0000003f 
+ 00027426  0x0000584e fetcht  0x00000002 , 0x00000483 
+ 00027427  0x0000584f increase  0x00000002 , 0x00000002 
+ 00027428  0x00005850 copy  0x00000002 , 0x00000006 
+ 00027429  0x00005851 ifetcht  0x00000001 , 0x00000006 
+ 00027430  0x00005852 copy  0x00000006 , 0x00000011 
+ 00027431  0x00005853 branch  0x00006842 
+ 00027432  0x00005856 setarg  0x00000002 
+ 00027433  0x00005857 byteswap  0x0000003f , 0x0000003f 
+ 00027434  0x00005858 store  0x00000002 , 0x00000225 
+ 00027435  0x00005859 arg  0x00006823 , 0x00000013 
+ 00027436  0x0000585a arg  0x00000002 , 0x00000039 
+ 00027437  0x0000585c call  0x000066e2 
+ 00027438  0x0000585d nbranch  0x00006b36 , 0x00000005 
+ 00027439  0x0000585e fetch  0x00000002 , 0x00000225 
+ 00027440  0x0000585f byteswap  0x0000003f , 0x0000003f 
+ 00027441  0x00005860 iadd  0x00000002 , 0x0000003f 
+ 00027442  0x00005861 store  0x00000002 , 0x00004749 
+ 00027443  0x00005862 byteswap  0x0000003f , 0x0000003f 
+ 00027444  0x00005863 store  0x00000002 , 0x00000225 
+ 00027445  0x00005864 loop  0x00006b2d 
+ 00027446  0x00005866 fetch  0x00000002 , 0x00004749 
+ 00027447  0x00005867 byteswap  0x0000003f , 0x0000003f 
+ 00027448  0x00005868 store  0x00000002 , 0x00000225 
+ 00027449  0x00005869 arg  0x00006823 , 0x00000013 
+ 00027450  0x0000586a arg  0x0000ffff , 0x00000039 
+ 00027451  0x0000586c call  0x000066e2 
+ 00027452  0x0000586d nbranch  0x00006b1e , 0x00000005 
+ 00027453  0x0000586e fetch  0x00000002 , 0x00000225 
+ 00027454  0x0000586f byteswap  0x0000003f , 0x0000003f 
+ 00027455  0x00005870 iadd  0x00000002 , 0x0000003f 
+ 00027456  0x00005871 increase  0x00000002 , 0x0000003f 
+ 00027457  0x00005872 store  0x00000002 , 0x00004749 
+ 00027458  0x00005873 byteswap  0x0000003f , 0x0000003f 
+ 00027459  0x00005874 store  0x00000002 , 0x00000225 
+ 00027460  0x00005875 loop  0x00006b3b 
+ 00027461  0x00005878 fetch  0x00000002 , 0x00004749 
+ 00027462  0x00005879 increase  0x00000002 , 0x0000003f 
+ 00027463  0x0000587a byteswap  0x0000003f , 0x0000003f 
+ 00027464  0x0000587b store  0x00000002 , 0x00004749 
+ 00027465  0x0000587c arg  0x00004749 , 0x00000011 
+ 00027466  0x0000587d arg  0x00000002 , 0x00000002 
+ 00027467  0x0000587e arg  0x00000000 , 0x0000003f 
+ 00027468  0x0000587f call  0x00006842 
+ 00027469  0x00005880 setarg  0x00000000 
+ 00027470  0x00005881 store  0x00000002 , 0x00004749 
+ 00027471  0x00005882 rtn 
+ 00027472  0x00005885 rtn 
+ 00027473  0x00005887 rtn 
+ 00027474  0x00005889 rtn 
+ 00027475  0x0000588f rtn  0x0000002b 
+ 00027476  0x00005890 jam  0x00000000 , 0x00004755 
+ 00027477  0x00005891 jam  0x00000003 , 0x00000485 
+ 00027478  0x00005892 jam  0x00000003 , 0x00000486 
+ 00027479  0x00005893 jam  0x00000011 , 0x0000048a 
+ 00027480  0x00005894 jam  0x00000013 , 0x0000048b 
+ 00027481  0x00005895 setarg  0x00000000 
+ 00027482  0x00005896 store  0x00000003 , 0x00000487 
+ 00027483  0x00005897 store  0x00000001 , 0x000042bd 
+ 00027484  0x00005898 jam  0x00000000 , 0x000047f3 
+ 00027485  0x0000589b set1  0x00000025 , 0x00000000 
+ 00027486  0x0000589c bpatch  0x000000bf , 0x00004037 
+ 00027487  0x0000589d setarg  0x00000000 
+ 00027488  0x0000589e store  0x00000001 , 0x000042bd 
+ 00027489  0x0000589f store  0x00000001 , 0x00004752 
+ 00027490  0x000058a0 store  0x00000001 , 0x0000474b 
+ 00027491  0x000058a1 jam  0x00000050 , 0x00004757 
+ 00027492  0x000058a2 rtn 
+ 00027493  0x000058a5 or_into  0x00000002 , 0x00000002 
+ 00027494  0x000058a6 rtn 
+ 00027495  0x000058b3 copy  0x00000002 , 0x0000003f 
+ 00027496  0x000058b4 reverse  0x0000003f , 0x0000003f 
+ 00027497  0x000058b5 store  0x00000001 , 0x00004750 
+ 00027498  0x000058b6 force  0x0000003f , 0x0000003f 
+ 00027499  0x000058b7 reverse  0x0000003f , 0x0000003f 
+ 00027500  0x000058b8 store  0x00000001 , 0x0000474f 
+ 00027501  0x000058b9 force  0x00000001 , 0x0000003f 
+ 00027502  0x000058ba reverse  0x0000003f , 0x0000003f 
+ 00027503  0x000058bb store  0x00000001 , 0x0000474e 
+ 00027504  0x000058bc call  0x00006b9d 
+ 00027505  0x000058bd copy  0x00000002 , 0x0000003f 
+ 00027506  0x000058be rtn 
+ 00027507  0x000058c0 reverse  0x0000003f , 0x0000003f 
+ 00027508  0x000058c1 store  0x00000001 , 0x00004750 
+ 00027509  0x000058c2 force  0x00000073 , 0x0000003f 
+ 00027510  0x000058c3 reverse  0x0000003f , 0x0000003f 
+ 00027511  0x000058c4 store  0x00000001 , 0x0000474f 
+ 00027512  0x000058c5 force  0x00000001 , 0x0000003f 
+ 00027513  0x000058c6 reverse  0x0000003f , 0x0000003f 
+ 00027514  0x000058c7 store  0x00000001 , 0x0000474e 
+ 00027515  0x000058c8 branch  0x00006b9d 
+ 00027516  0x000058cb fetch  0x00000001 , 0x00004751 
+ 00027517  0x000058cc branch  0x00006b80 , 0x00000034 
+ 00027518  0x000058cd setarg  0x00000070 
+ 00027519  0x000058ce rtn 
+ 00027520  0x000058d0 setarg  0x000000aa 
+ 00027521  0x000058d1 rtn 
+ 00027522  0x000058d4 reverse  0x0000003f , 0x0000003f 
+ 00027523  0x000058d5 store  0x00000001 , 0x00004750 
+ 00027524  0x000058d6 force  0x000000ef , 0x0000003f 
+ 00027525  0x000058d7 call  0x00006b91 
+ 00027526  0x000058d8 fetcht  0x00000002 , 0x0000048f 
+ 00027527  0x000058d9 copy  0x00000002 , 0x00000005 
+ 00027528  0x000058da istore  0x00000001 , 0x00000005 
+ 00027529  0x000058db copy  0x00000005 , 0x00000002 
+ 00027530  0x000058dc storet  0x00000002 , 0x0000048f 
+ 00027531  0x000058dd force  0x000000ff , 0x0000003f 
+ 00027532  0x000058de call  0x00006b91 
+ 00027533  0x000058df fetcht  0x00000002 , 0x0000048f 
+ 00027534  0x000058e0 copy  0x00000002 , 0x00000005 
+ 00027535  0x000058e1 istore  0x00000001 , 0x00000005 
+ 00027536  0x000058e2 rtn 
+ 00027537  0x000058ec reverse  0x0000003f , 0x0000003f 
+ 00027538  0x000058ed store  0x00000001 , 0x0000474f 
+ 00027539  0x000058ee fetch  0x00000002 , 0x0000474f 
+ 00027540  0x000058ef lshift8  0x0000003f , 0x0000003f 
+ 00027541  0x000058f0 store  0x00000003 , 0x0000048c 
+ 00027542  0x000058f1 arg  0x00000107 , 0x00000011 
+ 00027543  0x000058f2 arg  0x0000000f , 0x00000012 
+ 00027544  0x000058f3 call  0x00006baa 
+ 00027545  0x000058f4 xor_into  0x000000d7 , 0x0000003f 
+ 00027546  0x000058f5 invert  0x0000003f , 0x0000003f 
+ 00027547  0x000058f6 reverse  0x0000003f , 0x0000003f 
+ 00027548  0x000058f7 rtn 
+ 00027549  0x00005902 fetch  0x00000003 , 0x0000474e 
+ 00027550  0x00005903 store  0x00000003 , 0x0000048c 
+ 00027551  0x00005904 arg  0x00000107 , 0x00000011 
+ 00027552  0x00005905 arg  0x0000000f , 0x00000012 
+ 00027553  0x00005906 call  0x00006baa 
+ 00027554  0x00005907 lshift8  0x0000003f , 0x0000003f 
+ 00027555  0x00005908 arg  0x00000007 , 0x00000012 
+ 00027556  0x00005909 call  0x00006baa 
+ 00027557  0x0000590a xor_into  0x0000002b , 0x0000003f 
+ 00027558  0x0000590b invert  0x0000003f , 0x0000003f 
+ 00027559  0x0000590c reverse  0x0000003f , 0x0000003f 
+ 00027560  0x0000590d copy  0x0000003f , 0x00000002 
+ 00027561  0x0000590e rtn 
+ 00027562  0x00005911 arg  0x00000000 , 0x00000013 
+ 00027563  0x00005912 copy  0x00000012 , 0x00000039 
+ 00027564  0x00005913 call  0x00007dfb 
+ 00027565  0x00005914 icopy  0x00000002 
+ 00027566  0x0000591a copy  0x00000002 , 0x0000003f 
+ 00027567  0x0000591b lshift  0x00000013 , 0x00000013 
+ 00027568  0x0000591c bbit0  0x00000008 , 0x00006bb3 
+ 00027569  0x0000591d ixor  0x00000011 , 0x00000002 
+ 00027570  0x0000591e increase  0x00000001 , 0x00000013 
+ 00027571  0x00005920 lshift  0x00000002 , 0x00000002 
+ 00027572  0x00005921 fetch  0x00000003 , 0x0000048c 
+ 00027573  0x00005922 increase  0xffffffff , 0x00000012 
+ 00027574  0x00005923 compare  0x000000ff , 0x00000012 , 0x000000ff 
+ 00027575  0x00005924 branch  0x00006bbd , 0x00000001 
+ 00027576  0x00005925 copy  0x00000012 , 0x00000039 
+ 00027577  0x00005926 call  0x00007dfb 
+ 00027578  0x00005927 isolate1  0x00000000 , 0x0000003f 
+ 00027579  0x00005928 setflag  0x00000001 , 0x00000000 , 0x00000002 
+ 00027580  0x00005929 branch  0x00006bae 
+ 00027581  0x0000592c rshift  0x00000002 , 0x0000003f 
+ 00027582  0x0000592d rtn 
+ 00027583  0x00005930 fetcht  0x00000001 , 0x0000474b 
+ 00027584  0x00005933 lshift2  0x00000002 , 0x00000002 
+ 00027585  0x00005934 set1  0x00000000 , 0x00000002 
+ 00027586  0x00005935 fetch  0x00000001 , 0x00004751 
+ 00027587  0x00005936 ncall  0x00006b65 , 0x00000034 
+ 00027588  0x00005937 storet  0x00000001 , 0x000004a5 
+ 00027589  0x00005938 rtn 
+ 00027590  0x0000593c lshift2  0x00000002 , 0x00000002 
+ 00027591  0x0000593d set1  0x00000000 , 0x00000002 
+ 00027592  0x0000593e fetch  0x00000001 , 0x00004751 
+ 00027593  0x0000593f call  0x00006b65 , 0x00000034 
+ 00027594  0x00005940 rtn 
+ 00027595  0x00005943 lshift  0x00000002 , 0x00000002 
+ 00027596  0x00005944 fetch  0x00000001 , 0x00004751 
+ 00027597  0x00005945 setflag  0x00000034 , 0x00000000 , 0x00000002 
+ 00027598  0x00005947 rtn 
+ 00027599  0x00005949 fetcht  0x00000001 , 0x00000494 
+ 00027600  0x0000594a jam  0x000000d7 , 0x00000496 
+ 00027601  0x0000594b call  0x00006cf6 
+ 00027602  0x0000594c fetch  0x00000001 , 0x000042ba 
+ 00027603  0x0000594d set1  0x00000006 , 0x0000003f 
+ 00027604  0x0000594e set1  0x00000007 , 0x0000003f 
+ 00027605  0x0000594f store  0x00000001 , 0x000042ba 
+ 00027606  0x00005950 jam  0x00000000 , 0x00004751 
+ 00027607  0x00005951 branch  0x00006cd7 
+ 00027608  0x00005953 fetch  0x00000001 , 0x000042ba 
+ 00027609  0x00005954 set1  0x00000007 , 0x0000003f 
+ 00027610  0x00005955 store  0x00000001 , 0x000042ba 
+ 00027611  0x00005956 branch  0x00006cd7 
+ 00027612  0x0000595a set1  0x00000025 , 0x00000000 
+ 00027613  0x0000595b bpatch  0x000000c0 , 0x00004038 
+ 00027614  0x0000595c fetch  0x00000001 , 0x000047f3 
+ 00027615  0x0000595d beq  0x00000000 , 0x00006be1 
+ 00027616  0x0000595e branch  0x00006c8b 
+ 00027617  0x00005961 fetch  0x00000002 , 0x000002cb 
+ 00027618  0x00005962 copy  0x0000003f , 0x00000006 
+ 00027619  0x00005963 call  0x00006c0f 
+ 00027620  0x00005964 fetch  0x00000001 , 0x00000494 
+ 00027621  0x00005965 beq  0x00000000 , 0x00006be7 
+ 00027622  0x00005966 branch  0x00006c57 
+ 00027623  0x00005968 set1  0x00000025 , 0x00000000 
+ 00027624  0x00005969 bpatch  0x000000c1 , 0x00004038 
+ 00027625  0x0000596a fetch  0x00000001 , 0x00000495 
+ 00027626  0x0000596b beq  0x0000003f , 0x00006bcf 
+ 00027627  0x0000596c beq  0x00000073 , 0x00006bd8 
+ 00027628  0x0000596d beq  0x000000ef , 0x00006bef 
+ 00027629  0x0000596e rtneq  0x00000053 
+ 00027630  0x0000596f branch  0x00003bf1 
+ 00027631  0x00005973 fetch  0x00000002 , 0x00000499 
+ 00027632  0x00005974 copy  0x0000003f , 0x00000006 
+ 00027633  0x00005975 call  0x00006c1a 
+ 00027634  0x00005976 fetch  0x00000001 , 0x0000049b 
+ 00027635  0x00005977 beq  0x00000041 , 0x00006bf8 
+ 00027636  0x00005978 beq  0x00000040 , 0x00006c04 
+ 00027637  0x00005979 beq  0x00000071 , 0x00006c3f 
+ 00027638  0x0000597a beq  0x00000070 , 0x00006c4e 
+ 00027639  0x0000597b branch  0x00006cd7 
+ 00027640  0x0000597e call  0x00006c06 
+ 00027641  0x0000597f fetch  0x00000001 , 0x0000474b 
+ 00027642  0x00005980 rshift  0x0000003f , 0x0000003f 
+ 00027643  0x00005981 sub  0x0000003f , 0x00000001 , 0x0000003e 
+ 00027644  0x00005982 branch  0x00006bfe , 0x00000005 
+ 00027645  0x00005983 branch  0x00003bf1 
+ 00027646  0x00005985 fetch  0x00000001 , 0x000042bd 
+ 00027647  0x00005986 set1  0x00000000 , 0x0000003f 
+ 00027648  0x00005987 set1  0x00000001 , 0x0000003f 
+ 00027649  0x00005988 store  0x00000001 , 0x000042bd 
+ 00027650  0x00005989 call  0x00006d22 
+ 00027651  0x0000598a branch  0x00006cd7 
+ 00027652  0x0000598d call  0x00006c06 
+ 00027653  0x0000598e branch  0x00006cd7 
+ 00027654  0x00005991 call  0x00006c22 
+ 00027655  0x00005992 branch  0x00006c30 
+ 00027656  0x00005995 call  0x00006c22 
+ 00027657  0x00005996 ifetch  0x00000001 , 0x00000006 
+ 00027658  0x00005997 rshift3  0x0000003f , 0x0000003f 
+ 00027659  0x00005998 store  0x00000001 , 0x00004758 
+ 00027660  0x00005999 ifetch  0x00000001 , 0x00000006 
+ 00027661  0x0000599a store  0x00000001 , 0x000004a0 
+ 00027662  0x0000599b rtn 
+ 00027663  0x0000599f ifetch  0x00000001 , 0x00000006 
+ 00027664  0x000059a0 store  0x00000001 , 0x00000493 
+ 00027665  0x000059a1 rshift3  0x0000003f , 0x0000003f 
+ 00027666  0x000059a2 store  0x00000001 , 0x00000494 
+ 00027667  0x000059a3 ifetch  0x00000001 , 0x00000006 
+ 00027668  0x000059a4 store  0x00000001 , 0x00000495 
+ 00027669  0x000059a6 call  0x00006c27 
+ 00027670  0x000059a7 storet  0x00000002 , 0x00000497 
+ 00027671  0x000059a8 copy  0x00000006 , 0x0000003f 
+ 00027672  0x000059a9 store  0x00000002 , 0x00000499 
+ 00027673  0x000059aa rtn 
+ 00027674  0x000059ad ifetch  0x00000001 , 0x00000006 
+ 00027675  0x000059ae rshift  0x0000003f , 0x0000003f 
+ 00027676  0x000059af store  0x00000001 , 0x0000049b 
+ 00027677  0x000059b0 call  0x00006c27 
+ 00027678  0x000059b1 storet  0x00000002 , 0x0000049c 
+ 00027679  0x000059b2 copy  0x00000006 , 0x0000003f 
+ 00027680  0x000059b3 store  0x00000002 , 0x0000049e 
+ 00027681  0x000059b4 rtn 
+ 00027682  0x000059b8 fetch  0x00000002 , 0x0000049e 
+ 00027683  0x000059b9 copy  0x0000003f , 0x00000006 
+ 00027684  0x000059ba rtn 
+ 00027685  0x000059bd fetch  0x00000002 , 0x0000049e 
+ 00027686  0x000059be copy  0x0000003f , 0x00000006 
+ 00027687  0x000059c0 ifetch  0x00000001 , 0x00000006 
+ 00027688  0x000059c1 copy  0x0000003f , 0x00000002 
+ 00027689  0x000059c2 rshift  0x00000002 , 0x00000002 
+ 00027690  0x000059c3 rtnbit1  0x00000000 
+ 00027691  0x000059c4 ifetch  0x00000001 , 0x00000006 
+ 00027692  0x000059c5 lshift3  0x0000003f , 0x0000003f 
+ 00027693  0x000059c6 lshift4  0x0000003f , 0x0000003f 
+ 00027694  0x000059c7 iadd  0x00000002 , 0x00000002 
+ 00027695  0x000059c8 rtn 
+ 00027696  0x000059cb ifetch  0x00000001 , 0x00000006 
+ 00027697  0x000059cc store  0x00000001 , 0x0000474b 
+ 00027698  0x000059cd ifetch  0x00000001 , 0x00000006 
+ 00027699  0x000059ce store  0x00000001 , 0x000004a1 
+ 00027700  0x000059cf ifetch  0x00000001 , 0x00000006 
+ 00027701  0x000059d0 store  0x00000001 , 0x000004a2 
+ 00027702  0x000059d1 ifetch  0x00000001 , 0x00000006 
+ 00027703  0x000059d2 store  0x00000001 , 0x000004a3 
+ 00027704  0x000059d3 ifetch  0x00000002 , 0x00000006 
+ 00027705  0x000059d4 store  0x00000002 , 0x0000474c 
+ 00027706  0x000059d5 ifetch  0x00000001 , 0x00000006 
+ 00027707  0x000059d6 store  0x00000001 , 0x000004a4 
+ 00027708  0x000059d7 ifetch  0x00000001 , 0x00000006 
+ 00027709  0x000059d8 store  0x00000001 , 0x00004756 
+ 00027710  0x000059d9 rtn 
+ 00027711  0x000059dd call  0x00006c08 
+ 00027712  0x000059de fetch  0x00000001 , 0x00004758 
+ 00027713  0x000059df sub  0x0000003f , 0x00000001 , 0x0000003e 
+ 00027714  0x000059e0 branch  0x00006c44 , 0x00000005 
+ 00027715  0x000059e1 branch  0x00003bf1 
+ 00027716  0x000059e3 fetch  0x00000001 , 0x000042bd 
+ 00027717  0x000059e4 set1  0x00000005 , 0x0000003f 
+ 00027718  0x000059e5 set1  0x00000006 , 0x0000003f 
+ 00027719  0x000059e6 store  0x00000001 , 0x000042bd 
+ 00027720  0x000059e7 fetcht  0x00000001 , 0x0000474b 
+ 00027721  0x000059e8 lshift2  0x00000002 , 0x00000002 
+ 00027722  0x000059e9 or_into  0x00000003 , 0x00000002 
+ 00027723  0x000059ea call  0x00006d55 
+ 00027724  0x000059eb jam  0x00000003 , 0x00004755 
+ 00027725  0x000059ec branch  0x00006cd7 
+ 00027726  0x000059ef call  0x00006c08 
+ 00027727  0x000059f0 fetch  0x00000001 , 0x00004758 
+ 00027728  0x000059f1 sub  0x0000003f , 0x00000001 , 0x0000003e 
+ 00027729  0x000059f2 branch  0x00006c53 , 0x00000005 
+ 00027730  0x000059f3 branch  0x00003bf1 
+ 00027731  0x000059f5 fetch  0x00000001 , 0x000042bd 
+ 00027732  0x000059f6 set1  0x00000007 , 0x0000003f 
+ 00027733  0x000059f7 store  0x00000001 , 0x000042bd 
+ 00027734  0x000059f8 branch  0x00006cd7 
+ 00027735  0x000059fb fetch  0x00000001 , 0x00000494 
+ 00027736  0x000059fc sub  0x0000003f , 0x00000001 , 0x0000003e 
+ 00027737  0x000059fd branch  0x00006c5b , 0x00000005 
+ 00027738  0x000059fe branch  0x00003bf1 
+ 00027739  0x00005a00 fetch  0x00000001 , 0x00000495 
+ 00027740  0x00005a01 beq  0x00000073 , 0x00006c62 
+ 00027741  0x00005a02 beq  0x0000003f , 0x00006c66 
+ 00027742  0x00005a03 beq  0x000000ef , 0x00006c80 
+ 00027743  0x00005a04 beq  0x000000ff , 0x00006c78 
+ 00027744  0x00005a05 beq  0x00000053 , 0x00006c85 
+ 00027745  0x00005a06 branch  0x00003bf1 
+ 00027746  0x00005a08 fetch  0x00000001 , 0x000042bd 
+ 00027747  0x00005a09 set1  0x00000003 , 0x0000003f 
+ 00027748  0x00005a0a store  0x00000001 , 0x000042bd 
+ 00027749  0x00005a0b branch  0x00006cd7 
+ 00027750  0x00005a0d fetch  0x00000001 , 0x000042bd 
+ 00027751  0x00005a0e set1  0x00000003 , 0x0000003f 
+ 00027752  0x00005a0f set1  0x00000002 , 0x0000003f 
+ 00027753  0x00005a10 store  0x00000001 , 0x000042bd 
+ 00027754  0x00005a11 fetch  0x00000001 , 0x00000493 
+ 00027755  0x00005a12 call  0x00006b73 
+ 00027756  0x00005a13 store  0x00000001 , 0x00000496 
+ 00027757  0x00005a14 call  0x00006cf6 
+ 00027758  0x00005a15 fetch  0x00000001 , 0x00000493 
+ 00027759  0x00005a16 rshift2  0x0000003f , 0x0000003f 
+ 00027760  0x00005a17 store  0x00000001 , 0x0000474b 
+ 00027761  0x00005a18 lshift2  0x0000003f , 0x0000003f 
+ 00027762  0x00005a19 set0  0x00000001 , 0x0000003f 
+ 00027763  0x00005a1a set1  0x00000000 , 0x0000003f 
+ 00027764  0x00005a1b arg  0x00004753 , 0x00000002 
+ 00027765  0x00005a1c storet  0x00000002 , 0x0000048f 
+ 00027766  0x00005a1d call  0x00006b82 
+ 00027767  0x00005a1e branch  0x00006cd7 
+ 00027768  0x00005a21 fetch  0x00000002 , 0x00000499 
+ 00027769  0x00005a22 copy  0x0000003f , 0x00000006 
+ 00027770  0x00005a23 increase  0x00000001 , 0x0000003f 
+ 00027771  0x00005a24 store  0x00000002 , 0x00000499 
+ 00027772  0x00005a25 ifetch  0x00000001 , 0x00000006 
+ 00027773  0x00005a26 fetcht  0x00000001 , 0x00004756 
+ 00027774  0x00005a27 iadd  0x00000002 , 0x0000003f 
+ 00027775  0x00005a28 store  0x00000001 , 0x00004756 
+ 00027776  0x00005a2a call  0x00006d88 
+ 00027777  0x00005a2c call  0x00006bbf 
+ 00027778  0x00005a2d call  0x00006d6d 
+ 00027779  0x00005a2e call  0x00006d8e 
+ 00027780  0x00005a2f branch  0x00006cd7 
+ 00027781  0x00005a32 call  0x00006b5d 
+ 00027782  0x00005a33 fetch  0x00000001 , 0x00000493 
+ 00027783  0x00005a34 call  0x00006b73 
+ 00027784  0x00005a35 store  0x00000001 , 0x00000496 
+ 00027785  0x00005a36 call  0x00006cf6 
+ 00027786  0x00005a37 branch  0x00006cd7 
+ 00027787  0x00005a3d fetch  0x00000002 , 0x000002cb 
+ 00027788  0x00005a3e copy  0x0000003f , 0x00000006 
+ 00027789  0x00005a3f call  0x00006c0f 
+ 00027790  0x00005a40 fetch  0x00000001 , 0x00000494 
+ 00027791  0x00005a41 beq  0x00000000 , 0x00006c91 
+ 00027792  0x00005a42 branch  0x00006cc6 
+ 00027793  0x00005a45 set1  0x00000025 , 0x00000000 
+ 00027794  0x00005a46 bpatch  0x000000c2 , 0x00004038 
+ 00027795  0x00005a47 fetch  0x00000001 , 0x00000495 
+ 00027796  0x00005a48 beq  0x0000003f , 0x00006bcf 
+ 00027797  0x00005a49 beq  0x00000073 , 0x00006bd8 
+ 00027798  0x00005a4a beq  0x000000ef , 0x00006c98 
+ 00027799  0x00005a4b branch  0x00006cd7 
+ 00027800  0x00005a4d fetch  0x00000002 , 0x00000499 
+ 00027801  0x00005a4e copy  0x0000003f , 0x00000006 
+ 00027802  0x00005a4f call  0x00006c1a 
+ 00027803  0x00005a50 fetch  0x00000001 , 0x0000049b 
+ 00027804  0x00005a51 beq  0x00000041 , 0x00006ca1 
+ 00027805  0x00005a52 beq  0x00000040 , 0x00006ca1 
+ 00027806  0x00005a53 beq  0x00000071 , 0x00006cac 
+ 00027807  0x00005a54 beq  0x00000070 , 0x00006cbc 
+ 00027808  0x00005a55 branch  0x00006cd7 
+ 00027809  0x00005a58 call  0x00006c06 
+ 00027810  0x00005a59 fetch  0x00000001 , 0x0000474b 
+ 00027811  0x00005a5a rshift  0x0000003f , 0x0000003f 
+ 00027812  0x00005a5b fetcht  0x00000001 , 0x00004752 
+ 00027813  0x00005a5c isub  0x00000002 , 0x0000003e 
+ 00027814  0x00005a5d branch  0x00006ca8 , 0x00000005 
+ 00027815  0x00005a5e branch  0x00003bf1 
+ 00027816  0x00005a60 fetch  0x00000001 , 0x000042bd 
+ 00027817  0x00005a61 set1  0x00000001 , 0x0000003f 
+ 00027818  0x00005a62 store  0x00000001 , 0x000042bd 
+ 00027819  0x00005a63 branch  0x00006cd7 
+ 00027820  0x00005a66 call  0x00006c08 
+ 00027821  0x00005a67 fetch  0x00000001 , 0x00004758 
+ 00027822  0x00005a68 fetcht  0x00000001 , 0x00004752 
+ 00027823  0x00005a69 isub  0x00000002 , 0x0000003e 
+ 00027824  0x00005a6a branch  0x00006cb3 , 0x00000005 
+ 00027825  0x00005a6b branch  0x00003bf1 
+ 00027826  0x00005a6c branch  0x00006cd7 
+ 00027827  0x00005a6e fetch  0x00000001 , 0x000042bd 
+ 00027828  0x00005a6f set1  0x00000005 , 0x0000003f 
+ 00027829  0x00005a70 set1  0x00000006 , 0x0000003f 
+ 00027830  0x00005a71 store  0x00000001 , 0x000042bd 
+ 00027831  0x00005a72 fetcht  0x00000001 , 0x0000474b 
+ 00027832  0x00005a73 lshift2  0x00000002 , 0x00000002 
+ 00027833  0x00005a74 or_into  0x00000003 , 0x00000002 
+ 00027834  0x00005a75 call  0x00006d55 
+ 00027835  0x00005a76 branch  0x00006cd7 
+ 00027836  0x00005a79 call  0x00006c08 
+ 00027837  0x00005a7a fetch  0x00000001 , 0x00004758 
+ 00027838  0x00005a7b fetcht  0x00000001 , 0x00004752 
+ 00027839  0x00005a7c isub  0x00000002 , 0x0000003e 
+ 00027840  0x00005a7d branch  0x00006cc2 , 0x00000005 
+ 00027841  0x00005a7e branch  0x00003bf1 
+ 00027842  0x00005a80 fetch  0x00000001 , 0x000042bd 
+ 00027843  0x00005a81 set1  0x00000007 , 0x0000003f 
+ 00027844  0x00005a82 store  0x00000001 , 0x000042bd 
+ 00027845  0x00005a83 branch  0x00006cd7 
+ 00027846  0x00005a86 fetch  0x00000001 , 0x00000494 
+ 00027847  0x00005a87 fetcht  0x00000001 , 0x00004752 
+ 00027848  0x00005a88 isub  0x00000002 , 0x0000003e 
+ 00027849  0x00005a89 branch  0x00006ccc , 0x00000005 
+ 00027850  0x00005a8a branch  0x00003bf1 
+ 00027851  0x00005a8b branch  0x00006cd7 
+ 00027852  0x00005a8e fetch  0x00000001 , 0x00000495 
+ 00027853  0x00005a8f beq  0x00000073 , 0x00006cd1 
+ 00027854  0x00005a90 beq  0x000000ef , 0x00006c80 
+ 00027855  0x00005a91 beq  0x000000ff , 0x00006c78 
+ 00027856  0x00005a92 beq  0x00000053 , 0x00006cd6 
+ 00027857  0x00005a94 fetch  0x00000001 , 0x000042bd 
+ 00027858  0x00005a95 set1  0x00000003 , 0x0000003f 
+ 00027859  0x00005a96 store  0x00000001 , 0x000042bd 
+ 00027860  0x00005a97 branch  0x00006cd7 
+ 00027861  0x00005a99 branch  0x00006cd5 
+ 00027862  0x00005a9b branch  0x00006c85 
+ 00027863  0x00005a9d rtn 
+ 00027864  0x00005aa0 fetch  0x00000001 , 0x00004755 
+ 00027865  0x00005aa1 rtn  0x00000034 
+ 00027866  0x00005aa2 beq  0x00000003 , 0x00006cdc 
+ 00027867  0x00005aa3 branch  0x00003bf1 
+ 00027868  0x00005aa6 jam  0x00000000 , 0x00004755 
+ 00027869  0x00005aa7 call  0x000052e0 
+ 00027870  0x00005aa8 arg  0x00000001 , 0x00000002 
+ 00027871  0x00005aa9 lshift3  0x00000002 , 0x00000002 
+ 00027872  0x00005aab or_into  0x00000003 , 0x00000002 
+ 00027873  0x00005aac arg  0x000000aa , 0x00000011 
+ 00027874  0x00005aad call  0x00006d3f 
+ 00027875  0x00005aae call  0x000052ef 
+ 00027876  0x00005aaf copy  0x00000005 , 0x00000006 
+ 00027877  0x00005ab0 ifetch  0x00000002 , 0x00000006 
+ 00027878  0x00005ab1 branch  0x00003bf1 , 0x00000034 
+ 00027879  0x00005ab2 rtn 
+ 00027880  0x00005ab5 set1  0x00000025 , 0x00000000 
+ 00027881  0x00005ab6 bpatch  0x000000c3 , 0x00004038 
+ 00027882  0x00005ab7 call  0x000052ef 
+ 00027883  0x00005ab8 setarg  0x00000004 
+ 00027884  0x00005ab9 istore  0x00000002 , 0x00000005 
+ 00027885  0x00005aba fetch  0x00000002 , 0x000042b3 
+ 00027886  0x00005abb istore  0x00000002 , 0x00000005 
+ 00027887  0x00005abc fetch  0x00000001 , 0x00000493 
+ 00027888  0x00005abd istore  0x00000001 , 0x00000005 
+ 00027889  0x00005abe setarg  0x0000013f 
+ 00027890  0x00005abf istore  0x00000002 , 0x00000005 
+ 00027891  0x00005ac0 fetch  0x00000001 , 0x00000496 
+ 00027892  0x00005ac1 istore  0x00000001 , 0x00000005 
+ 00027893  0x00005ac2 rtn 
+ 00027894  0x00005ac4 set1  0x00000025 , 0x00000000 
+ 00027895  0x00005ac5 bpatch  0x000000c4 , 0x00004038 
+ 00027896  0x00005ac6 call  0x000052e0 
+ 00027897  0x00005ac7 call  0x000052ef 
+ 00027898  0x00005ac8 setarg  0x00000004 
+ 00027899  0x00005ac9 istore  0x00000002 , 0x00000005 
+ 00027900  0x00005aca fetch  0x00000002 , 0x000042b3 
+ 00027901  0x00005acb istore  0x00000002 , 0x00000005 
+ 00027902  0x00005acc fetch  0x00000001 , 0x00000493 
+ 00027903  0x00005acd istore  0x00000001 , 0x00000005 
+ 00027904  0x00005ace setarg  0x00000173 
+ 00027905  0x00005acf istore  0x00000002 , 0x00000005 
+ 00027906  0x00005ad0 fetch  0x00000001 , 0x00000496 
+ 00027907  0x00005ad1 istore  0x00000001 , 0x00000005 
+ 00027908  0x00005ad2 rtn 
+ 00027909  0x00005ad4 set1  0x00000025 , 0x00000000 
+ 00027910  0x00005ad5 bpatch  0x000000c5 , 0x00004038 
+ 00027911  0x00005ad6 call  0x000052ef 
+ 00027912  0x00005ad7 setarg  0x0000000e 
+ 00027913  0x00005ad8 istore  0x00000002 , 0x00000005 
+ 00027914  0x00005ad9 fetch  0x00000002 , 0x000042b3 
+ 00027915  0x00005ada istore  0x00000002 , 0x00000005 
+ 00027916  0x00005adb fetch  0x00000001 , 0x00004751 
+ 00027917  0x00005adc lshift  0x0000003f , 0x0000003f 
+ 00027918  0x00005add set1  0x00000000 , 0x0000003f 
+ 00027919  0x00005ade istore  0x00000001 , 0x00000005 
+ 00027920  0x00005adf setarg  0x000015ef 
+ 00027921  0x00005ae0 istore  0x00000002 , 0x00000005 
+ 00027922  0x00005ae1 setarg  0x00001183 
+ 00027923  0x00005ae2 istore  0x00000002 , 0x00000005 
+ 00027924  0x00005ae3 copy  0x00000002 , 0x0000003f 
+ 00027925  0x00005ae4 istore  0x00000001 , 0x00000005 
+ 00027926  0x00005ae5 setarg  0x000000f0 
+ 00027927  0x00005ae6 istore  0x00000003 , 0x00000005 
+ 00027928  0x00005ae7 setarg  0x0000007f 
+ 00027929  0x00005ae8 istore  0x00000002 , 0x00000005 
+ 00027930  0x00005ae9 setarg  0x00000000 
+ 00027931  0x00005aea istore  0x00000001 , 0x00000005 
+ 00027932  0x00005aeb setarg  0x00000001 
+ 00027933  0x00005aec istore  0x00000001 , 0x00000005 
+ 00027934  0x00005aed call  0x00006b7c 
+ 00027935  0x00005aee istore  0x00000001 , 0x00000005 
+ 00027936  0x00005aef jam  0x00000010 , 0x00004757 
+ 00027937  0x00005af0 rtn 
+ 00027938  0x00005af2 set1  0x00000025 , 0x00000000 
+ 00027939  0x00005af3 bpatch  0x000000c6 , 0x00004038 
+ 00027940  0x00005af4 call  0x000052e0 
+ 00027941  0x00005af5 call  0x000052ef 
+ 00027942  0x00005af6 setarg  0x0000000e 
+ 00027943  0x00005af7 istore  0x00000002 , 0x00000005 
+ 00027944  0x00005af8 fetch  0x00000002 , 0x000042b3 
+ 00027945  0x00005af9 istore  0x00000002 , 0x00000005 
+ 00027946  0x00005afa fetch  0x00000001 , 0x00004751 
+ 00027947  0x00005afb lshift  0x0000003f , 0x0000003f 
+ 00027948  0x00005afc set1  0x00000000 , 0x0000003f 
+ 00027949  0x00005afd istore  0x00000001 , 0x00000005 
+ 00027950  0x00005afe setarg  0x000015ef 
+ 00027951  0x00005aff istore  0x00000002 , 0x00000005 
+ 00027952  0x00005b00 setarg  0x00001181 
+ 00027953  0x00005b01 istore  0x00000002 , 0x00000005 
+ 00027954  0x00005b02 fetch  0x00000001 , 0x0000474b 
+ 00027955  0x00005b03 istore  0x00000001 , 0x00000005 
+ 00027956  0x00005b04 setarg  0x000000e0 
+ 00027957  0x00005b05 istore  0x00000003 , 0x00000005 
+ 00027958  0x00005b06 setarg  0x0000007f 
+ 00027959  0x00005b07 istore  0x00000002 , 0x00000005 
+ 00027960  0x00005b08 setarg  0x00000000 
+ 00027961  0x00005b09 istore  0x00000001 , 0x00000005 
+ 00027962  0x00005b0a setarg  0x00000007 
+ 00027963  0x00005b0b istore  0x00000001 , 0x00000005 
+ 00027964  0x00005b0c call  0x00006b7c 
+ 00027965  0x00005b0d istore  0x00000001 , 0x00000005 
+ 00027966  0x00005b0e rtn 
+ 00027967  0x00005b10 set1  0x00000025 , 0x00000000 
+ 00027968  0x00005b11 bpatch  0x000000c7 , 0x00004038 
+ 00027969  0x00005b12 call  0x000052ef 
+ 00027970  0x00005b13 setarg  0x00000008 
+ 00027971  0x00005b14 istore  0x00000002 , 0x00000005 
+ 00027972  0x00005b15 fetch  0x00000002 , 0x000042b3 
+ 00027973  0x00005b16 istore  0x00000002 , 0x00000005 
+ 00027974  0x00005b17 fetch  0x00000001 , 0x00004751 
+ 00027975  0x00005b18 lshift  0x0000003f , 0x0000003f 
+ 00027976  0x00005b19 set1  0x00000000 , 0x0000003f 
+ 00027977  0x00005b1a istore  0x00000001 , 0x00000005 
+ 00027978  0x00005b1b setarg  0x000009ef 
+ 00027979  0x00005b1c istore  0x00000002 , 0x00000005 
+ 00027980  0x00005b1d setarg  0x000005e3 
+ 00027981  0x00005b1e istore  0x00000002 , 0x00000005 
+ 00027982  0x00005b1f copy  0x00000002 , 0x0000003f 
+ 00027983  0x00005b20 istore  0x00000001 , 0x00000005 
+ 00027984  0x00005b21 setarg  0x0000008d 
+ 00027985  0x00005b22 istore  0x00000001 , 0x00000005 
+ 00027986  0x00005b23 call  0x00006b7c 
+ 00027987  0x00005b24 istore  0x00000001 , 0x00000005 
+ 00027988  0x00005b25 rtn 
+ 00027989  0x00005b28 set1  0x00000025 , 0x00000000 
+ 00027990  0x00005b29 bpatch  0x000000c8 , 0x00004039 
+ 00027991  0x00005b2a call  0x000052e0 
+ 00027992  0x00005b2b call  0x000052ef 
+ 00027993  0x00005b2c setarg  0x00000008 
+ 00027994  0x00005b2d istore  0x00000002 , 0x00000005 
+ 00027995  0x00005b2e fetch  0x00000002 , 0x000042b3 
+ 00027996  0x00005b2f istore  0x00000002 , 0x00000005 
+ 00027997  0x00005b30 copy  0x00000002 , 0x0000000b 
+ 00027998  0x00005b31 fetch  0x00000001 , 0x00004751 
+ 00027999  0x00005b32 lshift  0x0000003f , 0x0000003f 
+ 00028000  0x00005b33 set1  0x00000000 , 0x0000003f 
+ 00028001  0x00005b34 istore  0x00000001 , 0x00000005 
+ 00028002  0x00005b35 setarg  0x000009ef 
+ 00028003  0x00005b36 istore  0x00000002 , 0x00000005 
+ 00028004  0x00005b37 setarg  0x000005e1 
+ 00028005  0x00005b38 istore  0x00000002 , 0x00000005 
+ 00028006  0x00005b39 copy  0x0000000b , 0x0000003f 
+ 00028007  0x00005b3a istore  0x00000001 , 0x00000005 
+ 00028008  0x00005b3b setarg  0x0000008d 
+ 00028009  0x00005b3c istore  0x00000001 , 0x00000005 
+ 00028010  0x00005b3d call  0x00006b7c 
+ 00028011  0x00005b3e istore  0x00000001 , 0x00000005 
+ 00028012  0x00005b3f rtn 
+ 00028013  0x00005b42 set1  0x00000025 , 0x00000000 
+ 00028014  0x00005b43 bpatch  0x000000c9 , 0x00004039 
+ 00028015  0x00005b44 fetch  0x00000001 , 0x00004757 
+ 00028016  0x00005b45 rtn  0x00000034 
+ 00028017  0x00005b46 hfetch  0x00000002 , 0x00008112 
+ 00028018  0x00005b47 nrtn  0x00000034 
+ 00028019  0x00005b48 copy  0x00000011 , 0x0000003f 
+ 00028020  0x00005b49 store  0x00000001 , 0x00000162 
+ 00028021  0x00005b4a storet  0x00000001 , 0x00000161 
+ 00028022  0x00005b4b call  0x0000527a 
+ 00028023  0x00005b4c nrtn  0x00000034 
+ 00028024  0x00005b4d call  0x000052e0 
+ 00028025  0x00005b4e call  0x000052ef 
+ 00028026  0x00005b4f setarg  0x00000005 
+ 00028027  0x00005b50 istore  0x00000002 , 0x00000005 
+ 00028028  0x00005b51 fetch  0x00000002 , 0x000042b3 
+ 00028029  0x00005b52 istore  0x00000002 , 0x00000005 
+ 00028030  0x00005b53 fetch  0x00000001 , 0x000004a5 
+ 00028031  0x00005b54 istore  0x00000001 , 0x00000005 
+ 00028032  0x00005b55 setarg  0x000001ff 
+ 00028033  0x00005b56 istore  0x00000002 , 0x00000005 
+ 00028034  0x00005b57 fetch  0x00000001 , 0x00004757 
+ 00028035  0x00005b58 istore  0x00000001 , 0x00000005 
+ 00028036  0x00005b59 fetch  0x00000001 , 0x00004754 
+ 00028037  0x00005b5a istore  0x00000001 , 0x00000005 
+ 00028038  0x00005b5b jam  0x00000000 , 0x00004757 
+ 00028039  0x00005b5c rtn 
+ 00028040  0x00005b5f fetch  0x00000002 , 0x00000497 
+ 00028041  0x00005b60 rtn  0x00000034 
+ 00028042  0x00005b61 fetch  0x00000001 , 0x00004757 
+ 00028043  0x00005b62 increase  0x00000001 , 0x0000003f 
+ 00028044  0x00005b63 store  0x00000001 , 0x00004757 
+ 00028045  0x00005b64 rtn 
+ 00028046  0x00005b67 set1  0x00000025 , 0x00000000 
+ 00028047  0x00005b68 bpatch  0x000000ca , 0x00004039 
+ 00028048  0x00005b69 fetch  0x00000002 , 0x00000497 
+ 00028049  0x00005b6a copy  0x0000003f , 0x00000039 
+ 00028050  0x00005b6b call  0x000068f7 
+ 00028051  0x00005b6c fetch  0x00000002 , 0x00000499 
+ 00028052  0x00005b6d copy  0x0000003f , 0x00000006 
+ 00028053  0x00005b6e call  0x00004976 
+ 00028054  0x00005b6f branch  0x000068fa 
+ 00028055  0x00005b72 set1  0x00000025 , 0x00000000 
+ 00028056  0x00005b73 bpatch  0x000000cb , 0x00004039 
+ 00028057  0x00005b75 fetch  0x00000001 , 0x00004756 
+ 00028058  0x00005b76 rtn  0x00000034 
+ 00028059  0x00005b77 increase  0xffffffff , 0x0000003f 
+ 00028060  0x00005b78 store  0x00000001 , 0x00004756 
+ 00028061  0x00005b79 fetch  0x00000002 , 0x0000474c 
+ 00028062  0x00005b7a fetcht  0x00000002 , 0x0000480e 
+ 00028063  0x00005b7b isub  0x00000002 , 0x0000003e 
+ 00028064  0x00005b7c branch  0x00006da2 , 0x00000002 
+ 00028065  0x00005b7d store  0x00000002 , 0x0000480e 
+ 00028066  0x00005b7f fetch  0x00000001 , 0x00004757 
+ 00028067  0x00005b80 branch  0x00006daa , 0x00000034 
+ 00028068  0x00005b81 jam  0x00000001 , 0x000004a8 
+ 00028069  0x00005b82 fetch  0x00000001 , 0x00004754 
+ 00028070  0x00005b83 store  0x00000001 , 0x000004a7 
+ 00028071  0x00005b84 setarg  0x000000ff 
+ 00028072  0x00005b85 store  0x00000001 , 0x000004a6 
+ 00028073  0x00005b86 branch  0x00006daf 
+ 00028074  0x00005b88 jam  0x00000000 , 0x000004a8 
+ 00028075  0x00005b89 fetch  0x00000001 , 0x00004753 
+ 00028076  0x00005b8a store  0x00000001 , 0x000004a7 
+ 00028077  0x00005b8b setarg  0x000000ef 
+ 00028078  0x00005b8c store  0x00000001 , 0x000004a6 
+ 00028079  0x00005b8e set1  0x00000025 , 0x00000000 
+ 00028080  0x00005b8f bpatch  0x000000cc , 0x00004039 
+ 00028081  0x00005b90 fetch  0x00000001 , 0x0000480e 
+ 00028082  0x00005b91 sub  0x0000003f , 0x0000007f , 0x0000003e 
+ 00028083  0x00005b92 branch  0x00006db7 , 0x00000002 
+ 00028084  0x00005b93 fetch  0x00000001 , 0x000004a8 
+ 00028085  0x00005b94 increase  0x00000001 , 0x0000003f 
+ 00028086  0x00005b95 store  0x00000001 , 0x000004a8 
+ 00028087  0x00005b97 call  0x00006bbf 
+ 00028088  0x00005b98 fetch  0x00000002 , 0x0000480e 
+ 00028089  0x00005b99 increase  0x00000008 , 0x0000003f 
+ 00028090  0x00005b9a fetcht  0x00000001 , 0x000004a8 
+ 00028091  0x00005b9b iadd  0x00000002 , 0x00000011 
+ 00028092  0x00005b9d call  0x00005248 
+ 00028093  0x00005b9e store  0x00000002 , 0x000002de 
+ 00028094  0x00005b9f increase  0x00000004 , 0x0000003f 
+ 00028095  0x00005ba0 store  0x00000002 , 0x000002e0 
+ 00028096  0x00005ba1 copy  0x0000003f , 0x00000005 
+ 00028097  0x00005ba2 fetch  0x00000001 , 0x000004a5 
+ 00028098  0x00005ba3 istore  0x00000001 , 0x00000005 
+ 00028099  0x00005ba4 fetch  0x00000001 , 0x000004a6 
+ 00028100  0x00005ba5 istore  0x00000001 , 0x00000005 
+ 00028101  0x00005ba6 call  0x00006dd8 
+ 00028102  0x00005ba7 call  0x00006de8 
+ 00028103  0x00005ba8 call  0x00007f6b 
+ 00028104  0x00005ba9 fetch  0x00000001 , 0x0000480e 
+ 00028105  0x00005baa copy  0x0000003f , 0x00000039 
+ 00028106  0x00005bab call  0x0000497c 
+ 00028107  0x00005bac fetch  0x00000001 , 0x000004a7 
+ 00028108  0x00005bad istore  0x00000001 , 0x00000005 
+ 00028109  0x00005bae fetch  0x00000002 , 0x000002de 
+ 00028110  0x00005baf copy  0x0000003f , 0x00000005 
+ 00028111  0x00005bb0 fetch  0x00000002 , 0x0000480e 
+ 00028112  0x00005bb1 fetcht  0x00000001 , 0x000004a8 
+ 00028113  0x00005bb2 iadd  0x00000002 , 0x0000003f 
+ 00028114  0x00005bb3 increase  0x00000004 , 0x0000003f 
+ 00028115  0x00005bb4 istore  0x00000002 , 0x00000005 
+ 00028116  0x00005bb5 fetch  0x00000002 , 0x000042b3 
+ 00028117  0x00005bb6 istore  0x00000002 , 0x00000005 
+ 00028118  0x00005bb7 jam  0x00000000 , 0x00004757 
+ 00028119  0x00005bb8 branch  0x0000428c 
+ 00028120  0x00005bbb fetch  0x00000002 , 0x0000480e 
+ 00028121  0x00005bbc sub  0x0000003f , 0x0000007f , 0x0000003e 
+ 00028122  0x00005bbd nbranch  0x00006ddf , 0x00000002 
+ 00028123  0x00005bbe lshift  0x0000003f , 0x0000003f 
+ 00028124  0x00005bbf set1  0x00000000 , 0x0000003f 
+ 00028125  0x00005bc0 istore  0x00000001 , 0x00000005 
+ 00028126  0x00005bc1 rtn 
+ 00028127  0x00005bc3 fetch  0x00000002 , 0x0000480e 
+ 00028128  0x00005bc4 rshift3  0x0000003f , 0x0000003f 
+ 00028129  0x00005bc5 rshift4  0x0000003f , 0x00000002 
+ 00028130  0x00005bc6 and_into  0x0000007f , 0x0000003f 
+ 00028131  0x00005bc7 lshift  0x0000003f , 0x0000003f 
+ 00028132  0x00005bc8 set0  0x00000000 , 0x0000003f 
+ 00028133  0x00005bc9 istore  0x00000001 , 0x00000005 
+ 00028134  0x00005bca istoret  0x00000001 , 0x00000005 
+ 00028135  0x00005bcb rtn 
+ 00028136  0x00005bcd fetch  0x00000001 , 0x00004757 
+ 00028137  0x00005bce rtn  0x00000034 
+ 00028138  0x00005bcf istore  0x00000001 , 0x00000005 
+ 00028139  0x00005bd0 rtn 
+ 00028140  0x00005bd6 set1  0x00000025 , 0x00000000 
+ 00028141  0x00005bd7 bpatch  0x0000009d , 0x00004033 
+ 00028142  0x00005bd8 call  0x00007c45 
+ 00028143  0x00005bd9 call  0x00003e73 
+ 00028144  0x00005bda call  0x00006235 
+ 00028145  0x00005bdc set1  0x00000025 , 0x00000000 
+ 00028146  0x00005bdd bpatch  0x0000009e , 0x00004033 
+ 00028147  0x00005bde call  0x00007813 
+ 00028148  0x00005bdf call  0x000077ee 
+ 00028149  0x00005be0 call  0x000077fe 
+ 00028150  0x00005be2 set1  0x00000025 , 0x00000000 
+ 00028151  0x00005be3 bpatch  0x0000009f , 0x00004033 
+ 00028152  0x00005be4 fetch  0x00000001 , 0x00004132 
+ 00028153  0x00005be5 rtneq  0x00000001 
+ 00028154  0x00005be7 call  0x0000527a 
+ 00028155  0x00005be8 nrtn  0x00000034 
+ 00028156  0x00005bea call  0x00004dcd 
+ 00028157  0x00005bec call  0x0000527a 
+ 00028158  0x00005bed nrtn  0x00000034 
+ 00028159  0x00005bee set1  0x00000025 , 0x00000000 
+ 00028160  0x00005bef bpatch  0x000000a0 , 0x00004034 
+ 00028161  0x00005bf1 call  0x00006e47 
+ 00028162  0x00005bf2 call  0x00004f6e 
+ 00028163  0x00005bf3 call  0x00006cd8 
+ 00028164  0x00005bf5 call  0x00006e0a 
+ 00028165  0x00005bf6 set1  0x00000025 , 0x00000000 
+ 00028166  0x00005bf7 bpatch  0x000000a1 , 0x00004034 
+ 00028167  0x00005bf8 call  0x0000527a 
+ 00028168  0x00005bf9 nrtn  0x00000034 
+ 00028169  0x00005bfa branch  0x00003e6f 
+ 00028170  0x00005bfd set1  0x00000025 , 0x00000000 
+ 00028171  0x00005bfe bpatch  0x000000a2 , 0x00004034 
+ 00028172  0x00005bff fetch  0x00000001 , 0x000002e6 
+ 00028173  0x00005c00 bbit1  0x00000000 , 0x0000508f 
+ 00028174  0x00005c01 bbit1  0x00000007 , 0x00005099 
+ 00028175  0x00005c02 rtn 
+ 00028176  0x00005c05 set1  0x00000025 , 0x00000000 
+ 00028177  0x00005c06 bpatch  0x000000a3 , 0x00004034 
+ 00028178  0x00005c07 call  0x0000527e 
+ 00028179  0x00005c08 rtn  0x00000034 
+ 00028180  0x00005c09 fetch  0x00000001 , 0x0000004b 
+ 00028181  0x00005c0a rtnbit1  0x00000006 
+ 00028182  0x00005c0b call  0x00005261 
+ 00028183  0x00005c0c store  0x00000002 , 0x00000179 
+ 00028184  0x00005c0d copy  0x0000003f , 0x00000006 
+ 00028185  0x00005c0e ifetch  0x00000002 , 0x00000006 
+ 00028186  0x00005c0f increase  0x00000004 , 0x0000003f 
+ 00028187  0x00005c10 store  0x00000002 , 0x00000091 
+ 00028188  0x00005c11 jam  0x00000006 , 0x00000090 
+ 00028189  0x00005c12 set1  0x00000025 , 0x00000000 
+ 00028190  0x00005c13 bpatch  0x000000a4 , 0x00004034 
+ 00028191  0x00005c14 fetch  0x00000002 , 0x000042af 
+ 00028192  0x00005c15 branch  0x00006e2d , 0x00000034 
+ 00028193  0x00005c16 fetch  0x00000001 , 0x0000004b 
+ 00028194  0x00005c17 rtnbit0  0x00000007 
+ 00028195  0x00005c18 set0  0x00000007 , 0x0000003f 
+ 00028196  0x00005c19 store  0x00000001 , 0x0000004b 
+ 00028197  0x00005c1a jam  0x00000005 , 0x00000090 
+ 00028198  0x00005c1b fetcht  0x00000002 , 0x000042af 
+ 00028199  0x00005c1c fetch  0x00000002 , 0x00000179 
+ 00028200  0x00005c1d iadd  0x00000002 , 0x0000003f 
+ 00028201  0x00005c1e store  0x00000002 , 0x00000179 
+ 00028202  0x00005c1f fetch  0x00000002 , 0x00000091 
+ 00028203  0x00005c20 isub  0x00000002 , 0x0000003f 
+ 00028204  0x00005c21 store  0x00000002 , 0x00000091 
+ 00028205  0x00005c23 set1  0x00000025 , 0x00000000 
+ 00028206  0x00005c24 bpatch  0x000000a5 , 0x00004034 
+ 00028207  0x00005c25 fetch  0x00000002 , 0x00000091 
+ 00028208  0x00005c26 branch  0x00003bf1 , 0x00000034 
+ 00028209  0x00005c27 arg  0x00000104 , 0x00000002 
+ 00028210  0x00005c28 isub  0x00000002 , 0x0000003f 
+ 00028211  0x00005c29 nbranch  0x00006e3b , 0x00000002 
+ 00028212  0x00005c2a set1  0x00000025 , 0x00000000 
+ 00028213  0x00005c2b bpatch  0x000000a6 , 0x00004034 
+ 00028214  0x00005c2c storet  0x00000002 , 0x00000091 
+ 00028215  0x00005c2d fetch  0x00000002 , 0x000042af 
+ 00028216  0x00005c2e iadd  0x00000002 , 0x0000003f 
+ 00028217  0x00005c2f store  0x00000002 , 0x000042af 
+ 00028218  0x00005c30 branch  0x00006e3d 
+ 00028219  0x00005c32 setarg  0x00000000 
+ 00028220  0x00005c33 store  0x00000002 , 0x000042af 
+ 00028221  0x00005c35 fetch  0x00000001 , 0x0000004b 
+ 00028222  0x00005c36 set1  0x00000006 , 0x0000003f 
+ 00028223  0x00005c37 store  0x00000001 , 0x0000004b 
+ 00028224  0x00005c38 rtn 
+ 00028225  0x00005c3b fetch  0x00000001 , 0x000047f6 
+ 00028226  0x00005c3c bbit1  0x00000000 , 0x00006e45 
+ 00028227  0x00005c3d jam  0x00000001 , 0x000002ee 
+ 00028228  0x00005c3e rtn 
+ 00028229  0x00005c40 jam  0x0000000f , 0x000002ee 
+ 00028230  0x00005c41 rtn 
+ 00028231  0x00005c44 fetch  0x00000001 , 0x000047f3 
+ 00028232  0x00005c45 nbranch  0x00006e4d , 0x00000034 
+ 00028233  0x00005c47 fetch  0x00000001 , 0x000002ed 
+ 00028234  0x00005c49 rtn  0x00000034 
+ 00028235  0x00005c4b jam  0x00000000 , 0x000002ed 
+ 00028236  0x00005c4d rtn 
+ 00028237  0x00005c51 set1  0x00000025 , 0x00000000 
+ 00028238  0x00005c52 bpatch  0x000000a7 , 0x00004034 
+ 00028239  0x00005c53 fetch  0x00000001 , 0x000002ee 
+ 00028240  0x00005c54 rtn  0x00000034 
+ 00028241  0x00005c55 beq  0x00000001 , 0x00006e6e 
+ 00028242  0x00005c56 beq  0x00000002 , 0x00006ec7 
+ 00028243  0x00005c57 beq  0x00000003 , 0x00006e74 
+ 00028244  0x00005c58 beq  0x00000004 , 0x00006ecb 
+ 00028245  0x00005c59 beq  0x0000003b , 0x00006e7e 
+ 00028246  0x00005c5a beq  0x0000003c , 0x00006ece 
+ 00028247  0x00005c5b beq  0x0000000d , 0x00006e83 
+ 00028248  0x00005c5c beq  0x0000000e , 0x00006ed3 
+ 00028249  0x00005c5d beq  0x0000000f , 0x00006e86 
+ 00028250  0x00005c5e beq  0x00000010 , 0x00006ed9 
+ 00028251  0x00005c5f beq  0x00000011 , 0x00006e8c 
+ 00028252  0x00005c60 beq  0x00000012 , 0x00006edd 
+ 00028253  0x00005c61 beq  0x00000013 , 0x00006e92 
+ 00028254  0x00005c62 beq  0x00000014 , 0x00006ee1 
+ 00028255  0x00005c63 beq  0x00000015 , 0x00006e98 
+ 00028256  0x00005c64 beq  0x00000016 , 0x00006ee5 
+ 00028257  0x00005c65 beq  0x00000017 , 0x00006e9e 
+ 00028258  0x00005c66 beq  0x00000018 , 0x00006eea 
+ 00028259  0x00005c67 beq  0x00000019 , 0x00006ea4 
+ 00028260  0x00005c68 beq  0x0000001a , 0x00006eee 
+ 00028261  0x00005c69 beq  0x0000001b , 0x00006eaa 
+ 00028262  0x00005c6a beq  0x0000001c , 0x00006ef2 
+ 00028263  0x00005c6b beq  0x0000001d , 0x00006eb0 
+ 00028264  0x00005c6c beq  0x0000001e , 0x00006ef7 
+ 00028265  0x00005c6d beq  0x0000001f , 0x00006eb6 
+ 00028266  0x00005c6e beq  0x00000020 , 0x00006efb 
+ 00028267  0x00005c6f beq  0x00000021 , 0x00006ec1 
+ 00028268  0x00005c70 beq  0x00000022 , 0x00006eff 
+ 00028269  0x00005c72 rtn 
+ 00028270  0x00005c74 call  0x00006f0a 
+ 00028271  0x00005c75 jam  0x00000002 , 0x000002ee 
+ 00028272  0x00005c76 fetch  0x00000001 , 0x000042b9 
+ 00028273  0x00005c77 set1  0x00000000 , 0x0000003f 
+ 00028274  0x00005c78 store  0x00000001 , 0x000042b9 
+ 00028275  0x00005c79 rtn 
+ 00028276  0x00005c7b jam  0x00000004 , 0x000002ee 
+ 00028277  0x00005c7c fetch  0x00000001 , 0x000042b9 
+ 00028278  0x00005c7d rtnbit1  0x00000002 
+ 00028279  0x00005c7e jam  0x00000003 , 0x000002ee 
+ 00028280  0x00005c7f call  0x00006f12 
+ 00028281  0x00005c80 jam  0x00000004 , 0x000002ee 
+ 00028282  0x00005c81 fetch  0x00000001 , 0x000042b9 
+ 00028283  0x00005c82 set1  0x00000002 , 0x0000003f 
+ 00028284  0x00005c83 store  0x00000001 , 0x000042b9 
+ 00028285  0x00005c84 rtn 
+ 00028286  0x00005c86 call  0x0000527e 
+ 00028287  0x00005c87 nrtn  0x00000034 
+ 00028288  0x00005c88 call  0x00006f23 
+ 00028289  0x00005c89 jam  0x0000003c , 0x000002ee 
+ 00028290  0x00005c8a rtn 
+ 00028291  0x00005c8c call  0x00006f18 
+ 00028292  0x00005c8d jam  0x0000000e , 0x000002ee 
+ 00028293  0x00005c8e rtn 
+ 00028294  0x00005c90 call  0x00006f36 
+ 00028295  0x00005c91 jam  0x00000010 , 0x000002ee 
+ 00028296  0x00005c92 fetch  0x00000001 , 0x000042bb 
+ 00028297  0x00005c93 set1  0x00000000 , 0x0000003f 
+ 00028298  0x00005c94 store  0x00000001 , 0x000042bb 
+ 00028299  0x00005c95 rtn 
+ 00028300  0x00005c97 call  0x00006f3e 
+ 00028301  0x00005c98 jam  0x00000012 , 0x000002ee 
+ 00028302  0x00005c99 fetch  0x00000001 , 0x000042bb 
+ 00028303  0x00005c9a set1  0x00000002 , 0x0000003f 
+ 00028304  0x00005c9b store  0x00000001 , 0x000042bb 
+ 00028305  0x00005c9c rtn 
+ 00028306  0x00005c9e call  0x00006f44 
+ 00028307  0x00005c9f jam  0x00000014 , 0x000002ee 
+ 00028308  0x00005ca0 fetch  0x00000001 , 0x000042bc 
+ 00028309  0x00005ca1 set1  0x00000000 , 0x0000003f 
+ 00028310  0x00005ca2 store  0x00000001 , 0x000042bc 
+ 00028311  0x00005ca3 rtn 
+ 00028312  0x00005ca5 call  0x00006f4c 
+ 00028313  0x00005ca6 jam  0x00000016 , 0x000002ee 
+ 00028314  0x00005ca7 fetch  0x00000001 , 0x000042bc 
+ 00028315  0x00005ca8 set1  0x00000002 , 0x0000003f 
+ 00028316  0x00005ca9 store  0x00000001 , 0x000042bc 
+ 00028317  0x00005caa rtn 
+ 00028318  0x00005cac call  0x00006f28 
+ 00028319  0x00005cad jam  0x00000018 , 0x000002ee 
+ 00028320  0x00005cae fetch  0x00000001 , 0x000042ba 
+ 00028321  0x00005caf set1  0x00000000 , 0x0000003f 
+ 00028322  0x00005cb0 store  0x00000001 , 0x000042ba 
+ 00028323  0x00005cb1 rtn 
+ 00028324  0x00005cb3 call  0x00006f30 
+ 00028325  0x00005cb4 jam  0x0000001a , 0x000002ee 
+ 00028326  0x00005cb5 fetch  0x00000001 , 0x000042ba 
+ 00028327  0x00005cb6 set1  0x00000002 , 0x0000003f 
+ 00028328  0x00005cb7 store  0x00000001 , 0x000042ba 
+ 00028329  0x00005cb8 rtn 
+ 00028330  0x00005cba call  0x00006f52 
+ 00028331  0x00005cbb jam  0x0000001c , 0x000002ee 
+ 00028332  0x00005cbc fetch  0x00000001 , 0x000042ba 
+ 00028333  0x00005cbd set1  0x00000006 , 0x0000003f 
+ 00028334  0x00005cbe store  0x00000001 , 0x000042ba 
+ 00028335  0x00005cbf rtn 
+ 00028336  0x00005cc1 call  0x00006f5a 
+ 00028337  0x00005cc2 fetch  0x00000001 , 0x000042bd 
+ 00028338  0x00005cc3 set1  0x00000000 
+ 00028339  0x00005cc4 store  0x00000001 , 0x000042bd 
+ 00028340  0x00005cc5 jam  0x0000001e , 0x000002ee 
+ 00028341  0x00005cc6 rtn 
+ 00028342  0x00005cc8 call  0x00006f61 
+ 00028343  0x00005cc9 fetch  0x00000001 , 0x000042bd 
+ 00028344  0x00005cca set1  0x00000002 
+ 00028345  0x00005ccb store  0x00000001 , 0x000042bd 
+ 00028346  0x00005ccc jam  0x00000020 , 0x000002ee 
+ 00028347  0x00005ccd fetch  0x00000001 , 0x00004752 
+ 00028348  0x00005cce lshift3  0x0000003f , 0x0000003f 
+ 00028349  0x00005ccf or_into  0x00000003 , 0x0000003f 
+ 00028350  0x00005cd0 arg  0x00004753 , 0x00000002 
+ 00028351  0x00005cd1 storet  0x00000002 , 0x0000048f 
+ 00028352  0x00005cd2 branch  0x00006b82 
+ 00028353  0x00005cd4 call  0x00006f6c 
+ 00028354  0x00005cd5 fetch  0x00000001 , 0x000042bd 
+ 00028355  0x00005cd6 set1  0x00000004 
+ 00028356  0x00005cd7 store  0x00000001 , 0x000042bd 
+ 00028357  0x00005cd8 jam  0x00000022 , 0x000002ee 
+ 00028358  0x00005cd9 rtn 
+ 00028359  0x00005cdc fetch  0x00000001 , 0x000042b9 
+ 00028360  0x00005cdd rtnbit0  0x00000001 
+ 00028361  0x00005cde jam  0x00000003 , 0x000002ee 
+ 00028362  0x00005cdf branch  0x00006e4d 
+ 00028363  0x00005ce1 fetch  0x00000001 , 0x000042b9 
+ 00028364  0x00005ce2 rtnne  0x0000003f 
+ 00028365  0x00005ce3 jam  0x0000003b , 0x000002ee 
+ 00028366  0x00005ce5 fetch  0x00000001 , 0x000002ec 
+ 00028367  0x00005ce6 rtnne  0x00000017 
+ 00028368  0x00005ce7 jam  0x00000000 , 0x000002ec 
+ 00028369  0x00005ce8 jam  0x0000000d , 0x000002ee 
+ 00028370  0x00005ce9 branch  0x00006e4d 
+ 00028371  0x00005ceb fetch  0x00000001 , 0x000042b9 
+ 00028372  0x00005cec nrtn  0x00000034 
+ 00028373  0x00005ced fetch  0x00000001 , 0x000047f6 
+ 00028374  0x00005cee bbit1  0x00000000 , 0x00006f02 
+ 00028375  0x00005cef bbit1  0x00000006 , 0x00006f04 
+ 00028376  0x00005cf0 branch  0x00006f08 
+ 00028377  0x00005cf2 fetch  0x00000001 , 0x000042bb 
+ 00028378  0x00005cf3 rtnbit0  0x00000001 
+ 00028379  0x00005cf4 jam  0x00000011 , 0x000002ee 
+ 00028380  0x00005cf5 branch  0x00006e4d 
+ 00028381  0x00005cf7 fetch  0x00000001 , 0x000042bb 
+ 00028382  0x00005cf8 rtnne  0x0000003f 
+ 00028383  0x00005cf9 jam  0x00000013 , 0x000002ee 
+ 00028384  0x00005cfa branch  0x00006e4d 
+ 00028385  0x00005cfc fetch  0x00000001 , 0x000042bc 
+ 00028386  0x00005cfd rtnbit0  0x00000001 
+ 00028387  0x00005cfe jam  0x00000015 , 0x000002ee 
+ 00028388  0x00005cff branch  0x00006e4d 
+ 00028389  0x00005d01 fetch  0x00000001 , 0x000042bc 
+ 00028390  0x00005d02 rtnne  0x0000003f 
+ 00028391  0x00005d03 fetch  0x00000001 , 0x000047f6 
+ 00028392  0x00005d04 bbit1  0x00000006 , 0x00006f04 
+ 00028393  0x00005d05 branch  0x00006f08 
+ 00028394  0x00005d07 fetch  0x00000001 , 0x000042ba 
+ 00028395  0x00005d08 rtnbit0  0x00000001 
+ 00028396  0x00005d09 jam  0x00000019 , 0x000002ee 
+ 00028397  0x00005d0a branch  0x00006e4d 
+ 00028398  0x00005d0c fetch  0x00000001 , 0x000042ba 
+ 00028399  0x00005d0d rtnne  0x0000003f 
+ 00028400  0x00005d0e jam  0x0000001b , 0x000002ee 
+ 00028401  0x00005d0f branch  0x00006e4d 
+ 00028402  0x00005d11 fetch  0x00000001 , 0x000042ba 
+ 00028403  0x00005d12 rtnne  0x000000ff 
+ 00028404  0x00005d13 fetch  0x00000001 , 0x000047f6 
+ 00028405  0x00005d14 bbit1  0x00000006 , 0x00006f06 
+ 00028406  0x00005d15 branch  0x00006f08 
+ 00028407  0x00005d17 fetch  0x00000001 , 0x000042bd 
+ 00028408  0x00005d18 rtnbit0  0x00000001 
+ 00028409  0x00005d19 jam  0x0000001f , 0x000002ee 
+ 00028410  0x00005d1a branch  0x00006e4d 
+ 00028411  0x00005d1c fetch  0x00000001 , 0x000042bd 
+ 00028412  0x00005d1d rtnbit0  0x00000003 
+ 00028413  0x00005d1e jam  0x00000021 , 0x000002ee 
+ 00028414  0x00005d1f branch  0x00006e4d 
+ 00028415  0x00005d21 fetch  0x00000001 , 0x000042bd 
+ 00028416  0x00005d22 rtnne  0x000000ff 
+ 00028417  0x00005d23 branch  0x00006f08 
+ 00028418  0x00005d26 jam  0x0000000f , 0x000002ee 
+ 00028419  0x00005d27 branch  0x00006e4d 
+ 00028420  0x00005d2a jam  0x00000017 , 0x000002ee 
+ 00028421  0x00005d2b branch  0x00006e4d 
+ 00028422  0x00005d2d jam  0x0000001d , 0x000002ee 
+ 00028423  0x00005d2e branch  0x00006e4d 
+ 00028424  0x00005d33 jam  0x00000000 , 0x000002ee 
+ 00028425  0x00005d34 rtn 
+ 00028426  0x00005d36 set1  0x00000025 , 0x00000000 
+ 00028427  0x00005d37 bpatch  0x000000a8 , 0x00004035 
+ 00028428  0x00005d38 call  0x000052c4 
+ 00028429  0x00005d39 setarg  0x00000001 
+ 00028430  0x00005d3a copy  0x0000003f , 0x00000002 
+ 00028431  0x00005d3b setarg  0x00000050 
+ 00028432  0x00005d3c copy  0x0000003f , 0x0000000b 
+ 00028433  0x00005d3d branch  0x000050b0 
+ 00028434  0x00005d40 set1  0x00000025 , 0x00000000 
+ 00028435  0x00005d41 bpatch  0x000000a9 , 0x00004035 
+ 00028436  0x00005d42 call  0x000052c4 
+ 00028437  0x00005d43 fetch  0x00000002 , 0x000042b1 
+ 00028438  0x00005d44 copy  0x0000003f , 0x00000002 
+ 00028439  0x00005d45 branch  0x000050c0 
+ 00028440  0x00005d48 set1  0x00000025 , 0x00000000 
+ 00028441  0x00005d49 bpatch  0x000000aa , 0x00004035 
+ 00028442  0x00005d4a call  0x000052c4 
+ 00028443  0x00005d4b fetch  0x00000002 , 0x000042b1 
+ 00028444  0x00005d4c copy  0x0000003f , 0x00000002 
+ 00028445  0x00005d4d arg  0x00000050 , 0x0000000b 
+ 00028446  0x00005d4e call  0x000050d6 
+ 00028447  0x00005d4f fetch  0x00000001 , 0x000042b9 
+ 00028448  0x00005d50 set0  0x00000005 , 0x0000003f 
+ 00028449  0x00005d51 store  0x00000001 , 0x000042b9 
+ 00028450  0x00005d52 rtn 
+ 00028451  0x00005d55 set1  0x00000025 , 0x00000000 
+ 00028452  0x00005d56 bpatch  0x000000ab , 0x00004035 
+ 00028453  0x00005d57 call  0x000052d2 
+ 00028454  0x00005d58 call  0x000071b0 
+ 00028455  0x00005d59 branch  0x000050f2 
+ 00028456  0x00005d5c set1  0x00000025 , 0x00000000 
+ 00028457  0x00005d5d bpatch  0x000000ac , 0x00004035 
+ 00028458  0x00005d5e call  0x000052c4 
+ 00028459  0x00005d5f setarg  0x00000003 
+ 00028460  0x00005d60 copy  0x0000003f , 0x00000002 
+ 00028461  0x00005d61 setarg  0x00000051 
+ 00028462  0x00005d62 copy  0x0000003f , 0x0000000b 
+ 00028463  0x00005d63 branch  0x000050b0 
+ 00028464  0x00005d66 set1  0x00000025 , 0x00000000 
+ 00028465  0x00005d67 bpatch  0x000000ad , 0x00004035 
+ 00028466  0x00005d68 call  0x000052c4 
+ 00028467  0x00005d69 fetch  0x00000002 , 0x000042b3 
+ 00028468  0x00005d6a copy  0x0000003f , 0x00000002 
+ 00028469  0x00005d6b branch  0x000050c0 
+ 00028470  0x00005d6e set1  0x00000025 , 0x00000000 
+ 00028471  0x00005d6f bpatch  0x000000ae , 0x00004035 
+ 00028472  0x00005d70 call  0x000052c4 
+ 00028473  0x00005d71 setarg  0x00000011 
+ 00028474  0x00005d72 copy  0x0000003f , 0x00000002 
+ 00028475  0x00005d73 setarg  0x00000052 
+ 00028476  0x00005d74 copy  0x0000003f , 0x0000000b 
+ 00028477  0x00005d75 branch  0x000050b0 
+ 00028478  0x00005d78 set1  0x00000025 , 0x00000000 
+ 00028479  0x00005d79 bpatch  0x000000af , 0x00004035 
+ 00028480  0x00005d7a call  0x000052c4 
+ 00028481  0x00005d7b fetch  0x00000002 , 0x000042b5 
+ 00028482  0x00005d7c copy  0x0000003f , 0x00000002 
+ 00028483  0x00005d7d branch  0x000050c0 
+ 00028484  0x00005d80 set1  0x00000025 , 0x00000000 
+ 00028485  0x00005d81 bpatch  0x000000b0 , 0x00004036 
+ 00028486  0x00005d82 call  0x000052c4 
+ 00028487  0x00005d83 setarg  0x00000013 
+ 00028488  0x00005d84 copy  0x0000003f , 0x00000002 
+ 00028489  0x00005d85 setarg  0x00000053 
+ 00028490  0x00005d86 copy  0x0000003f , 0x0000000b 
+ 00028491  0x00005d87 branch  0x000050b0 
+ 00028492  0x00005d8a set1  0x00000025 , 0x00000000 
+ 00028493  0x00005d8b bpatch  0x000000b1 , 0x00004036 
+ 00028494  0x00005d8c call  0x000052c4 
+ 00028495  0x00005d8d fetch  0x00000002 , 0x000042b7 
+ 00028496  0x00005d8e copy  0x0000003f , 0x00000002 
+ 00028497  0x00005d8f branch  0x000050c0 
+ 00028498  0x00005d92 set1  0x00000025 , 0x00000000 
+ 00028499  0x00005d93 bpatch  0x000000b2 , 0x00004036 
+ 00028500  0x00005d94 call  0x000052e0 
+ 00028501  0x00005d96 jam  0x00000003 , 0x00000493 
+ 00028502  0x00005d97 jam  0x0000001c , 0x00000496 
+ 00028503  0x00005d98 call  0x00006ce8 
+ 00028504  0x00005d99 jam  0x00000001 , 0x00004751 
+ 00028505  0x00005d9a rtn 
+ 00028506  0x00005d9d set1  0x00000025 , 0x00000000 
+ 00028507  0x00005d9e bpatch  0x000000b3 , 0x00004036 
+ 00028508  0x00005d9f call  0x000052e0 
+ 00028509  0x00005da0 fetcht  0x00000001 , 0x00004752 
+ 00028510  0x00005da1 call  0x00006bcb 
+ 00028511  0x00005da2 storet  0x00000001 , 0x0000474b 
+ 00028512  0x00005da3 branch  0x00006d05 
+ 00028513  0x00005da6 set1  0x00000025 , 0x00000000 
+ 00028514  0x00005da7 bpatch  0x000000b4 , 0x00004036 
+ 00028515  0x00005da8 call  0x000052e0 
+ 00028516  0x00005da9 fetcht  0x00000001 , 0x0000474b 
+ 00028517  0x00005daa call  0x00006bc0 
+ 00028518  0x00005dab call  0x00006b67 
+ 00028519  0x00005dac store  0x00000001 , 0x00000496 
+ 00028520  0x00005dad fetcht  0x00000001 , 0x0000474b 
+ 00028521  0x00005dae call  0x00006bc0 
+ 00028522  0x00005daf storet  0x00000001 , 0x00000493 
+ 00028523  0x00005db0 branch  0x00006ce8 
+ 00028524  0x00005db3 set1  0x00000025 , 0x00000000 
+ 00028525  0x00005db4 bpatch  0x000000b5 , 0x00004036 
+ 00028526  0x00005db5 call  0x000052e0 
+ 00028527  0x00005db6 fetcht  0x00000001 , 0x0000474b 
+ 00028528  0x00005db7 call  0x00006bc0 
+ 00028529  0x00005db8 branch  0x00006d3f 
+ 00028530  0x00005dc6 set1  0x00000025 , 0x00000000 
+ 00028531  0x00005dc7 bpatch  0x000000e7 , 0x0000403c 
+ 00028532  0x00005dc8 fetch  0x00000002 , 0x000002cb 
+ 00028533  0x00005dc9 iforce  0x00000006 
+ 00028534  0x00005dca ifetch  0x00000001 , 0x00000006 
+ 00028535  0x00005dcb copy  0x0000003f , 0x00000012 
+ 00028536  0x00005dcc store  0x00000001 , 0x000004af 
+ 00028537  0x00005dcd ifetch  0x00000002 , 0x00000006 
+ 00028538  0x00005dce store  0x00000002 , 0x000004b0 
+ 00028539  0x00005dcf ifetch  0x00000001 , 0x00000006 
+ 00028540  0x00005dd0 lshift8  0x0000003f , 0x0000000b 
+ 00028541  0x00005dd1 ifetch  0x00000001 , 0x00000006 
+ 00028542  0x00005dd2 iadd  0x0000000b , 0x0000000b 
+ 00028543  0x00005dd3 set1  0x00000025 , 0x00000000 
+ 00028544  0x00005dd4 bpatch  0x000000e8 , 0x0000403d 
+ 00028545  0x00005dd5 deposit  0x00000012 
+ 00028546  0x00005dd6 beq  0x00000002 , 0x00006f87 
+ 00028547  0x00005dd7 beq  0x00000004 , 0x00006fb0 
+ 00028548  0x00005dd8 beq  0x00000006 , 0x0000708b 
+ 00028549  0x00005dd9 beq  0x00000007 , 0x000071c7 
+ 00028550  0x00005dda branch  0x0000723e 
+ 00028551  0x00005de6 call  0x0000724d 
+ 00028552  0x00005de7 compare  0x00000001 , 0x00000002 , 0x000000ff 
+ 00028553  0x00005de8 branch  0x000072bb , 0x00000001 
+ 00028554  0x00005de9 compare  0x000000ff , 0x00000002 , 0x000000ff 
+ 00028555  0x00005dea branch  0x00007241 , 0x00000001 
+ 00028556  0x00005dec ifetch  0x00000002 , 0x00000006 
+ 00028557  0x00005ded store  0x00000002 , 0x000004b4 
+ 00028558  0x00005dee increase  0xfffffffe , 0x0000000b 
+ 00028559  0x00005df0 increase  0xffffffff , 0x0000000b 
+ 00028560  0x00005df1 nbranch  0x0000723b , 0x00000005 
+ 00028561  0x00005df2 arg  0x000004a9 , 0x0000000b 
+ 00028562  0x00005df3 ifetch  0x00000002 , 0x0000000b 
+ 00028563  0x00005df4 rtn  0x00000034 
+ 00028564  0x00005df5 increase  0x00000002 , 0x0000000b 
+ 00028565  0x00005df6 call  0x00007307 
+ 00028566  0x00005df7 call  0x000052de 
+ 00028567  0x00005df8 force  0x00000003 , 0x0000003f 
+ 00028568  0x00005df9 istore  0x00000001 , 0x00000005 
+ 00028569  0x00005dfa fetch  0x00000002 , 0x000004b0 
+ 00028570  0x00005dfb istore  0x00000002 , 0x00000005 
+ 00028571  0x00005dfc lshift2  0x00000007 , 0x0000003f 
+ 00028572  0x00005dfd add  0x0000003f , 0x00000005 , 0x0000003f 
+ 00028573  0x00005dfe add  0x0000003f , 0x00000005 , 0x00000013 
+ 00028574  0x00005dff byteswap  0x0000003f , 0x0000003f 
+ 00028575  0x00005e00 istore  0x00000002 , 0x00000005 
+ 00028576  0x00005e01 deposit  0x00000007 
+ 00028577  0x00005e02 byteswap  0x0000003f , 0x0000003f 
+ 00028578  0x00005e03 istore  0x00000002 , 0x00000005 
+ 00028579  0x00005e04 istore  0x00000002 , 0x00000005 
+ 00028580  0x00005e05 arg  0x000004c5 , 0x00000006 
+ 00028581  0x00005e06 copy  0x00000007 , 0x00000039 
+ 00028582  0x00005e07 branch  0x00006faa , 0x00000005 
+ 00028583  0x00005e09 ifetch  0x00000004 , 0x00000006 
+ 00028584  0x00005e0a istore  0x00000004 , 0x00000005 
+ 00028585  0x00005e0b loop  0x00006fa7 
+ 00028586  0x00005e0d force  0x00000000 , 0x0000003f 
+ 00028587  0x00005e0e istore  0x00000001 , 0x00000005 
+ 00028588  0x00005e0f deposit  0x00000013 
+ 00028589  0x00005e10 store  0x00000001 , 0x000002dc 
+ 00028590  0x00005e11 branch  0x00003bf1 , 0x00000034 
+ 00028591  0x00005e12 rtn 
+ 00028592  0x00005e1e ifetch  0x00000004 , 0x00000006 
+ 00028593  0x00005e1f store  0x00000004 , 0x000004be 
+ 00028594  0x00005e20 increase  0xfffffffc , 0x0000000b 
+ 00028595  0x00005e21 iforce  0x00000002 
+ 00028596  0x00005e22 ifetch  0x00000002 , 0x00000006 
+ 00028597  0x00005e23 byteswap  0x0000003f , 0x0000003f 
+ 00028598  0x00005e24 increase  0xffffffee , 0x0000003f 
+ 00028599  0x00005e25 store  0x00000002 , 0x000004b2 
+ 00028600  0x00005e26 increase  0xfffffffe , 0x0000000b 
+ 00028601  0x00005e27 call  0x000072a4 
+ 00028602  0x00005e28 branch  0x00007241 , 0x00000005 
+ 00028603  0x00005e29 compare  0x00000005 , 0x00000011 , 0x000000ff 
+ 00028604  0x00005e2b branch  0x00006fc0 , 0x00000001 
+ 00028605  0x00005e2d arg  0x00000491 , 0x00000005 
+ 00028606  0x00005e2e force  0x00000000 , 0x00000007 
+ 00028607  0x00005e2f branch  0x00006fd0 
+ 00028608  0x00005e31 ifetch  0x00000001 , 0x00000006 
+ 00028609  0x00005e32 bne  0x0000000a , 0x00007241 
+ 00028610  0x00005e33 ifetch  0x00000002 , 0x00000006 
+ 00028611  0x00005e34 nbranch  0x00006fce , 0x00000034 
+ 00028612  0x00005e35 ifetch  0x00000001 , 0x00000006 
+ 00028613  0x00005e36 bne  0x000000ff , 0x00006fcc 
+ 00028614  0x00005e37 ifetch  0x00000001 , 0x00000006 
+ 00028615  0x00005e38 bne  0x000000ff , 0x00006fca 
+ 00028616  0x00005e39 increase  0xfffffffb , 0x00000006 
+ 00028617  0x00005e3a branch  0x00007022 
+ 00028618  0x00005e3c increase  0xfffffffb , 0x00000006 
+ 00028619  0x00005e3d branch  0x00006fbd 
+ 00028620  0x00005e3f increase  0xfffffffc , 0x00000006 
+ 00028621  0x00005e40 branch  0x00006fbd 
+ 00028622  0x00005e42 increase  0xfffffffd , 0x00000006 
+ 00028623  0x00005e43 branch  0x00006fbd 
+ 00028624  0x00005e45 ifetch  0x00000001 , 0x00000006 
+ 00028625  0x00005e46 beq  0x00000009 , 0x00006fe5 
+ 00028626  0x00005e47 beq  0x0000000a , 0x00006fd3 
+ 00028627  0x00005e49 ifetch  0x00000002 , 0x00000006 
+ 00028628  0x00005e4a istore  0x00000002 , 0x00000005 
+ 00028629  0x00005e4b increase  0x00000001 , 0x00000007 
+ 00028630  0x00005e4c byteswap  0x0000003f , 0x00000012 
+ 00028631  0x00005e4d ifetch  0x00000002 , 0x00000006 
+ 00028632  0x00005e4e byteswap  0x0000003f , 0x0000003f 
+ 00028633  0x00005e50 increase  0x00000001 , 0x00000012 
+ 00028634  0x00005e51 isub  0x00000012 , 0x0000003e 
+ 00028635  0x00005e52 nbranch  0x00006fe2 , 0x00000002 
+ 00028636  0x00005e53 copy  0x0000003f , 0x00000013 
+ 00028637  0x00005e54 byteswap  0x00000012 , 0x0000003f 
+ 00028638  0x00005e55 istore  0x00000002 , 0x00000005 
+ 00028639  0x00005e56 increase  0x00000001 , 0x00000007 
+ 00028640  0x00005e57 copy  0x00000013 , 0x0000003f 
+ 00028641  0x00005e58 branch  0x00006fd9 
+ 00028642  0x00005e5a increase  0xfffffffb , 0x0000000b 
+ 00028643  0x00005e5b increase  0xfffffffb , 0x00000011 
+ 00028644  0x00005e5c branch  0x00006fea 
+ 00028645  0x00005e5e ifetch  0x00000002 , 0x00000006 
+ 00028646  0x00005e5f istore  0x00000002 , 0x00000005 
+ 00028647  0x00005e60 increase  0x00000001 , 0x00000007 
+ 00028648  0x00005e61 increase  0xfffffffd , 0x0000000b 
+ 00028649  0x00005e62 increase  0xfffffffd , 0x00000011 
+ 00028650  0x00005e64 nbranch  0x00007241 , 0x00000002 
+ 00028651  0x00005e65 nbranch  0x00006fd0 , 0x00000005 
+ 00028652  0x00005e66 increase  0xffffffff , 0x0000000b 
+ 00028653  0x00005e67 nbranch  0x00007241 , 0x00000005 
+ 00028654  0x00005e69 call  0x000052de 
+ 00028655  0x00005e6a increase  0x0000000a , 0x00000005 
+ 00028656  0x00005e6b arg  0x00000491 , 0x00000011 
+ 00028657  0x00005e6d copy  0x00000007 , 0x0000003f 
+ 00028658  0x00005e6e branch  0x00007004 , 0x00000034 
+ 00028659  0x00005e6f ifetch  0x00000002 , 0x00000011 
+ 00028660  0x00005e70 branch  0x00007004 , 0x00000034 
+ 00028661  0x00005e71 iforce  0x00000012 
+ 00028662  0x00005e72 fetch  0x00000004 , 0x000004be 
+ 00028663  0x00005e73 iforce  0x00000002 
+ 00028664  0x00005e74 call  0x0000734e 
+ 00028665  0x00005e75 branch  0x00007001 , 0x00000034 
+ 00028666  0x00005e76 increase  0xfffffffd , 0x00000006 
+ 00028667  0x00005e77 ifetch  0x00000003 , 0x00000006 
+ 00028668  0x00005e78 istore  0x00000003 , 0x00000005 
+ 00028669  0x00005e79 call  0x00007199 
+ 00028670  0x00005e7a branch  0x00007001 , 0x00000034 
+ 00028671  0x00005e7b iforce  0x00000039 
+ 00028672  0x00005e7c call  0x00007e45 
+ 00028673  0x00005e7e increase  0x00000002 , 0x00000011 
+ 00028674  0x00005e7f increase  0xffffffff , 0x00000007 
+ 00028675  0x00005e80 branch  0x00006ff1 
+ 00028676  0x00005e83 force  0x00000000 , 0x0000003f 
+ 00028677  0x00005e84 istore  0x00000001 , 0x00000005 
+ 00028678  0x00005e85 increase  0xffffffff , 0x00000005 
+ 00028679  0x00005e86 fetcht  0x00000002 , 0x000002da 
+ 00028680  0x00005e87 add  0x00000002 , 0x0000000a , 0x0000003f 
+ 00028681  0x00005e88 isub  0x00000005 , 0x0000003f 
+ 00028682  0x00005e89 sub  0x0000003f , 0x00000000 , 0x00000011 
+ 00028683  0x00005e8a byteswap  0x00000011 , 0x0000003f 
+ 00028684  0x00005e8b add  0x00000002 , 0x00000008 , 0x00000012 
+ 00028685  0x00005e8c istore  0x00000002 , 0x00000012 
+ 00028686  0x00005e8d increase  0x00000003 , 0x00000011 
+ 00028687  0x00005e8e byteswap  0x00000011 , 0x0000003f 
+ 00028688  0x00005e8f add  0x00000002 , 0x00000005 , 0x00000012 
+ 00028689  0x00005e90 istore  0x00000002 , 0x00000012 
+ 00028690  0x00005e91 increase  0x00000003 , 0x00000011 
+ 00028691  0x00005e92 byteswap  0x00000011 , 0x0000003f 
+ 00028692  0x00005e93 add  0x00000002 , 0x00000003 , 0x00000012 
+ 00028693  0x00005e94 istore  0x00000002 , 0x00000012 
+ 00028694  0x00005e95 increase  0x00000005 , 0x00000011 
+ 00028695  0x00005e96 copy  0x00000011 , 0x0000003f 
+ 00028696  0x00005e97 store  0x00000002 , 0x000002dc 
+ 00028697  0x00005e98 setarg  0x00000036 
+ 00028698  0x00005e99 add  0x00000002 , 0x00000007 , 0x00000012 
+ 00028699  0x00005e9a istore  0x00000001 , 0x00000012 
+ 00028700  0x00005e9b setarg  0x00000005 
+ 00028701  0x00005e9c istore  0x00000001 , 0x00000002 
+ 00028702  0x00005e9d fetch  0x00000002 , 0x000004b0 
+ 00028703  0x00005e9e add  0x00000002 , 0x00000001 , 0x00000012 
+ 00028704  0x00005e9f istore  0x00000002 , 0x00000012 
+ 00028705  0x00005ea0 rtn 
+ 00028706  0x00005ea2 ifetch  0x00000001 , 0x00000006 
+ 00028707  0x00005ea3 bne  0x0000000a , 0x00007241 
+ 00028708  0x00005ea4 ifetch  0x00000002 , 0x00000006 
+ 00028709  0x00005ea5 nbranch  0x00007241 , 0x00000034 
+ 00028710  0x00005ea6 ifetch  0x00000001 , 0x00000006 
+ 00028711  0x00005ea7 bne  0x000000ff , 0x00007241 
+ 00028712  0x00005ea8 ifetch  0x00000001 , 0x00000006 
+ 00028713  0x00005ea9 bne  0x000000ff , 0x00007241 
+ 00028714  0x00005eaa increase  0xfffffffb , 0x0000000b 
+ 00028715  0x00005eab ifetch  0x00000001 , 0x00000006 
+ 00028716  0x00005eac beq  0x00000000 , 0x0000702f 
+ 00028717  0x00005ead beq  0x00000001 , 0x00007032 
+ 00028718  0x00005eae beq  0x00000002 , 0x00007036 
+ 00028719  0x00005eb0 store  0x00000002 , 0x000004ad 
+ 00028720  0x00005eb1 increase  0xffffffff , 0x0000000b 
+ 00028721  0x00005eb2 branch  0x0000703a 
+ 00028722  0x00005eb4 ifetch  0x00000001 , 0x00000006 
+ 00028723  0x00005eb5 store  0x00000002 , 0x000004ad 
+ 00028724  0x00005eb6 increase  0xfffffffe , 0x0000000b 
+ 00028725  0x00005eb7 branch  0x0000703a 
+ 00028726  0x00005eb9 ifetch  0x00000002 , 0x00000006 
+ 00028727  0x00005eba byteswap  0x0000003f , 0x0000003f 
+ 00028728  0x00005ebb store  0x00000002 , 0x000004ad 
+ 00028729  0x00005ebc increase  0xfffffffd , 0x0000000b 
+ 00028730  0x00005ebe nbranch  0x0000723b , 0x00000005 
+ 00028731  0x00005ebf call  0x0000731e 
+ 00028732  0x00005ec0 nbranch  0x00007238 , 0x00000005 
+ 00028733  0x00005ec1 copy  0x00000006 , 0x00000011 
+ 00028734  0x00005ec2 call  0x000052de 
+ 00028735  0x00005ec3 copy  0x00000011 , 0x00000006 
+ 00028736  0x00005ec4 increase  0x00000003 , 0x00000005 
+ 00028737  0x00005ec5 copy  0x00000006 , 0x0000000b 
+ 00028738  0x00005ec6 call  0x000072e8 
+ 00028739  0x00005ec7 copy  0x0000003f , 0x00000011 
+ 00028740  0x00005ec8 fetch  0x00000002 , 0x000004ad 
+ 00028741  0x00005ec9 copy  0x0000003f , 0x00000012 
+ 00028742  0x00005eca copy  0x00000011 , 0x0000003f 
+ 00028743  0x00005ecb isub  0x00000012 , 0x00000012 
+ 00028744  0x00005ecc fetch  0x00000002 , 0x000004b2 
+ 00028745  0x00005ecd isub  0x00000012 , 0x0000003e 
+ 00028746  0x00005ece nbranch  0x00007066 , 0x00000002 
+ 00028747  0x00005ed0 disable  0x00000028 
+ 00028748  0x00005ed1 fetch  0x00000002 , 0x000004ad 
+ 00028749  0x00005ed2 branch  0x00007059 , 0x00000034 
+ 00028750  0x00005ed3 iadd  0x0000000b , 0x00000006 
+ 00028751  0x00005ed4 increase  0x00000003 , 0x00000012 
+ 00028752  0x00005ed5 copy  0x00000012 , 0x00000039 
+ 00028753  0x00005ed6 copy  0x00000039 , 0x0000003f 
+ 00028754  0x00005ed7 increase  0x00000003 , 0x0000003f 
+ 00028755  0x00005ed8 byteswap  0x0000003f , 0x0000003f 
+ 00028756  0x00005ed9 istore  0x00000002 , 0x00000005 
+ 00028757  0x00005eda copy  0x00000039 , 0x0000003f 
+ 00028758  0x00005edb byteswap  0x0000003f , 0x0000003f 
+ 00028759  0x00005edc istore  0x00000002 , 0x00000005 
+ 00028760  0x00005edd branch  0x00007074 
+ 00028761  0x00005edf add  0x00000011 , 0x00000006 , 0x00000039 
+ 00028762  0x00005ee0 branch  0x0000705d , 0x00000028 
+ 00028763  0x00005ee1 byteswap  0x00000039 , 0x0000003f 
+ 00028764  0x00005ee2 branch  0x00007060 
+ 00028765  0x00005ee4 copy  0x00000039 , 0x0000003f 
+ 00028766  0x00005ee5 increase  0x00000002 , 0x0000003f 
+ 00028767  0x00005ee6 byteswap  0x0000003f , 0x0000003f 
+ 00028768  0x00005ee8 istore  0x00000002 , 0x00000005 
+ 00028769  0x00005ee9 increase  0xfffffffd , 0x00000039 
+ 00028770  0x00005eea byteswap  0x00000039 , 0x0000003f 
+ 00028771  0x00005eeb istore  0x00000002 , 0x00000005 
+ 00028772  0x00005eec copy  0x0000000b , 0x00000006 
+ 00028773  0x00005eed branch  0x00007074 
+ 00028774  0x00005eef enable  0x00000028 
+ 00028775  0x00005ef0 fetch  0x00000002 , 0x000004b2 
+ 00028776  0x00005ef1 copy  0x0000003f , 0x00000011 
+ 00028777  0x00005ef2 copy  0x0000003f , 0x00000039 
+ 00028778  0x00005ef3 fetch  0x00000002 , 0x000004ad 
+ 00028779  0x00005ef4 branch  0x00007059 , 0x00000034 
+ 00028780  0x00005ef5 iadd  0x0000000b , 0x00000006 
+ 00028781  0x00005ef6 copy  0x00000011 , 0x0000003f 
+ 00028782  0x00005ef7 increase  0x00000005 , 0x0000003f 
+ 00028783  0x00005ef8 byteswap  0x0000003f , 0x0000003f 
+ 00028784  0x00005ef9 istore  0x00000002 , 0x00000005 
+ 00028785  0x00005efa copy  0x00000011 , 0x0000003f 
+ 00028786  0x00005efb byteswap  0x0000003f , 0x0000003f 
+ 00028787  0x00005efc istore  0x00000002 , 0x00000005 
+ 00028788  0x00005efe ifetch  0x00000001 , 0x00000006 
+ 00028789  0x00005eff istore  0x00000001 , 0x00000005 
+ 00028790  0x00005f00 loop  0x00007074 
+ 00028791  0x00005f01 nbranch  0x0000707f , 0x00000028 
+ 00028792  0x00005f02 force  0x00000002 , 0x0000003f 
+ 00028793  0x00005f03 istore  0x00000001 , 0x00000005 
+ 00028794  0x00005f04 copy  0x00000006 , 0x0000003f 
+ 00028795  0x00005f05 isub  0x0000000b , 0x0000003f 
+ 00028796  0x00005f06 byteswap  0x0000003f , 0x0000003f 
+ 00028797  0x00005f07 istore  0x00000002 , 0x00000005 
+ 00028798  0x00005f08 branch  0x00007081 
+ 00028799  0x00005f0a force  0x00000000 , 0x0000003f 
+ 00028800  0x00005f0b istore  0x00000001 , 0x00000005 
+ 00028801  0x00005f0d fetch  0x00000002 , 0x000002da 
+ 00028802  0x00005f0e isub  0x00000005 , 0x0000003f 
+ 00028803  0x00005f0f sub  0x0000003f , 0x00000000 , 0x0000003f 
+ 00028804  0x00005f10 store  0x00000002 , 0x000002dc 
+ 00028805  0x00005f11 call  0x000052de 
+ 00028806  0x00005f12 setarg  0x00000005 
+ 00028807  0x00005f13 istore  0x00000001 , 0x00000005 
+ 00028808  0x00005f14 fetch  0x00000002 , 0x000004b0 
+ 00028809  0x00005f15 istore  0x00000002 , 0x00000005 
+ 00028810  0x00005f16 rtn 
+ 00028811  0x00005f23 call  0x0000724d 
+ 00028812  0x00005f24 compare  0x000000ff , 0x00000002 , 0x000000ff 
+ 00028813  0x00005f25 branch  0x000070b4 , 0x00000001 
+ 00028814  0x00005f26 ifetch  0x00000002 , 0x00000006 
+ 00028815  0x00005f27 store  0x00000002 , 0x000004b2 
+ 00028816  0x00005f28 increase  0xfffffffe , 0x0000000b 
+ 00028817  0x00005f29 call  0x000072a4 
+ 00028818  0x00005f2a arg  0x00000491 , 0x00000005 
+ 00028819  0x00005f2b force  0x00000000 , 0x00000007 
+ 00028820  0x00005f2d ifetch  0x00000003 , 0x00000006 
+ 00028821  0x00005f2e bne  0x00000009 , 0x000070b4 
+ 00028822  0x00005f30 rshift8  0x0000003f , 0x0000003f 
+ 00028823  0x00005f31 istore  0x00000002 , 0x00000005 
+ 00028824  0x00005f32 increase  0x00000001 , 0x00000007 
+ 00028825  0x00005f33 increase  0xfffffffd , 0x0000000b 
+ 00028826  0x00005f34 increase  0xfffffffd , 0x00000011 
+ 00028827  0x00005f35 nbranch  0x00007241 , 0x00000002 
+ 00028828  0x00005f36 nbranch  0x00007094 , 0x00000005 
+ 00028829  0x00005f37 increase  0xffffffff , 0x0000000b 
+ 00028830  0x00005f38 nbranch  0x00007241 , 0x00000005 
+ 00028831  0x00005f3a call  0x000052de 
+ 00028832  0x00005f3b increase  0x0000000d , 0x00000005 
+ 00028833  0x00005f3c fetch  0x00000002 , 0x000004a9 
+ 00028834  0x00005f3d iforce  0x00000013 
+ 00028835  0x00005f3e arg  0x00000491 , 0x00000011 
+ 00028836  0x00005f40 ifetch  0x00000004 , 0x00000011 
+ 00028837  0x00005f41 branch  0x000070c4 , 0x00000034 
+ 00028838  0x00005f42 ifetch  0x00000002 , 0x00000011 
+ 00028839  0x00005f43 iforce  0x00000012 
+ 00028840  0x00005f44 call  0x0000732a 
+ 00028841  0x00005f45 branch  0x000070b2 , 0x00000034 
+ 00028842  0x00005f46 increase  0xfffffffd , 0x00000006 
+ 00028843  0x00005f47 ifetch  0x00000003 , 0x00000006 
+ 00028844  0x00005f48 istore  0x00000003 , 0x00000005 
+ 00028845  0x00005f49 call  0x00007199 
+ 00028846  0x00005f4a iforce  0x00000039 
+ 00028847  0x00005f4c ifetch  0x00000001 , 0x00000006 
+ 00028848  0x00005f4d istore  0x00000001 , 0x00000005 
+ 00028849  0x00005f4e loop  0x000070af 
+ 00028850  0x00005f50 increase  0x00000002 , 0x00000011 
+ 00028851  0x00005f51 branch  0x000070a4 
+ 00028852  0x00005f56 ifetch  0x00000001 , 0x00000006 
+ 00028853  0x00005f58 ifetch  0x00000001 , 0x00000006 
+ 00028854  0x00005f5a increase  0xfffffffb , 0x0000000b 
+ 00028855  0x00005f5b increase  0xfffffffb , 0x00000011 
+ 00028856  0x00005f5c nbranch  0x00007241 , 0x00000002 
+ 00028857  0x00005f5d arg  0x000004a9 , 0x0000000b 
+ 00028858  0x00005f5e ifetch  0x00000002 , 0x0000000b 
+ 00028859  0x00005f60 increase  0x00000002 , 0x0000000b 
+ 00028860  0x00005f61 call  0x00007307 
+ 00028861  0x00005f62 deposit  0x00000007 
+ 00028862  0x00005f63 store  0x00000001 , 0x000004dd 
+ 00028863  0x00005f64 branch  0x000072be , 0x00000034 
+ 00028864  0x00005f65 arg  0x00000000 , 0x00000007 
+ 00028865  0x00005f66 call  0x000052de 
+ 00028866  0x00005f67 increase  0x0000000a , 0x00000005 
+ 00028867  0x00005f68 branch  0x00007108 
+ 00028868  0x00005f6a force  0x00000000 , 0x0000003f 
+ 00028869  0x00005f6b istore  0x00000001 , 0x00000005 
+ 00028870  0x00005f6c increase  0xffffffff , 0x00000005 
+ 00028871  0x00005f6d fetcht  0x00000002 , 0x000002da 
+ 00028872  0x00005f6e add  0x00000002 , 0x0000000d , 0x0000003f 
+ 00028873  0x00005f6f isub  0x00000005 , 0x0000003f 
+ 00028874  0x00005f70 branch  0x000070e8 , 0x00000005 
+ 00028875  0x00005f71 sub  0x0000003f , 0x00000000 , 0x0000003f 
+ 00028876  0x00005f72 add  0x00000002 , 0x0000000c , 0x00000012 
+ 00028877  0x00005f73 istore  0x00000001 , 0x00000012 
+ 00028878  0x00005f74 increase  0x00000003 , 0x0000003f 
+ 00028879  0x00005f75 add  0x00000002 , 0x00000009 , 0x00000012 
+ 00028880  0x00005f76 istore  0x00000001 , 0x00000012 
+ 00028881  0x00005f77 increase  0x00000003 , 0x0000003f 
+ 00028882  0x00005f78 byteswap  0x0000003f , 0x0000003f 
+ 00028883  0x00005f79 add  0x00000002 , 0x00000005 , 0x00000012 
+ 00028884  0x00005f7a istore  0x00000002 , 0x00000012 
+ 00028885  0x00005f7b rshift8  0x0000003f , 0x0000003f 
+ 00028886  0x00005f7c increase  0x00000003 , 0x0000003f 
+ 00028887  0x00005f7d byteswap  0x0000003f , 0x0000003f 
+ 00028888  0x00005f7e add  0x00000002 , 0x00000003 , 0x00000012 
+ 00028889  0x00005f7f istore  0x00000002 , 0x00000012 
+ 00028890  0x00005f80 rshift8  0x0000003f , 0x0000003f 
+ 00028891  0x00005f81 increase  0x00000005 , 0x0000003f 
+ 00028892  0x00005f82 store  0x00000001 , 0x000002dc 
+ 00028893  0x00005f84 fetch  0x00000002 , 0x000004b0 
+ 00028894  0x00005f85 add  0x00000002 , 0x00000001 , 0x00000012 
+ 00028895  0x00005f86 istore  0x00000002 , 0x00000012 
+ 00028896  0x00005f87 setarg  0x00000007 
+ 00028897  0x00005f88 istore  0x00000001 , 0x00000002 
+ 00028898  0x00005f8d setarg  0x00000036 
+ 00028899  0x00005f8e add  0x00000002 , 0x00000007 , 0x00000012 
+ 00028900  0x00005f8f istore  0x00000002 , 0x00000012 
+ 00028901  0x00005f90 add  0x00000002 , 0x0000000a , 0x00000012 
+ 00028902  0x00005f91 istore  0x00000002 , 0x00000012 
+ 00028903  0x00005f92 rtn 
+ 00028904  0x00005f94 jam  0x0000000a , 0x000002dc 
+ 00028905  0x00005f95 call  0x000052de 
+ 00028906  0x00005f97 setarg  0x00000007 
+ 00028907  0x00005f98 istore  0x00000001 , 0x00000005 
+ 00028908  0x00005f99 fetch  0x00000002 , 0x000004b0 
+ 00028909  0x00005f9a istore  0x00000002 , 0x00000005 
+ 00028910  0x00005f9e setarg  0x00000500 
+ 00028911  0x00005f9f istore  0x00000002 , 0x00000005 
+ 00028912  0x00005fa2 setarg  0x00000200 
+ 00028913  0x00005fa3 istore  0x00000002 , 0x00000005 
+ 00028914  0x00005fa7 setarg  0x00000035 
+ 00028915  0x00005fa8 istore  0x00000003 , 0x00000005 
+ 00028916  0x00005fa9 rtn 
+ 00028917  0x00005fac ifetch  0x00000001 , 0x00000006 
+ 00028918  0x00005fad istore  0x00000001 , 0x00000005 
+ 00028919  0x00005fae increase  0x00000001 , 0x00000012 
+ 00028920  0x00005faf increase  0xffffffff , 0x00000011 
+ 00028921  0x00005fb0 branch  0x000070fb , 0x00000005 
+ 00028922  0x00005fb1 loop  0x000070f5 
+ 00028923  0x00005fb3 copy  0x00000005 , 0x0000000b 
+ 00028924  0x00005fb4 copy  0x00000012 , 0x0000003f 
+ 00028925  0x00005fb5 store  0x00000002 , 0x000004ad 
+ 00028926  0x00005fb6 copy  0x00000011 , 0x0000003f 
+ 00028927  0x00005fb7 store  0x00000002 , 0x000004b2 
+ 00028928  0x00005fb8 branch  0x00007117 , 0x00000034 
+ 00028929  0x00005fb9 branch  0x00007152 , 0x00000028 
+ 00028930  0x00005fba copy  0x0000000b , 0x00000005 
+ 00028931  0x00005fbc increase  0x00000001 , 0x00000007 
+ 00028932  0x00005fbd fetch  0x00000001 , 0x000004dd 
+ 00028933  0x00005fbe isub  0x00000007 , 0x0000003e 
+ 00028934  0x00005fbf nbranch  0x00007108 , 0x00000005 
+ 00028935  0x00005fc0 branch  0x00007171 
+ 00028936  0x00005fc2 arg  0x000004c5 , 0x00000006 
+ 00028937  0x00005fc3 lshift2  0x00000007 , 0x0000003f 
+ 00028938  0x00005fc4 iadd  0x00000006 , 0x00000006 
+ 00028939  0x00005fc5 ifetch  0x00000004 , 0x00000006 
+ 00028940  0x00005fc6 iforce  0x00000002 
+ 00028941  0x00005fc7 call  0x0000731e 
+ 00028942  0x00005fc8 copy  0x00000006 , 0x0000000b 
+ 00028943  0x00005fc9 call  0x000072e8 
+ 00028944  0x00005fca add  0x0000003f , 0x00000003 , 0x00000039 
+ 00028945  0x00005fcb fetch  0x00000002 , 0x000004b2 
+ 00028946  0x00005fcc copy  0x0000003f , 0x00000011 
+ 00028947  0x00005fcd fetch  0x00000002 , 0x000004ad 
+ 00028948  0x00005fce copy  0x0000003f , 0x00000012 
+ 00028949  0x00005fcf copy  0x0000000b , 0x00000006 
+ 00028950  0x00005fd0 branch  0x000070f5 
+ 00028951  0x00005fd2 arg  0x00000000 , 0x00000007 
+ 00028952  0x00005fd3 arg  0x00000000 , 0x00000012 
+ 00028953  0x00005fd5 arg  0x000004c5 , 0x00000006 
+ 00028954  0x00005fd6 lshift2  0x00000007 , 0x0000003f 
+ 00028955  0x00005fd7 iadd  0x00000006 , 0x00000006 
+ 00028956  0x00005fd8 ifetch  0x00000004 , 0x00000006 
+ 00028957  0x00005fd9 iforce  0x00000002 
+ 00028958  0x00005fda call  0x0000731e 
+ 00028959  0x00005fdb call  0x000072e8 
+ 00028960  0x00005fdc add  0x0000003f , 0x00000003 , 0x0000003f 
+ 00028961  0x00005fdd iadd  0x00000012 , 0x00000012 
+ 00028962  0x00005fde increase  0x00000001 , 0x00000007 
+ 00028963  0x00005fdf fetch  0x00000001 , 0x000004dd 
+ 00028964  0x00005fe0 isub  0x00000007 , 0x0000003e 
+ 00028965  0x00005fe1 nbranch  0x00007119 , 0x00000005 
+ 00028966  0x00005fe3 copy  0x0000000b , 0x00000005 
+ 00028967  0x00005fe4 force  0x00000002 , 0x0000003f 
+ 00028968  0x00005fe5 istore  0x00000001 , 0x00000005 
+ 00028969  0x00005fe6 fetch  0x00000002 , 0x000004ad 
+ 00028970  0x00005fe7 byteswap  0x0000003f , 0x0000003f 
+ 00028971  0x00005fe8 istore  0x00000002 , 0x00000005 
+ 00028972  0x00005fe9 increase  0xfffffffd , 0x00000005 
+ 00028973  0x00005fea fetcht  0x00000002 , 0x000002da 
+ 00028974  0x00005feb add  0x00000002 , 0x0000000a , 0x0000003f 
+ 00028975  0x00005fec isub  0x00000005 , 0x0000003f 
+ 00028976  0x00005fed sub  0x0000003f , 0x00000000 , 0x0000003f 
+ 00028977  0x00005fee iforce  0x00000011 
+ 00028978  0x00005ff0 deposit  0x00000012 
+ 00028979  0x00005ff1 add  0x00000002 , 0x00000009 , 0x00000012 
+ 00028980  0x00005ff2 istore  0x00000001 , 0x00000012 
+ 00028981  0x00005ff3 rshift8  0x0000003f , 0x0000003f 
+ 00028982  0x00005ff4 add  0x00000002 , 0x00000008 , 0x00000012 
+ 00028983  0x00005ff5 istore  0x00000001 , 0x00000012 
+ 00028984  0x00005ff6 increase  0x00000003 , 0x00000011 
+ 00028985  0x00005ff7 deposit  0x00000011 
+ 00028986  0x00005ff8 add  0x00000002 , 0x00000006 , 0x00000012 
+ 00028987  0x00005ff9 istore  0x00000001 , 0x00000012 
+ 00028988  0x00005ffa rshift8  0x0000003f , 0x0000003f 
+ 00028989  0x00005ffb add  0x00000002 , 0x00000005 , 0x00000012 
+ 00028990  0x00005ffc istore  0x00000001 , 0x00000012 
+ 00028991  0x00005ffd increase  0x00000005 , 0x00000011 
+ 00028992  0x00005ffe deposit  0x00000011 
+ 00028993  0x00005fff add  0x00000002 , 0x00000004 , 0x00000012 
+ 00028994  0x00006000 istore  0x00000001 , 0x00000012 
+ 00028995  0x00006001 rshift8  0x0000003f , 0x0000003f 
+ 00028996  0x00006002 add  0x00000002 , 0x00000003 , 0x00000012 
+ 00028997  0x00006003 istore  0x00000001 , 0x00000012 
+ 00028998  0x00006004 increase  0x00000005 , 0x00000011 
+ 00028999  0x00006005 deposit  0x00000011 
+ 00029000  0x00006006 store  0x00000002 , 0x000002dc 
+ 00029001  0x00006007 setarg  0x00000007 
+ 00029002  0x00006008 istore  0x00000001 , 0x00000002 
+ 00029003  0x00006009 setarg  0x00000036 
+ 00029004  0x0000600a add  0x00000002 , 0x00000007 , 0x00000012 
+ 00029005  0x0000600b istore  0x00000001 , 0x00000012 
+ 00029006  0x0000600c add  0x00000002 , 0x00000001 , 0x00000012 
+ 00029007  0x0000600d fetch  0x00000002 , 0x000004b0 
+ 00029008  0x0000600e istore  0x00000002 , 0x00000012 
+ 00029009  0x0000600f rtn 
+ 00029010  0x00006011 copy  0x0000000b , 0x00000005 
+ 00029011  0x00006012 force  0x00000000 , 0x0000003f 
+ 00029012  0x00006013 istore  0x00000001 , 0x00000005 
+ 00029013  0x00006014 increase  0xffffffff , 0x00000005 
+ 00029014  0x00006015 fetcht  0x00000002 , 0x000002da 
+ 00029015  0x00006016 add  0x00000002 , 0x00000007 , 0x0000003f 
+ 00029016  0x00006017 isub  0x00000005 , 0x0000003f 
+ 00029017  0x00006018 sub  0x0000003f , 0x00000000 , 0x0000003f 
+ 00029018  0x00006019 iforce  0x00000011 
+ 00029019  0x0000601b deposit  0x00000011 
+ 00029020  0x0000601c add  0x00000002 , 0x00000006 , 0x00000012 
+ 00029021  0x0000601d istore  0x00000001 , 0x00000012 
+ 00029022  0x0000601e rshift8  0x0000003f , 0x0000003f 
+ 00029023  0x0000601f add  0x00000002 , 0x00000005 , 0x00000012 
+ 00029024  0x00006020 istore  0x00000001 , 0x00000012 
+ 00029025  0x00006021 increase  0x00000003 , 0x00000011 
+ 00029026  0x00006022 deposit  0x00000011 
+ 00029027  0x00006023 add  0x00000002 , 0x00000004 , 0x00000012 
+ 00029028  0x00006024 istore  0x00000001 , 0x00000012 
+ 00029029  0x00006025 rshift8  0x0000003f , 0x0000003f 
+ 00029030  0x00006026 add  0x00000002 , 0x00000003 , 0x00000012 
+ 00029031  0x00006027 istore  0x00000001 , 0x00000012 
+ 00029032  0x00006028 increase  0x00000005 , 0x00000011 
+ 00029033  0x00006029 deposit  0x00000011 
+ 00029034  0x0000602a store  0x00000002 , 0x000002dc 
+ 00029035  0x0000602c setarg  0x00000007 
+ 00029036  0x0000602d istore  0x00000001 , 0x00000002 
+ 00029037  0x0000602f fetch  0x00000002 , 0x000004b0 
+ 00029038  0x00006030 add  0x00000002 , 0x00000001 , 0x00000012 
+ 00029039  0x00006031 istore  0x00000002 , 0x00000012 
+ 00029040  0x00006032 rtn 
+ 00029041  0x00006035 force  0x00000000 , 0x0000003f 
+ 00029042  0x00006036 istore  0x00000001 , 0x00000005 
+ 00029043  0x00006037 increase  0xffffffff , 0x00000005 
+ 00029044  0x00006038 fetcht  0x00000002 , 0x000002da 
+ 00029045  0x00006039 add  0x00000002 , 0x0000000a , 0x0000003f 
+ 00029046  0x0000603a isub  0x00000005 , 0x0000003f 
+ 00029047  0x0000603b sub  0x0000003f , 0x00000000 , 0x0000003f 
+ 00029048  0x0000603c iforce  0x00000011 
+ 00029049  0x0000603e deposit  0x00000011 
+ 00029050  0x0000603f add  0x00000002 , 0x00000009 , 0x00000012 
+ 00029051  0x00006040 istore  0x00000001 , 0x00000012 
+ 00029052  0x00006041 rshift8  0x0000003f , 0x0000003f 
+ 00029053  0x00006042 add  0x00000002 , 0x00000008 , 0x00000012 
+ 00029054  0x00006043 istore  0x00000001 , 0x00000012 
+ 00029055  0x00006045 increase  0x00000003 , 0x00000011 
+ 00029056  0x00006046 deposit  0x00000011 
+ 00029057  0x00006047 add  0x00000002 , 0x00000006 , 0x00000012 
+ 00029058  0x00006048 istore  0x00000001 , 0x00000012 
+ 00029059  0x00006049 rshift8  0x0000003f , 0x0000003f 
+ 00029060  0x0000604a add  0x00000002 , 0x00000005 , 0x00000012 
+ 00029061  0x0000604b istore  0x00000001 , 0x00000012 
+ 00029062  0x0000604c increase  0x00000003 , 0x00000011 
+ 00029063  0x0000604d deposit  0x00000011 
+ 00029064  0x0000604e add  0x00000002 , 0x00000004 , 0x00000012 
+ 00029065  0x0000604f istore  0x00000001 , 0x00000012 
+ 00029066  0x00006050 rshift8  0x0000003f , 0x0000003f 
+ 00029067  0x00006051 add  0x00000002 , 0x00000003 , 0x00000012 
+ 00029068  0x00006052 istore  0x00000001 , 0x00000012 
+ 00029069  0x00006053 increase  0x00000005 , 0x00000011 
+ 00029070  0x00006054 deposit  0x00000011 
+ 00029071  0x00006055 store  0x00000002 , 0x000002dc 
+ 00029072  0x00006056 setarg  0x00000036 
+ 00029073  0x00006057 add  0x00000002 , 0x00000007 , 0x00000012 
+ 00029074  0x00006058 istore  0x00000001 , 0x00000012 
+ 00029075  0x00006059 setarg  0x00000007 
+ 00029076  0x0000605a istore  0x00000001 , 0x00000002 
+ 00029077  0x0000605b fetch  0x00000002 , 0x000004b0 
+ 00029078  0x0000605c add  0x00000002 , 0x00000001 , 0x00000012 
+ 00029079  0x0000605d istore  0x00000002 , 0x00000012 
+ 00029080  0x0000605e rtn 
+ 00029081  0x00006060 copy  0x00000006 , 0x0000000b 
+ 00029082  0x00006061 ifetch  0x00000001 , 0x00000006 
+ 00029083  0x00006062 and  0x0000003f , 0x00000007 , 0x00000039 
+ 00029084  0x00006063 rshift3  0x0000003f , 0x0000003f 
+ 00029085  0x00006064 beq  0x00000006 , 0x000071a2 
+ 00029086  0x00006065 beq  0x00000001 , 0x000072e0 
+ 00029087  0x00006066 beq  0x00000004 , 0x000072e5 
+ 00029088  0x00006067 beq  0x00000005 , 0x000072e3 
+ 00029089  0x00006068 branch  0x000072de 
+ 00029090  0x0000606a call  0x000071a4 
+ 00029091  0x0000606b branch  0x000072de 
+ 00029092  0x0000606d deposit  0x00000039 
+ 00029093  0x0000606e beq  0x00000005 , 0x000071a9 
+ 00029094  0x0000606f beq  0x00000006 , 0x000071ac 
+ 00029095  0x00006070 force  0x00000003 , 0x00000039 
+ 00029096  0x00006071 branch  0x000072ef 
+ 00029097  0x00006073 ifetch  0x00000001 , 0x00000006 
+ 00029098  0x00006074 increase  0x00000002 , 0x0000003f 
+ 00029099  0x00006075 rtn 
+ 00029100  0x00006077 ifetch  0x00000002 , 0x00000006 
+ 00029101  0x00006078 byteswap  0x0000003f , 0x0000003f 
+ 00029102  0x00006079 increase  0x00000003 , 0x0000003f 
+ 00029103  0x0000607a rtn 
+ 00029104  0x0000607d call  0x000052de 
+ 00029105  0x0000607e copy  0x0000003f , 0x00000005 
+ 00029106  0x0000607f setarg  0x00000006 
+ 00029107  0x00006080 istore  0x00000001 , 0x00000005 
+ 00029108  0x00006081 setarg  0x0000006e 
+ 00029109  0x00006082 istore  0x00000002 , 0x00000005 
+ 00029110  0x00006083 setarg  0x00000f00 
+ 00029111  0x00006084 istore  0x00000002 , 0x00000005 
+ 00029112  0x00006085 setarg  0x001a0535 
+ 00029113  0x00006086 istore  0x00000003 , 0x00000005 
+ 00029114  0x00006087 setarg  0x00000111 
+ 00029115  0x00006088 lshift16  0x0000003f , 0x0000003f 
+ 00029116  0x00006089 istore  0x00000004 , 0x00000005 
+ 00029117  0x0000608a setarg  0x00002600 
+ 00029118  0x0000608b istore  0x00000002 , 0x00000005 
+ 00029119  0x0000608c setarg  0x00000335 
+ 00029120  0x0000608d istore  0x00000002 , 0x00000005 
+ 00029121  0x0000608e setarg  0x00000009 
+ 00029122  0x0000608f istore  0x00000002 , 0x00000005 
+ 00029123  0x00006090 setarg  0x00000004 
+ 00029124  0x00006091 istore  0x00000002 , 0x00000005 
+ 00029125  0x00006092 jam  0x00000014 , 0x000002dc 
+ 00029126  0x00006093 rtn 
+ 00029127  0x0000609e copy  0x00000006 , 0x00000002 
+ 00029128  0x0000609f fetch  0x00000002 , 0x000004b0 
+ 00029129  0x000060a0 beq  0x0000006e , 0x000071cb 
+ 00029130  0x000060a3 branch  0x000071d4 
+ 00029131  0x000060a6 copy  0x00000002 , 0x00000006 
+ 00029132  0x000060a7 increase  0xfffffffd , 0x0000000b 
+ 00029133  0x000060a8 copy  0x0000000b , 0x0000003f 
+ 00029134  0x000060a9 beq  0x00000002 , 0x000071d4 
+ 00029135  0x000060aa call  0x000071d5 
+ 00029136  0x000060ab rtn  0x00000028 
+ 00029137  0x000060ac store  0x00000001 , 0x00004752 
+ 00029138  0x000060ad jam  0x00000017 , 0x000002ec 
+ 00029139  0x000060ae rtn 
+ 00029140  0x000060b1 rtn 
+ 00029141  0x000060b8 enable  0x00000028 
+ 00029142  0x000060b9 copy  0x0000003f , 0x00000039 
+ 00029143  0x000060ba arg  0x00000400 , 0x00000002 
+ 00029144  0x000060bc ifetch  0x00000002 , 0x00000006 
+ 00029145  0x000060bd isub  0x00000002 , 0x0000003e 
+ 00029146  0x000060be branch  0x000071de , 0x00000005 
+ 00029147  0x000060bf increase  0xffffffff , 0x00000006 
+ 00029148  0x000060c0 loop  0x000071d8 
+ 00029149  0x000060c1 rtn 
+ 00029150  0x000060c3 arg  0x00000300 , 0x00000002 
+ 00029151  0x000060c5 ifetch  0x00000002 , 0x00000006 
+ 00029152  0x000060c6 isub  0x00000002 , 0x0000003e 
+ 00029153  0x000060c7 branch  0x000071e5 , 0x00000005 
+ 00029154  0x000060c8 increase  0xffffffff , 0x00000006 
+ 00029155  0x000060c9 loop  0x000071df 
+ 00029156  0x000060ca rtn 
+ 00029157  0x000060cc ifetch  0x00000001 , 0x00000006 
+ 00029158  0x000060cd ifetch  0x00000001 , 0x00000006 
+ 00029159  0x000060ce disable  0x00000028 
+ 00029160  0x000060cf rtn 
+ 00029161  0x000060db call  0x000072a4 
+ 00029162  0x000060dc branch  0x00007236 , 0x00000005 
+ 00029163  0x000060dd force  0x00000000 , 0x00000012 
+ 00029164  0x000060de ifetch  0x00000001 , 0x00000006 
+ 00029165  0x000060df increase  0xffffffff , 0x00000011 
+ 00029166  0x000060e0 increase  0xffffffff , 0x0000000b 
+ 00029167  0x000060e1 compare  0x00000018 , 0x0000003f , 0x000000f8 
+ 00029168  0x000060e2 nbranch  0x00007230 , 0x00000001 
+ 00029169  0x000060e3 compare  0x00000004 , 0x0000003f , 0x00000007 
+ 00029170  0x000060e4 nbranch  0x000071f8 , 0x00000001 
+ 00029171  0x000060e5 force  0x00000001 , 0x00000012 
+ 00029172  0x000060e7 increase  0x00000002 , 0x00000006 
+ 00029173  0x000060e8 increase  0xfffffffe , 0x00000011 
+ 00029174  0x000060e9 increase  0xfffffffe , 0x0000000b 
+ 00029175  0x000060ea branch  0x000071fd 
+ 00029176  0x000060ec compare  0x00000002 , 0x0000003f , 0x00000007 
+ 00029177  0x000060ed nbranch  0x000071fb , 0x00000001 
+ 00029178  0x000060ee branch  0x000071f4 
+ 00029179  0x000060f0 compare  0x00000001 , 0x0000003f , 0x00000007 
+ 00029180  0x000060f1 nbranch  0x00007230 , 0x00000001 
+ 00029181  0x000060f3 ifetch  0x00000001 , 0x00000006 
+ 00029182  0x000060f4 increase  0xffffffff , 0x00000011 
+ 00029183  0x000060f5 increase  0xffffffff , 0x0000000b 
+ 00029184  0x000060f6 bne  0x00000001 , 0x00007207 
+ 00029185  0x000060f7 ifetch  0x00000001 , 0x00000006 
+ 00029186  0x000060f8 increase  0xffffffff , 0x00000011 
+ 00029187  0x000060f9 increase  0xffffffff , 0x0000000b 
+ 00029188  0x000060fa bne  0x00000000 , 0x00007230 
+ 00029189  0x000060fb jam  0x000000ff , 0x000004c3 
+ 00029190  0x000060fc branch  0x00007230 
+ 00029191  0x000060fe bne  0x00000000 , 0x00007230 
+ 00029192  0x000060ff ifetch  0x00000001 , 0x00000006 
+ 00029193  0x00006100 increase  0xffffffff , 0x00000011 
+ 00029194  0x00006101 increase  0xffffffff , 0x0000000b 
+ 00029195  0x00006102 bne  0x00000003 , 0x00007230 
+ 00029196  0x00006103 copy  0x00000012 , 0x0000003e 
+ 00029197  0x00006104 branch  0x00007210 , 0x00000005 
+ 00029198  0x00006105 increase  0xfffffff4 , 0x00000006 
+ 00029199  0x00006106 increase  0xfffffff4 , 0x0000000b 
+ 00029200  0x00006108 force  0x000000ff , 0x0000003f 
+ 00029201  0x00006109 store  0x00000001 , 0x000004c4 
+ 00029202  0x0000610a ifetch  0x00000001 , 0x00000006 
+ 00029203  0x0000610b increase  0xffffffff , 0x00000011 
+ 00029204  0x0000610c increase  0xffffffff , 0x0000000b 
+ 00029205  0x0000610d compare  0x00000008 , 0x0000003f , 0x000000f8 
+ 00029206  0x0000610e nbranch  0x00007230 , 0x00000001 
+ 00029207  0x0000610f compare  0x00000000 , 0x0000003f , 0x00000007 
+ 00029208  0x00006110 branch  0x0000722d , 0x00000001 
+ 00029209  0x00006111 compare  0x00000001 , 0x0000003f , 0x00000007 
+ 00029210  0x00006112 branch  0x0000722a , 0x00000001 
+ 00029211  0x00006113 compare  0x00000002 , 0x0000003f , 0x00000007 
+ 00029212  0x00006114 branch  0x00007227 , 0x00000001 
+ 00029213  0x00006115 compare  0x00000003 , 0x0000003f , 0x00000007 
+ 00029214  0x00006116 branch  0x00007224 , 0x00000001 
+ 00029215  0x00006117 compare  0x00000004 , 0x0000003f , 0x00000007 
+ 00029216  0x00006118 nbranch  0x00007230 , 0x00000001 
+ 00029217  0x00006119 increase  0x00000008 , 0x00000006 
+ 00029218  0x0000611a increase  0xfffffff8 , 0x00000011 
+ 00029219  0x0000611b increase  0xfffffff8 , 0x0000000b 
+ 00029220  0x0000611d increase  0x00000004 , 0x00000006 
+ 00029221  0x0000611e increase  0xfffffffc , 0x00000011 
+ 00029222  0x0000611f increase  0xfffffffc , 0x0000000b 
+ 00029223  0x00006121 increase  0x00000002 , 0x00000006 
+ 00029224  0x00006122 increase  0xfffffffe , 0x00000011 
+ 00029225  0x00006123 increase  0xfffffffe , 0x0000000b 
+ 00029226  0x00006125 increase  0x00000001 , 0x00000006 
+ 00029227  0x00006126 increase  0xffffffff , 0x00000011 
+ 00029228  0x00006127 increase  0xffffffff , 0x0000000b 
+ 00029229  0x00006129 ifetch  0x00000001 , 0x00000006 
+ 00029230  0x0000612a increase  0xffffffff , 0x00000011 
+ 00029231  0x0000612b increase  0xffffffff , 0x0000000b 
+ 00029232  0x0000612d increase  0xffffffff , 0x0000000b 
+ 00029233  0x0000612e increase  0xffffffff , 0x00000011 
+ 00029234  0x0000612f branch  0x00007230 , 0x00000002 
+ 00029235  0x00006130 increase  0x00000001 , 0x0000000b 
+ 00029236  0x00006131 force  0x00000001 , 0x0000003f 
+ 00029237  0x00006132 rtn ,
+ 00029238  0x00006134 force  0x00000000 , 0x0000003f 
+ 00029239  0x00006135 rtn ,
+ 00029240  0x00006138 setarg  0x00000200 
+ 00029241  0x00006139 store  0x00000002 , 0x000004b6 
+ 00029242  0x0000613a branch  0x00007243 
+ 00029243  0x0000613c setarg  0x00000400 
+ 00029244  0x0000613d store  0x00000002 , 0x000004b6 
+ 00029245  0x0000613e branch  0x00007243 
+ 00029246  0x00006140 setarg  0x00000600 
+ 00029247  0x00006141 store  0x00000002 , 0x000004b6 
+ 00029248  0x00006142 branch  0x00007243 
+ 00029249  0x00006144 setarg  0x00000300 
+ 00029250  0x00006145 store  0x00000002 , 0x000004b6 
+ 00029251  0x00006147 call  0x000052de 
+ 00029252  0x00006148 istore  0x00000001 , 0x00000005 
+ 00029253  0x00006149 fetch  0x00000002 , 0x000004b0 
+ 00029254  0x0000614a istore  0x00000002 , 0x00000005 
+ 00029255  0x0000614b setarg  0x00000200 
+ 00029256  0x0000614c istore  0x00000002 , 0x00000005 
+ 00029257  0x0000614d fetch  0x00000002 , 0x000004b6 
+ 00029258  0x0000614e istore  0x00000002 , 0x00000005 
+ 00029259  0x0000614f jam  0x00000007 , 0x000002dc 
+ 00029260  0x00006150 rtn 
+ 00029261  0x00006153 force  0x00000000 , 0x00000002 
+ 00029262  0x00006154 arg  0x000004a9 , 0x00000005 
+ 00029263  0x00006155 call  0x000072a4 
+ 00029264  0x00006156 branch  0x000072a2 , 0x00000005 
+ 00029265  0x00006158 ifetch  0x00000001 , 0x00000006 
+ 00029266  0x00006159 increase  0xffffffff , 0x00000011 
+ 00029267  0x0000615a increase  0xffffffff , 0x0000000b 
+ 00029268  0x0000615b compare  0x00000018 , 0x0000003f , 0x000000f8 
+ 00029269  0x0000615c nbranch  0x000072a2 , 0x00000001 
+ 00029270  0x0000615d compare  0x00000004 , 0x0000003f , 0x00000007 
+ 00029271  0x0000615e nbranch  0x0000726e , 0x00000001 
+ 00029272  0x0000615f force  0x00000001 , 0x00000002 
+ 00029273  0x00006161 ifetch  0x00000001 , 0x00000006 
+ 00029274  0x00006162 increase  0xffffffff , 0x00000011 
+ 00029275  0x00006163 increase  0xffffffff , 0x0000000b 
+ 00029276  0x00006164 bne  0x00000000 , 0x00007262 
+ 00029277  0x00006165 ifetch  0x00000001 , 0x00000006 
+ 00029278  0x00006166 increase  0xffffffff , 0x00000011 
+ 00029279  0x00006167 increase  0xffffffff , 0x0000000b 
+ 00029280  0x00006168 beq  0x00000000 , 0x00007273 
+ 00029281  0x00006169 branch  0x00007265 
+ 00029282  0x0000616b increase  0x00000001 , 0x00000006 
+ 00029283  0x0000616c increase  0xffffffff , 0x00000011 
+ 00029284  0x0000616d increase  0xffffffff , 0x0000000b 
+ 00029285  0x0000616f increase  0x00000002 , 0x00000006 
+ 00029286  0x00006170 increase  0xfffffffe , 0x00000011 
+ 00029287  0x00006171 increase  0xfffffffe , 0x0000000b 
+ 00029288  0x00006172 compare  0x00000000 , 0x00000002 , 0x000000ff 
+ 00029289  0x00006173 branch  0x0000729d , 0x00000001 
+ 00029290  0x00006174 increase  0x0000000c , 0x00000006 
+ 00029291  0x00006175 increase  0xfffffff4 , 0x00000011 
+ 00029292  0x00006176 increase  0xfffffff4 , 0x0000000b 
+ 00029293  0x00006177 branch  0x0000729d 
+ 00029294  0x00006179 compare  0x00000002 , 0x0000003f , 0x00000007 
+ 00029295  0x0000617a nbranch  0x00007271 , 0x00000001 
+ 00029296  0x0000617b branch  0x00007259 
+ 00029297  0x0000617d compare  0x00000001 , 0x0000003f , 0x00000007 
+ 00029298  0x0000617e nbranch  0x000072a2 , 0x00000001 
+ 00029299  0x00006180 ifetch  0x00000002 , 0x00000006 
+ 00029300  0x00006181 increase  0xfffffffe , 0x00000011 
+ 00029301  0x00006182 increase  0xfffffffe , 0x0000000b 
+ 00029302  0x00006183 istore  0x00000002 , 0x00000005 
+ 00029303  0x00006185 compare  0x00000000 , 0x00000002 , 0x000000ff 
+ 00029304  0x00006186 branch  0x0000729d , 0x00000001 
+ 00029305  0x00006187 copy  0x00000006 , 0x00000002 
+ 00029306  0x00006188 ifetch  0x00000001 , 0x00000006 
+ 00029307  0x00006189 bne  0x00000000 , 0x00007292 
+ 00029308  0x0000618a ifetch  0x00000001 , 0x00000006 
+ 00029309  0x0000618b bne  0x00000000 , 0x00007292 
+ 00029310  0x0000618c ifetch  0x00000001 , 0x00000006 
+ 00029311  0x0000618d bne  0x00000010 , 0x00007292 
+ 00029312  0x0000618e ifetch  0x00000001 , 0x00000006 
+ 00029313  0x0000618f bne  0x00000000 , 0x00007292 
+ 00029314  0x00006190 ifetch  0x00000001 , 0x00000006 
+ 00029315  0x00006191 bne  0x00000080 , 0x00007292 
+ 00029316  0x00006192 ifetch  0x00000001 , 0x00000006 
+ 00029317  0x00006193 bne  0x00000000 , 0x00007292 
+ 00029318  0x00006194 ifetch  0x00000001 , 0x00000006 
+ 00029319  0x00006195 bne  0x00000000 , 0x00007292 
+ 00029320  0x00006196 ifetch  0x00000001 , 0x00000006 
+ 00029321  0x00006197 bne  0x00000080 , 0x00007292 
+ 00029322  0x00006198 ifetch  0x00000001 , 0x00000006 
+ 00029323  0x00006199 bne  0x0000005f , 0x00007292 
+ 00029324  0x0000619a ifetch  0x00000001 , 0x00000006 
+ 00029325  0x0000619b bne  0x0000009b , 0x00007292 
+ 00029326  0x0000619c ifetch  0x00000001 , 0x00000006 
+ 00029327  0x0000619d bne  0x00000034 , 0x00007292 
+ 00029328  0x0000619e ifetch  0x00000001 , 0x00000006 
+ 00029329  0x0000619f beq  0x000000fb , 0x0000729b 
+ 00029330  0x000061a1 copy  0x00000002 , 0x00000006 
+ 00029331  0x000061a3 increase  0x0000000c , 0x00000006 
+ 00029332  0x000061a4 force  0x00000000 , 0x00000007 
+ 00029333  0x000061a5 force  0x00000000 , 0x00000002 
+ 00029334  0x000061a6 branch  0x0000729b 
+ 00029335  0x000061a8 ifetch  0x00000001 , 0x00000006 
+ 00029336  0x000061a9 increase  0xffffffff , 0x00000011 
+ 00029337  0x000061aa increase  0xffffffff , 0x0000000b 
+ 00029338  0x000061ab branch  0x00007277 
+ 00029339  0x000061ad increase  0xfffffff4 , 0x0000000b 
+ 00029340  0x000061ae increase  0xfffffff4 , 0x00000011 
+ 00029341  0x000061b0 compare  0x00000000 , 0x00000011 , 0x000000ff 
+ 00029342  0x000061b1 nbranch  0x00007251 , 0x00000001 
+ 00029343  0x000061b2 force  0x00000000 , 0x0000003f 
+ 00029344  0x000061b3 istore  0x00000002 , 0x00000005 
+ 00029345  0x000061b4 rtn ,
+ 00029346  0x000061b6 arg  0x000000ff , 0x00000002 
+ 00029347  0x000061b7 rtn 
+ 00029348  0x000061c2 ifetch  0x00000001 , 0x00000006 
+ 00029349  0x000061c3 increase  0xffffffff , 0x0000000b 
+ 00029350  0x000061c4 compare  0x00000030 , 0x0000003f , 0x000000f8 
+ 00029351  0x000061c5 nbranch  0x000072b9 , 0x00000001 
+ 00029352  0x000061c6 compare  0x00000007 , 0x0000003f , 0x00000007 
+ 00029353  0x000061c7 branch  0x000072b2 , 0x00000001 
+ 00029354  0x000061c8 compare  0x00000006 , 0x0000003f , 0x00000007 
+ 00029355  0x000061c9 branch  0x000072b4 , 0x00000001 
+ 00029356  0x000061ca compare  0x00000005 , 0x0000003f , 0x00000007 
+ 00029357  0x000061cb nbranch  0x000072b9 , 0x00000001 
+ 00029358  0x000061cc ifetch  0x00000001 , 0x00000006 
+ 00029359  0x000061cd copy  0x0000003f , 0x00000011 
+ 00029360  0x000061ce increase  0xffffffff , 0x0000000b 
+ 00029361  0x000061cf branch  0x000072b7 
+ 00029362  0x000061d1 increase  0x00000002 , 0x00000006 
+ 00029363  0x000061d2 increase  0xfffffffe , 0x0000000b 
+ 00029364  0x000061d4 ifetch  0x00000002 , 0x00000006 
+ 00029365  0x000061d5 byteswap  0x0000003f , 0x00000011 
+ 00029366  0x000061d6 increase  0xfffffffe , 0x0000000b 
+ 00029367  0x000061d9 force  0x00000001 , 0x0000003f 
+ 00029368  0x000061da rtn 
+ 00029369  0x000061dd force  0x00000000 , 0x0000003f 
+ 00029370  0x000061de rtn 
+ 00029371  0x000061e9 setarg  0x00000003 
+ 00029372  0x000061ea store  0x00000001 , 0x000004af 
+ 00029373  0x000061eb branch  0x000072c0 
+ 00029374  0x000061ed setarg  0x00000007 
+ 00029375  0x000061ee store  0x00000001 , 0x000004af 
+ 00029376  0x000061f0 call  0x000052de 
+ 00029377  0x000061f1 fetch  0x00000001 , 0x000004af 
+ 00029378  0x000061f2 istore  0x00000001 , 0x00000005 
+ 00029379  0x000061f3 copy  0x0000003f , 0x00000012 
+ 00029380  0x000061f4 fetch  0x00000002 , 0x000004b0 
+ 00029381  0x000061f5 istore  0x00000002 , 0x00000005 
+ 00029382  0x000061f7 setarg  0x00000500 
+ 00029383  0x000061f8 istore  0x00000002 , 0x00000005 
+ 00029384  0x000061f9 compare  0x00000005 , 0x00000012 , 0x000000ff 
+ 00029385  0x000061fa branch  0x000072d0 , 0x00000001 
+ 00029386  0x000061fb compare  0x00000007 , 0x00000012 , 0x000000ff 
+ 00029387  0x000061fc branch  0x000072d0 , 0x00000001 
+ 00029388  0x000061fd setarg  0x00000000 
+ 00029389  0x000061fe istore  0x00000003 , 0x00000005 
+ 00029390  0x000061ff istore  0x00000002 , 0x00000005 
+ 00029391  0x00006200 branch  0x000072d4 
+ 00029392  0x00006209 setarg  0x00350200 
+ 00029393  0x0000620a istore  0x00000003 , 0x00000005 
+ 00029394  0x0000620f setarg  0x00000000 
+ 00029395  0x00006210 istore  0x00000002 , 0x00000005 
+ 00029396  0x00006212 jam  0x0000000a , 0x000002dc 
+ 00029397  0x00006213 rtn 
+ 00029398  0x00006216 copy  0x00000006 , 0x0000000b 
+ 00029399  0x00006217 ifetch  0x00000001 , 0x00000006 
+ 00029400  0x00006218 and  0x0000003f , 0x00000007 , 0x00000039 
+ 00029401  0x00006219 rshift3  0x0000003f , 0x0000003f 
+ 00029402  0x0000621a beq  0x00000006 , 0x000072e5 
+ 00029403  0x0000621b beq  0x00000001 , 0x000072e0 
+ 00029404  0x0000621c beq  0x00000004 , 0x000072e5 
+ 00029405  0x0000621d beq  0x00000005 , 0x000072e3 
+ 00029406  0x0000621f copy  0x0000000b , 0x00000006 
+ 00029407  0x00006220 rtn 
+ 00029408  0x00006222 call  0x00007301 
+ 00029409  0x00006223 increase  0x00000001 , 0x0000003f 
+ 00029410  0x00006224 branch  0x000072de 
+ 00029411  0x00006226 force  0x00000002 , 0x0000003f 
+ 00029412  0x00006227 branch  0x000072de 
+ 00029413  0x00006229 call  0x000072f7 
+ 00029414  0x0000622a increase  0x00000002 , 0x0000003f 
+ 00029415  0x0000622b branch  0x000072de 
+ 00029416  0x0000622e ifetch  0x00000001 , 0x00000006 
+ 00029417  0x0000622f and  0x0000003f , 0x00000007 , 0x00000039 
+ 00029418  0x00006230 rshift3  0x0000003f , 0x0000003f 
+ 00029419  0x00006231 beq  0x00000006 , 0x000072f7 
+ 00029420  0x00006232 beq  0x00000001 , 0x000072ef 
+ 00029421  0x00006233 beq  0x00000005 , 0x000072fc 
+ 00029422  0x00006234 rtn 
+ 00029423  0x00006236 call  0x00007301 
+ 00029424  0x00006237 iforce  0x00000039 
+ 00029425  0x00006238 force  0x00000000 , 0x00000002 
+ 00029426  0x0000623a lshift8  0x00000002 , 0x00000002 
+ 00029427  0x0000623b ifetch  0x00000001 , 0x00000006 
+ 00029428  0x0000623c ior  0x00000002 , 0x00000002 
+ 00029429  0x0000623d loop  0x000072f2 
+ 00029430  0x0000623e rtn 
+ 00029431  0x00006240 deposit  0x00000039 
+ 00029432  0x00006241 beq  0x00000005 , 0x000072fc 
+ 00029433  0x00006242 beq  0x00000006 , 0x000072fe 
+ 00029434  0x00006243 force  0x00000003 , 0x00000039 
+ 00029435  0x00006244 branch  0x000072ef 
+ 00029436  0x00006246 ifetch  0x00000001 , 0x00000006 
+ 00029437  0x00006247 rtn 
+ 00029438  0x00006249 ifetch  0x00000002 , 0x00000006 
+ 00029439  0x0000624a byteswap  0x0000003f , 0x0000003f 
+ 00029440  0x0000624b rtn 
+ 00029441  0x0000624f force  0x00000001 , 0x0000003f 
+ 00029442  0x00006250 copy  0x00000039 , 0x0000003e 
+ 00029443  0x00006251 rtn  0x00000005 
+ 00029444  0x00006253 lshift  0x0000003f , 0x0000003f 
+ 00029445  0x00006254 loop  0x00007304 
+ 00029446  0x00006255 rtn 
+ 00029447  0x0000625b iforce  0x00000013 
+ 00029448  0x0000625c set1  0x00000025 , 0x00000000 
+ 00029449  0x0000625d bpatch  0x000000e9 , 0x0000403d 
+ 00029450  0x0000625e force  0x00000000 , 0x00000007 
+ 00029451  0x0000625f fetch  0x00000002 , 0x00004759 
+ 00029452  0x00006260 iforce  0x00000006 
+ 00029453  0x00006261 arg  0x000004c5 , 0x00000005 
+ 00029454  0x00006263 disable  0x00000028 
+ 00029455  0x00006264 ifetch  0x00000001 , 0x00000006 
+ 00029456  0x00006265 rtn  0x00000034 
+ 00029457  0x00006266 iforce  0x00000039 
+ 00029458  0x00006268 ifetch  0x00000002 , 0x00000006 
+ 00029459  0x00006269 isub  0x00000013 , 0x0000003e 
+ 00029460  0x0000626a nbranch  0x00007316 , 0x00000005 
+ 00029461  0x0000626b enable  0x00000028 
+ 00029462  0x0000626d loop  0x00007312 
+ 00029463  0x0000626e ifetch  0x00000004 , 0x00000006 
+ 00029464  0x0000626f nbranch  0x0000731b , 0x00000028 
+ 00029465  0x00006270 istore  0x00000004 , 0x00000005 
+ 00029466  0x00006271 increase  0x00000001 , 0x00000007 
+ 00029467  0x00006273 call  0x000072e8 
+ 00029468  0x00006274 iadd  0x00000006 , 0x00000006 
+ 00029469  0x00006275 branch  0x0000730e 
+ 00029470  0x00006279 fetch  0x00000002 , 0x00004759 
+ 00029471  0x0000627a iforce  0x00000006 
+ 00029472  0x0000627c ifetch  0x00000001 , 0x00000006 
+ 00029473  0x0000627d rtn  0x00000034 
+ 00029474  0x0000627e lshift  0x0000003f , 0x0000003f 
+ 00029475  0x0000627f iadd  0x00000006 , 0x00000006 
+ 00029476  0x00006280 ifetch  0x00000004 , 0x00000006 
+ 00029477  0x00006281 isub  0x00000002 , 0x0000003e 
+ 00029478  0x00006282 rtn  0x00000005 
+ 00029479  0x00006283 call  0x000072e8 
+ 00029480  0x00006284 iadd  0x00000006 , 0x00000006 
+ 00029481  0x00006285 branch  0x00007320 
+ 00029482  0x0000628d set1  0x00000025 , 0x00000000 
+ 00029483  0x0000628e bpatch  0x000000ea , 0x0000403d 
+ 00029484  0x0000628f fetch  0x00000002 , 0x00004759 
+ 00029485  0x00006290 iforce  0x00000006 
+ 00029486  0x00006292 ifetch  0x00000001 , 0x00000006 
+ 00029487  0x00006293 branch  0x0000734b , 0x00000034 
+ 00029488  0x00006294 iforce  0x00000039 
+ 00029489  0x00006296 ifetch  0x00000002 , 0x00000006 
+ 00029490  0x00006297 isub  0x00000013 , 0x0000003e 
+ 00029491  0x00006298 branch  0x00007339 , 0x00000005 
+ 00029492  0x00006299 loop  0x00007331 
+ 00029493  0x0000629a increase  0x00000004 , 0x00000006 
+ 00029494  0x0000629b call  0x000072e8 
+ 00029495  0x0000629c iadd  0x00000006 , 0x00000006 
+ 00029496  0x0000629d branch  0x0000732e 
+ 00029497  0x0000629f increase  0xffffffff , 0x00000039 
+ 00029498  0x000062a0 lshift  0x00000039 , 0x0000003f 
+ 00029499  0x000062a1 iadd  0x00000006 , 0x00000006 
+ 00029500  0x000062a2 increase  0x00000004 , 0x00000006 
+ 00029501  0x000062a3 call  0x000072e8 
+ 00029502  0x000062a4 iadd  0x00000006 , 0x00000002 
+ 00029503  0x000062a6 increase  0x00000001 , 0x00000006 
+ 00029504  0x000062a7 ifetch  0x00000002 , 0x00000006 
+ 00029505  0x000062a8 isub  0x00000012 , 0x0000000b 
+ 00029506  0x000062aa setflag  0x00000005 , 0x00000000 , 0x0000003f 
+ 00029507  0x000062ab copy  0x0000000b , 0x0000000b 
+ 00029508  0x000062ac rtn  0x00000005 
+ 00029509  0x000062ad call  0x000072d6 
+ 00029510  0x000062ae iadd  0x00000006 , 0x00000006 
+ 00029511  0x000062af deposit  0x00000002 
+ 00029512  0x000062b0 isub  0x00000006 , 0x0000003e 
+ 00029513  0x000062b1 branch  0x0000734b , 0x00000005 
+ 00029514  0x000062b2 branch  0x0000733f 
+ 00029515  0x000062b4 force  0x00000000 , 0x00000006 
+ 00029516  0x000062b5 force  0x00000000 , 0x0000003f 
+ 00029517  0x000062b6 rtn 
+ 00029518  0x000062bd set1  0x00000025 , 0x00000000 
+ 00029519  0x000062be bpatch  0x000000eb , 0x0000403d 
+ 00029520  0x000062bf fetch  0x00000002 , 0x00004759 
+ 00029521  0x000062c0 iforce  0x00000006 
+ 00029522  0x000062c2 ifetch  0x00000001 , 0x00000006 
+ 00029523  0x000062c3 branch  0x00007368 , 0x00000034 
+ 00029524  0x000062c4 lshift  0x0000003f , 0x0000003f 
+ 00029525  0x000062c5 iadd  0x00000006 , 0x00000006 
+ 00029526  0x000062c6 ifetch  0x00000004 , 0x00000006 
+ 00029527  0x000062c7 isub  0x00000002 , 0x0000003e 
+ 00029528  0x000062c8 branch  0x0000735c , 0x00000005 
+ 00029529  0x000062c9 call  0x000072e8 
+ 00029530  0x000062ca iadd  0x00000006 , 0x00000006 
+ 00029531  0x000062cb branch  0x00007352 
+ 00029532  0x000062cd call  0x000072e8 
+ 00029533  0x000062ce iadd  0x00000006 , 0x00000002 
+ 00029534  0x000062d0 increase  0x00000001 , 0x00000006 
+ 00029535  0x000062d1 ifetch  0x00000002 , 0x00000006 
+ 00029536  0x000062d2 isub  0x00000012 , 0x0000003e 
+ 00029537  0x000062d3 rtn  0x00000005 
+ 00029538  0x000062d4 call  0x000072d6 
+ 00029539  0x000062d5 iadd  0x00000006 , 0x00000006 
+ 00029540  0x000062d6 deposit  0x00000002 
+ 00029541  0x000062d7 isub  0x00000006 , 0x0000003e 
+ 00029542  0x000062d8 branch  0x00007368 , 0x00000005 
+ 00029543  0x000062d9 branch  0x0000735e 
+ 00029544  0x000062db force  0x00000000 , 0x00000006 
+ 00029545  0x000062dc rtn 
+ 00029546  0x000062e0 call  0x0000737d 
+ 00029547  0x000062e1 arg  0x0000051f , 0x00000006 
+ 00029548  0x000062e2 arg  0x0000050f , 0x00000005 
+ 00029549  0x000062e3 branch  0x00007e35 
+ 00029550  0x000062e7 disable  0x00000028 
+ 00029551  0x000062e8 call  0x00007474 
+ 00029552  0x000062e9 arg  0x000004ef , 0x00000006 
+ 00029553  0x000062ea arg  0x0000052f , 0x00000005 
+ 00029554  0x000062eb force  0x0000000f , 0x00000039 
+ 00029555  0x000062ec call  0x00007e45 
+ 00029556  0x000062ed ifetch  0x00000001 , 0x00000006 
+ 00029557  0x000062ee xor_into  0x00000006 , 0x0000003f 
+ 00029558  0x000062ef istore  0x00000001 , 0x00000005 
+ 00029559  0x000062f0 setarg  0x0000053f 
+ 00029560  0x000062f1 store  0x00000002 , 0x00000574 
+ 00029561  0x000062f2 setarg  0x0000052f 
+ 00029562  0x000062f3 store  0x00000002 , 0x00000572 
+ 00029563  0x000062f4 set1  0x00000012 , 0x00000000 
+ 00029564  0x000062f5 branch  0x000073bd 
+ 00029565  0x000062fa fetcht  0x00000001 , 0x0000054f 
+ 00029566  0x000062fb force  0x00000010 , 0x00000012 
+ 00029567  0x000062fc add  0x00000002 , 0x00000006 , 0x00000013 
+ 00029568  0x000062fd sub  0x00000013 , 0x00000010 , 0x0000003e 
+ 00029569  0x000062fe branch  0x00007383 , 0x00000002 
+ 00029570  0x000062ff force  0x00000010 , 0x00000013 
+ 00029571  0x00006301 arg  0x0000052f , 0x00000005 
+ 00029572  0x00006303 arg  0x00000550 , 0x00000006 
+ 00029573  0x00006304 copy  0x00000002 , 0x00000039 
+ 00029574  0x00006305 disable  0x00000028 
+ 00029575  0x00006307 ifetch  0x00000001 , 0x00000006 
+ 00029576  0x00006308 istore  0x00000001 , 0x00000005 
+ 00029577  0x00006309 increase  0xffffffff , 0x00000012 
+ 00029578  0x0000630a branch  0x00007391 , 0x00000005 
+ 00029579  0x0000630b loop  0x00007387 
+ 00029580  0x0000630c branch  0x00007384 , 0x00000028 
+ 00029581  0x0000630d enable  0x00000028 
+ 00029582  0x0000630e force  0x00000006 , 0x00000039 
+ 00029583  0x0000630f copy  0x00000011 , 0x00000006 
+ 00029584  0x00006310 branch  0x00007387 
+ 00029585  0x00006312 arg  0x000004ef , 0x00000006 
+ 00029586  0x00006313 arg  0x0000053f , 0x00000005 
+ 00029587  0x00006314 call  0x00007e35 
+ 00029588  0x00006315 fetch  0x00000001 , 0x0000054e 
+ 00029589  0x00006316 ixor  0x00000013 , 0x0000003f 
+ 00029590  0x00006317 store  0x00000001 , 0x0000054e 
+ 00029591  0x00006318 setarg  0x0000053f 
+ 00029592  0x00006319 store  0x00000002 , 0x00000574 
+ 00029593  0x0000631a setarg  0x0000052f 
+ 00029594  0x0000631b store  0x00000002 , 0x00000572 
+ 00029595  0x0000631c set1  0x00000012 , 0x00000000 
+ 00029596  0x0000631d branch  0x000073bd 
+ 00029597  0x00006323 disable  0x00000028 
+ 00029598  0x00006324 call  0x00007474 
+ 00029599  0x00006325 branch  0x000073a7 
+ 00029600  0x00006328 arg  0x00000056 , 0x00000011 
+ 00029601  0x00006329 enable  0x00000028 
+ 00029602  0x0000632a call  0x00007474 
+ 00029603  0x0000632b call  0x000073a7 
+ 00029604  0x0000632c arg  0x0000051f , 0x00000006 
+ 00029605  0x0000632d arg  0x00000062 , 0x00000005 
+ 00029606  0x0000632e branch  0x00007e35 
+ 00029607  0x00006332 setarg  0x000004ef 
+ 00029608  0x00006333 store  0x00000002 , 0x00000574 
+ 00029609  0x00006334 setarg  0x00004262 
+ 00029610  0x00006335 store  0x00000002 , 0x00000572 
+ 00029611  0x00006336 set0  0x00000012 , 0x00000000 
+ 00029612  0x00006337 call  0x000073bd 
+ 00029613  0x00006338 arg  0x0000051f , 0x00000011 
+ 00029614  0x00006339 arg  0x000004ef , 0x00000012 
+ 00029615  0x0000633a arg  0x0000052f , 0x00000005 
+ 00029616  0x0000633b call  0x00007467 
+ 00029617  0x0000633c arg  0x0000052f , 0x00000011 
+ 00029618  0x0000633d arg  0x0000053f , 0x00000012 
+ 00029619  0x0000633e copy  0x00000012 , 0x00000005 
+ 00029620  0x0000633f enable  0x00000028 
+ 00029621  0x00006340 call  0x00007465 
+ 00029622  0x00006341 call  0x0000747f 
+ 00029623  0x00006342 setarg  0x0000053f 
+ 00029624  0x00006343 store  0x00000002 , 0x00000574 
+ 00029625  0x00006344 setarg  0x0000052f 
+ 00029626  0x00006345 store  0x00000002 , 0x00000572 
+ 00029627  0x00006346 set1  0x00000012 , 0x00000000 
+ 00029628  0x00006347 branch  0x000073bd 
+ 00029629  0x0000634c jam  0x00000000 , 0x00000576 
+ 00029630  0x0000634d fetch  0x00000002 , 0x00000572 
+ 00029631  0x0000634e iforce  0x00000006 
+ 00029632  0x0000634f arg  0x00000560 , 0x00000005 
+ 00029633  0x00006350 call  0x00007e35 
+ 00029634  0x00006351 fetch  0x00000002 , 0x00000574 
+ 00029635  0x00006352 iforce  0x00000006 
+ 00029636  0x00006353 arg  0x0000051f , 0x00000005 
+ 00029637  0x00006354 call  0x00007e35 
+ 00029638  0x00006357 call  0x000073e4 
+ 00029639  0x00006358 disable  0x00000028 
+ 00029640  0x00006359 bmark0  0x00000012 , 0x000073ce 
+ 00029641  0x0000635a fetch  0x00000001 , 0x00000576 
+ 00029642  0x0000635b bne  0x00000004 , 0x000073ce 
+ 00029643  0x0000635c fetch  0x00000002 , 0x00000574 
+ 00029644  0x0000635d iforce  0x00000012 
+ 00029645  0x0000635e call  0x00007416 
+ 00029646  0x00006360 call  0x00007415 
+ 00029647  0x00006361 call  0x00007428 
+ 00029648  0x00006362 fetch  0x00000001 , 0x00000576 
+ 00029649  0x00006363 increase  0x00000001 , 0x0000003f 
+ 00029650  0x00006364 store  0x00000001 , 0x00000576 
+ 00029651  0x00006366 call  0x000073e4 
+ 00029652  0x00006367 enable  0x00000028 
+ 00029653  0x00006368 call  0x00007415 
+ 00029654  0x00006369 call  0x00007437 
+ 00029655  0x0000636a call  0x00007446 
+ 00029656  0x0000636b call  0x00007437 
+ 00029657  0x0000636c call  0x00007446 
+ 00029658  0x0000636d call  0x00007437 
+ 00029659  0x0000636e call  0x00007446 
+ 00029660  0x0000636f call  0x00007437 
+ 00029661  0x00006370 fetch  0x00000001 , 0x00000576 
+ 00029662  0x00006371 increase  0x00000001 , 0x0000003f 
+ 00029663  0x00006372 store  0x00000001 , 0x00000576 
+ 00029664  0x00006373 bne  0x00000010 , 0x000073c6 
+ 00029665  0x00006374 call  0x000073e4 
+ 00029666  0x00006375 disable  0x00000028 
+ 00029667  0x00006376 branch  0x00007415 
+ 00029668  0x0000637b fetch  0x00000001 , 0x00000576 
+ 00029669  0x0000637c arg  0x00000560 , 0x00000006 
+ 00029670  0x0000637d branch  0x0000740b , 0x00000034 
+ 00029671  0x0000637e iforce  0x00000012 
+ 00029672  0x0000637f force  0x00000011 , 0x00000039 
+ 00029673  0x00006380 copy  0x00000006 , 0x00000005 
+ 00029674  0x00006382 ifetch  0x00000001 , 0x00000006 
+ 00029675  0x00006383 lshift3  0x0000003f , 0x00000002 
+ 00029676  0x00006384 rshift2  0x0000003f , 0x0000003f 
+ 00029677  0x00006385 rshift3  0x0000003f , 0x0000003f 
+ 00029678  0x00006386 ior  0x00000002 , 0x0000003f 
+ 00029679  0x00006387 istore  0x00000001 , 0x00000005 
+ 00029680  0x00006388 loop  0x000073ea 
+ 00029681  0x00006389 setarg  0x00000560 
+ 00029682  0x0000638a iadd  0x00000012 , 0x00000006 
+ 00029683  0x0000638b force  0x00000010 , 0x00000039 
+ 00029684  0x0000638c arg  0x000004ff , 0x00000005 
+ 00029685  0x0000638e ifetch  0x00000001 , 0x00000006 
+ 00029686  0x0000638f istore  0x00000001 , 0x00000005 
+ 00029687  0x00006390 compare  0x00000571 , 0x00000006 , 0x000000ff 
+ 00029688  0x00006391 nbranch  0x000073fa , 0x00000001 
+ 00029689  0x00006392 increase  0xffffffef , 0x00000006 
+ 00029690  0x00006394 loop  0x000073f5 
+ 00029691  0x00006395 force  0x00000000 , 0x00000011 
+ 00029692  0x00006396 add  0x00000012 , 0xffffffff , 0x00000013 
+ 00029693  0x00006397 lshift2  0x00000013 , 0x00000013 
+ 00029694  0x00006398 lshift2  0x00000013 , 0x00000013 
+ 00029695  0x00006399 call  0x000075c5 
+ 00029696  0x0000639a setarg  0x00008400 
+ 00029697  0x0000639b iadd  0x00000013 , 0x00000013 
+ 00029698  0x0000639c arg  0x000004ff , 0x00000005 
+ 00029699  0x0000639d force  0x00000010 , 0x00000039 
+ 00029700  0x0000639f ifetcht  0x00000001 , 0x00000013 
+ 00029701  0x000063a0 ifetch  0x00000001 , 0x00000005 
+ 00029702  0x000063a1 iadd  0x00000002 , 0x0000003f 
+ 00029703  0x000063a2 istore  0x00000001 , 0x00000005 
+ 00029704  0x000063a3 increase  0x00000001 , 0x00000013 
+ 00029705  0x000063a4 loop  0x00007404 
+ 00029706  0x000063a5 branch  0x000075c9 
+ 00029707  0x000063a8 force  0x00000010 , 0x00000039 
+ 00029708  0x000063a9 force  0x00000000 , 0x00000002 
+ 00029709  0x000063ab ifetch  0x00000001 , 0x00000006 
+ 00029710  0x000063ac ixor  0x00000002 , 0x00000002 
+ 00029711  0x000063ad loop  0x0000740d 
+ 00029712  0x000063ae deposit  0x00000002 
+ 00029713  0x000063af istore  0x00000001 , 0x00000006 
+ 00029714  0x000063b0 arg  0x00000560 , 0x00000006 
+ 00029715  0x000063b1 arg  0x000004ff , 0x00000005 
+ 00029716  0x000063b2 branch  0x00007e35 
+ 00029717  0x000063b5 arg  0x000004ff , 0x00000012 
+ 00029718  0x000063b7 force  0x00000010 , 0x00000039 
+ 00029719  0x000063b8 arg  0x0000051f , 0x00000011 
+ 00029720  0x000063b9 copy  0x00000011 , 0x00000005 
+ 00029721  0x000063bb ifetcht  0x00000001 , 0x00000011 
+ 00029722  0x000063bc ifetch  0x00000001 , 0x00000012 
+ 00029723  0x000063bd ixor  0x00000002 , 0x00000030 
+ 00029724  0x000063be and  0x00000039 , 0x00000003 , 0x00000013 
+ 00029725  0x000063bf nbranch  0x0000741f , 0x00000028 
+ 00029726  0x000063c0 xor_into  0x00000003 , 0x00000013 
+ 00029727  0x000063c2 sub  0x00000013 , 0x00000001 , 0x00000013 
+ 00029728  0x000063c3 branch  0x00007422 , 0x00000002 
+ 00029729  0x000063c4 iadd  0x00000002 , 0x00000030 
+ 00029730  0x000063c6 deposit  0x00000030 
+ 00029731  0x000063c7 istore  0x00000001 , 0x00000005 
+ 00029732  0x000063c8 increase  0x00000001 , 0x00000011 
+ 00029733  0x000063c9 increase  0x00000001 , 0x00000012 
+ 00029734  0x000063ca loop  0x00007419 
+ 00029735  0x000063cb rtn 
+ 00029736  0x000063ce call  0x000075c5 
+ 00029737  0x000063cf force  0x00000010 , 0x00000039 
+ 00029738  0x000063d0 arg  0x0000051f , 0x00000011 
+ 00029739  0x000063d2 ifetch  0x00000001 , 0x00000011 
+ 00029740  0x000063d3 arg  0x00008500 , 0x00000006 
+ 00029741  0x000063d4 and  0x00000039 , 0x00000003 , 0x00000013 
+ 00029742  0x000063d5 sub  0x00000013 , 0x00000001 , 0x0000003e 
+ 00029743  0x000063d6 branch  0x00007431 , 0x00000002 
+ 00029744  0x000063d7 arg  0x00008600 , 0x00000006 
+ 00029745  0x000063d9 iadd  0x00000006 , 0x00000006 
+ 00029746  0x000063da ifetch  0x00000001 , 0x00000006 
+ 00029747  0x000063db istore  0x00000001 , 0x00000011 
+ 00029748  0x000063dc increase  0x00000001 , 0x00000011 
+ 00029749  0x000063dd loop  0x0000742b 
+ 00029750  0x000063de branch  0x000075c9 
+ 00029751  0x000063e1 force  0x00000008 , 0x00000039 
+ 00029752  0x000063e2 arg  0x0000051f , 0x00000006 
+ 00029753  0x000063e3 copy  0x00000006 , 0x00000005 
+ 00029754  0x000063e5 ifetch  0x00000001 , 0x00000006 
+ 00029755  0x000063e6 iforce  0x00000011 
+ 00029756  0x000063e7 ifetch  0x00000001 , 0x00000006 
+ 00029757  0x000063e8 iforce  0x00000012 
+ 00029758  0x000063e9 lshift  0x00000011 , 0x0000003f 
+ 00029759  0x000063ea iadd  0x00000012 , 0x0000003f 
+ 00029760  0x000063eb istore  0x00000001 , 0x00000005 
+ 00029761  0x000063ec deposit  0x00000011 
+ 00029762  0x000063ed iadd  0x00000012 , 0x0000003f 
+ 00029763  0x000063ee istore  0x00000001 , 0x00000005 
+ 00029764  0x000063ef loop  0x0000743a 
+ 00029765  0x000063f0 rtn 
+ 00029766  0x000063f4 setarg  0x008ae42c 
+ 00029767  0x000063f5 iforce  0x00000002 
+ 00029768  0x000063f6 force  0x00000007 , 0x00000039 
+ 00029769  0x000063f7 call  0x00007455 
+ 00029770  0x000063f8 setarg  0x000d751b 
+ 00029771  0x000063f9 iforce  0x00000002 
+ 00029772  0x000063fa force  0x00000005 , 0x00000039 
+ 00029773  0x000063fb call  0x00007455 
+ 00029774  0x000063fc fetch  0x00000001 , 0x0000052e 
+ 00029775  0x000063fd iforce  0x00000011 
+ 00029776  0x000063fe fetch  0x00000001 , 0x00000522 
+ 00029777  0x000063ff store  0x00000001 , 0x0000052e 
+ 00029778  0x00006400 deposit  0x00000011 
+ 00029779  0x00006401 store  0x00000001 , 0x00000522 
+ 00029780  0x00006402 rtn 
+ 00029781  0x00006405 and  0x00000002 , 0x0000000f , 0x00000012 
+ 00029782  0x00006407 and  0x00000002 , 0x0000000f , 0x0000003f 
+ 00029783  0x00006408 arg  0x0000051f , 0x00000005 
+ 00029784  0x00006409 iadd  0x00000005 , 0x00000005 
+ 00029785  0x0000640a ifetch  0x00000001 , 0x00000005 
+ 00029786  0x0000640b iforce  0x00000013 
+ 00029787  0x0000640c deposit  0x00000011 
+ 00029788  0x0000640d istore  0x00000001 , 0x00000005 
+ 00029789  0x0000640e copy  0x00000013 , 0x00000011 
+ 00029790  0x0000640f rshift4  0x00000002 , 0x00000002 
+ 00029791  0x00006410 loop  0x00007456 
+ 00029792  0x00006411 setarg  0x0000051f 
+ 00029793  0x00006412 iadd  0x00000012 , 0x00000005 
+ 00029794  0x00006413 deposit  0x00000011 
+ 00029795  0x00006414 istore  0x00000001 , 0x00000005 
+ 00029796  0x00006415 rtn 
+ 00029797  0x00006418 enable  0x00000028 
+ 00029798  0x00006419 branch  0x00007468 
+ 00029799  0x0000641c disable  0x00000028 
+ 00029800  0x0000641e force  0x00000010 , 0x00000039 
+ 00029801  0x00006420 ifetcht  0x00000001 , 0x00000011 
+ 00029802  0x00006421 ifetch  0x00000001 , 0x00000012 
+ 00029803  0x00006422 branch  0x0000746e , 0x00000028 
+ 00029804  0x00006423 ixor  0x00000002 , 0x0000003f 
+ 00029805  0x00006424 branch  0x0000746f 
+ 00029806  0x00006426 iadd  0x00000002 , 0x0000003f 
+ 00029807  0x00006428 istore  0x00000001 , 0x00000005 
+ 00029808  0x00006429 increase  0x00000001 , 0x00000011 
+ 00029809  0x0000642a increase  0x00000001 , 0x00000012 
+ 00029810  0x0000642b loop  0x00007469 
+ 00029811  0x0000642c rtn 
+ 00029812  0x00006430 arg  0x0000053f , 0x00000005 
+ 00029813  0x00006431 ifetch  0x00000006 , 0x00000011 
+ 00029814  0x00006432 istore  0x00000006 , 0x00000005 
+ 00029815  0x00006433 branch  0x0000747a , 0x00000028 
+ 00029816  0x00006434 ifetch  0x00000006 , 0x00000011 
+ 00029817  0x00006435 branch  0x0000747b 
+ 00029818  0x00006437 ifetch  0x00000006 , 0x00000006 
+ 00029819  0x00006439 istore  0x00000006 , 0x00000005 
+ 00029820  0x0000643a ifetch  0x00000004 , 0x00000011 
+ 00029821  0x0000643b istore  0x00000004 , 0x00000005 
+ 00029822  0x0000643c rtn 
+ 00029823  0x0000643f arg  0x00004262 , 0x00000006 
+ 00029824  0x00006440 arg  0x0000052f , 0x00000005 
+ 00029825  0x00006441 arg  0x00000000 , 0x00000002 
+ 00029826  0x00006442 setarg  0x008395a7 
+ 00029827  0x00006443 call  0x000074a0 
+ 00029828  0x00006444 setarg  0x00b3c1df 
+ 00029829  0x00006445 call  0x000074a0 
+ 00029830  0x00006446 setarg  0x0000e5e9 
+ 00029831  0x00006447 call  0x000074a1 
+ 00029832  0x00006448 copy  0x00000002 , 0x00000014 
+ 00029833  0x00006449 disable  0x00000028 
+ 00029834  0x0000644a call  0x0000748e 
+ 00029835  0x0000644b copy  0x00000014 , 0x00000002 
+ 00029836  0x0000644c enable  0x00000028 
+ 00029837  0x0000644d branch  0x0000748e 
+ 00029838  0x00006450 force  0x00000008 , 0x00000039 
+ 00029839  0x00006452 ifetch  0x00000001 , 0x00000006 
+ 00029840  0x00006453 compare  0x00000001 , 0x00000039 , 0x00000001 
+ 00029841  0x00006454 branch  0x00007495 , 0x00000028 
+ 00029842  0x00006455 branch  0x00007496 , 0x00000001 
+ 00029843  0x00006457 iadd  0x00000002 , 0x0000003f 
+ 00029844  0x00006458 branch  0x00007497 
+ 00029845  0x0000645a branch  0x00007493 , 0x00000001 
+ 00029846  0x0000645c ixor  0x00000002 , 0x0000003f 
+ 00029847  0x0000645e istore  0x00000001 , 0x00000005 
+ 00029848  0x0000645f rshift8  0x00000002 , 0x00000002 
+ 00029849  0x00006460 loop  0x0000748f 
+ 00029850  0x00006461 rtn 
+ 00029851  0x00006464 fetch  0x00000006 , 0x00000523 
+ 00029852  0x00006465 store  0x00000006 , 0x00000056 
+ 00029853  0x00006466 ifetch  0x00000006 , 0x00000006 
+ 00029854  0x00006467 istore  0x00000006 , 0x00000005 
+ 00029855  0x00006468 rtn 
+ 00029856  0x0000646b lshift8  0x00000002 , 0x00000002 
+ 00029857  0x0000646d lshift16  0x00000002 , 0x00000002 
+ 00029858  0x0000646e ior  0x00000002 , 0x00000002 
+ 00029859  0x0000646f rtn 
+ 00029860  0x00006473 branch  0x000074a4 
+ 00029861  0x00006478 call  0x00007540 
+ 00029862  0x00006479 arg  0x0000447b , 0x00000005 
+ 00029863  0x0000647a branch  0x000075a3 
+ 00029864  0x0000647e arg  0x0000449c , 0x00000005 
+ 00029865  0x0000647f branch  0x000074ab , 0x00000029 
+ 00029866  0x00006480 arg  0x000003b0 , 0x00000005 
+ 00029867  0x00006482 copy  0x00000006 , 0x00000011 
+ 00029868  0x00006483 call  0x00007e35 
+ 00029869  0x00006484 call  0x00007551 
+ 00029870  0x00006485 arg  0x0000448c , 0x00000006 
+ 00029871  0x00006486 branch  0x000075bc 
+ 00029872  0x00006489 arg  0x000003b0 , 0x00000011 
+ 00029873  0x0000648a branch  0x000074b3 , 0x00000029 
+ 00029874  0x0000648b arg  0x0000449c , 0x00000011 
+ 00029875  0x0000648d copy  0x00000011 , 0x00000005 
+ 00029876  0x0000648e call  0x00006226 
+ 00029877  0x0000648f branch  0x00007551 
+ 00029878  0x00006492 arg  0x00000380 , 0x00000006 
+ 00029879  0x00006493 call  0x00007592 
+ 00029880  0x00006494 arg  0x0000447b , 0x00000006 
+ 00029881  0x00006495 call  0x00007593 
+ 00029882  0x00006496 force  0x00000038 , 0x00000036 
+ 00029883  0x00006497 force  0x00000000 , 0x00000036 
+ 00029884  0x00006498 call  0x0000752f 
+ 00029885  0x00006499 arg  0x000003fd , 0x00000005 
+ 00029886  0x0000649a branch  0x000075a3 
+ 00029887  0x0000649e force  0x00000049 , 0x0000003f 
+ 00029888  0x0000649f branch  0x000074c2 
+ 00029889  0x000064a1 force  0x00000001 , 0x0000003f 
+ 00029890  0x000064a3 force  0x00000000 , 0x00000038 
+ 00029891  0x000064a4 lshift8  0x00000002 , 0x0000002f 
+ 00029892  0x000064a5 ior  0x0000002f , 0x0000002f 
+ 00029893  0x000064a6 increase  0x00000001 , 0x00000038 
+ 00029894  0x000064a7 rshift8  0x00000002 , 0x0000002f 
+ 00029895  0x000064a8 rshift16  0x0000002f , 0x0000002f 
+ 00029896  0x000064a9 fetch  0x00000002 , 0x00004473 
+ 00029897  0x000064aa lshift16 , 0x0000003f , 0x0000003f 
+ 00029898  0x000064ab ior  0x0000002f , 0x0000002f 
+ 00029899  0x000064ac increase  0x00000001 , 0x00000038 
+ 00029900  0x000064ad ifetch  0x00000004 , 0x00000006 
+ 00029901  0x000064ae iforce  0x0000002f 
+ 00029902  0x000064af increase  0x00000001 , 0x00000038 
+ 00029903  0x000064b0 ifetch  0x00000002 , 0x00000006 
+ 00029904  0x000064b1 byteswap  0x00000011 , 0x0000002f 
+ 00029905  0x000064b2 lshift16  0x0000002f , 0x0000002f 
+ 00029906  0x000064b3 ior  0x0000002f , 0x0000002f 
+ 00029907  0x000064b4 increase  0x00000001 , 0x00000038 
+ 00029908  0x000064b5 rtn 
+ 00029909  0x000064ba add  0x00000013 , 0x00000001 , 0x00000006 
+ 00029910  0x000064bb ifetch  0x00000001 , 0x00000006 
+ 00029911  0x000064bc iforce  0x00000011 
+ 00029912  0x000064bd call  0x000074bf 
+ 00029913  0x000064be call  0x00007531 
+ 00029914  0x000064c0 force  0x00000000 , 0x00000038 
+ 00029915  0x000064c1 ifetch  0x00000001 , 0x00000013 
+ 00029916  0x000064c2 and_into  0x00000003 , 0x0000003f 
+ 00029917  0x000064c3 lshift16  0x0000003f , 0x0000002f 
+ 00029918  0x000064c4 set1  0x00000008 , 0x0000002f 
+ 00029919  0x000064c5 call  0x0000759b 
+ 00029920  0x000064c6 call  0x00007534 
+ 00029921  0x000064c8 copy  0x00000011 , 0x00000039 
+ 00029922  0x000064c9 add  0x00000013 , 0x00000002 , 0x00000006 
+ 00029923  0x000064ca call  0x0000757a 
+ 00029924  0x000064cc call  0x00007584 
+ 00029925  0x000064cd call  0x00007534 
+ 00029926  0x000064ce deposit  0x00000039 
+ 00029927  0x000064cf branch  0x000074e9 , 0x00000034 
+ 00029928  0x000064d0 branch  0x000074e4 
+ 00029929  0x000064d2 force  0x0000000c , 0x00000038 
+ 00029930  0x000064d3 deposit  0x0000002f 
+ 00029931  0x000064d4 store  0x00000004 , 0x00000378 
+ 00029932  0x000064d5 rtn 
+ 00029933  0x000064d8 increase  0x00000001 , 0x00000011 
+ 00029934  0x000064d9 call  0x000074c1 
+ 00029935  0x000064da copy  0x00000013 , 0x00000006 
+ 00029936  0x000064db call  0x0000758e 
+ 00029937  0x000064dc call  0x00007537 
+ 00029938  0x000064dd call  0x000075aa 
+ 00029939  0x000064de increase  0x00000010 , 0x00000013 
+ 00029940  0x000064df increase  0xfffffff0 , 0x00000012 
+ 00029941  0x000064e0 branch  0x000074ed , 0x00000002 
+ 00029942  0x000064e1 rtn 
+ 00029943  0x000064e4 arg  0x0000443e , 0x00000013 
+ 00029944  0x000064e5 fetcht  0x00000005 , 0x00004465 
+ 00029945  0x000064e6 call  0x000074d5 
+ 00029946  0x000064e7 force  0x00000008 , 0x00000038 
+ 00029947  0x000064e8 iforce  0x0000002f 
+ 00029948  0x000064e9 force  0x00000000 , 0x00000011 
+ 00029949  0x000064ea call  0x000074c1 
+ 00029950  0x000064eb call  0x00007537 
+ 00029951  0x000064ec arg  0x00004440 , 0x00000013 
+ 00029952  0x000064ed fetch  0x00000001 , 0x0000443f 
+ 00029953  0x000064ee add  0x0000003f , 0xffffffff , 0x00000012 
+ 00029954  0x000064ef iadd  0x00000013 , 0x00000005 
+ 00029955  0x000064f0 force  0x0000000c , 0x00000038 
+ 00029956  0x000064f1 deposit  0x0000002f 
+ 00029957  0x000064f2 istore  0x00000004 , 0x00000005 
+ 00029958  0x000064f3 call  0x000074ed 
+ 00029959  0x000064f4 fetch  0x00000001 , 0x0000443f 
+ 00029960  0x000064f5 increase  0x00000004 , 0x0000003f 
+ 00029961  0x000064f6 store  0x00000001 , 0x0000443f 
+ 00029962  0x000064f7 fetcht  0x00000005 , 0x00004465 
+ 00029963  0x000064f8 increase  0x00000001 , 0x00000002 
+ 00029964  0x000064f9 storet  0x00000005 , 0x00004465 
+ 00029965  0x000064fa rtn 
+ 00029966  0x000064fd fetch  0x00000001 , 0x00000341 
+ 00029967  0x000064fe sub  0x0000003f , 0x00000014 , 0x0000003e 
+ 00029968  0x000064ff branch  0x00007511 , 0x00000002 
+ 00029969  0x00006501 arg  0x00000342 , 0x00000013 
+ 00029970  0x00006502 add  0x0000003f , 0xffffffff , 0x00000012 
+ 00029971  0x00006503 increase  0xfffffffc , 0x0000003f 
+ 00029972  0x00006504 store  0x00000001 , 0x00000341 
+ 00029973  0x00006505 iadd  0x00000013 , 0x00000006 
+ 00029974  0x00006506 ifetch  0x00000004 , 0x00000006 
+ 00029975  0x00006507 force  0x00000008 , 0x00000038 
+ 00029976  0x00006508 iforce  0x0000002f 
+ 00029977  0x00006509 force  0x00000000 , 0x00000011 
+ 00029978  0x0000650a fetcht  0x00000005 , 0x0000446a 
+ 00029979  0x0000650b call  0x000074c1 
+ 00029980  0x0000650c call  0x00007537 
+ 00029981  0x0000650d force  0x0000000c , 0x00000038 
+ 00029982  0x0000650e deposit  0x0000002f 
+ 00029983  0x0000650f store  0x00000004 , 0x0000037c 
+ 00029984  0x00006510 call  0x000074ed 
+ 00029985  0x00006511 arg  0x00000340 , 0x00000013 
+ 00029986  0x00006512 call  0x000074d5 
+ 00029987  0x00006513 fetcht  0x00000004 , 0x0000037c 
+ 00029988  0x00006514 isub  0x00000002 , 0x0000003f 
+ 00029989  0x00006515 nrtn  0x00000034 
+ 00029990  0x00006516 fetch  0x00000004 , 0x0000446f 
+ 00029991  0x00006517 isub  0x00000002 , 0x0000003f 
+ 00029992  0x00006518 rtn  0x00000034 
+ 00029993  0x00006519 storet  0x00000004 , 0x0000446f 
+ 00029994  0x0000651a fetch  0x00000005 , 0x0000446a 
+ 00029995  0x0000651b increase  0x00000001 , 0x0000003f 
+ 00029996  0x0000651c store  0x00000005 , 0x0000446a 
+ 00029997  0x0000651d force  0x00000000 , 0x0000003f 
+ 00029998  0x0000651e rtn 
+ 00029999  0x00006521 nbranch  0x0000752f , 0x00000037 
+ 00030000  0x00006522 rtn 
+ 00030001  0x00006525 force  0x00000030 , 0x00000036 
+ 00030002  0x00006526 force  0x00000000 , 0x00000036 
+ 00030003  0x00006527 branch  0x0000752f 
+ 00030004  0x0000652a force  0x00000032 , 0x00000036 
+ 00030005  0x0000652b force  0x00000002 , 0x00000036 
+ 00030006  0x0000652c branch  0x0000752f 
+ 00030007  0x0000652f force  0x00000034 , 0x00000036 
+ 00030008  0x00006530 force  0x00000004 , 0x00000036 
+ 00030009  0x00006531 branch  0x0000752f 
+ 00030010  0x00006534 force  0x00000036 , 0x00000036 
+ 00030011  0x00006535 force  0x00000006 , 0x00000036 
+ 00030012  0x00006536 branch  0x0000752f 
+ 00030013  0x00006539 force  0x00000001 , 0x00000036 
+ 00030014  0x0000653a force  0x00000000 , 0x00000036 
+ 00030015  0x0000653b rtn 
+ 00030016  0x0000653d force  0x00000000 , 0x00000038 
+ 00030017  0x0000653e fetch  0x00000004 , 0x000003b0 
+ 00030018  0x0000653f iforce  0x0000002f 
+ 00030019  0x00006540 increase  0x00000001 , 0x00000038 
+ 00030020  0x00006541 ifetch  0x00000004 , 0x00000006 
+ 00030021  0x00006542 iforce  0x0000002f 
+ 00030022  0x00006543 increase  0x00000001 , 0x00000038 
+ 00030023  0x00006544 fetch  0x00000004 , 0x0000449c 
+ 00030024  0x00006545 iforce  0x0000002f 
+ 00030025  0x00006546 increase  0x00000001 , 0x00000038 
+ 00030026  0x00006547 ifetch  0x00000004 , 0x00000006 
+ 00030027  0x00006548 iforce  0x0000002f 
+ 00030028  0x00006549 increase  0x00000001 , 0x00000038 
+ 00030029  0x0000654a call  0x0000759e 
+ 00030030  0x0000654b force  0x00000038 , 0x00000036 
+ 00030031  0x0000654c force  0x00000008 , 0x00000036 
+ 00030032  0x0000654d branch  0x0000752f 
+ 00030033  0x00006551 fetch  0x00000006 , 0x000044f9 
+ 00030034  0x00006552 fetcht  0x00000006 , 0x000003d0 
+ 00030035  0x00006553 branch  0x00007556 , 0x00000029 
+ 00030036  0x00006554 fetch  0x00000006 , 0x000003d0 
+ 00030037  0x00006555 fetcht  0x00000006 , 0x000044f9 
+ 00030038  0x00006557 force  0x00000008 , 0x00000038 
+ 00030039  0x00006558 copy  0x00000002 , 0x0000002f 
+ 00030040  0x00006559 increase  0x00000001 , 0x00000038 
+ 00030041  0x0000655a rshift32  0x00000002 , 0x0000002f 
+ 00030042  0x0000655b lshift16  0x0000003f , 0x0000003f 
+ 00030043  0x0000655c ior  0x0000002f , 0x0000002f 
+ 00030044  0x0000655d increase  0x00000001 , 0x00000038 
+ 00030045  0x0000655e rshift32  0x0000003f , 0x0000002f 
+ 00030046  0x0000655f increase  0x00000001 , 0x00000038 
+ 00030047  0x00006560 force  0x00000000 , 0x0000002f 
+ 00030048  0x00006561 force  0x00000000 , 0x0000003f 
+ 00030049  0x00006562 fetch  0x00000001 , 0x000044e6 
+ 00030050  0x00006563 fetcht  0x00000001 , 0x000044dc 
+ 00030051  0x00006564 nbranch  0x00007566 , 0x00000029 
+ 00030052  0x00006566 fetch  0x00000001 , 0x000044ed 
+ 00030053  0x00006567 fetcht  0x00000001 , 0x000044e6 
+ 00030054  0x00006569 store  0x00000001 , 0x000044ac 
+ 00030055  0x0000656a storet  0x00000001 , 0x000044ad 
+ 00030056  0x0000656b force  0x00000000 , 0x00000038 
+ 00030057  0x0000656c arg  0x000044ac , 0x00000012 
+ 00030058  0x0000656d force  0x00000004 , 0x00000039 
+ 00030059  0x0000656f ifetch  0x00000004 , 0x00000011 
+ 00030060  0x00006570 ifetcht  0x00000004 , 0x00000012 
+ 00030061  0x00006571 ixor  0x00000002 , 0x0000002f 
+ 00030062  0x00006572 increase  0x00000001 , 0x00000038 
+ 00030063  0x00006573 increase  0x00000004 , 0x00000011 
+ 00030064  0x00006574 increase  0x00000004 , 0x00000012 
+ 00030065  0x00006575 loop  0x0000756b 
+ 00030066  0x00006576 call  0x0000759e 
+ 00030067  0x00006577 force  0x00000038 , 0x00000036 
+ 00030068  0x00006578 force  0x0000000c , 0x00000036 
+ 00030069  0x00006579 call  0x0000752f 
+ 00030070  0x0000657b call  0x0000759d 
+ 00030071  0x0000657c force  0x0000003a , 0x00000036 
+ 00030072  0x0000657d force  0x00000008 , 0x00000036 
+ 00030073  0x0000657e branch  0x0000752f 
+ 00030074  0x00006581 compare  0x00000000 , 0x00000039 , 0x00000003 
+ 00030075  0x00006582 rtn  0x00000001 
+ 00030076  0x00006583 deposit  0x00000006 
+ 00030077  0x00006584 iadd  0x00000039 , 0x00000005 
+ 00030078  0x00006585 force  0x00000000 , 0x0000003f 
+ 00030079  0x00006587 istore  0x00000001 , 0x00000005 
+ 00030080  0x00006588 increase  0x00000001 , 0x00000039 
+ 00030081  0x00006589 compare  0x00000000 , 0x00000039 , 0x00000003 
+ 00030082  0x0000658a rtn  0x00000001 
+ 00030083  0x0000658b branch  0x0000757f 
+ 00030084  0x0000658e force  0x00000000 , 0x00000038 
+ 00030085  0x00006590 deposit  0x00000039 
+ 00030086  0x00006591 branch  0x00007589 , 0x00000034 
+ 00030087  0x00006592 ifetch  0x00000004 , 0x00000006 
+ 00030088  0x00006593 increase  0xfffffffc , 0x00000039 
+ 00030089  0x00006595 iforce  0x0000002f 
+ 00030090  0x00006596 increase  0x00000001 , 0x00000038 
+ 00030091  0x00006597 compare  0x00000004 , 0x00000038 , 0x0000000f 
+ 00030092  0x00006598 rtn  0x00000001 
+ 00030093  0x00006599 branch  0x00007585 
+ 00030094  0x0000659c force  0x00000008 , 0x00000038 
+ 00030095  0x0000659d branch  0x00007593 
+ 00030096  0x0000659f force  0x00000004 , 0x00000038 
+ 00030097  0x000065a0 branch  0x00007593 
+ 00030098  0x000065a2 force  0x00000000 , 0x00000038 
+ 00030099  0x000065a4 force  0x00000004 , 0x00000039 
+ 00030100  0x000065a6 ifetch  0x00000004 , 0x00000006 
+ 00030101  0x000065a7 iforce  0x0000002f 
+ 00030102  0x000065a8 increase  0x00000001 , 0x00000038 
+ 00030103  0x000065a9 loop  0x00007594 
+ 00030104  0x000065aa rtn 
+ 00030105  0x000065ad arg  0x000003fd , 0x00000006 
+ 00030106  0x000065ae branch  0x00007590 
+ 00030107  0x000065b1 force  0x00000004 , 0x00000039 
+ 00030108  0x000065b2 branch  0x000075a0 
+ 00030109  0x000065b5 force  0x00000000 , 0x00000038 
+ 00030110  0x000065b7 force  0x00000004 , 0x00000039 
+ 00030111  0x000065b9 force  0x00000000 , 0x0000002f 
+ 00030112  0x000065bb increase  0x00000001 , 0x00000038 
+ 00030113  0x000065bc loop  0x0000759f 
+ 00030114  0x000065bd rtn 
+ 00030115  0x000065c0 force  0x0000000c , 0x00000038 
+ 00030116  0x000065c1 force  0x00000004 , 0x00000039 
+ 00030117  0x000065c3 deposit  0x0000002f 
+ 00030118  0x000065c4 istore  0x00000004 , 0x00000005 
+ 00030119  0x000065c5 increase  0x00000001 , 0x00000038 
+ 00030120  0x000065c6 loop  0x000075a5 
+ 00030121  0x000065c7 rtn 
+ 00030122  0x000065ca force  0x0000000c , 0x00000038 
+ 00030123  0x000065cb copy  0x00000013 , 0x00000005 
+ 00030124  0x000065cc add  0x00000012 , 0x00000001 , 0x00000039 
+ 00030125  0x000065cd sub  0x00000039 , 0x0000000f , 0x0000003e 
+ 00030126  0x000065ce branch  0x000075b0 , 0x00000002 
+ 00030127  0x000065cf force  0x00000010 , 0x00000039 
+ 00030128  0x000065d1 deposit  0x0000002f 
+ 00030129  0x000065d2 sub  0x00000039 , 0x00000003 , 0x0000003e 
+ 00030130  0x000065d3 branch  0x000075b8 , 0x00000002 
+ 00030131  0x000065d4 istore  0x00000004 , 0x00000005 
+ 00030132  0x000065d5 increase  0xfffffffc , 0x00000039 
+ 00030133  0x000065d6 rtn  0x00000005 
+ 00030134  0x000065d7 increase  0x00000001 , 0x00000038 
+ 00030135  0x000065d8 branch  0x000075b0 
+ 00030136  0x000065da istore  0x00000001 , 0x00000005 
+ 00030137  0x000065db rshift8  0x0000003f , 0x0000003f 
+ 00030138  0x000065dc loop  0x000075b8 
+ 00030139  0x000065dd rtn 
+ 00030140  0x000065e1 force  0x0000000c , 0x00000038 
+ 00030141  0x000065e2 force  0x00000004 , 0x00000039 
+ 00030142  0x000065e4 ifetch  0x00000004 , 0x00000006 
+ 00030143  0x000065e5 isub  0x0000002f , 0x0000003e 
+ 00030144  0x000065e6 nrtn  0x00000005 
+ 00030145  0x000065e7 increase  0x00000001 , 0x00000038 
+ 00030146  0x000065e8 loop  0x000075be 
+ 00030147  0x000065e9 force  0x00000000 , 0x0000003e 
+ 00030148  0x000065ea rtn 
+ 00030149  0x000065ed hfetch  0x00000001 , 0x00008050 
+ 00030150  0x000065ee set0  0x00000000 , 0x0000003f 
+ 00030151  0x000065ef hstore  0x00000001 , 0x00008050 
+ 00030152  0x000065f0 rtn 
+ 00030153  0x000065f3 hfetch  0x00000001 , 0x00008050 
+ 00030154  0x000065f4 set1  0x00000000 , 0x0000003f 
+ 00030155  0x000065f5 hstore  0x00000001 , 0x00008050 
+ 00030156  0x000065f6 rtn 
+ 00030157  0x000065f9 arg  0x00000742 , 0x00000005 
+ 00030158  0x000065fa setsect  0x00000000 , 0x0003ffff 
+ 00030159  0x000065fb setsect  0x00000001 , 0x0003ffff 
+ 00030160  0x000065fc setsect  0x00000002 , 0x0003ffff 
+ 00030161  0x000065fd setsect  0x00000003 , 0x0003fbff 
+ 00030162  0x000065fe istore  0x00000009 , 0x00000005 
+ 00030163  0x000065ff setsect  0x00000000 , 0x0003ffff 
+ 00030164  0x00006600 setsect  0x00000001 , 0x0003ffff 
+ 00030165  0x00006601 setsect  0x00000002 , 0x0003ffff 
+ 00030166  0x00006602 setsect  0x00000003 , 0x0003ffff 
+ 00030167  0x00006603 istore  0x00000009 , 0x00000005 
+ 00030168  0x00006604 setsect  0x00000000 , 0x0003ffff 
+ 00030169  0x00006605 setsect  0x00000001 , 0x0003ffff 
+ 00030170  0x00006606 setsect  0x00000002 , 0x0003cfff 
+ 00030171  0x00006607 setsect  0x00000003 , 0x0003ffff 
+ 00030172  0x00006608 istore  0x00000009 , 0x00000005 
+ 00030173  0x00006609 setsect  0x00000000 , 0x0003ffff 
+ 00030174  0x0000660a setsect  0x00000001 , 0x0003ffff 
+ 00030175  0x0000660b setsect  0x00000002 , 0x0003ffef 
+ 00030176  0x0000660c setsect  0x00000003 , 0x0003ffff 
+ 00030177  0x0000660d istore  0x00000009 , 0x00000005 
+ 00030178  0x0000660e setsect  0x00000000 , 0x0003ffff 
+ 00030179  0x0000660f setsect  0x00000001 , 0x0003ffff 
+ 00030180  0x00006610 setsect  0x00000002 , 0x0003ffff 
+ 00030181  0x00006611 setsect  0x00000003 , 0x0003ffff 
+ 00030182  0x00006612 istore  0x00000009 , 0x00000005 
+ 00030183  0x00006613 setsect  0x00000000 , 0x0003ffff 
+ 00030184  0x00006614 setsect  0x00000001 , 0x00026c7f 
+ 00030185  0x00006615 setsect  0x00000002 , 0x0000146b 
+ 00030186  0x00006616 setsect  0x00000003 , 0x00037bb3 
+ 00030187  0x00006617 istore  0x00000009 , 0x00000005 
+ 00030188  0x00006618 setsect  0x00000000 , 0x0001feb8 
+ 00030189  0x00006619 setsect  0x00000001 , 0x00010c12 
+ 00030190  0x0000661a setsect  0x00000002 , 0x0002b722 
+ 00030191  0x0000661b setsect  0x00000003 , 0x00029fa6 
+ 00030192  0x0000661c istore  0x00000009 , 0x00000005 
+ 00030193  0x0000661d setsect  0x00000000 , 0x0000e70f 
+ 00030194  0x0000661e setsect  0x00000001 , 0x00016720 
+ 00030195  0x0000661f setsect  0x00000002 , 0x0000519e 
+ 00030196  0x00006620 setsect  0x00000003 , 0x00019084 
+ 00030197  0x00006621 istore  0x00000009 , 0x00000005 
+ 00030198  0x00006622 setsect  0x00000000 , 0x00031012 
+ 00030199  0x00006623 setsect  0x00000001 , 0x000360bf 
+ 00030200  0x00006624 setsect  0x00000002 , 0x0003f0af 
+ 00030201  0x00006625 setsect  0x00000003 , 0x000003d3 
+ 00030202  0x00006626 istore  0x00000009 , 0x00000005 
+ 00030203  0x00006627 setsect  0x00000000 , 0x0003a188 
+ 00030204  0x00006628 setsect  0x00000001 , 0x00003ad0 
+ 00030205  0x00006629 setsect  0x00000002 , 0x0003cbf2 
+ 00030206  0x0000662a setsect  0x00000003 , 0x000243d9 
+ 00030207  0x0000662b istore  0x00000009 , 0x00000005 
+ 00030208  0x0000662c setsect  0x00000000 , 0x0002b030 
+ 00030209  0x0000662d setsect  0x00000001 , 0x00036a03 
+ 00030210  0x0000662e setsect  0x00000002 , 0x00011188 
+ 00030211  0x0000662f setsect  0x00000003 , 0x0001e520 
+ 00030212  0x00006630 istore  0x00000009 , 0x00000005 
+ 00030213  0x00006631 setsect  0x00000000 , 0x0003a11e 
+ 00030214  0x00006632 setsect  0x00000001 , 0x0000fe5d 
+ 00030215  0x00006633 setsect  0x00000002 , 0x0000dd57 
+ 00030216  0x00006634 setsect  0x00000003 , 0x0001ac93 
+ 00030217  0x00006635 istore  0x00000009 , 0x00000005 
+ 00030218  0x00006636 setsect  0x00000000 , 0x000011ed 
+ 00030219  0x00006637 setsect  0x00000001 , 0x000218c4 
+ 00030220  0x00006638 setsect  0x00000002 , 0x00008da7 
+ 00030221  0x00006639 setsect  0x00000003 , 0x000257ff 
+ 00030222  0x0000663a istore  0x00000009 , 0x00000005 
+ 00030223  0x0000663b setsect  0x00000000 , 0x0003192b 
+ 00030224  0x0000663c setsect  0x00000001 , 0x00034641 
+ 00030225  0x0000663d setsect  0x00000002 , 0x0001be0c 
+ 00030226  0x0000663e setsect  0x00000003 , 0x000366ad 
+ 00030227  0x0000663f istore  0x00000009 , 0x00000005 
+ 00030228  0x00006640 setsect  0x00000000 , 0x00001f83 
+ 00030229  0x00006641 setsect  0x00000001 , 0x00015a23 
+ 00030230  0x00006642 setsect  0x00000002 , 0x0003f9b0 
+ 00030231  0x00006643 setsect  0x00000003 , 0x00003949 
+ 00030232  0x00006644 istore  0x00000009 , 0x00000005 
+ 00030233  0x00006645 setsect  0x00000000 , 0x00013a51 
+ 00030234  0x00006646 setsect  0x00000001 , 0x000153fd 
+ 00030235  0x00006647 setsect  0x00000002 , 0x0003372a 
+ 00030236  0x00006648 setsect  0x00000003 , 0x0000f1bb 
+ 00030237  0x00006649 istore  0x00000009 , 0x00000005 
+ 00030238  0x0000664a setsect  0x00000000 , 0x0003ae85 
+ 00030239  0x0000664b setsect  0x00000001 , 0x0001eed9 
+ 00030240  0x0000664c setsect  0x00000002 , 0x00009e66 
+ 00030241  0x0000664d setsect  0x00000003 , 0x000001a8 
+ 00030242  0x0000664e istore  0x00000008 , 0x00000005 
+ 00030243  0x0000664f rtn 
+ 00030244  0x00006654 setarg  0x0000764c 
+ 00030245  0x00006655 store  0x00000002 , 0x0000428e 
+ 00030246  0x00006656 setarg  0x0000770f 
+ 00030247  0x00006657 store  0x00000002 , 0x00004290 
+ 00030248  0x00006658 setarg  0x000076ac 
+ 00030249  0x00006659 store  0x00000002 , 0x00004292 
+ 00030250  0x0000665a setarg  0x00007710 
+ 00030251  0x0000665b store  0x00000002 , 0x0000428a 
+ 00030252  0x0000665c setarg  0x00007718 
+ 00030253  0x0000665d store  0x00000002 , 0x00004294 
+ 00030254  0x0000665e set1  0x00000025 , 0x00000000 
+ 00030255  0x0000665f bpatch  0x000000f9 , 0x0000403f 
+ 00030256  0x00006660 rtn  0x0000002b 
+ 00030257  0x00006662 hjam  0x00000000 , 0x00008081 
+ 00030258  0x00006663 call  0x0000763f 
+ 00030259  0x00006665 setarg  0x00007717 
+ 00030260  0x00006666 store  0x00000002 , 0x00004288 
+ 00030261  0x00006668 jam  0x00000000 , 0x0000480e 
+ 00030262  0x00006669 jam  0x00000000 , 0x0000480a 
+ 00030263  0x0000666a jam  0x00000000 , 0x0000480b 
+ 00030264  0x0000666b setarg  0x00000000 
+ 00030265  0x0000666c store  0x00000004 , 0x00004800 
+ 00030266  0x0000666d call  0x00003f23 
+ 00030267  0x0000666e branch  0x00003f79 , 0x00000034 
+ 00030268  0x0000666f call  0x00003f96 
+ 00030269  0x00006670 call  0x00003f7e 
+ 00030270  0x00006671 branch  0x00003f6e 
+ 00030271  0x00006674 fetcht  0x00000001 , 0x0000480f 
+ 00030272  0x00006675 call  0x000069d1 
+ 00030273  0x00006676 fetcht  0x00000001 , 0x00004810 
+ 00030274  0x00006677 branch  0x000069d1 
+ 00030275  0x0000667a set1  0x00000025 , 0x00000000 
+ 00030276  0x0000667b bpatch  0x000000fa , 0x0000403f 
+ 00030277  0x0000667c fetcht  0x00000004 , 0x00004806 
+ 00030278  0x0000667d deposit  0x00000022 
+ 00030279  0x0000667e store  0x00000004 , 0x00004806 
+ 00030280  0x0000667f isub  0x00000002 , 0x0000003f 
+ 00030281  0x00006680 nrtn  0x00000002 
+ 00030282  0x00006681 sub  0x0000003f , 0x000000c8 , 0x0000003f 
+ 00030283  0x00006682 rtn 
+ 00030284  0x00006685 fetch  0x00000001 , 0x000042bc 
+ 00030285  0x00006686 rtnne  0x0000003f 
+ 00030286  0x00006688 set1  0x00000025 , 0x00000000 
+ 00030287  0x00006689 bpatch  0x000000fb , 0x0000403f 
+ 00030288  0x0000668a fetch  0x00000001 , 0x00004132 
+ 00030289  0x0000668b rtnne  0x00000009 
+ 00030290  0x0000668c disable  0x00000028 
+ 00030291  0x0000668d call  0x0000769b 
+ 00030292  0x0000668e nrtn  0x00000028 
+ 00030293  0x0000668f disable  0x00000028 
+ 00030294  0x00006690 fetch  0x00000001 , 0x00004133 
+ 00030295  0x00006691 beq  0x00000003 , 0x00007706 
+ 00030296  0x00006693 fetch  0x00000001 , 0x0000480b 
+ 00030297  0x00006694 beq  0x00000001 , 0x00007663 
+ 00030298  0x00006695 beq  0x00000002 , 0x0000767d 
+ 00030299  0x00006696 call  0x00007643 
+ 00030300  0x00006697 branch  0x00007660 , 0x00000002 
+ 00030301  0x00006699 fetch  0x00000001 , 0x0000480a 
+ 00030302  0x0000669a bbit1  0x00000000 , 0x00007674 
+ 00030303  0x0000669b bbit1  0x00000001 , 0x00007682 
+ 00030304  0x0000669e jam  0x00000000 , 0x0000480a 
+ 00030305  0x0000669f jam  0x00000000 , 0x0000480b 
+ 00030306  0x000066a0 rtn 
+ 00030307  0x000066a4 jam  0x00000000 , 0x0000480b 
+ 00030308  0x000066a5 call  0x00007bde 
+ 00030309  0x000066a6 fetch  0x00000001 , 0x00004811 
+ 00030310  0x000066a7 beq  0x00000001 , 0x0000766a 
+ 00030311  0x000066aa jam  0x00000005 , 0x00004805 
+ 00030312  0x000066ab jam  0x00000003 , 0x00004800 
+ 00030313  0x000066ac branch  0x00007688 
+ 00030314  0x000066ae jam  0x00000000 , 0x0000480e 
+ 00030315  0x000066af branch  0x0000766c 
+ 00030316  0x000066b2 jam  0x00000002 , 0x0000480e 
+ 00030317  0x000066b3 branch  0x00007684 
+ 00030318  0x000066b5 jam  0x00000003 , 0x0000480e 
+ 00030319  0x000066b6 branch  0x0000767f 
+ 00030320  0x000066b8 jam  0x00000004 , 0x0000480e 
+ 00030321  0x000066b9 branch  0x00007678 
+ 00030322  0x000066bb jam  0x00000000 , 0x0000480e 
+ 00030323  0x000066bc branch  0x00007667 
+ 00030324  0x000066bf jam  0x00000001 , 0x0000480b 
+ 00030325  0x000066c0 call  0x00007be7 
+ 00030326  0x000066c1 fetch  0x00000001 , 0x00004811 
+ 00030327  0x000066c2 beq  0x00000001 , 0x0000767c 
+ 00030328  0x000066c5 jam  0x00000005 , 0x00004805 
+ 00030329  0x000066c6 setarg  0x00020003 
+ 00030330  0x000066c7 store  0x00000003 , 0x00004800 
+ 00030331  0x000066c8 branch  0x00007688 
+ 00030332  0x000066ca rtn 
+ 00030333  0x000066cd jam  0x00000000 , 0x0000480b 
+ 00030334  0x000066ce call  0x00007bde 
+ 00030335  0x000066d0 jam  0x0000000a , 0x00004805 
+ 00030336  0x000066d1 jam  0x00000001 , 0x00004800 
+ 00030337  0x000066d2 branch  0x00007688 
+ 00030338  0x000066d4 jam  0x00000002 , 0x0000480b 
+ 00030339  0x000066d5 call  0x00007be7 
+ 00030340  0x000066d7 jam  0x0000000a , 0x00004805 
+ 00030341  0x000066d8 jam  0x00000001 , 0x00004800 
+ 00030342  0x000066d9 setarg  0x00280000 
+ 00030343  0x000066da store  0x00000003 , 0x00004801 
+ 00030344  0x000066dd set1  0x00000025 , 0x00000000 
+ 00030345  0x000066de bpatch  0x000000fc , 0x0000403f 
+ 00030346  0x000066df fetch  0x00000001 , 0x00004805 
+ 00030347  0x000066e0 copy  0x0000003f , 0x00000011 
+ 00030348  0x000066e1 call  0x00004b2c 
+ 00030349  0x000066e2 fetch  0x00000002 , 0x000042b7 
+ 00030350  0x000066e3 istore  0x00000002 , 0x00000005 
+ 00030351  0x000066e4 setarg  0x000000a1 
+ 00030352  0x000066e5 istore  0x00000001 , 0x00000005 
+ 00030353  0x000066e6 fetcht  0x00000004 , 0x00004800 
+ 00030354  0x000066e7 istoret  0x00000008 , 0x00000005 
+ 00030355  0x000066e8 setarg  0x00000000 
+ 00030356  0x000066e9 istore  0x00000001 , 0x00000005 
+ 00030357  0x000066ea store  0x00000004 , 0x00004800 
+ 00030358  0x000066ec fetch  0x00000001 , 0x0000480e 
+ 00030359  0x000066ed beq  0x00000002 , 0x0000766e 
+ 00030360  0x000066ee beq  0x00000003 , 0x00007670 
+ 00030361  0x000066ef beq  0x00000004 , 0x00007672 
+ 00030362  0x000066f0 rtn 
+ 00030363  0x000066f3 fetcht  0x00000001 , 0x0000480f 
+ 00030364  0x000066f4 call  0x000069e5 
+ 00030365  0x000066f5 setarg  0x00000000 
+ 00030366  0x000066f6 setflag  0x00000001 , 0x00000000 , 0x0000003f 
+ 00030367  0x000066f7 store  0x00000001 , 0x00004804 
+ 00030368  0x000066f8 fetcht  0x00000001 , 0x00004810 
+ 00030369  0x000066f9 call  0x000069e5 
+ 00030370  0x000066fa setarg  0x00000000 
+ 00030371  0x000066fb setflag  0x00000001 , 0x00000001 , 0x0000003f 
+ 00030372  0x000066fc fetcht  0x00000001 , 0x00004804 
+ 00030373  0x000066fd ior  0x00000002 , 0x0000003f 
+ 00030374  0x000066fe fetcht  0x00000001 , 0x0000480a 
+ 00030375  0x000066ff store  0x00000001 , 0x0000480a 
+ 00030376  0x00006700 ixor  0x00000002 , 0x0000003e 
+ 00030377  0x00006701 rtn  0x00000005 
+ 00030378  0x00006702 enable  0x00000028 
+ 00030379  0x00006703 rtn 
+ 00030380  0x00006706 copy  0x00000013 , 0x0000003f 
+ 00030381  0x00006707 beq  0x00000005 , 0x000076d8 
+ 00030382  0x00006708 beq  0x00000006 , 0x000076da 
+ 00030383  0x00006709 beq  0x00000007 , 0x000076dd 
+ 00030384  0x0000670a beq  0x00000027 , 0x000076e1 
+ 00030385  0x0000670b beq  0x00000002 , 0x000076c9 
+ 00030386  0x0000670c beq  0x00000004 , 0x000076d0 
+ 00030387  0x0000670d beq  0x00000013 , 0x000076d0 
+ 00030388  0x0000670e beq  0x00000001 , 0x000076c6 
+ 00030389  0x0000670f beq  0x00000012 , 0x000076c0 
+ 00030390  0x00006710 beq  0x0000002e , 0x00003f57 
+ 00030391  0x00006711 and  0x0000003f , 0x0000000f , 0x00000002 
+ 00030392  0x00006712 and_into  0x000000f0 , 0x0000003f 
+ 00030393  0x00006713 beq  0x00000050 , 0x000076e4 
+ 00030394  0x00006714 rtn 
+ 00030395  0x00006717 fetch  0x00000001 , 0x000047f2 
+ 00030396  0x00006718 rtn  0x00000034 
+ 00030397  0x00006719 increase  0xffffffff , 0x0000003f 
+ 00030398  0x0000671a store  0x00000001 , 0x000047f2 
+ 00030399  0x0000671b nrtn  0x00000034 
+ 00030400  0x0000671d jam  0x00000001 , 0x0000427f 
+ 00030401  0x0000671e call  0x00003fa4 
+ 00030402  0x0000671f call  0x00003fa2 
+ 00030403  0x00006720 call  0x00003f7e 
+ 00030404  0x00006721 call  0x00003f98 
+ 00030405  0x00006722 branch  0x00003f9e 
+ 00030406  0x00006726 jam  0x00000000 , 0x0000480d 
+ 00030407  0x00006727 jam  0x00000000 , 0x0000480c 
+ 00030408  0x00006728 rtn 
+ 00030409  0x0000672b set1  0x00000025 , 0x00000000 
+ 00030410  0x0000672c bpatch  0x000000fd , 0x0000403f 
+ 00030411  0x0000672d jam  0x00000000 , 0x0000429d 
+ 00030412  0x0000672e jam  0x00000000 , 0x0000480c 
+ 00030413  0x0000672f jam  0x00000000 , 0x0000480d 
+ 00030414  0x00006730 fetch  0x00000002 , 0x000042a0 
+ 00030415  0x00006731 bbit0  0x00000003 , 0x000076d4 
+ 00030416  0x00006734 fetch  0x00000002 , 0x000047fe 
+ 00030417  0x00006735 store  0x00000002 , 0x000047f0 
+ 00030418  0x00006737 call  0x00003f12 
+ 00030419  0x00006738 branch  0x00003f7b 
+ 00030420  0x0000673b bbit0  0x00000001 , 0x000076d6 
+ 00030421  0x0000673c branch  0x000076d0 
+ 00030422  0x0000673f bbit0  0x00000002 , 0x000076d2 
+ 00030423  0x00006740 branch  0x000076d0 
+ 00030424  0x00006744 call  0x00003f7e 
+ 00030425  0x00006745 branch  0x00003f98 
+ 00030426  0x00006748 setarg  0x00000002 
+ 00030427  0x00006749 store  0x00000001 , 0x000047f2 
+ 00030428  0x0000674a rtn 
+ 00030429  0x0000674d jam  0x00000000 , 0x0000480c 
+ 00030430  0x0000674e setarg  0x00000001 
+ 00030431  0x0000674f store  0x00000001 , 0x0000480d 
+ 00030432  0x00006750 rtn 
+ 00030433  0x00006753 setarg  0x00000005 
+ 00030434  0x00006754 store  0x00000001 , 0x0000480c 
+ 00030435  0x00006755 rtn 
+ 00030436  0x00006758 set1  0x00000025 , 0x00000000 
+ 00030437  0x00006759 bpatch  0x000000fe , 0x0000403f 
+ 00030438  0x0000675a storet  0x00000001 , 0x00000259 
+ 00030439  0x0000675c fetch  0x00000001 , 0x00000259 
+ 00030440  0x0000675d rtn  0x00000034 
+ 00030441  0x0000675e increase  0xffffffff , 0x0000003f 
+ 00030442  0x0000675f store  0x00000001 , 0x00000259 
+ 00030443  0x00006760 call  0x000076ef 
+ 00030444  0x00006761 call  0x000076bb 
+ 00030445  0x00006762 call  0x000076fa 
+ 00030446  0x00006763 branch  0x000076e7 
+ 00030447  0x00006766 fetch  0x00000001 , 0x0000480c 
+ 00030448  0x00006767 rtn  0x00000034 
+ 00030449  0x00006768 fetch  0x00000001 , 0x0000480c 
+ 00030450  0x00006769 increase  0xffffffff , 0x0000003f 
+ 00030451  0x0000676a store  0x00000001 , 0x0000480c 
+ 00030452  0x0000676b nrtn  0x00000034 
+ 00030453  0x0000676c fetch  0x00000001 , 0x000002e6 
+ 00030454  0x0000676d set1  0x00000000 , 0x0000003f 
+ 00030455  0x0000676e set1  0x00000007 , 0x0000003f 
+ 00030456  0x0000676f store  0x00000001 , 0x000002e6 
+ 00030457  0x00006770 rtn 
+ 00030458  0x00006773 fetch  0x00000001 , 0x0000480d 
+ 00030459  0x00006774 rtn  0x00000034 
+ 00030460  0x00006775 fetch  0x00000001 , 0x0000480d 
+ 00030461  0x00006776 increase  0xffffffff , 0x0000003f 
+ 00030462  0x00006777 store  0x00000001 , 0x0000480d 
+ 00030463  0x00006778 nrtn  0x00000034 
+ 00030464  0x00006779 branch  0x00003f77 
+ 00030465  0x0000677c set1  0x00000025 , 0x00000000 
+ 00030466  0x0000677d bpatch  0x000000ff , 0x0000403f 
+ 00030467  0x0000677e fetch  0x00000001 , 0x00004133 
+ 00030468  0x0000677f rtnne  0x00000003 
+ 00030469  0x00006780 branch  0x0000764e 
+ 00030470  0x00006782 call  0x00007643 
+ 00030471  0x00006783 rtn  0x00000002 
+ 00030472  0x00006784 fetch  0x00000001 , 0x0000480a 
+ 00030473  0x00006785 rtn  0x00000034 
+ 00030474  0x00006786 call  0x00003f23 
+ 00030475  0x00006787 branch  0x00003f79 , 0x00000034 
+ 00030476  0x00006788 call  0x00003f96 
+ 00030477  0x00006789 call  0x00003f7e 
+ 00030478  0x0000678a branch  0x00003f6e 
+ 00030479  0x0000678e branch  0x00007701 
+ 00030480  0x00006792 fetcht  0x00000001 , 0x0000480f 
+ 00030481  0x00006793 call  0x000069b4 
+ 00030482  0x00006794 fetch  0x00000001 , 0x00004811 
+ 00030483  0x00006795 bne  0x00000001 , 0x00007715 
+ 00030484  0x00006796 rtn 
+ 00030485  0x00006798 fetcht  0x00000001 , 0x00004810 
+ 00030486  0x00006799 branch  0x000069b4 
+ 00030487  0x0000679c branch  0x0000763f 
+ 00030488  0x000067a0 branch  0x00003f9a 
+ 00030489  0x000067a5 set1  0x00000025 , 0x00000000 
+ 00030490  0x000067a6 bpatch  0x000000f2 , 0x0000403e 
+ 00030491  0x000067a7 fetch  0x00000001 , 0x000047dc 
+ 00030492  0x000067a8 branch  0x00006009 , 0x00000034 
+ 00030493  0x000067a9 call  0x00006003 
+ 00030494  0x000067aa setarg  0x00000000 
+ 00030495  0x000067ab store  0x00000008 , 0x000007da 
+ 00030496  0x000067ac store  0x00000004 , 0x000007e2 
+ 00030497  0x000067ae arg  0x000007e9 , 0x00000005 
+ 00030498  0x000067af istore  0x00000007 , 0x00000005 
+ 00030499  0x000067b0 jam  0x00000000 , 0x000007e0 
+ 00030500  0x000067b1 branch  0x000077a4 
+ 00030501  0x000067b4 jam  0x00000001 , 0x000007dc 
+ 00030502  0x000067b5 branch  0x0000772a 
+ 00030503  0x000067b7 fetch  0x00000001 , 0x00004793 
+ 00030504  0x000067b8 beq  0x00000001 , 0x000077c2 
+ 00030505  0x000067b9 branch  0x00003bf1 
+ 00030506  0x000067bb fetch  0x00000001 , 0x00004793 
+ 00030507  0x000067bc beq  0x00000001 , 0x0000772d 
+ 00030508  0x000067bd branch  0x000077a4 
+ 00030509  0x000067c0 call  0x000077c2 
+ 00030510  0x000067c1 fetch  0x00000001 , 0x000007db 
+ 00030511  0x000067c2 nrtn  0x00000034 
+ 00030512  0x000067c3 jam  0x00000003 , 0x000007da 
+ 00030513  0x000067c4 rtn 
+ 00030514  0x000067c7 fetch  0x00000001 , 0x000007de 
+ 00030515  0x000067c8 bne  0x00000000 , 0x00007750 
+ 00030516  0x000067c9 call  0x0000774d 
+ 00030517  0x000067ca arg  0x00000898 , 0x00000005 
+ 00030518  0x000067cb setarg  0x00000848 
+ 00030519  0x000067cc istore  0x00000002 , 0x00000005 
+ 00030520  0x000067cd setarg  0x000047c4 
+ 00030521  0x000067ce istore  0x00000002 , 0x00000005 
+ 00030522  0x000067cf setarg  0x00000808 
+ 00030523  0x000067d0 istore  0x00000002 , 0x00000005 
+ 00030524  0x000067d1 branch  0x00007744 
+ 00030525  0x000067d3 arg  0x00000898 , 0x00000005 
+ 00030526  0x000067d4 setarg  0x00000858 
+ 00030527  0x000067d5 istore  0x00000002 , 0x00000005 
+ 00030528  0x000067d6 setarg  0x00000808 
+ 00030529  0x000067d7 istore  0x00000002 , 0x00000005 
+ 00030530  0x000067d8 setarg  0x000047c4 
+ 00030531  0x000067d9 istore  0x00000002 , 0x00000005 
+ 00030532  0x000067db call  0x00007ad2 
+ 00030533  0x000067dc fetch  0x00000001 , 0x000007db 
+ 00030534  0x000067dd beq  0x00000004 , 0x0000774a 
+ 00030535  0x000067de jam  0x00000001 , 0x000007dc 
+ 00030536  0x000067df jam  0x00000005 , 0x000007da 
+ 00030537  0x000067e0 rtn 
+ 00030538  0x000067e2 jam  0x00000014 , 0x000007db 
+ 00030539  0x000067e3 call  0x00007727 
+ 00030540  0x000067e4 branch  0x0000780f 
+ 00030541  0x000067e7 arg  0x00000838 , 0x00000005 
+ 00030542  0x000067e8 force  0x00000008 , 0x00000007 
+ 00030543  0x000067e9 branch  0x000077db 
+ 00030544  0x000067ec jam  0x00000001 , 0x000007dc 
+ 00030545  0x000067ed rtn 
+ 00030546  0x000067f1 arg  0x000006c3 , 0x00000005 
+ 00030547  0x000067f2 fetch  0x00000006 , 0x00004140 
+ 00030548  0x000067f3 istore  0x00000006 , 0x00000005 
+ 00030549  0x000067f4 fetch  0x00000006 , 0x00000040 
+ 00030550  0x000067f5 istore  0x00000006 , 0x00000005 
+ 00030551  0x000067f6 fetch  0x00000003 , 0x000007e9 
+ 00030552  0x000067f7 istore  0x00000003 , 0x00000005 
+ 00030553  0x000067f9 call  0x00007b3c 
+ 00030554  0x000067fb arg  0x00000868 , 0x00000011 
+ 00030555  0x000067fc arg  0x00000878 , 0x00000012 
+ 00030556  0x000067fd force  0x00000004 , 0x00000007 
+ 00030557  0x000067fe call  0x000077e0 
+ 00030558  0x000067ff nbranch  0x00007768 , 0x00000001 
+ 00030559  0x00006802 fetch  0x00000001 , 0x000007db 
+ 00030560  0x00006803 beq  0x00000009 , 0x00007765 
+ 00030561  0x00006804 jam  0x0000000a , 0x000007da 
+ 00030562  0x00006805 jam  0x00000001 , 0x000007dc 
+ 00030563  0x00006806 jam  0x00000003 , 0x0000007c 
+ 00030564  0x00006807 rtn 
+ 00030565  0x00006809 jam  0x00000003 , 0x0000007c 
+ 00030566  0x0000680a jam  0x00000015 , 0x000007db 
+ 00030567  0x0000680b branch  0x0000780f 
+ 00030568  0x0000680f fetch  0x00000001 , 0x000007db 
+ 00030569  0x00006810 beq  0x00000009 , 0x0000776e 
+ 00030570  0x00006811 jam  0x00000000 , 0x000007da 
+ 00030571  0x00006812 jam  0x00000004 , 0x0000007c 
+ 00030572  0x00006814 jam  0x00000005 , 0x0000007e 
+ 00030573  0x00006815 rtn 
+ 00030574  0x00006817 jam  0x00000004 , 0x0000007c 
+ 00030575  0x00006818 jam  0x00000000 , 0x000007db 
+ 00030576  0x00006819 rtn 
+ 00030577  0x0000681c fetch  0x00000001 , 0x000007df 
+ 00030578  0x0000681d beq  0x00000001 , 0x00007775 
+ 00030579  0x0000681e jam  0x0000000a , 0x000007db 
+ 00030580  0x0000681f branch  0x0000780f 
+ 00030581  0x00006821 arg  0x000006c3 , 0x00000005 
+ 00030582  0x00006822 fetch  0x00000006 , 0x00000040 
+ 00030583  0x00006823 istore  0x00000006 , 0x00000005 
+ 00030584  0x00006824 fetch  0x00000006 , 0x00004140 
+ 00030585  0x00006825 istore  0x00000006 , 0x00000005 
+ 00030586  0x00006826 fetch  0x00000003 , 0x000007e6 
+ 00030587  0x00006827 istore  0x00000003 , 0x00000005 
+ 00030588  0x00006829 call  0x00007b4a 
+ 00030589  0x0000682a fetch  0x00000001 , 0x000007db 
+ 00030590  0x0000682b beq  0x0000000a , 0x00007782 
+ 00030591  0x0000682c jam  0x0000000b , 0x000007da 
+ 00030592  0x0000682d jam  0x00000001 , 0x000007dc 
+ 00030593  0x0000682e rtn 
+ 00030594  0x00006830 jam  0x0000000b , 0x000007db 
+ 00030595  0x00006831 jam  0x00000001 , 0x000007dd 
+ 00030596  0x00006832 rtn 
+ 00030597  0x00006835 arg  0x00000898 , 0x00000005 
+ 00030598  0x00006836 fetch  0x00000006 , 0x00000040 
+ 00030599  0x00006837 istore  0x00000006 , 0x00000005 
+ 00030600  0x00006838 fetch  0x00000006 , 0x00004140 
+ 00030601  0x00006839 istore  0x00000006 , 0x00000005 
+ 00030602  0x0000683a setarg  0x00000848 
+ 00030603  0x0000683b istore  0x00000002 , 0x00000005 
+ 00030604  0x0000683c setarg  0x00000858 
+ 00030605  0x0000683d istore  0x00000002 , 0x00000005 
+ 00030606  0x0000683e branch  0x00007799 
+ 00030607  0x00006840 jam  0x0000000f , 0x000007da 
+ 00030608  0x00006841 arg  0x00000898 , 0x00000005 
+ 00030609  0x00006842 fetch  0x00000006 , 0x00004140 
+ 00030610  0x00006843 istore  0x00000006 , 0x00000005 
+ 00030611  0x00006844 fetch  0x00000006 , 0x00000040 
+ 00030612  0x00006845 istore  0x00000006 , 0x00000005 
+ 00030613  0x00006846 setarg  0x00000858 
+ 00030614  0x00006847 istore  0x00000002 , 0x00000005 
+ 00030615  0x00006848 setarg  0x00000848 
+ 00030616  0x00006849 istore  0x00000002 , 0x00000005 
+ 00030617  0x0000684c arg  0x000006c3 , 0x00000005 
+ 00030618  0x0000684d fetch  0x00000006 , 0x00000898 
+ 00030619  0x0000684e istore  0x00000006 , 0x00000005 
+ 00030620  0x0000684f fetch  0x00000006 , 0x0000089e 
+ 00030621  0x00006850 istore  0x00000006 , 0x00000005 
+ 00030622  0x00006852 call  0x00007b06 
+ 00030623  0x00006855 jam  0x00000001 , 0x0000425e 
+ 00030624  0x00006856 arg  0x00004262 , 0x00000005 
+ 00030625  0x00006857 arg  0x00000868 , 0x00000006 
+ 00030626  0x00006858 call  0x00007e35 
+ 00030627  0x00006859 branch  0x00003229 
+ 00030628  0x0000685d set1  0x00000025 , 0x00000000 
+ 00030629  0x0000685e bpatch  0x000000f3 , 0x0000403e 
+ 00030630  0x0000685f fetch  0x00000001 , 0x00004793 
+ 00030631  0x00006860 rtnne  0x00000000 
+ 00030632  0x00006861 fetch  0x00000001 , 0x000007de 
+ 00030633  0x00006862 rtnne  0x00000000 
+ 00030634  0x00006863 arg  0x00004794 , 0x00000005 
+ 00030635  0x00006864 force  0x0000000b , 0x00000007 
+ 00030636  0x00006865 call  0x000077db 
+ 00030637  0x00006866 random  0x0000003f 
+ 00030638  0x00006867 rshift  0x0000003f , 0x0000003f 
+ 00030639  0x00006868 istore  0x00000002 , 0x00000005 
+ 00030640  0x0000686a arg  0x0000065a , 0x00000005 
+ 00030641  0x0000686b arg  0x00004794 , 0x00000006 
+ 00030642  0x0000686c call  0x00007e33 
+ 00030643  0x0000686e arg  0x00000582 , 0x00000005 
+ 00030644  0x0000686f arg  0x0000078a , 0x00000006 
+ 00030645  0x00006870 call  0x00007e2d 
+ 00030646  0x00006872 arg  0x000005b2 , 0x00000005 
+ 00030647  0x00006873 call  0x00007e3a 
+ 00030648  0x00006874 jam  0x00000001 , 0x000005b2 
+ 00030649  0x00006876 call  0x00007b7f 
+ 00030650  0x00006877 jam  0x00000001 , 0x000007de 
+ 00030651  0x00006878 rtn 
+ 00030652  0x0000687b arg  0x000047ac , 0x00000005 
+ 00030653  0x0000687c arg  0x000005ca , 0x00000006 
+ 00030654  0x0000687d call  0x00007e2d 
+ 00030655  0x0000687e jam  0x00000001 , 0x00004793 
+ 00030656  0x0000687f jam  0x00000000 , 0x000007de 
+ 00030657  0x00006880 rtn 
+ 00030658  0x00006883 set1  0x00000025 , 0x00000000 
+ 00030659  0x00006884 bpatch  0x000000f4 , 0x0000403e 
+ 00030660  0x00006885 fetch  0x00000001 , 0x000007e5 
+ 00030661  0x00006886 rtnne  0x00000000 
+ 00030662  0x00006887 fetch  0x00000001 , 0x000007de 
+ 00030663  0x00006888 rtnne  0x00000000 
+ 00030664  0x0000688a arg  0x0000065a , 0x00000005 
+ 00030665  0x0000688b arg  0x00004794 , 0x00000006 
+ 00030666  0x0000688c call  0x00007e33 
+ 00030667  0x0000688e arg  0x00000582 , 0x00000005 
+ 00030668  0x0000688f arg  0x000007f0 , 0x00000006 
+ 00030669  0x00006890 call  0x00007e2d 
+ 00030670  0x00006892 arg  0x000005b2 , 0x00000005 
+ 00030671  0x00006893 call  0x00007e3a 
+ 00030672  0x00006894 jam  0x00000001 , 0x000005b2 
+ 00030673  0x00006896 call  0x00007b7f 
+ 00030674  0x00006897 jam  0x00000002 , 0x000007de 
+ 00030675  0x00006898 rtn 
+ 00030676  0x0000689b jam  0x00000001 , 0x000007df 
+ 00030677  0x0000689c arg  0x00000820 , 0x00000005 
+ 00030678  0x0000689d arg  0x000005ca , 0x00000006 
+ 00030679  0x0000689e call  0x00007e33 
+ 00030680  0x0000689f jam  0x00000001 , 0x000007e5 
+ 00030681  0x000068a0 jam  0x00000000 , 0x000007de 
+ 00030682  0x000068a1 rtn 
+ 00030683  0x000068a4 increase  0xffffffff , 0x00000007 
+ 00030684  0x000068a5 nrtn  0x00000002 
+ 00030685  0x000068a6 random  0x0000003f 
+ 00030686  0x000068a7 istore  0x00000002 , 0x00000005 
+ 00030687  0x000068a8 branch  0x000077db 
+ 00030688  0x000068aa increase  0xffffffff , 0x00000007 
+ 00030689  0x000068ab nbranch  0x000077ec , 0x00000002 
+ 00030690  0x000068ac ifetch  0x00000004 , 0x00000011 
+ 00030691  0x000068ad copy  0x0000003f , 0x00000002 
+ 00030692  0x000068ae ifetch  0x00000004 , 0x00000012 
+ 00030693  0x000068af iflip  0x00000002 , 0x0000003f 
+ 00030694  0x000068b0 nbranch  0x000077ea , 0x00000005 
+ 00030695  0x000068b1 increase  0x00000004 , 0x00000011 
+ 00030696  0x000068b2 increase  0x00000004 , 0x00000012 
+ 00030697  0x000068b3 branch  0x000077e0 
+ 00030698  0x000068b5 disable  0x00000001 
+ 00030699  0x000068b6 rtn 
+ 00030700  0x000068b8 enable  0x00000001 
+ 00030701  0x000068b9 rtn 
+ 00030702  0x000068c1 set1  0x00000025 , 0x00000000 
+ 00030703  0x000068c2 bpatch  0x000000f5 , 0x0000403e 
+ 00030704  0x000068c3 fetch  0x00000001 , 0x000007dc 
+ 00030705  0x000068c4 rtn  0x00000034 
+ 00030706  0x000068c5 jam  0x00000000 , 0x000007dc 
+ 00030707  0x000068c6 fetch  0x00000001 , 0x000007da 
+ 00030708  0x000068c7 beq  0x00000003 , 0x00006117 
+ 00030709  0x000068c8 beq  0x00000005 , 0x00006134 
+ 00030710  0x000068c9 beq  0x00000007 , 0x0000613f 
+ 00030711  0x000068ca beq  0x0000000b , 0x00006155 
+ 00030712  0x000068cb beq  0x00000002 , 0x00007725 
+ 00030713  0x000068cc beq  0x00000004 , 0x00007732 
+ 00030714  0x000068cd beq  0x00000009 , 0x00007752 
+ 00030715  0x000068ce beq  0x0000000a , 0x00007771 
+ 00030716  0x000068cf beq  0x0000000c , 0x0000778f 
+ 00030717  0x000068d1 rtn 
+ 00030718  0x000068d4 set1  0x00000025 , 0x00000000 
+ 00030719  0x000068d5 bpatch  0x000000f6 , 0x0000403e 
+ 00030720  0x000068d6 fetch  0x00000001 , 0x000007dd 
+ 00030721  0x000068d7 rtn  0x00000034 
+ 00030722  0x000068d8 jam  0x00000000 , 0x000007dd 
+ 00030723  0x000068d9 fetch  0x00000001 , 0x000007db 
+ 00030724  0x000068da beq  0x00000012 , 0x000060f7 
+ 00030725  0x000068db beq  0x00000013 , 0x000060ff 
+ 00030726  0x000068dc beq  0x00000003 , 0x00006103 
+ 00030727  0x000068dd beq  0x00000004 , 0x0000773d 
+ 00030728  0x000068de beq  0x00000014 , 0x00006107 
+ 00030729  0x000068df beq  0x00000007 , 0x00006115 
+ 00030730  0x000068e0 beq  0x0000000a , 0x00007771 
+ 00030731  0x000068e1 beq  0x0000000b , 0x00006154 
+ 00030732  0x000068e2 beq  0x00000009 , 0x00007752 
+ 00030733  0x000068e3 beq  0x00000015 , 0x0000614e 
+ 00030734  0x000068e4 rtn 
+ 00030735  0x000068e7 jam  0x00000001 , 0x000007dd 
+ 00030736  0x000068e8 rtn 
+ 00030737  0x000068eb jam  0x00000000 , 0x000007dd 
+ 00030738  0x000068ec rtn 
+ 00030739  0x000068ee set1  0x00000025 , 0x00000000 
+ 00030740  0x000068ef bpatch  0x000000f7 , 0x0000403e 
+ 00030741  0x000068f0 fetch  0x00000001 , 0x000007de 
+ 00030742  0x000068f1 rtn  0x00000034 
+ 00030743  0x000068f2 increase  0x00000080 , 0x0000003f 
+ 00030744  0x000068f3 store  0x00000001 , 0x000007de 
+ 00030745  0x000068f4 rtnbit1  0x00000007 
+ 00030746  0x000068f5 fetch  0x00000001 , 0x00000581 
+ 00030747  0x000068f6 branch  0x0000781d , 0x00000034 
+ 00030748  0x000068f7 branch  0x00007b8a 
+ 00030749  0x000068fa call  0x00007a0c 
+ 00030750  0x000068fb fetch  0x00000001 , 0x000007de 
+ 00030751  0x000068fc beq  0x00000001 , 0x000077bc 
+ 00030752  0x000068fd beq  0x00000002 , 0x000077d4 
+ 00030753  0x000068fe rtn 
+ 00030754  0x00006902 and  0x0000003f , 0x00000007 , 0x00000007 
+ 00030755  0x00006903 rshift3  0x0000003f , 0x0000003f 
+ 00030756  0x00006904 iadd  0x00000006 , 0x00000006 
+ 00030757  0x00006905 ifetch  0x00000001 , 0x00000006 
+ 00030758  0x00006906 qisolate0  0x0000003f 
+ 00030759  0x00006907 rtn 
+ 00030760  0x0000690b call  0x00007e33 
+ 00030761  0x0000690c call  0x00007e33 
+ 00030762  0x0000690d branch  0x00007e33 
+ 00030763  0x00006911 ifetch  0x00000008 , 0x00000006 
+ 00030764  0x00006912 nrtn  0x00000034 
+ 00030765  0x00006913 ifetch  0x00000008 , 0x00000006 
+ 00030766  0x00006914 nrtn  0x00000034 
+ 00030767  0x00006915 ifetch  0x00000008 , 0x00000006 
+ 00030768  0x00006916 rtn 
+ 00030769  0x0000691b force  0x00000006 , 0x00000039 
+ 00030770  0x0000691d ifetch  0x00000004 , 0x00000011 
+ 00030771  0x0000691e iforce  0x00000002 
+ 00030772  0x0000691f ifetch  0x00000004 , 0x00000012 
+ 00030773  0x00006920 isub  0x00000002 , 0x0000003e 
+ 00030774  0x00006921 nrtn  0x00000005 
+ 00030775  0x00006922 increase  0x00000004 , 0x00000011 
+ 00030776  0x00006923 increase  0x00000004 , 0x00000012 
+ 00030777  0x00006924 loop  0x00007832 
+ 00030778  0x00006925 rtn 
+ 00030779  0x00006929 force  0x00000006 , 0x00000039 
+ 00030780  0x0000692a increase  0x00000014 , 0x00000011 
+ 00030781  0x0000692b increase  0x00000014 , 0x00000012 
+ 00030782  0x0000692d ifetch  0x00000004 , 0x00000012 
+ 00030783  0x0000692e iforce  0x00000002 
+ 00030784  0x0000692f ifetch  0x00000004 , 0x00000011 
+ 00030785  0x00006930 isub  0x00000002 , 0x0000003f 
+ 00030786  0x00006931 nrtn  0x00000002 
+ 00030787  0x00006932 nrtn  0x00000034 
+ 00030788  0x00006933 increase  0xfffffffc , 0x00000011 
+ 00030789  0x00006934 increase  0xfffffffc , 0x00000012 
+ 00030790  0x00006935 loop  0x0000783e 
+ 00030791  0x00006936 rtn 
+ 00030792  0x00006939 force  0x00000006 , 0x00000039 
+ 00030793  0x0000693a force  0x00000000 , 0x00000013 
+ 00030794  0x0000693c ifetch  0x00000004 , 0x00000011 
+ 00030795  0x0000693d iforce  0x00000002 
+ 00030796  0x0000693e ifetch  0x00000004 , 0x00000012 
+ 00030797  0x0000693f iadd  0x00000002 , 0x0000003f 
+ 00030798  0x00006940 iadd  0x00000013 , 0x0000003f 
+ 00030799  0x00006941 istore  0x00000004 , 0x00000005 
+ 00030800  0x00006942 isolate1  0x00000020 , 0x0000003f 
+ 00030801  0x00006943 setflag  0x00000001 , 0x00000000 , 0x00000013 
+ 00030802  0x00006944 increase  0x00000004 , 0x00000011 
+ 00030803  0x00006945 increase  0x00000004 , 0x00000012 
+ 00030804  0x00006946 loop  0x0000784a 
+ 00030805  0x00006947 rtn 
+ 00030806  0x0000694a force  0x00000006 , 0x00000039 
+ 00030807  0x0000694b force  0x00000000 , 0x00000013 
+ 00030808  0x0000694d ifetch  0x00000004 , 0x00000012 
+ 00030809  0x0000694e iforce  0x00000002 
+ 00030810  0x0000694f ifetch  0x00000004 , 0x00000011 
+ 00030811  0x00006950 isub  0x00000002 , 0x0000003f 
+ 00030812  0x00006951 isub  0x00000013 , 0x0000003f 
+ 00030813  0x00006952 istore  0x00000004 , 0x00000005 
+ 00030814  0x00006953 isolate1  0x00000020 , 0x0000003f 
+ 00030815  0x00006954 setflag  0x00000001 , 0x00000000 , 0x00000013 
+ 00030816  0x00006955 increase  0x00000004 , 0x00000011 
+ 00030817  0x00006956 increase  0x00000004 , 0x00000012 
+ 00030818  0x00006957 loop  0x00007858 
+ 00030819  0x00006958 rtn 
+ 00030820  0x0000695b force  0x00000006 , 0x00000039 
+ 00030821  0x0000695c increase  0x00000014 , 0x00000011 
+ 00030822  0x0000695e force  0x00000000 , 0x00000013 
+ 00030823  0x00006960 ifetch  0x00000004 , 0x00000011 
+ 00030824  0x00006961 isolate1  0x00000000 , 0x0000003f 
+ 00030825  0x00006962 setflag  0x00000001 , 0x00000001 , 0x00000013 
+ 00030826  0x00006963 rshift  0x0000003f , 0x0000003f 
+ 00030827  0x00006964 isolate1  0x00000000 , 0x00000013 
+ 00030828  0x00006965 setflag  0x00000001 , 0x0000001f , 0x0000003f 
+ 00030829  0x00006966 istore  0x00000004 , 0x00000011 
+ 00030830  0x00006967 increase  0xfffffffc , 0x00000011 
+ 00030831  0x00006968 rshift  0x00000013 , 0x00000013 
+ 00030832  0x00006969 loop  0x00007867 
+ 00030833  0x0000696a rtn 
+ 00030834  0x0000696d force  0x00000006 , 0x00000039 
+ 00030835  0x0000696e force  0x00000000 , 0x00000013 
+ 00030836  0x00006970 ifetch  0x00000004 , 0x00000011 
+ 00030837  0x00006971 isolate1  0x0000001f , 0x0000003f 
+ 00030838  0x00006972 setflag  0x00000001 , 0x00000001 , 0x00000013 
+ 00030839  0x00006973 lshift  0x0000003f , 0x0000003f 
+ 00030840  0x00006974 isolate1  0x00000000 , 0x00000013 
+ 00030841  0x00006975 setflag  0x00000001 , 0x00000000 , 0x0000003f 
+ 00030842  0x00006976 istore  0x00000004 , 0x00000011 
+ 00030843  0x00006977 increase  0x00000004 , 0x00000011 
+ 00030844  0x00006978 rshift  0x00000013 , 0x00000013 
+ 00030845  0x00006979 loop  0x00007874 
+ 00030846  0x0000697a rtn 
+ 00030847  0x0000697d call  0x00007872 
+ 00030848  0x0000697f isolate1  0x00000000 , 0x00000013 
+ 00030849  0x00006980 branch  0x00007888 , 0x00000001 
+ 00030850  0x00006981 arg  0x00000742 , 0x00000012 
+ 00030851  0x00006982 copy  0x00000011 , 0x00000013 
+ 00030852  0x00006983 increase  0xffffffe8 , 0x00000011 
+ 00030853  0x00006984 call  0x0000783b 
+ 00030854  0x00006985 nrtn  0x00000002 
+ 00030855  0x00006986 copy  0x00000013 , 0x00000011 
+ 00030856  0x00006988 increase  0xffffffe8 , 0x00000011 
+ 00030857  0x00006989 arg  0x00000742 , 0x00000012 
+ 00030858  0x0000698a copy  0x00000011 , 0x00000005 
+ 00030859  0x0000698b branch  0x00007856 
+ 00030860  0x0000698f call  0x00007848 
+ 00030861  0x00006990 copy  0x00000005 , 0x00000011 
+ 00030862  0x00006991 branch  0x00007880 
+ 00030863  0x00006994 call  0x00007856 
+ 00030864  0x00006995 isolate0  0x00000000 , 0x00000013 
+ 00030865  0x00006996 rtn  0x00000001 
+ 00030866  0x00006997 arg  0x00000742 , 0x00000012 
+ 00030867  0x00006998 add  0x00000005 , 0xffffffe8 , 0x00000011 
+ 00030868  0x00006999 copy  0x00000011 , 0x00000005 
+ 00030869  0x0000699a branch  0x00007848 
+ 00030870  0x0000699e copy  0x00000005 , 0x0000000b 
+ 00030871  0x0000699f copy  0x00000011 , 0x00000030 
+ 00030872  0x000069a0 arg  0x000006b2 , 0x00000012 
+ 00030873  0x000069a1 copy  0x00000012 , 0x00000005 
+ 00030874  0x000069a2 add  0x00000011 , 0x00000018 , 0x00000006 
+ 00030875  0x000069a3 ifetch  0x00000008 , 0x00000006 
+ 00030876  0x000069a4 istore  0x00000008 , 0x00000005 
+ 00030877  0x000069a5 istore  0x00000008 , 0x00000005 
+ 00030878  0x000069a6 force  0x00000000 , 0x0000003f 
+ 00030879  0x000069a7 istore  0x00000008 , 0x00000005 
+ 00030880  0x000069a8 copy  0x0000000b , 0x00000005 
+ 00030881  0x000069a9 call  0x0000788c 
+ 00030882  0x000069aa arg  0x000006b2 , 0x00000012 
+ 00030883  0x000069ab copy  0x00000012 , 0x00000005 
+ 00030884  0x000069ac force  0x00000000 , 0x0000003f 
+ 00030885  0x000069ad istore  0x00000008 , 0x00000005 
+ 00030886  0x000069ae add  0x00000030 , 0x00000020 , 0x00000006 
+ 00030887  0x000069af ifetch  0x00000008 , 0x00000006 
+ 00030888  0x000069b0 istore  0x00000008 , 0x00000005 
+ 00030889  0x000069b1 istore  0x00000008 , 0x00000005 
+ 00030890  0x000069b2 copy  0x0000000b , 0x00000011 
+ 00030891  0x000069b3 copy  0x00000011 , 0x00000005 
+ 00030892  0x000069b4 call  0x0000788c 
+ 00030893  0x000069b5 arg  0x000006b2 , 0x00000012 
+ 00030894  0x000069b6 copy  0x00000012 , 0x00000005 
+ 00030895  0x000069b7 add  0x00000030 , 0x00000028 , 0x00000006 
+ 00030896  0x000069b8 ifetch  0x00000008 , 0x00000006 
+ 00030897  0x000069b9 istore  0x00000008 , 0x00000005 
+ 00030898  0x000069ba istore  0x00000008 , 0x00000005 
+ 00030899  0x000069bb istore  0x00000008 , 0x00000005 
+ 00030900  0x000069bc copy  0x0000000b , 0x00000011 
+ 00030901  0x000069bd copy  0x00000011 , 0x00000005 
+ 00030902  0x000069be branch  0x0000788c 
+ 00030903  0x000069c2 force  0x00000006 , 0x00000039 
+ 00030904  0x000069c4 ifetch  0x00000004 , 0x00000006 
+ 00030905  0x000069c5 iforce  0x0000002f 
+ 00030906  0x000069c6 increase  0x00000001 , 0x00000038 
+ 00030907  0x000069c7 loop  0x000078b8 
+ 00030908  0x000069c8 rtn 
+ 00030909  0x000069cd copy  0x00000005 , 0x0000000b 
+ 00030910  0x000069ce arg  0x00000682 , 0x00000005 
+ 00030911  0x000069cf call  0x00007e3a 
+ 00030912  0x000069d0 arg  0x00000682 , 0x00000005 
+ 00030913  0x000069d1 copy  0x00000011 , 0x00000006 
+ 00030914  0x000069d2 force  0x00000000 , 0x00000038 
+ 00030915  0x000069d3 call  0x000078b7 
+ 00030916  0x000069d4 copy  0x00000012 , 0x00000006 
+ 00030917  0x000069d5 call  0x000078b7 
+ 00030918  0x000069d6 force  0x00000000 , 0x00000012 
+ 00030919  0x000069d8 force  0x00000000 , 0x00000002 
+ 00030920  0x000069d9 force  0x00000006 , 0x00000013 
+ 00030921  0x000069db ifetch  0x00000004 , 0x00000005 
+ 00030922  0x000069dc iforce  0x00000011 
+ 00030923  0x000069dd copy  0x00000012 , 0x00000038 
+ 00030924  0x000069de deposit  0x0000002f 
+ 00030925  0x000069df copy  0x00000013 , 0x00000038 
+ 00030926  0x000069e0 imul32  0x0000002f , 0x0000003f 
+ 00030927  0x000069e1 iadd  0x00000011 , 0x0000003f 
+ 00030928  0x000069e2 iadd  0x00000002 , 0x0000003f 
+ 00030929  0x000069e3 istore  0x00000004 , 0x00000005 
+ 00030930  0x000069e4 rshift32  0x0000003f , 0x00000002 
+ 00030931  0x000069e5 increase  0x00000001 , 0x00000013 
+ 00030932  0x000069e6 compare  0x0000000c , 0x00000013 , 0x000000ff 
+ 00030933  0x000069e7 nbranch  0x000078c9 , 0x00000001 
+ 00030934  0x000069e8 deposit  0x00000002 
+ 00030935  0x000069e9 istore  0x00000004 , 0x00000005 
+ 00030936  0x000069ea increase  0xffffffe8 , 0x00000005 
+ 00030937  0x000069eb increase  0x00000001 , 0x00000012 
+ 00030938  0x000069ec compare  0x00000006 , 0x00000012 , 0x000000ff 
+ 00030939  0x000069ed nbranch  0x000078c7 , 0x00000001 
+ 00030940  0x000069ee arg  0x00000682 , 0x00000011 
+ 00030941  0x000069ef copy  0x0000000b , 0x00000005 
+ 00030942  0x000069f0 branch  0x00007896 
+ 00030943  0x000069f4 copy  0x00000011 , 0x00000012 
+ 00030944  0x000069f5 branch  0x000078bd 
+ 00030945  0x000069f8 copy  0x00000011 , 0x00000030 
+ 00030946  0x000069fa copy  0x00000030 , 0x00000011 
+ 00030947  0x000069fb ifetch  0x00000001 , 0x00000011 
+ 00030948  0x000069fc isolate1  0x00000000 , 0x0000003f 
+ 00030949  0x000069fd rtn  0x00000001 
+ 00030950  0x000069fe call  0x00007864 
+ 00030951  0x000069ff ifetch  0x00000001 , 0x00000012 
+ 00030952  0x00006a00 isolate0  0x00000000 , 0x0000003f 
+ 00030953  0x00006a01 branch  0x000078f1 , 0x00000001 
+ 00030954  0x00006a02 arg  0x00000742 , 0x00000011 
+ 00030955  0x00006a03 copy  0x00000012 , 0x00000005 
+ 00030956  0x00006a04 call  0x00007848 
+ 00030957  0x00006a05 ifetch  0x00000001 , 0x00000012 
+ 00030958  0x00006a06 iadd  0x00000013 , 0x0000003f 
+ 00030959  0x00006a07 istore  0x00000001 , 0x00000012 
+ 00030960  0x00006a08 increase  0xffffffe8 , 0x00000012 
+ 00030961  0x00006a0a add  0x00000012 , 0x00000018 , 0x00000011 
+ 00030962  0x00006a0b force  0x00000007 , 0x00000039 
+ 00030963  0x00006a0c call  0x00007866 
+ 00030964  0x00006a0d branch  0x000078e2 
+ 00030965  0x00006a11 copy  0x00000005 , 0x0000000b 
+ 00030966  0x00006a12 arg  0x000006e2 , 0x00000005 
+ 00030967  0x00006a13 call  0x00007e3a 
+ 00030968  0x00006a14 force  0x00000000 , 0x0000003f 
+ 00030969  0x00006a15 store  0x00000004 , 0x0000069a 
+ 00030970  0x00006a16 store  0x00000004 , 0x000006fa 
+ 00030971  0x00006a17 jam  0x00000001 , 0x000006e2 
+ 00030972  0x00006a18 arg  0x00000682 , 0x00000005 
+ 00030973  0x00006a19 call  0x00007e3a 
+ 00030974  0x00006a1a arg  0x00000742 , 0x00000006 
+ 00030975  0x00006a1b arg  0x000006b2 , 0x00000005 
+ 00030976  0x00006a1c call  0x00007e33 
+ 00030977  0x00006a1d copy  0x00000011 , 0x00000006 
+ 00030978  0x00006a1e arg  0x000006ca , 0x00000005 
+ 00030979  0x00006a1f call  0x00007e33 
+ 00030980  0x00006a21 arg  0x000006ca , 0x00000006 
+ 00030981  0x00006a22 call  0x0000782b 
+ 00030982  0x00006a23 branch  0x0000792d , 0x00000034 
+ 00030983  0x00006a24 arg  0x000006ca , 0x00000011 
+ 00030984  0x00006a25 arg  0x000006e2 , 0x00000012 
+ 00030985  0x00006a26 call  0x000078e1 
+ 00030986  0x00006a28 arg  0x000006b2 , 0x00000011 
+ 00030987  0x00006a29 arg  0x00000682 , 0x00000012 
+ 00030988  0x00006a2a call  0x000078e1 
+ 00030989  0x00006a2b arg  0x000006ca , 0x00000011 
+ 00030990  0x00006a2c arg  0x000006b2 , 0x00000012 
+ 00030991  0x00006a2d call  0x0000783b 
+ 00030992  0x00006a2e branch  0x0000791f , 0x00000002 
+ 00030993  0x00006a2f arg  0x000006b2 , 0x00000011 
+ 00030994  0x00006a30 arg  0x000006ca , 0x00000012 
+ 00030995  0x00006a31 copy  0x00000011 , 0x00000005 
+ 00030996  0x00006a32 call  0x00007856 
+ 00030997  0x00006a33 arg  0x000006e2 , 0x00000011 
+ 00030998  0x00006a34 arg  0x00000682 , 0x00000012 
+ 00030999  0x00006a35 copy  0x00000012 , 0x00000005 
+ 00031000  0x00006a36 call  0x00007848 
+ 00031001  0x00006a37 ifetch  0x00000001 , 0x00000011 
+ 00031002  0x00006a38 iadd  0x00000013 , 0x00000013 
+ 00031003  0x00006a39 ifetch  0x00000001 , 0x00000012 
+ 00031004  0x00006a3a iadd  0x00000013 , 0x0000003f 
+ 00031005  0x00006a3b istore  0x00000001 , 0x00000012 
+ 00031006  0x00006a3c branch  0x00007904 
+ 00031007  0x00006a3e arg  0x000006ca , 0x00000011 
+ 00031008  0x00006a3f arg  0x000006b2 , 0x00000012 
+ 00031009  0x00006a40 copy  0x00000011 , 0x00000005 
+ 00031010  0x00006a41 call  0x00007856 
+ 00031011  0x00006a42 arg  0x00000682 , 0x00000011 
+ 00031012  0x00006a43 arg  0x000006e2 , 0x00000012 
+ 00031013  0x00006a44 copy  0x00000012 , 0x00000005 
+ 00031014  0x00006a45 call  0x00007848 
+ 00031015  0x00006a46 ifetch  0x00000001 , 0x00000011 
+ 00031016  0x00006a47 iadd  0x00000013 , 0x00000013 
+ 00031017  0x00006a48 ifetch  0x00000001 , 0x00000012 
+ 00031018  0x00006a49 iadd  0x00000013 , 0x0000003f 
+ 00031019  0x00006a4a istore  0x00000001 , 0x00000012 
+ 00031020  0x00006a4b branch  0x00007904 
+ 00031021  0x00006a4d arg  0x000006e2 , 0x00000005 
+ 00031022  0x00006a4e call  0x00007e3a 
+ 00031023  0x00006a4f fetch  0x00000001 , 0x0000069a 
+ 00031024  0x00006a50 store  0x00000001 , 0x000006e2 
+ 00031025  0x00006a51 store  0x00000001 , 0x000006ea 
+ 00031026  0x00006a52 arg  0x000006e2 , 0x00000011 
+ 00031027  0x00006a53 arg  0x00000682 , 0x00000012 
+ 00031028  0x00006a54 copy  0x00000012 , 0x00000005 
+ 00031029  0x00006a55 call  0x0000788c 
+ 00031030  0x00006a56 arg  0x00000742 , 0x00000011 
+ 00031031  0x00006a57 arg  0x00000682 , 0x00000012 
+ 00031032  0x00006a58 copy  0x0000000b , 0x00000005 
+ 00031033  0x00006a59 branch  0x0000788f 
+ 00031034  0x00006a5f arg  0x00000642 , 0x00000011 
+ 00031035  0x00006a60 arg  0x000006fa , 0x00000005 
+ 00031036  0x00006a61 call  0x000078df 
+ 00031037  0x00006a62 arg  0x000006fa , 0x00000011 
+ 00031038  0x00006a63 arg  0x00000712 , 0x00000005 
+ 00031039  0x00006a64 call  0x000078df 
+ 00031040  0x00006a65 arg  0x0000075a , 0x00000011 
+ 00031041  0x00006a66 arg  0x00000712 , 0x00000012 
+ 00031042  0x00006a67 arg  0x00000712 , 0x00000005 
+ 00031043  0x00006a68 call  0x000078bd 
+ 00031044  0x00006a69 arg  0x00000612 , 0x00000011 
+ 00031045  0x00006a6a arg  0x000006fa , 0x00000005 
+ 00031046  0x00006a6b call  0x000078df 
+ 00031047  0x00006a6c arg  0x000006fa , 0x00000006 
+ 00031048  0x00006a6d arg  0x000006ca , 0x00000005 
+ 00031049  0x00006a6e call  0x00007e33 
+ 00031050  0x00006a6f arg  0x000006ca , 0x00000011 
+ 00031051  0x00006a70 call  0x0000787f 
+ 00031052  0x00006a71 arg  0x000006fa , 0x00000011 
+ 00031053  0x00006a72 arg  0x000006ca , 0x00000012 
+ 00031054  0x00006a73 arg  0x000006fa , 0x00000005 
+ 00031055  0x00006a74 call  0x0000788c 
+ 00031056  0x00006a75 arg  0x000006fa , 0x00000011 
+ 00031057  0x00006a76 arg  0x00000712 , 0x00000012 
+ 00031058  0x00006a77 arg  0x000006fa , 0x00000005 
+ 00031059  0x00006a78 call  0x0000788c 
+ 00031060  0x00006a79 arg  0x00000612 , 0x00000006 
+ 00031061  0x00006a7a arg  0x000006ca , 0x00000005 
+ 00031062  0x00006a7b call  0x00007e33 
+ 00031063  0x00006a7c arg  0x0000062a , 0x00000011 
+ 00031064  0x00006a7d arg  0x00000712 , 0x00000005 
+ 00031065  0x00006a7e call  0x000078df 
+ 00031066  0x00006a7f arg  0x000006ca , 0x00000011 
+ 00031067  0x00006a80 call  0x0000787f 
+ 00031068  0x00006a81 arg  0x000006ca , 0x00000011 
+ 00031069  0x00006a82 call  0x0000787f 
+ 00031070  0x00006a83 arg  0x000006ca , 0x00000011 
+ 00031071  0x00006a84 arg  0x00000712 , 0x00000012 
+ 00031072  0x00006a85 arg  0x000006ca , 0x00000005 
+ 00031073  0x00006a86 call  0x000078bd 
+ 00031074  0x00006a87 arg  0x00000712 , 0x00000011 
+ 00031075  0x00006a88 arg  0x000006e2 , 0x00000005 
+ 00031076  0x00006a89 call  0x000078df 
+ 00031077  0x00006a8a arg  0x000006e2 , 0x00000011 
+ 00031078  0x00006a8b call  0x0000787f 
+ 00031079  0x00006a8c arg  0x000006e2 , 0x00000011 
+ 00031080  0x00006a8d call  0x0000787f 
+ 00031081  0x00006a8e arg  0x000006e2 , 0x00000011 
+ 00031082  0x00006a8f call  0x0000787f 
+ 00031083  0x00006a90 arg  0x0000062a , 0x00000006 
+ 00031084  0x00006a91 arg  0x00000712 , 0x00000005 
+ 00031085  0x00006a92 call  0x00007e33 
+ 00031086  0x00006a93 arg  0x00000712 , 0x00000011 
+ 00031087  0x00006a94 call  0x0000787f 
+ 00031088  0x00006a95 arg  0x00000712 , 0x00000011 
+ 00031089  0x00006a96 arg  0x00000642 , 0x00000012 
+ 00031090  0x00006a97 arg  0x00000642 , 0x00000005 
+ 00031091  0x00006a98 call  0x000078bd 
+ 00031092  0x00006a99 arg  0x000006fa , 0x00000011 
+ 00031093  0x00006a9a arg  0x00000712 , 0x00000005 
+ 00031094  0x00006a9b call  0x000078df 
+ 00031095  0x00006a9c arg  0x00000712 , 0x00000011 
+ 00031096  0x00006a9d arg  0x000006ca , 0x00000012 
+ 00031097  0x00006a9e arg  0x00000712 , 0x00000005 
+ 00031098  0x00006a9f call  0x0000788f 
+ 00031099  0x00006aa0 arg  0x00000712 , 0x00000011 
+ 00031100  0x00006aa1 arg  0x000006ca , 0x00000012 
+ 00031101  0x00006aa2 arg  0x00000612 , 0x00000005 
+ 00031102  0x00006aa3 call  0x0000788f 
+ 00031103  0x00006aa4 arg  0x000006ca , 0x00000011 
+ 00031104  0x00006aa5 arg  0x00000612 , 0x00000012 
+ 00031105  0x00006aa6 arg  0x00000712 , 0x00000005 
+ 00031106  0x00006aa7 call  0x0000788f 
+ 00031107  0x00006aa8 arg  0x00000712 , 0x00000011 
+ 00031108  0x00006aa9 arg  0x000006fa , 0x00000012 
+ 00031109  0x00006aaa arg  0x00000712 , 0x00000005 
+ 00031110  0x00006aab call  0x000078bd 
+ 00031111  0x00006aac arg  0x00000712 , 0x00000011 
+ 00031112  0x00006aad arg  0x000006e2 , 0x00000012 
+ 00031113  0x00006aae arg  0x0000062a , 0x00000005 
+ 00031114  0x00006aaf branch  0x0000788f 
+ 00031115  0x00006ab4 arg  0x000005b2 , 0x00000011 
+ 00031116  0x00006ab5 arg  0x0000072a , 0x00000005 
+ 00031117  0x00006ab6 call  0x000078df 
+ 00031118  0x00006ab7 arg  0x00000612 , 0x00000011 
+ 00031119  0x00006ab8 arg  0x0000072a , 0x00000012 
+ 00031120  0x00006ab9 arg  0x000006e2 , 0x00000005 
+ 00031121  0x00006aba call  0x000078bd 
+ 00031122  0x00006abb arg  0x000005b2 , 0x00000011 
+ 00031123  0x00006abc arg  0x0000072a , 0x00000012 
+ 00031124  0x00006abd arg  0x0000072a , 0x00000005 
+ 00031125  0x00006abe call  0x000078bd 
+ 00031126  0x00006abf arg  0x0000062a , 0x00000011 
+ 00031127  0x00006ac0 arg  0x0000072a , 0x00000012 
+ 00031128  0x00006ac1 arg  0x000006ca , 0x00000005 
+ 00031129  0x00006ac2 call  0x000078bd 
+ 00031130  0x00006ac3 arg  0x00000642 , 0x00000011 
+ 00031131  0x00006ac4 arg  0x0000072a , 0x00000005 
+ 00031132  0x00006ac5 call  0x000078df 
+ 00031133  0x00006ac6 arg  0x00000582 , 0x00000011 
+ 00031134  0x00006ac7 arg  0x0000072a , 0x00000012 
+ 00031135  0x00006ac8 arg  0x000006fa , 0x00000005 
+ 00031136  0x00006ac9 call  0x000078bd 
+ 00031137  0x00006aca arg  0x00000642 , 0x00000011 
+ 00031138  0x00006acb arg  0x0000072a , 0x00000012 
+ 00031139  0x00006acc arg  0x0000072a , 0x00000005 
+ 00031140  0x00006acd call  0x000078bd 
+ 00031141  0x00006ace arg  0x0000059a , 0x00000011 
+ 00031142  0x00006acf arg  0x0000072a , 0x00000012 
+ 00031143  0x00006ad0 arg  0x00000712 , 0x00000005 
+ 00031144  0x00006ad1 call  0x000078bd 
+ 00031145  0x00006ad2 arg  0x000006e2 , 0x00000011 
+ 00031146  0x00006ad3 arg  0x000006fa , 0x00000012 
+ 00031147  0x00006ad4 arg  0x0000072a , 0x00000005 
+ 00031148  0x00006ad5 call  0x0000788f 
+ 00031149  0x00006ad6 arg  0x000006e2 , 0x00000011 
+ 00031150  0x00006ad7 arg  0x000006fa , 0x00000012 
+ 00031151  0x00006ad8 arg  0x000006e2 , 0x00000005 
+ 00031152  0x00006ad9 call  0x0000788c 
+ 00031153  0x00006ada arg  0x000006ca , 0x00000011 
+ 00031154  0x00006adb arg  0x00000712 , 0x00000012 
+ 00031155  0x00006adc arg  0x000006fa , 0x00000005 
+ 00031156  0x00006add call  0x0000788f 
+ 00031157  0x00006ade arg  0x000006ca , 0x00000011 
+ 00031158  0x00006adf arg  0x00000712 , 0x00000012 
+ 00031159  0x00006ae0 arg  0x000006ca , 0x00000005 
+ 00031160  0x00006ae1 call  0x0000788c 
+ 00031161  0x00006ae2 arg  0x000006ca , 0x00000011 
+ 00031162  0x00006ae3 arg  0x0000072a , 0x00000012 
+ 00031163  0x00006ae4 arg  0x000006ca , 0x00000005 
+ 00031164  0x00006ae5 call  0x000078bd 
+ 00031165  0x00006ae6 arg  0x00000642 , 0x00000011 
+ 00031166  0x00006ae7 arg  0x000005b2 , 0x00000012 
+ 00031167  0x00006ae8 arg  0x00000712 , 0x00000005 
+ 00031168  0x00006ae9 call  0x000078bd 
+ 00031169  0x00006aea arg  0x00000712 , 0x00000011 
+ 00031170  0x00006aeb arg  0x0000072a , 0x00000012 
+ 00031171  0x00006aec arg  0x00000642 , 0x00000005 
+ 00031172  0x00006aed call  0x000078bd 
+ 00031173  0x00006aee arg  0x0000072a , 0x00000011 
+ 00031174  0x00006aef arg  0x0000072a , 0x00000005 
+ 00031175  0x00006af0 call  0x000078df 
+ 00031176  0x00006af1 arg  0x0000072a , 0x00000011 
+ 00031177  0x00006af2 arg  0x000006e2 , 0x00000012 
+ 00031178  0x00006af3 arg  0x00000712 , 0x00000005 
+ 00031179  0x00006af4 call  0x000078bd 
+ 00031180  0x00006af5 arg  0x0000072a , 0x00000011 
+ 00031181  0x00006af6 arg  0x000006ca , 0x00000012 
+ 00031182  0x00006af7 arg  0x000006ca , 0x00000005 
+ 00031183  0x00006af8 call  0x000078bd 
+ 00031184  0x00006af9 arg  0x000006fa , 0x00000011 
+ 00031185  0x00006afa arg  0x00000612 , 0x00000005 
+ 00031186  0x00006afb call  0x000078df 
+ 00031187  0x00006afc arg  0x00000612 , 0x00000011 
+ 00031188  0x00006afd arg  0x00000712 , 0x00000012 
+ 00031189  0x00006afe arg  0x00000612 , 0x00000005 
+ 00031190  0x00006aff call  0x0000788f 
+ 00031191  0x00006b00 arg  0x00000612 , 0x00000006 
+ 00031192  0x00006b01 arg  0x0000072a , 0x00000005 
+ 00031193  0x00006b02 call  0x00007e33 
+ 00031194  0x00006b03 arg  0x0000072a , 0x00000011 
+ 00031195  0x00006b04 call  0x0000787f 
+ 00031196  0x00006b05 arg  0x00000712 , 0x00000011 
+ 00031197  0x00006b06 arg  0x0000072a , 0x00000012 
+ 00031198  0x00006b07 arg  0x00000712 , 0x00000005 
+ 00031199  0x00006b08 call  0x0000788f 
+ 00031200  0x00006b09 arg  0x00000712 , 0x00000011 
+ 00031201  0x00006b0a arg  0x000006fa , 0x00000012 
+ 00031202  0x00006b0b arg  0x000006fa , 0x00000005 
+ 00031203  0x00006b0c call  0x000078bd 
+ 00031204  0x00006b0d arg  0x000006fa , 0x00000011 
+ 00031205  0x00006b0e arg  0x000006ca , 0x00000012 
+ 00031206  0x00006b0f arg  0x0000062a , 0x00000005 
+ 00031207  0x00006b10 call  0x0000788f 
+ 00031208  0x00006b11 arg  0x0000062a , 0x00000011 
+ 00031209  0x00006b12 arg  0x00000742 , 0x00000012 
+ 00031210  0x00006b13 arg  0x0000062a , 0x00000005 
+ 00031211  0x00006b14 force  0x00000000 , 0x00000013 
+ 00031212  0x00006b15 fetch  0x00000001 , 0x0000062a 
+ 00031213  0x00006b16 isolate1  0x00000000 , 0x0000003f 
+ 00031214  0x00006b17 call  0x00007848 , 0x00000001 
+ 00031215  0x00006b18 copy  0x00000013 , 0x00000030 
+ 00031216  0x00006b19 arg  0x0000062a , 0x00000011 
+ 00031217  0x00006b1a call  0x00007864 
+ 00031218  0x00006b1b fetch  0x00000001 , 0x00000641 
+ 00031219  0x00006b1c isolate1  0x00000000 , 0x00000030 
+ 00031220  0x00006b1d setflag  0x00000001 , 0x00000007 , 0x0000003f 
+ 00031221  0x00006b1e store  0x00000001 , 0x00000641 
+ 00031222  0x00006b1f rtn 
+ 00031223  0x00006b23 jam  0x000000c0 , 0x00000581 
+ 00031224  0x00006b24 jam  0x00000001 , 0x00000580 
+ 00031225  0x00006b26 fetch  0x00000001 , 0x00000581 
+ 00031226  0x00006b27 increase  0xffffffff , 0x0000003f 
+ 00031227  0x00006b28 nrtn  0x00000002 
+ 00031228  0x00006b29 store  0x00000001 , 0x00000581 
+ 00031229  0x00006b2a fetch  0x00000001 , 0x00000580 
+ 00031230  0x00006b2b call  0x0000793a , 0x00000034 
+ 00031231  0x00006b2c fetch  0x00000001 , 0x00000581 
+ 00031232  0x00006b2d arg  0x0000065a , 0x00000006 
+ 00031233  0x00006b2e call  0x00007822 
+ 00031234  0x00006b2f branch  0x000079f9 , 0x00000001 
+ 00031235  0x00006b30 fetch  0x00000001 , 0x00000580 
+ 00031236  0x00006b31 nbranch  0x00007a07 , 0x00000034 
+ 00031237  0x00006b32 call  0x0000798b 
+ 00031238  0x00006b33 branch  0x000079f9 
+ 00031239  0x00006b35 jam  0x00000000 , 0x00000580 
+ 00031240  0x00006b36 arg  0x00000582 , 0x00000006 
+ 00031241  0x00006b37 arg  0x00000612 , 0x00000005 
+ 00031242  0x00006b38 call  0x00007828 
+ 00031243  0x00006b39 branch  0x000079f9 
+ 00031244  0x00006b3d arg  0x00000642 , 0x00000011 
+ 00031245  0x00006b3e arg  0x00000712 , 0x00000005 
+ 00031246  0x00006b3f call  0x000078f5 
+ 00031247  0x00006b40 arg  0x00000712 , 0x00000011 
+ 00031248  0x00006b41 arg  0x000006ca , 0x00000005 
+ 00031249  0x00006b42 call  0x000078df 
+ 00031250  0x00006b43 arg  0x00000612 , 0x00000011 
+ 00031251  0x00006b44 arg  0x000006ca , 0x00000012 
+ 00031252  0x00006b45 arg  0x000005ca , 0x00000005 
+ 00031253  0x00006b46 call  0x000078bd 
+ 00031254  0x00006b47 arg  0x00000712 , 0x00000011 
+ 00031255  0x00006b48 arg  0x000006ca , 0x00000012 
+ 00031256  0x00006b49 arg  0x000006fa , 0x00000005 
+ 00031257  0x00006b4a call  0x000078bd 
+ 00031258  0x00006b4b arg  0x0000062a , 0x00000011 
+ 00031259  0x00006b4c arg  0x000006fa , 0x00000012 
+ 00031260  0x00006b4d arg  0x000005e2 , 0x00000005 
+ 00031261  0x00006b4e branch  0x000078bd 
+ 00031262  0x00006b52 force  0x00000010 , 0x00000039 
+ 00031263  0x00006b54 ifetch  0x00000004 , 0x00000006 
+ 00031264  0x00006b55 force  0x00000004 , 0x00000011 
+ 00031265  0x00006b56 increase  0x00000003 , 0x00000005 
+ 00031266  0x00006b58 istore  0x00000001 , 0x00000005 
+ 00031267  0x00006b59 rshift8  0x0000003f , 0x0000003f 
+ 00031268  0x00006b5a increase  0xfffffffe , 0x00000005 
+ 00031269  0x00006b5b increase  0xffffffff , 0x00000011 
+ 00031270  0x00006b5c nbranch  0x00007a22 , 0x00000005 
+ 00031271  0x00006b5d increase  0x00000005 , 0x00000005 
+ 00031272  0x00006b5e loop  0x00007a1f 
+ 00031273  0x00006b5f rtn 
+ 00031274  0x00006b63 lshift2  0x00000007 , 0x0000003f 
+ 00031275  0x00006b64 iadd  0x0000000b , 0x00000006 
+ 00031276  0x00006b65 ifetch  0x00000004 , 0x00000006 
+ 00031277  0x00006b66 rtn 
+ 00031278  0x00006b69 force  0x00000010 , 0x00000030 
+ 00031279  0x00006b6a arg  0x00000582 , 0x0000000b 
+ 00031280  0x00006b6c add  0x00000030 , 0xfffffff9 , 0x00000007 
+ 00031281  0x00006b6d call  0x00007a2a 
+ 00031282  0x00006b6e iforce  0x00000002 
+ 00031283  0x00006b6f add  0x00000030 , 0xfffffff0 , 0x00000007 
+ 00031284  0x00006b70 call  0x00007a2a 
+ 00031285  0x00006b71 iadd  0x00000002 , 0x00000002 
+ 00031286  0x00006b72 add  0x00000030 , 0xfffffffe , 0x00000007 
+ 00031287  0x00006b73 call  0x00007a2a 
+ 00031288  0x00006b74 shasx  0x0000003f , 0x00000001 , 0x0000003f 
+ 00031289  0x00006b75 iadd  0x00000002 , 0x00000002 
+ 00031290  0x00006b76 add  0x00000030 , 0xfffffff1 , 0x00000007 
+ 00031291  0x00006b77 call  0x00007a2a 
+ 00031292  0x00006b78 shasx  0x0000003f , 0x00000000 , 0x0000003f 
+ 00031293  0x00006b79 iadd  0x00000002 , 0x00000002 
+ 00031294  0x00006b7a lshift2  0x00000030 , 0x0000003f 
+ 00031295  0x00006b7b iadd  0x0000000b , 0x00000005 
+ 00031296  0x00006b7c istoret  0x00000004 , 0x00000005 
+ 00031297  0x00006b7d increase  0x00000001 , 0x00000030 
+ 00031298  0x00006b7e compare  0x00000040 , 0x00000030 , 0x000000ff 
+ 00031299  0x00006b7f nbranch  0x00007a30 , 0x00000001 
+ 00031300  0x00006b80 rtn 
+ 00031301  0x00006b84 arg  0x000007ba , 0x00000006 
+ 00031302  0x00006b85 force  0x00000007 , 0x00000038 
+ 00031303  0x00006b87 ifetch  0x00000004 , 0x00000006 
+ 00031304  0x00006b88 iforce  0x0000002f 
+ 00031305  0x00006b89 increase  0xffffffff , 0x00000038 
+ 00031306  0x00006b8a branch  0x00007a47 , 0x00000002 
+ 00031307  0x00006b8b rtn 
+ 00031308  0x00006b8e set1  0x00000025 , 0x00000000 
+ 00031309  0x00006b8f bpatch  0x000000f8 , 0x0000403f 
+ 00031310  0x00006b90 call  0x00007a2e 
+ 00031311  0x00006b91 arg  0x00000682 , 0x00000005 
+ 00031312  0x00006b92 force  0x00000000 , 0x00000038 
+ 00031313  0x00006b94 deposit  0x0000002f 
+ 00031314  0x00006b95 istore  0x00000004 , 0x00000005 
+ 00031315  0x00006b96 increase  0x00000001 , 0x00000038 
+ 00031316  0x00006b97 compare  0x00000008 , 0x00000038 , 0x000000ff 
+ 00031317  0x00006b98 nbranch  0x00007a51 , 0x00000001 
+ 00031318  0x00006b99 call  0x000075c5 
+ 00031319  0x00006b9a arg  0x00008700 , 0x0000000b 
+ 00031320  0x00006b9b arg  0x00000582 , 0x00000030 
+ 00031321  0x00006b9c force  0x00000040 , 0x00000039 
+ 00031322  0x00006b9e ifetcht  0x00000004 , 0x00000030 
+ 00031323  0x00006b9f ifetch  0x00000004 , 0x0000000b 
+ 00031324  0x00006ba0 increase  0x00000004 , 0x0000000b 
+ 00031325  0x00006ba1 increase  0x00000004 , 0x00000030 
+ 00031326  0x00006ba2 iadd  0x00000002 , 0x0000003f 
+ 00031327  0x00006ba3 force  0x00000007 , 0x00000038 
+ 00031328  0x00006ba4 iadd  0x0000002f , 0x00000002 
+ 00031329  0x00006ba5 force  0x00000004 , 0x00000038 
+ 00031330  0x00006ba6 shasx  0x0000002f , 0x00000003 , 0x0000003f 
+ 00031331  0x00006ba7 iadd  0x00000002 , 0x00000002 
+ 00031332  0x00006ba8 force  0x00000005 , 0x00000038 
+ 00031333  0x00006ba9 deposit  0x0000002f 
+ 00031334  0x00006baa force  0x00000006 , 0x00000038 
+ 00031335  0x00006bab ixor  0x0000002f , 0x0000003f 
+ 00031336  0x00006bac force  0x00000004 , 0x00000038 
+ 00031337  0x00006bad iand  0x0000002f , 0x0000003f 
+ 00031338  0x00006bae force  0x00000006 , 0x00000038 
+ 00031339  0x00006baf ixor  0x0000002f , 0x0000003f 
+ 00031340  0x00006bb0 iadd  0x00000002 , 0x00000002 
+ 00031341  0x00006bb1 force  0x00000007 , 0x00000038 
+ 00031342  0x00006bb2 copy  0x00000002 , 0x0000002f 
+ 00031343  0x00006bb3 force  0x00000003 , 0x00000038 
+ 00031344  0x00006bb4 deposit  0x0000002f 
+ 00031345  0x00006bb5 iadd  0x00000002 , 0x0000002f 
+ 00031346  0x00006bb6 force  0x00000000 , 0x00000038 
+ 00031347  0x00006bb7 deposit  0x0000002f 
+ 00031348  0x00006bb8 force  0x00000001 , 0x00000038 
+ 00031349  0x00006bb9 iand  0x0000002f , 0x00000002 
+ 00031350  0x00006bba ior  0x0000002f , 0x0000003f 
+ 00031351  0x00006bbb force  0x00000002 , 0x00000038 
+ 00031352  0x00006bbc iand  0x0000002f , 0x0000003f 
+ 00031353  0x00006bbd ior  0x00000002 , 0x00000002 
+ 00031354  0x00006bbe force  0x00000000 , 0x00000038 
+ 00031355  0x00006bbf shasx  0x0000002f , 0x00000002 , 0x0000003f 
+ 00031356  0x00006bc0 iadd  0x00000002 , 0x0000003f 
+ 00031357  0x00006bc1 force  0x00000007 , 0x00000038 
+ 00031358  0x00006bc2 iadd  0x0000002f , 0x0000002f 
+ 00031359  0x00006bc3 regexrot 
+ 00031360  0x00006bc4 loop  0x00007a5a 
+ 00031361  0x00006bc5 arg  0x00000682 , 0x00000006 
+ 00031362  0x00006bc6 force  0x00000000 , 0x00000038 
+ 00031363  0x00006bc8 ifetch  0x00000004 , 0x00000006 
+ 00031364  0x00006bc9 iadd  0x0000002f , 0x0000002f 
+ 00031365  0x00006bca increase  0x00000001 , 0x00000038 
+ 00031366  0x00006bcb compare  0x00000008 , 0x00000038 , 0x000000ff 
+ 00031367  0x00006bcc nbranch  0x00007a83 , 0x00000001 
+ 00031368  0x00006bcd branch  0x000075c9 
+ 00031369  0x00006bd1 arg  0x00000858 , 0x00000005 
+ 00031370  0x00006bd2 force  0x00000007 , 0x00000038 
+ 00031371  0x00006bd4 deposit  0x0000002f 
+ 00031372  0x00006bd5 istore  0x00000004 , 0x00000005 
+ 00031373  0x00006bd6 increase  0xffffffff , 0x00000038 
+ 00031374  0x00006bd7 branch  0x00007a8b , 0x00000002 
+ 00031375  0x00006bd8 rtn 
+ 00031376  0x00006bdc arg  0x00000582 , 0x00000005 
+ 00031377  0x00006bdd increase  0xfffffffc , 0x00000006 
+ 00031378  0x00006bde sub  0x00000039 , 0x00000010 , 0x00000011 
+ 00031379  0x00006be0 ifetch  0x00000004 , 0x00000006 
+ 00031380  0x00006be1 ixor  0x00000002 , 0x0000003f 
+ 00031381  0x00006be2 istore  0x00000004 , 0x00000005 
+ 00031382  0x00006be3 increase  0xfffffff8 , 0x00000006 
+ 00031383  0x00006be4 loop  0x00007a93 
+ 00031384  0x00006be5 copy  0x00000011 , 0x00000039 
+ 00031385  0x00006be6 deposit  0x00000002 
+ 00031386  0x00006be8 istore  0x00000004 , 0x00000005 
+ 00031387  0x00006be9 loop  0x00007a9a 
+ 00031388  0x00006bea rtn 
+ 00031389  0x00006bed arg  0x00000808 , 0x00000006 
+ 00031390  0x00006bee arg  0x00000582 , 0x00000005 
+ 00031391  0x00006bef force  0x00000006 , 0x00000039 
+ 00031392  0x00006bf0 call  0x00007b97 
+ 00031393  0x00006bf1 arg  0x000047c4 , 0x00000006 
+ 00031394  0x00006bf2 force  0x00000006 , 0x00000039 
+ 00031395  0x00006bf3 call  0x00007b97 
+ 00031396  0x00006bf4 arg  0x00000858 , 0x00000006 
+ 00031397  0x00006bf5 call  0x00007b96 
+ 00031398  0x00006bf6 call  0x00007a45 
+ 00031399  0x00006bf7 call  0x00007a4c 
+ 00031400  0x00006bf8 arg  0x00000848 , 0x00000006 
+ 00031401  0x00006bf9 arg  0x00000582 , 0x00000005 
+ 00031402  0x00006bfa branch  0x00007ab8 
+ 00031403  0x00006bfd arg  0x000047c4 , 0x00000006 
+ 00031404  0x00006bfe arg  0x00000582 , 0x00000005 
+ 00031405  0x00006bff force  0x00000006 , 0x00000039 
+ 00031406  0x00006c00 call  0x00007b97 
+ 00031407  0x00006c01 arg  0x00000808 , 0x00000006 
+ 00031408  0x00006c02 force  0x00000006 , 0x00000039 
+ 00031409  0x00006c03 call  0x00007b97 
+ 00031410  0x00006c04 arg  0x00000848 , 0x00000006 
+ 00031411  0x00006c05 call  0x00007b96 
+ 00031412  0x00006c06 call  0x00007a45 
+ 00031413  0x00006c07 call  0x00007a4c 
+ 00031414  0x00006c08 arg  0x00000858 , 0x00000006 
+ 00031415  0x00006c09 arg  0x00000582 , 0x00000005 
+ 00031416  0x00006c0b call  0x00007b96 
+ 00031417  0x00006c0c setarg  0x00800000 
+ 00031418  0x00006c0d lshift8  0x0000003f , 0x0000003f 
+ 00031419  0x00006c0e istore  0x00000004 , 0x00000005 
+ 00031420  0x00006c0f force  0x00000005 , 0x00000039 
+ 00031421  0x00006c10 call  0x00007e3b 
+ 00031422  0x00006c11 setarg  0x00000280 
+ 00031423  0x00006c12 istore  0x00000004 , 0x00000005 
+ 00031424  0x00006c13 call  0x00007a4c 
+ 00031425  0x00006c15 fetch  0x00000004 , 0x00000858 
+ 00031426  0x00006c17 arg  0x000003e8 , 0x00000011 
+ 00031427  0x00006c18 idiv  0x00000011 
+ 00031428  0x00006c19 call  0x00007efd 
+ 00031429  0x00006c1a remainder  0x0000003f 
+ 00031430  0x00006c1b store  0x00000004 , 0x000007ec 
+ 00031431  0x00006c1c quotient  0x0000003f 
+ 00031432  0x00006c1d arg  0x000003e8 , 0x00000011 
+ 00031433  0x00006c1e idiv  0x00000011 
+ 00031434  0x00006c1f call  0x00007efd 
+ 00031435  0x00006c20 remainder  0x0000003f 
+ 00031436  0x00006c21 arg  0x000003e8 , 0x00000011 
+ 00031437  0x00006c22 imul32  0x00000011 , 0x0000003f 
+ 00031438  0x00006c23 fetcht  0x00000004 , 0x000007ec 
+ 00031439  0x00006c24 iadd  0x00000002 , 0x0000003f 
+ 00031440  0x00006c25 store  0x00000004 , 0x000007ec 
+ 00031441  0x00006c26 rtn 
+ 00031442  0x00006c29 setarg  0x00363636 
+ 00031443  0x00006c2a lshift8  0x0000003f , 0x00000002 
+ 00031444  0x00006c2b or_into  0x00000036 , 0x00000002 
+ 00031445  0x00006c2c fetch  0x00000002 , 0x00000898 
+ 00031446  0x00006c2d copy  0x0000003f , 0x00000006 
+ 00031447  0x00006c2e force  0x00000004 , 0x00000039 
+ 00031448  0x00006c2f call  0x00007a90 
+ 00031449  0x00006c30 call  0x00007a45 
+ 00031450  0x00006c31 call  0x00007a4c 
+ 00031451  0x00006c32 fetch  0x00000002 , 0x0000089a 
+ 00031452  0x00006c33 copy  0x0000003f , 0x00000006 
+ 00031453  0x00006c34 arg  0x00000582 , 0x00000005 
+ 00031454  0x00006c35 force  0x00000006 , 0x00000039 
+ 00031455  0x00006c36 call  0x00007b97 
+ 00031456  0x00006c37 fetch  0x00000002 , 0x0000089c 
+ 00031457  0x00006c38 copy  0x0000003f , 0x00000006 
+ 00031458  0x00006c39 force  0x00000006 , 0x00000039 
+ 00031459  0x00006c3a call  0x00007b97 
+ 00031460  0x00006c3b setarg  0x00800000 
+ 00031461  0x00006c3c istore  0x00000003 , 0x00000005 
+ 00031462  0x00006c3d force  0x00000000 , 0x0000003f 
+ 00031463  0x00006c3e istore  0x00000001 , 0x00000005 
+ 00031464  0x00006c3f force  0x00000000 , 0x0000003f 
+ 00031465  0x00006c40 istore  0x00000008 , 0x00000005 
+ 00031466  0x00006c41 setarg  0x00000388 
+ 00031467  0x00006c42 istore  0x00000004 , 0x00000005 
+ 00031468  0x00006c43 call  0x00007a4c 
+ 00031469  0x00006c44 call  0x00007a89 
+ 00031470  0x00006c45 arg  0x00000858 , 0x00000006 
+ 00031471  0x00006c46 arg  0x000006a2 , 0x00000005 
+ 00031472  0x00006c47 call  0x00007e31 
+ 00031473  0x00006c49 setarg  0x005c5c5c 
+ 00031474  0x00006c4a lshift8  0x0000003f , 0x00000002 
+ 00031475  0x00006c4b or_into  0x0000005c , 0x00000002 
+ 00031476  0x00006c4c fetch  0x00000002 , 0x00000898 
+ 00031477  0x00006c4d copy  0x0000003f , 0x00000006 
+ 00031478  0x00006c4e force  0x00000004 , 0x00000039 
+ 00031479  0x00006c4f call  0x00007a90 
+ 00031480  0x00006c50 call  0x00007a45 
+ 00031481  0x00006c51 call  0x00007a4c 
+ 00031482  0x00006c52 arg  0x000006c2 , 0x00000006 
+ 00031483  0x00006c53 arg  0x00000582 , 0x00000005 
+ 00031484  0x00006c54 force  0x00000008 , 0x00000039 
+ 00031485  0x00006c55 call  0x00007b97 
+ 00031486  0x00006c56 setarg  0x00800000 
+ 00031487  0x00006c57 lshift8  0x0000003f , 0x0000003f 
+ 00031488  0x00006c58 istore  0x00000004 , 0x00000005 
+ 00031489  0x00006c59 call  0x00007e3a 
+ 00031490  0x00006c5a setarg  0x00000300 
+ 00031491  0x00006c5b istore  0x00000004 , 0x00000005 
+ 00031492  0x00006c5c call  0x00007a4c 
+ 00031493  0x00006c5d branch  0x00007a89 
+ 00031494  0x00006c61 setarg  0x00363636 
+ 00031495  0x00006c62 lshift8  0x0000003f , 0x00000002 
+ 00031496  0x00006c63 or_into  0x00000036 , 0x00000002 
+ 00031497  0x00006c64 arg  0x00000838 , 0x00000006 
+ 00031498  0x00006c65 force  0x00000006 , 0x00000039 
+ 00031499  0x00006c66 call  0x00007a90 
+ 00031500  0x00006c67 call  0x00007a45 
+ 00031501  0x00006c68 call  0x00007a4c 
+ 00031502  0x00006c69 fetch  0x00000002 , 0x000008a4 
+ 00031503  0x00006c6a copy  0x0000003f , 0x00000006 
+ 00031504  0x00006c6b arg  0x00000582 , 0x00000005 
+ 00031505  0x00006c6c call  0x00007b96 
+ 00031506  0x00006c6d fetch  0x00000002 , 0x000008a6 
+ 00031507  0x00006c6e copy  0x0000003f , 0x00000006 
+ 00031508  0x00006c6f call  0x00007b96 
+ 00031509  0x00006c71 setarg  0x0062746c 
+ 00031510  0x00006c72 lshift8  0x0000003f , 0x0000003f 
+ 00031511  0x00006c73 or_into  0x0000006b , 0x0000003f 
+ 00031512  0x00006c74 istore  0x00000004 , 0x00000005 
+ 00031513  0x00006c75 arg  0x000006cf , 0x00000006 
+ 00031514  0x00006c76 force  0x00000003 , 0x00000039 
+ 00031515  0x00006c77 call  0x00007b97 
+ 00031516  0x00006c79 setarg  0x00800000 
+ 00031517  0x00006c7a lshift8  0x0000003f , 0x0000003f 
+ 00031518  0x00006c7b istore  0x00000004 , 0x00000005 
+ 00031519  0x00006c7c force  0x00000000 , 0x0000003f 
+ 00031520  0x00006c7d istore  0x00000008 , 0x00000005 
+ 00031521  0x00006c7e setarg  0x00000380 
+ 00031522  0x00006c7f istore  0x00000004 , 0x00000005 
+ 00031523  0x00006c80 call  0x00007a4c 
+ 00031524  0x00006c82 call  0x00007a89 
+ 00031525  0x00006c83 arg  0x00000858 , 0x00000006 
+ 00031526  0x00006c84 arg  0x000006a2 , 0x00000005 
+ 00031527  0x00006c85 call  0x00007e31 
+ 00031528  0x00006c87 setarg  0x005c5c5c 
+ 00031529  0x00006c88 lshift8  0x0000003f , 0x00000002 
+ 00031530  0x00006c89 or_into  0x0000005c , 0x00000002 
+ 00031531  0x00006c8a arg  0x00000838 , 0x00000006 
+ 00031532  0x00006c8b force  0x00000006 , 0x00000039 
+ 00031533  0x00006c8c call  0x00007a90 
+ 00031534  0x00006c8d call  0x00007a45 
+ 00031535  0x00006c8e call  0x00007a4c 
+ 00031536  0x00006c8f arg  0x000006c2 , 0x00000006 
+ 00031537  0x00006c90 arg  0x00000582 , 0x00000005 
+ 00031538  0x00006c91 force  0x00000008 , 0x00000039 
+ 00031539  0x00006c92 call  0x00007b97 
+ 00031540  0x00006c93 setarg  0x00800000 
+ 00031541  0x00006c94 lshift8  0x0000003f , 0x0000003f 
+ 00031542  0x00006c95 istore  0x00000004 , 0x00000005 
+ 00031543  0x00006c96 call  0x00007e3a 
+ 00031544  0x00006c97 setarg  0x00000300 
+ 00031545  0x00006c98 istore  0x00000004 , 0x00000005 
+ 00031546  0x00006c99 call  0x00007a4c 
+ 00031547  0x00006c9a branch  0x00007a89 
+ 00031548  0x00006c9e setarg  0x00363636 
+ 00031549  0x00006c9f lshift8  0x0000003f , 0x00000002 
+ 00031550  0x00006ca0 or_into  0x00000036 , 0x00000002 
+ 00031551  0x00006ca1 arg  0x00000838 , 0x00000006 
+ 00031552  0x00006ca2 force  0x00000006 , 0x00000039 
+ 00031553  0x00006ca3 call  0x00007a90 
+ 00031554  0x00006ca4 call  0x00007a45 
+ 00031555  0x00006ca5 call  0x00007a4c 
+ 00031556  0x00006ca6 arg  0x00000858 , 0x00000006 
+ 00031557  0x00006ca7 arg  0x00000582 , 0x00000005 
+ 00031558  0x00006ca8 call  0x00007b96 
+ 00031559  0x00006ca9 arg  0x00000848 , 0x00000006 
+ 00031560  0x00006caa call  0x00007b96 
+ 00031561  0x00006cab branch  0x00007b57 
+ 00031562  0x00006cae setarg  0x00363636 
+ 00031563  0x00006caf lshift8  0x0000003f , 0x00000002 
+ 00031564  0x00006cb0 or_into  0x00000036 , 0x00000002 
+ 00031565  0x00006cb1 arg  0x00000838 , 0x00000006 
+ 00031566  0x00006cb2 force  0x00000006 , 0x00000039 
+ 00031567  0x00006cb3 call  0x00007a90 
+ 00031568  0x00006cb4 call  0x00007a45 
+ 00031569  0x00006cb5 call  0x00007a4c 
+ 00031570  0x00006cb7 arg  0x00000848 , 0x00000006 
+ 00031571  0x00006cb8 arg  0x00000582 , 0x00000005 
+ 00031572  0x00006cb9 call  0x00007b96 
+ 00031573  0x00006cba arg  0x00000858 , 0x00000006 
+ 00031574  0x00006cbb call  0x00007b96 
+ 00031575  0x00006cbd setarg  0x00000000 
+ 00031576  0x00006cbe istore  0x00000008 , 0x00000005 
+ 00031577  0x00006cbf istore  0x00000008 , 0x00000005 
+ 00031578  0x00006cc1 copy  0x00000005 , 0x00000002 
+ 00031579  0x00006cc2 jam  0x00000080 , 0x000006c2 
+ 00031580  0x00006cc3 copy  0x00000002 , 0x00000005 
+ 00031581  0x00006cc4 arg  0x000006d2 , 0x00000006 
+ 00031582  0x00006cc5 call  0x00007b96 
+ 00031583  0x00006cc7 call  0x00007a4c 
+ 00031584  0x00006cc9 arg  0x00000582 , 0x00000005 
+ 00031585  0x00006cca force  0x00000007 , 0x00000039 
+ 00031586  0x00006ccb call  0x00007e3b 
+ 00031587  0x00006ccc istore  0x00000004 , 0x00000005 
+ 00031588  0x00006ccd setarg  0x000003f8 
+ 00031589  0x00006cce istore  0x00000004 , 0x00000005 
+ 00031590  0x00006ccf call  0x00007a4c 
+ 00031591  0x00006cd0 call  0x00007a89 
+ 00031592  0x00006cd2 arg  0x00000858 , 0x00000006 
+ 00031593  0x00006cd3 arg  0x000006a2 , 0x00000005 
+ 00031594  0x00006cd4 call  0x00007e31 
+ 00031595  0x00006cd6 setarg  0x005c5c5c 
+ 00031596  0x00006cd7 lshift8  0x0000003f , 0x00000002 
+ 00031597  0x00006cd8 or_into  0x0000005c , 0x00000002 
+ 00031598  0x00006cd9 arg  0x00000838 , 0x00000006 
+ 00031599  0x00006cda force  0x00000006 , 0x00000039 
+ 00031600  0x00006cdb call  0x00007a90 
+ 00031601  0x00006cdc call  0x00007a45 
+ 00031602  0x00006cdd call  0x00007a4c 
+ 00031603  0x00006cde arg  0x000006c2 , 0x00000006 
+ 00031604  0x00006cdf arg  0x00000582 , 0x00000005 
+ 00031605  0x00006ce0 force  0x00000008 , 0x00000039 
+ 00031606  0x00006ce1 call  0x00007b97 
+ 00031607  0x00006ce2 setarg  0x00800000 
+ 00031608  0x00006ce3 lshift8  0x0000003f , 0x0000003f 
+ 00031609  0x00006ce4 istore  0x00000004 , 0x00000005 
+ 00031610  0x00006ce5 call  0x00007e3a 
+ 00031611  0x00006ce6 setarg  0x00000300 
+ 00031612  0x00006ce7 istore  0x00000004 , 0x00000005 
+ 00031613  0x00006ce8 call  0x00007a4c 
+ 00031614  0x00006ce9 branch  0x00007a89 
+ 00031615  0x00006cf1 jam  0x000000c0 , 0x00000581 
+ 00031616  0x00006cf3 fetch  0x00000001 , 0x00000581 
+ 00031617  0x00006cf4 rtn  0x00000034 
+ 00031618  0x00006cf5 increase  0xffffffff , 0x0000003f 
+ 00031619  0x00006cf6 store  0x00000001 , 0x00000581 
+ 00031620  0x00006cf7 arg  0x0000065a , 0x00000006 
+ 00031621  0x00006cf8 call  0x00007822 
+ 00031622  0x00006cf9 branch  0x00007b80 , 0x00000001 
+ 00031623  0x00006cfa arg  0x00000582 , 0x00000006 
+ 00031624  0x00006cfb arg  0x00000612 , 0x00000005 
+ 00031625  0x00006cfc branch  0x00007828 
+ 00031626  0x00006cff call  0x0000793a 
+ 00031627  0x00006d00 fetch  0x00000001 , 0x00000581 
+ 00031628  0x00006d01 increase  0xffffffff , 0x0000003f 
+ 00031629  0x00006d02 store  0x00000001 , 0x00000581 
+ 00031630  0x00006d03 arg  0x0000065a , 0x00000006 
+ 00031631  0x00006d04 call  0x00007822 
+ 00031632  0x00006d05 rtn  0x00000001 
+ 00031633  0x00006d06 branch  0x0000798b 
+ 00031634  0x00006d09 jam  0x00000000 , 0x00000580 
+ 00031635  0x00006d0a arg  0x00000582 , 0x00000006 
+ 00031636  0x00006d0b arg  0x00000612 , 0x00000005 
+ 00031637  0x00006d0c branch  0x00007828 
+ 00031638  0x00006d0f force  0x00000004 , 0x00000039 
+ 00031639  0x00006d11 increase  0xfffffffc , 0x00000006 
+ 00031640  0x00006d13 ifetch  0x00000004 , 0x00000006 
+ 00031641  0x00006d14 istore  0x00000004 , 0x00000005 
+ 00031642  0x00006d15 increase  0xfffffff8 , 0x00000006 
+ 00031643  0x00006d16 loop  0x00007b98 
+ 00031644  0x00006d17 rtn 
+ 00031645  0x00006d1b rtn  0x0000002b 
+ 00031646  0x00006d1c call  0x00007ba5 
+ 00031647  0x00006d1d call  0x00007c13 
+ 00031648  0x00006d1e branch  0x00007bd9 
+ 00031649  0x00006d21 fetch  0x00000001 , 0x00004132 
+ 00031650  0x00006d22 rtneq  0x00000001 
+ 00031651  0x00006d23 call  0x00007bf2 
+ 00031652  0x00006d25 branch  0x00007c04 
+ 00031653  0x00006d28 fetch  0x00000001 , 0x000047fd 
+ 00031654  0x00006d29 rtneq  0x000000ff 
+ 00031655  0x00006d2a iforce  0x00000002 
+ 00031656  0x00006d2b call  0x000069da 
+ 00031657  0x00006d2c fetcht  0x00000001 , 0x000047fd 
+ 00031658  0x00006d2d call  0x000069ed 
+ 00031659  0x00006d2e nop  0x00000064 
+ 00031660  0x00006d2f fetcht  0x00000001 , 0x000047fd 
+ 00031661  0x00006d30 call  0x000069d1 
+ 00031662  0x00006d31 branch  0x00007bb1 
+ 00031663  0x00006d34 jam  0x000000ff , 0x000047fd 
+ 00031664  0x00006d35 rtn 
+ 00031665  0x00006d38 set1  0x00000025 , 0x00000000 
+ 00031666  0x00006d39 bpatch  0x00000085 , 0x00004030 
+ 00031667  0x00006d3a fetch  0x00000001 , 0x000047fd 
+ 00031668  0x00006d3b rtneq  0x000000ff 
+ 00031669  0x00006d3c copy  0x0000003f , 0x00000002 
+ 00031670  0x00006d3d call  0x000069e5 
+ 00031671  0x00006d3e nbranch  0x00007bc4 , 0x00000001 
+ 00031672  0x00006d41 call  0x00007bce 
+ 00031673  0x00006d42 fetch  0x00000002 , 0x000047f4 
+ 00031674  0x00006d43 set1  0x0000000c 
+ 00031675  0x00006d44 store  0x00000002 , 0x000047f4 
+ 00031676  0x00006d45 fetch  0x00000001 , 0x000047eb 
+ 00031677  0x00006d46 rtneq  0x00000000 
+ 00031678  0x00006d47 jam  0x00000000 , 0x000047eb 
+ 00031679  0x00006d49 fetch  0x00000001 , 0x000047fc 
+ 00031680  0x00006d4a store  0x00000001 , 0x000047ea 
+ 00031681  0x00006d4b call  0x00007bd5 
+ 00031682  0x00006d4c jam  0x0000002c , 0x00000b7d 
+ 00031683  0x00006d4d branch  0x00007c27 
+ 00031684  0x00006d4f fetch  0x00000002 , 0x000047f4 
+ 00031685  0x00006d50 set0  0x0000000c 
+ 00031686  0x00006d51 store  0x00000002 , 0x000047f4 
+ 00031687  0x00006d52 fetch  0x00000001 , 0x000047eb 
+ 00031688  0x00006d53 rtneq  0x00000001 
+ 00031689  0x00006d54 jam  0x00000001 , 0x000047eb 
+ 00031690  0x00006d56 jam  0x00000000 , 0x000047ea 
+ 00031691  0x00006d57 call  0x00007bd7 
+ 00031692  0x00006d58 jam  0x0000002d , 0x00000b7d 
+ 00031693  0x00006d59 branch  0x00007c27 
+ 00031694  0x00006d5c fetch  0x00000001 , 0x000047ea 
+ 00031695  0x00006d5d rtn  0x00000034 
+ 00031696  0x00006d5e increase  0xffffffff , 0x0000003f 
+ 00031697  0x00006d5f store  0x00000001 , 0x000047ea 
+ 00031698  0x00006d60 nrtn  0x00000034 
+ 00031699  0x00006d62 jam  0x00000010 , 0x00000b7d 
+ 00031700  0x00006d63 branch  0x00007c27 
+ 00031701  0x00006d66 arg  0x00000007 , 0x00000007 
+ 00031702  0x00006d67 branch  0x00003dc2 
+ 00031703  0x00006d6a arg  0x00000007 , 0x00000007 
+ 00031704  0x00006d6b branch  0x00003dc6 
+ 00031705  0x00006d6e fetch  0x00000001 , 0x000047f7 
+ 00031706  0x00006d6f rtneq  0x000000ff 
+ 00031707  0x00006d70 iforce  0x00000002 
+ 00031708  0x00006d71 call  0x000069da 
+ 00031709  0x00006d72 branch  0x00007be2 
+ 00031710  0x00006d75 fetch  0x00000002 , 0x000047f4 
+ 00031711  0x00006d76 set0  0x0000000d 
+ 00031712  0x00006d77 store  0x00000002 , 0x000047f4 
+ 00031713  0x00006d78 jam  0x00000000 , 0x000047e9 
+ 00031714  0x00006d7a fetch  0x00000002 , 0x000047f4 
+ 00031715  0x00006d7b set0  0x0000000e 
+ 00031716  0x00006d7c store  0x00000002 , 0x000047f4 
+ 00031717  0x00006d7d fetcht  0x00000001 , 0x000047f7 
+ 00031718  0x00006d7e branch  0x000069ed 
+ 00031719  0x00006d81 fetch  0x00000002 , 0x000047f4 
+ 00031720  0x00006d82 set1  0x0000000e 
+ 00031721  0x00006d83 store  0x00000002 , 0x000047f4 
+ 00031722  0x00006d84 jam  0x00000000 , 0x000047e9 
+ 00031723  0x00006d85 fetcht  0x00000001 , 0x000047f7 
+ 00031724  0x00006d86 branch  0x000069ef 
+ 00031725  0x00006d89 fetch  0x00000002 , 0x000047f4 
+ 00031726  0x00006d8a set1  0x0000000d 
+ 00031727  0x00006d8b store  0x00000002 , 0x000047f4 
+ 00031728  0x00006d8c jam  0x00000001 , 0x000047e9 
+ 00031729  0x00006d8d rtn 
+ 00031730  0x00006d90 set1  0x00000025 , 0x00000000 
+ 00031731  0x00006d91 bpatch  0x00000086 , 0x00004030 
+ 00031732  0x00006d92 fetch  0x00000001 , 0x000047e9 
+ 00031733  0x00006d93 rtneq  0x00000000 
+ 00031734  0x00006d94 arg  0x00000009 , 0x00000007 
+ 00031735  0x00006d95 call  0x00007e53 
+ 00031736  0x00006d96 nrtn  0x00000034 
+ 00031737  0x00006d97 fetch  0x00000001 , 0x000047e9 
+ 00031738  0x00006d98 beq  0x00000002 , 0x00007bff 
+ 00031739  0x00006d99 call  0x00007be7 
+ 00031740  0x00006d9a jam  0x00000002 , 0x000047e9 
+ 00031741  0x00006d9b fetch  0x00000002 , 0x000047fa 
+ 00031742  0x00006d9c branch  0x00007c02 
+ 00031743  0x00006d9e call  0x00007be2 
+ 00031744  0x00006d9f jam  0x00000003 , 0x000047e9 
+ 00031745  0x00006da0 fetch  0x00000002 , 0x000047f8 
+ 00031746  0x00006da2 arg  0x00000009 , 0x00000007 
+ 00031747  0x00006da3 branch  0x00007e4c 
+ 00031748  0x00006da7 set1  0x00000025 , 0x00000000 
+ 00031749  0x00006da8 bpatch  0x00000087 , 0x00004030 
+ 00031750  0x00006da9 arg  0x00000000 , 0x00000011 
+ 00031751  0x00006daa fetcht  0x00000004 , 0x000047ec 
+ 00031752  0x00006dab copy  0x00000022 , 0x00000012 
+ 00031753  0x00006dae copy  0x00000012 , 0x0000003f 
+ 00031754  0x00006daf increase  0x000000a0 , 0x00000002 
+ 00031755  0x00006db0 increase  0x000000a0 , 0x00000002 
+ 00031756  0x00006db1 isub  0x00000002 , 0x0000003e 
+ 00031757  0x00006db2 nbranch  0x00007c16 , 0x00000002 
+ 00031758  0x00006db3 increase  0x00000001 , 0x00000011 
+ 00031759  0x00006db4 and  0x00000011 , 0x0000000f , 0x0000003f 
+ 00031760  0x00006db5 nbranch  0x00007c09 , 0x00000034 
+ 00031761  0x00006db6 arg  0x00000000 , 0x00000011 
+ 00031762  0x00006db7 call  0x00007c1d 
+ 00031763  0x00006db9 copy  0x00000022 , 0x0000003f 
+ 00031764  0x00006dba store  0x00000004 , 0x000047ec 
+ 00031765  0x00006dbb rtn 
+ 00031766  0x00006dbd set1  0x00000025 , 0x00000000 
+ 00031767  0x00006dbe bpatch  0x00000088 , 0x00004031 
+ 00031768  0x00006dbf copy  0x00000011 , 0x0000003f 
+ 00031769  0x00006dc0 rtn  0x00000034 
+ 00031770  0x00006dc1 increase  0xffffff60 , 0x00000002 
+ 00031771  0x00006dc2 increase  0xffffff60 , 0x00000002 
+ 00031772  0x00006dc3 storet  0x00000004 , 0x000047ec 
+ 00031773  0x00006dc5 increase  0x00000050 , 0x0000003f 
+ 00031774  0x00006dc6 store  0x00000001 , 0x00000b7d 
+ 00031775  0x00006dc7 branch  0x00007c27 
+ 00031776  0x00006dce jam  0x00000001 , 0x000047dd 
+ 00031777  0x00006dd0 fetch  0x00000001 , 0x000047de 
+ 00031778  0x00006dd1 nbranch  0x00007c21 , 0x00000034 
+ 00031779  0x00006dd2 rtn 
+ 00031780  0x00006dd5 jam  0x00000000 , 0x000047dd 
+ 00031781  0x00006dd6 rtn 
+ 00031782  0x00006dd9 branch  0x00007f9f 
+ 00031783  0x00006dde set1  0x00000025 , 0x00000000 
+ 00031784  0x00006ddf bpatch  0x00000089 , 0x00004031 
+ 00031785  0x00006de0 fetch  0x00000001 , 0x00004132 
+ 00031786  0x00006de1 rtneq  0x00000001 
+ 00031787  0x00006de2 call  0x00007c20 
+ 00031788  0x00006de3 copy  0x00000011 , 0x0000003f 
+ 00031789  0x00006de4 store  0x00000004 , 0x000008ab 
+ 00031790  0x00006de5 arg  0x000047df , 0x00000011 
+ 00031791  0x00006de6 call  0x00007f92 
+ 00031792  0x00006de7 fetch  0x00000004 , 0x000008ab 
+ 00031793  0x00006de8 copy  0x0000003f , 0x00000011 
+ 00031794  0x00006de9 branch  0x00007c24 
+ 00031795  0x00006dec set1  0x00000025 , 0x00000000 
+ 00031796  0x00006ded bpatch  0x0000008a , 0x00004031 
+ 00031797  0x00006dee fetch  0x00000001 , 0x00004132 
+ 00031798  0x00006def rtneq  0x00000001 
+ 00031799  0x00006df0 call  0x00007c20 
+ 00031800  0x00006df1 copy  0x00000011 , 0x0000003f 
+ 00031801  0x00006df2 store  0x00000004 , 0x000008ab 
+ 00031802  0x00006df3 arg  0x000047e4 , 0x00000011 
+ 00031803  0x00006df4 call  0x00007f92 
+ 00031804  0x00006df5 fetch  0x00000004 , 0x000008ab 
+ 00031805  0x00006df6 copy  0x0000003f , 0x00000011 
+ 00031806  0x00006df7 branch  0x00007c24 
+ 00031807  0x00006dfa set1  0x00000025 , 0x00000000 
+ 00031808  0x00006dfb bpatch  0x0000008b , 0x00004031 
+ 00031809  0x00006dfc setarg  0x00000000 
+ 00031810  0x00006dfd store  0x00000005 , 0x000047e4 
+ 00031811  0x00006dfe store  0x00000005 , 0x000047df 
+ 00031812  0x00006dff rtn 
+ 00031813  0x00006e02 set1  0x00000025 , 0x00000000 
+ 00031814  0x00006e03 bpatch  0x0000008c , 0x00004031 
+ 00031815  0x00006e04 fetch  0x00000001 , 0x00004272 
+ 00031816  0x00006e05 nrtn  0x00000034 
+ 00031817  0x00006e06 arg  0x000047e4 , 0x00000011 
+ 00031818  0x00006e07 call  0x00007fac 
+ 00031819  0x00006e08 rtn  0x00000034 
+ 00031820  0x00006e09 jam  0x00000000 , 0x000008aa 
+ 00031821  0x00006e0a call  0x00007c51 
+ 00031822  0x00006e0b fetch  0x00000001 , 0x000008aa 
+ 00031823  0x00006e0c branch  0x00007c45 , 0x00000034 
+ 00031824  0x00006e0d rtn 
+ 00031825  0x00006e10 set1  0x00000025 , 0x00000000 
+ 00031826  0x00006e11 bpatch  0x0000008d , 0x00004031 
+ 00031827  0x00006e12 call  0x00007c20 
+ 00031828  0x00006e13 arg  0x000047e4 , 0x00000011 
+ 00031829  0x00006e14 call  0x00007f9f 
+ 00031830  0x00006e15 copy  0x0000003f , 0x00000002 
+ 00031831  0x00006e16 call  0x00007c24 
+ 00031832  0x00006e17 copy  0x00000002 , 0x0000003f 
+ 00031833  0x00006e18 rtn  0x00000034 
+ 00031834  0x00006e19 beq  0x00000001 , 0x00007c97 
+ 00031835  0x00006e1a beq  0x00000002 , 0x00007c9c 
+ 00031836  0x00006e1b beq  0x00000003 , 0x00007ca2 
+ 00031837  0x00006e1c beq  0x00000007 , 0x00007ca7 
+ 00031838  0x00006e1d beq  0x00000008 , 0x00007ca8 
+ 00031839  0x00006e1e beq  0x00000009 , 0x00007ca9 
+ 00031840  0x00006e1f beq  0x0000000b , 0x00007cac 
+ 00031841  0x00006e20 beq  0x0000000c , 0x00007cad 
+ 00031842  0x00006e21 beq  0x0000000d , 0x00007cae 
+ 00031843  0x00006e22 beq  0x0000000e , 0x00007cb1 
+ 00031844  0x00006e23 beq  0x0000000f , 0x00007cb3 
+ 00031845  0x00006e24 beq  0x00000010 , 0x00007cb6 
+ 00031846  0x00006e25 beq  0x00000012 , 0x00007cbb 
+ 00031847  0x00006e26 beq  0x00000015 , 0x00007bed 
+ 00031848  0x00006e27 beq  0x00000014 , 0x00007be7 
+ 00031849  0x00006e28 beq  0x00000013 , 0x00007bde 
+ 00031850  0x00006e29 beq  0x00000016 , 0x00007cbc 
+ 00031851  0x00006e2a beq  0x00000017 , 0x00007cc1 
+ 00031852  0x00006e2b beq  0x00000018 , 0x00007cc3 
+ 00031853  0x00006e2c beq  0x00000019 , 0x00007cc8 
+ 00031854  0x00006e2d beq  0x0000001b , 0x00007cc6 
+ 00031855  0x00006e2e beq  0x0000001c , 0x00007cd3 
+ 00031856  0x00006e2f beq  0x0000001e , 0x00007cd5 
+ 00031857  0x00006e31 store  0x00000001 , 0x00000b7d 
+ 00031858  0x00006e32 set1  0x00000025 , 0x00000000 
+ 00031859  0x00006e33 bpatch  0x0000008e , 0x00004031 
+ 00031860  0x00006e34 fetch  0x00000001 , 0x0000007c 
+ 00031861  0x00006e35 branch  0x00007c79 , 0x00000034 
+ 00031862  0x00006e36 call  0x000061d9 
+ 00031863  0x00006e37 fetch  0x00000001 , 0x0000007c 
+ 00031864  0x00006e38 nbranch  0x00007c8c , 0x00000034 
+ 00031865  0x00006e3a fetch  0x00000001 , 0x00000b7d 
+ 00031866  0x00006e3b bmark0  0x00000009 , 0x00007c87 
+ 00031867  0x00006e3d beq  0x00000005 , 0x00004a19 
+ 00031868  0x00006e3e beq  0x00000006 , 0x00004a28 
+ 00031869  0x00006e3f beq  0x0000000a , 0x00007caa 
+ 00031870  0x00006e40 beq  0x00000004 , 0x00007ca4 
+ 00031871  0x00006e41 beq  0x00000011 , 0x00007cb8 
+ 00031872  0x00006e42 beq  0x0000001d , 0x00007c8e 
+ 00031873  0x00006e43 beq  0x0000001f , 0x0000690c 
+ 00031874  0x00006e44 beq  0x00000020 , 0x00006910 
+ 00031875  0x00006e45 beq  0x00000012 , 0x00007c85 
+ 00031876  0x00006e46 rtn 
+ 00031877  0x00006e4a jam  0x0000002f , 0x00000b7d 
+ 00031878  0x00006e4b branch  0x00005620 
+ 00031879  0x00006e4d store  0x00000001 , 0x00000b7d 
+ 00031880  0x00006e4e call  0x000032ee 
+ 00031881  0x00006e4f branch  0x00007c8c , 0x00000005 
+ 00031882  0x00006e50 call  0x000032f9 
+ 00031883  0x00006e51 nrtn  0x00000005 
+ 00031884  0x00006e53 jam  0x00000001 , 0x000008aa 
+ 00031885  0x00006e54 branch  0x00007c33 
+ 00031886  0x00006e58 jam  0x00000034 , 0x0000007c 
+ 00031887  0x00006e59 set1  0x00000003 , 0x00000000 
+ 00031888  0x00006e5a nrtn  0x00000029 
+ 00031889  0x00006e5b jam  0x00000000 , 0x00004748 
+ 00031890  0x00006e5c jam  0x00000013 , 0x0000007c 
+ 00031891  0x00006e5d fetch  0x00000001 , 0x00000177 
+ 00031892  0x00006e5e set0  0x00000002 , 0x0000003f 
+ 00031893  0x00006e5f store  0x00000001 , 0x00000177 
+ 00031894  0x00006e60 rtn 
+ 00031895  0x00006e63 fetch  0x00000002 , 0x000047f4 
+ 00031896  0x00006e64 set1  0x00000006 
+ 00031897  0x00006e65 store  0x00000002 , 0x000047f4 
+ 00031898  0x00006e66 jam  0x00000003 , 0x00004133 
+ 00031899  0x00006e67 rtn 
+ 00031900  0x00006e6a jam  0x00000000 , 0x000047f2 
+ 00031901  0x00006e6b jam  0x00000000 , 0x00004133 
+ 00031902  0x00006e6c fetch  0x00000002 , 0x000047f4 
+ 00031903  0x00006e6d set0  0x00000006 
+ 00031904  0x00006e6e store  0x00000002 , 0x000047f4 
+ 00031905  0x00006e6f rtn 
+ 00031906  0x00006e72 jam  0x00000005 , 0x00004272 
+ 00031907  0x00006e73 rtn 
+ 00031908  0x00006e76 jam  0x00000007 , 0x0000007c 
+ 00031909  0x00006e77 jam  0x00000013 , 0x00000446 
+ 00031910  0x00006e78 rtn 
+ 00031911  0x00006e7c rtn 
+ 00031912  0x00006e7f rtn 
+ 00031913  0x00006e82 rtn 
+ 00031914  0x00006e85 jam  0x00000002 , 0x00000450 
+ 00031915  0x00006e86 branch  0x000049da 
+ 00031916  0x00006e89 rtn 
+ 00031917  0x00006e8b rtn 
+ 00031918  0x00006e8d jam  0x00000001 , 0x000043d8 
+ 00031919  0x00006e8e jam  0x00000000 , 0x000044db 
+ 00031920  0x00006e8f rtn 
+ 00031921  0x00006e91 jam  0x00000000 , 0x000043d8 
+ 00031922  0x00006e92 rtn 
+ 00031923  0x00006e94 jam  0x00000001 , 0x000043d8 
+ 00031924  0x00006e95 jam  0x00000001 , 0x000044db 
+ 00031925  0x00006e96 rtn 
+ 00031926  0x00006e98 jam  0x00000000 , 0x000043d8 
+ 00031927  0x00006e99 rtn 
+ 00031928  0x00006e9b setarg  0x00000001 
+ 00031929  0x00006e9c store  0x00000002 , 0x000003ef 
+ 00031930  0x00006e9d rtn 
+ 00031931  0x00006e9f rtn 
+ 00031932  0x00006ea1 jam  0x00000001 , 0x000043d2 
+ 00031933  0x00006ea2 jam  0x0000001b , 0x00004272 
+ 00031934  0x00006ea3 fetch  0x00000006 , 0x00000268 
+ 00031935  0x00006ea4 store  0x00000006 , 0x000044e7 
+ 00031936  0x00006ea5 rtn 
+ 00031937  0x00006ea7 jam  0x00000001 , 0x000043d2 
+ 00031938  0x00006ea8 rtn 
+ 00031939  0x00006eaa jam  0x00000000 , 0x000043d2 
+ 00031940  0x00006eab jam  0x00000000 , 0x00004272 
+ 00031941  0x00006eac rtn 
+ 00031942  0x00006eae jam  0x0000004b , 0x00000b7d 
+ 00031943  0x00006eaf branch  0x00005620 
+ 00031944  0x00006eb1 set1  0x00000025 , 0x00000000 
+ 00031945  0x00006eb2 bpatch  0x0000008f , 0x00004031 
+ 00031946  0x00006eb3 fetch  0x00000002 , 0x00004288 
+ 00031947  0x00006eb4 call  0x00007f66 
+ 00031948  0x00006eb5 fetch  0x00000001 , 0x000047fd 
+ 00031949  0x00006eb6 beq  0x000000ff , 0x00007cd0 
+ 00031950  0x00006eb7 copy  0x0000003f , 0x00000002 
+ 00031951  0x00006eb8 call  0x000069d1 
+ 00031952  0x00006eba call  0x00007be2 
+ 00031953  0x00006ebb call  0x00007c3f 
+ 00031954  0x00006ebc branch  0x00003ccd 
+ 00031955  0x00006ebf jam  0x00000001 , 0x000046f8 
+ 00031956  0x00006ec0 rtn 
+ 00031957  0x00006ec3 force  0x00000004 , 0x00000007 
+ 00031958  0x00006ec4 branch  0x00007e4b 
+ 00031959  0x00006ec7 fetch  0x00000001 , 0x000047f4 
+ 00031960  0x00006ec8 rtnbit0  0x0000000c 
+ 00031961  0x00006ec9 rtnbit0  0x00000007 
+ 00031962  0x00006eca branch  0x00007cd5 
+ 00031963  0x00006ecf set1  0x00000025 , 0x00000000 
+ 00031964  0x00006ed0 bpatch  0x000000d5 , 0x0000403a 
+ 00031965  0x00006ed1 call  0x00007df3 
+ 00031966  0x00006ed2 hfetch  0x00000001 , 0x00008c26 
+ 00031967  0x00006ed3 store  0x00000001 , 0x000008af 
+ 00031968  0x00006ed4 hfetch  0x00000001 , 0x00008c27 
+ 00031969  0x00006ed5 store  0x00000001 , 0x000008b0 
+ 00031970  0x00006ed6 hjam  0x000000e0 , 0x00008c26 
+ 00031971  0x00006ed7 fetch  0x00000001 , 0x000008b0 
+ 00031972  0x00006ed8 compare  0x00000001 , 0x0000003f , 0x00000001 
+ 00031973  0x00006ed9 call  0x00007d3a , 0x00000001 
+ 00031974  0x00006eda set1  0x00000025 , 0x00000000 
+ 00031975  0x00006edb bpatch  0x000000d6 , 0x0000403a 
+ 00031976  0x00006edc fetch  0x00000001 , 0x000008af 
+ 00031977  0x00006edd compare  0x00000001 , 0x0000003f , 0x00000001 
+ 00031978  0x00006ede call  0x00007cf8 , 0x00000001 
+ 00031979  0x00006edf fetch  0x00000001 , 0x000008f8 
+ 00031980  0x00006ee0 bne  0x00000002 , 0x00007dc2 
+ 00031981  0x00006ee1 fetch  0x00000002 , 0x000008f9 
+ 00031982  0x00006ee2 increase  0x00000001 , 0x0000003f 
+ 00031983  0x00006ee3 store  0x00000002 , 0x000008f9 
+ 00031984  0x00006ee4 fetcht  0x00000002 , 0x000008fb 
+ 00031985  0x00006ee5 isub  0x00000002 , 0x0000003e 
+ 00031986  0x00006ee6 branch  0x00007db2 , 0x00000002 
+ 00031987  0x00006ee7 fetch  0x00000001 , 0x000008af 
+ 00031988  0x00006ee8 bbit0  0x00000006 , 0x00007dc2 
+ 00031989  0x00006ee9 setarg  0x00000000 
+ 00031990  0x00006eea store  0x00000002 , 0x000008f9 
+ 00031991  0x00006eeb branch  0x00007dc2 
+ 00031992  0x00006eef set1  0x00000025 , 0x00000000 
+ 00031993  0x00006ef0 bpatch  0x000000d7 , 0x0000403a 
+ 00031994  0x00006ef1 hjam  0x00000011 , 0x00008c26 
+ 00031995  0x00006ef2 hfetch  0x00000001 , 0x00008c20 
+ 00031996  0x00006ef3 store  0x00000001 , 0x000008b1 
+ 00031997  0x00006ef4 copy  0x0000003f , 0x00000039 
+ 00031998  0x00006ef5 branch  0x00007d18 , 0x00000034 
+ 00031999  0x00006ef6 arg  0x000008ff , 0x00000005 
+ 00032000  0x00006ef7 call  0x00007d36 
+ 00032001  0x00006ef8 fetch  0x00000001 , 0x000008b1 
+ 00032002  0x00006ef9 sub  0x0000003f , 0x00000007 , 0x0000003e 
+ 00032003  0x00006efa rtn  0x00000002 
+ 00032004  0x00006efc set1  0x00000025 , 0x00000000 
+ 00032005  0x00006efd bpatch  0x000000d8 , 0x0000403b 
+ 00032006  0x00006efe fetch  0x00000001 , 0x000008ff 
+ 00032007  0x00006eff beq  0x00000020 , 0x00007d16 
+ 00032008  0x00006f00 beq  0x00000021 , 0x00007d22 
+ 00032009  0x00006f01 beq  0x00000000 , 0x00007d10 
+ 00032010  0x00006f02 fetch  0x00000001 , 0x00000900 
+ 00032011  0x00006f03 beq  0x00000005 , 0x00007d9b 
+ 00032012  0x00006f04 beq  0x00000006 , 0x00007d3d 
+ 00032013  0x00006f05 beq  0x00000009 , 0x00007d98 
+ 00032014  0x00006f06 beq  0x0000000b , 0x00007da2 
+ 00032015  0x00006f07 branch  0x00007d32 
+ 00032016  0x00006f0a fetch  0x00000001 , 0x00000900 
+ 00032017  0x00006f0b beq  0x00000001 , 0x00007daf 
+ 00032018  0x00006f0c beq  0x00000003 , 0x00007dab 
+ 00032019  0x00006f0d beq  0x00000009 , 0x00007d34 
+ 00032020  0x00006f0e beq  0x00000005 , 0x00007d9b 
+ 00032021  0x00006f0f branch  0x00007d32 
+ 00032022  0x00006f11 call  0x00007d34 
+ 00032023  0x00006f12 rtn 
+ 00032024  0x00006f15 fetch  0x00000001 , 0x000008af 
+ 00032025  0x00006f16 bbit1  0x00000004 , 0x00007d04 
+ 00032026  0x00006f17 rtn 
+ 00032027  0x00006f19 fetch  0x00000001 , 0x000008f6 
+ 00032028  0x00006f1a increase  0x00000001 , 0x0000003f 
+ 00032029  0x00006f1b store  0x00000001 , 0x000008f6 
+ 00032030  0x00006f1c compare  0x00000002 , 0x0000003f , 0x000000ff 
+ 00032031  0x00006f1d nbranch  0x00007d34 , 0x00000001 
+ 00032032  0x00006f1e jam  0x00000001 , 0x000008f7 
+ 00032033  0x00006f1f branch  0x00007d34 
+ 00032034  0x00006f21 fetch  0x00000001 , 0x00000900 
+ 00032035  0x00006f22 beq  0x0000000a , 0x00007d27 
+ 00032036  0x00006f23 beq  0x00000009 , 0x00007d2e 
+ 00032037  0x00006f24 beq  0x0000000b , 0x00007d1b 
+ 00032038  0x00006f25 branch  0x00007d32 
+ 00032039  0x00006f27 fetch  0x00000001 , 0x000008f8 
+ 00032040  0x00006f28 beq  0x00000005 , 0x00007d2c 
+ 00032041  0x00006f29 bne  0x00000004 , 0x00007d34 
+ 00032042  0x00006f2a jam  0x00000005 , 0x000008f8 
+ 00032043  0x00006f2b branch  0x00007d34 
+ 00032044  0x00006f2d jam  0x00000002 , 0x000008f8 
+ 00032045  0x00006f2e branch  0x00007d34 
+ 00032046  0x00006f31 jam  0x00000001 , 0x000008f7 
+ 00032047  0x00006f32 arg  0x000008f7 , 0x00000011 
+ 00032048  0x00006f33 arg  0x00000001 , 0x00000012 
+ 00032049  0x00006f34 branch  0x00007d65 
+ 00032050  0x00006f36 hjam  0x00000001 , 0x00008c11 
+ 00032051  0x00006f37 rtn 
+ 00032052  0x00006f39 hjam  0x00000040 , 0x00008c12 
+ 00032053  0x00006f3a rtn 
+ 00032054  0x00006f3d hfetch  0x00000001 , 0x00008c18 
+ 00032055  0x00006f3e istore  0x00000001 , 0x00000005 
+ 00032056  0x00006f3f loop  0x00007d36 
+ 00032057  0x00006f40 rtn 
+ 00032058  0x00006f43 hjam  0x00000001 , 0x00008c27 
+ 00032059  0x00006f44 call  0x00007d7c 
+ 00032060  0x00006f45 rtn 
+ 00032061  0x00006f48 set1  0x00000025 , 0x00000000 
+ 00032062  0x00006f49 bpatch  0x000000d9 , 0x0000403b 
+ 00032063  0x00006f4a set0  0x00000023 , 0x00000000 
+ 00032064  0x00006f4b fetch  0x00000001 , 0x00000902 
+ 00032065  0x00006f4c beq  0x00000001 , 0x00007d47 
+ 00032066  0x00006f4d beq  0x00000002 , 0x00007d49 
+ 00032067  0x00006f4e beq  0x00000003 , 0x00007d4b 
+ 00032068  0x00006f4f beq  0x00000021 , 0x00007d57 
+ 00032069  0x00006f50 beq  0x00000022 , 0x00007d5b 
+ 00032070  0x00006f51 rtn 
+ 00032071  0x00006f54 arg  0x00000912 , 0x00000011 
+ 00032072  0x00006f55 branch  0x00007d62 
+ 00032073  0x00006f57 arg  0x00000ab6 , 0x00000011 
+ 00032074  0x00006f58 branch  0x00007d62 
+ 00032075  0x00006f5a fetch  0x00000001 , 0x00000901 
+ 00032076  0x00006f5b and_into  0x00000003 , 0x0000003f 
+ 00032077  0x00006f5c arg  0x00000b1a , 0x00000011 
+ 00032078  0x00006f5d beq  0x00000000 , 0x00007d62 
+ 00032079  0x00006f5e set1  0x00000023 , 0x00000000 
+ 00032080  0x00006f5f arg  0x00000b1f , 0x00000011 
+ 00032081  0x00006f60 beq  0x00000001 , 0x00007d62 
+ 00032082  0x00006f61 arg  0x00000b3d , 0x00000011 
+ 00032083  0x00006f62 beq  0x00000002 , 0x00007d62 
+ 00032084  0x00006f63 arg  0x00000b5b , 0x00000011 
+ 00032085  0x00006f64 beq  0x00000003 , 0x00007d62 
+ 00032086  0x00006f65 branch  0x00003bf1 
+ 00032087  0x00006f67 arg  0x00000ac8 , 0x00000011 
+ 00032088  0x00006f68 fetch  0x00000001 , 0x00000ac8 
+ 00032089  0x00006f69 copy  0x0000003f , 0x00000012 
+ 00032090  0x00006f6a branch  0x00007d65 
+ 00032091  0x00006f6c fetch  0x00000002 , 0x00000903 
+ 00032092  0x00006f6d beq  0x00000001 , 0x00007d5f 
+ 00032093  0x00006f6e arg  0x00000926 , 0x00000011 
+ 00032094  0x00006f6f branch  0x00007d62 
+ 00032095  0x00006f71 jam  0x00000001 , 0x000008f8 
+ 00032096  0x00006f72 arg  0x000009ee , 0x00000011 
+ 00032097  0x00006f73 branch  0x00007d62 
+ 00032098  0x00006f76 ifetch  0x00000001 , 0x00000011 
+ 00032099  0x00006f77 iforce  0x00000012 
+ 00032100  0x00006f78 increase  0x00000001 , 0x00000011 
+ 00032101  0x00006f7c set1  0x00000025 , 0x00000000 
+ 00032102  0x00006f7d bpatch  0x000000da , 0x0000403b 
+ 00032103  0x00006f7e bmark0  0x00000023 , 0x00007d71 
+ 00032104  0x00006f7f add  0x00000012 , 0x00000001 , 0x0000003f 
+ 00032105  0x00006f80 lshift  0x0000003f , 0x0000003f 
+ 00032106  0x00006f81 hstore  0x00000001 , 0x00008c18 
+ 00032107  0x00006f82 hjam  0x00000003 , 0x00008c18 
+ 00032108  0x00006f83 fetch  0x00000001 , 0x00000905 
+ 00032109  0x00006f84 increase  0xfffffffe , 0x0000003f 
+ 00032110  0x00006f85 rshift  0x0000003f , 0x0000003f 
+ 00032111  0x00006f86 store  0x00000001 , 0x00000905 
+ 00032112  0x00006f87 beq  0x00000000 , 0x00007d7a 
+ 00032113  0x00006f89 fetch  0x00000001 , 0x00000905 
+ 00032114  0x00006f8a isub  0x00000012 , 0x0000003e 
+ 00032115  0x00006f8b branch  0x00007d75 , 0x00000002 
+ 00032116  0x00006f8c copy  0x0000003f , 0x00000012 
+ 00032117  0x00006f8e copy  0x00000011 , 0x0000003f 
+ 00032118  0x00006f8f store  0x00000002 , 0x0000090f 
+ 00032119  0x00006f90 copy  0x00000012 , 0x0000003f 
+ 00032120  0x00006f91 store  0x00000001 , 0x00000911 
+ 00032121  0x00006f92 branch  0x00007d7c 
+ 00032122  0x00006f95 arg  0x00000000 , 0x00000007 
+ 00032123  0x00006f96 branch  0x00007dd5 
+ 00032124  0x00006f9b set1  0x00000025 , 0x00000000 
+ 00032125  0x00006f9c bpatch  0x000000db , 0x0000403b 
+ 00032126  0x00006f9d fetch  0x00000001 , 0x00000911 
+ 00032127  0x00006f9e rtn  0x00000034 
+ 00032128  0x00006f9f copy  0x0000003f , 0x00000039 
+ 00032129  0x00006fa0 sub  0x0000003f , 0x00000040 , 0x0000003e 
+ 00032130  0x00006fa1 branch  0x00007d84 , 0x00000002 
+ 00032131  0x00006fa2 arg  0x00000040 , 0x00000039 
+ 00032132  0x00006fa4 fetch  0x00000001 , 0x00000911 
+ 00032133  0x00006fa5 isub  0x00000039 , 0x0000003f 
+ 00032134  0x00006fa6 store  0x00000001 , 0x00000911 
+ 00032135  0x00006fa7 fetch  0x00000002 , 0x0000090f 
+ 00032136  0x00006fa8 copy  0x0000003f , 0x00000006 
+ 00032137  0x00006faa ifetch  0x00000001 , 0x00000006 
+ 00032138  0x00006fab hstore  0x00000001 , 0x00008c18 
+ 00032139  0x00006fac bmark0  0x00000023 , 0x00007d8d 
+ 00032140  0x00006fad hjam  0x00000000 , 0x00008c18 
+ 00032141  0x00006faf loop  0x00007d89 
+ 00032142  0x00006fb0 copy  0x00000006 , 0x0000003f 
+ 00032143  0x00006fb1 store  0x00000002 , 0x0000090f 
+ 00032144  0x00006fb2 arg  0x00000000 , 0x00000007 
+ 00032145  0x00006fb3 call  0x00007dd5 
+ 00032146  0x00006fb4 fetch  0x00000001 , 0x00000911 
+ 00032147  0x00006fb5 nrtn  0x00000034 
+ 00032148  0x00006fb6 fetch  0x00000001 , 0x000008f8 
+ 00032149  0x00006fb7 rtnne  0x00000001 
+ 00032150  0x00006fb8 jam  0x00000002 , 0x000008f8 
+ 00032151  0x00006fb9 rtn 
+ 00032152  0x00006fbd fetch  0x00000001 , 0x00000901 
+ 00032153  0x00006fbe sub  0x0000003f , 0x00000001 , 0x0000003e 
+ 00032154  0x00006fbf nbranch  0x00007d32 , 0x00000002 
+ 00032155  0x00006fc1 fetch  0x00000001 , 0x000008ff 
+ 00032156  0x00006fc2 bne  0x00000000 , 0x00007d32 
+ 00032157  0x00006fc3 fetch  0x00000002 , 0x00000903 
+ 00032158  0x00006fc4 bne  0x00000000 , 0x00007d32 
+ 00032159  0x00006fc5 fetch  0x00000001 , 0x00000905 
+ 00032160  0x00006fc6 bne  0x00000000 , 0x00007d32 
+ 00032161  0x00006fc7 branch  0x00007d34 
+ 00032162  0x00006fca fetch  0x00000001 , 0x000008ff 
+ 00032163  0x00006fcb bne  0x00000001 , 0x00007d32 
+ 00032164  0x00006fcc fetch  0x00000001 , 0x00000901 
+ 00032165  0x00006fcd bne  0x00000000 , 0x00007d32 
+ 00032166  0x00006fce fetch  0x00000001 , 0x00000902 
+ 00032167  0x00006fcf bne  0x00000000 , 0x00007d32 
+ 00032168  0x00006fd0 fetch  0x00000001 , 0x00000905 
+ 00032169  0x00006fd1 bne  0x00000000 , 0x00007d32 
+ 00032170  0x00006fd2 branch  0x00007d34 
+ 00032171  0x00006fd5 fetch  0x00000001 , 0x00000901 
+ 00032172  0x00006fd6 bne  0x00000001 , 0x00007d32 
+ 00032173  0x00006fd7 jam  0x00000003 , 0x000008f8 
+ 00032174  0x00006fd8 branch  0x00007d34 
+ 00032175  0x00006fdb fetch  0x00000001 , 0x00000901 
+ 00032176  0x00006fdc bne  0x00000001 , 0x00007d32 
+ 00032177  0x00006fdd branch  0x00007d34 
+ 00032178  0x00006fe0 set1  0x00000025 , 0x00000000 
+ 00032179  0x00006fe1 bpatch  0x000000dc , 0x0000403b 
+ 00032180  0x00006fe2 hjam  0x00000000 , 0x00008c00 
+ 00032181  0x00006fe3 nop  0x00002710 
+ 00032182  0x00006fe4 hjam  0x000000c0 , 0x00008c10 
+ 00032183  0x00006fe5 hfetch  0x00000002 , 0x00008050 
+ 00032184  0x00006fe6 set0  0x0000000a , 0x0000003f 
+ 00032185  0x00006fe7 hstore  0x00000002 , 0x00008050 
+ 00032186  0x00006fe8 hjam  0x0000003c , 0x00008c00 
+ 00032187  0x00006fe9 hjam  0x000000ff , 0x00008c26 
+ 00032188  0x00006fea hjam  0x000000ff , 0x00008c27 
+ 00032189  0x00006feb jam  0x00000000 , 0x00000ff0 
+ 00032190  0x00006fec jam  0x00000000 , 0x000008f8 
+ 00032191  0x00006fed setarg  0x00000000 
+ 00032192  0x00006fee store  0x00000002 , 0x000008f9 
+ 00032193  0x00006fef rtn 
+ 00032194  0x00006ff3 set1  0x00000025 , 0x00000000 
+ 00032195  0x00006ff4 bpatch  0x000000dd , 0x0000403b 
+ 00032196  0x00006ff5 fetch  0x00000001 , 0x00000ff0 
+ 00032197  0x00006ff6 rtn  0x00000034 
+ 00032198  0x00006ff7 fetch  0x00000001 , 0x000008f8 
+ 00032199  0x00006ff8 beq  0x00000003 , 0x00007dec 
+ 00032200  0x00006ff9 rtnne  0x00000002 
+ 00032201  0x00006ffa fetch  0x00000001 , 0x00000ff0 
+ 00032202  0x00006ffb jam  0x00000000 , 0x00000ff0 
+ 00032203  0x00006ffc arg  0x00000006 , 0x00000039 
+ 00032204  0x00006ffd arg  0x00000ff1 , 0x00000006 
+ 00032205  0x00006ffe beq  0x00000002 , 0x00007dd0 
+ 00032206  0x00006fff beq  0x00000001 , 0x00007de9 
+ 00032207  0x00007000 branch  0x00003bf1 
+ 00032208  0x00007003 arg  0x00008c19 , 0x00000011 
+ 00032209  0x00007004 arg  0x00000001 , 0x00000007 
+ 00032210  0x00007006 ifetch  0x00000001 , 0x00000006 
+ 00032211  0x00007007 istore  0x00000001 , 0x00000011 
+ 00032212  0x00007008 loop  0x00007dd2 
+ 00032213  0x0000700a set1  0x00000025 , 0x00000000 
+ 00032214  0x0000700b bpatch  0x000000de , 0x0000403b 
+ 00032215  0x0000700c disable  0x00000010 
+ 00032216  0x0000700d fetch  0x00000002 , 0x000008fd 
+ 00032217  0x0000700e iforce  0x0000001b 
+ 00032218  0x0000700f hjam  0x00000040 , 0x00008c26 
+ 00032219  0x00007011 hfetch  0x00000001 , 0x00008c26 
+ 00032220  0x00007012 branch  0x00007db2 , 0x00000003 
+ 00032221  0x00007013 bbit0  0x00000006 , 0x00007ddb 
+ 00032222  0x00007014 fetch  0x00000002 , 0x000008fd 
+ 00032223  0x00007015 iforce  0x0000001b 
+ 00032224  0x00007016 arg  0x00000000 , 0x00000002 
+ 00032225  0x00007017 qset1  0x00000002 
+ 00032226  0x00007018 hstoret  0x00000001 , 0x00008c27 
+ 00032227  0x0000701a branch  0x00007db2 , 0x00000003 
+ 00032228  0x0000701b hstoret  0x00000001 , 0x00008c10 
+ 00032229  0x0000701c hfetch  0x00000001 , 0x00008c27 
+ 00032230  0x0000701d qisolate0  0x0000003f 
+ 00032231  0x0000701e branch  0x00007de3 , 0x00000001 
+ 00032232  0x0000701f rtn 
+ 00032233  0x00007023 arg  0x00000002 , 0x00000007 
+ 00032234  0x00007024 arg  0x00008c1a , 0x00000011 
+ 00032235  0x00007025 branch  0x00007dd2 
+ 00032236  0x00007029 set1  0x00000025 , 0x00000000 
+ 00032237  0x0000702a bpatch  0x000000df , 0x0000403b 
+ 00032238  0x0000702b hjam  0x000000fc , 0x00008c00 
+ 00032239  0x0000702c nop  0x00002710 
+ 00032240  0x0000702d hjam  0x0000003c , 0x00008c00 
+ 00032241  0x0000702e jam  0x00000004 , 0x000008f8 
+ 00032242  0x0000702f rtn 
+ 00032243  0x00007032 fetch  0x00000001 , 0x00000ff0 
+ 00032244  0x00007033 nrtn  0x00000034 
+ 00032245  0x00007034 fetch  0x00000002 , 0x000008f2 
+ 00032246  0x00007035 rtn  0x00000034 
+ 00032247  0x00007036 increase  0xffffffff , 0x0000003f 
+ 00032248  0x00007037 store  0x00000002 , 0x000008f2 
+ 00032249  0x00007038 jam  0x00000001 , 0x00000ff0 
+ 00032250  0x00007039 rtn 
+ 00032251  0x0000703d sub  0x00000039 , 0x00000000 , 0x0000003e 
+ 00032252  0x0000703e rtn  0x00000005 
+ 00032253  0x00007040 rshift  0x0000003f , 0x0000003f 
+ 00032254  0x00007041 loop  0x00007dfd 
+ 00032255  0x00007042 rtn 
+ 00032256  0x00007045 deposit  0x00000005 
+ 00032257  0x00007046 store  0x00000002 , 0x000002b9 
+ 00032258  0x00007047 storet  0x00000008 , 0x000002a0 
+ 00032259  0x00007048 deposit  0x0000000b 
+ 00032260  0x00007049 store  0x00000004 , 0x000002a8 
+ 00032261  0x0000704a deposit  0x00000011 
+ 00032262  0x0000704b store  0x00000004 , 0x000002ac 
+ 00032263  0x0000704c deposit  0x00000012 
+ 00032264  0x0000704d store  0x00000004 , 0x000002b0 
+ 00032265  0x0000704e deposit  0x00000013 
+ 00032266  0x0000704f store  0x00000003 , 0x000002b4 
+ 00032267  0x00007050 deposit  0x00000006 
+ 00032268  0x00007051 store  0x00000002 , 0x000002b7 
+ 00032269  0x00007052 rtn 
+ 00032270  0x00007054 fetcht  0x00000008 , 0x000002a0 
+ 00032271  0x00007055 fetch  0x00000004 , 0x000002a8 
+ 00032272  0x00007056 iforce  0x0000000b 
+ 00032273  0x00007057 fetch  0x00000004 , 0x000002ac 
+ 00032274  0x00007058 iforce  0x00000011 
+ 00032275  0x00007059 fetch  0x00000004 , 0x000002b0 
+ 00032276  0x0000705a iforce  0x00000012 
+ 00032277  0x0000705b fetch  0x00000003 , 0x000002b4 
+ 00032278  0x0000705c iforce  0x00000013 
+ 00032279  0x0000705d fetch  0x00000002 , 0x000002b9 
+ 00032280  0x0000705e iforce  0x00000005 
+ 00032281  0x0000705f fetch  0x00000002 , 0x000002b7 
+ 00032282  0x00007060 iforce  0x00000006 
+ 00032283  0x00007061 rtn 
+ 00032284  0x00007068 copy  0x00000005 , 0x0000003f 
+ 00032285  0x00007069 store  0x00000002 , 0x00000b7b 
+ 00032286  0x0000706a copy  0x00000006 , 0x0000003f 
+ 00032287  0x0000706b store  0x00000002 , 0x00000b79 
+ 00032288  0x0000706c rtn 
+ 00032289  0x0000706e fetch  0x00000002 , 0x00000b7b 
+ 00032290  0x0000706f copy  0x0000003f , 0x00000005 
+ 00032291  0x00007070 fetch  0x00000002 , 0x00000b79 
+ 00032292  0x00007071 copy  0x0000003f , 0x00000006 
+ 00032293  0x00007072 rtn 
+ 00032294  0x00007077 copy  0x00000022 , 0x0000003f 
+ 00032295  0x00007078 increase  0x00000010 , 0x0000003f 
+ 00032296  0x00007079 increase  0x00000010 , 0x0000003f 
+ 00032297  0x0000707b copy  0x00000022 , 0x00000002 
+ 00032298  0x0000707c isub  0x00000002 , 0x0000003e 
+ 00032299  0x0000707d branch  0x00007e29 , 0x00000002 
+ 00032300  0x0000707e rtn 
+ 00032301  0x00007081 ifetch  0x00000008 , 0x00000006 
+ 00032302  0x00007082 istore  0x00000008 , 0x00000005 
+ 00032303  0x00007083 ifetch  0x00000008 , 0x00000006 
+ 00032304  0x00007084 istore  0x00000008 , 0x00000005 
+ 00032305  0x00007086 ifetch  0x00000008 , 0x00000006 
+ 00032306  0x00007087 istore  0x00000008 , 0x00000005 
+ 00032307  0x00007089 ifetch  0x00000008 , 0x00000006 
+ 00032308  0x0000708a istore  0x00000008 , 0x00000005 
+ 00032309  0x0000708c ifetch  0x00000008 , 0x00000006 
+ 00032310  0x0000708d istore  0x00000008 , 0x00000005 
+ 00032311  0x0000708e ifetch  0x00000008 , 0x00000006 
+ 00032312  0x0000708f istore  0x00000008 , 0x00000005 
+ 00032313  0x00007090 rtn 
+ 00032314  0x00007093 force  0x00000003 , 0x00000039 
+ 00032315  0x00007095 force  0x00000000 , 0x0000003f 
+ 00032316  0x00007097 istore  0x00000008 , 0x00000005 
+ 00032317  0x00007098 loop  0x00007e3c 
+ 00032318  0x00007099 rtn 
+ 00032319  0x0000709d deposit  0x00000039 
+ 00032320  0x0000709e rtn  0x00000034 
+ 00032321  0x0000709f setarg  0x00000000 
+ 00032322  0x000070a1 istore  0x00000001 , 0x00000005 
+ 00032323  0x000070a2 loop  0x00007e42 
+ 00032324  0x000070a3 rtn 
+ 00032325  0x000070a8 deposit  0x00000039 
+ 00032326  0x000070a9 rtn  0x00000034 
+ 00032327  0x000070ab ifetch  0x00000001 , 0x00000006 
+ 00032328  0x000070ac istore  0x00000001 , 0x00000005 
+ 00032329  0x000070ad loop  0x00007e47 
+ 00032330  0x000070ae rtn 
+ 00032331  0x000070b1 setarg  0x00000000 
+ 00032332  0x000070b3 arg  0x0000423e , 0x00000005 
+ 00032333  0x000070b4 iforce  0x00000002 
+ 00032334  0x000070b5 lshift  0x00000007 , 0x0000003f 
+ 00032335  0x000070b6 iadd  0x00000005 , 0x00000005 
+ 00032336  0x000070b7 istoret  0x00000002 , 0x00000005 
+ 00032337  0x000070b8 rtn 
+ 00032338  0x000070bb arg  0x00000000 , 0x00000007 
+ 00032339  0x000070bd set1  0x00000025 , 0x00000000 
+ 00032340  0x000070be bpatch  0x000000bc , 0x00004037 
+ 00032341  0x000070bf fetcht  0x00000004 , 0x00004134 
+ 00032342  0x000070c0 rshift  0x00000022 , 0x0000003f 
+ 00032343  0x000070c1 store  0x00000004 , 0x00004134 
+ 00032344  0x000070c2 isub  0x00000002 , 0x0000000b 
+ 00032345  0x000070c3 copy  0x0000000b , 0x00000002 
+ 00032346  0x000070c4 arg  0x0000423e , 0x00000006 
+ 00032347  0x000070c5 copy  0x00000006 , 0x00000005 
+ 00032348  0x000070c6 arg  0x00000010 , 0x00000039 
+ 00032349  0x000070c8 ifetch  0x00000002 , 0x00000006 
+ 00032350  0x000070c9 isub  0x00000002 , 0x0000003f 
+ 00032351  0x000070ca branch  0x00007e61 , 0x00000002 
+ 00032352  0x000070cb force  0x00000000 , 0x0000003f 
+ 00032353  0x000070cd istore  0x00000002 , 0x00000005 
+ 00032354  0x000070ce loop  0x00007e5d 
+ 00032355  0x000070cf arg  0x0000423e , 0x00000006 
+ 00032356  0x000070d0 lshift  0x00000007 , 0x0000003f 
+ 00032357  0x000070d1 iadd  0x00000006 , 0x00000006 
+ 00032358  0x000070d2 ifetch  0x00000002 , 0x00000006 
+ 00032359  0x000070d3 rtn 
+ 00032360  0x000070d7 increase  0x00000001 , 0x00000007 
+ 00032361  0x000070d9 increase  0xffffffff , 0x00000007 
+ 00032362  0x000070da rtn  0x00000005 
+ 00032363  0x000070db lshift8  0x0000003f , 0x0000003f 
+ 00032364  0x000070dc branch  0x00007e69 
+ 00032365  0x000070e1 iadd  0x00000002 , 0x00000002 
+ 00032366  0x000070e2 copy  0x00000002 , 0x00000039 
+ 00032367  0x000070e3 setarg  0x00000ea6 
+ 00032368  0x000070e4 isub  0x00000039 , 0x0000003f 
+ 00032369  0x000070e5 rtn  0x00000002 
+ 00032370  0x000070e6 sub  0x0000003f , 0x00000000 , 0x0000003f 
+ 00032371  0x000070e7 rshift16  0x00000002 , 0x00000002 
+ 00032372  0x000070e8 increase  0x00000001 , 0x00000002 
+ 00032373  0x000070e9 lshift16  0x00000002 , 0x00000002 
+ 00032374  0x000070ea ior  0x00000002 , 0x00000002 
+ 00032375  0x000070eb rtn 
+ 00032376  0x000070ee call  0x00007e7a 
+ 00032377  0x000070ef branch  0x00007e84 
+ 00032378  0x000070f3 disable  0x00000028 
+ 00032379  0x000070f4 isub  0x00000002 , 0x0000003f 
+ 00032380  0x000070f5 branch  0x00007e7f , 0x00000002 
+ 00032381  0x000070f6 enable  0x00000028 
+ 00032382  0x000070f7 sub  0x0000003f , 0x00000000 , 0x0000003f 
+ 00032383  0x000070f9 rtnbit0  0x0000000f 
+ 00032384  0x000070fa arg  0xffff0ea6 , 0x00000002 
+ 00032385  0x000070fb iadd  0x00000002 , 0x0000003f 
+ 00032386  0x000070fc set0  0x00000040 , 0x0000003f 
+ 00032387  0x000070fd rtn 
+ 00032388  0x00007100 iforce  0x00000006 
+ 00032389  0x00007101 rshift16  0x0000003f , 0x0000003f 
+ 00032390  0x00007102 arg  0x00000ea6 , 0x00000002 
+ 00032391  0x00007103 imul32  0x00000002 , 0x0000003f 
+ 00032392  0x00007104 iadd  0x00000006 , 0x0000003f 
+ 00032393  0x00007105 rtn 
+ 00032394  0x00007109 lshift8  0x0000003f , 0x0000003f 
+ 00032395  0x0000710a lshift4  0x0000003f , 0x0000003f 
+ 00032396  0x0000710b fetcht  0x00000003 , 0x00004210 
+ 00032397  0x0000710c idiv  0x00000002 
+ 00032398  0x0000710d call  0x00007efd 
+ 00032399  0x0000710e quotient  0x00000002 
+ 00032400  0x0000710f rtn 
+ 00032401  0x00007113 arg  0x00000ea6 , 0x00000002 
+ 00032402  0x00007114 idiv  0x00000002 
+ 00032403  0x00007115 call  0x00007efd 
+ 00032404  0x00007116 quotient  0x0000003f 
+ 00032405  0x00007117 lshift16  0x0000003f , 0x0000003f 
+ 00032406  0x00007118 remainder  0x00000002 
+ 00032407  0x00007119 ior  0x00000002 , 0x00000002 
+ 00032408  0x0000711a rtn 
+ 00032409  0x0000711e arg  0x00000003 , 0x00000039 
+ 00032410  0x0000711f branch  0x00007e9e 
+ 00032411  0x00007121 arg  0x00000002 , 0x00000039 
+ 00032412  0x00007122 branch  0x00007e9e 
+ 00032413  0x00007127 arg  0x00000006 , 0x00000039 
+ 00032414  0x00007129 ifetch  0x00000001 , 0x00000011 
+ 00032415  0x0000712a copy  0x0000003f , 0x00000002 
+ 00032416  0x0000712b rshift4  0x0000003f , 0x0000003f 
+ 00032417  0x0000712c call  0x00007eaa 
+ 00032418  0x0000712d istore  0x00000001 , 0x0000000a 
+ 00032419  0x0000712e copy  0x00000002 , 0x0000003f 
+ 00032420  0x0000712f and  0x0000003f , 0x0000000f , 0x0000003f 
+ 00032421  0x00007130 call  0x00007eaa 
+ 00032422  0x00007131 istore  0x00000001 , 0x0000000a 
+ 00032423  0x00007132 increase  0x00000001 , 0x00000011 
+ 00032424  0x00007133 loop  0x00007e9e 
+ 00032425  0x00007134 rtn 
+ 00032426  0x00007136 sub  0x0000003f , 0x00000009 , 0x0000003e 
+ 00032427  0x00007137 branch  0x00007eae , 0x00000002 
+ 00032428  0x00007138 increase  0x00000057 , 0x0000003f 
+ 00032429  0x00007139 rtn 
+ 00032430  0x0000713b add  0x0000003f , 0x00000030 , 0x0000003f 
+ 00032431  0x0000713c rtn 
+ 00032432  0x00007143 arg  0x00000000 , 0x00000002 
+ 00032433  0x00007145 copy  0x00000002 , 0x00000013 
+ 00032434  0x00007146 ifetch  0x00000001 , 0x00000003 
+ 00032435  0x00007147 sub  0x0000003f , 0x0000002c , 0x0000003e 
+ 00032436  0x00007148 rtn  0x00000005 
+ 00032437  0x00007149 call  0x00007ec9 
+ 00032438  0x0000714a copy  0x00000013 , 0x00000002 
+ 00032439  0x0000714b call  0x00007f32 
+ 00032440  0x0000714c arg  0x0000000a , 0x00000012 
+ 00032441  0x0000714d imul32  0x00000012 , 0x0000003f 
+ 00032442  0x0000714e iadd  0x00000002 , 0x0000003f 
+ 00032443  0x0000714f copy  0x0000003f , 0x00000002 
+ 00032444  0x00007150 branch  0x00007eb1 
+ 00032445  0x00007154 arg  0x00000002 , 0x00000039 
+ 00032446  0x00007155 branch  0x00007ec0 
+ 00032447  0x00007157 arg  0x00000006 , 0x00000039 
+ 00032448  0x0000715c ifetch  0x00000001 , 0x00000003 
+ 00032449  0x0000715d call  0x00007ec9 
+ 00032450  0x0000715e lshift4  0x0000003f , 0x00000013 
+ 00032451  0x0000715f ifetch  0x00000001 , 0x00000003 
+ 00032452  0x00007160 call  0x00007ec9 
+ 00032453  0x00007161 iadd  0x00000013 , 0x0000003f 
+ 00032454  0x00007162 istore  0x00000001 , 0x00000005 
+ 00032455  0x00007163 loop  0x00007ec0 
+ 00032456  0x00007164 rtn 
+ 00032457  0x00007167 arg  0x0000003a , 0x00000002 
+ 00032458  0x00007168 isub  0x00000002 , 0x0000003e 
+ 00032459  0x00007169 nbranch  0x00007ed2 , 0x00000002 
+ 00032460  0x0000716a arg  0x00000061 , 0x00000002 
+ 00032461  0x0000716b isub  0x00000002 , 0x0000003e 
+ 00032462  0x0000716c branch  0x00007ed5 , 0x00000002 
+ 00032463  0x0000716d arg  0x00000037 , 0x00000002 
+ 00032464  0x0000716e isub  0x00000002 , 0x0000003f 
+ 00032465  0x0000716f rtn 
+ 00032466  0x00007171 arg  0x00000030 , 0x00000002 
+ 00032467  0x00007172 isub  0x00000002 , 0x0000003f 
+ 00032468  0x00007173 rtn 
+ 00032469  0x00007175 arg  0x00000057 , 0x00000002 
+ 00032470  0x00007176 isub  0x00000002 , 0x0000003f 
+ 00032471  0x00007177 rtn 
+ 00032472  0x0000717a copy  0x00000002 , 0x00000030 
+ 00032473  0x0000717b setarg  0x000001ff 
+ 00032474  0x0000717c force  0x00000000 , 0x00000012 
+ 00032475  0x0000717e rshift3  0x0000003f , 0x00000011 
+ 00032476  0x0000717f rshift  0x00000011 , 0x00000011 
+ 00032477  0x00007180 ixor  0x00000011 , 0x00000011 
+ 00032478  0x00007181 isolate1  0x00000000 , 0x00000011 
+ 00032479  0x00007182 setflag  0x00000001 , 0x00000009 , 0x0000003f 
+ 00032480  0x00007183 rshift  0x00000002 , 0x00000002 
+ 00032481  0x00007184 isolate1  0x00000000 , 0x0000003f 
+ 00032482  0x00007185 setflag  0x00000001 , 0x00000007 , 0x00000002 
+ 00032483  0x00007186 rshift  0x0000003f , 0x0000003f 
+ 00032484  0x00007187 increase  0x00000001 , 0x00000012 
+ 00032485  0x00007188 compare  0x00000000 , 0x00000012 , 0x00000007 
+ 00032486  0x00007189 nbranch  0x00007edb , 0x00000001 
+ 00032487  0x0000718a istoret  0x00000001 , 0x00000005 
+ 00032488  0x0000718b loop  0x00007edb 
+ 00032489  0x0000718c copy  0x00000030 , 0x00000002 
+ 00032490  0x0000718d rtn 
+ 00032491  0x00007190 div  0x0000003f , 0x0000000a 
+ 00032492  0x00007191 call  0x00007efd 
+ 00032493  0x00007192 quotient  0x0000003f 
+ 00032494  0x00007193 lshift2  0x0000003f , 0x00000011 
+ 00032495  0x00007194 lshift2  0x00000011 , 0x00000011 
+ 00032496  0x00007195 remainder  0x0000003f 
+ 00032497  0x00007196 ior  0x00000011 , 0x0000003f 
+ 00032498  0x00007197 rtn 
+ 00032499  0x0000719a isolate1  0x00000000 , 0x00000011 
+ 00032500  0x0000719b branch  0x00007ef7 , 0x00000001 
+ 00032501  0x0000719c iforce  0x00000012 
+ 00032502  0x0000719d rtn 
+ 00032503  0x0000719f lshift2  0x0000003f , 0x0000003f 
+ 00032504  0x000071a0 lshift2  0x0000003f , 0x0000003f 
+ 00032505  0x000071a1 ior  0x00000012 , 0x0000003f 
+ 00032506  0x000071a2 istore  0x00000001 , 0x00000005 
+ 00032507  0x000071a3 increase  0xfffffffe , 0x00000005 
+ 00032508  0x000071a4 rtn 
+ 00032509  0x000071a7 rtn  0x00000035 
+ 00032510  0x000071a8 branch  0x00007efd 
+ 00032511  0x000071ac store  0x00000008 , 0x00000161 
+ 00032512  0x000071ad force  0x00000020 , 0x0000003f 
+ 00032513  0x000071ae force  0x00000008 , 0x00000039 
+ 00032514  0x000071af arg  0x00000028 , 0x00000005 
+ 00032515  0x000071b1 istore  0x00000001 , 0x00000005 
+ 00032516  0x000071b2 loop  0x00007f03 
+ 00032517  0x000071b3 arg  0x00000028 , 0x00000005 
+ 00032518  0x000071b4 increase  0x00000007 , 0x00000005 
+ 00032519  0x000071b5 fetch  0x00000008 , 0x00000161 
+ 00032520  0x000071b7 div  0x0000003f , 0x0000000a 
+ 00032521  0x000071b8 call  0x00007efd 
+ 00032522  0x000071b9 remainder  0x0000003f 
+ 00032523  0x000071ba or_into  0x00000030 , 0x0000003f 
+ 00032524  0x000071bb istore  0x00000001 , 0x00000005 
+ 00032525  0x000071bc increase  0xfffffffe , 0x00000005 
+ 00032526  0x000071bd quotient  0x0000003f 
+ 00032527  0x000071be rtn  0x00000034 
+ 00032528  0x000071bf branch  0x00007f08 
+ 00032529  0x000071c5 store  0x00000008 , 0x00000161 
+ 00032530  0x000071c6 force  0x00000000 , 0x0000003f 
+ 00032531  0x000071c7 store  0x00000008 , 0x00000028 
+ 00032532  0x000071c8 arg  0x00000028 , 0x00000005 
+ 00032533  0x000071c9 increase  0x00000007 , 0x00000005 
+ 00032534  0x000071ca fetch  0x00000008 , 0x00000161 
+ 00032535  0x000071cb force  0x00000000 , 0x00000011 
+ 00032536  0x000071cd div  0x0000003f , 0x0000000a 
+ 00032537  0x000071ce call  0x00007efd 
+ 00032538  0x000071cf remainder  0x0000003f 
+ 00032539  0x000071d0 call  0x00007ef3 
+ 00032540  0x000071d1 increase  0x00000001 , 0x00000011 
+ 00032541  0x000071d2 quotient  0x0000003f 
+ 00032542  0x000071d3 sub  0x0000003f , 0x00000009 , 0x0000003e 
+ 00032543  0x000071d4 nbranch  0x00007f18 , 0x00000002 
+ 00032544  0x000071d5 call  0x00007ef3 
+ 00032545  0x000071d6 isolate1  0x00000000 , 0x00000011 
+ 00032546  0x000071d7 rtn  0x00000001 
+ 00032547  0x000071d8 istore  0x00000001 , 0x00000005 
+ 00032548  0x000071d9 rtn 
+ 00032549  0x000071e2 ifetch  0x00000001 , 0x00000011 
+ 00032550  0x000071e3 ifetcht  0x00000001 , 0x00000012 
+ 00032551  0x000071e4 isub  0x00000002 , 0x0000003e 
+ 00032552  0x000071e5 nrtn  0x00000005 
+ 00032553  0x000071e6 increase  0x00000001 , 0x00000011 
+ 00032554  0x000071e7 increase  0x00000001 , 0x00000012 
+ 00032555  0x000071e8 loop  0x00007f25 
+ 00032556  0x000071e9 force  0x00000000 , 0x0000003e 
+ 00032557  0x000071ea rtn 
+ 00032558  0x000071ee isub  0x00000002 , 0x0000003e 
+ 00032559  0x000071ef nrtn  0x00000002 
+ 00032560  0x000071f0 deposit  0x00000002 
+ 00032561  0x000071f1 rtn 
+ 00032562  0x000071f4 iadd  0x00000002 , 0x0000003f 
+ 00032563  0x000071f5 isub  0x00000002 , 0x00000002 
+ 00032564  0x000071f6 isub  0x00000002 , 0x0000003f 
+ 00032565  0x000071f7 rtn 
+ 00032566  0x000071fa arg  0x00000200 , 0x00000039 
+ 00032567  0x000071fb arg  0x00004000 , 0x00000005 
+ 00032568  0x000071fc branch  0x00007e3b 
+ 00032569  0x000071ff fetch  0x00000005 , 0x0000009c 
+ 00032570  0x00007200 store  0x00000005 , 0x00000161 
+ 00032571  0x00007201 fetch  0x00000002 , 0x00004210 
+ 00032572  0x00007202 istore  0x00000002 , 0x00000005 
+ 00032573  0x00007203 setarg  0x00000000 
+ 00032574  0x00007204 setflag  0x0000002d , 0x00000007 , 0x0000003f 
+ 00032575  0x00007205 setflag  0x0000002b , 0x00000006 , 0x0000003f 
+ 00032576  0x00007206 setflag  0x00000018 , 0x00000005 , 0x0000003f 
+ 00032577  0x00007207 setflag  0x0000002e , 0x00000004 , 0x0000003f 
+ 00032578  0x00007208 istore  0x00000001 , 0x00000005 
+ 00032579  0x00007209 branch  0x00007f52 
+ 00032580  0x0000720d fetch  0x00000005 , 0x0000009c 
+ 00032581  0x0000720e store  0x00000005 , 0x00000161 
+ 00032582  0x0000720f fetch  0x00000001 , 0x00000016 
+ 00032583  0x00007210 istore  0x00000001 , 0x00000005 
+ 00032584  0x00007211 fetch  0x00000002 , 0x000003da 
+ 00032585  0x00007212 arg  0x00000fff , 0x00000006 
+ 00032586  0x00007213 iand  0x00000006 , 0x0000003f 
+ 00032587  0x00007214 setflag  0x0000002d , 0x0000000f , 0x0000003f 
+ 00032588  0x00007215 setflag  0x0000002b , 0x0000000e , 0x0000003f 
+ 00032589  0x00007216 setflag  0x00000018 , 0x0000000d , 0x0000003f 
+ 00032590  0x00007217 setflag  0x0000002e , 0x0000000c , 0x0000003f 
+ 00032591  0x00007218 istore  0x00000002 , 0x00000005 
+ 00032592  0x00007219 branch  0x00007f52 
+ 00032593  0x0000721b store  0x00000008 , 0x00000161 
+ 00032594  0x0000721d fetch  0x00000001 , 0x0000416e 
+ 00032595  0x0000721e rtneq  0x0000007f 
+ 00032596  0x0000721f and_into  0x0000007f , 0x0000003f 
+ 00032597  0x00007220 lshift3  0x0000003f , 0x0000003f 
+ 00032598  0x00007221 arg  0x00004c00 , 0x00000005 
+ 00032599  0x00007222 iadd  0x00000005 , 0x00000005 
+ 00032600  0x00007223 fetch  0x00000008 , 0x00000161 
+ 00032601  0x00007224 istore  0x00000008 , 0x00000005 
+ 00032602  0x00007225 fetch  0x00000001 , 0x0000416e 
+ 00032603  0x00007226 isolate1  0x00000007 , 0x0000003f 
+ 00032604  0x00007227 increase  0x00000001 , 0x0000003f 
+ 00032605  0x00007228 and_into  0x0000007f , 0x0000003f 
+ 00032606  0x00007229 setflag  0x00000001 , 0x00000007 , 0x0000003f 
+ 00032607  0x0000722a store  0x00000001 , 0x0000416e 
+ 00032608  0x0000722b fetch  0x00000008 , 0x00000161 
+ 00032609  0x0000722c rtn 
+ 00032610  0x0000722f arg  0x00000800 , 0x00000039 
+ 00032611  0x00007230 arg  0x00000000 , 0x00000005 
+ 00032612  0x00007231 setarg  0x01010101 
+ 00032613  0x00007232 branch  0x00007e3c 
+ 00032614  0x00007236 rtn  0x00000034 
+ 00032615  0x00007237 copy  0x0000003f , 0x0000003d 
+ 00032616  0x0000723b hfetch  0x00000002 , 0x0000810e 
+ 00032617  0x0000723c nbranch  0x00007f68 , 0x00000034 
+ 00032618  0x0000723d rtn 
+ 00032619  0x00007240 hfetch  0x00000002 , 0x00008058 
+ 00032620  0x00007241 copy  0x0000003f , 0x00000003 
+ 00032621  0x00007242 rtn 
+ 00032622  0x00007245 hfetch  0x00000002 , 0x0000805e 
+ 00032623  0x00007246 copy  0x0000003f , 0x0000000a 
+ 00032624  0x00007247 rtn 
+ 00032625  0x0000724a copy  0x00000006 , 0x00000011 
+ 00032626  0x0000724b call  0x00007f6e 
+ 00032627  0x0000724c copy  0x00000011 , 0x00000006 
+ 00032628  0x0000724e call  0x00004976 
+ 00032629  0x0000724f call  0x000068fa 
+ 00032630  0x00007250 branch  0x00007f68 
+ 00032631  0x00007253 hjam  0x00000001 , 0x00008203 
+ 00032632  0x00007254 rtn 
+ 00032633  0x00007257 hstore  0x00000002 , 0x00008205 
+ 00032634  0x00007258 hfetch  0x00000001 , 0x00008203 
+ 00032635  0x00007259 set1  0x00000004 , 0x0000003f 
+ 00032636  0x0000725a hstore  0x00000001 , 0x00008203 
+ 00032637  0x0000725b rtn 
+ 00032638  0x0000725d hstore  0x00000002 , 0x00008207 
+ 00032639  0x0000725e hfetch  0x00000001 , 0x00008203 
+ 00032640  0x0000725f set1  0x00000006 , 0x0000003f 
+ 00032641  0x00007260 hstore  0x00000001 , 0x00008203 
+ 00032642  0x00007261 rtn 
+ 00032643  0x00007264 hstore  0x00000002 , 0x00008205 
+ 00032644  0x00007265 hjam  0x00000030 , 0x00008203 
+ 00032645  0x00007266 rtn 
+ 00032646  0x00007269 hfetch  0x00000001 , 0x00008043 
+ 00032647  0x0000726a set1  0x00000004 , 0x0000003f 
+ 00032648  0x0000726b hstore  0x00000001 , 0x00008043 
+ 00032649  0x0000726c rtn 
+ 00032650  0x0000726f hfetch  0x00000001 , 0x00008043 
+ 00032651  0x00007270 set0  0x00000004 , 0x0000003f 
+ 00032652  0x00007271 hstore  0x00000001 , 0x00008043 
+ 00032653  0x00007272 rtn 
+ 00032654  0x00007275 hfetch  0x00000002 , 0x0000810e 
+ 00032655  0x00007276 arg  0x00000200 , 0x00000002 
+ 00032656  0x00007278 isub  0x00000002 , 0x0000003e 
+ 00032657  0x00007279 rtn 
+ 00032658  0x00007280 set1  0x00000025 , 0x00000000 
+ 00032659  0x00007281 bpatch  0x000000bd , 0x00004037 
+ 00032660  0x00007282 ifetcht  0x00000005 , 0x00000011 
+ 00032661  0x00007283 and  0x00000002 , 0x000000ff , 0x0000003f 
+ 00032662  0x00007284 nbranch  0x00007f99 , 0x00000034 
+ 00032663  0x00007285 rshift8  0x00000002 , 0x0000003f 
+ 00032664  0x00007286 istore  0x00000005 , 0x00000011 
+ 00032665  0x00007288 increase  0x00000004 , 0x00000011 
+ 00032666  0x00007289 ifetch  0x00000001 , 0x00000011 
+ 00032667  0x0000728a nbranch  0x00003bf1 , 0x00000034 
+ 00032668  0x0000728b fetch  0x00000001 , 0x00000b7d 
+ 00032669  0x0000728c istore  0x00000001 , 0x00000011 
+ 00032670  0x0000728d rtn 
+ 00032671  0x00007293 set1  0x00000025 , 0x00000000 
+ 00032672  0x00007294 bpatch  0x000000be , 0x00004037 
+ 00032673  0x00007295 arg  0x00000005 , 0x00000039 
+ 00032674  0x00007296 ifetch  0x00000005 , 0x00000011 
+ 00032675  0x00007297 rtn  0x00000034 
+ 00032676  0x00007299 ifetch  0x00000001 , 0x00000011 
+ 00032677  0x0000729a nbranch  0x00007fa9 , 0x00000034 
+ 00032678  0x0000729b increase  0x00000001 , 0x00000011 
+ 00032679  0x0000729c loop  0x00007fa4 
+ 00032680  0x0000729d branch  0x00003bf1 
+ 00032681  0x0000729f arg  0x00000000 , 0x00000002 
+ 00032682  0x000072a0 istoret  0x00000001 , 0x00000011 
+ 00032683  0x000072a1 rtn 
+ 00032684  0x000072a7 ifetch  0x00000005 , 0x00000011 
+ 00032685  0x000072a8 rtn 
+ 00032686  0x000072ae ifetch  0x00000001 , 0x00000011 
+ 00032687  0x000072af rtn 
+ 00032688  0x000072b3 ifetch  0x00000002 , 0x00000011 
+ 00032689  0x000072b4 rtn 
+ 00032690  0x000072b9 arg  0x00000000 , 0x00000002 
+ 00032691  0x000072bb fetch  0x00000001 , 0x00000006 
+ 00032692  0x000072bc loop  0x00007fb3 , 0x00000034 
+ 00032693  0x000072bd increase  0x00000001 , 0x00000002 
+ 00032694  0x000072be loop  0x00007fb3 
+ 00032695  0x000072bf copy  0x00000002 , 0x0000003f 
+ 00032696  0x000072c0 rtn 
+ 00032697  0x000072c3 isub  0x00000002 , 0x0000003e 
+ 00032698  0x000072c4 nrtn  0x00000002 
+ 00032699  0x000072c5 copy  0x00000002 , 0x0000003f 
+ 00032700  0x000072c6 rtn 
Index: btkb/output/bt_program23.list
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/btkb/output/bt_program23.list	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/btkb/output/bt_program23.list	(working copy)
@@ -0,0 +1,25721 @@
+              include "bt_format "
+              org 0x0000
+0x0 000039 bmark1 mark_ext_patch ,patch_ext 
+0x1 000040 beq patch00_0 ,p_soft_reset 
+0x2 000041 beq patch00_3 ,p_main_loop 
+0x3 000042 beq patch00_5 ,p_main_loop_end 
+0x4 000043 beq patch00_6 ,p_connection_incontext 
+0x5 000044 beq patch01_2 ,p_idle_page_mode_r0 
+0x6 000045 beq patch04_7 ,p_role_switch_check 
+0x7 000046 beq patch05_0 ,p_role_switch_prepare0_0 
+0x8 000047 beq patch05_3 ,p_roles_replyto_fhs 
+0x9 000048 beq patch08_2 ,p_slave_loop 
+0xa 000049 beq patch08_3 ,p_slave_notmatch 
+0xb 000050 beq patch0a_0 ,p_prepare_tx_not_sco 
+0xc 000051 beq patch0a_4 ,p_tx_l2cap_type 
+0xd 000052 beq patch06_1 ,p_context_new 
+0xe 000053 beq patch06_3 ,p_context_search 
+0xf 000054 beq patch12_0 ,p_shutdown_radio 
+0x10 000055 beq patch12_2 ,p_set_freq_rx 
+0x11 000056 beq patch12_4 ,p_set_freq_tx 
+0x12 000057 beq patch12_5 ,p_initialize_radio_cont 
+0x13 000058 beq patch16_0 ,p_lpm_sleep 
+0x14 000059 beq patch16_1 ,p_lpm_recover_clk 
+0x15 000060 beq patch16_2 ,p_lpm_dispatch 
+0x16 000061 beq patch16_3 ,p_lpm_dispatch_next 
+0x17 000062 beq patch16_6 ,p_lpm_dispatch_unconn 
+0x18 000063 beq patch17_1 ,p_lpm_cal_xtal_startup 
+0x19 000064 branch assert 
+:      000066 patch_ext:
+0x1a 000067 beq patch23_0 ,p_l2cap_rx_multiplexing 
+0x1b 000068 beq patch23_3 ,p_l2cap_process_one_signal 
+0x1c 000069 beq patch24_3 ,p_ml2cap_call_proc_signal 
+0x1d 000070 beq patch24_4 ,p_l2cap_malloc 
+0x1e 000071 beq patch26_2 ,p_le_init_conn 
+0x1f 000072 beq patch27_3 ,le_slave_unsync + 3 
+0x20 000073 beq patch27_6 ,p_le_enable 
+0x21 000074 beq patch27_7 ,p_le_disable 
+0x22 000075 beq patch29_2 ,p_lerx_nopayload 
+0x23 000076 beq patch29_3 ,p_le_transmit_receive_sifs 
+0x24 000077 beq patch29_4 ,p_le_transmit 
+0x25 000078 beq patch29_6 ,p_le_send_adv_ind 
+0x26 000079 beq patch2a_6 ,p_le_update_param 
+0x27 000080 beq patch2c_1 ,p_le_prepare_tx 
+0x28 000081 beq patch2c_3 ,p_le_prepare_tx_cmd 
+0x29 000082 beq patch2c_4 ,p_le_prepare_smp 
+0x2a 000083 beq patch2c_5 ,p_le_prepare_att 
+0x2b 000084 beq patch2d_1 ,p_le_send_non_l2cap 
+0x2c 000085 beq patch2d_2 ,p_le_parse 
+0x2d 000086 beq patch2d_3 ,p_le_parse_ll 
+0x2e 000087 beq patch2d_6 ,p_le_parse_smp 
+0x2f 000088 beq patch2d_7 ,p_le_parse_att 
+0x30 000089 beq patch30_7 ,p_ui_timer_check 
+0x31 000090 beq patch31_5 ,p_check_51cmd_once 
+0x32 000091 beq patch31_6 ,p_check_51cmd_once_continue 
+0x33 000092 beq patch31_7 ,p_check_enter_hibernate 
+0x34 000093 beq patch37_5 ,p_fifo_in 
+0x35 000094 beq patch39_5 ,p_kb_init 
+0x36 000095 beq patch39_7 ,p_app_process_bb_event 
+0x37 000096 beq patch3a_0 ,p_kb_bb_event_timer 
+0x38 000097 beq patch33_4 ,p_hid_rx_process 
+0x39 000098 beq patch33_7 ,p_scheduler_process_sdp_succ 
+0x3a 000099 beq patch3c_2 ,p_parse_lmp 
+0x3b 000100 beq patch3c_3 ,p_send_lmp 
+0x3c 000101 beq patch3c_6 ,p_process_conn_sm 
+0x3d 000102 branch assert 
+:      000105 p_context_search:
+0x3e 000106 arg mem_context ,rega 
+0x3f 000107 force 1 ,loopcnt 
+0x40 000108 branch context_search_loop 
+:      000110 p_context_new:
+0x41 000111 arg mem_context ,contw 
+0x42 000112 arg 10 ,loopcnt 
+0x43 000113 call memset0 
+0x44 000114 branch context_new + 2 
+:      000117 p_soft_reset:
+0x45 000118 hfetch 1 ,0x813b 
+0x46 000119 store 1 ,mem_wakup_from_power_flag 
+0x47 000120 hjam lock_otp ,core_misc_ctrl 
+0x48 000121 branch soft_reset + 2 
+:      000125 p_main_loop:
+0x49 000126 call p_ipc_timer_check 
+0x4a 000127 call p_ui_check_timer_setup 
+0x4b 000128 call p_ipc_rx 
+0x4c 000129 call p_bt_status_handle 
+0x4d 000130 branch main_loop + 2 
+:      000132 p_bt_status_handle:
+0x4e 000133 fetcht 2 ,mem_ui_state_map 
+0x4f 000134 fetch 1 ,mem_le_adv_enable 
+0x50 000135 nsetflag blank ,ui_state_ble_adv ,temp 
+0x51 000136 fetch 1 ,mem_scan_mode 
+0x52 000137 nsetflag blank ,ui_state_bt_discovery ,temp 
+0x53 000138 storet 2 ,mem_ui_state_map 
+0x54 000139 rtn 
+:      000141 p_main_loop_end:
+0x55 000142 call inquiry_scan_dispatch 
+0x56 000143 call page_scan_dispatch 
+0x57 000144 call connection_dispatch 
+0x58 000145 call p_g24_dispatch 
+0x59 000146 branch main_loop + 15 
+:      000149 p_ipc_rx:
+0x5a 000150 fetch 1 ,mem_ssp_enable 
+0x5b 000151 branch p_ipc_rx0 ,blank 
+0x5c 000152 fetch 1 ,mem_sp_local_key_invalid 
+0x5d 000153 rtn blank 
+:      000154 p_ipc_rx0:
+0x5e 000155 call p_check_ipc_2bt 
+0x5f 000156 rtn user 
+0x60 000157 byteswap pdata ,pdata 
+0x61 000158 copy pdata ,contr 
+0x62 000159 call p_ipc_rx_byte 
+0x63 000160 store 1 ,mem_ipc_rx_type 
+0x64 000161 beq ipc_type_cmd ,p_ipc_rx_cmd 
+0x65 000162 beq ipc_type_24g ,p_ipc_rx_24g 
+0x66 000163 copy pdata ,temp 
+0x67 000164 copy contr ,rega 
+0x68 000165 fetch 1 ,mem_context 
+0x69 000166 bbit0 state_inconn ,p_ipc_abondon_rx_data 
+0x6a 000167 copy rega ,contr 
+0x6b 000168 rtnmark0 mark_context 
+0x6c 000169 copy temp ,pdata 
+0x6d 000170 beq ipc_type_hid ,p_ipc_rx_hid 
+0x6e 000171 beq ipc_type_ble ,p_ipc_rx_ble 
+0x6f 000172 branch assert 
+:      000174 p_ipc_abondon_rx_data:
+0x70 000175 copy rega ,contr 
+0x71 000176 arg mem_tst_pktcnt_sync ,contw 
+0x72 000177 branch p_ipc_rx_cpy 
+:      000179 p_ipc_rx_cmd:
+0x73 000180 call p_ipc_rx_byte 
+0x74 000181 call p_ipc_rx_byte 
+0x75 000182 store 1 ,mem_fifo_temp 
+0x76 000183 call p_ipc_next_rx 
+0x77 000184 branch ui_ipc_send_cmd 
+:      000185 p_ipc_next_rx:
+0x78 000186 call p_ipc_rx_updata_contr 
+0x79 000187 copy contr ,temp 
+0x7a 000188 byteswap temp ,temp 
+0x7b 000189 storet 2 ,mem_ipc_2bt_read_index 
+0x7c 000190 rtn 
+:      000192 p_ipc_rx_24g:
+0x7d 000193 arg mem_24g_txbuf_new ,contw 
+0x7e 000194 branch p_ipc_rx_cpy 
+:      000196 p_ipc_rx_hid:
+0x7f 000197 call p_ipc_rx_byte 
+0x80 000198 copy pdata ,rega 
+0x81 000199 copy contr ,pdata 
+0x82 000200 store 2 ,mem_contr 
+0x83 000201 call l2cap_malloc_is_fifo_nearly_full 
+0x84 000202 nbranch p_ipc_rx_hid0 ,blank 
+0x85 000203 increase 1 ,rega 
+0x86 000204 call hid_malloc_tx_buff 
+0x87 000205 branch p_ipc_rx_hid1 
+:      000206 p_ipc_rx_hid0:
+0x88 000207 arg mem_uart_packet ,contw 
+0x89 000208 copy rega ,loopcnt 
+0x8a 000209 fetch 2 ,mem_contr 
+0x8b 000210 copy pdata ,contr 
+0x8c 000211 branch p_ipc_copy 
+:      000213 p_ipc_rx_hid1:
+0x8d 000214 add contw ,-2 ,regb 
+0x8e 000215 fetch 2 ,mem_hid_int_remote_cid 
+0x8f 000216 istore 2 ,contw 
+0x90 000217 setarg 0xa1 
+0x91 000218 istore 1 ,contw 
+0x92 000219 add rega ,-1 ,loopcnt 
+0x93 000220 fetch 2 ,mem_contr 
+0x94 000221 copy pdata ,contr 
+0x95 000222 call p_ipc_copy 
+0x96 000223 copy regb ,contr 
+0x97 000224 ifetch 2 ,contr 
+0x98 000225 store 2 ,mem_kb_last_data 
+0x99 000226 add pdata ,2 ,loopcnt 
+0x9a 000227 call memcpy 
+0x9b 000228 jam 100 ,mem_kb_wake_timer 
+0x9c 000229 rtn 
+:      000230 p_ipc_rx_ble:
+0x9d 000231 copy contr ,rega 
+:      000232 p_ipc_rx_ble_read_fifo:
+0x9e 000233 fetch 1 ,mem_queue_write 
+0x9f 000234 add pdata ,1 ,temp 
+0xa0 000235 and temp ,0x03 ,temp 
+0xa1 000236 storet 1 ,mem_queue_write 
+0xa2 000237 mul32 pdata ,7 ,pdata 
+0xa3 000238 arg mem_uart_packet ,contw 
+0xa4 000239 iadd contw ,contw 
+0xa5 000241 copy rega ,contr 
+0xa6 000242 call p_ipc_rx_byte 
+0xa7 000243 copy contr ,rega 
+0xa8 000244 increase -1 ,pdata 
+0xa9 000245 copy pdata ,loopcnt 
+0xaa 000246 increase 7 ,pdata 
+0xab 000247 store 1 ,mem_le51_tx_length 
+0xac 000248 copy rega ,contr 
+0xad 000249 call p_ipc_rx_byte 
+0xae 000250 copy contr ,rega 
+0xaf 000251 beq 01 ,p_report1 
+0xb0 000252 beq 02 ,p_report2 
+0xb1 000253 beq 03 ,p_report3 
+0xb2 000254 beq 04 ,p_report4 
+0xb3 000255 beq 06 ,p_report6 
+0xb4 000256 beq 08 ,p_report8 
+:      000257 p_report1:
+0xb5 000258 fetch 2 ,mem_att_report_standard_key 
+:      000259 p_set_report:
+0xb6 000260 istore 2 ,contw 
+0xb7 000261 copy rega ,contr 
+0xb8 000262 call p_ipc_copy 
+0xb9 000263 call le_xtype_fifo_is_near_full 
+0xba 000264 nrtn blank 
+0xbb 000265 jam attop_handle_value_notification ,mem_fifo_temp 
+0xbc 000266 branch le_xtype_fifo_in 
+:      000268 p_report2:
+0xbd 000269 fetch 2 ,mem_att_report_media_key 
+0xbe 000270 branch p_set_report 
+:      000271 p_report3:
+0xbf 000272 fetch 2 ,mem_att_report_system_ctrl 
+0xc0 000273 branch p_set_report 
+:      000274 p_report6:
+0xc1 000275 fetch 2 ,mem_att_report_game 
+0xc2 000276 branch p_set_report 
+:      000277 p_report8:
+0xc3 000278 fetch 2 ,mem_att_report_game 
+0xc4 000279 branch p_set_report 
+:      000282 p_report4:
+0xc5 000283 fetch 2 ,mem_att_report_battery 
+0xc6 000284 istore 2 ,contw 
+0xc7 000285 copy rega ,contr 
+0xc8 000286 branch p_ipc_copy 
+:      000290 p_ui_check_timer_setup:
+0xc9 000291 fetcht 4 ,mem_ui_check_timer_setup 
+0xca 000292 copy clkn_bt ,pdata 
+0xcb 000293 isub temp ,pdata 
+0xcc 000294 fetcht 2 ,mem_customize_timer_setup 
+0xcd 000295 idiv temp 
+0xce 000296 call wait_div_end 
+0xcf 000297 quotient pdata 
+0xd0 000298 rtn blank 
+0xd1 000299 copy clkn_bt ,temp 
+0xd2 000300 storet 4 ,mem_ui_check_timer_setup 
+0xd3 000301 fetch 1 ,mem_customize_timer 
+0xd4 000302 increase 1 ,pdata 
+0xd5 000303 store 1 ,mem_customize_timer 
+0xd6 000304 rtn 
+:      000309 p_ipc_timer_check:
+0xd7 000310 fetcht 4 ,mem_ipc_last_check_timer 
+0xd8 000311 copy clkn_bt ,pdata 
+0xd9 000312 isub temp ,pdata 
+0xda 000314 arg 1600 ,temp 
+0xdb 000315 idiv temp 
+0xdc 000316 call wait_div_end 
+0xdd 000317 quotient pdata 
+0xde 000318 rtn blank 
+0xdf 000319 copy clkn_bt ,temp 
+0xe0 000320 storet 4 ,mem_ipc_last_check_timer 
+0xe1 000321 fetcht 2 ,mem_ipc_bt_timer 
+0xe2 000322 byteswap temp ,temp 
+0xe3 000323 iadd temp ,pdata 
+0xe4 000324 byteswap pdata ,pdata 
+0xe5 000325 store 2 ,mem_ipc_bt_timer 
+0xe6 000326 byteswap pdata ,pdata 
+0xe7 000327 and pdata ,0x3 ,pdata 
+0xe8 000328 rtnne 0 
+:      000329 p_adc_check_hvin:
+0xe9 000330 hjam 0xaf ,rf_adc_mode 
+:      000331 p_read_adc:
+0xea 000332 hfetch 1 ,core_uart_baud + 1 
+0xeb 000333 set1 7 ,pdata 
+0xec 000334 hstore 1 ,core_uart_baud + 1 
+0xed 000335 hfetch 1 ,rf_adc_ch 
+0xee 000336 or_into 0x30 ,pdata 
+0xef 000337 hstore 1 ,rf_adc_ch 
+0xf0 000338 hjam 0x74 ,rfen_adc 
+0xf1 000339 hjam 0x7c ,rfen_adc 
+0xf2 000340 hjam 0xaa ,rf_adc_gc 
+0xf3 000341 nop 5000 
+0xf4 000342 hfetcht 2 ,core_adc_sum 
+0xf5 000343 hfetch 1 ,core_uart_baud + 1 
+0xf6 000344 set0 7 ,pdata 
+0xf7 000345 hstore 1 ,core_uart_baud + 1 
+0xf8 000346 byteswap temp ,temp 
+0xf9 000347 storet 2 ,mem_adc_current_value 
+0xfa 000348 rtn 
+:      000350 p_ipc_rx_cpy:
+0xfb 000351 call p_ipc_rx_byte 
+0xfc 000352 copy pdata ,loopcnt 
+:      000353 p_ipc_copy:
+0xfd 000354 call p_ipc_cpy_loop 
+0xfe 000355 branch p_ipc_next_rx 
+:      000357 p_ipc_cpy_loop:
+0xff 000358 call p_ipc_rx_byte 
+0x100 000359 istore 1 ,contw 
+0x101 000360 loop p_ipc_cpy_loop 
+0x102 000361 rtn 
+:      000363 p_ipc_rx_byte:
+0x103 000364 call p_ipc_rx_updata_contr 
+0x104 000365 ifetch 1 ,contr 
+0x105 000366 rtn 
+:      000368 p_ipc_rx_updata_contr:
+0x106 000369 setarg mem_ipc_2bt_fifo_end 
+0x107 000370 isub contr ,null 
+0x108 000371 nrtn zero 
+0x109 000372 arg mem_ipc_2bt_fifo_head ,contr 
+0x10a 000373 rtn 
+:      000375 p_ipc_tx_evt:
+0x10b 000376 arg 3 ,loopcnt 
+0x10c 000377 arg mem_ipc_tx_evt_buff ,contr 
+:      000378 p_ipc_tx_cpy:
+0x10d 000379 copy contr ,rega 
+0x10e 000380 fetch 2 ,mem_ipc_2c51_write_index 
+0x10f 000381 byteswap pdata ,pdata 
+0x110 000382 copy pdata ,contw 
+0x111 000383 copy rega ,contr 
+:      000384 p_ipc_tx_loop:
+0x112 000385 ifetch 1 ,contr 
+0x113 000386 istore 1 ,contw 
+0x114 000387 call p_ipc_tx_updata_contw 
+0x115 000388 loop p_ipc_tx_loop 
+0x116 000389 copy contw ,pdata 
+0x117 000390 byteswap pdata ,pdata 
+0x118 000391 store 2 ,mem_ipc_2c51_write_index 
+0x119 000392 rtn 
+:      000393 p_ipc_tx_updata_contw:
+0x11a 000394 setarg mem_ipc_2c51_fifo_end 
+0x11b 000395 isub contw ,null 
+0x11c 000396 nrtn zero 
+0x11d 000397 arg mem_ipc_2c51_fifo_head ,contw 
+0x11e 000398 rtn 
+:      000401 p_check_ipc_2c51:
+0x11f 000402 fetch 2 ,mem_ipc_2c51_read_index 
+0x120 000403 fetcht 2 ,mem_ipc_2c51_write_index 
+0x121 000404 branch p_check_ipc_common 
+:      000405 p_check_ipc_2bt:
+0x122 000406 fetch 2 ,mem_ipc_2bt_read_index 
+0x123 000407 fetcht 2 ,mem_ipc_2bt_write_index 
+:      000408 p_check_ipc_common:
+0x124 000409 isub temp ,null 
+0x125 000410 branch enable_usr ,zero 
+0x126 000411 branch disable_usr 
+:      000414 p_ui_timer_check:
+0x127 000415 copy clkn_bt ,pdata 
+0x128 000416 store 4 ,mem_ui_timer_last_btclk_temp 
+0x129 000417 fetcht 1 ,mem_ui_timer_last_btclk + 3 
+0x12a 000418 fetch 1 ,mem_ui_timer_last_btclk_temp + 3 
+0x12b 000419 isub temp ,null 
+0x12c 000420 ncall p_ui_timer_reinit ,positive 
+0x12d 000421 branch ui_timer_check + 2 
+:      000423 p_ui_timer_reinit:
+0x12e 000424 fetcht 4 ,mem_ui_timer_last_btclk_temp 
+0x12f 000425 storet 4 ,mem_ui_timer_last_btclk 
+0x130 000426 storet 4 ,mem_ipc_last_check_timer 
+0x131 000427 storet 4 ,mem_ui_check_timer_setup 
+0x132 000428 rtn 
+:      000431 p_app_process_bb_event:
+0x133 000432 arg mem_ipc_fifo_bt2c51 ,rega 
+0x134 000433 call fifo_out 
+0x135 000434 rtn blank 
+0x136 000436 copy pdata ,regc 
+0x137 000437 call p_app_event_normal_process 
+0x138 000438 branch app_process_bb_event_priority 
+:      000439 p_app_event_normal_process:
+0x139 000440 rtneq bt_evt_linkkey_generate 
+0x13a 000441 beq bt_evt_le_connected ,scale_process_le_conn 
+0x13b 000442 beq bt_evt_le_disconnected ,scale_process_le_discon 
+0x13c 000443 beq bt_evt_hid_connected ,mouse_bt_hid_connected 
+0x13d 000444 beq bt_evt_bb_disconnected ,p_app_bb_event_bb_disconn 
+0x13e 000445 branch app_event_normal_process 
+:      000447 p_app_bb_event_bb_disconn:
+0x13f 000448 jam 0 ,mem_unsniff2sniff_timer_count 
+0x140 000449 fetch 2 ,mem_ui_state_map 
+0x141 000450 bbit1 ui_state_bt_reconnect ,app_bb_event_bb_reconn_disconn 
+0x142 000451 isolate0 ui_state_bt_setup_complete ,pdata 
+0x143 000452 call p_app_discard_event ,true 
+0x144 000453 branch app_bb_event_bb_reconn_disconn 
+:      000456 p_app_discard_event:
+0x145 000457 fetch 1 ,mem_pincode_state 
+0x146 000458 rtneq pincode_state_pincode_ready 
+0x147 000459 branch app_discard_event 
+:      000463 p_kb_bb_event_timer:
+0x148 000464 storet 1 ,mem_app_evt_timer_count 
+0x149 000465 fetch 1 ,mem_ipc_bt_100ms_timer 
+0x14a 000466 increase 1 ,pdata 
+0x14b 000467 store 1 ,mem_ipc_bt_100ms_timer 
+:      000468 p_kb_bb_event_100ms_loop:
+0x14c 000469 fetch 1 ,mem_app_evt_timer_count 
+0x14d 000470 rtn blank 
+0x14e 000471 increase -1 ,pdata 
+0x14f 000472 store 1 ,mem_app_evt_timer_count 
+0x150 000473 call p_kb_check_hid_handshake_timer 
+0x151 000474 call p_kb_long_sleep_timer 
+0x152 000475 call p_kb_wake_remote_dev 
+0x153 000476 branch p_kb_bb_event_100ms_loop 
+:      000478 p_kb_wake_remote_dev:
+0x154 000479 fetch 1 ,mem_suspend_flag 
+0x155 000480 nrtn blank 
+0x156 000481 fetch 1 ,mem_kb_wake_timer 
+0x157 000482 rtn blank 
+0x158 000483 increase -1 ,pdata 
+0x159 000484 store 1 ,mem_kb_wake_timer 
+0x15a 000485 rtnne 1 
+0x15b 000486 jam 100 ,mem_kb_wake_timer 
+0x15c 000489 fetch 2 ,mem_ui_state_map 
+0x15d 000491 rtnbit0 ui_state_bt_sniff 
+0x15e 000492 fetch 2 ,mem_kb_last_data 
+0x15f 000493 rtn blank 
+0x160 000494 call l2cap_malloc_is_fifo_empty 
+0x161 000495 nrtn blank 
+0x162 000496 fetch 2 ,mem_kb_last_data 
+0x163 000497 copy pdata ,rega 
+0x164 000498 call hid_malloc_tx_buff 
+0x165 000499 add rega ,2 ,loopcnt 
+0x166 000500 arg mem_kb_last_data + 2 ,contr 
+0x167 000501 branch memcpy 
+:      000503 p_kb_check_hid_handshake_timer:
+0x168 000504 fetch 1 ,mem_hid_handshake_timer_count 
+0x169 000505 rtn blank 
+0x16a 000506 increase -1 ,pdata 
+0x16b 000507 store 1 ,mem_hid_handshake_timer_count 
+0x16c 000508 nrtn blank 
+0x16d 000509 call app_evt_hid_handshake 
+0x16e 000510 branch hid_handshake_event 
+:      000512 p_kb_long_sleep_timer:
+0x16f 000513 fetch 1 ,mem_24g_enter_lpm_timer 
+0x170 000514 rtn blank 
+0x171 000515 increase -1 ,pdata 
+0x172 000516 store 1 ,mem_24g_enter_lpm_timer 
+0x173 000517 rtn 
+:      000520 p_c51_user_event:
+0x174 000521 copy regc ,pdata 
+0x175 000522 and_into bt_evt_timer_mask ,pdata 
+0x176 000523 rtneq bt_evt_timer_init 
+0x177 000524 call p_c51_ext_evt 
+0x178 000525 copy regc ,pdata 
+0x179 000526 rtn blank 
+0x17a 000527 store 1 ,mem_ipc_tx_evt 
+0x17b 000528 branch p_ipc_tx_evt 
+:      000529 p_c51_ext_evt:
+0x17c 000530 copy regc ,pdata 
+0x17d 000531 beq bt_evt_enter_sniff ,p_kb_wake_enable 
+0x17e 000532 beq bt_evt_bb_disconnected ,p_bk_wake_disable 
+0x17f 000533 rtn 
+:      000534 p_kb_wake_enable:
+0x180 000535 jam 40 ,mem_kb_wake_timer 
+0x181 000536 setarg 0x0a 
+0x182 000537 store 2 ,mem_kb_last_data 
+0x183 000538 fetch 2 ,mem_hid_int_remote_cid 
+0x184 000539 istore 2 ,contw 
+0x185 000540 setarg 0x01a1 
+0x186 000541 istore 2 ,contw 
+0x187 000542 rtn 
+:      000543 p_bk_wake_disable:
+0x188 000544 jam 0 ,mem_kb_wake_timer 
+0x189 000545 arg 20 ,loopcnt 
+0x18a 000546 arg mem_kb_last_data ,contw 
+0x18b 000547 branch clear_mem 
+:      000556 p_lpm_recover_clk:
+0x18c 000557 jam 0x7f ,mem_seqi 
+0x18d 000558 call lpm_recover_clk + 2 
+0x18e 000559 fetch 1 ,mem_hibernate_flag 
+0x18f 000560 rtn blank 
+0x190 000561 jam 0 ,mem_hibernate_flag 
+0x191 000562 copy clkn_bt ,pdata 
+0x192 000563 store 4 ,mem_ipc_last_check_timer 
+0x193 000564 rtn 
+:      000568 p_lpm_cal_xtal_startup:
+0x194 000569 fetch 1 ,mem_lpm_xtalcnt 
+0x195 000570 nrtn blank 
+0x196 000571 hjam clksel_rc ,core_clksel 
+0x197 000572 setarg 0xf0c 
+0x198 000573 call lpm_write_config 
+0x199 000574 setarg 200000 
+0x19a 000575 call sleep 
+0x19b 000576 until null ,lpo_edge 
+0x19c 000577 copy lpo_time ,alarm 
+0x19d 000578 call xtal_fast_wake 
+0x19e 000579 nop 5000 
+0x19f 000580 branch lpm_cal_xtal_startup + 12 
+:      000583 p_lpm_dispatch:
+0x1a0 000584 rtnmark1 mark_24g 
+0x1a1 000585 fetch 2 ,mem_ui_state_map 
+0x1a2 000586 bbit1 ui_state_ble_connected ,lpm_dispatch + 2 
+0x1a3 000587 call lpo_calibration 
+0x1a4 000588 fetch 3 ,mem_clks_per_lpo 
+0x1a5 000589 rtn blank 
+0x1a6 000592 fetch 1 ,mem_lpm_mode 
+0x1a7 000593 rtn blank 
+0x1a8 000595 call l2cap_malloc_is_fifo_empty 
+0x1a9 000596 nrtn blank 
+0x1aa 000597 call lpm_check_wake_lock 
+0x1ab 000598 nrtn blank 
+0x1ac 000599 call xtal_fast_wake 
+0x1ad 000600 fetch 1 ,mem_ssp_enable 
+0x1ae 000601 branch lpm_dispatch0 ,blank 
+0x1af 000602 fetch 1 ,mem_sp_local_key_invalid 
+0x1b0 000603 rtn blank 
+0x1b1 000604 branch lpm_dispatch0 
+:      000606 p_check_ipc_for_lpm:
+0x1b2 000607 call p_check_ipc_2bt 
+0x1b3 000608 nrtn user 
+0x1b4 000609 call p_check_ipc_2c51 
+0x1b5 000610 nrtn user 
+0x1b6 000611 jam 1 ,mem_c51_lpm_lock 
+0x1b7 000612 jam syc_task_lpm ,mem_c51_flag 
+0x1b8 000613 call p_c51_wait 
+0x1b9 000614 branch p_check_ipc_2bt 
+:      000616 p_lpm_dispatch_next:
+0x1ba 000617 call p_check_ipc_for_lpm 
+0x1bb 000618 nrtn user 
+0x1bc 000619 fetch 1 ,mem_c51_lpm_lock 
+0x1bd 000620 nrtn blank 
+0x1be 000621 branch lpm_dispatch1 
+:      000623 p_c51_wait:
+0x1bf 000624 fetch 1 ,mem_c51_flag 
+0x1c0 000625 nop 10 
+0x1c1 000626 bne 0 ,p_c51_wait 
+0x1c2 000627 rtn 
+:      000630 p_lpm_dispatch_unconn:
+0x1c3 000631 call p_check_ipc_for_lpm 
+0x1c4 000632 nrtn user 
+0x1c5 000633 fetch 1 ,mem_c51_lpm_lock 
+0x1c6 000634 nrtn blank 
+0x1c7 000635 branch lpm_dispatch_unconn + 2 
+:      000639 p_initialize_radio_cont:
+0x1c8 000640 call p_switchto_dpllclk 
+0x1c9 000641 branch initialize_radio_cont + 4 
+:      000642 p_switchto_dpllclk:
+0x1ca 000643 fetch 1 ,mem_lpm_xtalcnt 
+0x1cb 000644 nbranch p_switchdpll_nocal ,blank 
+0x1cc 000645 call lpm_cal_xtal_startup 
+0x1cd 000646 nop 30000 
+0x1ce 000647 nop 30000 
+0x1cf 000648 nop 30000 
+:      000649 p_switchdpll_nocal:
+0x1d0 000650 call switchto_dpllclk 
+0x1d1 000651 hjam clksel_xtal ,core_clksel 
+0x1d2 000652 hfetch 1 ,rf_clkpll_frac + 2 
+0x1d3 000653 and_into 0xcf ,pdata 
+0x1d4 000654 hstore 1 ,rf_clkpll_frac + 2 
+0x1d5 000655 or_into 0x30 ,pdata 
+0x1d6 000656 hstore 1 ,rf_clkpll_frac + 2 
+0x1d7 000657 rtn 
+:      000661 p_set_freq_rx:
+0x1d8 000662 storet 1 ,mem_last_freq 
+0x1d9 000663 add temp ,rx_freq_offset ,rega 
+0x1da 000664 branch set_freq_rx + 4 
+:      000666 p_set_freq_tx_common:
+0x1db 000667 storet 1 ,mem_last_freq 
+0x1dc 000668 add temp ,0 ,rega 
+0x1dd 000669 branch rf_write_freq 
+:      000671 p_set_freq_tx:
+0x1de 000672 call p_set_freq_tx_common 
+0x1df 000673 setarg param_pll_setup 
+0x1e0 000674 call sleep 
+:      000675 p_txon:
+0x1e1 000676 hjam 0x1 ,rfen_adc 
+0x1e2 000677 hjam 0x3c ,rfen_rx 
+0x1e3 000678 hjam 0xe0 ,rfen_tx 
+0x1e4 000679 hjam 0x12 ,0x96d 
+0x1e5 000680 nop 10 
+0x1e6 000681 hjam 0x01 ,rfen_mdm 
+0x1e7 000682 hjam 0x3d ,rfen_mdm 
+0x1e8 000683 nop 10 
+0x1e9 000684 hjam 0xb7 ,rfen_sn 
+0x1ea 000685 nop 10 
+0x1eb 000686 hjam 0x7d ,rfen_mdm 
+0x1ec 000687 fetch 1 ,mem_24g_pairing_sm 
+0x1ed 000688 bne state_24g_pairing_success ,p_txpower_0dbm 
+0x1ee 000689 fetch 5 ,mem_5db_tx_power_param 
+0x1ef 000690 istore 5 ,contw 
+0x1f0 000691 ifetch 5 ,contr 
+0x1f1 000692 istore 5 ,contw 
+0x1f2 000693 hjam 0xdf ,0x956 
+0x1f3 000694 call p_set_tx_step_power 
+0x1f4 000695 hjam 0xdf ,0x955 
+0x1f5 000696 rtn 
+:      000698 p_txpower_0dbm:
+0x1f6 000699 fetch 5 ,mem_24g_paring_tx_power_param 
+0x1f7 000700 istore 5 ,contw 
+0x1f8 000701 ifetch 5 ,contr 
+0x1f9 000702 istore 5 ,contw 
+0x1fa 000703 hjam 0xc2 ,0x956 
+0x1fb 000704 hjam 0xd0 ,0x955 
+0x1fc 000705 rtn 
+:      000710 p_set_tx_step_power:
+0x1fd 000712 nop 4 
+0x1fe 000713 hjam 0xd1 ,0x955 
+0x1ff 000714 nop 4 
+0x200 000715 hjam 0xd2 ,0x955 
+0x201 000716 nop 4 
+0x202 000717 hjam 0xd4 ,0x955 
+0x203 000718 nop 4 
+0x204 000721 rtn 
+:      000723 p_tx_ramp_down_common:
+0x205 000724 hjam 0xd4 ,0x955 
+0x206 000725 nop 4 
+0x207 000726 hjam 0xd2 ,0x955 
+0x208 000727 nop 4 
+0x209 000728 hjam 0xd1 ,0x955 
+0x20a 000729 nop 4 
+0x20b 000730 hjam 0xd0 ,0x955 
+0x20c 000731 hjam 0xc0 ,0x956 
+0x20d 000732 rtn 
+:      000734 p_shutdown_radio:
+0x20e 000735 branch shutdown_radio + 2 ,is_rx 
+0x20f 000736 call p_tx_ramp_down_common 
+0x210 000737 branch shutdown_radio + 2 
+:      000739 p_kb_send_process:
+0x211 000740 call l2cap_malloc_is_fifo_nearly_full 
+0x212 000741 nrtn blank 
+0x213 000742 branch p_ipc_rx 
+:      000744 p_kb_before_hibernate:
+0x214 000745 enable user 
+0x215 000746 hfetch 4 ,0x8138 
+0x216 000747 setflag user ,26 ,pdata 
+0x217 000748 hstore 4 ,core_lpm_reg 
+0x218 000749 call lpm_write_ctrl 
+0x219 000750 jam 1 ,mem_lpm_current_mult 
+:      000751 p_kb_bt_lpm_before:
+0x21a 000752 rtn 
+:      000754 p_kb_init:
+0x21b 000755 fetch 1 ,mem_le_name_len 
+0x21c 000756 increase 2 ,pdata 
+0x21d 000757 store 1 ,mem_le_scan_data_len 
+0x21e 000758 jam 0 ,mem_c51_flag 
+0x21f 000759 jam 6 ,mem_connection_options 
+0x220 000760 call app_lpm_mult_enable 
+0x221 000761 setarg p_kb_send_process 
+0x222 000762 store 2 ,mem_cb_bt_process 
+0x223 000763 setarg p_kb_bt_lpm_before 
+0x224 000764 store 2 ,mem_cb_before_lpm 
+0x225 000765 setarg p_c51_user_event 
+0x226 000766 store 2 ,mem_cb_bb_event_process 
+0x227 000767 setarg p_mouse_idle 
+0x228 000768 store 2 ,mem_cb_idle_process 
+0x229 000769 setarg p_ipc_rx 
+0x22a 000770 store 2 ,mem_cb_le_process 
+0x22b 000771 setarg p_kb_before_hibernate 
+0x22c 000772 store 2 ,mem_cb_before_hibernate 
+0x22d 000773 setarg mem_ipc_2bt_fifo_head 
+0x22e 000774 byteswap pdata ,pdata 
+0x22f 000775 store 2 ,mem_ipc_2bt_read_index 
+0x230 000776 store 2 ,mem_ipc_2bt_write_index 
+0x231 000777 call lpm_disable_exen_output 
+0x232 000778 setarg mem_ipc_2c51_fifo_head 
+0x233 000779 byteswap pdata ,pdata 
+0x234 000780 store 2 ,mem_ipc_2c51_read_index 
+0x235 000781 store 2 ,mem_ipc_2c51_write_index 
+0x236 000782 fetch 1 ,mem_hibernate_flag 
+0x237 000783 beq 0x5a ,p_device_init_init_hibwake 
+0x238 000784 branch p_deveice_init_wake ,wake 
+0x239 000785 fetch 2 ,mem_adc_0v 
+0x23a 000786 byteswap pdata ,pdata 
+0x23b 000787 store 2 ,mem_adc_0v 
+0x23c 000788 fetch 2 ,mem_adc_3v 
+0x23d 000789 byteswap pdata ,pdata 
+0x23e 000790 store 2 ,mem_adc_3v 
+0x23f 000791 call p_init_adc_from_otp 
+0x240 000792 fetch 8 ,mem_temp 
+0x241 000793 nbranch p_deveice_init_reset ,blank 
+0x242 000794 fetch 2 ,0x4ad4 
+0x243 000795 byteswap pdata ,pdata 
+0x244 000796 branch p_deveice_init_reset ,blank 
+0x245 000797 store 2 ,mem_adc_3v 
+:      000798 p_deveice_init_reset:
+0x246 000799 call p_le_queue_init 
+0x247 000800 jam bt_evt_reset ,mem_ipc_tx_evt 
+:      000801 p_device_init_common:
+0x248 000802 call p_ipc_tx_evt 
+0x249 000803 jam 0 ,mem_hibernate_flag 
+0x24a 000804 hjam start_c51_core ,core_docd_ctrl 
+0x24b 000805 rtn 
+:      000806 p_deveice_init_wake:
+0x24c 000807 jam bt_evt_wakeup ,mem_ipc_tx_evt 
+0x24d 000808 branch p_device_init_common 
+:      000809 p_device_init_init_hibwake:
+0x24e 000810 copy auxcnt ,pdata 
+0x24f 000811 branch p_enter_hibernate_continue ,blank 
+0x250 000812 call init_lmp_work 
+0x251 000813 call l2cap_init_work 
+0x252 000814 setarg 0 
+0x253 000815 store 8 ,mem_context 
+0x254 000816 store 2 ,mem_ui_state_map 
+0x255 000817 copy clkn_bt ,pdata 
+0x256 000818 store 4 ,mem_ipc_last_check_timer 
+0x257 000819 jam bt_evt_hibernate_wake ,mem_ipc_tx_evt 
+0x258 000820 branch p_device_init_common 
+:      000822 p_init_adc_from_otp:
+0x259 000823 call otp_enable_chgpump 
+0x25a 000824 setarg 0x7e0 
+0x25b 000825 arg mem_temp ,rega 
+0x25c 000826 arg 14 ,temp 
+0x25d 000827 call otpd_read_data 
+0x25e 000828 call otp_disable_chgpump 
+0x25f 000829 fetch 1 ,mem_temp 
+0x260 000830 bbit1 0 ,assert 
+0x261 000831 fetch 8 ,mem_temp + 2 
+0x262 000832 rtn blank 
+:      000833 p_calc_adc_base_hvin:
+0x263 000834 fetcht 2 ,mem_temp + 4 
+0x264 000835 fetch 2 ,mem_temp + 10 
+0x265 000836 copy temp ,regb 
+0x266 000837 copy pdata ,rega 
+0x267 000838 isub temp ,regc 
+0x268 000839 rshift2 regc ,regc 
+0x269 000840 copy regb ,pdata 
+0x26a 000841 isub regc ,pdata 
+0x26b 000842 byteswap pdata ,pdata 
+0x26c 000843 store 2 ,mem_adc_0v 
+0x26d 000844 lshift regc ,regc 
+0x26e 000845 copy rega ,pdata 
+0x26f 000846 isub regc ,pdata 
+0x270 000847 byteswap pdata ,pdata 
+0x271 000848 store 2 ,mem_adc_3v 
+0x272 000849 rtn 
+:      000852 p_le_enable:
+0x273 000853 jam 39 ,mem_le_ch_mapped 
+0x274 000854 hjam 0x36 ,0x90f 
+0x275 000855 hjam 0x5f ,0x90b 
+0x276 000856 branch le_enable + 2 
+:      000857 p_le_disable:
+0x277 000858 hjam 0x2e ,0x90f 
+0x278 000859 hjam 0xff ,0x90b 
+0x279 000860 branch le_disable + 2 
+:      000863 p_mouse_idle:
+0x27a 000864 rtn 
+:      000865 p_check_enter_hibernate:
+0x27b 000866 fetch 2 ,mem_ipc_2c51_write_index 
+0x27c 000867 store 2 ,mem_ipc_2c51_read_index 
+0x27d 000868 fetch 2 ,mem_ipc_2bt_write_index 
+0x27e 000869 store 2 ,mem_ipc_2bt_read_index 
+0x27f 000870 jam syc_task_hibernate ,mem_c51_flag 
+0x280 000871 call p_c51_wait 
+:      000872 p_enter_hibernate_continue:
+0x281 000875 jam 0x5a ,mem_hibernate_flag 
+0x282 000876 call lpm_write_gpio_wakeup 
+0x283 000877 hfetch 4 ,core_lpm_ctrl 
+0x284 000878 set0 15 ,pdata 
+0x285 000879 hstore 4 ,core_lpm_reg 
+0x286 000880 call lpm_write_ctrl 
+0x287 000881 arg param_hibernate_clks ,temp 
+0x288 000882 branch lpm_sleep 
+:      000884 p_fifo_in:
+0x289 000885 ifetcht util_fifo_len ,rega 
+0x28a 000886 and temp ,0xff ,pdata 
+0x28b 000887 nbranch p_fifo_in_push ,blank 
+0x28c 000888 rshift8 temp ,pdata 
+0x28d 000889 istore util_fifo_len ,rega 
+:      000890 p_fifo_in_push:
+0x28e 000891 increase util_fifo_len + util_fifo_offset ,rega 
+0x28f 000892 ifetch 1 ,rega 
+0x290 000893 nrtn ,blank 
+0x291 000894 branch fifo_in_push + 3 
+:      000899 p_check_51cmd_once:
+0x292 000900 call ui_ipc_get_lock 
+0x293 000901 arg mem_ipc_fifo_c512bt ,rega 
+0x294 000902 call fifo_out 
+0x295 000903 copy pdata ,temp 
+0x296 000904 call ui_ipc_put_lock 
+0x297 000905 copy temp ,pdata 
+0x298 000906 rtn blank 
+0x299 000907 beq bt_cmd_start_24g ,p_check_51cmd_start24g 
+0x29a 000908 beq bt_cmd_stop_24g ,p_check_51cmd_stop24g 
+0x29b 000909 beq bt_cmd_pair_24g ,p_g24_start_pairing_sm1 
+0x29c 000911 beq bt_cmd_start_discovery ,p_check_51cmd_start_discovery 
+0x29d 000912 beq bt_cmd_start_adv ,p_check_51cmd_start_adv 
+0x29e 000913 beq bt_cmd_start_adv_discovery ,p_check_51cmd_start_adv_discovery 
+0x29f 000914 beq bt_cmd_start_adv_rec ,p_handle_adv_1 
+0x2a0 000915 beq bt_cmd_reconnect ,p_check_51cmd_reconnect 
+0x2a1 000916 beq bt_cmd_set_reconnect_init ,p_disconnect_connected_device 
+0x2a2 000917 beq bt_cmd_le_update_conn ,bt_cmd_le_update_conn_1 
+0x2a3 000918 branch check_51cmd_once + 9 
+:      000919 p_check_51cmd_start24g:
+0x2a4 000920 jam state_24g_pairing_success ,mem_24g_pairing_sm 
+0x2a5 000921 branch p_g24_start_24g_mode 
+:      000922 p_check_51cmd_stop24g:
+0x2a6 000923 set0 mark_24g ,mark 
+0x2a7 000924 jam state_24g_pairing_success ,mem_24g_pairing_sm 
+0x2a8 000925 branch p_g24_stop_g24_mode 
+:      000928 p_slave_ble_disconnect:
+0x2a9 000929 jam xt_ll_terminate_ind ,mem_fifo_temp 
+0x2aa 000930 branch le_xtype_fifo_in 
+:      000932 p_check_51cmd_once_continue:
+0x2ab 000933 fetch 1 ,mem_lmo_opcode2 
+0x2ac 000934 branch p_check_51cmd_once_continue0 ,blank 
+0x2ad 000935 call lmo_fifo_process 
+0x2ae 000936 fetch 1 ,mem_lmo_opcode2 
+0x2af 000937 nbranch check_51cmd_restore ,blank 
+:      000938 p_check_51cmd_once_continue0:
+0x2b0 000939 fetch 1 ,mem_fifo_temp 
+0x2b1 000940 bmark0 mark_context ,check_51cmd_check_idle 
+0x2b2 000941 beq bt_cmd_disconnect ,p_check_51cmd_disconnect 
+0x2b3 000942 beq bt_cmd_le_disconnect ,p_slave_ble_disconnect 
+0x2b4 000943 beq bt_cmd_update_supervision_to ,p_check_51cmd_update_supervision_to 
+0x2b5 000944 branch check_51cmd_once_continue0 
+:      000945 p_check_51cmd_disconnect:
+0x2b6 000946 fetch 2 ,mem_ui_state_map 
+0x2b7 000947 bbit0 ui_state_bt_hid_handshake ,p_check_51cmd_quick_disconnect 
+0x2b8 000948 branch check_51cmd_disconnect 
+:      000949 p_check_51cmd_quick_disconnect:
+0x2b9 000950 setarg 10 
+0x2ba 000951 store 4 ,mem_supervision_to 
+0x2bb 000952 branch check_51cmd_disconnect 
+:      000954 p_check_51cmd_update_supervision_to:
+0x2bc 000955 jam lmp_supervision_timeout ,mem_lmo_opcode2 
+0x2bd 000956 fetch 2 ,mem_new_supervision_to 
+0x2be 000957 store 2 ,mem_supervision_to 
+0x2bf 000958 rtn 
+:      000960 p_check_51cmd_start_adv_discovery:
+0x2c0 000961 call p_check_51cmd_start_discovery 
+:      000962 p_check_51cmd_start_adv:
+0x2c1 000963 call app_clear_reconnect_flag 
+0x2c2 000964 call check_51cmd_bb_reconn_cancel 
+0x2c3 000965 jam 0 ,mem_lpm_mode 
+0x2c4 000966 random pdata 
+0x2c5 000967 store 1 ,mem_le_lap 
+:      000968 p_handle_adv_0:
+0x2c6 000969 jam 5 ,mem_le_adv_data + 2 
+0x2c7 000970 setarg 0x181203 
+0x2c8 000971 store 3 ,mem_le_adv_data + 8 
+0x2c9 000973 arg 7 ,temp 
+0x2ca 000974 call p_le_adv_data_update 
+0x2cb 000975 branch check_51cmd_adv 
+:      000977 p_handle_adv_1:
+0x2cc 000978 jam 4 ,mem_le_adv_data + 2 
+0x2cd 000979 setarg 0x0000ff 
+0x2ce 000980 store 3 ,mem_le_adv_data + 8 
+0x2cf 000982 arg 0 ,temp 
+0x2d0 000983 call p_le_adv_data_update 
+0x2d1 000984 branch check_51cmd_adv 
+:      000986 p_le_adv_data_update:
+0x2d2 000987 fetch 1 ,mem_le_scan_data_len 
+0x2d3 000988 iadd temp ,pdata 
+0x2d4 000989 add pdata ,11 ,pdata 
+0x2d5 000990 sub pdata ,0x1f ,null 
+0x2d6 000991 nbranch p_le_adv_data_overflow ,positive 
+0x2d7 000992 store 1 ,mem_le_adv_data_len 
+0x2d8 000994 arg mem_le_adv_data + 11 ,contw 
+0x2d9 000995 copy temp ,pdata 
+0x2da 000996 ncall p_handle_adv_swift_pair ,blank 
+0x2db 000998 fetch 1 ,mem_le_scan_data_len 
+0x2dc 000999 copy pdata ,loopcnt 
+0x2dd 001000 arg mem_le_scan_data ,contr 
+0x2de 001001 branch memcpy 
+:      001004 p_handle_adv_swift_pair:
+0x2df 001005 copy pdata ,loopcnt 
+0x2e0 001006 arg mem_le_adv_swift_pair ,contr 
+0x2e1 001007 branch memcpy 
+:      001009 p_le_adv_data_overflow:
+0x2e2 001010 fetch 1 ,mem_le_scan_data_len 
+0x2e3 001011 add pdata ,11 ,pdata 
+0x2e4 001012 store 1 ,mem_le_adv_data_len 
+0x2e5 001013 rtn 
+:      001015 p_check_51cmd_start_discovery:
+0x2e6 001016 call app_clear_reconnect_flag 
+0x2e7 001017 jam 6 ,mem_connection_options 
+0x2e8 001018 branch check_51cmd_start_discovery 
+:      001019 p_check_51cmd_reconnect:
+0x2e9 001020 call init_param 
+0x2ea 001021 call l2cap_init 
+0x2eb 001022 call init_lmp 
+0x2ec 001023 jam 6 ,mem_connection_options 
+0x2ed 001024 fetch 1 ,mem_ssp_enable 
+0x2ee 001025 beq 0 ,p_check_51cmd_reconnect_common 
+0x2ef 001026 jam 0x17 ,mem_connection_options 
+:      001027 p_check_51cmd_reconnect_common:
+0x2f0 001028 jam 1 ,mem_link_key_exists 
+0x2f1 001029 branch check_51cmd_reconnect 
+:      001031 p_disconnect_connected_device:
+0x2f2 001033 fetch 2 ,mem_ui_state_map 
+0x2f3 001034 bbit1 ui_state_ble_connected ,app_ble_disconnect 
+0x2f4 001035 bbit1 ui_state_bt_connected ,p_disconnect_bt 
+0x2f5 001036 bbit1 ui_state_bt_reconnect ,check_51cmd_bb_reconn_cancel 
+0x2f6 001037 bmark1 mark_24g ,p_g24_stop_g24_mode 
+0x2f7 001038 jam off ,mem_le_adv_enable 
+0x2f8 001039 call app_bt_stop_discovery 
+0x2f9 001041 jam bt_evt_reconnect_standy ,mem_fifo_temp 
+0x2fa 001042 branch ui_ipc_send_event 
+:      001045 p_disconnect_bt:
+0x2fb 001046 call app_clear_reconnect_flag 
+0x2fc 001047 call check_51cmd_bb_reconn_cancel 
+0x2fd 001049 branch app_bt_disconnect 
+:      001053 p_lpm_sleep:
+0x2fe 001054 call xtal_fast_wake 
+0x2ff 001055 branch lpm_sleep + 2 
+:      001058 p_connection_incontext:
+0x300 001059 call p_context_search_insniff 
+0x301 001060 branch connection_incontext + 3 
+:      001061 p_context_search_insniff:
+0x302 001062 arg p_context_search_sniff ,regc 
+0x303 001063 branch context_search 
+:      001065 p_context_search_sniff:
+0x304 001066 bbit0 state_insniff ,context_search_next 
+:      001067 p_context_search_sniff_loop:
+0x305 001068 call context_get_anchor 
+0x306 001069 call sign_pdata_temp 
+0x307 001070 isub temp ,pdata 
+0x308 001071 increase 1 ,pdata 
+0x309 001072 branch p_context_search_sniff_miss ,positive 
+0x30a 001073 branch context_search_sniff_cont + 3 
+:      001074 p_context_search_sniff_miss:
+0x30b 001075 iforce regb 
+0x30c 001076 add rega ,coffset_tsniff ,contr 
+0x30d 001077 ifetch 2 ,contr 
+0x30e 001078 branch context_search_meet ,blank 
+0x30f 001079 call context_next_anchor 
+0x310 001080 branch p_context_search_sniff_loop 
+:      001083 sign_pdata_temp:
+0x311 001084 rshift16 pdata ,timeup 
+0x312 001085 rshift8 timeup ,timeup 
+0x313 001086 branch sign_pdata_temp_p0 ,zero 
+0x314 001087 compare 0xf ,timeup ,0xf 
+0x315 001088 nrtn true 
+0x316 001089 rshift16 temp ,timeup 
+0x317 001090 rshift8 timeup ,timeup 
+0x318 001091 nrtn zero 
+0x319 001092 set1 28 ,temp 
+0x31a 001093 rtn 
+:      001094 sign_pdata_temp_p0:
+0x31b 001095 rshift16 temp ,timeup 
+0x31c 001096 rshift8 timeup ,timeup 
+0x31d 001097 compare 0xf ,timeup ,0xf 
+0x31e 001098 nrtn true 
+0x31f 001099 set1 28 ,pdata 
+0x320 001100 rtn 
+:      001103 p_idle_page_mode_r0:
+0x321 001104 storet 8 ,mem_temp 
+0x322 001105 call timer_check 
+0x323 001106 fetcht 8 ,mem_temp 
+0x324 001107 branch idle_page_mode_r0 + 13 
+:      001110 p_role_switch_check:
+0x325 001111 disable user 
+0x326 001112 fetch 2 ,mem_tsniff 
+0x327 001113 arg 0xffff ,temp 
+0x328 001114 isub temp ,null 
+0x329 001115 nrtn zero 
+0x32a 001116 fetch 4 ,mem_sniff_anchor 
+0x32b 001117 branch p_role_switch_clkn ,clknt 
+0x32c 001118 isub clke_bt ,pdata 
+0x32d 001119 branch p_role_switch_clke 
+:      001121 p_role_switch_clkn:
+0x32e 001122 isub clkn_bt ,pdata 
+:      001123 p_role_switch_clke:
+0x32f 001124 sub pdata ,4 ,null 
+0x330 001125 nrtn positive 
+0x331 001126 force 0 ,pdata 
+0x332 001127 store 2 ,mem_tsniff 
+0x333 001128 branch enable_user 
+:      001131 p_parse_lmp_accepted_switch:
+0x334 001132 jam bt_evt_switch_accept ,mem_fifo_temp 
+0x335 001133 call ui_ipc_send_event 
+0x336 001134 branch p_role_switch_prepare0 
+:      001136 p_role_switch_prepare0_0:
+0x337 001139 storet 4 ,mem_sniff_anchor 
+:      001140 p_role_switch_prepare0:
+0x338 001141 jam switch_flag_accept ,mem_switch_flag 
+0x339 001142 setarg 0xffff 
+0x33a 001143 store 2 ,mem_tsniff 
+0x33b 001144 jam 1 ,mem_sniff_attempt 
+0x33c 001145 rtn 
+:      001147 p_roles_replyto_fhs:
+0x33d 001148 call rf_setup_time_slave_slot 
+0x33e 001149 call p_master_send_packet 
+0x33f 001150 branch roles_replyto_fhs + 4 
+:      001152 p_master_send_packet:
+0x340 001153 add clkn_bt ,1 ,bt_clk 
+0x341 001154 call fetch_self_bt_adr 
+0x342 001155 force 0x03 ,freq_mode 
+0x343 001156 call tx_radio_freq 
+0x344 001157 call start_transmitter 
+0x345 001158 call start_tx_native 
+0x346 001159 call send_access_word 
+0x347 001160 branch end_of_packet 
+:      001164 p_slave_loop:
+0x348 001165 call check_bt_disabled 
+0x349 001166 call scheduler_process 
+0x34a 001167 call slave_conn_recv_packet 
+0x34b 001168 branch slave_loop + 6 
+:      001171 p_slave_notmatch:
+0x34c 001172 call lpm_set_mult 
+0x34d 001173 call supervision_update 
+0x34e 001174 branch slave_disconnect ,positive 
+0x34f 001175 call check_disconnect_timeout 
+0x350 001176 nbranch slave_disconnect ,user 
+0x351 001177 call check_attempt 
+0x352 001178 nbranch p_slave_loop + 1 ,blank 
+0x353 001179 rtn 
+:      001182 p_prepare_tx_not_sco:
+0x354 001183 call context_check_all_wack 
+0x355 001184 nbranch prepare_tx_no_retransmit ,zero 
+0x356 001185 fetch 1 ,mem_arq 
+0x357 001186 bbit0 wack ,prepare_tx_pollnull 
+0x358 001187 fetch 1 ,mem_last_type 
+0x359 001188 beq type_lmp ,prepare_tx_retransmit + 7 
+0x35a 001189 fetch 2 ,mem_last_txlen 
+0x35b 001190 sub pdata ,20 ,null 
+0x35c 001191 nbranch prepare_tx_retransmit + 7 ,positive 
+0x35d 001192 store 2 ,mem_tx_len 
+0x35e 001193 fetch 1 ,mem_last_txlch 
+0x35f 001194 store 1 ,mem_tx_lch 
+0x360 001195 setarg mem_last_txdata 
+0x361 001196 store 2 ,mem_txptr 
+0x362 001197 branch prepare_tx_retransmit + 7 
+:      001200 p_tx_l2cap_type:
+0x363 001201 fetch 2 ,mem_tx_len 
+0x364 001202 store 2 ,mem_last_txlen 
+0x365 001203 sub pdata ,20 ,null 
+0x366 001204 nbranch tx_l2cap_type + 2 ,positive 
+0x367 001205 iforce loopcnt 
+0x368 001206 fetch 1 ,mem_tx_lch 
+0x369 001207 store 1 ,mem_last_txlch 
+0x36a 001208 fetch 2 ,mem_txptr 
+0x36b 001209 iforce contr 
+0x36c 001210 arg mem_last_txdata ,contw 
+0x36d 001211 call memcpy 
+0x36e 001212 branch tx_l2cap_type + 2 
+:      001215 p_l2cap_rx_multiplexing:
+0x36f 001216 fetch 2 ,mem_l2cap_rx_pkt_length 
+0x370 001217 branch l2cap_rx_reset_state ,blank 
+0x371 001218 fetch 1 ,mem_l2cap_rx_cid 
+0x372 001219 beq l2cap_signal_channel ,p_l2cap_call_proc_signal 
+0x373 001220 branch l2cap_rx_multiplexing0 
+:      001221 p_l2cap_call_proc_signal:
+0x374 001222 call l2cap_malloc_is_fifo_full 
+0x375 001223 nrtn blank 
+0x376 001224 branch l2cap_call_proc_signal0 
+:      001227 p_l2cap_process_one_signal:
+0x377 001228 ifetch 1 ,contr 
+0x378 001229 beq signal_info_req ,p_l2cap_proc_signal_info_req 
+0x379 001230 branch l2cap_process_one_signal + 3 
+:      001231 p_l2cap_proc_signal_info_req:
+0x37a 001232 ifetch 1 ,contr 
+0x37b 001233 copy pdata ,queue 
+0x37c 001234 ifetch 2 ,contr 
+0x37d 001235 copy pdata ,rega 
+0x37e 001236 copy regc ,pdata 
+0x37f 001237 isub rega ,regc 
+0x380 001238 setarg signal_info_rsp 
+0x381 001239 istore 1 ,contw 
+0x382 001240 copy queue ,pdata 
+0x383 001241 istore 1 ,contw 
+0x384 001242 ifetch 2 ,contr 
+:      001243 p_l2cap_proc_signal_info_req_reply:
+0x385 001244 beq l2cap_sig_ext_featrue ,p_l2cap_proc_signal_info_req_ext 
+0x386 001245 beq l2cap_sig_fix_featrue ,p_l2cap_proc_signal_info_req_fix 
+0x387 001246 branch assert 
+:      001247 p_l2cap_proc_signal_info_req_ext:
+0x388 001248 setarg 0x020008 
+0x389 001249 istore 6 ,contw 
+0x38a 001250 setarg 0x0200 
+0x38b 001251 istore 4 ,contw 
+0x38c 001252 force 12 ,pdata 
+0x38d 001253 iadd regb ,regb 
+0x38e 001254 branch l2cap_process_one_signal_rtn 
+:      001255 p_l2cap_proc_signal_info_req_fix:
+0x38f 001256 setarg 0x3000c 
+0x390 001257 istore 6 ,contw 
+0x391 001258 setarg 0x0006 
+0x392 001259 istore 8 ,contw 
+0x393 001260 force 16 ,pdata 
+0x394 001261 iadd regb ,regb 
+0x395 001262 branch l2cap_process_one_signal_rtn 
+:      001265 p_ml2cap_call_proc_signal:
+0x396 001266 call l2cap_malloc_signal_channel 
+0x397 001267 force 0 ,regb 
+0x398 001268 call l2cap_get_signal_tx_payload 
+0x399 001269 copy pdata ,contw 
+0x39a 001270 fetch 2 ,mem_l2cap_rx_pkt_length 
+0x39b 001271 copy pdata ,regc 
+0x39c 001272 fetch 2 ,mem_l2cap_payload_ptr 
+0x39d 001273 iforce contr 
+0x39e 001274 call p_ml2cap_proc_one_comm 
+0x39f 001275 branch ml2cap_proc_one_comm_loop + 1 
+:      001276 p_ml2cap_proc_one_comm:
+0x3a0 001277 ifetch 1 ,contr 
+0x3a1 001278 beq signal_info_req ,p_ml2cap_proc_signal_info_req 
+0x3a2 001279 branch ml2cap_proc_one_comm + 1 
+:      001280 p_ml2cap_proc_signal_info_req:
+0x3a3 001281 ifetch 1 ,contr 
+0x3a4 001282 copy pdata ,queue 
+0x3a5 001283 ifetch 2 ,contr 
+0x3a6 001284 copy pdata ,rega 
+0x3a7 001285 ifetch 2 ,contr 
+0x3a8 001286 store 2 ,mem_temp 
+0x3a9 001287 copy regc ,pdata 
+0x3aa 001288 isub rega ,regc 
+0x3ab 001289 call l2cap_get_signal_tx_payload 
+0x3ac 001290 setarg signal_info_rsp 
+0x3ad 001291 istore 1 ,contw 
+0x3ae 001292 copy queue ,pdata 
+0x3af 001293 istore 1 ,contw 
+0x3b0 001294 fetch 2 ,mem_temp 
+0x3b1 001295 branch p_l2cap_proc_signal_info_req_reply 
+:      001298 p_l2cap_malloc:
+0x3b2 001299 arg 0 ,regb 
+0x3b3 001300 call l2cap_malloc_is_fifo_full 
+0x3b4 001301 nrtn blank 
+0x3b5 001302 branch l2cap_malloc + 5 
+:      001304 p_hid_rx_process:
+0x3b6 001305 fetch 2 ,mem_l2cap_payload_ptr 
+0x3b7 001306 copy pdata ,contr 
+0x3b8 001307 ifetch 1 ,contr 
+0x3b9 001308 and pdata ,0x0f ,temp 
+0x3ba 001309 rshift4 pdata ,pdata 
+0x3bb 001312 beq hid_type_data ,p_hid_rx_process_data 
+0x3bc 001313 beq hid_type_set_report ,p_hid_rx_process_set_report 
+0x3bd 001315 beq hid_type_control ,p_hid_rx_process_hid_control 
+0x3be 001316 beq hid_type_get_report ,hid_rx_process_handshake 
+0x3bf 001317 branch hid_rx_process + 7 
+:      001320 p_hid_rx_process_hid_control:
+0x3c0 001321 copy temp ,pdata 
+0x3c1 001322 beq hid_control_p_virtualcableunplug ,hid_rx_process_virtual_cable_unplug 
+0x3c2 001323 jam 1 ,mem_suspend_flag 
+0x3c3 001324 beq hid_control_p_suspend ,hid_rx_process_handshake 
+0x3c4 001325 jam 0 ,mem_suspend_flag 
+0x3c5 001326 beq hid_control_p_exitsuspend ,hid_rx_process_handshake 
+0x3c6 001327 rtn 
+:      001330 p_hid_rx_process_set_report:
+0x3c7 001331 call p_hid_rx_process_data 
+0x3c8 001332 branch hid_rx_process_set_report 
+:      001333 p_hid_rx_process_data:
+0x3c9 001334 ifetch 1 ,contr 
+0x3ca 001335 beq hid_report_id_kb ,p_hid_rx_process_data_hid_kb 
+0x3cb 001336 rtn 
+:      001338 p_scheduler_process_sdp_succ:
+0x3cc 001339 call l2cap_malloc_is_fifo_full 
+0x3cd 001340 nrtn blank 
+0x3ce 001342 call p_l2cap_call_proc_sigal_pending 
+0x3cf 001343 branch scheduler_process1 
+:      001345 p_l2cap_call_proc_sigal_pending:
+0x3d0 001346 fetch 1 ,mem_device_option 
+0x3d1 001347 rtneq dvc_op_hci 
+0x3d2 001348 fetch 1 ,mem_l2cap_pending_item 
+0x3d3 001349 rtn blank 
+0x3d4 001350 copy pdata ,rega 
+0x3d5 001351 jam 0 ,mem_l2cap_pending_item 
+0x3d6 001352 copy rega ,pdata 
+0x3d7 001353 beq l2cap_sdp_channel ,l2cap_sdp_conn_succ 
+0x3d8 001354 rtn 
+:      001357 p_parse_lmp:
+0x3d9 001358 fetch 1 ,mem_lmi_opcode2 
+0x3da 001359 beq lmp_accepted ,p_parse_lmp_accepted 
+0x3db 001360 beq lmp_detach ,p_parse_lmp_detach 
+0x3dc 001362 branch parse_lmp + 26 
+:      001363 p_parse_lmp_accepted:
+0x3dd 001364 fetch 1 ,mem_rxbuf + 1 
+0x3de 001365 store 1 ,mem_lmi_accepted_opcode 
+0x3df 001366 beq lmp_switch_req ,p_parse_lmp_accepted_switch 
+0x3e0 001367 beq lmp_host_connection_req ,p_parse_lmp_accepted_hostconn 
+0x3e1 001368 branch parse_lmp_accepted + 2 
+:      001369 p_parse_lmp_accepted_hostconn:
+0x3e2 001372 fetch 1 ,mem_lmp_conn_state 
+0x3e3 001373 set1 received_conn_req ,pdata 
+0x3e4 001374 store 1 ,mem_lmp_conn_state 
+0x3e5 001375 jam bt_evt_bb_connected ,mem_fifo_temp 
+0x3e6 001376 call ui_ipc_send_event 
+0x3e7 001377 branch parse_lmp_accepted_hostconn_ctn 
+:      001380 p_parse_lmp_detach:
+0x3e8 001381 fetch 1 ,mem_rxbuf + 1 
+0x3e9 001382 store 1 ,mem_disconn_reason_send 
+0x3ea 001383 branch parse_lmp_detach 
+:      001399 p_send_lmp:
+0x3eb 001400 disable user 
+0x3ec 001401 call lmo_fifo_process 
+0x3ed 001402 fetch 1 ,mem_lmp_to_send 
+0x3ee 001403 rtn blank 
+0x3ef 001404 bbit1 7 ,send_lmp_escape 
+0x3f0 001405 beq lmp_name_res ,p_send_lmp_name_res 
+0x3f1 001406 beq lmp_detach ,p_send_lmp_detach 
+0x3f2 001407 branch send_lmp + 7 
+:      001408 p_send_lmp_name_res:
+0x3f3 001409 force 17 ,pdata 
+0x3f4 001410 call msg_send_lmp 
+0x3f5 001411 fetch 1 ,mem_lmi_opcode 
+0x3f6 001412 copy pdata ,temp 
+0x3f7 001413 beq 0x00 ,p_send_lmp_name_res_offset_ok 
+0x3f8 001414 beq 0x0e ,p_send_lmp_name_res_offset_ok 
+0x3f9 001415 beq 0x1c ,p_send_lmp_name_res_offset_ok 
+0x3fa 001416 rtn 
+:      001417 p_send_lmp_name_res_offset_ok:
+0x3fb 001418 istore 1 ,contw 
+0x3fc 001419 fetch 1 ,mem_local_name_length 
+0x3fd 001420 istore 1 ,contw 
+0x3fe 001421 setarg 14 
+0x3ff 001422 branch send_lmp_name_res_offset_ok + 3 
+:      001424 p_send_lmp_detach:
+0x400 001425 call send_lmp_detach 
+0x401 001426 jam 100 ,mem_conn_timer 
+0x402 001427 rtn 
+:      001430 p_process_conn_sm:
+0x403 001431 fetch 1 ,mem_lmo_opcode2 
+0x404 001432 branch p_process_conn_sm_continue ,blank 
+0x405 001433 call lmo_fifo_process 
+0x406 001434 fetch 1 ,mem_lmo_opcode2 
+0x407 001435 nrtn blank 
+:      001436 p_process_conn_sm_continue:
+0x408 001437 fetch 1 ,mem_conn_sm 
+0x409 001438 rtn blank 
+0x40a 001439 beq conn_sm_auth_pair ,p_host_create_conn_auth_pair 
+0x40b 001440 beq conn_sm_wait_switch_after_host_connection ,p_host_creat_conn_wait_switch 
+0x40c 001441 branch process_conn_sm_continue + 2 
+:      001443 p_host_creat_conn_wait_switch:
+0x40d 001444 fetch 1 ,mem_switch_flag 
+0x40e 001445 rtneq switch_flag_init 
+0x40f 001446 beq switch_flag_accept ,p_host_create_conn_switch_accept 
+0x410 001447 arg switch_wait_timer ,queue 
+0x411 001448 call timer_check 
+0x412 001449 nrtn blank 
+0x413 001450 jam switch_flag_init ,mem_switch_flag 
+0x414 001451 branch host_create_conn_switch 
+:      001452 p_host_create_conn_switch_accept:
+0x415 001453 rtn master 
+0x416 001454 branch p_host_create_conn_auth_pair 
+:      001456 p_host_create_conn_auth_pair:
+0x417 001457 fetch 1 ,mem_connection_options 
+0x418 001458 bbit1 connection_switch ,host_create_conn_switch 
+0x419 001459 bbit1 connection_auth ,p_host_create_conn_auth_pair_true 
+:      001460 p_host_create_conn_auth_pair_true:
+0x41a 001461 fetch 1 ,mem_link_key_exists 
+0x41b 001462 branch host_create_conn_auth_pair_nokey ,blank 
+0x41c 001463 fetch 1 ,mem_lmp_conn_state 
+0x41d 001464 rtnbit0 sent_setup_complete 
+0x41e 001465 rtnbit0 received_setup_complete 
+0x41f 001466 fetch 4 ,mem_aurand_send_delay_time 
+0x420 001467 arg 800 ,temp 
+0x421 001468 iadd temp ,temp 
+0x422 001469 copy clkn_bt ,pdata 
+0x423 001470 isub temp ,null 
+0x424 001471 nrtn positive 
+0x425 001472 branch host_create_conn_auth 
+:      001474 p_hid_rx_process_data_hid_kb:
+0x426 001475 ifetch 1 ,contr 
+0x427 001476 store 1 ,mem_caps_num_lock 
+0x428 001477 rtn 
+:      001482 p_le_transmit_receive_sifs:
+0x429 001483 call le_transmit 
+0x42a 001484 fetcht 1 ,mem_last_freq 
+0x42b 001485 call set_freq_rx 
+0x42c 001486 call rf_rx_enable 
+0x42d 001487 enable swfine 
+0x42e 001488 arg 5500 ,timeup 
+0x42f 001490 branch le_receive_rxon 
+:      001492 p_le_init_conn:
+0x430 001493 jam 0x01 ,mem_le_txheader 
+0x431 001494 jam 0 ,mem_le_txlen 
+0x432 001495 branch le_init_conn + 2 
+:      001497 p_le_transmit:
+0x433 001498 call le_prep 
+0x434 001499 call p_letx_setfreq 
+0x435 001500 branch le_transmit + 4 
+:      001502 p_letx_setfreq:
+0x436 001503 branch p_txon ,match 
+0x437 001504 call le_setfreq 
+0x438 001505 branch set_freq_tx 
+:      001507 p_le_send_adv_ind:
+0x439 001508 fetch 1 ,mem_le_rx_window 
+0x43a 001509 store 4 ,mem_le_transmit_window 
+0x43b 001510 fetch 1 ,mem_le_adv_type 
+0x43c 001511 beq adv_direct_ind ,p_le_send_adv_direct_ind 
+0x43d 001512 branch le_send_adv_ind + 2 
+:      001513 p_le_send_adv_direct_ind:
+0x43e 001514 jam 0 ,mem_le_adv_type 
+0x43f 001515 branch le_send_adv_direct_ind 
+:      001517 p_le_update_param:
+0x440 001518 fetch 1 ,mem_le_state 
+0x441 001519 rtnbit0 lestate_update_param 
+0x442 001520 fetch 2 ,mem_le_event_count 
+0x443 001521 fetcht 2 ,mem_le_instant 
+0x444 001522 isub temp ,pdata 
+0x445 001523 nrtn positive 
+0x446 001524 branch le_update_param + 8 
+:      001527 p_le_prepare_tx:
+0x447 001528 fetch 1 ,mem_le_arq 
+0x448 001529 rtnbit1 wak 
+0x449 001531 fetch 1 ,mem_le_rxbuf + 1 
+0x44a 001532 branch le_prepare_tx + 4 ,blank 
+0x44b 001533 branch le_send_empty 
+:      001539 p_le_prepare_tx_cmd:
+0x44c 001540 fetch 1 ,mem_le_txpayload 
+0x44d 001541 beq ll_unknown_rsp ,p_le_send_unknown_rsp 
+0x44e 001542 beq ll_connection_param_req ,p_le_send_conn_param_req 
+0x44f 001543 beq ll_start_enc_rsp ,p_le_send_start_enc_rsp 
+0x450 001545 beq ll_terminate_ind ,p_le_send_terminate_ind 
+0x451 001546 beq ll_ping_rsp ,p_le_send_ping_rsp 
+0x452 001547 branch le_prepare_tx_cmd + 10 
+:      001549 p_le_send_ping_rsp:
+0x453 001550 force 1 ,temp 
+0x454 001551 branch le_send_packet 
+:      001553 p_le_send_terminate_ind:
+0x455 001554 setarg 10 
+0x456 001555 store 2 ,mem_le_superto 
+0x457 001556 branch le_send_terminate_ind 
+:      001558 p_le_send_start_enc_rsp:
+0x458 001559 jam bt_cmd_le_update_conn ,mem_fifo_temp 
+0x459 001560 call ui_ipc_send_cmd 
+0x45a 001561 force 1 ,temp 
+0x45b 001562 branch le_send_packet ,master 
+0x45c 001563 jam bt_evt_le_protocol_connected ,mem_fifo_temp 
+0x45d 001564 call ui_ipc_send_event 
+0x45e 001565 fetch 1 ,mem_le_pairing_state 
+0x45f 001566 beq flag_le_pairing_after_auth ,p_le_send_start_enc_rsp0 
+0x460 001567 branch p_le_send_start_enc_rsp_end 
+:      001568 p_le_send_start_enc_rsp0:
+0x461 001569 jam xt_smp_encryption_information ,mem_fifo_temp 
+0x462 001570 call le_xtype_fifo_in 
+:      001571 p_le_send_start_enc_rsp_end:
+0x463 001572 force 1 ,temp 
+0x464 001573 branch le_send_packet 
+:      001583 p_le_send_unknown_rsp:
+0x465 001584 fetch 1 ,mem_le_ll_unknown_type 
+0x466 001585 istore 1 ,contw 
+0x467 001586 force 2 ,temp 
+0x468 001587 branch le_send_packet 
+:      001589 p_le_send_conn_param_req:
+0x469 001590 increase -1 ,contw 
+0x46a 001591 fetch 8 ,mem_le_connection_updata_param 
+0x46b 001592 istore 8 ,contw 
+0x46c 001593 ifetch 8 ,contr 
+0x46d 001594 istore 8 ,contw 
+0x46e 001595 force 2 ,type 
+0x46f 001596 branch le_send_autolen 
+:      001598 p_le_prepare_smp:
+0x470 001599 fetch 1 ,mem_le_l2cap 
+0x471 001600 beq smp_identity_address_information ,le_send_smp_identity_address_information + 2 
+0x472 001601 beq smp_pairing_response ,p_le_send_smp_pairing_response 
+0x473 001602 beq smp_master_identification ,le_send_smp_master_identification + 2 
+0x474 001603 branch le_prepare_smp0 
+:      001607 p_le_send_smp_pairing_response:
+0x475 001608 setarg param_smp_paring_response 
+0x476 001609 store 3 ,mem_le_pres 
+0x477 001610 setarg 0x01 
+0x478 001611 istore 1 ,contw 
+0x479 001612 setarg param_smp_key_dist0 
+0x47a 001613 istore 3 ,contw 
+0x47b 001614 branch le_send_smp_pairing_response + 4 
+:      001620 p_lerx_nopayload:
+0x47c 001621 parse 3 ,0 ,24 
+0x47d 001622 enable swfine 
+0x47e 001623 arg param_sifs ,27 
+0x47f 001624 rshift32 pdata ,pdata 
+0x480 001625 rshift16 pdata ,pdata 
+0x481 001626 istore 3 ,contw 
+0x482 001627 branch end_of_packet ,6 
+0x483 001628 enable match 
+0x484 001629 fetch 1 ,mem_last_freq 
+0x485 001630 add pdata ,0 ,rega 
+0x486 001631 branch lerx_nopayload + 12 
+:      001633 p_le_parse_att:
+0x487 001634 ifetch 3 ,contr 
+0x488 001635 store 3 ,mem_le_att_opcode 
+0x489 001637 beq attop_write_command ,p_le_parse_att_write_command 
+0x48a 001640 beq attop_exchange_mtu_request ,p_le_parse_att_exchange_mtu_request 
+0x48b 001641 beq attop_write_request ,p_le_parse_att_write_request 
+0x48c 001642 branch le_parse_att_p 
+:      001644 p_le_parse_att_write_command:
+0x48d 001645 jam 1 ,mem_reconnect_continue 
+0x48e 001646 fetch 2 ,mem_le_att_handle 
+0x48f 001647 beq handle_uuid_chrctr_report_id1_output ,p_handle_num 
+0x490 001648 branch le_parse_att_write_command 
+:      001649 p_handle_num:
+0x491 001651 arg mem_le_rxbuf + 9 ,contr 
+0x492 001652 branch p_hid_rx_process_data_hid_kb 
+:      001654 p_le_parse_att_write_request:
+0x493 001655 fetch 2 ,mem_le_att_handle 
+0x494 001656 sub pdata ,handle_uuid_chrctr_report_id1_output ,null 
+0x495 001657 call p_handle_num ,zero 
+0x496 001658 fetch 2 ,mem_le_att_handle 
+0x497 001659 sub pdata ,handle_uuid_end ,null 
+0x498 001660 call p_set_lpm_mode ,zero 
+0x499 001661 fetch 2 ,mem_le_att_handle 
+0x49a 001662 fetcht 2 ,mem_att_report_game 
+0x49b 001663 increase 1 ,temp 
+0x49c 001664 isub temp ,null 
+0x49d 001665 branch p_key_data_send ,zero 
+0x49e 001666 branch le_parse_att_write_request 
+:      001667 p_key_data_send:
+0x49f 001668 jam bt_evt_le_protocol_connected ,mem_fifo_temp 
+0x4a0 001669 call ui_ipc_send_event 
+0x4a1 001670 branch le_parse_att_write_request 
+:      001673 p_set_lpm_mode:
+0x4a2 001674 jam 1 ,mem_lpm_mode 
+0x4a3 001675 rtn 
+:      001678 p_le_parse_att_exchange_mtu_request:
+0x4a4 001679 jam attop_exchange_mtu_response ,mem_fifo_temp 
+0x4a5 001680 branch le_xtype_fifo_in 
+:      001682 p_le_prepare_att:
+0x4a6 001683 fetch 1 ,mem_le_l2cap 
+0x4a7 001684 beq attop_handle_value_notification ,p_le_send_att_handle_value_notification 
+0x4a8 001685 beq attop_handle_value_indication ,p_le_send_att_handle_value_indication 
+0x4a9 001686 beq attop_read_by_group_type_response ,p_le_send_att_read_by_group_type_response 
+0x4aa 001687 beq attop_read_by_type_response ,p_le_send_att_read_by_type_response 
+0x4ab 001688 beq attop_find_information_response ,p_le_send_att_find_information_response 
+0x4ac 001689 beq attop_find_by_type_value_response ,p_le_send_att_find_by_type_value_response 
+0x4ad 001690 beq attop_write_response ,le_send_att_write_response_go 
+0x4ae 001691 beq attop_exchange_mtu_response ,p_le_send_att_exchange_mtu_rsp 
+0x4af 001692 beq attop_read_response ,p_le_send_att_read_response 
+0x4b0 001693 beq attop_read_blob_response ,p_le_send_att_read_blob_response 
+0x4b1 001694 branch le_prepare_att0 
+:      001696 p_le_send_att_read_blob_response:
+0x4b2 001697 fetch 2 ,mem_le_att_handle 
+0x4b3 001698 beq handle_uuid_chrctr_device_name ,p_le_send_att_read_blob_response_error 
+0x4b4 001699 branch le_send_att_read_blob_response 
+:      001701 p_le_send_att_read_blob_response_error:
+0x4b5 001702 jam att_err_invalid_offset ,mem_le_err_code 
+0x4b6 001703 branch le_send_att_error_response 
+:      001705 p_le_send_att_exchange_mtu_rsp:
+:      001708 p_le_send_att_exchange_mtu_req:
+0x4b7 001709 fetch 2 ,mem_le_local_mtu 
+0x4b8 001710 istore 2 ,contw 
+0x4b9 001711 branch le_send_autolen 
+:      001713 p_le_send_att_read_response:
+0x4ba 001714 fetch 2 ,mem_le_att_handle 
+0x4bb 001716 beq handle_uuid_battery_level ,le_send_att_error_response_notfound 
+0x4bc 001717 beq handle_uuid_chrctr_manufacturer_name ,p_le_send_att_read_response_error 
+0x4bd 001719 branch le_send_att_read_response 
+:      001721 p_le_send_att_read_response_error:
+0x4be 001722 fetch 1 ,mem_le_pairing_state 
+0x4bf 001723 bne flag_le_pairing_null ,le_send_att_read_response 
+0x4c0 001724 fetch 1 ,mem_ltk_states 
+0x4c1 001725 beq ltk_not_lost ,le_send_att_read_response 
+0x4c2 001728 copy contw ,temp 
+0x4c3 001729 jam flag_le_pairing_start ,mem_le_pairing_state 
+0x4c4 001730 copy temp ,contw 
+0x4c5 001731 jam att_err_insufficient_authentication ,mem_le_err_code 
+0x4c6 001732 branch le_send_att_error_response 
+:      001734 p_le_send_att_find_by_type_value_response:
+0x4c7 001735 call le_start_end_handle_check_1 
+0x4c8 001736 rtn user 
+0x4c9 001737 fetcht 2 ,mem_le_search_att_type 
+0x4ca 001738 setarg uuid_service_hids 
+0x4cb 001739 isub temp ,null 
+0x4cc 001740 branch p_le_send_att_find_value_by_type_hid ,zero 
+0x4cd 001741 setarg uuid_service_battery 
+0x4ce 001742 isub temp ,null 
+0x4cf 001743 branch p_le_send_att_find_value_by_type_battery ,zero 
+0x4d0 001744 setarg uuid_service_device_info 
+0x4d1 001745 isub temp ,null 
+0x4d2 001746 branch p_le_send_att_find_value_by_type_device_info ,zero 
+0x4d3 001747 setarg uuid_service_generic_att 
+0x4d4 001748 isub temp ,null 
+0x4d5 001749 branch p_le_send_att_find_value_by_type_gatt ,zero 
+0x4d6 001750 branch le_send_att_find_by_type_value_response + 2 
+:      001752 p_le_send_find_value_by_type:
+0x4d7 001753 fetch 1 ,mem_shutter_find_type_value_flag 
+0x4d8 001754 arg 0 ,temp 
+0x4d9 001755 qset1 temp 
+0x4da 001756 iand temp ,pdata 
+0x4db 001757 bne 0 ,le_send_att_error_response_notfound 
+0x4dc 001758 fetch 1 ,mem_shutter_find_type_value_flag 
+0x4dd 001759 qset1 pdata 
+0x4de 001760 store 1 ,mem_shutter_find_type_value_flag 
+0x4df 001761 branch p_le_send_att_find_value_by_type_command 
+:      001763 p_le_send_att_find_value_by_type_hid:
+0x4e0 001764 arg le_find_type_value_hid_bit ,queue 
+0x4e1 001765 branch p_le_send_find_value_by_type 
+:      001767 p_le_send_att_find_value_by_type_battery:
+0x4e2 001768 arg le_find_type_value_battery_bit ,queue 
+0x4e3 001769 branch p_le_send_find_value_by_type 
+:      001771 p_le_send_att_find_value_by_type_gatt:
+0x4e4 001772 arg le_find_type_value_gatt_bit ,queue 
+0x4e5 001773 branch p_le_send_find_value_by_type 
+:      001774 p_le_send_att_find_value_by_type_device_info:
+0x4e6 001775 arg le_find_type_value_device_info_bit ,queue 
+0x4e7 001776 branch p_le_send_find_value_by_type 
+:      001777 p_le_send_att_find_value_by_type_command:
+0x4e8 001778 fetch 2 ,mem_le_search_att_type 
+0x4e9 001779 copy pdata ,rega 
+0x4ea 001780 fetcht 2 ,mem_le_uuid 
+0x4eb 001781 copy temp ,regb 
+0x4ec 001782 call p_find_type_value_start_handle 
+0x4ed 001783 branch p_le_save_find_value_handle ,zero 
+0x4ee 001784 branch le_send_att_error_response_notfound 
+:      001786 p_find_type_value_start_handle:
+0x4ef 001787 arg mem_le_att_list ,contr 
+:      001788 p_find_type_value_start_handle_loop:
+0x4f0 001789 ifetch 2 ,contr 
+0x4f1 001790 rtn blank 
+0x4f2 001791 ifetch 3 ,contr 
+0x4f3 001792 ifetch 2 ,contr 
+0x4f4 001793 isub rega ,null 
+0x4f5 001794 rtn zero 
+0x4f6 001795 increase -3 ,contr 
+0x4f7 001796 ifetch 1 ,contr 
+0x4f8 001797 iadd contr ,contr 
+0x4f9 001798 branch p_find_type_value_start_handle_loop 
+:      001800 p_le_save_find_value_handle:
+0x4fa 001801 increase -7 ,contr 
+0x4fb 001802 ifetch 2 ,contr 
+0x4fc 001803 store 2 ,mem_le_find_type_value_start_handle 
+0x4fd 001804 call p_find_type_value_end_handle 
+0x4fe 001805 branch le_send_att_error_response_notfound ,blank 
+0x4ff 001806 increase -4 ,contr 
+0x500 001807 ifetch 2 ,contr 
+0x501 001808 increase -1 ,pdata 
+0x502 001809 store 2 ,mem_le_find_type_value_end_handle 
+0x503 001810 jam attop_find_by_type_value_response ,mem_le_l2cap 
+0x504 001811 fetch 4 ,mem_le_find_type_value_start_handle 
+0x505 001812 store 4 ,mem_le_l2cap_response 
+0x506 001815 force 9 ,temp 
+0x507 001816 branch le_send_packet 
+:      001818 p_find_type_value_end_handle:
+0x508 001819 ifetch 2 ,contr 
+0x509 001820 ifetch 1 ,contr 
+0x50a 001821 iadd contr ,contr 
+:      001822 p_find_type_value_end_handle_loop:
+0x50b 001823 ifetch 2 ,contr 
+0x50c 001824 rtn blank 
+0x50d 001825 ifetch 2 ,contr 
+0x50e 001826 isub regb ,null 
+0x50f 001827 rtn zero 
+0x510 001828 ifetch 1 ,contr 
+0x511 001829 iadd contr ,contr 
+0x512 001830 branch p_find_type_value_end_handle_loop 
+:      001832 p_le_send_att_find_information_response:
+0x513 001833 arg 3 ,timeup 
+0x514 001834 force 1 ,pdata 
+0x515 001835 store 1 ,mem_le_l2cap_response 
+0x516 001836 call le_init_attlist_search 
+:      001837 p_le_send_att_find_information_res_loop:
+0x517 001838 call le_att_handle_inrange 
+0x518 001839 branch le_send_att_find_information_res_end ,blank 
+0x519 001840 nbranch p_le_send_att_find_information_res_next ,positive 
+0x51a 001841 disable user 
+0x51b 001842 istore 2 ,contw 
+0x51c 001843 ifetch 2 ,contr 
+0x51d 001844 istore 2 ,contw 
+0x51e 001845 increase -1 ,timeup 
+0x51f 001846 branch le_send_att_find_information_res_end ,zero 
+:      001847 p_le_send_att_find_information_res_cont:
+0x520 001848 ifetch 1 ,contr 
+0x521 001849 iadd contr ,contr 
+0x522 001850 branch p_le_send_att_find_information_res_loop 
+:      001851 p_le_send_att_find_information_res_next:
+0x523 001852 increase 2 ,contr 
+0x524 001853 branch p_le_send_att_find_information_res_cont 
+:      001857 p_le_send_att_read_by_type_response:
+0x525 001858 fetcht 2 ,mem_le_search_att_type 
+0x526 001859 setarg uuid_chrctr_device_name 
+0x527 001860 isub temp ,null 
+0x528 001861 branch p_le_send_att_read_by_type_res_device_name ,zero 
+0x529 001862 setarg uuid_pnp_id 
+0x52a 001863 isub temp ,null 
+0x52b 001864 branch p_le_send_att_read_by_type_res_pnp_id ,zero 
+0x52c 001865 setarg uuid_gatt_characteristic 
+0x52d 001866 isub temp ,null 
+0x52e 001867 nbranch le_send_att_error_response_notfound ,zero 
+0x52f 001868 fetch 2 ,mem_le_search_handle_start 
+0x530 001869 store 2 ,mem_temp 
+0x531 001870 enable user 
+:      001871 p_le_send_att_read_by_type_response_loop:
+0x532 001872 call p_le_att_handle_inrange 
+0x533 001873 nbranch p_le_send_att_read_by_type_response_end ,positive 
+0x534 001874 fetcht 2 ,mem_temp 
+0x535 001875 call p_le_att_get_handle_info 
+0x536 001876 beq 1 ,p_le_send_att_read_by_type_response_end 
+0x537 001877 call p_le_att_same_type 
+0x538 001878 nbranch p_le_send_att_read_by_type_response_next_handle ,zero 
+0x539 001879 disable user 
+0x53a 001880 call p_le_send_att_read_by_type_write_properties 
+0x53b 001881 call p_le_att_next_handle 
+0x53c 001882 call p_le_att_get_handle_info 
+0x53d 001883 call p_le_send_att_read_by_type_write_uuid 
+0x53e 001884 branch p_le_send_att_read_by_type_response_end 
+:      001885 p_le_send_att_read_by_type_response_next_handle:
+0x53f 001886 call p_le_att_next_handle 
+0x540 001887 branch p_le_send_att_read_by_type_response_loop 
+:      001888 p_le_send_att_read_by_type_response_end:
+0x541 001889 branch le_send_att_error_response_notfound ,user 
+0x542 001890 branch p_le_send_auto_len_by_mem 
+:      001891 p_le_send_att_read_by_type_write_properties:
+0x543 001892 fetch 2 ,mem_temp 
+0x544 001893 store 2 ,mem_le_l2cap_response + 1 
+0x545 001894 fetch 1 ,mem_le_search_len 
+0x546 001895 copy pdata ,loopcnt 
+0x547 001896 call p_get_contr 
+0x548 001897 arg mem_le_l2cap_response + 3 ,contw 
+0x549 001898 call memcpy 
+0x54a 001899 branch p_store_contw 
+:      001900 p_le_send_att_read_by_type_write_uuid:
+0x54b 001901 fetcht 2 ,mem_le_cur_att_type 
+0x54c 001902 rshift8 temp ,pdata 
+0x54d 001903 bne 0x05 ,p_le_send_att_read_by_type_write_short_uuid 
+0x54e 001904 call p_get_contw 
+0x54f 001905 fetch 2 ,mem_temp 
+0x550 001906 istore 2 ,contw 
+0x551 001907 call p_store_contw 
+0x552 001908 setarg mem_le_att_list 
+0x553 001909 iadd temp ,contr 
+0x554 001910 ifetch 1 ,contr 
+0x555 001911 copy contr ,temp 
+0x556 001912 copy pdata ,loopcnt 
+0x557 001913 increase 5 ,pdata 
+0x558 001914 store 1 ,mem_le_l2cap_response 
+0x559 001915 call p_get_contw 
+0x55a 001916 copy temp ,contr 
+0x55b 001917 call memcpy 
+0x55c 001918 branch p_store_contw 
+:      001919 p_le_send_att_read_by_type_write_short_uuid:
+0x55d 001920 call p_get_contw 
+0x55e 001921 fetch 2 ,mem_temp 
+0x55f 001922 istore 2 ,contw 
+0x560 001923 fetch 2 ,mem_le_cur_att_type 
+0x561 001924 istore 2 ,contw 
+0x562 001925 call p_store_contw 
+0x563 001926 jam 7 ,mem_le_l2cap_response 
+0x564 001927 rtn 
+:      001928 p_le_send_att_read_by_type_res_device_name:
+0x565 001929 call le_get_device_name 
+:      001930 p_le_send_att_read_by_type_res_packet:
+0x566 001931 ifetch 1 ,contr 
+0x567 001932 copy pdata ,loopcnt 
+0x568 001933 increase 2 ,pdata 
+0x569 001934 store 1 ,mem_le_l2cap_response 
+0x56a 001935 increase -5 ,contr 
+0x56b 001936 ifetch 2 ,contr 
+0x56c 001937 istore 2 ,contw 
+0x56d 001938 increase 3 ,contr 
+0x56e 001939 call memcpy 
+0x56f 001940 branch le_send_autolen 
+:      001942 p_le_send_att_read_by_type_res_pnp_id:
+0x570 001943 arg uuid_pnp_id ,temp 
+0x571 001944 call le_att_get_uuid_ptr 
+0x572 001945 branch p_le_send_att_read_by_type_res_packet 
+:      001947 p_le_send_att_read_by_group_type_response:
+0x573 001949 arg 2 ,timeup 
+0x574 001950 fetch 2 ,mem_le_search_handle_start 
+0x575 001951 store 2 ,mem_temp 
+0x576 001952 jam 0 ,mem_le_search_res 
+0x577 001953 enable user 
+:      001954 p_le_send_att_read_by_group_type_response_loop:
+0x578 001955 call p_le_att_handle_inrange 
+0x579 001956 nbranch p_le_send_att_read_by_group_type_end0 ,positive 
+0x57a 001957 fetcht 2 ,mem_temp 
+0x57b 001958 call p_le_att_get_handle_info 
+0x57c 001959 beq 1 ,p_le_send_att_read_by_group_type_end1 
+0x57d 001960 call p_le_att_same_type 
+0x57e 001961 nbranch p_le_send_att_read_by_group_type_next_handle ,zero 
+0x57f 001962 fetch 1 ,mem_le_search_res 
+0x580 001963 beq 1 ,p_le_send_att_read_by_group_type_end1 
+0x581 001964 nbranch p_le_send_att_read_by_group_type_store_write_record ,user 
+0x582 001965 disable user 
+0x583 001966 fetch 1 ,mem_le_search_len 
+0x584 001967 increase 4 ,pdata 
+0x585 001968 store 1 ,mem_le_l2cap_response 
+0x586 001969 call p_store_contw 
+0x587 001970 branch p_le_send_att_read_by_group_type_store_record 
+:      001971 p_le_send_att_read_by_group_type_store_write_record:
+0x588 001972 fetch 1 ,mem_le_search_len 
+0x589 001973 sub pdata ,0x10 ,null 
+0x58a 001974 branch p_le_send_att_read_by_group_type_end1 ,zero 
+0x58b 001975 fetch 1 ,mem_le_l2cap_response 
+0x58c 001976 sub pdata ,0x10 ,null 
+0x58d 001977 branch p_le_send_att_read_by_group_type_end1 ,zero 
+0x58e 001978 fetch 2 ,mem_temp 
+0x58f 001979 increase -1 ,pdata 
+0x590 001980 store 2 ,mem_le_cur_handle_end 
+0x591 001981 call p_le_write_att_record 
+:      001982 p_le_send_att_read_by_group_type_store_record:
+0x592 001983 fetch 2 ,mem_temp 
+0x593 001984 store 2 ,mem_le_cur_handle_start 
+0x594 001985 call p_le_store_att_record 
+0x595 001986 increase -1 ,timeup 
+0x596 001987 branch p_le_send_att_read_by_group_type_last_find ,zero 
+:      001988 p_le_send_att_read_by_group_type_next_handle:
+0x597 001989 call p_le_att_next_handle 
+0x598 001990 branch p_le_send_att_read_by_group_type_response_loop 
+:      001991 p_le_send_att_read_by_group_type_last_find:
+0x599 001992 jam 1 ,mem_le_search_res 
+0x59a 001993 branch p_le_send_att_read_by_group_type_next_handle 
+:      001994 p_le_send_att_read_by_group_type_end0:
+0x59b 001995 fetch 2 ,mem_temp 
+0x59c 001996 store 2 ,mem_le_cur_handle_end 
+0x59d 001997 branch p_le_send_att_read_by_group_type_end_common 
+:      001998 p_le_send_att_read_by_group_type_end1:
+0x59e 001999 fetch 2 ,mem_temp 
+0x59f 002000 increase -1 ,pdata 
+0x5a0 002001 store 2 ,mem_le_cur_handle_end 
+0x5a1 002002 branch p_le_send_att_read_by_group_type_end_common 
+:      002003 p_le_send_att_read_by_group_type_end_common:
+0x5a2 002004 branch le_send_att_error_response_notfound ,user 
+0x5a3 002005 call p_le_write_att_record 
+0x5a4 002006 branch p_le_send_auto_len_by_mem 
+:      002008 p_le_att_next_handle:
+0x5a5 002009 fetcht 2 ,mem_temp 
+0x5a6 002010 increase 1 ,temp 
+0x5a7 002011 storet 2 ,mem_temp 
+0x5a8 002012 rtn 
+:      002014 p_le_store_att_record:
+0x5a9 002015 fetch 1 ,mem_le_search_len 
+0x5aa 002016 store 1 ,mem_tmp_buffer 
+0x5ab 002017 copy pdata ,loopcnt 
+0x5ac 002018 call p_get_contr 
+0x5ad 002019 branch memcpy 
+:      002021 p_le_write_att_record:
+0x5ae 002022 call p_get_contw 
+0x5af 002023 fetch 2 ,mem_le_cur_handle_start 
+0x5b0 002024 istore 2 ,contw 
+0x5b1 002025 fetch 2 ,mem_le_cur_handle_end 
+0x5b2 002026 istore 2 ,contw 
+0x5b3 002027 fetch 1 ,mem_tmp_buffer 
+0x5b4 002028 copy pdata ,loopcnt 
+0x5b5 002029 call memcpy 
+0x5b6 002030 branch p_store_contw 
+:      002033 p_le_att_handle_inrange:
+0x5b7 002034 fetcht 2 ,mem_temp 
+0x5b8 002035 fetch 2 ,mem_le_search_handle_end 
+0x5b9 002036 isub temp ,null 
+0x5ba 002037 rtn 
+:      002039 p_le_att_same_type:
+0x5bb 002040 fetch 2 ,mem_le_search_att_type 
+0x5bc 002041 fetcht 2 ,mem_le_cur_att_type 
+0x5bd 002042 isub temp ,null 
+0x5be 002043 rtn 
+:      002045 p_le_att_get_handle_info:
+0x5bf 002046 arg mem_le_att_list ,contr 
+0x5c0 002047 copy temp ,rega 
+:      002048 p_le_att_get_handle_loop:
+0x5c1 002049 ifetch 2 ,contr 
+0x5c2 002050 branch p_le_att_unfind_handle ,blank 
+0x5c3 002051 ifetcht 2 ,contr 
+0x5c4 002052 storet 2 ,mem_le_cur_att_type 
+0x5c5 002053 isub rega ,null 
+0x5c6 002054 branch p_le_att_finded_handle ,zero 
+0x5c7 002055 ifetch 1 ,contr 
+0x5c8 002056 iadd contr ,contr 
+0x5c9 002057 branch p_le_att_get_handle_loop 
+:      002058 p_le_att_unfind_handle:
+0x5ca 002059 setarg 1 
+0x5cb 002060 rtn 
+:      002061 p_le_att_finded_handle:
+0x5cc 002062 ifetch 1 ,contr 
+0x5cd 002063 store 1 ,mem_le_search_len 
+0x5ce 002064 call p_store_contr 
+0x5cf 002065 setarg 0 
+0x5d0 002066 rtn 
+:      002067 p_get_contw:
+0x5d1 002068 fetch 2 ,mem_contw 
+0x5d2 002069 copy pdata ,contw 
+0x5d3 002070 rtn 
+:      002071 p_get_contr:
+0x5d4 002072 fetch 2 ,mem_contr 
+0x5d5 002073 copy pdata ,contr 
+0x5d6 002074 rtn 
+:      002075 p_store_contw:
+0x5d7 002076 copy contw ,pdata 
+0x5d8 002077 store 2 ,mem_contw 
+0x5d9 002078 rtn 
+:      002079 p_store_contr:
+0x5da 002080 copy contr ,pdata 
+0x5db 002081 store 2 ,mem_contr 
+0x5dc 002082 rtn 
+:      002084 p_le_send_auto_len_by_mem:
+0x5dd 002085 call p_get_contw 
+0x5de 002086 branch le_send_autolen 
+:      002088 p_le_send_att_handle_value_indication:
+:      002089 p_le_send_att_handle_value_notification:
+0x5df 002090 fetch 1 ,mem_queue_read 
+0x5e0 002091 add pdata ,1 ,temp 
+0x5e1 002092 and temp ,0x03 ,temp 
+0x5e2 002093 storet 1 ,mem_queue_read 
+0x5e3 002094 mul32 pdata ,7 ,pdata 
+0x5e4 002095 arg mem_uart_packet ,contr 
+0x5e5 002096 iadd contr ,contr 
+0x5e6 002097 fetch 1 ,mem_le51_tx_length 
+0x5e7 002098 increase -5 ,pdata 
+0x5e8 002099 copy pdata ,loopcnt 
+0x5e9 002100 arg mem_le_l2cap + 1 ,contw 
+0x5ea 002101 call memcpy 
+0x5eb 002102 fetcht 1 ,mem_le51_tx_length 
+0x5ec 002103 branch le_send_packet 
+:      002105 p_le_parse:
+0x5ed 002106 call le_xtype_fifo_is_full 
+0x5ee 002107 branch le_parse + 4 
+:      002110 p_le_parse_ll:
+0x5ef 002111 copy regc ,pdata 
+0x5f0 002112 beq ll_enc_req ,p_le_parse_enc_req 
+0x5f1 002113 beq ll_pause_enc_req ,p_le_parse_pause_enc_rsq 
+0x5f2 002115 beq ll_ping_req ,p_le_parse_ping_req 
+0x5f3 002116 beq ll_terminate_ind ,p_le_parse_terminate_ind 
+0x5f4 002117 sub pdata ,0x0d ,null 
+0x5f5 002118 branch le_parse + 20 ,positive 
+0x5f6 002119 store 1 ,mem_le_ll_unknown_type 
+0x5f7 002120 jam xt_ll_unknown_rsp ,mem_fifo_temp 
+0x5f8 002121 branch le_xtype_fifo_in 
+:      002130 p_le_parse_enc_req:
+0x5f9 002131 jam default_states ,mem_ltk_states 
+0x5fa 002132 branch le_parse_enc_req 
+:      002134 p_le_parse_ping_req:
+0x5fb 002135 jam xt_ll_ping_rsp ,mem_fifo_temp 
+0x5fc 002136 branch le_xtype_fifo_in 
+:      002138 p_le_parse_pause_enc_rsq:
+0x5fd 002139 jam xt_ll_pause_enc_rsp ,mem_fifo_temp 
+0x5fe 002140 branch le_xtype_fifo_in 
+:      002142 p_le_parse_terminate_ind:
+0x5ff 002143 setarg 20 
+0x600 002144 store 2 ,mem_le_superto 
+0x601 002145 rtn 
+:      002147 p_le_send_non_l2cap:
+0x602 002148 fetch 1 ,mem_le_txheader 
+0x603 002149 compare 1 ,type ,3 
+0x604 002150 branch p_le_send_non_l2cap1 ,true 
+0x605 002151 branch le_send_non_l2cap + 14 
+:      002152 p_le_send_non_l2cap1:
+0x606 002153 fetch 1 ,mem_le_txlen 
+0x607 002154 branch p_le_send_empty_clear_md ,blank 
+0x608 002155 branch le_send_non_l2cap + 14 
+:      002157 p_le_send_empty_clear_md:
+0x609 002158 fetch 1 ,mem_le_txheader 
+0x60a 002159 set0 md ,pdata 
+0x60b 002160 store 1 ,mem_le_txheader 
+0x60c 002161 rtn 
+:      002163 p_le_parse_smp:
+0x60d 002164 ifetch 1 ,contr 
+0x60e 002165 beq smp_pairing_request ,p_le_parse_smp_pairing_request 
+0x60f 002166 beq smp_pairing_random ,p_le_parse_smp_pairing_random 
+0x610 002167 beq smp_identity_address_information ,p_le_parse_smp_identity_address_information 
+0x611 002168 branch le_parse_smp + 4 
+:      002171 p_le_parse_smp_identity_address_information:
+0x612 002172 jam flag_le_pairing_end ,mem_le_pairing_state 
+0x613 002173 branch le_parse_smp_identity_address_information 
+:      002175 p_le_parse_smp_pairing_request:
+0x614 002176 jam 1 ,mem_le_send_security_request_flag 
+0x615 002177 store 1 ,mem_le_preq 
+0x616 002178 ifetch 6 ,contr 
+0x617 002179 istore 6 ,contw 
+0x618 002180 jam xt_smp_pairing_response ,mem_fifo_temp 
+0x619 002181 branch le_xtype_fifo_in 
+:      002183 p_le_parse_smp_pairing_random:
+0x61a 002184 call authenticate_rconfirm 
+0x61b 002185 branch p_le_parse_smp_pairing_random_success ,zero 
+0x61c 002186 branch le_parse_smp_pairing_random + 2 
+:      002187 p_le_parse_smp_pairing_random_success:
+0x61d 002188 jam flag_le_pairing_after_auth ,mem_le_pairing_state 
+0x61e 002189 branch le_parse_smp_pairing_random_success 
+:      002219 scale_process_le_conn:
+0x61f 002220 jam pair_unknown ,mem_pair_state 
+0x620 002221 call app_ble_stop_adv 
+0x621 002222 call app_bt_stop_discovery 
+0x622 002223 call app_lpm_mult_enable 
+0x623 002224 branch app_le_event_bb_connected 
+:      002227 scale_process_le_discon:
+0x624 002228 jam 0 ,mem_lpm_mult 
+0x625 002229 jam 0 ,mem_ltk_exists 
+0x626 002230 jam default_states ,mem_ltk_states 
+0x627 002231 jam flag_le_pairing_null ,mem_le_pairing_state 
+0x628 002232 jam 0 ,mem_shutter_find_type_value_flag 
+0x629 002233 jam pair_unknown ,mem_pair_state 
+0x62a 002234 branch app_le_event_bb_disconn 
+:      002237 p_le_queue_init:
+0x62b 002238 setarg 0 
+0x62c 002239 store 4 ,mem_queue_write 
+0x62d 002240 rtn 
+:      002243 p_g24_dispatch:
+0x62e 002244 rtnmark0 mark_24g 
+0x62f 002245 fetch 4 ,mem_24g_enter_hibernate 
+0x630 002246 store 4 ,mem_24g_enter_hibernate_setup 
+0x631 002247 call p_g24_txdata_prep 
+0x632 002248 nbranch p_g24_long_sleep ,user 
+0x633 002249 jam 10 ,mem_24g_enter_lpm_timer 
+0x634 002250 call p_g24_transmit_packet 
+0x635 002251 fetch 1 ,mem_24g_pairing_sm 
+0x636 002252 rtnne state_24g_pairing_success 
+:      002253 p_g24_short_sleep:
+0x637 002254 fetch 1 ,mem_mouse_retry_flag 
+0x638 002255 nrtn blank 
+0x639 002256 call p_check_ipc_for_lpm 
+0x63a 002257 nrtn user 
+0x63b 002258 fetch 1 ,mem_c51_lpm_lock 
+0x63c 002259 nrtn blank 
+0x63d 002260 call lpo_calibration 
+0x63e 002261 fetch 3 ,mem_clks_per_lpo 
+0x63f 002262 rtn blank 
+0x640 002263 fetch 1 ,mem_lpm_mode 
+0x641 002264 rtn blank 
+:      002265 p_g24_short_sleep_1:
+0x642 002268 fetch 3 ,mem_24g_short_sleep_counter 
+:      002269 p_g24_short_sleep_2:
+0x643 002270 call clk2lpo 
+0x644 002271 storet 4 ,mem_sleep_counter 
+0x645 002272 branch lpm_sleep 
+:      002274 p_g24_long_sleep:
+0x646 002275 call p_check_ipc_for_lpm 
+0x647 002276 nrtn user 
+0x648 002277 fetch 1 ,mem_c51_lpm_lock 
+0x649 002278 nrtn blank 
+0x64a 002279 call lpo_calibration 
+0x64b 002280 fetch 3 ,mem_clks_per_lpo 
+0x64c 002281 rtn blank 
+0x64d 002282 fetch 1 ,mem_lpm_mode 
+0x64e 002283 rtn blank 
+0x64f 002284 fetch 1 ,mem_24g_enter_lpm_timer 
+0x650 002285 nbranch p_g24_short_sleep_1 ,blank 
+0x651 002286 fetch 4 ,mem_24g_enter_hibernate_setup 
+0x652 002287 branch p_g24_short_sleep_2 
+:      002289 p_g24_txdata_prep:
+0x653 002290 fetch 1 ,mem_24g_pairing_sm 
+0x654 002291 bne state_24g_pairing_success ,p_g24_pairing_sm 
+0x655 002292 call p_g24_package_data 
+0x656 002293 call p_g24_get_package_data ,user 
+0x657 002294 call p_g24_transmit_prep ,user 
+:      002295 p_g24_txdata_enable_tx:
+0x658 002296 jam ensure_on_24g ,mem_24g_ensure 
+0x659 002297 rtn 
+:      002299 p_g24_package_data:
+0x65a 002300 disable user 
+0x65b 002301 jam 2 ,mem_24g_data_type 
+0x65c 002302 fetch 1 ,mem_24g_txbuf_new 
+0x65d 002303 beq 0x04 ,p_g24_dataready 
+0x65e 002304 beq 0x05 ,p_g24_dataready_mk 
+0x65f 002305 beq 0x06 ,p_g24_dataready_ms 
+0x660 002306 beq 0x07 ,p_g24_dataready_sys 
+0x661 002307 beq 0x08 ,p_g24_dataready_game 
+0x662 002308 fetch 1 ,mem_mouse_retry_flag 
+0x663 002309 ncall enable_user ,blank 
+0x664 002310 rtn 
+:      002311 p_g24_dataready:
+0x665 002312 jam 0x00 ,mem_24g_txbuf_new 
+0x666 002313 jam 10 ,mem_24g_datalen 
+0x667 002314 branch p_g24_package_data_rtn 
+:      002316 p_g24_dataready_game:
+0x668 002317 jam 0x08 ,mem_24g_txbuf_new 
+0x669 002318 jam 16 ,mem_24g_datalen 
+0x66a 002319 branch p_g24_package_data_rtn 
+:      002321 p_g24_dataready_mk:
+0x66b 002322 jam 0x03 ,mem_24g_txbuf_new 
+0x66c 002323 jam 4 ,mem_24g_datalen 
+0x66d 002324 branch p_g24_package_data_rtn 
+:      002325 p_g24_dataready_sys:
+0x66e 002326 jam 0x02 ,mem_24g_txbuf_new 
+0x66f 002327 jam 3 ,mem_24g_datalen 
+0x670 002328 branch p_g24_package_data_rtn 
+:      002329 p_g24_dataready_ms:
+0x671 002330 jam 1 ,mem_24g_data_type 
+0x672 002331 jam 8 ,mem_24g_datalen 
+:      002332 p_g24_package_data_rtn:
+0x673 002333 jam 0 ,mem_24g_get_ack_fail 
+0x674 002334 branch enable_user 
+:      002337 p_g24_get_package_data:
+0x675 002338 arg mem_24g_txbuf ,contw 
+0x676 002339 arg mem_24g_txbuf_new ,contr 
+0x677 002340 arg 20 ,loopcnt 
+0x678 002341 branch memcpy 
+:      002344 p_g24_transmit_packet:
+0x679 002345 jam 0 ,mem_24g_retry 
+:      002346 p_g24_transmit_loop:
+0x67a 002347 arg param_rx_setup ,timeup 
+0x67b 002348 until clkn_rt ,meet 
+0x67c 002349 call p_g24_transmit_receive_ack 
+0x67d 002350 nbranch p_g24_retransmit ,user3 
+0x67e 002351 call p_g24_ackpayload_parse 
+0x67f 002352 fetch 1 ,mem_24g_pid 
+0x680 002353 increase 1 ,pdata 
+0x681 002354 store 1 ,mem_24g_pid 
+0x682 002355 jam 0 ,mem_mouse_retry_flag 
+0x683 002356 fetch 1 ,mem_24g_pairing_sm 
+0x684 002357 bne state_24g_pairing_success ,p_g24_paring_mode_start 
+:      002358 p_g24_transmit_abandon:
+0x685 002359 call p_g24_clear_txbuf 
+0x686 002360 jam 0 ,mem_24g_get_ack_fail 
+0x687 002361 jam ensure_off_24g ,mem_24g_ensure 
+0x688 002362 rtn 
+:      002365 p_g24_retransmit:
+0x689 002366 jam 1 ,mem_mouse_retry_flag 
+0x68a 002367 fetch 1 ,mem_24g_get_ack_fail 
+0x68b 002368 increase 1 ,pdata 
+0x68c 002369 store 1 ,mem_24g_get_ack_fail 
+0x68d 002370 fetch 1 ,mem_24g_pairing_sm 
+0x68e 002371 bne state_24g_pairing_success ,p_g24_tx_paring_retry 
+0x68f 002372 fetch 1 ,mem_24g_get_ack_fail 
+0x690 002373 beq 0xff ,p_g24_stop_g24_mode 
+0x691 002374 fetch 1 ,mem_24g_get_ack_fail 
+0x692 002375 arg 16 ,temp 
+0x693 002376 isub temp ,null 
+0x694 002377 branch p_g24_ch ,positive 
+0x695 002378 fetch 1 ,mem_24g_retry 
+0x696 002379 increase 1 ,pdata 
+0x697 002380 store 1 ,mem_24g_retry 
+0x698 002381 nop 10 
+0x699 002382 bne retry_24g ,p_g24_transmit_loop 
+0x69a 002383 branch p_g24_ch 
+:      002386 p_g24_clear_txbuf:
+0x69b 002387 setarg 0 
+0x69c 002388 store 20 ,mem_24g_txbuf 
+0x69d 002389 store 20 ,mem_24g_txbuf_new 
+0x69e 002390 rtn 
+:      002402 p_g24_paring_mode_start:
+0x69f 002403 branch p_g24_paring_mode 
+:      002405 p_g24_transmit_receive_ack:
+0x6a0 002406 disable user3 
+0x6a1 002407 call p_g24_transmit 
+0x6a2 002410 force 0 ,radio_ctrl 
+0x6a3 002411 fetch 4 ,mem_24g_addr 
+0x6a4 002412 iforce access 
+0x6a5 002413 fetcht 1 ,mem_last_freq 
+0x6a6 002414 call set_freq_rx 
+0x6a7 002415 call rf_rx_enable 
+0x6a8 002416 call p_g24_receive_rxon 
+0x6a9 002417 call p_g24_end_of_packet ,user3 
+0x6aa 002418 rtn 
+:      002425 p_g24_tx_paring_retry:
+0x6ab 002426 rtn 
+:      002430 p_g24_stop_g24_mode:
+0x6ac 002431 jam 0 ,mem_mouse_retry_flag 
+0x6ad 002432 jam bt_evt_24g_attempt_fail ,mem_fifo_temp 
+0x6ae 002433 branch ui_ipc_send_event 
+:      002436 p_g24_ackpayload_parse:
+0x6af 002437 call p_g24_read_len_pid_crc 
+0x6b0 002438 fetch 1 ,mem_24g_rxbuf 
+0x6b1 002439 rtnne 0x02 
+0x6b2 002440 fetch 1 ,mem_24g_rxdata_length 
+0x6b3 002441 rtn blank 
+0x6b4 002442 iforce loopcnt 
+0x6b5 002443 arg mem_24g_rxbuf + 2 ,contr 
+0x6b6 002444 arg mem_24g_rxpayload ,contw 
+0x6b7 002445 call memcpy 
+0x6b8 002446 fetch 1 ,mem_24g_rxbuf + 1 
+0x6b9 002447 compare 0x08 ,pdata ,0xf8 
+0x6ba 002448 nrtn true 
+0x6bb 002449 fetch 1 ,mem_24g_rxbuf + 2 
+0x6bc 002450 beq 0xff ,p_pc_sleep_mode 
+0x6bd 002451 store 1 ,mem_caps_num_lock 
+0x6be 002453 rtn 
+:      002455 p_pc_sleep_mode:
+0x6bf 002456 jam 1 ,mem_pc_sleep_flag 
+0x6c0 002457 rtn 
+:      002461 p_g24_start_pairing_sm1:
+0x6c1 002462 set1 mark_24g ,mark 
+0x6c2 002463 call p_g24_pair_init 
+0x6c3 002464 call p_g24_transmit_abandon 
+0x6c4 002465 jam state_24g_pairing_1 ,mem_24g_pairing_sm 
+0x6c5 002466 rtn 
+:      002468 p_g24_pair_init:
+0x6c6 002469 jam 0 ,mem_24g_pid 
+0x6c7 002470 jam g24_pair_ch ,mem_24g_ch 
+0x6c8 002471 fetch 4 ,mem_24g_paring_addr 
+0x6c9 002472 branch p_g24_update_addr_and_synccrc8 
+:      002474 p_g24_pairing_sm:
+0x6ca 002475 call p_g24_pair_init 
+0x6cb 002476 fetch 1 ,mem_24g_ensure 
+0x6cc 002477 beq ensure_on_24g ,enable_user 
+0x6cd 002478 fetch 1 ,mem_24g_pairing_sm 
+0x6ce 002479 beq state_24g_pairing_1 ,p_g24_pairing_sm_1 
+0x6cf 002480 beq state_24g_pairing_2 ,p_g24_pairing_sm_2 
+0x6d0 002481 beq state_24g_pairing_3 ,p_g24_pairing_sm_3 
+0x6d1 002482 branch assert 
+:      002484 p_g24_pairing_sm_1:
+0x6d2 002485 jam state_24g_pairing_1_waiting_ack ,mem_24g_pairing_sm 
+0x6d3 002486 jam 0xaa ,mem_24g_common_temp 
+0x6d4 002487 branch p_g24_pairing_sm_common 
+:      002488 p_g24_pairing_sm_2:
+0x6d5 002489 jam state_24g_pairing_2_waiting_ack ,mem_24g_pairing_sm 
+0x6d6 002490 jam 0x55 ,mem_24g_common_temp 
+0x6d7 002491 branch p_g24_pairing_sm_common 
+:      002492 p_g24_pairing_sm_3:
+0x6d8 002493 jam state_24g_pairing_3_waiting_ack ,mem_24g_pairing_sm 
+0x6d9 002494 jam 0x22 ,mem_24g_common_temp 
+:      002495 p_g24_pairing_sm_common:
+0x6da 002499 jam 0x02 ,mem_24g_common_temp + 1 
+0x6db 002500 fetch 4 ,mem_24g_device_addr 
+0x6dc 002501 store 4 ,mem_24g_common_temp + 2 
+0x6dd 002502 jam 0 ,mem_24g_common_temp + 6 
+0x6de 002503 arg mem_24g_common_temp ,rega 
+0x6df 002504 arg 7 ,temp 
+0x6e0 002505 call p_g24_put_data_in_buff 
+0x6e1 002506 call p_g24_transmit_prep 
+0x6e2 002507 call p_g24_txdata_enable_tx 
+0x6e3 002508 branch enable_user 
+:      002510 p_g24_paring_mode:
+0x6e4 002511 fetch 1 ,mem_24g_pairing_sm 
+0x6e5 002512 rtneq state_24g_pairing_success 
+0x6e6 002513 beq state_24g_pairing_1_waiting_ack ,p_g24_pairing_sm_1_waiting_ack 
+0x6e7 002514 beq state_24g_pairing_2_waiting_ack ,p_g24_pairing_sm_2_waiting_ack 
+0x6e8 002515 beq state_24g_pairing_3_waiting_ack ,p_g24_pairing_sm_3_waiting_ack 
+0x6e9 002516 rtn 
+:      002519 p_g24_pairing_sm_1_waiting_ack:
+0x6ea 002520 jam state_24g_pairing_2 ,mem_24g_pairing_sm 
+0x6eb 002521 branch p_g24_transmit_abandon 
+:      002522 p_g24_pairing_sm_2_waiting_ack:
+0x6ec 002523 jam state_24g_pairing_3 ,mem_24g_pairing_sm 
+0x6ed 002524 branch p_g24_transmit_abandon 
+:      002525 p_g24_pairing_sm_3_waiting_ack:
+0x6ee 002526 jam state_24g_pairing_success ,mem_24g_pairing_sm 
+0x6ef 002527 jam bt_evt_24g_pairing_complete ,mem_fifo_temp 
+0x6f0 002528 call ui_ipc_send_event 
+0x6f1 002529 fetch 4 ,mem_24g_rxpayload + 2 
+0x6f2 002530 call p_g24_update_addr_and_synccrc8 
+0x6f3 002531 branch p_g24_transmit_abandon 
+:      002533 p_g24_start_24g_mode:
+0x6f4 002535 set1 mark_24g ,mark 
+0x6f5 002536 call p_g24_syncword_crc8 
+0x6f6 002537 call p_g24_ch 
+0x6f7 002538 fetch 1 ,mem_24g_pairing_sm 
+0x6f8 002539 rtnne state_24g_pairing_success 
+0x6f9 002540 call p_g24_tx_attemp_data_prep 
+0x6fa 002541 setarg 0 
+0x6fb 002542 store 2 ,mem_24g_check_dongle_times 
+:      002543 p_g24_tx_attemp_dongle_loop:
+0x6fc 002544 call lpo_calibration 
+0x6fd 002545 nop 2000 
+0x6fe 002546 fetch 1 ,mem_24g_check_dongle_times 
+0x6ff 002547 beq 0xff ,p_g24_stop_g24_mode 
+0x700 002548 call p_g24_transmit_receive_ack 
+0x701 002549 nbranch p_g24_attemp_txdata_retry ,user3 
+:      002550 p_g24_tx_attemp_dongle_succ:
+0x702 002551 call p_g24_clear_txbuf 
+0x703 002552 set1 mark_24g ,mark 
+0x704 002553 jam bt_evt_24g_attempt_success ,mem_fifo_temp 
+0x705 002554 branch ui_ipc_send_event 
+:      002557 p_g24_tx_attemp_data_prep:
+0x706 002558 jam 0xff ,mem_24g_common_temp 
+0x707 002559 fetch 1 ,mem_24g_data_type 
+0x708 002560 store 1 ,mem_24g_common_temp + 1 
+0x709 002561 fetch 4 ,mem_24g_device_addr 
+0x70a 002562 store 4 ,mem_24g_common_temp + 2 
+0x70b 002563 arg 6 ,temp 
+0x70c 002564 arg mem_24g_common_temp ,rega 
+0x70d 002565 call p_g24_put_data_in_buff 
+0x70e 002566 branch p_g24_transmit_prep 
+:      002568 p_g24_attemp_txdata_retry:
+0x70f 002569 fetch 2 ,mem_24g_check_dongle_times 
+0x710 002570 increase 1 ,pdata 
+0x711 002571 store 2 ,mem_24g_check_dongle_times 
+0x712 002572 call p_g24_ch 
+0x713 002573 branch p_g24_tx_attemp_dongle_loop 
+:      002576 p_g24_put_data_in_buff:
+0x714 002577 storet 1 ,mem_24g_datalen 
+0x715 002578 copy temp ,loopcnt 
+0x716 002579 arg mem_24g_txbuf ,contw 
+0x717 002580 copy rega ,contr 
+0x718 002581 branch memcpy 
+:      002583 p_g24_read_len_pid_crc:
+0x719 002585 fetch 1 ,mem_24g_rxbuf + 1 
+0x71a 002586 rshift3 pdata ,pdata 
+0x71b 002587 store 1 ,mem_24g_rxdata_length 
+0x71c 002588 rtn 
+:      002590 p_rssi_signal:
+0x71d 002591 fetcht 1 ,mem_rssi_signal_index 
+0x71e 002592 setarg mem_rssi_signal_buf 
+0x71f 002593 iadd temp ,contw 
+0x720 002594 copy rega ,pdata 
+0x721 002595 istore 1 ,contw 
+0x722 002596 increase 1 ,temp 
+0x723 002597 and_into rssi_buf_len_signal ,temp 
+0x724 002598 storet 1 ,mem_rssi_signal_index 
+0x725 002599 rtn 
+:      002619 p_g24_update_addr_and_synccrc8:
+0x726 002620 store 4 ,mem_24g_addr 
+:      002623 p_g24_syncword_crc8:
+0x727 002624 arg 0 ,rega 
+0x728 002625 arg 4 ,loopcnt 
+0x729 002626 arg mem_24g_addr ,contr 
+:      002627 p_g24_syncword_crc8_loop:
+0x72a 002628 ifetch 1 ,contr 
+0x72b 002629 iadd rega ,rega 
+0x72c 002630 loop p_g24_syncword_crc8_loop 
+0x72d 002631 copy rega ,pdata 
+0x72e 002632 store 2 ,mem_24g_syncword 
+0x72f 002633 fetch 1 ,mem_24g_syncword 
+0x730 002634 fetcht 1 ,mem_24g_syncword + 1 
+0x731 002635 iadd temp ,pdata 
+0x732 002636 store 1 ,mem_24g_syncword_crc8 
+0x733 002637 rtn 
+:      002640 p_g24_transmit_prep:
+0x734 002642 fetch 1 ,mem_24g_datalen 
+0x735 002643 increase 2 ,pdata 
+0x736 002644 store 1 ,mem_24g_txlen 
+0x737 002646 fetch 1 ,mem_24g_data_type 
+0x738 002647 store 1 ,mem_24g_txpayload 
+0x739 002649 fetch 1 ,mem_24g_datalen 
+0x73a 002650 lshift3 pdata ,pdata 
+0x73b 002651 fetcht 1 ,mem_24g_pid 
+0x73c 002652 and temp ,0x03 ,temp 
+0x73d 002653 lshift temp ,temp 
+0x73e 002654 ior temp ,pdata 
+0x73f 002655 fetcht 1 ,mem_24g_no_ack 
+0x740 002656 iadd temp ,pdata 
+0x741 002657 istore 1 ,contw 
+0x742 002659 fetch 1 ,mem_24g_pairing_sm 
+0x743 002660 bne state_24g_pairing_success ,p_g24_transmit_prep_pair 
+0x744 002661 fetch 1 ,mem_24g_data_type 
+0x745 002662 istore 1 ,contw 
+:      002663 p_g24_transmit_prep_pair:
+0x746 002664 fetch 1 ,mem_24g_datalen 
+0x747 002665 iforce loopcnt 
+0x748 002666 fetch 1 ,mem_24g_data_type 
+0x749 002667 beq 1 ,p_g24_transmit_prep_mouse 
+0x74a 002668 arg mem_24g_txbuf ,contr 
+0x74b 002669 call memcpy 
+0x74c 002673 fetch 1 ,mem_24g_txbuf 
+0x74d 002674 beq 0x03 ,p_g24_multi_key_setup 
+0x74e 002675 rtn 
+:      002676 p_g24_multi_key_setup:
+0x74f 002677 jam 0x02 ,mem_24g_txbuf 
+0x750 002678 rtn 
+:      002681 p_g24_transmit_prep_mouse:
+0x751 002682 arg mem_24g_txbuf + 1 ,contr 
+0x752 002683 branch memcpy 
+:      002685 p_g24_ch:
+0x753 002686 fetcht 1 ,mem_24g_current_ch_number 
+0x754 002687 call p_g24_ch_calc 
+0x755 002688 increase 1 ,temp 
+0x756 002689 and_into 3 ,temp 
+0x757 002690 storet 1 ,mem_24g_current_ch_number 
+0x758 002691 rtn 
+:      002693 p_g24_ch_calc:
+0x759 002694 fetch 1 ,mem_24g_addr 
+0x75a 002695 and_into 0x03 ,pdata 
+0x75b 002696 mul32 pdata ,4 ,rega 
+0x75c 002697 setarg mem_24g_ch_map1 
+0x75d 002698 iadd rega ,pdata 
+0x75e 002699 iadd temp ,contr 
+0x75f 002700 ifetch 1 ,contr 
+0x760 002701 store 1 ,mem_24g_ch 
+0x761 002702 rtn 
+:      002704 p_g24_prep:
+0x762 002705 disable enable_crc 
+0x763 002706 disable enable_white 
+0x764 002707 setarg 0x555555 
+0x765 002708 iforce crc24_init 
+0x766 002709 fetch 1 ,mem_24g_ch 
+0x767 002710 reverse pdata ,temp 
+0x768 002711 set1 1 ,temp 
+0x769 002712 rshift temp ,white_init 
+0x76a 002713 rtn 
+:      002715 p_g24_receive_rxon:
+0x76b 002716 call p_g24_prep 
+0x76c 002717 enable decode_fec0 
+0x76d 002718 enable is_rx 
+0x76e 002719 disable is_tx 
+0x76f 002720 enable swfine 
+0x770 002721 fetch 2 ,mem_24g_rx_window 
+0x771 002722 iforce stop_watch 
+0x772 002723 correlate null ,timeout 
+0x773 002724 nbranch p_g24_sync_timeout ,sync 
+0x774 002725 disable decode_fec0 
+0x775 002726 enable decode_fec1 
+0x776 002727 enable enable_white 
+0x777 002728 enable enable_crc 
+0x778 002729 parse demod ,bucket ,8 
+0x779 002730 rshift3 pwindow ,pdata 
+0x77a 002731 store 1 ,mem_24g_get_syncword_crc8 
+0x77b 002732 fetcht 1 ,mem_24g_syncword_crc8 
+0x77c 002733 isub temp ,null 
+0x77d 002734 nbranch p_g24_end_of_packet ,zero 
+0x77e 002735 parse demod ,bucket ,8 
+0x77f 002736 rshift3 pwindow ,pdata 
+0x780 002737 store 1 ,mem_24g_rxbuf 
+0x781 002741 fetch 1 ,mem_24g_rxbuf 
+0x782 002742 fetcht 1 ,mem_24g_data_type 
+0x783 002743 icompare bits_data ,temp 
+0x784 002744 nbranch p_g24_end_of_packet ,true 
+:      002745 p_g24_receive_skip:
+0x785 002746 parse demod ,bucket ,8 
+0x786 002747 rshift3 pwindow ,pdata 
+0x787 002748 istore 1 ,contw 
+0x788 002749 rshift3 pdata ,pdata 
+0x789 002750 and pdata ,0x1f ,loopcnt 
+0x78a 002751 branch p_g24rx_nopayload ,zero 
+:      002752 p_g24rx_loop:
+0x78b 002753 parse demod ,bucket ,8 
+0x78c 002754 rshift3 pwindow ,pdata 
+0x78d 002755 istore 1 ,contw 
+0x78e 002756 loop p_g24rx_loop 
+:      002757 p_g24rx_nopayload:
+0x78f 002759 copy contw ,rega 
+0x790 002760 parse demod ,bucket ,8 
+0x791 002761 rshift3 pwindow ,pdata 
+0x792 002762 store 1 ,mem_rssi_hex_received 
+0x793 002763 copy rega ,contw 
+0x794 002764 parse demod ,bucket ,24 
+0x795 002765 enable swfine 
+0x796 002766 arg param_sifs ,stop_watch 
+0x797 002767 rshift32 pdata ,pdata 
+0x798 002768 rshift16 pdata ,pdata 
+0x799 002769 istore 3 ,contw 
+0x79a 002770 disable decode_fec1 
+0x79b 002771 branch p_g24_end_of_packet ,crc_failed 
+0x79c 002772 enable user3 
+0x79d 002773 fetch 1 ,mem_last_freq 
+0x79e 002774 add pdata ,0 ,rega 
+0x79f 002775 call rf_write_freq 
+0x7a0 002776 disable decode_fec0 
+0x7a1 002777 call set_sync_on 
+0x7a2 002778 fetch 1 ,mem_rssi_hex_received 
+0x7a3 002779 copy pdata ,rega 
+0x7a4 002780 branch p_rssi_signal 
+:      002783 p_g24_sync_timeout:
+:      002786 p_g24_end_of_packet:
+0x7a5 002787 disable encode_fec1 
+0x7a6 002788 disable decode_fec1 
+0x7a7 002789 branch end_of_packet 
+:      002791 p_g24_set_freq_tx:
+0x7a8 002792 call set_sync_on 
+0x7a9 002793 fetcht 1 ,mem_24g_ch 
+0x7aa 002794 branch set_freq_tx 
+:      002796 p_g24_transmit:
+0x7ab 002797 call le_enable 
+0x7ac 002798 fetch 4 ,mem_24g_addr 
+0x7ad 002799 iforce access 
+0x7ae 002800 call p_g24_prep 
+0x7af 002801 call p_g24_set_freq_tx 
+0x7b0 002802 set1 txgfsk ,radio_ctrl 
+0x7b1 002803 enable encode_fec0 
+0x7b2 002804 enable is_tx 
+0x7b3 002805 disable is_rx 
+0x7b4 002806 rshift16 access ,pdata 
+0x7b5 002807 rshift8 pdata ,pdata 
+0x7b6 002808 rshift4 pdata ,pdata 
+0x7b7 002809 inject mod ,40 
+0x7b8 002810 disable encode_fec0 
+0x7b9 002811 enable encode_fec1 
+0x7ba 002812 enable enable_white 
+0x7bb 002813 enable enable_crc 
+0x7bc 002814 fetch 1 ,mem_24g_syncword_crc8 
+0x7bd 002815 inject mod ,8 
+0x7be 002816 fetch 1 ,mem_24g_txlen 
+0x7bf 002817 iforce loopcnt 
+0x7c0 002818 arg mem_24g_txpayload ,contr 
+:      002819 p_g24tr_loop:
+0x7c1 002820 ifetch 1 ,contr 
+0x7c2 002821 inject mod ,8 
+0x7c3 002822 loop p_g24tr_loop 
+0x7c4 002823 enable enable_parity 
+0x7c5 002824 inject mod ,24 
+0x7c6 002825 disable enable_parity 
+0x7c7 002826 until null ,tx_clear 
+0x7c8 002827 nop 100 
+0x7c9 002828 disable encode_fec0 
+0x7ca 002829 disable encode_fec1 
+0x7cb 002830 branch set_sync_on 
+              org 0x3000
+:      002841 start:
+0x3000 002842 call lpmstate 
+:      002845 soft_reset:
+0x3001 002846 set0 mark_ext_patch ,mark 
+0x3002 002847 bpatch patch00_0 ,mem_patch00 
+0x3003 002848 clear_stack 
+0x3004 002849 call initialize_radio 
+0x3005 002850 call iicd_init_12m 
+0x3006 002851 call init_param 
+0x3007 002852 call l2cap_init 
+0x3008 002853 set0 mark_ext_patch ,mark 
+0x3009 002854 bpatch patch00_1 ,mem_patch00 
+0x300a 002855 call rfcomm_init 
+0x300b 002856 call init_lmp 
+0x300c 002857 call ui_init 
+0x300d 002858 call app_init 
+0x300e 002859 set0 mark_ext_patch ,mark 
+0x300f 002860 bpatch patch00_2 ,mem_patch00 
+0x3010 002861 call app_lpm_init ,wake 
+0x3011 002862 call sp_initialize 
+0x3012 002863 call lpm_recover_clk ,wake 
+:      002864 main_loop:
+0x3013 002865 set0 mark_ext_patch ,mark 
+0x3014 002866 bpatch patch00_3 ,mem_patch00 
+0x3015 002867 call sp_calc_sequence 
+0x3016 002868 call le_dispatch 
+0x3017 002869 call hci_dispatch 
+0x3018 002870 set0 mark_ext_patch ,mark 
+0x3019 002871 bpatch patch00_4 ,mem_patch00 
+0x301a 002872 call idle_dispatch 
+0x301b 002873 call app_process_idle 
+0x301c 002874 call inquiry_dispatch 
+0x301d 002875 set0 mark_ext_patch ,mark 
+0x301e 002876 bpatch patch00_5 ,mem_patch00 
+0x301f 002877 call inquiry_scan_dispatch 
+0x3020 002878 call page_scan_dispatch 
+0x3021 002879 call connection_dispatch 
+0x3022 002880 call lpm_dispatch 
+0x3023 002881 branch main_loop 
+:      002883 connection_dispatch:
+0x3024 002884 call connection_incontext 
+0x3025 002885 rtnmark0 mark_context 
+0x3026 002886 set0 mark_context ,mark 
+0x3027 002887 call context_save 
+0x3028 002888 branch le_disable 
+:      002890 connection_incontext:
+0x3029 002891 set0 mark_ext_patch ,mark 
+0x302a 002892 bpatch patch00_6 ,mem_patch00 
+0x302b 002893 call context_search_insniff 
+0x302c 002894 nbranch connection_nosniff ,zero 
+0x302d 002895 call context_load 
+0x302e 002896 add rega ,coffset_mode ,contr 
+0x302f 002897 ifetch 1 ,contr 
+0x3030 002898 bbit1 mode_le ,le_conn_dispatch 
+0x3031 002899 bbit1 mode_master ,master_dispatch 
+0x3032 002900 branch slave_dispatch 
+:      002901 connection_nosniff:
+0x3033 002902 set0 mark_ext_patch ,mark 
+0x3034 002903 bpatch patch00_7 ,mem_patch00 
+0x3035 002904 call context_get_next 
+0x3036 002905 copy loopcnt ,null 
+0x3037 002906 rtn zero 
+0x3038 002907 call context_load 
+0x3039 002908 fetch 1 ,mem_state 
+0x303a 002909 bbit1 state_inpage ,master_page 
+0x303b 002910 fetch 1 ,mem_mode 
+0x303c 002911 bbit1 mode_master ,master_dispatch 
+0x303d 002912 branch slave_dispatch 
+:      002920 idle_dispatch:
+0x303e 002921 fetch 1 ,mem_hci_cmd 
+0x303f 002922 rtn blank 
+0x3040 002923 beq hci_cmd_inquiry ,idle_inquiry 
+0x3041 002924 beq hci_cmd_inquiry_cancel ,idle_inquiry_cancel 
+0x3042 002925 beq hci_cmd_remote_name_req ,idle_remote_name_req 
+0x3043 002926 beq hci_cmd_create_conn ,idle_create_conn 
+0x3044 002927 beq hci_cmd_le_create_conn ,idle_le_create_conn 
+0x3045 002928 call context_search_conn_handle 
+0x3046 002929 rtn zero 
+0x3047 002930 call context_search_plap 
+0x3048 002931 rtn zero 
+:      002932 idle_exit:
+0x3049 002933 jam 0 ,mem_hci_cmd 
+0x304a 002934 rtn 
+:      002936 idle_le_create_conn:
+0x304b 002937 jam hci_cmd_le_create_conn ,mem_cmd_le_create_conn 
+0x304c 002938 jam 0 ,mem_hci_cmd 
+0x304d 002939 rtn 
+:      002941 idle_inquiry:
+0x304e 002942 set1 mark_inquiry_on ,mark 
+0x304f 002943 set0 mark_inquiry_trainb ,mark 
+0x3050 002944 jam param_ninquiry ,mem_ninqy_index 
+0x3051 002945 jam 31 ,mem_nfreq_index_inq 
+0x3052 002946 branch idle_exit 
+:      002948 idle_inquiry_cancel:
+0x3053 002949 set0 mark_inquiry_on ,mark 
+0x3054 002950 force 0 ,stop_watch 
+0x3055 002951 branch idle_exit 
+:      002953 idle_remote_name_req:
+0x3056 002954 call context_search_plap 
+0x3057 002955 rtn zero 
+0x3058 002956 force lmp_name_req ,temp 
+0x3059 002957 jam 5 ,mem_nameres_cnt 
+0x305a 002958 branch idle_start_page 
+:      002960 idle_create_conn:
+0x305b 002961 set0 mark_ext_patch ,mark 
+0x305c 002962 bpatch patch01_0 ,mem_patch01 
+0x305d 002963 fetch 1 ,mem_device_option 
+0x305e 002964 beq dvc_op_hci ,idle_create_conn_hci 
+:      002965 idle_create_conn_device:
+0x305f 002966 fetch 6 ,mem_hci_plap 
+0x3060 002967 branch idle_exit ,blank 
+0x3061 002968 jam reconnect_hid ,memui_reconnect_mode 
+0x3062 002970 jam conn_sm_wait_features_res ,mem_conn_sm 
+0x3063 002971 branch idle_create_conn_cont 
+:      002973 idle_create_conn_hci:
+0x3064 002974 fetch 6 ,mem_hci_plap 
+0x3065 002975 branch idle_exit ,blank 
+0x3066 002976 store 6 ,mem_plap 
+:      002977 idle_create_conn_cont:
+0x3067 002978 force lmp_version_req ,temp 
+:      002979 idle_start_page:
+0x3068 002980 set0 mark_ext_patch ,mark 
+0x3069 002981 bpatch patch01_1 ,mem_patch01 
+0x306a 002982 fetch 1 ,mem_page_mode 
+0x306b 002983 branch idle_page_mode_r0 ,blank 
+0x306c 002984 lshift3 pdata ,pdata 
+0x306d 002985 lshift4 pdata ,pdata 
+0x306e 002986 increase -1 ,pdata 
+:      002987 idle_page_mode_r0:
+0x306f 002988 store 1 ,mem_npage 
+0x3070 002989 store 1 ,mem_npage_index 
+0x3071 002990 jam 31 ,mem_nfreq_index_page 
+0x3072 002991 set0 mark_page_trainb ,mark 
+0x3073 002992 call context_new 
+0x3074 002993 nbranch idle_page_fail ,zero 
+0x3075 002994 call get_free_amaddr 
+0x3076 002995 store 1 ,mem_amaddr 
+0x3077 002996 storet 1 ,mem_lmo_opcode2 
+0x3078 002997 fetch 6 ,mem_hci_plap 
+0x3079 002998 store 6 ,mem_plap 
+0x307a 002999 set0 mark_ext_patch ,mark 
+0x307b 003000 bpatch patch01_2 ,mem_patch01 
+0x307c 003001 force 0 ,pdata 
+0x307d 003002 compare lmp_name_req ,temp ,0xff 
+0x307e 003003 nsetflag true ,state_init_seq ,pdata 
+0x307f 003004 set1 state_inpage ,pdata 
+0x3080 003005 store 1 ,mem_state 
+0x3081 003006 jam bt_evt_reconn_started ,mem_fifo_temp 
+0x3082 003007 call ui_ipc_send_event 
+0x3083 003008 force 0 ,pdata 
+0x3084 003009 setflag true ,smap_name_req ,pdata 
+0x3085 003010 store 1 ,mem_state_map 
+0x3086 003011 setarg 0 
+0x3087 003012 set1 mode_master ,pdata 
+0x3088 003013 store 1 ,mem_mode 
+0x3089 003014 enable master 
+0x308a 003015 call context_save 
+0x308b 003016 disable master 
+0x308c 003017 force page_length_timer ,queue 
+0x308d 003018 fetch 2 ,mem_page_to 
+0x308e 003019 call timer_init 
+0x308f 003020 branch idle_exit 
+:      003021 idle_page_fail:
+0x3090 003022 set0 mark_ext_patch ,mark 
+0x3091 003023 bpatch patch01_3 ,mem_patch01 
+0x3092 003024 fetch 6 ,mem_hci_plap 
+0x3093 003025 store 6 ,mem_plap 
+0x3094 003026 compare lmp_name_req ,temp ,0xff 
+0x3095 003027 branch idle_name_fail ,true 
+0x3096 003028 force hci_error_memory_full ,temp 
+0x3097 003029 call hci_send_connection_error 
+0x3098 003030 branch idle_exit 
+:      003031 idle_name_fail:
+0x3099 003032 arg mem_tmp_buffer ,contw 
+0x309a 003033 arg 8 ,loopcnt 
+0x309b 003034 call memset0 
+0x309c 003035 force hci_error_memory_full ,queue 
+0x309d 003036 call hci_send_name 
+0x309e 003037 jam bt_evt_reconn_failed ,mem_fifo_temp 
+0x309f 003038 call ui_ipc_send_event 
+0x30a0 003039 branch idle_exit 
+:      003046 inquiry_dispatch:
+0x30a1 003047 rtnmark0 mark_inquiry_on 
+0x30a2 003048 force inquiry_length_timer ,queue 
+0x30a3 003049 call timer_check 
+0x30a4 003050 nsetflag blank ,mark_inquiry_on ,mark 
+0x30a5 003051 nbranch inquiry_start ,blank 
+0x30a6 003052 rtn 
+:      003056 inquiry_start:
+0x30a7 003057 set0 mark_ext_patch ,mark 
+0x30a8 003058 bpatch patch01_4 ,mem_patch01 
+0x30a9 003059 fetcht 2 ,mem_inq_window 
+0x30aa 003060 force 4 ,queue 
+0x30ab 003061 call sniff_check_window 
+0x30ac 003062 rtn user 
+0x30ad 003063 call afh_clear 
+0x30ae 003064 force 0 ,freq_mode 
+:      003065 inquiry_restart:
+0x30af 003066 rtn timeout 
+0x30b0 003067 set0 mark_fhs_already_good ,mark 
+0x30b1 003068 set0 mark_fhs_eir ,mark 
+:      003069 inquiry_rx_restart:
+0x30b2 003070 add clkn_bt ,1 ,bt_clk 
+0x30b3 003071 isolate1 mark_inquiry_trainb ,mark 
+0x30b4 003072 setflag true ,2 ,freq_mode 
+0x30b5 003073 compare 0x00 ,bt_clk ,0x02 
+0x30b6 003074 nbranch inquiry_receive ,true 
+:      003076 inquiry_transmit:
+0x30b7 003077 set0 mark_ext_patch ,mark 
+0x30b8 003078 bpatch patch01_5 ,mem_patch01 
+0x30b9 003079 fetch 1 ,mem_inquiry_transmit 
+0x30ba 003080 increase 1 ,pdata 
+0x30bb 003081 store 1 ,mem_inquiry_transmit 
+0x30bc 003082 call fetch_giac 
+0x30bd 003083 call tx_radio_freq 
+0x30be 003084 call fetch_diac 
+0x30bf 003085 call start_transmitter 
+0x30c0 003086 call start_tx_native 
+0x30c1 003087 call send_access_word 
+0x30c2 003088 call end_of_packet 
+0x30c3 003089 call inquiry_check_train 
+0x30c4 003090 branch inquiry_restart 
+:      003092 inquiry_check_train:
+0x30c5 003093 set0 mark_ext_patch ,mark 
+0x30c6 003094 bpatch patch01_6 ,mem_patch01 
+0x30c7 003095 fetch 1 ,mem_nfreq_index_inq 
+0x30c8 003096 increase -1 ,pdata 
+0x30c9 003097 store 1 ,mem_nfreq_index_inq 
+0x30ca 003098 rtn positive 
+0x30cb 003099 jam 31 ,mem_nfreq_index_inq 
+0x30cc 003100 fetch 1 ,mem_ninqy_index 
+0x30cd 003101 increase -1 ,pdata 
+0x30ce 003102 store 1 ,mem_ninqy_index 
+0x30cf 003103 rtn positive 
+0x30d0 003104 setflip mark_inquiry_trainb ,mark 
+0x30d1 003105 jam param_ninquiry ,mem_ninqy_index 
+0x30d2 003106 rtn 
+:      003108 inquiry_receive:
+0x30d3 003109 set0 mark_ext_patch ,mark 
+0x30d4 003110 bpatch patch01_7 ,mem_patch01 
+0x30d5 003111 call fetch_giac 
+0x30d6 003112 call rx_radio_freq 
+0x30d7 003113 call fetch_diac 
+0x30d8 003114 call start_rx_native 
+0x30d9 003115 call start_receiver 
+0x30da 003116 call wait_access_clkn_rt 
+0x30db 003117 branch inquiry_sync ,sync 
+0x30dc 003118 call inquiry_check_train 
+0x30dd 003119 branch inquiry_rx_restart 
+:      003120 inquiry_sync:
+0x30de 003121 set0 mark_ext_patch ,mark 
+0x30df 003122 bpatch patch02_0 ,mem_patch02 
+0x30e0 003123 call save_rssi 
+0x30e1 003124 call scan_mode_whiten 
+0x30e2 003125 call receive_packet_whitened 
+0x30e3 003126 set0 mark_rxbuf_inuse ,mark 
+0x30e4 003127 rtnmark0 mark_fhs_already_good 
+:      003128 inquiry_receive_rtn:
+0x30e5 003129 set0 mark_ext_patch ,mark 
+0x30e6 003130 bpatch patch02_1 ,mem_patch02 
+0x30e7 003131 fetch 1 ,mem_at_using_flag 
+0x30e8 003132 bbit1 at_flag_inq ,at_inquiry_reply 
+0x30e9 003133 call hci_inquiry_reply 
+:      003134 inquiry_receive_eir_rtn:
+0x30ea 003135 fetch 1 ,mem_inquiry_rcv 
+0x30eb 003136 increase 1 ,pdata 
+0x30ec 003137 store 1 ,mem_inquiry_rcv 
+0x30ed 003138 rtn 
+:      003139 inquiry_receive_eir:
+0x30ee 003140 set0 mark_fhs_already_good ,mark 
+0x30ef 003141 call rf_setup_time_slave_slot_eir 
+0x30f0 003142 call fetch_giac 
+0x30f1 003143 call rx_radio_freq 
+0x30f2 003144 call init_rx_packet_flags 
+0x30f3 003145 call start_rx_native 
+0x30f4 003146 call start_receiver 
+0x30f5 003147 call wait_access_clkn_rt 
+0x30f6 003148 branch inquiry_receive_eir_packet ,sync 
+0x30f7 003149 rtn 
+:      003150 inquiry_receive_eir_packet:
+0x30f8 003151 call scan_mode_whiten 
+0x30f9 003152 call receive_packet_whitened 
+0x30fa 003153 set0 mark_rxbuf_inuse ,mark 
+0x30fb 003154 branch inquiry_receive_rtn ,crc_failed 
+0x30fc 003155 call hci_inquiry_reply_eir 
+0x30fd 003156 branch inquiry_receive_eir_rtn 
+:      003158 rf_setup_time_slave_slot_eir:
+0x30fe 003159 arg param_rf_setup ,timeup 
+:      003160 rf_setup_time_eir:
+0x30ff 003161 until clkn_rt ,meet 
+0x3100 003162 and clkn_bt ,3 ,pdata 
+0x3101 003163 bne 1 ,rf_setup_time_eir 
+0x3102 003164 rtn 
+:      003173 master_page:
+0x3103 003174 set0 mark_ext_patch ,mark 
+0x3104 003175 bpatch patch02_2 ,mem_patch02 
+0x3105 003176 enable master 
+0x3106 003177 enable clknt 
+0x3107 003178 fetch 2 ,mem_page_interval 
+0x3108 003179 branch master_page_no_interval ,blank 
+0x3109 003180 force page_interval_timer ,queue 
+0x310a 003181 call timer_check 
+0x310b 003182 nrtn blank 
+:      003183 master_page_no_interval:
+0x310c 003184 set0 mark_ext_patch ,mark 
+0x310d 003185 bpatch patch02_3 ,mem_patch02 
+0x310e 003186 fetcht 2 ,mem_page_window 
+0x310f 003187 force 40 ,queue 
+0x3110 003188 call sniff_check_window 
+0x3111 003189 branch page_exit ,user 
+0x3112 003190 force page_length_timer ,queue 
+0x3113 003191 call timer_check 
+0x3114 003192 nbranch page_start ,blank 
+0x3115 003193 fetch 1 ,mem_state_map 
+0x3116 003194 bbit1 smap_name_req ,master_npage_timeout 
+0x3117 003195 force hci_error_page_timeout ,temp 
+0x3118 003196 call hci_send_connection_error 
+0x3119 003197 branch master_page_timeout 
+:      003198 master_npage_timeout:
+0x311a 003199 arg mem_tmp_buffer ,contw 
+0x311b 003200 arg 8 ,loopcnt 
+0x311c 003201 call memset0 
+0x311d 003202 force hci_error_page_timeout ,queue 
+0x311e 003203 call hci_send_name 
+:      003204 master_page_timeout:
+0x311f 003205 set0 mark_ext_patch ,mark 
+0x3120 003206 bpatch patch02_4 ,mem_patch02 
+0x3121 003207 jam 0 ,mem_state 
+0x3122 003208 call init_lmp_work 
+0x3123 003209 jam 0 ,memui_reconnect_mode 
+0x3124 003210 jam bt_evt_reconn_page_timeout ,mem_fifo_temp 
+0x3125 003211 call ui_ipc_send_event 
+0x3126 003212 branch page_exit 
+:      003214 page_start:
+0x3127 003215 set0 mark_ext_patch ,mark 
+0x3128 003216 bpatch patch02_5 ,mem_patch02 
+0x3129 003217 force 0 ,timeup 
+0x312a 003218 until clkn_rt ,meet 
+0x312b 003219 fetch 1 ,mem_page_clk 
+0x312c 003220 increase -1 ,pdata 
+0x312d 003221 ixor clkn_bt ,pdata 
+0x312e 003222 compare 0 ,pdata ,3 
+0x312f 003223 nbranch page_start ,true 
+0x3130 003224 deposit am_addr 
+0x3131 003225 store 1 ,mem_fhs_am_addr 
+0x3132 003226 force 0 ,n_tx_slot 
+0x3133 003227 force 0 ,freq_mode 
+:      003229 page_restart:
+0x3134 003230 set0 mark_ext_patch ,mark 
+0x3135 003231 bpatch patch02_6 ,mem_patch02 
+0x3136 003232 branch page_exit ,timeout 
+0x3137 003233 call fetch_page_bt_adr 
+0x3138 003234 arg param_rf_setup ,timeup 
+0x3139 003235 until clkn_rt ,meet 
+:      003236 page_rx_restart:
+0x313a 003237 set0 mark_ext_patch ,mark 
+0x313b 003238 bpatch patch02_7 ,mem_patch02 
+0x313c 003239 fetch 4 ,mem_page_clk 
+0x313d 003240 iforce bt_clk 
+0x313e 003241 increase 1 ,pdata 
+0x313f 003242 store 4 ,mem_page_clk 
+0x3140 003243 isolate1 mark_page_trainb ,mark 
+0x3141 003244 setflag true ,2 ,freq_mode 
+0x3142 003245 compare 0x00 ,bt_clk ,0x02 
+0x3143 003246 nbranch page_receive ,true 
+0x3144 003247 fetch 1 ,mem_page_transmit 
+0x3145 003248 increase 1 ,pdata 
+0x3146 003249 store 1 ,mem_page_transmit 
+0x3147 003250 call tx_radio_freq 
+0x3148 003251 call start_transmitter 
+0x3149 003252 call start_tx_native 
+0x314a 003253 call send_access_word 
+0x314b 003254 call end_of_packet 
+0x314c 003255 call page_check_train 
+0x314d 003256 branch page_restart 
+:      003257 master_dispatch_exit:
+:      003258 page_exit:
+0x314e 003259 set0 mark_ext_patch ,mark 
+0x314f 003260 bpatch patch03_0 ,mem_patch03 
+0x3150 003261 disable master 
+0x3151 003262 fetch 2 ,mem_page_interval 
+0x3152 003263 rtn blank 
+0x3153 003264 force page_interval_timer ,queue 
+0x3154 003265 branch timer_init 
+:      003267 page_check_train:
+0x3155 003268 set0 mark_ext_patch ,mark 
+0x3156 003269 bpatch patch03_1 ,mem_patch03 
+0x3157 003270 fetch 1 ,mem_nfreq_index_page 
+0x3158 003271 increase -1 ,pdata 
+0x3159 003272 store 1 ,mem_nfreq_index_page 
+0x315a 003273 rtn positive 
+0x315b 003274 jam 31 ,mem_nfreq_index_page 
+0x315c 003275 fetch 1 ,mem_npage_index 
+0x315d 003276 increase -1 ,pdata 
+0x315e 003277 store 1 ,mem_npage_index 
+0x315f 003278 rtn positive 
+0x3160 003279 setflip mark_page_trainb ,mark 
+0x3161 003280 fetch 1 ,mem_npage 
+0x3162 003281 store 1 ,mem_npage_index 
+0x3163 003282 rtn 
+:      003284 page_receive:
+0x3164 003285 set0 mark_ext_patch ,mark 
+0x3165 003286 bpatch patch03_2 ,mem_patch03 
+0x3166 003287 call rx_radio_freq 
+0x3167 003288 call start_rx_native 
+0x3168 003289 call start_receiver 
+0x3169 003290 call wait_access_clkn_rt 
+0x316a 003291 branch page_sync ,sync 
+0x316b 003292 call page_check_train 
+0x316c 003293 branch page_rx_restart 
+:      003294 page_sync:
+0x316d 003295 call end_of_packet 
+0x316e 003296 fetch 1 ,mem_page_rcv 
+0x316f 003297 increase 1 ,pdata 
+0x3170 003298 store 1 ,mem_page_rcv 
+0x3171 003299 force 0 ,stop_watch 
+0x3172 003300 fetch 4 ,mem_page_clk 
+:      003301 page_send_fhs:
+0x3173 003302 set0 mark_ext_patch ,mark 
+0x3174 003303 bpatch patch03_3 ,mem_patch03 
+0x3175 003304 call rf_setup_time_master_slot 
+0x3176 003305 call fetch_page_bt_adr 
+0x3177 003306 increase 1 ,n_tx_slot 
+:      003307 page_send_fhs_continue:
+0x3178 003308 and_into 0x1fd ,bt_clk 
+0x3179 003309 and_into 0x1fc ,freq_mode 
+0x317a 003310 call tx_radio_freq 
+0x317b 003311 call start_transmitter 
+0x317c 003312 call start_tx_native 
+0x317d 003313 call send_access_word 
+0x317e 003314 deposit clkn_bt 
+0x317f 003315 store 4 ,mem_clkn_bt 
+0x3180 003316 force 0 ,am_addr 
+0x3181 003317 force type_fhs ,type 
+0x3182 003318 call scan_mode_whiten 
+0x3183 003319 call transmit_packet_whitened 
+:      003320 page_wait_fhs_reply:
+0x3184 003321 set0 mark_ext_patch ,mark 
+0x3185 003322 bpatch patch03_4 ,mem_patch03 
+0x3186 003323 call rf_setup_time_slave_slot 
+0x3187 003324 or_into 0x02 ,bt_clk 
+0x3188 003325 and_into 0x1fc ,freq_mode 
+0x3189 003326 call rx_radio_freq 
+0x318a 003327 call start_rx_native 
+0x318b 003328 call start_receiver 
+0x318c 003329 call wait_access_clkn_rt 
+0x318d 003330 call end_of_packet ,sync 
+0x318e 003331 branch page_wait_fhs_reply_ok ,sync 
+0x318f 003332 fetch 1 ,mem_fhs_wait_counter 
+0x3190 003333 branch page_restart ,blank 
+0x3191 003334 increase -1 ,pdata 
+0x3192 003335 store 1 ,mem_fhs_wait_counter 
+0x3193 003336 branch page_send_fhs 
+:      003338 page_wait_fhs_reply_ok:
+0x3194 003339 set0 mark_ext_patch ,mark 
+0x3195 003340 bpatch patch03_5 ,mem_patch03 
+0x3196 003341 fetch 1 ,mem_page_rcv_fhs 
+0x3197 003342 increase 1 ,pdata 
+0x3198 003343 store 1 ,mem_page_rcv_fhs 
+0x3199 003344 call prepare_newconn 
+:      003345 master_newconn_loop:
+0x319a 003346 call master_newconn_once 
+0x319b 003347 branch newconn_poll_responded ,sync 
+0x319c 003348 call new_conn_timeout 
+0x319d 003349 nbranch master_newconn_loop ,blank 
+0x319e 003350 branch page_restart 
+:      003352 newconn_poll_responded:
+0x319f 003353 set0 mark_ext_patch ,mark 
+0x31a0 003354 bpatch patch03_6 ,mem_patch03 
+0x31a1 003355 fetch 1 ,mem_state 
+0x31a2 003356 set0 state_inpage ,pdata 
+0x31a3 003357 store 1 ,mem_state 
+0x31a4 003358 call newconn_init 
+0x31a5 003359 disable master 
+0x31a6 003360 rtn 
+:      003363 master_dispatch:
+0x31a7 003364 set0 mark_ext_patch ,mark 
+0x31a8 003365 bpatch patch03_7 ,mem_patch03 
+0x31a9 003366 enable master 
+0x31aa 003367 enable clknt 
+0x31ab 003368 call role_switch_master 
+0x31ac 003369 rtn user 
+0x31ad 003370 call check_bt_disabled 
+0x31ae 003371 call rf_setup_time_master_slot 
+0x31af 003372 add clkn_bt ,1 ,bt_clk 
+0x31b0 003373 call fetch_self_bt_adr 
+0x31b1 003374 force 0x03 ,freq_mode 
+0x31b2 003375 call load_esco 
+0x31b3 003376 call get_sco_data 
+0x31b4 003377 call scheduler_tx_l2cap_pkt 
+0x31b5 003378 call prepare_tx 
+0x31b6 003379 call tx_radio_freq 
+0x31b7 003380 call start_transmitter 
+0x31b8 003381 call start_tx_native 
+0x31b9 003382 call send_access_word 
+0x31ba 003383 call transmit_packet 
+:      003384 master_loop:
+0x31bb 003385 set0 mark_ext_patch ,mark 
+0x31bc 003386 bpatch patch04_0 ,mem_patch04 
+0x31bd 003387 call parse_lmp 
+0x31be 003388 call process_cmd 
+0x31bf 003389 call hci_send_num_complete_packets 
+0x31c0 003390 call master_conn_recv_packet 
+0x31c1 003391 nbranch master_notmatch ,match 
+0x31c2 003392 call supervision_flush 
+0x31c3 003393 call parse_l2cap 
+0x31c4 003394 fetch 1 ,mem_master_rcvcnt 
+0x31c5 003395 increase 1 ,pdata 
+0x31c6 003396 store 1 ,mem_master_rcvcnt 
+:      003397 master_notmatch:
+0x31c7 003398 set0 mark_ext_patch ,mark 
+0x31c8 003399 bpatch patch04_1 ,mem_patch04 
+0x31c9 003400 call scheduler_process 
+0x31ca 003401 call check_master_disconnect 
+0x31cb 003402 nrtn master 
+0x31cc 003403 call check_attempt 
+0x31cd 003404 nbranch master_attempt ,blank 
+:      003405 master_exit:
+0x31ce 003406 call process_sco_data 
+0x31cf 003407 call restore_esco 
+0x31d0 003408 disable master 
+0x31d1 003409 rtn 
+:      003411 master_attempt:
+0x31d2 003412 call prepare_tx 
+0x31d3 003413 call master_conn_send_packet 
+0x31d4 003414 branch master_loop 
+:      003417 check_master_disconnect:
+0x31d5 003418 branch check_master_match ,match 
+0x31d6 003419 call supervision_update 
+0x31d7 003420 branch master_disconnect ,positive 
+:      003421 check_master_match:
+0x31d8 003422 call check_disconnect_timeout 
+0x31d9 003423 nbranch master_disconnect ,user 
+0x31da 003424 fetch 1 ,mem_state_map 
+0x31db 003425 rtnbit0 smap_name_req 
+0x31dc 003426 rtnbit1 smap_name_res 
+0x31dd 003427 fetch 1 ,mem_op 
+0x31de 003428 rtnbit1 op_disconn 
+0x31df 003429 call conn_timer_expired 
+0x31e0 003430 nrtn blank 
+0x31e1 003431 fetch 1 ,mem_nameres_cnt 
+0x31e2 003432 increase -1 ,pdata 
+0x31e3 003433 store 1 ,mem_nameres_cnt 
+0x31e4 003434 nrtn blank 
+0x31e5 003435 branch lmp_disconnect 
+:      003437 master_disconnect:
+0x31e6 003438 set0 mark_ext_patch ,mark 
+0x31e7 003439 bpatch patch04_2 ,mem_patch04 
+0x31e8 003440 call quit_connection 
+0x31e9 003441 disable master 
+0x31ea 003442 fetch 1 ,mem_state_map 
+0x31eb 003443 bbit1 smap_name_req ,master_name_disconnect 
+0x31ec 003444 fetch 1 ,mem_state 
+0x31ed 003445 bbit0 state_conn_comp ,master_disconnect_quiet 
+0x31ee 003446 fetcht 1 ,mem_conn_handle 
+0x31ef 003447 branch hci_send_disconn_complete 
+:      003448 master_disconnect_quiet:
+0x31f0 003449 force hci_error_connection_timeout ,temp 
+0x31f1 003450 branch hci_send_connection_error 
+:      003451 master_name_disconnect:
+0x31f2 003452 force hci_success ,queue 
+0x31f3 003453 fetch 1 ,mem_state_map 
+0x31f4 003454 bbit1 smap_name_res ,hci_send_name 
+:      003455 master_name_error:
+0x31f5 003456 force hci_error_page_timeout ,queue 
+0x31f6 003457 arg mem_tmp_buffer ,contw 
+0x31f7 003458 arg 8 ,loopcnt 
+0x31f8 003459 call memset0 
+0x31f9 003460 branch hci_send_name 
+:      003462 disconnect_stop_sco:
+0x31fa 003463 set0 mark_ext_patch ,mark 
+0x31fb 003464 bpatch patch04_3 ,mem_patch04 
+0x31fc 003465 fetch 1 ,mem_state 
+0x31fd 003466 rtnbit0 state_insco 
+0x31fe 003467 fetcht 1 ,mem_conn_handle 
+0x31ff 003468 fetch 1 ,mem_sco_asso_handle 
+0x3200 003469 isub temp ,null 
+0x3201 003470 nrtn zero 
+0x3202 003471 call stop_esco 
+0x3203 003472 branch restore_esco_check_no_mark 
+:      003474 check_disconnect_timeout:
+0x3204 003475 set0 mark_ext_patch ,mark 
+0x3205 003476 bpatch patch04_4 ,mem_patch04 
+0x3206 003477 enable user 
+0x3207 003478 fetch 1 ,mem_op 
+0x3208 003479 rtnbit0 op_disconn 
+0x3209 003480 call conn_timer_expired 
+0x320a 003481 nrtn blank 
+:      003482 disable_usr:
+0x320b 003483 disable user 
+0x320c 003484 rtn 
+:      003486 conn_timer_expired:
+0x320d 003487 fetch 1 ,mem_conn_timer 
+0x320e 003488 increase -1 ,pdata 
+0x320f 003489 store 1 ,mem_conn_timer 
+0x3210 003490 rtn 
+:      003492 linkkey_ready:
+0x3211 003493 set0 mark_ext_patch ,mark 
+0x3212 003494 bpatch patch04_5 ,mem_patch04 
+0x3213 003495 fetch 1 ,mem_state 
+0x3214 003496 bbit1 state_linkkey ,linkkey_set 
+0x3215 003497 fetch 1 ,mem_device_option 
+0x3216 003498 beq dvc_op_hci ,linkkey_send_hci 
+0x3217 003499 fetch 1 ,mem_pairing_auth 
+0x3218 003500 branch linkkey_set ,blank 
+0x3219 003501 jam defalt_pairing_auth ,mem_pairing_auth 
+0x321a 003502 jam bt_evt_linkkey_generate ,mem_fifo_temp 
+0x321b 003503 call ui_ipc_send_event 
+0x321c 003504 branch linkkey_set 
+:      003505 linkkey_send_hci:
+0x321d 003506 call check_localsm 
+0x321e 003507 ncall hci_send_linkkey_notification ,true 
+:      003508 linkkey_set:
+0x321f 003509 set0 mark_ext_patch ,mark 
+0x3220 003510 bpatch patch04_6 ,mem_patch04 
+0x3221 003511 call context_traverse_linkkey 
+0x3222 003512 fetch 1 ,mem_state 
+0x3223 003513 set1 state_linkkey ,pdata 
+0x3224 003514 store 1 ,mem_state 
+0x3225 003515 jam 1 ,mem_link_key_exists 
+0x3226 003516 fetch 1 ,mem_conn_sm 
+0x3227 003517 bne conn_sm_pairing ,linkkey_set_continue 
+:      003518 linkkey_set_continue:
+0x3228 003519 rtn 
+:      003521 generate_linkkey_continue:
+0x3229 003522 jam pairing_auth ,mem_pairing_auth 
+:      003523 clear_linkstate:
+0x322a 003524 fetch 1 ,mem_state 
+0x322b 003525 set0 state_linkkey ,pdata 
+0x322c 003526 store 1 ,mem_state 
+0x322d 003527 rtn 
+:      003531 role_switch_check:
+0x322e 003532 set0 mark_ext_patch ,mark 
+0x322f 003533 bpatch patch04_7 ,mem_patch04 
+0x3230 003534 disable user 
+0x3231 003535 fetch 1 ,mem_state 
+0x3232 003536 rtnbit0 state_insniff 
+0x3233 003537 fetch 2 ,mem_tsniff 
+0x3234 003538 nrtn blank 
+0x3235 003539 fetch 4 ,mem_sniff_anchor 
+0x3236 003540 branch role_switch_clkn ,clknt 
+0x3237 003541 isub clke_bt ,pdata 
+0x3238 003542 branch role_switch_clke 
+:      003543 role_switch_clkn:
+0x3239 003544 isub clkn_bt ,pdata 
+:      003545 role_switch_clke:
+0x323a 003546 sub pdata ,4 ,null 
+0x323b 003547 nrtn positive 
+0x323c 003548 fetch 1 ,mem_state 
+0x323d 003549 set0 state_insniff ,pdata 
+0x323e 003550 store 1 ,mem_state 
+0x323f 003551 enable user 
+0x3240 003552 rtn 
+:      003555 role_switch_prepare:
+0x3241 003556 copy pdata ,temp 
+0x3242 003557 set0 mark_ext_patch ,mark 
+0x3243 003558 bpatch patch05_0 ,mem_patch05 
+0x3244 003559 store 4 ,mem_sniff_anchor 
+:      003560 role_switch_prepare0:
+0x3245 003561 jam switch_flag_accept ,mem_switch_flag 
+0x3246 003562 fetch 1 ,mem_state 
+0x3247 003563 set1 state_insniff ,pdata 
+0x3248 003564 store 1 ,mem_state 
+0x3249 003565 force 0 ,pdata 
+0x324a 003566 store 2 ,mem_tsniff 
+0x324b 003567 jam 10 ,mem_current_sniff_attempt 
+0x324c 003568 jam 1 ,mem_sniff_attempt 
+0x324d 003569 rtn 
+:      003572 role_switch_master:
+0x324e 003573 set0 mark_ext_patch ,mark 
+0x324f 003574 bpatch patch05_1 ,mem_patch05 
+0x3250 003575 call role_switch_check 
+0x3251 003576 nrtn user 
+0x3252 003577 disable user 
+0x3253 003578 jam param_newconnto ,mem_newconnto_counter 
+0x3254 003579 set0 mark_fhs_already_good ,mark 
+:      003580 roles_waitfhs_loop:
+0x3255 003581 call rf_setup_time_master_slot 
+0x3256 003582 call master_recv_packet 
+0x3257 003583 bmark1 mark_fhs_already_good ,roles_replyto_fhs 
+0x3258 003584 call new_conn_timeout 
+0x3259 003585 nbranch roles_waitfhs_loop ,blank 
+:      003586 role_switch_fail_master:
+0x325a 003587 set0 mark_ext_patch ,mark 
+0x325b 003588 bpatch patch05_2 ,mem_patch05 
+0x325c 003589 disable user 
+0x325d 003590 deposit clkn_bt 
+0x325e 003591 store 4 ,mem_next_btclk 
+0x325f 003592 enable clknt 
+0x3260 003593 enable master 
+0x3261 003594 jam bt_evt_switch_fail_master ,mem_fifo_temp 
+0x3262 003595 branch ui_ipc_send_event 
+:      003597 roles_replyto_fhs:
+0x3263 003598 set0 mark_ext_patch ,mark 
+0x3264 003599 bpatch patch05_3 ,mem_patch05 
+0x3265 003600 call rf_setup_time_slave_slot 
+0x3266 003601 call master_send_packet 
+0x3267 003602 disable clknt 
+0x3268 003603 disable master 
+0x3269 003604 call apply_switch_clke 
+0x326a 003605 call prepare_newconn 
+:      003606 roles_newconns_loop:
+0x326b 003607 set0 mark_ext_patch ,mark 
+0x326c 003608 bpatch patch05_4 ,mem_patch05 
+0x326d 003609 call slave_newconn_once 
+0x326e 003610 branch roles_newconns_responded ,match 
+0x326f 003611 call new_conn_timeout 
+0x3270 003612 nbranch roles_newconns_loop ,blank 
+0x3271 003613 branch role_switch_fail_master 
+:      003614 roles_newconns_responded:
+0x3272 003615 force 1 ,temp 
+0x3273 003616 call hci_send_role_change 
+0x3274 003617 fetch 1 ,mem_mode 
+0x3275 003618 set0 mode_master ,pdata 
+0x3276 003619 store 1 ,mem_mode 
+0x3277 003620 call supervision_flush 
+0x3278 003621 call calc_clke_offset 
+0x3279 003622 enable user 
+0x327a 003623 jam bt_evt_switch_success_master ,mem_fifo_temp 
+0x327b 003624 branch ui_ipc_send_event 
+:      003627 load_esco:
+0x327c 003628 set0 mark_ext_patch ,mark 
+0x327d 003629 bpatch patch05_5 ,mem_patch05 
+0x327e 003630 rtnmark0 mark_esco 
+0x327f 003631 fetch 1 ,mem_state 
+0x3280 003632 rtnbit0 state_insco 
+:      003633 load_esco_do:
+0x3281 003634 call init_esco_ibuff 
+0x3282 003635 fetch 1 ,mem_esco_arq 
+0x3283 003636 fetcht 1 ,mem_arq 
+0x3284 003637 storet 1 ,mem_esco_saved_arq 
+0x3285 003638 store 1 ,mem_arq 
+0x3286 003639 deposit am_addr 
+0x3287 003640 store 1 ,mem_saved_amaddr 
+0x3288 003641 fetch 1 ,mem_esco_addr 
+0x3289 003642 iforce am_addr 
+0x328a 003643 set0 mark_esco_rxok ,mark 
+0x328b 003644 fetch 1 ,mem_last_type 
+0x328c 003645 store 1 ,mem_last_type_saved 
+0x328d 003646 fetch 1 ,mem_last_type_esco 
+0x328e 003647 store 1 ,mem_last_type 
+0x328f 003648 rtn 
+:      003650 restore_esco:
+0x3290 003651 set0 mark_ext_patch ,mark 
+0x3291 003652 bpatch patch05_6 ,mem_patch05 
+0x3292 003653 rtnmark0 mark_esco 
+:      003654 restore_esco_check_no_mark:
+0x3293 003655 call check_esco_amaddr 
+0x3294 003656 nrtn true 
+:      003657 restore_esco_do:
+0x3295 003658 call clear_got_tx 
+0x3296 003659 fetch 1 ,mem_esco_saved_arq 
+0x3297 003660 fetcht 1 ,mem_arq 
+0x3298 003661 store 1 ,mem_arq 
+0x3299 003662 storet 1 ,mem_esco_arq 
+0x329a 003663 fetch 1 ,mem_saved_amaddr 
+0x329b 003664 iforce am_addr 
+0x329c 003665 fetch 1 ,mem_last_type 
+0x329d 003666 store 1 ,mem_last_type_esco 
+0x329e 003667 fetch 1 ,mem_last_type_saved 
+0x329f 003668 store 1 ,mem_last_type 
+0x32a0 003669 setarg 0xffff 
+0x32a1 003670 store 2 ,mem_retransmission_cnt 
+0x32a2 003671 rtn 
+:      003676 context_load:
+0x32a3 003677 set0 mark_ext_patch ,mark 
+0x32a4 003678 bpatch patch05_7 ,mem_patch05 
+0x32a5 003679 set1 mark_context ,mark 
+0x32a6 003680 deposit rega 
+0x32a7 003681 store 2 ,mem_context_ptr 
+0x32a8 003682 force context_size ,loopcnt 
+0x32a9 003683 arg mem_le_state ,contw 
+0x32aa 003684 add rega ,coffset_mode ,contr 
+0x32ab 003685 ifetch 1 ,contr 
+0x32ac 003686 copy rega ,contr 
+0x32ad 003687 bbit1 mode_le ,memcpy 
+0x32ae 003688 arg mem_state ,contw 
+0x32af 003689 call memcpy 
+0x32b0 003690 disable attempt 
+0x32b1 003691 fetch 1 ,mem_amaddr 
+0x32b2 003692 iforce am_addr 
+0x32b3 003693 jam 1 ,mem_current_sniff_attempt 
+0x32b4 003694 branch context_load_master ,master 
+0x32b5 003695 jam 1 ,mem_current_sniff_attempt 
+:      003696 context_load_master:
+0x32b6 003697 fetch 1 ,mem_state 
+0x32b7 003698 rtnbit0 state_insniff 
+0x32b8 003699 fetch 1 ,mem_sniff_attempt 
+0x32b9 003700 store 1 ,mem_current_sniff_attempt 
+0x32ba 003701 fetch 1 ,mem_sniff_timeout 
+0x32bb 003702 store 1 ,mem_current_sniff_timeout 
+0x32bc 003703 rtn 
+:      003705 context_save:
+0x32bd 003706 set0 mark_ext_patch ,mark 
+0x32be 003707 bpatch patch06_0 ,mem_patch06 
+0x32bf 003708 fetch 2 ,mem_context_ptr 
+0x32c0 003709 iforce contw 
+0x32c1 003710 force context_size ,loopcnt 
+0x32c2 003711 arg mem_le_state ,contr 
+0x32c3 003712 branch memcpy ,le 
+0x32c4 003713 arg mem_state ,contr 
+0x32c5 003714 branch memcpy 
+:      003718 context_get_next:
+0x32c6 003719 fetcht 1 ,mem_current_context 
+0x32c7 003720 arg context_num ,loopcnt 
+:      003721 context_get_next_loop:
+0x32c8 003722 increase 1 ,temp 
+0x32c9 003723 compare context_num ,temp ,0xff 
+0x32ca 003724 nbranch context_get_next_cont ,true 
+0x32cb 003725 arg 0 ,temp 
+:      003726 context_get_next_cont:
+0x32cc 003727 storet 1 ,mem_current_context 
+0x32cd 003728 mul32 temp ,context_size ,pdata 
+0x32ce 003729 arg mem_context ,rega 
+0x32cf 003730 iadd rega ,rega 
+0x32d0 003731 ifetch 1 ,rega 
+0x32d1 003732 bbit1 state_insniff ,context_get_next_sniff 
+0x32d2 003733 rtnbit1 state_inconn 
+0x32d3 003734 rtnbit1 state_inpage 
+:      003735 context_get_next_sniff:
+0x32d4 003736 loop context_get_next_loop 
+0x32d5 003737 rtn 
+:      003739 context_new:
+0x32d6 003740 set0 mark_ext_patch ,mark 
+0x32d7 003741 bpatch patch06_1 ,mem_patch06 
+0x32d8 003742 arg context_search_empty ,regc 
+0x32d9 003743 call context_search 
+0x32da 003744 nrtn zero 
+0x32db 003745 deposit rega 
+0x32dc 003746 store 2 ,mem_context_ptr 
+0x32dd 003747 force 0 ,null 
+0x32de 003748 rtn 
+:      003752 context_check_all_wack:
+0x32df 003753 call check_esco_amaddr 
+0x32e0 003754 branch context_check_esco_wack ,true 
+0x32e1 003755 fetch 2 ,mem_context_ptr 
+0x32e2 003756 add pdata ,coffset_arq ,contw 
+0x32e3 003757 fetch 1 ,mem_arq 
+0x32e4 003758 istore 1 ,contw 
+0x32e5 003759 arg context_check_a_wack ,regc 
+0x32e6 003760 branch context_search 
+:      003762 context_check_esco_wack:
+0x32e7 003763 fetch 1 ,mem_arq 
+0x32e8 003764 isolate1 wack ,pdata 
+0x32e9 003765 branch context_esco_wack ,true 
+0x32ea 003766 force 1 ,null 
+0x32eb 003767 rtn 
+:      003768 context_esco_wack:
+0x32ec 003769 force 0 ,null 
+0x32ed 003770 rtn 
+:      003773 context_check_idle:
+0x32ee 003774 arg context_check_inconn ,regc 
+0x32ef 003775 branch context_search 
+:      003777 context_traverse_linkkey:
+0x32f0 003778 fetcht 2 ,mem_context_ptr 
+0x32f1 003779 arg context_traverse_clearkey ,regc 
+0x32f2 003780 branch context_search 
+:      003782 context_traverse_max_slot:
+0x32f3 003783 fetcht 2 ,mem_context_ptr 
+0x32f4 003784 arg context_traverse_mslot ,regc 
+0x32f5 003785 branch context_search 
+:      003788 context_search_conn_handle:
+0x32f6 003789 fetcht 1 ,mem_hci_conn_handle 
+:      003790 context_search_conn_handle2:
+0x32f7 003791 arg context_search_handle ,regc 
+0x32f8 003792 branch context_search 
+:      003794 context_search_plap:
+0x32f9 003795 set0 mark_ext_patch ,mark 
+0x32fa 003796 bpatch patch06_2 ,mem_patch06 
+0x32fb 003797 fetcht 6 ,mem_hci_plap 
+:      003798 context_search_plap2:
+0x32fc 003799 arg context_search_lap ,regc 
+0x32fd 003800 branch context_search 
+:      003802 context_search_insniff:
+0x32fe 003803 arg context_search_sniff ,regc 
+0x32ff 003804 branch context_search 
+:      003806 context_search_sniff_window:
+0x3300 003807 arg context_search_window ,regc 
+:      003808 context_search:
+0x3301 003809 set0 mark_ext_patch ,mark 
+0x3302 003810 bpatch patch06_3 ,mem_patch06 
+0x3303 003811 arg mem_context ,rega 
+0x3304 003812 force context_num ,loopcnt 
+:      003813 context_search_loop:
+0x3305 003814 ifetch 1 ,rega 
+0x3306 003815 copy regc ,pc 
+:      003816 context_search_next:
+0x3307 003817 increase context_size ,rega 
+0x3308 003818 loop context_search_loop 
+0x3309 003819 force 1 ,null 
+0x330a 003820 rtn 
+:      003822 context_search_empty:
+0x330b 003823 bbit1 state_inconn ,context_search_next 
+0x330c 003824 bbit1 state_inpage ,context_search_next 
+0x330d 003825 force 0 ,null 
+0x330e 003826 rtn 
+:      003828 context_search_lap:
+0x330f 003829 bbit1 state_inpage ,context_search_lap_cont 
+0x3310 003830 bbit0 state_inconn ,context_search_next 
+:      003831 context_search_lap_cont:
+0x3311 003832 add rega ,coffset_plap ,contr 
+0x3312 003833 ifetch 6 ,contr 
+0x3313 003834 isub temp ,null 
+0x3314 003835 rtn zero 
+0x3315 003836 branch context_search_next 
+:      003838 context_search_handle:
+0x3316 003839 bbit0 state_inconn ,context_search_next 
+0x3317 003840 add rega ,coffset_conn_handle ,contr 
+0x3318 003841 ifetch 1 ,contr 
+0x3319 003842 isub temp ,null 
+0x331a 003843 rtn zero 
+0x331b 003844 branch context_search_next 
+:      003846 context_search_sniff:
+0x331c 003847 bbit0 state_insniff ,context_search_next 
+:      003848 context_search_sniff_loop:
+0x331d 003849 call context_get_anchor 
+0x331e 003850 bbit1 27 ,context_search_sniff_cont 
+0x331f 003851 isolate0 27 ,temp 
+0x3320 003852 branch context_search_sniff_cont ,true 
+0x3321 003853 set1 28 ,pdata 
+:      003854 context_search_sniff_cont:
+0x3322 003855 isub temp ,pdata 
+0x3323 003856 increase 1 ,pdata 
+0x3324 003857 branch context_search_sniff_miss ,positive 
+0x3325 003858 increase 5 ,pdata 
+0x3326 003859 nbranch context_search_next ,positive 
+:      003860 context_search_meet:
+0x3327 003861 copy temp ,bt_clk 
+0x3328 003862 call context_next_anchor 
+0x3329 003863 force 0 ,null 
+0x332a 003864 rtn 
+:      003866 context_search_sniff_miss:
+0x332b 003867 iforce regb 
+0x332c 003868 add rega ,coffset_tsniff ,contr 
+0x332d 003869 ifetch 2 ,contr 
+0x332e 003870 branch context_search_meet ,blank 
+0x332f 003871 call context_next_anchor 
+0x3330 003872 branch context_search_sniff_loop 
+:      003874 context_check_inconn:
+0x3331 003875 bbit0 state_inconn ,context_search_next 
+0x3332 003876 force 0 ,null 
+0x3333 003877 rtn 
+:      003879 context_check_a_wack:
+0x3334 003880 bbit0 state_inconn ,context_search_next 
+0x3335 003881 add rega ,coffset_mode ,contr 
+0x3336 003882 ifetch 1 ,contr 
+0x3337 003883 bbit1 mode_le ,context_search_next 
+0x3338 003884 add rega ,coffset_arq ,contr 
+0x3339 003885 ifetch 1 ,contr 
+0x333a 003886 bbit0 wack ,context_search_next 
+0x333b 003887 force 0 ,null 
+0x333c 003888 rtn 
+:      003890 context_get_anchor:
+0x333d 003891 add rega ,coffset_mode ,contr 
+0x333e 003892 ifetcht 1 ,contr 
+0x333f 003893 deposit clkn_bt 
+0x3340 003894 isolate1 mode_master ,temp 
+0x3341 003895 add rega ,coffset_sniff_anchor ,contr 
+0x3342 003896 ifetcht 4 ,contr 
+0x3343 003897 rtn true 
+0x3344 003898 add rega ,coffset_clk_offset ,contr 
+0x3345 003899 ifetch 6 ,contr 
+0x3346 003900 call calc_clke2 
+0x3347 003901 deposit clke_bt 
+0x3348 003902 rtn 
+:      003904 context_next_anchor:
+0x3349 003905 add rega ,coffset_tsniff ,contr 
+0x334a 003906 add rega ,coffset_sniff_anchor ,contw 
+0x334b 003907 ifetch 2 ,contr 
+0x334c 003908 iadd temp ,timeup 
+0x334d 003909 deposit timeup 
+0x334e 003910 istore 4 ,contw 
+0x334f 003911 branch le_context_nexthop 
+:      003914 context_search_window:
+0x3350 003915 bbit0 state_insniff ,context_search_next 
+0x3351 003916 call context_get_anchor 
+0x3352 003917 iadd stop_watch ,pdata 
+0x3353 003918 iadd stop_watch ,pdata 
+0x3354 003919 iadd queue ,pdata 
+0x3355 003920 isub temp ,null 
+0x3356 003921 nbranch context_search_next ,positive 
+0x3357 003922 force 0 ,null 
+0x3358 003923 rtn 
+:      003925 context_traverse_mslot:
+0x3359 003926 bbit0 state_inconn ,context_search_next 
+0x335a 003927 deposit temp 
+0x335b 003928 isub rega ,null 
+0x335c 003929 branch context_search_next ,null 
+0x335d 003930 add rega ,coffset_mode ,contr 
+0x335e 003931 ifetch 1 ,contr 
+0x335f 003932 bbit1 mode_le ,context_search_next 
+0x3360 003933 add rega ,coffset_lmp_to_send ,contw 
+0x3361 003934 ifetch 1 ,contw 
+0x3362 003935 nbranch context_search_next ,blank 
+0x3363 003936 force lmp_max_slot ,pdata 
+0x3364 003937 istore 1 ,contw 
+0x3365 003938 branch context_search_next 
+:      003940 context_traverse_clearkey:
+0x3366 003941 bbit0 state_inconn ,context_search_next 
+0x3367 003942 deposit temp 
+0x3368 003943 isub rega ,null 
+0x3369 003944 branch context_search_next ,null 
+0x336a 003945 add rega ,coffset_mode ,contr 
+0x336b 003946 ifetch 1 ,contr 
+0x336c 003947 bbit1 mode_le ,context_search_next 
+0x336d 003948 ifetch 1 ,rega 
+0x336e 003949 set0 state_linkkey ,pdata 
+0x336f 003950 istore 1 ,rega 
+0x3370 003951 branch context_search_next 
+:      003954 master_conn_send_packet:
+0x3371 003955 set0 mark_ext_patch ,mark 
+0x3372 003956 bpatch patch06_4 ,mem_patch06 
+0x3373 003957 call rf_setup_time_master_slot 
+:      003958 master_send_packet:
+0x3374 003959 add clkn_bt ,1 ,bt_clk 
+0x3375 003960 call fetch_self_bt_adr 
+0x3376 003961 force 0x03 ,freq_mode 
+0x3377 003962 call tx_radio_freq 
+0x3378 003963 call start_transmitter 
+0x3379 003964 call start_tx_native 
+0x337a 003965 call send_access_word 
+0x337b 003966 branch transmit_packet 
+:      003968 master_conn_recv_packet:
+0x337c 003969 set0 mark_ext_patch ,mark 
+0x337d 003970 bpatch patch06_5 ,mem_patch06 
+0x337e 003971 call rf_setup_time_slave_slot 
+:      003972 master_recv_packet:
+0x337f 003973 add clkn_bt ,1 ,bt_clk 
+0x3380 003974 call fetch_self_bt_adr 
+0x3381 003975 force 0x03 ,freq_mode 
+0x3382 003976 call rx_radio_freq 
+0x3383 003977 call init_rx_packet_flags 
+0x3384 003978 call prep_crypt 
+0x3385 003979 call start_rx_native 
+0x3386 003980 call start_receiver 
+:      003981 master_rx_conn_finish_packet:
+0x3387 003982 call wait_access_clkn_rt 
+0x3388 003983 nrtn sync 
+0x3389 003984 call save_rssi 
+0x338a 003985 branch receive_packet 
+:      003989 master_newconn_once:
+0x338b 003990 set0 mark_ext_patch ,mark 
+0x338c 003991 bpatch patch06_6 ,mem_patch06 
+0x338d 003992 fetch 1 ,mem_fhs_am_addr 
+0x338e 003993 iforce am_addr 
+0x338f 003994 force type_poll ,type 
+0x3390 003995 call master_conn_send_packet 
+0x3391 003996 branch master_conn_recv_packet 
+:      004007 inquiry_scan_dispatch:
+0x3392 004008 fetch 1 ,mem_scan_mode 
+0x3393 004009 rtnbit0 inq_scan_mode 
+0x3394 004010 force iscan_interval_timer ,queue 
+0x3395 004011 call timer_check 
+0x3396 004012 nrtn blank 
+0x3397 004013 fetcht 2 ,mem_iscan_window 
+0x3398 004014 force 4 ,queue 
+0x3399 004015 call sniff_check_window 
+0x339a 004016 rtn user 
+0x339b 004017 call inquiry_scan_start 
+0x339c 004018 force iscan_interval_timer ,queue 
+0x339d 004019 fetch 2 ,mem_iscan_interval 
+0x339e 004020 nbranch timer_init ,sync 
+0x339f 004021 random pdata 
+0x33a0 004022 iand mask3ff ,pdata 
+0x33a1 004023 branch timer_init 
+:      004026 inquiry_scan_start:
+0x33a2 004027 set0 mark_ext_patch ,mark 
+0x33a3 004028 bpatch patch06_7 ,mem_patch06 
+0x33a4 004029 jam 0 ,mem_fhs_am_addr 
+0x33a5 004030 disable clknt 
+0x33a6 004031 disable attempt 
+0x33a7 004032 call afh_clear 
+0x33a8 004033 and clkn_bt ,0x1fc ,bt_clk 
+0x33a9 004034 force 0x01 ,freq_mode 
+0x33aa 004035 call fetch_giac 
+0x33ab 004036 call rx_radio_freq 
+0x33ac 004037 setflip mark_inquiry_state ,mark 
+0x33ad 004038 fetch 1 ,mem_inquiryscan_waitcnt 
+0x33ae 004039 increase 1 ,pdata 
+0x33af 004040 store 1 ,mem_inquiryscan_waitcnt 
+0x33b0 004041 call fetch_diac 
+0x33b1 004042 call start_receiver 
+0x33b2 004043 call wait_access_forever 
+0x33b3 004044 nrtn sync 
+0x33b4 004045 set0 mark_ext_patch ,mark 
+0x33b5 004046 bpatch patch07_0 ,mem_patch07 
+0x33b6 004047 force 0 ,stop_watch 
+0x33b7 004048 call shutdown_radio 
+0x33b8 004049 fetch 1 ,mem_inquiryscan_rcvcnt 
+0x33b9 004050 increase 1 ,pdata 
+0x33ba 004051 store 1 ,mem_inquiryscan_rcvcnt 
+0x33bb 004052 call fetch_giac 
+0x33bc 004053 call rf_setup_time_slave_slot 
+0x33bd 004054 or_into 0x002 ,bt_clk 
+0x33be 004055 force 0x01 ,freq_mode 
+0x33bf 004056 call tx_radio_freq 
+0x33c0 004057 call fetch_diac 
+0x33c1 004058 call start_transmitter 
+0x33c2 004059 call start_tx_external 
+0x33c3 004060 deposit clkn_bt 
+0x33c4 004061 store 4 ,mem_clkn_bt 
+0x33c5 004062 call send_access_word 
+0x33c6 004063 force type_fhs ,type 
+0x33c7 004064 force 0 ,am_addr 
+0x33c8 004065 call scan_mode_whiten 
+0x33c9 004066 call transmit_packet_whitened 
+0x33ca 004067 call send_eir 
+0x33cb 004068 and_into 0x1fd ,bt_clk 
+0x33cc 004069 increase 1 ,n_tx_slot 
+0x33cd 004070 rtn 
+:      004072 send_eir:
+0x33ce 004073 set0 mark_ext_patch ,mark 
+0x33cf 004074 bpatch patch07_1 ,mem_patch07 
+0x33d0 004075 fetch 1 ,mem_eir_enable 
+0x33d1 004076 rtn blank 
+0x33d2 004077 arg mem_eir ,contw 
+0x33d3 004078 fetch 1 ,mem_local_name_length 
+0x33d4 004079 copy pdata ,loopcnt 
+0x33d5 004080 increase 1 ,pdata 
+0x33d6 004081 istore 1 ,contw 
+0x33d7 004082 copy contw ,temp 
+0x33d8 004083 increase 1 ,pdata 
+0x33d9 004084 store 2 ,mem_tx_len 
+0x33da 004085 copy temp ,contw 
+0x33db 004086 setarg 0x09 
+0x33dc 004087 istore 1 ,contw 
+0x33dd 004088 arg mem_local_name ,contr 
+0x33de 004089 call memcpy 
+0x33df 004090 arg mem_all_uuid_128bits ,regc 
+0x33e0 004091 arg 4 ,loopcnt 
+0x33e1 004092 call get_all_uuid 
+0x33e2 004093 arg mem_all_uuid_16bits ,regc 
+0x33e3 004094 arg 1 ,loopcnt 
+0x33e4 004095 call get_all_uuid 
+0x33e5 004096 force type_dm3 ,type 
+0x33e6 004097 jam 2 ,mem_tx_lch 
+0x33e7 004098 setarg mem_eir 
+0x33e8 004099 store 2 ,mem_txptr 
+0x33e9 004100 call rf_setup_time_slave_slot 
+0x33ea 004101 call tx_radio_freq 
+0x33eb 004102 call start_transmitter 
+0x33ec 004103 call start_tx_external 
+0x33ed 004104 call send_access_word 
+0x33ee 004105 call scan_mode_whiten 
+0x33ef 004106 call transmit_packet_whitened 
+0x33f0 004107 rtn 
+:      004110 get_all_uuid:
+0x33f1 004111 copy contw ,temp 
+0x33f2 004112 copy regc ,contr 
+0x33f3 004113 ifetch 1 ,contr 
+0x33f4 004114 rtn blank 
+:      004115 lshift_loop:
+0x33f5 004116 lshift pdata ,pdata 
+0x33f6 004117 loop lshift_loop 
+0x33f7 004118 copy pdata ,rega 
+0x33f8 004119 increase 2 ,pdata 
+0x33f9 004120 copy pdata ,queue 
+0x33fa 004121 fetch 2 ,mem_tx_len 
+0x33fb 004122 iadd queue ,pdata 
+0x33fc 004123 store 2 ,mem_tx_len 
+0x33fd 004124 copy temp ,contw 
+0x33fe 004125 copy rega ,pdata 
+0x33ff 004126 increase 1 ,pdata 
+0x3400 004127 istore 1 ,contw 
+0x3401 004128 copy regc ,contr 
+0x3402 004129 ifetch 1 ,contr 
+0x3403 004130 ifetch 1 ,contr 
+0x3404 004131 istore 1 ,contw 
+0x3405 004132 copy rega ,loopcnt 
+0x3406 004133 branch memcpy 
+:      004139 page_scan_dispatch:
+0x3407 004140 fetch 1 ,mem_scan_mode 
+0x3408 004141 rtnbit0 page_scan_mode 
+0x3409 004142 force pscan_interval_timer ,queue 
+0x340a 004143 call timer_check 
+0x340b 004144 nrtn blank 
+0x340c 004145 fetcht 2 ,mem_pscan_window 
+0x340d 004146 force 40 ,queue 
+0x340e 004147 call sniff_check_window 
+0x340f 004148 rtn user 
+0x3410 004149 force 0 ,am_addr 
+0x3411 004150 jam param_pagerespto ,mem_fhs_wait_counter 
+0x3412 004151 set0 mark_fhs_already_good ,mark 
+0x3413 004152 call page_scan_start 
+0x3414 004153 force pscan_interval_timer ,queue 
+0x3415 004154 fetch 2 ,mem_pscan_interval 
+0x3416 004155 branch timer_init 
+:      004158 page_scan_start:
+0x3417 004159 set0 mark_ext_patch ,mark 
+0x3418 004160 bpatch patch07_2 ,mem_patch07 
+0x3419 004161 disable clknt 
+0x341a 004162 call afh_clear 
+0x341b 004163 fetch 1 ,mem_pagescan_waitcnt 
+0x341c 004164 increase 1 ,pdata 
+0x341d 004165 store 1 ,mem_pagescan_waitcnt 
+0x341e 004166 force 0 ,n_tx_slot 
+0x341f 004167 call fetch_self_bt_adr 
+0x3420 004168 add clkn_bt ,1 ,bt_clk 
+0x3421 004169 force 0x02 ,freq_mode 
+0x3422 004170 set0 mark_ext_patch ,mark 
+0x3423 004171 bpatch patch07_3 ,mem_patch07 
+0x3424 004172 call rx_radio_freq 
+0x3425 004173 call start_receiver 
+0x3426 004174 call wait_access_forever 
+0x3427 004175 nrtn sync 
+0x3428 004176 call shutdown_radio 
+0x3429 004177 fetch 1 ,mem_pagescan_rcvcnt 
+0x342a 004178 increase 1 ,pdata 
+0x342b 004179 store 1 ,mem_pagescan_rcvcnt 
+0x342c 004180 force 0 ,stop_watch 
+0x342d 004181 call rf_setup_time_slave_slot 
+0x342e 004182 or_into 0x002 ,bt_clk 
+0x342f 004183 force 0x01 ,freq_mode 
+0x3430 004184 call tx_radio_freq 
+0x3431 004185 call start_transmitter 
+0x3432 004186 call start_tx_external 
+0x3433 004187 call send_access_word 
+0x3434 004188 call end_of_packet 
+0x3435 004189 force 0 ,am_addr 
+0x3436 004190 arg param_rf_setup ,timeup 
+0x3437 004191 until clke_rt ,meet 
+0x3438 004192 or_into 0x03 ,clke_bt 
+0x3439 004193 and_into 0x1fd ,bt_clk 
+:      004194 page_scan_wait_fhs_restart:
+0x343a 004195 set0 mark_ext_patch ,mark 
+0x343b 004196 bpatch patch07_4 ,mem_patch07 
+0x343c 004197 increase 1 ,n_tx_slot 
+0x343d 004198 call rx_radio_freq 
+0x343e 004199 call start_receiver 
+0x343f 004200 call wait_access_mhalfbnd 
+0x3440 004201 nbranch page_scan_wait_fhs_again ,sync 
+0x3441 004202 call scan_mode_whiten 
+0x3442 004203 call receive_packet_whitened 
+0x3443 004204 bmark1 mark_fhs_already_good ,page_scan_reply_to_fhs 
+:      004205 page_scan_wait_fhs_again:
+0x3444 004206 set0 mark_ext_patch ,mark 
+0x3445 004207 bpatch patch07_5 ,mem_patch07 
+0x3446 004208 fetch 1 ,mem_fhs_wait_counter 
+0x3447 004209 rtn blank 
+0x3448 004210 increase -1 ,pdata 
+0x3449 004211 store 1 ,mem_fhs_wait_counter 
+0x344a 004212 call rf_setup_time_master_slot 
+0x344b 004213 branch page_scan_wait_fhs_restart 
+:      004216 page_scan_reply_to_fhs:
+0x344c 004217 set0 mark_ext_patch ,mark 
+0x344d 004218 bpatch patch07_6 ,mem_patch07 
+0x344e 004219 set0 1 ,clke_bt 
+0x344f 004220 set1 0 ,clke_bt 
+0x3450 004221 fetch 1 ,mem_pagescan_rcvfhscnt 
+0x3451 004222 increase 1 ,pdata 
+0x3452 004223 store 1 ,mem_pagescan_rcvfhscnt 
+0x3453 004224 call rf_setup_time_slave_slot 
+0x3454 004225 or_into 0x02 ,bt_clk 
+0x3455 004226 call tx_radio_freq 
+0x3456 004227 call start_transmitter 
+0x3457 004228 call start_tx_external 
+0x3458 004229 call send_access_word 
+0x3459 004230 call end_of_packet 
+:      004231 slave_apply_clke_bt:
+0x345a 004232 compare 0x03 ,clke_bt ,0x03 
+0x345b 004233 branch slave_apply_clke_bt_now ,true 
+0x345c 004234 until null ,mhalfbnd 
+0x345d 004235 branch slave_apply_clke_bt 
+:      004236 slave_apply_clke_bt_now:
+0x345e 004237 fetch 4 ,mem_clke_bt 
+0x345f 004238 or_into 0x03 ,pdata 
+0x3460 004239 icopy clke_bt 
+:      004241 start_slave_connection:
+0x3461 004242 set0 mark_ext_patch ,mark 
+0x3462 004243 bpatch patch07_7 ,mem_patch07 
+0x3463 004244 fetch 6 ,extm_lap 
+0x3464 004245 store 6 ,mem_plap 
+0x3465 004246 call prepare_newconn 
+:      004247 slave_newconn_loop:
+0x3466 004248 call slave_newconn_once 
+0x3467 004249 branch sconn_successful ,match 
+0x3468 004250 call new_conn_timeout 
+0x3469 004251 nbranch slave_newconn_loop ,blank 
+0x346a 004252 rtn 
+:      004255 sconn_successful:
+0x346b 004256 set0 mark_ext_patch ,mark 
+0x346c 004257 bpatch patch08_0 ,mem_patch08 
+0x346d 004258 call newconn_init 
+0x346e 004259 call context_new 
+0x346f 004260 nrtn zero 
+0x3470 004261 jam 0 ,mem_mode 
+0x3471 004262 call calc_clke_offset 
+0x3472 004263 branch context_save 
+:      004266 slave_dispatch:
+0x3473 004267 set0 mark_ext_patch ,mark 
+0x3474 004268 bpatch patch08_1 ,mem_patch08 
+0x3475 004269 call calc_clke 
+0x3476 004270 call role_switch_slave 
+0x3477 004271 rtn user 
+0x3478 004272 call load_esco 
+0x3479 004273 call get_sco_data 
+:      004274 slave_loop:
+0x347a 004275 set0 mark_ext_patch ,mark 
+0x347b 004276 bpatch patch08_2 ,mem_patch08 
+0x347c 004277 call check_bt_disabled 
+0x347d 004278 call scheduler_process 
+0x347e 004279 call slave_conn_recv_packet 
+0x347f 004280 call slave_savelist 
+0x3480 004281 nbranch slave_notmatch ,match 
+0x3481 004282 call supervision_flush 
+0x3482 004283 call parse_l2cap 
+0x3483 004284 call scheduler_tx_l2cap_pkt 
+0x3484 004285 call prepare_tx 
+0x3485 004286 call slave_conn_send_packet 
+0x3486 004287 call parse_lmp 
+0x3487 004288 call process_cmd 
+0x3488 004289 call hci_send_num_complete_packets 
+0x3489 004290 fetch 1 ,mem_slave_rcvcnt 
+0x348a 004291 increase 1 ,pdata 
+0x348b 004292 store 1 ,mem_slave_rcvcnt 
+0x348c 004293 call calc_clke_offset 
+:      004294 slave_notmatch:
+0x348d 004295 set0 mark_ext_patch ,mark 
+0x348e 004296 bpatch patch08_3 ,mem_patch08 
+0x348f 004297 call lpm_set_mult 
+0x3490 004298 call supervision_update 
+0x3491 004299 branch slave_disconnect ,positive 
+0x3492 004300 call check_disconnect_timeout 
+0x3493 004301 nbranch slave_disconnect ,user 
+0x3494 004302 call check_attempt 
+0x3495 004303 nbranch slave_loop ,blank 
+0x3496 004304 call process_sco_data 
+0x3497 004305 branch restore_esco 
+:      004308 slave_disconnect:
+0x3498 004309 set0 mark_ext_patch ,mark 
+0x3499 004310 bpatch patch08_4 ,mem_patch08 
+0x349a 004311 jam 0 ,mem_tester_emulate 
+0x349b 004312 jam 0 ,mem_debug_config 
+0x349c 004313 call quit_connection 
+0x349d 004314 set0 mark_testmode ,mark 
+0x349e 004315 call test_enable_white 
+0x349f 004316 fetch 1 ,mem_state 
+0x34a0 004317 bbit0 state_conn_comp ,slave_connection_fail 
+0x34a1 004318 fetcht 1 ,mem_conn_handle 
+0x34a2 004319 branch hci_send_disconn_complete 
+:      004321 slave_connection_fail:
+0x34a3 004322 force hci_error_key_missing ,temp 
+0x34a4 004323 branch hci_send_connection_error 
+:      004325 role_switch_slave:
+0x34a5 004326 set0 mark_ext_patch ,mark 
+0x34a6 004327 bpatch patch08_5 ,mem_patch08 
+0x34a7 004328 call role_switch_check 
+0x34a8 004329 nrtn user 
+0x34a9 004330 copy am_addr ,temp 
+0x34aa 004331 call get_free_amaddr 
+0x34ab 004332 store 1 ,mem_fhs_am_addr 
+0x34ac 004333 copy temp ,am_addr 
+0x34ad 004334 jam param_newconnto ,mem_newconnto_counter 
+:      004335 roles_sendfhs_loop:
+0x34ae 004336 set0 mark_ext_patch ,mark 
+0x34af 004337 bpatch patch08_6 ,mem_patch08 
+0x34b0 004338 call rf_setup_time_master_slot 
+0x34b1 004339 force type_fhs ,type 
+0x34b2 004340 call slave_send_access 
+0x34b3 004341 deposit clkn_bt 
+0x34b4 004342 store 4 ,mem_clkn_bt 
+0x34b5 004343 call transmit_packet 
+0x34b6 004344 call rf_setup_time_slave_slot 
+0x34b7 004345 enable user3 
+0x34b8 004346 call slave_receive_access 
+0x34b9 004347 branch roles_got_fhs_reply ,sync 
+0x34ba 004348 call shutdown_radio 
+0x34bb 004349 call new_conn_timeout 
+0x34bc 004350 nbranch roles_sendfhs_loop ,blank 
+0x34bd 004351 rtnmark0 mark_accept_switch 
+0x34be 004352 jam lmp_slot_offset ,mem_lmo_opcode2 
+0x34bf 004353 set1 mark_switch_initiated ,mark 
+0x34c0 004354 rtn 
+:      004355 roles_got_fhs_reply:
+0x34c1 004356 enable clknt 
+0x34c2 004357 call prepare_newconn 
+0x34c3 004358 call afh_clear 
+:      004359 roles_newconn_loop:
+0x34c4 004360 set0 mark_ext_patch ,mark 
+0x34c5 004361 bpatch patch08_7 ,mem_patch08 
+0x34c6 004362 call master_newconn_once 
+0x34c7 004363 branch roles_newconn_responded ,sync 
+0x34c8 004364 call new_conn_timeout 
+0x34c9 004365 nbranch roles_newconn_loop ,blank 
+0x34ca 004366 disable clknt 
+0x34cb 004367 deposit clke_bt 
+0x34cc 004368 store 4 ,mem_next_btclk 
+0x34cd 004369 rtn 
+:      004370 roles_newconn_responded:
+0x34ce 004371 force 0 ,temp 
+0x34cf 004372 call hci_send_role_change 
+0x34d0 004373 enable master 
+0x34d1 004374 bmark0 mark_accept_switch ,roles_newconn_nolmp 
+0x34d2 004375 set0 mark_accept_switch ,mark 
+0x34d3 004376 jam lmp_accepted ,mem_lmo_opcode2 
+0x34d4 004377 jam lmp_host_connection_req ,mem_lmi_opcode2 
+0x34d5 004378 call tid_set_reply 
+:      004379 roles_newconn_nolmp:
+0x34d6 004380 deposit am_addr 
+0x34d7 004381 store 1 ,mem_amaddr 
+0x34d8 004382 force 0 ,pdata 
+0x34d9 004383 store 6 ,mem_clk_offset 
+0x34da 004384 fetch 1 ,mem_mode 
+0x34db 004385 set1 mode_master ,pdata 
+0x34dc 004386 store 1 ,mem_mode 
+0x34dd 004387 call supervision_flush 
+0x34de 004388 disable master 
+:      004389 enable_user:
+0x34df 004390 enable user 
+0x34e0 004391 rtn 
+:      004395 init_rx_packet_flags:
+0x34e1 004396 set0 mark_ext_patch ,mark 
+0x34e2 004397 bpatch patch09_0 ,mem_patch09 
+0x34e3 004398 disable match 
+0x34e4 004399 set0 mark_loopback ,mark 
+0x34e5 004400 set0 mark_am_addr_broadcast ,mark 
+0x34e6 004401 set0 mark_longpacket ,mark 
+0x34e7 004402 set0 mark_old_packet ,mark 
+0x34e8 004403 fetch 1 ,mem_arq 
+0x34e9 004404 set0 arqnx ,pdata 
+0x34ea 004405 set1 flowx ,pdata 
+0x34eb 004406 store 1 ,mem_arq 
+0x34ec 004407 rtn 
+:      004409 prepare_newconn:
+0x34ed 004410 set0 mark_ext_patch ,mark 
+0x34ee 004411 bpatch patch09_1 ,mem_patch09 
+0x34ef 004412 jam param_newconnto ,mem_newconnto_counter 
+0x34f0 004413 jam param_newconn_arq ,mem_arq 
+0x34f1 004414 fetch 2 ,mem_rx_window_init 
+0x34f2 004415 store 2 ,mem_rx_window 
+0x34f3 004416 deposit clkn_bt 
+0x34f4 004417 store 4 ,mem_next_btclk 
+0x34f5 004418 rtn clknt 
+0x34f6 004419 deposit clke_bt 
+0x34f7 004420 store 4 ,mem_next_btclk 
+0x34f8 004421 rtn 
+:      004423 newconn_init:
+0x34f9 004424 set0 mark_ext_patch ,mark 
+0x34fa 004425 bpatch patch09_2 ,mem_patch09 
+0x34fb 004426 call init_lmp_reinit 
+0x34fc 004427 call new_conn_handle 
+0x34fd 004428 store 1 ,mem_conn_handle 
+0x34fe 004429 setarg param_supervision_to 
+0x34ff 004430 store 2 ,mem_supervision_to 
+0x3500 004431 fetch 1 ,mem_state 
+0x3501 004432 set1 state_inconn ,pdata 
+0x3502 004433 store 1 ,mem_state 
+0x3503 004434 jam 0 ,mem_op 
+0x3504 004435 jam 0 ,mem_state_map 
+0x3505 004436 jam 0 ,mem_lpm_current_mult 
+0x3506 004437 branch supervision_flush 
+:      004440 clear_linkkey:
+0x3507 004441 set0 mark_ext_patch ,mark 
+0x3508 004442 bpatch patch09_3 ,mem_patch09 
+0x3509 004443 force 0 ,pdata 
+0x350a 004444 store 8 ,mem_link_key 
+0x350b 004445 istore 8 ,contw 
+0x350c 004446 call clear_linkstate 
+0x350d 004447 branch context_traverse_linkkey 
+:      004449 new_conn_timeout:
+0x350e 004450 fetch 1 ,mem_newconnto_counter 
+0x350f 004451 increase -1 ,pdata 
+0x3510 004452 store 1 ,mem_newconnto_counter 
+0x3511 004453 rtn 
+:      004455 new_conn_handle:
+0x3512 004456 fetch 1 ,mem_handle_num 
+0x3513 004457 increase 1 ,pdata 
+0x3514 004458 store 1 ,mem_handle_num 
+0x3515 004459 rtn 
+:      004462 quit_connection:
+0x3516 004463 set0 mark_ext_patch ,mark 
+0x3517 004464 bpatch patch09_4 ,mem_patch09 
+0x3518 004465 call disconnect_stop_sco 
+0x3519 004466 fetch 1 ,mem_hci_cmd 
+0x351a 004467 beq hci_cmd_remote_name_req ,quit_connection_name 
+0x351b 004468 fetch 1 ,mem_lmp_to_send 
+0x351c 004469 bne lmp_name_req ,quit_connection_cont 
+:      004470 quit_connection_name:
+0x351d 004471 call cmd_check_plap 
+0x351e 004472 nbranch quit_connection_cont ,zero 
+0x351f 004473 call master_name_error 
+0x3520 004474 jam 0 ,mem_hci_cmd 
+:      004475 quit_connection_cont:
+0x3521 004476 set0 mark_ext_patch ,mark 
+0x3522 004477 bpatch patch09_5 ,mem_patch09 
+0x3523 004478 call app_disconn_reason_collect_bt 
+0x3524 004479 call process_cmd 
+0x3525 004480 call sniff_exit 
+0x3526 004481 jam bt_evt_bb_disconnected ,mem_fifo_temp 
+0x3527 004482 call ui_ipc_send_event 
+0x3528 004483 call init_lmp_work 
+0x3529 004484 call l2cap_init_work 
+0x352a 004485 call sp_initialize 
+0x352b 004486 fetch 1 ,mem_state 
+0x352c 004487 set0 state_inconn 
+0x352d 004488 store 1 ,mem_state 
+0x352e 004489 jam 0 ,memui_reconnect_mode 
+0x352f 004491 fetch 1 ,mem_state_map 
+0x3530 004492 compare 0x0 ,pdata ,0xc0 
+0x3531 004493 branch quit_connection_not_clear_mark ,true 
+0x3532 004494 set0 mark_rxbuf_inuse ,mark 
+:      004495 quit_connection_not_clear_mark:
+0x3533 004496 fetch 1 ,mem_arq 
+0x3534 004497 bbit0 wack ,quit_connection_not_clear_tx 
+:      004498 quit_connection_not_clear_tx:
+0x3535 004499 fetch 1 ,mem_op 
+0x3536 004500 rtnbit0 op_txl2cap 
+0x3537 004501 set0 mark_tx_l2cap ,mark 
+0x3538 004502 rtn 
+:      004504 slave_newconn_once:
+0x3539 004505 set0 mark_ext_patch ,mark 
+0x353a 004506 bpatch patch09_6 ,mem_patch09 
+0x353b 004507 fetch 1 ,extm_newconn_am_addr 
+0x353c 004508 rtn blank 
+0x353d 004509 icopy am_addr 
+0x353e 004510 call slave_conn_recv_packet 
+0x353f 004511 nrtn match 
+0x3540 004512 force type_null ,type 
+0x3541 004513 call slave_conn_send_packet 
+0x3542 004514 deposit am_addr 
+0x3543 004515 store 1 ,mem_amaddr 
+0x3544 004516 force 0 ,pdata 
+0x3545 004517 store 1 ,extm_newconn_am_addr 
+0x3546 004518 rtn 
+:      004524 prepare_tx:
+0x3547 004525 set0 mark_ext_patch ,mark 
+0x3548 004526 bpatch patch09_7 ,mem_patch09 
+0x3549 004527 fetch 1 ,mem_state 
+0x354a 004528 bbit0 state_insco ,prepare_tx_not_sco 
+0x354b 004529 force type_hv3 ,type 
+0x354c 004530 bmark0 mark_esco ,prepare_tx_not_esco 
+0x354d 004531 call check_esco_amaddr 
+0x354e 004532 nbranch prepare_tx_not_sco ,true 
+0x354f 004533 branch prepare_tx_not_sco ,attempt 
+0x3550 004534 call set_wait_ack 
+0x3551 004535 setarg 2 
+0x3552 004536 store 2 ,mem_retransmission_cnt 
+0x3553 004537 rtn 
+:      004538 prepare_tx_not_esco:
+0x3554 004539 nrtn attempt 
+:      004540 prepare_tx_not_sco:
+0x3555 004541 set0 mark_ext_patch ,mark 
+0x3556 004542 bpatch patch0a_0 ,mem_patch0a 
+0x3557 004543 call context_check_all_wack 
+0x3558 004544 nbranch prepare_tx_no_retransmit ,zero 
+0x3559 004545 fetch 1 ,mem_arq 
+0x355a 004546 bbit0 wack ,prepare_tx_pollnull 
+:      004547 prepare_tx_retransmit:
+0x355b 004548 bmark1 mark_loopback ,prepare_tx_loopback 
+0x355c 004549 fetch 1 ,mem_debug_config 
+0x355d 004550 bbit1 debug_tx_pattern ,prepare_tx_txpat 
+0x355e 004551 fetch 2 ,mem_retransmission_cnt 
+0x355f 004552 increase -1 ,pdata 
+0x3560 004553 store 2 ,mem_retransmission_cnt 
+0x3561 004554 branch prepare_tx_nomore_retransmit ,blank 
+0x3562 004555 fetch 1 ,mem_last_type 
+0x3563 004556 iforce type 
+0x3564 004557 rtn 
+:      004559 prepare_tx_nomore_retransmit:
+0x3565 004560 set0 mark_ext_patch ,mark 
+0x3566 004561 bpatch patch0a_1 ,mem_patch0a 
+0x3567 004562 call clear_got_tx 
+:      004563 prepare_tx_no_retransmit:
+0x3568 004564 call check_esco_amaddr 
+0x3569 004565 branch prepare_tx_pollnull ,true 
+0x356a 004566 call send_lmp 
+0x356b 004567 branch prepare_tx_sendlmp ,user 
+0x356c 004568 fetch 1 ,mem_op 
+0x356d 004569 bbit1 op_txl2cap ,prepare_tx_sendl2cap 
+0x356e 004570 bmark1 mark_loopback ,prepare_tx_loopback 
+0x356f 004571 fetch 1 ,mem_debug_config 
+0x3570 004572 bbit1 debug_tx_pattern ,prepare_tx_txpat 
+:      004573 prepare_tx_pollnull:
+0x3571 004574 force type_poll ,type 
+0x3572 004575 rtn master 
+0x3573 004576 force type_null ,type 
+0x3574 004577 rtn 
+:      004578 prepare_tx_loopback:
+0x3575 004579 set0 mark_ext_patch ,mark 
+0x3576 004580 bpatch patch0a_2 ,mem_patch0a 
+0x3577 004581 fetch 1 ,mem_rx_type 
+0x3578 004582 iforce type 
+0x3579 004583 rtnne 1 
+0x357a 004584 force type_null ,type 
+0x357b 004585 rtn 
+:      004586 prepare_tx_txpat:
+0x357c 004587 fetch 1 ,test_mode_packet_type 
+0x357d 004588 and pdata ,0xf ,type 
+0x357e 004589 set1 mark_loopback ,mark 
+0x357f 004590 rtn 
+:      004591 prepare_tx_sendlmp:
+0x3580 004592 force type_lmp ,type 
+0x3581 004593 branch set_wait_ack 
+:      004594 prepare_tx_sendl2cap:
+0x3582 004595 call tx_l2cap_type 
+:      004597 set_wait_ack:
+0x3583 004598 set0 mark_ext_patch ,mark 
+0x3584 004599 bpatch patch0a_3 ,mem_patch0a 
+0x3585 004600 fetcht 1 ,mem_arq 
+0x3586 004601 set1 wack ,temp 
+0x3587 004602 storet 1 ,mem_arq 
+0x3588 004603 deposit type 
+0x3589 004604 store 1 ,mem_last_type 
+0x358a 004605 setarg 0xffff 
+0x358b 004606 store 2 ,mem_retransmission_cnt 
+0x358c 004607 rtn 
+:      004609 tx_l2cap_type:
+0x358d 004610 set0 mark_ext_patch ,mark 
+0x358e 004611 bpatch patch0a_4 ,mem_patch0a 
+0x358f 004612 fetch 1 ,mem_state_map 
+0x3590 004613 isolate1 smap_edr ,pdata 
+0x3591 004614 fetch 2 ,mem_tx_len 
+0x3592 004615 branch tx_l2cap_type_edr ,true 
+0x3593 004616 force type_dm1 ,type 
+0x3594 004617 sub pdata ,17 ,null 
+0x3595 004618 rtn positive 
+0x3596 004619 force type_dh1 ,type 
+0x3597 004620 sub pdata ,27 ,null 
+0x3598 004621 rtn positive 
+0x3599 004622 force type_dm3 ,type 
+0x359a 004623 sub pdata ,121 ,null 
+0x359b 004624 rtn positive 
+0x359c 004625 force type_dm5 ,type 
+0x359d 004626 sub pdata ,224 ,null 
+0x359e 004627 rtn positive 
+0x359f 004628 force type_dh5 ,type 
+0x35a0 004629 rtn 
+:      004630 tx_l2cap_type_edr:
+0x35a1 004631 force type_dm1 ,type 
+0x35a2 004632 sub pdata ,17 ,null 
+0x35a3 004633 rtn positive 
+0x35a4 004634 force type_dh1 ,type 
+0x35a5 004635 sub pdata ,54 ,null 
+0x35a6 004636 rtn positive 
+0x35a7 004637 force type_dm3 ,type 
+0x35a8 004638 arg 367 ,temp 
+0x35a9 004639 isub temp ,null 
+0x35aa 004640 nrtn positive 
+0x35ab 004641 force type_dm5 ,type 
+0x35ac 004642 arg 679 ,temp 
+0x35ad 004643 isub temp ,null 
+0x35ae 004644 nrtn positive 
+0x35af 004645 force type_dh5 ,type 
+0x35b0 004646 rtn 
+:      004655 slave_receive_master_slot:
+0x35b1 004656 fetch 1 ,mem_state 
+0x35b2 004657 bbit0 state_insniff ,slave_receive_notsniff 
+0x35b3 004658 fetch 2 ,mem_tsniff 
+0x35b4 004659 branch slave_receive_notsniff ,blank 
+0x35b5 004660 nbranch slave_receive_sniff ,attempt 
+:      004661 slave_receive_notsniff:
+0x35b6 004662 call rf_setup_time_master_slot 
+:      004663 slave_receive_access:
+0x35b7 004664 add clke_bt ,1 ,bt_clk 
+:      004665 slave_receive_sniff:
+0x35b8 004666 enable swfine 
+0x35b9 004667 fetch 2 ,mem_rx_window 
+0x35ba 004668 rshift pdata ,pdata 
+0x35bb 004669 arg param_pll_setup ,temp 
+0x35bc 004670 iadd temp ,pdata 
+0x35bd 004671 call ahead_window 
+0x35be 004672 call fetch_extm_bt_adr 
+0x35bf 004673 force 0x03 ,freq_mode 
+0x35c0 004674 call rx_radio_freq 
+0x35c1 004675 call init_rx_packet_flags 
+0x35c2 004676 call prep_crypt 
+0x35c3 004677 set0 mark_ext_patch ,mark 
+0x35c4 004678 bpatch patch0a_5 ,mem_patch0a 
+0x35c5 004679 fetch 2 ,mem_rx_window 
+0x35c6 004680 rshift pdata ,pdata 
+0x35c7 004681 call ahead_window 
+0x35c8 004682 call start_receiver 
+0x35c9 004683 enable decode_fec0 
+0x35ca 004684 fetch 2 ,mem_rx_window 
+0x35cb 004685 arg param_clke_cal ,temp 
+0x35cc 004686 iadd temp ,stop_watch 
+0x35cd 004687 correlate null ,timeout 
+0x35ce 004688 copy clke ,temp 
+0x35cf 004689 storet 6 ,mem_sync_clke 
+0x35d0 004690 disable decode_fec0 
+0x35d1 004691 nrtn sync 
+0x35d2 004692 arg param_clke_cal ,clke_rt 
+0x35d3 004693 copy bt_clk ,clke_bt 
+0x35d4 004694 branch lpm_adjust_clk ,wake 
+0x35d5 004695 rtn 
+:      004698 slave_conn_recv_packet:
+0x35d6 004699 set0 mark_ext_patch ,mark 
+0x35d7 004700 bpatch patch0a_6 ,mem_patch0a 
+0x35d8 004701 call slave_receive_master_slot 
+0x35d9 004702 nbranch shutdown_radio ,sync 
+0x35da 004703 call save_rssi 
+0x35db 004704 bmark0 mark_testmode ,receive_packet 
+0x35dc 004705 fetch 2 ,mem_tst_pktcnt_sync 
+0x35dd 004706 increase 1 ,pdata 
+0x35de 004707 store 2 ,mem_tst_pktcnt_sync 
+:      004708 receive_packet:
+0x35df 004709 rshift bt_clk ,temp 
+0x35e0 004710 or temp ,0x40 ,white_init 
+:      004711 receive_packet_whitened:
+0x35e1 004712 set0 mark_ext_patch ,mark 
+0x35e2 004713 bpatch patch0a_7 ,mem_patch0a 
+0x35e3 004714 enable enable_white 
+0x35e4 004715 enable enable_hec 
+0x35e5 004716 enable decode_fec1 
+0x35e6 004717 parse demod ,bucket ,3 
+0x35e7 004718 rshift8 pwindow ,pdata 
+0x35e8 004719 store 1 ,mem_temp_am_addr 
+0x35e9 004720 parse demod ,bucket ,4 
+0x35ea 004721 inject bucket ,7 
+0x35eb 004722 copy pwindow ,pdata 
+0x35ec 004723 store 1 ,mem_rx_type 
+0x35ed 004724 parse demod ,bucket ,3 
+0x35ee 004725 rshift8 pwindow ,pdata 
+0x35ef 004726 store 1 ,mem_temp_arq 
+0x35f0 004727 fetch 1 ,mem_rx_type 
+0x35f1 004728 sub pdata ,3 ,null 
+0x35f2 004729 branch receive_packet_noedr ,positive 
+0x35f3 004730 beq 7 ,receive_packet_noedr 
+0x35f4 004731 fetch 1 ,mem_state_map 
+0x35f5 004732 isolate1 smap_edr ,pdata 
+0x35f6 004733 setflag true ,psk ,radio_ctrl 
+:      004734 receive_packet_noedr:
+0x35f7 004735 set0 mark_ext_patch ,mark 
+0x35f8 004736 bpatch patch0b_0 ,mem_patch0b 
+0x35f9 004737 parse demod ,bucket ,8 
+0x35fa 004738 disable decode_fec1 
+0x35fb 004739 disable enable_hec 
+0x35fc 004740 branch error_header ,crc_failed 
+0x35fd 004741 bmark0 mark_testmode ,receive_packet_amchk 
+0x35fe 004742 fetch 2 ,mem_tst_pktcnt_hec 
+0x35ff 004743 increase 1 ,pdata 
+0x3600 004744 store 2 ,mem_tst_pktcnt_hec 
+:      004745 receive_packet_amchk:
+0x3601 004746 set0 mark_ext_patch ,mark 
+0x3602 004747 bpatch patch0b_1 ,mem_patch0b 
+0x3603 004748 fetch 1 ,mem_temp_am_addr 
+0x3604 004749 compare 0 ,pdata ,0x07 
+0x3605 004750 setflag true ,mark_am_addr_broadcast ,mark 
+0x3606 004751 branch am_addr_ok ,true 
+0x3607 004752 icompare 0x07 ,am_addr 
+0x3608 004753 branch am_addr_match ,true 
+0x3609 004754 bmark0 mark_esco ,end_of_packet 
+0x360a 004755 fetcht 1 ,mem_saved_amaddr 
+0x360b 004756 icompare 0x7 ,temp 
+0x360c 004757 nbranch end_of_packet ,true 
+0x360d 004758 call restore_esco 
+0x360e 004759 fetch 1 ,mem_arq 
+0x360f 004760 set0 arqnx ,pdata 
+0x3610 004761 set1 flowx ,pdata 
+0x3611 004762 store 1 ,mem_arq 
+:      004763 am_addr_match:
+0x3612 004764 enable match 
+:      004765 am_addr_ok:
+0x3613 004766 set0 mark_ext_patch ,mark 
+0x3614 004767 bpatch patch0b_2 ,mem_patch0b 
+0x3615 004768 fetch 1 ,mem_rx_type 
+0x3616 004769 icopy type 
+0x3617 004770 bmark1 mark_am_addr_broadcast ,arqn_bypass 
+0x3618 004771 fetcht 1 ,mem_temp_arq 
+0x3619 004772 fetch 1 ,mem_arq 
+0x361a 004773 set0 flow ,pdata 
+0x361b 004774 isolate1 flow ,temp 
+0x361c 004775 setflag true ,flow ,pdata 
+0x361d 004776 isolate1 arqn ,temp 
+0x361e 004777 setflag true ,arqn ,pdata 
+0x361f 004778 store 1 ,mem_arq 
+0x3620 004779 isolate0 arqn ,temp 
+0x3621 004780 branch arqn_bypass ,true 
+0x3622 004781 call clear_got_tx 
+:      004782 arqn_bypass:
+0x3623 004783 set0 mark_ext_patch ,mark 
+0x3624 004784 bpatch patch0b_3 ,mem_patch0b 
+0x3625 004785 arg 0 ,temp 
+0x3626 004786 call reserve_slot 
+0x3627 004787 and type ,0xf ,pdata 
+0x3628 004788 beq type_poll ,process_poll 
+0x3629 004789 beq type_null ,end_of_packet 
+0x362a 004790 beq type_fhs ,process_fhs 
+0x362b 004791 fetcht 1 ,mem_temp_arq 
+0x362c 004792 fetch 1 ,mem_arq 
+0x362d 004793 icompare 0x04 ,temp 
+0x362e 004794 nbranch rx_type_dispatch ,true 
+0x362f 004795 bmark0 mark_am_addr_broadcast ,failed_seqn 
+0x3630 004796 bbit0 bcast1 ,rx_type_dispatch 
+:      004797 failed_seqn:
+0x3631 004798 set1 mark_old_packet ,mark 
+:      004799 rx_type_dispatch:
+0x3632 004800 set0 mark_ext_patch ,mark 
+0x3633 004801 bpatch patch0b_4 ,mem_patch0b 
+0x3634 004802 deposit type 
+0x3635 004803 beq type_dm1 ,process_dm1 
+0x3636 004804 beq type_dh1 ,process_dh1 
+0x3637 004805 beq type_hv3 ,process_hev 
+0x3638 004806 beq type_3dh1 ,process_3dh1 
+0x3639 004807 arg 4 ,temp 
+0x363a 004808 call reserve_slot 
+0x363b 004809 beq type_dm3 ,process_dm3 
+0x363c 004810 beq type_dh3 ,process_dh3 
+0x363d 004811 arg 8 ,temp 
+0x363e 004812 call reserve_slot 
+0x363f 004813 beq type_dm5 ,process_dm5 
+0x3640 004814 beq type_dh5 ,process_dh5 
+0x3641 004815 rtn 
+:      004818 process_hev:
+0x3642 004819 set0 mark_ext_patch ,mark 
+0x3643 004820 bpatch patch0b_5 ,mem_patch0b 
+0x3644 004821 enable decode_fec0 
+0x3645 004822 enable enable_crc 
+0x3646 004823 enable encrypt 
+0x3647 004824 arg mem_sco_ibuf ,contw 
+0x3648 004825 force 30 ,loopcnt 
+:      004826 process_hev_loop:
+0x3649 004827 parse demod ,bucket ,8 
+0x364a 004828 rshift3 pwindow ,pdata 
+0x364b 004829 istore 1 ,contw 
+0x364c 004830 loop process_hev_loop 
+0x364d 004831 bmark0 mark_esco ,end_of_packet 
+0x364e 004832 parse demod ,bucket ,16 
+0x364f 004833 nsetflag crc_failed ,mark_esco_rxok ,mark 
+0x3650 004834 call test_esco ,crc_failed 
+0x3651 004835 branch error_payload ,crc_failed 
+0x3652 004836 branch ack_payload 
+:      004838 test_esco:
+0x3653 004839 deposit clke 
+0x3654 004840 store 6 ,mem_display 
+0x3655 004841 rtn 
+:      004843 process_poll:
+0x3656 004844 branch end_of_packet 
+:      004846 process_dm3:
+:      004847 process_dm5:
+0x3657 004848 set1 mark_longpacket ,mark 
+:      004849 process_dm1:
+0x3658 004850 enable decode_fec2 
+0x3659 004851 branch process_dmh 
+:      004853 process_dh3:
+:      004854 process_dh5:
+0x365a 004855 set1 mark_longpacket ,mark 
+:      004856 process_3dh1:
+0x365b 004857 set1 psk3m ,radio_ctrl 
+:      004858 process_dh1:
+0x365c 004859 enable decode_fec0 
+:      004860 process_dmh:
+0x365d 004861 set0 mark_ext_patch ,mark 
+0x365e 004862 bpatch patch0b_6 ,mem_patch0b 
+0x365f 004863 bmark1 mark_rxbuf_inuse ,end_of_packet 
+0x3660 004864 isolate0 psk ,radio_ctrl 
+0x3661 004865 branch process_dmh_noedr ,true 
+0x3662 004866 disable enable_white 
+0x3663 004867 enable decode_fec0 
+0x3664 004868 disable decode_fec2 
+0x3665 004869 add clkn_bt ,2 ,timeup 
+0x3666 004870 correlate clkn_bt ,meet 
+0x3667 004871 nbranch error_payload ,sync 
+0x3668 004872 set1 mark_longpacket ,mark 
+0x3669 004873 enable enable_white 
+:      004874 process_dmh_noedr:
+0x366a 004875 set0 mark_ext_patch ,mark 
+0x366b 004876 bpatch patch0b_7 ,mem_patch0b 
+0x366c 004877 enable encrypt 
+0x366d 004878 enable enable_crc 
+0x366e 004879 parse demod ,bucket ,3 
+0x366f 004880 rshift8 pwindow ,pdata 
+0x3670 004881 store 1 ,mem_lch_code 
+0x3671 004882 parse demod ,bucket ,5 
+0x3672 004883 bmark1 mark_longpacket ,process_dmh_long 
+0x3673 004884 rshift3 pwindow ,loopcnt 
+0x3674 004885 rshift3 loopcnt ,loopcnt 
+0x3675 004886 branch process_dmh_common 
+:      004887 process_dmh_long:
+0x3676 004888 parse demod ,bucket ,5 
+0x3677 004889 rshift pwindow ,loopcnt 
+0x3678 004890 parse demod ,bucket ,3 
+:      004891 process_dmh_common:
+0x3679 004892 set0 mark_ext_patch ,mark 
+0x367a 004893 bpatch patch0c_0 ,mem_patch0c 
+0x367b 004894 deposit loopcnt 
+0x367c 004895 store 2 ,mem_len 
+0x367d 004896 branch process_dmh_data_end ,blank 
+0x367e 004897 isub mask3ff ,null 
+0x367f 004898 branch error_payload ,positive 
+0x3680 004899 set0 mark_ext_patch ,mark 
+0x3681 004900 bpatch patch0c_1 ,mem_patch0c 
+0x3682 004901 set0 mark_fhs_eir ,mark 
+0x3683 004902 fetch 1 ,mem_lch_code 
+0x3684 004903 and_into 0x03 ,pdata 
+0x3685 004904 arg mem_rxbuf ,contw 
+0x3686 004905 beq llid_lmp ,process_lmp 
+0x3687 004906 bmark1 mark_testmode ,process_dmh_data 
+0x3688 004907 fetch 1 ,mem_device_option 
+0x3689 004908 beq dvc_op_hci ,process_dmh_acl 
+0x368a 004910 fetch 1 ,mem_lch_code 
+0x368b 004911 and_into 0x03 ,pdata 
+0x368c 004912 beq llid_l2cap_start ,process_dmh_data_l2cap_start_pkt 
+0x368d 004913 beq llid_l2cap_cont ,process_dmh_data_l2cap_continue_pkt 
+0x368e 004914 branch error_payload 
+:      004916 process_lmp:
+0x368f 004917 fetch 2 ,mem_len 
+0x3690 004918 sub pdata ,0x70 ,null 
+0x3691 004919 nbranch error_payload ,positive 
+0x3692 004920 bmark1 mark_old_packet ,ack_payload 
+0x3693 004921 branch process_dmh_data 
+:      004923 process_dmh_acl:
+0x3694 004924 set0 mark_ext_patch ,mark 
+0x3695 004925 bpatch patch0c_2 ,mem_patch0c 
+0x3696 004926 bmark1 mark_old_packet ,ack_payload 
+0x3697 004927 fetch 2 ,mem_len 
+0x3698 004928 branch error_payload ,blank 
+0x3699 004929 call hci_check_bcsp_protocol 
+0x369a 004930 nbranch process_dmh_acl_check_h4_buff ,true 
+:      004931 process_dmh_acl_bcsp:
+0x369b 004932 fetcht 2 ,mem_h5tx_free 
+0x369c 004933 increase 10 ,pdata 
+0x369d 004934 isub temp ,null 
+0x369e 004935 nbranch process_dmh_acl_packet ,positive 
+0x369f 004936 call hci_dispatch 
+0x36a0 004937 branch process_dmh_acl_bcsp 
+:      004938 process_dmh_acl_check_h4_buff:
+0x36a1 004939 hfetch 2 ,core_uart_txitems 
+0x36a2 004940 arg 300 ,temp 
+0x36a3 004941 isub temp ,null 
+0x36a4 004942 branch error_payload ,positive 
+0x36a5 004943 fetch 2 ,mem_acl_credits 
+0x36a6 004944 branch error_payload ,blank 
+:      004945 process_dmh_acl_packet:
+0x36a7 004946 set0 mark_ext_patch ,mark 
+0x36a8 004947 bpatch patch0c_3 ,mem_patch0c 
+0x36a9 004948 call hci_get_packet_ptr 
+0x36aa 004949 fetch 1 ,mem_conn_handle 
+0x36ab 004950 fetcht 1 ,mem_lch_code 
+0x36ac 004951 and_into 3 ,temp 
+0x36ad 004952 lshift8 temp ,temp 
+0x36ae 004953 lshift4 temp ,temp 
+0x36af 004954 ior temp ,pdata 
+0x36b0 004955 istore 2 ,contwu 
+0x36b1 004956 fetcht 2 ,mem_len 
+0x36b2 004957 copy temp ,loopcnt 
+0x36b3 004958 istoret 2 ,contwu 
+:      004959 process_dmh_acl_copy:
+0x36b4 004960 set0 mark_ext_patch ,mark 
+0x36b5 004961 bpatch patch0c_4 ,mem_patch0c 
+0x36b6 004962 parse demod ,bucket ,8 
+0x36b7 004963 rshift3 pwindow ,pdata 
+0x36b8 004964 istore 1 ,contwu 
+0x36b9 004965 loop process_dmh_acl_copy 
+0x36ba 004966 add temp ,4 ,loopcnt 
+0x36bb 004967 call hci_check_bcsp_protocol 
+0x36bc 004968 nbranch process_dmh_acl_send_h4 ,true 
+0x36bd 004969 set1 mark_h5tx_rp ,mark 
+0x36be 004970 force 6 ,queue 
+0x36bf 004971 call bcsp_send_packet 
+0x36c0 004972 branch process_dmh_data_end 
+:      004973 process_dmh_acl_send_h4:
+0x36c1 004974 call h4_send_packet_acl 
+0x36c2 004975 branch process_dmh_data_end 
+:      004977 process_dmh_data_l2cap_start_pkt:
+0x36c3 004978 set0 mark_ext_patch ,mark 
+0x36c4 004979 bpatch patch0c_5 ,mem_patch0c 
+0x36c5 004980 bmark1 mark_old_packet ,ack_payload 
+0x36c6 004981 fetch 2 ,mem_len 
+0x36c7 004982 arg 0x2e0 ,temp 
+0x36c8 004983 isub temp ,null 
+0x36c9 004984 branch error_payload ,positive 
+0x36ca 004985 fetch 1 ,mem_l2cap_rxbuff_inuse 
+0x36cb 004986 bbit0 l2cap_inuse_buff1 ,process_dmh_data_into_buff1 
+0x36cc 004987 bbit0 l2cap_inuse_buff2 ,process_dmh_data_into_buff2 
+0x36cd 004988 branch end_of_packet 
+:      004989 process_dmh_data_into_buff1:
+0x36ce 004990 jam 1 ,mem_l2cap_rxbuff_new 
+0x36cf 004991 fetch 2 ,mem_l2cap_rxbuff1_len 
+0x36d0 004992 bne 0 ,end_of_packet 
+0x36d1 004993 arg mem_l2cap_rxbuff1 ,contw 
+0x36d2 004994 branch process_dmh_data 
+:      004995 process_dmh_data_into_buff2:
+0x36d3 004996 jam 2 ,mem_l2cap_rxbuff_new 
+0x36d4 004997 fetch 2 ,mem_l2cap_rxbuff2_len 
+0x36d5 004998 bne 0 ,end_of_packet 
+0x36d6 004999 arg mem_l2cap_rxbuff2 ,contw 
+0x36d7 005000 branch process_dmh_data 
+:      005002 process_dmh_data_l2cap_continue_pkt:
+0x36d8 005003 set0 mark_ext_patch ,mark 
+0x36d9 005004 bpatch patch0c_6 ,mem_patch0c 
+0x36da 005005 bmark1 mark_old_packet ,ack_payload 
+0x36db 005006 fetch 2 ,mem_len 
+0x36dc 005007 arg 0x2e0 ,temp 
+0x36dd 005008 isub temp ,null 
+0x36de 005009 branch error_payload ,positive 
+0x36df 005010 fetch 1 ,mem_l2cap_rxbuff_new 
+0x36e0 005011 beq 1 ,process_dmh_data_l2cap_continue_pkt1 
+0x36e1 005012 beq 2 ,process_dmh_data_l2cap_continue_pkt2 
+0x36e2 005013 branch end_of_packet 
+:      005014 process_dmh_data_l2cap_continue_pkt1:
+0x36e3 005015 arg mem_l2cap_rxbuff1 ,contw 
+0x36e4 005016 fetch 2 ,mem_l2cap_rxbuff1_len 
+0x36e5 005017 iadd contw ,contw 
+0x36e6 005018 branch process_dmh_data 
+:      005019 process_dmh_data_l2cap_continue_pkt2:
+0x36e7 005020 arg mem_l2cap_rxbuff2 ,contw 
+0x36e8 005021 fetch 2 ,mem_l2cap_rxbuff2_len 
+0x36e9 005022 iadd contw ,contw 
+:      005023 process_dmh_data:
+0x36ea 005024 parse demod ,bucket ,8 
+0x36eb 005025 rshift3 pwindow ,pdata 
+0x36ec 005026 istore 1 ,contw 
+0x36ed 005027 loop process_dmh_data 
+:      005028 process_dmh_data_end:
+0x36ee 005029 set0 mark_ext_patch ,mark 
+0x36ef 005030 bpatch patch0c_7 ,mem_patch0c 
+0x36f0 005031 parse demod ,bucket ,16 
+0x36f1 005032 branch error_payload_crc ,crc_failed 
+0x36f2 005033 call lpm_hci_wake_dispatch 
+0x36f3 005034 fetch 1 ,mem_l2cap_flow_ctrl_flag 
+0x36f4 005035 beq l2cap_flow_ctrl_enable ,end_of_packet 
+0x36f5 005036 bmark1 mark_testmode ,process_dmh_cont 
+0x36f6 005037 bmark1 mark_old_packet ,redundant_payload 
+0x36f7 005038 fetch 1 ,mem_lch_code 
+0x36f8 005039 compare 3 ,pdata ,3 
+0x36f9 005040 branch process_dmh_cont ,true 
+0x36fa 005041 fetch 2 ,mem_len 
+0x36fb 005042 branch process_dmh_cont ,blank 
+0x36fc 005043 fetch 1 ,mem_device_option 
+0x36fd 005044 beq dvc_op_hci ,process_dmh_cont 
+0x36fe 005045 set0 mark_ext_patch ,mark 
+0x36ff 005046 bpatch patch0d_0 ,mem_patch0d 
+0x3700 005047 fetch 1 ,mem_l2cap_rxbuff_new 
+0x3701 005048 beq 1 ,process_l2cap_pass_crc_buff1 
+0x3702 005049 beq 2 ,process_l2cap_pass_crc_buff2 
+0x3703 005050 branch assert 
+:      005051 process_l2cap_pass_crc_buff1:
+0x3704 005052 fetch 2 ,mem_l2cap_rxbuff1_len 
+0x3705 005053 fetcht 2 ,mem_len 
+0x3706 005054 iadd temp ,pdata 
+0x3707 005055 store 2 ,mem_l2cap_rxbuff1_len 
+0x3708 005056 beq 0 ,assert 
+0x3709 005057 fetcht 2 ,mem_l2cap_rxbuff1 
+0x370a 005058 increase 4 ,temp 
+0x370b 005059 isub temp ,null 
+0x370c 005060 call l2cap_buff1_inuse ,zero 
+0x370d 005061 branch process_dmh_cont 
+:      005062 process_l2cap_pass_crc_buff2:
+0x370e 005063 fetch 2 ,mem_l2cap_rxbuff2_len 
+0x370f 005064 fetcht 2 ,mem_len 
+0x3710 005065 iadd temp ,pdata 
+0x3711 005066 store 2 ,mem_l2cap_rxbuff2_len 
+0x3712 005067 beq 0 ,assert 
+0x3713 005068 fetcht 2 ,mem_l2cap_rxbuff2 
+0x3714 005069 add temp ,4 ,temp 
+0x3715 005070 isub temp ,null 
+0x3716 005071 call l2cap_buff2_inuse ,zero 
+0x3717 005072 branch process_dmh_cont 
+:      005073 process_dmh_cont:
+0x3718 005074 set0 mark_ext_patch ,mark 
+0x3719 005075 bpatch patch0d_1 ,mem_patch0d 
+0x371a 005076 fetcht 1 ,mem_state_map 
+0x371b 005077 fetch 1 ,mem_lch_code 
+0x371c 005078 compare 3 ,pdata ,0x03 
+0x371d 005079 setflag true ,smap_rxlmp ,temp 
+0x371e 005080 nsetflag true ,smap_rxl2cap ,temp 
+0x371f 005081 storet 1 ,mem_state_map 
+0x3720 005082 nbranch process_dmh_cont_rxbuf_not_use ,true 
+0x3721 005083 set1 mark_rxbuf_inuse ,mark 
+:      005084 process_dmh_cont_rxbuf_not_use:
+0x3722 005085 bmark0 mark_testmode ,ack_payload 
+0x3723 005086 isolate1 smap_rxlmp ,temp 
+0x3724 005087 branch ack_payload ,true 
+0x3725 005088 fetch 2 ,mem_tst_pktcnt_crc 
+0x3726 005089 increase 1 ,pdata 
+0x3727 005090 store 2 ,mem_tst_pktcnt_crc 
+0x3728 005091 set1 mark_loopback ,mark 
+0x3729 005092 set0 smap_rxl2cap ,temp 
+0x372a 005093 set0 mark_rxbuf_inuse ,mark 
+0x372b 005094 storet 1 ,mem_state_map 
+:      005095 ack_payload:
+0x372c 005096 set0 mark_ext_patch ,mark 
+0x372d 005097 bpatch patch0d_2 ,mem_patch0d 
+0x372e 005098 fetcht 1 ,mem_temp_arq 
+0x372f 005099 fetch 1 ,mem_arq 
+0x3730 005100 set1 arqnx ,pdata 
+0x3731 005101 isolate1 seqn ,temp 
+0x3732 005102 setflag true ,seqn ,pdata 
+0x3733 005103 isolate1 mark_am_addr_broadcast ,mark 
+0x3734 005104 setflag true ,bcast1 ,pdata 
+0x3735 005105 store 1 ,mem_arq 
+0x3736 005106 fetch 2 ,mem_len 
+0x3737 005107 nbranch end_of_packet ,blank 
+0x3738 005108 fetch 1 ,mem_state_map 
+0x3739 005109 set0 smap_rxl2cap ,pdata 
+0x373a 005110 store 1 ,mem_state_map 
+0x373b 005111 fetch 1 ,mem_lch_code 
+0x373c 005112 compare 0x01 ,pdata ,0x07 
+0x373d 005114 branch end_of_packet 
+:      005116 error_header:
+0x373e 005117 set0 mark_ext_patch ,mark 
+0x373f 005118 bpatch patch0d_3 ,mem_patch0d 
+0x3740 005119 disable match 
+0x3741 005120 fetch 2 ,mem_rx_hec_err 
+0x3742 005121 increase 1 ,pdata 
+0x3743 005122 store 2 ,mem_rx_hec_err 
+0x3744 005123 branch end_of_packet 
+:      005124 error_payload_crc:
+0x3745 005125 fetch 2 ,mem_rx_crc_err 
+0x3746 005126 increase 1 ,pdata 
+0x3747 005127 store 2 ,mem_rx_crc_err 
+0x3748 005128 call discard_pkt 
+0x3749 005129 bmark0 mark_testmode ,error_payload 
+0x374a 005130 set1 mark_loopback ,mark 
+:      005131 error_payload:
+0x374b 005132 branch end_of_packet 
+:      005134 discard_pkt:
+0x374c 005135 set0 mark_ext_patch ,mark 
+0x374d 005136 bpatch patch0d_4 ,mem_patch0d 
+0x374e 005137 fetch 1 ,mem_lch_code 
+0x374f 005138 compare 3 ,pdata ,0x03 
+0x3750 005139 nbranch discard_pkt_l2cap ,true 
+:      005140 discard_pkt_lmp:
+0x3751 005141 fetcht 1 ,mem_state_map 
+0x3752 005142 set0 smap_rxlmp ,temp 
+0x3753 005143 storet 1 ,mem_state_map 
+0x3754 005144 rtn 
+:      005145 discard_pkt_l2cap:
+0x3755 005148 fetcht 1 ,mem_state_map 
+0x3756 005149 set0 smap_rxl2cap ,temp 
+0x3757 005150 storet 1 ,mem_state_map 
+0x3758 005151 branch h4_send_acl_trigger_clear 
+:      005153 redundant_payload:
+0x3759 005154 fetch 1 ,mem_arq 
+0x375a 005155 set1 arqnx ,pdata 
+0x375b 005156 store 1 ,mem_arq 
+:      005157 end_of_packet:
+0x375c 005158 set0 mark_ext_patch ,mark 
+0x375d 005159 bpatch patch0d_5 ,mem_patch0d 
+0x375e 005160 disable encode_fec0 
+0x375f 005161 disable encode_fec2 
+0x3760 005162 disable decode_fec0 
+0x3761 005163 disable decode_fec2 
+0x3762 005164 disable enable_crc 
+0x3763 005165 disable encrypt 
+0x3764 005166 disable enable_white 
+0x3765 005167 branch shutdown_radio ,is_rx 
+0x3766 005168 until null ,tx_clear 
+0x3767 005169 nop 100 
+0x3768 005170 branch shutdown_radio 
+:      005172 process_fhs:
+0x3769 005173 set0 mark_ext_patch ,mark 
+0x376a 005174 bpatch patch0d_6 ,mem_patch0d 
+0x376b 005175 enable enable_crc 
+0x376c 005176 enable decode_fec2 
+0x376d 005177 parse demod ,bucket ,72 
+0x376e 005178 isolate1 58 ,pdata 
+0x376f 005179 setflag true ,mark_fhs_eir ,mark 
+0x3770 005180 copy bt_adr ,temp 
+0x3771 005181 ialigned bt_adr 
+0x3772 005182 ialigned fhs0 
+0x3773 005183 pulse recalc 
+0x3774 005184 setsect 2 ,0xfffff 
+0x3775 005185 setsect 3 ,0x0ffff 
+0x3776 005186 nop 32 
+0x3777 005187 iverify fhs_parity 
+0x3778 005188 deposit lap 
+0x3779 005189 store 3 ,extm_lap 
+0x377a 005190 deposit uap 
+0x377b 005191 store 1 ,extm_uap 
+0x377c 005192 copy temp ,bt_adr 
+0x377d 005193 branch fhs_parity_ok ,true 
+0x377e 005194 branch error_payload 
+:      005195 fhs_parity_ok:
+0x377f 005196 set0 mark_ext_patch ,mark 
+0x3780 005197 bpatch patch0d_7 ,mem_patch0d 
+0x3781 005198 parse demod ,bucket ,72 
+0x3782 005199 ialigned fhs1 
+0x3783 005200 ialigned am_addr 
+0x3784 005201 ialigned nap 
+0x3785 005202 ialigned regb 
+0x3786 005203 force 0 ,pdata 
+0x3787 005204 parse demod ,bucket ,16 
+0x3788 005205 branch error_payload ,crc_failed 
+0x3789 005206 setarg 0x0ffffffc 
+0x378a 005207 iand regb ,pdata 
+0x378b 005208 store 4 ,mem_clke_bt 
+0x378c 005209 deposit fhs_class 
+0x378d 005210 store 3 ,extm_class 
+0x378e 005211 deposit fhs_misc 
+0x378f 005212 store 1 ,extm_fhs_misc 
+0x3790 005213 deposit am_addr 
+0x3791 005214 store 1 ,extm_newconn_am_addr 
+0x3792 005215 deposit nap 
+0x3793 005216 store 2 ,extm_nap 
+0x3794 005217 deposit bt_clk 
+0x3795 005218 inject rxf ,32 
+0x3796 005219 compare type_fhs ,type ,0x0f 
+0x3797 005220 setflag true ,mark_fhs_already_good ,mark 
+0x3798 005221 branch end_of_packet 
+:      005223 clear_got_tx:
+0x3799 005224 set0 mark_ext_patch ,mark 
+0x379a 005225 bpatch patch0e_0 ,mem_patch0e 
+0x379b 005226 fetch 1 ,mem_arq 
+0x379c 005227 rtnbit0 wack 
+0x379d 005228 set0 wack ,pdata 
+0x379e 005229 setflip seqnx ,pdata 
+0x379f 005230 store 1 ,mem_arq 
+0x37a0 005231 fetch 1 ,mem_last_type 
+0x37a1 005232 beq type_lmp ,clear_got_txlmp 
+0x37a2 005233 rtneq type_hv3 
+0x37a3 005234 fetch 1 ,mem_op 
+0x37a4 005235 rtnbit0 op_txl2cap ,pdata 
+0x37a5 005236 set0 op_txl2cap ,pdata 
+0x37a6 005237 set1 op_pkt_comp ,pdata 
+0x37a7 005238 store 1 ,mem_op 
+0x37a8 005239 set0 mark_tx_l2cap ,mark 
+0x37a9 005240 fetch 1 ,mem_device_option 
+0x37aa 005241 rtneq dvc_op_hci 
+0x37ab 005242 fetch 2 ,mem_l2cap_tx_multi_offset 
+0x37ac 005243 nrtn blank 
+0x37ad 005244 fetch 1 ,mem_op 
+0x37ae 005245 set0 op_pkt_comp ,pdata 
+0x37af 005246 store 1 ,mem_op 
+0x37b0 005247 branch l2cap_malloc_free 
+:      005249 clear_got_txlmp:
+0x37b1 005250 set0 mark_ext_patch ,mark 
+0x37b2 005251 bpatch patch0e_1 ,mem_patch0e 
+0x37b3 005252 fetch 1 ,mem_lmo_header_opcode 
+0x37b4 005253 rshift pdata ,pdata 
+0x37b5 005254 beq lmp_start_encryption_req ,start_encryption 
+0x37b6 005255 beq lmp_stop_encryption_req ,stop_encryption 
+0x37b7 005256 beq lmp_unsniff_req ,sniff_exit 
+0x37b8 005257 beq lmp_escape ,clear_lmp_escape 
+0x37b9 005258 beq lmp_remove_sco_link_req ,stop_sco 
+0x37ba 005259 rtnne lmp_accepted 
+0x37bb 005260 fetch 1 ,mem_lmo_payload 
+0x37bc 005261 beq lmp_sco_link_req ,sco_link_req_by_slave 
+0x37bd 005262 beq lmp_start_encryption_req ,clear_send_setup_complete 
+0x37be 005263 rtn 
+:      005265 clear_lmp_escape:
+0x37bf 005266 fetch 1 ,mem_lmo_payload 
+0x37c0 005267 set1 7 ,pdata 
+0x37c1 005268 beq lmp_ext_remove_esco_req ,stop_sco 
+0x37c2 005269 rtn 
+:      005270 clear_send_setup_complete:
+0x37c3 005271 rtn master 
+0x37c4 005272 fetch 1 ,mem_state 
+0x37c5 005273 rtnbit1 state_conn_comp 
+0x37c6 005274 jam lmp_setup_complete ,mem_lmo_opcode2 
+0x37c7 005275 rtn 
+:      005278 sco_link_req_by_slave:
+0x37c8 005279 rtn master 
+0x37c9 005280 fetch 1 ,mem_mode 
+0x37ca 005281 isolate1 send_sco_when_slave ,pdata 
+0x37cb 005282 branch clean_mem_mode ,true 
+0x37cc 005284 rtn 
+:      005285 clean_mem_mode:
+0x37cd 005286 set0 send_sco_when_slave ,pdata 
+0x37ce 005287 store 1 ,mem_mode 
+0x37cf 005288 rtn 
+:      005290 start_encryption:
+0x37d0 005291 set0 mark_ext_patch ,mark 
+0x37d1 005292 bpatch patch0e_2 ,mem_patch0e 
+0x37d2 005293 fetch 1 ,mem_state_map 
+0x37d3 005294 set1 smap_encryption ,pdata 
+0x37d4 005295 store 1 ,mem_state_map 
+0x37d5 005296 hjam 1 ,core_encrypt 
+0x37d6 005297 fetch 1 ,mem_state 
+0x37d7 005298 isolate1 state_conn_comp ,pdata 
+0x37d8 005299 branch hci_send_encryption_change ,true 
+0x37d9 005300 rtn 
+:      005302 stop_encryption:
+0x37da 005303 set0 mark_ext_patch ,mark 
+0x37db 005304 bpatch patch0e_3 ,mem_patch0e 
+0x37dc 005305 fetch 1 ,mem_state_map 
+0x37dd 005306 set0 smap_encryption ,pdata 
+0x37de 005307 store 1 ,mem_state_map 
+0x37df 005308 hjam 0 ,core_encrypt 
+0x37e0 005309 rtn 
+:      005312 sniff_init:
+0x37e1 005313 set0 mark_ext_patch ,mark 
+0x37e2 005314 bpatch patch0e_4 ,mem_patch0e 
+0x37e3 005315 copy clkn_bt ,pdata 
+0x37e4 005316 store 4 ,mem_lpm_delay_after_sniff 
+0x37e5 005317 add clkn_bt ,3 ,rega 
+0x37e6 005318 branch sniff_init_master ,master 
+0x37e7 005319 add clke_bt ,3 ,rega 
+:      005320 sniff_init_master:
+0x37e8 005321 fetcht 2 ,mem_tsniff 
+0x37e9 005322 deposit rega 
+0x37ea 005323 set0 27 ,pdata 
+0x37eb 005324 idiv temp 
+0x37ec 005325 fetch 2 ,mem_dsniff 
+0x37ed 005326 call wait_div_end 
+0x37ee 005327 remainder regc 
+0x37ef 005328 isub regc ,pdata 
+0x37f0 005329 branch sniff_init_nowrap ,positive 
+0x37f1 005330 iadd temp ,pdata 
+:      005331 sniff_init_nowrap:
+0x37f2 005332 iadd rega ,pdata 
+0x37f3 005333 store 4 ,mem_sniff_anchor 
+0x37f4 005334 jam switch_flag_init ,mem_switch_flag 
+0x37f5 005335 fetch 1 ,mem_state 
+0x37f6 005336 set1 state_insniff ,pdata 
+0x37f7 005337 store 1 ,mem_state 
+0x37f8 005338 fetch 1 ,mem_sniff_attempt 
+0x37f9 005339 store 1 ,mem_current_sniff_attempt 
+0x37fa 005340 jam 0x80 ,mem_seqi 
+0x37fb 005341 setarg 0 
+0x37fc 005342 store 3 ,mem_sniff_rcv 
+0x37fd 005343 store 3 ,mem_sniff_lost 
+0x37fe 005344 store 1 ,mem_sniff_unint_lost 
+0x37ff 005345 jam bt_evt_enter_sniff ,mem_fifo_temp 
+0x3800 005346 call ui_ipc_send_event 
+0x3801 005347 fetch 2 ,mem_rx_window_sniff 
+0x3802 005348 store 2 ,mem_rx_window 
+0x3803 005349 nrtn master 
+0x3804 005350 add am_addr ,-1 ,queue 
+0x3805 005351 rtn 
+:      005353 sniff_exit:
+0x3806 005354 set0 mark_ext_patch ,mark 
+0x3807 005355 bpatch patch0e_5 ,mem_patch0e 
+0x3808 005356 fetch 1 ,mem_state 
+0x3809 005357 rtnbit0 state_insniff 
+0x380a 005358 set0 state_insniff ,pdata 
+0x380b 005359 store 1 ,mem_state 
+0x380c 005360 jam 0x7f ,mem_seqi 
+0x380d 005361 fetch 2 ,mem_rx_window_init 
+0x380e 005362 store 2 ,mem_rx_window 
+0x380f 005363 disable wake 
+0x3810 005364 jam bt_evt_exit_sniff ,mem_fifo_temp 
+0x3811 005365 branch ui_ipc_send_event 
+:      005368 check_attempt:
+0x3812 005369 set0 mark_ext_patch ,mark 
+0x3813 005370 bpatch patch0e_6 ,mem_patch0e 
+0x3814 005371 enable attempt 
+0x3815 005372 fetch 1 ,mem_state 
+0x3816 005373 bbit1 state_insniff ,check_attempt_sniff 
+0x3817 005374 rtnmark1 mark_testmode 
+0x3818 005375 fetch 1 ,mem_arq 
+0x3819 005376 rtnbit1 wack 
+0x381a 005377 fetch 1 ,mem_lmp_to_send 
+0x381b 005378 nrtn blank 
+0x381c 005379 fetch 1 ,mem_op 
+0x381d 005380 rtnbit1 op_txl2cap 
+:      005381 check_attempt_nomore:
+0x381e 005382 force 0 ,pdata 
+0x381f 005383 rtn 
+:      005385 check_attempt_sniff:
+0x3820 005386 bbit0 state_insco ,check_attempt_not_sco 
+0x3821 005387 fetch 1 ,mem_current_sniff_attempt 
+0x3822 005388 beq 2 ,check_attempt_sniff_restore_sco 
+0x3823 005389 fetch 1 ,mem_arq 
+0x3824 005390 bbit1 wack ,check_attempt_notimeout 
+0x3825 005391 bmark0 mark_esco_rxok ,check_attempt_notimeout 
+:      005392 check_attempt_sniff_restore_sco:
+0x3826 005393 call restore_esco 
+0x3827 005394 nbranch check_attempt_notimeout ,master 
+0x3828 005395 fetch 1 ,mem_lmp_to_send 
+0x3829 005396 nbranch check_attempt_notimeout ,blank 
+:      005397 check_attempt_sco_master:
+0x382a 005398 fetch 1 ,mem_sco_poll 
+0x382b 005399 increase -1 ,pdata 
+0x382c 005400 store 1 ,mem_sco_poll 
+0x382d 005401 nbranch check_attempt_nomore ,blank 
+0x382e 005402 jam param_sco_poll ,mem_sco_poll 
+0x382f 005403 branch check_attempt_notimeout 
+:      005405 check_attempt_not_sco:
+0x3830 005406 fetch 1 ,mem_current_sniff_attempt 
+0x3831 005407 bne 1 ,check_attempt_notimeout 
+0x3832 005408 fetch 1 ,mem_current_sniff_timeout 
+0x3833 005409 branch check_attempt_notimeout ,blank 
+0x3834 005410 increase -1 ,pdata 
+0x3835 005411 store 1 ,mem_current_sniff_timeout 
+0x3836 005412 fetch 1 ,mem_arq 
+0x3837 005413 rtnbit1 wack 
+0x3838 005414 nrtn match 
+:      005415 check_attempt_notimeout:
+0x3839 005416 fetch 1 ,mem_current_sniff_attempt 
+0x383a 005417 increase -1 ,pdata 
+0x383b 005418 store 1 ,mem_current_sniff_attempt 
+0x383c 005419 rtn 
+:      005422 sniff_check_window:
+0x383d 005423 set0 mark_ext_patch ,mark 
+0x383e 005424 bpatch patch0e_7 ,mem_patch0e 
+0x383f 005425 disable swfine 
+0x3840 005426 copy temp ,stop_watch 
+0x3841 005427 call context_search_sniff_window 
+0x3842 005428 disable user 
+0x3843 005429 nrtn zero 
+0x3844 005430 force 0 ,stop_watch 
+0x3845 005431 enable user 
+0x3846 005432 rtn 
+:      005435 check_esco_amaddr:
+0x3847 005436 fetch 1 ,mem_esco_addr 
+0x3848 005437 icompare 0xff ,am_addr 
+0x3849 005438 rtn 
+:      005440 play_sco:
+0x384a 005441 set0 mark_ext_patch ,mark 
+0x384b 005442 bpatch patch0f_0 ,mem_patch0f 
+0x384c 005443 jam 1 ,mem_max_slot 
+0x384d 005445 call enable_pcm 
+0x384e 005446 force 12 ,pdata 
+0x384f 005447 store 2 ,mem_tsniff 
+0x3850 005448 fetch 1 ,mem_esco_desco 
+0x3851 005449 lshift pdata ,pdata 
+0x3852 005450 store 2 ,mem_dsniff 
+0x3853 005451 fetch 1 ,mem_state 
+0x3854 005452 set1 state_insco ,pdata 
+0x3855 005453 store 1 ,mem_state 
+0x3856 005454 jam 3 ,mem_sniff_attempt 
+0x3857 005455 jam 3 ,mem_current_sniff_attempt 
+0x3858 005456 call sniff_init 
+0x3859 005457 force 0 ,temp 
+0x385a 005458 call hci_send_sco_complete 
+0x385b 005459 jam 0x50 ,mem_esco_arq 
+0x385c 005460 jam param_sco_poll ,mem_sco_poll 
+0x385d 005461 rtn 
+:      005463 stop_sco:
+0x385e 005464 set0 mark_ext_patch ,mark 
+0x385f 005465 bpatch patch0f_1 ,mem_patch0f 
+0x3860 005466 call sniff_exit 
+0x3861 005467 jam 5 ,mem_max_slot 
+0x3862 005469 call disable_pcm 
+0x3863 005470 fetch 1 ,mem_state 
+0x3864 005471 set0 state_insco ,pdata 
+0x3865 005472 store 1 ,mem_state 
+:      005473 stop_sco_hci:
+0x3866 005474 arg 0xe00 ,temp 
+0x3867 005475 jam hci_error_remote_user_ended_connection ,mem_hci_disconn_reason 
+0x3868 005476 branch hci_send_disconn_complete 
+:      005478 stop_esco:
+0x3869 005479 set0 mark_ext_patch ,mark 
+0x386a 005480 bpatch patch0f_2 ,mem_patch0f 
+0x386b 005481 jam default_neogotiation_state ,mem_neogotiation_state 
+0x386c 005482 call stop_sco 
+0x386d 005483 call restore_esco 
+0x386e 005484 set0 mark_esco ,mark 
+0x386f 005485 rtn 
+:      005487 parse_l2cap:
+0x3870 005488 set0 mark_ext_patch ,mark 
+0x3871 005489 bpatch patch0f_3 ,mem_patch0f 
+0x3872 005490 fetch 1 ,mem_device_option 
+0x3873 005491 beq dvc_op_hci ,parse_l2cap_hci 
+0x3874 005492 set0 mark_rxbuf_inuse ,mark 
+:      005493 parse_l2cap_cont:
+0x3875 005494 jam l2cap_rx_clear ,mem_l2cap_rx_done 
+0x3876 005495 fetch 1 ,mem_l2cap_rxbuff_inuse 
+0x3877 005496 rtn blank 
+0x3878 005497 isolate1 l2cap_inuse_buff1 ,pdata 
+0x3879 005498 arg mem_l2cap_rxbuff1 ,contr 
+0x387a 005499 call process_rx_l2cap_pkt ,true 
+0x387b 005500 set0 mark_ext_patch ,mark 
+0x387c 005501 bpatch patch0f_4 ,mem_patch0f 
+0x387d 005502 fetch 1 ,mem_l2cap_rx_done 
+0x387e 005503 beq l2cap_rx_done ,parse_l2cap_release_buff1 
+0x387f 005505 jam l2cap_rx_clear ,mem_l2cap_rx_done 
+0x3880 005506 fetch 1 ,mem_l2cap_rxbuff_inuse 
+0x3881 005507 rtnbit0 l2cap_inuse_buff2 
+0x3882 005508 arg mem_l2cap_rxbuff2 ,contr 
+0x3883 005509 call process_rx_l2cap_pkt 
+0x3884 005510 fetch 1 ,mem_l2cap_rx_done 
+0x3885 005511 beq l2cap_rx_done ,parse_l2cap_release_buff2 
+0x3886 005512 rtn 
+:      005514 parse_l2cap_exit:
+0x3887 005515 fetch 1 ,mem_state_map 
+0x3888 005516 set0 smap_rxl2cap ,pdata 
+0x3889 005517 store 1 ,mem_state_map 
+0x388a 005518 set0 mark_rxbuf_inuse ,mark 
+0x388b 005519 branch h4_send_acl_trigger_clear 
+:      005521 parse_l2cap_release_buff1:
+0x388c 005522 fetch 1 ,mem_l2cap_rxbuff_inuse 
+0x388d 005523 set0 l2cap_inuse_buff1 ,pdata 
+0x388e 005524 store 1 ,mem_l2cap_rxbuff_inuse 
+0x388f 005525 setarg 0 
+0x3890 005526 store 2 ,mem_l2cap_rxbuff1_len 
+0x3891 005527 rtn 
+:      005528 parse_l2cap_release_buff2:
+0x3892 005529 fetch 1 ,mem_l2cap_rxbuff_inuse 
+0x3893 005530 set0 l2cap_inuse_buff2 ,pdata 
+0x3894 005531 store 1 ,mem_l2cap_rxbuff_inuse 
+0x3895 005532 setarg 0 
+0x3896 005533 store 2 ,mem_l2cap_rxbuff2_len 
+0x3897 005534 rtn 
+:      005536 parse_l2cap_hci:
+0x3898 005537 fetch 1 ,mem_state_map 
+0x3899 005538 rtnbit0 smap_rxl2cap ,pdata 
+0x389a 005539 call h4_send_acl_trigger 
+0x389b 005540 fetch 2 ,mem_acl_credits 
+0x389c 005541 branch assert ,blank 
+0x389d 005542 increase -1 ,pdata 
+0x389e 005543 store 2 ,mem_acl_credits 
+0x389f 005544 branch parse_l2cap_exit 
+:      005546 l2cap_buff1_inuse:
+0x38a0 005547 fetch 1 ,mem_l2cap_rxbuff_inuse 
+0x38a1 005548 set1 l2cap_inuse_buff1 ,pdata 
+0x38a2 005549 store 1 ,mem_l2cap_rxbuff_inuse 
+0x38a3 005550 rtn 
+:      005552 l2cap_buff2_inuse:
+0x38a4 005553 fetch 1 ,mem_l2cap_rxbuff_inuse 
+0x38a5 005554 set1 l2cap_inuse_buff2 ,pdata 
+0x38a6 005555 store 1 ,mem_l2cap_rxbuff_inuse 
+0x38a7 005556 rtn 
+:      005562 slave_send_access:
+0x38a8 005563 set0 mark_ext_patch ,mark 
+0x38a9 005564 bpatch patch0f_5 ,mem_patch0f 
+0x38aa 005565 add clke_bt ,1 ,bt_clk 
+0x38ab 005566 call fetch_extm_bt_adr 
+0x38ac 005567 force 0x03 ,freq_mode 
+0x38ad 005568 call tx_radio_freq 
+0x38ae 005569 call start_transmitter 
+0x38af 005570 call start_tx_external 
+0x38b0 005571 branch send_access_word 
+:      005574 slave_conn_send_packet:
+0x38b1 005575 set0 mark_ext_patch ,mark 
+0x38b2 005576 bpatch patch0f_6 ,mem_patch0f 
+0x38b3 005577 call rf_setup_time_slave_slot 
+0x38b4 005578 deposit clke_bt 
+0x38b5 005579 fetcht 4 ,mem_next_btclk 
+0x38b6 005580 isub temp ,pdata 
+0x38b7 005581 rtnne 1 
+0x38b8 005582 compare type_null ,type ,0x1f 
+0x38b9 005583 nbranch slave_conn_send_access ,true 
+0x38ba 005584 fetch 1 ,mem_rx_type 
+0x38bb 005585 rtn blank 
+:      005586 slave_conn_send_access:
+0x38bc 005587 call slave_send_access 
+0x38bd 005588 compare type_id ,type ,0x1f 
+0x38be 005589 branch end_of_packet ,true 
+:      005590 transmit_packet:
+0x38bf 005591 rshift bt_clk ,temp 
+0x38c0 005592 or temp ,0x40 ,white_init 
+:      005593 transmit_packet_whitened:
+0x38c1 005594 set0 mark_ext_patch ,mark 
+0x38c2 005595 bpatch patch0f_7 ,mem_patch0f 
+0x38c3 005596 enable enable_white 
+0x38c4 005597 enable enable_hec 
+0x38c5 005598 enable encode_fec1 
+0x38c6 005599 set0 mark_longpacket ,mark 
+0x38c7 005600 deposit am_addr 
+0x38c8 005601 inject mod ,3 
+0x38c9 005602 deposit type 
+0x38ca 005603 inject mod ,4 
+0x38cb 005604 fetch 1 ,mem_arq 
+0x38cc 005605 inject bucket ,4 
+0x38cd 005606 inject mod ,3 
+0x38ce 005607 enable enable_parity 
+0x38cf 005608 inject mod ,8 
+0x38d0 005609 disable encode_fec1 
+0x38d1 005610 disable enable_parity 
+0x38d2 005611 disable enable_hec 
+0x38d3 005612 set0 psk3m ,radio_ctrl 
+0x38d4 005613 arg 0 ,temp 
+0x38d5 005614 call reserve_slot 
+0x38d6 005615 set0 mark_ext_patch ,mark 
+0x38d7 005616 bpatch patch10_0 ,mem_patch10 
+0x38d8 005617 and type ,0x1f ,pdata 
+0x38d9 005618 beq type_lmp ,transmit_lmp 
+0x38da 005619 beq type_null ,end_of_packet 
+0x38db 005620 beq type_poll ,end_of_packet 
+0x38dc 005621 beq type_fhs ,transmit_fhs 
+0x38dd 005622 beq type_dm1 ,transmit_dm1 
+0x38de 005623 beq type_dh1 ,transmit_dh1 
+0x38df 005624 beq type_hv3 ,transmit_hev 
+0x38e0 005625 beq type_3dh1 ,transmit_3dh1 
+0x38e1 005626 arg 4 ,temp 
+0x38e2 005627 call reserve_slot 
+0x38e3 005628 beq type_dm3 ,transmit_dm3 
+0x38e4 005629 beq type_dh3 ,transmit_dh3 
+0x38e5 005630 arg 8 ,temp 
+0x38e6 005631 call reserve_slot 
+0x38e7 005632 beq type_dh5 ,transmit_dh5 
+0x38e8 005633 branch transmit_dm5 
+:      005636 transmit_hev:
+0x38e9 005637 set0 mark_ext_patch ,mark 
+0x38ea 005638 bpatch patch10_1 ,mem_patch10 
+0x38eb 005639 enable encode_fec0 
+0x38ec 005640 enable enable_crc 
+0x38ed 005641 enable encrypt 
+0x38ee 005642 force 30 ,loopcnt 
+0x38ef 005643 arg mem_sco_obuf ,contr 
+:      005644 transmit_ev_loop:
+0x38f0 005645 ifetch 1 ,contr 
+0x38f1 005646 inject mod ,8 
+0x38f2 005647 loop transmit_ev_loop 
+0x38f3 005648 bmark1 mark_esco ,transmit_end 
+0x38f4 005649 branch end_of_packet 
+:      005651 transmit_fhs:
+0x38f5 005652 set0 mark_ext_patch ,mark 
+0x38f6 005653 bpatch patch10_2 ,mem_patch10 
+0x38f7 005654 fetch 1 ,mem_fhs_am_addr 
+0x38f8 005655 icopy am_addr 
+0x38f9 005656 fetch 1 ,mem_fhs_misc 
+0x38fa 005657 icopy fhs_misc 
+0x38fb 005658 fetch 3 ,mem_class 
+0x38fc 005659 icopy fhs_class 
+0x38fd 005660 fetch 2 ,mem_nap 
+0x38fe 005661 icopy nap 
+0x38ff 005662 enable enable_crc 
+0x3900 005663 enable encode_fec2 
+0x3901 005664 copy bt_adr ,rega 
+0x3902 005665 call fetch_self_bt_adr 
+0x3903 005666 pulse recalc 
+0x3904 005667 nop 32 
+0x3905 005668 copy bt_clk ,timeup 
+0x3906 005669 fetch 4 ,mem_clkn_bt 
+0x3907 005670 icopy bt_clk 
+0x3908 005671 preload fhs0 
+0x3909 005672 set1 58 ,pdata 
+0x390a 005673 inject mod ,72 
+0x390b 005674 preload fhs1 
+0x390c 005675 inject mod ,72 
+0x390d 005676 copy timeup ,bt_clk 
+0x390e 005677 copy rega ,bt_adr 
+0x390f 005678 enable enable_parity 
+0x3910 005679 inject mod ,16 
+0x3911 005680 disable enable_parity 
+0x3912 005681 branch end_of_packet 
+:      005683 transmit_lmp:
+0x3913 005684 set0 mark_ext_patch ,mark 
+0x3914 005685 bpatch patch10_3 ,mem_patch10 
+0x3915 005686 enable encrypt 
+0x3916 005687 enable enable_crc 
+0x3917 005688 enable encode_fec2 
+0x3918 005689 fetch 1 ,mem_lmo_header_length 
+0x3919 005690 and pdata ,0x1f8 ,temp 
+0x391a 005691 arg mem_lmo_header_length ,contr 
+0x391b 005692 increase 8 ,temp 
+:      005693 transmit_lmp_loop:
+0x391c 005694 add temp ,-72 ,regc 
+0x391d 005695 nbranch transmit_lmp_finish ,positive 
+0x391e 005696 ifetch 9 ,contr 
+0x391f 005697 inject mod ,72 
+0x3920 005698 copy regc ,temp 
+0x3921 005699 branch transmit_lmp_loop 
+:      005700 transmit_lmp_finish:
+0x3922 005701 ifetch 9 ,contr 
+0x3923 005702 iinject mod ,temp 
+0x3924 005703 branch transmit_end 
+:      005705 transmit_dm1:
+0x3925 005706 enable encode_fec2 
+0x3926 005707 branch transmit_dmh 
+:      005708 transmit_dm3:
+:      005709 transmit_dm5:
+0x3927 005710 enable encode_fec2 
+0x3928 005711 set1 mark_longpacket ,mark 
+0x3929 005712 branch transmit_dmh 
+:      005714 transmit_3dh1:
+0x392a 005715 set1 psk3m ,radio_ctrl 
+:      005716 transmit_dh1:
+0x392b 005717 enable encode_fec0 
+0x392c 005718 branch transmit_dmh 
+:      005720 transmit_dh3:
+:      005721 transmit_dh5:
+0x392d 005722 set1 psk3m ,radio_ctrl 
+0x392e 005723 enable encode_fec0 
+0x392f 005724 set1 mark_longpacket ,mark 
+:      005726 transmit_dmh:
+0x3930 005727 set0 mark_ext_patch ,mark 
+0x3931 005728 bpatch patch10_4 ,mem_patch10 
+0x3932 005729 fetch 1 ,mem_state_map 
+0x3933 005730 bbit0 smap_edr ,transmit_noedr 
+0x3934 005731 sub type ,3 ,null 
+0x3935 005732 branch transmit_noedr ,positive 
+0x3936 005733 disable encrypt 
+0x3937 005734 disable encode_fec2 
+0x3938 005735 enable encode_fec0 
+0x3939 005736 disable enable_white 
+0x393a 005737 set1 psk ,radio_ctrl 
+0x393b 005738 isolate1 psk3m ,radio_ctrl 
+0x393c 005739 branch transmit_edr3m ,true 
+0x393d 005740 setarg 0xabeee 
+0x393e 005741 inject mod ,20 
+0x393f 005742 branch transmit_edr_sync_end 
+:      005743 transmit_edr3m:
+0x3940 005744 setarg 0x5faeba 
+0x3941 005745 inject mod ,24 
+0x3942 005746 setarg 0x12 
+0x3943 005747 inject mod ,6 
+:      005748 transmit_edr_sync_end:
+0x3944 005749 enable enable_white 
+0x3945 005750 set1 mark_longpacket ,mark 
+:      005751 transmit_noedr:
+0x3946 005752 enable encrypt 
+0x3947 005753 enable enable_crc 
+0x3948 005754 bmark1 mark_loopback ,transmit_loopback 
+0x3949 005755 fetch 1 ,mem_tx_lch 
+0x394a 005756 inject mod ,3 
+0x394b 005757 fetch 2 ,mem_tx_len 
+0x394c 005758 iforce loopcnt 
+0x394d 005759 bmark1 mark_longpacket ,transmit_long 
+0x394e 005760 inject mod ,5 
+0x394f 005761 branch transmit_stuff 
+:      005762 transmit_long:
+0x3950 005763 inject mod ,13 
+:      005764 transmit_stuff:
+0x3951 005765 fetch 1 ,mem_device_option 
+0x3952 005766 beq dvc_op_hci ,transmit_stuff_hci 
+0x3953 005767 deposit loopcnt 
+0x3954 005768 branch transmit_end ,blank 
+0x3955 005769 fetch 2 ,mem_txptr 
+0x3956 005770 iforce contr 
+:      005771 transmit_stuff_loop:
+0x3957 005772 ifetch 1 ,contr 
+0x3958 005773 inject mod ,8 
+0x3959 005774 loop transmit_stuff_loop 
+0x395a 005775 branch transmit_end 
+:      005776 transmit_stuff_hci:
+0x395b 005777 fetch 2 ,mem_txptr 
+0x395c 005778 iforce contru 
+:      005779 transmit_stuff_hci_loop:
+0x395d 005780 ifetch 1 ,contru 
+0x395e 005781 inject mod ,8 
+0x395f 005782 loop transmit_stuff_hci_loop 
+:      005783 transmit_end:
+0x3960 005784 enable enable_parity 
+0x3961 005785 inject mod ,16 
+0x3962 005786 disable enable_parity 
+0x3963 005787 call set_wait_ack 
+0x3964 005788 fetch 1 ,mem_state_map 
+0x3965 005789 bbit0 smap_edr ,end_of_packet 
+0x3966 005790 force 0 ,pdata 
+0x3967 005791 inject mod ,6 
+0x3968 005792 branch end_of_packet 
+:      005795 transmit_loopback:
+0x3969 005796 set0 mark_ext_patch ,mark 
+0x396a 005797 bpatch patch10_5 ,mem_patch10 
+0x396b 005798 bmark1 mark_longpacket ,transmit_loopback_long 
+:      005799 transmit_loopback_short:
+0x396c 005800 fetch 1 ,mem_lch_code 
+0x396d 005801 inject mod ,3 
+0x396e 005802 fetch 1 ,mem_len 
+0x396f 005803 iforce regc 
+0x3970 005804 inject mod ,5 
+0x3971 005805 branch transmit_loopback_cont 
+:      005806 transmit_loopback_long:
+0x3972 005807 fetch 1 ,mem_lch_code 
+0x3973 005808 inject mod ,3 
+0x3974 005809 fetch 2 ,mem_len 
+0x3975 005810 iforce regc 
+0x3976 005811 inject mod ,13 
+:      005812 transmit_loopback_cont:
+0x3977 005813 arg mem_rxbuf ,contr 
+:      005814 transmit_loopback_loop:
+0x3978 005815 copy regc ,null 
+0x3979 005816 branch transmit_loopback_end ,zero 
+0x397a 005817 ifetch 1 ,contr 
+0x397b 005818 inject mod ,8 
+0x397c 005819 increase -1 ,regc 
+0x397d 005820 branch transmit_loopback_loop 
+:      005821 transmit_loopback_end:
+0x397e 005822 fetch 2 ,mem_tst_pktcnt_dmh 
+0x397f 005823 increase 1 ,pdata 
+0x3980 005824 store 2 ,mem_tst_pktcnt_dmh 
+0x3981 005825 branch transmit_end 
+:      005828 apply_switch_clke:
+0x3982 005829 fetch 4 ,mem_clke_bt 
+0x3983 005830 add pdata ,7 ,rega 
+0x3984 005831 fetch 2 ,mem_slot_offset 
+0x3985 005832 nbranch apply_switch_nozero ,blank 
+0x3986 005833 increase -3 ,rega 
+0x3987 005834 branch apply_switch_wait_loop 
+:      005835 apply_switch_nozero:
+0x3988 005836 mul32 pdata ,12 ,pdata 
+0x3989 005837 hfetcht 2 ,core_halfslot 
+0x398a 005838 increase 1 ,temp 
+:      005839 apply_switch_loop:
+0x398b 005840 isub temp ,pdata 
+0x398c 005841 nbranch apply_switch_bt ,positive 
+0x398d 005842 increase -1 ,rega 
+0x398e 005843 branch apply_switch_loop 
+:      005844 apply_switch_bt:
+0x398f 005845 sub pdata ,0 ,pdata 
+:      005846 apply_switch_wait_loop:
+0x3990 005847 until null ,oneslot 
+0x3991 005848 compare 0 ,clkn_bt ,3 
+0x3992 005849 nbranch apply_switch_wait_loop ,true 
+0x3993 005850 iforce clke_rt 
+0x3994 005851 copy rega ,clke_bt 
+0x3995 005852 iforce clke_rt 
+0x3996 005853 rtn 
+:      005856 calc_slot_offset:
+0x3997 005857 set0 mark_ext_patch ,mark 
+0x3998 005858 bpatch patch10_6 ,mem_patch10 
+0x3999 005859 until null ,halfslot 
+0x399a 005860 deposit clke 
+0x399b 005861 iforce contr 
+0x399c 005862 rshift16 ,pdata ,pdata 
+0x399d 005863 isub clkn_bt ,loopcnt 
+0x399e 005864 and_into 3 ,loopcnt 
+0x399f 005865 nbranch calc_bt_portion ,zero 
+0x39a0 005866 force 0 ,pdata 
+0x39a1 005867 branch calc_skip_bt 
+:      005868 calc_bt_portion:
+0x39a2 005869 arg 3750 ,temp 
+0x39a3 005870 force 0 ,pdata 
+:      005871 calc_slot_offset_loop:
+0x39a4 005872 iadd temp ,pdata 
+0x39a5 005873 loop calc_slot_offset_loop 
+:      005874 calc_skip_bt:
+0x39a6 005875 iadd contr ,pdata 
+0x39a7 005876 div pdata ,12 
+0x39a8 005877 call wait_div_end 
+0x39a9 005878 quotient pdata 
+0x39aa 005879 store 2 ,mem_slot_offset 
+0x39ab 005880 rtn 
+:      005882 calc_clke_offset:
+0x39ac 005883 set0 mark_ext_patch ,mark 
+0x39ad 005884 bpatch patch10_7 ,mem_patch10 
+0x39ae 005885 deposit clke 
+0x39af 005886 copy clkn ,temp 
+0x39b0 005887 isub temp ,null 
+0x39b1 005888 nsetflag positive ,44 ,pdata 
+0x39b2 005889 isub temp ,temp 
+0x39b3 005890 setarg 3750 
+0x39b4 005891 isolate0 15 ,temp 
+0x39b5 005892 branch calc_clke_pos ,true 
+0x39b6 005893 setarg -61786 
+0x39b7 005894 iadd temp ,temp 
+:      005895 calc_clke_pos:
+0x39b8 005896 storet 6 ,mem_le_clk_offset 
+0x39b9 005897 rtn le 
+0x39ba 005898 storet 6 ,mem_clk_offset 
+0x39bb 005899 rtn 
+:      005901 calc_clke:
+0x39bc 005902 disable clknt 
+0x39bd 005903 fetch 6 ,mem_le_clk_offset 
+0x39be 005904 branch calc_clke2 ,le 
+0x39bf 005905 fetch 6 ,mem_clk_offset 
+:      005906 calc_clke2:
+0x39c0 005907 iadd clkn ,alarm 
+0x39c1 005908 increase 10 ,alarm 
+0x39c2 005909 setarg 3750 
+0x39c3 005910 isub alarm ,pdata 
+0x39c4 005911 isolate0 15 ,pdata 
+0x39c5 005912 branch calc_clke_pos_adj ,true 
+0x39c6 005913 setarg 0xf15a 
+0x39c7 005914 iadd alarm ,alarm 
+:      005915 calc_clke_pos2:
+0x39c8 005916 copy alarm ,clke 
+0x39c9 005917 rtn 
+:      005918 calc_clke_pos_adj:
+0x39ca 005919 force 0 ,null 
+0x39cb 005920 branch calc_clke_pos2 
+:      005927 calc_radio_freq:
+0x39cc 005928 set0 mark_ext_patch ,mark 
+0x39cd 005929 bpatch patch11_0 ,mem_patch11 
+0x39ce 005930 call set_sync_on 
+0x39cf 005931 copy bt_clk ,pdata 
+0x39d0 005932 and_into 0x180 ,pdata 
+0x39d1 005933 compare 3 ,freq_mode ,0x07 
+0x39d2 005934 nbranch freq_not_connection ,true 
+0x39d3 005935 rshift3 pdata ,pdata 
+0x39d4 005936 iadd freq_index ,pdata 
+0x39d5 005937 branch do_hop_mod_now 
+:      005938 freq_not_connection:
+0x39d6 005939 copy freq_index ,pdata 
+:      005940 do_hop_mod_now:
+0x39d7 005941 div pdata ,79 
+0x39d8 005942 pulse recalc 
+0x39d9 005943 call wait_div_end 
+0x39da 005944 remainder rega 
+0x39db 005945 add rega ,-40 ,temp 
+0x39dc 005946 branch odd_half ,positive 
+0x39dd 005947 lshift rega ,temp 
+0x39de 005948 branch freq_result 
+:      005949 odd_half:
+0x39df 005950 lshift temp ,temp 
+0x39e0 005951 increase 1 ,temp 
+:      005952 freq_result:
+0x39e1 005953 set0 mark_ext_patch ,mark 
+0x39e2 005954 bpatch patch11_1 ,mem_patch11 
+0x39e3 005955 fetch 1 ,mem_mode 
+0x39e4 005956 bbit0 afh_change ,afh_process_con 
+:      005957 afh_process_0:
+0x39e5 005958 fetch 4 ,mem_afh_instant 
+0x39e6 005959 isub bt_clk ,null 
+0x39e7 005960 branch afh_process_con ,positive 
+0x39e8 005961 call afh_clear 
+0x39e9 005962 fetch 1 ,mem_afh_new_mod 
+0x39ea 005963 rtn blank 
+0x39eb 005964 fetch 1 ,mem_mode 
+0x39ec 005965 set1 afh_enable ,pdata 
+0x39ed 005966 store 1 ,mem_mode 
+0x39ee 005967 fetch 5 ,mem_afh_map_new 
+0x39ef 005968 store 5 ,mem_afh_map_lo 
+0x39f0 005969 ifetch 5 ,contr 
+0x39f1 005970 store 5 ,mem_afh_map_hi 
+0x39f2 005971 call afh_process_freq_map 
+:      005972 afh_process_con:
+0x39f3 005973 fetch 1 ,mem_mode 
+0x39f4 005974 rtnbit0 afh_enable 
+0x39f5 005975 isolate1 1 ,bt_clk 
+0x39f6 005976 branch afh_same_channel ,true 
+0x39f7 005977 rshift3 temp ,rega 
+0x39f8 005978 and temp ,7 ,queue 
+0x39f9 005979 setarg mem_afh_map_lo 
+0x39fa 005980 iadd rega ,rega 
+0x39fb 005981 ifetch 1 ,rega 
+0x39fc 005982 qisolate0 pdata 
+0x39fd 005983 branch afh_process_1 ,true 
+0x39fe 005984 deposit temp 
+0x39ff 005985 branch afh_process_end 
+:      005986 afh_process_1:
+0x3a00 005987 fetch 1 ,mem_afh_used 
+0x3a01 005988 iforce regb 
+0x3a02 005989 deposit bt_clk 
+0x3a03 005990 and_into 0x180 ,pdata 
+0x3a04 005991 rshift3 pdata ,pdata 
+0x3a05 005992 iadd freq_index ,pdata 
+0x3a06 005993 idiv regb 
+0x3a07 005994 setarg mem_afh_map 
+0x3a08 005995 call wait_div_end 
+0x3a09 005996 remainder rega 
+0x3a0a 005997 iadd rega ,contr 
+0x3a0b 005998 ifetch 1 ,contr 
+:      005999 afh_process_end:
+0x3a0c 006000 store 1 ,mem_afh_index 
+0x3a0d 006001 iforce temp 
+0x3a0e 006002 rtn 
+:      006004 afh_same_channel:
+0x3a0f 006005 fetch 1 ,mem_afh_index 
+0x3a10 006006 iforce temp 
+0x3a11 006007 rtn 
+:      006009 afh_clear:
+0x3a12 006010 fetch 1 ,mem_mode 
+0x3a13 006011 set0 afh_enable ,pdata 
+0x3a14 006012 set0 afh_change ,pdata 
+0x3a15 006013 store 1 ,mem_mode 
+0x3a16 006014 rtn 
+:      006020 afh_process_freq_map:
+0x3a17 006021 set0 mark_ext_patch ,mark 
+0x3a18 006022 bpatch patch11_2 ,mem_patch11 
+0x3a19 006023 arg mem_afh_map ,contw 
+0x3a1a 006024 force 10 ,loopcnt 
+0x3a1b 006025 call memset0 
+0x3a1c 006026 arg mem_afh_map ,contw 
+0x3a1d 006027 force 0 ,regc 
+0x3a1e 006028 force 2 ,queue 
+:      006029 process_freq_3:
+0x3a1f 006030 fetch 5 ,mem_afh_map_lo 
+0x3a20 006031 iforce temp 
+0x3a21 006032 compare 2 ,queue ,0xff 
+0x3a22 006033 branch process_freq_1 ,true 
+0x3a23 006034 rshift temp ,temp 
+:      006035 process_freq_1:
+0x3a24 006036 isolate0 0 ,temp 
+0x3a25 006037 branch process_freq_0 ,true 
+0x3a26 006038 deposit regc 
+0x3a27 006039 istore 1 ,contw 
+:      006040 process_freq_0:
+0x3a28 006041 rshift2 temp ,temp 
+0x3a29 006042 increase 2 ,regc 
+0x3a2a 006043 compare 40 ,regc ,0xfe 
+0x3a2b 006044 nbranch process_freq_2 ,true 
+0x3a2c 006045 fetch 5 ,mem_afh_map_hi 
+0x3a2d 006046 iforce temp 
+0x3a2e 006047 compare 2 ,queue ,0xff 
+0x3a2f 006048 branch process_freq_2 ,true 
+0x3a30 006049 rshift temp ,temp 
+:      006050 process_freq_2:
+0x3a31 006051 sub regc ,78 ,null 
+0x3a32 006052 branch process_freq_1 ,positive 
+0x3a33 006053 force 1 ,regc 
+0x3a34 006054 increase -1 ,queue 
+0x3a35 006055 nbranch process_freq_3 ,zero 
+0x3a36 006056 arg mem_afh_map ,rega 
+0x3a37 006057 deposit contw 
+0x3a38 006058 isub rega ,pdata 
+0x3a39 006059 store 1 ,mem_afh_used 
+0x3a3a 006060 rtn 
+:      006062 rx_radio_freq:
+0x3a3b 006063 set0 mark_ext_patch ,mark 
+0x3a3c 006064 bpatch patch11_3 ,mem_patch11 
+0x3a3d 006065 call calc_radio_freq 
+0x3a3e 006066 fetch 1 ,mem_debug_config 
+0x3a3f 006067 bbit0 debug_rx_fixed_freq ,rx_radio_freq_now 
+0x3a40 006068 fetcht 1 ,mem_rx_fixed_freq 
+:      006069 rx_radio_freq_now:
+0x3a41 006070 branch set_freq_rx 
+:      006073 tx_radio_freq:
+0x3a42 006074 set0 mark_ext_patch ,mark 
+0x3a43 006075 bpatch patch11_4 ,mem_patch11 
+0x3a44 006076 call calc_radio_freq 
+0x3a45 006077 fetch 1 ,mem_debug_config 
+0x3a46 006078 bbit0 debug_tx_fixed_freq ,tx_radio_freq_now 
+0x3a47 006079 fetcht 1 ,mem_tx_fixed_freq 
+:      006080 tx_radio_freq_now:
+0x3a48 006081 branch set_freq_tx 
+:      006084 fetch_giac:
+0x3a49 006085 force 0 ,uap 
+0x3a4a 006086 fetch 3 ,mem_glap 
+0x3a4b 006087 iforce lap 
+0x3a4c 006088 rtn 
+:      006090 fetch_page_bt_adr:
+0x3a4d 006091 set0 mark_ext_patch ,mark 
+0x3a4e 006092 bpatch patch11_5 ,mem_patch11 
+0x3a4f 006093 fetch 1 ,mem_hci_puap 
+0x3a50 006094 icopy uap 
+0x3a51 006095 fetch 3 ,mem_hci_plap 
+0x3a52 006096 icopy lap 
+0x3a53 006097 rtn 
+:      006099 fetch_self_bt_adr:
+0x3a54 006100 set0 mark_ext_patch ,mark 
+0x3a55 006101 bpatch patch11_6 ,mem_patch11 
+0x3a56 006102 fetch 2 ,mem_nap 
+0x3a57 006103 icopy nap 
+0x3a58 006104 fetch 1 ,mem_uap 
+0x3a59 006105 icopy uap 
+0x3a5a 006106 fetch 3 ,mem_lap 
+0x3a5b 006107 icopy lap 
+0x3a5c 006108 rtn 
+:      006110 fetch_extm_bt_adr:
+0x3a5d 006111 set0 mark_ext_patch ,mark 
+0x3a5e 006112 bpatch patch11_7 ,mem_patch11 
+0x3a5f 006113 fetch 2 ,mem_pnap 
+0x3a60 006114 icopy nap 
+0x3a61 006115 fetch 1 ,mem_puap 
+0x3a62 006116 icopy uap 
+0x3a63 006117 fetch 3 ,mem_plap 
+0x3a64 006118 icopy lap 
+0x3a65 006119 rtn 
+:      006122 fetch_diac:
+0x3a66 006123 bmark1 mark_all_diac ,fetch_diac_do 
+0x3a67 006124 rtnmark0 mark_inquiry_state 
+0x3a68 006125 rtnmark0 mark_periodical_diac 
+:      006126 fetch_diac_do:
+0x3a69 006127 and_into -256 ,lap 
+0x3a6a 006128 pulse recalc 
+0x3a6b 006129 nop 32 
+0x3a6c 006130 rtn 
+:      006133 shutdown_radio:
+0x3a6d 006134 set0 mark_ext_patch ,mark 
+0x3a6e 006135 bpatch patch12_0 ,mem_patch12 
+0x3a6f 006136 force 0 ,radio_ctrl 
+0x3a70 006137 disable is_rx 
+0x3a71 006138 disable is_tx 
+0x3a72 006139 pulse packet_end 
+0x3a73 006140 hjam 0x0 ,rfen_mdm 
+0x3a74 006141 hjam 0x0 ,rfen_tx 
+0x3a75 006142 hjam 0x0 ,rfen_rx 
+0x3a76 006143 hjam 0 ,rfen_sn 
+0x3a77 006144 hjam 0x70 ,rfen_msc 
+0x3a78 006145 hjam 0x0 ,rfen_adc 
+0x3a79 006146 rtn 
+:      006148 set_sync_on:
+0x3a7a 006149 set0 mark_ext_patch ,mark 
+0x3a7b 006150 bpatch patch12_1 ,mem_patch12 
+0x3a7c 006151 hjam 0x0 ,rfen_mdm 
+0x3a7d 006152 hjam 0x0 ,rfen_tx 
+0x3a7e 006153 hjam 0x18 ,rfen_rx 
+0x3a7f 006154 hjam 0xa7 ,rfen_sn 
+0x3a80 006155 hjam 0x7f ,rfen_msc 
+0x3a81 006156 rtn 
+:      006159 set_freq_rx:
+0x3a82 006160 set0 mark_ext_patch ,mark 
+0x3a83 006161 bpatch patch12_2 ,mem_patch12 
+0x3a84 006163 storet 1 ,mem_last_freq 
+0x3a85 006164 add temp ,rx_freq_offset ,rega 
+0x3a86 006165 branch rf_write_freq 
+:      006166 rf_rx_enable:
+0x3a87 006167 set0 mark_ext_patch ,mark 
+0x3a88 006168 bpatch patch12_3 ,mem_patch12 
+0x3a89 006169 hjam 0xcf ,rfen_tx 
+0x3a8a 006170 nop 10 
+0x3a8b 006171 hjam 0xff ,rfen_rx 
+0x3a8c 006172 hjam 0xaf ,rfen_sn 
+0x3a8d 006173 hjam 0xff ,rfen_msc 
+0x3a8e 006174 nop 10 
+0x3a8f 006175 hjam 0xa0 ,rfen_mdm 
+0x3a90 006176 rtn 
+:      006179 set_freq_tx:
+0x3a91 006180 set0 mark_ext_patch ,mark 
+0x3a92 006181 bpatch patch12_4 ,mem_patch12 
+0x3a93 006182 storet 1 ,mem_last_freq 
+0x3a94 006183 add temp ,tx_freq_offset ,rega 
+0x3a95 006184 call rf_write_freq 
+0x3a96 006185 setarg param_pll_setup 
+0x3a97 006186 call sleep 
+:      006187 txon:
+0x3a98 006188 hjam 0x1 ,rfen_adc 
+0x3a99 006189 hjam 0x3c ,rfen_rx 
+0x3a9a 006190 hjam 0xe0 ,rfen_tx 
+0x3a9b 006191 hjam 0xb7 ,rfen_sn 
+0x3a9c 006192 hjam 0x7f ,rfen_mdm 
+0x3a9d 006193 rtn 
+:      006195 initialize_radio:
+0x3a9e 006196 hjam clksel_rc ,core_clksel 
+0x3a9f 006197 call init_rf_regs 
+0x3aa0 006198 call init_agc_table 
+:      006199 initialize_radio_wait:
+0x3aa1 006200 fetch 2 ,mem_rf_init_ptr 
+0x3aa2 006201 bbit0 14 ,initialize_radio_wait 
+0x3aa3 006202 iforce contr 
+0x3aa4 006203 arg 0x8900 ,temp 
+:      006204 initialize_radio_loop:
+0x3aa5 006205 ifetch 1 ,contr 
+0x3aa6 006206 beq 0xff ,initialize_radio_cont 
+0x3aa7 006207 ior temp ,contw 
+0x3aa8 006208 ifetch 1 ,contr 
+0x3aa9 006209 istore 1 ,contw 
+0x3aaa 006210 branch initialize_radio_loop 
+:      006211 initialize_radio_cont:
+0x3aab 006212 set0 mark_ext_patch ,mark 
+0x3aac 006213 bpatch patch12_5 ,mem_patch12 
+0x3aad 006214 call lpm_cal_xtal_startup 
+0x3aae 006215 call switchto_dpllclk 
+0x3aaf 006217 setarg param_dpll_start_delay 
+0x3ab0 006218 iadd clkn_bt ,pdata 
+0x3ab1 006219 store 4 ,mem_dpll_clkn 
+0x3ab2 006220 set1 reset ,radio_ctrl 
+0x3ab3 006221 force 0 ,radio_ctrl 
+0x3ab4 006222 ncall do_rccal ,wake 
+0x3ab5 006223 branch set_rccal 
+:      006226 rf_write_freq:
+0x3ab6 006227 set0 mark_ext_patch ,mark 
+0x3ab7 006228 bpatch patch12_6 ,mem_patch12 
+0x3ab8 006229 setarg 2400 
+0x3ab9 006230 iadd rega ,temp 
+0x3aba 006231 fetch 1 ,mem_fcomp_mul 
+0x3abb 006232 hjam 0x04 ,rf_pll_rstn 
+0x3abc 006233 imul32 temp ,pdata 
+0x3abd 006234 fetcht 1 ,mem_fcomp_div 
+0x3abe 006235 idiv temp 
+0x3abf 006236 call wait_div_end 
+0x3ac0 006237 quotient rega 
+0x3ac1 006238 remainder pdata 
+0x3ac2 006239 lshift16 pdata ,pdata 
+0x3ac3 006240 lshift4 pdata ,pdata 
+0x3ac4 006241 idiv temp 
+0x3ac5 006242 call wait_div_end 
+0x3ac6 006243 quotient pdata 
+0x3ac7 006244 lshift8 pdata ,pdata 
+0x3ac8 006245 lshift pdata ,pdata 
+0x3ac9 006246 ior rega ,pdata 
+0x3aca 006247 hstore 4 ,rf_pll_intg 
+0x3acb 006248 hjam 0x44 ,rf_pll_rstn 
+0x3acc 006249 hjam 0xc4 ,rf_pll_rstn 
+0x3acd 006250 rtn 
+:      006253 do_rccal:
+0x3ace 006254 set0 mark_ext_patch ,mark 
+0x3acf 006255 bpatch patch12_7 ,mem_patch12 
+0x3ad0 006256 hjam 0x02 ,rfen_adc 
+0x3ad1 006257 setarg 250000 
+0x3ad2 006258 call sleep 
+0x3ad3 006259 hjam 0x7f ,rfen_rx 
+0x3ad4 006260 nop 130 
+0x3ad5 006261 hjam 0x30 ,rf_rccal_ctrl 
+0x3ad6 006262 hjam 0xd0 ,rfen_tx 
+0x3ad7 006263 hjam 0x70 ,rf_rccal_ctrl 
+0x3ad8 006264 hjam 0xf0 ,rf_rccal_ctrl 
+0x3ad9 006265 force 50 ,loopcnt 
+:      006266 do_rccal_loop:
+0x3ada 006267 hfetch 1 ,rf_rccal_result 
+0x3adb 006268 bbit1 5 ,do_rccal_end 
+0x3adc 006269 loop do_rccal_loop 
+:      006270 do_rccal_end:
+0x3add 006271 store 1 ,mem_rf_rccal 
+0x3ade 006272 hjam 0 ,rfen_tx 
+0x3adf 006273 hjam 0 ,rfen_rx 
+0x3ae0 006274 hjam 0x00 ,rfen_adc 
+0x3ae1 006275 rtn 
+:      006277 set_rccal:
+0x3ae2 006278 set0 mark_ext_patch ,mark 
+0x3ae3 006279 bpatch patch13_0 ,mem_patch13 
+0x3ae4 006280 fetch 1 ,mem_rf_rccal 
+0x3ae5 006281 set1 5 ,pdata 
+0x3ae6 006282 hstore 1 ,rf_rccal_ctrl 
+0x3ae7 006283 hfetcht 1 ,rf_bpf_ctrim 
+0x3ae8 006284 and_into 7 ,temp 
+0x3ae9 006285 lshift3 pdata ,pdata 
+0x3aea 006286 ior temp ,pdata 
+0x3aeb 006287 hstore 1 ,rf_bpf_ctrim 
+0x3aec 006288 hfetch 1 ,rf_bpf_ib 
+0x3aed 006289 set0 bpf_rccal ,pdata 
+0x3aee 006290 hstore 1 ,rf_bpf_ib 
+0x3aef 006291 hfetch 1 ,rf_adc_rccal 
+0x3af0 006292 set0 adc_rccal ,pdata 
+0x3af1 006293 hstore 1 ,rf_adc_rccal 
+0x3af2 006294 rtn 
+:      006296 save_rssi:
+0x3af3 006297 set0 mark_ext_patch ,mark 
+0x3af4 006298 bpatch patch13_1 ,mem_patch13 
+0x3af5 006299 hfetch 2 ,rf_afc_d2a 
+0x3af6 006300 rshift4 pdata ,pdata 
+0x3af7 006301 rshift3 pdata ,pdata 
+0x3af8 006302 sub pdata ,0 ,pdata 
+0x3af9 006303 and_into 0xff ,pdata 
+0x3afa 006304 div pdata ,10 
+0x3afb 006305 call wait_div_end 
+0x3afc 006306 quotient pdata 
+0x3afd 006307 lshift4 pdata ,pdata 
+0x3afe 006308 remainder temp 
+0x3aff 006309 ior temp ,pdata 
+0x3b00 006310 store 1 ,mem_rssi 
+0x3b01 006311 rtn 
+:      006313 switchto_rcclk:
+0x3b02 006314 hjam 0xa ,core_clksel 
+0x3b03 006315 hjam 0 ,rfen_ck 
+0x3b04 006316 hfetch 3 ,core_lpm_ctrl 
+0x3b05 006317 hstore 3 ,core_lpm_reg 
+0x3b06 006318 hjam 0xfc ,core_lpm_reg 
+0x3b07 006319 call lpm_write_ctrl 
+0x3b08 006320 nop 1000 
+0x3b09 006321 rtn 
+:      006323 switchto_dpllclk:
+0x3b0a 006324 hjam clksel_rc ,core_clksel 
+0x3b0b 006325 hfetch 1 ,rf_clkpll_frac + 2 
+0x3b0c 006326 set0 4 ,pdata 
+0x3b0d 006327 set0 5 ,pdata 
+0x3b0e 006328 hstore 1 ,rf_clkpll_frac + 2 
+0x3b0f 006329 hjam 0x00 ,rfen_ck 
+0x3b10 006330 hjam 0x00 ,rfen_msc 
+0x3b11 006331 hjam 0x70 ,rfen_msc 
+0x3b12 006332 hjam 0xff ,rfen_ck 
+0x3b13 006333 hfetch 1 ,rf_clkpll_frac + 2 
+0x3b14 006334 set1 4 ,pdata 
+0x3b15 006335 set1 5 ,pdata 
+0x3b16 006336 hstore 1 ,rf_clkpll_frac + 2 
+0x3b17 006337 call init_lpm_ctrl 
+0x3b18 006338 hfetch 1 ,rf_clkpll_int 
+0x3b19 006339 set1 7 ,pdata 
+0x3b1a 006340 hstore 1 ,rf_clkpll_int 
+0x3b1b 006341 set0 7 ,pdata 
+0x3b1c 006342 hstore 1 ,rf_clkpll_int 
+0x3b1d 006343 set1 7 ,pdata 
+0x3b1e 006344 hstore 1 ,rf_clkpll_int 
+0x3b1f 006345 hjam clksel_dpll ,core_clksel 
+0x3b20 006346 rtn 
+:      006348 check_dpll:
+0x3b21 006349 nop 1000 
+0x3b22 006350 hjam clksel_xtal ,core_clksel 
+0x3b23 006351 nop 10 
+0x3b24 006352 hjam 0x00 ,core_bist_ctrl 
+0x3b25 006353 hjam ccnt_start ,core_misc_ctrl 
+:      006354 check_dpll_loop:
+0x3b26 006355 hfetch 1 ,core_perf_status 
+0x3b27 006356 bbit0 1 ,check_dpll_loop 
+0x3b28 006357 hfetcht 3 ,core_clk_counter 
+0x3b29 006358 hjam clksel_dpll ,core_clksel 
+0x3b2a 006359 nop 10 
+0x3b2b 006360 hjam ccnt_start ,core_misc_ctrl 
+:      006361 check_dpll_loop2:
+0x3b2c 006362 hfetch 1 ,core_perf_status 
+0x3b2d 006363 bbit0 1 ,check_dpll_loop2 
+0x3b2e 006364 hfetch 3 ,core_clk_counter 
+0x3b2f 006365 isub temp ,pdata 
+0x3b30 006366 branch check_dpll_pos ,positive 
+0x3b31 006367 sub pdata ,0 ,pdata 
+:      006368 check_dpll_pos:
+0x3b32 006369 store 2 ,mem_dpll_error 
+0x3b33 006370 sub pdata ,70 ,null 
+:      006371 check_dpll_assert:
+0x3b34 006372 nbranch check_dpll_assert ,positive 
+0x3b35 006373 rtn 
+:      006375 xtal_fast_wake:
+0x3b36 006376 setarg 0xf0f 
+0x3b37 006377 branch lpm_write_config 
+:      006379 init_lpm_ctrl:
+0x3b38 006380 setarg 0x80f 
+0x3b39 006381 branch lpm_write_config 
+:      006385 start_receiver:
+0x3b3a 006386 set0 mark_ext_patch ,mark 
+0x3b3b 006387 bpatch patch13_2 ,mem_patch13 
+0x3b3c 006388 call rf_rx_enable 
+0x3b3d 006389 disable is_tx 
+0x3b3e 006390 enable is_rx 
+0x3b3f 006391 pulse init_encrypt 
+0x3b40 006392 rtn 
+:      006394 prep_crypt:
+0x3b41 006395 set0 mark_ext_patch ,mark 
+0x3b42 006396 bpatch patch13_3 ,mem_patch13 
+0x3b43 006397 fetch 1 ,mem_state_map 
+0x3b44 006398 isolate1 smap_encryption ,pdata 
+0x3b45 006399 setflag true ,0 ,pdata 
+0x3b46 006400 hstore 1 ,core_encrypt 
+0x3b47 006401 arg mem_kc ,contr 
+0x3b48 006402 ifetch 9 ,contr 
+0x3b49 006403 iforce kc_ls 
+0x3b4a 006404 ifetch 7 ,contr 
+0x3b4b 006405 iforce kc_ms 
+0x3b4c 006406 fetch 1 ,mem_key_size 
+0x3b4d 006407 add pdata ,-1 ,g1l 
+0x3b4e 006408 pulse kc_p_activate 
+0x3b4f 006409 rtn 
+:      006411 wait_access_clke_rt:
+0x3b50 006412 set0 mark_ext_patch ,mark 
+0x3b51 006413 bpatch patch13_4 ,mem_patch13 
+0x3b52 006414 enable decode_fec0 
+0x3b53 006415 arg param_conn_access ,timeup 
+0x3b54 006416 correlate clke_rt ,meet 
+:      006417 wait_access_end:
+0x3b55 006418 deposit clke 
+0x3b56 006419 store 6 ,mem_sync_clke 
+0x3b57 006420 disable decode_fec0 
+0x3b58 006421 nbranch shutdown_radio ,sync 
+0x3b59 006422 arg param_clke_cal ,clke_rt 
+0x3b5a 006423 increase 1 ,clke_bt 
+0x3b5b 006424 and_into 0x1fc ,clke_bt 
+0x3b5c 006425 rtn 
+:      006429 wait_access_mhalfbnd:
+0x3b5d 006430 enable decode_fec0 
+:      006431 wait_access_mhalfbnd_correlate:
+0x3b5e 006432 correlate null ,mhalfbnd 
+0x3b5f 006433 branch wait_access_end ,sync 
+0x3b60 006434 compare 0x02 ,clke_bt ,0x02 
+0x3b61 006435 nbranch wait_access_mhalfbnd_correlate ,true 
+0x3b62 006436 branch wait_access_end 
+:      006438 wait_access_clkn_rt:
+0x3b63 006439 set0 mark_ext_patch ,mark 
+0x3b64 006440 bpatch patch13_5 ,mem_patch13 
+0x3b65 006441 arg param_conn_access ,timeup 
+0x3b66 006442 enable decode_fec0 
+0x3b67 006443 correlate clkn_rt ,meet 
+0x3b68 006444 disable decode_fec0 
+0x3b69 006445 nbranch shutdown_radio ,sync 
+0x3b6a 006446 rtn 
+:      006448 wait_access_forever:
+0x3b6b 006449 set0 mark_ext_patch ,mark 
+0x3b6c 006450 bpatch patch13_6 ,mem_patch13 
+0x3b6d 006451 enable decode_fec0 
+0x3b6e 006452 correlate null ,timeout 
+0x3b6f 006453 disable decode_fec0 
+0x3b70 006454 nbranch shutdown_radio ,sync 
+0x3b71 006455 arg param_clke_cal ,clke_rt 
+0x3b72 006456 and_into 0x1fc ,clke_bt 
+0x3b73 006457 rtn 
+:      006460 reserve_slot:
+0x3b74 006461 set0 mark_ext_patch ,mark 
+0x3b75 006462 bpatch patch13_7 ,mem_patch13 
+0x3b76 006463 iforce rega 
+0x3b77 006464 deposit bt_clk 
+0x3b78 006465 iadd temp ,timeup 
+0x3b79 006466 copy timeup ,pdata 
+0x3b7a 006467 store 4 ,mem_next_btclk 
+0x3b7b 006468 deposit rega 
+0x3b7c 006469 rtn 
+:      006472 ahead_window:
+0x3b7d 006473 copy pdata ,temp 
+0x3b7e 006474 set0 mark_ext_patch ,mark 
+0x3b7f 006475 bpatch patch14_0 ,mem_patch14 
+0x3b80 006476 copy temp ,pdata 
+0x3b81 006477 call clk2bt 
+0x3b82 006478 lshift16 bt_clk ,pdata 
+0x3b83 006479 set1 44 ,pdata 
+0x3b84 006480 call clk_diff 
+0x3b85 006481 set0 44 ,pdata 
+0x3b86 006482 call get_clk 
+0x3b87 006483 call clk_diff 
+0x3b88 006484 rtn user 
+0x3b89 006485 call clk2rt 
+0x3b8a 006486 iforce stop_watch 
+0x3b8b 006487 until null ,timeout 
+0x3b8c 006488 rtn 
+:      006491 setup_clk:
+0x3b8d 006492 set0 mark_ext_patch ,mark 
+0x3b8e 006493 bpatch patch14_1 ,mem_patch14 
+0x3b8f 006494 branch setup_clkn ,clknt 
+0x3b90 006495 until clke_rt ,meet 
+:      006496 skip_setup_clke:
+0x3b91 006497 copy clke_bt ,temp 
+0x3b92 006498 branch setup_clknbt 
+:      006499 setup_clkn:
+0x3b93 006500 branch skip_setup_clkn ,attempt 
+0x3b94 006501 until clkn_rt ,meet 
+:      006502 skip_setup_clkn:
+0x3b95 006503 copy clkn_bt ,temp 
+:      006504 setup_clknbt:
+0x3b96 006505 branch setup_clk11 ,user 
+0x3b97 006506 compare 1 ,temp ,3 
+0x3b98 006507 nbranch setup_clk ,true 
+:      006508 setup_complete:
+0x3b99 006509 set0 mark_ext_patch ,mark 
+0x3b9a 006510 bpatch patch14_2 ,mem_patch14 
+0x3b9b 006511 fetch 1 ,mem_state 
+0x3b9c 006512 rtnbit0 state_inconn 
+0x3b9d 006513 fetch 4 ,mem_next_btclk 
+0x3b9e 006514 isub temp ,pdata 
+0x3b9f 006515 nrtn positive 
+0x3ba0 006516 sub pdata ,0xff ,null 
+0x3ba1 006517 branch setup_clk ,positive 
+0x3ba2 006518 rtn 
+:      006519 setup_clk11:
+0x3ba3 006520 compare 3 ,temp ,3 
+0x3ba4 006521 nbranch setup_clk ,true 
+0x3ba5 006522 branch setup_complete 
+:      006524 rf_setup_time:
+0x3ba6 006525 set0 mark_ext_patch ,mark 
+0x3ba7 006526 bpatch patch14_3 ,mem_patch14 
+0x3ba8 006527 arg param_rf_setup ,timeup 
+0x3ba9 006528 branch setup_clk 
+:      006530 rf_setup_time_slave_slot:
+0x3baa 006531 disable user 
+0x3bab 006532 branch rf_setup_time 
+:      006534 rf_setup_time_master_slot:
+0x3bac 006535 enable user 
+0x3bad 006536 branch rf_setup_time 
+:      006538 start_transmitter:
+0x3bae 006539 set0 mark_ext_patch ,mark 
+0x3baf 006540 bpatch patch14_4 ,mem_patch14 
+0x3bb0 006541 call prep_crypt 
+0x3bb1 006542 disable is_rx 
+0x3bb2 006543 enable is_tx 
+0x3bb3 006544 rtn 
+:      006548 start_tx_native:
+0x3bb4 006549 set0 mark_ext_patch ,mark 
+0x3bb5 006550 bpatch patch14_5 ,mem_patch14 
+0x3bb6 006551 arg param_tx_setup ,timeup 
+0x3bb7 006552 until clkn_rt ,meet 
+0x3bb8 006553 pulse init_encrypt 
+0x3bb9 006554 rtn 
+:      006556 start_rx_native:
+0x3bba 006557 set0 mark_ext_patch ,mark 
+0x3bbb 006558 bpatch patch14_6 ,mem_patch14 
+0x3bbc 006559 arg param_rx_setup ,timeup 
+0x3bbd 006560 until clkn_rt ,meet 
+0x3bbe 006561 rtn 
+:      006564 start_tx_external:
+0x3bbf 006565 set0 mark_ext_patch ,mark 
+0x3bc0 006566 bpatch patch14_7 ,mem_patch14 
+0x3bc1 006567 arg param_tx_setup ,timeup 
+0x3bc2 006568 until clke_rt ,meet 
+0x3bc3 006569 pulse init_encrypt 
+0x3bc4 006570 rtn 
+:      006572 send_access_word:
+0x3bc5 006573 set0 mark_ext_patch ,mark 
+0x3bc6 006574 bpatch patch15_0 ,mem_patch15 
+0x3bc7 006575 preload access 
+0x3bc8 006576 enable encode_fec0 
+0x3bc9 006577 set1 txgfsk ,radio_ctrl 
+0x3bca 006578 inject mod ,72 
+0x3bcb 006579 disable encode_fec0 
+0x3bcc 006580 rtn 
+:      006583 scan_mode_whiten:
+0x3bcd 006584 copy xin ,temp 
+0x3bce 006585 or_into 0x60 ,temp 
+0x3bcf 006586 copy temp ,white_init 
+0x3bd0 006587 rtn 
+:      006592 get_free_amaddr:
+0x3bd1 006593 set0 mark_ext_patch ,mark 
+0x3bd2 006594 bpatch patch15_1 ,mem_patch15 
+0x3bd3 006595 fetch 1 ,mem_current_amaddr 
+0x3bd4 006596 increase 1 ,pdata 
+0x3bd5 006597 bne param_esco_addr ,get_free_amaddr_cont 
+0x3bd6 006598 force 1 ,pdata 
+:      006599 get_free_amaddr_cont:
+0x3bd7 006600 store 1 ,mem_current_amaddr 
+0x3bd8 006601 iforce am_addr 
+0x3bd9 006602 rtn 
+:      006604 get_clk:
+0x3bda 006605 copy clkn ,temp 
+0x3bdb 006606 rtn master 
+0x3bdc 006607 copy clke ,temp 
+0x3bdd 006608 rtn 
+:      006610 get_clkbt:
+0x3bde 006611 deposit clkn_bt 
+0x3bdf 006612 rtn master 
+0x3be0 006613 deposit clke_bt 
+0x3be1 006614 rtn 
+:      006617 supervision_update:
+0x3be2 006618 set0 mark_ext_patch ,mark 
+0x3be3 006619 bpatch patch15_2 ,mem_patch15 
+0x3be4 006620 fetcht 4 ,mem_supervision_timer 
+0x3be5 006621 call get_clkbt 
+0x3be6 006622 isub temp ,timeup 
+0x3be7 006623 deposit timeup 
+0x3be8 006624 fetcht 2 ,mem_supervision_to 
+0x3be9 006625 lshift temp ,temp 
+0x3bea 006626 isub temp ,pdata 
+0x3beb 006627 rtn 
+:      006629 supervision_flush:
+0x3bec 006630 set0 mark_ext_patch ,mark 
+0x3bed 006631 bpatch patch15_3 ,mem_patch15 
+0x3bee 006632 call get_clkbt 
+0x3bef 006633 store 4 ,mem_supervision_timer 
+0x3bf0 006634 rtn 
+:      006636 assert:
+0x3bf1 006637 branch assert 
+:      006639 loop:
+0x3bf2 006640 branch loop 
+:      006642 sleep:
+0x3bf3 006643 rtn blank 
+0x3bf4 006645 rshift pdata ,pdata 
+0x3bf5 006646 increase -3 ,pdata 
+:      006647 sleep_loop:
+0x3bf6 006648 increase -1 ,pdata 
+0x3bf7 006649 nbranch sleep_loop ,zero 
+0x3bf8 006650 force 0 ,pdata 
+0x3bf9 006651 rtn 
+:      006655 init_param:
+0x3bfa 006657 arg 0x10 ,loopcnt 
+0x3bfb 006658 arg 0 ,contw 
+0x3bfc 006659 call memset0 
+0x3bfd 006660 arg mem_le_state ,contw 
+0x3bfe 006661 arg 10 ,loopcnt 
+0x3bff 006662 call memset0 
+0x3c00 006663 jam 0 ,mem_sp_calc 
+0x3c01 006664 jam 0 ,mem_fifo_temp 
+0x3c02 006665 jam 0 ,mem_le_testtype 
+0x3c03 006666 jam 0 ,mem_debug_config 
+0x3c04 006667 jam 0 ,mem_lmp_conn_state 
+0x3c05 006668 set0 mark_ext_patch ,mark 
+0x3c06 006669 bpatch patch15_4 ,mem_patch15 
+0x3c07 006670 jam 0 ,mem_connection_options 
+0x3c08 006671 jam 0 ,mem_tester_emulate 
+0x3c09 006672 jam 0 ,mem_tester_cnt 
+0x3c0a 006673 setarg param_glap 
+0x3c0b 006674 store 3 ,mem_glap 
+0x3c0c 006675 setarg param_acl_pktlen 
+0x3c0d 006676 store 2 ,mem_acl_pktlen 
+0x3c0e 006677 jam param_sco_pktlen ,mem_sco_pktlen 
+0x3c0f 006678 jam param_acl_pktcnt ,mem_acl_pktcnt 
+0x3c10 006679 jam param_sco_pktcnt ,mem_sco_pktcnt 
+0x3c11 006680 setarg param_hci_version 
+0x3c12 006681 store 3 ,mem_hci_version 
+0x3c13 006682 setarg param_lmp_version 
+0x3c14 006683 store 3 ,mem_lmp_version 
+0x3c15 006684 setarg param_lmp_subversion 
+0x3c16 006685 store 2 ,mem_lmp_subversion 
+0x3c17 006686 jam 0x60 ,mem_fhs_misc 
+0x3c18 006687 jam param_max_slot ,mem_max_slot 
+0x3c19 006688 jam 0x02 ,mem_fw_ver 
+0x3c1a 006689 call init_memp 
+0x3c1b 006690 set0 mark_ext_patch ,mark 
+0x3c1c 006691 bpatch patch15_5 ,mem_patch15 
+0x3c1d 006692 rtn wake 
+0x3c1e 006693 setarg 0 
+0x3c1f 006694 store 2 ,mem_tx_len 
+0x3c20 006695 rshift clkn_bt ,pdata 
+0x3c21 006696 store 4 ,mem_last_clkn 
+0x3c22 006697 rtn 
+:      006701 init_esco_ibuff:
+0x3c23 006702 setarg 0xaa ,pdata 
+0x3c24 006703 arg mem_sco_ibuf ,contw 
+0x3c25 006704 force 30 ,loopcnt 
+:      006705 init_esco_ibuff_loop:
+0x3c26 006706 istore 1 ,contw 
+0x3c27 006707 loop init_esco_ibuff_loop 
+0x3c28 006708 rtn 
+:      006710 init_rf_regs:
+0x3c29 006711 hjam 0x02 ,0x907 
+0x3c2a 006712 hjam 0x1f ,0x908 
+0x3c2b 006713 hjam 0x1f ,0x909 
+0x3c2c 006714 hjam 0xe0 ,0x90a 
+0x3c2d 006715 hjam 0x4e ,0x90b 
+0x3c2e 006716 hjam 0x45 ,rf_agc_ctrl 
+0x3c2f 006717 hjam 0x00 ,0x953 
+0x3c30 006719 hjam 0xfb ,0x94c 
+0x3c31 006720 hjam 0xef ,0x94d 
+0x3c32 006721 hjam 0x0c ,0x94e 
+0x3c33 006723 hjam 0x88 ,0x96f 
+0x3c34 006724 hjam 0x30 ,0x973 
+0x3c35 006727 hjam 0x00 ,0x953 
+0x3c36 006728 hjam 0xc9 ,0x956 
+0x3c37 006729 hjam 0x6c ,0x958 
+0x3c38 006730 hjam 0x50 ,0x959 
+0x3c39 006731 rtn 
+:      006733 init_agc_table:
+0x3c3a 006735 hjam 0xa9 ,0x930 
+0x3c3b 006736 hjam 0xb1 ,0x92f 
+0x3c3c 006737 hjam 0xb9 ,0x92e 
+0x3c3d 006738 hjam 0xAD ,0x92d 
+0x3c3e 006739 hjam 0xB1 ,0x92c 
+0x3c3f 006740 hjam 0xB5 ,0x92b 
+0x3c40 006741 hjam 0xBA ,0x92a 
+0x3c41 006742 hjam 0xBE ,0x929 
+0x3c42 006743 hjam 0xC2 ,0x928 
+0x3c43 006744 hjam 0xC6 ,0x927 
+0x3c44 006745 hjam 0xCA ,0x926 
+0x3c45 006746 hjam 0xCE ,0x925 
+0x3c46 006747 hjam 0xD2 ,0x924 
+0x3c47 006748 hjam 0xD6 ,0x923 
+0x3c48 006749 hjam 0xDA ,0x922 
+0x3c49 006750 hjam 0xDE ,0x921 
+0x3c4a 006751 hjam 0xE2 ,0x920 
+0x3c4b 006752 hjam 0xE6 ,0x91f 
+0x3c4c 006753 hjam 0xEA ,0x91e 
+0x3c4d 006754 hjam 0xEE ,0x91d 
+0x3c4e 006755 hjam 0xF2 ,0x91c 
+0x3c4f 006756 hjam 0xF6 ,0x91b 
+0x3c50 006757 hjam 0xFB ,0x91a 
+0x3c51 006759 hjam 0xf5 ,0x947 
+0x3c52 006760 hjam 0xe5 ,0x946 
+0x3c53 006761 hjam 0xd5 ,0x945 
+0x3c54 006762 hjam 0xD8 ,0x944 
+0x3c55 006763 hjam 0xC9 ,0x943 
+0x3c56 006764 hjam 0xC8 ,0x942 
+0x3c57 006765 hjam 0x89 ,0x941 
+0x3c58 006766 hjam 0x88 ,0x940 
+0x3c59 006767 hjam 0x87 ,0x93f 
+0x3c5a 006768 hjam 0x48 ,0x93e 
+0x3c5b 006769 hjam 0x09 ,0x93d 
+0x3c5c 006770 hjam 0x08 ,0x93c 
+0x3c5d 006771 hjam 0xC9 ,0x93b 
+0x3c5e 006772 hjam 0xC8 ,0x93a 
+0x3c5f 006773 hjam 0xC7 ,0x939 
+0x3c60 006774 hjam 0xC6 ,0x938 
+0x3c61 006775 hjam 0xC5 ,0x937 
+0x3c62 006776 hjam 0xC4 ,0x936 
+0x3c63 006777 hjam 0xC3 ,0x935 
+0x3c64 006778 hjam 0xC2 ,0x934 
+0x3c65 006779 hjam 0xC1 ,0x933 
+0x3c66 006780 hjam 0xC0 ,0x932 
+0x3c67 006781 hjam 0x80 ,0x931 
+0x3c68 006782 rtn 
+:      006786 init_250k:
+0x3c69 006787 enable le 
+0x3c6a 006788 setarg 0x8e89be 
+0x3c6b 006789 lshift8 pdata ,pdata 
+0x3c6c 006790 or_into 0xd6 ,pdata 
+0x3c6d 006791 iforce access 
+0x3c6e 006792 hjam 7 ,0x914 
+0x3c6f 006793 hjam 0xa0 ,0x90a 
+0x3c70 006794 hjam 0x8f ,0x90d 
+0x3c71 006795 hjam 0x0f ,0x911 
+0x3c72 006796 hjam 0x87 ,0x912 
+0x3c73 006797 rtn 
+:      006802 lpmstate:
+0x3c74 006803 setarg 0xee21 
+0x3c75 006804 hstore 2 ,core_clkoff 
+0x3c76 006805 hfetch 1 ,core_lpm_ldocnt 
+0x3c77 006806 bbit0 gpio_latch ,loadcode 
+0x3c78 006807 enable wake 
+0x3c79 006808 bbit0 cold_wake ,lpmwake 
+0x3c7a 006809 disable wake 
+0x3c7b 006810 deposit auxcnt 
+0x3c7c 006811 nbranch lpmwake ,blank 
+0x3c7d 006812 arg param_hibernate_clks ,temp 
+0x3c7e 006813 branch lpm_enter_sleep 
+:      006814 lpmwake:
+0x3c7f 006815 hfetch 3 ,core_lpm_xtalcnt 
+0x3c80 006816 hstore 3 ,core_lpm_reg 
+0x3c81 006817 ifetch 1 ,contr 
+0x3c82 006818 or_into isogate_mask ,pdata 
+0x3c83 006819 istore 1 ,contw 
+0x3c84 006820 call lpm_write_ctrl2 
+0x3c85 006821 hfetch 1 ,core_lpm_isogate 
+0x3c86 006822 set1 enable_retmem ,pdata 
+0x3c87 006823 hstore 1 ,core_lpm_isogate 
+0x3c88 006824 call lpm_write_ctrl2 
+0x3c89 006825 call lpm_load_context ,wake 
+0x3c8a 006826 hfetch 1 ,core_lpm_reg + 2 
+0x3c8b 006827 set0 gpio_latch ,pdata 
+0x3c8c 006828 hstore 1 ,core_lpm_reg + 2 
+0x3c8d 006829 call lpm_write_ctrl2 
+0x3c8e 006830 rtn wake 
+0x3c8f 006831 branch loadcode 
+:      006833 lpm_load_context:
+0x3c90 006834 fetch 1 ,mem_saved_spidctrl 
+0x3c91 006835 hstore 1 ,core_spid_ctrl 
+0x3c92 006836 fetch 3 ,mem_saved_gsel 
+0x3c93 006837 hstore 3 ,core_gpio_sel 
+0x3c94 006838 fetch 4 ,mem_saved_gpio + 4 
+0x3c95 006839 hstore 4 ,core_gpio_out0 
+0x3c96 006840 fetch 4 ,mem_saved_gpio 
+0x3c97 006841 hstore 4 ,core_gpio_oe0 
+0x3c98 006842 fetch 8 ,mem_saved_gpio + 8 
+0x3c99 006843 hstore 8 ,core_gpio_pu0 
+0x3c9a 006844 fetch 8 ,mem_saved_mark 
+0x3c9b 006845 iforce mark 
+0x3c9c 006846 hfetch 8 ,core_gpio_wakeup_low 
+0x3c9d 006847 store 8 ,mem_gpio_wakeup_low 
+0x3c9e 006848 call load_ucode 
+0x3c9f 006849 rtn 
+:      006851 lpm_save_context:
+0x3ca0 006852 deposit mark 
+0x3ca1 006853 store 8 ,mem_saved_mark 
+0x3ca2 006854 hfetch 8 ,core_gpio_oe0 
+0x3ca3 006855 store 8 ,mem_saved_gpio 
+0x3ca4 006856 ifetch 8 ,contr 
+0x3ca5 006857 istore 8 ,contw 
+0x3ca6 006858 hfetch 3 ,core_gpio_sel 
+0x3ca7 006859 store 3 ,mem_saved_gsel 
+0x3ca8 006860 hfetch 1 ,core_spid_ctrl 
+0x3ca9 006861 store 1 ,mem_saved_spidctrl 
+0x3caa 006862 branch lpm_write_gpio_wakeup 
+:      006864 lpo_calibration:
+0x3cab 006865 hfetch 1 ,core_bist_ctrl 
+0x3cac 006866 nbranch lpo_cal_inited ,blank 
+0x3cad 006867 fetch 3 ,mem_clks_per_lpo 
+0x3cae 006868 nrtn blank 
+0x3caf 006869 hjam 0xc0 ,core_bist_ctrl 
+0x3cb0 006870 hjam ccnt_start ,core_misc_ctrl 
+:      006871 lpo_cal_inited:
+0x3cb1 006872 hfetch 1 ,core_perf_status 
+0x3cb2 006873 rtnbit0 1 
+0x3cb3 006874 hfetch 3 ,core_clk_counter 
+0x3cb4 006875 store 3 ,mem_clks_per_lpo 
+0x3cb5 006876 rtn 
+:      006880 lpm_adjust_clk:
+0x3cb6 006881 set0 mark_ext_patch ,mark 
+0x3cb7 006882 bpatch patch15_6 ,mem_patch15 
+0x3cb8 006883 deposit clke 
+0x3cb9 006884 call clk_diff_rt 
+0x3cba 006885 fetcht 4 ,mem_sleep_counter_all 
+0x3cbb 006886 sub temp ,0xff ,null 
+0x3cbc 006887 rtn positive 
+0x3cbd 006888 lshift8 pdata ,pdata 
+0x3cbe 006889 lshift4 pdata ,pdata 
+0x3cbf 006890 idiv temp 
+0x3cc0 006891 call wait_div_end 
+0x3cc1 006892 quotient pdata 
+0x3cc2 006893 arg param_lpm_adjmax ,temp 
+0x3cc3 006894 call ceiling 
+0x3cc4 006895 store 1 ,mem_lpm_adjust 
+0x3cc5 006896 nbranch lpm_adjust_positive ,user 
+0x3cc6 006897 sub pdata ,0 ,pdata 
+:      006898 lpm_adjust_positive:
+0x3cc7 006899 fetcht 3 ,mem_clks_per_lpo 
+0x3cc8 006900 iadd temp ,pdata 
+0x3cc9 006901 store 3 ,mem_clks_per_lpo 
+:      006902 lpm_clear_counter:
+0x3cca 006903 setarg 0 
+0x3ccb 006904 store 4 ,mem_sleep_counter_all 
+0x3ccc 006905 rtn 
+:      006908 lpm_hibernate:
+0x3ccd 006909 set0 mark_ext_patch ,mark 
+0x3cce 006910 bpatch patch15_7 ,mem_patch15 
+0x3ccf 006911 call lpm_write_gpio_wakeup 
+0x3cd0 006912 hfetch 4 ,core_lpm_ctrl 
+0x3cd1 006913 set0 15 ,pdata 
+0x3cd2 006914 hstore 4 ,core_lpm_reg 
+0x3cd3 006915 call lpm_write_ctrl 
+:      006916 lpm_hibernate_normal:
+0x3cd4 006917 arg param_hibernate_clks ,temp 
+0x3cd5 006918 fetch 1 ,mem_lpm_hibernate_switch 
+0x3cd6 006919 store 1 ,mem_lpm_xtalcnt + 4 
+0x3cd7 006920 fetch 1 ,mem_lpm_xtalcnt + 2 
+0x3cd8 006921 set1 cold_wake ,pdata 
+0x3cd9 006922 store 1 ,mem_lpm_xtalcnt + 2 
+:      006925 lpm_sleep:
+0x3cda 006926 set0 mark_ext_patch ,mark 
+0x3cdb 006927 bpatch patch16_0 ,mem_patch16 
+0x3cdc 006928 fetch 4 ,mem_sleep_counter_all 
+0x3cdd 006929 iadd temp ,pdata 
+0x3cde 006930 store 4 ,mem_sleep_counter_all 
+0x3cdf 006931 call lpm_save_context 
+0x3ce0 006932 fetch 5 ,mem_lpm_xtalcnt 
+0x3ce1 006933 hstore 4 ,core_lpm_reg 
+0x3ce2 006934 rshift32 pdata ,rega 
+0x3ce3 006935 until null ,lpo_edge 
+0x3ce4 006936 deposit clkn 
+0x3ce5 006937 store 6 ,mem_sleep_clkn 
+0x3ce6 006938 hjam lpmreg_sel_ctrl2 ,core_lpm_wr 
+0x3ce7 006939 until null ,lpo_edge 
+0x3ce8 006940 until null ,lpo_edge 
+0x3ce9 006941 deposit rega 
+0x3cea 006942 hstore 1 ,core_lpm_isogate 
+0x3ceb 006943 hjam lpmreg_sel_ctrl2 ,core_lpm_wr 
+:      006944 lpm_enter_sleep:
+0x3cec 006945 until null ,lpo_edge 
+0x3ced 006946 until null ,lpo_edge 
+0x3cee 006947 hstoret 4 ,core_lpm_reg 
+0x3cef 006948 hjam lpmreg_sel_counter ,core_lpm_wr 
+0x3cf0 006949 until null ,never 
+:      006954 lpm_recover_clk:
+0x3cf1 006955 set0 mark_ext_patch ,mark 
+0x3cf2 006956 bpatch patch16_1 ,mem_patch16 
+0x3cf3 006957 setarg 0 
+0x3cf4 006958 copy auxcnt ,null 
+0x3cf5 006959 branch lpm_recover_timeout ,zero 
+0x3cf6 006960 hfetch 1 ,core_lpm_xtalcnt 
+0x3cf7 006961 hfetcht 1 ,core_lpm_buckcnt 
+0x3cf8 006962 isub temp ,null 
+0x3cf9 006963 branch lpm_recover_xtal ,positive 
+0x3cfa 006964 deposit temp 
+:      006965 lpm_recover_xtal:
+0x3cfb 006966 isub auxcnt ,pdata 
+0x3cfc 006967 increase 1 ,pdata 
+:      006968 lpm_recover_timeout:
+0x3cfd 006969 increase 8 ,pdata 
+0x3cfe 006970 until null ,lpo_edge 
+0x3cff 006971 iadd lpo_time ,pdata 
+0x3d00 006972 fetcht 4 ,mem_sleep_counter 
+0x3d01 006973 iadd temp ,pdata 
+0x3d02 006974 fetcht 3 ,mem_clks_per_lpo 
+0x3d03 006975 imul32 temp ,pdata 
+0x3d04 006976 rshift8 pdata ,pdata 
+0x3d05 006977 rshift4 pdata ,pdata 
+0x3d06 006978 increase param_lpm_fix ,pdata 
+0x3d07 006979 arg 3750 ,temp 
+0x3d08 006980 idiv temp 
+0x3d09 006981 call wait_div_end 
+0x3d0a 006982 quotient pdata 
+0x3d0b 006983 lshift16 pdata ,pdata 
+0x3d0c 006984 remainder temp 
+0x3d0d 006985 ior temp ,pdata 
+0x3d0e 006986 fetcht 6 ,mem_sleep_clkn 
+0x3d0f 006987 call clk_add 
+0x3d10 006988 copy temp ,clkn 
+0x3d11 006989 fetch 6 ,mem_context + coffset_clk_offset 
+0x3d12 006990 call calc_clke2 
+0x3d13 006991 deposit clke 
+0x3d14 006992 store 6 ,mem_pdatatemp 
+0x3d15 006993 deposit auxcnt 
+0x3d16 006994 istore 1 ,contw 
+0x3d17 006995 hfetch 1 ,core_gpio_in1 
+0x3d18 006996 or_into 0xf0 ,pdata 
+0x3d19 006997 istore 1 ,contw 
+0x3d1a 006998 call savelist_2 
+0x3d1b 006999 rtn 
+:      007001 lpm_dispatch:
+0x3d1c 007002 set0 mark_ext_patch ,mark 
+0x3d1d 007003 bpatch patch16_2 ,mem_patch16 
+0x3d1e 007004 call lpo_calibration 
+0x3d1f 007005 fetch 3 ,mem_clks_per_lpo 
+0x3d20 007006 rtn blank 
+0x3d21 007007 fetch 1 ,mem_lpm_mode 
+0x3d22 007008 rtn blank 
+0x3d23 007009 call lpm_check_wake_lock 
+0x3d24 007010 nrtn blank 
+:      007011 lpm_dispatch0:
+0x3d25 007012 fetch 1 ,mem_context 
+0x3d26 007013 compare 3 ,pdata ,0x7 
+0x3d27 007014 nbranch lpm_dispatch_unconn ,true 
+0x3d28 007015 fetch 2 ,mem_context + coffset_tsniff 
+0x3d29 007016 rtn blank 
+0x3d2a 007017 rtn wake 
+0x3d2b 007018 set0 mark_ext_patch ,mark 
+0x3d2c 007019 bpatch patch16_3 ,mem_patch16 
+:      007020 lpm_dispatch1:
+0x3d2d 007021 fetcht 1 ,mem_lpm_current_mult 
+0x3d2e 007022 fetch 2 ,mem_context + coffset_tsniff 
+0x3d2f 007023 imul32 temp ,pdata 
+0x3d30 007024 rshift4 temp ,temp 
+0x3d31 007025 rshift2 temp ,temp 
+0x3d32 007026 isub temp ,pdata 
+0x3d33 007027 fetcht 4 ,mem_context + coffset_sniff_anchor 
+0x3d34 007028 iadd temp ,pdata 
+0x3d35 007029 fetcht 1 ,mem_lpm_overhead 
+0x3d36 007030 isub temp ,pdata 
+0x3d37 007031 lshift16 pdata ,alarm 
+0x3d38 007032 set0 mark_ext_patch ,mark 
+0x3d39 007033 bpatch patch16_4 ,mem_patch16 
+0x3d3a 007034 fetch 2 ,mem_context + coffset_rx_window 
+0x3d3b 007035 rshift pdata ,pdata 
+0x3d3c 007036 call clk2bt 
+0x3d3d 007037 deposit alarm 
+0x3d3e 007038 call clk_diff 
+0x3d3f 007039 copy clke ,temp 
+0x3d40 007040 call clk_diff_rt 
+0x3d41 007041 rtn user 
+:      007042 lpm_dispatch_sleep:
+0x3d42 007043 call clk2lpo 
+:      007044 lpm_dispatch_lpo:
+0x3d43 007045 set0 mark_ext_patch ,mark 
+0x3d44 007046 bpatch patch16_5 ,mem_patch16 
+0x3d45 007047 fetch 1 ,mem_lpm_xtalcnt 
+0x3d46 007048 isub temp ,null 
+0x3d47 007049 branch lpm_clear_counter ,positive 
+0x3d48 007050 storet 4 ,mem_sleep_counter 
+0x3d49 007051 call app_will_enter_lpm 
+0x3d4a 007052 call l2cap_lpm_save_txbuf 
+0x3d4b 007053 fetcht 4 ,mem_sleep_counter 
+0x3d4c 007054 branch lpm_sleep 
+:      007056 lpm_dispatch_unconn:
+0x3d4d 007057 set0 mark_ext_patch ,mark 
+0x3d4e 007058 bpatch patch16_6 ,mem_patch16 
+0x3d4f 007059 fetch 1 ,mem_context 
+0x3d50 007060 rtnbit1 state_inconn 
+0x3d51 007061 rtnbit1 state_inpage 
+0x3d52 007062 fetch 1 ,mem_ssp_enable 
+0x3d53 007063 branch lpm_unconn_nossp ,blank 
+0x3d54 007064 fetch 1 ,mem_sp_local_key_invalid 
+0x3d55 007065 rtn blank 
+:      007066 lpm_unconn_nossp:
+0x3d56 007067 fetch 1 ,mem_le_adv_enable 
+0x3d57 007068 nbranch lpm_unconn_cont ,blank 
+0x3d58 007069 fetch 1 ,mem_scan_mode 
+0x3d59 007070 rtn blank 
+:      007071 lpm_unconn_cont:
+0x3d5a 007072 fetch 2 ,mem_lpm_interval 
+0x3d5b 007073 rtn blank 
+:      007074 lpm_sleep_btclk:
+0x3d5c 007075 fetcht 1 ,mem_lpm_overhead 
+0x3d5d 007076 isub temp ,pdata 
+0x3d5e 007077 arg 7500 ,temp 
+0x3d5f 007078 imul32 temp ,pdata 
+0x3d60 007079 branch lpm_dispatch_sleep 
+:      007081 lpm_set_mult:
+0x3d61 007082 set0 mark_ext_patch ,mark 
+0x3d62 007083 bpatch patch16_7 ,mem_patch16 
+0x3d63 007084 disable wake 
+0x3d64 007085 fetch 1 ,mem_state 
+0x3d65 007086 rtnbit0 state_insniff 
+0x3d66 007087 nbranch lpm_not_match ,match 
+0x3d67 007088 call lpm_match 
+0x3d68 007089 fetch 2 ,mem_rx_window_sniff 
+0x3d69 007090 store 2 ,mem_rx_window 
+0x3d6a 007091 fetch 1 ,mem_arq 
+0x3d6b 007092 bbit1 wack ,lpm_mult_short 
+0x3d6c 007093 bmark0 mark_lpm_mult_enable ,lpm_mult_short 
+0x3d6d 007094 call l2cap_malloc_is_fifo_empty 
+0x3d6e 007095 nbranch lpm_mult_short ,blank 
+:      007096 lpm_mult_wait_timeout:
+0x3d6f 007097 jam 0 ,mem_lpm_current_mult 
+0x3d70 007098 bmark0 mark_lpm_mult_enable ,lpm_mult_short 
+0x3d71 007099 fetch 1 ,mem_lpm_mult_cnt 
+0x3d72 007100 branch lpm_mult_long ,blank 
+0x3d73 007101 increase -1 ,pdata 
+0x3d74 007102 store 1 ,mem_lpm_mult_cnt 
+0x3d75 007103 rtn 
+:      007105 lpm_match:
+0x3d76 007106 jam 0 ,mem_sniff_unint_lost 
+0x3d77 007107 fetch 3 ,mem_sniff_rcv 
+0x3d78 007108 increase 1 ,pdata 
+0x3d79 007109 store 3 ,mem_sniff_rcv 
+0x3d7a 007110 rtn 
+:      007112 lpm_not_match:
+0x3d7b 007113 set0 mark_ext_patch ,mark 
+0x3d7c 007114 bpatch patch17_0 ,mem_patch17 
+0x3d7d 007115 fetcht 2 ,mem_rx_window_sniff 
+0x3d7e 007116 rshift temp ,temp 
+0x3d7f 007117 fetch 2 ,mem_rx_window 
+0x3d80 007118 iadd temp ,pdata 
+0x3d81 007119 store 2 ,mem_rx_window 
+:      007120 lpm_lost:
+0x3d82 007121 jam 0 ,mem_lpm_current_mult 
+0x3d83 007122 fetch 3 ,mem_sniff_lost 
+0x3d84 007123 increase 1 ,pdata 
+0x3d85 007124 store 3 ,mem_sniff_lost 
+0x3d86 007125 fetch 1 ,mem_sniff_unint_lost 
+0x3d87 007126 increase 1 ,pdata 
+0x3d88 007127 store 1 ,mem_sniff_unint_lost 
+0x3d89 007128 rtn 
+:      007130 lpm_mult_short:
+0x3d8a 007131 jam 0 ,mem_lpm_current_mult 
+0x3d8b 007132 fetch 1 ,mem_lpm_mult_timeout 
+0x3d8c 007133 store 1 ,mem_lpm_mult_cnt 
+0x3d8d 007134 rtn 
+:      007136 lpm_mult_long:
+0x3d8e 007137 fetcht 1 ,mem_lpm_mult 
+0x3d8f 007138 storet 1 ,mem_lpm_current_mult 
+0x3d90 007139 rtn 
+:      007141 lpm_cal_xtal_startup:
+0x3d91 007142 set0 mark_ext_patch ,mark 
+0x3d92 007143 bpatch patch17_1 ,mem_patch17 
+0x3d93 007144 fetch 1 ,mem_lpm_xtalcnt 
+0x3d94 007145 nrtn blank 
+0x3d95 007146 hjam clksel_rc ,core_clksel 
+0x3d96 007147 setarg 0xf0c 
+0x3d97 007148 call lpm_write_config 
+0x3d98 007149 setarg 200000 
+0x3d99 007150 call sleep 
+0x3d9a 007151 until null ,lpo_edge 
+0x3d9b 007152 copy lpo_time ,alarm 
+0x3d9c 007153 call xtal_fast_wake 
+0x3d9d 007154 hjam clksel_xtal ,core_clksel 
+0x3d9e 007155 nop 10 
+0x3d9f 007156 until null ,lpo_edge 
+0x3da0 007157 deposit lpo_time 
+0x3da1 007158 isub alarm ,pdata 
+0x3da2 007159 increase 0x30 ,pdata 
+0x3da3 007160 arg 0xff ,temp 
+0x3da4 007161 call ceiling 
+0x3da5 007162 store 1 ,mem_lpm_xtalcnt 
+0x3da6 007163 rtn 
+:      007168 lpm_write_config:
+0x3da7 007169 arg 0xfff ,contw 
+0x3da8 007170 iand contw ,contw 
+0x3da9 007171 fetch 1 ,mem_lpm_config 
+0x3daa 007172 and_into 0xf0 ,pdata 
+0x3dab 007173 lshift8 pdata ,pdata 
+0x3dac 007174 ior contw ,pdata 
+0x3dad 007175 hstore 2 ,core_lpm_reg 
+0x3dae 007176 ifetch 2 ,contr 
+0x3daf 007177 istore 2 ,contw 
+:      007179 lpm_write_ctrl:
+0x3db0 007180 setarg lpmreg_sel_ctrl 
+0x3db1 007181 branch lpm_write 
+:      007183 lpm_write_ctrl2:
+0x3db2 007184 setarg lpmreg_sel_ctrl2 
+:      007185 lpm_write:
+0x3db3 007186 until null ,lpo_edge 
+0x3db4 007187 hstore 1 ,core_lpm_wr 
+0x3db5 007188 until null ,lpo_edge 
+0x3db6 007189 until null ,lpo_edge 
+0x3db7 007190 rtn 
+:      007193 lpm_write_gpio_wakeup:
+0x3db8 007194 set0 mark_ext_patch ,mark 
+0x3db9 007195 bpatch patch17_2 ,mem_patch17 
+0x3dba 007196 fetch 4 ,mem_gpio_wakeup_low 
+0x3dbb 007197 hstore 4 ,core_lpm_reg 
+0x3dbc 007198 setarg lpmreg_sel_gpiolow 
+0x3dbd 007199 call lpm_write 
+0x3dbe 007200 fetch 4 ,mem_gpio_wakeup_high 
+0x3dbf 007201 hstore 4 ,core_lpm_reg 
+0x3dc0 007202 setarg lpmreg_sel_gpiohigh 
+0x3dc1 007203 branch lpm_write 
+:      007205 lpm_get_wake_lock:
+0x3dc2 007206 fetch 2 ,mem_lpm_wake_lock 
+0x3dc3 007207 qset1 pdata 
+0x3dc4 007208 store 2 ,mem_lpm_wake_lock 
+0x3dc5 007209 rtn 
+:      007211 lpm_put_wake_lock:
+0x3dc6 007212 fetch 2 ,mem_lpm_wake_lock 
+0x3dc7 007213 qset0 pdata 
+0x3dc8 007214 store 2 ,mem_lpm_wake_lock 
+0x3dc9 007215 rtn 
+:      007219 lpm_check_wake_lock:
+0x3dca 007220 set0 mark_ext_patch ,mark 
+0x3dcb 007221 bpatch patch17_3 ,mem_patch17 
+0x3dcc 007222 call app_check_wake_lock 
+0x3dcd 007223 fetch 2 ,mem_lpm_wake_lock 
+0x3dce 007224 copy pdata ,rega 
+0x3dcf 007225 fetch 1 ,mem_state_map 
+0x3dd0 007226 isolate1 smap_rxlmp ,pdata 
+0x3dd1 007227 setflag true ,wake_lock_lmp_rx ,rega 
+0x3dd2 007228 fetch 1 ,mem_lmo_opcode1 
+0x3dd3 007229 fetcht 1 ,mem_lmo_opcode2 
+0x3dd4 007230 iadd temp ,pdata 
+0x3dd5 007231 fetcht 1 ,mem_lmp_to_send 
+0x3dd6 007232 iadd temp ,pdata 
+0x3dd7 007233 nsetflag blank ,wake_lock_lmp_tx ,rega 
+0x3dd8 007234 set0 mark_ext_patch ,mark 
+0x3dd9 007235 bpatch patch17_4 ,mem_patch17 
+0x3dda 007236 fetch 2 ,mem_l2cap_rxbuff1_len 
+0x3ddb 007237 fetcht 2 ,mem_l2cap_rxbuff2_len 
+0x3ddc 007238 iadd temp ,pdata 
+0x3ddd 007239 nsetflag blank ,wake_lock_l2cap_rx ,rega 
+0x3dde 007240 fetch 5 ,mem_ipc_fifo_bt2c51 
+0x3ddf 007241 nsetflag blank ,wake_lock_ipc_bt2c51 ,rega 
+0x3de0 007242 fetch 5 ,mem_ipc_fifo_c512bt 
+0x3de1 007243 nsetflag blank ,wake_lock_ipc_c512bt ,rega 
+0x3de2 007244 fetch 1 ,mem_hci_cmd 
+0x3de3 007245 nsetflag blank ,wake_lock_cmd ,rega 
+0x3de4 007246 fetch 1 ,mem_device_option 
+0x3de5 007247 compare dvc_op_module ,pdata ,0xff 
+0x3de6 007248 call lpm_uart_wake_lock ,true 
+0x3de7 007249 set0 mark_ext_patch ,mark 
+0x3de8 007250 bpatch patch17_5 ,mem_patch17 
+0x3de9 007251 fetch 1 ,mem_device_option 
+0x3dea 007252 bne dvc_op_hci ,lpm_check_wake_lock_nothci 
+0x3deb 007253 call lpm_uart_wake_lock 
+0x3dec 007254 fetch 1 ,mem_link_key_exists 
+0x3ded 007255 setflag blank ,wake_link_key_exists ,rega 
+0x3dee 007256 fetch 4 ,mem_lpm_delay_after_sniff 
+0x3def 007257 arg 0x1710 ,temp 
+0x3df0 007258 iadd temp ,temp 
+0x3df1 007259 copy clkn_bt ,pdata 
+0x3df2 007260 isub temp ,null 
+0x3df3 007261 nsetflag positive ,wake_lock_delay ,rega 
+0x3df4 007262 branch lpm_check_wake_lock_end 
+:      007264 lpm_uart_wake_lock:
+0x3df5 007265 hfetch 2 ,core_uart_rxitems 
+0x3df6 007266 nsetflag blank ,wake_lock_uart_rx ,rega 
+0x3df7 007267 hfetch 2 ,core_uart_txitems 
+0x3df8 007268 nsetflag blank ,wake_lock_uart_tx ,rega 
+0x3df9 007269 rtn 
+:      007271 lpm_check_wake_lock_nothci:
+0x3dfa 007272 setarg -8 
+0x3dfb 007273 iand rega ,rega 
+:      007274 lpm_check_wake_lock_end:
+0x3dfc 007275 copy rega ,pdata 
+0x3dfd 007276 store 2 ,mem_lpm_wake_lock 
+0x3dfe 007277 rtn blank 
+0x3dff 007278 rtn match 
+0x3e00 007279 enable wake 
+0x3e01 007280 rtn 
+:      007282 lpm_shut_down:
+0x3e02 007283 hfetch 4 ,core_lpm_ctrl 
+0x3e03 007284 set0 27 ,pdata 
+0x3e04 007285 hstore 4 ,core_lpm_reg 
+0x3e05 007286 call lpm_write_ctrl 
+0x3e06 007287 branch assert 
+:      007289 lpm_enable_exen_output:
+0x3e07 007290 hfetch 4 ,core_lpm_xtalcnt 
+0x3e08 007291 set1 20 ,pdata 
+0x3e09 007292 hstore 4 ,core_lpm_reg 
+0x3e0a 007293 branch lpm_write_ctrl2 
+:      007295 lpm_disable_exen_output:
+0x3e0b 007296 hfetch 4 ,core_lpm_xtalcnt 
+0x3e0c 007297 set0 20 ,pdata 
+0x3e0d 007298 hstore 4 ,core_lpm_reg 
+0x3e0e 007299 branch lpm_write_ctrl2 
+:      007301 lpm_hci_wake_dispatch:
+0x3e0f 007302 set0 mark_ext_patch ,mark 
+0x3e10 007303 bpatch patch17_6 ,mem_patch17 
+0x3e11 007304 fetch 1 ,mem_device_option 
+0x3e12 007305 rtnne dvc_op_hci 
+0x3e13 007306 call gpio_check_uart_state 
+0x3e14 007307 rtn true 
+0x3e15 007308 fetch 4 ,mem_hci_wake_clk 
+0x3e16 007309 nbranch lpm_hci_check_wake_time ,blank 
+0x3e17 007310 copy clkn_bt ,pdata 
+0x3e18 007311 store 4 ,mem_hci_wake_clk 
+0x3e19 007312 branch gpio_pd_uart_tx 
+:      007313 lpm_hci_check_wake_time:
+0x3e1a 007314 set0 mark_ext_patch ,mark 
+0x3e1b 007315 bpatch patch17_7 ,mem_patch17 
+0x3e1c 007316 copy clkn_bt ,pdata 
+0x3e1d 007317 fetcht 4 ,mem_hci_wake_clk 
+0x3e1e 007318 isub temp ,pdata 
+0x3e1f 007319 arg host_wake_time ,temp 
+0x3e20 007320 isub temp ,null 
+0x3e21 007321 nrtn positive 
+0x3e22 007322 setarg 0 
+0x3e23 007323 store 4 ,mem_hci_wake_clk 
+0x3e24 007324 branch hci_exit_lpm 
+:      007326 check_bt_disabled:
+0x3e25 007327 fetch 2 ,mem_chip_functions 
+0x3e26 007328 bbit1 bt_disabled ,assert 
+0x3e27 007329 rtn 
+:      007330 check_ble_disabled:
+0x3e28 007331 fetch 2 ,mem_chip_functions 
+0x3e29 007332 bbit1 ble_disabled ,assert 
+0x3e2a 007333 rtn 
+:      007334 check_module_disabled:
+0x3e2b 007335 fetch 2 ,mem_chip_functions 
+0x3e2c 007336 bbit1 module_disable ,assert 
+0x3e2d 007337 rtn 
+:      007339 test_init:
+0x3e2e 007340 setarg test_proc 
+0x3e2f 007341 store 2 ,mem_cb_bt_process 
+0x3e30 007342 setarg test_sleep 
+0x3e31 007343 store 2 ,mem_cb_bb_event_process 
+0x3e32 007344 setarg test_proc 
+0x3e33 007345 store 2 ,mem_cb_idle_process 
+0x3e34 007346 rtn wake 
+0x3e35 007347 jam ui_led_start ,mem_led_switch 
+0x3e36 007348 rtn 
+:      007350 test_proc:
+0x3e37 007351 fetch 1 ,mem_state 
+0x3e38 007352 bbit0 state_insniff ,check_test_cond 
+0x3e39 007353 set1 mark_lpm_mult_enable ,mark 
+0x3e3a 007354 fetch 6 ,mem_sniff_rcv 
+0x3e3b 007355 store 6 ,mem_local_name 
+0x3e3c 007356 branch ui_led_blink_stop 
+:      007359 test_sleep:
+0x3e3d 007360 deposit regc 
+0x3e3e 007361 rtnne bt_evt_button_long_pressed 
+:      007362 test_sleep_loop:
+0x3e3f 007363 call ui_button_polling 
+0x3e40 007364 fetch 1 ,mem_ui_button_last_state 
+0x3e41 007365 beq 1 ,test_sleep_loop 
+0x3e42 007366 call ui_led_off 
+0x3e43 007367 branch lpm_hibernate 
+:      007370 test_tx:
+0x3e44 007371 force 2 ,temp 
+0x3e45 007372 increase -2 ,temp 
+0x3e46 007373 call set_sync_on 
+0x3e47 007374 call set_freq_tx 
+0x3e48 007375 disable enable_white 
+0x3e49 007376 enable encode_fec0 
+0x3e4a 007377 set1 txgfsk ,radio_ctrl 
+0x3e4b 007378 call start_transmitter 
+:      007379 test_tx_loop:
+0x3e4c 007380 fetch 1 ,0 
+0x3e4d 007381 inject mod ,8 
+0x3e4e 007382 branch test_tx_loop 
+:      007388 app_init:
+0x3e4f 007389 set1 mark_ext_patch ,mark 
+0x3e50 007390 bpatch patch39_5 ,mem_patch39 
+0x3e51 007391 fetch 1 ,mem_device_option 
+0x3e52 007392 branch app_init ,blank 
+0x3e53 007393 beq dvc_op_ukey ,le_ukey_init 
+0x3e54 007394 beq dvc_op_ir ,le_ir_init 
+0x3e55 007395 beq dvc_op_dongle ,le_dongle_init 
+0x3e56 007396 beq dvc_op_kb ,kb_init 
+0x3e57 007397 beq dvc_op_hci ,hci_init 
+0x3e58 007398 beq dvc_op_shutter ,shutter_init 
+0x3e59 007399 beq dvc_op_module ,module_init 
+0x3e5a 007400 beq dvc_op_ble_kb ,le_kb_init 
+0x3e5b 007401 beq dvc_op_ble_prcp ,prcp_init 
+0x3e5c 007402 beq dvc_op_test ,test_init 
+0x3e5d 007403 bbit1 dvc_op_mouse ,mouse_init 
+0x3e5e 007404 rtn 
+:      007406 app_lpm_init:
+0x3e5f 007407 set1 mark_ext_patch ,mark 
+0x3e60 007408 bpatch patch39_6 ,mem_patch39 
+0x3e61 007409 jam 0 ,mem_tester_emulate 
+0x3e62 007410 jam 0 ,mem_debug_config 
+0x3e63 007411 jam 0 ,mem_lch_code 
+0x3e64 007412 setarg 0 
+0x3e65 007413 store 5 ,mem_sp_state_start 
+0x3e66 007414 fetch 1 ,mem_device_option 
+0x3e67 007415 branch app_lpm_init ,blank 
+0x3e68 007416 beq dvc_op_module ,module_lpm_init 
+0x3e69 007417 rtn 
+:      007420 app_process_idle:
+0x3e6a 007421 call ui_dispatch 
+0x3e6b 007422 call check_51cmd 
+0x3e6c 007423 call app_process_bb_event 
+0x3e6d 007424 fetch 2 ,mem_cb_idle_process 
+0x3e6e 007425 branch callback_func 
+:      007427 app_process_bt:
+0x3e6f 007428 fetch 2 ,mem_cb_bt_process 
+0x3e70 007429 branch callback_func 
+:      007431 app_process_ble:
+0x3e71 007432 fetch 2 ,mem_cb_le_process 
+0x3e72 007433 branch callback_func 
+:      007435 app_process_bb_event:
+0x3e73 007436 set1 mark_ext_patch ,mark 
+0x3e74 007437 bpatch patch39_7 ,mem_patch39 
+0x3e75 007439 arg mem_ipc_fifo_bt2c51 ,rega 
+0x3e76 007440 call fifo_out 
+0x3e77 007441 rtn blank 
+0x3e78 007443 copy pdata ,regc 
+0x3e79 007444 call app_event_normal_process 
+0x3e7a 007445 branch app_process_bb_event_priority 
+:      007447 app_discard_event:
+0x3e7b 007448 arg 0 ,regc 
+0x3e7c 007449 rtn 
+:      007454 app_event_normal_process:
+0x3e7d 007455 beq bt_evt_bb_connected ,app_evt_bt_conn 
+0x3e7e 007456 beq bt_evt_button_long_pressed ,app_evt_button_long_pressed 
+0x3e7f 007457 beq bt_evt_setup_complete ,app_evt_setup_complete 
+0x3e80 007458 beq bt_evt_hid_handshake ,app_evt_hid_handshake 
+0x3e81 007459 beq bt_evt_hid_connected ,app_bb_event_hid_connected 
+0x3e82 007460 beq bt_evt_reconn_failed ,app_bb_event_reconn_failed 
+0x3e83 007461 beq bt_evt_bb_disconnected ,app_bb_event_bb_disconn 
+0x3e84 007462 beq bt_evt_reconn_page_timeout ,app_bb_event_reconn_failed 
+0x3e85 007463 beq bt_evt_le_connected ,app_le_event_bb_connected 
+0x3e86 007464 beq bt_evt_le_disconnected ,app_le_event_bb_disconn 
+0x3e87 007465 beq bt_evt_reconn_started ,app_event_reconn_start 
+0x3e88 007466 beq bt_evt_enter_sniff ,app_event_enter_sniff 
+0x3e89 007467 beq bt_evt_exit_sniff ,app_event_exit_sniff 
+0x3e8a 007469 beq bt_evt_ml2cap_conn_refused ,app_event_ml2cap_conn_refused 
+0x3e8b 007470 beq bt_evt_linkkey_generate ,app_event_linkkey_generate 
+0x3e8c 007471 beq bt_evt_switch_fail_master ,app_event_switch_fail_master 
+0x3e8d 007472 beq bt_evt_switch_success_master ,app_event_switch_success 
+0x3e8e 007474 and pdata ,0x0f ,temp 
+0x3e8f 007475 and_into bt_evt_timer_mask ,pdata 
+0x3e90 007476 beq bt_evt_timer_init ,app_evt_timer 
+0x3e91 007477 rtn 
+:      007479 app_evt_bt_conn:
+0x3e92 007480 fetch 2 ,mem_ui_state_map 
+0x3e93 007481 set1 ui_state_bt_connected ,pdata 
+0x3e94 007482 store 2 ,mem_ui_state_map 
+0x3e95 007483 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3e96 007484 set0 app_disc_by_button ,pdata 
+0x3e97 007485 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3e98 007486 rtn 
+:      007487 app_event_switch_success:
+0x3e99 007488 jam 0 ,mem_switch_fail_master_count 
+0x3e9a 007489 rtn 
+:      007491 app_event_switch_fail_master:
+0x3e9b 007492 fetch 1 ,mem_switch_fail_master_count 
+0x3e9c 007493 increase 1 ,pdata 
+0x3e9d 007494 store 1 ,mem_switch_fail_master_count 
+0x3e9e 007495 sub pdata ,1 ,null 
+0x3e9f 007496 branch app_bt_role_switch ,positive 
+0x3ea0 007497 jam 0 ,mem_switch_fail_master_count 
+0x3ea1 007498 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3ea2 007499 set1 app_disc_switch_fail ,pdata 
+0x3ea3 007500 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3ea4 007501 branch app_bt_disconnect 
+:      007503 app_process_bb_event_priority:
+0x3ea5 007504 fetch 2 ,mem_cb_bb_event_process 
+0x3ea6 007505 branch callback_func 
+:      007507 app_check_wake_lock:
+0x3ea7 007508 fetch 2 ,mem_cb_check_wakelock 
+0x3ea8 007509 branch callback_func 
+:      007511 app_will_enter_lpm:
+0x3ea9 007512 fetch 2 ,mem_cb_before_lpm 
+0x3eaa 007513 branch callback_func 
+:      007515 app_event_linkkey_generate:
+0x3eab 007516 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3eac 007517 set1 app_disc_after_pairing ,pdata 
+0x3ead 007518 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3eae 007519 branch app_bt_store_reconn_info 
+:      007521 app_event_reconn_start:
+0x3eaf 007522 fetch 2 ,mem_ui_state_map 
+0x3eb0 007523 set1 ui_state_bt_reconnect ,pdata 
+0x3eb1 007524 store 2 ,mem_ui_state_map 
+0x3eb2 007525 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3eb3 007526 set1 app_disc_after_reconn ,pdata 
+0x3eb4 007527 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3eb5 007528 rtn 
+:      007530 app_evt_setup_complete:
+0x3eb6 007531 fetch 2 ,mem_ui_state_map 
+0x3eb7 007532 set1 ui_state_bt_setup_complete ,pdata 
+0x3eb8 007533 store 2 ,mem_ui_state_map 
+0x3eb9 007534 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3eba 007535 set1 app_disc_after_setup_done ,pdata 
+0x3ebb 007536 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3ebc 007537 rtn 
+:      007539 app_evt_hid_handshake:
+0x3ebd 007540 fetch 2 ,mem_ui_state_map 
+0x3ebe 007541 set1 ui_state_bt_hid_handshake ,pdata 
+0x3ebf 007542 store 2 ,mem_ui_state_map 
+0x3ec0 007543 rtn 
+:      007545 app_event_enter_sniff:
+0x3ec1 007546 fetch 2 ,mem_ui_state_map 
+0x3ec2 007547 set1 ui_state_bt_sniff ,pdata 
+0x3ec3 007548 store 2 ,mem_ui_state_map 
+0x3ec4 007549 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3ec5 007550 set1 app_disc_after_sniff ,pdata 
+0x3ec6 007551 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3ec7 007552 rtn 
+:      007554 app_event_exit_sniff:
+0x3ec8 007555 fetch 2 ,mem_ui_state_map 
+0x3ec9 007556 set0 ui_state_bt_sniff ,pdata 
+0x3eca 007557 store 2 ,mem_ui_state_map 
+0x3ecb 007558 rtn 
+:      007560 app_le_event_bb_connected:
+0x3ecc 007561 fetch 2 ,mem_ui_state_map 
+0x3ecd 007562 set1 ui_state_ble_connected ,pdata 
+0x3ece 007563 store 2 ,mem_ui_state_map 
+0x3ecf 007564 rtn 
+:      007566 app_le_event_bb_disconn:
+0x3ed0 007567 fetch 2 ,mem_ui_state_map 
+0x3ed1 007568 set0 ui_state_ble_connected ,pdata 
+0x3ed2 007569 store 2 ,mem_ui_state_map 
+0x3ed3 007570 jam 0 ,mem_le_switch_send_data 
+0x3ed4 007571 branch app_lpm_mult_disable 
+:      007573 app_bb_event_hid_connected:
+0x3ed5 007574 fetch 2 ,mem_ui_state_map 
+0x3ed6 007575 set1 ui_state_bt_hid_conn ,pdata 
+0x3ed7 007576 store 2 ,mem_ui_state_map 
+0x3ed8 007577 rtn 
+:      007579 app_evt_button_long_pressed:
+0x3ed9 007580 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3eda 007581 set1 app_disc_by_button ,pdata 
+0x3edb 007582 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3edc 007583 rtn 
+:      007585 app_event_ml2cap_conn_refused:
+0x3edd 007586 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3ede 007587 set1 app_disc_l2cap_refused ,pdata 
+0x3edf 007588 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3ee0 007589 branch app_bt_disconnect 
+:      007592 app_evt_timer:
+0x3ee1 007593 set1 mark_ext_patch ,mark 
+0x3ee2 007594 bpatch patch3a_0 ,mem_patch3a 
+0x3ee3 007595 storet 1 ,mem_app_evt_timer_count 
+:      007596 app_evt_100ms_loop:
+0x3ee4 007597 fetch 1 ,mem_app_evt_timer_count 
+0x3ee5 007598 rtn blank 
+0x3ee6 007599 increase -1 ,pdata 
+0x3ee7 007600 store 1 ,mem_app_evt_timer_count 
+0x3ee8 007601 call ui_button_polling 
+0x3ee9 007602 call app_lpm_wake_auto_lock_timer 
+0x3eea 007603 call app_unsniff_delay_timer 
+0x3eeb 007604 call app_discovery_timer 
+0x3eec 007605 branch app_evt_100ms_loop 
+:      007607 app_unsniff_delay_timer:
+0x3eed 007608 fetch 1 ,mem_unsniff2sniff_timer_count 
+0x3eee 007609 rtn blank 
+0x3eef 007610 increase -1 ,pdata 
+0x3ef0 007611 store 1 ,mem_unsniff2sniff_timer_count 
+0x3ef1 007612 nrtn blank 
+0x3ef2 007613 call context_check_idle 
+0x3ef3 007614 branch app_bt_enter_sniff ,zero 
+0x3ef4 007615 rtn 
+:      007616 app_discovery_timer:
+0x3ef5 007617 fetch 2 ,mem_discovery_timeout_timer_count 
+0x3ef6 007618 rtn blank 
+0x3ef7 007619 increase -1 ,pdata 
+0x3ef8 007620 store 2 ,mem_discovery_timeout_timer_count 
+0x3ef9 007621 nrtn blank 
+0x3efa 007622 call app_bt_stop_discovery 
+0x3efb 007623 call app_led_off 
+0x3efc 007624 fetch 2 ,mem_cb_discovry_timeout 
+0x3efd 007625 branch callback_func 
+:      007627 app_bb_event_reconn_failed:
+0x3efe 007628 call app_disconn_reason_flag_clear 
+:      007629 app_clear_reconnect_flag:
+0x3eff 007630 fetch 2 ,mem_ui_state_map 
+0x3f00 007631 set0 ui_state_bt_reconnect ,pdata 
+0x3f01 007632 store 2 ,mem_ui_state_map 
+0x3f02 007633 rtn 
+:      007635 app_bb_event_bb_disconn:
+0x3f03 007636 jam 0 ,mem_unsniff2sniff_timer_count 
+0x3f04 007637 fetch 2 ,mem_ui_state_map 
+0x3f05 007638 bbit1 ui_state_bt_reconnect ,app_bb_event_bb_reconn_disconn 
+0x3f06 007639 isolate0 ui_state_bt_setup_complete ,pdata 
+0x3f07 007640 call app_discard_event ,true 
+:      007641 app_bb_event_bb_reconn_disconn:
+0x3f08 007642 fetch 2 ,mem_ui_state_map 
+0x3f09 007643 set0 ui_state_bt_connected ,pdata 
+0x3f0a 007644 set0 ui_state_bt_setup_complete ,pdata 
+0x3f0b 007645 set0 ui_state_bt_hid_conn ,pdata 
+0x3f0c 007646 set0 ui_state_bt_hid_handshake ,pdata 
+0x3f0d 007647 set0 ui_state_bt_spp_conn ,pdata 
+0x3f0e 007648 store 2 ,mem_ui_state_map 
+0x3f0f 007649 branch app_lpm_mult_disable 
+:      007651 app_bb_hibernate:
+0x3f10 007652 call app_disconn_reason_clear 
+0x3f11 007653 branch app_enter_hibernate 
+:      007656 app_event_do_nothing:
+:      007657 app_disconn_reason_clear:
+0x3f12 007658 setarg 0 
+0x3f13 007659 store app_disc_rsn_size ,mem_app_disconn_reason 
+0x3f14 007660 rtn 
+:      007661 app_disconn_reason_flag_clear:
+0x3f15 007662 setarg 0 
+0x3f16 007663 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3f17 007664 rtn 
+:      007667 app_disconn_reason_collect_bt:
+0x3f18 007668 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3f19 007669 store app_disc_rsn_size ,mem_app_disconn_reason 
+0x3f1a 007670 setarg 0 
+0x3f1b 007671 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3f1c 007672 rtn 
+:      007674 app_disconn_reason_collect_ble:
+0x3f1d 007675 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3f1e 007676 set1 app_disc_ble ,pdata 
+0x3f1f 007677 store app_disc_rsn_size ,mem_app_disconn_reason 
+0x3f20 007678 setarg 0 
+0x3f21 007679 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x3f22 007680 rtn 
+:      007686 app_check_reconn_target:
+0x3f23 007687 call eeprom_load_reconn_info 
+0x3f24 007688 fetch 6 ,mem_hci_plap 
+0x3f25 007689 rtn 
+:      007691 app_le_check_reconn_target:
+0x3f26 007692 fetch 1 ,mem_ltk_exists 
+0x3f27 007693 branch app_le_check_reconn_target_none ,blank 
+0x3f28 007694 call app_led_on 
+0x3f29 007695 branch app_ble_start_direct_adv 
+:      007696 app_le_check_reconn_target_none:
+0x3f2a 007697 call app_led_start_blink 
+0x3f2b 007698 branch app_ble_start_adv 
+:      007700 app_check_plap:
+0x3f2c 007701 set1 mark_ext_patch ,mark 
+0x3f2d 007702 bpatch patch3a_1 ,mem_patch3a 
+0x3f2e 007703 arg mem_check_plap_temp ,regb 
+0x3f2f 007704 arg app_check_one_plap ,regc 
+0x3f30 007705 branch context_search 
+:      007707 app_check_one_plap:
+0x3f31 007708 arg 0 ,temp 
+0x3f32 007709 bbit0 state_inconn ,app_check_one_plap_next 
+0x3f33 007710 add rega ,coffset_plap ,contr 
+0x3f34 007711 ifetcht 6 ,contr 
+:      007712 app_check_one_plap_next:
+0x3f35 007713 copy temp ,pdata 
+0x3f36 007714 ncall app_check_one_plap_device_exist ,blank 
+0x3f37 007715 istoret 6 ,regb 
+0x3f38 007716 increase 6 ,regb 
+0x3f39 007717 branch context_search_next 
+:      007718 app_check_one_plap_device_exist:
+0x3f3a 007719 fetch 1 ,mem_device_nums 
+0x3f3b 007720 increase 1 ,pdata 
+0x3f3c 007721 store 1 ,mem_device_nums 
+0x3f3d 007722 rtn 
+:      007724 app_check_conn_device_nums_addr:
+0x3f3e 007725 jam 0 ,mem_device_nums 
+0x3f3f 007726 branch app_check_plap 
+:      007728 app_check_sniff:
+0x3f40 007729 fetch 1 ,mem_ui_state_map 
+0x3f41 007730 isolate1 ui_state_bt_sniff ,pdata 
+0x3f42 007731 rtn 
+:      007736 app_clearflag_store:
+0x3f43 007737 setarg 0 
+0x3f44 007738 branch app_flag_store 
+:      007739 app_initflag_store:
+0x3f45 007740 setarg eeprom_init_flag 
+:      007741 app_flag_store:
+0x3f46 007742 store 2 ,mem_timeup 
+0x3f47 007743 set1 mark_ext_patch ,mark 
+0x3f48 007744 bpatch patch3a_2 ,mem_patch3a 
+0x3f49 007745 arg 2 ,temp 
+0x3f4a 007746 arg mem_timeup ,rega 
+0x3f4b 007747 arg eeprom_module_init_flag ,regb 
+0x3f4c 007748 branch iicd_write_eep_data 
+:      007751 app_initflag_check:
+0x3f4d 007752 set1 mark_ext_patch ,mark 
+0x3f4e 007753 bpatch patch3a_3 ,mem_patch3a 
+0x3f4f 007754 arg 2 ,temp 
+0x3f50 007755 arg mem_pdatatemp ,rega 
+0x3f51 007756 arg eeprom_module_init_flag ,regb 
+0x3f52 007757 call iicd_read_eep_data 
+0x3f53 007758 fetch 2 ,mem_pdatatemp 
+0x3f54 007759 arg eeprom_init_flag ,temp 
+0x3f55 007760 isub temp ,null 
+0x3f56 007761 rtn 
+:      007764 app_start_auto_sniff:
+0x3f57 007765 fetch 1 ,mem_unsniff2sniff_timer 
+0x3f58 007766 store 1 ,mem_unsniff2sniff_timer_count 
+0x3f59 007767 rtn 
+:      007769 app_get_lpm_wake_lock:
+0x3f5a 007770 arg wake_lock_app ,queue 
+0x3f5b 007771 branch lpm_get_wake_lock 
+:      007773 app_put_lpm_wake_lock:
+0x3f5c 007774 arg wake_lock_app ,queue 
+0x3f5d 007775 branch lpm_put_wake_lock 
+:      007777 app_lpm_wake_auto_lock:
+0x3f5e 007778 jam lpm_wake_up_delay_timer ,mem_wake_up_delay_timer 
+0x3f5f 007779 branch app_get_lpm_wake_lock 
+:      007780 app_lpm_wake_auto_lock_timer:
+0x3f60 007781 fetch 1 ,mem_wake_up_delay_timer 
+0x3f61 007782 rtn blank 
+0x3f62 007783 increase -1 ,pdata 
+0x3f63 007784 store 1 ,mem_wake_up_delay_timer 
+0x3f64 007785 nrtn blank 
+0x3f65 007786 branch app_put_lpm_wake_lock 
+:      007788 app_l2cap_flow_control_enable:
+0x3f66 007789 jam l2cap_flow_ctrl_enable ,mem_l2cap_flow_ctrl_flag 
+0x3f67 007790 rtn 
+:      007792 app_l2cap_flow_control_disable:
+0x3f68 007793 jam l2cap_flow_ctrl_disable ,mem_l2cap_flow_ctrl_flag 
+0x3f69 007794 rtn 
+:      007796 app_bt_set_pincode:
+0x3f6a 007797 jam bt_cmd_set_pin_code ,mem_fifo_temp 
+0x3f6b 007798 branch ui_ipc_send_cmd 
+:      007800 app_bt_role_switch:
+0x3f6c 007801 jam bt_cmd_role_switch ,mem_fifo_temp 
+0x3f6d 007802 branch ui_ipc_send_cmd 
+:      007804 app_bt_start_reconnect:
+0x3f6e 007805 set1 mark_ext_patch ,mark 
+0x3f6f 007806 bpatch patch3a_4 ,mem_patch3a 
+0x3f70 007807 fetch 1 ,mem_app_connection_options 
+0x3f71 007808 store 1 ,mem_connection_options 
+0x3f72 007809 jam app_flag_reconnect ,mem_reconnect_flag 
+0x3f73 007810 jam bt_cmd_reconnect ,mem_fifo_temp 
+0x3f74 007811 branch ui_ipc_send_cmd 
+:      007813 app_bt_reconnect_cancel:
+0x3f75 007814 jam bt_cmd_bb_reconn_cancel ,mem_fifo_temp 
+0x3f76 007815 branch ui_ipc_send_cmd 
+:      007817 app_bt_disconnect:
+0x3f77 007818 jam bt_cmd_disconnect ,mem_fifo_temp 
+0x3f78 007819 branch ui_ipc_send_cmd 
+:      007821 app_bt_start_discovery_short:
+0x3f79 007822 fetch 2 ,mem_discovery_timeout 
+0x3f7a 007823 store 2 ,mem_discovery_timeout_timer_count 
+:      007824 app_bt_start_discovery_led_blink:
+0x3f7b 007825 call app_led_start_blink 
+:      007826 app_bt_start_discovery:
+0x3f7c 007827 jam bt_cmd_start_discovery ,mem_fifo_temp 
+0x3f7d 007828 branch ui_ipc_send_cmd 
+:      007830 app_bt_stop_discovery:
+0x3f7e 007831 setarg 0 
+0x3f7f 007832 store 2 ,mem_discovery_timeout_timer_count 
+0x3f80 007833 jam bt_cmd_stop_discovery ,mem_fifo_temp 
+0x3f81 007834 branch ui_ipc_send_cmd 
+:      007836 app_ble_start_direct_adv:
+0x3f82 007837 jam bt_cmd_start_direct_adv ,mem_fifo_temp 
+0x3f83 007838 branch ui_ipc_send_cmd 
+:      007840 app_ble_stop_direct_adv:
+0x3f84 007841 jam bt_cmd_stop_direct_adv ,mem_fifo_temp 
+0x3f85 007842 branch ui_ipc_send_cmd 
+:      007844 app_ble_stop_adv:
+0x3f86 007845 jam bt_cmd_stop_adv ,mem_fifo_temp 
+0x3f87 007846 branch ui_ipc_send_cmd 
+:      007848 app_ble_start_adv:
+0x3f88 007849 jam bt_cmd_start_adv ,mem_fifo_temp 
+0x3f89 007850 branch ui_ipc_send_cmd 
+:      007852 app_ble_start_scan:
+0x3f8a 007853 jam bt_cmd_le_start_scan ,mem_fifo_temp 
+0x3f8b 007854 branch ui_ipc_send_cmd 
+:      007856 app_ble_stop_scan:
+0x3f8c 007857 jam bt_cmd_le_stop_scan ,mem_fifo_temp 
+0x3f8d 007858 branch ui_ipc_send_cmd 
+:      007860 app_ble_start_conn:
+0x3f8e 007861 jam bt_cmd_le_start_conn ,mem_fifo_temp 
+0x3f8f 007862 branch ui_ipc_send_cmd 
+:      007864 app_ble_disconnect:
+0x3f90 007865 jam bt_cmd_le_disconnect ,mem_fifo_temp 
+0x3f91 007866 branch ui_ipc_send_cmd 
+:      007868 app_ble_start_write:
+0x3f92 007869 jam bt_cmd_le_start_write ,mem_fifo_temp 
+0x3f93 007870 branch ui_ipc_send_cmd 
+:      007872 app_led_start_blink:
+0x3f94 007873 jam bt_cmd_led_blink ,mem_fifo_temp 
+0x3f95 007874 branch ui_ipc_send_cmd 
+:      007876 app_led_on:
+0x3f96 007877 jam bt_cmd_led_on ,mem_fifo_temp 
+0x3f97 007878 branch ui_ipc_send_cmd 
+:      007880 app_led_stop_blink:
+:      007881 app_led_off:
+0x3f98 007882 jam bt_cmd_led_off ,mem_fifo_temp 
+0x3f99 007883 branch ui_ipc_send_cmd 
+:      007885 app_enter_hibernate:
+0x3f9a 007886 jam bt_cmd_enter_hibernate ,mem_fifo_temp 
+0x3f9b 007887 branch ui_ipc_send_cmd 
+:      007889 app_bt_sniff_exit:
+0x3f9c 007890 jam bt_cmd_exit_sniff ,mem_fifo_temp 
+0x3f9d 007891 branch ui_ipc_send_cmd 
+:      007893 app_bt_enter_sniff:
+0x3f9e 007894 jam bt_cmd_enter_sniff ,mem_fifo_temp 
+0x3f9f 007895 branch ui_ipc_send_cmd 
+:      007897 app_ble_store_reconn_info:
+0x3fa0 007898 jam bt_cmd_store_reconn_info_le ,mem_fifo_temp 
+0x3fa1 007899 branch ui_ipc_send_cmd 
+:      007901 app_bt_store_reconn_info:
+0x3fa2 007902 jam bt_cmd_store_reconn_info_bt ,mem_fifo_temp 
+0x3fa3 007903 branch ui_ipc_send_cmd 
+:      007905 app_lpm_mult_enable:
+0x3fa4 007906 set1 mark_lpm_mult_enable ,mark 
+0x3fa5 007907 rtn 
+:      007909 app_lpm_mult_disable:
+0x3fa6 007910 set0 mark_lpm_mult_enable ,mark 
+0x3fa7 007911 rtn 
+:      007915 at_restore_param:
+0x3fa8 007916 set1 mark_ext_patch ,mark 
+0x3fa9 007917 bpatch patch32_0 ,mem_patch32 
+0x3faa 007918 arg 32 ,temp 
+0x3fab 007919 arg mem_le_name_len ,rega 
+0x3fac 007920 arg eeprom_module_ble_name_length ,regb 
+0x3fad 007921 call iicd_read_eep_data 
+0x3fae 007924 arg 32 ,temp 
+0x3faf 007925 arg mem_local_name_length ,rega 
+0x3fb0 007926 arg eeprom_module_bt_name_length ,regb 
+0x3fb1 007927 call iicd_read_eep_data 
+0x3fb2 007929 arg 6 ,temp 
+0x3fb3 007930 arg mem_lap ,rega 
+0x3fb4 007931 arg eeprom_module_bt_adss ,regb 
+0x3fb5 007932 call iicd_read_eep_data 
+0x3fb6 007934 arg 6 ,temp 
+0x3fb7 007935 arg mem_le_lap ,rega 
+0x3fb8 007936 arg eeprom_module_le_adss ,regb 
+0x3fb9 007937 call iicd_read_eep_data 
+0x3fba 007938 call le_modified_name 
+0x3fbb 007940 arg 2 ,temp 
+0x3fbc 007941 arg mem_baud ,rega 
+0x3fbd 007942 arg eeprom_module_trans_baud ,regb 
+0x3fbe 007943 call iicd_read_eep_data 
+0x3fbf 007944 call uart_set_baud_by_mem 
+0x3fc0 007946 branch at_restore_pin_code 
+:      007948 at_restore_pin_code:
+0x3fc1 007949 arg 14 ,temp 
+0x3fc2 007950 arg mem_pin_length ,rega 
+0x3fc3 007951 arg eeprom_module_pincode_length ,regb 
+0x3fc4 007952 branch iicd_read_eep_data 
+:      007954 init_module_environment:
+0x3fc5 007955 set1 mark_ext_patch ,mark 
+0x3fc6 007956 bpatch patch32_1 ,mem_patch32 
+0x3fc7 007957 call app_initflag_check 
+0x3fc8 007958 branch at_restore_param ,zero 
+:      007959 init_module_eeprom:
+0x3fc9 007960 call at_store_bt_name 
+0x3fca 007961 call at_store_le_name 
+0x3fcb 007962 call le_modified_name 
+0x3fcc 007963 call at_store_le_adss 
+0x3fcd 007964 call at_store_bt_adss 
+0x3fce 007965 call pincode_reinit 
+0x3fcf 007966 call at_store_bt_pincode 
+0x3fd0 007967 call at_store_throughput_uart_baud115200 
+0x3fd1 007968 branch app_initflag_store 
+:      007970 at_store_bt_name:
+0x3fd2 007971 fetcht 1 ,mem_local_name_length 
+0x3fd3 007972 increase 1 ,temp 
+0x3fd4 007973 arg mem_local_name_length ,rega 
+0x3fd5 007974 arg eeprom_module_bt_name_length ,regb 
+0x3fd6 007975 branch iicd_write_eep_data 
+:      007977 at_store_le_name:
+0x3fd7 007978 fetcht 1 ,mem_le_name_len 
+0x3fd8 007979 increase 1 ,temp 
+0x3fd9 007980 arg mem_le_name_len ,rega 
+0x3fda 007981 arg eeprom_module_ble_name_length ,regb 
+0x3fdb 007982 branch iicd_write_eep_data 
+:      007984 at_store_le_adss:
+0x3fdc 007985 arg 6 ,temp 
+0x3fdd 007986 arg mem_le_lap ,rega 
+0x3fde 007987 arg eeprom_module_le_adss ,regb 
+0x3fdf 007988 branch iicd_write_eep_data 
+:      007990 at_store_bt_adss:
+0x3fe0 007991 arg 6 ,temp 
+0x3fe1 007992 arg mem_lap ,rega 
+0x3fe2 007993 arg eeprom_module_bt_adss ,regb 
+0x3fe3 007994 branch iicd_write_eep_data 
+:      007996 at_store_bt_pincode:
+0x3fe4 007997 fetcht 1 ,mem_pin_length 
+0x3fe5 007998 increase 1 ,temp 
+0x3fe6 007999 arg mem_pin_length ,rega 
+0x3fe7 008000 arg eeprom_module_pincode_length ,regb 
+0x3fe8 008001 branch iicd_write_eep_data 
+:      008003 at_store_throughput_uart_baud115200:
+0x3fe9 008004 setarg at_baud_115200 
+0x3fea 008005 store 2 ,mem_timeup 
+:      008006 at_store_throughput_uart_baud:
+0x3feb 008007 arg 2 ,temp 
+0x3fec 008008 arg mem_timeup ,rega 
+0x3fed 008009 arg eeprom_module_trans_baud ,regb 
+0x3fee 008010 branch iicd_write_eep_data 
+:      008013 at_process:
+0x3fef 008014 set1 mark_ext_patch ,mark 
+0x3ff0 008015 bpatch patch32_2 ,mem_patch32 
+0x3ff1 008016 fetch 2 ,mem_current_packet_length 
+0x3ff2 008017 arg 300 ,temp 
+0x3ff3 008018 isub temp ,null 
+0x3ff4 008019 branch at_error_rev_end ,positive 
+0x3ff5 008020 call check_module_disabled 
+0x3ff6 008021 call get_uart_rrptr 
+0x3ff7 008022 copy contru ,rega 
+0x3ff8 008023 fetch 2 ,mem_current_packet_length 
+0x3ff9 008024 increase -2 ,pdata 
+0x3ffa 008025 iadd contru ,contru 
+0x3ffb 008026 ifetch 2 ,contru 
+0x3ffc 008027 arg at_cmd_end ,temp 
+0x3ffd 008028 isub temp ,null 
+0x3ffe 008029 nrtn zero 
+0x3fff 008030 copy rega ,contru 
+0x4000 008031 arg mem_prarm_atp ,regb 
+0x4001 008032 arg 3 ,loopcnt 
+0x4002 008033 call string_compare_uart_follow 
+0x4003 008034 nbranch at_error_rev_end ,true 
+0x4004 008035 branch at_dispatch 
+:      008037 at_dispatch:
+0x4005 008038 set1 mark_ext_patch ,mark 
+0x4006 008039 bpatch patch32_3 ,mem_patch32 
+0x4007 008041 copy contru ,rega 
+0x4008 008042 arg mem_prarm_name ,regb 
+0x4009 008043 force 4 ,loopcnt 
+0x400a 008044 call string_compare_uart_follow 
+0x400b 008045 branch at_rev_name ,true 
+0x400c 008047 arg mem_prarm_blename ,regb 
+0x400d 008048 force 7 ,loopcnt 
+0x400e 008049 call string_compare_uart_follow 
+0x400f 008050 branch at_rev_le_name ,true 
+0x4010 008052 arg mem_prarm_adss ,regb 
+0x4011 008053 force 4 ,loopcnt 
+0x4012 008054 call string_compare_uart_follow 
+0x4013 008055 branch at_rev_adss ,true 
+0x4014 008057 arg mem_prarm_bleadss ,regb 
+0x4015 008058 force 7 ,loopcnt 
+0x4016 008059 call string_compare_uart_follow 
+0x4017 008060 branch at_rev_leadss ,true 
+0x4018 008062 arg mem_prarm_vers ,regb 
+0x4019 008063 force 4 ,loopcnt 
+0x401a 008064 call string_compare_uart_follow 
+0x401b 008065 branch at_rev_vers ,true 
+0x401c 008067 arg mem_prarm_uart ,regb 
+0x401d 008068 force 4 ,loopcnt 
+0x401e 008069 call string_compare_uart_follow 
+0x401f 008070 branch at_rev_uart ,true 
+0x4020 008072 arg mem_prarm_pswd ,regb 
+0x4021 008073 force 4 ,loopcnt 
+0x4022 008074 call string_compare_uart_follow 
+0x4023 008075 branch at_rev_pswd ,true 
+0x4024 008077 arg mem_prarm_class ,regb 
+0x4025 008078 force 5 ,loopcnt 
+0x4026 008079 call string_compare_uart_follow 
+0x4027 008080 branch at_rev_class ,true 
+0x4028 008082 arg mem_prarm_list ,regb 
+0x4029 008083 force 4 ,loopcnt 
+0x402a 008084 call string_compare_uart_follow 
+0x402b 008085 branch at_rev_list ,true 
+0x402c 008087 arg mem_prarm_role ,regb 
+0x402d 008088 force 4 ,loopcnt 
+0x402e 008089 call string_compare_uart_follow 
+0x402f 008090 branch at_rev_role ,true 
+0x4030 008092 arg mem_prarm_sniff ,regb 
+0x4031 008093 force 5 ,loopcnt 
+0x4032 008094 call string_compare_uart_follow 
+0x4033 008095 branch at_rev_sniff ,true 
+0x4034 008097 arg mem_prarm_ldev ,regb 
+0x4035 008098 force 4 ,loopcnt 
+0x4036 008099 call string_compare_uart_follow 
+0x4037 008100 branch at_rev_ldev ,true 
+0x4038 008102 arg mem_prarm_rssi ,regb 
+0x4039 008103 force 4 ,loopcnt 
+0x403a 008104 call string_compare_uart_follow 
+0x403b 008105 branch at_rev_rssi ,true 
+0x403c 008107 arg mem_prarm_cdev ,regb 
+0x403d 008108 force 4 ,loopcnt 
+0x403e 008109 call string_compare_uart_follow 
+0x403f 008110 branch at_rev_cdev ,true 
+0x4040 008112 arg mem_prarm_inqr ,regb 
+0x4041 008113 force 4 ,loopcnt 
+0x4042 008114 call string_compare_uart_follow 
+0x4043 008115 branch at_rev_inqr ,true 
+0x4044 008117 arg mem_prarm_bleinqr ,regb 
+0x4045 008118 force 7 ,loopcnt 
+0x4046 008119 call string_compare_uart_follow 
+0x4047 008120 branch at_rev_leinqr ,true 
+0x4048 008122 arg mem_prarm_cmode ,regb 
+0x4049 008123 force 5 ,loopcnt 
+0x404a 008124 call string_compare_uart_follow 
+0x404b 008125 branch at_rev_cmode ,true 
+0x404c 008127 arg mem_prarm_mode ,regb 
+0x404d 008128 force 4 ,loopcnt 
+0x404e 008129 call string_compare_uart_follow 
+0x404f 008130 branch at_rev_mode ,true 
+0x4050 008132 arg mem_prarm_dmstate ,regb 
+0x4051 008133 force 7 ,loopcnt 
+0x4052 008134 call string_compare_uart_follow 
+0x4053 008135 branch at_rev_dmstate ,true 
+0x4054 008137 arg mem_prarm_reconn ,regb 
+0x4055 008138 force 6 ,loopcnt 
+0x4056 008139 call string_compare_uart_follow 
+0x4057 008140 branch at_rev_reconn ,true 
+0x4058 008142 arg mem_prarm_discov ,regb 
+0x4059 008143 force 6 ,loopcnt 
+0x405a 008144 call string_compare_uart_follow 
+0x405b 008145 branch at_rev_discov ,true 
+0x405c 008147 arg mem_prarm_dis ,regb 
+0x405d 008148 force 3 ,loopcnt 
+0x405e 008149 call string_compare_uart_follow 
+0x405f 008150 branch at_rev_dis ,true 
+0x4060 008152 arg mem_prarm_stsn ,regb 
+0x4061 008153 force 4 ,loopcnt 
+0x4062 008154 call string_compare_uart_follow 
+0x4063 008155 branch at_rev_stsn ,true 
+0x4064 008157 arg mem_prarm_clrflg ,regb 
+0x4065 008158 force 6 ,loopcnt 
+0x4066 008159 call string_compare_uart_follow 
+0x4067 008160 branch at_rev_clrflg ,true 
+0x4068 008162 arg mem_prarm_ota ,regb 
+0x4069 008163 force 3 ,loopcnt 
+0x406a 008164 call string_compare_uart_follow 
+0x406b 008165 branch at_rev_ota ,true 
+0x406c 008166 branch at_error_rev_end 
+:      008169 at_rev_name:
+0x406d 008170 ifetch 1 ,contru 
+0x406e 008171 beq at_ques ,at_rev_name_inquiry 
+0x406f 008172 beq at_equ ,at_rev_name_set 
+0x4070 008173 branch at_error_rev_end 
+:      008174 at_rev_name_inquiry:
+0x4071 008175 call get_uart_twptr 
+0x4072 008176 call at_group_name_inquiry 
+0x4073 008177 branch at_nomal_rev_end 
+:      008180 at_rev_le_name:
+0x4074 008181 ifetch 1 ,contru 
+0x4075 008182 beq at_ques ,at_rev_le_name_inquiry 
+0x4076 008183 beq at_equ ,at_rev_le_name_set 
+0x4077 008184 branch at_error_rev_end 
+:      008185 at_rev_le_name_inquiry:
+0x4078 008186 call get_uart_twptr 
+0x4079 008187 call at_group_le_name_inquiry 
+0x407a 008188 branch at_nomal_rev_end 
+:      008190 at_rev_adss:
+0x407b 008191 ifetch 1 ,contru 
+0x407c 008192 beq at_ques ,at_rev_adss_inquiry 
+0x407d 008193 beq at_equ ,at_rev_adss_set 
+0x407e 008194 branch at_error_rev_end 
+:      008195 at_rev_adss_inquiry:
+0x407f 008196 call at_group_adss_inquiry 
+0x4080 008197 branch at_nomal_rev_end 
+:      008199 at_rev_leadss:
+0x4081 008200 ifetch 1 ,contru 
+0x4082 008201 beq at_ques ,at_rev_leadss_inquiry 
+0x4083 008202 beq at_equ ,at_rev_leadss_set 
+0x4084 008203 branch at_error_rev_end 
+:      008204 at_rev_leadss_inquiry:
+0x4085 008206 call at_group_leadss_inquiry 
+0x4086 008207 branch at_nomal_rev_end 
+:      008209 at_rev_vers:
+0x4087 008210 ifetch 1 ,contru 
+0x4088 008211 beq at_ques ,at_rev_vers_inquiry 
+0x4089 008212 branch at_error_rev_end 
+:      008213 at_rev_vers_inquiry:
+0x408a 008214 call at_group_version_inquiry 
+0x408b 008215 branch at_nomal_rev_end 
+:      008218 at_rev_uart:
+0x408c 008219 ifetch 1 ,contru 
+0x408d 008220 beq at_equ ,at_rev_uart_set 
+0x408e 008221 branch at_error_rev_end 
+:      008224 at_rev_pswd:
+0x408f 008225 ifetch 1 ,contru 
+0x4090 008226 beq at_ques ,at_rev_pswd_inquiry 
+0x4091 008227 beq at_equ ,at_rev_pswd_set 
+0x4092 008228 branch at_error_rev_end 
+:      008229 at_rev_pswd_inquiry:
+0x4093 008230 call at_group_pswd_inquiry 
+0x4094 008231 branch at_nomal_rev_end 
+:      008233 at_rev_class:
+0x4095 008234 ifetch 1 ,contru 
+0x4096 008235 beq at_ques ,at_rev_class_inquiry 
+0x4097 008236 beq at_equ ,at_rev_class_set 
+0x4098 008237 branch at_error_rev_end 
+:      008238 at_rev_class_inquiry:
+0x4099 008239 call at_group_class_inquiry 
+0x409a 008240 branch at_nomal_rev_end 
+:      008242 at_rev_list:
+0x409b 008243 ifetch 1 ,contru 
+0x409c 008244 beq at_ques ,at_rev_list_inquiry 
+0x409d 008245 beq at_equ ,at_rev_list_set 
+0x409e 008246 branch at_error_rev_end 
+:      008247 at_rev_list_inquiry:
+0x409f 008248 call at_group_list_inquiry 
+0x40a0 008249 branch at_nomal_rev_end 
+:      008251 at_rev_role:
+0x40a1 008252 ifetch 1 ,contru 
+0x40a2 008253 beq at_ques ,at_rev_role_inquiry 
+0x40a3 008254 beq at_equ ,at_rev_role_set 
+0x40a4 008255 branch at_error_rev_end 
+:      008258 at_rev_sniff:
+0x40a5 008259 ifetch 1 ,contru 
+0x40a6 008260 beq at_ques ,at_rev_sniff_inquiry 
+0x40a7 008261 beq at_equ ,at_rev_sniff_set 
+0x40a8 008262 branch at_error_rev_end 
+:      008263 at_rev_sniff_inquiry:
+0x40a9 008264 call at_group_sniff_inquiry 
+0x40aa 008265 branch at_nomal_rev_end 
+:      008267 at_rev_ldev:
+0x40ab 008268 ifetch 1 ,contru 
+0x40ac 008269 beq at_ques ,at_rev_ldev_inquiry 
+0x40ad 008270 branch at_error_rev_end 
+:      008271 at_rev_ldev_inquiry:
+0x40ae 008272 call at_group_ldev_inquiry 
+0x40af 008273 branch at_nomal_rev_end 
+:      008275 at_rev_rssi:
+0x40b0 008276 ifetch 1 ,contru 
+0x40b1 008277 beq at_ques ,at_rev_rssi_inquiry 
+0x40b2 008278 branch at_nomal_rev_end 
+:      008279 at_rev_rssi_inquiry:
+0x40b3 008280 call context_check_idle 
+0x40b4 008281 nbranch at_error_rev_end ,zero 
+0x40b5 008282 call at_group_rssi_inquiry 
+0x40b6 008283 branch at_nomal_rev_end 
+:      008285 at_rev_cdev:
+0x40b7 008286 ifetch 1 ,contru 
+0x40b8 008287 beq at_ques ,at_rev_cdev_inquiry 
+0x40b9 008288 branch at_error_rev_end 
+:      008289 at_rev_cdev_inquiry:
+0x40ba 008290 fetch 1 ,mem_context 
+0x40bb 008291 bbit0 state_inconn ,at_error_rev_end 
+0x40bc 008292 call get_uart_twptr 
+0x40bd 008293 fetch 1 ,mem_context + coffset_mode 
+0x40be 008294 bbit1 mode_le ,le_cdev_inquiry 
+0x40bf 008295 branch at_cdev_unle_inq 
+:      008296 le_cdev_inquiry:
+0x40c0 008297 arg mem_prarm_cdev ,rega 
+0x40c1 008298 arg 4 ,loopcnt 
+0x40c2 008299 call at_group_inquiryhead_common 
+0x40c3 008300 call at_rev_uart_write_62 
+0x40c4 008301 setarg 0x34 
+0x40c5 008302 istore 1 ,contwu 
+0x40c6 008303 call at_rev_uart_write_44 
+0x40c7 008304 arg mem_le_plap ,rega 
+0x40c8 008305 call adss_hex2string_to_uart 
+0x40c9 008306 call uartd_send 
+0x40ca 008307 branch at_nomal_rev_end 
+:      008308 at_cdev_unle_inq:
+0x40cb 008309 arg mem_prarm_cdev ,rega 
+0x40cc 008310 arg 4 ,loopcnt 
+0x40cd 008311 call at_group_inquiryhead_common 
+0x40ce 008312 call at_rev_uart_write_62 
+0x40cf 008313 setarg 0x33 
+0x40d0 008314 istore 1 ,contwu 
+0x40d1 008315 call at_rev_uart_write_44 
+0x40d2 008316 arg mem_plap ,rega 
+0x40d3 008317 call adss_hex2string_to_uart 
+0x40d4 008318 call uartd_send 
+0x40d5 008319 branch at_nomal_rev_end 
+:      008322 at_rev_inqr:
+0x40d6 008323 set1 mark_ext_patch ,mark 
+0x40d7 008324 bpatch patch32_4 ,mem_patch32 
+0x40d8 008325 call app_check_conn_device_nums_addr 
+0x40d9 008326 fetch 1 ,mem_device_nums 
+0x40da 008327 bne 0 ,at_error_rev_end 
+0x40db 008328 call do_at_inquiry 
+0x40dc 008329 branch at_nomal_rev_end 
+:      008331 at_rev_leinqr:
+0x40dd 008332 set1 mark_ext_patch ,mark 
+0x40de 008333 bpatch patch32_5 ,mem_patch32 
+0x40df 008334 call do_at_leinquiry 
+0x40e0 008335 branch at_nomal_rev_end 
+:      008337 at_rev_role_inquiry:
+0x40e1 008338 arg mem_prarm_role ,rega 
+0x40e2 008339 arg 4 ,loopcnt 
+0x40e3 008340 call at_group_inquiryhead_common 
+0x40e4 008341 call context_check_idle 
+0x40e5 008342 nbranch at_rev_uart_write_n ,zero 
+0x40e6 008343 fetch 1 ,mem_context + coffset_mode 
+0x40e7 008344 bbit1 mode_master ,at_rev_uart_write_m 
+0x40e8 008345 call at_rev_uart_write_s 
+0x40e9 008346 call uartd_send 
+0x40ea 008347 branch at_nomal_rev_end 
+:      008348 at_rev_uart_write_m:
+0x40eb 008349 setarg 0x4d 
+0x40ec 008350 istore 1 ,contwu 
+0x40ed 008351 call uartd_send 
+0x40ee 008352 branch at_nomal_rev_end 
+:      008353 at_rev_uart_write_s:
+0x40ef 008354 setarg 0x53 
+0x40f0 008355 istore 1 ,contwu 
+0x40f1 008356 rtn 
+:      008358 at_rev_cmode:
+0x40f2 008359 ifetch 1 ,contru 
+0x40f3 008360 beq at_ques ,at_rev_cmode_inquiry 
+0x40f4 008361 beq at_equ ,at_rev_cmode_set 
+0x40f5 008362 branch at_error_rev_end 
+:      008363 at_rev_cmode_inquiry:
+0x40f6 008364 call at_group_cmode_inquiry 
+0x40f7 008365 branch at_nomal_rev_end 
+:      008367 at_rev_mode:
+0x40f8 008368 ifetch 1 ,contru 
+0x40f9 008369 beq at_equ ,at_rev_mode_set 
+0x40fa 008370 branch at_error_rev_end 
+:      008372 at_rev_dmstate:
+0x40fb 008373 ifetch 1 ,contru 
+0x40fc 008374 beq at_ques ,at_rev_dmstate_inquiry 
+0x40fd 008375 branch at_error_rev_end 
+:      008376 at_rev_dmstate_inquiry:
+0x40fe 008377 call at_group_dmstate_inquiry 
+0x40ff 008378 branch at_nomal_rev_end 
+:      008380 at_rev_reconn:
+0x4100 008381 fetch 1 ,mem_app_connection_options 
+0x4101 008382 store 1 ,mem_connection_options 
+0x4102 008383 call eeprom_load_reconn_info 
+0x4103 008384 call app_check_conn_device_nums_addr 
+0x4104 008385 fetch 1 ,mem_device_nums 
+0x4105 008386 bne 0 ,at_error_rev_end 
+0x4106 008387 fetch 1 ,mem_xrecord_mode 
+0x4107 008388 beq rec_3_mode ,at_rev_unle_reconn 
+0x4108 008389 beq rec_4_mode ,at_rev_lereconn 
+0x4109 008390 branch at_error_rev_end 
+:      008392 at_rev_lereconn:
+0x410a 008393 call app_ble_start_direct_adv 
+0x410b 008394 branch at_nomal_rev_end 
+:      008395 at_rev_unle_reconn:
+0x410c 008396 call app_bt_start_reconnect 
+0x410d 008397 branch at_nomal_rev_end 
+:      008399 at_rev_dis:
+0x410e 008400 call app_check_conn_device_nums_addr 
+0x410f 008401 fetch 1 ,mem_device_nums 
+0x4110 008402 bne 1 ,at_error_rev_end 
+0x4111 008403 fetch 1 ,mem_context + coffset_mode 
+0x4112 008404 bbit1 mode_le ,at_rev_ledis 
+0x4113 008405 call app_bt_disconnect 
+0x4114 008406 branch at_nomal_rev_end 
+:      008409 at_rev_ledis:
+0x4115 008410 call app_ble_disconnect 
+0x4116 008411 branch at_nomal_rev_end 
+:      008414 at_rev_stsn:
+0x4117 008415 ifetch 1 ,contru 
+0x4118 008416 beq at_equ ,at_rev_stsn_set 
+0x4119 008417 branch at_error_rev_end 
+:      008418 at_rev_stsn_set:
+0x411a 008419 ifetch 1 ,contru 
+0x411b 008420 beq 0x31 ,at_exit_sniff 
+0x411c 008421 beq 0x30 ,at_enter_sniff 
+0x411d 008422 branch at_error_rev_end 
+:      008423 at_enter_sniff:
+0x411e 008424 call app_check_sniff 
+0x411f 008425 branch at_nomal_rev_end ,true 
+0x4120 008426 call app_bt_enter_sniff 
+0x4121 008427 branch at_nomal_rev_end 
+:      008428 at_exit_sniff:
+0x4122 008429 call app_check_sniff 
+0x4123 008430 nbranch at_nomal_rev_end ,true 
+0x4124 008431 call module_exit_sniff 
+0x4125 008432 call at_set_cmd_task_flag 
+0x4126 008433 branch at_nomal_rev_end 
+:      008436 at_rev_clrflg:
+0x4127 008437 call app_clearflag_store 
+0x4128 008438 branch at_nomal_rev_end 
+:      008440 at_rev_ota:
+0x4129 008441 ifetch 1 ,contru 
+0x412a 008442 beq at_equ ,at_rev_ota_process 
+0x412b 008443 branch at_error_rev_end 
+:      008445 at_rev_discov:
+0x412c 008446 call app_check_conn_device_nums_addr 
+0x412d 008447 fetch 1 ,mem_device_nums 
+0x412e 008448 bne 0 ,at_error_rev_end 
+0x412f 008449 call module_disconn_start 
+0x4130 008450 branch at_nomal_rev_end 
+:      008456 at_rev_name_set:
+0x4131 008457 arg mem_local_name ,rega 
+0x4132 008458 call at_set_common 
+0x4133 008459 storet 1 ,mem_local_name_length 
+0x4134 008460 call at_store_bt_name 
+0x4135 008461 branch at_nomal_rev_end 
+:      008463 at_rev_le_name_set:
+0x4136 008464 arg mem_le_name ,rega 
+0x4137 008465 call at_set_common 
+0x4138 008466 storet 1 ,mem_le_name_len 
+0x4139 008467 call at_store_le_name 
+0x413a 008468 call le_modified_name 
+0x413b 008469 branch at_nomal_rev_end 
+:      008471 at_rev_adss_set:
+0x413c 008472 arg mem_lap ,contw 
+0x413d 008473 call adss_string2hex_from_uart 
+0x413e 008474 call at_store_bt_adss 
+0x413f 008475 branch at_nomal_rev_end 
+:      008477 at_rev_leadss_set:
+0x4140 008478 arg mem_le_lap ,contw 
+0x4141 008479 call adss_string2hex_from_uart 
+0x4142 008480 call at_store_le_adss 
+0x4143 008481 branch at_nomal_rev_end 
+:      008483 at_rev_pswd_set:
+0x4144 008484 arg mem_pin ,rega 
+0x4145 008485 call at_set_common 
+0x4146 008486 storet 1 ,mem_pin_length 
+0x4147 008487 call at_store_bt_pincode 
+0x4148 008488 branch at_nomal_rev_end 
+:      008490 at_rev_uart_set:
+0x4149 008491 call string2dec_from_uart 
+0x414a 008492 setarg uart_clk 
+0x414b 008493 idiv temp 
+0x414c 008494 call wait_div_end 
+0x414d 008495 quotient pdata 
+0x414e 008496 store 2 ,mem_timeup 
+0x414f 008497 call at_store_throughput_uart_baud 
+0x4150 008498 branch at_nomal_rev_end 
+:      008500 at_rev_mode_set:
+0x4151 008501 ifetch 1 ,contru 
+0x4152 008502 sub pdata ,0x33 ,null 
+0x4153 008503 nbranch at_error_rev_end ,positive 
+0x4154 008504 and pdata ,0x3 ,pdata 
+0x4155 008505 store 1 ,mem_module_state 
+0x4156 008506 branch at_nomal_rev_end 
+:      008508 at_rev_class_set:
+0x4157 008509 ifetch 3 ,contru 
+0x4158 008510 store 3 ,mem_class 
+0x4159 008511 branch at_nomal_rev_end 
+:      008513 at_rev_role_set:
+0x415a 008514 call context_check_idle 
+0x415b 008515 nbranch at_error_rev_end ,zero 
+0x415c 008516 ifetch 1 ,contru 
+0x415d 008517 beq 0x53 ,at_role_slave 
+0x415e 008518 beq 0x4D ,at_role_master 
+0x415f 008519 branch at_error_rev_end 
+:      008521 at_role_slave:
+0x4160 008522 fetch 1 ,mem_context + coffset_mode 
+0x4161 008523 bbit1 mode_master ,at_switch_role 
+0x4162 008524 branch at_error_rev_end 
+:      008526 at_role_master:
+0x4163 008527 fetch 1 ,mem_context + coffset_mode 
+0x4164 008528 bbit0 mode_master ,at_switch_role 
+0x4165 008529 branch at_error_rev_end 
+:      008531 at_switch_role:
+0x4166 008532 fetch 1 ,mem_module_task 
+0x4167 008533 set1 at_task_switch ,pdata 
+0x4168 008534 store 1 ,mem_module_task 
+0x4169 008535 jam hci_cmd_role_switch ,mem_hci_cmd 
+0x416a 008536 branch at_rev_end 
+:      008538 at_rev_sniff_set:
+0x416b 008539 arg mem_sniff_param_interval ,contw 
+0x416c 008540 call mem2_string2hex_from_uart 
+0x416d 008541 arg mem_sniff_param_attempt ,contw 
+0x416e 008542 call mem2_string2hex_from_uart 
+0x416f 008543 arg mem_sniff_param_timeout ,contw 
+0x4170 008544 call mem2_string2hex_from_uart 
+0x4171 008545 branch at_nomal_rev_end 
+:      008547 at_rev_list_set:
+0x4172 008548 ifetch 1 ,contru 
+0x4173 008549 beq 0x31 ,at_rev_list_set_1 
+0x4174 008550 beq 0x32 ,at_rev_list_set_2 
+0x4175 008551 branch at_error_rev_end 
+:      008552 at_rev_list_set_1:
+0x4176 008553 ifetch 1 ,contru 
+0x4177 008554 arg mem_temp_lap ,contw 
+0x4178 008555 call adss_string2hex_from_uart 
+0x4179 008556 call eeprom_clear_bd_reconn_info 
+0x417a 008557 nrtn user 
+0x417b 008558 branch at_nomal_rev_end 
+:      008559 at_rev_list_set_2:
+0x417c 008560 call eeprom_clear_all_reconn_info 
+0x417d 008561 branch at_nomal_rev_end 
+:      008563 at_rev_cmode_set:
+0x417e 008564 ifetch 1 ,contru 
+0x417f 008565 fetcht 1 ,mem_module_state 
+0x4180 008566 nsetflag blank ,at_state_cmode ,temp 
+0x4181 008567 storet 1 ,mem_module_state 
+0x4182 008568 branch at_nomal_rev_end ,blank 
+0x4183 008569 ifetch 1 ,contru 
+0x4184 008570 arg mem_cmode_addr ,contw 
+0x4185 008571 call adss_string2hex_from_uart 
+0x4186 008572 branch at_nomal_rev_end 
+:      008574 at_rev_ota_process:
+0x4187 008575 set1 mark_ext_patch ,mark 
+0x4188 008576 bpatch patch32_6 ,mem_patch32 
+0x4189 008577 arg 20 ,loopcnt 
+0x418a 008578 arg mem_l2cap_rxbuff1 ,contw 
+0x418b 008579 call uart_copy_rx_bytes 
+0x418c 008580 arg mem_l2cap_rxbuff1 ,rega 
+0x418d 008581 fetch 1 ,mem_l2cap_rxbuff1 
+0x418e 008582 compare ota_write_req ,pdata ,0xff 
+0x418f 008583 call prcp_parse_ota_write_req ,true 
+0x4190 008584 fetch 1 ,mem_l2cap_rxbuff1 
+0x4191 008585 compare ota_end_cmd ,pdata ,0xff 
+0x4192 008586 call prcp_parse_ota_end_cmd ,true 
+0x4193 008587 branch at_nomal_rev_end 
+:      008592 at_group_name_inquiry:
+0x4194 008593 arg mem_prarm_name ,rega 
+0x4195 008594 arg 4 ,loopcnt 
+0x4196 008595 call at_group_inquiryhead_common 
+0x4197 008596 fetch 1 ,mem_local_name_length 
+0x4198 008597 copy pdata ,loopcnt 
+0x4199 008598 arg mem_local_name ,contr 
+0x419a 008599 branch send_mem_to_uart0 
+:      008600 at_group_le_name_inquiry:
+0x419b 008601 arg mem_prarm_blename ,rega 
+0x419c 008602 force 7 ,loopcnt 
+0x419d 008603 call at_group_inquiryhead_common 
+0x419e 008604 call le_get_device_name 
+0x419f 008605 ifetch 1 ,contr 
+0x41a0 008606 copy pdata ,loopcnt 
+0x41a1 008607 branch send_mem_to_uart0 
+:      008610 at_group_adss_inquiry:
+0x41a2 008611 arg mem_prarm_adss ,rega 
+0x41a3 008612 arg 4 ,loopcnt 
+0x41a4 008613 call at_group_inquiryhead_common 
+0x41a5 008614 arg mem_lap ,rega 
+0x41a6 008615 call adss_hex2string_to_uart 
+0x41a7 008616 branch uartd_send 
+:      008617 at_group_leadss_inquiry:
+0x41a8 008618 arg mem_prarm_bleadss ,rega 
+0x41a9 008619 arg 7 ,loopcnt 
+0x41aa 008620 call at_group_inquiryhead_common 
+0x41ab 008621 arg mem_le_lap ,rega 
+0x41ac 008622 call adss_hex2string_to_uart 
+0x41ad 008623 branch uartd_send 
+:      008626 at_group_version_inquiry:
+0x41ae 008627 arg mem_prarm_vers ,rega 
+0x41af 008628 arg 4 ,loopcnt 
+0x41b0 008629 call at_group_inquiryhead_common 
+0x41b1 008630 arg 6 ,loopcnt 
+0x41b2 008631 arg mem_module_version ,contr 
+0x41b3 008632 branch send_mem_to_uart0 
+:      008634 at_group_class_inquiry:
+0x41b4 008635 arg mem_prarm_class ,rega 
+0x41b5 008636 arg 5 ,loopcnt 
+0x41b6 008637 call at_group_inquiryhead_common 
+0x41b7 008638 arg 3 ,loopcnt 
+0x41b8 008639 arg mem_class ,contr 
+0x41b9 008640 branch send_mem_to_uart0 
+:      008642 at_group_list_inquiry:
+0x41ba 008643 arg mem_prarm_list ,rega 
+0x41bb 008644 arg 4 ,loopcnt 
+0x41bc 008645 call at_group_inquiryhead_common 
+0x41bd 008646 call eeprom_load_bdaddr_list 
+0x41be 008647 call at_group_list_reply 
+0x41bf 008648 branch uartd_send 
+:      008651 at_group_ldev_inquiry:
+0x41c0 008652 call eeprom_load_reconn_bdaddr 
+0x41c1 008653 arg mem_prarm_ldev ,rega 
+0x41c2 008654 arg 4 ,loopcnt 
+0x41c3 008655 call at_group_inquiryhead_common 
+0x41c4 008656 fetch 1 ,mem_record_bt_mode 
+0x41c5 008657 beq rec_3_mode ,at_group_ldev_inquiry0 
+0x41c6 008658 beq rec_4_mode ,at_group_ldev_inquiry0 
+0x41c7 008659 branch uartd_send 
+:      008660 at_group_ldev_inquiry0:
+0x41c8 008661 istore 1 ,contwu 
+0x41c9 008662 call at_rev_uart_write_44 
+0x41ca 008663 arg mem_temp_lap ,rega 
+0x41cb 008664 call adss_hex2string_to_uart 
+0x41cc 008665 branch uartd_send 
+:      008667 at_group_rssi_inquiry:
+0x41cd 008668 set1 mark_ext_patch ,mark 
+0x41ce 008669 bpatch patch32_7 ,mem_patch32 
+0x41cf 008670 arg mem_prarm_rssi ,rega 
+0x41d0 008671 arg 4 ,loopcnt 
+0x41d1 008672 call at_group_inquiryhead_common 
+0x41d2 008673 call at_rssi_result 
+0x41d3 008674 branch uartd_send 
+:      008675 at_rssi_result:
+0x41d4 008676 arg mem_rssi ,rega 
+0x41d5 008677 arg 1 ,loopcnt 
+0x41d6 008678 branch hex2string_to_uart0 
+:      008680 at_group_cdev_inquiry:
+0x41d7 008681 rtn 
+:      008684 at_group_cmode_inquiry:
+0x41d8 008685 arg mem_prarm_cmode ,rega 
+0x41d9 008686 arg 5 ,loopcnt 
+0x41da 008687 call at_group_inquiryhead_common 
+0x41db 008688 arg mem_cmode_addr ,rega 
+0x41dc 008689 call adss_hex2string_to_uart 
+0x41dd 008690 branch uartd_send 
+:      008693 at_group_dmstate_inquiry:
+0x41de 008694 arg mem_prarm_dmstate ,rega 
+0x41df 008695 arg 7 ,loopcnt 
+0x41e0 008696 call at_group_inquiryhead_common 
+0x41e1 008697 fetch 1 ,mem_module_state 
+0x41e2 008698 copy pdata ,rega 
+0x41e3 008699 fetch 1 ,mem_context 
+0x41e4 008700 isolate1 state_inconn ,pdata 
+0x41e5 008701 setflag true ,at_state_isconn ,rega 
+0x41e6 008702 isolate1 state_insniff ,pdata 
+0x41e7 008703 setflag true ,at_state_sniff ,rega 
+0x41e8 008704 fetch 1 ,mem_context + coffset_mode 
+0x41e9 008705 isolate1 mode_master ,pdata 
+0x41ea 008706 setflag true ,at_state_role ,rega 
+0x41eb 008707 isolate1 mode_le ,pdata 
+0x41ec 008708 setflag true ,at_state_le ,rega 
+0x41ed 008709 copy rega ,pdata 
+0x41ee 008710 istore 1 ,contwu 
+0x41ef 008711 branch uartd_send 
+:      008713 do_at_inquiry:
+0x41f0 008714 setarg param_glap 
+0x41f1 008715 store 3 ,mem_glap 
+0x41f2 008716 fetch 1 ,mem_at_using_flag 
+0x41f3 008717 set1 at_flag_inq ,pdata 
+0x41f4 008718 store 1 ,mem_at_using_flag 
+0x41f5 008719 branch do_at_inquiry0 
+:      008721 do_at_leinquiry:
+0x41f6 008722 call app_check_conn_device_nums_addr 
+0x41f7 008723 fetch 1 ,mem_device_nums 
+0x41f8 008724 bne 0 ,at_error_rev_end 
+0x41f9 008725 call app_ble_start_scan 
+0x41fa 008726 fetch 1 ,mem_at_using_flag 
+0x41fb 008727 set1 at_flag_leinq ,pdata 
+0x41fc 008728 store 1 ,mem_at_using_flag 
+0x41fd 008729 setarg 0x200 
+0x41fe 008730 store 2 ,mem_at_scan_time 
+0x41ff 008731 arg mem_prarm_bleinqr ,rega 
+0x4200 008732 arg 6 ,loopcnt 
+0x4201 008733 call at_group_inquiryhead_common 
+0x4202 008734 call send_mem_to_uart0 
+0x4203 008735 branch at_rev_end 
+:      008739 at_group_pswd_inquiry:
+0x4204 008740 arg mem_prarm_pswd ,rega 
+0x4205 008741 arg 4 ,loopcnt 
+0x4206 008742 call at_group_inquiryhead_common 
+0x4207 008743 fetch 1 ,mem_pin_length 
+0x4208 008744 copy pdata ,loopcnt 
+0x4209 008745 arg mem_pin ,contr 
+0x420a 008746 branch send_mem_to_uart0 
+:      008750 at_group_sniff_inquiry:
+0x420b 008751 arg mem_prarm_sniff ,rega 
+0x420c 008752 arg 5 ,loopcnt 
+0x420d 008753 call at_group_inquiryhead_common 
+0x420e 008754 call at_rev_uart_write_62 
+0x420f 008755 setarg 84 
+0x4210 008756 istore 1 ,contwu 
+0x4211 008757 call at_rev_uart_write_colon 
+0x4212 008758 arg mem_sniff_param_interval ,rega 
+0x4213 008759 call mem2_hex2string_to_uart 
+0x4214 008760 call at_rev_uart_write_62 
+0x4215 008761 setarg 65 
+0x4216 008762 istore 1 ,contwu 
+0x4217 008763 call at_rev_uart_write_colon 
+0x4218 008764 arg mem_sniff_param_attempt ,rega 
+0x4219 008765 call mem2_hex2string_to_uart 
+0x421a 008766 call at_rev_uart_write_62 
+0x421b 008767 setarg 79 
+0x421c 008768 istore 1 ,contwu 
+0x421d 008769 call at_rev_uart_write_colon 
+0x421e 008770 arg mem_sniff_param_timeout ,rega 
+0x421f 008771 call mem2_hex2string_to_uart 
+0x4220 008772 branch send_mem_to_uart0 
+:      008773 at_inquiry_reply:
+0x4221 008774 call get_uart_twptr 
+0x4222 008775 call at_rev_uart_write_62 
+0x4223 008776 arg extm_lap ,rega 
+0x4224 008777 call adss_hex2string_to_uart 
+0x4225 008778 call at_rev_uart_write_44 
+0x4226 008779 arg extm_class ,rega 
+0x4227 008780 call mem3_hex2string_to_uart 
+0x4228 008781 call at_rev_uart_write_44 
+0x4229 008782 call at_rssi_result 
+0x422a 008783 branch uartd_send 
+:      008794 at_set_common:
+0x422b 008795 call at_set_setprarm 
+0x422c 008796 branch uart_copy_rx_bytes 
+:      008797 at_set_setprarm:
+0x422d 008798 call uart_get_remain_length 
+0x422e 008799 copy pdata ,temp 
+0x422f 008800 copy pdata ,loopcnt 
+0x4230 008801 copy rega ,contw 
+0x4231 008802 rtn 
+:      008805 at_group_inquiryhead_common:
+0x4232 008806 call get_uart_twptr 
+0x4233 008807 call at_rev_uart_write_plus 
+:      008808 at_group_inquiryhead_common0:
+0x4234 008809 copy rega ,contr 
+0x4235 008810 call uart_copy_tx_bytes 
+0x4236 008811 branch at_rev_uart_write_colon 
+:      008814 string_compare_uart_follow:
+0x4237 008815 ifetch 1 ,contru 
+0x4238 008816 ifetcht 1 ,regb 
+0x4239 008817 isub temp ,null 
+0x423a 008818 disable true 
+0x423b 008819 nbranch string_compare_uart_follow_diff ,zero 
+0x423c 008820 increase 1 ,regb 
+0x423d 008821 loop string_compare_uart_follow 
+0x423e 008822 enable true 
+0x423f 008823 rtn 
+:      008824 string_compare_uart_follow_diff:
+0x4240 008825 branch restore_contru 
+:      008828 at_rev_uart_write_plus:
+0x4241 008829 setarg ui_plus 
+0x4242 008830 istore 1 ,contwu 
+0x4243 008831 rtn 
+:      008833 at_rev_uart_write_colon:
+0x4244 008834 setarg ui_colon 
+0x4245 008835 istore 1 ,contwu 
+0x4246 008836 rtn 
+:      008839 at_rev_uart_write_62:
+0x4247 008840 setarg 62 
+0x4248 008841 istore 1 ,contwu 
+0x4249 008842 rtn 
+:      008843 at_rev_uart_write_n:
+0x424a 008844 setarg 78 
+0x424b 008845 istore 1 ,contwu 
+0x424c 008846 call uartd_send 
+0x424d 008847 branch at_nomal_rev_end 
+:      008851 at_rev_uart_write_44:
+0x424e 008852 setarg at_comma 
+0x424f 008853 istore 1 ,contwu 
+0x4250 008854 rtn 
+:      008856 restore_contru:
+0x4251 008857 copy rega ,contru 
+0x4252 008858 rtn 
+:      008860 at_group_list_reply:
+0x4253 008861 arg mem_bdaddr_list_buff + 7 ,regc 
+0x4254 008862 arg 4 ,loopcnt 
+:      008863 at_group_list_reply_loop:
+0x4255 008864 copy loopcnt ,pdata 
+0x4256 008865 store 1 ,mem_pdatatemp 
+0x4257 008866 ifetch 1 ,regc 
+0x4258 008867 beq rec_3_mode ,at_group_list_isrecord 
+0x4259 008868 beq rec_4_mode ,at_group_list_isrecord 
+0x425a 008869 branch at_group_list_notrecord 
+:      008870 at_group_list_isrecord:
+0x425b 008871 call at_rev_uart_write_62 
+0x425c 008872 ifetch 1 ,regc 
+0x425d 008873 istore 1 ,contwu 
+0x425e 008874 increase 1 ,regc 
+0x425f 008875 call at_rev_uart_write_44 
+0x4260 008876 copy regc ,rega 
+0x4261 008877 call adss_hex2string_to_uart 
+:      008878 at_group_list_notrecord0:
+0x4262 008879 increase 6 ,regc 
+0x4263 008880 fetch 1 ,mem_pdatatemp 
+0x4264 008881 copy pdata ,loopcnt 
+0x4265 008882 loop at_group_list_reply_loop 
+0x4266 008883 rtn 
+:      008884 at_group_list_notrecord:
+0x4267 008885 increase 1 ,regc 
+0x4268 008886 branch at_group_list_notrecord0 
+:      008890 uart_get_remain_length:
+0x4269 008891 set1 mark_ext_patch ,mark 
+0x426a 008892 bpatch patch33_0 ,mem_patch33 
+0x426b 008893 hfetch 2 ,core_uart_rrptr 
+0x426c 008894 isub contru ,pdata 
+0x426d 008895 rtn zero 
+0x426e 008896 branch uart_get_remain_length0 ,positive 
+:      008897 uart_get_remain_length_common:
+0x426f 008898 fetcht 2 ,mem_current_packet_length 
+0x4270 008899 iadd temp ,pdata 
+0x4271 008900 increase -2 ,pdata 
+0x4272 008901 rtn 
+:      008902 uart_get_remain_length0:
+0x4273 008903 call uart_get_rx_buff_length 
+0x4274 008904 iadd contru ,temp 
+0x4275 008905 hfetch 2 ,core_uart_rrptr 
+0x4276 008906 isub temp ,pdata 
+0x4277 008907 branch uart_get_remain_length_common 
+:      008909 uart_get_rx_buff_length:
+0x4278 008910 arg mem_module_rx_buf_end ,pdata 
+0x4279 008911 increase 1 ,pdata 
+0x427a 008912 arg mem_module_rx_buf ,temp 
+0x427b 008913 isub temp ,pdata 
+0x427c 008914 rtn 
+:      008916 release_packet:
+0x427d 008917 fetcht 2 ,mem_current_packet_length 
+0x427e 008918 branch uartd_rxdone_by_len 
+:      008923 at_error_rev_end:
+0x427f 008924 set1 mark_ext_patch ,mark 
+0x4280 008925 bpatch patch33_1 ,mem_patch33 
+0x4281 008926 call get_uart_twptr 
+0x4282 008927 setarg 0x525245 
+0x4283 008928 istore 3 ,contwu 
+0x4284 008929 call uartd_send 
+0x4285 008930 branch at_rev_end 
+:      008932 at_nomal_rev_end:
+0x4286 008933 set1 mark_ext_patch ,mark 
+0x4287 008934 bpatch patch33_2 ,mem_patch33 
+0x4288 008935 call get_uart_twptr 
+0x4289 008936 setarg 0x4b4f 
+0x428a 008937 istore 2 ,contwu 
+0x428b 008938 call uartd_send 
+:      008939 spp_send_end:
+:      008940 at_rev_end:
+0x428c 008941 set1 mark_ext_patch ,mark 
+0x428d 008942 bpatch patch33_3 ,mem_patch33 
+0x428e 008943 call release_packet 
+:      008944 spp_ipc_end:
+0x428f 008945 setarg 0 
+0x4290 008946 store 2 ,mem_current_packet_length 
+0x4291 008947 store 4 ,mem_last_uart_clock 
+0x4292 008948 rtn 
+:      008951 le_dongle_init:
+0x4293 008952 call usb_init 
+0x4294 008953 call app_led_start_blink 
+0x4295 008954 setarg le_dongle 
+0x4296 008955 store 2 ,mem_cb_le_process 
+0x4297 008956 setarg dongle_process_bb_event 
+0x4298 008957 store 2 ,mem_cb_bb_event_process 
+0x4299 008958 setarg usb_isr 
+0x429a 008959 store 2 ,mem_cb_idle_process 
+0x429b 008960 jam 5 ,mem_dongle_count 
+0x429c 008961 jam 0 ,mem_dongle_peers 
+0x429d 008962 jam hci_cmd_le_create_conn ,mem_hci_cmd 
+0x429e 008963 rtn 
+:      008966 le_dongle:
+0x429f 008967 disable true 
+0x42a0 008968 call app_check_conn_device_nums_addr 
+0x42a1 008970 jam 0x1b ,mem_cmd_le_create_conn 
+0x42a2 008971 fetch 1 ,mem_device_nums 
+0x42a3 008972 compare 2 ,pdata ,0x3 
+0x42a4 008973 nrtn true 
+0x42a5 008974 jam 0 ,mem_le_scan_enable 
+0x42a6 008975 rtn 
+:      008977 le_scan_dongle:
+0x42a7 008978 fetch 1 ,mem_le_rxbuf 
+0x42a8 008979 bbit0 0 ,dongle_add_peer 
+0x42a9 008980 fetch 6 ,mem_le_rxbuf + 2 
+0x42aa 008981 fetcht 6 ,mem_le_plap 
+0x42ab 008982 isub temp ,null 
+0x42ac 008983 nrtn zero 
+:      008984 dongle_peer_paired:
+0x42ad 008985 fetch 6 ,mem_le_plap 
+0x42ae 008986 store 6 ,mem_le_conn_peer_addr 
+0x42af 008987 rtn 
+:      008989 dongle_add_peer:
+0x42b0 008990 arg 0xff ,rega 
+0x42b1 008991 call le_search_adtype 
+0x42b2 008992 nrtn zero 
+0x42b3 008993 ifetch 2 ,contr 
+0x42b4 008994 fetcht 2 ,mem_dongle_signature 
+0x42b5 008995 isub temp ,null 
+0x42b6 008996 nrtn zero 
+0x42b7 008997 fetch 1 ,mem_dongle_peers 
+0x42b8 008998 increase 1 ,pdata 
+0x42b9 008999 store 1 ,mem_dongle_peers 
+0x42ba 009000 fetcht 1 ,mem_dongle_pairing_cnt 
+0x42bb 009001 isub temp ,null 
+0x42bc 009002 branch dongle_peer_paired ,positive 
+0x42bd 009003 rtn 
+:      009005 dongle_process_bb_event:
+0x42be 009006 copy regc ,pdata 
+0x42bf 009007 beq bt_evt_le_disconnected ,dongle_le_event_bb_disconnected 
+0x42c0 009008 beq bt_evt_le_connected ,dongle_bb_event_connected 
+0x42c1 009009 and pdata ,0x0f ,temp 
+0x42c2 009010 and_into bt_evt_timer_mask ,pdata 
+0x42c3 009011 beq bt_evt_timer_init ,dongle_bb_event_100ms 
+0x42c4 009012 rtn 
+:      009014 dongle_le_event_bb_disconnected:
+0x42c5 009015 setarg 0 
+0x42c6 009016 store 6 ,mem_le_conn_peer_addr 
+0x42c7 009017 jam 0 ,mem_dongle_peers 
+0x42c8 009018 setarg 0 
+0x42c9 009019 store 5 ,mem_mouse_data 
+0x42ca 009020 jam send_mouse_data_cmd ,mem_mcmd 
+0x42cb 009021 call usb_isr 
+0x42cc 009022 branch app_ble_start_scan 
+:      009024 dongle_bb_event_100ms:
+0x42cd 009025 rtn 
+0x42ce 009026 fetch 1 ,mem_le_scan_enable 
+0x42cf 009027 rtn blank 
+0x42d0 009028 fetch 1 ,mem_dongle_count 
+0x42d1 009029 rtn blank 
+0x42d2 009030 increase -1 ,pdata 
+0x42d3 009031 store 1 ,mem_dongle_count 
+0x42d4 009032 nrtn blank 
+0x42d5 009033 call le_change_peer_addr 
+0x42d6 009034 branch app_ble_start_conn 
+:      009037 dongle_bb_event_connected:
+0x42d7 009038 branch app_ble_stop_scan 
+:      009040 le_change_peer_addr:
+0x42d8 009042 jam 5 ,mem_dongle_count 
+0x42d9 009043 fetch 1 ,mem_le_peer_state 
+0x42da 009044 beq le_context_state_kb ,addr_slave2 
+0x42db 009045 beq le_context_state_mouse ,addr_slave1 
+0x42dc 009046 rtn 
+:      009047 addr_slave1:
+0x42dd 009048 fetch 6 ,mem_le_addr_slave1 
+0x42de 009049 store 6 ,mem_app_peer_addr 
+0x42df 009050 jam le_context_state_kb ,mem_le_peer_state 
+0x42e0 009051 rtn 
+:      009052 addr_slave2:
+0x42e1 009053 fetch 6 ,mem_le_addr_slave2 
+0x42e2 009054 store 6 ,mem_app_peer_addr 
+0x42e3 009055 jam le_context_state_mouse ,mem_le_peer_state 
+0x42e4 009056 rtn 
+:      009059 hci_rx_bcsp:
+0x42e5 009060 ifetch 2 ,contru 
+0x42e6 009061 branch hci_reset_uart ,blank 
+0x42e7 009062 iforce regc 
+0x42e8 009063 ifetch 1 ,contru 
+0x42e9 009064 store 1 ,mem_h5rx_tmp 
+0x42ea 009065 iforce rega 
+0x42eb 009066 bbit0 6 ,hci_rx_bcsp_nocrc 
+0x42ec 009067 increase -2 ,regc 
+:      009068 hci_rx_bcsp_nocrc:
+0x42ed 009069 ifetch 2 ,contru 
+0x42ee 009070 rshift4 pdata ,loopcnt 
+0x42ef 009071 and pdata ,0xf ,debug 
+0x42f0 009072 iadd rega ,rega 
+0x42f1 009073 rshift8 pdata ,pdata 
+0x42f2 009074 iadd rega ,rega 
+0x42f3 009075 ifetch 1 ,contru 
+0x42f4 009076 iadd rega ,pdata 
+0x42f5 009077 bne 0xff ,hci_rx_bcsp_discard_packet 
+0x42f6 009078 add regc ,-4 ,pdata 
+0x42f7 009079 isub loopcnt ,null 
+0x42f8 009080 nbranch hci_rx_bcsp_discard_packet_err ,zero 
+0x42f9 009081 fetch 1 ,mem_h5rx_tmp 
+0x42fa 009082 isolate0 7 ,pdata 
+0x42fb 009083 branch hci_rx_bcsp_check_ack_skip ,true 
+0x42fc 009084 set0 mark_h5_reset ,mark 
+0x42fd 009085 bmark1 mark_h5_reset ,hci_rx_bcsp_check_ack_skip 
+0x42fe 009086 and_into 7 ,pdata 
+0x42ff 009087 fetcht 1 ,mem_h5tx_ack 
+0x4300 009088 isub temp ,null 
+0x4301 009089 nbranch hci_rx_bcsp_discard_packet_err ,zero 
+:      009090 hci_rx_bcsp_check_ack_skip:
+0x4302 009091 setarg 1600 
+0x4303 009092 force lpo_delay_timer ,queue 
+0x4304 009093 call timer_init 
+0x4305 009094 deposit debug 
+0x4306 009095 call hci_bcsp_parse_packet 
+0x4307 009096 rtn user 
+0x4308 009097 fetch 1 ,mem_h5rx_tmp 
+0x4309 009098 iforce rega 
+0x430a 009099 rshift3 pdata ,temp 
+0x430b 009100 and_into 7 ,temp 
+0x430c 009101 fetch 1 ,mem_h5rx_ack 
+0x430d 009102 isub temp ,pdata 
+0x430e 009103 sub pdata ,0 ,pdata 
+0x430f 009104 and_into 7 ,pdata 
+0x4310 009105 bne 1 ,hci_rx_bcsp_discard_packet_err 
+0x4311 009106 storet 1 ,mem_h5rx_ack 
+0x4312 009107 fetch 1 ,mem_h5rx_ackcnt 
+0x4313 009108 increase 1 ,pdata 
+0x4314 009109 store 1 ,mem_h5rx_ackcnt 
+0x4315 009110 branch hci_rx_bcsp_discard_packet 
+:      009112 hci_rx_bcsp_discard_packet_err:
+0x4316 009113 fetch 1 ,mem_check_err_acl_cont 
+0x4317 009114 increase 1 ,pdata 
+0x4318 009115 store 1 ,mem_check_err_acl_cont 
+:      009116 hci_rx_bcsp_discard_packet:
+0x4319 009117 hfetch 2 ,core_uart_rrptr 
+0x431a 009118 iforce contru 
+0x431b 009119 ifetch 2 ,contru 
+0x431c 009120 iadd contru ,contru 
+0x431d 009121 deposit contru 
+0x431e 009122 hstore 2 ,core_uart_rrptr 
+0x431f 009123 rtn 
+:      009125 hci_bcsp_parse_packet:
+0x4320 009126 disable user 
+0x4321 009127 rtn blank 
+0x4322 009128 beq 1 ,parse_bcsp_link_establish 
+0x4323 009129 beq 2 ,parse_bcsp_bccmd 
+0x4324 009130 beq 5 ,process_hci_cmd 
+0x4325 009131 beq 6 ,process_acl 
+0x4326 009132 beq 8 ,process_hci_patch 
+0x4327 009133 rtn 
+:      009135 parse_bcsp_link_establish:
+0x4328 009136 set0 mark_h5_reinit ,mark 
+0x4329 009137 ifetch 1 ,contru 
+0x432a 009138 beq 0xda ,parse_bcsp_link_establish_sync 
+0x432b 009139 beq 0xac ,parse_bcsp_link_establish_syncrsp 
+0x432c 009140 beq 0xad ,parse_bcsp_link_establish_conf 
+0x432d 009141 beq 0xde ,parse_bcsp_link_establish_confrsp 
+0x432e 009142 rtn 
+:      009143 parse_bcsp_link_establish_sync:
+0x432f 009144 bmark1 mark_h5_sync ,parse_bcsp_link_establish_send_syncrsp 
+0x4330 009145 force 0xda ,temp 
+0x4331 009146 setarg 0xededdc 
+0x4332 009147 call parse_bcsp_link_establish_send 
+:      009148 parse_bcsp_link_establish_send_syncrsp:
+0x4333 009149 force 0xac ,temp 
+0x4334 009150 setarg 0xeeefaf 
+0x4335 009151 branch parse_bcsp_link_establish_send 
+:      009152 parse_bcsp_link_establish_syncrsp:
+0x4336 009153 set1 mark_h5_sync ,mark 
+0x4337 009154 force 0xad ,temp 
+0x4338 009155 setarg 0xedacef 
+0x4339 009156 branch parse_bcsp_link_establish_send 
+:      009157 parse_bcsp_link_establish_conf:
+0x433a 009158 force 0xde ,temp 
+0x433b 009159 setarg 0xd0d0ad 
+:      009160 parse_bcsp_link_establish_send:
+0x433c 009161 lshift8 pdata ,pdata 
+0x433d 009162 ior temp ,temp 
+0x433e 009163 call hci_get_packet_ptr 
+0x433f 009164 istoret 4 ,contwu 
+0x4340 009165 force 1 ,queue 
+0x4341 009166 force 4 ,loopcnt 
+0x4342 009167 set0 mark_h5tx_rp ,mark 
+0x4343 009168 branch bcsp_send_packet 
+:      009169 parse_bcsp_link_establish_confrsp:
+0x4344 009170 force 0 ,alarm 
+0x4345 009171 branch hci_command_status 
+:      009173 parse_bcsp_bccmd:
+0x4346 009174 copy loopcnt ,alarm 
+0x4347 009175 call bcsp_send_ack 
+0x4348 009176 force 0 ,regb 
+0x4349 009177 call hci_get_packet_ptr 
+0x434a 009178 copy alarm ,loopcnt 
+0x434b 009179 ifetch 1 ,contru 
+0x434c 009180 setarg 1 
+0x434d 009181 istore 1 ,contwu 
+0x434e 009182 set0 mark_temp ,mark 
+:      009183 parse_bcsp_bccmd_loop:
+0x434f 009184 ifetch 1 ,contru 
+0x4350 009185 increase 1 ,regb 
+0x4351 009186 beq 0x1c ,parse_bcsp_bccmd_sco_link 
+0x4352 009187 compare 4 ,regb ,0xff 
+0x4353 009188 nbranch parse_bcsp_bccmd_next ,true 
+0x4354 009189 setflag blank ,mark_temp ,mark 
+0x4355 009190 bne 0x3a ,parse_bcsp_bccmd_next 
+0x4356 009191 setarg 2000 
+0x4357 009192 force h5_reinit_timer ,queue 
+0x4358 009193 call timer_init 
+0x4359 009194 set1 mark_h5_reinit ,mark 
+0x435a 009195 rtn 
+:      009197 parse_bcsp_bccmd_sco_link:
+0x435b 009198 compare 6 ,regb ,0xff 
+0x435c 009199 branch parse_bcsp_bccmd_next_ok ,true 
+:      009200 parse_bcsp_bccmd_next:
+0x435d 009201 isolate1 mark_temp ,mark 
+0x435e 009202 call parse_bcsp_bccmd_replace ,true 
+0x435f 009203 istore 1 ,contwu 
+0x4360 009204 loop parse_bcsp_bccmd_loop 
+0x4361 009205 set0 mark_bccmd_patch ,mark 
+0x4362 009206 copy alarm ,loopcnt 
+0x4363 009207 set1 mark_h5tx_rp ,mark 
+0x4364 009208 force 2 ,queue 
+0x4365 009209 branch bcsp_send_packet 
+:      009210 parse_bcsp_bccmd_next_ok:
+0x4366 009211 set1 mark_bccmd_patch ,mark 
+0x4367 009212 branch parse_bcsp_bccmd_next 
+:      009214 parse_bcsp_bccmd_replace:
+0x4368 009215 rtnmark1 mark_bccmd_patch 
+0x4369 009216 compare 10 ,regb ,0xff 
+0x436a 009217 branch parse_bcsp_bccmd_replace1 ,true 
+0x436b 009218 compare 11 ,regb ,0xff 
+0x436c 009219 nrtn true 
+0x436d 009220 setarg 0x12 
+0x436e 009221 rtn 
+:      009222 parse_bcsp_bccmd_replace1:
+0x436f 009223 setarg 0xe9 
+0x4370 009224 rtn 
+:      009226 bcsp_send_ack:
+0x4371 009227 fetch 1 ,mem_h5rx_tmp 
+0x4372 009228 increase 1 ,pdata 
+0x4373 009229 and_into 7 ,pdata 
+0x4374 009230 store 1 ,mem_h5tx_ack 
+0x4375 009231 force 0 ,loopcnt 
+0x4376 009232 force 0 ,queue 
+0x4377 009233 set0 mark_h5tx_rp ,mark 
+:      009234 bcsp_send_packet:
+0x4378 009236 add loopcnt ,4 ,regb 
+0x4379 009237 fetch 1 ,mem_h5tx_ack 
+0x437a 009238 lshift3 pdata ,regc 
+0x437b 009239 isolate0 mark_h5tx_crc ,mark 
+0x437c 009240 nsetflag true ,6 ,regc 
+0x437d 009241 branch bcsp_send_packet_nocrc ,true 
+0x437e 009242 increase 2 ,regb 
+:      009243 bcsp_send_packet_nocrc:
+0x437f 009244 bmark0 mark_h5tx_rp ,bcsp_send_packet_form_nonrp 
+0x4380 009245 set1 7 ,regc 
+0x4381 009246 fetch 1 ,mem_h5tx_seq 
+0x4382 009247 ior regc ,regc 
+0x4383 009248 increase 1 ,pdata 
+0x4384 009249 and_into 7 ,pdata 
+0x4385 009250 store 1 ,mem_h5tx_seq 
+0x4386 009251 fetch 1 ,mem_rp_packets 
+0x4387 009252 increase 1 ,pdata 
+0x4388 009253 store 1 ,mem_rp_packets 
+:      009254 bcsp_send_packet_form_nonrp:
+0x4389 009255 fetch 2 ,mem_h5tx_wptr 
+0x438a 009256 iforce contwu 
+0x438b 009257 deposit regb 
+0x438c 009258 isolate1 mark_h5tx_rp ,mark 
+0x438d 009259 setflag true ,hci_flag_rp ,pdata 
+0x438e 009260 istore 2 ,contwu 
+0x438f 009261 copy contwu ,rega 
+0x4390 009262 deposit regc 
+0x4391 009263 istore 1 ,contwu 
+0x4392 009264 lshift4 loopcnt ,pdata 
+0x4393 009265 ior queue ,pdata 
+0x4394 009266 iadd regc ,regc 
+0x4395 009267 istore 2 ,contwu 
+0x4396 009268 rshift8 pdata ,pdata 
+0x4397 009269 iadd regc ,pdata 
+0x4398 009270 sub pdata ,0xff ,pdata 
+0x4399 009271 istore 1 ,contwu 
+0x439a 009272 bmark0 mark_h5tx_crc ,bcsp_send_packet_form_nocrc 
+0x439b 009273 increase 4 ,loopcnt 
+0x439c 009274 copy rega ,contwu 
+0x439d 009275 call calc_tx_crc16 
+0x439e 009276 istore 2 ,contwu 
+:      009277 bcsp_send_packet_form_nocrc:
+0x439f 009278 fetch 2 ,mem_h5tx_wptr 
+0x43a0 009279 iadd regb ,contwu 
+0x43a1 009280 increase 2 ,contwu 
+0x43a2 009281 deposit contwu 
+0x43a3 009282 store 2 ,mem_h5tx_wptr 
+0x43a4 009283 hstore 2 ,core_uart_twptr 
+0x43a5 009284 fetcht 2 ,mem_h5tx_rptr 
+0x43a6 009285 call bcsp_update_free 
+0x43a7 009286 call bcsp_init_retransmit 
+0x43a8 009287 setarg 1600 
+0x43a9 009288 force lpo_delay_timer ,queue 
+0x43aa 009289 branch timer_init 
+:      009291 bcsp_init_retransmit:
+0x43ab 009292 setarg 400 
+0x43ac 009293 force hci_retransmit_timer ,queue 
+0x43ad 009294 call timer_init 
+0x43ae 009295 set1 mark_h5tx_retransmit ,mark 
+0x43af 009296 rtn 
+:      009298 bcsp_retransmit:
+0x43b0 009299 rtnmark0 mark_h5tx_retransmit 
+0x43b1 009300 force hci_retransmit_timer ,queue 
+0x43b2 009301 call timer_check 
+0x43b3 009302 nrtn blank 
+0x43b4 009303 fetch 2 ,mem_h5tx_rptr 
+0x43b5 009304 hstore 2 ,core_uart_trptrp 
+0x43b6 009305 branch bcsp_init_retransmit 
+:      009307 bcsp_freepacket:
+0x43b7 009308 fetch 2 ,mem_h5tx_wptr 
+0x43b8 009309 fetcht 2 ,mem_h5tx_rptr 
+0x43b9 009310 isub temp ,null 
+0x43ba 009311 branch bcsp_noretransmit ,zero 
+0x43bb 009312 copy temp ,contwu 
+0x43bc 009313 ifetch 2 ,contwu 
+0x43bd 009314 iforce rega 
+0x43be 009315 iand mask3ff ,pdata 
+0x43bf 009316 iadd contwu ,contwu 
+0x43c0 009317 hfetch 2 ,core_uart_trptr 
+0x43c1 009318 isub contwu ,pdata 
+0x43c2 009319 iand mask3ff ,regb 
+0x43c3 009320 fetch 2 ,mem_h5tx_wptr 
+0x43c4 009321 isub contwu ,pdata 
+0x43c5 009322 iand mask3ff ,pdata 
+0x43c6 009323 isub regb ,pdata 
+0x43c7 009324 nrtn positive 
+0x43c8 009325 isolate0 hci_flag_rp ,rega 
+0x43c9 009326 branch bcsp_discardnrp ,true 
+0x43ca 009327 fetch 1 ,mem_h5rx_ackcnt 
+0x43cb 009328 rtn blank 
+0x43cc 009329 increase -1 ,pdata 
+0x43cd 009330 store 1 ,mem_h5rx_ackcnt 
+0x43ce 009331 fetch 1 ,mem_rp_packets 
+0x43cf 009332 increase -1 ,pdata 
+0x43d0 009333 store 1 ,mem_rp_packets 
+:      009334 bcsp_discardnrp:
+0x43d1 009335 copy contwu ,temp 
+0x43d2 009336 storet 2 ,mem_h5tx_rptr 
+0x43d3 009337 fetch 2 ,mem_h5tx_wptr 
+0x43d4 009338 call bcsp_update_free 
+0x43d5 009339 branch bcsp_freepacket 
+:      009340 bcsp_noretransmit:
+0x43d6 009341 set0 mark_h5tx_retransmit ,mark 
+0x43d7 009342 rtn 
+:      009344 bcsp_update_free:
+0x43d8 009345 isub temp ,pdata 
+0x43d9 009346 iand mask3ff ,pdata 
+0x43da 009347 isub mask3ff ,pdata 
+0x43db 009348 sub pdata ,0 ,pdata 
+0x43dc 009349 store 2 ,mem_h5tx_free 
+0x43dd 009350 rtn 
+:      009352 bcsp_get_tx_ptr:
+0x43de 009353 fetch 2 ,mem_h5tx_wptr 
+0x43df 009354 iadd contwu ,contwu 
+0x43e0 009355 rtn 
+:      009359 hci_log:
+0x43e1 009360 rtn 
+:      009362 hci_rx_h4:
+0x43e2 009363 set1 mark_ext_patch ,mark 
+0x43e3 009364 bpatch patch3d_4 ,mem_patch3d 
+0x43e4 009365 fetch 1 ,mem_hci_cmd 
+0x43e5 009366 nrtn blank 
+:      009367 hci_rx_h4_1:
+0x43e6 009368 call hci_h4_parse_packet 
+0x43e7 009369 ncall h4_rx_discard_packet ,user 
+0x43e8 009370 rtn 
+:      009372 hci_h4_parse_packet:
+0x43e9 009373 set1 mark_ext_patch ,mark 
+0x43ea 009374 bpatch patch3d_5 ,mem_patch3d 
+0x43eb 009375 copy contru ,rega 
+0x43ec 009376 arg 4 ,temp 
+0x43ed 009377 ifetch 1 ,contru 
+0x43ee 009378 beq hci_h4_type_cmd ,hci_h4_parse_packet_wait_len 
+0x43ef 009379 increase 1 ,temp 
+0x43f0 009380 beq hci_h4_type_acl ,hci_h4_parse_packet_wait_len 
+0x43f1 009381 copy contru ,pdata 
+0x43f2 009382 hstore 2 ,core_uart_rrptr 
+0x43f3 009383 rtn 
+:      009384 hci_h4_parse_packet_wait_len:
+0x43f4 009385 hfetch 2 ,core_uart_rxitems 
+0x43f5 009386 isub temp ,null 
+0x43f6 009387 nbranch hci_h4_parse_packet_wait_len ,positive 
+0x43f7 009389 disable user 
+0x43f8 009390 copy rega ,contru 
+0x43f9 009391 call h4_get_rx_payload_len 
+0x43fa 009392 iadd temp ,temp 
+:      009393 hci_h4_parse_packet_wait:
+0x43fb 009394 hfetch 2 ,core_uart_rxitems 
+0x43fc 009395 isub temp ,null 
+0x43fd 009396 nbranch hci_h4_parse_packet_wait ,positive 
+0x43fe 009397 copy rega ,contru 
+0x43ff 009398 ifetch 1 ,contru 
+0x4400 009399 beq hci_h4_type_cmd ,process_hci_cmd 
+0x4401 009400 beq hci_h4_type_acl ,hci_h4_parse_packet_acl 
+0x4402 009401 branch assert 
+:      009402 hci_h4_parse_packet_acl:
+0x4403 009403 set1 mark_ext_patch ,mark 
+0x4404 009404 bpatch patch3d_6 ,mem_patch3d 
+0x4405 009405 copy contru ,rega 
+0x4406 009406 ifetch 2 ,contru 
+0x4407 009407 copy rega ,contru 
+0x4408 009408 fetcht 1 ,mem_conn_handle 
+0x4409 009409 icompare 0xff ,temp 
+0x440a 009410 branch process_acl ,true 
+0x440b 009411 branch le_acl_downgoing ,le 
+0x440c 009412 enable user 
+0x440d 009413 rtn 
+:      009414 h4_rx_discard_packet:
+0x440e 009415 set1 mark_ext_patch ,mark 
+0x440f 009416 bpatch patch3d_7 ,mem_patch3d 
+0x4410 009417 hfetch 2 ,core_uart_rrptr 
+0x4411 009418 iforce contru 
+0x4412 009419 call h4_get_rx_payload_len 
+0x4413 009420 iadd contru ,contru 
+0x4414 009421 deposit contru 
+0x4415 009422 hstore 2 ,core_uart_rrptr 
+0x4416 009423 rtn 
+:      009428 h4_get_rx_payload_len:
+0x4417 009429 ifetch 1 ,contru 
+0x4418 009430 increase 2 ,contru 
+0x4419 009431 beq hci_h4_type_acl ,h4_get_rx_payload_len_acl 
+0x441a 009432 ifetch 1 ,contru 
+0x441b 009433 rtn 
+:      009434 h4_get_rx_payload_len_acl:
+0x441c 009435 ifetch 2 ,contru 
+0x441d 009436 rtn 
+:      009438 h4_get_tx_ptr:
+0x441e 009439 hfetch 2 ,core_uart_twptr 
+0x441f 009440 increase -5 ,contwu 
+0x4420 009441 iadd contwu ,contwu 
+0x4421 009442 rtn 
+:      009444 h4_send_packet_event:
+0x4422 009445 arg hci_h4_type_event ,temp 
+0x4423 009446 branch h4_send_packet 
+:      009447 h4_send_packet_acl:
+0x4424 009448 arg hci_h4_type_acl ,temp 
+:      009449 h4_send_packet:
+0x4425 009450 set1 mark_ext_patch ,mark 
+0x4426 009451 bpatch patch3e_0 ,mem_patch3e 
+0x4427 009452 increase 1 ,loopcnt 
+0x4428 009453 hfetch 2 ,core_uart_twptr 
+0x4429 009454 copy pdata ,contwu 
+0x442a 009455 copy loopcnt ,pdata 
+0x442b 009456 istoret 1 ,contwu 
+0x442c 009457 increase -1 ,pdata 
+0x442d 009458 iadd contwu ,contwu 
+0x442e 009459 copy contwu ,pdata 
+0x442f 009460 store 2 ,mem_hci_acl_tx_trigger_wptr 
+0x4430 009461 copy temp ,pdata 
+0x4431 009462 rtneq hci_h4_type_acl 
+0x4432 009463 fetch 2 ,mem_hci_acl_tx_trigger_wptr 
+0x4433 009464 hstore 2 ,core_uart_twptr 
+0x4434 009465 branch h4_send_acl_trigger_clear 
+:      009467 h4_send_acl_trigger:
+0x4435 009468 set1 mark_ext_patch ,mark 
+0x4436 009469 bpatch patch3e_1 ,mem_patch3e 
+0x4437 009470 fetch 2 ,mem_hci_acl_tx_trigger_wptr 
+0x4438 009471 branch assert ,blank 
+0x4439 009472 hstore 2 ,core_uart_twptr 
+0x443a 009473 branch h4_send_acl_trigger_clear 
+:      009475 h4_send_acl_trigger_clear:
+0x443b 009476 setarg 0 
+0x443c 009477 store 2 ,mem_hci_acl_tx_trigger_wptr 
+0x443d 009478 rtn 
+:      009480 h4_tx_buffer_remain:
+0x443e 009481 hfetcht 2 ,core_uart_trptr 
+0x443f 009482 hfetch 2 ,core_uart_twptr 
+0x4440 009483 isub temp ,rega 
+0x4441 009484 nbranch h4_tx_buffer_remain_negative ,positive 
+0x4442 009485 hfetcht 2 ,core_uart_tsaddr 
+0x4443 009486 hfetch 2 ,core_uart_teaddr 
+0x4444 009487 isub temp ,pdata 
+0x4445 009488 isub rega ,temp 
+0x4446 009489 rtn 
+:      009490 h4_tx_buffer_remain_negative:
+0x4447 009491 sub rega ,-1 ,temp 
+0x4448 009492 rtn 
+:      009497 hci_dispatch:
+0x4449 009498 set0 mark_ext_patch ,mark 
+0x444a 009499 bpatch patch19_5 ,mem_patch19 
+0x444b 009500 fetch 1 ,mem_device_option 
+0x444c 009501 rtnne dvc_op_hci 
+0x444d 009502 call hci_rx_packet 
+0x444e 009503 call hci_check_bcsp_protocol 
+0x444f 009504 call bcsp_retransmit ,true 
+0x4450 009505 call hci_check_bcsp_protocol 
+0x4451 009506 call bcsp_freepacket ,true 
+0x4452 009507 branch process_send_acl 
+0x4453 009508 rtnmark0 mark_h5_reinit 
+0x4454 009509 force h5_reinit_timer ,queue 
+0x4455 009510 call timer_check 
+0x4456 009511 nrtn blank 
+0x4457 009512 call hci_reinit 
+0x4458 009513 call hci_check_bcsp_protocol 
+0x4459 009514 nrtn true 
+0x445a 009515 set0 mark_h5_sync ,mark 
+0x445b 009516 force 0xda ,temp 
+0x445c 009517 setarg 0xededdc 
+0x445d 009518 call parse_bcsp_link_establish_send 
+0x445e 009519 setarg 2000 
+0x445f 009520 force h5_reinit_timer ,queue 
+0x4460 009521 branch timer_init 
+:      009524 hci_init:
+0x4461 009525 set0 mark_ext_patch ,mark 
+0x4462 009526 bpatch patch19_6 ,mem_patch19 
+0x4463 009527 rtn wake 
+0x4464 009528 setarg hci_idle_dispatch 
+0x4465 009529 store 2 ,mem_cb_idle_process 
+0x4466 009531 setarg uart_baud_115200 
+0x4467 009532 store uart_baud_len ,mem_baud 
+:      009533 hci_lpm_init:
+0x4468 009534 set0 mark_ext_patch ,mark 
+0x4469 009535 bpatch patch19_7 ,mem_patch19 
+0x446a 009536 call init_filter_ram 
+0x446b 009537 setarg mem_h5rx_buf 
+0x446c 009538 hstore 2 ,core_uart_rsaddr 
+0x446d 009539 setarg mem_h5rx_buf_end 
+0x446e 009540 hstore 2 ,core_uart_readdr 
+0x446f 009541 setarg mem_h5tx_buf 
+0x4470 009542 hstore 2 ,core_uart_tsaddr 
+0x4471 009543 call hci_sel_init 
+:      009544 hci_reinit:
+0x4472 009545 set0 mark_ext_patch ,mark 
+0x4473 009546 bpatch patch1a_0 ,mem_patch1a 
+0x4474 009547 hjam 0x0 ,core_uart_ctrl 
+0x4475 009548 jam 0 ,mem_h5rx_ack 
+0x4476 009549 jam 0 ,mem_h5tx_ack 
+0x4477 009550 jam 0 ,mem_h5tx_seq 
+0x4478 009551 setarg mem_h5tx_buf 
+0x4479 009552 store 2 ,mem_h5tx_wptr 
+0x447a 009553 store 2 ,mem_h5tx_rptr 
+0x447b 009554 hstore 2 ,core_uart_twptr 
+0x447c 009555 hstore 2 ,core_uart_trptrp 
+0x447d 009556 setarg mem_h5rx_buf 
+0x447e 009557 hstore 2 ,core_uart_rrptr 
+0x447f 009558 store 2 ,mem_h5rx_rptr 
+:      009559 hci_init_common:
+0x4480 009560 set0 mark_ext_patch ,mark 
+0x4481 009561 bpatch patch1a_1 ,mem_patch1a 
+0x4482 009562 hfetch 2 ,core_clkoff 
+0x4483 009563 set0 clock_off_uart ,pdata 
+0x4484 009564 hstore 2 ,core_clkoff 
+0x4485 009565 call uart_set_baud_by_mem 
+0x4486 009566 hjam uartclk_dpll ,core_uart_clksel 
+0x4487 009567 hjam uart_ctrl_h4 ,core_uart_ctrl 
+0x4488 009568 branch hci_init_queue_ack 
+:      009570 hci_sel_init:
+0x4489 009571 setarg mem_h5tx_buf_end 
+0x448a 009572 hstore 2 ,core_uart_teaddr 
+0x448b 009573 hfetch 1 ,core_gpio_sel1 
+0x448c 009574 or_into 0x07 ,pdata 
+0x448d 009575 hstore 1 ,core_gpio_sel1 
+0x448e 009576 jam 0xff ,mem_ucode_id_local 
+0x448f 009577 rtn 
+:      009579 hci_reset_uart:
+0x4490 009580 hfetch 2 ,core_uart_rwptr 
+0x4491 009581 hstore 2 ,core_uart_rrptr 
+0x4492 009582 set1 mark_h5_reset ,mark 
+0x4493 009583 rtn 
+:      009586 hci_check_bcsp_protocol:
+0x4494 009587 hfetch 1 ,core_uart_ctrl 
+0x4495 009588 isolate1 uart_ctrl_bit_slip_protocol ,pdata 
+0x4496 009589 rtn 
+:      009591 hci_init_queue_ack:
+0x4497 009592 setarg mem_hci_acl_queue_start 
+0x4498 009593 store 2 ,mem_hci_acl_queue_wptr 
+0x4499 009594 store 2 ,mem_hci_acl_queue_rptr 
+0x449a 009595 force param_acl_pktcnt ,temp 
+0x449b 009596 iadd temp ,pdata 
+0x449c 009597 iadd temp ,pdata 
+0x449d 009598 increase 2 ,pdata 
+0x449e 009599 store 2 ,mem_hci_acl_queue_end 
+0x449f 009600 setarg 0x00 
+0x44a0 009601 store 1 ,mem_hci_acl_cnt 
+0x44a1 009602 store 1 ,mem_hci_acl_queue_wcnt 
+0x44a2 009603 rtn 
+:      009605 hci_rx_packet:
+0x44a3 009606 set0 mark_ext_patch ,mark 
+0x44a4 009607 bpatch patch1a_2 ,mem_patch1a 
+0x44a5 009608 hfetch 1 ,core_uart_status 
+0x44a6 009609 iforce regb 
+0x44a7 009610 bbit0 uart_status_rx_fifo_empty ,hci_rx_packet_cont 
+0x44a8 009611 hfetch 2 ,core_uart_rxitems 
+0x44a9 009612 iforce regc 
+0x44aa 009613 arg 0x44f ,temp 
+0x44ab 009614 isub temp ,null 
+0x44ac 009615 nrtn zero 
+:      009616 hci_rx_packet_cont:
+0x44ad 009617 hfetch 2 ,core_uart_rrptr 
+0x44ae 009618 iforce contru 
+0x44af 009619 call hci_check_bcsp_protocol 
+0x44b0 009620 branch hci_rx_bcsp ,true 
+0x44b1 009621 branch hci_rx_h4 
+:      009623 hci_send_ack:
+0x44b2 009624 call hci_check_bcsp_protocol 
+0x44b3 009625 branch bcsp_send_ack ,true 
+0x44b4 009626 rtn 
+:      009628 uart_send_byte:
+0x44b5 009629 hfetcht 1 ,core_uart_status 
+0x44b6 009630 isolate1 6 ,temp 
+0x44b7 009631 branch uart_send_byte ,true 
+0x44b8 009632 hstore 1 ,core_uart_txd 
+0x44b9 009633 rtn 
+:      009636 process_acl_into_queue:
+0x44ba 009637 fetcht 2 ,mem_hci_acl_queue_end 
+0x44bb 009638 fetch 2 ,mem_hci_acl_queue_wptr 
+0x44bc 009639 iforce contw 
+0x44bd 009640 deposit contru 
+0x44be 009641 istore 2 ,contw 
+0x44bf 009642 deposit contw 
+0x44c0 009643 store 2 ,mem_hci_acl_queue_wptr 
+0x44c1 009644 icompare 0xff ,temp 
+0x44c2 009645 call process_acl_into_queue_loop ,true 
+0x44c3 009646 fetch 1 ,mem_hci_acl_queue_wcnt 
+0x44c4 009647 increase 1 ,pdata 
+0x44c5 009648 store 1 ,mem_hci_acl_queue_wcnt 
+0x44c6 009649 rtn 
+:      009650 process_acl_into_queue_loop:
+0x44c7 009651 setarg mem_hci_acl_queue_start 
+0x44c8 009652 store 2 ,mem_hci_acl_queue_wptr 
+0x44c9 009653 rtn 
+:      009656 process_acl_dequeue:
+0x44ca 009657 fetch 1 ,mem_hci_acl_queue_wcnt 
+0x44cb 009658 rtn blank 
+0x44cc 009659 fetcht 2 ,mem_hci_acl_queue_end 
+0x44cd 009660 fetch 2 ,mem_hci_acl_queue_rptr 
+0x44ce 009661 iforce contr 
+0x44cf 009662 ifetch 2 ,contr 
+0x44d0 009663 iforce contru 
+0x44d1 009664 deposit contr 
+0x44d2 009665 store 2 ,mem_hci_acl_queue_rptr 
+0x44d3 009666 icompare 0xff ,temp 
+0x44d4 009667 call process_acl_dequeue_loop ,true 
+0x44d5 009668 fetch 1 ,mem_hci_acl_queue_wcnt 
+0x44d6 009669 increase -1 ,pdata 
+0x44d7 009670 store 1 ,mem_hci_acl_queue_wcnt 
+0x44d8 009671 force 1 ,pdata 
+0x44d9 009672 rtn 
+:      009673 process_acl_dequeue_loop:
+0x44da 009674 setarg mem_hci_acl_queue_start 
+0x44db 009675 store 2 ,mem_hci_acl_queue_rptr 
+0x44dc 009676 rtn 
+:      009678 process_acl:
+0x44dd 009679 set0 mark_ext_patch ,mark 
+0x44de 009680 bpatch patch1a_3 ,mem_patch1a 
+0x44df 009681 fetch 1 ,mem_hci_acl_queue_wcnt 
+0x44e0 009682 sub pdata ,2 ,null 
+0x44e1 009683 branch process_acl_queue_check_ok ,positive 
+0x44e2 009684 enable user 
+0x44e3 009685 branch process_send_acl 
+:      009686 process_acl_queue_check_ok:
+0x44e4 009687 call hci_send_ack 
+0x44e5 009688 call process_acl_into_queue 
+:      009689 process_send_acl:
+0x44e6 009690 set0 mark_ext_patch ,mark 
+0x44e7 009691 bpatch patch1a_4 ,mem_patch1a 
+0x44e8 009692 rtnmark1 mark_tx_l2cap 
+0x44e9 009693 call process_acl_dequeue 
+0x44ea 009694 rtn blank 
+0x44eb 009695 ifetcht 1 ,contru 
+0x44ec 009696 call context_search_conn_handle2 
+0x44ed 009697 nrtn zero 
+0x44ee 009698 ifetch 1 ,contru 
+0x44ef 009699 rshift4 pdata ,pdata 
+0x44f0 009700 and pdata ,0x3 ,pdata 
+0x44f1 009701 nbranch process_send_acl_good_lch ,blank 
+0x44f2 009702 set1 1 ,pdata 
+:      009703 process_send_acl_good_lch:
+0x44f3 009704 set1 2 ,pdata 
+0x44f4 009705 store 1 ,mem_tx_lch 
+0x44f5 009706 ifetch 2 ,contru 
+0x44f6 009707 store 2 ,mem_tx_len 
+0x44f7 009708 deposit contru 
+0x44f8 009709 store 2 ,mem_txptr 
+0x44f9 009710 set1 mark_tx_l2cap ,mark 
+0x44fa 009711 bmark0 mark_context ,process_acl_ncontext 
+0x44fb 009712 fetch 1 ,mem_conn_handle 
+0x44fc 009713 isub temp ,null 
+0x44fd 009714 nbranch process_acl_ncontext ,zero 
+0x44fe 009715 fetch 1 ,mem_op 
+0x44ff 009716 set1 op_txl2cap ,pdata 
+0x4500 009717 store 1 ,mem_op 
+0x4501 009718 rtn 
+:      009720 process_acl_ncontext:
+0x4502 009721 increase coffset_op ,rega 
+0x4503 009722 ifetch 1 ,rega 
+0x4504 009723 set1 op_txl2cap ,pdata 
+0x4505 009724 istore 1 ,rega 
+0x4506 009725 rtn 
+:      009730 process_hci_cmd:
+0x4507 009731 set0 mark_ext_patch ,mark 
+0x4508 009732 bpatch patch1a_5 ,mem_patch1a 
+0x4509 009733 fetch 1 ,mem_hci_cmd 
+0x450a 009734 branch process_hci_cmd_cont ,blank 
+0x450b 009735 enable user 
+0x450c 009736 rtn 
+:      009737 process_hci_cmd_cont:
+0x450d 009738 call hci_send_ack 
+0x450e 009739 ifetch 2 ,contru 
+0x450f 009740 iforce alarm 
+0x4510 009741 iforce queue 
+0x4511 009742 ifetch 1 ,contru 
+0x4512 009743 iforce temp 
+0x4513 009744 rshift2 alarm ,pdata 
+0x4514 009745 rshift8 pdata ,pdata 
+0x4515 009746 beq hci_ogf_link_control ,phci_grp_link_control 
+0x4516 009747 beq hci_ogf_link_policy ,phci_grp_link_policy 
+0x4517 009748 beq hci_ogf_baseband ,phci_grp_baseband 
+0x4518 009749 beq hci_ogf_info ,phci_grp_info 
+0x4519 009750 beq hci_ogf_status ,phci_grp_status 
+0x451a 009751 beq hci_ogf_test ,phci_grp_test 
+0x451b 009752 beq hci_ogf_vendor_specific ,phci_grp_vendor_specific 
+0x451c 009753 beq hci_ogf_low_energy ,phci_grp_low_energy 
+0x451d 009754 rtn 
+:      009757 phci_grp_link_control:
+0x451e 009758 set0 mark_ext_patch ,mark 
+0x451f 009759 bpatch patch1a_6 ,mem_patch1a 
+0x4520 009760 deposit queue 
+0x4521 009761 beq hci_inquiry ,phci_inquiry 
+0x4522 009762 beq hci_inquiry_cancel ,phci_inquiry_cancel 
+0x4523 009763 beq hci_periodic_inquiry_mode ,hci_normal_reply 
+0x4524 009764 beq hci_exit_periodic_inquiry_mode ,hci_normal_reply 
+0x4525 009765 beq hci_create_connection ,phci_create_connection 
+0x4526 009766 beq hci_disconnect ,phci_disconnect 
+0x4527 009767 beq hci_add_sco_connection ,hci_normal_reply 
+0x4528 009768 beq hci_create_connection_cancel ,phci_create_connection_cancel 
+0x4529 009769 beq hci_accept_connection ,phci_accept_connection 
+0x452a 009770 beq hci_reject_connection ,phci_reject_connection 
+0x452b 009771 beq hci_link_key_request_reply ,phci_link_key_request_reply 
+0x452c 009772 beq hci_link_key_request_negative_reply ,phci_link_key_request_negative_reply 
+0x452d 009773 beq hci_pin_code_request_reply ,phci_pin_code_request_reply 
+0x452e 009774 beq hci_pin_code_request_negative_reply ,phci_pin_code_request_negative_reply 
+0x452f 009775 beq hci_change_connection_packet_type ,phci_change_connection_packet_type 
+0x4530 009776 beq hci_authentication_requested ,phci_authentication_requested 
+0x4531 009777 beq hci_set_connection_encryption ,phci_set_connection_encryption 
+0x4532 009778 beq hci_change_connection_link_key ,hci_normal_reply 
+0x4533 009779 beq hci_master_link_key ,hci_normal_reply 
+0x4534 009780 beq hci_remote_name_request ,phci_remote_name_request 
+0x4535 009781 beq hci_read_remote_supported_features ,phci_read_remote_supported_features 
+0x4536 009782 beq hci_read_remote_ext_features ,phci_read_remote_ext_features 
+0x4537 009783 beq hci_read_remote_version_information ,phci_read_remote_version_information 
+0x4538 009784 beq hci_read_clock_offset ,phci_read_clock_offset 
+0x4539 009785 beq hci_setup_sco_connection ,phci_setup_sco_connection 
+0x453a 009786 beq hci_accept_sco_connection ,phci_accept_sco_connection 
+0x453b 009787 beq hci_io_cap_request_reply ,phci_io_cap_request_reply 
+0x453c 009788 branch phci_unknown_command 
+:      009791 phci_grp_link_policy:
+0x453d 009792 set0 mark_ext_patch ,mark 
+0x453e 009793 bpatch patch1a_7 ,mem_patch1a 
+0x453f 009794 deposit queue 
+0x4540 009795 beq hci_role_discovery ,phci_role_discovery 
+0x4541 009796 beq hci_write_link_policy_settings ,phci_write_link_policy_settings 
+0x4542 009797 beq hci_hold_mode ,hci_normal_reply 
+0x4543 009798 beq hci_sniff_mode ,phci_sniff_mode 
+0x4544 009799 beq hci_exit_sniff_mode ,phci_exit_sniff_mode 
+0x4545 009800 beq hci_park_mode ,hci_normal_reply 
+0x4546 009801 beq hci_exit_park_mode ,hci_normal_reply 
+0x4547 009802 beq hci_qos_setup ,hci_normal_reply 
+0x4548 009803 beq hci_switch_role ,phci_switch_role 
+0x4549 009804 beq hci_read_link_policy_settings ,hci_normal_reply 
+0x454a 009805 beq hci_read_default_link_policy_settings ,hci_normal_reply 
+0x454b 009806 beq hci_write_default_link_policy_settings ,hci_normal_reply 
+0x454c 009807 beq hci_flow_specification ,hci_normal_reply 
+0x454d 009808 beq hci_sniff_subrating ,phci_sniff_subrating 
+0x454e 009809 branch phci_unknown_command 
+:      009811 phci_grp_baseband:
+0x454f 009812 set0 mark_ext_patch ,mark 
+0x4550 009813 bpatch patch1b_0 ,mem_patch1b 
+0x4551 009814 deposit queue 
+0x4552 009815 beq hci_set_event_mask ,phci_set_event_mask 
+0x4553 009816 beq hci_reset ,hci_normal_reply 
+0x4554 009817 beq hci_delete_stored_link_key ,phci_delete_stored_link_key 
+0x4555 009818 beq hci_write_local_name ,phci_change_local_name 
+0x4556 009819 beq hci_read_local_name ,phci_read_local_name 
+0x4557 009820 beq hci_write_page_timeout ,phci_write_page_timeout 
+0x4558 009821 beq hci_read_scan_enable ,phci_read_scan_enable 
+0x4559 009822 beq hci_write_scan_enable ,phci_write_scan_enable 
+0x455a 009823 beq hci_write_page_scan_activity ,phci_write_page_scan_activity 
+0x455b 009824 beq hci_write_inquiry_scan_activity ,phci_write_inquiry_scan_activity 
+0x455c 009825 beq hci_write_authentication_enable ,phci_write_authentication_enable 
+0x455d 009826 beq hci_write_encryption_mode ,phci_write_encryption_mode 
+0x455e 009827 beq hci_write_class_of_device ,phci_write_class_of_device 
+0x455f 009828 beq hci_write_voice_setting ,hci_normal_reply 
+0x4560 009829 beq hci_set_controller_to_host_flow_control ,hci_normal_reply 
+0x4561 009830 beq hci_host_buffer_size ,hci_normal_reply 
+0x4562 009831 beq hci_host_num_completed_packets ,phci_host_num_completed 
+0x4563 009832 beq hci_write_inquiry_scan_type ,hci_normal_reply 
+0x4564 009833 beq hci_write_inquiry_mode ,hci_normal_reply 
+0x4565 009834 beq hci_write_page_scan_type ,hci_normal_reply 
+0x4566 009835 beq hci_read_extended_inquiry_response ,phci_read_ext_inquiry_response 
+0x4567 009836 beq hci_write_simple_pairing_mode ,phci_write_ssp_mode 
+0x4568 009837 branch phci_unknown_command 
+:      009839 phci_grp_info:
+0x4569 009840 set0 mark_ext_patch ,mark 
+0x456a 009841 bpatch patch1b_1 ,mem_patch1b 
+0x456b 009842 deposit queue 
+0x456c 009843 beq hci_read_local_version_information ,phci_read_local_version_information 
+0x456d 009844 beq hci_read_local_supported_features ,phci_read_local_supported_features 
+0x456e 009845 beq hci_read_local_ext_features ,phci_read_local_ext_features 
+0x456f 009846 beq hci_read_buffer_size ,phci_read_buffer_size 
+0x4570 009847 beq hci_read_bd_addr ,phci_read_bd_addr 
+0x4571 009848 branch phci_unknown_command 
+:      009850 phci_grp_status:
+0x4572 009851 set0 mark_ext_patch ,mark 
+0x4573 009852 bpatch patch1b_2 ,mem_patch1b 
+0x4574 009853 deposit queue 
+0x4575 009854 beq hci_read_failed_contact_counter ,hci_normal_reply 
+0x4576 009855 beq hci_reset_failed_contact_counter ,phci_reset_failed_contact_counter 
+0x4577 009856 beq hci_get_link_quality ,phci_get_link_quality 
+0x4578 009857 beq hci_read_rssi ,phci_read_rssi 
+0x4579 009858 beq hci_read_afh_channel_map ,phci_read_afh_channel_map 
+0x457a 009859 beq hci_read_bd_clock ,phci_read_bd_clock 
+0x457b 009860 branch phci_unknown_command 
+:      009862 phci_grp_test:
+0x457c 009863 set0 mark_ext_patch ,mark 
+0x457d 009864 bpatch patch1b_3 ,mem_patch1b 
+0x457e 009865 deposit queue 
+0x457f 009866 beq hci_read_loopback_mode ,hci_normal_reply 
+0x4580 009867 beq hci_write_loopback_mode ,hci_normal_reply 
+0x4581 009868 beq hci_enable_device_under_test_mode ,hci_normal_reply 
+0x4582 009869 beq hci_write_simple_pairing_debug_mode ,hci_normal_reply 
+0x4583 009870 branch phci_unknown_command 
+0x4584 009871 rtn 
+:      009873 phci_grp_vendor_specific:
+0x4585 009874 set0 mark_ext_patch ,mark 
+0x4586 009875 bpatch patch1b_4 ,mem_patch1b 
+0x4587 009876 deposit queue 
+0x4588 009877 beq hci_vendor_cmd_reset ,hci_normal_reply 
+0x4589 009878 beq hci_vendor_cmd_chipid ,phci_grp_vendor_chipid 
+0x458a 009879 beq hci_vendor_cmd_baud ,phci_grp_vendor_baud 
+0x458b 009880 beq hci_vendor_cmd_patch ,phci_grp_vendor_patch 
+0x458c 009881 beq hci_vendor_cmd_patch_done ,phci_grp_vendor_done 
+0x458d 009882 beq hci_vendor_cmd_echo ,hci_normal_reply 
+0x458e 009883 beq hci_vendor_cmd_bdaddr ,phci_grp_vendor_bdaddr 
+0x458f 009884 beq hci_vendor_cmd_enter_lpm ,phci_grp_vendor_enter_lpm 
+0x4590 009886 beq hci_vendor_cmd_mem ,phci_grp_vendor_mem 
+0x4591 009887 beq hci_vendor_cmd_eep ,phci_grp_vendor_eep 
+0x4592 009888 branch hci_normal_reply 
+:      009890 phci_grp_vendor_enter_lpm:
+0x4593 009891 call hci_normal_reply 
+0x4594 009892 call wait_uarttx 
+0x4595 009893 call gpio_pu_uart_tx 
+:      009894 hci_enter_lpm:
+0x4596 009895 call app_put_lpm_wake_lock 
+0x4597 009896 call app_l2cap_flow_control_enable 
+0x4598 009897 branch gpio_rx_config_input_with_pu 
+:      009899 hci_exit_lpm:
+0x4599 009900 jam hci_rx_ready ,mem_hci_lt_rx_state 
+0x459a 009901 call app_get_lpm_wake_lock 
+0x459b 009902 call hci_lpm_init 
+0x459c 009903 branch app_l2cap_flow_control_disable 
+:      009905 phci_grp_vendor_chipid:
+0x459d 009906 call hci_get_cmd_complete_ptr 
+0x459e 009907 hfetch 2 ,core_chipid 
+0x459f 009908 istore 2 ,contwu 
+0x45a0 009909 force 6 ,loopcnt 
+0x45a1 009910 branch hci_command_complete 
+:      009912 phci_grp_vendor_baud:
+0x45a2 009913 ifetch 2 ,contru 
+0x45a3 009914 store 2 ,mem_baud 
+0x45a4 009915 hstore 2 ,core_uart_baud 
+0x45a5 009916 rtn 
+:      009918 phci_grp_vendor_patch:
+0x45a6 009920 ifetch 1 ,contru 
+0x45a7 009921 copy pdata ,temp 
+0x45a8 009922 hstore 1 ,core_ucode_low 
+0x45a9 009923 ifetch 1 ,contru 
+0x45aa 009924 iadd temp ,temp 
+0x45ab 009925 set1 7 ,pdata 
+0x45ac 009926 hstore 1 ,core_ucode_ctrl 
+0x45ad 009927 ifetch 1 ,contru 
+0x45ae 009928 iadd temp ,temp 
+0x45af 009929 copy pdata ,loopcnt 
+:      009930 phci_grp_vendor_patch_loop:
+0x45b0 009931 ifetch 1 ,contru 
+0x45b1 009932 hstore 1 ,core_ucode_data 
+0x45b2 009933 iadd temp ,temp 
+0x45b3 009934 loop phci_grp_vendor_patch_loop 
+0x45b4 009935 and temp ,0xff ,temp 
+0x45b5 009936 ifetch 1 ,contru 
+0x45b6 009937 isub temp ,null 
+0x45b7 009938 nbranch phci_grp_vendor_patch_bad ,zero 
+0x45b8 009939 branch hci_normal_reply 
+:      009941 phci_grp_vendor_done:
+0x45b9 009942 arg 0x20 ,loopcnt 
+0x45ba 009943 arg mem_patch00 ,contw 
+0x45bb 009944 arg 0 ,temp 
+:      009945 phci_grp_vendor_done_loop:
+0x45bc 009946 ifetch 1 ,contru 
+0x45bd 009947 istore 1 ,contw 
+0x45be 009948 iadd temp ,temp 
+0x45bf 009949 loop phci_grp_vendor_done_loop 
+0x45c0 009950 and temp ,0xff ,temp 
+0x45c1 009951 ifetch 1 ,contru 
+0x45c2 009952 isub temp ,null 
+0x45c3 009953 nbranch phci_grp_vendor_patch_bad ,zero 
+0x45c4 009954 hjam 0 ,core_ucode_ctrl 
+0x45c5 009955 call hci_normal_reply 
+0x45c6 009956 call h4_rx_discard_packet 
+0x45c7 009957 branch soft_reset 
+:      009959 phci_grp_vendor_patch_bad:
+0x45c8 009960 hjam 0 ,core_ucode_ctrl 
+0x45c9 009961 branch start 
+:      009963 phci_grp_vendor_bdaddr:
+0x45ca 009964 ifetch 6 ,contru 
+0x45cb 009965 store 6 ,mem_lap 
+0x45cc 009966 branch hci_normal_reply 
+:      009969 phci_grp_vendor_mem:
+0x45cd 009970 ifetch 1 ,contru 
+0x45ce 009971 store 1 ,mem_hci_curr_len 
+0x45cf 009972 copy pdata ,loopcnt 
+0x45d0 009973 ifetch 2 ,contru 
+0x45d1 009974 store 2 ,mem_hci_curr_target 
+0x45d2 009975 copy pdata ,contw 
+0x45d3 009976 call uart_copy_rx_bytes 
+0x45d4 009977 branch hci_normal_reply 
+:      009980 phci_grp_vendor_eep:
+0x45d5 009981 ifetch 1 ,contru 
+0x45d6 009982 store 1 ,mem_hci_curr_len 
+0x45d7 009983 copy pdata ,loopcnt 
+0x45d8 009984 ifetch 2 ,contru 
+0x45d9 009985 store 2 ,mem_hci_curr_target 
+0x45da 009986 arg mem_l2cap_rxbuff1 ,contw 
+0x45db 009987 call uart_copy_rx_bytes 
+0x45dc 009988 fetcht 1 ,mem_hci_curr_len 
+0x45dd 009989 arg mem_l2cap_rxbuff1 ,rega 
+0x45de 009990 fetch 2 ,mem_hci_curr_target 
+0x45df 009991 branch iicd_write_ota_data 
+:      009997 phci_grp_low_energy:
+0x45e0 009998 set0 mark_ext_patch ,mark 
+0x45e1 009999 bpatch patch1b_5 ,mem_patch1b 
+0x45e2 010000 deposit queue 
+0x45e3 010001 beq hci_le_set_event_mask ,hci_normal_reply 
+0x45e4 010002 beq hci_le_read_buffer_size ,phci_le_read_buffer_size 
+0x45e5 010003 beq hci_le_read_local_supported_features ,phci_le_read_local_supported_features 
+0x45e6 010004 beq hci_le_set_advertising_parameters ,phci_le_set_adv_param 
+0x45e7 010005 beq hci_le_set_advertising_data ,phci_le_set_adv_data 
+0x45e8 010006 beq hci_le_set_scan_response_data ,phci_le_set_scan_response_data 
+0x45e9 010007 beq hci_le_set_advertise_enable ,phci_le_set_adv_enable 
+0x45ea 010008 beq hci_le_set_scan_parameters ,phci_le_set_scan_param 
+0x45eb 010009 beq hci_le_set_scan_enable ,phci_le_set_scan_enable 
+0x45ec 010010 beq hci_le_create_connection ,phci_le_create_conn 
+0x45ed 010011 beq hci_le_create_connection_cancel ,phci_le_create_conn_cancel 
+0x45ee 010012 beq hci_le_read_channel_map ,phci_le_read_channel_map 
+0x45ef 010013 beq hci_le_read_remote_used_features ,hci_command_status 
+0x45f0 010014 beq hci_le_connection_update ,hci_normal_reply 
+0x45f1 010015 branch phci_unknown_command 
+0x45f2 010016 rtn 
+:      010017 phci_le_read_buffer_size:
+0x45f3 010018 call hci_get_cmd_complete_ptr 
+0x45f4 010019 setarg 0 
+0x45f5 010020 istore 3 ,contwu 
+0x45f6 010021 force 0x07 ,loopcnt 
+0x45f7 010022 branch hci_command_complete 
+:      010024 phci_le_read_local_supported_features:
+0x45f8 010025 call hci_get_cmd_complete_ptr 
+0x45f9 010026 setarg 1 
+0x45fa 010027 istore 2 ,contwu 
+0x45fb 010028 setarg 0 
+0x45fc 010029 istore 6 ,contwu 
+0x45fd 010030 force 0x0c ,loopcnt 
+0x45fe 010031 branch hci_command_complete 
+:      010033 phci_le_set_adv_param:
+0x45ff 010034 arg 15 ,loopcnt 
+0x4600 010035 arg mem_le_adv_param ,contw 
+0x4601 010036 call uart_copy_rx_bytes 
+0x4602 010037 branch hci_normal_reply 
+:      010039 phci_le_set_adv_data:
+0x4603 010040 arg 32 ,loopcnt 
+0x4604 010041 arg mem_le_adv_data_len ,contw 
+0x4605 010042 call uart_copy_rx_bytes 
+0x4606 010043 branch hci_normal_reply 
+:      010045 phci_le_set_scan_response_data:
+0x4607 010046 arg 32 ,loopcnt 
+0x4608 010047 arg mem_le_scan_data_len ,contw 
+0x4609 010048 call uart_copy_rx_bytes 
+0x460a 010049 branch hci_normal_reply 
+:      010051 phci_le_set_adv_enable:
+0x460b 010052 ifetch 1 ,contru 
+0x460c 010053 store 1 ,mem_le_adv_enable 
+0x460d 010054 branch hci_normal_reply 
+:      010056 phci_le_set_scan_param:
+0x460e 010057 ifetch 7 ,contru 
+0x460f 010058 store 7 ,mem_le_scan_params 
+0x4610 010059 branch hci_normal_reply 
+:      010061 phci_le_set_scan_enable:
+0x4611 010062 ifetch 1 ,contru 
+0x4612 010063 store 1 ,mem_le_scan_enable 
+0x4613 010064 branch hci_normal_reply 
+:      010066 phci_le_create_conn:
+0x4614 010067 ifetch 4 ,contru 
+0x4615 010068 store 4 ,mem_le_scan_interval 
+0x4616 010069 ifetch 1 ,contru 
+0x4617 010070 store 1 ,mem_le_scan_filter_policy 
+0x4618 010071 arg 20 ,loopcnt 
+0x4619 010072 arg mem_le_conn_param ,contw 
+0x461a 010073 call uart_copy_rx_bytes 
+0x461b 010074 jam 1 ,mem_le_scan_enable 
+0x461c 010075 fetch 1 ,mem_le_conn_own_addr_type 
+0x461d 010076 store 1 ,mem_le_scan_own_addr_type 
+0x461e 010077 fetch 2 ,mem_le_conn_interval_max 
+0x461f 010078 store 2 ,mem_le_conn_interval 
+0x4620 010079 fetch 2 ,mem_le_conn_latency 
+0x4621 010080 store 2 ,mem_le_slave_latency 
+0x4622 010081 fetch 2 ,mem_le_conn_superto 
+0x4623 010082 store 2 ,mem_le_superto 
+0x4624 010083 jam hci_cmd_le_create_conn ,mem_hci_cmd 
+0x4625 010084 branch hci_command_status 
+:      010086 phci_le_create_conn_cancel:
+0x4626 010088 branch hci_normal_reply 
+:      010090 phci_le_read_channel_map:
+0x4627 010091 call hci_get_cmd_complete_ptr 
+0x4628 010092 ifetch 2 ,contru 
+0x4629 010093 istore 2 ,contwu 
+0x462a 010094 setarg 0x1fffff 
+0x462b 010095 istore 5 ,contwu 
+0x462c 010096 force 0x0b ,loopcnt 
+0x462d 010097 branch hci_command_complete 
+:      010102 phci_host_num_completed:
+0x462e 010103 ifetch 3 ,contru 
+0x462f 010104 ifetcht 3 ,contru 
+0x4630 010105 fetch 2 ,mem_acl_credits 
+0x4631 010106 iadd temp ,pdata 
+0x4632 010107 store 2 ,mem_acl_credits 
+0x4633 010108 rtn 
+:      010110 phci_inquiry:
+0x4634 010111 ifetch 3 ,contru 
+0x4635 010112 store 3 ,mem_glap 
+:      010113 do_at_inquiry0:
+0x4636 010114 jam hci_cmd_inquiry ,mem_hci_cmd 
+0x4637 010115 ifetch 1 ,contru 
+0x4638 010116 arg 1600 ,temp 
+0x4639 010117 imul32 temp ,pdata 
+0x463a 010118 arg 0xffff ,temp 
+0x463b 010119 isub temp ,null 
+0x463c 010120 nbranch phci_inquiry_nowrap ,positive 
+0x463d 010121 deposit temp 
+:      010122 phci_inquiry_nowrap:
+0x463e 010123 force inquiry_length_timer ,queue 
+0x463f 010124 call timer_init 
+0x4640 010125 fetch 1 ,mem_at_using_flag 
+0x4641 010126 bbit1 at_flag_inq ,at_rev_end 
+0x4642 010127 branch hci_command_status 
+:      010130 phci_inquiry_cancel:
+0x4643 010131 jam hci_cmd_inquiry_cancel ,mem_hci_cmd 
+0x4644 010132 branch hci_normal_reply 
+:      010134 phci_create_connection:
+0x4645 010135 call phci_read_plap 
+0x4646 010136 ifetch 2 ,contru 
+0x4647 010137 store 2 ,mem_packet_type 
+0x4648 010138 ifetch 2 ,contru 
+0x4649 010139 store 1 ,mem_page_mode 
+0x464a 010140 call phci_read_clock 
+0x464b 010141 ifetch 1 ,contru 
+0x464c 010142 store 1 ,mem_allow_switch 
+0x464d 010143 jam hci_cmd_create_conn ,mem_hci_cmd 
+0x464e 010144 branch hci_command_status 
+:      010147 phci_disconnect:
+0x464f 010148 jam hci_cmd_disconn ,mem_hci_cmd 
+0x4650 010149 ifetch 2 ,contru 
+0x4651 010150 store 1 ,mem_hci_conn_handle 
+0x4652 010151 ifetch 1 ,contru 
+0x4653 010152 store 1 ,mem_disconn_reason_send 
+0x4654 010153 jam hci_error_connection_terminated_by_local_host ,mem_hci_disconn_reason 
+0x4655 010154 fetch 1 ,mem_hci_conn_handle 
+0x4656 010155 fetcht 1 ,mem_sco_handle 
+0x4657 010156 isub temp ,null 
+0x4658 010157 nbranch hci_command_status ,zero 
+0x4659 010158 jam hci_cmd_disconn_sco ,mem_hci_cmd 
+0x465a 010159 fetch 1 ,mem_sco_asso_handle 
+0x465b 010160 store 1 ,mem_hci_conn_handle 
+0x465c 010161 branch hci_command_status 
+:      010163 phci_create_connection_cancel:
+0x465d 010164 call hci_get_cmd_complete_ptr 
+0x465e 010165 call hci_write_plap 
+0x465f 010166 force 10 ,loopcnt 
+0x4660 010167 call hci_command_complete 
+0x4661 010169 jam hci_cmd_detach ,mem_hci_cmd 
+0x4662 010170 force hci_error_no_connection ,temp 
+0x4663 010171 branch hci_send_connection_error 
+:      010173 phci_link_key_request_reply:
+0x4664 010174 call phci_read_plap 
+0x4665 010175 arg mem_link_key ,contw 
+0x4666 010176 force 16 ,loopcnt 
+0x4667 010177 call uart_copy_rx_bytes 
+0x4668 010178 jam hci_cmd_linkkey ,mem_hci_cmd 
+0x4669 010179 branch phci_pin_code_reply 
+:      010181 phci_link_key_request_negative_reply:
+0x466a 010182 call phci_read_plap 
+0x466b 010183 jam hci_cmd_nokey ,mem_hci_cmd 
+0x466c 010184 branch phci_pin_code_reply 
+:      010186 phci_pin_code_request_reply:
+0x466d 010187 call phci_read_plap 
+0x466e 010188 ifetch 1 ,contru 
+0x466f 010189 store 1 ,mem_pin_length 
+0x4670 010190 iforce loopcnt 
+0x4671 010191 arg mem_pin ,contw 
+0x4672 010192 call uart_copy_rx_bytes 
+0x4673 010193 jam hci_cmd_pair ,mem_hci_cmd 
+0x4674 010194 branch phci_pin_code_reply 
+:      010196 phci_pin_code_request_negative_reply:
+0x4675 010197 call phci_read_plap 
+0x4676 010198 jam hci_cmd_nopair ,mem_hci_cmd 
+:      010199 phci_pin_code_reply:
+0x4677 010200 call hci_get_cmd_complete_ptr 
+0x4678 010201 call hci_write_plap 
+0x4679 010202 force 10 ,loopcnt 
+0x467a 010203 branch hci_command_complete 
+:      010205 phci_io_cap_request_reply:
+0x467b 010207 increase 6 ,contru 
+0x467c 010208 ifetch 3 ,contru 
+0x467d 010209 store 3 ,mem_sp_iocap_local 
+0x467e 010210 fetch 1 ,mem_master_sp_state 
+0x467f 010211 beq sp_master_stat_start_done ,phci_io_cap_request_reply_master 
+0x4680 010212 beq sp_stat_key_send ,phci_io_cap_request_reply_master 
+0x4681 010213 jam hci_cmd_io_cap ,mem_hci_cmd 
+0x4682 010214 branch phci_io_cap_request_reply_commom 
+:      010215 phci_io_cap_request_reply_master:
+0x4683 010216 jam sp_flag_commit ,mem_master_sp_flag 
+:      010217 phci_io_cap_request_reply_commom:
+0x4684 010218 call hci_get_cmd_complete_ptr 
+0x4685 010219 call hci_write_plap 
+0x4686 010220 force 10 ,loopcnt 
+0x4687 010221 branch hci_command_complete 
+:      010224 phci_authentication_requested:
+0x4688 010225 call phci_read_handle 
+0x4689 010226 jam hci_cmd_auth ,mem_hci_cmd 
+0x468a 010227 branch hci_command_status 
+:      010229 phci_set_connection_encryption:
+0x468b 010230 call phci_read_handle 
+0x468c 010231 ifetch 1 ,contru 
+0x468d 010232 increase hci_cmd_stopencrypt ,pdata 
+0x468e 010233 store 1 ,mem_hci_cmd 
+0x468f 010234 branch hci_command_status 
+:      010236 phci_remote_name_request:
+0x4690 010237 call phci_read_plap 
+0x4691 010238 ifetch 2 ,contru 
+0x4692 010239 store 1 ,mem_page_mode 
+0x4693 010240 call phci_read_clock 
+0x4694 010241 jam hci_cmd_remote_name_req ,mem_hci_cmd 
+0x4695 010242 branch hci_command_status 
+:      010244 phci_read_remote_ext_features:
+0x4696 010245 ifetch 2 ,contru 
+0x4697 010246 ifetch 1 ,contru 
+0x4698 010247 store 1 ,mem_ext_features_page 
+0x4699 010248 jam hci_cmd_remote_ext_features_req ,mem_hci_cmd 
+0x469a 010249 branch hci_command_status 
+:      010251 phci_read_remote_supported_features:
+0x469b 010253 fetch 1 ,mem_conn_handle 
+0x469c 010254 force hci_error_no_connection ,rega 
+0x469d 010255 branch hci_command_status_err ,blank 
+0x469e 010256 call phci_read_handle 
+0x469f 010257 jam hci_cmd_remote_feature_req ,mem_hci_cmd 
+0x46a0 010258 branch hci_command_status 
+:      010261 phci_read_remote_version_information:
+0x46a1 010263 fetch 1 ,mem_conn_handle 
+0x46a2 010264 force hci_error_no_connection ,rega 
+0x46a3 010265 branch hci_command_status_err ,blank 
+0x46a4 010266 call phci_read_handle 
+0x46a5 010267 jam hci_cmd_remote_version_req ,mem_hci_cmd 
+0x46a6 010268 branch hci_command_status 
+:      010271 phci_read_clock_offset:
+0x46a7 010272 call phci_status_reply_temp 
+0x46a8 010273 force hci_event_read_clock_offset_complete ,queue 
+0x46a9 010274 force 5 ,loopcnt 
+0x46aa 010275 branch hci_send_event 
+:      010277 phci_setup_sco_connection:
+0x46ab 010278 call phci_read_handle 
+0x46ac 010279 increase 10 ,contru 
+0x46ad 010280 ifetch 2 ,contru 
+0x46ae 010281 store 2 ,mem_voice_setting 
+0x46af 010282 ifetch 1 ,contru 
+0x46b0 010283 store 1 ,mem_retransmission_effort 
+0x46b1 010284 ifetch 2 ,contru 
+0x46b2 010285 store 2 ,mem_sco_ptype 
+0x46b3 010286 jam 2 ,mem_air_mode 
+0x46b4 010287 jam hci_cmd_setup_sco ,mem_hci_cmd 
+0x46b5 010288 branch hci_command_status 
+:      010290 phci_accept_sco_connection:
+0x46b6 010291 jam hci_cmd_accept_sco_conn ,mem_hci_cmd 
+0x46b7 010292 branch hci_command_status 
+:      010296 phci_read_local_name:
+0x46b8 010297 call hci_get_cmd_complete_ptr 
+0x46b9 010298 arg mem_local_name ,contr 
+0x46ba 010299 sub contr ,0xff ,loopcnt 
+0x46bb 010300 call uart_copy_tx_bytes 
+0x46bc 010301 force 0 ,pdata 
+0x46bd 010302 sub contr ,mem_local_name ,loopcnt 
+0x46be 010303 increase 0xf8 ,loopcnt 
+0x46bf 010304 call uart_write_bytes 
+0x46c0 010305 force 0xfc ,loopcnt 
+0x46c1 010306 branch hci_command_complete 
+:      010308 phci_change_local_name:
+0x46c2 010309 arg mem_local_name ,contw 
+0x46c3 010310 sub contw ,0xff ,loopcnt 
+:      010311 phci_change_local_name_loop:
+0x46c4 010312 ifetch 1 ,contru 
+0x46c5 010313 istore 1 ,contw 
+0x46c6 010314 branch phci_write_local_name_end ,blank 
+0x46c7 010315 loop phci_change_local_name_loop 
+:      010316 phci_write_local_name_end:
+0x46c8 010317 sub contw ,mem_local_name ,pdata 
+0x46c9 010318 sub pdata ,0 ,pdata 
+0x46ca 010319 store 1 ,mem_local_name_length 
+0x46cb 010320 branch hci_normal_reply 
+:      010322 phci_role_discovery:
+0x46cc 010323 call hci_get_cmd_complete_ptr 
+0x46cd 010324 call hci_write_handle 
+0x46ce 010325 force 0 ,pdata 
+0x46cf 010326 nsetflag master ,0 ,pdata 
+0x46d0 010327 istore 1 ,contwu 
+0x46d1 010328 force 7 ,loopcnt 
+0x46d2 010329 arg 0x809 ,alarm 
+0x46d3 010330 call hci_command_complete 
+0x46d4 010331 branch cmd_exit 
+0x46d5 010332 jam hci_cmd_role_discovery ,mem_hci_cmd 
+0x46d6 010333 rtn 
+:      010336 phci_write_link_policy_settings:
+0x46d7 010337 call phci_copy_handle 
+0x46d8 010338 force 6 ,loopcnt 
+0x46d9 010339 branch hci_command_complete 
+:      010342 phci_delete_stored_link_key:
+0x46da 010343 branch hci_normal_reply 
+:      010345 phci_write_page_timeout:
+0x46db 010346 ifetch 2 ,contru 
+0x46dc 010347 store 2 ,mem_page_to 
+0x46dd 010348 branch hci_normal_reply 
+:      010351 phci_write_scan_enable:
+0x46de 010352 ifetch 1 ,contru 
+0x46df 010353 store 1 ,mem_scan_mode 
+0x46e0 010354 branch hci_normal_reply 
+:      010356 phci_write_page_scan_activity:
+0x46e1 010357 ifetch 2 ,contru 
+0x46e2 010358 store 2 ,mem_pscan_interval 
+0x46e3 010359 ifetch 2 ,contru 
+0x46e4 010360 store 2 ,mem_pscan_window 
+0x46e5 010361 branch hci_normal_reply 
+:      010363 phci_write_inquiry_scan_activity:
+0x46e6 010364 ifetch 2 ,contru 
+0x46e7 010365 store 2 ,mem_iscan_interval 
+0x46e8 010366 ifetch 2 ,contru 
+0x46e9 010367 store 2 ,mem_iscan_window 
+0x46ea 010368 branch hci_normal_reply 
+:      010370 phci_write_encryption_mode:
+0x46eb 010371 branch hci_normal_reply 
+:      010374 phci_write_authentication_enable:
+0x46ec 010375 ifetch 1 ,contru 
+0x46ed 010376 store 1 ,mem_auth_enable 
+0x46ee 010377 branch hci_normal_reply 
+:      010379 phci_write_class_of_device:
+0x46ef 010380 ifetch 3 ,contru 
+0x46f0 010381 store 3 ,mem_class 
+0x46f1 010382 branch hci_normal_reply 
+:      010387 phci_read_ext_inquiry_response:
+0x46f2 010388 deposit temp 
+0x46f3 010389 branch hci_normal_reply ,blank 
+0x46f4 010390 call hci_get_payload_ptr 
+0x46f5 010391 force 0x1 ,pdata 
+0x46f6 010392 istore 1 ,contwu 
+0x46f7 010393 deposit alarm 
+0x46f8 010394 istore 2 ,contwu 
+0x46f9 010395 force hci_error_invalid_hci_command_parameters ,pdata 
+0x46fa 010396 istore 1 ,contwu 
+0x46fb 010397 setarg 0 
+0x46fc 010398 increase 0xf1 ,loopcnt 
+0x46fd 010399 call uart_write_bytes 
+0x46fe 010401 force hci_event_command_complete ,queue 
+0x46ff 010402 force 0xf5 ,loopcnt 
+0x4700 010403 branch hci_send_event 
+:      010407 phci_write_ssp_mode:
+0x4701 010408 ifetch 1 ,contru 
+0x4702 010409 ncall ssp_enable ,blank 
+0x4703 010410 call ssp_disable ,blank 
+0x4704 010411 branch hci_normal_reply 
+:      010413 phci_read_scan_enable:
+0x4705 010414 call hci_get_cmd_complete_ptr 
+0x4706 010415 fetch 1 ,mem_scan_mode 
+0x4707 010416 istore 1 ,contwu 
+0x4708 010417 force 5 ,loopcnt 
+0x4709 010418 branch hci_command_complete 
+:      010420 phci_read_local_version_information:
+0x470a 010421 call hci_get_cmd_complete_ptr 
+0x470b 010422 fetch 8 ,mem_hci_version 
+0x470c 010423 istore 8 ,contwu 
+0x470d 010424 force 12 ,loopcnt 
+0x470e 010425 branch hci_command_complete 
+:      010427 phci_read_local_supported_features:
+0x470f 010428 call hci_get_cmd_complete_ptr 
+0x4710 010429 fetch 8 ,mem_features 
+0x4711 010430 istore 8 ,contwu 
+0x4712 010431 force 12 ,loopcnt 
+0x4713 010432 branch hci_command_complete 
+:      010434 phci_read_local_ext_features:
+0x4714 010435 call hci_get_cmd_complete_ptr 
+0x4715 010436 setarg 0x0101 
+0x4716 010437 istore 2 ,contwu 
+0x4717 010438 setarg 0x01 
+0x4718 010439 istore 8 ,contwu 
+0x4719 010440 force 14 ,loopcnt 
+0x471a 010441 branch hci_command_complete 
+:      010443 phci_read_buffer_size:
+0x471b 010444 call hci_get_cmd_complete_ptr 
+0x471c 010445 fetch 7 ,mem_acl_pktlen 
+0x471d 010446 istore 7 ,contwu 
+0x471e 010447 force 11 ,loopcnt 
+0x471f 010448 branch hci_command_complete 
+:      010450 phci_read_bd_addr:
+0x4720 010451 call hci_get_cmd_complete_ptr 
+0x4721 010452 fetch 6 ,mem_lap 
+0x4722 010453 istore 6 ,contwu 
+0x4723 010454 force 10 ,loopcnt 
+0x4724 010455 branch hci_command_complete 
+:      010457 phci_set_event_mask:
+0x4725 010458 branch hci_normal_reply 
+:      010461 phci_reset_failed_contact_counter:
+0x4726 010462 branch hci_normal_reply 
+:      010463 phci_get_link_quality:
+0x4727 010464 call hci_get_cmd_complete_ptr 
+0x4728 010465 call hci_write_handle 
+0x4729 010466 setarg 0xff 
+0x472a 010467 istore 1 ,contwu 
+0x472b 010468 force 7 ,loopcnt 
+0x472c 010469 branch hci_command_complete 
+:      010471 phci_read_rssi:
+0x472d 010472 call hci_get_cmd_complete_ptr 
+0x472e 010473 call hci_write_handle 
+0x472f 010474 setarg 0x00 
+0x4730 010475 istore 1 ,contwu 
+0x4731 010476 force 7 ,loopcnt 
+0x4732 010477 branch hci_command_complete 
+:      010479 phci_read_afh_channel_map:
+0x4733 010480 set0 mark_ext_patch ,mark 
+0x4734 010481 bpatch patch1b_6 ,mem_patch1b 
+0x4735 010482 branch hci_normal_reply 
+:      010483 phci_read_bd_clock:
+0x4736 010484 set0 mark_ext_patch ,mark 
+0x4737 010485 bpatch patch1b_7 ,mem_patch1b 
+0x4738 010486 branch hci_normal_reply 
+:      010491 phci_accept_connection:
+0x4739 010492 call phci_read_plap 
+0x473a 010493 jam hci_cmd_accept_conn ,mem_hci_cmd 
+0x473b 010494 ifetch 1 ,contru 
+0x473c 010495 beq 1 ,hci_command_status 
+0x473d 010496 jam hci_cmd_accept_with_switch ,mem_hci_cmd 
+0x473e 010497 branch hci_command_status 
+:      010499 phci_reject_connection:
+0x473f 010500 branch phci_accept_connection 
+0x4740 010501 call phci_read_plap 
+0x4741 010502 jam hci_cmd_reject_conn ,mem_hci_cmd 
+0x4742 010503 branch hci_normal_reply 
+:      010505 phci_change_connection_packet_type:
+0x4743 010506 call hci_command_status 
+0x4744 010507 call hci_get_payload_ptr 
+0x4745 010508 setarg 0 
+0x4746 010509 istore 1 ,contwu 
+0x4747 010510 ifetch 4 ,contru 
+0x4748 010511 istore 4 ,contwu 
+0x4749 010512 force 8 ,loopcnt 
+0x474a 010513 arg hci_event_connection_packet_type_changed ,queue 
+0x474b 010514 arg 5 ,loopcnt 
+0x474c 010515 branch hci_send_event 
+:      010517 phci_unknown_command:
+0x474d 010518 force hci_error_unknown_hci_command ,rega 
+0x474e 010519 branch hci_command_status_err 
+:      010521 phci_sniff_mode:
+0x474f 010524 call phci_read_handle 
+0x4750 010525 ifetch 2 ,contru 
+0x4751 010526 store 2 ,mem_sniff_param_interval 
+0x4752 010527 ifetch 2 ,contru 
+0x4753 010528 store 2 ,mem_hci_sniff_min_interval 
+0x4754 010529 ifetch 2 ,contru 
+0x4755 010530 store 2 ,mem_sniff_param_attempt 
+0x4756 010531 ifetch 2 ,contru 
+0x4757 010532 store 2 ,mem_sniff_param_timeout 
+0x4758 010533 jam hci_cmd_in_sniff ,mem_hci_cmd 
+0x4759 010534 branch hci_command_status 
+:      010536 phci_exit_sniff_mode:
+0x475a 010537 call phci_read_handle 
+0x475b 010538 call exit_sniff 
+0x475c 010539 branch hci_command_status 
+:      010541 exit_sniff:
+0x475d 010542 jam hci_cmd_exit_sniff ,mem_hci_cmd 
+0x475e 010543 rtn 
+:      010545 phci_sniff_subrating:
+0x475f 010546 branch hci_normal_reply 
+:      010548 phci_switch_role:
+0x4760 010549 call phci_read_plap 
+0x4761 010550 jam hci_cmd_role_switch ,mem_hci_cmd 
+0x4762 010551 branch hci_command_status 
+:      010553 phci_read_plap:
+0x4763 010554 ifetch 6 ,contru 
+0x4764 010555 store 6 ,mem_hci_plap 
+0x4765 010556 rtn 
+:      010558 phci_read_handle:
+0x4766 010559 ifetch 2 ,contru 
+0x4767 010560 store 1 ,mem_hci_conn_handle 
+0x4768 010561 rtn 
+:      010563 phci_copy_handle:
+0x4769 010564 call phci_read_handle 
+0x476a 010565 call hci_get_cmd_complete_ptr 
+0x476b 010566 fetch 1 ,mem_hci_conn_handle 
+0x476c 010567 istore 2 ,contwu 
+0x476d 010568 rtn 
+:      010572 phci_status_reply_temp:
+0x476e 010573 call phci_read_handle 
+0x476f 010574 call hci_command_status 
+0x4770 010575 call hci_get_payload_ptr 
+0x4771 010576 force 0 ,pdata 
+0x4772 010577 istore 1 ,contwu 
+0x4773 010578 fetch 1 ,mem_hci_conn_handle 
+0x4774 010579 istore 2 ,contwu 
+0x4775 010580 rtn 
+:      010582 phci_read_clock:
+0x4776 010583 ifetch 2 ,contru 
+0x4777 010584 iadd clkn_bt ,pdata 
+0x4778 010585 and_into 0x1fc ,pdata 
+0x4779 010586 store 4 ,mem_page_clk 
+0x477a 010587 rtn 
+:      010589 hci_inquiry_reply:
+0x477b 010590 set0 mark_ext_patch ,mark 
+0x477c 010591 bpatch patch1c_0 ,mem_patch1c 
+0x477d 010592 fetch 1 ,mem_rp_packets 
+0x477e 010593 sub pdata ,2 ,null 
+0x477f 010594 nrtn positive 
+0x4780 010595 fetcht 6 ,extm_lap 
+0x4781 010596 call context_search_plap2 
+0x4782 010597 rtn zero 
+0x4783 010598 call hci_get_packet_ptr 
+0x4784 010599 setarg 0x10f22 
+0x4785 010600 istore 3 ,contwu 
+0x4786 010601 fetch 6 ,extm_lap 
+0x4787 010602 istore 6 ,contwu 
+0x4788 010603 fetch 1 ,extm_fhs_misc 
+0x4789 010604 copy pdata ,temp 
+0x478a 010605 rshift3 pdata ,pdata 
+0x478b 010606 rshift3 pdata ,pdata 
+0x478c 010607 istore 1 ,contwu 
+0x478d 010608 copy temp ,pdata 
+0x478e 010609 and pdata ,0x30 ,pdata 
+0x478f 010610 rshift3 pdata ,pdata 
+0x4790 010611 rshift pdata ,pdata 
+0x4791 010612 istore 1 ,contwu 
+0x4792 010613 fetch 3 ,extm_class 
+0x4793 010614 istore 3 ,contwu 
+0x4794 010615 fetch 4 ,mem_clke_bt 
+0x4795 010616 isub clkn_bt ,pdata 
+0x4796 010617 istore 2 ,contwu 
+0x4797 010618 setarg 0xc8 
+0x4798 010619 istore 1 ,contwu 
+0x4799 010620 force 15 ,loopcnt 
+0x479a 010621 branch hci_send_event_raw 
+:      010623 hci_inquiry_reply_eir:
+0x479b 010624 set0 mark_ext_patch ,mark 
+0x479c 010625 bpatch patch1c_1 ,mem_patch1c 
+0x479d 010626 force 540 ,temp 
+0x479e 010627 fetch 2 ,mem_h5tx_free 
+0x479f 010628 isub temp ,null 
+0x47a0 010629 nrtn positive 
+0x47a1 010630 fetcht 3 ,mem_extm_uap_restore 
+0x47a2 010631 fetch 3 ,extm_uap 
+0x47a3 010632 isub temp ,null 
+0x47a4 010633 rtn zero 
+0x47a5 010634 rtn blank 
+0x47a6 010635 store 3 ,mem_extm_uap_restore 
+0x47a7 010636 fetch 1 ,mem_rp_packets 
+0x47a8 010637 sub pdata ,2 ,null 
+0x47a9 010638 nrtn positive 
+0x47aa 010639 fetcht 6 ,extm_lap 
+0x47ab 010640 call context_search_plap2 
+0x47ac 010641 rtn zero 
+0x47ad 010642 call hci_eir_reply 
+0x47ae 010643 force 15 ,temp 
+0x47af 010644 fetch 1 ,mem_rxbuf + 1 
+0x47b0 010645 bne 0x09 ,hci_inquiry_reply_eir_end 
+0x47b1 010646 fetch 1 ,mem_rxbuf 
+0x47b2 010647 branch hci_inquiry_reply_eir_end ,blank 
+0x47b3 010648 iforce loopcnt 
+0x47b4 010649 istore 1 ,contwu 
+0x47b5 010650 iadd temp ,temp 
+0x47b6 010651 increase 1 ,temp 
+0x47b7 010652 arg mem_rxbuf + 1 ,contr 
+:      010654 hci_inquiry_name_loop:
+0x47b8 010655 ifetch 1 ,contr 
+0x47b9 010656 istore 1 ,contwu 
+0x47ba 010657 loop hci_inquiry_name_loop 
+:      010658 hci_inquiry_other_rtn_loop:
+0x47bb 010659 ifetch 1 ,contr 
+0x47bc 010660 branch hci_inquiry_reply_eir_end ,blank 
+0x47bd 010661 iforce loopcnt 
+0x47be 010662 istore 1 ,contwu 
+0x47bf 010663 iadd temp ,temp 
+0x47c0 010664 increase 1 ,temp 
+:      010665 hci_inquiry_other_loop:
+0x47c1 010666 ifetch 1 ,contr 
+0x47c2 010667 istore 1 ,contwu 
+0x47c3 010668 loop hci_inquiry_other_loop 
+0x47c4 010669 branch hci_inquiry_other_rtn_loop 
+:      010670 hci_inquiry_reply_eir_end:
+0x47c5 010671 sub temp ,0xff ,pdata 
+0x47c6 010672 iforce loopcnt 
+:      010673 hci_inquiry_fill_zero:
+0x47c7 010674 setarg 0x00 
+0x47c8 010675 istore 1 ,contwu 
+0x47c9 010676 loop hci_inquiry_fill_zero 
+0x47ca 010677 force 0xff ,loopcnt 
+0x47cb 010678 branch hci_send_event_raw 
+:      010680 hci_eir_reply:
+0x47cc 010681 set0 mark_ext_patch ,mark 
+0x47cd 010682 bpatch patch1c_2 ,mem_patch1c 
+0x47ce 010683 call hci_get_packet_ptr 
+0x47cf 010684 setarg 0x1ff2f 
+0x47d0 010685 istore 3 ,contwu 
+0x47d1 010686 fetch 6 ,extm_lap 
+0x47d2 010687 istore 6 ,contwu 
+0x47d3 010688 fetch 1 ,extm_fhs_misc 
+0x47d4 010689 copy pdata ,temp 
+0x47d5 010690 rshift3 pdata ,pdata 
+0x47d6 010691 rshift3 pdata ,pdata 
+0x47d7 010692 istore 1 ,contwu 
+0x47d8 010693 copy temp ,pdata 
+0x47d9 010694 and pdata ,0x30 ,pdata 
+0x47da 010695 rshift3 pdata ,pdata 
+0x47db 010696 rshift pdata ,pdata 
+0x47dc 010697 istore 1 ,contwu 
+0x47dd 010698 fetch 3 ,extm_class 
+0x47de 010699 istore 3 ,contwu 
+0x47df 010700 fetch 4 ,mem_clke_bt 
+0x47e0 010701 isub clkn_bt ,pdata 
+0x47e1 010702 istore 2 ,contwu 
+0x47e2 010703 setarg 0xc8 
+0x47e3 010704 istore 1 ,contwu 
+0x47e4 010705 rtn 
+:      010707 hci_send_remote_features:
+0x47e5 010708 set0 mark_ext_patch ,mark 
+0x47e6 010709 bpatch patch1c_3 ,mem_patch1c 
+0x47e7 010710 fetch 1 ,mem_device_option 
+0x47e8 010711 rtnne dvc_op_hci 
+0x47e9 010712 call hci_write_handle3 
+0x47ea 010713 istoret 8 ,contwu 
+0x47eb 010714 force 11 ,loopcnt 
+0x47ec 010715 force hci_event_read_remote_features_complete ,queue 
+0x47ed 010716 branch hci_send_event 
+:      010718 hci_send_remote_ext_features_notification:
+0x47ee 010719 set0 mark_ext_patch ,mark 
+0x47ef 010720 bpatch patch1c_4 ,mem_patch1c 
+0x47f0 010721 fetch 1 ,mem_device_option 
+0x47f1 010722 rtnne dvc_op_hci 
+0x47f2 010724 call hci_get_payload_ptr 
+0x47f3 010725 fetch 6 ,mem_plap 
+0x47f4 010726 istore 6 ,contwu 
+0x47f5 010727 istoret 8 ,contwu 
+0x47f6 010728 force 14 ,loopcnt 
+0x47f7 010729 force hci_event_remote_host_supported_features_notification ,queue 
+0x47f8 010730 branch hci_send_event 
+:      010732 hci_send_remote_ext_features_event:
+0x47f9 010733 set0 mark_ext_patch ,mark 
+0x47fa 010734 bpatch patch1c_5 ,mem_patch1c 
+0x47fb 010735 fetch 1 ,mem_device_option 
+0x47fc 010736 rtnne dvc_op_hci 
+0x47fd 010738 call hci_write_handle3 
+0x47fe 010739 fetch 1 ,mem_ext_features_page 
+0x47ff 010740 istore 1 ,contwu 
+0x4800 010741 setarg 1 
+0x4801 010742 istore 1 ,contwu 
+0x4802 010743 istoret 8 ,contwu 
+0x4803 010744 force 13 ,loopcnt 
+0x4804 010745 force hci_event_read_remote_ext_features_complete ,queue 
+0x4805 010746 branch hci_send_event 
+:      010749 hci_send_version_information:
+0x4806 010750 set0 mark_ext_patch ,mark 
+0x4807 010751 bpatch patch1c_6 ,mem_patch1c 
+0x4808 010752 fetch 1 ,mem_device_option 
+0x4809 010753 rtnne dvc_op_hci 
+0x480a 010754 call hci_write_handle3 
+0x480b 010755 istoret 5 ,contwu 
+0x480c 010756 force 8 ,loopcnt 
+0x480d 010757 force hci_event_read_remote_version_information_complete ,queue 
+0x480e 010758 branch hci_send_event 
+:      010760 hci_send_io_cap_response_event:
+0x480f 010761 set0 mark_ext_patch ,mark 
+0x4810 010762 bpatch patch1c_7 ,mem_patch1c 
+0x4811 010763 fetch 1 ,mem_device_option 
+0x4812 010764 rtnne dvc_op_hci 
+0x4813 010766 call hci_get_payload_ptr 
+0x4814 010767 fetch 6 ,mem_plap 
+0x4815 010768 istore 6 ,contwu 
+0x4816 010769 fetch 3 ,mem_sp_iocap_remote 
+0x4817 010770 istore 3 ,contwu 
+0x4818 010771 force 9 ,loopcnt 
+0x4819 010772 force hci_event_io_cap_response ,queue 
+0x481a 010773 branch hci_send_event 
+:      010775 hci_send_io_cap_req_event:
+0x481b 010776 set0 mark_ext_patch ,mark 
+0x481c 010777 bpatch patch1d_0 ,mem_patch1d 
+0x481d 010778 fetch 1 ,mem_device_option 
+0x481e 010779 rtnne dvc_op_hci 
+0x481f 010781 call hci_get_payload_ptr 
+0x4820 010782 fetch 6 ,mem_plap 
+0x4821 010783 istore 6 ,contwu 
+0x4822 010784 force 6 ,loopcnt 
+0x4823 010785 force hci_event_io_cap_req ,queue 
+0x4824 010786 branch hci_send_event 
+:      010789 hci_send_connection_complete:
+0x4825 010790 force 0 ,temp 
+:      010791 hci_send_connection_error:
+0x4826 010792 set0 mark_ext_patch ,mark 
+0x4827 010793 bpatch patch1d_1 ,mem_patch1d 
+0x4828 010794 fetch 1 ,mem_device_option 
+0x4829 010795 rtnne dvc_op_hci 
+0x482a 010796 force hci_event_connection_complete ,queue 
+0x482b 010797 jam 5 ,mem_acl_credits 
+0x482c 010798 call hci_get_payload_ptr 
+0x482d 010799 istoret 1 ,contwu 
+0x482e 010800 call hci_write_handle 
+0x482f 010801 call hci_write_plap 
+0x4830 010802 force 1 ,pdata 
+0x4831 010803 istore 1 ,contwu 
+0x4832 010804 force 0 ,pdata 
+0x4833 010805 fetcht 1 ,mem_state_map 
+0x4834 010806 isolate1 smap_encryption ,temp 
+0x4835 010807 setflag true ,0 ,pdata 
+0x4836 010808 istore 1 ,contwu 
+0x4837 010809 force 11 ,loopcnt 
+0x4838 010810 branch hci_send_event 
+:      010813 hci_send_conn_req_event:
+0x4839 010814 set0 mark_ext_patch ,mark 
+0x483a 010815 bpatch patch1d_2 ,mem_patch1d 
+0x483b 010816 fetch 1 ,mem_device_option 
+0x483c 010817 rtnne dvc_op_hci 
+0x483d 010818 force hci_event_connection_request ,queue 
+0x483e 010819 call hci_get_payload_ptr 
+0x483f 010820 call hci_write_plap 
+0x4840 010822 fetch 3 ,extm_class 
+0x4841 010823 istore 3 ,contwu 
+0x4842 010824 istoret 1 ,contwu 
+0x4843 010825 force 10 ,loopcnt 
+0x4844 010826 branch hci_send_event 
+:      010828 hci_send_encryption_change:
+0x4845 010829 set0 mark_ext_patch ,mark 
+0x4846 010830 bpatch patch1d_3 ,mem_patch1d 
+0x4847 010831 fetch 1 ,mem_device_option 
+0x4848 010832 rtnne dvc_op_hci 
+0x4849 010833 call hci_write_handle3 
+0x484a 010834 force 0 ,pdata 
+0x484b 010835 fetcht 1 ,mem_state_map 
+0x484c 010836 isolate1 smap_encryption ,temp 
+0x484d 010837 setflag true ,0 ,pdata 
+0x484e 010838 istore 1 ,contwu 
+0x484f 010839 force hci_event_encryption_change_complete ,queue 
+0x4850 010840 force 4 ,loopcnt 
+0x4851 010841 branch hci_send_event 
+:      010844 hci_send_linkkey_notification:
+0x4852 010845 set0 mark_ext_patch ,mark 
+0x4853 010846 bpatch patch1d_4 ,mem_patch1d 
+0x4854 010847 fetch 1 ,mem_device_option 
+0x4855 010848 rtnne dvc_op_hci 
+0x4856 010849 force hci_event_link_key_notification ,queue 
+0x4857 010850 call hci_get_payload_ptr 
+0x4858 010851 call hci_write_plap 
+0x4859 010852 arg mem_link_key ,contr 
+0x485a 010853 force 16 ,loopcnt 
+0x485b 010854 call uart_copy_tx_bytes 
+0x485c 010855 force 0x05 ,pdata 
+0x485d 010856 istore 1 ,contwu 
+0x485e 010857 force 0x17 ,loopcnt 
+0x485f 010858 branch hci_send_event 
+:      010860 hci_send_user_confirmation_req:
+0x4860 010861 fetch 1 ,mem_device_option 
+0x4861 010862 rtnne dvc_op_hci 
+0x4862 010863 force hci_event_user_confirmation_request ,queue 
+0x4863 010864 call hci_get_payload_ptr 
+0x4864 010865 call hci_write_plap 
+0x4865 010866 fetch 4 ,mem_sp_gkey 
+0x4866 010867 istore 4 ,contwu 
+0x4867 010868 force 0xa ,loopcnt 
+0x4868 010869 branch hci_send_event 
+:      010871 hci_send_ssp_complete:
+0x4869 010872 fetch 1 ,mem_device_option 
+0x486a 010873 rtnne dvc_op_hci 
+0x486b 010874 force hci_event_simple_pairing_complete ,queue 
+0x486c 010875 call hci_get_payload_ptr 
+0x486d 010876 setarg 0 
+0x486e 010877 istore 1 ,contwu 
+0x486f 010878 call hci_write_plap 
+0x4870 010879 force 0x7 ,loopcnt 
+0x4871 010880 branch hci_send_event 
+:      010883 hci_send_linkkey_req:
+0x4872 010884 set0 mark_ext_patch ,mark 
+0x4873 010885 bpatch patch1d_5 ,mem_patch1d 
+0x4874 010886 force hci_event_link_key_request ,queue 
+:      010887 hci_send_sec_req:
+0x4875 010888 fetch 1 ,mem_device_option 
+0x4876 010889 rtnne dvc_op_hci 
+0x4877 010890 call hci_get_payload_ptr 
+0x4878 010891 call hci_write_plap 
+0x4879 010892 force 6 ,loopcnt 
+0x487a 010893 branch hci_send_event 
+:      010895 hci_send_pincode_req:
+0x487b 010896 fetch 1 ,mem_device_option 
+0x487c 010897 rtnne dvc_op_hci 
+0x487d 010898 force hci_event_pin_code_request ,queue 
+0x487e 010899 branch hci_send_sec_req 
+:      010902 hci_send_role_change:
+0x487f 010903 fetch 1 ,mem_device_option 
+0x4880 010904 rtnne dvc_op_hci 
+0x4881 010905 force hci_event_role_change ,queue 
+0x4882 010906 call hci_get_payload_ptr 
+0x4883 010907 force 0 ,pdata 
+0x4884 010908 istore 1 ,contwu 
+0x4885 010909 call hci_write_plap 
+0x4886 010910 istoret 1 ,contwu 
+0x4887 010911 force 8 ,loopcnt 
+0x4888 010912 branch hci_send_event 
+:      010914 hci_send_role_change_err:
+0x4889 010915 fetch 1 ,mem_device_option 
+0x488a 010916 rtnne dvc_op_hci 
+0x488b 010917 force 0 ,temp 
+0x488c 010918 nbranch hci_send_role_change_err_slave ,master 
+0x488d 010919 force 1 ,temp 
+:      010920 hci_send_role_change_err_slave:
+0x488e 010921 fetch 1 ,mem_device_option 
+0x488f 010922 rtnne dvc_op_hci 
+0x4890 010923 force hci_event_role_change ,queue 
+0x4891 010924 call hci_get_payload_ptr 
+0x4892 010925 force 0x35 ,pdata 
+0x4893 010926 istore 1 ,contwu 
+0x4894 010927 call hci_write_plap 
+0x4895 010928 istoret 1 ,contwu 
+0x4896 010929 force 8 ,loopcnt 
+0x4897 010930 branch hci_send_event 
+:      010932 hci_send_name:
+0x4898 010933 set0 mark_ext_patch ,mark 
+0x4899 010934 bpatch patch1d_6 ,mem_patch1d 
+0x489a 010935 fetch 1 ,mem_device_option 
+0x489b 010936 rtnne dvc_op_hci 
+0x489c 010937 call hci_get_packet_ptr 
+0x489d 010938 setarg 0xff07 
+0x489e 010939 istore 2 ,contwu 
+0x489f 010940 deposit queue 
+0x48a0 010941 istore 1 ,contwu 
+0x48a1 010942 call hci_write_plap 
+0x48a2 010943 arg mem_tmp_buffer ,contr 
+0x48a3 010944 force 248 ,loopcnt 
+:      010945 hci_read_remote_name_loop:
+0x48a4 010946 ifetch 1 ,contr 
+0x48a5 010947 istore 1 ,contwu 
+0x48a6 010948 loop hci_read_remote_name_loop 
+0x48a7 010949 force 0xff ,loopcnt 
+0x48a8 010950 branch hci_send_event_raw 
+:      010952 hci_send_num_complete_packets:
+0x48a9 010953 set0 mark_ext_patch ,mark 
+0x48aa 010954 bpatch patch1d_7 ,mem_patch1d 
+0x48ab 010955 fetch 1 ,mem_device_option 
+0x48ac 010956 rtnne dvc_op_hci 
+0x48ad 010957 hfetch 1 ,core_uart_txitems 
+0x48ae 010958 nrtn blank 
+0x48af 010959 fetch 1 ,mem_op 
+0x48b0 010960 rtnbit0 op_pkt_comp 
+0x48b1 010961 set0 op_pkt_comp ,pdata 
+0x48b2 010962 store 1 ,mem_op 
+0x48b3 010963 call hci_get_payload_ptr 
+0x48b4 010964 force 1 ,pdata 
+0x48b5 010965 istore 1 ,contwu 
+0x48b6 010966 call hci_write_handle 
+0x48b7 010967 force 1 ,pdata 
+0x48b8 010968 istore 2 ,contwu 
+0x48b9 010969 force hci_event_num_completed_packets ,queue 
+0x48ba 010970 force 5 ,loopcnt 
+0x48bb 010971 branch hci_send_event 
+:      010975 hci_send_auth_complete:
+0x48bc 010976 set0 mark_ext_patch ,mark 
+0x48bd 010977 bpatch patch1e_0 ,mem_patch1e 
+0x48be 010978 fetch 1 ,mem_device_option 
+0x48bf 010979 rtnne dvc_op_hci 
+0x48c0 010980 call hci_write_handle3 
+0x48c1 010981 force hci_event_authentication_complete ,queue 
+0x48c2 010982 force 3 ,loopcnt 
+0x48c3 010983 branch hci_send_event 
+:      010987 hci_send_disconn_complete:
+0x48c4 010988 set0 mark_ext_patch ,mark 
+0x48c5 010989 bpatch patch1e_1 ,mem_patch1e 
+0x48c6 010990 fetch 1 ,mem_device_option 
+0x48c7 010991 rtnne dvc_op_hci 
+0x48c8 010992 call hci_get_payload_ptr 
+0x48c9 010993 force 0 ,pdata 
+0x48ca 010994 istore 1 ,contwu 
+0x48cb 010995 istoret 2 ,contwu 
+0x48cc 010996 fetch 1 ,mem_hci_disconn_reason 
+0x48cd 010997 istore 1 ,contwu 
+0x48ce 010998 force hci_event_disconnection_complete ,queue 
+0x48cf 010999 force 4 ,loopcnt 
+0x48d0 011000 branch hci_send_event 
+:      011003 hci_send_le_adv_report_event:
+0x48d1 011004 set0 mark_ext_patch ,mark 
+0x48d2 011005 bpatch patch1e_2 ,mem_patch1e 
+0x48d3 011006 fetch 1 ,mem_device_option 
+0x48d4 011007 rtnne dvc_op_hci ,pdata 
+0x48d5 011008 call hci_get_payload_ptr 
+0x48d6 011009 setarg 0x0102 
+0x48d7 011010 istore 2 ,contwu 
+0x48d8 011011 fetcht 1 ,mem_le_rxbuf 
+0x48d9 011012 and temp ,0xf ,pdata 
+0x48da 011013 istore 1 ,contwu 
+0x48db 011014 copy rega ,pdata 
+0x48dc 011015 istore 1 ,contwu 
+0x48dd 011016 fetcht 1 ,mem_le_rxbuf + 1 
+0x48de 011017 increase -6 ,temp 
+0x48df 011018 fetch 6 ,mem_le_rxbuf + 2 
+0x48e0 011019 istore 6 ,contwu 
+0x48e1 011020 istoret 1 ,contwu 
+0x48e2 011021 copy temp ,loopcnt 
+0x48e3 011022 call uart_copy_tx_bytes 
+0x48e4 011023 setarg 127 
+0x48e5 011024 istore 1 ,contwu 
+0x48e6 011025 copy temp ,loopcnt 
+0x48e7 011026 add loopcnt ,12 ,loopcnt 
+0x48e8 011027 force hci_event_le_meta_event ,queue 
+0x48e9 011028 branch hci_send_event 
+:      011030 hci_send_le_conn_complete:
+0x48ea 011031 set0 mark_ext_patch ,mark 
+0x48eb 011032 bpatch patch1e_3 ,mem_patch1e 
+0x48ec 011033 fetch 1 ,mem_device_option 
+0x48ed 011034 rtnne dvc_op_hci ,pdata 
+0x48ee 011035 call hci_get_payload_ptr 
+0x48ef 011036 setarg hci_le_subevent_conn_complete 
+0x48f0 011037 istore 1 ,contwu 
+0x48f1 011038 istoret 1 ,contwu 
+0x48f2 011039 fetch 1 ,mem_le_conn_handle 
+0x48f3 011040 istore 2 ,contwu 
+0x48f4 011041 fetch 1 ,mem_le_mode 
+0x48f5 011042 rshift pdata ,pdata 
+0x48f6 011043 setflip 0 ,pdata 
+0x48f7 011044 istore 1 ,contwu 
+0x48f8 011045 fetch 1 ,mem_le_conn_peer_addr_type 
+0x48f9 011046 istore 1 ,contwu 
+0x48fa 011047 fetch 6 ,mem_le_plap 
+0x48fb 011048 istore 6 ,contwu 
+0x48fc 011049 fetch 2 ,mem_le_conn_interval 
+0x48fd 011050 istore 2 ,contwu 
+0x48fe 011051 fetch 2 ,mem_le_slave_latency 
+0x48ff 011052 istore 2 ,contwu 
+0x4900 011053 fetch 2 ,mem_le_superto 
+0x4901 011054 istore 2 ,contwu 
+0x4902 011055 fetch 1 ,mem_le_peer_sca 
+0x4903 011056 istore 1 ,contwu 
+0x4904 011057 force hci_event_le_meta_event ,queue 
+0x4905 011058 arg 19 ,loopcnt 
+0x4906 011059 branch hci_send_event 
+:      011063 hci_send_mode_change:
+0x4907 011064 set0 mark_ext_patch ,mark 
+0x4908 011065 bpatch patch1e_4 ,mem_patch1e 
+0x4909 011066 fetch 1 ,mem_device_option 
+0x490a 011067 rtnne dvc_op_hci 
+0x490b 011069 call hci_get_payload_ptr 
+0x490c 011070 call hci_write_handle3 
+0x490d 011071 istoret 1 ,contwu 
+0x490e 011072 fetch 2 ,mem_tsniff 
+0x490f 011073 rshift pdata ,pdata 
+0x4910 011074 istore 2 ,contwu 
+0x4911 011075 force 6 ,loopcnt 
+0x4912 011076 force hci_event_mode_change ,queue 
+0x4913 011077 branch hci_send_event 
+:      011080 hci_send_sco_complete:
+0x4914 011081 set0 mark_ext_patch ,mark 
+0x4915 011082 bpatch patch1e_5 ,mem_patch1e 
+0x4916 011083 fetch 1 ,mem_device_option 
+0x4917 011084 rtnne dvc_op_hci 
+0x4918 011085 set0 mark_ext_patch ,mark 
+0x4919 011086 bpatch patch1e_6 ,mem_patch1e 
+0x491a 011087 call hci_get_payload_ptr 
+0x491b 011088 istoret 1 ,contwu 
+0x491c 011089 setarg 0xe00 
+0x491d 011090 istore 2 ,contwu 
+0x491e 011091 call hci_write_plap 
+0x491f 011092 force 0 ,pdata 
+0x4920 011093 bmark1 mark_esco ,hci_send_esco 
+0x4921 011094 force 0 ,pdata 
+0x4922 011095 istore 7 ,contwu 
+0x4923 011096 branch hci_send_sco_cont 
+:      011097 hci_send_esco:
+0x4924 011098 fetch 1 ,mem_device_option 
+0x4925 011099 rtnne dvc_op_hci 
+0x4926 011100 setarg 0x020602 
+0x4927 011101 istore 3 ,contwu 
+0x4928 011102 setarg 30 
+0x4929 011103 istore 2 ,contwu 
+0x492a 011104 setarg 30 
+0x492b 011105 istore 2 ,contwu 
+:      011106 hci_send_sco_cont:
+0x492c 011107 fetch 1 ,mem_device_option 
+0x492d 011108 rtnne dvc_op_hci 
+0x492e 011109 fetch 1 ,mem_air_mode 
+0x492f 011110 istore 1 ,contwu 
+0x4930 011111 force hci_event_sco_connection_complete ,queue 
+0x4931 011112 force 17 ,loopcnt 
+0x4932 011113 branch hci_send_event 
+:      011116 hci_command_status:
+0x4933 011117 set0 mark_ext_patch ,mark 
+0x4934 011118 bpatch patch1e_7 ,mem_patch1e 
+0x4935 011119 call hci_get_payload_ptr 
+0x4936 011120 setarg 0x100 
+0x4937 011121 istore 2 ,contwu 
+0x4938 011122 deposit alarm 
+0x4939 011123 istore 2 ,contwu 
+0x493a 011124 force 4 ,loopcnt 
+0x493b 011125 force hci_event_command_status ,queue 
+0x493c 011126 branch hci_send_event 
+:      011128 hci_command_status_err:
+0x493d 011129 set0 mark_ext_patch ,mark 
+0x493e 011130 bpatch patch1f_0 ,mem_patch1f 
+0x493f 011131 call hci_get_payload_ptr 
+0x4940 011132 deposit rega 
+0x4941 011133 istore 1 ,contwu 
+0x4942 011134 setarg 0x01 
+0x4943 011135 istore 1 ,contwu 
+0x4944 011136 deposit alarm 
+0x4945 011137 istore 2 ,contwu 
+0x4946 011138 force 4 ,loopcnt 
+0x4947 011139 force hci_event_command_status ,queue 
+0x4948 011140 branch hci_send_event 
+:      011142 hci_normal_reply:
+0x4949 011143 set0 mark_ext_patch ,mark 
+0x494a 011144 bpatch patch1f_1 ,mem_patch1f 
+0x494b 011145 force 4 ,loopcnt 
+:      011146 hci_command_complete:
+0x494c 011147 call hci_get_payload_ptr 
+0x494d 011148 force 0x1 ,pdata 
+0x494e 011149 istore 1 ,contwu 
+0x494f 011150 deposit alarm 
+0x4950 011151 istore 3 ,contwu 
+0x4951 011152 force hci_event_command_complete ,queue 
+:      011153 hci_send_event:
+0x4952 011154 set0 mark_ext_patch ,mark 
+0x4953 011155 bpatch patch1f_2 ,mem_patch1f 
+0x4954 011156 call hci_get_packet_ptr 
+0x4955 011157 deposit queue 
+0x4956 011158 istore 1 ,contwu 
+0x4957 011159 deposit loopcnt 
+0x4958 011160 istore 1 ,contwu 
+:      011161 hci_send_event_raw:
+0x4959 011162 set1 mark_h5tx_rp ,mark 
+0x495a 011163 force 5 ,queue 
+0x495b 011164 increase 2 ,loopcnt 
+:      011165 hci_send_packet:
+0x495c 011166 call hci_check_bcsp_protocol 
+0x495d 011167 branch bcsp_send_packet ,true 
+0x495e 011168 branch h4_send_packet_event 
+:      011170 hci_send_commu_ready_event:
+0x495f 011171 force hci_event_vendor_specific ,queue 
+0x4960 011172 call hci_get_payload_ptr 
+0x4961 011173 setarg hci_vendor_event_commu_ready 
+0x4962 011174 istore 1 ,contwu 
+0x4963 011175 force 1 ,loopcnt 
+0x4964 011176 branch hci_send_event 
+:      011179 hci_write_plap:
+0x4965 011180 fetch 6 ,mem_plap 
+0x4966 011181 istore 6 ,contwu 
+0x4967 011182 rtn 
+:      011184 hci_write_handle3:
+0x4968 011185 call hci_get_payload_ptr 
+0x4969 011186 force 0 ,pdata 
+0x496a 011187 istore 1 ,contwu 
+:      011188 hci_write_handle:
+0x496b 011189 fetch 1 ,mem_conn_handle 
+0x496c 011190 istore 2 ,contwu 
+0x496d 011191 rtn 
+:      011193 hci_get_cmd_complete_ptr:
+0x496e 011194 force 12 ,contwu 
+0x496f 011195 branch hci_get_tx_ptr 
+:      011197 hci_get_payload_ptr:
+0x4970 011198 force 8 ,contwu 
+0x4971 011199 branch hci_get_tx_ptr 
+:      011201 hci_get_packet_ptr:
+0x4972 011202 force 6 ,contwu 
+:      011203 hci_get_tx_ptr:
+0x4973 011204 call hci_check_bcsp_protocol 
+0x4974 011205 branch bcsp_get_tx_ptr ,true 
+0x4975 011206 branch h4_get_tx_ptr 
+:      011208 uart_copy_tx_bytes:
+0x4976 011209 deposit loopcnt 
+0x4977 011210 rtn blank 
+:      011211 uart_copy_tx_bytes_loop:
+0x4978 011212 ifetch 1 ,contr 
+0x4979 011213 istore 1 ,contwu 
+0x497a 011214 loop uart_copy_tx_bytes_loop 
+0x497b 011215 rtn 
+:      011217 uart_copy_rx_bytes:
+0x497c 011218 deposit loopcnt 
+0x497d 011219 rtn blank 
+:      011220 uart_copy_rx_bytes_loop:
+0x497e 011221 ifetch 1 ,contru 
+0x497f 011222 istore 1 ,contw 
+0x4980 011223 loop uart_copy_rx_bytes_loop 
+0x4981 011224 rtn 
+:      011226 uart_write_bytes:
+0x4982 011227 istore 1 ,contwu 
+0x4983 011228 rshift8 pdata ,pdata 
+0x4984 011229 loop uart_write_bytes 
+0x4985 011230 rtn 
+:      011233 calc_tx_crc16:
+0x4986 011234 pulse crc16 
+0x4987 011235 enable enable_crc 
+:      011236 crcloop:
+0x4988 011237 ifetch 1 ,contwu 
+0x4989 011238 inject bucket ,8 
+0x498a 011239 loop crcloop 
+0x498b 011240 enable enable_parity 
+0x498c 011241 inject bucket ,16 
+0x498d 011242 disable enable_parity 
+0x498e 011243 disable enable_crc 
+0x498f 011244 disable crc16 
+0x4990 011245 byteswap pdata ,pdata 
+0x4991 011246 rtn 
+:      011248 stop_loop:
+0x4992 011249 nop 1 
+0x4993 011250 hjam 1 ,0x8203 
+0x4994 011251 branch stop_loop 
+:      011255 process_cmd:
+0x4995 011256 set0 mark_ext_patch ,mark 
+0x4996 011257 bpatch patch1f_3 ,mem_patch1f 
+0x4997 011258 fetch 1 ,mem_hci_cmd 
+0x4998 011259 rtn blank 
+0x4999 011260 fetch 1 ,mem_lmo_opcode2 
+0x499a 011261 nrtn blank 
+0x499b 011262 call cmd_check_plap 
+0x499c 011263 nbranch process_cmd_conn_handle ,zero 
+0x499d 011264 fetch 1 ,mem_hci_cmd 
+0x499e 011265 beq hci_cmd_remote_name_req ,cmd_namereq 
+0x499f 011266 beq hci_cmd_pair ,cmd_pair 
+0x49a0 011267 beq hci_cmd_nopair ,cmd_nopair 
+0x49a1 011268 beq hci_cmd_linkkey ,cmd_has_key 
+0x49a2 011269 beq hci_cmd_nokey ,cmd_no_key 
+0x49a3 011270 beq hci_cmd_reject_conn ,cmd_disconn 
+0x49a4 011271 beq hci_cmd_role_switch ,cmd_role_switch 
+0x49a5 011272 beq hci_cmd_accept_conn ,cmd_accept_conn 
+0x49a6 011273 beq hci_cmd_accept_with_switch ,cmd_accept_with_switch 
+0x49a7 011274 beq hci_cmd_detach ,cmd_detach 
+0x49a8 011275 beq hci_cmd_in_sniff ,cmd_in_sniff 
+0x49a9 011276 beq hci_cmd_exit_sniff ,cmd_exit_sniff 
+:      011277 process_cmd_conn_handle:
+0x49aa 011278 set0 mark_ext_patch ,mark 
+0x49ab 011279 bpatch patch1f_4 ,mem_patch1f 
+0x49ac 011280 call cmd_check_handle 
+0x49ad 011281 nrtn blank 
+0x49ae 011282 fetch 1 ,mem_hci_cmd 
+0x49af 011283 beq hci_cmd_auth ,cmd_auth 
+0x49b0 011284 beq hci_cmd_startencrypt ,cmd_start_encrypt 
+0x49b1 011285 beq hci_cmd_stopencrypt ,cmd_stop_encrypt 
+0x49b2 011286 beq hci_cmd_setup_sco ,cmd_setup_sco 
+0x49b3 011287 beq hci_cmd_disconn_sco ,cmd_disconn_sco 
+0x49b4 011288 beq hci_cmd_accept_sco_conn ,cmd_accept_sco_conn 
+0x49b5 011289 beq hci_cmd_remote_feature_req ,cmd_feature_req 
+0x49b6 011290 beq hci_cmd_remote_ext_features_req ,cmd_ext_feature_req 
+0x49b7 011291 beq hci_cmd_remote_version_req ,cmd_version_req 
+0x49b8 011292 beq hci_cmd_role_discovery ,cmd_role_discovery 
+0x49b9 011293 beq hci_cmd_io_cap ,cmd_io_cap 
+0x49ba 011294 rtnne hci_cmd_disconn 
+0x49bb 011295 call lmp_disconnect 
+:      011296 cmd_exit:
+0x49bc 011297 jam 0 ,mem_hci_cmd 
+0x49bd 011298 rtn 
+:      011300 cmd_check_plap:
+0x49be 011301 fetch 6 ,mem_hci_plap 
+0x49bf 011302 fetcht 6 ,mem_plap 
+0x49c0 011303 isub temp ,null 
+0x49c1 011304 rtn 
+:      011307 cmd_check_handle:
+0x49c2 011308 fetch 1 ,mem_hci_conn_handle 
+0x49c3 011309 fetcht 1 ,mem_conn_handle 
+0x49c4 011310 isub temp ,pdata 
+0x49c5 011311 rtn 
+:      011313 cmd_accept_conn:
+0x49c6 011314 jam lmp_accepted ,mem_lmo_opcode2 
+0x49c7 011315 jam lmp_host_connection_req ,mem_lmi_opcode2 
+0x49c8 011316 call tid_set_reply 
+0x49c9 011317 branch cmd_exit 
+:      011319 cmd_accept_with_switch:
+0x49ca 011320 branch cmd_accept_sco_conn ,master 
+0x49cb 011321 set1 mark_accept_switch ,mark 
+:      011322 cmd_role_switch:
+0x49cc 011323 jam lmp_slot_offset ,mem_lmo_opcode2 
+0x49cd 011324 set1 mark_switch_initiated ,mark 
+0x49ce 011325 nbranch cmd_exit ,master 
+0x49cf 011326 jam lmp_switch_req ,mem_lmo_opcode2 
+0x49d0 011327 fetch 1 ,mem_connection_options 
+0x49d1 011328 set0 connection_switch ,pdata 
+0x49d2 011329 store 1 ,mem_connection_options 
+0x49d3 011330 branch cmd_exit 
+:      011333 cmd_namereq:
+0x49d4 011334 jam lmp_name_req ,mem_lmo_opcode2 
+0x49d5 011335 jam 0 ,mem_name_offset 
+0x49d6 011336 branch cmd_exit 
+:      011339 cmd_ssp:
+0x49d7 011340 jam sp_flag_commit ,mem_master_sp_flag 
+0x49d8 011341 jam sp_master_stat_start_skip ,mem_master_sp_state 
+0x49d9 011342 branch cmd_exit 
+:      011344 cmd_pair:
+0x49da 011345 fetch 1 ,mem_op 
+0x49db 011346 bbit1 op_inrand_req ,cmd_pair_passive 
+0x49dc 011347 call tid_initiate 
+0x49dd 011348 jam lmp_in_rand ,mem_lmo_opcode2 
+0x49de 011349 branch cmd_exit 
+:      011350 cmd_pair_passive:
+0x49df 011351 set0 op_inrand_req ,pdata 
+0x49e0 011352 store 1 ,mem_op 
+0x49e1 011353 call lmp_accept_inrand 
+0x49e2 011354 setarg 0 
+0x49e3 011355 setflag master ,smap_lmptid ,pdata 
+0x49e4 011356 store 1 ,mem_lmo_tid2 
+0x49e5 011357 branch cmd_exit 
+:      011359 cmd_nopair:
+0x49e6 011360 jam pairing_not_allowed ,mem_disconn_reason_send 
+0x49e7 011361 jam lmp_detach ,mem_lmo_opcode2 
+0x49e8 011362 fetch 1 ,mem_state 
+0x49e9 011363 bbit1 state_inconn ,cmd_exit 
+0x49ea 011364 force hci_error_pairing_not_allowed ,temp 
+0x49eb 011365 call hci_send_connection_error 
+0x49ec 011366 branch cmd_exit 
+:      011369 cmd_has_key:
+0x49ed 011370 call linkkey_set 
+0x49ee 011371 fetch 1 ,mem_op 
+0x49ef 011372 bbit1 op_auth_req ,cmd_send_aurand 
+0x49f0 011373 bbit1 op_send_sres ,cmd_send_sres 
+0x49f1 011374 bbit1 op_inrand_req ,cmd_pair_passive 
+0x49f2 011375 branch cmd_exit 
+:      011376 cmd_send_sres:
+0x49f3 011377 set0 op_send_sres ,pdata 
+0x49f4 011378 store 1 ,mem_op 
+0x49f5 011379 jam lmp_sres ,mem_lmo_opcode2 
+0x49f6 011380 branch cmd_exit 
+:      011382 cmd_no_key:
+0x49f7 011383 fetch 1 ,mem_op 
+0x49f8 011384 bbit1 op_send_sres ,cmd_no_key_reject 
+0x49f9 011385 call hci_send_pincode_req 
+0x49fa 011386 branch cmd_exit 
+:      011387 cmd_no_key_reject:
+0x49fb 011388 set0 op_send_sres ,pdata 
+0x49fc 011389 store 1 ,mem_op 
+0x49fd 011390 jam lmp_not_accepted ,mem_lmo_opcode2 
+0x49fe 011391 jam lmp_au_rand ,mem_lmi_opcode2 
+0x49ff 011392 jam key_missing ,mem_lmo_reason2 
+0x4a00 011393 branch cmd_exit 
+:      011396 cmd_auth:
+0x4a01 011397 fetch 1 ,mem_op 
+0x4a02 011398 set1 op_auth_req ,pdata 
+0x4a03 011399 store 1 ,mem_op 
+0x4a04 011400 fetch 1 ,mem_state 
+0x4a05 011401 bbit1 state_linkkey ,cmd_auth_sendaurand 
+0x4a06 011402 call hci_send_linkkey_req 
+0x4a07 011403 branch cmd_exit 
+:      011405 cmd_send_aurand:
+:      011406 cmd_auth_sendaurand:
+0x4a08 011407 call tid_initiate 
+0x4a09 011408 jam lmp_au_rand ,mem_lmo_opcode2 
+0x4a0a 011409 branch cmd_exit 
+:      011411 cmd_start_encrypt:
+0x4a0b 011412 jam lmp_encryption_mode_req ,mem_lmo_opcode2 
+0x4a0c 011413 branch cmd_exit 
+:      011415 cmd_stop_encrypt:
+0x4a0d 011416 jam lmp_encryption_mode_req ,mem_lmo_opcode2 
+0x4a0e 011417 branch cmd_exit 
+:      011419 cmd_feature_req:
+0x4a0f 011420 set0 mark_ext_patch ,mark 
+0x4a10 011421 bpatch patch1f_5 ,mem_patch1f 
+0x4a11 011422 jam lmp_features_req ,mem_lmo_opcode2 
+0x4a12 011423 jam hci_cmd_wait_remote_feature ,mem_hci_cmd 
+0x4a13 011424 rtn 
+:      011426 cmd_ext_feature_req:
+0x4a14 011427 jam lmp_ext_features_req ,mem_lmo_opcode2 
+0x4a15 011428 jam hci_cmd_wait_remote_ext_feature ,mem_hci_cmd 
+0x4a16 011429 rtn 
+:      011431 cmd_version_req:
+0x4a17 011432 jam lmp_version_req ,mem_lmo_opcode2 
+0x4a18 011433 branch cmd_exit 
+:      011435 cmd_in_sniff:
+0x4a19 011436 jam lmp_sniff_req ,mem_lmo_opcode2 
+0x4a1a 011437 arg mem_sniff_payload ,contw 
+0x4a1b 011438 setarg 0 
+0x4a1c 011439 isolate1 27 ,clke_bt 
+0x4a1d 011440 setflag true ,1 ,pdata 
+0x4a1e 011441 istore 1 ,contw 
+0x4a1f 011442 setarg 0 
+0x4a20 011443 istore 2 ,contw 
+0x4a21 011444 fetch 2 ,mem_sniff_param_interval 
+0x4a22 011445 istore 2 ,contw 
+0x4a23 011446 fetch 1 ,mem_sniff_param_attempt 
+0x4a24 011447 istore 2 ,contw 
+0x4a25 011448 fetch 1 ,mem_sniff_param_timeout 
+0x4a26 011449 istore 2 ,contw 
+0x4a27 011450 branch cmd_exit 
+:      011452 cmd_exit_sniff:
+0x4a28 011453 jam lmp_unsniff_req ,mem_lmo_opcode2 
+0x4a29 011454 branch cmd_exit 
+:      011456 cmd_setup_sco:
+0x4a2a 011457 call new_conn_handle 
+0x4a2b 011458 store 1 ,mem_sco_handle 
+0x4a2c 011459 fetch 1 ,mem_conn_handle 
+0x4a2d 011460 store 1 ,mem_sco_asso_handle 
+0x4a2e 011461 jam lmp_sco_link_req ,mem_lmo_opcode2 
+0x4a2f 011462 set1 mark_esco ,mark 
+0x4a30 011463 jam lmp_ext_esco_link_req ,mem_lmo_opcode2 
+0x4a31 011464 branch cmd_exit 
+:      011466 cmd_disconn:
+0x4a32 011467 call lmp_disconnect 
+0x4a33 011468 branch cmd_exit 
+:      011470 cmd_disconn_sco:
+0x4a34 011471 jam lmp_remove_sco_link_req ,mem_lmo_opcode2 
+0x4a35 011472 bmark0 mark_esco ,cmd_exit 
+0x4a36 011473 jam lmp_ext_remove_esco_req ,mem_lmo_opcode2 
+0x4a37 011474 branch cmd_exit 
+:      011476 cmd_accept_sco_conn:
+0x4a38 011477 branch cmd_accept_sco_conn_master ,master 
+0x4a39 011478 jam lmp_accepted ,mem_lmo_opcode2 
+0x4a3a 011479 jam lmp_sco_link_req ,mem_lmi_opcode2 
+0x4a3b 011480 bmark0 mark_esco ,cmd_exit 
+0x4a3c 011481 fetch 1 ,mem_esco_type 
+0x4a3d 011482 bne type_hv3 ,parse_lmpext_esco_link_req_change_param 
+0x4a3e 011483 jam lmp_ext_accepted ,mem_lmo_opcode2 
+0x4a3f 011484 jam lmp_ext_esco_link_req ,mem_lmi_opcode2 
+0x4a40 011485 branch cmd_exit 
+:      011486 cmd_accept_sco_conn_master:
+0x4a41 011487 call new_conn_handle 
+0x4a42 011488 store 1 ,mem_sco_handle 
+0x4a43 011489 fetch 1 ,mem_conn_handle 
+0x4a44 011490 store 1 ,mem_sco_asso_handle 
+0x4a45 011491 jam lmp_sco_link_req ,mem_lmo_opcode2 
+0x4a46 011492 bmark0 mark_esco ,cmd_exit 
+0x4a47 011493 branch parse_lmpext_esco_link_req_change_param 
+:      011496 cmd_role_discovery:
+0x4a48 011497 call hci_get_cmd_complete_ptr 
+0x4a49 011498 call hci_write_handle 
+0x4a4a 011499 force 0 ,pdata 
+0x4a4b 011500 nsetflag master ,0 ,pdata 
+0x4a4c 011501 istore 1 ,contwu 
+0x4a4d 011502 force 7 ,loopcnt 
+0x4a4e 011503 arg 0x809 ,alarm 
+0x4a4f 011504 call hci_command_complete 
+0x4a50 011505 branch cmd_exit 
+:      011507 cmd_io_cap:
+0x4a51 011508 jam lmp_io_cap_res ,mem_lmo_opcode2 
+0x4a52 011509 branch cmd_exit 
+:      011511 cmd_detach:
+0x4a53 011512 jam lmp_detach ,mem_lmo_opcode2 
+0x4a54 011513 jam other_end_terminated ,mem_disconn_reason_send 
+0x4a55 011514 branch cmd_exit 
+:      011519 process_hci_patch:
+0x4a56 011520 jam 0 ,mem_check_sum 
+0x4a57 011523 ifetch 1 ,contru 
+0x4a58 011524 store 1 ,mem_ucode_id_remote 
+0x4a59 011525 call hci_ucode_checksum_add 
+0x4a5a 011527 call push_stack 
+0x4a5b 011528 fetch 1 ,mem_ucode_id_remote 
+0x4a5c 011529 copy pdata ,temp 
+0x4a5d 011530 fetch 1 ,mem_ucode_id_local 
+0x4a5e 011531 increase 1 ,pdata 
+0x4a5f 011532 icompare 0xff ,temp 
+0x4a60 011533 nbranch hci_nak_ucode_with_stack ,true 
+0x4a61 011534 store 1 ,mem_ucode_id_local 
+0x4a62 011535 call pop_stack 
+0x4a63 011537 ifetch 1 ,contru 
+0x4a64 011538 beq 0x01 ,hci_enable_ucode_load 
+0x4a65 011539 beq 0x02 ,process_hci_ucode 
+0x4a66 011540 beq 0x03 ,hci_disable_ucode_load 
+0x4a67 011541 beq 0x05 ,process_hci_n_sched_data 
+0x4a68 011542 beq 0x06 ,hci_write_register 
+0x4a69 011543 beq 0x07 ,hci_read_register 
+0x4a6a 011544 beq 0x08 ,hci_enable_ucode 
+0x4a6b 011545 beq 0x09 ,hci_soft_branch 
+0x4a6c 011546 rtn 
+:      011547 hci_ucode_checksum_add:
+0x4a6d 011548 copy pdata ,temp 
+0x4a6e 011549 call push_stack 
+0x4a6f 011550 fetch 1 ,mem_check_sum 
+0x4a70 011551 iadd temp ,pdata 
+0x4a71 011552 store 1 ,mem_check_sum 
+0x4a72 011553 branch pop_stack 
+:      011556 hci_ack_ucode:
+0x4a73 011557 force 1 ,pdata 
+0x4a74 011558 call uart_send_byte 
+0x4a75 011559 fetch 1 ,mem_ucode_id_local 
+0x4a76 011560 branch uart_send_byte 
+:      011562 hci_nak_ucode_with_stack:
+0x4a77 011563 call pop_stack 
+0x4a78 011564 branch hci_nak_ucode_ucode_id 
+:      011565 hci_nak_ucode:
+0x4a79 011566 fetch 1 ,mem_ucode_id_local 
+0x4a7a 011567 increase -1 ,pdata 
+0x4a7b 011568 store 1 ,mem_ucode_id_local 
+:      011569 hci_nak_ucode_ucode_id:
+0x4a7c 011570 force 0 ,pdata 
+0x4a7d 011571 call uart_send_byte 
+0x4a7e 011572 fetch 1 ,mem_ucode_id_local 
+0x4a7f 011573 branch uart_send_byte 
+:      011575 hci_write_register:
+0x4a80 011576 call hci_ucode_checksum_add 
+0x4a81 011577 ifetch 1 ,contru 
+0x4a82 011578 store 1 ,mem_ucode_temp 
+0x4a83 011579 call hci_ucode_checksum_add 
+0x4a84 011580 ifetch 1 ,contru 
+0x4a85 011581 lshift8 pdata ,contw 
+0x4a86 011582 call hci_ucode_checksum_add 
+0x4a87 011583 fetch 1 ,mem_ucode_temp 
+0x4a88 011584 iadd contw ,contw 
+0x4a89 011585 ifetch 1 ,contru 
+0x4a8a 011586 istore 1 ,contw 
+0x4a8b 011587 call hci_ucode_checksum_add 
+0x4a8c 011588 ifetch 1 ,contru 
+0x4a8d 011589 call hci_ucode_checksum_add 
+0x4a8e 011590 fetch 1 ,mem_check_sum 
+0x4a8f 011591 bne 0xff ,hci_nak_ucode 
+0x4a90 011592 branch hci_ack_ucode 
+:      011594 hci_read_register:
+0x4a91 011595 call hci_ucode_checksum_add 
+0x4a92 011596 ifetch 1 ,contru 
+0x4a93 011597 store 1 ,mem_ucode_temp 
+0x4a94 011598 call hci_ucode_checksum_add 
+0x4a95 011599 ifetch 1 ,contru 
+0x4a96 011600 store 1 ,mem_ucode_temp1 
+0x4a97 011601 call hci_ucode_checksum_add 
+0x4a98 011602 ifetch 1 ,contru 
+0x4a99 011603 call hci_ucode_checksum_add 
+0x4a9a 011604 fetch 1 ,mem_check_sum 
+0x4a9b 011605 bne 0xff ,hci_nak_ucode 
+0x4a9c 011607 fetch 1 ,mem_ucode_temp1 
+0x4a9d 011608 lshift8 pdata ,temp 
+0x4a9e 011609 fetch 1 ,mem_ucode_temp 
+0x4a9f 011610 iadd temp ,contru 
+0x4aa0 011611 ifetch 1 ,contru 
+0x4aa1 011612 store 1 ,mem_ucode_temp 
+:      011613 hci_read_register_ack:
+0x4aa2 011614 force 1 ,pdata 
+0x4aa3 011615 call uart_send_byte 
+0x4aa4 011616 fetch 1 ,mem_ucode_temp 
+0x4aa5 011617 call uart_send_byte 
+0x4aa6 011618 jam 0xff ,mem_ucode_id_local 
+0x4aa7 011619 rtn 
+:      011621 hci_enable_ucode:
+0x4aa8 011622 call hci_ucode_checksum_add 
+0x4aa9 011623 ifetch 1 ,contru 
+0x4aaa 011624 call hci_ucode_checksum_add 
+0x4aab 011625 fetch 1 ,mem_check_sum 
+0x4aac 011626 bne 0xff ,hci_nak_ucode 
+0x4aad 011627 branch hci_ack_ucode 
+:      011629 process_hci_ucode:
+0x4aae 011630 call hci_ucode_checksum_add 
+0x4aaf 011631 ifetch 1 ,contru 
+0x4ab0 011632 hstore 1 ,core_ucode_low 
+0x4ab1 011633 call hci_ucode_checksum_add 
+0x4ab2 011634 ifetch 1 ,contru 
+0x4ab3 011635 set1 7 ,pdata 
+0x4ab4 011636 hstore 1 ,core_ucode_ctrl 
+0x4ab5 011637 set0 7 ,pdata 
+0x4ab6 011638 call hci_ucode_checksum_add 
+0x4ab7 011639 ifetch 1 ,contru 
+0x4ab8 011640 copy pdata ,loopcnt 
+0x4ab9 011641 call hci_ucode_checksum_add 
+:      011642 write_ucode_loop:
+0x4aba 011643 ifetch 1 ,contru 
+0x4abb 011644 hstore 1 ,core_ucode_data 
+0x4abc 011645 call hci_ucode_checksum_add 
+0x4abd 011646 loop write_ucode_loop 
+0x4abe 011647 ifetch 1 ,contru 
+0x4abf 011648 call hci_ucode_checksum_add 
+0x4ac0 011649 fetch 1 ,mem_check_sum 
+0x4ac1 011650 bne 0xff ,hci_nak_ucode 
+0x4ac2 011651 branch hci_ack_ucode 
+:      011653 process_hci_n_sched_data:
+0x4ac3 011654 call hci_ucode_checksum_add 
+0x4ac4 011655 ifetch 1 ,contru 
+0x4ac5 011656 store 1 ,mem_ucode_temp 
+0x4ac6 011657 call hci_ucode_checksum_add 
+0x4ac7 011658 ifetch 1 ,contru 
+0x4ac8 011659 lshift8 pdata ,contw 
+0x4ac9 011660 call hci_ucode_checksum_add 
+0x4aca 011661 fetch 1 ,mem_ucode_temp 
+0x4acb 011662 iadd contw ,contw 
+0x4acc 011663 ifetch 1 ,contru 
+0x4acd 011664 iforce loopcnt 
+0x4ace 011665 call hci_ucode_checksum_add 
+:      011666 process_hci_n_sched_loop:
+0x4acf 011667 ifetch 1 ,contru 
+0x4ad0 011668 istore 1 ,contw 
+0x4ad1 011669 call hci_ucode_checksum_add 
+0x4ad2 011670 loop process_hci_n_sched_loop 
+0x4ad3 011671 ifetch 1 ,contru 
+0x4ad4 011672 call hci_ucode_checksum_add 
+0x4ad5 011673 fetch 1 ,mem_check_sum 
+0x4ad6 011674 bne 0xff ,hci_nak_ucode 
+0x4ad7 011675 branch hci_ack_ucode 
+:      011679 hci_enable_ucode_load:
+0x4ad8 011680 call hci_ucode_checksum_add 
+0x4ad9 011681 ifetch 1 ,contru 
+0x4ada 011682 call hci_ucode_checksum_add 
+0x4adb 011683 fetch 1 ,mem_check_sum 
+0x4adc 011684 bne 0xff ,hci_nak_ucode 
+0x4add 011685 hjam 0x80 ,core_ucode_ctrl 
+0x4ade 011686 branch hci_ack_ucode 
+:      011688 hci_disable_ucode_load:
+0x4adf 011689 call hci_ucode_checksum_add 
+0x4ae0 011690 ifetch 1 ,contru 
+0x4ae1 011691 call hci_ucode_checksum_add 
+0x4ae2 011692 fetch 1 ,mem_check_sum 
+0x4ae3 011693 bne 0xff ,hci_nak_ucode 
+0x4ae4 011694 hjam 0 ,core_ucode_ctrl 
+0x4ae5 011695 branch hci_ack_ucode 
+:      011697 hci_soft_branch:
+0x4ae6 011698 call hci_ucode_checksum_add 
+0x4ae7 011699 ifetch 1 ,contru 
+0x4ae8 011700 call hci_ucode_checksum_add 
+0x4ae9 011701 fetch 1 ,mem_check_sum 
+0x4aea 011702 bne 0xff ,hci_nak_ucode 
+0x4aeb 011703 call hci_ack_ucode 
+0x4aec 011704 branch soft_reset 
+:      011707 hci_idle_dispatch:
+0x4aed 011708 call gpio_check_uart_state 
+0x4aee 011709 rtn true 
+0x4aef 011710 arg uart_wakeup_rx ,temp 
+0x4af0 011711 call gpio_get_bit 
+0x4af1 011712 nbranch uart_wake_up ,true 
+0x4af2 011713 jam hci_rx_wake ,mem_hci_lt_rx_state 
+0x4af3 011714 rtn 
+:      011715 uart_wake_up:
+0x4af4 011716 fetch 1 ,mem_hci_lt_rx_state 
+0x4af5 011717 rtnne hci_rx_wake 
+0x4af6 011718 call hci_exit_lpm 
+0x4af7 011719 branch hci_send_commu_ready_event 
+:      011733 hid_rx_process:
+0x4af8 011734 set1 mark_ext_patch ,mark 
+0x4af9 011735 bpatch patch33_4 ,mem_patch33 
+0x4afa 011736 fetch 2 ,mem_l2cap_payload_ptr 
+0x4afb 011737 copy pdata ,contr 
+0x4afc 011738 ifetch 1 ,contr 
+0x4afd 011739 and pdata ,0x0f ,temp 
+0x4afe 011740 rshift4 pdata ,pdata 
+0x4aff 011741 beq hid_type_set_idle ,hid_rx_process_handshake 
+0x4b00 011742 beq hid_type_set_protocol ,hid_rx_process_handshake 
+0x4b01 011743 beq hid_type_data ,hid_rx_process_data 
+0x4b02 011744 beq hid_type_set_report ,hid_rx_process_set_report 
+0x4b03 011745 beq hid_type_control ,hid_rx_process_hid_control 
+0x4b04 011746 rtn 
+:      011748 hid_rx_process_hid_control:
+0x4b05 011749 copy temp ,pdata 
+0x4b06 011750 beq hid_control_p_virtualcableunplug ,hid_rx_process_virtual_cable_unplug 
+0x4b07 011751 beq hid_control_p_suspend ,hid_rx_process_suspend 
+0x4b08 011752 rtn 
+:      011754 hid_rx_process_virtual_cable_unplug:
+0x4b09 011755 jam bt_evt_virtual_cable_unplug ,mem_fifo_temp 
+0x4b0a 011756 call ui_ipc_send_event 
+0x4b0b 011757 fetch 1 ,mem_device_option 
+0x4b0c 011758 rtnne dvc_op_mouse ,pdata 
+0x4b0d 011759 copy temp ,pdata 
+0x4b0e 011760 beq hid_control_p_virtualcableunplug ,eeprom_erase_reconn_info 
+0x4b0f 011761 rtn 
+:      011762 hid_rx_process_suspend:
+0x4b10 011763 rtn 
+:      011765 hid_rx_process_set_report:
+0x4b11 011766 arg 0x01 ,rega 
+0x4b12 011767 call hid_malloc_tx_buff 
+0x4b13 011768 fetch 2 ,mem_hid_ctrl_remote_cid 
+0x4b14 011769 istore 2 ,contw 
+0x4b15 011770 setarg 0x00 
+0x4b16 011771 istore 1 ,contw 
+0x4b17 011772 rtn 
+:      011774 hid_rx_process_handshake:
+0x4b18 011775 arg 1 ,rega 
+0x4b19 011776 call hid_malloc_tx_buff 
+0x4b1a 011777 fetch 2 ,mem_hid_ctrl_remote_cid 
+0x4b1b 011778 istore 2 ,contw 
+0x4b1c 011779 setarg 0 
+0x4b1d 011780 istore 1 ,contw 
+0x4b1e 011781 jam 1 ,mem_ui_data_txbuff_length 
+0x4b1f 011782 fetch 1 ,mem_hid_control_state 
+0x4b20 011783 set1 l2cap_channel_hid_handshake_done 
+0x4b21 011784 store 1 ,mem_hid_control_state 
+:      011785 hid_handshake_event:
+0x4b22 011786 jam bt_evt_hid_handshake ,mem_fifo_temp 
+0x4b23 011787 branch ui_ipc_send_event 
+:      011789 hid_rx_process_data:
+0x4b24 011790 ifetch 1 ,contr 
+0x4b25 011791 beq hid_report_id_kb ,hid_rx_process_data_hid_kb 
+0x4b26 011792 rtn 
+:      011794 hid_rx_process_data_hid_kb:
+0x4b27 011795 copy contr ,rega 
+0x4b28 011796 fetch 1 ,mem_device_option 
+0x4b29 011797 rtnne dvc_op_kb ,pdata 
+0x4b2a 011798 copy rega ,contr 
+0x4b2b 011799 branch kb_process_kb_report 
+:      011801 hid_malloc_tx_buff:
+0x4b2c 011802 call l2cap_malloc 
+0x4b2d 011803 copy rega ,temp 
+0x4b2e 011804 storet 1 ,mem_ui_data_txbuff_length 
+0x4b2f 011805 copy pdata ,contw 
+0x4b30 011806 copy rega ,pdata 
+0x4b31 011807 istore 2 ,contw 
+0x4b32 011808 rtn 
+:      011811 le_ir_init:
+0x4b33 011812 setarg le_ir 
+0x4b34 011813 store 2 ,mem_cb_le_process 
+0x4b35 011814 setarg le_ir_wcb 
+0x4b36 011815 store 2 ,mem_cb_att_write 
+0x4b37 011816 call eeprom_load_reconn_info 
+0x4b38 011817 call le_init_att 
+0x4b39 011818 hjam 158 ,core_pwm_ncnt0 
+0x4b3a 011819 hjam 8 ,core_gpio_sel1 
+0x4b3b 011820 hjam 5 ,core_gpio_out1 
+0x4b3c 011821 setarg -1 
+0x4b3d 011822 set0 1 ,pdata 
+0x4b3e 011823 set0 21 ,pdata 
+0x4b3f 011824 hstore 4 ,core_gpio_oe0 
+0x4b40 011825 hjam 2 ,core_gpio_pu0 
+0x4b41 011826 rtn wake 
+0x4b42 011827 jam 1 ,mem_le_adv_enable 
+0x4b43 011828 rtn 
+:      011831 le_ir_wcb:
+0x4b44 011832 ifetch 1 ,rega 
+0x4b45 011833 store 1 ,mem_ir_cmd 
+0x4b46 011834 beq ircmd_write_pulse ,le_ir_write_pulse 
+0x4b47 011835 beq ircmd_write_seq ,le_ir_write_seq 
+0x4b48 011836 beq ircmd_write_next ,le_ir_write_next 
+0x4b49 011837 beq ircmd_screen_on ,le_ir_screen_on 
+0x4b4a 011838 beq ircmd_screen_off ,le_ir_screen_off 
+0x4b4b 011839 rtnne ircmd_play 
+0x4b4c 011840 ifetch 1 ,contr 
+0x4b4d 011841 store 1 ,mem_ir_play_count 
+0x4b4e 011842 rtn 
+:      011844 le_ir_write_pulse:
+0x4b4f 011845 arg mem_ir_pulse_zero ,contw 
+0x4b50 011846 branch le_ir_write 
+:      011848 le_ir_write_seq:
+0x4b51 011849 arg mem_ir_sequence_len ,contw 
+0x4b52 011850 branch le_ir_write 
+:      011852 le_ir_write_next:
+0x4b53 011853 fetch 2 ,mem_ir_ptr 
+0x4b54 011854 iforce contw 
+:      011856 le_ir_write:
+0x4b55 011857 arg 19 ,loopcnt 
+0x4b56 011858 call memcpy 
+0x4b57 011859 deposit contw 
+0x4b58 011860 store 2 ,mem_ir_ptr 
+0x4b59 011861 jam 0 ,mem_ir_cmd 
+0x4b5a 011862 rtn 
+:      011866 le_ir:
+0x4b5b 011867 fetch 1 ,mem_ir_cmd 
+0x4b5c 011868 beq ircmd_record ,le_ir_start_record 
+0x4b5d 011869 beq ircmd_play ,le_ir_play 
+0x4b5e 011870 beq ircmd_report_pulse ,le_ir_report 
+0x4b5f 011871 beq ircmd_report_seq ,le_ir_report 
+0x4b60 011872 beq ircmd_report_raw ,le_ir_report 
+0x4b61 011873 beq ircmd_test_play ,le_ir_play 
+0x4b62 011874 beq ircmd_test_rec ,le_ir_rec 
+0x4b63 011875 rtn 
+:      011877 le_ir_screen_on:
+0x4b64 011878 jam 0 ,mem_lpm_mult 
+0x4b65 011879 jam 0 ,mem_ir_cmd 
+0x4b66 011880 rtn 
+:      011881 le_ir_screen_off:
+0x4b67 011882 jam 30 ,mem_lpm_mult 
+0x4b68 011883 jam 0 ,mem_ir_cmd 
+0x4b69 011884 rtn 
+:      011888 le_ir_rec:
+0x4b6a 011889 jam 0 ,mem_ir_cmd 
+0x4b6b 011890 arg 0xfffff ,stop_watch 
+0x4b6c 011891 call ir_record 
+0x4b6d 011892 rtn 
+:      011894 le_ir_next_anchor:
+0x4b6e 011895 fetcht 2 ,mem_le_tsniff 
+0x4b6f 011896 iadd temp ,pdata 
+0x4b70 011897 store 4 ,mem_le_anchor 
+:      011898 le_ir_start_record:
+0x4b71 011899 fetch 4 ,mem_le_anchor 
+0x4b72 011900 isub clke_bt ,pdata 
+0x4b73 011901 nbranch le_ir_next_anchor ,positive 
+0x4b74 011902 rshift pdata ,stop_watch 
+0x4b75 011903 call ir_record 
+0x4b76 011904 rtn blank 
+0x4b77 011905 jam ircmd_report_raw ,mem_ir_cmd 
+0x4b78 011906 arg mem_ir_record ,temp 
+0x4b79 011907 storet 2 ,mem_ir_ptr 
+:      011909 le_ir_report:
+0x4b7a 011910 call le_xtype_fifo_is_full 
+0x4b7b 011911 nrtn blank 
+0x4b7c 011912 jam notify_handle ,mem_le_notify_handle 
+0x4b7d 011913 jam attop_handle_value_notification ,mem_fifo_temp 
+0x4b7e 011914 call le_xtype_fifo_in 
+0x4b7f 011915 fetch 2 ,mem_le_notify_attr_start 
+0x4b80 011916 iforce contw 
+0x4b81 011917 fetch 2 ,mem_ir_ptr 
+0x4b82 011918 iforce contr 
+0x4b83 011919 arg 20 ,loopcnt 
+0x4b84 011920 call memcpy 
+0x4b85 011921 deposit contr 
+0x4b86 011922 store 2 ,mem_ir_ptr 
+0x4b87 011923 fetch 2 ,mem_ir_report_len 
+0x4b88 011924 increase -20 ,pdata 
+0x4b89 011925 store 2 ,mem_ir_report_len 
+0x4b8a 011926 rtn positive 
+0x4b8b 011927 jam 0 ,mem_ir_cmd 
+0x4b8c 011928 rtn 
+:      011931 le_ir_play:
+0x4b8d 011932 fetch 1 ,mem_ir_play_count 
+0x4b8e 011933 call ir_play 
+0x4b8f 011934 jam 0 ,mem_ir_cmd 
+0x4b90 011935 rtn 
+:      011938 ir_record:
+0x4b91 011939 call ir_receive 
+0x4b92 011940 setarg mem_ir_record 
+0x4b93 011941 isub contw ,pdata 
+0x4b94 011942 sub pdata ,0 ,pdata 
+0x4b95 011943 store 2 ,mem_ir_report_len 
+0x4b96 011944 rtn 
+:      011948 ir_receive:
+0x4b97 011949 disable swfine 
+0x4b98 011950 arg mem_ir_record ,contw 
+:      011951 ir_receive_waitsync:
+0x4b99 011952 rtn timeout 
+0x4b9a 011953 hfetch 1 ,core_gpio_in + 2 
+0x4b9b 011954 bbit0 5 ,ir_receive_waitsync 
+0x4b9c 011955 copy clkn ,temp 
+0x4b9d 011956 arg 0x80 ,loopcnt 
+0x4b9e 011957 call memset0 
+0x4b9f 011958 arg mem_ir_record ,contw 
+0x4ba0 011959 arg 0x0 ,regc 
+:      011960 ir_receive_loop:
+0x4ba1 011961 arg 180 ,stop_watch 
+:      011962 ir_receive_waitedge:
+0x4ba2 011963 rtn timeout 
+0x4ba3 011964 hfetch 1 ,core_gpio_in + 2 
+0x4ba4 011965 ixor regc ,pdata 
+0x4ba5 011966 bbit1 5 ,ir_receive_waitedge 
+0x4ba6 011967 copy clkn ,pdata 
+0x4ba7 011968 iforce alarm 
+0x4ba8 011969 call clk_diff_rt 
+0x4ba9 011970 sub pdata ,0xff ,null 
+0x4baa 011971 branch ir_receive_waitedge ,positive 
+0x4bab 011972 isolate0 5 ,regc 
+0x4bac 011973 setflag true ,23 ,pdata 
+0x4bad 011974 istore 3 ,contw 
+0x4bae 011975 rshift8 contw ,pdata 
+0x4baf 011976 rtneq mem_ir_record_max 
+0x4bb0 011977 copy alarm ,temp 
+0x4bb1 011978 xor_into 0x20 ,regc 
+0x4bb2 011979 branch ir_receive_loop 
+:      011983 ir_get_next_seq:
+0x4bb3 011984 branch ir_get_next_seq_saved ,user 
+0x4bb4 011985 branch ir_get_next_encoded ,user2 
+:      011986 ir_get_next_seq_fetch:
+0x4bb5 011987 arg mem_ir_sequence ,temp 
+0x4bb6 011988 fetch 1 ,mem_ir_sequence_len 
+0x4bb7 011989 iadd temp ,pdata 
+0x4bb8 011990 isub rega ,null 
+0x4bb9 011991 branch ir_get_next_seq_exit ,zero 
+0x4bba 011992 ifetch 1 ,rega 
+0x4bbb 011993 copy contr ,rega 
+0x4bbc 011994 bbit0 7 ,ir_get_next_cont 
+0x4bbd 011995 enable user2 
+0x4bbe 011996 and pdata ,0x7f ,regb 
+0x4bbf 011997 lshift3 rega ,rega 
+0x4bc0 011998 branch ir_get_next_encoded 
+:      011999 ir_get_next_cont:
+0x4bc1 012000 rshift4 pdata ,debug 
+0x4bc2 012001 and_into 0xf ,pdata 
+0x4bc3 012002 isub debug ,null 
+0x4bc4 012003 rtn zero 
+0x4bc5 012004 enable user 
+0x4bc6 012005 rtn 
+:      012006 ir_get_next_seq_saved:
+0x4bc7 012007 deposit debug 
+0x4bc8 012008 disable user 
+0x4bc9 012009 rtn 
+:      012010 ir_get_next_encoded:
+0x4bca 012011 deposit regb 
+0x4bcb 012012 branch ir_get_next_encoded_end ,blank 
+0x4bcc 012013 and rega ,0x7 ,queue 
+0x4bcd 012014 rshift3 rega ,contr 
+0x4bce 012015 ifetch 1 ,contr 
+0x4bcf 012016 increase 1 ,rega 
+0x4bd0 012017 increase -1 ,regb 
+0x4bd1 012018 qisolate0 pdata 
+0x4bd2 012019 fetch 1 ,mem_ir_pulse_zero 
+0x4bd3 012020 branch ir_get_next_cont ,true 
+0x4bd4 012021 fetch 1 ,mem_ir_pulse_one 
+0x4bd5 012022 branch ir_get_next_cont 
+:      012023 ir_get_next_encoded_end:
+0x4bd6 012024 disable user2 
+0x4bd7 012025 increase 7 ,rega 
+0x4bd8 012026 rshift3 rega ,rega 
+0x4bd9 012027 branch ir_get_next_seq_fetch 
+:      012028 ir_get_next_seq_exit:
+0x4bda 012029 setarg 0xff 
+0x4bdb 012030 rtn 
+:      012033 ir_get_pulse:
+0x4bdc 012034 lshift pdata ,contr 
+0x4bdd 012035 iadd contr ,pdata 
+0x4bde 012036 arg mem_ir_pulses ,contr 
+0x4bdf 012037 iadd contr ,contr 
+0x4be0 012038 ifetch 3 ,contr 
+0x4be1 012039 rtn 
+:      012042 ir_play:
+0x4be2 012043 enable swfine 
+0x4be3 012044 iforce loopcnt 
+:      012045 ir_play_nloop:
+0x4be4 012046 disable user 
+0x4be5 012047 disable user2 
+0x4be6 012048 arg mem_ir_sequence ,rega 
+:      012049 ir_play_loop:
+0x4be7 012050 call ir_get_next_seq 
+0x4be8 012051 beq 0xff ,ir_play_end 
+0x4be9 012052 call ir_get_pulse 
+0x4bea 012053 bbit0 23 ,ir_play_silence 
+0x4beb 012054 set0 23 ,pdata 
+0x4bec 012055 hjam 158 ,core_pwm_pcnt0 
+:      012056 ir_play_silence:
+0x4bed 012057 iforce stop_watch 
+0x4bee 012058 until null ,timeout 
+0x4bef 012059 hjam 0 ,core_pwm_pcnt0 
+0x4bf0 012060 branch ir_play_loop 
+:      012061 ir_play_end:
+0x4bf1 012062 loop ir_play_nloop 
+0x4bf2 012063 rtn 
+:      012069 le_kb_init:
+0x4bf3 012070 call kb_init_common 
+0x4bf4 012071 setarg kb_process_idle 
+0x4bf5 012072 store 2 ,mem_cb_idle_process 
+0x4bf6 012073 setarg kb_send_process 
+0x4bf7 012074 store 2 ,mem_cb_bt_process 
+0x4bf8 012075 setarg kb_process_bb_event 
+0x4bf9 012076 store 2 ,mem_cb_bb_event_process 
+0x4bfa 012077 setarg kb_process_lpm_before 
+0x4bfb 012078 store 2 ,mem_cb_before_lpm 
+0x4bfc 012079 setarg kb_discovery_timeout_sleep 
+0x4bfd 012080 store 2 ,mem_cb_discovry_timeout 
+0x4bfe 012081 setarg kb_before_hibernate 
+0x4bff 012082 store 2 ,mem_cb_before_hibernate 
+0x4c00 012083 setarg kb_wakeup_check 
+0x4c01 012084 store 2 ,mem_cb_check_wakelock 
+0x4c02 012085 rtn wake 
+0x4c03 012087 fetch 2 ,mem_ui_state_map 
+0x4c04 012088 bbit1 ui_state_btn_down ,app_bt_start_discovery_short 
+0x4c05 012089 call app_check_reconn_target 
+0x4c06 012090 branch kb_start_discovery ,blank 
+0x4c07 012091 call app_bt_stop_discovery 
+0x4c08 012092 branch app_bt_start_reconnect 
+:      012095 kb_init:
+0x4c09 012096 call kb_init_common 
+0x4c0a 012097 setarg kb_process_idle 
+0x4c0b 012098 store 2 ,mem_cb_idle_process 
+0x4c0c 012099 setarg kb_send_process 
+0x4c0d 012100 store 2 ,mem_cb_bt_process 
+0x4c0e 012101 setarg kb_process_bb_event 
+0x4c0f 012102 store 2 ,mem_cb_bb_event_process 
+0x4c10 012103 setarg kb_process_lpm_before 
+0x4c11 012104 store 2 ,mem_cb_before_lpm 
+0x4c12 012105 setarg kb_discovery_timeout_sleep 
+0x4c13 012106 store 2 ,mem_cb_discovry_timeout 
+0x4c14 012107 setarg kb_before_hibernate 
+0x4c15 012108 store 2 ,mem_cb_before_hibernate 
+0x4c16 012109 setarg kb_wakeup_check 
+0x4c17 012110 store 2 ,mem_cb_check_wakelock 
+0x4c18 012111 rtn wake 
+0x4c19 012113 jam 0 ,mem_sp_flag 
+0x4c1a 012114 jam 0 ,mem_master_sp_flag 
+0x4c1b 012116 fetch 2 ,mem_ui_state_map 
+0x4c1c 012117 bbit1 ui_state_btn_down ,app_bt_start_discovery_short 
+0x4c1d 012118 call app_check_reconn_target 
+0x4c1e 012119 branch kb_start_discovery ,blank 
+0x4c1f 012120 call app_bt_stop_discovery 
+0x4c20 012121 branch app_bt_start_reconnect 
+:      012125 kb_init_common:
+0x4c21 012126 set1 mark_ext_patch ,mark 
+0x4c22 012127 bpatch patch36_6 ,mem_patch36 
+0x4c23 012129 fetch 1 ,0x8140 
+0x4c24 012130 branch assert ,blank 
+0x4c25 012131 hjam 0 ,core_gpio_oe0 
+0x4c26 012132 hjam 0xff ,core_gpio_pu0 
+0x4c27 012134 hjam 0xff ,core_gpio_oe1 
+0x4c28 012135 hjam 0xff ,core_gpio_oe2 
+0x4c29 012136 hfetch 1 ,core_gpio_oe3 
+0x4c2a 012137 or_into 0x0f ,pdata 
+0x4c2b 012138 hstore 1 ,core_gpio_oe3 
+0x4c2c 012140 hjam 0x00 ,core_gpio_sel 
+0x4c2d 012141 hjam 0x00 ,core_gpio_sel1 
+0x4c2e 012142 hjam 0xff ,core_gpio_key0 
+0x4c2f 012143 hjam 0xFf ,core_gpio_key1 
+0x4c30 012144 hfetch 1 ,core_gpio_key2 
+0x4c31 012145 or_into 0x03 ,pdata 
+0x4c32 012146 hstore 1 ,core_gpio_key2 
+0x4c33 012147 hjam 0x00 ,core_kscn_rowmask 
+0x4c34 012148 setarg kb_kscan_col_1 
+0x4c35 012149 lshift3 pdata ,pdata 
+0x4c36 012150 add pdata ,kb_kscan_row_1 ,pdata 
+0x4c37 012151 hstore 1 ,core_kscn_rctc 
+0x4c38 012153 hfetch 1 ,core_config 
+0x4c39 012154 set1 2 ,pdata 
+0x4c3a 012155 hstore 1 ,core_config 
+0x4c3b 012156 hfetch 1 ,core_clkoff + 1 
+0x4c3c 012157 set0 1 ,pdata 
+0x4c3d 012158 hstore 1 ,core_clkoff + 1 
+0x4c3e 012159 hjam 0xd ,core_kscn_ksctrl 
+0x4c3f 012160 hjam 0xd3 ,core_kscn_m_debounce 
+0x4c40 012161 hjam 0 ,core_kscn_scancycle_timer_l 
+0x4c41 012162 hjam 0x31 ,core_kscn_scancycle_timer_h 
+0x4c42 012163 call lpm_disable_exen_output 
+0x4c43 012164 fetcht 1 ,mem_led_cap_gpio 
+0x4c44 012165 call gpio_config_output 
+0x4c45 012166 fetcht 1 ,mem_led_num_gpio 
+0x4c46 012167 call gpio_config_output 
+0x4c47 012168 fetcht 1 ,mem_led_scl_gpio 
+0x4c48 012169 call gpio_config_output 
+0x4c49 012170 rtn 
+:      012172 kb_process_kb_report:
+0x4c4a 012173 set1 mark_ext_patch ,mark 
+0x4c4b 012174 bpatch patch36_7 ,mem_patch36 
+0x4c4c 012175 ifetch 1 ,contr 
+0x4c4d 012176 copy pdata ,rega 
+0x4c4e 012177 fetcht 1 ,mem_led_num_gpio 
+0x4c4f 012178 isolate1 kb_num_lock_selected ,rega 
+0x4c50 012179 call gpio_out_flag 
+0x4c51 012180 fetcht 1 ,mem_led_cap_gpio 
+0x4c52 012181 isolate1 kb_caps_lock_selected ,rega 
+0x4c53 012182 call gpio_out_flag 
+0x4c54 012183 fetcht 1 ,mem_led_scl_gpio 
+0x4c55 012184 isolate1 kb_scroll_lock_selected ,rega 
+0x4c56 012185 call gpio_out_flag 
+0x4c57 012186 jam 1 ,mem_kb_rcv_led_data 
+0x4c58 012187 rtn 
+:      012190 kb_send_process:
+0x4c59 012192 call kb_kscan_check_if_empty 
+0x4c5a 012193 nrtn user 
+0x4c5b 012194 nrtn user2 
+0x4c5c 012196 fetch 1 ,mem_pincode_state 
+0x4c5d 012197 beq pincode_state_wait_pincode ,kb_pincode 
+0x4c5e 012198 fetch 1 ,mem_hid_interrupt_state 
+0x4c5f 012199 rtnne 0x3f 
+0x4c60 012201 arg 10 ,rega 
+0x4c61 012202 call hid_malloc_tx_buff 
+0x4c62 012203 fetch 2 ,mem_hid_int_remote_cid 
+0x4c63 012204 istore 2 ,contw 
+0x4c64 012205 setarg 0x01a1 
+0x4c65 012206 istore 2 ,contw 
+0x4c66 012207 fetch 8 ,mem_kb_state 
+0x4c67 012208 istore 8 ,contw 
+0x4c68 012209 rtn 
+:      012211 kb_pincode:
+0x4c69 012212 fetcht 1 ,mem_pin_length 
+0x4c6a 012213 setarg mem_pin 
+0x4c6b 012214 iadd temp ,contw 
+0x4c6c 012215 fetch 1 ,mem_kb_report_data 
+0x4c6d 012216 branch kb_pincode_rtn ,blank 
+0x4c6e 012217 beq kb_kcode_bksp ,kb_pincode_bksp 
+0x4c6f 012218 bne kb_kcode_enter ,kb_pincode_data 
+0x4c70 012219 storet 1 ,mem_pin_length 
+0x4c71 012220 branch app_bt_set_pincode 
+:      012222 kb_pincode_rtn:
+0x4c72 012223 storet 1 ,mem_pin_length 
+0x4c73 012224 rtn 
+:      012225 kb_pincode_bksp:
+0x4c74 012226 fetch 1 ,mem_pin_length 
+0x4c75 012227 rtn blank 
+0x4c76 012228 increase -1 ,pdata 
+0x4c77 012229 store 1 ,mem_pin_length 
+0x4c78 012230 arg mem_pin ,contw 
+0x4c79 012231 iadd contw ,contw 
+0x4c7a 012232 setarg 0 
+0x4c7b 012233 istore 1 ,contw 
+0x4c7c 012234 enable user2 
+0x4c7d 012235 branch kb_send_pin 
+:      012236 kb_pincode_data:
+0x4c7e 012237 sub pdata ,kb_kcode_1_m1 ,null 
+0x4c7f 012238 rtn positive 
+0x4c80 012239 arg 0x30 ,temp 
+0x4c81 012240 sub pdata ,kb_kcode_0 ,null 
+0x4c82 012241 nrtn positive 
+0x4c83 012242 branch kb_pincode_0 ,zero 
+0x4c84 012243 arg kb_kcode_1_m1 ,temp 
+0x4c85 012244 isub temp ,temp 
+0x4c86 012245 or_into 0x30 ,temp 
+:      012246 kb_pincode_0:
+0x4c87 012247 istoret 1 ,contw 
+0x4c88 012248 fetch 1 ,mem_pin_length 
+0x4c89 012249 increase 1 ,pdata 
+0x4c8a 012250 store 1 ,mem_pin_length 
+0x4c8b 012251 disable user2 
+0x4c8c 012252 branch kb_send_pin 
+:      012254 kb_send_pin:
+0x4c8d 012255 fetch 2 ,mem_hid_int_remote_cid 
+0x4c8e 012256 rtn blank 
+0x4c8f 012257 arg 3 ,rega 
+0x4c90 012258 call hid_malloc_tx_buff 
+0x4c91 012259 fetch 2 ,mem_hid_int_remote_cid 
+0x4c92 012260 istore 2 ,contw 
+0x4c93 012261 setarg 0xffa1 
+0x4c94 012262 istore 2 ,contw 
+0x4c95 012263 setarg 0 
+0x4c96 012264 setflag user2 ,0 ,pdata 
+0x4c97 012265 istore 1 ,contw 
+0x4c98 012266 rtn 
+:      012270 kb_kscan_check_if_empty:
+0x4c99 012271 disable user 
+0x4c9a 012272 disable user2 
+0x4c9b 012273 hfetch 1 ,core_kscn_kstat 
+0x4c9c 012274 rtnbit1 kb_kscan_stat_empty 
+:      012276 kb_kscan_check_ghost:
+0x4c9d 012277 hfetch 1 ,core_kscn_event_num 
+0x4c9e 012278 bbit1 kb_kscan_key_event_stat ,kb_kscan_process_event 
+0x4c9f 012279 hfetch 1 ,core_kscn_kstat 
+0x4ca0 012280 bbit0 kb_kscan_stat_ghost ,kb_kscan_process_event 
+0x4ca1 012281 hfetch 1 ,core_kscn_event 
+0x4ca2 012282 branch kb_kscan_check_if_empty 
+:      012284 kb_kscan_process_event:
+0x4ca3 012285 enable user 
+0x4ca4 012286 enable user2 
+0x4ca5 012287 hfetch 1 ,core_kscn_event_num 
+0x4ca6 012288 isolate0 kb_kscan_key_event_stat ,pdata 
+0x4ca7 012289 hfetch 1 ,core_kscn_event 
+0x4ca8 012290 arg mem_kb_map ,contr 
+0x4ca9 012291 iadd contr ,contr 
+0x4caa 012292 ifetch 1 ,contr 
+0x4cab 012293 bbit1 7 ,kb_kscan_read_statekey 
+0x4cac 012294 nbranch kb_kscan_release_a_key_data ,true 
+0x4cad 012295 disable user2 
+0x4cae 012296 iforce temp 
+0x4caf 012297 fetch 1 ,mem_kb_keys 
+0x4cb0 012298 sub pdata ,4 ,null 
+0x4cb1 012299 nrtn positive 
+0x4cb2 012300 copy pdata ,rega 
+0x4cb3 012301 arg 3 ,loopcnt 
+0x4cb4 012302 arg mem_kb_report_data ,contr 
+:      012303 kb_kscan_check_report_data:
+0x4cb5 012304 ifetch 1 ,contr 
+0x4cb6 012305 isub temp ,null 
+0x4cb7 012306 branch kb_kscan_check_if_empty ,zero 
+0x4cb8 012307 loop kb_kscan_check_report_data 
+:      012308 kb_kscan_store_a_key_data:
+0x4cb9 012309 copy rega ,pdata 
+0x4cba 012310 arg mem_kb_report_data ,contw 
+0x4cbb 012311 iadd contw ,contw 
+0x4cbc 012312 istoret 1 ,contw 
+0x4cbd 012313 increase 1 ,pdata 
+0x4cbe 012314 store 1 ,mem_kb_keys 
+0x4cbf 012315 hfetch 1 ,core_kscn_event_num 
+0x4cc0 012316 rshift3 pdata ,pdata 
+0x4cc1 012317 nbranch kb_kscan_check_nextevent ,blank 
+0x4cc2 012318 branch kb_kscan_prepare_send 
+:      012320 kb_kscan_check_nextevent:
+0x4cc3 012321 increase -1 ,pdata 
+0x4cc4 012322 branch kb_kscan_prepare_send ,zero 
+0x4cc5 012323 hfetch 1 ,core_kscn_event_num 
+0x4cc6 012324 and_into 0x01 ,pdata 
+0x4cc7 012325 beq kb_kscan_key_press ,kb_kscan_check_if_empty 
+0x4cc8 012326 beq kb_kscan_key_release ,kb_kscan_prepare_send 
+0x4cc9 012327 rtn 
+:      012328 kb_kscan_prepare_send:
+0x4cca 012329 enable user2 
+0x4ccb 012330 rtn 
+:      012332 kb_kscan_release_a_key_data:
+0x4ccc 012333 and pdata ,0xff ,temp 
+0x4ccd 012334 fetch 1 ,mem_kb_keys 
+0x4cce 012335 rtn blank 
+0x4ccf 012336 iforce loopcnt 
+0x4cd0 012337 arg mem_kb_report_data ,contr 
+:      012338 kb_kscan_find_same_key_data:
+0x4cd1 012339 ifetch 1 ,contr 
+0x4cd2 012340 isub temp ,null 
+0x4cd3 012341 branch kb_kscan_release_foundkey ,zero 
+0x4cd4 012342 loop kb_kscan_find_same_key_data 
+0x4cd5 012343 rtn 
+:      012344 kb_kscan_release_foundkey:
+0x4cd6 012345 add contr ,-1 ,contw 
+0x4cd7 012346 call memcpy 
+0x4cd8 012347 fetch 1 ,mem_kb_keys 
+0x4cd9 012348 increase -1 ,pdata 
+0x4cda 012349 store 1 ,mem_kb_keys 
+0x4cdb 012350 hfetch 1 ,core_kscn_event_num 
+0x4cdc 012351 rshift3 pdata ,pdata 
+0x4cdd 012352 nbranch kb_kscan_check_nextevent2 ,blank 
+0x4cde 012353 rtn 
+:      012355 kb_kscan_check_nextevent2:
+0x4cdf 012356 hfetch 1 ,core_kscn_event_num 
+0x4ce0 012357 and_into 0x01 ,pdata 
+0x4ce1 012358 beq kb_kscan_key_press ,kb_kscan_prepare_send 
+0x4ce2 012359 beq kb_kscan_key_release ,kb_kscan_check_if_empty 
+0x4ce3 012360 rtn 
+:      012362 kb_kscan_read_statekey:
+0x4ce4 012363 and pdata ,7 ,queue 
+0x4ce5 012364 fetch 1 ,mem_kb_state 
+0x4ce6 012365 qsetflag true ,pdata 
+0x4ce7 012366 store 1 ,mem_kb_state 
+0x4ce8 012367 rtn 
+:      012369 kb_clear_keys:
+0x4ce9 012370 setarg 0 
+0x4cea 012371 store 8 ,mem_kb_state 
+0x4ceb 012372 store 1 ,mem_kb_keys 
+0x4cec 012373 rtn 
+:      012375 kb_clean_kscan_fifo:
+0x4ced 012376 hfetch 1 ,core_kscn_event_num 
+0x4cee 012377 hfetch 1 ,core_kscn_event 
+0x4cef 012378 hfetch 1 ,core_kscn_kstat 
+0x4cf0 012379 bbit0 kb_kscan_stat_empty ,kb_clean_kscan_fifo 
+0x4cf1 012380 setarg 0xff 
+0x4cf2 012381 enable user 
+0x4cf3 012382 rtn 
+:      012384 le_keyboard:
+0x4cf4 012385 fetcht 2 ,mem_le_notify_handle 
+0x4cf5 012386 call le_att_check_notification_enable 
+0x4cf6 012387 rtnbit0 0 
+0x4cf7 012388 fetch 1 ,mem_le_switch_send_data 
+0x4cf8 012389 rtnbit0 0 
+0x4cf9 012390 call le_xtype_fifo_is_full 
+0x4cfa 012391 nrtn blank 
+0x4cfb 012392 call kb_kscan_check_if_empty 
+0x4cfc 012393 nrtn user 
+0x4cfd 012394 nrtn user2 
+:      012395 le_slave_keyboard_send_data:
+0x4cfe 012396 call app_lpm_wake_auto_lock 
+0x4cff 012397 jam 2 ,mem_lpm_mult 
+0x4d00 012398 fetcht 2 ,mem_le_notify_handle 
+0x4d01 012399 call le_att_get_handle_ptr 
+0x4d02 012400 add contr ,1 ,contw 
+0x4d03 012401 fetch 8 ,mem_kb_state 
+0x4d04 012402 istore 8 ,contw 
+0x4d05 012403 jam attop_handle_value_notification ,mem_fifo_temp 
+0x4d06 012404 call le_xtype_fifo_in 
+0x4d07 012405 fetch 1 ,mem_le_op 
+0x4d08 012406 bbit1 op_disconn ,loop 
+0x4d09 012407 rtn 
+:      012408 le_keyboard_process_bb_event:
+0x4d0a 012409 copy regc ,pdata 
+0x4d0b 012410 beq bt_evt_button_long_pressed ,le_keyboard_bb_event_discovery_btn 
+0x4d0c 012412 beq bt_evt_le_connected ,le_kb_connected 
+0x4d0d 012413 beq bt_evt_le_write_request ,le_kb_bb_event_write_request 
+0x4d0e 012414 beq bt_evt_le_enc_info ,le_kb_bb_event_enc_info 
+0x4d0f 012415 beq bt_evt_remote_unsniff ,app_start_auto_sniff 
+0x4d10 012416 rtn 
+:      012417 le_kb_bb_event_enc_info:
+:      012418 le_kb_bb_event_write_request:
+0x4d11 012419 call app_lpm_mult_enable 
+0x4d12 012420 branch app_ble_start_write 
+:      012421 le_kb_connected:
+0x4d13 012422 call kb_clean_kscan_fifo 
+0x4d14 012423 branch kb_clear_keys 
+:      012425 le_keyboard_bb_event_discovery_btn:
+0x4d15 012426 call le_clean_att_list_handle_enable 
+0x4d16 012427 call app_ble_disconnect 
+0x4d17 012428 call app_ble_start_adv 
+0x4d18 012429 branch app_led_start_blink 
+:      012431 le_keyboard_bb_event_hud_ms:
+0x4d19 012432 fetch 1 ,mem_le_led_on_time 
+0x4d1a 012433 rtn blank 
+0x4d1b 012434 increase -1 ,pdata 
+0x4d1c 012435 store 1 ,mem_le_led_on_time 
+0x4d1d 012436 nrtn blank 
+0x4d1e 012437 fetch 1 ,mem_le_adv_type 
+0x4d1f 012438 rtn blank 
+0x4d20 012439 branch app_led_off 
+:      012442 kb_process_idle:
+0x4d21 012443 branch kb_pairing_button_check 
+:      012446 kb_wakeup_check:
+0x4d22 012447 hfetch 3 ,core_gpio_in 
+0x4d23 012448 copy pdata ,regb 
+0x4d24 012449 hfetch 1 ,core_gpio_in + 3 
+0x4d25 012450 and_into 0x0f ,pdata 
+0x4d26 012451 lshift16 pdata ,pdata 
+0x4d27 012452 lshift8 pdata ,pdata 
+0x4d28 012453 ior regb ,pdata 
+0x4d29 012454 fetcht 4 ,mem_kb_fast_wake_last 
+0x4d2a 012455 isub temp ,pdata 
+0x4d2b 012456 rtn blank 
+0x4d2c 012457 arg 0xbb ,regb 
+0x4d2d 012458 branch app_lpm_wake_auto_lock 
+:      012461 kb_pairing_button_check:
+0x4d2e 012462 fetch 1 ,mem_scan_mode 
+0x4d2f 012463 nrtn blank 
+0x4d30 012464 fetch 1 ,mem_app_handshake_flag 
+0x4d31 012465 nrtn blank 
+0x4d32 012466 fetch 1 ,mem_ui_button_timer 
+0x4d33 012467 rtn blank 
+0x4d34 012468 fetch 1 ,mem_ui_button_last_state 
+0x4d35 012469 nrtn blank 
+0x4d36 012470 branch app_enter_hibernate 
+:      012472 kb_process_bb_event:
+0x4d37 012473 copy regc ,pdata 
+0x4d38 012474 beq bt_evt_hid_connected ,kb_hid_connected 
+0x4d39 012475 beq bt_evt_pincode_req ,kb_process_pincode 
+0x4d3a 012476 beq bt_evt_hid_connected ,kb_bt_hid_handshake 
+0x4d3b 012477 beq bt_evt_button_long_pressed ,kb_bb_event_discovery_btn 
+0x4d3c 012478 beq bt_evt_remote_unsniff ,app_start_auto_sniff 
+0x4d3d 012479 beq bt_evt_bb_connected ,kb_stop_discovery 
+0x4d3e 012480 beq bt_evt_bb_disconnected ,kb_bb_disconnected 
+0x4d3f 012482 beq bt_evt_reconn_failed ,kb_bb_event_reconn_failed 
+0x4d40 012483 beq bt_evt_reconn_page_timeout ,kb_bb_event_reconn_failed 
+0x4d41 012484 and pdata ,0x0f ,temp 
+0x4d42 012485 and_into bt_evt_timer_mask ,pdata 
+0x4d43 012486 beq bt_evt_timer_init ,kb_bb_event_timer 
+0x4d44 012487 rtn 
+:      012489 kb_bb_event_timer:
+0x4d45 012490 set1 mark_ext_patch ,mark 
+0x4d46 012491 bpatch patch37_0 ,mem_patch37 
+0x4d47 012492 storet 1 ,mem_app_evt_timer_count 
+:      012493 kb_bb_event_100ms_loop:
+0x4d48 012494 fetch 1 ,mem_app_evt_timer_count 
+0x4d49 012495 rtn blank 
+0x4d4a 012496 increase -1 ,pdata 
+0x4d4b 012497 store 1 ,mem_app_evt_timer_count 
+0x4d4c 012499 call kb_check_hid_handshake_timer 
+0x4d4d 012500 branch kb_bb_event_100ms_loop 
+:      012502 kb_bb_event_reconn_failed:
+0x4d4e 012503 fetch 2 ,mem_ui_state_map 
+0x4d4f 012504 bbit1 ui_state_btn_down ,kb_start_discovery 
+0x4d50 012505 branch app_bb_hibernate 
+:      012508 kb_bb_disconnected:
+0x4d51 012509 set1 mark_ext_patch ,mark 
+0x4d52 012510 bpatch patch37_1 ,mem_patch37 
+0x4d53 012511 call kb_bb_discon_clear_stack 
+0x4d54 012512 fetch app_disc_rsn_size ,mem_app_disconn_reason 
+0x4d55 012514 bbit1 app_disc_by_button ,app_disconn_reason_clear 
+0x4d56 012515 bbit1 app_disc_after_pairing ,kb_event_light_state_pairing 
+0x4d57 012516 bbit1 app_disc_after_reconn ,kb_event_light_state_reconn 
+0x4d58 012517 branch kb_start_discovery 
+:      012518 kb_bb_discon_clear_stack:
+0x4d59 012519 jam 0 ,mem_link_key_exists 
+0x4d5a 012520 jam 0 ,mem_ltk_exists 
+0x4d5b 012521 rtn 
+:      012523 kb_event_light_state_pairing:
+0x4d5c 012524 bbit1 app_disc_after_handshake ,app_bb_hibernate 
+0x4d5d 012525 bbit1 app_disc_after_sniff ,app_bb_hibernate 
+0x4d5e 012526 branch kb_start_discovery 
+:      012527 kb_event_light_state_reconn:
+0x4d5f 012528 fetch 2 ,mem_ui_state_map 
+0x4d60 012529 bbit1 ui_state_btn_down ,kb_start_discovery 
+0x4d61 012530 branch app_bb_hibernate 
+:      012534 kb_check_hid_handshake_timer:
+0x4d62 012535 fetch 1 ,mem_hid_handshake_timer_count 
+0x4d63 012536 rtn blank 
+0x4d64 012537 increase -1 ,pdata 
+0x4d65 012538 store 1 ,mem_hid_handshake_timer_count 
+0x4d66 012539 nrtn blank 
+0x4d67 012540 branch kb_bt_hid_handshake 
+:      012543 kb_bb_event_discovery_btn:
+0x4d68 012544 call kb_3_0_bb_event_discovery_btn 
+0x4d69 012545 branch kb_start_discovery 
+:      012547 kb_3_0_bb_event_discovery_btn:
+0x4d6a 012548 set1 mark_ext_patch ,mark 
+0x4d6b 012549 bpatch patch37_2 ,mem_patch37 
+0x4d6c 012550 fetch 2 ,mem_ui_state_map 
+0x4d6d 012551 isolate1 ui_state_bt_reconnect ,pdata 
+0x4d6e 012552 call app_bt_reconnect_cancel ,true 
+0x4d6f 012553 fetch 2 ,mem_discovery_timeout 
+0x4d70 012554 store 2 ,mem_discovery_timeout_timer_count 
+0x4d71 012555 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x4d72 012556 set1 app_disc_by_button ,pdata 
+0x4d73 012557 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x4d74 012558 fetch 2 ,mem_ui_state_map 
+0x4d75 012559 bbit1 ui_state_bt_connected ,app_bt_disconnect 
+0x4d76 012560 rtn 
+:      012563 kb_stop_discovery:
+0x4d77 012564 call app_bt_stop_discovery 
+0x4d78 012565 branch app_led_stop_blink 
+:      012567 kb_start_discovery:
+0x4d79 012568 call app_bt_start_discovery 
+0x4d7a 012569 branch app_led_start_blink 
+:      012571 kb_discovery_timeout_sleep:
+0x4d7b 012572 branch app_enter_hibernate 
+:      012574 kb_process_pincode:
+0x4d7c 012575 jam 0 ,mem_pin_length 
+0x4d7d 012576 rtn 
+:      012579 kb_before_hibernate:
+:      012581 kb_process_lpm_before:
+0x4d7e 012582 hjam 0x00 ,core_gpio_key0 
+0x4d7f 012583 hjam 0x00 ,core_gpio_key1 
+0x4d80 012584 hfetch 1 ,core_gpio_key2 
+0x4d81 012585 and_into 0xf0 ,pdata 
+0x4d82 012586 hstore 1 ,core_gpio_key2 
+0x4d83 012587 setarg 0x00 
+0x4d84 012588 store 4 ,mem_gpio_wakeup_high 
+0x4d85 012589 setarg 0xff 
+0x4d86 012590 fetcht 1 ,mem_ui_button_gpio 
+0x4d87 012591 copy temp ,queue 
+0x4d88 012592 qset1 pdata 
+0x4d89 012593 store 4 ,mem_gpio_wakeup_low 
+0x4d8a 012594 rtn 
+:      012596 kb_hid_connected:
+0x4d8b 012597 setarg hid_handshake_timeout 
+0x4d8c 012598 store 1 ,mem_hid_handshake_timer_count 
+0x4d8d 012599 call kb_clean_kscan_fifo 
+0x4d8e 012603 branch kb_clear_keys 
+:      012604 kb_bt_hid_handshake:
+0x4d8f 012605 set1 mark_ext_patch ,mark 
+0x4d90 012606 bpatch patch37_3 ,mem_patch37 
+0x4d91 012607 jam app_handshake_done ,mem_app_handshake_flag 
+0x4d92 012608 call app_lpm_mult_enable 
+0x4d93 012609 call app_bt_store_reconn_info 
+0x4d94 012611 setarg 0 
+0x4d95 012612 store 2 ,mem_discovery_timeout_timer_count 
+0x4d96 012613 store 1 ,mem_hid_handshake_timer_count 
+0x4d97 012614 branch app_bt_enter_sniff 
+:      012621 l2cap_init:
+0x4d98 012622 branch l2cap_init_wake ,wake 
+:      012623 l2cap_init_work:
+0x4d99 012624 setarg mem_l2cap_xmem_end 
+0x4d9a 012625 arg mem_l2cap_xmem_start ,contw 
+0x4d9b 012626 isub contw ,loopcnt 
+0x4d9c 012627 call clear_mem 
+:      012628 l2cap_init_wake:
+0x4d9d 012629 set1 mark_ext_patch ,mark 
+0x4d9e 012630 bpatch patch22_6 ,mem_patch22 
+0x4d9f 012631 setarg mem_sdp_mem_end 
+0x4da0 012632 arg mem_sdp_mem_start ,contw 
+0x4da1 012633 isub contw ,loopcnt 
+0x4da2 012634 call clear_mem 
+0x4da3 012635 setarg mem_l2cap_mem_end 
+0x4da4 012636 arg mem_l2cap_mem_start ,contw 
+0x4da5 012637 isub contw ,loopcnt 
+0x4da6 012638 call clear_mem 
+0x4da7 012639 branch l2cap_lpm_load_txbuf 
+:      012641 process_rx_l2cap_pkt:
+0x4da8 012642 set1 mark_ext_patch ,mark 
+0x4da9 012643 bpatch patch22_7 ,mem_patch22 
+0x4daa 012644 copy contr ,temp 
+0x4dab 012647 copy temp ,contr 
+0x4dac 012648 ifetch 2 ,contr 
+0x4dad 012649 store 2 ,mem_l2cap_rx_pkt_length 
+0x4dae 012650 ifetch 2 ,contr 
+0x4daf 012651 store 2 ,mem_l2cap_rx_cid 
+0x4db0 012652 deposit contr 
+0x4db1 012653 store 2 ,mem_l2cap_payload_ptr 
+0x4db2 012654 fetch 1 ,memui_reconnect_mode 
+0x4db3 012655 beq no_reconnection ,l2cap_rx_multiplexing 
+0x4db4 012656 branch ml2cap_rx_multiplexing 
+:      012658 l2cap_rx_multiplexing:
+0x4db5 012659 set1 mark_ext_patch ,mark 
+0x4db6 012660 bpatch patch23_0 ,mem_patch23 
+0x4db7 012661 fetch 2 ,mem_l2cap_rx_pkt_length 
+0x4db8 012662 branch l2cap_rx_reset_state ,blank 
+0x4db9 012663 fetch 1 ,mem_l2cap_rx_cid 
+0x4dba 012664 beq l2cap_signal_channel ,l2cap_call_proc_signal 
+:      012665 l2cap_rx_multiplexing0:
+0x4dbb 012666 beq l2cap_sdp_channel ,l2cap_call_proc_sdp 
+0x4dbc 012667 beq l2cap_rfcomm_channel ,l2cap_call_proc_rfcomm 
+0x4dbd 012668 beq l2cap_hid_control_channel ,l2cap_call_proc_hid 
+0x4dbe 012669 beq l2cap_hid_interrupt_channel ,l2cap_call_proc_hid 
+0x4dbf 012670 branch l2cap_rx_reset_state 
+:      012672 l2cap_call_proc_signal:
+0x4dc0 012673 call l2cap_malloc_is_fifo_full 
+0x4dc1 012674 nrtn blank 
+0x4dc2 012675 jam 0 ,mem_l2cap_pending_item 
+:      012676 l2cap_call_proc_signal0:
+0x4dc3 012677 call l2cap_malloc_signal_channel 
+0x4dc4 012678 call l2cap_process_signal_pkt 
+0x4dc5 012679 fetcht 2 ,mem_l2cap_signal_tx_length 
+0x4dc6 012680 branch l2cap_call_proc_no_reply ,blank 
+0x4dc7 012681 call l2cap_get_signal_tx_buff 
+0x4dc8 012682 fetch 2 ,mem_l2cap_signal_tx_length 
+0x4dc9 012683 istore 2 ,contw 
+0x4dca 012684 force l2cap_signal_channel ,pdata 
+0x4dcb 012685 istore 2 ,contw 
+0x4dcc 012686 branch l2cap_rx_reset_state 
+:      012688 l2cap_call_proc_sigal_pending:
+0x4dcd 012689 fetch 1 ,mem_device_option 
+0x4dce 012690 rtneq dvc_op_hci 
+0x4dcf 012691 fetch 1 ,mem_l2cap_pending_item 
+0x4dd0 012692 rtn blank 
+0x4dd1 012693 copy pdata ,rega 
+0x4dd2 012694 fetch 4 ,mem_l2cap_sdpres_delay_time 
+0x4dd3 012695 arg 0x100 ,temp 
+0x4dd4 012696 iadd temp ,temp 
+0x4dd5 012697 copy clkn_bt ,pdata 
+0x4dd6 012698 isub temp ,null 
+0x4dd7 012699 nrtn positive 
+0x4dd8 012700 jam 0 ,mem_l2cap_pending_item 
+0x4dd9 012701 copy rega ,pdata 
+0x4dda 012702 beq l2cap_sdp_channel ,l2cap_sdp_conn_succ 
+0x4ddb 012703 branch assert 
+:      012704 l2cap_sdp_conn_succ:
+0x4ddc 012705 call l2cap_malloc_signal_channel 
+0x4ddd 012706 call restore_l2cap_req_param 
+0x4dde 012707 call l2cap_get_signal_tx_payload 
+0x4ddf 012708 call save_cont_pointers 
+0x4de0 012709 call send_connection_sdp_res 
+0x4de1 012710 call l2cap_get_signal_tx_buff 
+0x4de2 012712 setarg 0x000c 
+0x4de3 012713 istore 2 ,contw 
+0x4de4 012714 force l2cap_signal_channel ,pdata 
+0x4de5 012715 istore 2 ,contw 
+0x4de6 012716 branch l2cap_rx_reset_state 
+:      012718 l2cap_call_proc_sdp:
+0x4de7 012719 call l2cap_malloc_is_fifo_empty 
+0x4de8 012720 nrtn blank 
+0x4de9 012721 call l2cap_malloc_sdp_channel 
+0x4dea 012722 call sdp_process 
+0x4deb 012723 call l2cap_get_sdp_tx_buff 
+0x4dec 012724 fetch 2 ,mem_sdp_tx_pkt_length 
+0x4ded 012725 branch l2cap_call_proc_no_reply ,blank 
+0x4dee 012726 istore 2 ,contw 
+0x4def 012727 fetch 2 ,mem_sdp_remote_cid 
+0x4df0 012728 istore 2 ,contw 
+0x4df1 012729 branch l2cap_rx_reset_state 
+:      012731 l2cap_call_proc_hid:
+0x4df2 012732 call hid_rx_process 
+0x4df3 012733 branch l2cap_rx_reset_state 
+:      012735 l2cap_call_proc_rfcomm:
+0x4df4 012736 set1 mark_ext_patch ,mark 
+0x4df5 012737 bpatch patch23_1 ,mem_patch23 
+0x4df6 012738 jam rfcomm_malloc_succeed ,mem_rfcomm_malloc_fail_flag 
+0x4df7 012739 call rfcomm_rx_process 
+0x4df8 012740 fetch 1 ,mem_rfcomm_malloc_fail_flag 
+0x4df9 012741 rtneq rfcomm_malloc_fail 
+0x4dfa 012742 branch l2cap_rx_reset_state 
+:      012743 l2cap_call_proc_no_reply:
+0x4dfb 012744 call l2cap_malloc_discard 
+:      012746 l2cap_rx_reset_state:
+0x4dfc 012747 setarg 0 
+0x4dfd 012748 store 2 ,mem_l2cap_rx_pkt_length 
+0x4dfe 012749 store 2 ,mem_l2cap_rx_cid 
+0x4dff 012750 jam l2cap_rx_done ,mem_l2cap_rx_done 
+0x4e00 012751 rtn 
+:      012753 l2cap_process_signal_pkt:
+0x4e01 012754 set1 mark_ext_patch ,mark 
+0x4e02 012755 bpatch patch23_2 ,mem_patch23 
+0x4e03 012756 call l2cap_get_signal_tx_payload 
+0x4e04 012757 force 0 ,regb 
+0x4e05 012758 fetch 2 ,mem_l2cap_rx_pkt_length 
+0x4e06 012759 copy pdata ,regc 
+0x4e07 012760 fetch 2 ,mem_l2cap_payload_ptr 
+0x4e08 012761 iforce contr 
+:      012762 l2cap_process_signal_pkt_loop:
+0x4e09 012763 call l2cap_process_one_signal 
+0x4e0a 012764 deposit regc 
+0x4e0b 012765 increase -4 ,regc 
+0x4e0c 012766 increase -4 ,pdata 
+0x4e0d 012767 nbranch l2cap_process_signal_pkt_loop ,blank 
+0x4e0e 012768 copy regb ,pdata 
+0x4e0f 012769 store 2 ,mem_l2cap_signal_tx_length 
+0x4e10 012770 rtn 
+:      012772 l2cap_process_one_signal:
+0x4e11 012773 set1 mark_ext_patch ,mark 
+0x4e12 012774 bpatch patch23_3 ,mem_patch23 
+0x4e13 012775 ifetch 1 ,contr 
+0x4e14 012776 beq signal_cmd_reject ,l2cap_proc_signal_cmd_reject 
+0x4e15 012777 beq signal_connect_req ,l2cap_proc_signal_connect_req 
+0x4e16 012778 beq signal_connect_rsp ,l2cap_proc_signal_connect_rsp 
+0x4e17 012779 beq signal_config_req ,l2cap_proc_signal_config_req 
+0x4e18 012780 beq signal_config_rsp ,l2cap_proc_signal_config_rsp 
+0x4e19 012781 beq signal_disconnect_req ,l2cap_proc_signal_disconnect_req 
+0x4e1a 012782 beq signal_disconnect_rsp ,l2cap_proc_signal_disconnect_rsp 
+0x4e1b 012783 beq signal_echo_req ,l2cap_proc_signal_echo_req 
+0x4e1c 012784 beq signal_echo_rsp ,l2cap_proc_signal_echo_rsp 
+0x4e1d 012785 beq signal_info_req ,l2cap_proc_signal_info_req 
+0x4e1e 012786 beq signal_info_rsp ,l2cap_proc_signal_info_rsp 
+0x4e1f 012787 call l2cap_reject_command 
+:      012788 l2cap_process_one_signal_rtn:
+0x4e20 012789 rtn 
+:      012791 l2cap_proc_signal_info_req:
+0x4e21 012792 ifetch 1 ,contr 
+0x4e22 012793 copy pdata ,queue 
+0x4e23 012794 ifetch 2 ,contr 
+0x4e24 012795 copy pdata ,rega 
+0x4e25 012796 copy regc ,pdata 
+0x4e26 012797 isub rega ,regc 
+0x4e27 012798 copy rega ,pdata 
+0x4e28 012799 iadd contr ,contr 
+0x4e29 012800 setarg 0x0b 
+0x4e2a 012801 istore 1 ,contw 
+0x4e2b 012802 copy queue ,pdata 
+0x4e2c 012803 istore 1 ,contw 
+0x4e2d 012804 force 0x0008 ,pdata 
+0x4e2e 012805 istore 2 ,contw 
+0x4e2f 012806 force 0x0002 ,pdata 
+0x4e30 012807 istore 2 ,contw 
+0x4e31 012808 force 0x0000 ,pdata 
+0x4e32 012809 istore 2 ,contw 
+0x4e33 012810 force 0x0400 ,pdata 
+0x4e34 012811 istore 2 ,contw 
+0x4e35 012812 force 0x0000 ,pdata 
+0x4e36 012813 istore 2 ,contw 
+0x4e37 012814 force 12 ,pdata 
+0x4e38 012815 iadd regb ,regb 
+0x4e39 012816 branch l2cap_process_one_signal_rtn 
+:      012818 ml2cap_proc_signal_info_req:
+0x4e3a 012819 ifetch 1 ,contr 
+0x4e3b 012820 copy pdata ,queue 
+0x4e3c 012821 ifetch 2 ,contr 
+0x4e3d 012822 copy pdata ,rega 
+0x4e3e 012823 copy regc ,pdata 
+0x4e3f 012824 isub rega ,regc 
+0x4e40 012825 copy rega ,pdata 
+0x4e41 012826 iadd contr ,contr 
+0x4e42 012827 call l2cap_get_signal_tx_payload 
+0x4e43 012828 setarg 0x0b 
+0x4e44 012829 istore 1 ,contw 
+0x4e45 012830 copy queue ,pdata 
+0x4e46 012831 istore 1 ,contw 
+0x4e47 012832 force 0x0008 ,pdata 
+0x4e48 012833 istore 2 ,contw 
+0x4e49 012834 force 0x0002 ,pdata 
+0x4e4a 012835 istore 2 ,contw 
+0x4e4b 012836 force 0x0000 ,pdata 
+0x4e4c 012837 istore 2 ,contw 
+0x4e4d 012838 force 0x0400 ,pdata 
+0x4e4e 012839 istore 2 ,contw 
+0x4e4f 012840 force 0x0000 ,pdata 
+0x4e50 012841 istore 2 ,contw 
+0x4e51 012842 force 12 ,pdata 
+0x4e52 012843 iadd regb ,regb 
+0x4e53 012845 branch l2cap_process_one_signal_rtn 
+:      012849 l2cap_proc_signal_cmd_reject:
+0x4e54 012850 ifetch 1 ,contr 
+0x4e55 012851 copy pdata ,queue 
+0x4e56 012852 ifetch 2 ,contr 
+0x4e57 012853 copy pdata ,rega 
+0x4e58 012854 iadd contr ,contr 
+0x4e59 012855 copy regc ,pdata 
+0x4e5a 012856 isub rega ,regc 
+:      012857 l2cap_proc_signal_cmd_reject_rtn:
+0x4e5b 012858 branch l2cap_process_one_signal_rtn 
+:      012860 l2cap_proc_signal_connect_req:
+0x4e5c 012861 call save_cont_pointers 
+0x4e5d 012864 call load_cont_pointers 
+0x4e5e 012865 arg 0 ,debug 
+0x4e5f 012866 ifetch 1 ,contr 
+0x4e60 012867 copy pdata ,queue 
+0x4e61 012868 ifetch 2 ,contr 
+0x4e62 012869 copy pdata ,rega 
+0x4e63 012870 ifetch 2 ,contr 
+0x4e64 012871 copy pdata ,temp 
+0x4e65 012872 ifetch 2 ,contr 
+0x4e66 012873 copy pdata ,timeup 
+0x4e67 012874 copy temp ,pdata 
+0x4e68 012875 beq psm_sdp ,l2cap_proc_signal_connect_req_sdp 
+0x4e69 012876 beq psm_rfcomm ,l2cap_proc_signal_connect_req_rfcomm 
+0x4e6a 012877 beq psm_hid_control ,l2cap_proc_signal_connect_req_hid_ctrl 
+0x4e6b 012878 beq psm_hid_interrupt ,l2cap_proc_signal_connect_req_hid_int 
+0x4e6c 012879 call l2cap_reject_command 
+0x4e6d 012880 branch l2cap_proc_signal_connect_req_rtn 
+:      012882 l2cap_proc_signal_connect_req_sdp:
+0x4e6e 012883 call save_cont_pointers 
+0x4e6f 012884 arg l2cap_sdp_channel ,temp 
+0x4e70 012885 fetch 2 ,mem_sdp_remote_cid 
+0x4e71 012886 nbranch already_connected ,blank 
+0x4e72 012887 copy timeup ,pdata 
+0x4e73 012888 store 2 ,mem_sdp_remote_cid 
+0x4e74 012889 copy clkn_bt ,pdata 
+0x4e75 012890 store 4 ,mem_l2cap_sdpres_delay_time 
+0x4e76 012891 call store_l2cap_req_param 
+0x4e77 012892 branch send_connection_pending 
+:      012894 store_l2cap_req_param:
+0x4e78 012895 storet 2 ,mem_psm 
+0x4e79 012896 deposit timeup 
+0x4e7a 012897 store 2 ,mem_scid 
+0x4e7b 012898 deposit rega 
+0x4e7c 012899 store 2 ,mem_cmd_length 
+0x4e7d 012900 deposit regb 
+0x4e7e 012901 store 2 ,mem_tt2 
+0x4e7f 012902 deposit regc 
+0x4e80 012903 store 2 ,mem_tt3 
+0x4e81 012904 deposit queue 
+0x4e82 012905 store 2 ,mem_id 
+0x4e83 012906 rtn 
+:      012908 restore_l2cap_req_param:
+0x4e84 012909 fetcht 2 ,mem_psm 
+0x4e85 012910 fetch 2 ,mem_scid 
+0x4e86 012911 copy pdata ,timeup 
+0x4e87 012912 fetch 2 ,mem_cmd_length 
+0x4e88 012913 copy pdata ,rega 
+0x4e89 012914 fetch 2 ,mem_tt2 
+0x4e8a 012915 copy pdata ,regb 
+0x4e8b 012916 fetch 2 ,mem_tt3 
+0x4e8c 012917 copy pdata ,regc 
+0x4e8d 012918 fetch 2 ,mem_id 
+0x4e8e 012919 copy pdata ,queue 
+0x4e8f 012920 rtn 
+:      012922 l2cap_proc_signal_connect_req_rfcomm:
+0x4e90 012923 call save_cont_pointers 
+0x4e91 012924 setarg l2cap_rfcomm_channel 
+0x4e92 012925 arg l2cap_rfcomm_channel ,temp 
+0x4e93 012926 fetch 2 ,mem_rfcomm_remote_cid 
+0x4e94 012927 nbranch already_connected ,blank 
+0x4e95 012928 copy timeup ,pdata 
+0x4e96 012929 store 2 ,mem_rfcomm_remote_cid 
+0x4e97 012930 fetch 1 ,mem_rfcomm_state 
+0x4e98 012931 set1 l2cap_channel_state_conn_req ,pdata 
+0x4e99 012932 set1 l2cap_channel_state_conn_res ,pdata 
+0x4e9a 012933 store 1 ,mem_rfcomm_state 
+0x4e9b 012934 branch send_connection_res 
+:      012935 l2cap_proc_signal_connect_req_hid_ctrl:
+0x4e9c 012936 call save_cont_pointers 
+0x4e9d 012937 arg l2cap_hid_control_channel ,temp 
+0x4e9e 012938 fetch 2 ,mem_hid_ctrl_remote_cid 
+0x4e9f 012939 nbranch already_connected ,blank 
+0x4ea0 012940 copy timeup ,pdata 
+0x4ea1 012941 store 2 ,mem_hid_ctrl_remote_cid 
+0x4ea2 012942 fetch 1 ,mem_hid_control_state 
+0x4ea3 012943 set1 l2cap_channel_state_conn_req ,pdata 
+0x4ea4 012944 set1 l2cap_channel_state_conn_res ,pdata 
+0x4ea5 012945 store 1 ,mem_hid_control_state 
+0x4ea6 012946 branch send_connection_res 
+:      012947 l2cap_proc_signal_connect_req_hid_int:
+0x4ea7 012948 call save_cont_pointers 
+0x4ea8 012949 deposit clke 
+0x4ea9 012950 arg l2cap_hid_interrupt_channel ,temp 
+0x4eaa 012951 fetch 2 ,mem_hid_int_remote_cid 
+0x4eab 012952 nbranch already_connected ,blank 
+0x4eac 012953 copy timeup ,pdata 
+0x4ead 012954 store 2 ,mem_hid_int_remote_cid 
+0x4eae 012955 fetch 1 ,mem_hid_interrupt_state 
+0x4eaf 012956 set1 l2cap_channel_state_conn_req ,pdata 
+0x4eb0 012957 set1 l2cap_channel_state_conn_res ,pdata 
+0x4eb1 012958 store 1 ,mem_hid_interrupt_state 
+0x4eb2 012959 branch send_connection_res 
+:      012961 send_connection_pending:
+0x4eb3 012962 setarg l2cap_connect_pending 
+0x4eb4 012963 store 2 ,meml2cap_t1 
+0x4eb5 012964 jam l2cap_sdp_channel ,mem_l2cap_pending_item 
+0x4eb6 012965 branch send_connection_res0 
+:      012966 send_connection_sdp_res:
+0x4eb7 012967 fetch 1 ,mem_sdp_state 
+0x4eb8 012968 set1 l2cap_channel_state_conn_req ,pdata 
+0x4eb9 012969 set1 l2cap_channel_state_conn_res ,pdata 
+0x4eba 012970 store 1 ,mem_sdp_state 
+:      012971 send_connection_res:
+0x4ebb 012972 setarg l2cap_connect_successful 
+0x4ebc 012973 store 2 ,meml2cap_t1 
+:      012974 send_connection_res0:
+0x4ebd 012975 set1 mark_ext_patch ,mark 
+0x4ebe 012976 bpatch patch23_4 ,mem_patch23 
+0x4ebf 012977 call load_cont_pointers 
+0x4ec0 012978 setarg signal_connect_rsp 
+0x4ec1 012979 istore 1 ,contw 
+0x4ec2 012980 copy queue ,pdata 
+0x4ec3 012981 istore 1 ,contw 
+0x4ec4 012982 setarg 0x0008 
+0x4ec5 012983 istore 2 ,contw 
+0x4ec6 012984 copy temp ,pdata 
+0x4ec7 012985 istore 2 ,contw 
+0x4ec8 012986 copy timeup ,pdata 
+0x4ec9 012987 istore 2 ,contw 
+0x4eca 012988 fetch 2 ,meml2cap_t1 
+0x4ecb 012989 beq l2cap_connect_pending ,connect_pending 
+0x4ecc 012990 isolate0 0 ,debug 
+0x4ecd 012991 branch connect_suc ,true 
+0x4ece 012992 setarg l2cap_connect_refused_no_resources 
+:      012993 connect_suc:
+0x4ecf 012994 istore 2 ,contw 
+0x4ed0 012995 force 0x0000 ,pdata 
+0x4ed1 012996 istore 2 ,contw 
+0x4ed2 012997 setarg 12 
+0x4ed3 012998 branch connect_req_update_byte_counts 
+:      012999 connect_pending:
+0x4ed4 013000 istore 2 ,contw 
+0x4ed5 013001 force 0x0002 ,pdata 
+0x4ed6 013002 istore 2 ,contw 
+0x4ed7 013003 setarg 12 
+0x4ed8 013004 branch connect_req_update_byte_counts 
+:      013006 already_connected:
+0x4ed9 013007 set1 0 ,debug 
+0x4eda 013008 branch send_connection_res 
+:      013009 connect_req_update_byte_counts:
+0x4edb 013010 iadd regb ,regb 
+0x4edc 013011 copy regc ,pdata 
+0x4edd 013012 isub rega ,regc 
+0x4ede 013013 branch l2cap_proc_signal_connect_req_rtn 
+:      013014 l2cap_proc_signal_connect_req_rtn:
+0x4edf 013015 branch l2cap_process_one_signal_rtn 
+:      013017 l2cap_proc_signal_connect_rsp:
+0x4ee0 013018 ifetch 1 ,contr 
+0x4ee1 013019 copy pdata ,queue 
+0x4ee2 013020 ifetch 2 ,contr 
+0x4ee3 013021 copy pdata ,rega 
+0x4ee4 013022 copy regc ,pdata 
+0x4ee5 013023 isub rega ,regc 
+0x4ee6 013024 ifetch 2 ,contr 
+0x4ee7 013025 copy pdata ,timeup 
+0x4ee8 013026 ifetch 2 ,contr 
+0x4ee9 013027 copy pdata ,temp 
+0x4eea 013028 setarg l2cap_sdp_channel 
+0x4eeb 013029 isub temp ,null 
+0x4eec 013030 branch l2cap_proc_signal_connect_rsp_sdp ,zero 
+0x4eed 013031 setarg l2cap_rfcomm_channel 
+0x4eee 013032 isub temp ,null 
+0x4eef 013033 branch l2cap_proc_signal_connect_rsp_rfcomm ,zero 
+0x4ef0 013034 setarg l2cap_hid_control_channel 
+0x4ef1 013035 isub temp ,null 
+0x4ef2 013036 branch l2cap_proc_signal_connect_rsp_hid_ctrl ,zero 
+0x4ef3 013037 setarg l2cap_hid_interrupt_channel 
+0x4ef4 013038 isub temp ,null 
+0x4ef5 013039 branch l2cap_proc_signal_connect_rsp_hid_int ,zero 
+0x4ef6 013040 rtn 
+:      013042 l2cap_proc_signal_connect_rsp_sdp:
+0x4ef7 013043 copy timeup ,pdata 
+0x4ef8 013044 store 2 ,mem_sdp_remote_cid 
+0x4ef9 013045 fetch 1 ,mem_sdp_state 
+0x4efa 013046 set1 l2cap_channel_state_conn_res ,pdata 
+0x4efb 013047 store 1 ,mem_sdp_state 
+0x4efc 013048 branch l2cap_process_one_signal_rtn 
+:      013049 l2cap_proc_signal_connect_rsp_rfcomm:
+0x4efd 013050 copy timeup ,pdata 
+0x4efe 013051 store 2 ,mem_rfcomm_remote_cid 
+0x4eff 013052 fetch 1 ,mem_rfcomm_state 
+0x4f00 013053 set1 l2cap_channel_state_conn_res ,pdata 
+0x4f01 013054 store 1 ,mem_rfcomm_state 
+0x4f02 013055 rtn 
+:      013056 l2cap_proc_signal_connect_rsp_hid_int:
+0x4f03 013057 copy timeup ,pdata 
+0x4f04 013058 store 2 ,mem_hid_ctrl_remote_cid 
+0x4f05 013059 fetch 1 ,mem_hid_interrupt_state 
+0x4f06 013060 set1 l2cap_channel_state_conn_res ,pdata 
+0x4f07 013061 store 1 ,mem_hid_interrupt_state 
+0x4f08 013062 rtn 
+:      013063 l2cap_proc_signal_connect_rsp_hid_ctrl:
+0x4f09 013064 copy timeup ,pdata 
+0x4f0a 013065 store 2 ,mem_hid_int_remote_cid 
+0x4f0b 013066 fetch 1 ,mem_hid_control_state 
+0x4f0c 013067 set1 l2cap_channel_state_conn_res ,pdata 
+0x4f0d 013068 store 1 ,mem_hid_control_state 
+0x4f0e 013069 rtn 
+:      013071 l2cap_proc_signal_config_req:
+0x4f0f 013072 ifetch 1 ,contr 
+0x4f10 013073 copy pdata ,queue 
+0x4f11 013074 ifetch 2 ,contr 
+0x4f12 013075 copy pdata ,rega 
+0x4f13 013076 copy regc ,pdata 
+0x4f14 013077 isub rega ,regc 
+0x4f15 013078 ifetch 2 ,contr 
+0x4f16 013079 copy pdata ,temp 
+0x4f17 013080 copy temp ,rega 
+0x4f18 013081 setarg l2cap_sdp_channel 
+0x4f19 013082 isub temp ,null 
+0x4f1a 013083 branch l2cap_proc_signal_config_req_sdp ,zero 
+0x4f1b 013084 setarg l2cap_rfcomm_channel 
+0x4f1c 013085 isub temp ,null 
+0x4f1d 013086 branch l2cap_proc_signal_config_req_rfcomm ,zero 
+0x4f1e 013087 setarg l2cap_hid_control_channel 
+0x4f1f 013088 isub temp ,null 
+0x4f20 013089 branch l2cap_proc_signal_config_req_hid_ctrl ,zero 
+0x4f21 013090 setarg l2cap_hid_interrupt_channel 
+0x4f22 013091 isub temp ,null 
+0x4f23 013092 branch l2cap_proc_signal_config_req_hid_int ,zero 
+0x4f24 013093 branch l2cap_reject_command 
+:      013095 l2cap_proc_signal_config_req_sdp:
+0x4f25 013096 copy contw ,timeup 
+0x4f26 013097 fetch 1 ,mem_sdp_state 
+0x4f27 013098 set1 l2cap_channel_state_rcv_cfg_req ,pdata 
+0x4f28 013099 set1 l2cap_channel_state_snd_cfg_res ,pdata 
+0x4f29 013101 store 1 ,mem_sdp_state 
+0x4f2a 013102 copy timeup ,contw 
+0x4f2b 013103 arg l2cap_sdp_channel ,timeup 
+0x4f2c 013104 fetch 2 ,mem_sdp_remote_cid 
+0x4f2d 013105 copy pdata ,temp 
+0x4f2e 013106 branch l2cap_send_config_rsp 
+:      013107 l2cap_proc_signal_config_req_hid_ctrl:
+0x4f2f 013108 copy contw ,timeup 
+0x4f30 013109 fetch 1 ,mem_hid_control_state 
+0x4f31 013110 set1 l2cap_channel_state_rcv_cfg_req ,pdata 
+0x4f32 013111 set1 l2cap_channel_state_snd_cfg_res ,pdata 
+0x4f33 013113 store 1 ,mem_hid_control_state 
+0x4f34 013114 copy timeup ,contw 
+0x4f35 013115 arg l2cap_hid_control_channel ,timeup 
+0x4f36 013116 fetch 2 ,mem_hid_ctrl_remote_cid 
+0x4f37 013117 copy pdata ,temp 
+0x4f38 013118 branch l2cap_send_config_rsp 
+:      013119 l2cap_proc_signal_config_req_hid_int:
+0x4f39 013120 copy contw ,timeup 
+0x4f3a 013121 fetch 1 ,mem_hid_interrupt_state 
+0x4f3b 013122 set1 l2cap_channel_state_rcv_cfg_req ,pdata 
+0x4f3c 013123 set1 l2cap_channel_state_snd_cfg_res ,pdata 
+0x4f3d 013125 store 1 ,mem_hid_interrupt_state 
+0x4f3e 013126 copy timeup ,contw 
+0x4f3f 013127 arg l2cap_hid_interrupt_channel ,timeup 
+0x4f40 013128 fetch 2 ,mem_hid_int_remote_cid 
+0x4f41 013129 copy pdata ,temp 
+0x4f42 013130 branch l2cap_send_config_rsp 
+:      013131 l2cap_proc_signal_config_req_rfcomm:
+0x4f43 013132 copy contw ,timeup 
+0x4f44 013133 fetch 1 ,mem_rfcomm_state 
+0x4f45 013134 set1 l2cap_channel_state_rcv_cfg_req ,pdata 
+0x4f46 013135 set1 l2cap_channel_state_snd_cfg_res ,pdata 
+0x4f47 013137 store 1 ,mem_rfcomm_state 
+0x4f48 013139 copy timeup ,contw 
+0x4f49 013140 arg l2cap_rfcomm_channel ,timeup 
+0x4f4a 013141 fetch 2 ,mem_rfcomm_remote_cid 
+0x4f4b 013142 copy pdata ,temp 
+:      013143 l2cap_send_config_rsp:
+0x4f4c 013144 set1 mark_ext_patch ,mark 
+0x4f4d 013145 bpatch patch23_5 ,mem_patch23 
+0x4f4e 013146 setarg signal_config_rsp 
+0x4f4f 013147 istore 1 ,contw 
+0x4f50 013148 copy queue ,pdata 
+0x4f51 013149 istore 1 ,contw 
+0x4f52 013150 setarg 0x0006 
+0x4f53 013151 istore 2 ,contw 
+0x4f54 013152 copy temp ,pdata 
+0x4f55 013153 istore 2 ,contw 
+0x4f56 013154 force 0x00 ,pdata 
+0x4f57 013155 istore 2 ,contw 
+0x4f58 013156 force l2cap_config_success ,pdata 
+0x4f59 013157 istore 2 ,contw 
+0x4f5a 013158 force 10 ,pdata 
+0x4f5b 013159 iadd regb ,regb 
+0x4f5c 013161 storet 2 ,mem_config_req_dest_cid 
+0x4f5d 013162 copy queue ,pdata 
+0x4f5e 013163 store 1 ,mem_config_identifier 
+0x4f5f 013164 force l2cap_sdp_channel ,pdata 
+0x4f60 013165 icompare 0xff ,timeup 
+0x4f61 013166 branch l2cap_send_config_rsp_is_sdp ,true 
+0x4f62 013167 increase 1 ,pdata 
+:      013168 l2cap_send_config_rsp_is_sdp:
+0x4f63 013170 rtn 
+:      013171 l2cap_check_channel_state:
+0x4f64 013172 disable user 
+0x4f65 013173 rtnbit1 l2cap_channel_state_snd_cfg_req ,pdata 
+0x4f66 013174 rtnbit0 l2cap_channel_state_conn_req ,pdata 
+0x4f67 013175 rtnbit0 l2cap_channel_state_conn_res ,pdata 
+0x4f68 013176 set1 l2cap_channel_state_snd_cfg_req ,pdata 
+0x4f69 013177 copy contr ,contw 
+0x4f6a 013178 increase -1 ,contw 
+0x4f6b 013179 istore 1 ,contw 
+0x4f6c 013180 enable user 
+0x4f6d 013181 rtn 
+:      013182 l2cap_send_config_req:
+:      013183 l2cap_send_config_req_sdp:
+0x4f6e 013184 fetch 1 ,mem_sdp_state 
+0x4f6f 013185 call l2cap_check_channel_state 
+0x4f70 013186 nbranch l2cap_send_config_req_rfcomm ,user 
+0x4f71 013187 jam l2cap_sdp_channel ,mem_send_config_req 
+0x4f72 013188 fetch 2 ,mem_sdp_remote_cid 
+0x4f73 013189 store 2 ,mem_config_req_dest_cid 
+0x4f74 013190 branch l2cap_generate_config_req 
+:      013191 l2cap_send_config_req_rfcomm:
+0x4f75 013192 fetch 1 ,mem_rfcomm_state 
+0x4f76 013193 call l2cap_check_channel_state 
+0x4f77 013194 nbranch l2cap_send_config_req_hid_ctrl ,user 
+0x4f78 013195 jam l2cap_rfcomm_channel ,mem_send_config_req 
+0x4f79 013196 fetch 2 ,mem_rfcomm_remote_cid 
+0x4f7a 013197 store 2 ,mem_config_req_dest_cid 
+0x4f7b 013198 branch l2cap_generate_config_req 
+:      013199 l2cap_send_config_req_hid_ctrl:
+0x4f7c 013200 fetch 1 ,mem_hid_control_state 
+0x4f7d 013201 call l2cap_check_channel_state 
+0x4f7e 013202 nbranch l2cap_send_config_req_hid_int ,user 
+0x4f7f 013203 jam l2cap_hid_control_channel ,mem_send_config_req 
+0x4f80 013204 fetch 2 ,mem_hid_ctrl_remote_cid 
+0x4f81 013205 store 2 ,mem_config_req_dest_cid 
+0x4f82 013206 branch l2cap_generate_config_req 
+:      013207 l2cap_send_config_req_hid_int:
+0x4f83 013208 fetch 1 ,mem_hid_interrupt_state 
+0x4f84 013209 call l2cap_check_channel_state 
+0x4f85 013210 nrtn user 
+0x4f86 013211 jam l2cap_hid_interrupt_channel ,mem_send_config_req 
+0x4f87 013212 fetch 2 ,mem_hid_int_remote_cid 
+0x4f88 013213 store 2 ,mem_config_req_dest_cid 
+:      013216 l2cap_generate_config_req:
+0x4f89 013217 set1 mark_ext_patch ,mark 
+0x4f8a 013218 bpatch patch23_6 ,mem_patch23 
+0x4f8b 013219 call l2cap_get_req_id 
+0x4f8c 013220 call l2cap_malloc_signal_channel 
+0x4f8d 013221 force 0 ,regb 
+0x4f8e 013222 call l2cap_get_signal_tx_payload 
+0x4f8f 013223 force signal_config_req ,pdata 
+0x4f90 013224 istore 1 ,contw 
+0x4f91 013225 fetch 1 ,mem_ml2cap_comm_id 
+0x4f92 013226 istore 1 ,contw 
+0x4f93 013227 setarg 0x0008 
+0x4f94 013228 istore 2 ,contw 
+0x4f95 013229 fetch 2 ,mem_config_req_dest_cid 
+0x4f96 013230 istore 2 ,contw 
+0x4f97 013231 setarg 0x0000 
+0x4f98 013232 istore 2 ,contw 
+0x4f99 013233 force 1 ,pdata 
+0x4f9a 013234 istore 1 ,contw 
+0x4f9b 013235 force 2 ,pdata 
+0x4f9c 013236 istore 1 ,contw 
+0x4f9d 013237 fetch 1 ,mem_send_config_req 
+0x4f9e 013238 beq l2cap_rfcomm_channel ,l2cap_generate_config_req_rfcomm 
+0x4f9f 013239 setarg l2cap_config_mtu_sdp 
+0x4fa0 013240 istore 2 ,contw 
+0x4fa1 013241 branch l2cap_generate_config_req_done 
+:      013242 l2cap_generate_config_req_rfcomm:
+0x4fa2 013243 setarg l2cap_config_mtu_rfcomm 
+0x4fa3 013244 istore 2 ,contw 
+:      013245 l2cap_generate_config_req_done:
+0x4fa4 013246 arg 0x0c ,temp 
+0x4fa5 013247 storet 2 ,mem_l2cap_signal_tx_length 
+0x4fa6 013248 call l2cap_get_signal_tx_buff 
+0x4fa7 013249 fetch 2 ,mem_l2cap_signal_tx_length 
+0x4fa8 013250 istore 2 ,contw 
+0x4fa9 013251 force l2cap_signal_channel ,pdata 
+0x4faa 013252 istore 2 ,contw 
+0x4fab 013253 jam 0 ,mem_send_config_req 
+:      013254 l2cap_proc_signal_config_req_rtn:
+0x4fac 013255 branch l2cap_process_one_signal_rtn 
+:      013257 l2cap_proc_signal_config_rsp:
+0x4fad 013258 increase 1 ,contr 
+0x4fae 013259 ifetch 2 ,contr 
+0x4faf 013260 copy pdata ,rega 
+0x4fb0 013261 copy regc ,pdata 
+0x4fb1 013262 isub rega ,regc 
+0x4fb2 013263 ifetch 2 ,contr 
+0x4fb3 013264 copy pdata ,rega 
+0x4fb4 013265 setarg l2cap_sdp_channel 
+0x4fb5 013266 isub rega ,null 
+0x4fb6 013267 branch l2cap_proc_signal_config_rsp_sdp ,zero 
+0x4fb7 013268 setarg l2cap_rfcomm_channel 
+0x4fb8 013269 isub rega ,null 
+0x4fb9 013270 branch l2cap_proc_signal_config_rsp_rfcomm ,zero 
+0x4fba 013271 setarg l2cap_hid_control_channel 
+0x4fbb 013272 isub rega ,null 
+0x4fbc 013273 branch l2cap_proc_signal_config_rsp_hid_ctrl ,zero 
+0x4fbd 013274 setarg l2cap_hid_interrupt_channel 
+0x4fbe 013275 isub rega ,null 
+0x4fbf 013276 branch l2cap_proc_signal_config_rsp_hid_int ,zero 
+0x4fc0 013277 increase 2 ,contr 
+0x4fc1 013278 ifetch 2 ,contr 
+0x4fc2 013279 iforce null 
+0x4fc3 013280 branch l2cap_process_one_signal_rtn 
+:      013281 l2cap_proc_signal_config_rsp_sdp:
+0x4fc4 013282 fetch 1 ,mem_sdp_state 
+0x4fc5 013283 set1 l2cap_channel_state_rcv_cfg_res ,pdata 
+0x4fc6 013284 store 1 ,mem_sdp_state 
+0x4fc7 013285 branch l2cap_process_one_signal_rtn 
+:      013286 l2cap_proc_signal_config_rsp_rfcomm:
+0x4fc8 013287 fetch 1 ,mem_rfcomm_state 
+0x4fc9 013288 set1 l2cap_channel_state_rcv_cfg_res ,pdata 
+0x4fca 013289 store 1 ,mem_rfcomm_state 
+0x4fcb 013290 branch l2cap_process_one_signal_rtn 
+:      013291 l2cap_proc_signal_config_rsp_hid_ctrl:
+0x4fcc 013292 fetch 1 ,mem_hid_control_state 
+0x4fcd 013293 set1 l2cap_channel_state_rcv_cfg_res ,pdata 
+0x4fce 013294 store 1 ,mem_hid_control_state 
+0x4fcf 013295 branch l2cap_process_one_signal_rtn 
+:      013296 l2cap_proc_signal_config_rsp_hid_int:
+0x4fd0 013297 fetch 1 ,mem_hid_interrupt_state 
+0x4fd1 013298 set1 l2cap_channel_state_rcv_cfg_res ,pdata 
+0x4fd2 013299 store 1 ,mem_hid_interrupt_state 
+0x4fd3 013300 jam bt_evt_hid_connected ,mem_fifo_temp 
+0x4fd4 013301 branch ui_ipc_send_event 
+:      013305 l2cap_proc_signal_disconnect_req:
+0x4fd5 013306 ifetch 1 ,contr 
+0x4fd6 013307 copy pdata ,queue 
+0x4fd7 013308 ifetch 2 ,contr 
+0x4fd8 013309 copy pdata ,rega 
+0x4fd9 013310 copy regc ,pdata 
+0x4fda 013311 isub rega ,regc 
+0x4fdb 013312 ifetch 2 ,contr 
+0x4fdc 013313 copy pdata ,rega 
+0x4fdd 013314 ifetch 2 ,contr 
+0x4fde 013315 copy pdata ,timeup 
+0x4fdf 013316 copy rega ,temp 
+0x4fe0 013317 call save_cont_pointers 
+0x4fe1 013318 setarg l2cap_sdp_channel 
+0x4fe2 013319 isub temp ,null 
+0x4fe3 013320 branch l2cap_proc_signal_disconnect_req_sdp ,zero 
+0x4fe4 013321 setarg l2cap_rfcomm_channel 
+0x4fe5 013322 isub temp ,null 
+0x4fe6 013323 branch l2cap_proc_signal_disconnect_req_rfcomm ,zero 
+0x4fe7 013324 setarg l2cap_hid_control_channel 
+0x4fe8 013325 isub temp ,null 
+0x4fe9 013326 branch l2cap_proc_signal_disconnect_req_hid_ctrl ,zero 
+0x4fea 013327 setarg l2cap_hid_interrupt_channel 
+0x4feb 013328 isub temp ,null 
+0x4fec 013329 branch l2cap_proc_signal_disconnect_req_hid_int ,zero 
+0x4fed 013330 call l2cap_reject_command 
+0x4fee 013331 branch l2cap_proc_signal_disconnect_req_err_rtn 
+:      013332 l2cap_proc_signal_disconnect_req_hid_ctrl:
+0x4fef 013333 copy timeup ,temp 
+0x4ff0 013334 fetch 2 ,mem_hid_ctrl_remote_cid 
+0x4ff1 013335 isub temp ,null 
+0x4ff2 013336 branch l2cap_disconnect_hid_control_now ,zero 
+0x4ff3 013337 call l2cap_reject_command 
+0x4ff4 013338 branch l2cap_proc_signal_disconnect_req_err_rtn 
+:      013339 l2cap_proc_signal_disconnect_req_hid_int:
+0x4ff5 013340 copy timeup ,temp 
+0x4ff6 013341 fetch 2 ,mem_hid_int_remote_cid 
+0x4ff7 013342 isub temp ,null 
+0x4ff8 013343 branch l2cap_disconnect_hid_interrupt_now ,zero 
+0x4ff9 013344 call l2cap_reject_command 
+0x4ffa 013345 branch l2cap_proc_signal_disconnect_req_err_rtn 
+:      013347 l2cap_proc_signal_disconnect_req_sdp:
+0x4ffb 013348 copy timeup ,temp 
+0x4ffc 013349 fetch 2 ,mem_sdp_remote_cid 
+0x4ffd 013350 isub temp ,null 
+0x4ffe 013351 branch l2cap_disconnect_sdp_now ,zero 
+0x4fff 013352 call l2cap_reject_command 
+0x5000 013353 branch l2cap_proc_signal_disconnect_req_err_rtn 
+:      013354 l2cap_disconnect_hid_control_now:
+0x5001 013355 call l2cap_reset_hid_ctrl_state 
+0x5002 013356 branch l2cap_send_disconnect_rsp_pkt 
+:      013357 l2cap_disconnect_hid_interrupt_now:
+0x5003 013358 call l2cap_reset_hid_int_state 
+0x5004 013359 fetch 2 ,mem_hid_ctrl_remote_cid 
+0x5005 013360 branch l2cap_send_disconnect_rsp_pkt ,blank 
+0x5006 013368 branch l2cap_send_disconnect_rsp_pkt 
+:      013370 l2cap_disconnect_sdp_now:
+0x5007 013371 call l2cap_reset_sdp_channel_state 
+0x5008 013372 fetch 1 ,mem_upper_sm_ss 
+0x5009 013373 nbranch l2cap_send_disconnect_rsp_pkt ,blank 
+0x500a 013376 branch l2cap_send_disconnect_rsp_pkt 
+:      013377 l2cap_proc_signal_disconnect_req_rfcomm:
+0x500b 013378 copy timeup ,temp 
+0x500c 013379 fetch 2 ,mem_rfcomm_remote_cid 
+0x500d 013380 isub temp ,null 
+0x500e 013381 branch l2cap_disconnect_rfcomm_now ,zero 
+0x500f 013382 call l2cap_reject_command 
+0x5010 013383 branch l2cap_proc_signal_disconnect_req_err_rtn 
+:      013384 l2cap_disconnect_rfcomm_now:
+0x5011 013385 call l2cap_reset_rfcomm_channel_state 
+0x5012 013386 branch l2cap_send_disconnect_rsp_pkt 
+:      013387 l2cap_send_disconnect_rsp_pkt:
+0x5013 013388 call load_cont_pointers 
+0x5014 013389 setarg signal_disconnect_rsp 
+0x5015 013390 istore 1 ,contw 
+0x5016 013391 copy queue ,pdata 
+0x5017 013392 istore 1 ,contw 
+0x5018 013393 setarg 0x0004 
+0x5019 013394 istore 2 ,contw 
+0x501a 013395 copy rega ,pdata 
+0x501b 013396 istore 2 ,contw 
+0x501c 013397 copy timeup ,pdata 
+0x501d 013398 istore 2 ,contw 
+0x501e 013399 force 8 ,pdata 
+0x501f 013400 branch l2cap_proc_signal_disconnect_req_rtn 
+:      013401 l2cap_proc_signal_disconnect_req_err_rtn:
+0x5020 013402 call load_cont_pointers 
+0x5021 013403 branch l2cap_proc_signal_disconnect_req_rtn 
+:      013404 l2cap_proc_signal_disconnect_req_rtn:
+0x5022 013405 iadd regb ,regb 
+0x5023 013406 branch l2cap_process_one_signal_rtn 
+:      013407 l2cap_proc_signal_disconnect_rsp:
+0x5024 013408 ifetch 1 ,contr 
+0x5025 013409 copy pdata ,queue 
+0x5026 013410 ifetch 2 ,contr 
+0x5027 013411 copy pdata ,rega 
+0x5028 013412 copy regc ,pdata 
+0x5029 013413 isub rega ,regc 
+0x502a 013414 ifetch 2 ,contr 
+0x502b 013415 copy pdata ,timeup 
+0x502c 013416 ifetch 2 ,contr 
+0x502d 013417 copy pdata ,temp 
+0x502e 013418 call save_cont_pointers 
+0x502f 013419 setarg l2cap_sdp_channel 
+0x5030 013420 isub temp ,null 
+0x5031 013421 branch l2cap_proc_signal_disconnect_rsp_sdp ,zero 
+0x5032 013422 setarg l2cap_rfcomm_channel 
+0x5033 013423 isub temp ,null 
+0x5034 013424 branch l2cap_proc_signal_disconnect_rsp_rfcomm ,zero 
+0x5035 013425 setarg l2cap_hid_control_channel 
+0x5036 013426 isub temp ,null 
+0x5037 013427 branch l2cap_proc_signal_disconnect_rsp_hid_ctrl ,zero 
+0x5038 013428 setarg l2cap_hid_interrupt_channel 
+0x5039 013429 isub temp ,null 
+0x503a 013430 branch l2cap_proc_signal_disconnect_rsp_hid_int ,zero 
+0x503b 013431 call l2cap_reject_command 
+0x503c 013432 branch l2cap_proc_signal_disconnect_rsp_err_rtn 
+:      013433 l2cap_proc_signal_disconnect_rsp_sdp:
+0x503d 013434 copy temp ,rega 
+0x503e 013435 copy timeup ,temp 
+0x503f 013436 fetch 2 ,mem_sdp_remote_cid 
+0x5040 013437 isub temp ,null 
+0x5041 013438 call l2cap_reset_sdp_channel_state ,zero 
+0x5042 013439 branch l2cap_proc_signal_disconnect_rsp_rtn 
+:      013440 l2cap_proc_signal_disconnect_rsp_rfcomm:
+0x5043 013441 copy temp ,rega 
+0x5044 013442 copy timeup ,temp 
+0x5045 013443 fetch 2 ,mem_rfcomm_remote_cid 
+0x5046 013444 isub temp ,null 
+0x5047 013445 call l2cap_reset_rfcomm_channel_state ,zero 
+0x5048 013446 branch l2cap_proc_signal_disconnect_rsp_rtn 
+:      013447 l2cap_proc_signal_disconnect_rsp_hid_ctrl:
+0x5049 013448 copy temp ,rega 
+0x504a 013449 copy timeup ,temp 
+0x504b 013450 fetch 2 ,mem_hid_ctrl_remote_cid 
+0x504c 013451 isub temp ,null 
+0x504d 013452 call l2cap_reset_hid_ctrl_state ,zero 
+0x504e 013453 branch l2cap_proc_signal_disconnect_rsp_rtn 
+:      013454 l2cap_proc_signal_disconnect_rsp_hid_int:
+0x504f 013455 copy temp ,rega 
+0x5050 013456 copy timeup ,temp 
+0x5051 013457 fetch 2 ,mem_hid_int_remote_cid 
+0x5052 013458 isub temp ,null 
+0x5053 013459 call l2cap_reset_hid_int_state ,zero 
+0x5054 013460 branch l2cap_proc_signal_disconnect_rsp_rtn 
+:      013461 l2cap_proc_signal_disconnect_rsp_rtn:
+0x5055 013462 call load_cont_pointers 
+0x5056 013463 branch l2cap_process_one_signal_rtn 
+:      013464 l2cap_proc_signal_disconnect_rsp_err_rtn:
+0x5057 013465 branch l2cap_process_one_signal_rtn 
+:      013468 l2cap_proc_signal_echo_req:
+0x5058 013469 ifetch 1 ,contr 
+0x5059 013470 copy pdata ,queue 
+0x505a 013471 ifetch 2 ,contr 
+0x505b 013472 copy pdata ,rega 
+0x505c 013473 iadd contr ,contr 
+0x505d 013474 setarg 9 
+0x505e 013475 istore 1 ,contw 
+0x505f 013476 copy queue ,pdata 
+0x5060 013477 istore 1 ,contw 
+0x5061 013478 force 0x0000 ,pdata 
+0x5062 013479 istore 2 ,contw 
+0x5063 013480 force 4 ,pdata 
+0x5064 013481 iadd regb ,regb 
+0x5065 013482 copy regc ,pdata 
+0x5066 013483 isub rega ,regc 
+0x5067 013484 branch l2cap_process_one_signal_rtn 
+:      013485 l2cap_proc_signal_echo_rsp:
+0x5068 013486 branch l2cap_process_one_signal_rtn 
+:      013488 l2cap_proc_signal_info_rsp:
+0x5069 013489 branch l2cap_process_one_signal_rtn 
+:      013490 l2cap_reject_command:
+0x506a 013491 force 0 ,regb 
+0x506b 013492 call l2cap_get_signal_tx_payload 
+0x506c 013493 setarg signal_cmd_reject 
+0x506d 013494 istore 1 ,contw 
+0x506e 013495 copy queue ,pdata 
+0x506f 013496 istore 1 ,contw 
+0x5070 013497 setarg 2 
+0x5071 013498 istore 2 ,contw 
+0x5072 013499 setarg cmd_not_understood 
+0x5073 013500 istore 2 ,contw 
+0x5074 013501 increase 6 ,regb 
+0x5075 013502 arg 4 ,regc 
+0x5076 013503 branch l2cap_process_one_signal_rtn 
+:      013507 l2cap_reset_rfcomm_channel_state:
+0x5077 013508 setarg 0 
+0x5078 013509 store 2 ,mem_rfcomm_tx_pkt_length 
+0x5079 013510 store 2 ,mem_rfcomm_remote_cid 
+0x507a 013511 jam 0 ,mem_rfcomm_state 
+0x507b 013512 rtn 
+:      013513 l2cap_reset_sdp_channel_state:
+0x507c 013514 setarg 0 
+0x507d 013515 store 2 ,mem_sdp_tx_pkt_length 
+0x507e 013516 store 2 ,mem_sdp_remote_cid 
+0x507f 013517 jam 0 ,mem_sdp_state 
+0x5080 013518 rtn 
+:      013519 l2cap_reset_hid_ctrl_state:
+0x5081 013520 setarg 0 
+0x5082 013521 store 2 ,mem_hid_ctrl_remote_cid 
+0x5083 013522 jam 0 ,mem_hid_control_state 
+0x5084 013523 fetch 1 ,mem_hid_interrupt_state 
+0x5085 013524 beq 0 ,l2cap_reset_hid_disconnected 
+0x5086 013525 rtn 
+:      013527 l2cap_reset_hid_int_state:
+0x5087 013528 setarg 0 
+0x5088 013529 store 2 ,mem_hid_int_remote_cid 
+0x5089 013530 jam 0 ,mem_hid_interrupt_state 
+0x508a 013531 fetch 1 ,mem_hid_control_state 
+0x508b 013532 beq 0 ,l2cap_reset_hid_disconnected 
+0x508c 013533 rtn 
+:      013535 l2cap_reset_hid_disconnected:
+0x508d 013536 jam bt_evt_hid_disconnected ,mem_fifo_temp 
+0x508e 013537 branch ui_ipc_send_event 
+:      013539 l2cap_disconnect_interrupt_req:
+0x508f 013540 fetch 1 ,mem_control_tasks 
+0x5090 013541 set0 l2cap_disconnect_interrupt ,pdata 
+0x5091 013542 store 1 ,mem_control_tasks 
+0x5092 013543 fetch 2 ,mem_hid_int_remote_cid 
+0x5093 013544 rtn blank 
+0x5094 013545 call l2cap_malloc_signal_channel 
+0x5095 013546 fetch 2 ,mem_hid_int_remote_cid 
+0x5096 013547 copy pdata ,rega 
+0x5097 013548 force l2cap_hid_interrupt_channel ,regb 
+0x5098 013549 branch l2cap_generate_disconnect_req 
+:      013550 l2cap_disconnect_control_req:
+0x5099 013551 fetch 1 ,mem_control_tasks 
+0x509a 013552 set0 l2cap_disconnect_control ,pdata 
+0x509b 013553 store 1 ,mem_control_tasks 
+0x509c 013554 fetch 2 ,mem_hid_ctrl_remote_cid 
+0x509d 013555 rtn blank 
+0x509e 013556 call l2cap_malloc_signal_channel 
+0x509f 013557 fetch 2 ,mem_hid_ctrl_remote_cid 
+0x50a0 013558 copy pdata ,rega 
+0x50a1 013559 force l2cap_hid_control_channel ,regb 
+:      013560 l2cap_generate_disconnect_req:
+0x50a2 013561 call l2cap_get_req_id 
+0x50a3 013562 call l2cap_get_signal_tx_payload 
+0x50a4 013563 force signal_disconnect_req ,pdata 
+0x50a5 013564 istore 1 ,contw 
+0x50a6 013565 fetch 1 ,mem_ml2cap_comm_id 
+0x50a7 013566 istore 1 ,contw 
+0x50a8 013567 setarg 0x0004 
+0x50a9 013568 istore 2 ,contw 
+0x50aa 013569 copy rega ,pdata 
+0x50ab 013570 istore 2 ,contw 
+0x50ac 013571 copy regb ,pdata 
+0x50ad 013572 istore 2 ,contw 
+0x50ae 013573 force 0x08 ,temp 
+0x50af 013574 branch ml2cap_send_signal 
+:      013576 ml2cap_send_signal_connect_req:
+0x50b0 013577 set1 mark_ext_patch ,mark 
+0x50b1 013578 bpatch patch23_7 ,mem_patch23 
+0x50b2 013579 call l2cap_get_req_id 
+0x50b3 013580 call l2cap_get_signal_tx_payload 
+0x50b4 013581 setarg signal_connect_req 
+0x50b5 013582 istore 1 ,contw 
+0x50b6 013583 fetch 1 ,mem_ml2cap_comm_id 
+0x50b7 013584 istore 1 ,contw 
+0x50b8 013585 setarg 0x0004 
+0x50b9 013586 istore 2 ,contw 
+0x50ba 013587 copy temp ,pdata 
+0x50bb 013588 istore 2 ,contw 
+0x50bc 013589 copy timeup ,pdata 
+0x50bd 013590 istore 2 ,contw 
+0x50be 013591 arg 8 ,temp 
+0x50bf 013592 branch ml2cap_send_signal 
+:      013593 ml2cap_send_signal_config_req:
+0x50c0 013594 set1 mark_ext_patch ,mark 
+0x50c1 013595 bpatch patch24_0 ,mem_patch24 
+0x50c2 013596 call l2cap_get_req_id 
+0x50c3 013597 call l2cap_get_signal_tx_payload 
+0x50c4 013598 setarg signal_config_req 
+0x50c5 013599 istore 1 ,contw 
+0x50c6 013600 fetch 1 ,mem_ml2cap_comm_id 
+0x50c7 013601 istore 1 ,contw 
+0x50c8 013602 setarg 0x0008 
+0x50c9 013603 istore 2 ,contw 
+0x50ca 013605 copy temp ,pdata 
+0x50cb 013607 istore 2 ,contw 
+0x50cc 013608 setarg 0x0000 
+0x50cd 013609 istore 2 ,contw 
+0x50ce 013610 setarg 0x01 
+0x50cf 013611 istore 1 ,contw 
+0x50d0 013612 setarg 0x02 
+0x50d1 013613 istore 1 ,contw 
+0x50d2 013614 setarg l2cap_config_mtu_rfcomm 
+0x50d3 013615 istore 2 ,contw 
+0x50d4 013616 arg 0xc ,temp 
+0x50d5 013617 branch ml2cap_send_signal 
+:      013618 ml2cap_send_signal_disconn_req:
+0x50d6 013619 set1 mark_ext_patch ,mark 
+0x50d7 013620 bpatch patch24_1 ,mem_patch24 
+0x50d8 013621 call l2cap_get_req_id 
+0x50d9 013622 call l2cap_get_signal_tx_payload 
+0x50da 013623 setarg signal_disconnect_req 
+0x50db 013624 istore 1 ,contw 
+0x50dc 013625 fetch 1 ,mem_ml2cap_comm_id 
+0x50dd 013626 increase 1 ,pdata 
+0x50de 013627 copy contw ,rega 
+0x50df 013628 store 1 ,mem_ml2cap_comm_id 
+0x50e0 013629 copy rega ,contw 
+0x50e1 013630 istore 1 ,contw 
+0x50e2 013631 setarg 0x0004 
+0x50e3 013632 istore 2 ,contw 
+0x50e4 013633 copy temp ,pdata 
+0x50e5 013634 istore 2 ,contw 
+0x50e6 013635 copy timeup ,pdata 
+0x50e7 013636 istore 2 ,contw 
+0x50e8 013637 arg 0x8 ,temp 
+:      013640 ml2cap_send_signal:
+0x50e9 013641 storet 2 ,mem_l2cap_signal_tx_length 
+0x50ea 013642 copy temp ,pdata 
+0x50eb 013643 branch l2cap_malloc_discard ,blank 
+0x50ec 013644 call l2cap_get_signal_tx_buff 
+0x50ed 013645 fetch 2 ,mem_l2cap_signal_tx_length 
+0x50ee 013646 istore 2 ,contw 
+0x50ef 013647 force l2cap_signal_channel ,pdata 
+0x50f0 013648 istore 2 ,contw 
+0x50f1 013649 rtn 
+:      013651 msdp_send_req_done:
+0x50f2 013652 fetch 2 ,mem_sdp_tx_pkt_length 
+0x50f3 013653 branch assert ,blank 
+0x50f4 013654 call l2cap_get_sdp_tx_buff 
+0x50f5 013655 fetch 2 ,mem_sdp_tx_pkt_length 
+0x50f6 013656 istore 2 ,contw 
+0x50f7 013657 fetch 2 ,mem_sdp_remote_cid 
+0x50f8 013658 istore 2 ,contw 
+0x50f9 013659 rtn 
+:      013660 ml2cap_rx_multiplexing:
+0x50fa 013661 set1 mark_ext_patch ,mark 
+0x50fb 013662 bpatch patch24_2 ,mem_patch24 
+0x50fc 013663 fetch 2 ,mem_l2cap_rx_pkt_length 
+0x50fd 013664 branch l2cap_rx_reset_state ,blank 
+0x50fe 013665 fetch 1 ,mem_l2cap_rx_cid 
+0x50ff 013666 beq l2cap_signal_channel ,ml2cap_call_proc_signal 
+0x5100 013667 beq l2cap_sdp_channel ,l2cap_call_proc_sdp 
+0x5101 013668 beq l2cap_rfcomm_channel ,l2cap_call_proc_rfcomm 
+0x5102 013669 beq l2cap_hid_control_channel ,l2cap_call_proc_hid 
+0x5103 013670 beq l2cap_hid_interrupt_channel ,l2cap_call_proc_hid 
+0x5104 013671 branch l2cap_rx_reset_state 
+:      013673 ml2cap_call_proc_signal:
+0x5105 013674 set1 mark_ext_patch ,mark 
+0x5106 013675 bpatch patch24_3 ,mem_patch24 
+0x5107 013676 call l2cap_malloc_signal_channel 
+0x5108 013677 force 0 ,regb 
+0x5109 013678 call l2cap_get_signal_tx_payload 
+0x510a 013679 copy pdata ,contw 
+0x510b 013680 fetch 2 ,mem_l2cap_rx_pkt_length 
+0x510c 013681 copy pdata ,regc 
+0x510d 013682 fetch 2 ,mem_l2cap_payload_ptr 
+0x510e 013683 iforce contr 
+:      013684 ml2cap_proc_one_comm_loop:
+0x510f 013685 call ml2cap_proc_one_comm 
+0x5110 013686 increase -4 ,regc 
+0x5111 013687 nbranch ml2cap_proc_one_comm_loop ,zero 
+0x5112 013688 copy regb ,temp 
+0x5113 013689 call ml2cap_send_signal 
+0x5114 013690 branch l2cap_rx_reset_state 
+:      013692 ml2cap_proc_one_comm:
+0x5115 013693 ifetch 1 ,contr 
+0x5116 013694 beq signal_connect_req ,ml2cap_proc_signal_connect_req 
+0x5117 013695 beq signal_cmd_reject ,ml2cap_proc_signal_cmd_reject 
+0x5118 013696 beq signal_connect_rsp ,ml2cap_proc_signal_connect_rsp 
+0x5119 013697 beq signal_config_rsp ,ml2cap_proc_signal_config_rsp 
+0x511a 013698 beq signal_config_req ,ml2cap_proc_signal_config_req 
+0x511b 013699 beq signal_disconnect_rsp ,ml2cap_proc_signal_disconn_rsp 
+0x511c 013700 beq signal_disconnect_req ,ml2cap_proc_signal_disconn_req 
+0x511d 013701 beq signal_echo_req ,l2cap_proc_signal_echo_req 
+0x511e 013702 beq signal_info_req ,ml2cap_proc_signal_info_req 
+0x511f 013703 branch ml2cap_proc_send_reject 
+:      013705 ml2cap_proc_signal_connect_req:
+0x5120 013706 call save_cont_pointers 
+0x5121 013708 call load_cont_pointers 
+0x5122 013709 branch l2cap_proc_signal_connect_req 
+:      013710 ml2cap_proc_signal_cmd_reject:
+0x5123 013711 ifetch 1 ,contr 
+0x5124 013712 copy pdata ,queue 
+0x5125 013713 ifetch 2 ,contr 
+0x5126 013714 copy pdata ,rega 
+0x5127 013715 copy regc ,pdata 
+0x5128 013716 isub rega ,regc 
+:      013717 mvptr:
+0x5129 013718 ifetch 1 ,contr 
+0x512a 013719 increase -1 ,rega 
+0x512b 013720 nbranch mvptr ,zero 
+0x512c 013721 rtn 
+:      013722 ml2cap_proc_signal_connect_rsp:
+0x512d 013723 ifetch 1 ,contr 
+0x512e 013724 copy pdata ,queue 
+0x512f 013725 ifetch 2 ,contr 
+0x5130 013726 copy pdata ,rega 
+0x5131 013727 ifetch 2 ,contr 
+0x5132 013728 copy pdata ,timeup 
+0x5133 013729 ifetch 2 ,contr 
+0x5134 013730 copy pdata ,temp 
+0x5135 013731 ifetch 2 ,contr 
+0x5136 013732 sub pdata ,0 ,null 
+0x5137 013733 branch ml2cap_proc_signal_connect_rsp_sucessful ,zero 
+0x5138 013734 beq l2cap_connect_refused_psm_unsupported ,ml2cap_proc_signal_connect_refused_result 
+0x5139 013735 beq l2cap_connect_refused_no_resources ,ml2cap_proc_signal_connect_refused_result 
+0x513a 013736 branch ml2cap_proc_signal_connect_rsp_mnosucc 
+:      013737 ml2cap_proc_signal_connect_refused_result:
+0x513b 013738 jam bt_evt_ml2cap_conn_refused ,mem_fifo_temp 
+0x513c 013739 call ui_ipc_send_event 
+:      013740 ml2cap_proc_signal_connect_rsp_mnosucc:
+0x513d 013741 ifetch 2 ,contr 
+0x513e 013742 branch mnosucc 
+:      013743 ml2cap_proc_signal_connect_rsp_sucessful:
+0x513f 013744 call save_cont_pointers 
+0x5140 013748 setarg l2cap_sdp_channel 
+0x5141 013749 isub temp ,null 
+0x5142 013750 branch ml2cap_proc_signal_connect_rsp_sdp ,zero 
+0x5143 013751 setarg l2cap_rfcomm_channel 
+0x5144 013752 isub temp ,null 
+0x5145 013753 branch ml2cap_proc_signal_connect_rsp_rfcomm ,zero 
+0x5146 013754 setarg l2cap_hid_interrupt_channel 
+0x5147 013755 isub temp ,null 
+0x5148 013756 branch ml2cap_proc_signal_connect_rsp_hid_int ,zero 
+0x5149 013757 setarg l2cap_hid_control_channel 
+0x514a 013758 isub temp ,null 
+0x514b 013759 branch ml2cap_proc_signal_connect_rsp_hid_ctrl ,zero 
+0x514c 013760 branch mnosucc 
+:      013761 ml2cap_proc_signal_connect_rsp_sdp:
+0x514d 013762 copy timeup ,pdata 
+0x514e 013763 store 2 ,mem_sdp_remote_cid 
+0x514f 013764 fetch 1 ,mem_sdp_state 
+0x5150 013765 set1 l2cap_channel_state_conn_res 
+0x5151 013766 store 1 ,mem_sdp_state 
+0x5152 013767 branch mnosucc1 
+:      013768 ml2cap_proc_signal_connect_rsp_rfcomm:
+0x5153 013769 copy timeup ,pdata 
+0x5154 013770 store 2 ,mem_rfcomm_remote_cid 
+0x5155 013771 fetch 1 ,mem_rfcomm_state 
+0x5156 013772 set1 l2cap_channel_state_conn_res 
+0x5157 013773 store 1 ,mem_rfcomm_state 
+0x5158 013774 branch mnosucc1 
+:      013775 ml2cap_proc_signal_connect_rsp_hid_ctrl:
+0x5159 013776 copy timeup ,pdata 
+0x515a 013777 store 2 ,mem_hid_ctrl_remote_cid 
+0x515b 013778 fetch 1 ,mem_hid_control_state 
+0x515c 013779 set1 l2cap_channel_state_conn_res 
+0x515d 013780 store 1 ,mem_hid_control_state 
+0x515e 013781 branch mnosucc1 
+:      013782 ml2cap_proc_signal_connect_rsp_hid_int:
+0x515f 013783 copy timeup ,pdata 
+0x5160 013784 store 2 ,mem_hid_int_remote_cid 
+0x5161 013785 fetch 1 ,mem_hid_interrupt_state 
+0x5162 013786 set1 l2cap_channel_state_conn_res 
+0x5163 013787 store 1 ,mem_hid_interrupt_state 
+:      013790 mnosucc1:
+0x5164 013791 call load_cont_pointers 
+:      013792 mnosucc:
+0x5165 013793 copy regc ,pdata 
+0x5166 013794 isub rega ,regc 
+0x5167 013795 rtn 
+:      013797 ml2cap_proc_signal_config_rsp:
+0x5168 013798 ifetch 1 ,contr 
+0x5169 013799 copy pdata ,queue 
+0x516a 013800 ifetch 2 ,contr 
+0x516b 013801 copy pdata ,rega 
+0x516c 013802 copy regc ,pdata 
+0x516d 013803 isub rega ,regc 
+0x516e 013804 ifetch 2 ,contr 
+0x516f 013805 copy pdata ,timeup 
+0x5170 013806 ifetch 2 ,contr 
+0x5171 013807 ifetch 2 ,contr 
+0x5172 013808 nbranch mcrsdone1 ,blank 
+0x5173 013809 call save_cont_pointers 
+0x5174 013813 copy timeup ,temp 
+0x5175 013814 setarg l2cap_sdp_channel 
+0x5176 013815 isub temp ,null 
+0x5177 013816 branch ml2cap_proc_signal_config_rsp_sdp ,zero 
+0x5178 013817 setarg l2cap_rfcomm_channel 
+0x5179 013818 isub temp ,null 
+0x517a 013819 branch ml2cap_proc_signal_config_rsp_rfcomm ,zero 
+0x517b 013820 setarg l2cap_hid_control_channel 
+0x517c 013821 isub temp ,null 
+0x517d 013822 branch ml2cap_proc_signal_config_rsp_hid_ctrl ,zero 
+0x517e 013823 setarg l2cap_hid_interrupt_channel 
+0x517f 013824 isub temp ,null 
+0x5180 013825 branch ml2cap_proc_signal_config_rsp_hid_int ,zero 
+:      013826 ml2cap_proc_signal_config_rsp_sdp:
+0x5181 013827 fetch 1 ,mem_sdp_state 
+0x5182 013828 set1 l2cap_channel_state_rcv_cfg_res 
+0x5183 013829 store 1 ,mem_sdp_state 
+0x5184 013830 rtn 
+:      013831 ml2cap_proc_signal_config_rsp_rfcomm:
+0x5185 013832 fetch 1 ,mem_rfcomm_state 
+0x5186 013833 set1 l2cap_channel_state_rcv_cfg_res 
+0x5187 013834 store 1 ,mem_rfcomm_state 
+0x5188 013835 rtn 
+:      013836 ml2cap_proc_signal_config_rsp_hid_ctrl:
+0x5189 013837 fetch 1 ,mem_hid_control_state 
+0x518a 013838 set1 l2cap_channel_state_rcv_cfg_res 
+0x518b 013839 store 1 ,mem_hid_control_state 
+0x518c 013840 rtn 
+:      013841 ml2cap_proc_signal_config_rsp_hid_int:
+0x518d 013842 fetch 1 ,mem_hid_interrupt_state 
+0x518e 013843 set1 l2cap_channel_state_rcv_cfg_res 
+0x518f 013844 store 1 ,mem_hid_interrupt_state 
+0x5190 013845 jam bt_evt_hid_connected ,mem_fifo_temp 
+0x5191 013846 branch ui_ipc_send_event 
+:      013849 mcfrsdone:
+0x5192 013850 call load_cont_pointers 
+:      013851 mcrsdone1:
+0x5193 013852 increase -6 ,rega 
+:      013853 mloop2:
+0x5194 013854 branch mcrsdone ,zero 
+0x5195 013855 increase 1 ,contr 
+0x5196 013856 increase -1 ,rega 
+0x5197 013857 branch mloop2 
+:      013858 mcrsdone:
+0x5198 013859 rtn 
+:      013860 ml2cap_proc_signal_config_req:
+0x5199 013861 ifetch 1 ,contr 
+0x519a 013862 copy pdata ,queue 
+0x519b 013863 ifetch 2 ,contr 
+0x519c 013864 copy pdata ,rega 
+0x519d 013865 copy regc ,pdata 
+0x519e 013866 isub rega ,regc 
+0x519f 013867 ifetch 2 ,contr 
+0x51a0 013868 increase 2 ,contr 
+0x51a1 013869 copy pdata ,temp 
+0x51a2 013870 setarg signal_config_rsp 
+0x51a3 013871 istore 1 ,contw 
+0x51a4 013872 copy queue ,pdata 
+0x51a5 013873 istore 1 ,contw 
+0x51a6 013874 increase 2 ,rega 
+0x51a7 013875 copy rega ,pdata 
+0x51a8 013876 istore 2 ,contw 
+0x51a9 013877 call save_cont_pointers 
+0x51aa 013878 setarg l2cap_sdp_channel 
+0x51ab 013879 isub temp ,null 
+0x51ac 013880 branch ml2cap_proc_signal_config_req_sdp ,zero 
+0x51ad 013881 setarg l2cap_rfcomm_channel 
+0x51ae 013882 isub temp ,null 
+0x51af 013883 branch ml2cap_proc_signal_config_req_rfcomm ,zero 
+0x51b0 013884 setarg l2cap_hid_control_channel 
+0x51b1 013885 isub temp ,null 
+0x51b2 013886 branch ml2cap_proc_signal_config_req_hid_ctrl ,zero 
+0x51b3 013887 setarg l2cap_hid_interrupt_channel 
+0x51b4 013888 isub temp ,null 
+0x51b5 013889 branch ml2cap_proc_signal_config_req_hid_int ,zero 
+0x51b6 013890 branch mcfgrq_done 
+:      013891 ml2cap_proc_signal_config_req_sdp:
+0x51b7 013892 fetch 1 ,mem_sdp_state 
+0x51b8 013893 set1 l2cap_channel_state_rcv_cfg_req ,pdata 
+0x51b9 013894 set1 l2cap_channel_state_snd_cfg_res ,pdata 
+0x51ba 013895 store 1 ,mem_sdp_state 
+0x51bb 013896 bbit1 l2cap_channel_state_snd_cfg_req ,ml2cap_proc_signal_config_req_sdp_nsndreq 
+0x51bc 013897 fetcht 1 ,mem_control_tasks 
+0x51bd 013898 set1 l2cap_init_config_req ,temp 
+0x51be 013899 storet 1 ,mem_control_tasks 
+0x51bf 013900 copy queue ,pdata 
+0x51c0 013901 increase 1 ,pdata 
+0x51c1 013902 store 1 ,mem_config_identifier 
+0x51c2 013903 fetch 1 ,mem_sdp_state 
+0x51c3 013904 set1 l2cap_channel_state_snd_cfg_req ,pdata 
+0x51c4 013905 store 1 ,mem_sdp_state 
+:      013906 ml2cap_proc_signal_config_req_sdp_nsndreq:
+0x51c5 013907 fetch 2 ,mem_sdp_remote_cid 
+0x51c6 013908 store 2 ,mem_config_req_dest_cid 
+0x51c7 013909 branch mcfgrq_done 
+:      013910 ml2cap_proc_signal_config_req_rfcomm:
+0x51c8 013911 fetch 1 ,mem_rfcomm_state 
+0x51c9 013912 set1 l2cap_channel_state_rcv_cfg_req ,pdata 
+0x51ca 013913 set1 l2cap_channel_state_snd_cfg_res ,pdata 
+0x51cb 013914 store 1 ,mem_rfcomm_state 
+0x51cc 013915 fetch 2 ,mem_rfcomm_remote_cid 
+0x51cd 013916 branch mcfgrq_done 
+:      013917 ml2cap_proc_signal_config_req_hid_ctrl:
+0x51ce 013918 fetch 1 ,mem_hid_control_state 
+0x51cf 013919 set1 l2cap_channel_state_rcv_cfg_req ,pdata 
+0x51d0 013920 set1 l2cap_channel_state_snd_cfg_res ,pdata 
+0x51d1 013921 store 1 ,mem_hid_control_state 
+0x51d2 013922 fetch 2 ,mem_hid_ctrl_remote_cid 
+0x51d3 013923 branch mcfgrq_done 
+:      013924 ml2cap_proc_signal_config_req_hid_int:
+0x51d4 013925 fetch 1 ,mem_hid_interrupt_state 
+0x51d5 013926 set1 l2cap_channel_state_rcv_cfg_req ,pdata 
+0x51d6 013927 set1 l2cap_channel_state_snd_cfg_res ,pdata 
+0x51d7 013928 store 1 ,mem_hid_interrupt_state 
+0x51d8 013929 fetch 2 ,mem_hid_int_remote_cid 
+:      013932 mcfgrq_done:
+0x51d9 013933 copy pdata ,timeup 
+0x51da 013934 call load_cont_pointers 
+0x51db 013936 copy timeup ,pdata 
+0x51dc 013938 istore 2 ,contw 
+0x51dd 013939 force 0x0000 ,pdata 
+0x51de 013940 istore 2 ,contw 
+0x51df 013941 force 0x0000 ,pdata 
+0x51e0 013942 istore 2 ,contw 
+0x51e1 013943 force 10 ,pdata 
+0x51e2 013944 iadd regb ,regb 
+0x51e3 013945 increase -6 ,rega 
+:      013946 mloop1:
+0x51e4 013947 branch mcrqdone ,zero 
+0x51e5 013948 ifetch 1 ,contr 
+0x51e6 013949 istore 1 ,contw 
+0x51e7 013950 increase 1 ,regb 
+0x51e8 013951 increase -1 ,rega 
+0x51e9 013952 branch mloop1 
+:      013953 mcrqdone:
+0x51ea 013954 rtn 
+:      013955 ml2cap_proc_signal_disconn_req:
+0x51eb 013956 ifetch 1 ,contr 
+0x51ec 013957 copy pdata ,queue 
+0x51ed 013958 ifetch 2 ,contr 
+0x51ee 013959 copy pdata ,rega 
+0x51ef 013960 copy regc ,pdata 
+0x51f0 013961 isub rega ,regc 
+0x51f1 013963 ifetch 2 ,contr 
+0x51f2 013964 copy pdata ,rega 
+0x51f3 013965 ifetch 2 ,contr 
+0x51f4 013966 copy pdata ,timeup 
+0x51f5 013967 call save_cont_pointers 
+0x51f6 013968 setarg l2cap_sdp_channel 
+0x51f7 013969 copy rega ,temp 
+0x51f8 013970 isub temp ,null 
+0x51f9 013971 branch ml2cap_proc_signal_disconn_sdp ,zero 
+0x51fa 013972 setarg l2cap_hid_control_channel 
+0x51fb 013973 copy rega ,temp 
+0x51fc 013974 isub temp ,null 
+0x51fd 013975 branch ml2cap_proc_signal_disconn_hid_ctrl ,zero 
+0x51fe 013976 setarg l2cap_hid_interrupt_channel 
+0x51ff 013977 copy rega ,temp 
+0x5200 013978 isub temp ,null 
+0x5201 013979 branch ml2cap_proc_signal_disconn_hid_int ,zero 
+0x5202 013980 branch mclsrfc 
+:      013981 ml2cap_proc_signal_disconn_sdp:
+0x5203 013982 setarg 0x0000 
+0x5204 013983 store 2 ,mem_sdp_tx_pkt_length 
+0x5205 013984 store 2 ,mem_sdp_remote_cid 
+0x5206 013985 store 1 ,mem_sdp_state 
+0x5207 013986 branch mclssdp 
+:      013987 ml2cap_proc_signal_disconn_hid_ctrl:
+0x5208 013988 call l2cap_reset_hid_ctrl_state 
+0x5209 013989 branch mclssdp 
+:      013990 ml2cap_proc_signal_disconn_hid_int:
+0x520a 013991 call l2cap_reset_hid_int_state 
+0x520b 013997 branch mclssdp 
+:      013998 mclsrfc:
+0x520c 013999 setarg 0x0000 
+0x520d 014000 store 2 ,mem_rfcomm_tx_pkt_length 
+:      014001 mclssdp:
+0x520e 014002 call load_cont_pointers 
+0x520f 014003 setarg signal_disconnect_rsp 
+0x5210 014004 istore 1 ,contw 
+0x5211 014005 copy queue ,pdata 
+0x5212 014006 istore 1 ,contw 
+0x5213 014007 setarg 0x0004 
+0x5214 014008 istore 2 ,contw 
+0x5215 014009 copy rega ,pdata 
+0x5216 014010 istore 2 ,contw 
+0x5217 014011 copy timeup ,pdata 
+0x5218 014012 istore 2 ,contw 
+0x5219 014013 force 8 ,pdata 
+0x521a 014014 iadd regb ,regb 
+0x521b 014015 rtn 
+:      014017 ml2cap_proc_signal_disconn_rsp:
+0x521c 014018 ifetch 1 ,contr 
+0x521d 014019 copy pdata ,queue 
+0x521e 014020 ifetch 2 ,contr 
+0x521f 014021 copy pdata ,rega 
+0x5220 014022 ifetch 2 ,contr 
+0x5221 014023 copy pdata ,timeup 
+0x5222 014024 ifetch 2 ,contr 
+0x5223 014025 copy pdata ,temp 
+0x5224 014026 call save_cont_pointers 
+0x5225 014027 fetch 1 ,mem_ml2cap_comm_id 
+0x5226 014028 icompare 0xff ,queue 
+0x5227 014029 nbranch mdisdone ,true 
+0x5228 014030 setarg l2cap_sdp_channel 
+0x5229 014031 isub temp ,null 
+0x522a 014032 branch ml2cap_proc_signal_disconn_rsp_sdp ,zero 
+0x522b 014033 setarg l2cap_rfcomm_channel 
+0x522c 014034 isub temp ,null 
+0x522d 014035 branch ml2cap_proc_signal_disconn_rsp_rfcomm ,zero 
+0x522e 014036 branch mdisdone 
+:      014037 ml2cap_proc_signal_disconn_rsp_sdp:
+0x522f 014038 jam 0 ,mem_sdp_remote_cid 
+0x5230 014039 jam 0 ,mem_sdp_state 
+0x5231 014040 branch mdisdone 
+:      014041 ml2cap_proc_signal_disconn_rsp_rfcomm:
+:      014044 mdisdone:
+0x5232 014045 call load_cont_pointers 
+0x5233 014046 copy regc ,pdata 
+0x5234 014047 isub rega ,regc 
+0x5235 014048 rtn 
+:      014050 ml2cap_proc_send_reject:
+0x5236 014051 setarg signal_cmd_reject 
+0x5237 014052 istore 1 ,contw 
+0x5238 014053 ifetch 1 ,contr 
+0x5239 014054 istore 1 ,contw 
+0x523a 014055 setarg 0x0002 
+0x523b 014056 istore 2 ,contw 
+0x523c 014057 setarg 0x0000 
+0x523d 014058 istore 2 ,contw 
+0x523e 014059 setarg 0x0006 
+0x523f 014060 iadd regb ,regb 
+0x5240 014061 force 4 ,regc 
+0x5241 014062 rtn 
+:      014065 l2cap_get_req_id:
+0x5242 014066 fetch 1 ,mem_ml2cap_comm_id 
+0x5243 014067 increase 1 ,pdata 
+0x5244 014068 bne 0 ,l2cap_get_req_id_ok 
+0x5245 014069 increase 1 ,pdata 
+:      014070 l2cap_get_req_id_ok:
+0x5246 014071 store 1 ,mem_ml2cap_comm_id 
+0x5247 014072 rtn 
+:      014082 l2cap_malloc:
+0x5248 014083 set1 mark_ext_patch ,mark 
+0x5249 014084 bpatch patch24_4 ,mem_patch24 
+0x524a 014085 arg 0 ,regb 
+0x524b 014086 call l2cap_malloc_is_fifo_full 
+0x524c 014087 nbranch assert ,blank 
+0x524d 014088 call l2cap_malloc_get_full_map 
+0x524e 014089 arg mem_tx_buff0 ,regb 
+0x524f 014090 arg 0 ,queue 
+:      014091 l2cap_malloc_loop:
+0x5250 014092 fetcht 1 ,mem_used_map 
+0x5251 014093 qisolate1 temp 
+0x5252 014094 branch l2cap_malloc_next ,true 
+0x5253 014095 call l2cap_malloc_enough 
+0x5254 014096 sub timeup ,0 ,null 
+0x5255 014097 branch l2cap_malloc_next ,positive 
+0x5256 014098 call l2cap_malloc_into_fifo 
+0x5257 014099 branch l2cap_malloc_rtn 
+:      014100 l2cap_malloc_next:
+0x5258 014101 increase 128 ,regb 
+0x5259 014102 increase 1 ,queue 
+0x525a 014103 setarg 8 
+0x525b 014104 isub queue ,null 
+0x525c 014105 branch l2cap_malloc_loop ,positive 
+0x525d 014106 arg 0 ,regb 
+:      014107 l2cap_malloc_rtn:
+0x525e 014108 copy regb ,pdata 
+0x525f 014109 branch assert ,blank 
+0x5260 014110 rtn 
+:      014118 l2cap_malloc_fifo_out:
+0x5261 014119 set1 mark_ext_patch ,mark 
+0x5262 014120 bpatch patch24_5 ,mem_patch24 
+0x5263 014121 call l2cap_malloc_fifo_get_first_ptr 
+0x5264 014122 increase 1 ,contr 
+0x5265 014123 ifetch 2 ,contr 
+0x5266 014124 rtn 
+:      014130 l2cap_malloc_free:
+0x5267 014131 set1 mark_ext_patch ,mark 
+0x5268 014132 bpatch patch24_6 ,mem_patch24 
+0x5269 014133 call l2cap_malloc_fifo_get_first_ptr 
+0x526a 014134 copy contr ,contw 
+0x526b 014135 copy contr ,temp 
+0x526c 014136 setarg 0 
+0x526d 014137 istore 3 ,contw 
+0x526e 014138 rtn 
+:      014143 l2cap_malloc_discard:
+0x526f 014144 set1 mark_ext_patch ,mark 
+0x5270 014145 bpatch patch24_7 ,mem_patch24 
+0x5271 014146 call l2cap_malloc_is_fifo_empty 
+0x5272 014147 branch assert ,blank 
+0x5273 014148 fetch 3 ,mem_tx_fifo2 
+0x5274 014149 store 3 ,mem_tx_fifo3 
+0x5275 014150 fetch 3 ,mem_tx_fifo1 
+0x5276 014151 store 3 ,mem_tx_fifo2 
+0x5277 014152 fetch 3 ,mem_tx_fifo0 
+0x5278 014153 store 3 ,mem_tx_fifo1 
+0x5279 014154 rtn 
+:      014160 l2cap_malloc_is_fifo_full:
+0x527a 014161 fetch 3 ,mem_tx_fifo0 
+0x527b 014162 rtn 
+:      014168 l2cap_malloc_is_fifo_nearly_full:
+0x527c 014169 fetch 3 ,mem_tx_fifo1 
+0x527d 014170 rtn 
+:      014176 l2cap_malloc_is_fifo_empty:
+0x527e 014177 fetch 3 ,mem_tx_fifo3 
+0x527f 014178 rtn 
+:      014183 l2cap_malloc_fifo_get_first_ptr:
+0x5280 014184 call l2cap_malloc_is_fifo_empty 
+0x5281 014185 branch assert ,blank 
+0x5282 014186 arg mem_tx_fifo0 ,contr 
+:      014187 l2cap_malloc_free_loop:
+0x5283 014188 ifetch 3 ,contr 
+0x5284 014189 branch l2cap_malloc_free_loop ,blank 
+0x5285 014190 increase -3 ,contr 
+0x5286 014191 rtn 
+:      014198 l2cap_malloc_get_full_map:
+0x5287 014199 set1 mark_ext_patch ,mark 
+0x5288 014200 bpatch patch25_0 ,mem_patch25 
+0x5289 014201 arg 4 ,loopcnt 
+0x528a 014202 arg mem_tx_fifo0_map ,contr 
+0x528b 014203 arg 0 ,temp 
+:      014204 l2cap_malloc_get_full_map_loop:
+0x528c 014205 ifetch 3 ,contr 
+0x528d 014206 and pdata ,0xff ,pdata 
+0x528e 014207 ior temp ,temp 
+0x528f 014208 loop l2cap_malloc_get_full_map_loop 
+0x5290 014209 storet 1 ,mem_used_map 
+0x5291 014210 rtn 
+:      014218 l2cap_malloc_into_fifo:
+0x5292 014219 set1 mark_ext_patch ,mark 
+0x5293 014220 bpatch patch25_1 ,mem_patch25 
+0x5294 014221 call l2cap_malloc_is_fifo_full 
+0x5295 014222 nbranch assert ,blank 
+0x5296 014223 call l2cap_malloc_is_fifo_empty 
+0x5297 014224 branch l2cap_malloc_into_fifo_no_push ,blank 
+0x5298 014225 fetch 3 ,mem_tx_fifo1 
+0x5299 014226 store 3 ,mem_tx_fifo0 
+0x529a 014227 ifetch 3 ,contr 
+0x529b 014228 istore 3 ,contw 
+0x529c 014229 ifetch 3 ,contr 
+0x529d 014230 istore 3 ,contw 
+0x529e 014231 setarg 0 
+0x529f 014232 istore 3 ,contw 
+:      014233 l2cap_malloc_into_fifo_no_push:
+0x52a0 014234 arg 0 ,temp 
+0x52a1 014235 copy timeup ,pdata 
+0x52a2 014236 iadd queue ,pdata 
+:      014237 l2cap_malloc_into_fifo_loop:
+0x52a3 014238 qset1 temp 
+0x52a4 014239 increase 1 ,queue 
+0x52a5 014240 isub queue ,null 
+0x52a6 014241 nbranch l2cap_malloc_into_fifo_loop ,zero 
+0x52a7 014243 lshift8 regb ,pdata 
+0x52a8 014244 ior temp ,pdata 
+0x52a9 014245 store 3 ,mem_tx_fifo3 
+0x52aa 014246 rtn 
+:      014256 l2cap_malloc_enough:
+0x52ab 014257 set1 mark_ext_patch ,mark 
+0x52ac 014258 bpatch patch25_2 ,mem_patch25 
+0x52ad 014259 call l2cap_malloc_get_full_map 
+0x52ae 014260 copy queue ,regc 
+0x52af 014261 arg 0 ,temp 
+0x52b0 014262 arg 0 ,timeup 
+:      014264 l2cap_malloc_enough_loop:
+0x52b1 014265 copy queue ,pdata 
+0x52b2 014266 beq 8 ,l2cap_malloc_enough_end 
+0x52b3 014267 fetch 1 ,mem_used_map 
+0x52b4 014268 qisolate1 pdata 
+0x52b5 014269 branch l2cap_malloc_enough_end ,true 
+0x52b6 014270 increase 128 ,temp 
+0x52b7 014271 increase 1 ,queue 
+0x52b8 014272 copy rega ,pdata 
+0x52b9 014273 isub temp ,null 
+0x52ba 014274 branch l2cap_malloc_enough_end ,zero 
+0x52bb 014275 branch l2cap_malloc_enough_loop ,positive 
+:      014276 l2cap_malloc_enough_end:
+0x52bc 014277 copy temp ,pdata 
+0x52bd 014278 isub rega ,null 
+0x52be 014279 nbranch l2cap_malloc_enough_rtn ,positive 
+0x52bf 014280 copy queue ,pdata 
+0x52c0 014281 copy regc ,temp 
+0x52c1 014282 isub temp ,timeup 
+:      014283 l2cap_malloc_enough_rtn:
+0x52c2 014284 copy regc ,queue 
+0x52c3 014285 rtn 
+:      014288 l2cap_malloc_signal_channel:
+0x52c4 014289 set1 mark_ext_patch ,mark 
+0x52c5 014290 bpatch patch25_3 ,mem_patch25 
+0x52c6 014291 arg l2cap_signal_malloc_size ,rega 
+0x52c7 014292 call l2cap_malloc 
+0x52c8 014293 store 2 ,mem_l2cap_signal_tx_buff_ptr 
+0x52c9 014294 increase 4 ,pdata 
+0x52ca 014295 store 2 ,mem_l2cap_signal_tx_payload_ptr 
+0x52cb 014296 setarg 0 
+0x52cc 014297 store 2 ,mem_l2cap_signal_tx_length 
+0x52cd 014298 rtn 
+:      014300 l2cap_get_signal_tx_buff:
+0x52ce 014301 fetch 2 ,mem_l2cap_signal_tx_buff_ptr 
+0x52cf 014302 branch l2cap_util_pdata_to_contw 
+:      014304 l2cap_get_signal_tx_payload:
+0x52d0 014305 fetch 2 ,mem_l2cap_signal_tx_payload_ptr 
+0x52d1 014306 branch l2cap_util_pdata_to_contw 
+:      014309 l2cap_malloc_sdp_channel:
+0x52d2 014310 set1 mark_ext_patch ,mark 
+0x52d3 014311 bpatch patch25_4 ,mem_patch25 
+0x52d4 014312 arg sdp_malloc_size ,rega 
+0x52d5 014313 call l2cap_malloc 
+0x52d6 014314 store 2 ,mem_sdp_tx_buff_ptr 
+0x52d7 014315 increase 4 ,pdata 
+0x52d8 014316 store 2 ,mem_sdp_tx_payload_ptr 
+0x52d9 014317 setarg 0 
+0x52da 014318 store 2 ,mem_sdp_tx_pkt_length 
+0x52db 014319 rtn 
+:      014321 l2cap_get_sdp_tx_buff:
+0x52dc 014322 fetch 2 ,mem_sdp_tx_buff_ptr 
+0x52dd 014323 branch l2cap_util_pdata_to_contw 
+:      014325 l2cap_get_sdp_tx_payload:
+0x52de 014326 fetch 2 ,mem_sdp_tx_payload_ptr 
+0x52df 014327 branch l2cap_util_pdata_to_contw 
+:      014330 l2cap_malloc_rfcomm_channel:
+0x52e0 014331 set1 mark_ext_patch ,mark 
+0x52e1 014332 bpatch patch25_5 ,mem_patch25 
+0x52e2 014333 call push_stack 
+0x52e3 014334 jam rfcomm_malloc_fail ,mem_rfcomm_malloc_fail_flag 
+0x52e4 014335 call l2cap_malloc_is_fifo_full 
+0x52e5 014336 nrtn blank 
+0x52e6 014337 arg rfcomm_malloc_size ,rega 
+0x52e7 014338 call l2cap_malloc 
+0x52e8 014339 store 2 ,mem_rfcomm_tx_buff_ptr 
+0x52e9 014340 increase 4 ,pdata 
+0x52ea 014341 store 2 ,mem_rfcomm_tx_payload_ptr 
+0x52eb 014342 setarg 0 
+0x52ec 014343 store 2 ,mem_rfcomm_tx_pkt_length 
+0x52ed 014344 jam rfcomm_malloc_succeed ,mem_rfcomm_malloc_fail_flag 
+0x52ee 014345 branch pop_stack 
+:      014347 l2cap_get_rfcomm_tx_buff:
+0x52ef 014348 fetch 2 ,mem_rfcomm_tx_buff_ptr 
+0x52f0 014349 branch l2cap_util_pdata_to_contw 
+:      014351 l2cap_get_rfcomm_tx_payload:
+0x52f1 014352 fetch 2 ,mem_rfcomm_tx_payload_ptr 
+:      014354 l2cap_util_pdata_to_contw:
+0x52f2 014355 branch assert ,blank 
+0x52f3 014356 copy pdata ,contw 
+0x52f4 014357 rtn 
+:      014360 l2cap_lpm_save_calc_len:
+0x52f5 014361 set1 mark_ext_patch ,mark 
+0x52f6 014362 bpatch patch25_6 ,mem_patch25 
+0x52f7 014363 arg 0 ,regb 
+0x52f8 014364 arg mem_tx_fifo0_map ,rega 
+0x52f9 014365 increase -2 ,rega 
+:      014366 l2cap_lpm_save_calc_len_loop:
+0x52fa 014367 increase 2 ,rega 
+0x52fb 014368 setarg mem_tx_fifo_end 
+0x52fc 014369 isub rega ,null 
+0x52fd 014370 branch l2cap_lpm_save_calc_len_end ,zero 
+0x52fe 014371 ifetch 1 ,rega 
+0x52ff 014372 increase 1 ,rega 
+0x5300 014373 branch l2cap_lpm_save_calc_len_loop ,blank 
+0x5301 014374 ifetcht 2 ,rega 
+0x5302 014375 ifetch 2 ,temp 
+0x5303 014376 iadd regb ,regb 
+0x5304 014377 increase 4 ,regb 
+0x5305 014378 branch l2cap_lpm_save_calc_len_loop 
+:      014379 l2cap_lpm_save_calc_len_end:
+0x5306 014380 copy regb ,pdata 
+0x5307 014381 rtn 
+:      014384 l2cap_lpm_get_wake_lock:
+0x5308 014385 arg wake_lock_l2cap_tx ,queue 
+0x5309 014386 branch lpm_get_wake_lock 
+:      014388 l2cap_lpm_put_wake_lock:
+0x530a 014389 arg wake_lock_l2cap_tx ,queue 
+0x530b 014390 branch lpm_put_wake_lock 
+:      014392 l2cap_lpm_save_txbuf:
+0x530c 014393 set1 mark_ext_patch ,mark 
+0x530d 014394 bpatch patch25_7 ,mem_patch25 
+0x530e 014395 call l2cap_malloc_get_full_map 
+0x530f 014396 fetch 1 ,mem_used_map 
+0x5310 014397 rtn blank 
+0x5311 014398 call l2cap_lpm_save_calc_len 
+0x5312 014399 arg l2cap_lpm_txbuf_len ,temp 
+0x5313 014400 isub temp ,null 
+0x5314 014401 branch l2cap_lpm_get_wake_lock ,positive 
+0x5315 014402 call l2cap_lpm_put_wake_lock 
+0x5316 014403 arg mem_l2cap_lpm_txbuf ,contw 
+0x5317 014404 arg mem_tx_fifo0 ,rega 
+:      014405 l2cap_lpm_save_txbuf_loop:
+0x5318 014406 setarg mem_tx_fifo_end 
+0x5319 014407 isub rega ,null 
+0x531a 014408 rtn zero 
+0x531b 014409 ifetch 1 ,rega 
+0x531c 014410 increase 1 ,rega 
+0x531d 014411 nbranch l2cap_lpm_save_txbuf_nempty ,blank 
+0x531e 014412 istore 2 ,contw 
+0x531f 014413 increase 2 ,rega 
+0x5320 014414 branch l2cap_lpm_save_txbuf_loop 
+:      014415 l2cap_lpm_save_txbuf_nempty:
+0x5321 014416 ifetch 2 ,rega 
+0x5322 014417 increase 2 ,rega 
+0x5323 014418 copy pdata ,contr 
+0x5324 014419 ifetch 2 ,contr 
+0x5325 014420 istore 2 ,contw 
+0x5326 014421 copy pdata ,loopcnt 
+0x5327 014422 increase 2 ,loopcnt 
+0x5328 014423 call memcpy 
+0x5329 014424 branch l2cap_lpm_save_txbuf_loop 
+:      014426 l2cap_lpm_load_txbuf:
+0x532a 014427 set1 mark_ext_patch ,mark 
+0x532b 014428 bpatch patch26_0 ,mem_patch26 
+0x532c 014429 call l2cap_malloc_get_full_map 
+0x532d 014430 fetch 1 ,mem_used_map 
+0x532e 014431 rtn blank 
+0x532f 014432 arg mem_tx_fifo0_ptr ,rega 
+0x5330 014433 increase -3 ,rega 
+0x5331 014434 arg mem_l2cap_lpm_txbuf ,contr 
+:      014435 l2cap_lpm_load_txbuf_loop:
+0x5332 014436 increase 3 ,rega 
+0x5333 014437 setarg mem_tx_fifo_end + 1 
+0x5334 014438 isub rega ,null 
+0x5335 014439 rtn zero 
+0x5336 014440 ifetch 2 ,contr 
+0x5337 014441 branch l2cap_lpm_load_txbuf_loop ,blank 
+0x5338 014442 increase 4 ,pdata 
+0x5339 014443 copy pdata ,loopcnt 
+0x533a 014444 copy contr ,regb 
+0x533b 014445 ifetch 2 ,rega 
+0x533c 014446 copy pdata ,contw 
+0x533d 014447 copy regb ,contr 
+0x533e 014448 increase -2 ,contr 
+0x533f 014449 call memcpy 
+0x5340 014450 branch l2cap_lpm_load_txbuf_loop 
+:      014458 le_init_param:
+0x5341 014459 rtn wake 
+0x5342 014460 setarg param_le_scan_interval 
+0x5343 014461 store 2 ,mem_le_scan_interval 
+0x5344 014462 setarg param_le_scan_window 
+0x5345 014463 store 2 ,mem_le_scan_window 
+0x5346 014464 rtn 
+:      014466 le_init_att:
+0x5347 014467 arg notify_handle ,temp 
+0x5348 014468 call le_att_get_handle_ptr 
+0x5349 014469 add contr ,1 ,pdata 
+0x534a 014470 store 2 ,mem_le_notify_attr_start 
+0x534b 014471 rtn 
+:      014473 le_init_conn:
+0x534c 014474 set1 mark_ext_patch ,mark 
+0x534d 014475 bpatch patch26_2 ,mem_patch26 
+0x534e 014476 disable wake 
+0x534f 014477 jam 1 ,mem_app_state 
+0x5350 014478 jam 1 ,mem_le_conn_handle 
+0x5351 014479 jam 3 ,mem_le_state 
+0x5352 014480 jam 1 ,mem_le_arq 
+0x5353 014481 setarg -1 
+0x5354 014482 store 2 ,mem_le_event_count 
+0x5355 014483 force 0 ,pdata 
+0x5356 014484 store 1 ,mem_le_conn_sm 
+0x5357 014485 store 1 ,mem_le_ch 
+0x5358 014486 store 1 ,mem_le_op 
+0x5359 014487 store 3 ,mem_sniff_rcv 
+0x535a 014488 store 3 ,mem_sniff_lost 
+0x535b 014489 store 5 ,mem_le_pcnt_tx 
+0x535c 014490 set1 39 ,pdata 
+0x535d 014491 store 5 ,mem_le_pcnt_rx 
+0x535e 014492 branch le_supervision_flush 
+:      014494 le_init_master:
+0x535f 014495 set1 mark_ext_patch ,mark 
+0x5360 014496 bpatch patch26_3 ,mem_patch26 
+0x5361 014497 enable master 
+0x5362 014498 jam lemode_master ,mem_le_mode 
+0x5363 014499 jam 1 ,mem_le_att_handle 
+0x5364 014500 jam 1 ,mem_le_search_handle_start 
+0x5365 014501 setarg 0xffff 
+0x5366 014502 store 2 ,mem_le_search_handle_end 
+0x5367 014503 force 0 ,pdata 
+0x5368 014504 store 5 ,mem_le_pcnt_rx 
+0x5369 014505 set1 39 ,pdata 
+0x536a 014506 store 5 ,mem_le_pcnt_tx 
+0x536b 014507 branch le_init_conn 
+:      014510 le_init_slave:
+0x536c 014511 set1 mark_ext_patch ,mark 
+0x536d 014512 bpatch patch26_4 ,mem_patch26 
+0x536e 014513 disable master 
+0x536f 014514 jam lemode_slave ,mem_le_mode 
+0x5370 014515 jam 0 ,mem_le_adv_enable 
+0x5371 014516 jam 0 ,mem_lpm_current_mult 
+0x5372 014517 branch le_init_conn 
+:      014523 le_dispatch:
+0x5373 014524 call le_enable 
+0x5374 014525 call le_scan 
+0x5375 014526 call le_adv 
+0x5376 014527 branch le_disable 
+:      014529 le_conn_dispatch:
+0x5377 014530 set1 mark_ext_patch ,mark 
+0x5378 014531 bpatch patch26_5 ,mem_patch26 
+0x5379 014532 call le_enable 
+0x537a 014533 call app_process_ble 
+0x537b 014534 fetch 1 ,mem_le_mode 
+0x537c 014535 beq lemode_master ,le_master_dispatch 
+0x537d 014536 branch le_slave_dispatch 
+:      014542 le_master_dispatch:
+0x537e 014543 set1 mark_ext_patch ,mark 
+0x537f 014544 bpatch patch26_6 ,mem_patch26 
+0x5380 014545 enable master 
+0x5381 014546 call le_supervision_update 
+0x5382 014547 branch le_master_disconn ,positive 
+0x5383 014548 call check_ble_disabled 
+0x5384 014549 call le_setup 
+0x5385 014550 call le_prepare_tx 
+0x5386 014551 disable match 
+0x5387 014552 call le_transmit_receive_sifs 
+0x5388 014553 nrtn match 
+0x5389 014554 set1 mark_ext_patch ,mark 
+0x538a 014555 bpatch patch26_7 ,mem_patch26 
+0x538b 014556 fetch 1 ,mem_le_conn_rcv 
+0x538c 014557 increase 1 ,pdata 
+0x538d 014558 store 1 ,mem_le_conn_rcv 
+0x538e 014559 call le_acknowledge 
+0x538f 014560 call le_conn_sm_master 
+0x5390 014561 disable master 
+0x5391 014562 rtn 
+:      014564 le_master_disconn:
+0x5392 014565 call le_disconnect 
+0x5393 014566 disable master 
+0x5394 014567 rtn 
+:      014572 le_slave_dispatch:
+0x5395 014573 set1 mark_ext_patch ,mark 
+0x5396 014574 bpatch patch27_0 ,mem_patch27 
+0x5397 014575 disable attempt 
+0x5398 014576 call le_supervision_update 
+0x5399 014577 branch le_slave_disconn ,positive 
+0x539a 014578 call check_ble_disabled 
+0x539b 014579 call le_setup 
+0x539c 014580 call le_receive_slave 
+0x539d 014581 nbranch le_slave_unsync ,match 
+:      014582 le_slave_match:
+0x539e 014583 set1 mark_ext_patch ,mark 
+0x539f 014584 bpatch patch27_1 ,mem_patch27 
+0x53a0 014585 call le_got_first_packet 
+0x53a1 014586 call le_acknowledge 
+0x53a2 014587 call le_prepare_tx 
+0x53a3 014588 fetch 1 ,mem_le_rxbuf 
+0x53a4 014589 bbit1 md ,le_slave_more_data 
+0x53a5 014590 call le_xtype_fifo_is_empty 
+0x53a6 014591 nbranch le_slave_more_data ,blank 
+:      014592 le_slave_transmit_last:
+0x53a7 014593 set1 mark_ext_patch ,mark 
+0x53a8 014594 bpatch patch27_2 ,mem_patch27 
+0x53a9 014595 call le_transmit_norx 
+:      014596 le_slave_cont:
+0x53aa 014597 call check_51cmd 
+0x53ab 014598 fetch 1 ,mem_le_op 
+0x53ac 014599 bbit1 op_disconn ,le_slave_disconn 
+:      014600 le_slave_unsync:
+0x53ad 014601 set1 mark_ext_patch ,mark 
+0x53ae 014602 bpatch patch27_3 ,mem_patch27 
+0x53af 014603 call le_savelist 
+0x53b0 014604 call le_lpm_set_mult 
+0x53b1 014605 call le_update_channel_map 
+0x53b2 014606 call le_update_param 
+0x53b3 014607 branch calc_clke_offset 
+:      014609 le_slave_more_data:
+0x53b4 014610 set1 mark_ext_patch ,mark 
+0x53b5 014611 bpatch patch27_4 ,mem_patch27 
+0x53b6 014612 enable attempt 
+0x53b7 014613 call le_transmit_receive_sifs 
+0x53b8 014614 branch le_slave_match ,match 
+0x53b9 014615 branch le_slave_cont 
+:      014617 le_slave_disconn:
+:      014620 le_disconnect:
+0x53ba 014621 set1 mark_ext_patch ,mark 
+0x53bb 014622 bpatch patch27_5 ,mem_patch27 
+0x53bc 014623 call le_clear_connection_info 
+0x53bd 014624 call app_disconn_reason_collect_ble 
+0x53be 014625 jam bt_evt_le_disconnected ,mem_fifo_temp 
+0x53bf 014626 branch ui_ipc_send_event 
+:      014628 le_clear_connection_info:
+0x53c0 014629 fetcht 1 ,mem_le_conn_handle 
+0x53c1 014630 jam hci_error_connection_timeout ,mem_hci_disconn_reason 
+0x53c2 014631 call hci_send_disconn_complete 
+0x53c3 014632 jam 0 ,mem_le_conn_handle 
+0x53c4 014633 jam lemode_idle ,mem_le_mode 
+0x53c5 014634 jam 0 ,mem_le_state 
+0x53c6 014635 jam 0 ,mem_app_state 
+0x53c7 014636 rtn 
+:      014638 le_got_first_packet:
+0x53c8 014639 fetch 1 ,mem_le_conn_rcv 
+0x53c9 014640 increase 1 ,pdata 
+0x53ca 014641 store 1 ,mem_le_conn_rcv 
+0x53cb 014642 fetch 1 ,mem_le_state 
+0x53cc 014643 rtnbit1 lestate_got_first_packet 
+0x53cd 014644 set1 lestate_got_first_packet 
+0x53ce 014645 store 1 ,mem_le_state 
+0x53cf 014646 setarg 0 
+0x53d0 014647 store 4 ,mem_le_transmit_window 
+0x53d1 014648 rtn 
+:      014653 le_enable:
+0x53d2 014654 set1 mark_ext_patch ,mark 
+0x53d3 014655 bpatch patch27_6 ,mem_patch27 
+0x53d4 014656 enable le 
+0x53d5 014657 hjam 7 ,rfen_ulp 
+0x53d6 014658 branch check_ble_disabled 
+:      014660 le_disable:
+0x53d7 014661 set1 mark_ext_patch ,mark 
+0x53d8 014662 bpatch patch27_7 ,mem_patch27 
+0x53d9 014663 disable le 
+0x53da 014664 hjam 3 ,rfen_ulp 
+0x53db 014665 arg 0 ,stop_watch 
+0x53dc 014666 rtn 
+:      014668 le_prep:
+0x53dd 014669 disable enable_crc 
+0x53de 014670 disable enable_white 
+0x53df 014671 fetch 3 ,mem_le_crcinit 
+0x53e0 014672 iforce crc24_init 
+0x53e1 014673 fetch 1 ,mem_le_ch_mapped 
+0x53e2 014674 reverse pdata ,temp 
+0x53e3 014675 set1 1 ,temp 
+0x53e4 014676 rshift temp ,white_init 
+0x53e5 014677 rtn 
+:      014680 lerx_setfreq:
+0x53e6 014681 call le_setfreq 
+0x53e7 014682 call set_freq_rx 
+0x53e8 014683 setarg param_pll_setup 
+0x53e9 014684 call sleep 
+0x53ea 014685 branch rf_rx_enable 
+:      014687 letx_setfreq:
+0x53eb 014688 branch txon ,match 
+0x53ec 014689 call le_setfreq 
+0x53ed 014690 branch set_freq_tx 
+:      014691 le_setfreq:
+0x53ee 014692 set1 mark_ext_patch ,mark 
+0x53ef 014693 bpatch patch28_0 ,mem_patch28 
+0x53f0 014694 call set_sync_on 
+0x53f1 014695 fetch 1 ,mem_le_testtype 
+0x53f2 014696 nbranch le_ctf_test ,blank 
+0x53f3 014697 fetch 1 ,mem_le_ch_mapped 
+0x53f4 014698 sub pdata ,36 ,null 
+0x53f5 014699 branch le_ctf_normal ,positive 
+0x53f6 014700 force 0 ,temp 
+0x53f7 014701 rtneq 37 
+0x53f8 014702 force 24 ,temp 
+0x53f9 014703 rtneq 38 
+0x53fa 014704 force 78 ,temp 
+0x53fb 014705 rtn 
+:      014707 le_ctf_normal:
+0x53fc 014708 sub pdata ,10 ,null 
+0x53fd 014709 branch le_ctf_low ,positive 
+0x53fe 014710 increase 1 ,pdata 
+:      014712 le_ctf_low:
+0x53ff 014713 lshift pdata ,pdata 
+0x5400 014714 add pdata ,2 ,temp 
+0x5401 014715 rtn 
+:      014717 le_ctf_test:
+0x5402 014718 fetch 1 ,mem_le_ch_mapped 
+0x5403 014719 lshift pdata ,temp 
+0x5404 014720 rtn 
+:      014722 le_sca_map:
+0x5405 014723 arg 500 ,temp 
+0x5406 014724 rtn blank 
+0x5407 014725 arg 250 ,temp 
+0x5408 014726 rtneq 1 
+0x5409 014727 arg 150 ,temp 
+0x540a 014728 rtneq 2 
+0x540b 014729 arg 100 ,temp 
+0x540c 014730 rtneq 3 
+0x540d 014731 arg 75 ,temp 
+0x540e 014732 rtneq 4 
+0x540f 014733 arg 50 ,temp 
+0x5410 014734 rtneq 5 
+0x5411 014735 arg 40 ,temp 
+0x5412 014736 rtneq 6 
+0x5413 014737 arg 20 ,temp 
+0x5414 014738 rtn 
+:      014742 le_adv_access:
+0x5415 014743 setarg 0x8e89be 
+0x5416 014744 lshift8 pdata ,pdata 
+0x5417 014745 or_into 0xd6 ,pdata 
+0x5418 014746 iforce access 
+0x5419 014747 setarg 0x555555 
+0x541a 014748 store 3 ,mem_le_crcinit 
+0x541b 014749 rtn 
+:      014751 le_setup:
+0x541c 014752 set1 mark_ext_patch ,mark 
+0x541d 014753 bpatch patch28_1 ,mem_patch28 
+0x541e 014754 enable swfine 
+0x541f 014755 fetch 4 ,mem_le_access 
+0x5420 014756 iforce access 
+0x5421 014757 call le_map_channel 
+0x5422 014758 setarg 0x200 
+0x5423 014759 branch le_setup_master ,master 
+0x5424 014760 fetch 2 ,mem_le_receive_window 
+0x5425 014761 rshift pdata ,pdata 
+:      014762 le_setup_master:
+0x5426 014763 arg param_pll_setup ,temp 
+0x5427 014764 iadd temp ,pdata 
+0x5428 014765 call ahead_window 
+0x5429 014766 deposit clke 
+0x542a 014767 store 6 ,mem_le_rxon_ts 
+0x542b 014768 rtn 
+:      014770 le_next_adv_channel:
+0x542c 014771 set1 mark_ext_patch ,mark 
+0x542d 014772 bpatch patch28_2 ,mem_patch28 
+0x542e 014773 fetch 1 ,mem_le_ch_mapped 
+0x542f 014774 increase 1 ,pdata 
+0x5430 014775 store 1 ,mem_le_ch_mapped 
+0x5431 014776 rtnne 40 
+0x5432 014777 jam 37 ,mem_le_ch_mapped 
+0x5433 014778 rtn 
+:      014780 le_context_nexthop:
+0x5434 014781 set1 mark_ext_patch ,mark 
+0x5435 014782 bpatch patch28_3 ,mem_patch28 
+0x5436 014783 add rega ,coffset_mode ,contr 
+0x5437 014784 ifetch 1 ,contr 
+0x5438 014785 rtnbit0 mode_le 
+0x5439 014786 add rega ,coffset_le_event_cnt ,contw 
+0x543a 014787 ifetch 2 ,contw 
+0x543b 014788 increase 1 ,pdata 
+0x543c 014789 istore 2 ,contw 
+0x543d 014790 add rega ,coffset_le_hop ,contr 
+0x543e 014791 ifetch 1 ,contr 
+0x543f 014792 add rega ,coffset_le_ch ,contw 
+0x5440 014793 ifetcht 1 ,contw 
+0x5441 014794 iadd temp ,pdata 
+0x5442 014795 sub pdata ,36 ,null 
+0x5443 014796 branch le_nexthop_nowrap ,positive 
+0x5444 014797 increase -37 ,pdata 
+:      014798 le_nexthop_nowrap:
+0x5445 014799 istore 1 ,contw 
+0x5446 014800 rtn 
+:      014803 le_calc_channel_map:
+0x5447 014804 set1 mark_ext_patch ,mark 
+0x5448 014805 bpatch patch28_4 ,mem_patch28 
+0x5449 014806 fetch 5 ,mem_le_channel_map 
+0x544a 014807 force 0 ,temp 
+0x544b 014808 force 37 ,loopcnt 
+:      014809 le_count_channels_loop:
+0x544c 014810 bbit0 0 ,le_count_channels_notused 
+0x544d 014811 increase 1 ,temp 
+:      014812 le_count_channels_notused:
+0x544e 014813 rshift pdata ,pdata 
+0x544f 014814 loop le_count_channels_loop 
+0x5450 014815 add temp ,-1 ,pdata 
+0x5451 014816 store 1 ,mem_le_channels 
+0x5452 014817 rtn 
+:      014819 le_map_channel:
+0x5453 014820 set1 mark_ext_patch ,mark 
+0x5454 014821 bpatch patch28_5 ,mem_patch28 
+0x5455 014822 fetch 1 ,mem_le_ch 
+0x5456 014823 iforce queue 
+0x5457 014824 fetcht 5 ,mem_le_channel_map 
+0x5458 014825 qisolate1 temp 
+0x5459 014826 branch le_map_channel_end ,true 
+:      014827 le_map_channel_next:
+0x545a 014828 set1 mark_ext_patch ,mark 
+0x545b 014829 bpatch patch28_6 ,mem_patch28 
+0x545c 014830 fetch 1 ,mem_le_channels 
+0x545d 014831 isub queue ,pdata 
+0x545e 014832 branch le_map_channel_cont ,positive 
+0x545f 014833 sub pdata ,-1 ,queue 
+0x5460 014834 branch le_map_channel_next 
+:      014835 le_map_channel_cont:
+0x5461 014836 copy queue ,loopcnt 
+0x5462 014837 force 0 ,queue 
+:      014838 le_map_channel_loop:
+0x5463 014839 qisolate1 temp 
+0x5464 014840 branch le_map_channel_skip ,true 
+0x5465 014841 increase 1 ,loopcnt 
+:      014842 le_map_channel_skip:
+0x5466 014843 deposit loopcnt 
+0x5467 014844 branch le_map_channel_end ,blank 
+0x5468 014845 increase 1 ,queue 
+0x5469 014846 increase -1 ,loopcnt 
+0x546a 014847 branch le_map_channel_loop 
+:      014848 le_map_channel_end:
+0x546b 014849 deposit queue 
+0x546c 014850 store 1 ,mem_le_ch_mapped 
+0x546d 014851 rtn 
+:      014854 le_wait_tx:
+0x546e 014855 branch le_wait_master ,master 
+0x546f 014856 until null ,timeout 
+0x5470 014857 rtn 
+:      014859 le_wait_master:
+0x5471 014860 arg 0xea0 ,timeup 
+0x5472 014861 until clkn_rt ,meet 
+0x5473 014862 rtn 
+:      014864 le_receive_adv:
+0x5474 014865 disable swfine 
+0x5475 014866 fetch 2 ,mem_le_scan_window 
+0x5476 014867 copy pdata ,timeup 
+0x5477 014868 branch le_receive_packet 
+:      014871 le_receive_slave:
+0x5478 014872 set1 mark_ext_patch ,mark 
+0x5479 014873 bpatch patch28_7 ,mem_patch28 
+0x547a 014874 enable swfine 
+0x547b 014875 fetch 2 ,mem_le_receive_window 
+0x547c 014876 fetcht 4 ,mem_le_transmit_window 
+0x547d 014877 iadd temp ,timeup 
+:      014878 le_receive_packet:
+0x547e 014879 call lerx_setfreq 
+:      014880 le_receive_rxon:
+0x547f 014881 set1 mark_ext_patch ,mark 
+0x5480 014882 bpatch patch29_0 ,mem_patch29 
+0x5481 014883 call le_prep 
+0x5482 014884 disable match 
+0x5483 014885 enable decode_fec0 
+0x5484 014886 enable is_rx 
+0x5485 014887 disable is_tx 
+0x5486 014888 copy timeup ,stop_watch 
+0x5487 014889 correlate null ,timeout 
+0x5488 014890 branch le_receive_on_attempt ,attempt 
+0x5489 014891 copy clke ,temp 
+0x548a 014892 storet 6 ,mem_sync_clke 
+:      014893 le_receive_on_attempt:
+0x548b 014894 nbranch end_of_packet ,sync 
+0x548c 014895 branch le_receive_skip ,attempt 
+0x548d 014896 arg param_clke_cal_le ,clke_rt 
+0x548e 014897 copy bt_clk ,clke_bt 
+0x548f 014898 fetch 1 ,mem_le_state 
+0x5490 014899 bbit0 lestate_got_first_packet ,le_receive_skip 
+0x5491 014900 call lpm_adjust_clk ,wake 
+:      014901 le_receive_skip:
+0x5492 014902 set1 mark_ext_patch ,mark 
+0x5493 014903 bpatch patch29_1 ,mem_patch29 
+0x5494 014904 call save_rssi 
+0x5495 014905 enable enable_white 
+0x5496 014906 enable enable_crc 
+0x5497 014907 parse demod ,bucket ,8 
+0x5498 014908 rshift3 pwindow ,pdata 
+0x5499 014909 store 1 ,mem_le_rxbuf 
+0x549a 014910 parse demod ,bucket ,8 
+0x549b 014911 rshift3 pwindow ,pdata 
+0x549c 014912 istore 1 ,contw 
+0x549d 014913 and pdata ,0x3f ,loopcnt 
+0x549e 014914 branch lerx_nopayload ,zero 
+:      014916 lerx_loop:
+0x549f 014917 parse demod ,bucket ,8 
+0x54a0 014918 rshift3 pwindow ,pdata 
+0x54a1 014919 istore 1 ,contw 
+0x54a2 014920 loop lerx_loop 
+:      014922 lerx_nopayload:
+0x54a3 014923 set1 mark_ext_patch ,mark 
+0x54a4 014924 bpatch patch29_2 ,mem_patch29 
+0x54a5 014925 parse demod ,bucket ,24 
+0x54a6 014926 enable swfine 
+0x54a7 014927 arg param_sifs ,stop_watch 
+0x54a8 014928 rshift32 pdata ,pdata 
+0x54a9 014929 rshift16 pdata ,pdata 
+0x54aa 014930 istore 3 ,contw 
+0x54ab 014931 branch end_of_packet ,crc_failed 
+0x54ac 014932 enable match 
+0x54ad 014933 fetch 1 ,mem_last_freq 
+0x54ae 014934 add pdata ,2 ,rega 
+0x54af 014935 call rf_write_freq 
+0x54b0 014936 disable decode_fec0 
+0x54b1 014937 branch set_sync_on 
+:      014939 le_transmit_receive_sifs:
+0x54b2 014940 set1 mark_ext_patch ,mark 
+0x54b3 014941 bpatch patch29_3 ,mem_patch29 
+0x54b4 014942 call le_transmit 
+0x54b5 014943 fetcht 1 ,mem_last_freq 
+0x54b6 014944 call set_freq_rx 
+0x54b7 014945 call rf_rx_enable 
+0x54b8 014946 enable swfine 
+0x54b9 014947 arg 5000 ,timeup 
+0x54ba 014948 branch le_receive_rxon 
+:      014950 le_transmit_norx:
+0x54bb 014951 call le_transmit 
+0x54bc 014952 branch end_of_packet 
+:      014954 le_transmit:
+0x54bd 014955 set1 mark_ext_patch ,mark 
+0x54be 014956 bpatch patch29_4 ,mem_patch29 
+0x54bf 014957 call le_prep 
+0x54c0 014958 call letx_setfreq 
+0x54c1 014959 set1 txgfsk ,radio_ctrl 
+0x54c2 014960 enable encode_fec0 
+0x54c3 014961 enable is_tx 
+0x54c4 014962 disable is_rx 
+0x54c5 014963 call le_wait_tx 
+0x54c6 014964 rshift16 access ,pdata 
+0x54c7 014965 rshift8 pdata ,pdata 
+0x54c8 014966 rshift4 pdata ,pdata 
+0x54c9 014967 inject mod ,40 
+0x54ca 014968 enable enable_white 
+0x54cb 014969 enable enable_crc 
+0x54cc 014970 set1 mark_ext_patch ,mark 
+0x54cd 014971 bpatch patch29_5 ,mem_patch29 
+0x54ce 014972 fetch 1 ,mem_le_txheader 
+0x54cf 014973 inject mod ,8 
+0x54d0 014974 ifetch 1 ,contr 
+0x54d1 014975 and pdata ,0x3f ,loopcnt 
+0x54d2 014976 inject mod ,8 
+0x54d3 014977 branch letr_nopayload ,zero 
+:      014978 letr_loop:
+0x54d4 014979 ifetch 1 ,contr 
+0x54d5 014980 inject mod ,8 
+0x54d6 014981 loop letr_loop 
+:      014983 letr_nopayload:
+0x54d7 014984 enable enable_parity 
+0x54d8 014985 inject mod ,24 
+0x54d9 014986 disable enable_parity 
+0x54da 014987 until null ,tx_clear 
+0x54db 014988 nop 100 
+0x54dc 014989 disable encode_fec0 
+0x54dd 014990 rtn 
+:      014992 le_send_adv_ind:
+0x54de 014993 set1 mark_ext_patch ,mark 
+0x54df 014994 bpatch patch29_6 ,mem_patch29 
+0x54e0 014995 fetch 1 ,mem_le_adv_type 
+0x54e1 014996 beq adv_direct_ind ,le_send_adv_direct_ind 
+0x54e2 014997 fetch 1 ,mem_le_adv_own_addr_type 
+0x54e3 014998 lshift4 pdata ,pdata 
+0x54e4 014999 lshift2 pdata ,pdata 
+0x54e5 015000 store 1 ,mem_le_txheader 
+0x54e6 015001 fetcht 1 ,mem_le_adv_data_len 
+0x54e7 015002 add temp ,6 ,pdata 
+0x54e8 015003 store 1 ,mem_le_txlen 
+0x54e9 015004 fetch 6 ,mem_le_lap 
+0x54ea 015005 store 6 ,mem_le_txpayload 
+0x54eb 015006 copy temp ,loopcnt 
+0x54ec 015007 arg mem_le_adv_data ,contr 
+0x54ed 015008 call memcpy 
+0x54ee 015009 branch le_send_adv_transmit 
+:      015010 le_send_adv_direct_ind:
+0x54ef 015011 fetcht 2 ,mem_le_notify_handle 
+0x54f0 015012 call le_att_check_notification_enable 
+0x54f1 015013 copy rega ,contw 
+0x54f2 015014 setarg 1 
+0x54f3 015015 istore 1 ,contw 
+0x54f4 015016 fetch 1 ,mem_le_adv_direct_addr_type 
+0x54f5 015017 lshift4 pdata ,pdata 
+0x54f6 015018 lshift2 pdata ,pdata 
+0x54f7 015019 increase 1 ,pdata 
+0x54f8 015020 store 1 ,mem_le_txheader 
+0x54f9 015021 setarg 12 
+0x54fa 015022 store 1 ,mem_le_txlen 
+0x54fb 015023 fetch 6 ,mem_le_lap 
+0x54fc 015024 store 6 ,mem_le_txpayload 
+0x54fd 015025 fetch 6 ,mem_hci_plap 
+0x54fe 015026 istore 6 ,contw 
+:      015027 le_send_adv_transmit:
+0x54ff 015028 set1 mark_ext_patch ,mark 
+0x5500 015029 bpatch patch29_7 ,mem_patch29 
+0x5501 015030 fetch 1 ,mem_le_adv_transmit 
+0x5502 015031 increase 1 ,pdata 
+0x5503 015032 store 1 ,mem_le_adv_transmit 
+0x5504 015033 arg 1800 ,stop_watch 
+0x5505 015034 disable match 
+0x5506 015035 branch le_transmit_receive_sifs 
+:      015037 le_send_scan_request:
+0x5507 015038 set1 mark_ext_patch ,mark 
+0x5508 015039 bpatch patch2a_0 ,mem_patch2a 
+0x5509 015040 fetch 1 ,mem_le_scan_type 
+0x550a 015041 rtnne le_scan_type_active ,pdata 
+0x550b 015042 fetch 1 ,mem_le_adv_transmit 
+0x550c 015043 increase 1 ,pdata 
+0x550d 015044 store 1 ,mem_le_adv_transmit 
+0x550e 015045 arg 0x0c03 ,temp 
+0x550f 015046 fetch 1 ,mem_le_scan_own_addr_type 
+0x5510 015047 nsetflag blank ,le_sender_addr_bit ,temp 
+0x5511 015048 copy rega ,pdata 
+0x5512 015049 nsetflag blank ,le_receiver_addr_bit ,temp 
+0x5513 015050 storet 2 ,mem_le_txheader 
+0x5514 015051 fetch 6 ,mem_le_lap 
+0x5515 015052 istore 6 ,contw 
+0x5516 015053 fetch 6 ,mem_le_plap 
+0x5517 015054 istore 6 ,contw 
+0x5518 015055 branch le_transmit_receive_sifs 
+:      015058 le_send_scan_response:
+0x5519 015059 set1 mark_ext_patch ,mark 
+0x551a 015060 bpatch patch2a_1 ,mem_patch2a 
+0x551b 015061 arg scan_rsp ,temp 
+0x551c 015062 fetch 1 ,mem_le_adv_own_addr_type 
+0x551d 015063 nsetflag blank ,le_sender_addr_bit ,temp 
+0x551e 015064 storet 1 ,mem_le_txheader 
+0x551f 015065 fetcht 1 ,mem_le_scan_data_len 
+0x5520 015066 add temp ,6 ,pdata 
+0x5521 015067 store 1 ,mem_le_txlen 
+0x5522 015068 fetch 6 ,mem_le_lap 
+0x5523 015069 store 6 ,mem_le_txpayload 
+0x5524 015070 arg mem_le_scan_data ,contr 
+0x5525 015071 copy temp ,loopcnt 
+0x5526 015072 call memcpy 
+0x5527 015073 branch le_transmit_norx 
+:      015076 le_connect_request:
+0x5528 015077 set1 mark_ext_patch ,mark 
+0x5529 015078 bpatch patch2a_2 ,mem_patch2a 
+0x552a 015079 force -1 ,pdata 
+0x552b 015080 setsect 2 ,1 
+0x552c 015081 store 5 ,mem_le_channel_map 
+0x552d 015082 call le_calc_channel_map 
+0x552e 015083 force 4 ,loopcnt 
+0x552f 015084 arg mem_le_access ,contw 
+0x5530 015085 call generate_random_loop 
+0x5531 015086 fetch 2 ,mem_le_conn_superto 
+0x5532 015087 store 2 ,mem_le_superto 
+:      015088 le_con_req_hop_retry:
+0x5533 015089 random pdata 
+0x5534 015090 and_into 0xf ,pdata 
+0x5535 015091 sub pdata ,4 ,null 
+0x5536 015092 branch le_con_req_hop_retry ,positive 
+0x5537 015093 store 1 ,mem_le_hop 
+0x5538 015094 store 1 ,mem_tmp1 
+0x5539 015095 set1 mark_ext_patch ,mark 
+0x553a 015096 bpatch patch2a_3 ,mem_patch2a 
+0x553b 015097 fetcht 2 ,mem_le_conn_interval 
+0x553c 015098 storet 2 ,mem_le_tsniff 
+0x553d 015099 copy temp ,regc 
+0x553e 015100 add clkn_bt ,7 ,pdata 
+0x553f 015101 idiv regc 
+0x5540 015102 call wait_div_end 
+0x5541 015103 remainder rega 
+0x5542 015104 isub rega ,pdata 
+0x5543 015105 iadd regc ,pdata 
+0x5544 015106 fetcht 2 ,mem_le_dsniff 
+0x5545 015107 iadd temp ,pdata 
+0x5546 015108 store 4 ,mem_le_anchor 
+0x5547 015109 isub clkn_bt ,rega 
+0x5548 015110 increase -6 ,rega 
+0x5549 015111 arg 0x2205 ,regb 
+0x554a 015112 fetch 1 ,mem_le_conn_own_addr_type 
+0x554b 015113 nsetflag blank ,le_sender_addr_bit ,regb 
+0x554c 015114 fetch 1 ,mem_le_conn_peer_addr_type 
+0x554d 015115 nsetflag blank ,le_receiver_addr_bit ,regb 
+0x554e 015116 copy regb ,pdata 
+0x554f 015117 store 2 ,mem_le_txheader 
+0x5550 015118 fetch 6 ,mem_le_lap 
+0x5551 015119 istore 6 ,contw 
+0x5552 015120 fetch 6 ,mem_le_plap 
+0x5553 015121 istore 6 ,contw 
+0x5554 015122 fetch 4 ,mem_le_access 
+0x5555 015123 istore 4 ,contw 
+0x5556 015124 random pdata 
+0x5557 015125 istore 2 ,contw 
+0x5558 015126 random pdata 
+0x5559 015127 istore 1 ,contw 
+0x555a 015128 force 2 ,pdata 
+0x555b 015129 istore 1 ,contw 
+0x555c 015130 rshift2 rega ,pdata 
+0x555d 015131 istore 2 ,contw 
+0x555e 015132 rshift2 regc ,pdata 
+0x555f 015133 istore 2 ,contw 
+0x5560 015134 set1 mark_ext_patch ,mark 
+0x5561 015135 bpatch patch2a_4 ,mem_patch2a 
+0x5562 015136 fetch 2 ,mem_le_conn_latency 
+0x5563 015137 istore 2 ,contw 
+0x5564 015138 fetch 2 ,mem_le_conn_superto 
+0x5565 015139 istore 2 ,contw 
+0x5566 015140 fetch 5 ,mem_le_channel_map 
+0x5567 015141 istore 5 ,contw 
+0x5568 015142 fetch 1 ,mem_le_hop 
+0x5569 015143 arg param_le_sca ,temp 
+0x556a 015144 ior temp ,pdata 
+0x556b 015145 istore 1 ,contw 
+0x556c 015146 call le_transmit_norx 
+0x556d 015147 setarg mem_le_txheader 
+0x556e 015148 add pdata ,18 ,contr 
+0x556f 015149 ifetch 3 ,contr 
+0x5570 015150 store 3 ,mem_le_crcinit 
+0x5571 015151 rtn 
+:      015153 le_init_adv:
+0x5572 015154 set1 mark_ext_patch ,mark 
+0x5573 015155 bpatch patch2a_5 ,mem_patch2a 
+0x5574 015156 disable master 
+0x5575 015157 branch le_adv_access 
+:      015161 le_update_param:
+0x5576 015162 set1 mark_ext_patch ,mark 
+0x5577 015163 bpatch patch2a_6 ,mem_patch2a 
+0x5578 015164 fetch 1 ,mem_le_state 
+0x5579 015165 rtnbit0 lestate_update_param 
+0x557a 015166 fetch 2 ,mem_le_event_count 
+0x557b 015167 fetcht 2 ,mem_le_instant 
+0x557c 015168 isub temp ,pdata 
+0x557d 015169 nrtn positive 
+0x557e 015170 fetch 1 ,mem_le_state 
+0x557f 015171 set0 lestate_update_param ,pdata 
+0x5580 015172 set0 lestate_got_first_packet ,pdata 
+0x5581 015173 store 1 ,mem_le_state 
+0x5582 015174 fetch 4 ,mem_le_anchor 
+0x5583 015175 fetcht 2 ,mem_le_tsniff 
+0x5584 015176 isub temp ,rega 
+0x5585 015177 set1 mark_ext_patch ,mark 
+0x5586 015178 bpatch patch2a_7 ,mem_patch2a 
+0x5587 015179 fetch 1 ,mem_le_new_param 
+0x5588 015180 store 1 ,mem_le_window_size 
+0x5589 015181 ifetcht 2 ,contr 
+0x558a 015182 ifetch 2 ,contr 
+0x558b 015183 lshift2 pdata ,pdata 
+0x558c 015184 store 2 ,mem_le_tsniff 
+0x558d 015185 lshift2 temp ,temp 
+0x558e 015186 iadd temp ,pdata 
+0x558f 015187 ifetcht 4 ,contr 
+0x5590 015188 storet 4 ,mem_le_slave_latency 
+0x5591 015189 iadd rega ,pdata 
+0x5592 015190 store 4 ,mem_le_anchor 
+0x5593 015191 branch le_receive_window_size 
+:      015193 le_update_channel_map:
+0x5594 015194 set1 mark_ext_patch ,mark 
+0x5595 015195 bpatch patch2b_0 ,mem_patch2b 
+0x5596 015196 fetch 1 ,mem_le_state 
+0x5597 015197 rtnbit0 lestate_update_map 
+0x5598 015198 fetch 2 ,mem_le_event_count 
+0x5599 015199 fetcht 2 ,mem_le_instant 
+0x559a 015200 isub temp ,pdata 
+0x559b 015201 nrtn positive 
+0x559c 015202 fetch 1 ,mem_le_state 
+0x559d 015203 set0 lestate_update_map ,pdata 
+0x559e 015204 store 1 ,mem_le_state 
+0x559f 015205 fetch 5 ,mem_le_new_map 
+0x55a0 015206 store 5 ,mem_le_channel_map 
+0x55a1 015207 branch le_calc_channel_map 
+:      015210 le_acknowledge:
+0x55a2 015211 set1 mark_ext_patch ,mark 
+0x55a3 015212 bpatch patch2b_1 ,mem_patch2b 
+0x55a4 015213 call le_supervision_flush 
+0x55a5 015214 call le_check_wak 
+0x55a6 015215 fetch 1 ,mem_le_rxbuf 
+0x55a7 015216 rshift pdata ,pdata 
+0x55a8 015217 ixor temp ,pdata 
+0x55a9 015218 isolate1 nesn ,pdata 
+0x55aa 015219 setflag true ,mark_old_packet ,mark 
+0x55ab 015220 fetch 1 ,mem_le_rxbuf + 1 
+0x55ac 015221 branch le_ack_unenc ,blank 
+0x55ad 015222 fetch 1 ,mem_le_state 
+0x55ae 015223 bbit0 lestate_encryption ,le_ack_unenc 
+0x55af 015224 call load_sk 
+0x55b0 015225 call le_decrypt 
+0x55b1 015226 nrtn blank 
+:      015227 le_ack_unenc:
+0x55b2 015228 rtnmark1 mark_old_packet 
+0x55b3 015229 fetcht 1 ,mem_le_arq 
+0x55b4 015230 setflip nesn ,temp 
+0x55b5 015231 storet 1 ,mem_le_arq 
+0x55b6 015232 branch le_parse 
+:      015234 le_check_wak:
+0x55b7 015235 set1 mark_ext_patch ,mark 
+0x55b8 015236 bpatch patch2b_2 ,mem_patch2b 
+0x55b9 015237 fetcht 1 ,mem_le_arq 
+0x55ba 015238 isolate0 wak ,temp 
+0x55bb 015239 rtn true 
+0x55bc 015240 fetch 1 ,mem_le_rxbuf 
+0x55bd 015241 lshift pdata ,pdata 
+0x55be 015242 ixor temp ,pdata 
+0x55bf 015243 rtnbit0 sn 
+0x55c0 015244 set0 wak ,temp 
+0x55c1 015245 setflip sn ,temp 
+0x55c2 015246 storet 1 ,mem_le_arq 
+0x55c3 015247 compare 3 ,temp ,3 
+0x55c4 015248 nrtn true 
+0x55c5 015249 fetch 1 ,mem_le_txpayload 
+0x55c6 015250 rtnne ll_start_enc_req 
+0x55c7 015251 fetch 1 ,mem_le_state 
+0x55c8 015252 set1 lestate_encryption ,pdata 
+0x55c9 015253 store 1 ,mem_le_state 
+0x55ca 015254 rtn 
+:      015256 le_wait_adv:
+0x55cb 015257 set1 mark_ext_patch ,mark 
+0x55cc 015258 bpatch patch2b_3 ,mem_patch2b 
+0x55cd 015259 call le_next_adv_channel 
+0x55ce 015260 call le_receive_adv 
+0x55cf 015261 fetch 1 ,mem_le_adv_waitcnt 
+0x55d0 015262 increase 1 ,pdata 
+0x55d1 015263 store 1 ,mem_le_adv_waitcnt 
+0x55d2 015264 rtn 
+:      015266 le_scan:
+0x55d3 015267 set1 mark_ext_patch ,mark 
+0x55d4 015268 bpatch patch2b_4 ,mem_patch2b 
+0x55d5 015269 fetch 1 ,mem_le_scan_enable 
+0x55d6 015270 rtnne le_scan_enable 
+0x55d7 015271 arg le_scan_interval_timer ,queue 
+0x55d8 015272 call timer_check 
+0x55d9 015273 nrtn blank 
+0x55da 015274 fetch 2 ,mem_le_scan_interval 
+0x55db 015275 fetcht 2 ,mem_le_scan_window 
+0x55dc 015276 isub temp ,pdata 
+0x55dd 015277 arg le_scan_interval_timer ,queue 
+0x55de 015278 call timer_init 
+0x55df 015279 disable master 
+0x55e0 015280 call le_init_adv 
+0x55e1 015281 call le_wait_adv 
+0x55e2 015282 nrtn match 
+0x55e3 015283 set1 mark_ext_patch ,mark 
+0x55e4 015284 bpatch patch2b_5 ,mem_patch2b 
+0x55e5 015285 fetch 6 ,mem_le_rxbuf + 2 
+0x55e6 015286 store 6 ,mem_le_plap 
+0x55e7 015287 call le_scan_dongle 
+0x55e8 015288 call le_scan_addr_to_uart 
+0x55e9 015290 fetch 1 ,mem_le_adv_rcv 
+0x55ea 015291 increase 1 ,pdata 
+0x55eb 015292 store 1 ,mem_le_adv_rcv 
+0x55ec 015293 call le_create_conn 
+0x55ed 015294 rtn master 
+0x55ee 015295 call hci_send_le_adv_report_event 
+0x55ef 015296 call le_send_scan_request 
+0x55f0 015297 nrtn match 
+0x55f1 015298 set1 mark_ext_patch ,mark 
+0x55f2 015299 bpatch patch2b_6 ,mem_patch2b 
+0x55f3 015300 fetch 1 ,mem_le_scanrsp_rcv 
+0x55f4 015301 increase 1 ,pdata 
+0x55f5 015302 store 1 ,mem_le_scanrsp_rcv 
+0x55f6 015303 fetch 9 ,mem_le_rxbuf + 8 
+0x55f7 015304 store 9 ,mem_tmp_buffer 
+0x55f8 015305 branch hci_send_le_adv_report_event 
+:      015307 le_create_conn:
+0x55f9 015308 set1 mark_ext_patch ,mark 
+0x55fa 015309 bpatch patch2b_7 ,mem_patch2b 
+0x55fb 015310 fetch 1 ,mem_cmd_le_create_conn 
+0x55fc 015311 rtnne hci_cmd_le_create_conn ,pdata 
+0x55fd 015312 fetch 6 ,mem_le_plap 
+0x55fe 015313 fetcht 6 ,mem_le_conn_peer_addr 
+0x55ff 015314 isub temp ,null 
+0x5600 015315 nrtn zero 
+0x5601 015316 call context_new 
+0x5602 015317 nrtn zero 
+0x5603 015318 call le_connect_request 
+0x5604 015319 call le_init_master 
+0x5605 015320 set1 mark_ext_patch ,mark 
+0x5606 015321 bpatch patch2c_0 ,mem_patch2c 
+0x5607 015322 jam 0 ,mem_hci_cmd 
+0x5608 015323 jam 0 ,mem_le_peer_sca 
+0x5609 015324 fetch 1 ,mem_device_option 
+0x560a 015325 bne dvc_op_dongle ,le_create_conn_ndongle 
+0x560b 015326 jam conn_sm_send_write_req ,mem_le_conn_sm 
+:      015327 le_create_conn_ndongle:
+0x560c 015328 arg 0 ,temp 
+0x560d 015329 call hci_send_le_conn_complete 
+0x560e 015330 jam 0 ,mem_le_scan_enable 
+0x560f 015331 jam 0 ,mem_cmd_le_create_conn 
+0x5610 015332 jam xt_ll_version_ind ,mem_fifo_temp 
+0x5611 015333 call le_xtype_fifo_in 
+0x5612 015334 branch context_save 
+:      015336 le_scan_check_sender_addr_type:
+0x5613 015337 arg 1 ,rega 
+0x5614 015338 fetch 1 ,mem_le_rxbuf 
+0x5615 015339 rtnbit1 le_sender_addr_bit 
+0x5616 015340 arg 0 ,rega 
+0x5617 015341 rtn 
+:      015343 le_xtype_fifo_count:
+0x5618 015344 arg mem_le_xtype_fifo ,contr 
+0x5619 015345 branch fifo_content_count 
+:      015347 le_xtype_fifo_is_empty:
+0x561a 015348 arg mem_le_xtype_fifo ,rega 
+0x561b 015349 branch fifo_is_empty 
+:      015351 le_xtype_fifo_is_full:
+0x561c 015352 arg mem_le_xtype_fifo ,rega 
+0x561d 015353 branch fifo_is_full 
+:      015355 le_xtype_fifo_is_near_full:
+0x561e 015356 arg mem_le_xtype_fifo ,rega 
+0x561f 015357 branch fifo_is_near_full 
+:      015359 le_xtype_fifo_in:
+0x5620 015360 arg mem_le_xtype_fifo ,rega 
+0x5621 015361 branch fifo_in 
+:      015363 le_prepare_tx:
+0x5622 015364 set1 mark_ext_patch ,mark 
+0x5623 015365 bpatch patch2c_1 ,mem_patch2c 
+0x5624 015366 fetch 1 ,mem_le_arq 
+0x5625 015367 rtnbit1 wak 
+0x5626 015368 arg mem_le_xtype_fifo ,rega 
+0x5627 015369 call fifo_out 
+0x5628 015370 nbranch le_prepare_tx_cmd ,blank 
+0x5629 015371 fetch 1 ,mem_device_option 
+0x562a 015372 bne dvc_op_hci ,le_send_empty 
+0x562b 015373 arg 0 ,type 
+0x562c 015374 call hci_rx_packet 
+0x562d 015375 copy type ,pdata 
+0x562e 015376 nrtn blank 
+0x562f 015377 branch le_send_empty 
+:      015378 le_prepare_tx_cmd:
+0x5630 015379 copy pdata ,temp 
+0x5631 015380 set1 mark_ext_patch ,mark 
+0x5632 015381 bpatch patch2c_2 ,mem_patch2c 
+0x5633 015382 copy temp ,pdata 
+0x5634 015383 bbit0 5 ,le_prepare_l2cap 
+0x5635 015384 force 3 ,type 
+0x5636 015385 set0 5 ,pdata 
+0x5637 015386 store 1 ,mem_le_txpayload 
+0x5638 015387 set1 mark_ext_patch ,mark 
+0x5639 015388 bpatch patch2c_3 ,mem_patch2c 
+0x563a 015389 fetch 1 ,mem_le_txpayload 
+0x563b 015390 beq ll_connection_update_req ,le_send_connection_update_req 
+0x563c 015391 beq ll_channel_map_req ,le_send_channel_map_req 
+0x563d 015392 beq ll_terminate_ind ,le_send_terminate_ind 
+0x563e 015393 beq ll_enc_req ,le_send_enc_req 
+0x563f 015394 beq ll_enc_rsp ,le_send_enc_rsp 
+0x5640 015395 beq ll_start_enc_req ,le_send_start_enc_req 
+0x5641 015396 beq ll_start_enc_rsp ,le_send_start_enc_rsp 
+0x5642 015397 beq ll_unknown_rsp ,le_send_unknown_rsp 
+0x5643 015398 beq ll_feature_req ,le_send_feature 
+0x5644 015399 beq ll_feature_rsp ,le_send_feature 
+0x5645 015400 beq ll_pause_enc_req ,le_send_pause_enc_req 
+0x5646 015401 beq ll_pause_enc_rsp ,le_send_pause_enc_rsp 
+0x5647 015402 beq ll_version_ind ,le_send_version_ind 
+0x5648 015403 beq ll_reject_ind ,le_send_reject_ind 
+0x5649 015404 beq ll_connection_param_req ,le_send_conn_param_req 
+0x564a 015405 branch assert 
+:      015407 le_prepare_l2cap:
+0x564b 015408 jam 0 ,mem_le_txcid + 1 
+0x564c 015409 force 2 ,type 
+0x564d 015410 bbit0 6 ,le_prepare_att 
+0x564e 015411 beq attop_write_command ,le_prepare_att 
+0x564f 015412 beq attop_signed_write_command ,le_prepare_att 
+0x5650 015413 jam le_l2cap_cid_smp ,mem_le_txcid 
+0x5651 015414 set0 6 ,pdata 
+0x5652 015415 store 1 ,mem_le_l2cap 
+:      015416 le_prepare_smp:
+0x5653 015417 set1 mark_ext_patch ,mark 
+0x5654 015418 bpatch patch2c_4 ,mem_patch2c 
+0x5655 015419 fetch 1 ,mem_le_l2cap 
+:      015420 le_prepare_smp0:
+0x5656 015421 beq smp_pairing_request ,le_send_smp_pairing_request 
+0x5657 015422 beq smp_pairing_response ,le_send_smp_pairing_response 
+0x5658 015423 beq smp_pairing_confirm ,le_send_smp_pairing_confirm 
+0x5659 015424 beq smp_pairing_random ,le_send_smp_pairing_random 
+0x565a 015425 beq smp_pairing_failed ,le_send_smp_pairing_failed 
+0x565b 015426 beq smp_encryption_information ,le_send_smp_encryption_information 
+0x565c 015427 beq smp_master_identification ,le_send_smp_master_identification 
+0x565d 015428 beq smp_identity_information ,le_send_smp_identity_information 
+0x565e 015429 beq smp_identity_address_information ,le_send_smp_identity_address_information 
+0x565f 015430 beq smp_signing_information ,le_send_smp_signing_information 
+0x5660 015431 beq smp_security_request ,le_send_smp_security_request 
+0x5661 015432 branch assert 
+:      015434 le_prepare_att:
+0x5662 015435 jam le_l2cap_cid_att ,mem_le_txcid 
+0x5663 015436 store 1 ,mem_le_l2cap 
+0x5664 015437 set1 mark_ext_patch ,mark 
+0x5665 015438 bpatch patch2c_5 ,mem_patch2c 
+:      015439 le_prepare_att0:
+0x5666 015440 fetch 1 ,mem_le_l2cap 
+0x5667 015441 beq attop_error_response ,le_send_att_error_response 
+0x5668 015442 beq attop_exchange_mtu_request ,le_send_att_exchange_mtu 
+0x5669 015443 beq attop_exchange_mtu_response ,le_send_att_exchange_mtu 
+0x566a 015444 beq attop_find_information_request ,le_send_att_find_information_request 
+0x566b 015445 beq attop_find_information_response ,le_send_att_find_information_response 
+0x566c 015446 beq attop_find_by_type_value_request ,le_send_att_find_by_type_value_request 
+0x566d 015447 beq attop_find_by_type_value_response ,le_send_att_find_by_type_value_response 
+0x566e 015448 beq attop_read_by_type_request ,le_send_att_read_by_type_request 
+0x566f 015449 beq attop_read_by_type_response ,le_send_att_read_by_type_response 
+0x5670 015450 beq attop_read_request ,le_send_att_read_request 
+0x5671 015451 beq attop_read_response ,le_send_att_read_response 
+0x5672 015452 beq attop_read_blob_request ,le_send_att_read_blob_request 
+0x5673 015453 beq attop_read_blob_response ,le_send_att_read_blob_response 
+0x5674 015454 beq attop_read_multiple_request ,le_send_att_read_multiple_request 
+0x5675 015455 beq attop_read_multiple_response ,le_send_att_read_multiple_response 
+0x5676 015456 beq attop_read_by_group_type_request ,le_send_att_read_by_group_type_request 
+0x5677 015457 beq attop_read_by_group_type_response ,le_send_att_read_by_group_type_response 
+0x5678 015458 beq attop_write_request ,le_send_att_write_request 
+0x5679 015459 beq attop_write_response ,le_send_att_write_response 
+0x567a 015460 beq attop_prepare_write_request ,le_send_att_prepare_write_request 
+0x567b 015461 beq attop_prepare_write_response ,le_send_att_prepare_write_response 
+0x567c 015462 beq attop_execute_write_request ,le_send_att_execute_write_request 
+0x567d 015463 beq attop_execute_write_response ,le_send_att_execute_write_response 
+0x567e 015464 beq attop_handle_value_notification ,le_send_att_handle_value_notification 
+0x567f 015465 beq attop_handle_value_indication ,le_send_att_handle_value_indication 
+0x5680 015466 beq attop_handle_value_confirmation ,le_send_att_handle_value_confirmation 
+0x5681 015467 beq attop_write_command ,le_send_att_write_command 
+0x5682 015468 beq attop_signed_write_command ,le_send_att_signed_write_command 
+0x5683 015469 beq empty_le_data_pre ,le_send_empty_le_data_pre 
+0x5684 015470 beq empty_le_data ,le_send_empty_le_data 
+0x5685 015471 branch assert 
+:      015473 le_send_empty_le_data_pre:
+0x5686 015474 jam attop_read_by_group_type_request ,mem_fifo_temp 
+0x5687 015475 call le_xtype_fifo_in 
+:      015477 le_send_empty_le_data:
+0x5688 015478 setarg 0x0011 
+0x5689 015479 store 2 ,mem_le_txheader 
+0x568a 015480 fetch 1 ,mem_le_arq 
+0x568b 015481 set1 wak ,pdata 
+0x568c 015482 store 1 ,mem_le_arq 
+0x568d 015483 jam attop_write_request ,mem_fifo_temp 
+0x568e 015484 branch le_xtype_fifo_in 
+:      015486 le_send_connection_update_req:
+0x568f 015487 force 12 ,temp 
+0x5690 015488 branch le_send_packet 
+:      015490 le_send_channel_map_req:
+0x5691 015491 force 8 ,temp 
+0x5692 015492 branch le_send_packet 
+:      015494 le_send_terminate_ind:
+0x5693 015495 force 2 ,temp 
+0x5694 015496 branch le_send_packet 
+:      015498 le_send_enc_req:
+0x5695 015499 force 0 ,pdata 
+0x5696 015500 istore 8 ,contw 
+0x5697 015501 istore 2 ,contw 
+0x5698 015502 copy contw ,temp 
+0x5699 015503 arg mem_le_skdm ,contw 
+0x569a 015504 force 8 ,loopcnt 
+0x569b 015505 call generate_random_loop 
+0x569c 015506 fetch 8 ,mem_le_skdm 
+0x569d 015507 istore 8 ,temp 
+0x569e 015508 copy contw ,temp 
+0x569f 015509 arg mem_le_ivm ,contw 
+0x56a0 015510 force 4 ,loopcnt 
+0x56a1 015511 call generate_random_loop 
+0x56a2 015512 fetch 4 ,mem_le_ivm 
+0x56a3 015513 istore 4 ,temp 
+0x56a4 015514 force 23 ,temp 
+0x56a5 015515 branch le_send_packet 
+:      015517 le_send_enc_rsp:
+0x56a6 015518 copy contw ,temp 
+0x56a7 015519 arg mem_le_skds ,contw 
+0x56a8 015520 force 8 ,loopcnt 
+0x56a9 015521 call generate_random_loop 
+0x56aa 015522 fetch 8 ,mem_le_skds 
+0x56ab 015523 istore 8 ,temp 
+0x56ac 015524 copy contw ,temp 
+0x56ad 015525 arg mem_le_ivs ,contw 
+0x56ae 015526 force 4 ,loopcnt 
+0x56af 015527 call generate_random_loop 
+0x56b0 015528 fetch 4 ,mem_le_ivs 
+0x56b1 015529 istore 4 ,temp 
+0x56b2 015530 call generate_sk 
+0x56b3 015531 jam xt_ll_start_enc_req ,mem_fifo_temp 
+0x56b4 015532 call le_xtype_fifo_in 
+0x56b5 015533 force 13 ,temp 
+0x56b6 015534 branch le_send_packet 
+:      015536 le_send_start_enc_req:
+0x56b7 015537 force 1 ,temp 
+0x56b8 015538 branch le_send_packet 
+:      015540 le_send_start_enc_rsp:
+0x56b9 015541 force 1 ,temp 
+0x56ba 015542 branch le_send_packet ,master 
+0x56bb 015543 jam xt_smp_encryption_information ,mem_fifo_temp 
+0x56bc 015544 call le_xtype_fifo_in 
+0x56bd 015545 force 1 ,temp 
+0x56be 015546 branch le_send_packet 
+:      015548 le_send_unknown_rsp:
+0x56bf 015549 force 2 ,temp 
+0x56c0 015550 branch le_send_packet 
+:      015552 le_send_feature:
+0x56c1 015553 setarg param_le_features 
+0x56c2 015554 istore 8 ,contw 
+0x56c3 015555 force 9 ,temp 
+0x56c4 015556 branch le_send_packet 
+:      015558 le_send_pause_enc_req:
+0x56c5 015559 force 6 ,temp 
+0x56c6 015560 branch le_send_packet 
+:      015562 le_send_pause_enc_rsp:
+0x56c7 015563 force 6 ,temp 
+0x56c8 015564 branch le_send_packet 
+:      015566 le_send_version_ind:
+0x56c9 015567 setarg param_le_version 
+0x56ca 015568 istore 3 ,contw 
+0x56cb 015569 setarg param_le_subversion 
+0x56cc 015570 istore 2 ,contw 
+0x56cd 015571 force 6 ,temp 
+0x56ce 015572 branch le_send_packet 
+:      015574 le_send_reject_ind:
+0x56cf 015575 force 2 ,temp 
+0x56d0 015576 branch le_send_packet 
+:      015578 le_send_conn_param_req:
+0x56d1 015579 increase -1 ,contw 
+0x56d2 015580 setarg 0x000c 
+0x56d3 015581 istore 2 ,contw 
+0x56d4 015582 setarg 0x0005 
+0x56d5 015583 istore 2 ,contw 
+0x56d6 015584 setarg 0xb412 
+0x56d7 015585 istore 2 ,contw 
+0x56d8 015586 setarg 0x0008 
+0x56d9 015587 istore 2 ,contw 
+0x56da 015588 setarg 0x0008 
+0x56db 015589 istore 2 ,contw 
+0x56dc 015590 setarg 0x0010 
+0x56dd 015591 istore 2 ,contw 
+0x56de 015592 setarg 0 
+0x56df 015593 istore 2 ,contw 
+0x56e0 015594 setarg 0x012c 
+0x56e1 015595 istore 2 ,contw 
+0x56e2 015596 call le_send_autolen 
+0x56e3 015597 force 2 ,type 
+0x56e4 015598 branch le_send_packet 
+:      015600 le_send_smp_pairing_request:
+0x56e5 015601 setarg 0x1000401 
+0x56e6 015602 store 4 ,mem_le_preq 
+0x56e7 015603 setarg 0x070710 
+0x56e8 015604 istore 3 ,contw 
+0x56e9 015605 fetch 6 ,mem_le_preq + 1 
+0x56ea 015606 store 6 ,mem_le_l2cap_response 
+0x56eb 015607 force 11 ,temp 
+0x56ec 015608 branch le_send_packet 
+:      015610 le_send_smp_pairing_response:
+0x56ed 015611 setarg param_smp_paring_response 
+0x56ee 015612 store 4 ,mem_le_pres 
+0x56ef 015613 setarg param_smp_key_dist 
+0x56f0 015614 istore 3 ,contw 
+0x56f1 015615 fetch 6 ,mem_le_pres + 1 
+0x56f2 015616 store 6 ,mem_le_l2cap_response 
+0x56f3 015617 force 11 ,temp 
+0x56f4 015618 branch le_send_packet 
+:      015620 le_send_smp_pairing_confirm:
+0x56f5 015621 call generate_confirm 
+0x56f6 015622 arg mem_le_l2cap_response ,contw 
+0x56f7 015623 call store_aes_result 
+0x56f8 015624 force 21 ,temp 
+0x56f9 015625 branch le_send_packet 
+:      015627 le_send_smp_pairing_random:
+0x56fa 015628 fetch 8 ,mem_le_mrand 
+0x56fb 015629 branch le_send_smp_mrandom ,master 
+0x56fc 015630 fetch 8 ,mem_le_srand 
+:      015632 le_send_smp_mrandom:
+0x56fd 015633 call le_send_smp_128 
+0x56fe 015634 branch le_send_packet 
+:      015636 le_send_smp_pairing_failed:
+0x56ff 015637 force 6 ,temp 
+0x5700 015638 branch le_send_packet 
+:      015640 le_send_smp_encryption_information:
+0x5701 015641 jam bt_evt_le_enc_info ,mem_fifo_temp 
+0x5702 015642 call ui_ipc_send_event 
+0x5703 015643 jam xt_smp_master_identification ,mem_fifo_temp 
+0x5704 015644 call le_xtype_fifo_in 
+0x5705 015645 arg mem_le_my_ltk ,contw 
+0x5706 015646 call generate_random 
+0x5707 015647 fetch 8 ,mem_le_my_ltk 
+0x5708 015648 fetch 8 ,mem_le_ltk 
+0x5709 015649 call le_send_smp_128 
+0x570a 015650 branch le_send_packet 
+:      015652 le_send_smp_master_identification:
+0x570b 015653 jam xt_smp_identity_information ,mem_fifo_temp 
+0x570c 015654 call le_xtype_fifo_in 
+0x570d 015655 arg mem_le_l2cap_response ,contw 
+0x570e 015656 force 8 ,loopcnt 
+0x570f 015657 call generate_random_loop 
+0x5710 015658 force 15 ,temp 
+0x5711 015659 branch le_send_packet 
+:      015661 le_send_smp_identity_information:
+0x5712 015662 jam xt_smp_identity_address_information ,mem_fifo_temp 
+0x5713 015663 call le_xtype_fifo_in 
+0x5714 015664 arg mem_le_l2cap_response ,contw 
+0x5715 015665 call generate_random 
+0x5716 015666 branch le_send_autolen 
+:      015668 le_send_smp_identity_address_information:
+0x5717 015669 jam xt_smp_signing_information ,mem_fifo_temp 
+0x5718 015670 call le_xtype_fifo_in 
+0x5719 015671 force 0 ,pdata 
+0x571a 015672 store 1 ,mem_le_l2cap_response 
+0x571b 015673 fetch 6 ,mem_le_lap 
+0x571c 015674 istore 6 ,contw 
+0x571d 015675 branch le_send_autolen 
+:      015677 le_send_smp_signing_information:
+0x571e 015678 arg mem_le_l2cap_response ,contw 
+0x571f 015679 call generate_random 
+0x5720 015680 branch le_send_autolen 
+:      015682 le_send_smp_security_request:
+0x5721 015683 force 6 ,temp 
+0x5722 015684 branch le_send_packet 
+:      015686 le_send_smp_128:
+0x5723 015687 store 8 ,mem_le_l2cap_response 
+0x5724 015688 ifetch 8 ,contr 
+0x5725 015689 istore 8 ,contw 
+0x5726 015690 force 21 ,temp 
+0x5727 015691 rtn 
+:      015693 le_send_att_error_response_notfound:
+0x5728 015694 jam att_err_attribute_not_found ,mem_le_err_code 
+:      015695 le_send_att_error_response:
+0x5729 015696 jam attop_error_response ,mem_le_l2cap 
+0x572a 015697 fetch 3 ,mem_le_att_opcode 
+0x572b 015698 store 3 ,mem_le_l2cap_response 
+0x572c 015699 fetch 1 ,mem_le_err_code 
+0x572d 015700 istore 1 ,contw 
+0x572e 015701 branch le_send_autolen 
+:      015703 le_send_att_exchange_mtu:
+0x572f 015704 setarg param_le_mtu 
+0x5730 015705 istore 2 ,contw 
+0x5731 015706 branch le_send_autolen 
+:      015708 le_send_att_find_information_request:
+0x5732 015709 fetch 2 ,mem_le_search_handle_start 
+0x5733 015710 store 2 ,mem_le_l2cap_response 
+0x5734 015711 fetch 2 ,mem_le_search_handle_end 
+0x5735 015712 istore 2 ,contw 
+0x5736 015713 branch le_send_autolen 
+:      015717 le_send_att_find_information_response:
+0x5737 015718 force 1 ,pdata 
+0x5738 015719 store 1 ,mem_le_l2cap_response 
+0x5739 015720 call le_init_attlist_search 
+:      015721 le_send_att_find_information_res_loop:
+0x573a 015722 call le_att_handle_inrange 
+0x573b 015723 branch le_send_att_find_information_res_end ,blank 
+0x573c 015724 nbranch le_send_att_find_information_res_next ,positive 
+0x573d 015725 disable user 
+0x573e 015726 istore 2 ,contw 
+0x573f 015727 ifetch 2 ,contr 
+0x5740 015728 istore 2 ,contw 
+:      015729 le_send_att_find_information_res_cont:
+0x5741 015730 ifetch 1 ,contr 
+0x5742 015731 iadd contr ,contr 
+0x5743 015732 branch le_send_att_find_information_res_loop 
+:      015733 le_send_att_find_information_res_next:
+0x5744 015734 increase 2 ,contr 
+0x5745 015735 branch le_send_att_find_information_res_cont 
+:      015736 le_send_att_find_information_res_end:
+0x5746 015737 branch le_send_att_error_response_notfound ,user 
+0x5747 015738 branch le_send_autolen 
+:      015741 le_send_att_find_by_type_value_request:
+0x5748 015742 fetch 2 ,mem_le_search_handle_start 
+0x5749 015743 branch le_send_empty_le_data ,blank 
+0x574a 015744 store 2 ,mem_le_l2cap_response 
+0x574b 015745 fetch 2 ,mem_le_search_handle_end 
+0x574c 015747 istore 2 ,contw 
+0x574d 015748 fetch 2 ,mem_le_uuid 
+0x574e 015750 istore 2 ,contw 
+0x574f 015751 fetch 2 ,mem_le_search_att_type 
+0x5750 015753 istore 2 ,contw 
+0x5751 015754 branch le_send_autolen 
+:      015757 le_send_att_find_by_type_value_response:
+0x5752 015758 call le_start_end_handle_check_1 
+0x5753 015759 rtn user 
+0x5754 015760 fetcht 2 ,mem_le_uuid 
+0x5755 015761 setarg uuid_gatt_primary_service 
+0x5756 015762 isub temp ,null 
+0x5757 015763 branch le_send_att_find_by_type_value_res_primary ,zero 
+0x5758 015764 setarg uuid_gatt_secondary_service 
+0x5759 015765 isub temp ,null 
+0x575a 015766 branch le_send_att_error_response_notfound ,zero 
+0x575b 015767 setarg uuid_gatt_include 
+0x575c 015768 isub temp ,null 
+0x575d 015769 branch le_send_att_error_response_notfound ,zero 
+0x575e 015770 setarg uuid_gatt_characteristic 
+0x575f 015771 isub temp ,null 
+0x5760 015772 branch le_send_att_error_response_notfound ,zero 
+0x5761 015773 branch le_send_att_error_response_notfound 
+:      015775 le_send_att_find_by_type_value_res_primary:
+0x5762 015776 fetcht 2 ,mem_le_search_att_type 
+0x5763 015777 increase 2 ,contr 
+0x5764 015778 ifetch 1 ,contr 
+0x5765 015779 icopy regc 
+0x5766 015780 increase 1 ,regc 
+:      015782 le_send_att_find_by_type_value_res_primary_search_loop:
+0x5767 015783 increase -1 ,regc 
+0x5768 015784 branch le_send_att_error_response_notfound ,zero 
+0x5769 015785 ifetch 2 ,contr 
+0x576a 015786 isub temp ,null 
+0x576b 015787 branch le_send_att_find_by_type_value_res_primary_search_end ,zero 
+0x576c 015788 increase 4 ,contr 
+0x576d 015789 branch le_send_att_find_by_type_value_res_primary_search_loop 
+:      015791 le_send_att_find_by_type_value_res_primary_search_end:
+0x576e 015792 ifetch 2 ,contr 
+0x576f 015793 icopy rega 
+0x5770 015794 ifetch 2 ,contr 
+0x5771 015795 icopy regb 
+0x5772 015796 call le_start_end_handle_check_2 
+0x5773 015797 rtn user 
+0x5774 015798 jam attop_find_by_type_value_response ,mem_le_l2cap 
+0x5775 015799 deposit rega 
+0x5776 015800 store 2 ,mem_le_l2cap_response 
+0x5777 015801 deposit regb 
+0x5778 015802 istore 2 ,contw 
+0x5779 015803 force 9 ,temp 
+0x577a 015804 branch le_send_packet 
+:      015809 le_start_end_handle_check_1:
+0x577b 015810 disable user 
+0x577c 015811 fetcht 2 ,mem_le_search_handle_start 
+0x577d 015812 fetch 2 ,mem_le_search_handle_end 
+0x577e 015813 isub temp ,null 
+0x577f 015814 nbranch le_start_end_handle_check_1_fail ,positive 
+0x5780 015815 deposit temp 
+0x5781 015816 rtnne 0 
+:      015818 le_start_end_handle_check_1_fail:
+0x5782 015819 enable user 
+:      015820 le_send_att_invalid_handle:
+0x5783 015821 jam att_err_invalid_handle ,mem_le_err_code 
+0x5784 015822 branch le_send_att_error_response 
+:      015824 le_start_end_handle_check_2:
+0x5785 015825 disable user 
+0x5786 015826 fetcht 2 ,mem_le_search_handle_start 
+0x5787 015827 deposit rega 
+0x5788 015828 isub temp ,null 
+0x5789 015829 nbranch le_start_end_handle_check_2_fail ,positive 
+0x578a 015830 fetch 2 ,mem_le_search_handle_end 
+0x578b 015831 isub regb ,null 
+0x578c 015832 nbranch le_start_end_handle_check_2_fail ,positive 
+0x578d 015833 deposit regb 
+0x578e 015834 isub rega ,null 
+0x578f 015835 nbranch le_start_end_handle_check_2_fail ,positive 
+0x5790 015836 rtn 
+:      015838 le_start_end_handle_check_2_fail:
+0x5791 015839 enable user 
+0x5792 015840 branch le_send_att_error_response_notfound 
+:      015843 le_send_att_read_by_type_request:
+0x5793 015844 fetch 2 ,mem_le_search_handle_start 
+0x5794 015846 istore 2 ,contw 
+0x5795 015847 fetch 2 ,mem_le_search_handle_end 
+0x5796 015849 istore 2 ,contw 
+0x5797 015850 fetch 2 ,mem_le_search_att_type 
+0x5798 015851 istore 2 ,contw 
+0x5799 015852 force 11 ,temp 
+0x579a 015853 branch le_send_packet 
+:      015856 le_send_att_read_by_type_response:
+0x579b 015857 fetcht 2 ,mem_le_search_att_type 
+0x579c 015858 setarg uuid_gatt_characteristic 
+0x579d 015859 isub temp ,null 
+0x579e 015860 setarg 7 
+0x579f 015861 branch le_send_att_read_by_type_res_cont ,zero 
+0x57a0 015862 setarg uuid_gatt_primary_service 
+0x57a1 015863 isub temp ,null 
+0x57a2 015864 setarg 6 
+0x57a3 015865 branch le_send_att_read_by_type_res_cont ,zero 
+0x57a4 015866 branch le_send_att_error_response_notfound 
+:      015867 le_send_att_read_by_type_res_cont:
+0x57a5 015868 store 1 ,mem_le_l2cap_response 
+0x57a6 015869 call le_init_attlist_search 
+0x57a7 015870 force 3 ,alarm 
+:      015871 le_send_att_read_by_type_res_loop:
+0x57a8 015872 call le_att_handle_inrange 
+0x57a9 015873 branch le_send_att_read_by_type_res_end ,blank 
+0x57aa 015874 nbranch le_send_att_read_by_type_res_next ,positive 
+0x57ab 015875 iforce rega 
+0x57ac 015876 ifetch 2 ,contr 
+0x57ad 015877 isub temp ,null 
+0x57ae 015878 nbranch le_send_att_read_by_type_res_next2 ,zero 
+0x57af 015879 disable user 
+0x57b0 015880 deposit rega 
+0x57b1 015881 istore 2 ,contw 
+0x57b2 015882 ifetch 1 ,contr 
+0x57b3 015883 add pdata ,4 ,loopcnt 
+0x57b4 015884 call memcpy 
+0x57b5 015885 increase -1 ,alarm 
+0x57b6 015886 branch le_send_att_read_by_type_res_end ,zero 
+0x57b7 015887 branch le_send_att_read_by_type_res_next2 
+:      015888 le_send_att_read_by_type_res_next:
+0x57b8 015889 increase 2 ,contr 
+:      015890 le_send_att_read_by_type_res_next2:
+0x57b9 015891 ifetch 1 ,contr 
+0x57ba 015892 iadd contr ,contr 
+0x57bb 015893 branch le_send_att_read_by_type_res_loop 
+:      015894 le_send_att_read_by_type_res_end:
+0x57bc 015895 branch le_send_att_error_response_notfound ,user 
+0x57bd 015896 branch le_send_autolen 
+:      015899 le_send_att_read_request:
+0x57be 015900 fetch 1 ,mem_le_temp 
+0x57bf 015902 increase -1 ,pdata 
+0x57c0 015903 store 1 ,mem_le_temp 
+0x57c1 015904 lshift pdata ,pdata 
+0x57c2 015906 iadd contr ,contr 
+0x57c3 015907 ifetcht 2 ,contr 
+0x57c4 015908 storet 2 ,mem_le_l2cap_response 
+0x57c5 015909 branch le_send_autolen 
+:      015911 le_send_att_read_response:
+0x57c6 015912 fetcht 2 ,mem_le_att_handle 
+0x57c7 015913 call le_att_get_handle_ptr 
+0x57c8 015914 branch le_send_att_error_response_notfound ,blank 
+0x57c9 015915 ifetch 1 ,contr 
+0x57ca 015916 branch le_send_autolen ,blank 
+0x57cb 015917 sub pdata ,22 ,null 
+0x57cc 015918 branch le_send_att_read_response_less ,positive 
+0x57cd 015919 force 22 ,pdata 
+:      015920 le_send_att_read_response_less:
+0x57ce 015921 icopy loopcnt 
+0x57cf 015922 call memcpy 
+0x57d0 015923 branch le_send_autolen 
+:      015926 le_send_att_read_blob_request:
+0x57d1 015927 setarg 0x0003 
+0x57d2 015928 store 2 ,mem_le_l2cap_response 
+0x57d3 015929 setarg 0x0008 
+0x57d4 015930 istore 2 ,contw 
+0x57d5 015931 branch le_send_autolen 
+:      015933 le_send_att_read_blob_response:
+0x57d6 015934 fetch 2 ,mem_le_att_offset 
+0x57d7 015935 iforce rega 
+0x57d8 015936 fetcht 2 ,mem_le_att_handle 
+0x57d9 015937 call le_att_get_handle_ptr 
+0x57da 015938 branch le_send_att_error_response_notfound ,blank 
+0x57db 015939 ifetch 1 ,contr 
+0x57dc 015940 isub rega ,loopcnt 
+0x57dd 015941 nbranch le_send_att_error_response_notfound ,positive 
+0x57de 015942 sub loopcnt ,22 ,null 
+0x57df 015943 branch le_send_att_read_blob_response_less ,positive 
+0x57e0 015944 force 22 ,loopcnt 
+:      015945 le_send_att_read_blob_response_less:
+0x57e1 015946 deposit rega 
+0x57e2 015947 iadd contr ,contr 
+0x57e3 015948 call memcpy 
+0x57e4 015949 branch le_send_autolen 
+:      015951 le_send_att_read_multiple_request:
+0x57e5 015952 setarg 0x0003 
+0x57e6 015953 istore 2 ,contw 
+0x57e7 015954 setarg 0x0007 
+0x57e8 015955 istore 2 ,contw 
+0x57e9 015956 setarg 0x0009 
+0x57ea 015957 istore 2 ,contw 
+0x57eb 015958 branch le_send_autolen 
+:      015960 le_send_att_read_multiple_response:
+0x57ec 015961 fetch 1 ,mem_le_temp 
+0x57ed 015962 icopy regc 
+0x57ee 015963 arg mem_le_rxbuf + 7 ,rega 
+0x57ef 015964 arg mem_le_l2cap_response ,regb 
+0x57f0 015965 arg 0 ,timeup 
+0x57f1 015966 disable user7 
+:      015968 le_send_att_read_multiple_response_loop:
+0x57f2 015969 copy rega ,contr 
+0x57f3 015970 ifetcht 2 ,contr 
+0x57f4 015971 copy contr ,rega 
+0x57f5 015972 call le_att_get_handle_ptr 
+0x57f6 015973 branch le_send_att_read_multiple_response_end ,blank 
+0x57f7 015974 ifetch 1 ,contr 
+0x57f8 015975 icopy loopcnt 
+0x57f9 015976 iadd timeup ,timeup 
+0x57fa 015980 sub timeup ,24 ,null 
+0x57fb 015981 nbranch le_send_att_read_multiple_response_end_1 ,positive 
+0x57fc 015982 copy regb ,contw 
+:      015984 le_copy_att_value_loop_3:
+0x57fd 015985 ifetch 1 ,contr 
+0x57fe 015986 istore 1 ,contw 
+0x57ff 015987 loop le_copy_att_value_loop_3 
+0x5800 015988 copy contw ,regb 
+0x5801 015989 enable user7 
+0x5802 015990 increase -1 ,regc 
+0x5803 015991 branch le_send_att_read_multiple_response_end ,zero 
+0x5804 015992 branch le_send_att_read_multiple_response_loop 
+:      015994 le_send_att_read_multiple_response_end:
+0x5805 015995 nbranch le_send_att_read_multiple_response_fail ,user7 
+0x5806 015996 disable user7 
+0x5807 015997 copy timeup ,temp 
+0x5808 015998 increase 5 ,temp 
+0x5809 015999 branch le_send_packet 
+:      016001 le_send_att_read_multiple_response_end_1:
+0x580a 016002 nbranch le_send_att_read_multiple_response_fail ,user7 
+0x580b 016003 disable user7 
+0x580c 016004 deposit timeup 
+0x580d 016005 isub loopcnt ,temp 
+0x580e 016006 increase 5 ,temp 
+0x580f 016007 branch le_send_packet 
+:      016009 le_send_att_read_multiple_response_fail:
+0x5810 016010 jam att_err_unsupported_group_type ,mem_le_err_code 
+0x5811 016011 branch le_send_att_error_response 
+:      016014 le_send_att_read_by_group_type_request:
+0x5812 016015 fetch 2 ,mem_le_att_handle 
+0x5813 016016 branch le_send_empty_le_data ,blank 
+0x5814 016017 istore 2 ,contw 
+0x5815 016018 setarg 0xffff 
+0x5816 016019 istore 2 ,contw 
+0x5817 016020 setarg 0x2800 
+0x5818 016021 istore 2 ,contw 
+0x5819 016022 branch le_send_autolen 
+:      016025 le_send_att_read_by_group_type_response:
+0x581a 016026 setarg 0x06 
+0x581b 016027 store 1 ,mem_le_l2cap_response 
+0x581c 016028 fetch 2 ,mem_le_search_att_type 
+0x581d 016029 iforce rega 
+0x581e 016030 call le_init_attlist_search 
+0x581f 016031 force 3 ,loopcnt 
+:      016032 le_send_att_read_by_group_type_response_loop:
+0x5820 016033 call le_att_handle_inrange 
+0x5821 016034 branch le_send_att_read_by_group_type_response_last ,blank 
+0x5822 016035 nbranch le_send_att_read_by_group_type_response_next ,positive 
+0x5823 016036 iforce alarm 
+0x5824 016037 ifetch 2 ,contr 
+0x5825 016038 isub rega ,null 
+0x5826 016039 nbranch le_send_att_read_by_group_type_response_cont ,zero 
+0x5827 016040 deposit alarm 
+0x5828 016041 branch le_send_att_read_by_group_type_response_first ,user 
+0x5829 016042 increase -1 ,pdata 
+0x582a 016043 istore 2 ,contw 
+0x582b 016044 istoret 2 ,contw 
+0x582c 016045 increase 1 ,pdata 
+0x582d 016046 increase -1 ,loopcnt 
+0x582e 016047 branch le_send_autolen ,zero 
+:      016048 le_send_att_read_by_group_type_response_first:
+0x582f 016049 disable user 
+0x5830 016050 istore 2 ,contw 
+0x5831 016051 increase 1 ,contr 
+0x5832 016052 ifetcht 2 ,contr 
+0x5833 016053 increase -3 ,contr 
+0x5834 016054 branch le_send_att_read_by_group_type_response_cont 
+:      016055 le_send_att_read_by_group_type_response_last:
+0x5835 016056 branch le_send_att_error_response_notfound ,user 
+0x5836 016057 force -1 ,pdata 
+0x5837 016058 istore 2 ,contw 
+0x5838 016059 istoret 2 ,contw 
+0x5839 016060 branch le_send_autolen 
+:      016061 le_send_att_read_by_group_type_response_next:
+0x583a 016062 increase 2 ,contr 
+:      016063 le_send_att_read_by_group_type_response_cont:
+0x583b 016064 ifetch 1 ,contr 
+0x583c 016065 iadd contr ,contr 
+0x583d 016066 branch le_send_att_read_by_group_type_response_loop 
+:      016070 le_send_att_write_request:
+0x583e 016071 fetch 2 ,mem_le_notify_handle 
+0x583f 016072 store 2 ,mem_le_l2cap_response 
+0x5840 016073 fetch 1 ,mem_le_handle_data_len 
+0x5841 016074 copy pdata ,loopcnt 
+0x5842 016075 arg mem_le_handle_data ,contr 
+0x5843 016076 call memcpy 
+0x5844 016077 branch le_send_autolen 
+:      016079 le_send_att_write_response:
+0x5845 016080 fetcht 2 ,mem_le_att_handle 
+0x5846 016081 call le_att_get_handle_ptr 
+0x5847 016082 branch le_send_att_write_response_go ,blank 
+0x5848 016083 increase -2 ,contr 
+0x5849 016084 ifetcht 2 ,contr 
+0x584a 016085 setarg uuid_client_characteristic 
+0x584b 016086 isub temp ,null 
+0x584c 016087 nbranch le_send_att_write_response_go ,zero 
+0x584d 016088 increase 1 ,contr 
+0x584e 016089 ifetcht 2 ,contr 
+0x584f 016090 setarg 0x0001 
+0x5850 016091 isub temp ,null 
+0x5851 016092 branch le_send_att_write_response_notify ,zero 
+0x5852 016093 setarg 0x0000 
+0x5853 016094 isub temp ,null 
+0x5854 016095 nbranch le_send_att_write_response_go ,zero 
+0x5855 016096 branch le_send_att_write_response_go 
+:      016098 le_send_att_write_response_notify:
+0x5856 016099 increase -7 ,contr 
+0x5857 016100 ifetch 2 ,contr 
+0x5858 016101 increase -1 ,pdata 
+0x5859 016102 store 2 ,mem_le_notify_handle 
+0x585a 016103 jam attop_handle_value_notification ,mem_fifo_temp 
+0x585b 016104 call le_xtype_fifo_in 
+:      016107 le_send_att_write_response_go:
+0x585c 016108 force 5 ,temp 
+0x585d 016109 branch le_send_packet 
+:      016111 le_send_att_prepare_write_request:
+0x585e 016112 force 6 ,temp 
+0x585f 016113 branch le_send_packet 
+:      016115 le_send_att_prepare_write_response:
+0x5860 016116 force 6 ,temp 
+0x5861 016117 branch le_send_packet 
+:      016119 le_send_att_execute_write_request:
+0x5862 016120 force 6 ,temp 
+0x5863 016121 branch le_send_packet 
+:      016123 le_send_att_execute_write_response:
+0x5864 016124 force 6 ,temp 
+0x5865 016125 branch le_send_packet 
+:      016127 le_att_check_notification_enable:
+0x5866 016128 set1 mark_ext_patch ,mark 
+0x5867 016129 bpatch patch2c_6 ,mem_patch2c 
+0x5868 016130 increase 1 ,temp 
+0x5869 016131 call le_att_get_handle_ptr 
+0x586a 016132 increase -2 ,contr 
+0x586b 016133 ifetch 2 ,contr 
+0x586c 016134 arg client_charactertic_configuration ,temp 
+0x586d 016135 isub temp ,null 
+0x586e 016136 nrtn zero 
+0x586f 016137 increase 1 ,contr 
+0x5870 016138 copy contr ,rega 
+0x5871 016139 ifetch 1 ,contr 
+0x5872 016140 rtn 
+:      016142 le_send_att_handle_value_notification:
+0x5873 016143 jam 0 ,mem_le_notify_len 
+0x5874 016144 fetch 2 ,mem_cb_update_notify_value 
+0x5875 016145 call callback_func 
+0x5876 016146 arg mem_le_l2cap ,contw 
+0x5877 016147 increase 1 ,contw 
+0x5878 016148 fetcht 2 ,mem_le_notify_handle 
+0x5879 016149 istoret 2 ,contw 
+0x587a 016150 call le_att_get_handle_ptr 
+0x587b 016151 ifetch 1 ,contr 
+0x587c 016152 icopy loopcnt 
+0x587d 016153 call memcpy 
+0x587e 016154 fetcht 1 ,mem_le_notify_len 
+0x587f 016155 increase 7 ,temp 
+0x5880 016156 call le_send_packet 
+0x5881 016157 branch le_clear_notify_att 
+:      016159 le_send_att_handle_value_indication:
+0x5882 016160 force 6 ,temp 
+0x5883 016161 branch le_send_packet 
+:      016163 le_send_att_handle_value_confirmation:
+0x5884 016164 force 6 ,temp 
+0x5885 016165 branch le_send_packet 
+:      016167 le_send_att_write_command:
+0x5886 016168 force 6 ,temp 
+0x5887 016169 branch le_send_packet 
+:      016171 le_send_att_signed_write_command:
+0x5888 016172 force 6 ,temp 
+0x5889 016173 branch le_send_packet 
+:      016176 le_send_autolen:
+0x588a 016177 set1 mark_ext_patch ,mark 
+0x588b 016178 bpatch patch2c_7 ,mem_patch2c 
+0x588c 016179 setarg mem_le_txpayload 
+0x588d 016180 isub contw ,pdata 
+0x588e 016181 sub pdata ,0 ,temp 
+0x588f 016182 branch le_send_packet 
+:      016185 le_send_empty:
+0x5890 016186 force 0 ,temp 
+0x5891 016187 force 1 ,type 
+:      016189 le_send_packet:
+0x5892 016190 set1 mark_ext_patch ,mark 
+0x5893 016191 bpatch patch2d_0 ,mem_patch2d 
+0x5894 016192 storet 1 ,mem_le_txlen 
+0x5895 016193 compare 2 ,type ,3 
+0x5896 016194 nbranch le_send_non_l2cap ,true 
+0x5897 016195 add temp ,-4 ,pdata 
+0x5898 016196 store 2 ,mem_le_txpayload 
+:      016198 le_send_non_l2cap:
+0x5899 016199 fetcht 1 ,mem_le_arq 
+0x589a 016200 call le_xtype_fifo_is_empty 
+0x589b 016201 nsetflag blank ,md ,temp 
+0x589c 016202 set1 wak ,temp 
+0x589d 016203 and temp ,0xfc ,pdata 
+0x589e 016204 ior type ,pdata 
+0x589f 016205 store 1 ,mem_le_arq 
+0x58a0 016206 and_into 0x1f ,pdata 
+0x58a1 016207 store 1 ,mem_le_txheader 
+0x58a2 016208 set1 mark_ext_patch ,mark 
+0x58a3 016209 bpatch patch2d_1 ,mem_patch2d 
+0x58a4 016210 fetch 1 ,mem_le_txheader 
+0x58a5 016211 compare 1 ,type ,3 
+0x58a6 016212 rtn true 
+0x58a7 016213 fetch 7 ,mem_le_txheader + 1 
+0x58a8 016214 fetch 1 ,mem_le_state 
+0x58a9 016215 rtnbit0 lestate_encryption 
+0x58aa 016216 call load_sk 
+0x58ab 016217 branch le_encrypt 
+:      016219 le_parse:
+0x58ac 016220 set1 mark_ext_patch ,mark 
+0x58ad 016221 bpatch patch2d_2 ,mem_patch2d 
+0x58ae 016222 call le_xtype_fifo_is_full 
+0x58af 016223 nbranch assert ,blank 
+0x58b0 016224 nrtn blank 
+0x58b1 016225 fetch 1 ,mem_le_rxbuf + 1 
+0x58b2 016226 rtn blank 
+0x58b3 016227 fetch 1 ,mem_le_rxbuf 
+0x58b4 016228 compare 1 ,pdata ,3 
+0x58b5 016229 branch le_parse_l2cap ,true 
+0x58b6 016230 fetch 7 ,mem_le_rxbuf + 1 
+0x58b7 016231 fetch 1 ,mem_le_rxbuf 
+0x58b8 016232 compare 2 ,pdata ,3 
+0x58b9 016233 branch le_parse_l2cap ,true 
+0x58ba 016234 fetch 1 ,mem_le_rxbuf + 2 
+0x58bb 016235 store 1 ,mem_le_rx_ll_opcode 
+0x58bc 016236 copy pdata ,regc 
+0x58bd 016237 set1 mark_ext_patch ,mark 
+0x58be 016238 bpatch patch2d_3 ,mem_patch2d 
+0x58bf 016239 copy regc ,pdata 
+0x58c0 016240 beq ll_connection_update_req ,le_parse_connection_update_req 
+0x58c1 016241 beq ll_channel_map_req ,le_parse_channel_map_req 
+0x58c2 016242 beq ll_terminate_ind ,le_parse_terminate_ind 
+0x58c3 016243 beq ll_enc_req ,le_parse_enc_req 
+0x58c4 016244 beq ll_enc_rsp ,le_parse_enc_rsp 
+0x58c5 016245 beq ll_start_enc_req ,le_parse_start_enc_req 
+0x58c6 016246 beq ll_start_enc_rsp ,le_parse_start_enc_rsp 
+0x58c7 016247 beq ll_unknown_rsp ,le_parse_unknown_rsp 
+0x58c8 016248 beq ll_feature_req ,le_parse_feature_req 
+0x58c9 016249 beq ll_feature_rsp ,le_parse_feature_rsp 
+0x58ca 016250 beq ll_pause_enc_req ,le_parse_pause_enc_req 
+0x58cb 016251 beq ll_pause_enc_rsp ,le_parse_pause_enc_rsp 
+0x58cc 016252 beq ll_version_ind ,le_parse_version_ind 
+0x58cd 016253 beq ll_reject_ind ,le_parse_reject_ind 
+0x58ce 016254 branch assert 
+:      016256 le_parse_l2cap:
+0x58cf 016257 fetch 1 ,mem_le_rxbuf + 1 
+0x58d0 016258 and pdata ,0x1f ,pdata 
+0x58d1 016259 rtn blank 
+0x58d2 016260 fetch 1 ,mem_device_option 
+0x58d3 016261 beq dvc_op_hci ,le_acl_upgoing 
+0x58d4 016262 fetch 2 ,mem_le_rxbuf + 4 
+0x58d5 016263 beq le_l2cap_cid_att ,le_parse_att 
+0x58d6 016264 beq le_l2cap_cid_smp ,le_parse_smp 
+0x58d7 016265 rtn 
+:      016267 le_acl_upgoing:
+0x58d8 016268 set1 mark_ext_patch ,mark 
+0x58d9 016269 bpatch patch2d_4 ,mem_patch2d 
+0x58da 016270 call hci_get_packet_ptr 
+0x58db 016271 fetch 1 ,mem_le_conn_handle 
+0x58dc 016272 fetcht 1 ,mem_le_rxbuf 
+0x58dd 016273 and_into 3 ,temp 
+0x58de 016274 lshift8 temp ,temp 
+0x58df 016275 lshift4 temp ,temp 
+0x58e0 016276 ior temp ,pdata 
+0x58e1 016277 istore 2 ,contwu 
+0x58e2 016278 fetcht 1 ,mem_le_rxbuf + 1 
+0x58e3 016279 and temp ,0x1f ,temp 
+0x58e4 016280 istoret 2 ,contwu 
+0x58e5 016281 copy temp ,loopcnt 
+0x58e6 016282 call uart_copy_tx_bytes 
+0x58e7 016283 add temp ,4 ,loopcnt 
+0x58e8 016284 call h4_send_packet_acl 
+0x58e9 016285 branch h4_send_acl_trigger 
+:      016287 le_acl_downgoing:
+0x58ea 016288 set1 mark_ext_patch ,mark 
+0x58eb 016289 bpatch patch2d_5 ,mem_patch2d 
+0x58ec 016290 arg 0x2 ,type 
+0x58ed 016291 ifetch 2 ,contru 
+0x58ee 016292 ifetch 2 ,contru 
+0x58ef 016293 branch assert ,blank 
+0x58f0 016294 copy pdata ,loopcnt 
+0x58f1 016295 arg mem_le_txpayload ,contw 
+0x58f2 016296 call uart_copy_rx_bytes 
+0x58f3 016297 branch le_send_autolen 
+:      016299 le_parse_smp:
+0x58f4 016300 set1 mark_ext_patch ,mark 
+0x58f5 016301 bpatch patch2d_6 ,mem_patch2d 
+0x58f6 016302 ifetch 1 ,contr 
+0x58f7 016303 beq smp_pairing_request ,le_parse_smp_pairing_request 
+0x58f8 016304 beq smp_pairing_response ,le_parse_smp_pairing_response 
+0x58f9 016305 beq smp_pairing_confirm ,le_parse_smp_pairing_confirm 
+0x58fa 016306 beq smp_pairing_random ,le_parse_smp_pairing_random 
+0x58fb 016307 beq smp_pairing_failed ,le_parse_smp_pairing_failed 
+0x58fc 016308 beq smp_encryption_information ,le_parse_smp_encryption_information 
+0x58fd 016309 beq smp_master_identification ,le_parse_smp_master_identification 
+0x58fe 016310 beq smp_identity_information ,le_parse_smp_identity_information 
+0x58ff 016311 beq smp_identity_address_information ,le_parse_smp_identity_address_information 
+0x5900 016312 beq smp_signing_information ,le_parse_smp_signing_information 
+0x5901 016313 beq smp_security_request ,le_parse_smp_security_request 
+0x5902 016314 branch assert 
+:      016316 le_parse_att:
+0x5903 016317 set1 mark_ext_patch ,mark 
+0x5904 016318 bpatch patch2d_7 ,mem_patch2d 
+0x5905 016319 ifetch 3 ,contr 
+0x5906 016320 store 3 ,mem_le_att_opcode 
+:      016321 le_parse_att_p:
+0x5907 016322 beq attop_error_response ,le_parse_att_error_response 
+0x5908 016323 beq attop_exchange_mtu_request ,le_parse_att_exchange_mtu_request 
+0x5909 016324 beq attop_exchange_mtu_response ,le_parse_att_exchange_mtu_response 
+0x590a 016325 beq attop_find_information_request ,le_parse_att_find_information_request 
+0x590b 016326 beq attop_find_information_response ,le_parse_att_find_information_response 
+0x590c 016327 beq attop_find_by_type_value_request ,le_parse_att_find_by_type_value_request 
+0x590d 016328 beq attop_find_by_type_value_response ,le_parse_att_find_by_type_value_response 
+0x590e 016329 beq attop_read_by_type_request ,le_parse_att_read_by_type_request 
+0x590f 016330 beq attop_read_by_type_response ,le_parse_att_read_by_type_response 
+0x5910 016331 beq attop_read_request ,le_parse_att_read_request 
+0x5911 016332 beq attop_read_response ,le_parse_att_read_response 
+0x5912 016333 beq attop_read_blob_request ,le_parse_att_read_blob_request 
+0x5913 016334 beq attop_read_blob_response ,le_parse_att_read_blob_response 
+0x5914 016335 beq attop_read_multiple_request ,le_parse_att_read_multiple_request 
+0x5915 016336 beq attop_read_multiple_response ,le_parse_att_read_multiple_response 
+0x5916 016337 beq attop_read_by_group_type_request ,le_parse_att_read_by_group_type_request 
+0x5917 016338 beq attop_read_by_group_type_response ,le_parse_att_read_by_group_type_response 
+0x5918 016339 beq attop_write_request ,le_parse_att_write_request 
+0x5919 016340 beq attop_write_response ,le_parse_att_write_response 
+0x591a 016341 beq attop_prepare_write_request ,le_parse_att_prepare_write_request 
+0x591b 016342 beq attop_prepare_write_response ,le_parse_att_prepare_write_response 
+0x591c 016343 beq attop_execute_write_request ,le_parse_att_execute_write_request 
+0x591d 016344 beq attop_execute_write_response ,le_parse_att_execute_write_response 
+0x591e 016345 beq attop_handle_value_notification ,le_parse_att_handle_value_notification 
+0x591f 016346 beq attop_handle_value_indication ,le_parse_att_handle_value_indication 
+0x5920 016347 beq attop_handle_value_confirmation ,le_parse_att_handle_value_confirmation 
+0x5921 016348 beq attop_write_command ,le_parse_att_write_command 
+0x5922 016349 beq attop_signed_write_command ,le_parse_att_signed_write_command 
+0x5923 016350 branch assert 
+:      016353 le_parse_connection_update_req:
+0x5924 016354 ifetch 9 ,contr 
+0x5925 016355 store 9 ,mem_le_new_param 
+0x5926 016356 ifetch 2 ,contr 
+0x5927 016357 store 2 ,mem_le_instant 
+0x5928 016358 fetch 1 ,mem_le_state 
+0x5929 016359 set1 lestate_update_param ,pdata 
+0x592a 016360 store 1 ,mem_le_state 
+0x592b 016361 rtn 
+:      016363 le_parse_channel_map_req:
+0x592c 016364 ifetch 5 ,contr 
+0x592d 016365 store 5 ,mem_le_new_map 
+0x592e 016366 ifetch 2 ,contr 
+0x592f 016367 store 2 ,mem_le_instant 
+0x5930 016368 fetch 1 ,mem_le_state 
+0x5931 016369 set1 lestate_update_map ,pdata 
+0x5932 016370 store 1 ,mem_le_state 
+0x5933 016371 rtn 
+:      016373 le_parse_terminate_ind:
+0x5934 016374 fetch 1 ,mem_le_op 
+0x5935 016375 set1 op_disconn ,pdata 
+0x5936 016376 store 1 ,mem_le_op 
+0x5937 016377 rtn 
+:      016379 le_parse_enc_req:
+0x5938 016380 increase 10 ,contr 
+0x5939 016381 ifetch 8 ,contr 
+0x593a 016382 store 8 ,mem_le_skdm 
+0x593b 016383 ifetch 4 ,contr 
+0x593c 016384 store 4 ,mem_le_ivm 
+0x593d 016385 jam xt_ll_enc_rsp ,mem_fifo_temp 
+0x593e 016386 branch le_xtype_fifo_in 
+:      016388 le_parse_enc_rsp:
+0x593f 016389 ifetch 8 ,contr 
+0x5940 016390 store 8 ,mem_le_skds 
+0x5941 016391 ifetch 4 ,contr 
+0x5942 016392 store 4 ,mem_le_ivs 
+0x5943 016393 branch generate_sk 
+:      016395 le_parse_start_enc_req:
+0x5944 016396 fetch 1 ,mem_le_state 
+0x5945 016397 set1 lestate_encryption ,pdata 
+0x5946 016398 store 1 ,mem_le_state 
+0x5947 016399 jam xt_ll_start_enc_rsp ,mem_fifo_temp 
+0x5948 016400 branch le_xtype_fifo_in 
+:      016402 le_parse_start_enc_rsp:
+0x5949 016403 rtn master 
+0x594a 016404 jam xt_ll_start_enc_rsp ,mem_fifo_temp 
+0x594b 016405 branch le_xtype_fifo_in 
+:      016407 le_parse_unknown_rsp:
+0x594c 016408 rtn 
+:      016410 le_parse_feature_req:
+0x594d 016411 jam xt_ll_feature_rsp ,mem_fifo_temp 
+0x594e 016412 branch le_xtype_fifo_in 
+:      016414 le_parse_feature_rsp:
+0x594f 016415 rtn 
+:      016417 le_parse_pause_enc_req:
+0x5950 016418 rtn 
+:      016420 le_parse_pause_enc_rsp:
+0x5951 016421 rtn 
+:      016423 le_parse_version_ind:
+0x5952 016424 rtn master 
+0x5953 016425 jam xt_ll_version_ind ,mem_fifo_temp 
+0x5954 016426 branch le_xtype_fifo_in 
+:      016428 le_parse_reject_ind:
+0x5955 016429 rtn 
+:      016432 le_parse_smp_pairing_request:
+0x5956 016433 store 1 ,mem_le_preq 
+0x5957 016434 ifetch 6 ,contr 
+0x5958 016435 istore 6 ,contw 
+0x5959 016436 jam xt_smp_pairing_response ,mem_fifo_temp 
+0x595a 016437 branch le_xtype_fifo_in 
+:      016439 le_parse_smp_pairing_response:
+0x595b 016440 store 1 ,mem_le_pres 
+0x595c 016441 ifetch 6 ,contr 
+0x595d 016442 istore 6 ,contw 
+0x595e 016443 jam xt_smp_pairing_confirm ,mem_fifo_temp 
+0x595f 016444 branch le_xtype_fifo_in 
+:      016446 le_parse_smp_pairing_confirm:
+0x5960 016447 arg mem_le_rconfirm ,contw 
+0x5961 016448 call memcpy16 
+0x5962 016449 jam xt_smp_pairing_random ,mem_fifo_temp 
+0x5963 016450 branch le_xtype_fifo_in ,master 
+0x5964 016451 jam xt_smp_pairing_confirm ,mem_fifo_temp 
+0x5965 016452 branch le_xtype_fifo_in 
+:      016454 le_parse_smp_pairing_random:
+0x5966 016455 call authenticate_rconfirm 
+0x5967 016456 branch le_parse_smp_pairing_random_success ,zero 
+0x5968 016457 jam xt_smp_pairing_failed ,mem_fifo_temp 
+0x5969 016458 branch le_xtype_fifo_in 
+:      016460 le_parse_smp_pairing_random_success:
+0x596a 016461 call generate_stk 
+0x596b 016462 jam xt_ll_enc_req ,mem_fifo_temp 
+0x596c 016463 branch le_xtype_fifo_in ,master 
+0x596d 016464 jam xt_smp_pairing_random ,mem_fifo_temp 
+0x596e 016465 branch le_xtype_fifo_in 
+:      016467 le_parse_smp_pairing_failed:
+0x596f 016468 rtn 
+:      016470 le_parse_smp_encryption_information:
+0x5970 016471 arg mem_le_peer_ltk ,contw 
+0x5971 016472 branch memcpy16 
+:      016474 le_parse_smp_master_identification:
+0x5972 016475 rtn 
+:      016477 le_parse_smp_identity_information:
+0x5973 016478 rtn 
+:      016480 le_parse_smp_identity_address_information:
+0x5974 016481 rtn 
+:      016483 le_parse_smp_signing_information:
+0x5975 016484 rtn 
+:      016486 le_parse_smp_security_request:
+0x5976 016487 rtn 
+:      016489 le_parse_att_error_response:
+0x5977 016490 increase -2 ,contr 
+0x5978 016491 ifetcht 1 ,contr 
+0x5979 016492 setarg attop_find_by_type_value_request 
+0x597a 016493 isub temp ,null 
+0x597b 016494 branch le_parse_att_error_res_find_by_type_value ,zero 
+0x597c 016495 setarg attop_find_information_request 
+0x597d 016496 isub temp ,null 
+0x597e 016497 branch le_parse_att_error_res_find_info ,zero 
+0x597f 016498 setarg attop_read_by_type_request 
+0x5980 016499 isub temp ,null 
+0x5981 016500 branch le_parse_att_error_res_read_by_type ,zero 
+0x5982 016501 setarg attop_read_blob_request 
+0x5983 016502 isub temp ,null 
+0x5984 016503 branch le_parse_att_error_res_read_blob ,zero 
+0x5985 016504 setarg attop_read_multiple_request 
+0x5986 016505 isub temp ,null 
+0x5987 016506 branch le_parse_att_error_res_read_multiple ,zero 
+0x5988 016507 rtn 
+:      016509 le_parse_att_error_res_find_by_type_value:
+0x5989 016510 rtn 
+:      016512 le_parse_att_error_res_find_info:
+0x598a 016513 rtn 
+:      016515 le_parse_att_error_res_read_by_type:
+0x598b 016516 rtn 
+:      016518 le_parse_att_error_res_read_blob:
+0x598c 016519 rtn 
+:      016521 le_parse_att_error_res_read_multiple:
+0x598d 016522 rtn 
+:      016525 le_parse_att_exchange_mtu_request:
+0x598e 016526 jam attop_exchange_mtu_response ,mem_fifo_temp 
+0x598f 016527 branch le_xtype_fifo_in 
+:      016529 le_parse_att_exchange_mtu_response:
+0x5990 016530 rtn 
+:      016532 le_parse_att_find_information_request:
+0x5991 016533 rshift8 pdata ,pdata 
+0x5992 016534 store 2 ,mem_le_search_handle_start 
+0x5993 016535 ifetch 2 ,contr 
+0x5994 016536 store 2 ,mem_le_search_handle_end 
+0x5995 016537 jam attop_find_information_response ,mem_fifo_temp 
+0x5996 016538 branch le_xtype_fifo_in 
+:      016540 le_parse_att_find_information_response:
+0x5997 016541 rtn 
+:      016543 le_parse_att_find_info_res_multi:
+0x5998 016544 rtn 
+:      016546 le_parse_att_find_info_res_error:
+0x5999 016547 rtn 
+:      016549 le_parse_att_find_by_type_value_request:
+0x599a 016550 rshift8 pdata ,pdata 
+0x599b 016551 store 2 ,mem_le_search_handle_start 
+0x599c 016552 ifetch 2 ,contr 
+0x599d 016553 store 2 ,mem_le_search_handle_end 
+0x599e 016554 ifetch 2 ,contr 
+0x599f 016555 store 2 ,mem_le_uuid 
+0x59a0 016556 ifetch 2 ,contr 
+0x59a1 016557 store 2 ,mem_le_search_att_type 
+0x59a2 016558 jam attop_find_by_type_value_response ,mem_fifo_temp 
+0x59a3 016559 branch le_xtype_fifo_in 
+:      016562 le_parse_att_find_by_type_value_response:
+0x59a4 016563 rtn 
+:      016565 le_parse_att_read_by_type_request:
+0x59a5 016566 rshift8 pdata ,pdata 
+0x59a6 016567 store 2 ,mem_le_search_handle_start 
+0x59a7 016568 ifetch 2 ,contr 
+0x59a8 016569 store 2 ,mem_le_search_handle_end 
+0x59a9 016570 ifetch 2 ,contr 
+0x59aa 016571 store 2 ,mem_le_search_att_type 
+0x59ab 016572 jam attop_read_by_type_response ,mem_fifo_temp 
+0x59ac 016573 branch le_xtype_fifo_in 
+:      016575 le_parse_att_read_by_type_response:
+0x59ad 016576 rtn 
+:      016578 le_parse_att_read_request:
+0x59ae 016579 fetch 2 ,mem_le_rxbuf + 7 
+0x59af 016580 store 2 ,mem_le_att_handle 
+0x59b0 016581 jam attop_read_response ,mem_fifo_temp 
+0x59b1 016582 branch le_xtype_fifo_in 
+:      016584 le_parse_att_read_response:
+0x59b2 016585 rtn 
+:      016587 le_send_att_read_res_end:
+0x59b3 016588 rtn 
+:      016590 le_prepare_descriptor:
+0x59b4 016591 rtn 
+:      016594 le_parse_att_read_blob_request:
+0x59b5 016595 ifetch 2 ,contr 
+0x59b6 016596 store 2 ,mem_le_att_offset 
+0x59b7 016597 jam attop_read_blob_response ,mem_fifo_temp 
+0x59b8 016598 branch le_xtype_fifo_in 
+:      016600 le_parse_att_read_blob_response:
+0x59b9 016601 rtn 
+:      016603 le_parse_att_read_multiple_request:
+0x59ba 016604 fetch 1 ,mem_le_rxbuf + 1 
+0x59bb 016605 increase -5 ,pdata 
+0x59bc 016606 rshift pdata ,pdata 
+0x59bd 016607 store 1 ,mem_le_temp 
+0x59be 016608 jam attop_read_multiple_response ,mem_fifo_temp 
+0x59bf 016609 branch le_xtype_fifo_in 
+:      016611 le_parse_att_read_multiple_response:
+0x59c0 016612 rtn 
+:      016614 le_parse_att_read_by_group_type_request:
+0x59c1 016615 rshift8 pdata ,pdata 
+0x59c2 016616 store 2 ,mem_le_search_handle_start 
+0x59c3 016617 ifetch 2 ,contr 
+0x59c4 016618 store 2 ,mem_le_search_handle_end 
+0x59c5 016619 ifetch 2 ,contr 
+0x59c6 016620 store 2 ,mem_le_search_att_type 
+0x59c7 016621 jam attop_read_by_group_type_response ,mem_fifo_temp 
+0x59c8 016622 branch le_xtype_fifo_in 
+:      016624 le_parse_att_read_by_group_type_response:
+0x59c9 016625 rtn 
+:      016627 le_parse_att_write_request:
+0x59ca 016628 fetch 1 ,mem_le_rxbuf + 1 
+0x59cb 016629 increase -7 ,pdata 
+0x59cc 016630 icopy loopcnt 
+0x59cd 016631 fetcht 2 ,mem_le_att_handle 
+0x59ce 016632 call le_att_get_handle_ptr 
+0x59cf 016633 branch le_parse_att_write_request_fail ,blank 
+0x59d0 016634 ifetch 1 ,contr 
+0x59d1 016635 isub loopcnt ,null 
+0x59d2 016636 nbranch le_parse_att_write_request_fail ,positive 
+0x59d3 016637 copy contr ,contw 
+0x59d4 016639 arg mem_le_rxbuf + 9 ,contr 
+0x59d5 016640 call memcpy 
+0x59d6 016641 jam bt_evt_le_write_request ,mem_fifo_temp 
+0x59d7 016642 call ui_ipc_send_event 
+:      016643 le_parse_att_write_request_fail:
+0x59d8 016644 jam attop_write_response ,mem_fifo_temp 
+0x59d9 016645 branch le_xtype_fifo_in 
+:      016647 le_parse_att_write_response:
+0x59da 016648 fetch 1 ,mem_le_conn_sm 
+0x59db 016649 rtn 
+:      016651 le_parse_att_prepare_write_request:
+0x59dc 016652 rtn 
+:      016654 le_parse_att_prepare_write_response:
+0x59dd 016655 rtn 
+:      016657 le_parse_att_execute_write_request:
+0x59de 016658 rtn 
+:      016660 le_parse_att_execute_write_response:
+0x59df 016661 rtn 
+:      016663 le_parse_att_handle_value_notification:
+0x59e0 016670 ifetch 5 ,contr 
+0x59e1 016671 store 5 ,mem_mouse_data 
+0x59e2 016672 jam send_mouse_data_cmd ,mem_mcmd 
+0x59e3 016674 call usb_isr 
+0x59e4 016675 rtn 
+:      016676 le_kb_handle_value_notification:
+0x59e5 016677 copy rega ,contr 
+0x59e6 016678 ifetch 8 ,contr 
+0x59e7 016679 store 8 ,mem_mouse_data 
+0x59e8 016680 jam send_kb_data_cmd ,mem_mcmd 
+0x59e9 016681 call usb_isr 
+0x59ea 016682 rtn 
+:      016684 le_parse_att_handle_value_indication:
+0x59eb 016685 rtn 
+:      016687 le_parse_att_handle_value_confirmation:
+0x59ec 016688 rtn 
+:      016690 le_parse_att_write_command:
+0x59ed 016691 fetch 1 ,mem_le_rxbuf + 1 
+0x59ee 016692 increase -7 ,pdata 
+0x59ef 016693 icopy loopcnt 
+0x59f0 016694 fetcht 2 ,mem_le_att_handle 
+0x59f1 016695 call le_att_get_handle_ptr 
+0x59f2 016696 branch le_parse_att_write_command_fail ,blank 
+0x59f3 016697 ifetch 1 ,contr 
+0x59f4 016698 isub loopcnt ,null 
+0x59f5 016699 nbranch le_parse_att_write_command_fail ,positive 
+0x59f6 016700 copy contr ,contw 
+0x59f7 016701 copy contr ,rega 
+0x59f8 016702 copy loopcnt ,regb 
+0x59f9 016703 arg mem_le_rxbuf + 9 ,contr 
+0x59fa 016704 call memcpy 
+0x59fb 016705 jam prcp_le ,mem_prcp 
+0x59fc 016706 call le_writeatt_cb 
+:      016707 le_parse_att_write_command_fail:
+0x59fd 016708 rtn 
+:      016711 le_writeatt_cb:
+0x59fe 016712 fetch 2 ,mem_cb_att_write 
+0x59ff 016713 rtn blank 
+0x5a00 016714 iforce pc 
+:      016717 le_parse_att_signed_write_command:
+0x5a01 016718 rtn 
+:      016720 le_supervision_update:
+0x5a02 016721 fetcht 4 ,mem_le_supervision_timer 
+0x5a03 016722 call get_clkbt 
+0x5a04 016723 isub temp ,timeup 
+0x5a05 016724 deposit timeup 
+0x5a06 016725 fetcht 2 ,mem_le_superto 
+0x5a07 016726 lshift4 temp ,temp 
+0x5a08 016727 lshift temp ,temp 
+0x5a09 016728 isub temp ,pdata 
+0x5a0a 016729 rtn 
+:      016731 le_supervision_flush:
+0x5a0b 016732 call get_clkbt 
+0x5a0c 016733 store 4 ,mem_le_supervision_timer 
+0x5a0d 016734 rtn 
+:      016738 le_adv:
+0x5a0e 016739 set1 mark_ext_patch ,mark 
+0x5a0f 016740 bpatch patch2e_0 ,mem_patch2e 
+0x5a10 016741 fetch 1 ,mem_le_adv_enable 
+0x5a11 016742 rtn blank 
+0x5a12 016743 arg le_adv_interval_timer ,queue 
+0x5a13 016744 call timer_check 
+0x5a14 016745 nrtn blank 
+0x5a15 016746 disable master 
+0x5a16 016747 enable swfine 
+0x5a17 016748 call le_init_adv 
+0x5a18 016749 call le_next_adv_channel 
+0x5a19 016750 call le_send_adv_ind 
+0x5a1a 016751 nbranch le_adv_not_match ,match 
+0x5a1b 016752 set1 mark_ext_patch ,mark 
+0x5a1c 016753 bpatch patch2e_1 ,mem_patch2e 
+0x5a1d 016754 fetch 1 ,mem_le_req_rcv 
+0x5a1e 016755 increase 1 ,pdata 
+0x5a1f 016756 store 1 ,mem_le_req_rcv 
+0x5a20 016757 fetch 1 ,mem_le_rxbuf 
+0x5a21 016758 and pdata ,0x0f ,pdata 
+0x5a22 016759 beq scan_req ,le_send_scan_response 
+0x5a23 016760 beq connect_req ,parse_connect_req 
+:      016761 le_adv_not_match:
+0x5a24 016762 nop 10000 
+0x5a25 016763 fetch 1 ,mem_le_ch_mapped 
+0x5a26 016764 bne 39 ,le_adv 
+0x5a27 016765 call le_ledoff 
+0x5a28 016766 arg le_adv_interval_timer ,queue 
+0x5a29 016767 fetch 2 ,mem_le_adv_interval_max 
+0x5a2a 016768 branch timer_init 
+:      016771 le_receive_window_size:
+0x5a2b 016772 set1 mark_ext_patch ,mark 
+0x5a2c 016773 bpatch patch2e_2 ,mem_patch2e 
+0x5a2d 016774 fetch 1 ,mem_le_peer_sca 
+0x5a2e 016775 call le_sca_map 
+0x5a2f 016776 fetch 2 ,mem_le_tsniff 
+0x5a30 016777 imul32 temp ,pdata 
+0x5a31 016778 arg 375 ,temp 
+0x5a32 016779 imul32 temp ,pdata 
+0x5a33 016780 arg 100000 ,temp 
+0x5a34 016781 idiv temp 
+0x5a35 016782 fetch 1 ,mem_le_window_size 
+0x5a36 016783 arg 20000 ,temp 
+0x5a37 016784 imul32 temp ,pdata 
+0x5a38 016785 store 4 ,mem_le_transmit_window 
+0x5a39 016786 set1 mark_ext_patch ,mark 
+0x5a3a 016787 bpatch patch2e_3 ,mem_patch2e 
+0x5a3b 016788 fetch 2 ,mem_rx_window_sniff 
+0x5a3c 016789 call wait_div_end 
+0x5a3d 016790 quotient temp 
+0x5a3e 016791 iadd temp ,pdata 
+0x5a3f 016792 store 2 ,mem_le_receive_window 
+0x5a40 016793 rtn 
+:      016795 parse_connect_req:
+0x5a41 016796 set1 mark_ext_patch ,mark 
+0x5a42 016797 bpatch patch2e_4 ,mem_patch2e 
+0x5a43 016798 fetch 6 ,mem_le_rxbuf + 8 
+0x5a44 016799 fetcht 6 ,mem_le_lap 
+0x5a45 016800 isub temp ,null 
+0x5a46 016801 nrtn zero 
+0x5a47 016802 call le_scan_check_sender_addr_type 
+0x5a48 016803 copy rega ,pdata 
+0x5a49 016804 store 1 ,mem_le_conn_peer_addr_type 
+0x5a4a 016805 fetch 7 ,mem_le_rxbuf + 21 
+0x5a4b 016806 store 7 ,mem_tmp_buffer 
+0x5a4c 016807 ifetch 8 ,contr 
+0x5a4d 016808 istore 8 ,contw 
+0x5a4e 016809 fetch 6 ,mem_le_rxbuf + 2 
+0x5a4f 016810 store 6 ,mem_le_plap 
+0x5a50 016811 set1 mark_ext_patch ,mark 
+0x5a51 016812 bpatch patch2e_5 ,mem_patch2e 
+0x5a52 016813 increase 6 ,contr 
+0x5a53 016814 ifetch 8 ,contr 
+0x5a54 016815 store 8 ,mem_le_access 
+0x5a55 016816 ifetcht 2 ,contr 
+0x5a56 016817 lshift2 temp ,temp 
+0x5a57 016818 ifetch 2 ,contr 
+0x5a58 016819 lshift2 pdata ,pdata 
+0x5a59 016820 store 2 ,mem_le_tsniff 
+0x5a5a 016821 store 4 ,mem_le_anchor 
+0x5a5b 016822 isub temp ,pdata 
+0x5a5c 016823 add pdata ,-2 ,clke_bt 
+0x5a5d 016824 ifetch 9 ,contr 
+0x5a5e 016825 store 9 ,mem_le_slave_latency 
+0x5a5f 016826 set1 mark_ext_patch ,mark 
+0x5a60 016827 bpatch patch2e_6 ,mem_patch2e 
+0x5a61 016828 ifetch 1 ,contr 
+0x5a62 016829 rshift4 pdata ,temp 
+0x5a63 016830 rshift temp ,temp 
+0x5a64 016831 storet 1 ,mem_le_peer_sca 
+0x5a65 016832 and_into 0x1f ,pdata 
+0x5a66 016833 store 1 ,mem_le_hop 
+0x5a67 016834 call le_receive_window_size 
+0x5a68 016835 call le_calc_channel_map 
+0x5a69 016836 call le_init_slave 
+0x5a6a 016837 call context_new 
+0x5a6b 016838 nrtn zero 
+0x5a6c 016839 set1 mark_ext_patch ,mark 
+0x5a6d 016840 bpatch patch2e_7 ,mem_patch2e 
+0x5a6e 016841 arg 0 ,temp 
+0x5a6f 016842 call hci_send_le_conn_complete 
+0x5a70 016843 call calc_clke_offset 
+0x5a71 016844 jam bt_evt_le_connected ,mem_fifo_temp 
+0x5a72 016845 call ui_ipc_send_event 
+0x5a73 016847 branch context_save 
+:      016850 le_init_attlist_search:
+0x5a74 016851 set1 mark_ext_patch ,mark 
+0x5a75 016852 bpatch patch2f_0 ,mem_patch2f 
+0x5a76 016853 fetch 2 ,mem_le_search_handle_start 
+0x5a77 016854 iforce regb 
+0x5a78 016855 fetch 2 ,mem_le_search_handle_end 
+0x5a79 016856 iforce regc 
+0x5a7a 016857 arg mem_le_att_list ,contr 
+0x5a7b 016858 enable user 
+0x5a7c 016859 rtn 
+:      016862 le_att_handle_inrange:
+0x5a7d 016863 ifetch 2 ,contr 
+0x5a7e 016864 rtn blank 
+0x5a7f 016865 isub regb ,null 
+0x5a80 016866 nrtn positive 
+0x5a81 016867 isub regc ,null 
+0x5a82 016868 rtn zero 
+0x5a83 016869 branch le_att_handle_blank ,positive 
+0x5a84 016870 force 1 ,null 
+0x5a85 016871 rtn 
+:      016872 le_att_handle_blank:
+0x5a86 016873 force 0 ,pdata 
+0x5a87 016874 rtn 
+:      016877 le_att_get_handle_ptr:
+0x5a88 016878 arg mem_le_att_list ,contr 
+:      016879 le_att_get_handle_loop:
+0x5a89 016880 ifetch 2 ,contr 
+0x5a8a 016881 rtn blank 
+0x5a8b 016882 increase 2 ,contr 
+0x5a8c 016883 isub temp ,null 
+0x5a8d 016884 rtn zero 
+0x5a8e 016885 ifetch 1 ,contr 
+0x5a8f 016886 iadd contr ,contr 
+0x5a90 016887 branch le_att_get_handle_loop 
+:      016889 le_data_send_write_req:
+0x5a91 016890 jam 0x2 ,mem_le_handle_data_len 
+0x5a92 016891 setarg 0x0001 
+0x5a93 016892 store 2 ,mem_le_handle_data 
+0x5a94 016893 jam conn_sm_wait_write_res ,mem_le_conn_sm 
+0x5a95 016894 jam attop_write_request ,mem_fifo_temp 
+0x5a96 016895 branch le_xtype_fifo_in 
+:      016897 le_data_wait_write_res:
+0x5a97 016898 rtn 
+:      016899 le_data_wait_write_res1:
+0x5a98 016900 rtn 
+:      016901 le_conn_sm_master:
+0x5a99 016902 set1 mark_ext_patch ,mark 
+0x5a9a 016903 bpatch patch2f_1 ,mem_patch2f 
+0x5a9b 016904 fetch 1 ,mem_device_option 
+0x5a9c 016905 rtnne dvc_op_dongle 
+0x5a9d 016906 fetch 1 ,mem_le_conn_sm 
+0x5a9e 016907 beq conn_sm_send_write_req ,le_data_send_write_req 
+0x5a9f 016908 beq conn_sm_wait_write_res ,le_data_wait_write_res 
+0x5aa0 016909 beq conn_sm_wait_write_res1 ,le_data_wait_write_res1 
+0x5aa1 016910 rtn 
+:      016912 le_ukey_init:
+0x5aa2 016913 setarg le_ukey 
+0x5aa3 016914 store 2 ,mem_cb_le_process 
+0x5aa4 016915 hjam uart_ctrl_normal ,core_uart_ctrl 
+0x5aa5 016916 setarg uart_baud_115200 
+0x5aa6 016917 hstore uart_baud_len ,core_uart_baud 
+0x5aa7 016918 hjam uartclk_dpll ,core_uart_clksel 
+0x5aa8 016919 hjam 0x4 ,core_gpio_sel1 
+0x5aa9 016920 setarg le_ukey_wcb 
+0x5aaa 016921 store 2 ,mem_cb_att_write 
+0x5aab 016922 call le_init_att 
+0x5aac 016923 rtn wake 
+0x5aad 016924 branch eeprom_load_reconn_info 
+:      016927 le_ukey:
+0x5aae 016928 fetch 1 ,mem_le_mode 
+0x5aaf 016929 compare lemode_slave ,pdata ,0xff 
+0x5ab0 016930 setarg 5 
+0x5ab1 016931 call set_pwm_steadyon ,true 
+0x5ab2 016932 ncall set_pwm_blink ,true 
+0x5ab3 016933 call uartd_prepare_rx 
+0x5ab4 016934 branch le_ukey_senddata ,blank 
+0x5ab5 016935 fetch 2 ,mem_le_notify_attr_start 
+0x5ab6 016936 iforce contw 
+0x5ab7 016937 sub loopcnt ,20 ,null 
+0x5ab8 016938 branch le_ukey_loop ,positive 
+0x5ab9 016939 force 20 ,loopcnt 
+:      016940 le_ukey_loop:
+0x5aba 016941 ifetch 1 ,contru 
+0x5abb 016942 istore 1 ,contw 
+0x5abc 016943 loop le_ukey_loop 
+0x5abd 016944 call uartd_rxdone 
+:      016945 le_ukey_senddata:
+0x5abe 016946 jam notify_handle ,mem_le_notify_handle 
+0x5abf 016947 fetcht 2 ,mem_le_notify_attr_start 
+0x5ac0 016948 ifetch 1 ,temp 
+0x5ac1 016949 rtn blank 
+0x5ac2 016950 call le_xtype_fifo_is_full 
+0x5ac3 016951 nrtn blank 
+0x5ac4 016952 jam attop_handle_value_notification ,mem_fifo_temp 
+0x5ac5 016953 branch le_xtype_fifo_in 
+:      016955 le_ukey_wcb:
+0x5ac6 016956 copy regb ,temp 
+0x5ac7 016957 call uartd_prepare_tx 
+0x5ac8 016958 copy rega ,contr 
+0x5ac9 016959 copy regb ,loopcnt 
+:      016960 le_writeatt_cb_loop:
+0x5aca 016961 ifetch 1 ,contr 
+0x5acb 016962 istore 1 ,contwu 
+0x5acc 016963 loop le_writeatt_cb_loop 
+0x5acd 016964 branch uartd_send 
+:      016966 le_clear_notify_att:
+0x5ace 016967 fetch 1 ,mem_device_option 
+0x5acf 016968 rtnne dvc_op_ukey 
+0x5ad0 016969 fetch 2 ,mem_le_notify_handle 
+0x5ad1 016970 rtnne notify_handle 
+0x5ad2 016971 fetcht 2 ,mem_le_notify_attr_start 
+0x5ad3 016972 setarg 0 
+0x5ad4 016973 istore 9 ,temp 
+0x5ad5 016974 istore 9 ,contw 
+0x5ad6 016975 istore 2 ,contw 
+0x5ad7 016976 rtn 
+:      016979 le_ledoff:
+0x5ad8 016980 fetcht 1 ,mem_le_adv_led 
+0x5ad9 016981 setflip gpio_active_bit ,temp 
+0x5ada 016982 branch gpio_out 
+:      016985 le_modified_name:
+0x5adb 016986 set1 mark_ext_patch ,mark 
+0x5adc 016987 bpatch patch2f_2 ,mem_patch2f 
+0x5add 016988 call le_modified_name_att_list 
+0x5ade 016989 branch le_modified_name_adv 
+:      016991 le_modified_name_att_list:
+0x5adf 016992 fetch 1 ,mem_le_name_len 
+0x5ae0 016993 copy pdata ,loopcnt 
+0x5ae1 016994 arg uuid_chrctr_device_name ,temp 
+0x5ae2 016995 call le_att_get_uuid_ptr 
+0x5ae3 016996 increase 1 ,contr 
+0x5ae4 016997 copy contr ,contw 
+0x5ae5 016998 arg mem_le_name ,contr 
+0x5ae6 016999 call memcpy 
+0x5ae7 017000 fetch 1 ,mem_le_name_len 
+0x5ae8 017001 sub pdata ,max_name_len ,loopcnt 
+0x5ae9 017002 copy loopcnt ,temp 
+0x5aea 017003 copy loopcnt ,pdata 
+0x5aeb 017004 ncall memcpy_empty ,blank 
+0x5aec 017005 rtn 
+:      017007 le_modified_name_adv:
+0x5aed 017008 fetch 1 ,mem_le_adv_data_len 
+0x5aee 017009 fetcht 1 ,mem_le_adv_data 
+0x5aef 017010 isub temp ,pdata 
+0x5af0 017011 copy pdata ,loopcnt 
+0x5af1 017012 copy pdata ,rega 
+0x5af2 017013 fetch 1 ,mem_le_adv_data 
+0x5af3 017014 increase 1 ,pdata 
+0x5af4 017015 arg mem_le_adv_data ,contr 
+0x5af5 017016 iadd contr ,contr 
+0x5af6 017017 arg mem_le_adv_temp ,contw 
+0x5af7 017018 call memcpy 
+0x5af8 017019 set1 mark_ext_patch ,mark 
+0x5af9 017020 bpatch patch2f_3 ,mem_patch2f 
+0x5afa 017021 fetch 1 ,mem_le_name_len 
+0x5afb 017022 copy pdata ,loopcnt 
+0x5afc 017023 increase 1 ,pdata 
+0x5afd 017024 store 1 ,mem_le_adv_data 
+0x5afe 017025 arg mem_le_adv_data + 2 ,contw 
+0x5aff 017026 arg mem_le_name ,contr 
+0x5b00 017027 call memcpy 
+0x5b01 017028 copy rega ,loopcnt 
+0x5b02 017029 arg mem_le_adv_temp ,contr 
+0x5b03 017030 call memcpy 
+0x5b04 017031 fetch 1 ,mem_le_adv_data 
+0x5b05 017032 iadd rega ,pdata 
+0x5b06 017033 store 1 ,mem_le_adv_data_len 
+0x5b07 017034 rtn 
+:      017037 le_get_device_name:
+0x5b08 017038 set1 mark_ext_patch ,mark 
+0x5b09 017039 bpatch patch2f_4 ,mem_patch2f 
+0x5b0a 017040 arg uuid_chrctr_device_name ,temp 
+0x5b0b 017041 branch le_att_get_uuid_ptr 
+:      017044 le_att_get_uuid_ptr:
+0x5b0c 017045 arg mem_le_att_list ,contr 
+:      017046 le_att_get_uuid_loop:
+0x5b0d 017047 ifetch 2 ,contr 
+0x5b0e 017048 branch assert ,blank 
+0x5b0f 017049 ifetch 2 ,contr 
+0x5b10 017050 isub temp ,null 
+0x5b11 017051 rtn zero 
+0x5b12 017052 ifetch 1 ,contr 
+0x5b13 017053 iadd contr ,contr 
+0x5b14 017054 branch le_att_get_uuid_loop 
+:      017057 memcpy_empty:
+0x5b15 017058 setarg space 
+0x5b16 017059 istore 1 ,contw 
+0x5b17 017060 loop memcpy_empty 
+0x5b18 017061 rtn 
+:      017064 le_lpm_set_mult:
+0x5b19 017065 set1 mark_ext_patch ,mark 
+0x5b1a 017066 bpatch patch2f_5 ,mem_patch2f 
+0x5b1b 017067 disable wake 
+0x5b1c 017068 branch le_lpm_set_mult_attempt ,attempt 
+0x5b1d 017069 nbranch le_lpm_lost ,match 
+:      017070 le_lpm_set_mult_attempt:
+0x5b1e 017071 call lpm_match 
+0x5b1f 017072 fetch 2 ,mem_rx_window_sniff 
+0x5b20 017073 store 2 ,mem_le_receive_window 
+0x5b21 017074 fetch 1 ,mem_le_rxbuf 
+0x5b22 017075 compare 1 ,pdata ,3 
+0x5b23 017076 nbranch lpm_mult_short ,true 
+0x5b24 017077 fetch 1 ,mem_le_txheader 
+0x5b25 017078 compare 1 ,pdata ,3 
+0x5b26 017079 nbranch lpm_mult_short ,true 
+0x5b27 017080 fetch 1 ,mem_le_state 
+0x5b28 017081 bbit1 lestate_update_param ,lpm_mult_short 
+0x5b29 017082 branch lpm_mult_wait_timeout 
+:      017084 le_lpm_lost:
+0x5b2a 017085 fetcht 2 ,mem_rx_window_sniff 
+0x5b2b 017086 rshift temp ,temp 
+0x5b2c 017087 fetch 2 ,mem_le_receive_window 
+0x5b2d 017088 iadd temp ,pdata 
+0x5b2e 017089 store 2 ,mem_le_receive_window 
+0x5b2f 017090 branch lpm_lost 
+:      017092 le_clean_att_list_handle_enable:
+0x5b30 017093 set1 mark_ext_patch ,mark 
+0x5b31 017094 bpatch patch2f_6 ,mem_patch2f 
+0x5b32 017095 jam 0 ,mem_le_switch_send_data 
+0x5b33 017096 fetcht 2 ,mem_le_notify_handle 
+0x5b34 017097 call le_att_check_notification_enable 
+0x5b35 017098 copy rega ,contw 
+0x5b36 017099 setarg 0 
+0x5b37 017100 istore 1 ,contw 
+0x5b38 017101 rtn 
+:      017102 le_scan_addr_to_uart:
+0x5b39 017103 fetch 1 ,mem_device_option 
+0x5b3a 017104 rtnne dvc_op_module 
+0x5b3b 017105 call get_uart_twptr 
+0x5b3c 017106 arg mem_le_plap ,rega 
+0x5b3d 017107 call adss_hex2string_to_uart 
+0x5b3e 017108 setarg 0x2c 
+0x5b3f 017109 istore 1 ,contwu 
+0x5b40 017110 call at_rssi_result 
+0x5b41 017111 branch uartd_send 
+:      017114 prcp_le_tx:
+0x5b42 017115 arg prcp_tx_le ,temp 
+0x5b43 017116 call le_att_check_notification_enable 
+0x5b44 017117 rtnbit0 0 
+0x5b45 017118 call le_xtype_fifo_is_full 
+0x5b46 017119 nrtn blank 
+0x5b47 017120 arg prcp_tx_le ,temp 
+0x5b48 017121 storet 2 ,mem_le_notify_handle 
+0x5b49 017122 call le_att_get_handle_ptr 
+0x5b4a 017123 branch assert ,blank 
+0x5b4b 017124 add contr ,1 ,contw 
+0x5b4c 017125 arg prcp_tx_data_len ,loopcnt 
+0x5b4d 017126 arg mem_prcp_data ,contr 
+0x5b4e 017127 call memcpy 
+0x5b4f 017128 jam attop_handle_value_notification ,mem_fifo_temp 
+0x5b50 017129 branch le_xtype_fifo_in 
+:      017130 prcp_tx:
+0x5b51 017131 rtn 
+:      017134 le_search_adtype:
+0x5b52 017135 set1 mark_ext_patch ,mark 
+0x5b53 017136 bpatch patch2f_7 ,mem_patch2f 
+0x5b54 017137 fetch 1 ,mem_le_rxbuf + 1 
+0x5b55 017138 arg mem_le_rxbuf + 8 ,contr 
+0x5b56 017139 iadd contr ,loopcnt 
+:      017140 le_search_adtype_loop:
+0x5b57 017141 ifetcht 1 ,contr 
+0x5b58 017142 ifetch 1 ,contr 
+0x5b59 017143 isub rega ,null 
+0x5b5a 017144 rtn zero 
+0x5b5b 017145 add temp ,-1 ,pdata 
+0x5b5c 017146 iadd contr ,contr 
+0x5b5d 017147 deposit loopcnt 
+0x5b5e 017148 isub contr ,null 
+0x5b5f 017149 branch le_search_adtype_loop ,positive 
+0x5b60 017150 force 1 ,null 
+0x5b61 017151 rtn 
+:      017158 init_lmp:
+0x5b62 017159 rtn wake 
+:      017160 init_lmp_work:
+0x5b63 017161 setarg 0 
+0x5b64 017162 store 1 ,mem_lmp_to_send 
+0x5b65 017163 store 1 ,mem_conn_sm 
+0x5b66 017164 store 1 ,mem_lmo_opcode1 
+0x5b67 017165 store 1 ,mem_lmo_opcode2 
+0x5b68 017166 store 1 ,mem_esco_addr 
+0x5b69 017167 store 1 ,mem_auth_enable 
+0x5b6a 017168 store 1 ,mem_connection_options 
+0x5b6b 017169 store 1 ,mem_pairing_auth 
+0x5b6c 017170 jam switch_flag_init ,mem_switch_flag 
+0x5b6d 017171 jam 0 ,mem_switch_fail_master_count 
+0x5b6e 017172 jam null_encryp ,mem_wait_encryption 
+:      017173 init_lmp_reinit:
+0x5b6f 017174 set1 mark_ext_patch ,mark 
+0x5b70 017175 bpatch patch3c_0 ,mem_patch3c 
+0x5b71 017176 jam 0 ,mem_pairing_auth 
+0x5b72 017177 jam 0 ,mem_sp_localsm 
+0x5b73 017178 jam 0 ,mem_lmp_conn_state 
+0x5b74 017179 fetch 1 ,mem_device_option 
+0x5b75 017180 rtnne dvc_op_hci ,pdata 
+0x5b76 017181 jam 0 ,mem_link_key_exists 
+:      017183 parse_rx_done:
+0x5b77 017184 rtn 
+:      017186 parse_lmp:
+0x5b78 017187 set1 mark_ext_patch ,mark 
+0x5b79 017188 bpatch patch3c_1 ,mem_patch3c 
+0x5b7a 017189 call setlocalsm_master ,master 
+0x5b7b 017190 ncall setlocalsm_slave ,master 
+0x5b7c 017191 fetch 1 ,mem_lmo_opcode2 
+0x5b7d 017192 ncall lmo_fifo_process ,blank 
+0x5b7e 017193 fetch 1 ,mem_lmo_opcode2 
+0x5b7f 017194 nrtn blank 
+0x5b80 017195 fetch 1 ,mem_state_map 
+0x5b81 017196 rtnbit0 smap_rxlmp 
+0x5b82 017197 set0 smap_rxlmp ,pdata 
+0x5b83 017198 set0 mark_rxbuf_inuse ,mark 
+0x5b84 017199 store 1 ,mem_state_map 
+0x5b85 017200 fetch 1 ,mem_rxbuf 
+0x5b86 017201 fetcht 1 ,mem_state_map 
+0x5b87 017202 isolate1 smap_lmptidinit ,pdata 
+0x5b88 017203 setflag true ,smap_lmptid ,temp 
+0x5b89 017204 storet 1 ,mem_state_map 
+0x5b8a 017205 and_into 0x2 ,temp 
+0x5b8b 017206 storet 1 ,mem_lmo_tid2 
+0x5b8c 017207 fetcht 1 ,mem_state_map 
+0x5b8d 017208 rshift pdata ,pdata 
+0x5b8e 017209 store 1 ,mem_lmi_opcode2 
+0x5b8f 017210 set1 mark_ext_patch ,mark 
+0x5b90 017211 bpatch patch3c_2 ,mem_patch3c 
+0x5b91 017212 fetch 1 ,mem_lmi_opcode2 
+0x5b92 017213 beq lmp_escape ,parse_lmp_escape 
+0x5b93 017214 beq lmp_accepted ,parse_lmp_accepted 
+0x5b94 017215 beq lmp_not_accepted ,parse_lmp_not_accepted 
+0x5b95 017216 beq lmp_set_afh ,parse_lmp_set_afh 
+0x5b96 017217 beq lmp_clkoffset_req ,parse_lmp_clkoffset_req 
+0x5b97 017218 beq lmp_encryption_mode_req ,parse_lmp_encryption_mode_req 
+0x5b98 017219 beq lmp_encryption_key_size_req ,parse_lmp_crypt_key 
+0x5b99 017220 beq lmp_auto_rate ,parse_lmp_auto_rate 
+0x5b9a 017221 beq lmp_test_control ,parse_lmp_test_control 
+0x5b9b 017222 beq lmp_test_activate ,parse_lmp_test_activate 
+0x5b9c 017223 beq lmp_setup_complete ,parse_lmp_setup_complete 
+0x5b9d 017224 beq lmp_supervision_timeout ,parse_lmp_supervision_timeout 
+0x5b9e 017225 beq lmp_features_req ,parse_lmp_features_req 
+0x5b9f 017226 beq lmp_host_connection_req ,parse_lmp_conn_req 
+0x5ba0 017227 beq lmp_version_req ,parse_lmp_version_req 
+0x5ba1 017228 beq lmp_version_res ,parse_lmp_version_res 
+0x5ba2 017229 beq lmp_detach ,parse_lmp_detach 
+0x5ba3 017230 beq lmp_max_slot ,parse_lmp_max_slot 
+0x5ba4 017231 beq lmp_max_slot_req ,parse_lmp_max_slot_req 
+0x5ba5 017232 beq lmp_name_req ,parse_lmp_name_req 
+0x5ba6 017233 beq lmp_name_res ,parse_lmp_name_res 
+0x5ba7 017234 beq lmp_features_res ,parse_lmp_features_res 
+0x5ba8 017235 beq lmp_comb_key ,parse_lmp_comb_key 
+0x5ba9 017236 beq lmp_au_rand ,parse_lmp_au_rand 
+0x5baa 017237 beq lmp_in_rand ,parse_lmp_in_rand 
+0x5bab 017238 beq lmp_sres ,parse_lmp_sres 
+0x5bac 017239 beq lmp_incr_power_req ,parse_lmp_incr_power 
+0x5bad 017240 beq lmp_decr_power_req ,parse_lmp_decr_power 
+0x5bae 017241 beq lmp_max_power ,parse_lmp_max_power 
+0x5baf 017242 beq lmp_min_power ,parse_lmp_min_power 
+0x5bb0 017243 beq lmp_page_mode_req ,parse_lmp_page_mode_req 
+0x5bb1 017244 beq lmp_page_scan_mode_req ,parse_lmp_page_scan_mode_req 
+0x5bb2 017245 beq lmp_preferred_rate ,parse_lmp_preferred_rate 
+0x5bb3 017246 beq lmp_remove_sco_link_req ,parse_lmp_remove_sco_link_req 
+0x5bb4 017247 beq lmp_sco_link_req ,parse_lmp_sco_link_req 
+0x5bb5 017248 beq lmp_slot_offset ,parse_lmp_slot_offset 
+0x5bb6 017249 beq lmp_sniff_req ,parse_lmp_sniff_req 
+0x5bb7 017250 beq lmp_start_encryption_req ,parse_lmp_start_encryption_req 
+0x5bb8 017251 beq lmp_stop_encryption_req ,parse_lmp_stop_encryption_req 
+0x5bb9 017252 beq lmp_switch_req ,parse_lmp_switch_req 
+0x5bba 017253 beq lmp_temp_rand ,parse_lmp_temp_rand 
+0x5bbb 017254 beq lmp_temp_key ,parse_lmp_temp_key 
+0x5bbc 017255 beq lmp_timing_accuracy_req ,parse_lmp_timing_accuracy_req 
+0x5bbd 017256 beq lmp_timing_accuracy_res ,parse_lmp_timing_accuracy_res 
+0x5bbe 017257 beq lmp_unit_key ,parse_lmp_unit_key 
+0x5bbf 017258 beq lmp_unsniff_req ,parse_lmp_unsniff_req 
+0x5bc0 017259 beq lmp_use_semi_permanent_key ,parse_lmp_use_semi_permanend_key 
+0x5bc1 017260 beq lmp_encapsulated_header ,parse_lmp_encapsulated_header 
+0x5bc2 017261 beq lmp_encapsulated_payload ,parse_lmp_encapsulated_payload 
+0x5bc3 017262 beq lmp_simple_pairing_confirm ,parse_simple_pairing_confirm 
+0x5bc4 017263 beq lmp_simple_pairing_number ,parse_lmp_simple_pairing_number 
+0x5bc5 017264 beq lmp_dhkey_check ,parse_dhkey_check 
+0x5bc6 017265 beq lmp_clkoffset_res ,parse_lmp_clkoffset_res 
+0x5bc7 017266 beq lmp_enc_key_size_mask_req ,parse_enc_key_size_mask_req 
+:      017269 reject_unknown_packet:
+0x5bc8 017270 jam unknown_lmp_pdu ,mem_lmo_reason2 
+:      017271 reject_lmp_packet:
+0x5bc9 017272 jam lmp_not_accepted ,mem_lmo_opcode2 
+0x5bca 017273 rtn 
+:      017275 parse_lmp_clkoffset_req:
+0x5bcb 017276 jam lmp_clkoffset_res ,mem_lmo_opcode2 
+0x5bcc 017277 rtn 
+:      017279 parse_enc_key_size_mask_req:
+0x5bcd 017280 jam lmp_enc_key_size_mask_res ,mem_lmo_opcode2 
+0x5bce 017281 rtn 
+:      017283 parse_lmp_set_afh:
+0x5bcf 017284 fetch 4 ,mem_rxbuf + 1 
+0x5bd0 017285 lshift pdata ,pdata 
+0x5bd1 017286 store 4 ,mem_afh_instant 
+0x5bd2 017287 fetch 1 ,mem_rxbuf + 5 
+0x5bd3 017288 store 1 ,mem_afh_new_mod 
+0x5bd4 017289 fetch 5 ,mem_rxbuf + 6 
+0x5bd5 017290 store 5 ,mem_afh_map_new 
+0x5bd6 017291 fetch 5 ,mem_rxbuf + 11 
+0x5bd7 017292 istore 5 ,contw 
+0x5bd8 017293 fetch 1 ,mem_mode 
+0x5bd9 017294 set1 afh_change ,pdata 
+0x5bda 017295 store 1 ,mem_mode 
+0x5bdb 017296 rtn 
+:      017297 parse_lmp_escape:
+0x5bdc 017298 fetch 1 ,mem_rxbuf + 1 
+0x5bdd 017299 set1 7 ,pdata 
+0x5bde 017300 store 1 ,mem_lmi_opcode2 
+0x5bdf 017301 beq lmp_ext_accepted ,parse_lmpext_accepted 
+0x5be0 017302 beq lmp_not_accepted_ext ,parse_lmpext_not_accepted 
+0x5be1 017303 beq lmp_sniff_subrating_req ,parse_lmp_sniff_subrating_req 
+0x5be2 017304 beq lmp_sniff_subrating_res ,parse_lmp_sniff_subrating_res 
+0x5be3 017305 beq lmp_packet_type_table_req ,parse_lmpext_packet_type_table_req 
+0x5be4 017306 beq lmp_ext_features_req ,parse_lmpext_features_req 
+0x5be5 017307 beq lmp_ext_features_res ,parse_lmpext_features_res 
+0x5be6 017308 beq lmp_ext_chn_classification_req ,parse_lmpext_chn_classification_req 
+0x5be7 017309 beq lmp_pause_encryption_req ,parse_lmpext_pause_encrypt 
+0x5be8 017310 beq lmp_resume_encryption_req ,parse_lmpext_resume_encrypt 
+0x5be9 017311 beq lmp_io_cap_req ,parse_lmpext_iocap_req 
+0x5bea 017312 beq lmp_io_cap_res ,parse_lmpext_iocap_res 
+0x5beb 017313 beq lmp_ext_remove_esco_req ,parse_lmpext_remove_esco_req 
+0x5bec 017314 beq lmp_ext_esco_link_req ,parse_lmpext_esco_link_req 
+0x5bed 017315 rtneq lmp_ext_features_res 
+:      017318 reject_unknown_ext_packet:
+0x5bee 017319 jam lmp_not_accepted_ext ,mem_lmo_opcode2 
+0x5bef 017320 jam unknown_lmp_pdu ,mem_lmo_reason2 
+0x5bf0 017322 rtn 
+:      017323 parse_lmpext_chn_classification_req:
+0x5bf1 017324 jam lmp_not_accepted_ext ,mem_lmo_opcode2 
+0x5bf2 017325 jam not_support_chn_classification ,mem_lmo_reason2 
+0x5bf3 017326 rtn 
+:      017328 parse_lmpext_esco_link_req:
+0x5bf4 017329 fetch 1 ,mem_rxbuf + 2 
+0x5bf5 017330 store 1 ,mem_sco_handle 
+0x5bf6 017331 fetch 1 ,mem_rxbuf + 3 
+0x5bf7 017332 store 1 ,mem_esco_addr 
+0x5bf8 017333 fetch 1 ,mem_rxbuf + 5 
+0x5bf9 017334 store 1 ,mem_esco_desco 
+0x5bfa 017335 fetch 1 ,mem_rxbuf + 9 
+0x5bfb 017336 store 1 ,mem_esco_type 
+0x5bfc 017337 fetch 1 ,mem_rxbuf + 14 
+0x5bfd 017338 store 1 ,mem_air_mode 
+0x5bfe 017339 bmark1 mark_esco ,check_esco_prarm 
+0x5bff 017340 set1 mark_esco ,mark 
+0x5c00 017341 call push_tid_follow 
+0x5c01 017342 store 1 ,mem_accptsco_tid 
+0x5c02 017343 force 0 ,temp 
+0x5c03 017344 branch hci_send_conn_req_event 
+:      017346 parse_lmpext_esco_link_req_change_param:
+0x5c04 017347 jam lmp_ext_esco_link_req ,mem_lmo_opcode2 
+0x5c05 017348 jam prarm_neogotiation ,mem_neogotiation_state 
+0x5c06 017349 branch cmd_exit 
+:      017351 check_esco_prarm:
+0x5c07 017352 fetch 1 ,mem_esco_type 
+0x5c08 017353 bne type_hv3 ,reject_esco_prarm 
+0x5c09 017354 jam lmp_ext_accepted ,mem_lmo_opcode2 
+0x5c0a 017355 branch esco_prarm_common 
+:      017356 reject_esco_prarm:
+0x5c0b 017357 set0 mark_esco ,mark 
+0x5c0c 017358 jam lmp_not_accepted_ext ,mem_lmo_opcode2 
+0x5c0d 017359 force hci_error_unknown_hci_command ,temp 
+0x5c0e 017360 call hci_send_sco_complete 
+:      017361 esco_prarm_common:
+0x5c0f 017362 jam lmp_ext_esco_link_req ,mem_lmi_opcode2 
+0x5c10 017363 rtn 
+:      017366 parse_lmpext_remove_esco_req:
+0x5c11 017367 jam lmp_ext_accepted ,mem_lmo_opcode2 
+0x5c12 017368 jam lmp_ext_remove_esco_req ,mem_lmi_opcode2 
+0x5c13 017369 branch stop_esco 
+:      017371 parse_lmpext_iocap_req:
+0x5c14 017372 call iocap_lmpext_load 
+0x5c15 017373 fetch 1 ,mem_device_option 
+0x5c16 017374 beq dvc_op_hci ,iocap_lmpext_hci 
+0x5c17 017375 jam lmp_io_cap_res ,mem_lmo_opcode2 
+0x5c18 017376 rtn 
+:      017378 parse_lmpext_iocap_res:
+0x5c19 017379 call iocap_lmpext_load 
+0x5c1a 017380 fetch 1 ,mem_device_option 
+0x5c1b 017381 beq dvc_op_hci ,iocap_lmpext_hci 
+0x5c1c 017382 branch iocap_lmpext_common 
+:      017384 iocap_lmpext_load:
+0x5c1d 017385 arg mem_sp_iocap_remote ,contw 
+0x5c1e 017386 fetch 3 ,mem_rxbuf + 2 
+0x5c1f 017387 istore 3 ,contw 
+0x5c20 017388 rtn 
+:      017390 iocap_lmpext_hci:
+0x5c21 017391 call hci_send_io_cap_response_event 
+:      017392 iocap_lmpext_common:
+0x5c22 017393 call check_localsm 
+0x5c23 017394 ncall hci_send_io_cap_req_event ,true 
+0x5c24 017395 branch master_set_mem_master_sp_flag ,true 
+0x5c25 017396 rtn 
+:      017397 parse_lmpext_accepted:
+0x5c26 017398 fetch 1 ,mem_rxbuf + 3 
+0x5c27 017399 set1 7 ,pdata 
+0x5c28 017400 store 1 ,mem_lmi_accepted_opcode 
+0x5c29 017401 beq lmp_packet_type_table_req ,parse_lmpext_accepted_ptt 
+0x5c2a 017402 beq lmp_ext_esco_link_req ,play_sco 
+0x5c2b 017403 beq lmp_ext_remove_esco_req ,parse_lmpext_stop_esco 
+0x5c2c 017404 rtn 
+:      017406 parse_lmpext_stop_esco:
+0x5c2d 017407 branch stop_esco 
+:      017409 parse_lmpext_not_accepted:
+0x5c2e 017410 fetch 1 ,mem_rxbuf + 3 
+0x5c2f 017411 set1 7 ,pdata 
+0x5c30 017412 store 1 ,mem_lmi_accepted_opcode 
+0x5c31 017413 beq lmp_packet_type_table_req ,parse_lmpext_not_accepted_ptt 
+0x5c32 017414 beq lmp_ext_esco_link_req ,parse_lmpext_not_accepted_esco 
+0x5c33 017415 rtn 
+:      017417 parse_lmpext_not_accepted_esco:
+0x5c34 017418 set0 mark_esco ,mark 
+0x5c35 017419 rtn 
+:      017421 parse_lmpext_accepted_ptt:
+0x5c36 017422 fetch 1 ,mem_ptt 
+0x5c37 017423 fetcht 1 ,mem_state_map 
+0x5c38 017424 nsetflag blank ,smap_edr ,temp 
+0x5c39 017425 storet 1 ,mem_state_map 
+:      017426 parse_lmpext_not_accepted_ptt:
+0x5c3a 017427 fetch 1 ,mem_state 
+0x5c3b 017428 rtnbit0 state_init_seq 
+0x5c3c 017429 set0 state_init_seq ,pdata 
+0x5c3d 017430 store 1 ,mem_state 
+0x5c3e 017431 fetch 1 ,mem_auth_enable 
+0x5c3f 017432 nbranch hci_send_linkkey_req ,blank 
+0x5c40 017433 jam lmp_setup_complete ,mem_lmo_opcode2 
+0x5c41 017434 rtn 
+:      017436 parse_lmpext_pause_encrypt:
+0x5c42 017437 nbranch parse_lmpext_pause_encrypt_slave ,master 
+0x5c43 017438 jam lmp_stop_encryption_req ,mem_lmo_opcode2 
+0x5c44 017439 branch tid_reply 
+:      017441 parse_lmpext_pause_encrypt_slave:
+0x5c45 017442 jam lmp_pause_encryption_req ,mem_lmo_opcode2 
+0x5c46 017443 rtn 
+:      017445 parse_lmpext_resume_encrypt:
+0x5c47 017448 call tid_reply 
+0x5c48 017449 branch lmp_start_encryption 
+:      017451 parse_lmpext_features_req:
+0x5c49 017452 jam lmp_ext_features_res ,mem_lmo_opcode2 
+0x5c4a 017453 rtn 
+:      017455 parse_lmpext_features_res:
+0x5c4b 017456 fetcht 1 ,mem_rxbuf + 4 
+0x5c4c 017457 and temp ,0x1 ,temp 
+0x5c4d 017458 storet 1 ,mem_remote_sppcap 
+0x5c4e 017459 fetch 1 ,mem_hci_cmd 
+0x5c4f 017460 bne hci_cmd_wait_remote_ext_feature ,parse_lmpext_features_res_not_hci 
+0x5c50 017461 jam 0 ,mem_hci_cmd 
+0x5c51 017462 call hci_send_remote_ext_features_event 
+:      017463 parse_lmpext_features_res_not_hci:
+0x5c52 017464 fetch 1 ,mem_conn_sm 
+0x5c53 017465 rtnne conn_sm_wait_features_ext 
+0x5c54 017466 jam conn_sm_send_conn_req ,mem_conn_sm 
+0x5c55 017467 branch process_conn_sm 
+:      017469 parse_lmp_accepted:
+0x5c56 017470 fetch 1 ,mem_rxbuf + 1 
+0x5c57 017471 store 1 ,mem_lmi_accepted_opcode 
+0x5c58 017472 beq lmp_host_connection_req ,parse_lmp_accepted_hostconn 
+0x5c59 017473 beq lmp_in_rand ,parse_lmp_accepted_inrand 
+0x5c5a 017474 beq lmp_encryption_mode_req ,parse_lmp_accepted_enc_mode 
+0x5c5b 017475 beq lmp_encryption_key_size_req ,parse_lmp_accepted_enc_keysize 
+0x5c5c 017476 beq lmp_start_encryption_req ,parse_lmp_accepted_start_enc 
+0x5c5d 017477 beq lmp_stop_encryption_req ,parse_lmp_accepted_stop_enc 
+0x5c5e 017478 beq lmp_unsniff_req ,parse_lmp_accepted_unsniff_req 
+0x5c5f 017479 beq lmp_sniff_req ,parse_lmp_accepted_sniff_req 
+0x5c60 017480 beq lmp_sco_link_req ,play_sco 
+0x5c61 017482 beq lmp_switch_req ,parse_lmp_accepted_switch 
+0x5c62 017484 beq lmp_encapsulated_header ,parse_lmp_accepted_encapsulated_header 
+0x5c63 017485 beq lmp_encapsulated_payload ,parse_lmp_accepted_encapsulated_payload 
+0x5c64 017486 beq lmp_simple_pairing_number ,parse_lmp_accepted_simple_pairing_number 
+0x5c65 017487 beq lmp_dhkey_check ,parse_lmp_accepted_dhkey_check 
+0x5c66 017488 rtn 
+:      017490 parse_lmp_not_accepted:
+0x5c67 017491 fetch 1 ,mem_rxbuf + 1 
+0x5c68 017492 store 1 ,mem_lmi_accepted_opcode 
+0x5c69 017493 beq lmp_name_req ,parse_lmp_not_accepted_name_req 
+0x5c6a 017494 beq lmp_host_connection_req ,parse_lmp_not_accepted_hostconn 
+0x5c6b 017495 beq lmp_au_rand ,parse_lmp_not_accepted_aurand 
+0x5c6c 017496 beq lmp_sco_link_req ,parse_lmp_not_accepted_sco_link_req 
+0x5c6d 017497 beq lmp_in_rand ,parse_lmp_not_accepted_inrand 
+0x5c6e 017498 beq lmp_switch_req ,parse_lmp_not_accepted_switch 
+0x5c6f 017500 beq lmp_simple_pairing_number ,parse_lmp_not_accepted_simple_pairing_number 
+0x5c70 017501 beq lmp_dhkey_check ,parse_lmp_not_accepted_dhkey_check 
+0x5c71 017502 beq lmp_unsniff_req ,parse_lmp_not_accepted_unsniff_req 
+0x5c72 017503 beq lmp_sniff_req ,parse_lmp_not_acdcept_sniff_req 
+0x5c73 017504 rtn 
+:      017506 parse_lmp_accepted_switch:
+0x5c74 017507 jam bt_evt_switch_accept ,mem_fifo_temp 
+0x5c75 017508 call ui_ipc_send_event 
+0x5c76 017509 branch role_switch_prepare0 
+:      017510 parse_lmp_not_accepted_switch:
+0x5c77 017511 jam bt_evt_switch_not_accept ,mem_fifo_temp 
+0x5c78 017512 call ui_ipc_send_event 
+0x5c79 017513 jam switch_flag_not_accept ,mem_switch_flag 
+0x5c7a 017514 setarg timer_switch_waite 
+0x5c7b 017515 arg switch_wait_timer ,queue 
+0x5c7c 017516 branch timer_init 
+:      017519 parse_lmp_accepted_hostconn:
+0x5c7d 017522 fetch 1 ,mem_lmp_conn_state 
+0x5c7e 017523 set1 received_conn_req ,pdata 
+0x5c7f 017524 store 1 ,mem_lmp_conn_state 
+0x5c80 017525 jam bt_evt_bb_connected ,mem_fifo_temp 
+0x5c81 017526 call ui_ipc_send_event 
+0x5c82 017527 jam lmp_packet_type_table_req ,mem_lmo_opcode2 
+:      017529 parse_lmp_accepted_hostconn_ctn:
+0x5c83 017531 fetch 1 ,mem_conn_sm 
+0x5c84 017532 bne conn_sm_wait_conn_accept ,parse_rx_done 
+0x5c85 017535 jam conn_sm_auth_pair ,mem_conn_sm 
+0x5c86 017536 rtn 
+:      017544 parse_lmp_not_accepted_hostconn:
+0x5c87 017545 jam acl_connection_already_exists ,mem_disconn_reason_send 
+0x5c88 017546 jam lmp_detach ,mem_lmo_opcode2 
+0x5c89 017547 force hci_error_host_timeout ,temp 
+0x5c8a 017548 call hci_send_connection_error 
+0x5c8b 017550 jam conn_sm_standby ,mem_conn_sm 
+0x5c8c 017552 branch parse_rx_done ,true 
+0x5c8d 017553 rtn 
+:      017555 parse_lmp_not_accepted_sco_link_req:
+0x5c8e 017556 jam lmp_sco_link_req ,mem_lmo_opcode2 
+0x5c8f 017557 rtn 
+:      017560 parse_lmp_accepted_inrand:
+0x5c90 017561 fetch 1 ,mem_link_key_exists 
+0x5c91 017562 nrtn blank 
+0x5c92 017563 call clear_linkkey 
+0x5c93 017564 call lmp_generate_key 
+0x5c94 017565 rtn master 
+0x5c95 017566 set1 mark_slave_in_rand_accepted ,mark 
+0x5c96 017567 rtn 
+:      017569 parse_lmp_accepted_enc_mode:
+0x5c97 017570 nrtn master 
+0x5c98 017571 jam lmp_encryption_key_size_req ,mem_lmo_opcode2 
+0x5c99 017572 fetch 1 ,mem_state_map 
+0x5c9a 017573 rtnbit0 smap_encryption 
+0x5c9b 017574 jam lmp_stop_encryption_req ,mem_lmo_opcode2 
+0x5c9c 017575 rtn 
+:      017577 parse_lmp_accepted_enc_keysize:
+0x5c9d 017578 branch lmp_start_encryption 
+:      017580 parse_lmp_accepted_start_enc:
+0x5c9e 017581 call send_create_conn_start_l2cap_timer_sm 
+0x5c9f 017582 fetch 1 ,mem_state 
+0x5ca0 017583 rtnbit1 state_conn_comp 
+0x5ca1 017584 jam lmp_setup_complete ,mem_lmo_opcode2 
+0x5ca2 017585 fetch 1 ,mem_conn_sm 
+0x5ca3 017586 rtnne conn_sm_encrypt_wait 
+0x5ca4 017587 jam conn_sm_encrypt_wait_clear ,mem_conn_sm 
+0x5ca5 017588 rtn 
+:      017590 parse_lmp_accepted_stop_enc:
+0x5ca6 017598 rtn 
+:      017600 parse_lmp_not_accepted_aurand:
+0x5ca7 017601 fetch 1 ,mem_device_option 
+0x5ca8 017602 bne dvc_op_hci ,parse_lmp_not_accepted_aurand_send_detach 
+0x5ca9 017603 fetch 1 ,mem_link_key_exists 
+0x5caa 017604 rtn blank 
+0x5cab 017605 fetcht 1 ,mem_conn_sm 
+0x5cac 017606 jam 0 ,mem_conn_sm 
+0x5cad 017607 jam 0 ,mem_link_key_exists 
+0x5cae 017608 fetch 1 ,mem_rxbuf + 2 
+0x5caf 017609 rtnne key_missing 
+0x5cb0 017610 storet 1 ,mem_conn_sm 
+0x5cb1 017611 jam local_statemachine ,mem_sp_localsm 
+0x5cb2 017612 fetch 2 ,mem_lmpext_ssp_enable 
+0x5cb3 017613 fetcht 1 ,mem_remote_sppcap 
+0x5cb4 017614 iand temp ,pdata 
+0x5cb5 017615 branch cmd_pair ,blank 
+0x5cb6 017616 branch cmd_ssp 
+:      017618 parse_lmp_not_accepted_aurand_send_detach:
+0x5cb7 017619 jam lmp_detach ,mem_lmo_opcode2 
+0x5cb8 017620 jam other_end_terminated ,mem_disconn_reason_send 
+0x5cb9 017621 rtn 
+:      017623 parse_lmp_not_accepted_inrand:
+0x5cba 017624 fetch 1 ,mem_rxbuf + 2 
+0x5cbb 017625 beq key_missing ,parse_lmp_inrand_key_missing 
+0x5cbc 017626 rtnne pairing_not_allowed 
+0x5cbd 017627 jam pairing_not_allowed ,mem_disconn_reason_send 
+0x5cbe 017628 jam lmp_detach ,mem_lmo_opcode2 
+0x5cbf 017629 rtn 
+:      017630 parse_lmp_inrand_key_missing:
+0x5cc0 017631 jam key_missing ,mem_disconn_reason_send 
+0x5cc1 017632 jam lmp_detach ,mem_lmo_opcode2 
+0x5cc2 017633 rtn 
+:      017635 parse_lmp_not_accepted_name_req:
+0x5cc3 017636 rtn 
+:      017638 parse_lmp_not_accepted_simple_pairing_number:
+0x5cc4 017639 jam sp_stat_null ,mem_sp_state 
+0x5cc5 017640 jam lmp_detach ,mem_lmo_opcode2 
+0x5cc6 017641 branch parse_rx_done 
+:      017643 parse_lmp_not_accepted_dhkey_check:
+0x5cc7 017644 jam sp_stat_null ,mem_sp_state 
+0x5cc8 017645 jam lmp_detach ,mem_lmo_opcode2 
+0x5cc9 017646 branch parse_rx_done 
+:      017647 parse_lmp_not_accepted_unsniff_req:
+0x5cca 017648 jam bt_evt_unsniff_not_accept ,mem_fifo_temp 
+0x5ccb 017649 branch ui_ipc_send_event 
+:      017651 parse_lmp_accepted_unsniff_req:
+0x5ccc 017652 jam bt_evt_unsniff_accept ,mem_fifo_temp 
+0x5ccd 017653 call ui_ipc_send_event 
+0x5cce 017654 call sniff_exit 
+0x5ccf 017655 force 0 ,temp 
+0x5cd0 017656 branch hci_send_mode_change 
+:      017658 parse_lmp_accepted_sniff_req:
+0x5cd1 017659 jam bt_evt_sniff_accept ,mem_fifo_temp 
+0x5cd2 017660 call ui_ipc_send_event 
+0x5cd3 017661 force 0x02 ,temp 
+0x5cd4 017662 call hci_send_mode_change 
+0x5cd5 017663 setarg 0 
+0x5cd6 017664 store 2 ,mem_dsniff 
+0x5cd7 017665 fetch 2 ,mem_sniff_param_interval 
+0x5cd8 017666 lshift pdata ,pdata 
+0x5cd9 017667 store 2 ,mem_tsniff 
+0x5cda 017668 fetch 1 ,mem_sniff_param_attempt 
+0x5cdb 017669 store 1 ,mem_sniff_attempt 
+0x5cdc 017670 fetch 1 ,mem_sniff_param_timeout 
+0x5cdd 017671 store 1 ,mem_sniff_timeout 
+0x5cde 017672 branch sniff_init 
+:      017674 parse_lmp_not_acdcept_sniff_req:
+0x5cdf 017675 jam bt_evt_sniff_not_accept ,mem_fifo_temp 
+0x5ce0 017676 branch ui_ipc_send_event 
+:      017678 parse_lmp_crypt_key:
+0x5ce1 017679 fetcht 1 ,mem_rxbuf + 1 
+0x5ce2 017680 storet 1 ,mem_key_size 
+0x5ce3 017681 branch accept_lmp_msg 
+:      017683 parse_lmp_setup_complete:
+0x5ce4 017684 fetch 1 ,mem_lmp_conn_state 
+0x5ce5 017685 set1 received_setup_complete ,pdata 
+0x5ce6 017686 store 1 ,mem_lmp_conn_state 
+0x5ce7 017687 rtnbit1 sent_setup_complete 
+0x5ce8 017688 jam lmp_setup_complete ,mem_lmo_opcode2 
+0x5ce9 017689 branch parse_rx_done 
+:      017691 parse_lmp_max_slot:
+0x5cea 017694 rtn 
+:      017696 parse_lmp_max_slot_req:
+0x5ceb 017697 fetch 1 ,mem_max_slot 
+0x5cec 017698 fetcht 1 ,mem_rxbuf + 1 
+0x5ced 017699 isub temp ,null 
+0x5cee 017701 branch accept_lmp_msg ,positive 
+0x5cef 017702 jam lmp_not_accepted ,mem_lmo_opcode2 
+0x5cf0 017703 jam unspecified_error ,mem_lmo_reason2 
+0x5cf1 017704 jam lmp_max_slot_req ,mem_lmi_opcode2 
+0x5cf2 017705 rtn 
+:      017707 parse_lmp_detach:
+0x5cf3 017708 call prepare_disconnect 
+0x5cf4 017709 branch accept_lmp_msg 
+:      017711 accept_lmp_msg:
+0x5cf5 017712 jam lmp_accepted ,mem_lmo_opcode2 
+0x5cf6 017713 rtn 
+:      017715 parse_lmp_incr_power:
+0x5cf7 017716 jam lmp_max_power ,mem_lmo_opcode2 
+0x5cf8 017717 rtn 
+:      017719 parse_lmp_decr_power:
+0x5cf9 017720 jam lmp_min_power ,mem_lmo_opcode2 
+0x5cfa 017721 rtn 
+:      017723 parse_lmp_version_res:
+0x5cfb 017724 fetch 1 ,mem_conn_sm 
+0x5cfc 017725 rtneq conn_sm_wait_version 
+0x5cfd 017727 jam conn_sm_send_features ,mem_conn_sm 
+0x5cfe 017729 rtn 
+:      017732 parse_lmp_auto_rate:
+0x5cff 017733 rtn 
+:      017735 parse_lmp_in_rand:
+0x5d00 017736 call lmp_copy_rand 
+0x5d01 017737 jam pincode_state_wait_pincode ,mem_pincode_state 
+0x5d02 017738 fetch 1 ,mem_device_option 
+0x5d03 017739 beq dvc_op_hci ,parse_lmp_in_rand_hci 
+0x5d04 017740 jam bt_evt_pincode_req ,mem_fifo_temp 
+0x5d05 017741 call ui_ipc_send_event 
+:      017742 parse_lmp_in_rand_hci:
+0x5d06 017743 call hci_send_pincode_req 
+0x5d07 017744 call tid_check 
+0x5d08 017745 nbranch lmp_accept_inrand ,true 
+0x5d09 017746 nbranch parse_lmp_inrand_res ,master 
+0x5d0a 017747 jam lmp_not_accepted ,mem_lmo_opcode2 
+0x5d0b 017748 jam lmp_in_rand ,mem_lmi_opcode2 
+0x5d0c 017749 jam transaction_collision ,mem_lmo_reason2 
+0x5d0d 017750 rtn 
+:      017751 parse_lmp_inrand_res:
+0x5d0e 017752 fetch 1 ,mem_op 
+0x5d0f 017753 set1 op_inrand_req ,pdata 
+0x5d10 017754 store 1 ,mem_op 
+0x5d11 017755 rtn 
+:      017758 pop_tid_follow:
+0x5d12 017759 fetcht 1 ,mem_state_map 
+0x5d13 017760 nsetflag blank ,smap_lmptid ,temp 
+0x5d14 017761 storet 1 ,mem_state_map 
+0x5d15 017762 rtn 
+:      017765 push_tid_follow:
+0x5d16 017766 fetch 1 ,mem_lmo_tid2 
+0x5d17 017767 rshift pdata ,pdata 
+0x5d18 017768 and_into 1 ,pdata 
+0x5d19 017769 rtn 
+:      017771 parse_lmp_au_rand:
+0x5d1a 017772 call push_tid_follow 
+0x5d1b 017773 store 1 ,mem_sres_tid 
+0x5d1c 017774 call lmp_copy_rand 
+0x5d1d 017775 jam lmp_sres ,mem_lmo_opcode2 
+0x5d1e 017776 fetch 1 ,mem_link_key_exists 
+0x5d1f 017777 nrtn blank 
+0x5d20 017778 fetch 1 ,mem_state 
+0x5d21 017779 rtnbit1 state_combkey 
+0x5d22 017780 jam key_missing ,mem_lmo_reason2 
+0x5d23 017781 fetch 1 ,mem_device_option 
+0x5d24 017782 bne dvc_op_hci ,reject_lmp_packet 
+0x5d25 017783 fetch 1 ,mem_auth_enable 
+0x5d26 017784 nbranch reject_lmp_packet ,blank 
+0x5d27 017785 jam 0 ,mem_lmo_opcode2 
+:      017786 parse_lmp_inrand_sres:
+0x5d28 017787 fetch 1 ,mem_op 
+0x5d29 017788 set1 op_send_sres ,pdata 
+0x5d2a 017789 store 1 ,mem_op 
+0x5d2b 017790 branch hci_send_linkkey_req 
+:      017792 parse_lmp_sres:
+0x5d2c 017793 arg mem_plap ,rega 
+0x5d2d 017794 call function_e1 
+0x5d2e 017795 fetch 4 ,mem_rxbuf + 1 
+0x5d2f 017796 fetcht 4 ,mem_input_store 
+0x5d30 017797 isub temp ,null 
+0x5d31 017798 branch authentication_ok ,zero 
+0x5d32 017799 jam lmp_detach ,mem_lmo_opcode2 
+0x5d33 017800 jam authentication_failure_error ,mem_disconn_reason_send 
+0x5d34 017801 rtn 
+:      017802 authentication_ok:
+0x5d35 017803 call copy_aco 
+0x5d36 017804 call linkkey_ready 
+0x5d37 017805 fetch 1 ,mem_op 
+0x5d38 017806 isolate1 op_auth_req ,pdata 
+0x5d39 017807 set0 op_auth_req ,pdata 
+0x5d3a 017808 store 1 ,mem_op 
+0x5d3b 017809 call hci_send_auth_complete ,true 
+0x5d3c 017810 fetch 1 ,mem_conn_sm 
+0x5d3d 017811 beq conn_sm_auth_wait ,authentication_ok_conn_sm 
+0x5d3e 017812 beq conn_sm_pairing_wait ,authentication_ok_conn_sm 
+0x5d3f 017813 rtn 
+:      017814 authentication_ok_conn_sm:
+0x5d40 017815 fetch 1 ,mem_pairing_auth 
+0x5d41 017816 rtnne defalt_pairing_auth 
+0x5d42 017817 fetch 1 ,mem_state_map 
+0x5d43 017818 rtnbit1 smap_encryption 
+0x5d44 017819 branch host_create_conn_encrypt 
+:      017821 parse_lmp_comb_key:
+0x5d45 017822 arg mem_rxbuf + 1 ,rega 
+0x5d46 017823 arg mem_kinit ,regb 
+0x5d47 017824 arg mem_random_number ,contw 
+0x5d48 017825 call xor16 
+0x5d49 017826 arg mem_plap ,rega 
+0x5d4a 017827 call generate_linkkey 
+0x5d4b 017828 jam lmp_au_rand ,mem_lmo_opcode2 
+0x5d4c 017829 fetch 1 ,mem_state 
+0x5d4d 017830 bbit0 state_combkey ,lmp_generate_key 
+0x5d4e 017831 rtn 
+:      017833 parse_lmp_name_res:
+0x5d4f 017834 fetch 2 ,mem_len 
+0x5d50 017835 add pdata ,-3 ,loopcnt 
+0x5d51 017836 fetcht 1 ,mem_rxbuf + 1 
+0x5d52 017837 setarg mem_tmp_buffer 
+0x5d53 017838 iadd temp ,contw 
+0x5d54 017839 arg mem_rxbuf + 3 ,contr 
+0x5d55 017840 call memcpy 
+0x5d56 017841 fetcht 1 ,mem_name_offset 
+0x5d57 017842 fetch 1 ,mem_rxbuf + 2 
+0x5d58 017843 isub temp ,pdata 
+0x5d59 017844 sub pdata ,14 ,null 
+0x5d5a 017845 branch parse_lmp_name_res_end ,positive 
+0x5d5b 017846 add temp ,14 ,pdata 
+0x5d5c 017847 store 1 ,mem_name_offset 
+0x5d5d 017848 jam lmp_name_req ,mem_lmo_opcode2 
+0x5d5e 017849 rtn 
+:      017850 parse_lmp_name_res_end:
+0x5d5f 017851 fetch 1 ,mem_state_map 
+0x5d60 017852 set1 smap_name_res ,pdata 
+0x5d61 017853 store 1 ,mem_state_map 
+0x5d62 017854 bbit1 smap_name_req ,lmp_disconnect 
+0x5d63 017857 rtn 
+:      017858 parse_lmp_name_req:
+0x5d64 017859 fetch 1 ,mem_rxbuf + 1 
+0x5d65 017860 store 1 ,mem_lmi_opcode2 
+0x5d66 017861 jam lmp_name_res ,mem_lmo_opcode2 
+0x5d67 017862 rtn 
+:      017864 parse_lmp_conn_req:
+0x5d68 017865 fetch 1 ,mem_device_option 
+0x5d69 017866 bne dvc_op_hci ,accept_lmp_msg 
+0x5d6a 017867 force 1 ,temp 
+0x5d6b 017868 branch hci_send_conn_req_event 
+:      017870 parse_lmp_timing_accuracy_req:
+0x5d6c 017871 jam lmp_timing_accuracy_res ,mem_lmo_opcode2 
+0x5d6d 017872 rtn 
+:      017874 parse_lmp_features_req:
+0x5d6e 017875 jam lmp_features_res ,mem_lmo_opcode2 
+0x5d6f 017876 rtn 
+:      017878 parse_lmp_version_req:
+0x5d70 017879 jam lmp_version_res ,mem_lmo_opcode2 
+0x5d71 017880 rtn 
+:      017882 parse_lmp_supervision_timeout:
+0x5d72 017885 rtn 
+:      017889 parse_lmp_sniff_subrating_req:
+0x5d73 017890 fetch 2 ,mem_tsniff 
+0x5d74 017891 iforce temp 
+0x5d75 017892 fetch 1 ,mem_rxbuf + 2 
+0x5d76 017893 store 1 ,mem_subsniff_rate 
+0x5d77 017894 imul32 temp ,temp 
+0x5d78 017895 fetch 2 ,mem_rxbuf + 3 
+0x5d79 017896 lshift pdata ,pdata 
+0x5d7a 017897 store 2 ,mem_subsniff_tcmax 
+0x5d7b 017898 fetch 4 ,mem_rxbuf + 5 
+0x5d7c 017899 lshift pdata ,pdata 
+0x5d7d 017900 store 4 ,mem_subsniff_instant 
+0x5d7e 017902 deposit temp 
+0x5d7f 017903 store 2 ,mem_subsniff_tsniff 
+0x5d80 017904 rtn 
+:      017905 parse_lmpext_packet_type_table_req:
+0x5d81 017906 fetcht 1 ,mem_ptt 
+0x5d82 017907 fetch 1 ,mem_rxbuf + 2 
+0x5d83 017908 ixor temp ,null 
+0x5d84 017909 nbranch reject_unknown_ext_packet ,zero 
+0x5d85 017910 isolate1 0 ,pdata 
+0x5d86 017911 fetch 1 ,mem_state_map 
+0x5d87 017912 setflag true ,smap_edr ,pdata 
+0x5d88 017913 store 1 ,mem_state_map 
+0x5d89 017914 jam lmp_ext_accepted ,mem_lmo_opcode2 
+0x5d8a 017915 jam lmp_packet_type_table_req ,mem_lmi_opcode2 
+0x5d8b 017916 rtn 
+:      017919 parse_lmp_sniff_subrating_res:
+0x5d8c 017920 rtn 
+:      017922 parse_lmp_max_power:
+0x5d8d 017923 rtn 
+:      017924 parse_lmp_min_power:
+0x5d8e 017925 rtn 
+:      017926 parse_lmp_page_mode_req:
+0x5d8f 017928 branch accept_lmp_msg 
+:      017929 parse_lmp_page_scan_mode_req:
+0x5d90 017932 branch accept_lmp_msg 
+:      017933 parse_lmp_preferred_rate:
+0x5d91 017934 rtn 
+:      017935 parse_lmp_remove_sco_link_req:
+0x5d92 017936 call stop_sco 
+0x5d93 017937 jam lmp_remove_sco_link_req ,mem_lmi_opcode2 
+0x5d94 017938 branch accept_lmp_msg 
+:      017941 parse_lmp_sco_link_req:
+0x5d95 017942 fetch 1 ,mem_rxbuf + 1 
+0x5d96 017943 store 1 ,mem_sco_handle 
+0x5d97 017944 fetch 1 ,mem_rxbuf + 3 
+0x5d98 017945 store 1 ,mem_esco_desco 
+0x5d99 017946 fetch 1 ,mem_rxbuf + 6 
+0x5d9a 017947 store 1 ,mem_air_mode 
+0x5d9b 017948 call push_tid_follow 
+0x5d9c 017949 store 1 ,mem_accptsco_tid 
+0x5d9d 017950 force 0 ,temp 
+0x5d9e 017951 branch hci_send_conn_req_event 
+:      017953 parse_lmp_slot_offset:
+0x5d9f 017954 fetch 2 ,mem_rxbuf + 1 
+0x5da0 017955 store 2 ,mem_slot_offset 
+0x5da1 017956 rtn 
+:      017958 parse_lmp_sniff_req:
+0x5da2 017959 fetch 1 ,mem_state 
+0x5da3 017960 bbit1 state_insniff ,lmp_reject_sniff 
+0x5da4 017961 fetch 2 ,mem_rxbuf + 2 
+0x5da5 017962 lshift pdata ,pdata 
+0x5da6 017963 store 2 ,mem_dsniff 
+0x5da7 017964 fetch 2 ,mem_rxbuf + 4 
+0x5da8 017965 lshift pdata ,pdata 
+0x5da9 017966 store 2 ,mem_tsniff 
+0x5daa 017967 fetch 2 ,mem_rxbuf + 6 
+0x5dab 017968 store 1 ,mem_sniff_attempt 
+0x5dac 017969 iforce temp 
+0x5dad 017970 fetch 2 ,mem_rxbuf + 8 
+0x5dae 017971 store 1 ,mem_sniff_timeout 
+0x5daf 017972 isub temp ,null 
+0x5db0 017973 nbranch set_big_value_to_attempt ,positive 
+0x5db1 017974 store 1 ,mem_sniff_attempt 
+:      017975 set_big_value_to_attempt:
+0x5db2 017977 jam lmp_accepted ,mem_lmo_opcode2 
+0x5db3 017978 jam lmp_sniff_req ,mem_lmi_opcode2 
+0x5db4 017979 rtn 
+:      017981 lmp_reject_sniff:
+0x5db5 017982 jam pdu_not_allowed ,mem_lmo_reason2 
+0x5db6 017983 branch reject_lmp_packet 
+:      017985 parse_lmp_start_encryption_req:
+0x5db7 017986 call accept_lmp_msg 
+0x5db8 017987 call lmp_copy_rand 
+0x5db9 017988 call function_e3 
+0x5dba 017989 branch start_encryption 
+:      017991 parse_lmp_stop_encryption_req:
+0x5dbb 017992 call accept_lmp_msg 
+0x5dbc 017993 branch stop_encryption 
+:      017996 parse_lmp_switch_req:
+0x5dbd 017997 fetch 4 ,mem_rxbuf + 1 
+0x5dbe 017998 lshift pdata ,pdata 
+0x5dbf 018000 branch parse_lmp_switch_accept ,master 
+0x5dc0 018001 fetcht 1 ,mem_link_key_exists 
+0x5dc1 018002 nbranch parse_lmp_switch_req_clear_mark ,blank 
+:      018003 parse_lmp_switch_req_not_accept:
+0x5dc2 018004 jam lmp_not_accepted ,mem_lmo_opcode2 
+0x5dc3 018005 jam lmp_switch_req ,mem_lmi_opcode2 
+0x5dc4 018006 jam pdu_not_allowed ,mem_lmo_reason2 
+0x5dc5 018007 rtn 
+:      018008 parse_lmp_switch_req_clear_mark:
+0x5dc6 018009 jam lmp_slot_offset ,mem_lmo_opcode2 
+0x5dc7 018010 jam 0 ,mem_conn_sm 
+0x5dc8 018011 branch role_switch_prepare 
+:      018013 parse_lmp_switch_accept:
+0x5dc9 018014 call role_switch_prepare 
+0x5dca 018015 set1 mark_reconn_recieve_switch ,mark 
+0x5dcb 018016 fetch 1 ,mem_connection_options 
+0x5dcc 018017 set0 connection_switch ,pdata 
+0x5dcd 018018 store 1 ,mem_connection_options 
+0x5dce 018019 branch accept_lmp_msg 
+:      018023 parse_lmp_temp_rand:
+0x5dcf 018024 rtn 
+:      018025 parse_lmp_temp_key:
+0x5dd0 018026 rtn 
+:      018027 parse_lmp_timing_accuracy_res:
+0x5dd1 018028 rtn 
+:      018030 parse_lmp_unit_key:
+0x5dd2 018032 rtn 
+:      018035 parse_lmp_unsniff_req:
+0x5dd3 018036 jam lmp_accepted ,mem_lmo_opcode2 
+0x5dd4 018037 jam lmp_unsniff_req ,mem_lmi_opcode2 
+0x5dd5 018038 jam bt_evt_remote_unsniff ,mem_fifo_temp 
+0x5dd6 018039 call ui_ipc_send_event 
+0x5dd7 018040 force 0 ,temp 
+0x5dd8 018041 call hci_send_mode_change 
+0x5dd9 018042 branch sniff_exit 
+:      018043 parse_lmp_use_semi_permanend_key:
+0x5dda 018044 rtn 
+:      018046 parse_lmp_encapsulated_header:
+0x5ddb 018047 fetch 1 ,mem_rxbuf + 1 
+0x5ddc 018048 bne encapsulated_major_type_p192 ,parse_lmp_encapsulated_header_reject 
+0x5ddd 018049 fetch 1 ,mem_rxbuf + 2 
+0x5dde 018050 bne encapsulated_minor_type_p192 ,parse_lmp_encapsulated_header_reject 
+0x5ddf 018051 fetch 1 ,mem_rxbuf + 3 
+0x5de0 018052 bne encapsulated_len_p192 ,parse_lmp_encapsulated_header_reject 
+0x5de1 018053 call check_localsm 
+0x5de2 018054 branch parse_lmp_encapsulated_header_master ,true 
+0x5de3 018055 jam sp_stat_key_recv ,mem_sp_state 
+:      018056 parse_lmp_encapsulated_header_master:
+0x5de4 018057 jam lmp_accepted ,mem_lmo_opcode2 
+0x5de5 018058 jam lmp_encapsulated_header ,mem_lmi_opcode2 
+0x5de6 018059 branch parse_rx_done 
+:      018061 parse_lmp_encapsulated_header_reject:
+0x5de7 018062 jam pdu_not_allowed ,mem_lmo_reason2 
+0x5de8 018063 branch reject_lmp_packet 
+:      018065 parse_lmp_accepted_encapsulated_header:
+0x5de9 018068 jam lmp_encapsulated_payload ,mem_lmo_opcode2 
+0x5dea 018070 rtn 
+:      018071 parse_lmp_accepted_simple_pairing_number:
+0x5deb 018072 call check_localsm 
+0x5dec 018073 rtn true 
+0x5ded 018074 jam sp_stat_confirm_recv ,mem_sp_state 
+0x5dee 018075 rtn 
+:      018077 parse_lmp_accepted_dhkey_check:
+0x5def 018079 call check_localsm 
+0x5df0 018080 ncall g_noninit ,true 
+0x5df1 018081 call g_init ,true 
+0x5df2 018082 call hci_send_user_confirmation_req 
+0x5df3 018083 call hci_send_ssp_complete 
+0x5df4 018084 call check_localsm 
+0x5df5 018085 rtn true 
+0x5df6 018086 jam sp_stat_link_key_calc ,mem_sp_state 
+0x5df7 018087 jam sp_flag_commit ,mem_sp_flag 
+0x5df8 018088 rtn 
+:      018090 parse_simple_pairing_confirm:
+0x5df9 018091 arg mem_sp_confirm_remote ,contw 
+0x5dfa 018092 fetch 8 ,mem_rxbuf + 1 
+0x5dfb 018093 istore 8 ,contw 
+0x5dfc 018094 fetch 8 ,mem_rxbuf + 9 
+0x5dfd 018095 istore 8 ,contw 
+0x5dfe 018096 branch master_set_mem_master_sp_flag 
+:      018098 parse_lmp_encapsulated_payload:
+0x5dff 018099 fetch 1 ,mem_master_sp_state 
+0x5e00 018100 beq sp_stat_random_send ,parse_encapsulated_payload_master 
+0x5e01 018101 fetch 1 ,mem_sp_state 
+0x5e02 018102 bne sp_stat_key_recv ,parse_lmp_encapsulated_payload_reject 
+:      018103 parse_encapsulated_payload_master:
+0x5e03 018104 fetch 1 ,mem_sp_remote_key_recv_count 
+0x5e04 018105 sub pdata ,0x20 ,contw 
+0x5e05 018106 nbranch parse_lmp_encapsulated_payload_reject ,positive 
+0x5e06 018107 arg mem_sp_pubkey_remote ,contw 
+0x5e07 018108 iadd contw ,contw 
+0x5e08 018109 fetch 8 ,mem_rxbuf + 1 
+0x5e09 018110 istore 8 ,contw 
+0x5e0a 018111 fetch 8 ,mem_rxbuf + 9 
+0x5e0b 018112 istore 8 ,contw 
+0x5e0c 018113 fetch 1 ,mem_sp_remote_key_recv_count 
+0x5e0d 018114 increase 16 ,pdata 
+0x5e0e 018115 store 1 ,mem_sp_remote_key_recv_count 
+0x5e0f 018116 bne encapsulated_len_p192 ,accept_lmp_msg 
+:      018117 parse_lmp_encapsulated_payload_completed:
+0x5e10 018118 call check_localsm 
+0x5e11 018119 branch accept_lmp_msg ,true 
+0x5e12 018120 jam sp_key_valid ,mem_sp_remote_key_invalid 
+0x5e13 018121 jam sp_stat_key_generate ,mem_sp_state 
+0x5e14 018122 jam sp_flag_commit ,mem_sp_flag 
+0x5e15 018123 branch accept_lmp_msg 
+:      018124 parse_lmp_encapsulated_payload_reject:
+0x5e16 018125 jam pdu_not_allowed ,mem_lmo_reason2 
+0x5e17 018126 branch reject_lmp_packet 
+:      018127 parse_lmp_accepted_encapsulated_payload:
+0x5e18 018128 fetch 1 ,mem_sp_local_key_send_count 
+0x5e19 018129 beq encapsulated_len_p192 ,parse_lmp_encapsulated_payload_all_accepted 
+0x5e1a 018130 jam lmp_encapsulated_payload ,mem_lmo_opcode2 
+0x5e1b 018131 branch parse_rx_done 
+:      018132 parse_lmp_encapsulated_payload_all_accepted:
+0x5e1c 018133 call check_localsm 
+0x5e1d 018134 branch parse_lmp_encapsulated_payload_all_accepted_master ,true 
+0x5e1e 018135 jam sp_flag_commit ,mem_sp_flag 
+0x5e1f 018136 jam sp_stat_commit_calc ,mem_sp_state 
+0x5e20 018137 branch parse_rx_done 
+:      018138 parse_lmp_encapsulated_payload_all_accepted_master:
+0x5e21 018140 branch parse_rx_done 
+:      018142 parse_lmp_simple_pairing_number:
+0x5e22 018143 fetch 1 ,mem_master_sp_state 
+0x5e23 018144 beq sp_stat_random_send ,parse_lmp_simple_pairing_number_master 
+0x5e24 018145 fetch 1 ,mem_sp_state 
+0x5e25 018146 bne sp_stat_random_recv ,parse_lmp_simple_pairing_number_reject 
+:      018147 parse_lmp_simple_pairing_number_master:
+0x5e26 018148 arg mem_sp_random_remote ,contw 
+0x5e27 018149 fetch 8 ,mem_rxbuf + 1 
+0x5e28 018150 istore 8 ,contw 
+0x5e29 018151 fetch 8 ,mem_rxbuf + 9 
+0x5e2a 018152 istore 8 ,contw 
+0x5e2b 018153 call check_localsm 
+0x5e2c 018154 branch parse_lmp_simple_pairing_number_master0 ,true 
+0x5e2d 018155 jam sp_stat_random_send ,mem_sp_state 
+0x5e2e 018156 jam sp_flag_commit ,mem_sp_flag 
+0x5e2f 018157 branch accept_lmp_msg 
+:      018158 parse_lmp_simple_pairing_number_master0:
+0x5e30 018159 jam sp_stat_commit_calc ,mem_master_sp_state 
+0x5e31 018160 branch master_set_mem_master_sp_flag 
+:      018163 parse_lmp_simple_pairing_number_reject:
+0x5e32 018164 jam pdu_not_allowed ,mem_lmo_reason2 
+0x5e33 018165 branch reject_lmp_packet 
+:      018167 parse_dhkey_check:
+0x5e34 018168 fetch 1 ,mem_master_sp_state 
+0x5e35 018169 beq sp_stat_confirm_send ,parse_dhkey_check_master 
+0x5e36 018170 fetch 1 ,mem_sp_state 
+0x5e37 018171 bne sp_stat_confirm_recv ,parse_lmp_dhkey_check_reject 
+:      018172 parse_dhkey_check_master:
+0x5e38 018173 arg mem_sp_check_result ,contw 
+0x5e39 018174 fetch 8 ,mem_rxbuf + 1 
+0x5e3a 018175 istore 8 ,contw 
+0x5e3b 018176 fetch 8 ,mem_rxbuf + 9 
+0x5e3c 018177 istore 8 ,contw 
+0x5e3d 018178 call check_localsm 
+0x5e3e 018179 branch parse_dhkey_check_master0 ,true 
+0x5e3f 018180 jam sp_stat_confirm_check ,mem_sp_state 
+0x5e40 018181 jam sp_flag_commit ,mem_sp_flag 
+0x5e41 018182 branch parse_rx_done 
+:      018183 parse_dhkey_check_master0:
+0x5e42 018184 jam sp_stat_confirm_check ,mem_master_sp_state 
+0x5e43 018185 jam sp_flag_commit ,mem_master_sp_flag 
+0x5e44 018186 branch parse_rx_done 
+:      018187 parse_lmp_dhkey_check_reject:
+0x5e45 018188 jam pdu_not_allowed ,mem_lmo_reason2 
+0x5e46 018189 branch reject_lmp_packet 
+:      018191 parse_lmp_clkoffset_res:
+0x5e47 018192 branch parse_rx_done 
+:      018194 parse_lmp_encryption_mode_req:
+0x5e48 018195 fetch 1 ,mem_connection_options 
+0x5e49 018196 set0 connection_encrypt 
+0x5e4a 018197 store 1 ,mem_connection_options 
+0x5e4b 018198 call accept_lmp_msg 
+0x5e4c 018199 nrtn master 
+0x5e4d 018200 fetch 1 ,mem_rxbuf + 1 
+0x5e4e 018201 fetcht 1 ,mem_op 
+0x5e4f 018202 setflag blank ,op_stop_enc ,temp 
+0x5e50 018203 nsetflag blank ,op_start_enc ,temp 
+0x5e51 018204 storet 1 ,mem_op 
+0x5e52 018205 rtn 
+:      018207 parse_lmp_features_res:
+0x5e53 018208 fetcht 8 ,mem_rxbuf + 1 
+0x5e54 018209 fetch 1 ,mem_hci_cmd 
+0x5e55 018210 bne hci_cmd_wait_remote_feature ,parse_lmp_features_res_not_hci 
+0x5e56 018211 jam 0 ,mem_hci_cmd 
+0x5e57 018212 call hci_send_remote_features 
+:      018213 parse_lmp_features_res_not_hci:
+0x5e58 018214 fetch 1 ,mem_conn_sm 
+0x5e59 018215 rtnne conn_sm_wait_features_res 
+0x5e5a 018216 fetch 1 ,mem_device_option 
+0x5e5b 018217 beq dvc_op_hci ,parse_lmp_feature_ext_sm 
+0x5e5c 018218 fetch 1 ,mem_connection_options 
+0x5e5d 018219 bbit0 connection_feature_ext ,parse_lmp_send_conn 
+:      018220 parse_lmp_feature_ext_sm:
+0x5e5e 018221 jam conn_sm_send_features_ext ,mem_conn_sm 
+0x5e5f 018222 rtn 
+:      018223 parse_lmp_send_conn:
+0x5e60 018224 jam conn_sm_send_conn_req ,mem_conn_sm 
+0x5e61 018225 rtn 
+:      018226 parse_lmp_test_activate:
+0x5e62 018227 fetch 1 ,mem_debug_config 
+0x5e63 018228 store 1 ,mem_test_mode_old_debug_config 
+0x5e64 018229 jam lmp_accepted ,mem_lmo_opcode2 
+0x5e65 018230 jam lmp_test_activate ,mem_lmi_opcode2 
+0x5e66 018231 rtn 
+:      018232 parse_lmp_test_control:
+0x5e67 018235 jam lmp_accepted ,mem_lmo_opcode2 
+0x5e68 018236 jam lmp_test_control ,mem_lmi_opcode2 
+0x5e69 018237 force 9 ,loopcnt 
+0x5e6a 018238 arg mem_rxbuf + 1 ,contr 
+0x5e6b 018239 arg mem_temp_payload ,contw 
+:      018240 parse_lmp_test_xor:
+0x5e6c 018241 ifetch 1 ,contr 
+0x5e6d 018242 xor_into 0x55 ,pdata 
+0x5e6e 018243 istore 1 ,contw 
+0x5e6f 018244 loop parse_lmp_test_xor 
+0x5e70 018245 fetch 1 ,test_mode_scenario 
+0x5e71 018246 fetcht 1 ,mem_tester_emulate 
+0x5e72 018247 set0 tester_no_whitening ,temp 
+0x5e73 018248 set0 tester_pattern_test ,temp 
+0x5e74 018249 beq exit_test_mode ,parse_lmp_test_control_exit 
+0x5e75 018250 beq pause_test_mode ,parse_lmp_test_control_pause 
+0x5e76 018251 beq closed_loop_back_acl ,parse_lmp_test_control_loopback 
+0x5e77 018252 beq acl_without_whitening ,parse_lmp_test_control_loopback_nowhite 
+0x5e78 018253 beq closed_loop_back_sco ,parse_lmp_test_control_loopback 
+0x5e79 018254 beq sco_without_whitening ,parse_lmp_test_control_loopback_nowhite 
+0x5e7a 018255 beq zero_pattern ,parse_lmp_test_control_pattern 
+0x5e7b 018256 beq one_pattern ,parse_lmp_test_control_pattern 
+0x5e7c 018257 beq alt_pattern ,parse_lmp_test_control_pattern 
+0x5e7d 018258 beq alt2_pattern ,parse_lmp_test_control_pattern 
+0x5e7e 018259 beq pseudorandom ,parse_lmp_test_control_pattern 
+0x5e7f 018260 rtn 
+:      018261 parse_lmp_test_control_exit:
+0x5e80 018263 fetch 1 ,mem_tester_emulate 
+0x5e81 018264 set1 tester_exit ,pdata 
+0x5e82 018265 set1 tester_change ,pdata 
+0x5e83 018266 store 1 ,mem_tester_emulate 
+0x5e84 018267 rtn 
+:      018268 parse_lmp_test_control_pattern:
+0x5e85 018269 set1 tester_pattern_test ,temp 
+0x5e86 018270 jam 5 ,mem_lch_code 
+0x5e87 018271 fetch 2 ,test_mode_data_length 
+0x5e88 018272 iforce loopcnt 
+0x5e89 018273 store 2 ,mem_len 
+0x5e8a 018274 arg mem_rxbuf ,contw 
+0x5e8b 018275 call pn9 
+:      018276 parse_lmp_test_control_loopback_nowhite:
+0x5e8c 018277 set1 tester_no_whitening ,temp 
+:      018278 parse_lmp_test_control_loopback:
+0x5e8d 018279 set1 tester_change ,temp 
+0x5e8e 018280 force 0 ,pdata 
+0x5e8f 018281 store 1 ,mem_slave_rcvcnt 
+0x5e90 018282 store 2 ,mem_tst_pktcnt_crc 
+0x5e91 018283 store 2 ,mem_tst_pktcnt_dmh 
+0x5e92 018284 store 2 ,mem_tst_pktcnt_hec 
+0x5e93 018285 store 2 ,mem_tst_pktcnt_sync 
+0x5e94 018286 fetch 1 ,test_mode_hopping_mode 
+0x5e95 018287 compare fixed_freq ,pdata ,0xff 
+0x5e96 018288 setflag true ,tester_fixed_freq ,temp 
+0x5e97 018289 storet 1 ,mem_tester_emulate 
+0x5e98 018290 rtn 
+:      018292 parse_lmp_test_control_pause:
+0x5e99 018293 set0 mark_testmode ,mark 
+0x5e9a 018294 jam 0 ,mem_tester_emulate 
+0x5e9b 018295 fetch 1 ,mem_debug_config 
+0x5e9c 018296 set0 debug_tx_pattern ,pdata 
+0x5e9d 018297 store 1 ,mem_debug_config 
+0x5e9e 018298 rtn 
+:      018300 check_test_cond:
+0x5e9f 018301 fetch 1 ,mem_tester_emulate 
+0x5ea0 018302 rtnbit0 tester_change 
+0x5ea1 018303 fetch 1 ,mem_tester_cnt 
+0x5ea2 018304 increase 1 ,pdata 
+0x5ea3 018305 store 1 ,mem_tester_cnt 
+0x5ea4 018306 rtnne 5 
+0x5ea5 018307 jam 0 ,mem_tester_cnt 
+0x5ea6 018308 fetch 1 ,mem_tester_emulate 
+0x5ea7 018309 set0 tester_change ,pdata 
+0x5ea8 018310 store 1 ,mem_tester_emulate 
+0x5ea9 018311 bbit1 tester_exit ,check_test_exit 
+0x5eaa 018312 isolate1 tester_no_whitening ,pdata 
+0x5eab 018313 call test_no_white ,true 
+0x5eac 018314 ncall test_enable_white ,true 
+0x5ead 018315 fetch 1 ,test_mode_packet_type 
+0x5eae 018316 compare 0x20 ,pdata ,0x30 
+0x5eaf 018317 fetch 1 ,mem_state_map 
+0x5eb0 018318 setflag true ,smap_edr ,pdata 
+0x5eb1 018319 store 1 ,mem_state_map 
+0x5eb2 018320 fetch 1 ,mem_tester_emulate 
+0x5eb3 018321 fetcht 1 ,mem_debug_config 
+0x5eb4 018322 isolate1 tester_pattern_test ,pdata 
+0x5eb5 018323 setflag true ,debug_tx_pattern ,temp 
+0x5eb6 018324 isolate1 tester_fixed_freq ,pdata 
+0x5eb7 018325 setflag true ,debug_tx_fixed_freq ,temp 
+0x5eb8 018326 setflag true ,debug_rx_fixed_freq ,temp 
+0x5eb9 018327 storet 1 ,mem_debug_config 
+0x5eba 018328 fetch 1 ,test_mode_tx_freq 
+0x5ebb 018329 store 1 ,mem_tx_fixed_freq 
+0x5ebc 018330 fetch 1 ,test_mode_rx_freq 
+0x5ebd 018331 store 1 ,mem_rx_fixed_freq 
+0x5ebe 018332 set1 mark_testmode ,mark 
+0x5ebf 018333 rtn 
+:      018335 check_test_exit:
+0x5ec0 018336 set0 mark_testmode ,mark 
+0x5ec1 018337 jam 0 ,mem_tester_emulate 
+0x5ec2 018338 fetch 1 ,mem_test_mode_old_debug_config 
+0x5ec3 018339 store 1 ,mem_debug_config 
+0x5ec4 018340 hfetch 1 ,core_config 
+0x5ec5 018341 and_into 0xfb ,pdata 
+0x5ec6 018342 hstore 1 ,core_config 
+0x5ec7 018343 rtn 
+:      018346 lmp_copy_rand:
+0x5ec8 018347 arg mem_rxbuf + 1 ,contr 
+0x5ec9 018348 arg mem_random_number ,contw 
+0x5eca 018349 branch memcpy16 
+:      018351 lmp_generate_key:
+0x5ecb 018352 jam lmp_comb_key ,mem_lmo_opcode2 
+0x5ecc 018353 rtn 
+:      018355 lmp_start_encryption:
+0x5ecd 018356 nrtn master 
+0x5ece 018357 jam lmp_start_encryption_req ,mem_lmo_opcode2 
+0x5ecf 018358 rtn 
+:      018360 lmp_accept_inrand:
+0x5ed0 018361 arg mem_lap ,rega 
+0x5ed1 018362 call generate_kinit 
+0x5ed2 018363 jam lmp_accepted ,mem_lmo_opcode2 
+0x5ed3 018364 jam lmp_in_rand ,mem_lmi_opcode2 
+0x5ed4 018365 rtn 
+:      018367 lmp_disconnect:
+0x5ed5 018368 jam 10 ,mem_conn_timer 
+0x5ed6 018369 jam lmp_detach ,mem_lmo_opcode2 
+0x5ed7 018370 jam local_host ,mem_disconn_reason_send 
+0x5ed8 018371 rtn 
+:      018377 send_lmp:
+0x5ed9 018378 set1 mark_ext_patch ,mark 
+0x5eda 018379 bpatch patch3c_3 ,mem_patch3c 
+0x5edb 018380 disable user 
+0x5edc 018381 call lmo_fifo_process 
+0x5edd 018382 fetch 1 ,mem_lmp_to_send 
+0x5ede 018383 rtn blank 
+0x5edf 018388 bbit1 7 ,send_lmp_escape 
+0x5ee0 018389 beq lmp_name_req ,send_lmp_name_req 
+0x5ee1 018390 beq lmp_name_res ,send_lmp_name_res 
+0x5ee2 018391 beq lmp_accepted ,send_lmp_accepted 
+0x5ee3 018392 beq lmp_not_accepted ,send_lmp_not_accepted 
+0x5ee4 018393 beq lmp_features_req ,send_lmp_features_req 
+0x5ee5 018394 beq lmp_features_res ,send_lmp_features_res 
+0x5ee6 018395 beq lmp_timing_accuracy_res ,send_lmp_timing_accuracy_res 
+0x5ee7 018396 beq lmp_version_req ,send_lmp_version_req 
+0x5ee8 018397 beq lmp_version_res ,send_lmp_version_res 
+0x5ee9 018398 beq lmp_setup_complete ,send_lmp_setup_complete 
+0x5eea 018399 beq lmp_supervision_timeout ,send_lmp_superto 
+0x5eeb 018400 beq lmp_host_connection_req ,send_lmp_no_payload 
+0x5eec 018401 beq lmp_in_rand ,send_lmp_inrand 
+0x5eed 018402 beq lmp_comb_key ,send_lmp_comb_key 
+0x5eee 018403 beq lmp_au_rand ,send_lmp_aurand 
+0x5eef 018404 beq lmp_sres ,send_lmp_sres 
+0x5ef0 018405 beq lmp_encryption_mode_req ,send_lmp_encryption_mode_req 
+0x5ef1 018406 beq lmp_encryption_key_size_req ,send_lmp_encryption_key_size_req 
+0x5ef2 018407 beq lmp_start_encryption_req ,send_lmp_start_encryption 
+0x5ef3 018408 beq lmp_detach ,send_lmp_detach 
+0x5ef4 018409 beq lmp_quality_of_service_req ,send_lmp_quality_of_service_req 
+0x5ef5 018410 beq lmp_unit_key ,send_lmp_unit_key 
+0x5ef6 018412 beq lmp_sco_link_req ,send_lmp_sco_link_req 
+0x5ef7 018413 beq lmp_clkoffset_res ,send_lmp_clkoffset_res 
+0x5ef8 018414 beq lmp_max_power ,send_lmp_nopayload_reply 
+0x5ef9 018415 beq lmp_max_slot ,send_lmp_max_slot 
+0x5efa 018416 beq lmp_max_slot_req ,send_lmp_max_slot_req 
+0x5efb 018417 beq lmp_min_power ,send_lmp_nopayload_reply 
+0x5efc 018418 beq lmp_remove_sco_link_req ,send_lmp_remove_sco_link_req 
+0x5efd 018419 beq lmp_slot_offset ,send_lmp_slot_offset 
+0x5efe 018420 beq lmp_switch_req ,send_lmp_switch_req 
+0x5eff 018421 beq lmp_sniff_req ,send_lmp_sniff_req 
+0x5f00 018422 beq lmp_stop_encryption_req ,send_lmp_stop_encryption_req 
+0x5f01 018423 beq lmp_timing_accuracy_req ,send_lmp_timing_accuracy_req 
+0x5f02 018424 beq lmp_unsniff_req ,send_lmp_unsniff_req 
+0x5f03 018425 beq lmp_encapsulated_header ,send_lmp_encapsulated_header 
+0x5f04 018426 beq lmp_encapsulated_payload ,send_lmp_encapsulated_payload 
+0x5f05 018427 beq lmp_simple_pairing_confirm ,send_lmp_simple_pairing_comfirm 
+0x5f06 018428 beq lmp_simple_pairing_number ,send_lmp_simple_pairing_number 
+0x5f07 018429 beq lmp_dhkey_check ,send_lmp_dhkey_check 
+0x5f08 018430 beq lmp_auto_rate ,send_lmp_auto_rate 
+0x5f09 018431 beq lmp_enc_key_size_mask_res ,send_lmp_enc_key_size_mask_res 
+0x5f0a 018433 beq lmp_clkoffset_req ,send_lmp_clkoffset_req 
+0x5f0b 018434 beq lmp_quality_of_service ,send_lmp_quality_of_service 
+0x5f0c 018435 beq lmp_test_activate ,send_lmp_test_activate 
+0x5f0d 018436 beq lmp_test_control ,send_lmp_test_control 
+:      018437 send_lmp_error:
+0x5f0e 018438 branch assert 
+0x5f0f 018439 rtn 
+:      018440 send_lmp_escape:
+0x5f10 018441 beq lmp_ext_esco_link_req ,send_lmpext_esco_req 
+0x5f11 018442 beq lmp_ext_remove_esco_req ,send_lmpext_remove_esco 
+0x5f12 018443 beq lmp_ext_accepted ,send_lmpext_accepted 
+0x5f13 018444 beq lmp_ext_features_res ,send_lmpext_features_res 
+0x5f14 018445 beq lmp_not_accepted_ext ,send_lmpext_not_accepted 
+0x5f15 018446 beq lmp_ext_features_req ,send_lmpext_features_req 
+0x5f16 018447 beq lmp_packet_type_table_req ,send_lmpext_packet_type_table_req 
+0x5f17 018448 beq lmp_pause_encryption_req ,send_lmpext_pause_encryption_req 
+0x5f18 018449 beq lmp_io_cap_req ,send_lmp_io_cap_req 
+0x5f19 018450 beq lmp_io_cap_res ,send_lmpext_io_cap_res 
+0x5f1a 018451 beq lmp_sniff_subrating_req ,send_lmpext_sniff_subrating_req 
+0x5f1b 018452 beq lmp_sniff_subrating_res ,send_lmpext_sniff_subrating_res 
+0x5f1c 018453 branch assert 
+:      018459 send_lmp_accepted:
+0x5f1d 018460 force 2 ,pdata 
+0x5f1e 018461 call msg_send_lmp 
+0x5f1f 018462 fetch 1 ,mem_lmi_opcode 
+0x5f20 018463 istore 1 ,contw 
+0x5f21 018464 beq lmp_sco_link_req ,send_lmp_accptsco 
+0x5f22 018465 call send_lmp_follow 
+0x5f23 018466 fetch 1 ,mem_lmi_opcode 
+0x5f24 018467 beq lmp_in_rand ,send_lmp_accepted_inrand 
+0x5f25 018468 beq lmp_encryption_mode_req ,send_lmp_accepted_enc_mode 
+0x5f26 018469 beq lmp_encryption_key_size_req ,send_lmp_accepted_enc_key 
+0x5f27 018470 beq lmp_sniff_req ,send_lmp_accept_sniff_req 
+0x5f28 018471 beq lmp_host_connection_req ,send_lmp_accepted_connection 
+0x5f29 018472 beq lmp_remove_sco_link_req ,send_lmp_accept_remove_sco_link_req 
+0x5f2a 018473 beq lmp_dhkey_check ,send_lmp_accept_dhkey_check 
+0x5f2b 018474 beq lmp_start_encryption_req ,send_create_conn_start_l2cap_timer_sm 
+0x5f2c 018475 rtn 
+:      018477 send_create_conn_start_l2cap_timer_sm:
+0x5f2d 018478 fetch 1 ,mem_conn_sm 
+0x5f2e 018479 rtn blank 
+0x5f2f 018480 jam conn_sm_wait_done ,mem_conn_sm 
+0x5f30 018481 setarg timer_enpt_waite 
+0x5f31 018482 arg enpt_delay_timer ,queue 
+0x5f32 018483 branch timer_init 
+:      018485 send_lmp_accept_sniff_req:
+0x5f33 018486 force 0x02 ,temp 
+0x5f34 018487 call hci_send_mode_change 
+0x5f35 018488 branch sniff_init 
+:      018489 send_lmp_not_accepted:
+0x5f36 018490 force 3 ,pdata 
+0x5f37 018491 call msg_send_lmp 
+0x5f38 018492 fetch 1 ,mem_lmi_opcode 
+0x5f39 018493 beq lmp_au_rand ,send_not_accept_aurand 
+0x5f3a 018494 istore 1 ,contw 
+0x5f3b 018495 fetch 1 ,mem_lmo_reason 
+0x5f3c 018496 istore 1 ,contw 
+0x5f3d 018497 branch send_lmp_follow 
+:      018499 send_not_accept_aurand:
+0x5f3e 018500 istore 1 ,contw 
+0x5f3f 018501 fetch 1 ,mem_lmo_reason 
+0x5f40 018502 istore 1 ,contw 
+0x5f41 018503 arg mem_sres_tid ,temp 
+0x5f42 018504 branch special_tid_store 
+:      018506 send_lmpext_accepted:
+0x5f43 018507 force 4 ,queue 
+0x5f44 018508 call send_lmpext 
+0x5f45 018509 setarg lmp_escape 
+0x5f46 018510 istore 1 ,contw 
+0x5f47 018511 fetch 1 ,mem_lmi_opcode 
+0x5f48 018512 set0 7 ,pdata 
+0x5f49 018513 istore 1 ,contw 
+0x5f4a 018514 fetch 1 ,mem_lmi_opcode 
+0x5f4b 018515 beq lmp_ext_esco_link_req ,send_lmp_accptsco 
+0x5f4c 018516 call send_lmp_follow 
+0x5f4d 018517 fetch 1 ,mem_lmi_opcode 
+0x5f4e 018518 beq lmp_ext_remove_esco_req ,send_lmp_accept_remove_sco_link_req 
+0x5f4f 018519 rtn 
+:      018521 send_lmpext_not_accepted:
+0x5f50 018522 force 5 ,queue 
+0x5f51 018523 call send_lmpext 
+0x5f52 018524 setarg lmp_escape 
+0x5f53 018525 istore 1 ,contw 
+0x5f54 018526 fetch 1 ,mem_lmi_opcode 
+0x5f55 018527 set0 7 ,pdata 
+0x5f56 018528 istore 1 ,contw 
+0x5f57 018529 fetch 1 ,mem_lmo_reason 
+0x5f58 018530 istore 1 ,contw 
+0x5f59 018531 branch send_lmp_follow 
+:      018533 send_lmp_accptsco:
+0x5f5a 018534 call play_sco 
+0x5f5b 018535 arg mem_accptsco_tid ,temp 
+0x5f5c 018536 branch special_tid_store 
+:      018539 send_lmp_accepted_inrand:
+0x5f5d 018540 call clear_linkkey 
+0x5f5e 018541 call tid_check 
+0x5f5f 018542 rtn true 
+0x5f60 018543 branch lmp_generate_key 
+:      018545 send_lmp_accepted_enc_mode:
+0x5f61 018546 fetch 1 ,mem_op 
+0x5f62 018547 bbit1 op_start_enc ,send_lmp_accepted_enc_start 
+0x5f63 018548 rtnbit0 op_stop_enc 
+0x5f64 018549 jam lmp_stop_encryption_req ,mem_lmo_opcode2 
+0x5f65 018550 set0 op_stop_enc ,pdata 
+0x5f66 018551 call tid_reply 
+0x5f67 018552 branch send_lmp_accepted_enc_exit 
+:      018553 send_lmp_accepted_enc_start:
+0x5f68 018554 jam lmp_encryption_key_size_req ,mem_lmo_opcode2 
+0x5f69 018555 set0 op_start_enc ,pdata 
+:      018556 send_lmp_accepted_enc_exit:
+0x5f6a 018557 store 1 ,mem_op 
+0x5f6b 018558 rtn 
+:      018560 send_lmp_accepted_enc_key:
+0x5f6c 018561 call check_localsm 
+0x5f6d 018562 branch lmp_start_encryption ,true 
+0x5f6e 018563 rtn 
+:      018565 send_lmp_accepted_connection:
+0x5f6f 018567 fetch 1 ,mem_lmp_conn_state 
+0x5f70 018568 set1 received_conn_req ,pdata 
+0x5f71 018569 store 1 ,mem_lmp_conn_state 
+0x5f72 018570 jam bt_evt_bb_connected ,mem_fifo_temp 
+0x5f73 018571 branch ui_ipc_send_event 
+:      018574 send_lmp_accept_remove_sco_link_req:
+0x5f74 018575 rtn 
+:      018577 send_lmp_accept_dhkey_check:
+0x5f75 018578 rtn 
+:      018582 send_lmpext_features_res:
+0x5f76 018583 force 12 ,queue 
+0x5f77 018584 call send_lmpext 
+0x5f78 018585 setarg 0x01 
+0x5f79 018586 istore 1 ,contw 
+0x5f7a 018587 fetch 2 ,mem_lmpext_ssp_enable 
+0x5f7b 018588 istore 2 ,contw 
+0x5f7c 018589 setarg 0 
+0x5f7d 018590 istore 3 ,contw 
+0x5f7e 018591 setarg 0x00 
+0x5f7f 018592 istore 4 ,contw 
+0x5f80 018593 branch send_lmp_reply 
+:      018594 send_lmpext_io_cap_res:
+0x5f81 018596 force 5 ,queue 
+0x5f82 018597 call send_lmpext 
+0x5f83 018598 fetch 1 ,mem_device_option 
+0x5f84 018599 beq dvc_op_hci ,send_lmpext_io_cap_res_hci 
+0x5f85 018600 setarg 0x040003 
+0x5f86 018601 istore 3 ,contw 
+0x5f87 018602 store 3 ,mem_sp_iocap_local 
+0x5f88 018603 branch send_lmp_reply 
+:      018604 send_lmpext_io_cap_res_hci:
+0x5f89 018605 fetch 3 ,mem_sp_iocap_local 
+0x5f8a 018606 istore 3 ,contw 
+0x5f8b 018607 branch send_lmp_reply 
+:      018609 send_lmp_io_cap_req:
+0x5f8c 018610 force 5 ,queue 
+0x5f8d 018611 call send_lmpext 
+0x5f8e 018612 fetch 3 ,mem_sp_iocap_local 
+0x5f8f 018613 istore 3 ,contw 
+0x5f90 018614 branch send_lmp_request 
+:      018617 send_lmpext_sniff_subrating_req:
+0x5f91 018619 rtn 
+:      018620 send_lmpext_sniff_subrating_res:
+0x5f92 018621 force 9 ,queue 
+0x5f93 018622 call send_lmpext 
+0x5f94 018623 fetch 1 ,mem_subsniff_rate 
+0x5f95 018624 istore 1 ,contw 
+0x5f96 018625 fetch 2 ,mem_subsniff_tcmax 
+0x5f97 018626 istore 2 ,contw 
+0x5f98 018627 fetch 4 ,mem_subsniff_instant 
+0x5f99 018628 istore 4 ,contw 
+0x5f9a 018629 branch send_lmp_reply 
+:      018631 send_lmp_name_res:
+0x5f9b 018632 force 17 ,pdata 
+0x5f9c 018633 call msg_send_lmp 
+0x5f9d 018634 fetch 1 ,mem_lmi_opcode 
+0x5f9e 018635 copy pdata ,temp 
+0x5f9f 018636 beq 0x00 ,send_lmp_name_res_offset_ok 
+0x5fa0 018637 beq 0x0e ,send_lmp_name_res_offset_ok 
+0x5fa1 018638 beq 0x1c ,send_lmp_name_res_offset_ok 
+0x5fa2 018639 rtn 
+:      018640 send_lmp_name_res_offset_ok:
+0x5fa3 018641 istore 1 ,contw 
+0x5fa4 018642 fetch 1 ,mem_local_name_length 
+0x5fa5 018643 istore 1 ,contw 
+0x5fa6 018644 copy pdata ,loopcnt 
+0x5fa7 018645 setarg mem_local_name 
+0x5fa8 018646 iadd temp ,contr 
+0x5fa9 018647 call memcpy 
+0x5faa 018648 branch send_lmp_reply 
+:      018651 send_lmp_timing_accuracy_res:
+0x5fab 018652 force 3 ,pdata 
+0x5fac 018653 call msg_send_lmp 
+0x5fad 018654 setarg 0x0114 
+0x5fae 018655 istore 2 ,contw 
+0x5faf 018656 branch send_lmp_reply 
+:      018658 send_lmp_clkoffset_res:
+0x5fb0 018660 force 3 ,pdata 
+0x5fb1 018661 call msg_send_lmp 
+0x5fb2 018662 fetch 4 ,mem_clke_bt 
+0x5fb3 018663 isub clkn_bt ,pdata 
+0x5fb4 018664 branch send_lmp_clkoffset_res_master ,master 
+0x5fb5 018665 sub pdata ,0 ,pdata 
+:      018666 send_lmp_clkoffset_res_master:
+0x5fb6 018668 rshift2 pdata ,pdata 
+0x5fb7 018669 set0 15 ,pdata 
+0x5fb8 018670 istore 2 ,contw 
+0x5fb9 018671 branch send_lmp_reply 
+:      018673 send_lmp_version_res:
+0x5fba 018674 force 6 ,pdata 
+0x5fbb 018675 call msg_send_lmp 
+0x5fbc 018676 fetch 5 ,mem_lmp_version 
+0x5fbd 018677 istore 5 ,contw 
+0x5fbe 018678 branch send_lmp_reply 
+:      018680 send_lmp_features_res:
+0x5fbf 018681 force 9 ,pdata 
+0x5fc0 018682 call msg_send_lmp 
+0x5fc1 018683 fetch 8 ,mem_features 
+0x5fc2 018684 istore 8 ,contw 
+0x5fc3 018685 branch send_lmp_reply 
+:      018691 send_lmpext_esco_req:
+0x5fc4 018692 branch send_lmpext_esco_req_master ,master 
+0x5fc5 018695 branch send_lmpext_esco_req_slave 
+:      018696 send_lmpext_esco_req_master:
+0x5fc6 018697 jam 0x07 ,mem_esco_addr 
+:      018698 send_lmpext_esco_req_slave:
+0x5fc7 018699 jam 0 ,mem_esco_desco 
+0x5fc8 018700 force 16 ,queue 
+0x5fc9 018701 call send_lmpext 
+0x5fca 018702 fetch 1 ,mem_sco_handle 
+0x5fcb 018703 istore 1 ,contw 
+0x5fcc 018704 fetch 1 ,mem_esco_addr 
+0x5fcd 018705 istore 1 ,contw 
+0x5fce 018706 setarg 0 
+0x5fcf 018707 istore 1 ,contw 
+0x5fd0 018708 fetch 1 ,mem_esco_desco 
+0x5fd1 018709 istore 1 ,contw 
+0x5fd2 018710 setarg 6 
+0x5fd3 018711 istore 1 ,contw 
+0x5fd4 018712 setarg 2 
+0x5fd5 018713 istore 1 ,contw 
+0x5fd6 018714 setarg 7 
+0x5fd7 018715 istore 1 ,contw 
+0x5fd8 018716 istore 1 ,contw 
+0x5fd9 018717 setarg 30 
+0x5fda 018718 istore 2 ,contw 
+0x5fdb 018719 istore 2 ,contw 
+0x5fdc 018720 fetch 1 ,mem_air_mode 
+0x5fdd 018721 istore 1 ,contw 
+0x5fde 018722 fetch 1 ,mem_neogotiation_state 
+0x5fdf 018723 istore 1 ,contw 
+0x5fe0 018724 nbranch send_lmp_reply ,blank 
+0x5fe1 018725 branch send_lmp_reply ,master 
+0x5fe2 018726 branch send_lmp_request 
+:      018728 send_lmpext_remove_esco:
+0x5fe3 018729 force 4 ,queue 
+0x5fe4 018730 call send_lmpext 
+0x5fe5 018731 fetch 1 ,mem_sco_handle 
+0x5fe6 018732 istore 1 ,contw 
+0x5fe7 018733 fetch 1 ,mem_disconn_reason_send 
+0x5fe8 018734 istore 1 ,contw 
+0x5fe9 018735 fetch 1 ,mem_esco_saved_arq 
+0x5fea 018736 store 1 ,mem_arq 
+0x5feb 018737 branch send_lmp_request 
+:      018740 send_lmpext_features_req:
+0x5fec 018741 force 12 ,queue 
+0x5fed 018742 call send_lmpext 
+0x5fee 018743 setarg 0x01 
+0x5fef 018744 istore 1 ,contw 
+0x5ff0 018745 fetch 2 ,mem_lmpext_ssp_enable 
+0x5ff1 018746 istore 2 ,contw 
+0x5ff2 018747 setarg 0 
+0x5ff3 018748 istore 3 ,contw 
+0x5ff4 018749 setarg 0x00 
+0x5ff5 018750 istore 4 ,contw 
+0x5ff6 018751 branch send_lmp_request 
+:      018753 send_lmpext_packet_type_table_req:
+0x5ff7 018754 force 3 ,queue 
+0x5ff8 018755 call send_lmpext 
+0x5ff9 018756 fetch 1 ,mem_ptt 
+0x5ffa 018757 istore 1 ,contw 
+0x5ffb 018758 disable user 
+0x5ffc 018759 call send_lmp_request 
+0x5ffd 018760 nrtn user 
+0x5ffe 018761 nrtn master 
+0x5fff 018762 fetch 1 ,mem_afh_cfg 
+0x6000 018763 rtnbit0 afh_cfg_on 
+0x6001 018764 call afh_init 
+0x6002 018765 branch afh_open_all_channels 
+:      018768 ssp_enable:
+0x6003 018769 fetch 1 ,mem_features + 6 
+0x6004 018770 set1 param_featrue_ssp ,pdata 
+0x6005 018771 store 1 ,mem_features + 6 
+0x6006 018772 setarg param_lmpext_ssp_enable 
+0x6007 018773 store 2 ,mem_lmpext_ssp_enable 
+0x6008 018774 rtn 
+:      018776 ssp_disable:
+0x6009 018777 fetch 1 ,mem_features + 6 
+0x600a 018778 set0 param_featrue_ssp ,pdata 
+0x600b 018779 store 1 ,mem_features + 6 
+0x600c 018780 setarg 0 
+0x600d 018781 store 2 ,mem_lmpext_ssp_enable 
+0x600e 018782 rtn 
+:      018784 afh_init:
+0x600f 018785 jam 0x3 ,mem_afh_cfg 
+0x6010 018786 setarg 0 
+0x6011 018787 store 4 ,mem_afh_timer 
+0x6012 018788 arg mem_afh_map_lo ,contw 
+0x6013 018789 call afh_reset_map 
+0x6014 018790 arg mem_afh_map_new ,contw 
+0x6015 018791 call afh_reset_map 
+0x6016 018792 arg mem_afh_classify_channel_map ,contw 
+0x6017 018793 call afh_reset_map 
+0x6018 018794 branch afh_clear_error_counter 
+:      018795 afh_open_all_channels:
+0x6019 018796 arg mem_afh_map_new ,contw 
+0x601a 018797 call afh_reset_map 
+0x601b 018798 call afh_clear_error_counter 
+0x601c 018799 branch afh_set_send_flag 
+:      018802 afh_open_classify_map:
+0x601d 018803 fetch 5 ,mem_afh_classify_channel_map 
+0x601e 018804 store 5 ,mem_afh_map_new 
+0x601f 018805 ifetch 5 ,contr 
+0x6020 018806 istore 5 ,contw 
+0x6021 018807 call afh_clear_error_counter 
+0x6022 018808 branch afh_set_send_flag 
+:      018810 afh_reset_map:
+0x6023 018811 setarg 0xffffff 
+0x6024 018812 istore 3 ,contw 
+0x6025 018813 istore 3 ,contw 
+0x6026 018814 istore 3 ,contw 
+0x6027 018815 setarg 0x7f 
+0x6028 018816 istore 1 ,contw 
+0x6029 018817 rtn 
+:      018818 afh_clear_error_counter:
+0x602a 018819 setarg 0 
+0x602b 018820 store 2 ,mem_afh_error_total 
+0x602c 018821 rtn 
+:      018822 afh_set_send_flag:
+0x602d 018823 fetch 1 ,mem_afh_cfg 
+0x602e 018824 set1 send_lmp_set_afh ,pdata 
+0x602f 018825 store 1 ,mem_afh_cfg 
+0x6030 018826 rtn 
+:      018827 send_set_afh:
+0x6031 018828 nrtn master 
+0x6032 018829 force 16 ,pdata 
+0x6033 018830 call msg_send_lmp 
+0x6034 018831 deposit clkn_bt 
+0x6035 018832 arg 476 ,temp 
+0x6036 018833 iadd temp ,pdata 
+0x6037 018834 rshift pdata ,pdata 
+0x6038 018835 increase 1 ,pdata 
+0x6039 018836 set0 0 ,pdata 
+0x603a 018837 istore 4 ,contw 
+0x603b 018838 copy pdata ,temp 
+0x603c 018839 setarg 1 
+0x603d 018840 istore 1 ,contw 
+0x603e 018841 fetch 5 ,mem_afh_map_new 
+0x603f 018842 istore 5 ,contw 
+0x6040 018843 ifetch 5 ,contr 
+0x6041 018844 istore 5 ,contw 
+0x6042 018845 lshift temp ,temp 
+0x6043 018846 storet 4 ,mem_afh_instant 
+0x6044 018847 call send_lmp_request 
+0x6045 018848 fetch 1 ,mem_mode 
+0x6046 018849 set1 afh_change ,pdata 
+0x6047 018850 store 1 ,mem_mode 
+0x6048 018851 jam 1 ,mem_afh_new_mod 
+0x6049 018852 fetch 4 ,mem_afh_instant 
+0x604a 018853 arg timer_one_minute ,temp 
+0x604b 018854 iadd temp ,pdata 
+0x604c 018855 store 4 ,mem_afh_timer 
+0x604d 018856 fetch 1 ,mem_afh_cfg 
+0x604e 018857 rtnbit1 afh_cfg_master_sent_req 
+0x604f 018858 jam lmp_ext_chn_classification_req ,mem_lmo_opcode2 
+0x6050 018859 rtn 
+:      018862 send_lmpext_pause_encryption_req:
+0x6051 018863 force 2 ,queue 
+0x6052 018864 call send_lmpext 
+0x6053 018865 nbranch send_lmp_reply ,master 
+0x6054 018867 branch send_lmp_request 
+:      018871 send_lmp_detach:
+0x6055 018872 force 2 ,pdata 
+0x6056 018873 call msg_send_lmp 
+0x6057 018874 fetch 1 ,mem_disconn_reason_send 
+0x6058 018875 istore 1 ,contw 
+0x6059 018876 call send_lmp_request 
+:      018877 prepare_disconnect:
+0x605a 018878 fetch 1 ,mem_op 
+0x605b 018879 set1 op_disconn ,pdata 
+0x605c 018880 store 1 ,mem_op 
+0x605d 018881 jam 50 ,mem_conn_timer 
+0x605e 018882 rtn 
+:      018885 send_lmp_no_payload:
+0x605f 018886 force 1 ,pdata 
+0x6060 018887 call msg_send_lmp 
+0x6061 018888 branch send_lmp_request 
+:      018889 send_lmp_nopayload_reply:
+0x6062 018890 force 1 ,pdata 
+0x6063 018891 call msg_send_lmp 
+0x6064 018892 branch send_lmp_reply 
+:      018895 send_lmp_encryption_mode_req:
+0x6065 018896 force 2 ,pdata 
+0x6066 018897 call msg_send_lmp 
+0x6067 018898 fetch 1 ,mem_state_map 
+0x6068 018899 isolate0 smap_encryption ,pdata 
+0x6069 018900 setflag true ,0 ,pdata 
+0x606a 018901 and_into 1 ,pdata 
+0x606b 018902 istore 1 ,contw 
+0x606c 018903 branch send_lmp_request 
+:      018906 send_lmp_superto:
+0x606d 018907 force 3 ,pdata 
+0x606e 018908 call msg_send_lmp 
+0x606f 018909 fetch 2 ,mem_supervision_to 
+0x6070 018910 istore 2 ,contw 
+0x6071 018911 branch send_lmp_request 
+:      018913 send_lmp_name_req:
+0x6072 018914 jam 250 ,mem_conn_timer 
+0x6073 018915 force 2 ,pdata 
+0x6074 018916 call msg_send_lmp 
+0x6075 018917 fetch 1 ,mem_name_offset 
+0x6076 018918 istore 1 ,contw 
+0x6077 018919 branch send_lmp_request 
+:      018921 send_lmp_test_control:
+0x6078 018922 force 10 ,pdata 
+0x6079 018923 call msg_send_lmp 
+0x607a 018924 arg mem_temp_payload ,contr 
+0x607b 018925 force 9 ,loopcnt 
+:      018926 send_lmp_test_control_loop:
+0x607c 018927 ifetch 1 ,contr 
+0x607d 018928 xor_into 0x55 ,pdata 
+0x607e 018929 istore 1 ,contw 
+0x607f 018930 loop send_lmp_test_control_loop 
+0x6080 018931 branch send_lmp_request 
+:      018933 send_lmp_quality_of_service_req:
+0x6081 018934 branch send_lmp_request 
+:      018935 send_lmp_unit_key:
+0x6082 018936 branch send_lmp_request 
+:      018938 send_lmp_slot_offset:
+0x6083 018939 rtn master 
+0x6084 018940 call calc_slot_offset 
+0x6085 018941 force 9 ,pdata 
+0x6086 018942 call msg_send_lmp 
+0x6087 018943 fetch 2 ,mem_slot_offset 
+0x6088 018944 istore 2 ,contw 
+0x6089 018945 fetch 3 ,mem_lap 
+0x608a 018946 istore 3 ,contw 
+0x608b 018947 fetch 1 ,mem_uap 
+0x608c 018948 istore 1 ,contw 
+0x608d 018949 fetch 2 ,mem_nap 
+0x608e 018950 istore 2 ,contw 
+0x608f 018951 bmark0 mark_switch_initiated ,send_lmp_slot_offset_reply 
+0x6090 018952 set0 mark_switch_initiated ,mark 
+0x6091 018953 call send_lmp_request 
+0x6092 018954 jam lmp_switch_req ,mem_lmo_opcode2 
+0x6093 018955 rtn 
+:      018956 send_lmp_slot_offset_reply:
+0x6094 018957 call send_lmp_reply 
+0x6095 018958 jam lmp_accepted ,mem_lmo_opcode2 
+0x6096 018959 jam lmp_switch_req ,mem_lmi_opcode2 
+0x6097 018960 rtn 
+:      018962 send_lmp_switch_req:
+0x6098 018963 arg 0x200 ,temp 
+0x6099 018964 branch switch_on_native ,master 
+0x609a 018965 deposit clke_bt 
+0x609b 018966 branch switch_slack 
+:      018967 switch_on_native:
+0x609c 018968 deposit clkn_bt 
+:      018969 switch_slack:
+0x609d 018970 deposit bt_clk 
+0x609e 018971 iadd temp ,pdata 
+0x609f 018972 and_into 0x1fc ,pdata 
+0x60a0 018973 store 4 ,mem_sniff_anchor 
+0x60a1 018974 force 5 ,pdata 
+0x60a2 018975 call msg_send_lmp 
+0x60a3 018976 fetch 4 ,mem_sniff_anchor 
+0x60a4 018977 rshift pdata ,pdata 
+0x60a5 018978 istore 4 ,contw 
+0x60a6 018979 branch send_lmp_request 
+:      018981 send_lmp_sniff_req:
+0x60a7 018982 force 10 ,pdata 
+0x60a8 018983 call msg_send_lmp 
+0x60a9 018984 arg mem_sniff_payload ,contr 
+0x60aa 018985 ifetch 9 ,contr 
+0x60ab 018986 istore 9 ,contw 
+0x60ac 018987 branch send_lmp_request 
+:      018990 send_lmp_timing_accuracy_req:
+0x60ad 018992 force 3 ,pdata 
+0x60ae 018993 call msg_send_lmp 
+0x60af 018994 setarg 0x0114 
+0x60b0 018995 istore 2 ,contw 
+0x60b1 018996 branch send_lmp_request 
+:      018998 send_lmp_unsniff_req:
+0x60b2 019000 force 1 ,pdata 
+0x60b3 019001 call msg_send_lmp 
+0x60b4 019010 branch send_lmp_request 
+:      019012 send_lmp_sco_link_req:
+0x60b5 019013 branch send_lmp_sco_link_master ,master 
+0x60b6 019014 jam 0x00 ,mem_sco_handle 
+0x60b7 019015 fetch 1 ,mem_mode 
+0x60b8 019016 set1 send_sco_when_slave ,pdata 
+0x60b9 019017 store 1 ,mem_mode 
+:      019018 send_lmp_sco_link_master:
+0x60ba 019019 jam 0 ,mem_esco_desco 
+0x60bb 019020 force 7 ,pdata 
+0x60bc 019021 call msg_send_lmp 
+0x60bd 019022 fetch 1 ,mem_sco_handle 
+0x60be 019023 istore 1 ,contw 
+0x60bf 019024 setarg 0x00 
+0x60c0 019025 istore 1 ,contw 
+0x60c1 019026 fetch 1 ,mem_esco_desco 
+0x60c2 019027 istore 1 ,contw 
+0x60c3 019028 setarg 0x06 
+0x60c4 019029 istore 1 ,contw 
+0x60c5 019030 setarg 0x02 
+0x60c6 019031 istore 1 ,contw 
+0x60c7 019032 fetch 1 ,mem_air_mode 
+0x60c8 019033 istore 1 ,contw 
+0x60c9 019034 branch send_lmp_reply ,master 
+0x60ca 019035 branch send_lmp_tid 
+:      019037 send_lmp_remove_sco_link_req:
+0x60cb 019039 force 3 ,pdata 
+0x60cc 019040 call msg_send_lmp 
+0x60cd 019041 fetch 1 ,mem_sco_handle 
+0x60ce 019042 istore 1 ,contw 
+0x60cf 019043 force other_end_terminated ,pdata 
+0x60d0 019044 istore 1 ,contw 
+0x60d1 019045 branch send_lmp_request 
+:      019047 send_lmp_max_slot:
+0x60d2 019048 force 2 ,pdata 
+0x60d3 019049 call msg_send_lmp 
+0x60d4 019050 fetch 1 ,mem_max_slot 
+0x60d5 019051 istore 1 ,contw 
+0x60d6 019052 branch send_lmp_request 
+:      019055 send_lmp_max_slot_req:
+0x60d7 019056 force 2 ,pdata 
+0x60d8 019057 call msg_send_lmp 
+0x60d9 019058 setarg 0x05 
+0x60da 019059 istore 1 ,contw 
+0x60db 019060 branch send_lmp_request 
+:      019062 send_lmp_setup_complete:
+0x60dc 019063 fetch 1 ,mem_state 
+0x60dd 019064 set1 state_conn_comp ,pdata 
+0x60de 019065 store 1 ,mem_state 
+0x60df 019066 copy clkn_bt ,pdata 
+0x60e0 019067 store 4 ,mem_aurand_send_delay_time 
+0x60e1 019068 fetch 1 ,mem_lmp_conn_state 
+0x60e2 019069 bbit1 sent_setup_complete ,send_lmp_setup_complete_has_sent 
+0x60e3 019070 set1 sent_setup_complete ,pdata 
+0x60e4 019071 store 1 ,mem_lmp_conn_state 
+0x60e5 019072 jam bt_evt_setup_complete ,mem_fifo_temp 
+0x60e6 019073 call ui_ipc_send_event 
+0x60e7 019074 call hci_send_connection_complete 
+0x60e8 019075 force 1 ,pdata 
+0x60e9 019076 call msg_send_lmp 
+0x60ea 019077 branch send_lmp_request 
+:      019078 send_lmp_setup_complete_has_sent:
+0x60eb 019079 jam 0 ,mem_lmp_to_send 
+0x60ec 019080 rtn 
+:      019082 send_lmp_version_req:
+0x60ed 019083 force 6 ,pdata 
+0x60ee 019084 call msg_send_lmp 
+0x60ef 019085 fetch 5 ,mem_lmp_version 
+0x60f0 019086 istore 5 ,contw 
+0x60f1 019087 branch send_lmp_request 
+:      019089 send_lmp_features_req:
+0x60f2 019090 force 9 ,pdata 
+0x60f3 019091 call msg_send_lmp 
+0x60f4 019092 fetch 8 ,mem_features 
+0x60f5 019093 istore 8 ,contw 
+0x60f6 019094 branch send_lmp_request 
+:      019096 sp_master_send_io_cap_get:
+0x60f7 019097 call hci_send_io_cap_req_event 
+0x60f8 019098 fetch 1 ,mem_device_option 
+0x60f9 019099 beq dvc_op_hci ,sp_master_send_io_cap_get_hci 
+0x60fa 019100 jam sp_flag_commit ,mem_master_sp_flag 
+0x60fb 019101 fetch 1 ,mem_sp_local_key_invalid 
+0x60fc 019102 rtnne sp_key_valid 
+:      019103 sp_master_send_io_cap_get_hci:
+0x60fd 019104 jam sp_master_stat_start_done ,mem_master_sp_state 
+0x60fe 019105 rtn 
+:      019107 sp_master_send_io_cap_send:
+0x60ff 019108 call tid_initiate 
+0x6100 019109 jam lmp_io_cap_req ,mem_lmo_opcode2 
+0x6101 019110 jam sp_stat_key_send ,mem_master_sp_state 
+0x6102 019111 rtn 
+:      019114 sp_master_send_lmp_encapsulated_header:
+0x6103 019115 call tid_initiate 
+0x6104 019116 jam lmp_encapsulated_header ,mem_lmo_opcode2 
+0x6105 019117 jam sp_stat_random_send ,mem_master_sp_state 
+0x6106 019118 rtn 
+:      019120 sp_master_commitment_compare:
+0x6107 019121 arg mem_sp_calc_result_high ,rega 
+0x6108 019122 arg mem_sp_confirm_remote ,regb 
+0x6109 019123 arg 16 ,loopcnt 
+0x610a 019124 call string_compare 
+0x610b 019125 branch sp_master_commitment_compare_success ,zero 
+0x610c 019126 jam sp_stat_null ,mem_master_sp_state 
+0x610d 019127 call master_clear_mem_master_sp_flag 
+0x610e 019128 jam pdu_not_allowed ,mem_lmo_reason2 
+0x610f 019129 jam lmp_simple_pairing_number ,mem_lmi_opcode2 
+0x6110 019130 branch reject_lmp_packet 
+:      019131 sp_master_commitment_compare_success:
+0x6111 019132 jam sp_stat_confirm_calc ,mem_master_sp_state 
+0x6112 019133 call master_set_mem_master_sp_flag 
+0x6113 019134 jam lmp_simple_pairing_number ,mem_lmi_opcode2 
+0x6114 019135 branch accept_lmp_msg 
+:      019139 sp_master_send_lmp_simple_pairing_number:
+0x6115 019140 jam lmp_simple_pairing_number ,mem_lmo_opcode2 
+0x6116 019141 rtn 
+:      019145 sp_send_lmp_encapsulated_header:
+0x6117 019148 jam lmp_encapsulated_header ,mem_lmo_opcode2 
+0x6118 019150 rtn 
+:      019156 send_lmp_encapsulated_header:
+0x6119 019157 jam 0 ,mem_sp_local_key_send_count 
+0x611a 019158 force 4 ,pdata 
+0x611b 019159 call msg_send_lmp 
+0x611c 019160 force encapsulated_major_type_p192 ,pdata 
+0x611d 019161 istore 1 ,contw 
+0x611e 019162 force encapsulated_minor_type_p192 ,pdata 
+0x611f 019163 istore 1 ,contw 
+0x6120 019164 force encapsulated_len_p192 ,pdata 
+0x6121 019165 istore 1 ,contw 
+0x6122 019166 call check_localsm 
+0x6123 019167 branch send_lmp_request ,true 
+0x6124 019168 branch send_lmp_reply 
+:      019170 send_lmp_encapsulated_payload:
+0x6125 019172 force 17 ,pdata 
+0x6126 019173 call msg_send_lmp 
+0x6127 019174 fetch 1 ,mem_sp_local_key_send_count 
+0x6128 019175 arg mem_sp_pubkey_local ,contr 
+0x6129 019176 iadd contr ,contr 
+0x612a 019177 ifetch 8 ,contr 
+0x612b 019178 istore 8 ,contw 
+0x612c 019179 ifetch 8 ,contr 
+0x612d 019180 istore 8 ,contw 
+0x612e 019181 fetch 1 ,mem_sp_local_key_send_count 
+0x612f 019182 increase 16 ,pdata 
+0x6130 019183 store 1 ,mem_sp_local_key_send_count 
+0x6131 019184 call check_localsm 
+0x6132 019185 branch send_lmp_request ,true 
+0x6133 019186 branch send_lmp_reply 
+:      019189 sp_send_lmp_simple_pairing_comfirm:
+0x6134 019190 jam sp_stat_random_recv ,mem_sp_state 
+0x6135 019191 jam lmp_simple_pairing_confirm ,mem_lmo_opcode2 
+0x6136 019192 rtn 
+:      019193 send_lmp_simple_pairing_comfirm:
+0x6137 019196 force 17 ,pdata 
+0x6138 019197 call msg_send_lmp 
+0x6139 019198 arg mem_sp_calc_result_high ,contr 
+0x613a 019199 ifetch 8 ,contr 
+0x613b 019200 istore 8 ,contw 
+0x613c 019201 ifetch 8 ,contr 
+0x613d 019202 istore 8 ,contw 
+0x613e 019203 branch send_lmp_reply 
+:      019205 sp_send_lmp_simple_pairing_number:
+0x613f 019206 call lmo_fifo_process 
+0x6140 019208 jam lmp_simple_pairing_number ,mem_lmo_opcode2 
+0x6141 019209 rtn 
+:      019211 send_lmp_simple_pairing_number:
+0x6142 019213 call check_localsm 
+0x6143 019214 call sp_local_random_key_generator ,true 
+0x6144 019215 force 17 ,pdata 
+0x6145 019216 call msg_send_lmp 
+0x6146 019217 arg mem_sp_random_local ,contr 
+0x6147 019218 ifetch 8 ,contr 
+0x6148 019219 istore 8 ,contw 
+0x6149 019220 ifetch 8 ,contr 
+0x614a 019221 istore 8 ,contw 
+0x614b 019222 call check_localsm 
+0x614c 019223 nbranch send_lmp_reply ,true 
+0x614d 019224 branch send_lmp_request ,true 
+:      019226 master_sp_sm_end:
+0x614e 019228 jam sp_stat_done ,mem_master_sp_state 
+:      019229 sp_aurand_send:
+0x614f 019230 call tid_initiate 
+0x6150 019231 jam lmp_au_rand ,mem_lmo_opcode2 
+0x6151 019232 call check_localsm_master 
+0x6152 019233 branch sp_master_key_prarm_push ,true 
+0x6153 019234 branch sp_link_key_prarm_push 
+:      019235 master_sp_send_lmp_dhkey_check:
+0x6154 019236 call tid_reply 
+:      019237 sp_send_lmp_dhkey_check:
+0x6155 019238 jam lmp_dhkey_check ,mem_lmo_opcode2 
+0x6156 019239 rtn 
+:      019240 send_lmp_dhkey_check:
+0x6157 019242 force 17 ,pdata 
+0x6158 019243 call msg_send_lmp 
+0x6159 019244 arg mem_sp_calc_result_high ,contr 
+0x615a 019245 ifetch 8 ,contr 
+0x615b 019246 istore 8 ,contw 
+0x615c 019247 ifetch 8 ,contr 
+0x615d 019248 istore 8 ,contw 
+0x615e 019249 call check_localsm 
+0x615f 019250 nbranch send_lmp_reply ,true 
+0x6160 019251 branch send_lmp_request ,true 
+:      019253 send_lmp_enc_key_size_mask_res:
+0x6161 019254 force 3 ,pdata 
+0x6162 019255 call msg_send_lmp 
+0x6163 019256 setarg 0xfffe 
+0x6164 019257 istore 2 ,contw 
+0x6165 019258 branch send_lmp_reply 
+:      019260 send_lmp_auto_rate:
+0x6166 019261 branch send_lmp_request 
+:      019262 send_lmp_clkoffset_req:
+0x6167 019263 branch send_lmp_request 
+:      019264 send_lmp_quality_of_service:
+0x6168 019265 branch send_lmp_request 
+:      019266 send_lmp_test_activate:
+0x6169 019267 branch send_lmp_request 
+:      019272 send_lmp_comb_key:
+0x616a 019273 call generate_random_number 
+0x616b 019274 arg mem_lap ,rega 
+0x616c 019275 call generate_linkkey 
+0x616d 019276 force 17 ,pdata 
+0x616e 019277 call msg_send_lmp 
+0x616f 019278 arg mem_kinit ,rega 
+0x6170 019279 arg mem_random_number ,regb 
+0x6171 019280 call xor16 
+0x6172 019281 nbranch send_lmp_follow ,master 
+0x6173 019282 branch send_lmp_tid 
+:      019284 send_lmp_inrand:
+0x6174 019285 call generate_random_number 
+0x6175 019286 arg mem_plap ,rega 
+0x6176 019287 call generate_kinit 
+:      019288 send_lmp_rand:
+0x6177 019289 force 17 ,pdata 
+0x6178 019290 call msg_send_lmp 
+0x6179 019291 arg mem_random_number ,contr 
+0x617a 019292 call memcpy16 
+0x617b 019293 fetch 1 ,mem_conn_sm 
+0x617c 019294 beq conn_sm_auth_wait ,send_lmp_request 
+0x617d 019295 beq conn_sm_pairing_wait ,send_lmp_request 
+0x617e 019296 branch send_lmp_tid 
+:      019298 send_lmp_aurand:
+0x617f 019299 fetch 1 ,mem_pairing_auth 
+0x6180 019300 branch send_lmp_aurand_notpairing ,blank 
+0x6181 019301 call check_localsm 
+0x6182 019302 call tid_initiate ,true 
+0x6183 019303 ncall tid_reply ,true 
+0x6184 019304 branch send_lmp_aurand_common 
+:      019305 send_lmp_aurand_notpairing:
+0x6185 019306 call tid_initiate 
+:      019307 send_lmp_aurand_common:
+0x6186 019308 call generate_random_number 
+0x6187 019309 branch send_lmp_rand 
+:      019311 send_lmp_sres:
+0x6188 019312 arg mem_lap ,rega 
+0x6189 019313 call function_e1 
+0x618a 019314 force 5 ,pdata 
+0x618b 019315 call msg_send_lmp 
+0x618c 019316 fetch 4 ,mem_input_store 
+0x618d 019317 istore 4 ,contw 
+0x618e 019318 arg mem_sres_tid ,temp 
+0x618f 019319 call special_tid_store 
+0x6190 019320 call copy_aco 
+0x6191 019321 call check_localsm 
+0x6192 019322 branch send_lmp_sres_master ,true 
+0x6193 019323 jam done_encryp ,mem_wait_encryption 
+0x6194 019324 fetch 1 ,mem_pairing_auth 
+0x6195 019325 rtn blank 
+0x6196 019326 jam lmp_au_rand ,mem_lmo_opcode2 
+:      019327 send_lmp_sres_master:
+0x6197 019328 fetch 1 ,mem_link_key_exists 
+0x6198 019329 rtn blank 
+0x6199 019330 call check_localsm 
+0x619a 019331 call hci_send_linkkey_notification ,true 
+:      019332 send_lmp_sres_startenc:
+0x619b 019333 call check_localsm 
+0x619c 019334 nbranch send_lmp_sres_startenc_slave ,true 
+0x619d 019335 fetch 1 ,mem_auth_enable 
+0x619e 019336 rtn blank 
+0x619f 019337 jam lmp_encryption_mode_req ,mem_lmo_opcode2 
+0x61a0 019338 rtn 
+:      019339 send_lmp_sres_startenc_slave:
+0x61a1 019340 rtnmark0 mark_slave_in_rand_accepted 
+0x61a2 019341 set0 mark_slave_in_rand_accepted ,mark 
+0x61a3 019342 jam lmp_encryption_mode_req ,mem_lmo_opcode2 
+0x61a4 019343 rtn 
+:      019347 send_lmp_start_encryption:
+0x61a5 019348 call generate_random_number 
+0x61a6 019349 call function_e3 
+0x61a7 019350 force 17 ,pdata 
+0x61a8 019351 call msg_send_lmp 
+0x61a9 019352 arg mem_random_number ,contr 
+0x61aa 019353 call memcpy16 
+0x61ab 019354 branch send_lmp_tid 
+:      019356 send_lmp_stop_encryption_req:
+0x61ac 019357 force 1 ,pdata 
+0x61ad 019358 call msg_send_lmp 
+0x61ae 019359 branch send_lmp_tid 
+:      019361 send_lmp_encryption_key_size_req:
+0x61af 019362 force 2 ,pdata 
+0x61b0 019363 call msg_send_lmp 
+0x61b1 019364 force 16 ,pdata 
+0x61b2 019365 istore 1 ,contw 
+0x61b3 019366 store 1 ,mem_key_size 
+0x61b4 019367 branch send_lmp_tid 
+:      019369 msg_send_lmp:
+0x61b5 019371 lshift3 pdata ,pdata 
+0x61b6 019372 or_into 0x07 ,pdata 
+0x61b7 019373 store 1 ,mem_lmo_header_length 
+0x61b8 019374 arg 17 ,loopcnt 
+0x61b9 019375 arg mem_lmo_payload ,contw 
+0x61ba 019376 call clear_mem 
+0x61bb 019377 arg mem_lmo_payload ,contw 
+0x61bc 019378 rtn 
+:      019380 send_lmpext:
+0x61bd 019381 and pdata ,0x7f ,rega 
+0x61be 019382 jam lmp_escape ,mem_lmp_to_send 
+0x61bf 019383 deposit queue 
+0x61c0 019384 call msg_send_lmp 
+0x61c1 019385 deposit rega 
+0x61c2 019386 istore 1 ,contw 
+0x61c3 019387 rtn 
+:      019389 send_lmp_follow:
+0x61c4 019390 fetch 1 ,mem_lmp_to_send 
+0x61c5 019391 lshift pdata ,pdata 
+0x61c6 019392 fetcht 1 ,mem_state_map 
+0x61c7 019393 isolate1 smap_lmptid ,temp 
+0x61c8 019394 setflag true ,0 ,pdata 
+0x61c9 019395 branch send_lmp_exit 
+:      019398 send_lmp_tid:
+0x61ca 019399 fetcht 1 ,mem_state_map 
+0x61cb 019400 and_into 1 ,temp 
+0x61cc 019401 branch send_lmp_end 
+:      019403 send_lmp_reply:
+0x61cd 019404 force 0 ,temp 
+0x61ce 019405 branch send_lmp_end 
+:      019407 send_lmp_request:
+0x61cf 019408 force 1 ,temp 
+:      019409 send_lmp_end:
+0x61d0 019410 fetch 1 ,mem_lmp_to_send 
+0x61d1 019411 lshift pdata ,pdata 
+0x61d2 019412 setflag master ,0 ,pdata 
+0x61d3 019413 ixor temp ,pdata 
+:      019414 send_lmp_exit:
+0x61d4 019415 store 1 ,mem_lmo_header_opcode 
+0x61d5 019416 jam 0 ,mem_lmp_to_send 
+0x61d6 019417 call lmo_fifo_process_lmo0empty 
+0x61d7 019418 enable user 
+0x61d8 019419 rtn 
+:      019421 lmo_fifo_process:
+0x61d9 019422 set1 mark_ext_patch ,mark 
+0x61da 019423 bpatch patch3c_4 ,mem_patch3c 
+0x61db 019424 fetch 1 ,mem_lmp_to_send 
+0x61dc 019425 branch lmo_fifo_process_lmo0empty ,blank 
+0x61dd 019426 fetch 1 ,mem_lmo_opcode1 
+0x61de 019427 nrtn blank 
+0x61df 019428 branch lmo_fifo_process_lmo2to1 
+:      019429 lmo_fifo_process_lmo0empty:
+0x61e0 019430 fetch 1 ,mem_lmo_opcode1 
+0x61e1 019431 branch lmo_fifo_process_lmo1_empty ,blank 
+0x61e2 019432 fetch 3 ,mem_lmo_opcode1 
+0x61e3 019433 store 3 ,mem_lmp_to_send 
+0x61e4 019434 fetcht 1 ,mem_lmo_tid1 
+0x61e5 019435 fetch 1 ,mem_state_map 
+0x61e6 019436 set0 smap_lmptid ,pdata 
+0x61e7 019437 ior temp ,pdata 
+0x61e8 019438 store 1 ,mem_state_map 
+0x61e9 019439 jam 0 ,mem_lmo_opcode1 
+:      019440 lmo_fifo_process_lmo2to1:
+0x61ea 019441 fetch 1 ,mem_lmo_opcode2 
+0x61eb 019442 rtn blank 
+0x61ec 019443 fetch 4 ,mem_lmo_opcode2 
+0x61ed 019444 store 4 ,mem_lmo_opcode1 
+0x61ee 019445 jam 0 ,mem_lmo_opcode2 
+0x61ef 019446 rtn 
+:      019447 lmo_fifo_process_lmo1_empty:
+0x61f0 019448 fetch 1 ,mem_lmo_opcode2 
+0x61f1 019449 rtn blank 
+0x61f2 019450 fetch 3 ,mem_lmo_opcode2 
+0x61f3 019451 store 3 ,mem_lmp_to_send 
+0x61f4 019452 fetcht 1 ,mem_lmo_tid2 
+0x61f5 019453 fetch 1 ,mem_state_map 
+0x61f6 019454 set0 smap_lmptid ,pdata 
+0x61f7 019455 ior temp ,pdata 
+0x61f8 019456 store 1 ,mem_state_map 
+0x61f9 019457 jam 0 ,mem_lmo_opcode2 
+0x61fa 019458 rtn 
+:      019461 special_tid_store:
+0x61fb 019462 set1 mark_ext_patch ,mark 
+0x61fc 019463 bpatch patch3c_5 ,mem_patch3c 
+0x61fd 019464 fetch 1 ,mem_state_map 
+0x61fe 019465 copy pdata ,regc 
+0x61ff 019466 ifetch 1 ,temp 
+0x6200 019467 call pop_tid_follow 
+0x6201 019468 call send_lmp_follow 
+0x6202 019469 copy regc ,pdata 
+0x6203 019470 store 1 ,mem_state_map 
+0x6204 019471 rtn 
+:      019473 tid_reply:
+0x6205 019474 fetcht 1 ,mem_state_map 
+0x6206 019475 set0 smap_lmptidinit ,temp 
+0x6207 019476 storet 1 ,mem_state_map 
+0x6208 019477 rtn 
+:      019479 tid_initiate:
+0x6209 019480 fetcht 1 ,mem_state_map 
+0x620a 019481 set1 smap_lmptidinit ,temp 
+0x620b 019482 storet 1 ,mem_state_map 
+0x620c 019483 rtn 
+:      019486 tid_check:
+0x620d 019487 nsetflag master ,smap_lmptid ,pdata 
+0x620e 019488 fetcht 1 ,mem_state_map 
+0x620f 019489 ixor temp ,pdata 
+0x6210 019490 isolate1 smap_lmptid ,pdata 
+0x6211 019491 rtn 
+:      019494 tid_set_reply:
+0x6212 019495 fetch 1 ,mem_state_map 
+0x6213 019496 setflag master ,smap_lmptid ,pdata 
+0x6214 019497 store 1 ,mem_state_map 
+0x6215 019498 rtn 
+:      019501 check_localsm:
+0x6216 019502 fetch 1 ,mem_sp_localsm 
+0x6217 019503 compare local_statemachine ,pdata ,0x7f 
+0x6218 019504 rtn 
+:      019505 setlocalsm_master:
+0x6219 019506 fetch 1 ,mem_sp_localsm 
+0x621a 019507 set1 7 ,pdata 
+0x621b 019508 store 1 ,mem_sp_localsm 
+0x621c 019509 rtn 
+:      019510 setlocalsm_slave:
+0x621d 019511 fetch 1 ,mem_sp_localsm 
+0x621e 019512 set0 7 ,pdata 
+0x621f 019513 store 1 ,mem_sp_localsm 
+0x6220 019514 rtn 
+:      019515 check_localsm_master:
+0x6221 019516 fetch 1 ,mem_sp_localsm 
+0x6222 019517 isolate1 7 ,pdata 
+0x6223 019518 store 1 ,mem_sp_localsm 
+0x6224 019519 rtn 
+:      019521 generate_random_number:
+0x6225 019523 arg mem_random_number ,contw 
+:      019524 generate_random:
+0x6226 019525 force 16 ,loopcnt 
+:      019526 generate_random_another:
+:      019527 generate_random_loop:
+0x6227 019528 random pdata 
+0x6228 019529 istore 1 ,contw 
+0x6229 019530 loop generate_random_another 
+0x622a 019531 rtn 
+:      019533 generate_linkkey:
+0x622b 019534 call function_e21 
+0x622c 019535 arg mem_link_key ,rega 
+0x622d 019536 arg mem_input_store ,regb 
+0x622e 019537 ifetch 8 ,rega 
+0x622f 019538 fetcht 1 ,mem_state 
+0x6230 019539 nsetflag blank ,state_combkey ,temp 
+0x6231 019540 storet 1 ,mem_state 
+0x6232 019541 copy rega ,contw 
+0x6233 019542 call xor16 
+0x6234 019543 branch generate_linkkey_continue 
+:      019549 process_conn_sm:
+0x6235 019551 set1 mark_ext_patch ,mark 
+0x6236 019552 bpatch patch3c_6 ,mem_patch3c 
+0x6237 019553 fetch 1 ,mem_lmo_opcode2 
+0x6238 019554 branch process_conn_sm_continue ,blank 
+0x6239 019555 call lmo_fifo_process 
+0x623a 019556 fetch 1 ,mem_lmo_opcode2 
+0x623b 019557 nrtn blank 
+:      019558 process_conn_sm_continue:
+0x623c 019559 fetch 1 ,mem_conn_sm 
+0x623d 019560 rtn blank 
+0x623e 019564 beq conn_sm_send_conn_req ,host_create_conn_send_conn_req 
+0x623f 019565 beq conn_sm_wait_conn_accept ,host_create_conn_wait_accept 
+0x6240 019566 beq conn_sm_send_features ,host_create_conn_send_features 
+0x6241 019567 beq conn_sm_wait_features_res ,host_create_conn_waiting 
+0x6242 019568 beq conn_sm_send_switch ,host_create_conn_send_switch 
+0x6243 019569 beq conn_sm_auth_pair ,host_create_conn_auth_pair 
+0x6244 019570 beq conn_sm_auth_pair_wait ,host_create_conn_auth_pair_wait 
+0x6245 019571 beq conn_sm_encrypt ,host_create_conn_encrypt 
+0x6246 019572 beq conn_sm_encrypt_wait ,host_create_conn_encrypt_wait 
+0x6247 019573 beq conn_sm_encrypt_wait_clear ,host_create_conn_encrypt_wait_clear 
+0x6248 019574 beq conn_sm_send_setup_complete ,host_create_conn_send_setup_complete 
+0x6249 019575 beq conn_sm_wait_setup_complete ,host_create_conn_wait_setup_complete 
+0x624a 019576 beq conn_sm_detach_delay ,host_create_conn_master_detach 
+0x624b 019577 beq conn_sm_send_version ,host_create_conn_send_version 
+0x624c 019578 beq conn_sm_wait_version ,host_create_conn_waiting 
+0x624d 019579 beq conn_sm_wait_switch_after_host_connection ,host_creat_conn_wait_switch 
+0x624e 019580 beq conn_sm_send_features_ext ,host_creat_conn_send_feat_ext 
+0x624f 019581 beq conn_sm_wait_features_ext ,host_create_conn_waiting 
+0x6250 019582 beq conn_sm_pairing ,host_create_conn_pairing 
+0x6251 019583 beq conn_sm_pairing_wait ,host_create_conn_pairing_wait 
+0x6252 019584 beq conn_sm_auth ,host_create_conn_auth 
+0x6253 019585 beq conn_sm_auth_wait ,host_create_conn_auth_wait 
+0x6254 019586 beq conn_sm_done ,host_create_conn_done 
+0x6255 019587 beq conn_sm_wait_done ,host_create_conn_done_wait 
+0x6256 019588 jam conn_sm_standby ,mem_conn_sm 
+0x6257 019590 rtn 
+:      019591 host_create_conn_done:
+0x6258 019592 fetch 1 ,mem_lmp_conn_state 
+0x6259 019593 rtnbit0 received_setup_complete 
+0x625a 019594 rtnbit0 sent_setup_complete 
+0x625b 019595 jam conn_sm_standby ,mem_conn_sm 
+0x625c 019596 call host_conn_judge_encrypt 
+0x625d 019597 branch scheduler_start_upper_sm 
+:      019599 host_conn_judge_encrypt:
+0x625e 019600 fetch 1 ,mem_connection_options 
+0x625f 019601 rtnbit0 connection_encrypt 
+0x6260 019602 jam conn_sm_encrypt_wait ,mem_conn_sm 
+0x6261 019603 rtn 
+:      019605 host_create_conn_done_wait:
+0x6262 019606 arg enpt_delay_timer ,queue 
+0x6263 019607 call timer_check 
+0x6264 019608 nrtn blank 
+0x6265 019609 jam conn_sm_done ,mem_conn_sm 
+0x6266 019610 rtn 
+:      019612 host_create_conn_auth:
+0x6267 019613 fetch 1 ,mem_connection_options 
+0x6268 019614 set0 connection_auth ,pdata 
+0x6269 019615 store 1 ,mem_connection_options 
+0x626a 019616 jam conn_sm_auth_wait ,mem_conn_sm 
+0x626b 019617 jam lmp_au_rand ,mem_lmo_opcode2 
+0x626c 019618 rtn 
+:      019619 host_create_conn_auth_wait:
+0x626d 019620 rtn 
+:      019621 host_create_conn_pairing:
+0x626e 019622 fetch 1 ,mem_pincode_state 
+0x626f 019623 rtnne pincode_state_pincode_ready 
+0x6270 019624 call host_auth 
+0x6271 019625 jam conn_sm_pairing_wait ,mem_conn_sm 
+0x6272 019626 rtn 
+:      019628 host_create_conn_pairing_wait:
+0x6273 019629 rtn 
+:      019630 host_creat_conn_send_feat_ext:
+0x6274 019631 jam conn_sm_wait_features_ext ,mem_conn_sm 
+0x6275 019632 jam lmp_ext_features_req ,mem_lmo_opcode2 
+0x6276 019633 rtn 
+:      019634 host_create_conn_send_version:
+0x6277 019635 jam conn_sm_wait_version ,mem_conn_sm 
+0x6278 019636 jam lmp_version_req ,mem_lmo_opcode2 
+0x6279 019637 rtn 
+:      019639 host_creat_conn_wait_switch:
+0x627a 019640 fetch 1 ,mem_switch_flag 
+0x627b 019641 rtneq switch_flag_init 
+0x627c 019642 beq switch_flag_accept ,host_create_conn_switch_accept 
+0x627d 019643 arg switch_wait_timer ,queue 
+0x627e 019644 call timer_check 
+0x627f 019645 nrtn blank 
+0x6280 019646 jam switch_flag_init ,mem_switch_flag 
+0x6281 019647 branch host_create_conn_switch 
+:      019648 host_create_conn_switch_accept:
+0x6282 019649 rtn master 
+0x6283 019650 branch host_create_conn_auth_pair 
+:      019652 host_create_conn_send_features:
+0x6284 019653 jam conn_sm_wait_features_res ,mem_conn_sm 
+0x6285 019654 jam lmp_features_req ,mem_lmo_opcode2 
+0x6286 019655 rtn 
+:      019656 host_create_conn_send_switch:
+0x6287 019657 jam lmp_switch_req ,mem_lmo_opcode2 
+0x6288 019658 set1 mark_switch_initiated ,mark 
+0x6289 019659 jam conn_sm_wait_conn_accept ,mem_conn_sm 
+0x628a 019660 setarg 0x1ff 
+0x628b 019661 store 2 ,mem_soft_timer 
+0x628c 019662 rtn 
+:      019663 host_create_conn_send_conn_req:
+0x628d 019664 jam conn_sm_wait_conn_accept ,mem_conn_sm 
+0x628e 019665 jam 0xff ,mem_soft_timer 
+0x628f 019666 set0 mark_reconn_recieve_switch ,mark 
+0x6290 019667 jam lmp_host_connection_req ,mem_lmo_opcode2 
+0x6291 019668 branch init_lmp_reinit 
+:      019669 host_create_conn_wait_accept:
+0x6292 019670 rtnmark1 mark_reconn_recieve_switch 
+0x6293 019671 fetch 2 ,mem_soft_timer 
+0x6294 019672 sub pdata ,1 ,pdata 
+0x6295 019673 branch host_create_conn_resend ,zero 
+0x6296 019674 store 2 ,mem_soft_timer 
+0x6297 019675 rtn 
+:      019676 host_create_conn_resend:
+0x6298 019677 jam conn_sm_send_switch ,mem_conn_sm 
+0x6299 019678 rtn 
+:      019679 host_create_conn_waiting:
+0x629a 019681 rtn 
+:      019683 host_create_conn_switch:
+0x629b 019684 fetch 1 ,mem_lmp_conn_state 
+0x629c 019685 rtnbit0 sent_setup_complete 
+0x629d 019686 rtnbit0 received_setup_complete 
+0x629e 019687 fetch 1 ,mem_connection_options 
+0x629f 019688 set0 connection_switch ,pdata 
+0x62a0 019689 store 1 ,mem_connection_options 
+0x62a1 019690 jam lmp_switch_req ,mem_lmo_opcode2 
+0x62a2 019691 jam conn_sm_wait_switch_after_host_connection ,mem_conn_sm 
+0x62a3 019692 rtn 
+:      019694 host_create_conn_send_setup_complete:
+0x62a4 019695 jam conn_sm_wait_setup_complete ,mem_conn_sm 
+0x62a5 019696 jam lmp_setup_complete ,mem_lmo_opcode2 
+0x62a6 019697 rtn 
+:      019699 host_create_conn_wait_setup_complete:
+0x62a7 019700 fetch 1 ,mem_lmp_conn_state 
+0x62a8 019701 rtnbit0 received_setup_complete 
+0x62a9 019702 jam conn_sm_standby ,mem_conn_sm 
+0x62aa 019704 rtn 
+:      019705 host_create_conn_wait_setup_complete_rtn:
+0x62ab 019706 jam conn_sm_auth_pair ,mem_conn_sm 
+0x62ac 019707 rtn 
+:      019709 host_create_conn_master_detach:
+0x62ad 019710 fetch 1 ,mem_soft_timer 
+0x62ae 019711 increase -1 ,pdata 
+0x62af 019712 branch host_create_conn_send_detach ,blank 
+0x62b0 019713 store 1 ,mem_soft_timer 
+0x62b1 019714 rtn 
+:      019715 host_create_conn_send_detach:
+0x62b2 019716 jam lmp_detach ,mem_lmo_opcode2 
+0x62b3 019717 jam local_host ,mem_disconn_reason_send 
+0x62b4 019718 jam 0 ,mem_conn_sm 
+0x62b5 019719 rtn 
+:      019720 host_create_conn_auth_pair:
+0x62b6 019722 fetch 1 ,mem_connection_options 
+0x62b7 019723 bbit1 connection_switch ,host_create_conn_switch 
+0x62b8 019724 bbit1 connection_auth ,host_create_conn_auth_pair_true 
+:      019725 host_create_conn_sm_done:
+0x62b9 019726 jam conn_sm_done ,mem_conn_sm 
+0x62ba 019727 rtn 
+:      019728 host_create_conn_auth_pair_true:
+0x62bb 019729 fetch 1 ,mem_link_key_exists 
+0x62bc 019730 branch host_create_conn_auth_pair_nokey ,blank 
+0x62bd 019731 fetch 1 ,mem_lmp_conn_state 
+0x62be 019732 rtnbit0 sent_setup_complete 
+0x62bf 019733 rtnbit0 received_setup_complete 
+0x62c0 019734 fetch 4 ,mem_aurand_send_delay_time 
+0x62c1 019735 arg 100 ,temp 
+0x62c2 019736 iadd temp ,temp 
+0x62c3 019737 copy clkn_bt ,pdata 
+0x62c4 019738 isub temp ,null 
+0x62c5 019739 nrtn positive 
+0x62c6 019740 branch host_create_conn_auth 
+:      019744 host_create_conn_auth_pair_nokey:
+0x62c7 019745 jam conn_sm_pairing ,mem_conn_sm 
+0x62c8 019746 jam 4 ,mem_pin_length 
+0x62c9 019747 setarg 0x3030 
+0x62ca 019748 store 2 ,mem_pin 
+0x62cb 019749 istore 2 ,contw 
+0x62cc 019750 jam pincode_state_pincode_ready ,mem_pincode_state 
+0x62cd 019751 branch host_create_conn_pairing 
+:      019753 host_create_conn_auth_pair_wait:
+0x62ce 019754 rtn 
+:      019755 host_create_conn_encrypt:
+0x62cf 019756 fetch 1 ,mem_connection_options 
+0x62d0 019757 bbit1 connection_encrypt ,host_create_conn_encrypt_start 
+0x62d1 019758 jam conn_sm_done ,mem_conn_sm 
+0x62d2 019759 rtn 
+:      019761 host_create_conn_encrypt_start:
+0x62d3 019762 fetch 1 ,mem_connection_options 
+0x62d4 019763 set0 connection_encrypt ,pdata 
+0x62d5 019764 store 1 ,mem_connection_options 
+0x62d6 019765 jam lmp_encryption_mode_req ,mem_lmo_opcode2 
+0x62d7 019766 rtn 
+:      019768 host_create_conn_encrypt_wait:
+0x62d8 019769 fetch 1 ,mem_wait_encryption 
+0x62d9 019770 rtn blank 
+0x62da 019771 jam conn_sm_standby ,mem_conn_sm 
+0x62db 019772 branch host_create_conn_encrypt_start 
+:      019774 host_create_conn_encrypt_wait_clear:
+0x62dc 019775 jam conn_sm_send_setup_complete ,mem_conn_sm 
+0x62dd 019776 rtn 
+:      019778 host_auth:
+0x62de 019779 fetch 1 ,mem_op 
+0x62df 019780 bbit1 op_inrand_req ,remote_auth 
+0x62e0 019781 call tid_initiate 
+0x62e1 019782 jam lmp_in_rand ,mem_lmo_opcode2 
+0x62e2 019783 branch cmd_exit 
+:      019784 remote_auth:
+0x62e3 019785 fetch 1 ,mem_op 
+0x62e4 019786 set0 op_inrand_req ,pdata 
+0x62e5 019787 store 1 ,mem_op 
+0x62e6 019788 call lmp_accept_inrand 
+0x62e7 019789 call tid_set_reply 
+0x62e8 019790 branch cmd_exit 
+:      019792 pincode_reinit:
+0x62e9 019793 setarg 4 
+0x62ea 019794 store 1 ,mem_pin_length 
+0x62eb 019795 setarg 0x3030 
+0x62ec 019796 istore 2 ,contw 
+0x62ed 019797 istore 2 ,contw 
+0x62ee 019798 rtn 
+:      019806 module_init:
+0x62ef 019807 rtn wake 
+0x62f0 019808 jam 0 ,mem_module_task 
+0x62f1 019809 call module_gpio_init 
+0x62f2 019810 call module_init_static_string 
+0x62f3 019811 setarg module_process_idle 
+0x62f4 019812 store 2 ,mem_cb_idle_process 
+0x62f5 019813 setarg module_conn_process 
+0x62f6 019814 store 2 ,mem_cb_bt_process 
+0x62f7 019815 setarg module_process_bb_event 
+0x62f8 019816 store 2 ,mem_cb_bb_event_process 
+0x62f9 019817 setarg module_le_rx 
+0x62fa 019818 store 2 ,mem_cb_att_write 
+0x62fb 019819 setarg module_conn_process 
+0x62fc 019820 store 2 ,mem_cb_le_process 
+0x62fd 019821 set1 mark_ext_patch ,mark 
+0x62fe 019822 bpatch patch30_0 ,mem_patch30 
+0x62ff 019823 setarg module_lpm_lock 
+0x6300 019824 store 2 ,mem_cb_check_wakelock 
+0x6301 019825 setarg module_le_tx_update_data 
+0x6302 019826 store 2 ,mem_cb_update_notify_value 
+0x6303 019827 setarg 0 
+0x6304 019828 store 4 ,mem_last_uart_clock 
+0x6305 019829 store 2 ,mem_module_prepare_tx_len 
+0x6306 019830 call module_hardware_init 
+0x6307 019831 call init_module_environment 
+0x6308 019832 call check_module_disabled 
+0x6309 019833 branch eeprom_load_reconn_info 
+:      019835 module_hardware_init:
+0x630a 019836 rtn wake 
+0x630b 019837 setarg uart_baud_115200 
+0x630c 019838 store uart_baud_len ,mem_baud 
+:      019839 module_lpm_uart_init:
+0x630d 019840 call init_filter_ram 
+0x630e 019841 setarg mem_module_rx_buf 
+0x630f 019842 hstore 2 ,core_uart_rsaddr 
+0x6310 019843 setarg mem_module_rx_buf_end 
+0x6311 019844 hstore 2 ,core_uart_readdr 
+0x6312 019845 setarg mem_module_tx_buf 
+0x6313 019846 hstore 2 ,core_uart_tsaddr 
+0x6314 019847 setarg mem_module_tx_buf_end 
+0x6315 019848 hstore 2 ,core_uart_teaddr 
+0x6316 019849 hjam 0x4 ,core_gpio_sel1 
+0x6317 019850 jam 0xff ,mem_ucode_id_local 
+0x6318 019851 hjam 0x0 ,core_uart_ctrl 
+0x6319 019852 setarg mem_module_tx_buf 
+0x631a 019853 hstore 2 ,core_uart_twptr 
+0x631b 019854 hstore 2 ,core_uart_trptrp 
+0x631c 019855 setarg mem_module_rx_buf 
+0x631d 019856 hstore 2 ,core_uart_rrptr 
+0x631e 019857 branch hci_init_common 
+:      019860 module_lpm_init:
+0x631f 019861 call module_lpm_uart_init 
+0x6320 019862 branch module_gpio_init 
+:      019864 module_gpio_init:
+0x6321 019866 call ui_led_init 
+0x6322 019867 call app_led_start_blink 
+0x6323 019869 fetcht 1 ,mem_module_connect_state_gpio 
+0x6324 019870 call gpio_config_output 
+0x6325 019871 call module_set_conn_pin_low 
+0x6326 019873 fetcht 1 ,mem_module_wake_up_gpio 
+0x6327 019874 call gpio_config_input 
+0x6328 019875 fetcht 1 ,mem_at_gpio 
+0x6329 019876 branch gpio_config_input_without_wake 
+:      019878 module_lpm_lock:
+0x632a 019879 fetcht 1 ,mem_module_wake_up_gpio 
+0x632b 019880 call gpio_get_bit 
+0x632c 019881 nbranch app_put_lpm_wake_lock ,true 
+0x632d 019882 branch app_get_lpm_wake_lock 
+:      019886 module_process_idle:
+0x632e 019887 branch module_app_dispatch 
+:      019888 module_conn_process:
+0x632f 019889 branch module_app_dispatch 
+:      019890 module_app_dispatch:
+0x6330 019891 set1 mark_ext_patch ,mark 
+0x6331 019892 bpatch patch30_1 ,mem_patch30 
+0x6332 019893 call module_control_air_flow 
+0x6333 019894 call module_uart_set 
+0x6334 019895 call l2cap_malloc_is_fifo_full 
+0x6335 019896 nrtn blank 
+0x6336 019897 branch module_process 
+:      019898 module_process_bb_event:
+0x6337 019899 copy regc ,pdata 
+0x6338 019900 beq bt_evt_pincode_req ,module_process_evt_pincode_req 
+0x6339 019901 beq bt_evt_reconn_failed ,module_reconn_fail 
+0x633a 019902 beq bt_evt_reconn_page_timeout ,module_page_time_out 
+0x633b 019903 beq bt_evt_bb_disconnected ,module_process_bb_event_disconned 
+0x633c 019904 beq bt_evt_switch_not_accept ,module_process_switch_not_accept 
+0x633d 019905 beq bt_evt_switch_accept ,module_process_switch_accept 
+0x633e 019906 beq bt_evt_sniff_accept ,module_process_sniff_accept 
+0x633f 019907 beq bt_evt_sniff_not_accept ,module_process_sniff_not_accept 
+0x6340 019908 beq bt_evt_unsniff_accept ,module_process_unsniff_accept 
+0x6341 019909 beq bt_evt_unsniff_not_accept ,module_process_unsniff_not_accept 
+0x6342 019910 beq bt_evt_le_connected ,module_process_le_conn 
+0x6343 019911 beq bt_evt_bb_connected ,module_process_bb_conn 
+0x6344 019912 beq bt_evt_le_disconnected ,module_process_bb_even_le_disconn 
+0x6345 019913 beq bt_evt_setup_complete ,module_process_setup_complete 
+0x6346 019914 beq bt_evt_enter_sniff ,module_sniff_param_check 
+0x6347 019915 beq bt_evt_exit_sniff ,app_lpm_mult_disable 
+0x6348 019916 and pdata ,0x0f ,temp 
+0x6349 019917 and_into bt_evt_timer_mask ,pdata 
+0x634a 019918 beq bt_evt_timer_init ,module_bb_event_timer 
+0x634b 019919 rtn 
+:      019921 module_process_bb_event_disconned:
+0x634c 019922 call module_disconn_start 
+0x634d 019923 fetch app_disc_rsn_size ,mem_app_disconn_reason 
+0x634e 019924 rtnbit0 app_disc_after_setup_done 
+0x634f 019925 arg 3 ,loopcnt 
+0x6350 019926 arg mem_prarm_dis ,contr 
+0x6351 019927 branch send_mem_to_uart 
+:      019929 module_sniff_param_check:
+0x6352 019932 fetch 2 ,mem_context + coffset_tsniff 
+0x6353 019933 rshift pdata ,pdata 
+0x6354 019934 fetcht 2 ,mem_sniff_param_interval 
+0x6355 019935 isub temp ,null 
+0x6356 019936 nbranch module_sniff_param_check_unsniff ,zero 
+0x6357 019937 branch app_lpm_mult_enable 
+:      019938 module_sniff_param_check_unsniff:
+0x6358 019939 fetch 1 ,mem_module_task 
+0x6359 019940 rtnbit1 at_task_unsinff 
+0x635a 019941 hfetch 2 ,core_uart_rxitems 
+0x635b 019942 ncall at_set_unsniff_task_flag ,blank 
+0x635c 019943 branch app_bt_sniff_exit 
+:      019945 module_process_setup_complete:
+0x635d 019946 call module_conn_start 
+0x635e 019947 call module_check_cmode 
+0x635f 019948 branch module_uart_send_conn ,zero 
+0x6360 019949 branch app_bt_disconnect 
+:      019950 module_uart_send_conn:
+0x6361 019951 arg 4 ,loopcnt 
+0x6362 019952 arg mem_prarm_conn ,contr 
+0x6363 019953 branch send_mem_to_uart 
+:      019955 module_process_bb_even_le_disconn:
+0x6364 019956 call module_disconn_start 
+0x6365 019957 arg 5 ,loopcnt 
+0x6366 019958 arg mem_prarm_bledis ,contr 
+0x6367 019959 branch send_mem_to_uart 
+:      019961 module_process_evt_pincode_req:
+0x6368 019962 call at_restore_pin_code 
+0x6369 019963 branch app_bt_set_pincode 
+:      019964 module_process_switch_not_accept:
+0x636a 019965 fetch 1 ,mem_module_task 
+0x636b 019966 rtnbit0 at_task_switch 
+0x636c 019967 set0 at_task_switch ,pdata 
+0x636d 019968 store 1 ,mem_module_task 
+0x636e 019969 branch at_error_rev_end 
+:      019971 module_process_switch_accept:
+0x636f 019972 fetch 1 ,mem_module_task 
+0x6370 019973 rtnbit0 at_task_switch 
+0x6371 019974 set0 at_task_switch ,pdata 
+0x6372 019975 store 1 ,mem_module_task 
+0x6373 019976 branch at_nomal_rev_end 
+:      019978 module_process_sniff_accept:
+0x6374 019979 rtn 
+:      019981 module_process_sniff_not_accept:
+0x6375 019982 rtn 
+:      019984 module_process_unsniff_accept:
+0x6376 019985 fetch 1 ,mem_module_task 
+0x6377 019986 bbit0 at_task_unsinff ,app_bt_enter_sniff 
+0x6378 019987 branch at_clear_unsniff_task_flag 
+:      019989 module_process_unsniff_not_accept:
+0x6379 019990 rtn 
+:      019992 module_process_le_conn:
+0x637a 019993 call module_conn_start 
+0x637b 019994 arg mem_le_plap ,regb 
+0x637c 019995 call module_check_cmode 
+0x637d 019996 branch module_uart_send_leconn ,zero 
+0x637e 019997 branch app_ble_disconnect 
+:      019998 module_uart_send_leconn:
+0x637f 019999 arg 6 ,loopcnt 
+0x6380 020000 arg mem_prarm_bleconn ,contr 
+0x6381 020001 branch send_mem_to_uart 
+:      020003 module_process_bb_conn:
+0x6382 020004 rtn 
+:      020007 module_reconn_fail:
+0x6383 020008 arg 7 ,loopcnt 
+0x6384 020009 arg mem_prarm_recfail ,contr 
+0x6385 020010 call send_mem_to_uart 
+0x6386 020011 branch module_disconn_start 
+:      020012 module_page_time_out:
+0x6387 020013 arg 7 ,loopcnt 
+0x6388 020014 arg mem_prarm_pageout ,contr 
+0x6389 020015 call send_mem_to_uart 
+:      020016 module_disconn_start:
+0x638a 020017 call module_start_adv_discovery 
+0x638b 020018 branch module_set_conn_pin_high 
+:      020020 module_start_adv_discovery:
+0x638c 020021 fetch 1 ,mem_module_state 
+0x638d 020022 isolate1 at_state_set30 ,pdata 
+0x638e 020023 call app_bt_start_discovery ,true 
+0x638f 020024 fetch 1 ,mem_module_state 
+0x6390 020025 isolate1 at_state_set40 ,pdata 
+0x6391 020026 call app_ble_start_adv ,true 
+0x6392 020027 rtn 
+:      020028 module_set_conn_pin_high:
+0x6393 020029 fetcht 1 ,mem_module_connect_state_gpio 
+0x6394 020030 branch gpio_out_active 
+:      020032 module_conn_start:
+0x6395 020033 call module_stop_adv_discovery 
+0x6396 020034 branch module_set_conn_pin_low 
+:      020036 module_stop_adv_discovery:
+0x6397 020037 fetch 1 ,mem_module_state 
+0x6398 020038 isolate1 at_state_set30 ,pdata 
+0x6399 020039 call app_bt_stop_discovery ,true 
+0x639a 020040 fetch 1 ,mem_module_state 
+0x639b 020041 isolate1 at_state_set40 ,pdata 
+0x639c 020042 call app_ble_stop_adv ,true 
+0x639d 020043 rtn 
+:      020044 module_set_conn_pin_low:
+0x639e 020045 fetcht 1 ,mem_module_connect_state_gpio 
+0x639f 020046 branch gpio_out_inactive 
+:      020051 module_process:
+0x63a0 020052 fetch 1 ,mem_device_option 
+0x63a1 020053 rtnne dvc_op_module 
+0x63a2 020054 hfetch 2 ,core_uart_rxitems 
+0x63a3 020055 rtn blank 
+0x63a4 020056 store 2 ,mem_current_packet_length 
+0x63a5 020058 call spp_mode 
+0x63a6 020059 branch at_process ,true 
+0x63a7 020060 call at_ckeck_send_buff 
+0x63a8 020061 branch module_tx_packet 
+:      020064 spp_mode:
+0x63a9 020065 fetcht 1 ,mem_at_gpio 
+0x63aa 020066 branch gpio_get_bit 
+:      020069 module_exit_sniff:
+0x63ab 020070 fetch 1 ,mem_module_task 
+0x63ac 020071 rtnbit1 at_task_unsinff 
+0x63ad 020072 call at_set_unsniff_task_flag 
+0x63ae 020073 branch app_bt_sniff_exit 
+:      020075 module_tx_packet:
+0x63af 020076 fetch 1 ,mem_context 
+0x63b0 020077 bbit0 state_inconn ,spp_send_end 
+0x63b1 020078 fetch 1 ,mem_context + coffset_mode 
+0x63b2 020079 bbit1 mode_le ,modle_le_tx 
+0x63b3 020080 call app_check_sniff 
+0x63b4 020081 branch module_exit_sniff ,true 
+0x63b5 020082 branch spp_tx_rfcomm_packet 
+:      020084 module_le_rx:
+0x63b6 020085 call le_att_get_handle_ptr 
+0x63b7 020086 ifetch 1 ,contr 
+0x63b8 020087 copy contr ,rega 
+0x63b9 020088 call get_uart_twptr 
+0x63ba 020089 copy regb ,loopcnt 
+0x63bb 020090 copy rega ,contr 
+0x63bc 020091 call uart_copy_tx_bytes 
+0x63bd 020092 branch uartd_send 
+:      020095 module_le_tx_update_data:
+0x63be 020097 fetch 2 ,mem_module_prepare_tx_len 
+0x63bf 020098 rtn blank 
+0x63c0 020099 arg dm_le_buff_len ,temp 
+0x63c1 020100 call not_greater_than 
+0x63c2 020101 store 2 ,mem_module_temp_len 
+0x63c3 020103 copy pdata ,temp 
+0x63c4 020104 fetch 2 ,mem_module_prepare_tx_len 
+0x63c5 020105 isub temp ,pdata 
+0x63c6 020106 store 2 ,mem_module_prepare_tx_len 
+0x63c7 020107 nbranch assert ,positive 
+0x63c8 020109 arg prcp_tx_le ,temp 
+0x63c9 020110 storet 2 ,mem_le_notify_handle 
+0x63ca 020111 call le_att_get_handle_ptr 
+0x63cb 020112 branch assert ,blank 
+0x63cc 020113 add contr ,1 ,contw 
+0x63cd 020115 fetch 2 ,mem_module_temp_len 
+0x63ce 020116 copy pdata ,loopcnt 
+0x63cf 020118 call get_uart_rrptr 
+0x63d0 020120 call uart_copy_rx_bytes 
+0x63d1 020122 fetch 2 ,mem_module_temp_len 
+0x63d2 020123 store 2 ,mem_current_packet_length 
+0x63d3 020124 store 2 ,mem_le_notify_len 
+0x63d4 020125 branch spp_send_end 
+:      020128 modle_le_tx:
+0x63d5 020129 rtnmark0 mark_context 
+0x63d6 020130 call modle_le_tx_once 
+0x63d7 020131 call modle_le_tx_once 
+:      020132 modle_le_tx_once:
+0x63d8 020133 call le_xtype_fifo_is_near_full 
+0x63d9 020134 nrtn blank 
+0x63da 020135 hfetch 2 ,core_uart_rxitems 
+0x63db 020136 rtn blank 
+0x63dc 020137 fetcht 2 ,mem_module_prepare_tx_len 
+0x63dd 020138 isub temp ,pdata 
+0x63de 020139 nbranch assert ,positive 
+0x63df 020140 store 2 ,mem_current_packet_length 
+0x63e0 020141 rtn blank 
+0x63e1 020142 call at_ckeck_send_buff_le 
+0x63e2 020143 fetch 2 ,mem_module_prepare_tx_len 
+0x63e3 020144 fetcht 2 ,mem_current_packet_length 
+0x63e4 020145 iadd temp ,pdata 
+0x63e5 020146 store 2 ,mem_module_prepare_tx_len 
+0x63e6 020147 fetcht 2 ,mem_module_prepare_tx_len 
+0x63e7 020148 hfetch 2 ,core_uart_rxitems 
+0x63e8 020149 isub temp ,rega 
+0x63e9 020150 nbranch assert ,positive 
+0x63ea 020151 jam attop_handle_value_notification ,mem_fifo_temp 
+0x63eb 020152 branch le_xtype_fifo_in 
+:      020154 module_bb_event_timer:
+0x63ec 020155 storet 1 ,mem_app_evt_timer_count 
+:      020156 module_bb_event_100ms_loop:
+0x63ed 020157 fetch 1 ,mem_app_evt_timer_count 
+0x63ee 020158 rtn blank 
+0x63ef 020159 increase -1 ,pdata 
+0x63f0 020160 store 1 ,mem_app_evt_timer_count 
+0x63f1 020161 call module_bb_event_hud_ms 
+0x63f2 020162 branch module_bb_event_100ms_loop 
+:      020164 module_bb_event_hud_ms:
+0x63f3 020165 fetch 2 ,mem_at_scan_time 
+0x63f4 020166 rtn blank 
+0x63f5 020167 increase -1 ,pdata 
+0x63f6 020168 store 2 ,mem_at_scan_time 
+0x63f7 020169 nrtn blank 
+0x63f8 020170 fetch 1 ,mem_at_using_flag 
+0x63f9 020171 jam 0 ,mem_at_using_flag 
+0x63fa 020172 bbit1 at_flag_leinq ,modue_le_inq 
+0x63fb 020173 bbit1 at_flag_inq ,module_inq 
+0x63fc 020174 branch assert 
+:      020175 modue_le_inq:
+0x63fd 020176 branch app_ble_stop_scan 
+:      020177 module_inq:
+0x63fe 020178 jam hci_cmd_inquiry_cancel ,mem_hci_cmd 
+0x63ff 020179 rtn 
+:      020181 at_ckeck_send_buff:
+0x6400 020182 fetch 1 ,mem_context + coffset_mode 
+0x6401 020183 bbit1 mode_le ,at_ckeck_send_buff_le 
+0x6402 020184 fetch 2 ,mem_current_packet_length 
+0x6403 020185 arg dm_refcom_buff_len ,temp 
+0x6404 020187 call not_greater_than 
+0x6405 020188 store 2 ,mem_current_packet_length 
+0x6406 020189 rtn 
+:      020190 at_ckeck_send_buff_le:
+0x6407 020191 fetch 2 ,mem_current_packet_length 
+0x6408 020192 arg dm_le_buff_len ,temp 
+0x6409 020193 call not_greater_than 
+0x640a 020194 store 2 ,mem_current_packet_length 
+0x640b 020195 rtn 
+:      020197 at_set_unsniff_task_flag:
+0x640c 020198 fetch 1 ,mem_module_task 
+0x640d 020199 set1 at_task_unsinff ,pdata 
+0x640e 020200 store 1 ,mem_module_task 
+0x640f 020201 rtn 
+:      020203 at_clear_unsniff_task_flag:
+0x6410 020204 fetch 1 ,mem_module_task 
+0x6411 020205 set0 at_task_unsinff ,pdata 
+0x6412 020206 store 1 ,mem_module_task 
+0x6413 020207 rtn 
+:      020209 at_set_cmd_task_flag:
+0x6414 020210 fetch 1 ,mem_module_task 
+0x6415 020211 set1 at_task_cmd_flag ,pdata 
+0x6416 020212 store 1 ,mem_module_task 
+0x6417 020213 rtn 
+:      020215 at_clear_cmd_task_flag:
+0x6418 020216 fetch 1 ,mem_module_task 
+0x6419 020217 set0 at_task_cmd_flag ,pdata 
+0x641a 020218 store 1 ,mem_module_task 
+0x641b 020219 rtn 
+:      020221 module_control_air_flow:
+0x641c 020222 set1 mark_ext_patch ,mark 
+0x641d 020223 bpatch patch30_2 ,mem_patch30 
+0x641e 020224 call check_uart_tx_buff 
+0x641f 020225 branch app_l2cap_flow_control_enable ,positive 
+0x6420 020226 branch app_l2cap_flow_control_disable 
+:      020228 module_uart_set:
+0x6421 020229 call spp_mode 
+0x6422 020230 branch module_set_baud_115200 ,true 
+0x6423 020231 hfetcht uart_baud_len ,core_uart_baud 
+0x6424 020232 fetch 2 ,mem_baud 
+0x6425 020233 isub temp ,null 
+0x6426 020234 rtn zero 
+0x6427 020235 branch uart_set_baud_by_mem 
+:      020238 module_set_baud_115200:
+0x6428 020239 hfetcht uart_baud_len ,core_uart_baud 
+0x6429 020240 setarg at_baud_115200 
+0x642a 020241 isub temp ,null 
+0x642b 020242 rtn zero 
+0x642c 020243 hstore uart_baud_len ,core_uart_baud 
+0x642d 020244 rtn 
+:      020246 module_check_cmode:
+0x642e 020247 set1 mark_ext_patch ,mark 
+0x642f 020248 bpatch patch30_3 ,mem_patch30 
+0x6430 020249 fetch 1 ,mem_module_state 
+0x6431 020250 isolate0 at_state_cmode ,pdata 
+0x6432 020251 branch module_check_cmode_close ,true 
+0x6433 020252 arg mem_cmode_addr ,rega 
+0x6434 020253 arg 6 ,loopcnt 
+0x6435 020254 branch string_compare 
+:      020255 module_check_cmode_close:
+0x6436 020256 force 0 ,null 
+0x6437 020257 rtn 
+:      020259 module_init_static_string:
+0x6438 020260 set1 mark_ext_patch ,mark 
+0x6439 020261 bpatch patch30_4 ,mem_patch30 
+0x643a 020262 arg mem_prarm_pswd ,contw 
+0x643b 020263 setsect 0 ,0x35350 
+0x643c 020264 setsect 1 ,0x15115 
+0x643d 020265 setsect 2 ,0x12415 
+0x643e 020266 setsect 3 ,0x10951 
+0x643f 020267 istore 9 ,contw 
+0x6440 020268 setsect 0 ,0x2454c 
+0x6441 020269 setsect 1 ,0x35053 
+0x6442 020270 setsect 2 ,0x2454 
+0x6443 020271 setsect 3 ,0x11531 
+0x6444 020272 istore 9 ,contw 
+0x6445 020273 setsect 0 ,0x34441 
+0x6446 020274 setsect 1 ,0x194d4 
+0x6447 020275 setsect 2 ,0x12455 
+0x6448 020276 setsect 3 ,0x10d4d 
+0x6449 020277 istore 9 ,contw 
+0x644a 020278 setsect 0 ,0x3414c 
+0x644b 020279 setsect 1 ,0xd4d4 
+0x644c 020280 setsect 2 ,0x124c4 
+0x644d 020281 setsect 3 ,0x13119 
+0x644e 020282 istore 9 ,contw 
+0x644f 020283 setsect 0 ,0x15247 
+0x6450 020284 setsect 1 ,0x3d0d1 
+0x6451 020285 setsect 2 ,0xe4e4 
+0x6452 020286 setsect 3 ,0x11531 
+0x6453 020287 istore 9 ,contw 
+0x6454 020288 setsect 0 ,0x34944 
+0x6455 020289 setsect 1 ,0x114d4 
+0x6456 020290 setsect 2 ,0xe535 
+0x6457 020291 setsect 3 ,0x15105 
+0x6458 020292 istore 9 ,contw 
+0x6459 020293 setsect 0 ,0x14c2b 
+0x645a 020294 setsect 1 ,0x114d2 
+0x645b 020295 setsect 2 ,0xf525 
+0x645c 020296 setsect 3 ,0x11531 
+0x645d 020297 istore 9 ,contw 
+0x645e 020298 setsect 0 ,0x14e53 
+0x645f 020299 setsect 1 ,0x19192 
+0x6460 020300 setsect 2 ,0x44c4 
+0x6461 020301 setsect 3 ,0x15915 
+0x6462 020302 istore 9 ,contw 
+0x6463 020303 setsect 0 ,0x35352 
+0x6464 020304 setsect 1 ,0xd254 
+0x6465 020305 setsect 2 ,0x5444 
+0x6466 020306 setsect 3 ,0x10959 
+0x6467 020307 istore 9 ,contw 
+0x6468 020308 setsect 0 ,0x1454c 
+0x6469 020309 setsect 1 ,0x5392 
+0x646a 020310 setsect 2 ,0x3525 
+0x646b 020311 setsect 3 ,0x13d35 
+0x646c 020312 istore 9 ,contw 
+0x646d 020313 setsect 0 ,0x14544 
+0x646e 020314 setsect 1 ,0x113d3 
+0x646f 020315 setsect 2 ,0x4454 
+0x6470 020316 setsect 3 ,0x14d35 
+0x6471 020317 istore 9 ,contw 
+0x6472 020318 setsect 0 ,0x4154 
+0x6473 020319 setsect 1 ,0x11155 
+0x6474 020320 setsect 2 ,0x13494 
+0x6475 020321 setsect 3 ,0x13d0d 
+0x6476 020322 istore 9 ,contw 
+0x6477 020323 setsect 0 ,0x4f56 
+0x6478 020324 setsect 1 ,0x31055 
+0x6479 020325 setsect 2 ,0x3454 
+0x647a 020326 setsect 3 ,0x1393d 
+0x647b 020327 istore 9 ,contw 
+0x647c 020328 setsect 0 ,0x1504e 
+0x647d 020329 setsect 1 ,0x151d0 
+0x647e 020330 setsect 2 ,0x154f4 
+0x647f 020331 setsect 3 ,0x14951 
+0x6480 020332 istore 9 ,contw 
+0x6481 020333 setsect 0 ,0x24345 
+0x6482 020334 setsect 1 ,0x25051 
+0x6483 020335 setsect 2 ,0x4c4 
+0x6484 020336 istore 6 ,contw 
+0x6485 020337 rtn 
+:      020341 mouse_init:
+0x6486 020342 setarg le_mouse 
+0x6487 020343 store 2 ,mem_cb_le_process 
+0x6488 020344 setarg mouse_send_process 
+0x6489 020345 store 2 ,mem_cb_bt_process 
+0x648a 020346 setarg mouse_process_lpm_before 
+0x648b 020347 store 2 ,mem_cb_before_lpm 
+0x648c 020348 setarg mouse_priority_bb_event 
+0x648d 020349 store 2 ,mem_cb_bb_event_process 
+0x648e 020350 setarg mouse_idle 
+0x648f 020351 store 2 ,mem_cb_idle_process 
+0x6490 020352 setarg mouse_le_notify_update_data 
+0x6491 020353 store 2 ,mem_cb_update_notify_value 
+0x6492 020354 jam 0 ,mem_sp_flag 
+0x6493 020355 jam 0 ,mem_master_sp_flag 
+0x6494 020356 set0 mark_ext_patch ,mark 
+0x6495 020357 bpatch patch18_0 ,mem_patch18 
+0x6496 020358 call mouse_init_common 
+0x6497 020359 rtn wake 
+0x6498 020360 call mouse_init_environment 
+0x6499 020361 call mouse_dpi_init 
+0x649a 020362 setarg mouse_before_hibernate 
+0x649b 020363 store 2 ,mem_cb_before_hibernate 
+0x649c 020364 fetch 2 ,mem_ui_state_map 
+0x649d 020365 bbit1 ui_state_btn_down ,mouse_start_discovery 
+0x649e 020366 branch mouse_check_reconn_target 
+:      020368 mouse_init_environment:
+0x649f 020369 call app_initflag_check 
+0x64a0 020370 branch mouse_load_eeprom_param ,zero 
+0x64a1 020371 call eeprom_store_le_local_addr 
+0x64a2 020372 call eeprom_store_mouse_dpi 
+0x64a3 020373 branch app_initflag_store 
+:      020374 mouse_load_eeprom_param:
+0x64a4 020375 call eeprom_load_reconn_info 
+0x64a5 020376 call eeprom_load_le_loacal_addr 
+0x64a6 020377 branch eeprom_load_mouse_dpi 
+:      020379 mouse_dpi_init:
+0x64a7 020380 jam dpi_button_state_up ,mem_mouse_dpi_button_state 
+0x64a8 020381 branch mouse_modified_dpi 
+:      020383 mouse_idle:
+0x64a9 020384 call ui_check_paring_button 
+0x64aa 020385 call mouse_check_dpi 
+0x64ab 020386 branch mouse_wheel_check 
+:      020388 mouse_check_dpi:
+0x64ac 020389 fetcht 1 ,mem_dpi_button_gpio 
+0x64ad 020390 call gpio_get_bit 
+0x64ae 020391 nbranch mouse_dpi_up ,true 
+:      020392 mouse_dpi_down:
+0x64af 020393 fetch 1 ,mem_mouse_dpi_button_state 
+0x64b0 020394 rtneq dpi_button_state_down 
+0x64b1 020395 jam dpi_button_state_down ,mem_mouse_dpi_button_state 
+0x64b2 020396 rtn 
+:      020397 mouse_dpi_up:
+0x64b3 020398 fetch 1 ,mem_mouse_dpi_button_state 
+0x64b4 020399 rtneq dpi_button_state_up 
+0x64b5 020400 jam dpi_button_state_up ,mem_mouse_dpi_button_state 
+0x64b6 020401 fetch 1 ,mem_mouse_dpi 
+0x64b7 020402 increase 1 ,pdata 
+0x64b8 020403 and pdata ,0x03 ,pdata 
+0x64b9 020404 store 1 ,mem_mouse_dpi 
+0x64ba 020405 branch mouse_modified_dpi 
+:      020406 mouse_modified_dpi:
+0x64bb 020407 setarg mouse_dpi_address 
+0x64bc 020408 call twspi_read 
+0x64bd 020409 and pdata ,0xfc ,temp 
+0x64be 020410 fetch 1 ,mem_mouse_dpi 
+0x64bf 020411 iadd temp ,pdata 
+0x64c0 020412 lshift8 pdata ,pdata 
+0x64c1 020413 add pdata ,mouse_dpi_address ,pdata 
+0x64c2 020414 call twspi_write 
+0x64c3 020415 branch eeprom_store_mouse_dpi 
+:      020417 mouse_init_common:
+0x64c4 020418 call mouse_init_sunt 
+0x64c5 020419 call mouse_gpio_init 
+0x64c6 020420 hfetch 2 ,core_clkoff 
+0x64c7 020421 set0 clock_off_qdecoder ,pdata 
+0x64c8 020422 hstore 2 ,core_clkoff 
+0x64c9 020423 rtn 
+:      020425 mouse_gpio_init:
+0x64ca 020426 call lpm_disable_exen_output 
+0x64cb 020427 fetcht 1 ,mem_whee_a_data_gpio 
+0x64cc 020428 call gpio_config_input 
+0x64cd 020429 fetcht 1 ,mem_whee_b_data_gpio 
+0x64ce 020430 call gpio_config_input 
+0x64cf 020431 fetcht 1 ,mem_lbutton_gpio 
+0x64d0 020432 call gpio_config_input 
+0x64d1 020433 fetcht 1 ,mem_rbutton_gpio 
+0x64d2 020434 call gpio_config_input 
+0x64d3 020435 fetcht 1 ,mem_mbutton_gpio 
+0x64d4 020436 call gpio_config_input 
+0x64d5 020437 fetcht 1 ,mem_sensor_data_gpio 
+0x64d6 020438 call gpio_config_input 
+0x64d7 020439 fetcht 1 ,mem_dpi_button_gpio 
+0x64d8 020440 call gpio_config_input 
+0x64d9 020441 hfetch 1 ,core_gpio_pu3 
+0x64da 020442 or_into 0x18 ,pdata 
+0x64db 020443 hstore 1 ,core_gpio_pu3 
+0x64dc 020444 hfetch 1 ,core_gpio_pd2 + 1 
+0x64dd 020445 and_into 0xe7 ,pdata 
+0x64de 020446 hstore 1 ,core_gpio_pd2 + 1 
+0x64df 020447 rtn 
+:      020450 mouse_before_hibernate:
+0x64e0 020451 setarg 0xbc05 
+0x64e1 020452 call twspi_write 
+0x64e2 020453 jam 1 ,mem_lpm_current_mult 
+:      020455 mouse_process_lpm_before:
+0x64e3 020456 call mouse_wheel_check 
+0x64e4 020457 arg 25 ,temp 
+0x64e5 020458 call gpio_config_output 
+0x64e6 020459 hjam 0 ,core_gpio_sel1 
+0x64e7 020460 fetcht 1 ,mem_whee_a_data_gpio 
+0x64e8 020461 call gpio_set_wake_by_current_state 
+0x64e9 020462 fetcht 1 ,mem_whee_b_data_gpio 
+0x64ea 020463 call gpio_set_wake_by_current_state 
+0x64eb 020464 fetcht 1 ,mem_lbutton_gpio 
+0x64ec 020465 call gpio_set_wake_by_current_state 
+0x64ed 020466 fetcht 1 ,mem_rbutton_gpio 
+0x64ee 020467 call gpio_set_wake_by_current_state 
+0x64ef 020468 fetcht 1 ,mem_mbutton_gpio 
+0x64f0 020469 call gpio_set_wake_by_current_state 
+0x64f1 020470 fetcht 1 ,mem_sensor_data_gpio 
+0x64f2 020471 call gpio_set_wake 
+0x64f3 020472 fetch 1 ,mem_lpm_current_mult 
+0x64f4 020473 nrtn blank 
+0x64f5 020474 branch gpio_clr_wake 
+:      020476 mouse_wheel_check:
+0x64f6 020477 set0 mark_ext_patch ,mark 
+0x64f7 020478 bpatch patch18_1 ,mem_patch18 
+0x64f8 020479 arg 0 ,rega 
+0x64f9 020480 fetcht 1 ,mem_whee_a_data_gpio 
+0x64fa 020481 call gpio_get_bit 
+0x64fb 020482 setflag true ,0 ,rega 
+0x64fc 020483 fetcht 1 ,mem_whee_b_data_gpio 
+0x64fd 020484 call gpio_get_bit 
+0x64fe 020485 setflag true ,1 ,rega 
+0x64ff 020486 copy rega ,pdata 
+0x6500 020488 and_into 0x3 ,pdata 
+0x6501 020489 fetcht 1 ,mem_mouse_z_now 
+0x6502 020490 store 1 ,mem_mouse_z_now 
+0x6503 020491 isub temp ,null 
+0x6504 020492 branch mouse_wheel_clear ,zero 
+0x6505 020493 fetch 1 ,mem_mouse_z_before 
+0x6506 020494 store 1 ,mem_mouse_z_last 
+0x6507 020495 storet 1 ,mem_mouse_z_before 
+0x6508 020496 fetch 1 ,mem_mouse_z_now 
+0x6509 020497 lshift4 pdata ,pdata 
+0x650a 020498 fetcht 1 ,mem_mouse_z_before 
+0x650b 020499 lshift2 temp ,temp 
+0x650c 020500 iadd temp ,pdata 
+0x650d 020501 fetcht 1 ,mem_mouse_z_last 
+0x650e 020502 iadd temp ,pdata 
+0x650f 020503 beq 0x38 ,mouse_wheel_forward 
+0x6510 020504 beq 0x34 ,mouse_wheel_back 
+0x6511 020505 beq 0x0b ,mouse_wheel_back 
+0x6512 020506 beq 0x07 ,mouse_wheel_forward 
+0x6513 020507 rtn 
+:      020509 mouse_wheel_clear:
+0x6514 020510 rtn 
+:      020512 mouse_wheel_forward:
+0x6515 020513 fetch 1 ,mem_mouse_z_data 
+0x6516 020514 increase 1 ,pdata 
+0x6517 020515 store 1 ,mem_mouse_z_data 
+0x6518 020516 rtn 
+:      020518 mouse_wheel_back:
+0x6519 020519 fetch 1 ,mem_mouse_z_data 
+0x651a 020520 increase -1 ,pdata 
+0x651b 020521 store 1 ,mem_mouse_z_data 
+0x651c 020522 rtn 
+:      020524 mouse_process_ble:
+0x651d 020526 rtn 
+:      020527 mouse_sleep_sensor:
+0x651e 020528 setarg 0xB805 
+0x651f 020529 branch twspi_write 
+:      020531 mouse_bb_connected:
+0x6520 020532 rtn 
+:      020534 le_mouse_bb_event_write_request:
+0x6521 020535 call app_ble_store_reconn_info 
+0x6522 020536 jam mouse_mode_state_ble ,mem_mouse_mode_state 
+0x6523 020537 call app_lpm_mult_enable 
+:      020538 le_mouse_bb_event_enc_info:
+0x6524 020539 branch app_ble_start_write 
+:      020541 le_hibernate_timer:
+0x6525 020542 fetch 2 ,mem_le_hibernate_timer 
+0x6526 020543 rtn blank 
+0x6527 020544 increase -1 ,pdata 
+0x6528 020545 store 2 ,mem_le_hibernate_timer 
+0x6529 020546 nrtn blank 
+0x652a 020547 branch app_enter_hibernate 
+:      020549 mouse_hid_connected:
+0x652b 020550 setarg hid_handshake_timeout 
+0x652c 020551 store 1 ,mem_hid_handshake_timer_count 
+0x652d 020552 rtn 
+:      020554 mouse_send_process:
+0x652e 020555 fetch 1 ,mem_app_handshake_flag 
+0x652f 020556 rtn blank 
+0x6530 020557 call l2cap_malloc_is_fifo_nearly_full 
+0x6531 020558 nrtn blank 
+0x6532 020559 call mouse_motion 
+0x6533 020560 nrtn user 
+0x6534 020561 call mouse_no_data_timer_init 
+0x6535 020562 call mouse_send_blank_packet_timer_init 
+:      020563 mouse_send_data:
+0x6536 020564 arg 8 ,rega 
+0x6537 020565 call hid_malloc_tx_buff 
+0x6538 020566 fetch 2 ,mem_hid_int_remote_cid 
+0x6539 020567 istore 2 ,contw 
+0x653a 020568 setarg 0x02a1 
+0x653b 020569 istore 2 ,contw 
+0x653c 020570 fetch 1 ,mem_mouse_key 
+0x653d 020571 istore 1 ,contw 
+0x653e 020572 fetch 2 ,mem_mouse_x 
+0x653f 020573 arg 0xfff ,temp 
+0x6540 020574 iand temp ,pdata 
+0x6541 020575 fetcht 2 ,mem_mouse_y 
+0x6542 020576 lshift4 temp ,temp 
+0x6543 020577 lshift8 temp ,temp 
+0x6544 020578 ior temp ,pdata 
+0x6545 020579 istore 3 ,contw 
+0x6546 020580 fetch 1 ,mem_mouse_z 
+0x6547 020581 istore 1 ,contw 
+0x6548 020582 setarg 0 
+0x6549 020583 istore 1 ,contw 
+0x654a 020584 jam 8 ,mem_ui_data_txbuff_length 
+0x654b 020585 rtn 
+:      020588 mouse_send_blank_packet_timer:
+0x654c 020589 set0 mark_ext_patch ,mark 
+0x654d 020590 bpatch patch18_2 ,mem_patch18 
+0x654e 020591 fetch 1 ,mem_mouse_send_blank_timer 
+0x654f 020592 rtn blank 
+0x6550 020593 increase -1 ,pdata 
+0x6551 020594 store 1 ,mem_mouse_send_blank_timer 
+0x6552 020595 nrtn blank 
+0x6553 020596 call l2cap_malloc_is_fifo_empty 
+0x6554 020597 nrtn blank 
+0x6555 020598 setarg 0 
+0x6556 020599 store 5 ,mem_mouse_x 
+0x6557 020600 call mouse_send_data 
+0x6558 020601 jam mouse_send_blank_timer ,mem_mouse_send_blank_timer 
+0x6559 020602 rtn 
+:      020603 mouse_send_blank_packet_timer_init:
+0x655a 020604 fetch 2 ,mem_mouse_blank_data_timeout 
+0x655b 020605 store 2 ,mem_mouse_blank_data_timer 
+0x655c 020606 jam mouse_send_blank_timer ,mem_mouse_send_blank_timer 
+0x655d 020607 rtn 
+:      020609 mouse_no_data_timer_init:
+0x655e 020610 fetch 2 ,mem_mouse_no_data_timeout 
+0x655f 020611 store 2 ,mem_mouse_no_data_timer 
+0x6560 020612 rtn 
+:      020615 mouse_le_notify_update_data:
+0x6561 020616 fetcht 2 ,mem_le_notify_handle 
+0x6562 020617 call le_att_get_handle_ptr 
+0x6563 020618 ifetch 1 ,contr 
+0x6564 020619 store 1 ,mem_le_notify_len 
+0x6565 020620 rtn 
+:      020623 mouse_fill_data_le:
+0x6566 020624 set0 mark_ext_patch ,mark 
+0x6567 020625 bpatch patch18_3 ,mem_patch18 
+0x6568 020626 fetcht 2 ,mem_le_notify_handle 
+0x6569 020627 call le_att_get_handle_ptr 
+0x656a 020628 add contr ,1 ,contw 
+:      020629 mouse_fill_data:
+0x656b 020630 fetch 1 ,mem_mouse_key 
+0x656c 020631 istore 1 ,contw 
+0x656d 020632 fetch 2 ,mem_mouse_x 
+0x656e 020633 arg 0xfff ,temp 
+0x656f 020634 iand temp ,pdata 
+0x6570 020635 fetcht 2 ,mem_mouse_y 
+0x6571 020636 lshift4 temp ,temp 
+0x6572 020637 lshift8 temp ,temp 
+0x6573 020638 ior temp ,pdata 
+0x6574 020639 istore 3 ,contw 
+0x6575 020640 fetch 1 ,mem_mouse_z 
+0x6576 020641 istore 1 ,contw 
+0x6577 020642 rtn 
+:      020644 mouse_motion:
+0x6578 020645 set0 mark_ext_patch ,mark 
+0x6579 020646 bpatch patch18_4 ,mem_patch18 
+0x657a 020647 disable user 
+0x657b 020648 setarg 0 
+0x657c 020649 store 5 ,mem_mouse_x 
+0x657d 020650 call p3204_motion 
+0x657e 020651 call p3204_sdio_low 
+0x657f 020652 call mouse_zwheel 
+0x6580 020653 branch mouse_key 
+:      020655 p3204_motion:
+0x6581 020656 fetch 1 ,mem_sensor_type 
+0x6582 020657 rtnne sensor_type_p3204 
+0x6583 020658 fetch 1 ,mem_mouse_move_flag 
+0x6584 020659 call p3204_clear_data ,blank 
+0x6585 020660 jam 1 ,mem_mouse_move_flag 
+0x6586 020661 disable user 
+0x6587 020662 fetcht 1 ,mem_sensor_data_gpio 
+0x6588 020663 call gpio_get_bit 
+0x6589 020664 nrtn true 
+0x658a 020665 setarg 0 
+0x658b 020666 call twspi_read 
+0x658c 020667 bne p3204_id ,twspi_reset 
+0x658d 020668 setarg 2 
+0x658e 020669 call twspi_read 
+0x658f 020670 rtnbit0 7 
+0x6590 020671 setarg 3 
+0x6591 020672 call twspi_read 
+0x6592 020673 call extsign 
+0x6593 020674 store 2 ,mem_mouse_x 
+0x6594 020675 setarg 4 
+0x6595 020676 call twspi_read 
+0x6596 020677 call extsign 
+0x6597 020678 sub pdata ,0 ,pdata 
+0x6598 020679 store 2 ,mem_mouse_y 
+0x6599 020680 fetch 4 ,mem_mouse_x 
+0x659a 020681 enable user 
+0x659b 020682 rtn 
+:      020683 mouse_zwheel:
+0x659c 020684 fetch 1 ,mem_mouse_z_data 
+0x659d 020685 rtn blank 
+0x659e 020686 store 1 ,mem_mouse_z 
+0x659f 020687 jam 0 ,mem_mouse_z_data 
+0x65a0 020688 enable user 
+0x65a1 020689 rtn 
+:      020690 mouse_key:
+0x65a2 020691 arg 0 ,rega 
+0x65a3 020692 fetcht 1 ,mem_lbutton_gpio 
+0x65a4 020693 call gpio_get_bit 
+0x65a5 020694 setflag true ,0 ,rega 
+0x65a6 020695 fetcht 1 ,mem_rbutton_gpio 
+0x65a7 020696 call gpio_get_bit 
+0x65a8 020697 setflag true ,1 ,rega 
+0x65a9 020698 fetcht 1 ,mem_mbutton_gpio 
+0x65aa 020699 call gpio_get_bit 
+0x65ab 020700 setflag true ,2 ,rega 
+0x65ac 020701 deposit rega 
+0x65ad 020702 fetcht 1 ,mem_mouse_key 
+0x65ae 020703 store 1 ,mem_mouse_key 
+0x65af 020704 ixor temp ,pdata 
+0x65b0 020705 sub pdata ,0 ,null 
+0x65b1 020706 rtn zero 
+0x65b2 020707 enable user 
+0x65b3 020708 rtn 
+:      020713 p3204_sdio_low:
+0x65b4 020714 arg 26 ,temp 
+0x65b5 020715 call gpio_get_bit 
+0x65b6 020716 rtn true 
+0x65b7 020717 setarg 0 
+0x65b8 020718 call twspi_read 
+0x65b9 020719 branch p3204_sdio_low 
+:      020721 p3204_clear_data:
+0x65ba 020722 arg 0 ,loopcnt 
+:      020723 p3204_clear_data_loop:
+0x65bb 020724 setarg 2 
+0x65bc 020725 call twspi_read 
+0x65bd 020726 nop 100 
+0x65be 020727 increase 1 ,loopcnt 
+0x65bf 020728 fetcht 1 ,mem_sensor_data_gpio 
+0x65c0 020729 call gpio_get_bit 
+0x65c1 020730 branch p3204_clear_data_loop ,true 
+0x65c2 020731 deposit loopcnt 
+0x65c3 020732 store 2 ,mem_init_cnt 
+0x65c4 020733 rtn 
+:      020734 mouse_init_sunt:
+0x65c5 020735 call spid_init 
+0x65c6 020736 rtn wake 
+:      020738 mouse_init_p3204:
+0x65c7 020739 setarg 0 
+0x65c8 020740 call twspi_read 
+0x65c9 020741 store 1 ,mem_sensor_id 
+0x65ca 020742 beq p3204_id ,mouse_init_p3204_cont 
+0x65cb 020743 call twspi_reset 
+0x65cc 020744 nop 10000 
+0x65cd 020745 branch mouse_init_p3204 
+:      020746 mouse_init_p3204_cont:
+0x65ce 020747 setarg 0x8006 
+0x65cf 020748 call twspi_write 
+0x65d0 020749 nop 1000 
+0x65d1 020750 jam sensor_type_p3204 ,mem_sensor_type 
+0x65d2 020751 rtn 
+:      020755 extsign:
+0x65d3 020756 rtnbit0 7 
+0x65d4 020757 arg 0xff00 ,temp 
+0x65d5 020758 ior temp ,pdata 
+0x65d6 020759 rtn 
+:      020763 le_mouse:
+0x65d7 020764 call le_xtype_fifo_is_near_full 
+0x65d8 020765 nrtn blank 
+0x65d9 020766 fetcht 2 ,mem_le_notify_handle 
+0x65da 020767 call le_att_check_notification_enable 
+0x65db 020768 rtnbit0 0 
+0x65dc 020769 fetch 1 ,mem_le_switch_send_data 
+0x65dd 020770 rtnbit0 0 
+0x65de 020771 call mouse_motion 
+0x65df 020773 nrtn user 
+0x65e0 020774 call mouse_no_data_timer_init 
+0x65e1 020776 jam attop_handle_value_notification ,mem_fifo_temp 
+0x65e2 020777 call le_xtype_fifo_in 
+0x65e3 020778 branch mouse_fill_data_le 
+:      020780 mouse_test:
+0x65e4 020781 rtn user 
+0x65e5 020782 fetch 1 ,mem_mouse_test_cnt 
+0x65e6 020783 increase 1 ,pdata 
+0x65e7 020784 store 1 ,mem_mouse_test_cnt 
+0x65e8 020785 arg 1 ,temp 
+0x65e9 020786 bbit0 7 ,mouse_test_pos 
+0x65ea 020787 arg 0xffff ,temp 
+:      020788 mouse_test_pos:
+0x65eb 020789 storet 5 ,mem_mouse_x 
+0x65ec 020790 enable user 
+0x65ed 020791 rtn 
+:      020793 mouse_check_mode_state:
+0x65ee 020794 disable user 
+0x65ef 020795 fetch 1 ,mem_mouse_mode_state 
+0x65f0 020796 rtneq mouse_mode_state_ble 
+0x65f1 020797 enable user 
+0x65f2 020798 rtn 
+:      020800 mouse_priority_bb_event:
+0x65f3 020801 copy regc ,pdata 
+0x65f4 020802 beq bt_evt_le_connected ,le_mouse_bb_event_connected 
+0x65f5 020803 beq bt_evt_bb_connected ,mouse_stop_discovery 
+0x65f6 020804 beq bt_evt_le_disconnected ,mouse_bb_disconnected 
+0x65f7 020805 beq bt_evt_bb_disconnected ,mouse_bb_disconnected 
+0x65f8 020806 beq bt_evt_setup_complete ,mouse_bt_event_setup_complete 
+0x65f9 020807 beq bt_evt_button_long_pressed ,mouse_bb_event_discovery_btn 
+0x65fa 020808 beq bt_evt_hid_handshake ,mouse_bt_hid_handshake 
+0x65fb 020809 beq bt_evt_hid_connected ,mouse_bt_hid_connected 
+0x65fc 020810 beq bt_evt_le_write_request ,le_mouse_bb_event_write_request 
+0x65fd 020811 beq bt_evt_le_enc_info ,le_mouse_bb_event_enc_info 
+0x65fe 020812 beq bt_evt_reconn_failed ,mouse_bb_event_reconn_failed 
+0x65ff 020813 beq bt_evt_reconn_page_timeout ,mouse_bb_event_reconn_failed 
+0x6600 020814 beq bt_evt_pincode_req ,mouse_bb_event_pincode 
+0x6601 020815 beq bt_evt_remote_unsniff ,app_start_auto_sniff 
+0x6602 020816 and pdata ,0x0f ,temp 
+0x6603 020817 and_into bt_evt_timer_mask ,pdata 
+0x6604 020818 beq bt_evt_timer_init ,mouse_bb_event_timer 
+0x6605 020819 rtn 
+:      020821 le_mouse_bb_event_connected:
+0x6606 020822 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x6607 020823 set0 app_disc_by_button ,pdata 
+0x6608 020824 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+0x6609 020825 setarg 0 
+0x660a 020826 store 2 ,mem_mouse_direct_timer 
+0x660b 020827 fetch 1 ,mem_conn_cnt 
+0x660c 020828 increase 1 ,pdata 
+0x660d 020829 store 1 ,mem_conn_cnt 
+0x660e 020830 branch mouse_stop_discovery 
+:      020832 mouse_bb_event_pincode:
+0x660f 020833 call pincode_reinit 
+0x6610 020834 branch app_bt_set_pincode 
+:      020836 mouse_bb_event_reconn_failed:
+0x6611 020837 fetch 2 ,mem_ui_state_map 
+0x6612 020838 bbit1 ui_state_btn_down ,mouse_start_discovery 
+0x6613 020839 branch app_bb_hibernate 
+:      020842 mouse_bt_hid_connected:
+0x6614 020843 call mouse_hid_connected 
+0x6615 020844 rtn 
+:      020845 mouse_bt_event_setup_complete:
+0x6616 020846 rtn 
+:      020848 mouse_bb_disconnected:
+0x6617 020849 set0 mark_ext_patch ,mark 
+0x6618 020850 bpatch patch18_5 ,mem_patch18 
+0x6619 020851 call mouse_bb_discon_clear_stack 
+0x661a 020852 fetch app_disc_rsn_size ,mem_app_disconn_reason 
+0x661b 020853 bbit1 app_disc_ble ,mouse4_0_event_bb_disconn 
+0x661c 020854 bbit1 app_disc_by_button ,app_disconn_reason_clear 
+0x661d 020855 bbit1 app_disc_after_pairing ,mouse_event_light_state_pairing 
+0x661e 020856 bbit1 app_disc_after_reconn ,mouse_event_light_state_hibernate 
+0x661f 020857 bbit1 app_disc_after_sniff ,mouse_event_light_state_hibernate 
+0x6620 020858 branch mouse_start_discovery 
+:      020859 mouse_bb_discon_clear_stack:
+0x6621 020860 setarg 0 
+0x6622 020861 store 4 ,mem_mouse_z_last 
+0x6623 020862 jam 0 ,mem_mouse_send_blank_timer 
+0x6624 020863 jam 0 ,mem_mouse_move_flag 
+0x6625 020864 jam app_handshake_null ,mem_app_handshake_flag 
+0x6626 020865 jam 0 ,mem_ltk_exists 
+0x6627 020866 jam 0 ,mem_mouse_mode_state 
+0x6628 020867 jam 0 ,mem_reconnect_timeout 
+0x6629 020868 rtn 
+:      020870 mouse_event_light_state_pairing:
+0x662a 020871 bbit1 app_disc_after_handshake ,mouse_event_light_state_hibernate 
+0x662b 020872 bbit1 app_disc_after_sniff ,mouse_event_light_state_hibernate 
+0x662c 020873 branch mouse_start_discovery 
+:      020874 mouse_event_light_state_hibernate:
+0x662d 020875 fetch 2 ,mem_ui_state_map 
+0x662e 020876 bbit1 ui_state_btn_down ,mouse_start_discovery 
+0x662f 020877 branch app_bb_hibernate 
+:      020879 mouse4_0_event_bb_disconn:
+0x6630 020880 call le_clean_att_list_handle_enable 
+0x6631 020881 fetch app_disc_rsn_size ,mem_app_disconn_reason 
+0x6632 020882 bbit1 app_disc_by_button ,app_disconn_reason_clear 
+0x6633 020883 branch app_bb_hibernate 
+:      020885 mouse_bb_event_timer:
+0x6634 020886 set0 mark_ext_patch ,mark 
+0x6635 020887 bpatch patch18_6 ,mem_patch18 
+0x6636 020888 storet 1 ,mem_app_evt_timer_count 
+:      020889 mouse_bb_event_100ms_loop:
+0x6637 020890 fetch 1 ,mem_app_evt_timer_count 
+0x6638 020891 rtn blank 
+0x6639 020892 increase -1 ,pdata 
+0x663a 020893 store 1 ,mem_app_evt_timer_count 
+0x663b 020896 call mouse_check_hid_handshake_timer 
+0x663c 020897 call mouse_check_discovery_timeout_timer 
+0x663d 020898 call mouse_check_direct_timeout_timer 
+0x663e 020899 call mouse_check_no_data_timeout_timer 
+0x663f 020901 fetch 1 ,mem_mouse_mode_state 
+0x6640 020902 compare mouse_mode_state_ble ,pdata ,0xff 
+0x6641 020903 call mouse4_0_bb_event_100ms ,true 
+0x6642 020904 fetch 1 ,mem_mouse_mode_state 
+0x6643 020905 compare mouse_mode_state_bt ,pdata ,0xff 
+0x6644 020906 call mouse3_0_bb_event_100ms ,true 
+0x6645 020907 branch mouse_bb_event_100ms_loop 
+:      020909 mouse3_0_bb_event_100ms:
+0x6646 020911 call mouse_check_blank_data_timeout_timer 
+0x6647 020912 branch mouse_send_blank_packet_timer 
+:      020914 mouse4_0_bb_event_100ms:
+0x6648 020916 rtn 
+:      020918 mouse_check_hid_handshake_timer:
+0x6649 020919 fetch 1 ,mem_hid_handshake_timer_count 
+0x664a 020920 rtn blank 
+0x664b 020921 increase -1 ,pdata 
+0x664c 020922 store 1 ,mem_hid_handshake_timer_count 
+0x664d 020923 nrtn blank 
+0x664e 020924 branch mouse_bt_hid_handshake 
+:      020926 mouse_check_discovery_timeout_timer:
+0x664f 020927 fetch 2 ,mem_mouse_discovery_timer 
+0x6650 020928 rtn blank 
+0x6651 020929 increase -1 ,pdata 
+0x6652 020930 store 2 ,mem_mouse_discovery_timer 
+0x6653 020931 nrtn blank 
+0x6654 020932 call mouse_stop_discovery 
+0x6655 020933 branch app_enter_hibernate 
+:      020935 mouse_check_direct_timeout_timer:
+0x6656 020936 fetch 2 ,mem_mouse_direct_timer 
+0x6657 020937 rtn blank 
+0x6658 020938 increase -1 ,pdata 
+0x6659 020939 store 2 ,mem_mouse_direct_timer 
+0x665a 020940 nrtn blank 
+0x665b 020941 call app_ble_stop_direct_adv 
+0x665c 020942 branch app_enter_hibernate 
+:      020944 mouse_check_blank_data_timeout_timer:
+0x665d 020945 fetch 2 ,mem_mouse_blank_data_timer 
+0x665e 020946 rtn blank 
+0x665f 020947 increase -1 ,pdata 
+0x6660 020948 store 2 ,mem_mouse_blank_data_timer 
+0x6661 020949 nrtn blank 
+0x6662 020950 jam 0 ,mem_mouse_send_blank_timer 
+0x6663 020951 rtn 
+:      020953 mouse_check_no_data_timeout_timer:
+0x6664 020954 fetch 2 ,mem_mouse_no_data_timer 
+0x6665 020955 rtn blank 
+0x6666 020956 increase -1 ,pdata 
+0x6667 020957 store 2 ,mem_mouse_no_data_timer 
+0x6668 020958 nrtn blank 
+0x6669 020959 branch mouse_disconnect 
+:      020961 mouse_bb_event_discovery_btn:
+0x666a 020962 set0 mark_ext_patch ,mark 
+0x666b 020963 bpatch patch18_7 ,mem_patch18 
+0x666c 020964 jam 0 ,mem_mouse_send_blank_timer 
+0x666d 020965 jam 1 ,mem_reconnect_timeout 
+0x666e 020966 setarg 0 
+0x666f 020967 store 2 ,mem_mouse_direct_timer 
+0x6670 020968 call mouse_disconnect 
+0x6671 020969 fetch 1 ,mem_device_option 
+0x6672 020970 isolate1 mode_4_mouse ,pdata 
+0x6673 020971 call mouse4_0_bb_event_discovery_btn ,true 
+0x6674 020972 fetch 1 ,mem_device_option 
+0x6675 020973 isolate1 mode_3_mouse ,pdata 
+0x6676 020974 call mouse3_0_bb_event_discovery_btn ,true 
+0x6677 020975 call app_lpm_mult_disable 
+0x6678 020976 branch mouse_start_discovery 
+:      020980 mouse3_0_check_reconn_target:
+0x6679 020981 fetch 6 ,mem_hci_plap 
+0x667a 020982 branch app_bt_start_discovery_short ,blank 
+0x667b 020983 branch app_bt_start_reconnect 
+:      020985 mouse4_0_check_reconn_target:
+0x667c 020986 fetch 6 ,mem_hci_plap 
+0x667d 020987 branch mouse4_0_no_reconn_target ,blank 
+0x667e 020988 fetch 2 ,mem_mouse_direct_timeout 
+0x667f 020989 store 2 ,mem_mouse_direct_timer 
+0x6680 020990 call app_lpm_mult_enable 
+0x6681 020991 branch app_ble_start_direct_adv 
+:      020992 mouse4_0_no_reconn_target:
+0x6682 020993 call app_led_start_blink 
+0x6683 020994 branch app_ble_start_adv 
+:      020996 mouse3_0_bb_event_discovery_btn:
+0x6684 020997 fetch 2 ,mem_ui_state_map 
+0x6685 020998 isolate1 ui_state_bt_reconnect ,pdata 
+0x6686 020999 call app_bt_reconnect_cancel ,true 
+0x6687 021000 rtn 
+:      021001 mouse4_0_bb_event_discovery_btn:
+0x6688 021002 call le_clean_att_list_handle_enable 
+0x6689 021003 rtn 
+:      021005 mouse_bt_hid_handshake:
+0x668a 021006 jam app_handshake_done ,mem_app_handshake_flag 
+0x668b 021007 call app_lpm_mult_enable 
+0x668c 021008 call app_bt_store_reconn_info 
+0x668d 021009 jam mouse_mode_state_bt ,mem_mouse_mode_state 
+0x668e 021010 setarg 0 
+0x668f 021011 store 2 ,mem_discovery_timeout_timer_count 
+0x6690 021012 store 1 ,mem_hid_handshake_timer_count 
+0x6691 021013 call app_bt_enter_sniff 
+0x6692 021014 branch mouse_send_blank_packet_timer_init 
+:      021016 mouse_check_reconn_target:
+0x6693 021017 fetch 1 ,mem_xrecord_mode 
+0x6694 021018 beq rec_3_mode ,mouse3_0_check_reconn_target 
+0x6695 021019 beq rec_4_mode ,mouse4_0_check_reconn_target 
+0x6696 021020 branch mouse_start_discovery 
+:      021022 mouse_start_discovery:
+0x6697 021023 set0 mark_ext_patch ,mark 
+0x6698 021024 bpatch patch19_0 ,mem_patch19 
+0x6699 021025 fetch 1 ,mem_le_lap 
+0x669a 021026 increase 1 ,pdata 
+0x669b 021027 store 1 ,mem_le_lap 
+0x669c 021028 call app_lpm_mult_disable 
+0x669d 021029 fetch 2 ,mem_discovery_timeout 
+0x669e 021030 store 2 ,mem_mouse_discovery_timer 
+0x669f 021031 fetch 1 ,mem_device_option 
+0x66a0 021032 isolate1 mode_4_mouse ,pdata 
+0x66a1 021033 call app_ble_start_adv ,true 
+0x66a2 021034 fetch 1 ,mem_device_option 
+0x66a3 021035 isolate1 mode_3_mouse ,pdata 
+0x66a4 021036 call app_bt_start_discovery ,true 
+0x66a5 021037 branch app_led_start_blink 
+:      021039 mouse_stop_discovery:
+0x66a6 021040 set0 mark_ext_patch ,mark 
+0x66a7 021041 bpatch patch19_1 ,mem_patch19 
+0x66a8 021042 setarg 0 
+0x66a9 021043 store 2 ,mem_mouse_discovery_timer 
+0x66aa 021044 fetch 1 ,mem_device_option 
+0x66ab 021045 isolate1 mode_4_mouse ,pdata 
+0x66ac 021046 call app_ble_stop_adv ,true 
+0x66ad 021047 fetch 1 ,mem_device_option 
+0x66ae 021048 isolate1 mode_3_mouse ,pdata 
+0x66af 021049 call app_bt_stop_discovery ,true 
+0x66b0 021050 branch app_led_stop_blink 
+:      021052 mouse_disconnect:
+0x66b1 021053 set0 mark_ext_patch ,mark 
+0x66b2 021054 bpatch patch19_2 ,mem_patch19 
+0x66b3 021055 setarg 0 
+0x66b4 021056 store 2 ,mem_mouse_no_data_timer 
+0x66b5 021057 fetch 2 ,mem_ui_state_map 
+0x66b6 021058 bbit1 ui_state_ble_connected ,app_ble_disconnect 
+0x66b7 021059 fetch 2 ,mem_ui_state_map 
+0x66b8 021060 bbit1 ui_state_bt_connected ,app_bt_disconnect 
+0x66b9 021061 rtn 
+:      021063 eeprom_store_mouse_dpi:
+0x66ba 021064 set0 mark_ext_patch ,mark 
+0x66bb 021065 bpatch patch19_3 ,mem_patch19 
+0x66bc 021066 arg 1 ,temp 
+0x66bd 021067 arg mem_mouse_dpi ,rega 
+0x66be 021068 arg mouse_dpi_eeprom_addr ,regb 
+0x66bf 021069 branch iicd_write_eep_data 
+:      021071 eeprom_load_mouse_dpi:
+0x66c0 021072 set0 mark_ext_patch ,mark 
+0x66c1 021073 bpatch patch19_4 ,mem_patch19 
+0x66c2 021074 arg 1 ,temp 
+0x66c3 021075 arg mem_mouse_dpi ,rega 
+0x66c4 021076 arg mouse_dpi_eeprom_addr ,regb 
+0x66c5 021077 branch iicd_read_eep_data 
+:      021085 twspi_reset:
+0x66c6 021086 set0 mark_ext_patch ,mark 
+0x66c7 021087 bpatch patch1f_6 ,mem_patch1f 
+0x66c8 021088 hfetch 1 ,core_gpio_oe3 
+0x66c9 021089 arg 0x06 ,temp 
+0x66ca 021090 ior temp ,pdata 
+0x66cb 021091 hstore 1 ,core_gpio_oe3 
+0x66cc 021092 hfetch 1 ,core_gpio_out3 
+0x66cd 021093 ior temp ,pdata 
+0x66ce 021094 hstore 1 ,core_gpio_out3 
+0x66cf 021095 hjam 0 ,core_gpio_sel1 
+0x66d0 021096 hfetch 1 ,core_gpio_out3 
+0x66d1 021097 set0 1 ,pdata 
+0x66d2 021098 set0 2 ,pdata 
+0x66d3 021099 hstore 1 ,core_gpio_out3 
+0x66d4 021100 nop 30 
+0x66d5 021101 hjam 1 ,core_gpio_sel1 
+0x66d6 021102 rtn 
+:      021103 twspi_write:
+0x66d7 021104 branch spid_write_reg 
+:      021106 twspi_read:
+0x66d8 021107 branch spid_read_reg 
+:      021114 read_function_aes:
+0x66d9 021115 nbranch read_function ,user 
+0x66da 021116 hfetch 1 ,core_gpio_key2 
+0x66db 021117 or_into 0x20 ,pdata 
+0x66dc 021118 hstore 1 ,core_gpio_key2 
+:      021119 read_function:
+0x66dd 021120 copy temp ,null 
+0x66de 021121 branch read_fuction_zero ,zero 
+0x66df 021122 copy regc ,pc 
+:      021123 read_fuction_zero:
+0x66e0 021124 isolate0 0 ,null 
+0x66e1 021125 branch set_ucode_status 
+:      021128 get_block_header:
+0x66e2 021129 force 4 ,temp 
+:      021130 get_block_header0:
+0x66e3 021131 arg mem_ucode_buf ,rega 
+0x66e4 021132 hfetch 1 ,core_gpio_key2 
+0x66e5 021133 and_into 0xdf ,pdata 
+0x66e6 021134 hstore 1 ,core_gpio_key2 
+0x66e7 021135 call read_function 
+0x66e8 021136 arg 0x55aa ,rega 
+0x66e9 021137 fetch 2 ,mem_ucode_buf 
+0x66ea 021138 ifetcht 2 ,contr 
+0x66eb 021139 isub rega ,null 
+0x66ec 021140 rtn 
+:      021142 read_first_block:
+0x66ed 021143 arg 2 ,temp 
+0x66ee 021144 arg mem_ucode_ptr ,rega 
+0x66ef 021145 call read_function 
+0x66f0 021146 fetch 2 ,mem_ucode_ptr 
+0x66f1 021147 store 2 ,mem_addr_mi 
+0x66f2 021148 call get_iv ,user 
+0x66f3 021149 rtn 
+:      021151 get_iv:
+0x66f4 021152 arg 16 ,temp 
+0x66f5 021153 arg mem_ucode_keybuf ,rega 
+0x66f6 021154 hfetch 1 ,core_gpio_key2 
+0x66f7 021155 and_into 0xdf ,pdata 
+0x66f8 021156 hstore 1 ,core_gpio_key2 
+0x66f9 021157 call read_function 
+0x66fa 021158 arg mem_ucode_keybuf ,contr 
+0x66fb 021159 arg 16 ,loopcnt 
+0x66fc 021160 call aes_load_data 
+0x66fd 021161 call aes_init 
+0x66fe 021162 call aes_clear_data 
+0x66ff 021163 branch do_aes_cbc 
+:      021165 load_storage:
+0x6700 021166 disable match 
+0x6701 021167 call get_block_header 
+0x6702 021168 nrtn zero 
+0x6703 021169 enable match 
+0x6704 021170 hjam 0x80 ,core_ucode_ctrl 
+0x6705 021171 hjam 0 ,core_ucode_hi 
+0x6706 021172 hjam 0 ,core_ucode_low 
+0x6707 021173 arg core_ucode_data ,rega 
+0x6708 021174 call read_function_aes 
+0x6709 021175 hjam 0x0 ,core_ucode_ctrl 
+0x670a 021176 call get_block_header 
+0x670b 021177 nrtn zero 
+0x670c 021178 force 0 ,pdata 
+0x670d 021179 hstore 2 ,core_docd_paddr 
+0x670e 021180 arg core_docd_pdata ,rega 
+0x670f 021181 call read_function_aes 
+:      021182 load_storage_loop:
+0x6710 021183 arg 6 ,temp 
+0x6711 021184 call get_block_header0 
+0x6712 021185 nrtn zero 
+0x6713 021186 ifetch 2 ,contr 
+0x6714 021187 iforce rega 
+0x6715 021188 call read_function 
+0x6716 021189 branch load_storage_loop 
+:      021195 reload_eeprom:
+0x6717 021196 call clean_mem 
+0x6718 021197 setarg 0x1000 
+0x6719 021198 store 2 ,mem_addr_mi 
+0x671a 021199 arg iicd_read_eep ,regc 
+0x671b 021200 arg 2 ,loopcnt 
+:      021201 reload_eeprom_loop:
+0x671c 021202 call get_block_header 
+0x671d 021203 nrtn zero 
+0x671e 021204 fetch 2 ,mem_addr_mi 
+0x671f 021205 byteswap pdata ,pdata 
+0x6720 021206 iadd temp ,pdata 
+0x6721 021207 byteswap pdata ,pdata 
+0x6722 021208 store 2 ,mem_addr_mi 
+0x6723 021209 loop reload_eeprom_loop 
+0x6724 021210 branch load_storage_loop 
+:      021212 loadcode:
+0x6725 021213 hjam 0x25 ,core_clkoff 
+0x6726 021214 hjam 5 ,core_docd_ctrl 
+0x6727 021215 call clean_mem 
+:      021216 loadcode_lpm:
+0x6728 021217 disable user 
+0x6729 021218 call otp_enable_chgpump 
+0x672a 021219 setarg otp_ucode_flag 
+0x672b 021220 arg mem_otp_ucode_flag ,rega 
+0x672c 021221 arg 2 ,temp 
+0x672d 021222 call otpd_read_data 
+0x672e 021223 fetch 2 ,mem_otp_ucode_flag 
+0x672f 021224 bbit0 otp_uflag_aes ,loadcode_otp 
+0x6730 021225 setarg otp_ucode_aeskey 
+0x6731 021226 arg mem_ucode_keybuf ,rega 
+0x6732 021227 arg 16 ,temp 
+0x6733 021228 call otpd_read_data 
+0x6734 021229 hjam lock_otp ,core_misc_ctrl 
+0x6735 021230 arg mem_ucode_keybuf ,contr 
+0x6736 021231 call load_key 
+0x6737 021232 enable user 
+:      021233 loadcode_otp:
+0x6738 021234 fetch 2 ,mem_otp_ucode_flag 
+0x6739 021235 byteswap pdata ,pdata 
+0x673a 021236 arg 0x7ff ,temp 
+0x673b 021237 iand temp ,pdata 
+0x673c 021238 branch loadcode_spi ,zero 
+0x673d 021239 call otp_set_addr 
+0x673e 021240 arg otpd_read_code ,regc 
+0x673f 021241 call get_iv ,user 
+0x6740 021242 call load_storage 
+0x6741 021243 fetch 1 ,mem_ucode_status 
+0x6742 021244 compare 3 ,pdata ,3 
+0x6743 021245 nbranch loadcode_otp ,true 
+:      021246 loadcode_spi:
+0x6744 021247 call otp_disable_chgpump 
+0x6745 021248 fetch 1 ,mem_otp_ucode_flag 
+0x6746 021249 bbit1 otp_uflag_skip_flash ,loadcode_iic 
+0x6747 021250 setarg 0x0 
+0x6748 021251 store 3 ,mem_addr_hi 
+0x6749 021252 call spid_init_flash 
+0x674a 021253 arg spid_read_flash ,regc 
+0x674b 021254 call read_first_block 
+0x674c 021255 call load_storage 
+0x674d 021256 nbranch loadcode_iic ,match 
+0x674e 021257 fetch 1 ,mem_ucode_status 
+0x674f 021258 compare 3 ,pdata ,3 
+0x6750 021259 nbranch loadcode_spi ,true 
+:      021260 loadcode_iic:
+0x6751 021261 fetch 1 ,mem_otp_ucode_flag 
+0x6752 021262 bbit1 otp_uflag_skip_eep ,loadcode_hci 
+0x6753 021263 setarg 0x0 
+0x6754 021264 store 2 ,mem_addr_mi 
+0x6755 021265 arg iicd_read_eep ,regc 
+0x6756 021266 call iicd_init_12m 
+0x6757 021267 call read_first_block 
+0x6758 021268 call load_storage 
+0x6759 021269 nbranch loadcode_hci ,match 
+0x675a 021270 fetch 1 ,mem_ucode_status 
+0x675b 021271 compare 3 ,pdata ,3 
+0x675c 021272 nbranch loadcode_iic ,true 
+:      021273 loadcode_hci:
+0x675d 021274 hjam 0x21 ,core_clkoff 
+0x675e 021275 fetch 1 ,mem_otp_ucode_flag 
+0x675f 021276 rtnbit0 otp_uflag_hci 
+0x6760 021277 call hci_init 
+:      021278 loadcode_hci_loop:
+0x6761 021279 call hci_rx_packet 
+0x6762 021280 branch loadcode_hci_loop 
+:      021283 set_ucode_status:
+0x6763 021284 fetch 1 ,mem_ucode_status 
+0x6764 021285 lshift pdata ,pdata 
+0x6765 021286 setflag true ,0 ,pdata 
+0x6766 021287 isolate0 15 ,rega 
+0x6767 021288 rtn true 
+0x6768 021289 store 1 ,mem_ucode_status 
+0x6769 021290 rtn 
+:      021293 decrypt_code:
+0x676a 021294 hfetch 1 ,core_gpio_key2 
+0x676b 021295 rtnbit0 5 
+0x676c 021296 branch decrypt_code_skip 
+:      021297 decrypt_code_loop:
+0x676d 021298 hfetch 1 ,core_dma_status 
+0x676e 021299 qisolate1 pdata 
+0x676f 021300 rtn true 
+:      021301 decrypt_code_skip:
+0x6770 021302 hfetch 1 ,core_misc_status 
+0x6771 021303 bbit0 1 ,decrypt_code_loop 
+0x6772 021304 call do_aes_cbc 
+0x6773 021305 branch decrypt_code_loop 
+:      021309 save_ucode:
+0x6774 021310 copy loopcnt ,temp 
+0x6775 021311 storet 2 ,mem_patch_len 
+0x6776 021312 hjam 0x80 ,core_ucode_ctrl 
+0x6777 021313 hjam 0 ,core_ucode_hi 
+0x6778 021314 hjam 0 ,core_ucode_low 
+0x6779 021315 store 2 ,mem_patch_ptr 
+0x677a 021316 iforce contw 
+0x677b 021317 lshift2 loopcnt ,loopcnt 
+:      021318 save_ucode_loop:
+0x677c 021319 hfetch 1 ,core_ucode_data 
+0x677d 021320 istore 1 ,contw 
+0x677e 021321 loop save_ucode_loop 
+0x677f 021322 hjam 0x0 ,core_ucode_ctrl 
+0x6780 021323 rtn 
+:      021325 load_ucode:
+0x6781 021326 fetch 2 ,mem_patch_ptr 
+0x6782 021327 rtn blank 
+0x6783 021328 hjam 0x80 ,core_ucode_ctrl 
+0x6784 021329 hjam 0 ,core_ucode_hi 
+0x6785 021330 hjam 0 ,core_ucode_low 
+0x6786 021331 fetcht 2 ,mem_patch_len 
+0x6787 021332 lshift2 temp ,loopcnt 
+0x6788 021333 iforce contr 
+:      021334 load_ucode_loop:
+0x6789 021335 ifetch 1 ,contr 
+0x678a 021336 hstore 1 ,core_ucode_data 
+0x678b 021337 loop load_ucode_loop 
+0x678c 021338 hjam 0x0 ,core_ucode_ctrl 
+0x678d 021339 rtn 
+:      021344 spid_init:
+0x678e 021345 set0 mark_ext_patch ,mark 
+0x678f 021346 bpatch patch1f_7 ,mem_patch1f 
+0x6790 021347 hjam 0x75 ,core_spid_ctrl 
+0x6791 021348 hjam 10 ,core_spid_delay 
+0x6792 021349 setarg mem_spid_tbuf 
+0x6793 021350 hstore 2 ,core_spid_txaddr 
+0x6794 021351 setarg mem_spid_rbuf 
+0x6795 021352 hstore 2 ,core_spid_rxaddr 
+0x6796 021353 hfetch 1 ,core_gpio_sel1 
+0x6797 021354 set1 0 ,pdata 
+0x6798 021355 set0 1 ,pdata 
+0x6799 021356 hstore 1 ,core_gpio_sel1 
+0x679a 021357 rtn 
+:      021359 spid_reset:
+0x679b 021360 hfetch 1 ,core_spid_ctrl 
+0x679c 021361 set1 7 ,pdata 
+0x679d 021362 hstore 1 ,core_spid_ctrl 
+0x679e 021363 set0 7 ,pdata 
+0x679f 021364 hstore 1 ,core_spid_ctrl 
+0x67a0 021365 rtn 
+:      021369 spid_write_reg:
+0x67a1 021370 set1 7 ,pdata 
+0x67a2 021371 store 2 ,mem_spid_tbuf 
+0x67a3 021372 set1 mark_ext_patch ,mark 
+0x67a4 021373 bpatch patch20_0 ,mem_patch20 
+0x67a5 021374 hjam 2 ,core_spid_txlen 
+0x67a6 021375 hjam 0 ,core_spid_rxlen 
+0x67a7 021376 hjam spid_start ,core_misc_ctrl 
+0x67a8 021377 branch wait_spid_done 
+:      021380 spid_read_reg:
+0x67a9 021381 force 1 ,temp 
+:      021383 spid_read_regs:
+0x67aa 021385 store 1 ,mem_spid_tbuf 
+0x67ab 021386 set1 mark_ext_patch ,mark 
+0x67ac 021387 bpatch patch20_1 ,mem_patch20 
+0x67ad 021388 hjam 1 ,core_spid_txlen 
+0x67ae 021389 hstoret 2 ,core_spid_rxlen 
+0x67af 021390 hjam spid_start ,core_misc_ctrl 
+0x67b0 021391 call wait_spid_done 
+0x67b1 021392 fetch 1 ,mem_spid_rbuf 
+0x67b2 021393 rtn 
+:      021395 wait_spid_done:
+0x67b3 021396 fetch 2 ,mem_afh_error_total 
+0x67b4 021397 increase 1 ,pdata 
+0x67b5 021398 store 2 ,mem_afh_error_total 
+0x67b6 021399 hfetch 1 ,core_dma_status 
+0x67b7 021400 bbit0 spid_done ,wait_spid_done 
+0x67b8 021401 rtn 
+:      021403 spid_init_flash:
+0x67b9 021404 hjam 0x40 ,core_spid_ctrl 
+0x67ba 021405 hjam 0x0 ,core_spid_delay 
+0x67bb 021406 hfetch 1 ,core_gpio_sel1 
+0x67bc 021407 set0 0 ,pdata 
+0x67bd 021408 set1 1 ,pdata 
+0x67be 021409 hstore 1 ,core_gpio_sel1 
+0x67bf 021410 setarg 0 
+0x67c0 021411 store 4 ,mem_spid_tbuf 
+0x67c1 021412 rtn 
+:      021414 spid_unlock_flash:
+0x67c2 021415 setarg 0 
+0x67c3 021416 hstore 2 ,core_spid_rxlen 
+0x67c4 021417 setarg 1 
+0x67c5 021418 hstore 1 ,core_spid_txlen 
+0x67c6 021419 setarg mem_spid_tbuf 
+0x67c7 021420 hstore 2 ,core_spid_txaddr 
+0x67c8 021421 jam 6 ,mem_spid_tbuf 
+0x67c9 021422 hjam spid_start ,core_misc_ctrl 
+0x67ca 021423 branch wait_spid_done 
+:      021427 spid_write_flash:
+0x67cb 021428 increase 4 ,temp 
+0x67cc 021429 hstoret 2 ,core_spid_txlen 
+0x67cd 021430 increase -4 ,rega 
+0x67ce 021431 arg 2 ,temp 
+0x67cf 021432 istoret 1 ,rega 
+0x67d0 021433 rshift16 pdata ,temp 
+0x67d1 021434 istoret 1 ,contw 
+0x67d2 021435 rshift8 pdata ,temp 
+0x67d3 021436 istoret 1 ,contw 
+0x67d4 021437 istore 1 ,contw 
+0x67d5 021438 deposit rega 
+0x67d6 021439 hstore 2 ,core_spid_txaddr 
+0x67d7 021440 setarg 0 
+0x67d8 021441 hstore 2 ,core_spid_rxlen 
+0x67d9 021442 hjam spid_start ,core_misc_ctrl 
+0x67da 021443 branch wait_spid_done 
+:      021447 spid_read_flash:
+0x67db 021448 hstoret 2 ,core_spid_rxlen 
+0x67dc 021449 setarg 4 
+0x67dd 021450 hstore 2 ,core_spid_txlen 
+0x67de 021451 jam 3 ,mem_spid_tbuf 
+0x67df 021452 setarg mem_spid_tbuf 
+0x67e0 021453 hstore 2 ,core_spid_txaddr 
+0x67e1 021454 deposit rega 
+0x67e2 021455 hstore 2 ,core_spid_rxaddr 
+0x67e3 021456 hfetch 1 ,core_spid_ctrl 
+0x67e4 021457 isolate0 15 ,rega 
+0x67e5 021458 setflag true ,6 ,pdata 
+0x67e6 021459 hstore 1 ,core_spid_ctrl 
+0x67e7 021460 hjam spid_start ,core_misc_ctrl 
+:      021461 spi_read_flash_wait:
+0x67e8 021462 hfetch 1 ,core_dma_status 
+0x67e9 021463 bbit1 7 ,spi_read_flash_wait 
+0x67ea 021464 arg spid_done ,queue 
+0x67eb 021465 call decrypt_code 
+0x67ec 021466 call wait_spid_done 
+0x67ed 021467 isolate1 spid_crcok ,pdata 
+0x67ee 021468 call set_ucode_status 
+0x67ef 021469 fetch 1 ,mem_addr_hi 
+0x67f0 021470 lshift16 pdata ,regb 
+0x67f1 021471 fetch 1 ,mem_addr_mi 
+0x67f2 021472 lshift8 pdata ,pdata 
+0x67f3 021473 ior regb ,regb 
+0x67f4 021474 fetch 1 ,mem_addr_lo 
+0x67f5 021475 ior regb ,pdata 
+0x67f6 021476 iadd temp ,pdata 
+0x67f7 021477 store 1 ,mem_addr_lo 
+0x67f8 021478 rshift8 pdata ,pdata 
+0x67f9 021479 store 1 ,mem_addr_mi 
+0x67fa 021480 rshift8 pdata ,pdata 
+0x67fb 021481 store 1 ,mem_addr_hi 
+0x67fc 021482 rtn 
+:      021486 iicd_init_5m:
+0x67fd 021487 hjam 0xa ,core_clksel 
+0x67fe 021488 hjam 2 ,core_iicd_scl_low 
+0x67ff 021489 hjam 3 ,core_iicd_scl_high 
+0x6800 021490 hjam 3 ,core_iicd_start_setup 
+0x6801 021491 hjam 3 ,core_iicd_start_hold 
+0x6802 021492 hjam 3 ,core_iicd_stop_setup 
+0x6803 021493 hjam 2 ,core_iicd_data_setup 
+0x6804 021494 rtn 
+:      021496 iicd_init_12m:
+0x6805 021497 hjam 5 ,core_iicd_scl_low 
+0x6806 021498 hjam 7 ,core_iicd_scl_high 
+0x6807 021499 hjam 7 ,core_iicd_start_setup 
+0x6808 021500 hjam 7 ,core_iicd_start_hold 
+0x6809 021501 hjam 7 ,core_iicd_stop_setup 
+0x680a 021502 hjam 5 ,core_iicd_data_setup 
+0x680b 021503 rtn 
+:      021507 wait_iicd_done:
+0x680c 021508 hfetch 1 ,core_dma_status 
+0x680d 021509 bbit0 iicd_done ,wait_iicd_done 
+0x680e 021510 rtn 
+:      021513 iicd_read_data:
+0x680f 021514 store 1 ,mem_iicd_tbuf 
+0x6810 021515 setarg mem_iicd_tbuf 
+0x6811 021516 hstore 2 ,core_iicd_txaddr 
+0x6812 021517 setarg 1 
+0x6813 021518 hstore 2 ,core_iicd_txlen 
+0x6814 021519 hstoret 2 ,core_iicd_rxlen 
+0x6815 021520 deposit rega 
+0x6816 021521 hstore 2 ,core_iicd_rxaddr 
+0x6817 021522 hjam 1 ,core_iicd_ctrl 
+0x6818 021523 hjam iicd_start ,core_misc_ctrl 
+0x6819 021524 branch wait_iicd_done 
+:      021526 byteswap_addr_mi:
+0x681a 021527 byteswap pdata ,pdata 
+0x681b 021528 store 2 ,mem_addr_mi 
+0x681c 021529 rtn 
+:      021535 iicd_read_eep_data:
+0x681d 021536 set1 mark_ext_patch ,mark 
+0x681e 021537 bpatch patch20_2 ,mem_patch20 
+0x681f 021538 fetch 2 ,mem_eeprom_base 
+0x6820 021539 iadd regb ,pdata 
+:      021542 iicd_read_eep_adr:
+0x6821 021543 byteswap pdata ,pdata 
+0x6822 021544 store 2 ,mem_addr_mi 
+:      021547 iicd_read_eep:
+0x6823 021548 set1 mark_ext_patch ,mark 
+0x6824 021549 bpatch patch20_3 ,mem_patch20 
+0x6825 021550 setarg 4 
+0x6826 021551 hstore 2 ,core_iicd_txlen 
+0x6827 021552 jam 0xa0 ,mem_iicd_tbuf 
+0x6828 021553 jam 0xa1 ,mem_iicd_tbuf + 3 
+0x6829 021554 setarg mem_iicd_tbuf 
+0x682a 021555 hstore 2 ,core_iicd_txaddr 
+0x682b 021556 hstoret 2 ,core_iicd_rxlen 
+0x682c 021557 deposit rega 
+0x682d 021558 hstore 2 ,core_iicd_rxaddr 
+0x682e 021559 setarg 2 
+0x682f 021560 isolate0 15 ,rega 
+0x6830 021561 setflag true ,0 ,pdata 
+0x6831 021562 hstore 1 ,core_iicd_ctrl 
+0x6832 021563 hjam iicd_start ,core_misc_ctrl 
+0x6833 021564 arg iicd_done ,queue 
+0x6834 021565 call decrypt_code 
+0x6835 021566 call wait_iicd_done 
+0x6836 021567 isolate1 iicd_crcok ,pdata 
+0x6837 021568 call set_ucode_status 
+0x6838 021569 fetch 2 ,mem_addr_mi 
+0x6839 021570 byteswap pdata ,pdata 
+0x683a 021571 iadd temp ,pdata 
+0x683b 021572 byteswap pdata ,pdata 
+0x683c 021573 store 2 ,mem_addr_mi 
+0x683d 021574 rtn 
+:      021580 iicd_write_eep_data:
+0x683e 021581 set1 mark_ext_patch ,mark 
+0x683f 021582 bpatch patch20_4 ,mem_patch20 
+0x6840 021583 fetch 2 ,mem_eeprom_base 
+0x6841 021584 iadd regb ,pdata 
+:      021587 iicd_write_ota_data:
+0x6842 021588 store 2 ,mem_pdatatemp 
+0x6843 021589 set1 mark_ext_patch ,mark 
+0x6844 021590 bpatch patch20_5 ,mem_patch20 
+0x6845 021591 storet 2 ,mem_temp 
+0x6846 021592 copy rega ,pdata 
+0x6847 021593 store 2 ,mem_contr 
+:      021594 iicd_write_eep_loop:
+0x6848 021595 call iicd_eep_transparency 
+0x6849 021597 fetcht 2 ,mem_regb 
+0x684a 021598 fetch 2 ,mem_contr 
+0x684b 021599 copy pdata ,rega 
+0x684c 021600 fetch 2 ,mem_pdatatemp 
+0x684d 021602 call iicd_write_eep 
+0x684e 021604 fetch 2 ,mem_regb 
+0x684f 021605 fetcht 2 ,mem_contr 
+0x6850 021606 iadd temp ,temp 
+0x6851 021607 storet 2 ,mem_contr 
+0x6852 021608 fetcht 2 ,mem_pdatatemp 
+0x6853 021609 iadd temp ,temp 
+0x6854 021610 storet 2 ,mem_pdatatemp 
+0x6855 021611 fetch 2 ,mem_temp 
+0x6856 021612 nbranch iicd_write_eep_loop ,blank 
+0x6857 021613 rtn 
+:      021621 iicd_eep_transparency:
+0x6858 021622 set1 mark_ext_patch ,mark 
+0x6859 021623 bpatch patch20_6 ,mem_patch20 
+0x685a 021624 fetch 2 ,mem_eeprom_block_size 
+0x685b 021625 increase -1 ,pdata 
+0x685c 021626 fetcht 2 ,mem_pdatatemp 
+0x685d 021627 ior temp ,pdata 
+0x685e 021628 increase 1 ,pdata 
+0x685f 021629 store 3 ,mem_regc 
+0x6860 021631 fetch 2 ,mem_temp 
+0x6861 021632 iadd temp ,pdata 
+0x6862 021634 fetcht 3 ,mem_regc 
+0x6863 021635 isub temp ,pdata 
+0x6864 021636 nbranch iicd_eep_deal_short_packet ,positive 
+0x6865 021637 store 2 ,mem_temp 
+0x6866 021638 fetch 3 ,mem_regc 
+0x6867 021639 fetcht 2 ,mem_pdatatemp 
+0x6868 021640 isub temp ,pdata 
+0x6869 021641 store 2 ,mem_regb 
+0x686a 021642 rtn 
+:      021643 iicd_eep_deal_short_packet:
+0x686b 021644 fetch 2 ,mem_temp 
+0x686c 021645 store 2 ,mem_regb 
+0x686d 021646 setarg 0 
+0x686e 021647 store 2 ,mem_temp 
+0x686f 021648 rtn 
+:      021653 iicd_write_eep:
+0x6870 021654 copy pdata ,regb 
+0x6871 021655 set1 mark_ext_patch ,mark 
+0x6872 021656 bpatch patch20_7 ,mem_patch20 
+0x6873 021657 copy regb ,pdata 
+0x6874 021658 increase 3 ,temp 
+0x6875 021659 hstoret 2 ,core_iicd_txlen 
+0x6876 021660 increase -3 ,rega 
+0x6877 021661 ifetcht 3 ,rega 
+0x6878 021662 copy temp ,regb 
+0x6879 021663 arg 0xa0 ,temp 
+0x687a 021664 istoret 1 ,rega 
+0x687b 021665 byteswap pdata ,pdata 
+0x687c 021666 istore 2 ,contw 
+0x687d 021667 deposit rega 
+0x687e 021668 hstore 2 ,core_iicd_txaddr 
+0x687f 021669 setarg 0 
+0x6880 021670 hstore 2 ,core_iicd_rxlen 
+0x6881 021671 hjam 1 ,core_iicd_ctrl 
+0x6882 021672 hjam iicd_start ,core_misc_ctrl 
+0x6883 021673 call wait_iicd_done 
+0x6884 021674 copy regb ,pdata 
+0x6885 021675 istore 3 ,rega 
+0x6886 021676 nop 10000 
+0x6887 021677 nop 10000 
+0x6888 021678 nop 10000 
+0x6889 021679 rtn 
+:      021683 otp_enable_chgpump:
+0x688a 021684 hjam 0x70 ,rfen_chgpump 
+0x688b 021685 nop param_chgpump_delay 
+0x688c 021686 rtn 
+:      021688 otp_disable_chgpump:
+0x688d 021689 hjam 0x30 ,rfen_chgpump 
+0x688e 021690 rtn 
+:      021692 otp_set_addr:
+0x688f 021693 lshift3 pdata ,pdata 
+0x6890 021694 hstore 2 ,core_otp_addr 
+0x6891 021695 hjam 0 ,core_otpd_ctrl 
+0x6892 021696 rtn 
+:      021699 otp_write:
+0x6893 021700 call otp_set_addr 
+0x6894 021701 call otp_ce 
+:      021702 otp_program:
+0x6895 021703 ifetcht 1 ,rega 
+0x6896 021704 increase 1 ,rega 
+0x6897 021705 force 0 ,queue 
+:      021706 otp_program_bit:
+0x6898 021707 qisolate0 temp 
+0x6899 021708 branch otp_skip_0 ,true 
+0x689a 021709 hfetch 1 ,core_otp_din 
+0x689b 021710 set1 6 ,pdata 
+0x689c 021711 set1 7 ,pdata 
+0x689d 021712 hstore 1 ,core_otp_din 
+0x689e 021713 hjam 0x02 ,core_otp_ctrl 
+0x689f 021714 hjam 0x82 ,core_otp_ctrl 
+0x68a0 021715 set0 7 ,pdata 
+0x68a1 021716 hstore 1 ,core_otp_din 
+0x68a2 021717 hjam 0x8a ,core_otp_ctrl 
+0x68a3 021718 nop 11 
+0x68a4 021719 hjam 0xca ,core_otp_ctrl 
+0x68a5 021720 nop 33 
+0x68a6 021721 hjam 0x4a ,core_otp_ctrl 
+0x68a7 021722 nop 44 
+0x68a8 021723 hjam 0xca ,core_otp_ctrl 
+0x68a9 021724 nop 22 
+0x68aa 021725 hjam 0x8a ,core_otp_ctrl 
+0x68ab 021726 nop 33 
+0x68ac 021727 hjam 0x82 ,core_otp_ctrl 
+0x68ad 021728 nop 1 
+0x68ae 021729 hjam 0x92 ,core_otp_ctrl 
+0x68af 021730 nop 10 
+0x68b0 021731 hjam 0xb2 ,core_otp_ctrl 
+0x68b1 021732 hfetch 1 ,core_otp_rdata 
+0x68b2 021733 hjam 0x92 ,core_otp_ctrl 
+0x68b3 021734 nop 1 
+0x68b4 021735 hjam 0x82 ,core_otp_ctrl 
+0x68b5 021736 qisolate0 pdata 
+0x68b6 021737 branch otp_program_bit ,true 
+:      021738 otp_skip_0:
+0x68b7 021739 hfetch 2 ,core_otp_addr 
+0x68b8 021740 increase 1 ,pdata 
+0x68b9 021741 hstore 2 ,core_otp_addr 
+0x68ba 021742 increase 1 ,queue 
+0x68bb 021743 compare 8 ,queue ,0xf 
+0x68bc 021744 nbranch otp_program_bit ,true 
+0x68bd 021745 loop otp_program 
+0x68be 021746 hjam 0x83 ,core_otp_ctrl 
+0x68bf 021747 rtn 
+:      021749 otp_ce:
+0x68c0 021750 hjam 0x82 ,core_otp_ctrl 
+0x68c1 021751 nop 12 
+0x68c2 021752 hjam 0x80 ,core_otp_ctrl 
+0x68c3 021753 hjam 0x82 ,core_otp_ctrl 
+0x68c4 021754 nop 150 
+0x68c5 021755 rtn 
+:      021758 otpd_read_init:
+0x68c6 021759 call otp_ce 
+:      021760 otpd_read_special:
+0x68c7 021761 hjam 0xa2 ,core_otp_ctrl 
+0x68c8 021762 deposit rega 
+0x68c9 021763 hstore 2 ,core_otpd_addr 
+0x68ca 021764 set1 11 ,temp 
+0x68cb 021765 isolate0 15 ,pdata 
+0x68cc 021766 setflag true ,15 ,temp 
+0x68cd 021767 hstoret 2 ,core_otpd_len 
+0x68ce 021768 hjam otpd_start ,core_misc_ctrl 
+0x68cf 021769 rtn 
+:      021771 otpd_wait_end:
+0x68d0 021772 hfetch 1 ,core_dma_status 
+0x68d1 021773 bbit0 otpd_done ,otpd_wait_end 
+0x68d2 021774 rtn 
+:      021777 otpd_read_data:
+0x68d3 021778 call otp_set_addr 
+0x68d4 021779 call otpd_read_init 
+0x68d5 021780 call otpd_wait_end 
+0x68d6 021781 hjam 0x83 ,core_otp_ctrl 
+0x68d7 021782 rtn 
+:      021787 otpd_read_code:
+0x68d8 021788 hfetch 2 ,core_current_otp_addr 
+0x68d9 021789 hstore 2 ,core_otp_addr 
+0x68da 021790 call otpd_read_init 
+0x68db 021791 arg otpd_done ,queue 
+0x68dc 021792 call decrypt_code 
+0x68dd 021793 call otpd_wait_end 
+0x68de 021794 isolate1 otpd_crcok ,pdata 
+0x68df 021795 call set_ucode_status 
+0x68e0 021796 hjam 0x83 ,core_otp_ctrl 
+0x68e1 021797 rtn 
+:      021800 uartd_rx_cnt_got_first_byte:
+0x68e2 021801 jam 1 ,mem_uartd_rxitems_got_data 
+0x68e3 021802 force uart_rx_timer ,queue 
+0x68e4 021803 fetch 2 ,mem_uartd_rx_timeout 
+0x68e5 021804 branch timer_init 
+:      021805 uartd_rx_cnt_with_threshold:
+0x68e6 021806 hfetch 2 ,core_uart_rxitems 
+0x68e7 021807 rtn blank 
+0x68e8 021808 fetcht 1 ,mem_uartd_rxitems_threshold 
+0x68e9 021809 isub temp ,null 
+0x68ea 021810 branch uartd_rx_cnt_rtn_value ,positive 
+0x68eb 021811 fetch 1 ,mem_uartd_rxitems_got_data 
+0x68ec 021812 branch uartd_rx_cnt_got_first_byte ,blank 
+0x68ed 021813 arg uart_rx_timer ,queue 
+0x68ee 021814 call timer_check 
+0x68ef 021815 branch uartd_rx_cnt_rtn_value ,blank 
+0x68f0 021816 setarg 0 
+0x68f1 021817 rtn 
+:      021818 uartd_rx_cnt_rtn_value:
+0x68f2 021819 force uart_rx_timer ,queue 
+0x68f3 021820 call timer_stop 
+0x68f4 021821 jam 0 ,mem_uartd_rxitems_got_data 
+0x68f5 021822 hfetch 2 ,core_uart_rxitems 
+0x68f6 021823 rtn 
+:      021830 uartd_prepare_tx:
+0x68f7 021831 hfetch 2 ,core_uart_twptr 
+0x68f8 021832 iforce contwu 
+0x68f9 021833 rtn 
+:      021835 uartd_send:
+0x68fa 021836 deposit contwu 
+0x68fb 021837 hstore 2 ,core_uart_twptr 
+0x68fc 021838 rtn 
+:      021840 uartd_prepare_rx:
+0x68fd 021841 hfetch 2 ,core_uart_rxitems 
+0x68fe 021842 rtn blank 
+0x68ff 021843 iforce loopcnt 
+0x6900 021844 hfetch 2 ,core_uart_rrptr 
+0x6901 021845 iforce contru 
+0x6902 021846 rtn 
+:      021849 uartd_rxdone_by_len:
+0x6903 021850 hfetch 2 ,core_uart_rrptr 
+0x6904 021851 iadd temp ,pdata 
+0x6905 021852 copy pdata ,contru 
+:      021853 uartd_rxdone:
+0x6906 021854 deposit contru 
+0x6907 021855 hstore 2 ,core_uart_rrptr 
+0x6908 021856 rtn 
+:      021858 uart_set_baud_by_mem:
+0x6909 021859 fetch uart_baud_len ,mem_baud 
+0x690a 021860 hstore uart_baud_len ,core_uart_baud 
+0x690b 021861 rtn 
+:      021865 eeprom_store_le_reconn_info:
+0x690c 021866 fetch 6 ,mem_le_plap 
+0x690d 021867 store 6 ,mem_temp_lap 
+0x690e 021868 jam rec_4_mode ,mem_record_bt_mode 
+0x690f 021869 branch eeprom_store_reconn_info 
+:      021870 eeprom_store_bd_reconn_info:
+0x6910 021871 fetch 6 ,mem_plap 
+0x6911 021872 store 6 ,mem_temp_lap 
+0x6912 021873 jam rec_3_mode ,mem_record_bt_mode 
+:      021874 eeprom_store_reconn_info:
+0x6913 021875 set1 mark_ext_patch ,mark 
+0x6914 021876 bpatch patch21_0 ,mem_patch21 
+0x6915 021877 call eeprom_store_remote_bdaddr 
+0x6916 021878 call eeprom_store_last_record_index 
+0x6917 021879 fetch 1 ,mem_record_bt_mode 
+0x6918 021880 beq rec_4_mode ,eeprom_store_rec_4_mode 
+0x6919 021881 beq rec_3_mode ,eeprom_store_link_key 
+0x691a 021882 rtn 
+:      021883 eeprom_store_rec_4_mode:
+0x691b 021884 call eeprom_store_le_ltl 
+0x691c 021885 branch eeprom_store_le_local_addr 
+:      021888 eeprom_load_reconn_info:
+0x691d 021889 set1 mark_ext_patch ,mark 
+0x691e 021890 bpatch patch21_1 ,mem_patch21 
+0x691f 021891 call eeprom_load_reconn_bdaddr 
+0x6920 021892 fetch 1 ,mem_select_list_item 
+0x6921 021893 rtneq 0xff 
+0x6922 021894 fetch 6 ,mem_temp_lap 
+0x6923 021895 store 6 ,mem_hci_plap 
+0x6924 021896 fetch 1 ,mem_record_bt_mode 
+0x6925 021897 store 1 ,mem_xrecord_mode 
+0x6926 021898 beq rec_3_mode ,eeprom_load_rec_3_mode 
+0x6927 021899 beq rec_4_mode ,eeprom_load_rec_4_mode 
+0x6928 021900 rtn 
+:      021901 eeprom_load_reconn_bdaddr:
+0x6929 021902 call eeprom_load_last_record_index 
+0x692a 021903 fetch 1 ,mem_select_list_item 
+0x692b 021904 rtneq 0xff 
+0x692c 021905 branch eeprom_load_remote_bdaddr 
+:      021906 eeprom_load_rec_3_mode:
+0x692d 021907 call eeprom_load_link_key 
+0x692e 021908 branch check_link_key_load 
+:      021909 eeprom_load_rec_4_mode:
+0x692f 021910 call eeprom_load_ltk_key 
+0x6930 021911 branch check_ltk_load 
+:      021912 eeprom_clear_bd_reconn_info:
+0x6931 021913 call eeprom_load_bdaddr_list 
+0x6932 021914 disable user 
+0x6933 021915 call find_addr_from_bd_list 
+0x6934 021916 nbranch at_error_rev_end ,user 
+:      021917 eeprom_clear_reconn_info_common:
+0x6935 021918 fetcht 2 ,mem_list_item_ptr 
+0x6936 021919 increase -1 ,temp 
+0x6937 021920 setarg 0 
+0x6938 021921 istore 7 ,temp 
+0x6939 021922 arg 28 ,temp 
+0x693a 021923 arg mem_bdaddr_list_buff + 7 ,rega 
+0x693b 021924 arg eeprom_bdaddr_list ,regb 
+0x693c 021925 branch iicd_write_eep_data 
+:      021927 eeprom_clear_all_reconn_info:
+0x693d 021928 set1 mark_ext_patch ,mark 
+0x693e 021929 bpatch patch21_2 ,mem_patch21 
+0x693f 021930 arg mem_bdaddr_list_buff ,contw 
+0x6940 021931 force 4 ,loopcnt 
+0x6941 021932 call memset0 
+0x6942 021933 arg 28 ,temp 
+0x6943 021934 arg mem_bdaddr_list_buff ,rega 
+0x6944 021935 arg eeprom_bdaddr_list ,regb 
+0x6945 021936 branch iicd_write_eep_data 
+:      021938 eeprom_erase_reconn_info:
+0x6946 021939 set1 mark_ext_patch ,mark 
+0x6947 021940 bpatch patch21_3 ,mem_patch21 
+0x6948 021941 setarg 0x0 
+0x6949 021942 store 3 ,mem_plap 
+0x694a 021943 istore 3 ,contw 
+0x694b 021944 branch eeprom_store_remote_bdaddr 
+:      021946 eeprom_load_last_record_index:
+0x694c 021947 arg 1 ,temp 
+0x694d 021948 arg mem_select_list_item ,rega 
+0x694e 021949 arg eeprom_last_record ,regb 
+0x694f 021950 branch iicd_read_eep_data 
+:      021952 eeprom_store_last_record_index:
+0x6950 021953 arg 1 ,temp 
+0x6951 021954 arg mem_select_list_item ,rega 
+0x6952 021955 arg eeprom_last_record ,regb 
+0x6953 021956 branch iicd_write_eep_data 
+:      021959 eeprom_store_remote_bdaddr:
+0x6954 021960 set1 mark_ext_patch ,mark 
+0x6955 021961 bpatch patch21_4 ,mem_patch21 
+0x6956 021962 call eeprom_load_bdaddr_list 
+0x6957 021963 disable user 
+0x6958 021964 call find_addr_from_bd_list 
+0x6959 021965 rtn user 
+:      021966 eeprom_store_remote_addr_unfind:
+0x695a 021967 jam 0 ,mem_select_list_item 
+0x695b 021968 fetch 6 ,mem_temp_lap 
+0x695c 021969 store 6 ,mem_bdaddr_list_buff + 1 
+0x695d 021970 fetch 1 ,mem_record_bt_mode 
+0x695e 021971 store 1 ,mem_bdaddr_list_buff 
+0x695f 021972 arg 28 ,temp 
+0x6960 021973 arg mem_bdaddr_list_buff ,rega 
+0x6961 021974 arg eeprom_bdaddr_list ,regb 
+0x6962 021975 branch iicd_write_eep_data 
+:      021978 eeprom_store_le_local_addr:
+0x6963 021979 arg 6 ,temp 
+0x6964 021980 arg mem_le_lap ,rega 
+0x6965 021981 arg eeprom_le_reconn_local_addr ,regb 
+0x6966 021982 branch iicd_write_eep_data 
+:      021984 eeprom_load_le_loacal_addr:
+0x6967 021985 arg 6 ,temp 
+0x6968 021986 arg mem_le_lap ,rega 
+0x6969 021987 arg eeprom_le_reconn_local_addr ,regb 
+0x696a 021988 branch iicd_read_eep_data 
+:      021991 eeprom_load_remote_bdaddr:
+0x696b 021992 set1 mark_ext_patch ,mark 
+0x696c 021993 bpatch patch21_5 ,mem_patch21 
+0x696d 021994 arg 7 ,temp 
+0x696e 021995 arg mem_temp_reconn_record ,rega 
+0x696f 021996 arg eeprom_bdaddr_list ,regb 
+0x6970 021997 fetch 1 ,mem_select_list_item 
+0x6971 021998 mul32 pdata ,7 ,pdata 
+0x6972 021999 iadd regb ,regb 
+0x6973 022000 branch iicd_read_eep_data 
+:      022002 eeprom_linkkey_addr:
+0x6974 022003 arg 0x10 ,temp 
+0x6975 022004 arg eeprom_linkkey_list ,regb 
+0x6976 022005 fetch 1 ,mem_select_list_item 
+0x6977 022006 lshift4 pdata ,pdata 
+0x6978 022007 iadd regb ,regb 
+0x6979 022008 rtn 
+:      022010 eeprom_store_le_ltl:
+0x697a 022011 arg mem_le_ltk ,rega 
+0x697b 022012 branch eeprom_store_link_key_common 
+:      022013 eeprom_store_link_key:
+0x697c 022014 arg mem_link_key ,rega 
+:      022015 eeprom_store_link_key_common:
+0x697d 022016 set1 mark_ext_patch ,mark 
+0x697e 022017 bpatch patch21_6 ,mem_patch21 
+0x697f 022018 call eeprom_linkkey_addr 
+0x6980 022019 branch iicd_write_eep_data 
+:      022021 eeprom_load_ltk_key:
+0x6981 022022 arg mem_le_ltk ,rega 
+0x6982 022023 branch eeprom_load_link_key_common 
+:      022024 eeprom_load_link_key:
+0x6983 022025 arg mem_link_key ,rega 
+:      022026 eeprom_load_link_key_common:
+0x6984 022027 set1 mark_ext_patch ,mark 
+0x6985 022028 bpatch patch21_7 ,mem_patch21 
+0x6986 022029 call eeprom_linkkey_addr 
+0x6987 022030 branch iicd_read_eep_data 
+:      022034 eeprom_load_bdaddr_list:
+0x6988 022035 arg 28 ,temp 
+0x6989 022036 arg mem_bdaddr_list_buff + 7 ,rega 
+0x698a 022037 arg eeprom_bdaddr_list ,regb 
+0x698b 022038 branch iicd_read_eep_data 
+:      022040 find_addr_from_bd_list:
+0x698c 022041 set1 mark_ext_patch ,mark 
+0x698d 022042 bpatch patch22_0 ,mem_patch22 
+0x698e 022043 setarg mem_bdaddr_list_buff + 7 
+0x698f 022044 store 2 ,mem_list_item_ptr 
+0x6990 022045 jam 0 ,mem_select_list_item 
+0x6991 022046 arg 4 ,loopcnt 
+:      022047 find_addr_from_list:
+0x6992 022048 copy loopcnt ,pdata 
+0x6993 022049 store 1 ,mem_pdatatemp 
+0x6994 022050 fetch 2 ,mem_list_item_ptr 
+0x6995 022051 copy pdata ,rega 
+0x6996 022052 call find_addr_from_list_compare 
+0x6997 022053 rtn user 
+0x6998 022054 fetch 2 ,mem_list_item_ptr 
+0x6999 022055 increase 7 ,pdata 
+0x699a 022056 store 2 ,mem_list_item_ptr 
+0x699b 022057 fetch 1 ,mem_select_list_item 
+0x699c 022058 increase 1 ,pdata 
+0x699d 022059 store 1 ,mem_select_list_item 
+0x699e 022060 fetch 1 ,mem_pdatatemp 
+0x699f 022061 copy pdata ,loopcnt 
+0x69a0 022062 loop find_addr_from_list 
+0x69a1 022063 rtn 
+:      022065 check_link_key_load:
+0x69a2 022066 fetch 8 ,mem_link_key 
+0x69a3 022067 fetcht 8 ,mem_link_key + 8 
+0x69a4 022068 ior temp ,pdata 
+0x69a5 022069 rtn blank 
+0x69a6 022070 jam 1 ,mem_link_key_exists 
+0x69a7 022071 rtn 
+:      022072 check_ltk_load:
+0x69a8 022073 fetch 6 ,mem_hci_plap 
+0x69a9 022074 rtn blank 
+0x69aa 022075 jam 1 ,mem_ltk_exists 
+0x69ab 022076 rtn 
+:      022078 find_addr_from_list_compare:
+0x69ac 022079 arg mem_temp_reconn_record ,regb 
+0x69ad 022080 arg 7 ,loopcnt 
+0x69ae 022081 call string_compare 
+0x69af 022082 branch enable_usr ,zero 
+0x69b0 022083 rtn 
+:      022084 enable_usr:
+0x69b1 022085 enable user 
+0x69b2 022086 rtn 
+:      022087 le_eeprom_load_reconn_info:
+0x69b3 022088 branch assert 
+:      022095 gpio_set_wake_by_current_state:
+0x69b4 022096 set1 mark_ext_patch ,mark 
+0x69b5 022097 bpatch patch22_1 ,mem_patch22 
+0x69b6 022098 set1 7 ,temp 
+0x69b7 022099 call gpio_get_bit 
+0x69b8 022100 nsetflag true ,7 ,temp 
+:      022105 gpio_set_wake:
+0x69b9 022106 set1 mark_ext_patch ,mark 
+0x69ba 022107 bpatch patch22_2 ,mem_patch22 
+0x69bb 022108 isolate0 7 ,temp 
+0x69bc 022109 and temp ,0x1f ,queue 
+0x69bd 022110 fetch 4 ,mem_gpio_wakeup_low 
+0x69be 022111 qsetflag true ,pdata 
+0x69bf 022112 store 4 ,mem_gpio_wakeup_low 
+0x69c0 022113 fetch 4 ,mem_gpio_wakeup_high 
+0x69c1 022114 nqsetflag true ,pdata 
+0x69c2 022115 store 4 ,mem_gpio_wakeup_high 
+0x69c3 022116 rtn 
+:      022119 gpio_clr_wake:
+0x69c4 022120 set1 mark_ext_patch ,mark 
+0x69c5 022121 bpatch patch22_3 ,mem_patch22 
+0x69c6 022122 isolate0 7 ,temp 
+0x69c7 022123 and temp ,0x1f ,queue 
+0x69c8 022124 fetch 4 ,mem_gpio_wakeup_low 
+0x69c9 022125 qset0 pdata 
+0x69ca 022126 store 4 ,mem_gpio_wakeup_low 
+0x69cb 022127 fetch 4 ,mem_gpio_wakeup_high 
+0x69cc 022128 qset0 pdata 
+0x69cd 022129 store 4 ,mem_gpio_wakeup_high 
+0x69ce 022130 rtn 
+:      022133 gpio_config_input_nowake:
+0x69cf 022134 call gpio_clr_wake 
+0x69d0 022135 branch gpio_config_input_without_wake 
+:      022138 gpio_config_input:
+0x69d1 022139 ncall gpio_set_wake ,wake 
+:      022141 gpio_config_input_without_wake:
+0x69d2 022142 arg core_gpio_pd0 ,contw 
+0x69d3 022143 call gpio_set_bit 
+0x69d4 022144 setflip gpio_active_bit ,temp 
+0x69d5 022145 arg core_gpio_pu0 ,contw 
+0x69d6 022146 call gpio_set_bit 
+0x69d7 022147 set0 gpio_active_bit ,temp 
+0x69d8 022148 arg core_gpio_oe0 ,contw 
+0x69d9 022149 branch gpio_set_bit 
+:      022152 gpio_config_output:
+0x69da 022153 setflip gpio_active_bit ,temp 
+0x69db 022154 call gpio_out 
+0x69dc 022155 set1 gpio_active_bit ,temp 
+0x69dd 022156 arg core_gpio_oe0 ,contw 
+0x69de 022157 branch gpio_set_bit 
+:      022159 gpio_common:
+0x69df 022160 and temp ,0x07 ,queue 
+0x69e0 022161 rshift3 temp ,pdata 
+0x69e1 022162 and_into 3 ,pdata 
+0x69e2 022163 iadd contw ,contw 
+0x69e3 022164 ifetch 1 ,contw 
+0x69e4 022165 rtn 
+:      022169 gpio_get_bit:
+0x69e5 022170 arg core_gpio_in ,contw 
+0x69e6 022171 call gpio_common 
+0x69e7 022172 isolate1 gpio_active_bit ,temp 
+0x69e8 022173 branch gpio_get_bit_reverse ,true 
+0x69e9 022174 qisolate0 pdata 
+0x69ea 022175 rtn 
+:      022176 gpio_get_bit_reverse:
+0x69eb 022177 qisolate1 pdata 
+0x69ec 022178 rtn 
+:      022180 gpio_out_inactive:
+0x69ed 022181 isolate1 7 ,null 
+0x69ee 022182 branch gpio_out_flag 
+:      022184 gpio_out_active:
+0x69ef 022185 isolate0 7 ,null 
+:      022188 gpio_out_flag:
+0x69f0 022189 setarg 0 
+0x69f1 022190 nsetflag true ,gpio_active_bit ,pdata 
+0x69f2 022191 ixor temp ,temp 
+:      022194 gpio_out:
+0x69f3 022195 arg core_gpio_out0 ,contw 
+:      022198 gpio_set_bit:
+0x69f4 022199 call gpio_common 
+0x69f5 022200 isolate1 gpio_active_bit ,temp 
+0x69f6 022201 qsetflag true ,pdata 
+0x69f7 022202 istore 1 ,contw 
+0x69f8 022203 rtn 
+:      022205 gpio_test:
+0x69f9 022206 fetch 1 ,mem_seqi 
+0x69fa 022207 rtneq 0x7f 
+0x69fb 022208 hjam 0 ,core_gpio_out3 
+0x69fc 022209 nop 30 
+0x69fd 022210 hjam 8 ,core_gpio_out3 
+0x69fe 022211 rtn 
+:      022216 set_pwm_blink:
+0x69ff 022217 lshift8 pdata ,pdata 
+0x6a00 022218 lshift4 pdata ,pdata 
+0x6a01 022219 hstore 2 ,core_pwm_ncnt0 
+0x6a02 022220 hstore 2 ,core_pwm_pcnt0 
+0x6a03 022221 rtn 
+:      022223 set_pwm_steadyon:
+0x6a04 022224 setarg 0 
+0x6a05 022225 hstore 2 ,core_pwm_ncnt0 
+0x6a06 022226 setarg 1 
+0x6a07 022227 hstore 2 ,core_pwm_pcnt0 
+0x6a08 022228 rtn 
+:      022230 set_pwm_off:
+0x6a09 022231 setarg 0 
+0x6a0a 022232 hstore 2 ,core_pwm_ncnt0 
+0x6a0b 022233 hstore 2 ,core_pwm_pcnt0 
+0x6a0c 022234 rtn 
+:      022239 init_filter_ram:
+0x6a0d 022240 arg 0x8800 ,contw 
+0x6a0e 022241 arg 0x20 ,loopcnt 
+0x6a0f 022242 call memset0 
+0x6a10 022243 setarg 0x4f9 
+0x6a11 022244 hstore 2 ,0x8848 
+0x6a12 022245 hstore 2 ,0x884a 
+0x6a13 022246 hstore 2 ,0x884c 
+0x6a14 022247 hstore 2 ,0x886c 
+0x6a15 022248 hstore 2 ,0x888c 
+0x6a16 022249 hstore 2 ,0x88ac 
+0x6a17 022250 setarg 0x204 
+0x6a18 022251 hstore 2 ,0x88ae 
+0x6a19 022252 setarg 0x0506 
+0x6a1a 022253 hstore 2 ,0x88b0 
+0x6a1b 022254 setarg 0x0504 
+0x6a1c 022255 hstore 2 ,0x88b2 
+0x6a1d 022256 setarg 0x0200 
+0x6a1e 022257 hstore 2 ,0x88b4 
+0x6a1f 022258 setarg 0xFEFB 
+0x6a20 022259 hstore 2 ,0x88b6 
+0x6a21 022260 setarg 0xFAF9 
+0x6a22 022261 hstore 2 ,0x88b8 
+0x6a23 022262 setarg 0xFAFB 
+0x6a24 022263 hstore 2 ,0x88ba 
+0x6a25 022264 setarg 0xFD00 
+0x6a26 022265 hstore 2 ,0x88bc 
+0x6a27 022266 setarg 0x0408 
+0x6a28 022267 hstore 2 ,0x88be 
+0x6a29 022268 setarg 0x0A0C 
+0x6a2a 022269 hstore 2 ,0x88c0 
+0x6a2b 022270 setarg 0x0B09 
+0x6a2c 022271 hstore 2 ,0x88c2 
+0x6a2d 022272 setarg 0x0500 
+0x6a2e 022273 hstore 2 ,0x88c4 
+0x6a2f 022274 setarg 0xF8F1 
+0x6a30 022275 hstore 2 ,0x88c6 
+0x6a31 022276 setarg 0xECE8 
+0x6a32 022277 hstore 2 ,0x88c8 
+0x6a33 022278 setarg 0xE9EB 
+0x6a34 022279 hstore 2 ,0x88ca 
+0x6a35 022280 setarg 0xF500 
+0x6a36 022281 hstore 2 ,0x88cc 
+0x6a37 022282 setarg 0x1223 
+0x6a38 022283 hstore 2 ,0x88ce 
+0x6a39 022284 setarg 0x374B 
+0x6a3a 022285 hstore 2 ,0x88d0 
+0x6a3b 022286 setarg 0x5E71 
+0x6a3c 022287 hstore 2 ,0x88d2 
+0x6a3d 022288 setarg 0x787F 
+0x6a3e 022289 hstore 2 ,0x88d4 
+0x6a3f 022290 rtn 
+:      022292 enable_pcm:
+0x6a40 022293 set1 mark_ext_patch ,mark 
+0x6a41 022294 bpatch patch22_4 ,mem_patch22 
+0x6a42 022295 hfetch 2 ,core_clkoff 
+0x6a43 022296 set0 clock_off_codec ,pdata 
+0x6a44 022297 hstore 2 ,core_clkoff 
+0x6a45 022298 hjam 0x11 ,core_enc_ctrl 
+0x6a46 022299 hjam 0x1 ,core_cvsd_ctrl 
+0x6a47 022300 hjam 0x1 ,core_codec_ctrl 
+0x6a48 022301 hjam 0x11 ,core_dec_ctrl 
+0x6a49 022302 rtn 
+:      022304 disable_pcm:
+0x6a4a 022305 set1 mark_ext_patch ,mark 
+0x6a4b 022306 bpatch patch22_5 ,mem_patch22 
+0x6a4c 022307 hfetch 2 ,core_clkoff 
+0x6a4d 022308 set1 clock_off_codec ,pdata 
+0x6a4e 022309 hstore 2 ,core_clkoff 
+0x6a4f 022310 hjam 0x4 ,core_enc_ctrl 
+0x6a50 022311 hjam 0x4 ,core_dec_ctrl 
+0x6a51 022312 hjam 0x0 ,core_cvsd_ctrl 
+0x6a52 022313 hjam 0x0 ,core_codec_ctrl 
+0x6a53 022314 rtn 
+:      022318 get_sco_data:
+0x6a54 022319 fetch 1 ,mem_state 
+0x6a55 022320 rtnbit0 state_insco 
+0x6a56 022321 arg mem_sco_obuf ,contw 
+0x6a57 022322 arg 30 ,loopcnt 
+:      022323 get_sco_data_loop:
+0x6a58 022324 hfetch 1 ,core_pcminfifo 
+0x6a59 022325 istore 1 ,contw 
+0x6a5a 022326 loop get_sco_data_loop 
+0x6a5b 022327 rtn 
+:      022330 process_sco_data:
+0x6a5c 022331 fetch 1 ,mem_state 
+0x6a5d 022332 rtnbit0 state_insco 
+0x6a5e 022333 arg mem_sco_ibuf ,contr 
+0x6a5f 022334 force 30 ,loopcnt 
+:      022335 process_sco_loop:
+0x6a60 022336 ifetch 1 ,contr 
+0x6a61 022337 hstore 1 ,core_pcmoutfifo 
+0x6a62 022338 loop process_sco_loop 
+0x6a63 022339 rtn 
+:      022341 init_sched:
+0x6a64 022342 rtn 
+:      022347 gpio_cfg_uart_tx_output:
+0x6a65 022348 call gpio_uart2gpio 
+0x6a66 022349 arg uart_wakeup_tx ,temp 
+0x6a67 022350 branch gpio_config_output 
+:      022352 gpio_pu_uart_tx:
+0x6a68 022353 call gpio_cfg_uart_tx_output 
+0x6a69 022354 arg uart_wakeup_tx ,temp 
+0x6a6a 022355 branch gpio_out_inactive 
+:      022357 gpio_pd_uart_tx:
+0x6a6b 022358 call gpio_cfg_uart_tx_output 
+0x6a6c 022359 arg uart_wakeup_tx ,temp 
+0x6a6d 022360 branch gpio_out_active 
+:      022362 gpio_cfg_uart_rx_output:
+0x6a6e 022363 call gpio_uart2gpio 
+0x6a6f 022364 arg uart_wakeup_rx ,temp 
+0x6a70 022365 branch gpio_config_output 
+:      022367 gpio_pu_uart_rx:
+0x6a71 022368 call gpio_cfg_uart_rx_output 
+0x6a72 022369 arg uart_wakeup_rx ,temp 
+0x6a73 022370 branch gpio_out_inactive 
+:      022372 gpio_pd_uart_rx:
+0x6a74 022373 call gpio_cfg_uart_rx_output 
+0x6a75 022374 arg uart_wakeup_rx ,temp 
+0x6a76 022375 branch gpio_out_active 
+:      022377 gpio_tx_config_input_with_pu:
+0x6a77 022378 call gpio_uart2gpio 
+0x6a78 022379 hfetch 1 ,core_gpio_pu0 
+0x6a79 022380 set1 uart_wakeup_tx ,pdata 
+0x6a7a 022381 hstore 1 ,core_gpio_pu0 
+0x6a7b 022382 arg uart_wakeup_tx ,temp 
+0x6a7c 022383 branch gpio_config_input 
+:      022385 gpio_rx_config_input_with_pu:
+0x6a7d 022386 call gpio_uart2gpio 
+0x6a7e 022387 hfetch 1 ,core_gpio_pu0 
+0x6a7f 022388 set1 uart_wakeup_rx ,pdata 
+0x6a80 022389 hstore 1 ,core_gpio_pu0 
+0x6a81 022390 arg uart_wakeup_rx ,temp 
+0x6a82 022391 branch gpio_config_input 
+:      022393 gpio_gpio2uart:
+0x6a83 022394 hfetch 1 ,core_gpio_sel1 
+0x6a84 022395 or_into 0x04 ,pdata 
+0x6a85 022396 hstore 1 ,core_gpio_sel1 
+0x6a86 022397 rtn 
+:      022399 gpio_uart2gpio:
+0x6a87 022400 hfetch 1 ,core_gpio_sel1 
+0x6a88 022401 and_into 0xfb ,pdata 
+0x6a89 022402 hstore 1 ,core_gpio_sel1 
+0x6a8a 022403 rtn 
+:      022405 gpio_check_uart_state:
+0x6a8b 022406 hfetch 1 ,core_gpio_sel1 
+0x6a8c 022407 isolate1 2 ,pdata 
+0x6a8d 022408 rtn 
+:      022411 prcp_init:
+0x6a8e 022412 setarg prcp_process 
+0x6a8f 022413 store 2 ,mem_cb_att_write 
+0x6a90 022414 rtn 
+:      022415 prcp_process:
+0x6a91 022416 call clear_prcp_sendbuff 
+0x6a92 022417 fetch 1 ,mem_prcp 
+0x6a93 022418 beq prcp_le ,le_prcp 
+0x6a94 022419 beq prcp_ssp ,prcp 
+0x6a95 022420 branch assert 
+:      022421 le_prcp:
+0x6a96 022422 arg prcp_rx_le ,temp 
+0x6a97 022423 storet 2 ,mem_le_notify_handle 
+0x6a98 022424 call le_att_get_handle_ptr 
+0x6a99 022425 ifetch 1 ,contr 
+0x6a9a 022426 call prcp_parse 
+0x6a9b 022427 branch prcp_le_tx 
+:      022428 prcp:
+0x6a9c 022429 call prcp_parse 
+0x6a9d 022430 branch prcp_tx 
+:      022431 prcp_parse:
+0x6a9e 022432 copy contr ,rega 
+0x6a9f 022433 set1 mark_ext_patch ,mark 
+0x6aa0 022434 bpatch patch26_1 ,mem_patch26 
+0x6aa1 022435 ifetch 1 ,contr 
+0x6aa2 022436 beq common_res ,prcp_parse_common_res 
+0x6aa3 022437 beq read_registers_req ,prcp_parse_read_registers_req 
+0x6aa4 022438 beq read_registers_res ,prcp_parse_read_registers_res 
+0x6aa5 022439 beq write_registers_req ,prcp_parse_write_registers_req 
+0x6aa6 022440 beq i2c_config_req ,prcp_parse_i2c_config_req 
+0x6aa7 022441 beq i2c_read_req ,prcp_parse_i2c_read_req 
+0x6aa8 022442 beq i2c_read_res ,prcp_parse_i2c_read_res 
+0x6aa9 022443 beq i2c_write_req ,prcp_parse_i2c_write_req 
+0x6aaa 022444 beq spi_config_req ,prcp_parse_spi_config_req 
+0x6aab 022445 beq spi_read_req ,prcp_parse_spi_read_req 
+0x6aac 022446 beq spi_read_res ,prcp_parse_spi_read_res 
+0x6aad 022447 beq spi_write_req ,prcp_parse_spi_write_req 
+0x6aae 022448 beq pwm_config_req ,prcp_parse_pwm_config_req 
+0x6aaf 022449 beq pwm_write_req ,prcp_parse_pwm_write_req 
+0x6ab0 022450 beq gpio_config_req ,prcp_parse_gpio_config_req 
+0x6ab1 022451 beq gpio_read_req ,prcp_parse_gpio_read_req 
+0x6ab2 022452 beq gpio_read_res ,prcp_parse_gpio_read_res 
+0x6ab3 022453 beq gpio_write_req ,prcp_parse_gpio_write_req 
+0x6ab4 022454 beq ota_write_req ,prcp_parse_ota_write_req 
+0x6ab5 022455 beq ota_end_cmd ,prcp_parse_ota_end_cmd 
+0x6ab6 022456 rtn 
+:      022459 prcp_parse_common_res:
+0x6ab7 022460 copy rega ,contr 
+0x6ab8 022461 ifetch 1 ,contr 
+0x6ab9 022462 lshift8 pdata ,pdata 
+0x6aba 022463 store 3 ,mem_prcp_data 
+0x6abb 022464 rtn 
+:      022465 prcp_parse_read_registers_req:
+0x6abc 022466 rtn 
+:      022467 prcp_parse_read_registers_res:
+0x6abd 022468 rtn 
+:      022469 prcp_parse_write_registers_req:
+0x6abe 022470 rtn 
+:      022474 prcp_parse_spi_config_req:
+0x6abf 022475 rtn 
+:      022476 prcp_parse_spi_read_req:
+0x6ac0 022477 rtn 
+:      022478 prcp_parse_spi_read_res:
+0x6ac1 022479 rtn 
+:      022480 prcp_parse_spi_write_req:
+0x6ac2 022481 rtn 
+:      022485 prcp_parse_pwm_config_req:
+0x6ac3 022486 ifetch 4 ,contr 
+0x6ac4 022487 hstore 1 ,core_gpio_sel2 
+0x6ac5 022488 rshift8 pdata ,pdata 
+0x6ac6 022489 hfetcht 1 ,core_gpio_sel1 
+0x6ac7 022490 and_into 0x7f ,temp 
+0x6ac8 022491 ior temp ,temp 
+0x6ac9 022492 hstoret 1 ,core_gpio_sel1 
+0x6aca 022493 rshift8 pdata ,pdata 
+0x6acb 022494 hfetcht 1 ,core_clkoff + 1 
+0x6acc 022495 and_into 0xdf ,temp 
+0x6acd 022496 ior temp ,temp 
+0x6ace 022497 hstoret 1 ,core_clkoff + 1 
+0x6acf 022498 rshift8 pdata ,pdata 
+0x6ad0 022499 hfetcht 1 ,core_clksel 
+0x6ad1 022500 and_into 0x3f ,temp 
+0x6ad2 022501 ior temp ,temp 
+0x6ad3 022502 hstoret 1 ,core_clksel 
+0x6ad4 022503 branch prcp_parse_common_res 
+:      022504 prcp_parse_pwm_write_req:
+0x6ad5 022505 ifetch 9 ,contr 
+0x6ad6 022506 hfetcht 1 ,core_gpio_key2 
+0x6ad7 022507 and_into 0x3f ,temp 
+0x6ad8 022508 ior temp ,temp 
+0x6ad9 022509 hstoret 1 ,core_gpio_key2 
+0x6ada 022510 rshift8 pdata ,pdata 
+0x6adb 022511 hstore 2 ,core_pwm_pcnt0 
+0x6adc 022512 rshift16 pdata ,pdata 
+0x6add 022513 hstore 2 ,core_pwm_ncnt0 
+0x6ade 022514 rshift16 pdata ,pdata 
+0x6adf 022515 hstore 2 ,core_pwm_pcnt1 
+0x6ae0 022516 rshift16 pdata ,pdata 
+0x6ae1 022517 hstore 2 ,core_pwm_ncnt1 
+0x6ae2 022518 branch prcp_parse_common_res 
+:      022522 prcp_parse_gpio_config_req:
+0x6ae3 022523 ifetch 4 ,contr 
+0x6ae4 022524 hstore 4 ,core_gpio_oe0 
+0x6ae5 022525 ifetch 4 ,contr 
+0x6ae6 022526 hstore 4 ,core_gpio_pu0 
+0x6ae7 022527 ifetch 4 ,contr 
+0x6ae8 022528 hstore 4 ,core_gpio_pd0 
+0x6ae9 022529 ifetch 1 ,contr 
+0x6aea 022530 hstore 1 ,core_gpio_sel 
+0x6aeb 022531 ifetch 1 ,contr 
+0x6aec 022532 hstore 1 ,core_gpio_sel1 
+0x6aed 022533 ifetch 1 ,contr 
+0x6aee 022534 hstore 1 ,core_gpio_sel2 
+0x6aef 022535 branch prcp_parse_common_res 
+:      022536 prcp_parse_gpio_read_req:
+0x6af0 022537 branch prcp_parse_gpio_read_res 
+:      022538 prcp_parse_gpio_read_res:
+0x6af1 022539 jam 0x10 ,mem_prcp_data 
+0x6af2 022540 arg mem_prcp_data + 1 ,contw 
+0x6af3 022541 hfetch 4 ,core_gpio_out0 
+0x6af4 022542 istore 4 ,contw 
+0x6af5 022543 hfetch 4 ,core_gpio_in 
+0x6af6 022544 istore 4 ,contw 
+0x6af7 022545 rtn 
+:      022546 prcp_parse_gpio_write_req:
+0x6af8 022547 ifetcht 1 ,contr 
+0x6af9 022548 ifetch 1 ,contr 
+0x6afa 022549 lshift3 pdata ,pdata 
+0x6afb 022550 lshift4 pdata ,pdata 
+0x6afc 022551 ior temp ,temp 
+0x6afd 022552 call gpio_out 
+0x6afe 022553 branch prcp_parse_common_res 
+:      022558 prcp_parse_i2c_read_req:
+0x6aff 022559 ifetcht 1 ,contr 
+0x6b00 022560 hstoret 1 ,iic_slave_addr 
+0x6b01 022561 ifetch 1 ,contr 
+0x6b02 022562 compare 1 ,pdata ,0xff 
+0x6b03 022563 ifetch 1 ,contr 
+0x6b04 022564 hstore 1 ,iic_fifo 
+0x6b05 022565 branch iic_read_data_len ,true 
+0x6b06 022566 ifetch 1 ,contr 
+0x6b07 022567 hstore 1 ,iic_fifo 
+:      022568 iic_read_data_len:
+0x6b08 022569 ifetch 1 ,contr 
+0x6b09 022570 copy pdata ,loopcnt 
+0x6b0a 022571 increase -1 ,pdata 
+0x6b0b 022572 or_into 0x90 ,pdata 
+0x6b0c 022573 hstore 1 ,iic_ctr 
+0x6b0d 022574 hjam 2 ,iic_cr 
+0x6b0e 022575 nop 1 
+0x6b0f 022577 arg mem_prcp_data ,contw 
+:      022578 iic_read_loop:
+0x6b10 022579 hfetch 1 ,iic_fifo 
+0x6b11 022580 istore 1 ,contw 
+0x6b12 022581 loop iic_read_loop 
+0x6b13 022582 rtn 
+:      022584 clear_prcp_sendbuff:
+0x6b14 022585 setarg 0 
+0x6b15 022586 store 4 ,mem_prcp_data 
+0x6b16 022587 istore 8 ,contw 
+0x6b17 022588 istore 8 ,contw 
+0x6b18 022589 rtn 
+:      022595 prcp_parse_ota_write_req:
+0x6b19 022596 copy rega ,pdata 
+0x6b1a 022597 increase 1 ,pdata 
+0x6b1b 022598 store 2 ,rx_buf_data_ptr 
+0x6b1c 022599 fetch 2 ,mem_eeprom_ota_base_addr 
+0x6b1d 022600 beq 0x0000 ,prcp_parse_ota_start1 
+:      022601 prcp_parse_ota_load:
+0x6b1e 022602 fetch 2 ,mem_eeprom_ota_base_addr 
+0x6b1f 022603 fetcht 2 ,rx_buf_data_ptr 
+0x6b20 022604 ifetcht 2 ,temp 
+0x6b21 022605 iadd temp ,pdata 
+0x6b22 022606 fetcht 2 ,rx_buf_data_ptr 
+0x6b23 022607 increase 2 ,temp 
+0x6b24 022608 copy temp ,contr 
+0x6b25 022609 ifetcht 1 ,contr 
+0x6b26 022610 copy contr ,rega 
+0x6b27 022611 branch iicd_write_ota_data 
+:      022613 prcp_parse_ota_start1:
+0x6b28 022614 setarg 0x0002 
+0x6b29 022615 byteswap pdata ,pdata 
+0x6b2a 022616 store 2 ,mem_addr_mi 
+0x6b2b 022617 arg iicd_read_eep ,regc 
+0x6b2c 022618 arg 0x2 ,loopcnt 
+:      022619 prcp_parse_ota_loop1:
+0x6b2d 022620 call get_block_header 
+0x6b2e 022621 nbranch prcp_parse_ota_start2 ,zero 
+0x6b2f 022622 fetch 2 ,mem_addr_mi 
+0x6b30 022623 byteswap pdata ,pdata 
+0x6b31 022624 iadd temp ,pdata 
+0x6b32 022625 store 2 ,mem_eeprom_ota_base_addr 
+0x6b33 022626 byteswap pdata ,pdata 
+0x6b34 022627 store 2 ,mem_addr_mi 
+0x6b35 022628 loop prcp_parse_ota_loop1 
+:      022629 prcp_parse_ota_start2:
+0x6b36 022630 fetch 2 ,mem_eeprom_ota_base_addr 
+0x6b37 022631 byteswap pdata ,pdata 
+0x6b38 022632 store 2 ,mem_addr_mi 
+0x6b39 022633 arg iicd_read_eep ,regc 
+0x6b3a 022634 arg 0xffff ,loopcnt 
+:      022635 prcp_parse_ota_loop2:
+0x6b3b 022636 call get_block_header 
+0x6b3c 022637 nbranch prcp_parse_ota_load ,zero 
+0x6b3d 022638 fetch 2 ,mem_addr_mi 
+0x6b3e 022639 byteswap pdata ,pdata 
+0x6b3f 022640 iadd temp ,pdata 
+0x6b40 022641 increase 2 ,pdata 
+0x6b41 022642 store 2 ,mem_eeprom_ota_base_addr 
+0x6b42 022643 byteswap pdata ,pdata 
+0x6b43 022644 store 2 ,mem_addr_mi 
+0x6b44 022645 loop prcp_parse_ota_loop2 
+:      022647 prcp_parse_ota_end_cmd:
+0x6b45 022648 fetch 2 ,mem_eeprom_ota_base_addr 
+0x6b46 022649 increase 2 ,pdata 
+0x6b47 022650 byteswap pdata ,pdata 
+0x6b48 022651 store 2 ,mem_eeprom_ota_base_addr 
+0x6b49 022652 arg mem_eeprom_ota_base_addr ,rega 
+0x6b4a 022653 arg 0x02 ,temp 
+0x6b4b 022654 arg 0x0000 ,pdata 
+0x6b4c 022655 call iicd_write_ota_data 
+0x6b4d 022656 setarg 0x0000 
+0x6b4e 022657 store 2 ,mem_eeprom_ota_base_addr 
+0x6b4f 022658 rtn 
+:      022660 prcp_parse_i2c_config_req:
+0x6b50 022661 rtn 
+:      022662 prcp_parse_i2c_read_res:
+0x6b51 022663 rtn 
+:      022664 prcp_parse_i2c_write_req:
+0x6b52 022665 rtn 
+:      022670 rfcomm_init:
+0x6b53 022671 rtn wake 
+0x6b54 022672 jam 0 ,mem_rfcomm_send_more_pkt 
+0x6b55 022673 jam bits9600 ,memremoterpnbitrate 
+0x6b56 022674 jam databits8 ,memremoteprndatabits 
+0x6b57 022675 jam 0x11 ,memremoteprnxon 
+0x6b58 022676 jam 0x13 ,memremoteprnxoff 
+0x6b59 022677 setarg 0 
+0x6b5a 022678 store 3 ,memremoteprnstopbit 
+0x6b5b 022679 store 1 ,mem_spp_state 
+0x6b5c 022680 jam 0 ,memui_reconnect_mode 
+:      022682 rfcomm_init_spp:
+0x6b5d 022683 set1 mark_ext_patch ,mark 
+0x6b5e 022684 bpatch patch37_7 ,mem_patch37 
+0x6b5f 022685 setarg 0 
+0x6b60 022686 store 1 ,mem_spp_state 
+0x6b61 022687 store 1 ,mem_remote_spp_channel 
+0x6b62 022688 store 1 ,mem_pn_dlci 
+0x6b63 022689 jam 0x50 ,mem_credit_given 
+0x6b64 022690 rtn 
+:      022692 set_cr_bit:
+0x6b65 022693 or_into 0x02 ,temp 
+0x6b66 022694 rtn 
+:      022706 rfcomm_calculate_fcs_sabm:
+0x6b67 022707 copy temp ,pdata 
+0x6b68 022708 reverse pdata ,pdata 
+0x6b69 022709 store 1 ,memfcstemp3 
+0x6b6a 022710 force ini_tx_sabm ,pdata 
+0x6b6b 022711 reverse pdata ,pdata 
+0x6b6c 022712 store 1 ,memfcstemp2 
+0x6b6d 022713 force 0x01 ,pdata 
+0x6b6e 022714 reverse pdata ,pdata 
+0x6b6f 022715 store 1 ,memfcstemp1 
+0x6b70 022716 call caculate_fcs 
+0x6b71 022717 copy temp ,pdata 
+0x6b72 022718 rtn 
+:      022719 rfcomm_calculate_fcs_ua:
+0x6b73 022720 reverse pdata ,pdata 
+0x6b74 022721 store 1 ,memfcstemp3 
+0x6b75 022722 force rsp_tx_ua ,pdata 
+0x6b76 022723 reverse pdata ,pdata 
+0x6b77 022724 store 1 ,memfcstemp2 
+0x6b78 022725 force 0x01 ,pdata 
+0x6b79 022726 reverse pdata ,pdata 
+0x6b7a 022727 store 1 ,memfcstemp1 
+0x6b7b 022728 branch caculate_fcs 
+:      022730 rfcomm_calculate_fcs_dlci0:
+0x6b7c 022731 fetch 1 ,mem_rfcomm_initiator 
+0x6b7d 022732 branch rfcomm_calculate_fcs_dlci0_res ,blank 
+0x6b7e 022733 setarg 0x70 
+0x6b7f 022734 rtn 
+:      022735 rfcomm_calculate_fcs_dlci0_res:
+0x6b80 022736 setarg 0xaa 
+0x6b81 022737 rtn 
+:      022739 rfcomm_save_fcs_uih:
+0x6b82 022740 reverse pdata ,pdata 
+0x6b83 022741 store 1 ,memfcstemp3 
+0x6b84 022742 force rsp_rx_uih ,pdata 
+0x6b85 022743 call caculate_uihdata_fcs 
+0x6b86 022744 fetcht 2 ,mem_contw_temp 
+0x6b87 022745 copy temp ,contw 
+0x6b88 022746 istore 1 ,contw 
+0x6b89 022747 copy contw ,temp 
+0x6b8a 022748 storet 2 ,mem_contw_temp 
+0x6b8b 022749 force rsp_rx_uih_wdata ,pdata 
+0x6b8c 022750 call caculate_uihdata_fcs 
+0x6b8d 022751 fetcht 2 ,mem_contw_temp 
+0x6b8e 022752 copy temp ,contw 
+0x6b8f 022753 istore 1 ,contw 
+0x6b90 022754 rtn 
+:      022763 caculate_uihdata_fcs:
+0x6b91 022764 reverse pdata ,pdata 
+0x6b92 022765 store 1 ,memfcstemp2 
+0x6b93 022766 fetch 2 ,memfcstemp2 
+0x6b94 022767 lshift8 pdata ,pdata 
+0x6b95 022768 store 3 ,mem_mod2div_temp 
+0x6b96 022769 arg 0x107 ,rega 
+0x6b97 022770 arg 0xf ,regb 
+0x6b98 022771 call mod2div 
+0x6b99 022772 xor_into 0xd7 ,pdata 
+0x6b9a 022773 invert pdata ,pdata 
+0x6b9b 022774 reverse pdata ,pdata 
+0x6b9c 022775 rtn 
+:      022785 caculate_fcs:
+0x6b9d 022786 fetch 3 ,memfcstemp1 
+0x6b9e 022787 store 3 ,mem_mod2div_temp 
+0x6b9f 022788 arg 0x107 ,rega 
+0x6ba0 022789 arg 0xf ,regb 
+0x6ba1 022790 call mod2div 
+0x6ba2 022791 lshift8 pdata ,pdata 
+0x6ba3 022792 arg 0x7 ,regb 
+0x6ba4 022793 call mod2div 
+0x6ba5 022794 xor_into 0x2b ,pdata 
+0x6ba6 022795 invert pdata ,pdata 
+0x6ba7 022796 reverse pdata ,pdata 
+0x6ba8 022797 copy pdata ,temp 
+0x6ba9 022798 rtn 
+:      022800 mod2div:
+0x6baa 022801 arg 0 ,regc 
+0x6bab 022802 copy regb ,loopcnt 
+0x6bac 022803 call right_shift_n 
+0x6bad 022804 icopy temp 
+:      022805 mod2div_loop:
+0x6bae 022810 copy temp ,pdata 
+0x6baf 022811 lshift regc ,regc 
+0x6bb0 022812 bbit0 8 ,mod2div_not_enough_reduction 
+0x6bb1 022813 ixor rega ,temp 
+0x6bb2 022814 increase 1 ,regc 
+:      022815 mod2div_not_enough_reduction:
+0x6bb3 022816 lshift temp ,temp 
+0x6bb4 022817 fetch 3 ,mem_mod2div_temp 
+0x6bb5 022818 increase -1 ,regb 
+0x6bb6 022819 compare 0xff ,regb ,0xff 
+0x6bb7 022820 branch mod2div_end ,true 
+0x6bb8 022821 copy regb ,loopcnt 
+0x6bb9 022822 call right_shift_n 
+0x6bba 022823 isolate1 0 ,pdata 
+0x6bbb 022824 setflag true ,0 ,temp 
+0x6bbc 022825 branch mod2div_loop 
+:      022826 mod2div_end:
+0x6bbd 022828 rshift temp ,pdata 
+0x6bbe 022829 rtn 
+:      022831 get_rfcomm_snd_adss:
+0x6bbf 022832 fetcht 1 ,mem_pn_dlci 
+:      022833 dlci_to_address_cmd:
+0x6bc0 022835 lshift2 temp ,temp 
+0x6bc1 022836 set1 rfcomm_address_ext_len ,temp 
+0x6bc2 022837 fetch 1 ,mem_rfcomm_initiator 
+0x6bc3 022838 ncall set_cr_bit ,blank 
+0x6bc4 022839 storet 1 ,mem_rfcomm_send_adss 
+0x6bc5 022840 rtn 
+:      022842 dlci_to_address_res:
+0x6bc6 022844 lshift2 temp ,temp 
+0x6bc7 022845 set1 rfcomm_address_ext_len ,temp 
+0x6bc8 022846 fetch 1 ,mem_rfcomm_initiator 
+0x6bc9 022847 call set_cr_bit ,blank 
+0x6bca 022848 rtn 
+:      022849 channel_to_dlci:
+0x6bcb 022851 lshift temp ,temp 
+0x6bcc 022852 fetch 1 ,mem_rfcomm_initiator 
+0x6bcd 022853 setflag blank ,0 ,temp 
+0x6bce 022855 rtn 
+:      022856 rfcomm_rx_process_dlci0_sabm:
+0x6bcf 022857 fetcht 1 ,mem_current_channel 
+0x6bd0 022858 jam 0xd7 ,mem_current_fcs 
+0x6bd1 022859 call rfcomm_send_ua 
+0x6bd2 022860 fetch 1 ,mem_rfcomm_state 
+0x6bd3 022861 set1 l2cap_channel_rfcomm_only_sabm ,pdata 
+0x6bd4 022862 set1 l2cap_channel_rfcomm_only_ua ,pdata 
+0x6bd5 022863 store 1 ,mem_rfcomm_state 
+0x6bd6 022864 jam 0 ,mem_rfcomm_initiator 
+0x6bd7 022865 branch rfcomm_rx_process_end 
+:      022866 rfcomm_rx_process_dlci0_ua:
+0x6bd8 022867 fetch 1 ,mem_rfcomm_state 
+0x6bd9 022868 set1 l2cap_channel_rfcomm_only_ua ,pdata 
+0x6bda 022869 store 1 ,mem_rfcomm_state 
+0x6bdb 022870 branch rfcomm_rx_process_end 
+:      022873 rfcomm_rx_process:
+0x6bdc 022874 set1 mark_ext_patch ,mark 
+0x6bdd 022875 bpatch patch38_0 ,mem_patch38 
+0x6bde 022876 fetch 1 ,memui_reconnect_mode 
+0x6bdf 022877 beq no_reconnection ,rfcomm_rx_process_remote_page 
+0x6be0 022878 branch rfcomm_rx_process_reconn 
+:      022880 rfcomm_rx_process_remote_page:
+0x6be1 022881 fetch 2 ,mem_l2cap_payload_ptr 
+0x6be2 022882 copy pdata ,contr 
+0x6be3 022883 call get_rfcomm_head_struct 
+0x6be4 022884 fetch 1 ,mem_current_channel 
+0x6be5 022885 beq 0 ,parse_dlci0_rp 
+0x6be6 022886 branch parse_uih_rp 
+:      022887 parse_dlci0_rp:
+0x6be7 022888 set1 mark_ext_patch ,mark 
+0x6be8 022889 bpatch patch38_1 ,mem_patch38 
+0x6be9 022890 fetch 1 ,mem_current_frame_type 
+0x6bea 022891 beq rfcomm_frame_type_sabm ,rfcomm_rx_process_dlci0_sabm 
+0x6beb 022892 beq rfcomm_frame_type_ua ,rfcomm_rx_process_dlci0_ua 
+0x6bec 022893 beq rfcomm_frame_type_uih ,parse_dlci0_rp_uih 
+0x6bed 022894 rtneq rfcomm_frame_type_disconn 
+0x6bee 022895 branch assert 
+:      022898 parse_dlci0_rp_uih:
+0x6bef 022899 fetch 2 ,mem_rfcomm_uih_payload_ptr 
+0x6bf0 022900 copy pdata ,contr 
+0x6bf1 022901 call get_rfcomm_uih_head_struct 
+0x6bf2 022902 fetch 1 ,mem_uih_cmd_type 
+0x6bf3 022903 beq uih_param_neg_cmd ,parse_dlci0_rp_uih_pn_cmd 
+0x6bf4 022904 beq uih_param_neg_res ,parse_dlci0_rp_uih_pn_res 
+0x6bf5 022905 beq uih_modem_status_cmd ,parse_dlci0_rp_uih_ms_cmd 
+0x6bf6 022906 beq uih_modem_status_res ,parse_dlci0_rp_uih_ms_res 
+0x6bf7 022907 branch rfcomm_rx_process_end 
+:      022909 parse_dlci0_rp_uih_pn_cmd:
+0x6bf8 022910 call parse_dlci0_rp_uih_pn_res_common 
+0x6bf9 022911 fetch 1 ,mem_pn_dlci 
+0x6bfa 022912 rshift pdata ,pdata 
+0x6bfb 022913 sub pdata ,spp_slave_channel ,null 
+0x6bfc 022914 branch parse_dlci0_rp_uih_pn_cmd_spp ,zero 
+0x6bfd 022915 branch assert 
+:      022916 parse_dlci0_rp_uih_pn_cmd_spp:
+0x6bfe 022917 fetch 1 ,mem_spp_state 
+0x6bff 022918 set1 rfcomm_channel_state_pn_cmd ,pdata 
+0x6c00 022919 set1 rfcomm_channel_state_pn_res ,pdata 
+0x6c01 022920 store 1 ,mem_spp_state 
+0x6c02 022921 call rfcomm_send_param_neg_res 
+0x6c03 022922 branch rfcomm_rx_process_end 
+:      022924 parse_dlci0_rp_uih_pn_res:
+0x6c04 022925 call parse_dlci0_rp_uih_pn_res_common 
+0x6c05 022926 branch rfcomm_rx_process_end 
+:      022928 parse_dlci0_rp_uih_pn_res_common:
+0x6c06 022929 call get_param_payload_ptr 
+0x6c07 022930 branch get_rfcomm_prarmer_negotiation 
+:      022932 get_rfcomm_param_modem_status:
+0x6c08 022933 call get_param_payload_ptr 
+0x6c09 022934 ifetch 1 ,contr 
+0x6c0a 022935 rshift3 pdata ,pdata 
+0x6c0b 022936 store 1 ,mem_ms_channel 
+0x6c0c 022937 ifetch 1 ,contr 
+0x6c0d 022938 store 1 ,mem_ms_param 
+0x6c0e 022939 rtn 
+:      022942 get_rfcomm_head_struct:
+0x6c0f 022943 ifetch 1 ,contr 
+0x6c10 022944 store 1 ,mem_current_adss 
+0x6c11 022945 rshift3 pdata ,pdata 
+0x6c12 022946 store 1 ,mem_current_channel 
+0x6c13 022947 ifetch 1 ,contr 
+0x6c14 022948 store 1 ,mem_current_frame_type 
+:      022949 get_rfcomm_current_length:
+0x6c15 022950 call get_rfcomm_length_common 
+0x6c16 022951 storet 2 ,mem_current_length 
+0x6c17 022952 copy contr ,pdata 
+0x6c18 022953 store 2 ,mem_rfcomm_uih_payload_ptr 
+0x6c19 022954 rtn 
+:      022956 get_rfcomm_uih_head_struct:
+0x6c1a 022957 ifetch 1 ,contr 
+0x6c1b 022958 rshift pdata ,pdata 
+0x6c1c 022959 store 1 ,mem_uih_cmd_type 
+0x6c1d 022960 call get_rfcomm_length_common 
+0x6c1e 022961 storet 2 ,mem_uih_length 
+0x6c1f 022962 copy contr ,pdata 
+0x6c20 022963 store 2 ,mem_param_payload_ptr 
+0x6c21 022964 rtn 
+:      022967 get_param_payload_ptr:
+0x6c22 022968 fetch 2 ,mem_param_payload_ptr 
+0x6c23 022969 copy pdata ,contr 
+0x6c24 022970 rtn 
+:      022972 get_rfcomm_param_length_common:
+0x6c25 022973 fetch 2 ,mem_param_payload_ptr 
+0x6c26 022974 copy pdata ,contr 
+:      022975 get_rfcomm_length_common:
+0x6c27 022976 ifetch 1 ,contr 
+0x6c28 022977 copy pdata ,temp 
+0x6c29 022978 rshift temp ,temp 
+0x6c2a 022979 rtnbit1 0 
+0x6c2b 022980 ifetch 1 ,contr 
+0x6c2c 022981 lshift3 pdata ,pdata 
+0x6c2d 022982 lshift4 pdata ,pdata 
+0x6c2e 022983 iadd temp ,temp 
+0x6c2f 022984 rtn 
+:      022986 get_rfcomm_prarmer_negotiation:
+0x6c30 022987 ifetch 1 ,contr 
+0x6c31 022988 store 1 ,mem_pn_dlci 
+0x6c32 022989 ifetch 1 ,contr 
+0x6c33 022990 store 1 ,mem_pn_credit_flow_type_info 
+0x6c34 022991 ifetch 1 ,contr 
+0x6c35 022992 store 1 ,mem_pn_priority 
+0x6c36 022993 ifetch 1 ,contr 
+0x6c37 022994 store 1 ,mem_pn_acknowledg_timer 
+0x6c38 022995 ifetch 2 ,contr 
+0x6c39 022996 store 2 ,mem_pn_max_frame_size 
+0x6c3a 022997 ifetch 1 ,contr 
+0x6c3b 022998 store 1 ,mem_pn_max_retrans 
+0x6c3c 022999 ifetch 1 ,contr 
+0x6c3d 023000 store 1 ,mem_remote_credits 
+0x6c3e 023001 rtn 
+:      023004 parse_dlci0_rp_uih_ms_cmd:
+0x6c3f 023005 call get_rfcomm_param_modem_status 
+0x6c40 023006 fetch 1 ,mem_ms_channel 
+0x6c41 023007 sub pdata ,1 ,null 
+0x6c42 023008 branch parse_dlci0_rp_uih_ms_cmd_spp ,zero 
+0x6c43 023009 branch assert 
+:      023010 parse_dlci0_rp_uih_ms_cmd_spp:
+0x6c44 023011 fetch 1 ,mem_spp_state 
+0x6c45 023012 set1 rfcomm_channel_state_rcv_ms_cmd ,pdata 
+0x6c46 023013 set1 rfcomm_channel_state_snd_ms_res ,pdata 
+0x6c47 023014 store 1 ,mem_spp_state 
+0x6c48 023015 fetcht 1 ,mem_pn_dlci 
+0x6c49 023016 lshift2 temp ,temp 
+0x6c4a 023017 or_into 3 ,temp 
+0x6c4b 023018 call rfcomm_send_modem_status_res 
+0x6c4c 023019 jam more_pkt_msc_cmd_spp ,mem_rfcomm_send_more_pkt 
+0x6c4d 023020 branch rfcomm_rx_process_end 
+:      023022 parse_dlci0_rp_uih_ms_res:
+0x6c4e 023023 call get_rfcomm_param_modem_status 
+0x6c4f 023024 fetch 1 ,mem_ms_channel 
+0x6c50 023025 sub pdata ,1 ,null 
+0x6c51 023026 branch parse_dlci0_rp_uih_ms_res_spp ,zero 
+0x6c52 023027 branch assert 
+:      023028 parse_dlci0_rp_uih_ms_res_spp:
+0x6c53 023029 fetch 1 ,mem_spp_state 
+0x6c54 023030 set1 rfcomm_channel_state_rcv_ms_res ,pdata 
+0x6c55 023031 store 1 ,mem_spp_state 
+0x6c56 023032 branch rfcomm_rx_process_end 
+:      023034 parse_uih_rp:
+0x6c57 023035 fetch 1 ,mem_current_channel 
+0x6c58 023036 sub pdata ,spp_slave_channel ,null 
+0x6c59 023037 branch parse_uih_rp_spp ,zero 
+0x6c5a 023038 branch assert 
+:      023039 parse_uih_rp_spp:
+0x6c5b 023040 fetch 1 ,mem_current_frame_type 
+0x6c5c 023041 beq rfcomm_frame_type_ua ,parse_uih_rp_spp_ua 
+0x6c5d 023042 beq rfcomm_frame_type_sabm ,parse_uih_rp_spp_sabm 
+0x6c5e 023043 beq rfcomm_frame_type_uih ,parse_uih_spp_uih 
+0x6c5f 023044 beq rfcomm_frame_type_uih_credits ,parse_uih_spp_uih_credits 
+0x6c60 023045 beq rfcomm_frame_type_disconn ,parse_uih_rp_spp_disconn 
+0x6c61 023046 branch assert 
+:      023047 parse_uih_rp_spp_ua:
+0x6c62 023048 fetch 1 ,mem_spp_state 
+0x6c63 023049 set1 rfcomm_channel_state_ua ,pdata 
+0x6c64 023050 store 1 ,mem_spp_state 
+0x6c65 023051 branch rfcomm_rx_process_end 
+:      023052 parse_uih_rp_spp_sabm:
+0x6c66 023053 fetch 1 ,mem_spp_state 
+0x6c67 023054 set1 rfcomm_channel_state_ua ,pdata 
+0x6c68 023055 set1 rfcomm_channel_state_sabm ,pdata 
+0x6c69 023056 store 1 ,mem_spp_state 
+0x6c6a 023057 fetch 1 ,mem_current_adss 
+0x6c6b 023058 call rfcomm_calculate_fcs_ua 
+0x6c6c 023059 store 1 ,mem_current_fcs 
+0x6c6d 023060 call rfcomm_send_ua 
+0x6c6e 023061 fetch 1 ,mem_current_adss 
+0x6c6f 023062 rshift2 pdata ,pdata 
+0x6c70 023063 store 1 ,mem_pn_dlci 
+0x6c71 023064 lshift2 pdata ,pdata 
+0x6c72 023065 set0 rfcomm_address_cr ,pdata 
+0x6c73 023066 set1 rfcomm_address_ext_len ,pdata 
+0x6c74 023067 arg mem_hiufcs_spp ,temp 
+0x6c75 023068 storet 2 ,mem_contw_temp 
+0x6c76 023069 call rfcomm_save_fcs_uih 
+0x6c77 023070 branch rfcomm_rx_process_end 
+:      023072 parse_uih_spp_uih_credits:
+0x6c78 023073 fetch 2 ,mem_rfcomm_uih_payload_ptr 
+0x6c79 023074 copy pdata ,contr 
+0x6c7a 023075 increase 1 ,pdata 
+0x6c7b 023076 store 2 ,mem_rfcomm_uih_payload_ptr 
+0x6c7c 023077 ifetch 1 ,contr 
+0x6c7d 023078 fetcht 1 ,mem_remote_credits 
+0x6c7e 023079 iadd temp ,pdata 
+0x6c7f 023080 store 1 ,mem_remote_credits 
+:      023081 parse_uih_spp_uih:
+0x6c80 023082 call rfcomm_increase_credit_given 
+:      023083 parse_uih_spp_uih_cont:
+0x6c81 023084 call get_rfcomm_snd_adss 
+0x6c82 023085 call rfcomm_send_uih_without_payload 
+0x6c83 023086 call spp_process_rx_data 
+0x6c84 023087 branch rfcomm_rx_process_end 
+:      023089 parse_uih_rp_spp_disconn:
+0x6c85 023090 call rfcomm_init_spp 
+0x6c86 023091 fetch 1 ,mem_current_adss 
+0x6c87 023092 call rfcomm_calculate_fcs_ua 
+0x6c88 023093 store 1 ,mem_current_fcs 
+0x6c89 023094 call rfcomm_send_ua 
+0x6c8a 023095 branch rfcomm_rx_process_end 
+:      023100 rfcomm_rx_process_reconn:
+0x6c8b 023101 fetch 2 ,mem_l2cap_payload_ptr 
+0x6c8c 023102 copy pdata ,contr 
+0x6c8d 023103 call get_rfcomm_head_struct 
+0x6c8e 023104 fetch 1 ,mem_current_channel 
+0x6c8f 023105 beq 0 ,parse_dlci0_reconn 
+0x6c90 023106 branch parse_uih_reconn 
+:      023108 parse_dlci0_reconn:
+0x6c91 023109 set1 mark_ext_patch ,mark 
+0x6c92 023110 bpatch patch38_2 ,mem_patch38 
+0x6c93 023111 fetch 1 ,mem_current_frame_type 
+0x6c94 023112 beq rfcomm_frame_type_sabm ,rfcomm_rx_process_dlci0_sabm 
+0x6c95 023113 beq rfcomm_frame_type_ua ,rfcomm_rx_process_dlci0_ua 
+0x6c96 023114 beq rfcomm_frame_type_uih ,parse_dlci0_reconn_uih 
+0x6c97 023115 branch rfcomm_rx_process_end 
+:      023116 parse_dlci0_reconn_uih:
+0x6c98 023117 fetch 2 ,mem_rfcomm_uih_payload_ptr 
+0x6c99 023118 copy pdata ,contr 
+0x6c9a 023119 call get_rfcomm_uih_head_struct 
+0x6c9b 023120 fetch 1 ,mem_uih_cmd_type 
+0x6c9c 023121 beq uih_param_neg_cmd ,parse_dlci0_reconn_uih_pn_cmd 
+0x6c9d 023122 beq uih_param_neg_res ,parse_dlci0_reconn_uih_pn_cmd 
+0x6c9e 023123 beq uih_modem_status_cmd ,parse_dlci0_reconn_uih_ms_cmd 
+0x6c9f 023124 beq uih_modem_status_res ,parse_dlci0_reconn_uih_ms_res 
+0x6ca0 023125 branch rfcomm_rx_process_end 
+:      023127 parse_dlci0_reconn_uih_pn_cmd:
+0x6ca1 023128 call parse_dlci0_rp_uih_pn_res_common 
+0x6ca2 023129 fetch 1 ,mem_pn_dlci 
+0x6ca3 023130 rshift pdata ,pdata 
+0x6ca4 023131 fetcht 1 ,mem_remote_spp_channel 
+0x6ca5 023132 isub temp ,null 
+0x6ca6 023133 branch parse_dlci0_reconn_uih_pn_cmd_spp ,zero 
+0x6ca7 023134 branch assert 
+:      023135 parse_dlci0_reconn_uih_pn_cmd_spp:
+0x6ca8 023136 fetch 1 ,mem_spp_state 
+0x6ca9 023137 set1 rfcomm_channel_state_pn_res ,pdata 
+0x6caa 023138 store 1 ,mem_spp_state 
+0x6cab 023139 branch rfcomm_rx_process_end 
+:      023141 parse_dlci0_reconn_uih_ms_cmd:
+0x6cac 023142 call get_rfcomm_param_modem_status 
+0x6cad 023143 fetch 1 ,mem_ms_channel 
+0x6cae 023144 fetcht 1 ,mem_remote_spp_channel 
+0x6caf 023145 isub temp ,null 
+0x6cb0 023146 branch parse_dlci0_reconn_uih_ms_cmd_spp ,zero 
+0x6cb1 023147 branch assert 
+0x6cb2 023148 branch rfcomm_rx_process_end 
+:      023149 parse_dlci0_reconn_uih_ms_cmd_spp:
+0x6cb3 023150 fetch 1 ,mem_spp_state 
+0x6cb4 023151 set1 rfcomm_channel_state_rcv_ms_cmd ,pdata 
+0x6cb5 023152 set1 rfcomm_channel_state_snd_ms_res ,pdata 
+0x6cb6 023153 store 1 ,mem_spp_state 
+0x6cb7 023154 fetcht 1 ,mem_pn_dlci 
+0x6cb8 023155 lshift2 temp ,temp 
+0x6cb9 023156 or_into 3 ,temp 
+0x6cba 023157 call rfcomm_send_modem_status_res 
+0x6cbb 023158 branch rfcomm_rx_process_end 
+:      023160 parse_dlci0_reconn_uih_ms_res:
+0x6cbc 023161 call get_rfcomm_param_modem_status 
+0x6cbd 023162 fetch 1 ,mem_ms_channel 
+0x6cbe 023163 fetcht 1 ,mem_remote_spp_channel 
+0x6cbf 023164 isub temp ,null 
+0x6cc0 023165 branch parse_dlci0_reconn_uih_ms_res_spp ,zero 
+0x6cc1 023166 branch assert 
+:      023167 parse_dlci0_reconn_uih_ms_res_spp:
+0x6cc2 023168 fetch 1 ,mem_spp_state 
+0x6cc3 023169 set1 rfcomm_channel_state_rcv_ms_res ,pdata 
+0x6cc4 023170 store 1 ,mem_spp_state 
+0x6cc5 023171 branch rfcomm_rx_process_end 
+:      023173 parse_uih_reconn:
+0x6cc6 023174 fetch 1 ,mem_current_channel 
+0x6cc7 023175 fetcht 1 ,mem_remote_spp_channel 
+0x6cc8 023176 isub temp ,null 
+0x6cc9 023177 branch parse_uih_reconn_spp ,zero 
+0x6cca 023178 branch assert 
+0x6ccb 023179 branch rfcomm_rx_process_end 
+:      023181 parse_uih_reconn_spp:
+0x6ccc 023182 fetch 1 ,mem_current_frame_type 
+0x6ccd 023183 beq rfcomm_frame_type_ua ,parse_uih_reconn_spp_ua 
+0x6cce 023184 beq rfcomm_frame_type_uih ,parse_uih_spp_uih 
+0x6ccf 023185 beq rfcomm_frame_type_uih_credits ,parse_uih_spp_uih_credits 
+0x6cd0 023186 beq rfcomm_frame_type_disconn ,parse_uih_reconn_spp_disconn 
+:      023187 parse_uih_reconn_spp_ua:
+0x6cd1 023188 fetch 1 ,mem_spp_state 
+0x6cd2 023189 set1 rfcomm_channel_state_ua ,pdata 
+0x6cd3 023190 store 1 ,mem_spp_state 
+0x6cd4 023191 branch rfcomm_rx_process_end 
+:      023192 parse_uih_reconn_spp_sabm:
+0x6cd5 023193 branch parse_uih_reconn_spp_sabm 
+:      023194 parse_uih_reconn_spp_disconn:
+0x6cd6 023195 branch parse_uih_rp_spp_disconn 
+:      023196 rfcomm_rx_process_end:
+0x6cd7 023197 rtn 
+:      023199 rfcomm_send_more_pkt:
+0x6cd8 023200 fetch 1 ,mem_rfcomm_send_more_pkt 
+0x6cd9 023201 rtn blank 
+0x6cda 023202 beq more_pkt_msc_cmd_spp ,rfcomm_send_more_pkt_msc_cmd_spp 
+0x6cdb 023203 branch assert 
+:      023205 rfcomm_send_more_pkt_msc_cmd_spp:
+0x6cdc 023206 jam 0 ,mem_rfcomm_send_more_pkt 
+0x6cdd 023207 call l2cap_malloc_rfcomm_channel 
+0x6cde 023208 arg spp_slave_channel ,temp 
+0x6cdf 023209 lshift3 temp ,temp 
+:      023210 rfcomm_send_more_pkt_msc_cmd_spp0:
+0x6ce0 023211 or_into 0x03 ,temp 
+0x6ce1 023212 arg 0xaa ,rega 
+0x6ce2 023213 call rfcomm_send_modem_status_cmd 
+0x6ce3 023214 call l2cap_get_rfcomm_tx_buff 
+0x6ce4 023215 copy contw ,contr 
+0x6ce5 023216 ifetch 2 ,contr 
+0x6ce6 023217 branch assert ,blank 
+0x6ce7 023218 rtn 
+:      023220 rfcomm_send_sabm:
+0x6ce8 023221 set1 mark_ext_patch ,mark 
+0x6ce9 023222 bpatch patch38_3 ,mem_patch38 
+0x6cea 023223 call l2cap_get_rfcomm_tx_buff 
+0x6ceb 023224 setarg 0x0004 
+0x6cec 023225 istore 2 ,contw 
+0x6ced 023226 fetch 2 ,mem_rfcomm_remote_cid 
+0x6cee 023227 istore 2 ,contw 
+0x6cef 023228 fetch 1 ,mem_current_adss 
+0x6cf0 023229 istore 1 ,contw 
+0x6cf1 023230 setarg 0x013f 
+0x6cf2 023231 istore 2 ,contw 
+0x6cf3 023232 fetch 1 ,mem_current_fcs 
+0x6cf4 023233 istore 1 ,contw 
+0x6cf5 023234 rtn 
+:      023235 rfcomm_send_ua:
+0x6cf6 023236 set1 mark_ext_patch ,mark 
+0x6cf7 023237 bpatch patch38_4 ,mem_patch38 
+0x6cf8 023238 call l2cap_malloc_rfcomm_channel 
+0x6cf9 023239 call l2cap_get_rfcomm_tx_buff 
+0x6cfa 023240 setarg 0x0004 
+0x6cfb 023241 istore 2 ,contw 
+0x6cfc 023242 fetch 2 ,mem_rfcomm_remote_cid 
+0x6cfd 023243 istore 2 ,contw 
+0x6cfe 023244 fetch 1 ,mem_current_adss 
+0x6cff 023245 istore 1 ,contw 
+0x6d00 023246 setarg 0x0173 
+0x6d01 023247 istore 2 ,contw 
+0x6d02 023248 fetch 1 ,mem_current_fcs 
+0x6d03 023249 istore 1 ,contw 
+0x6d04 023250 rtn 
+:      023251 rfcomm_send_param_neg_cmd:
+0x6d05 023252 set1 mark_ext_patch ,mark 
+0x6d06 023253 bpatch patch38_5 ,mem_patch38 
+0x6d07 023254 call l2cap_get_rfcomm_tx_buff 
+0x6d08 023255 setarg 0x000e 
+0x6d09 023256 istore 2 ,contw 
+0x6d0a 023257 fetch 2 ,mem_rfcomm_remote_cid 
+0x6d0b 023258 istore 2 ,contw 
+0x6d0c 023259 fetch 1 ,mem_rfcomm_initiator 
+0x6d0d 023260 lshift pdata ,pdata 
+0x6d0e 023261 set1 0 ,pdata 
+0x6d0f 023262 istore 1 ,contw 
+0x6d10 023263 setarg 0x15ef 
+0x6d11 023264 istore 2 ,contw 
+0x6d12 023265 setarg 0x1183 
+0x6d13 023266 istore 2 ,contw 
+0x6d14 023267 copy temp ,pdata 
+0x6d15 023268 istore 1 ,contw 
+0x6d16 023269 setarg 0x0000f0 
+0x6d17 023270 istore 3 ,contw 
+0x6d18 023271 setarg rfcomm_max_frame_size 
+0x6d19 023272 istore 2 ,contw 
+0x6d1a 023273 setarg 0 
+0x6d1b 023274 istore 1 ,contw 
+0x6d1c 023275 setarg 0x01 
+0x6d1d 023276 istore 1 ,contw 
+0x6d1e 023277 call rfcomm_calculate_fcs_dlci0 
+0x6d1f 023278 istore 1 ,contw 
+0x6d20 023279 jam 0x10 ,mem_credit_given 
+0x6d21 023280 rtn 
+:      023281 rfcomm_send_param_neg_res:
+0x6d22 023282 set1 mark_ext_patch ,mark 
+0x6d23 023283 bpatch patch38_6 ,mem_patch38 
+0x6d24 023284 call l2cap_malloc_rfcomm_channel 
+0x6d25 023285 call l2cap_get_rfcomm_tx_buff 
+0x6d26 023286 setarg 0x000e 
+0x6d27 023287 istore 2 ,contw 
+0x6d28 023288 fetch 2 ,mem_rfcomm_remote_cid 
+0x6d29 023289 istore 2 ,contw 
+0x6d2a 023290 fetch 1 ,mem_rfcomm_initiator 
+0x6d2b 023291 lshift pdata ,pdata 
+0x6d2c 023292 set1 0 ,pdata 
+0x6d2d 023293 istore 1 ,contw 
+0x6d2e 023294 setarg 0x15ef 
+0x6d2f 023295 istore 2 ,contw 
+0x6d30 023296 setarg 0x1181 
+0x6d31 023297 istore 2 ,contw 
+0x6d32 023298 fetch 1 ,mem_pn_dlci 
+0x6d33 023299 istore 1 ,contw 
+0x6d34 023300 setarg 0x0000e0 
+0x6d35 023301 istore 3 ,contw 
+0x6d36 023302 setarg rfcomm_max_frame_size 
+0x6d37 023303 istore 2 ,contw 
+0x6d38 023304 setarg 0x00 
+0x6d39 023305 istore 1 ,contw 
+0x6d3a 023306 setarg 0x07 
+0x6d3b 023307 istore 1 ,contw 
+0x6d3c 023308 call rfcomm_calculate_fcs_dlci0 
+0x6d3d 023309 istore 1 ,contw 
+0x6d3e 023310 rtn 
+:      023311 rfcomm_send_modem_status_cmd:
+0x6d3f 023312 set1 mark_ext_patch ,mark 
+0x6d40 023313 bpatch patch38_7 ,mem_patch38 
+0x6d41 023314 call l2cap_get_rfcomm_tx_buff 
+0x6d42 023315 setarg 0x0008 
+0x6d43 023316 istore 2 ,contw 
+0x6d44 023317 fetch 2 ,mem_rfcomm_remote_cid 
+0x6d45 023318 istore 2 ,contw 
+0x6d46 023319 fetch 1 ,mem_rfcomm_initiator 
+0x6d47 023320 lshift pdata ,pdata 
+0x6d48 023321 set1 0 ,pdata 
+0x6d49 023322 istore 1 ,contw 
+0x6d4a 023323 setarg 0x09ef 
+0x6d4b 023324 istore 2 ,contw 
+0x6d4c 023325 setarg 0x05e3 
+0x6d4d 023326 istore 2 ,contw 
+0x6d4e 023327 copy temp ,pdata 
+0x6d4f 023328 istore 1 ,contw 
+0x6d50 023329 setarg 0x8d 
+0x6d51 023330 istore 1 ,contw 
+0x6d52 023331 call rfcomm_calculate_fcs_dlci0 
+0x6d53 023332 istore 1 ,contw 
+0x6d54 023333 rtn 
+:      023335 rfcomm_send_modem_status_res:
+0x6d55 023336 set1 mark_ext_patch ,mark 
+0x6d56 023337 bpatch patch39_0 ,mem_patch39 
+0x6d57 023338 call l2cap_malloc_rfcomm_channel 
+0x6d58 023339 call l2cap_get_rfcomm_tx_buff 
+0x6d59 023340 setarg 0x0008 
+0x6d5a 023341 istore 2 ,contw 
+0x6d5b 023342 fetch 2 ,mem_rfcomm_remote_cid 
+0x6d5c 023343 istore 2 ,contw 
+0x6d5d 023344 copy temp ,timeup 
+0x6d5e 023345 fetch 1 ,mem_rfcomm_initiator 
+0x6d5f 023346 lshift pdata ,pdata 
+0x6d60 023347 set1 0 ,pdata 
+0x6d61 023348 istore 1 ,contw 
+0x6d62 023349 setarg 0x09ef 
+0x6d63 023350 istore 2 ,contw 
+0x6d64 023351 setarg 0x05e1 
+0x6d65 023352 istore 2 ,contw 
+0x6d66 023353 copy timeup ,pdata 
+0x6d67 023354 istore 1 ,contw 
+0x6d68 023355 setarg 0x8d 
+0x6d69 023356 istore 1 ,contw 
+0x6d6a 023357 call rfcomm_calculate_fcs_dlci0 
+0x6d6b 023358 istore 1 ,contw 
+0x6d6c 023359 rtn 
+:      023361 rfcomm_send_uih_without_payload:
+0x6d6d 023362 set1 mark_ext_patch ,mark 
+0x6d6e 023363 bpatch patch39_1 ,mem_patch39 
+0x6d6f 023364 fetch 1 ,mem_credit_given 
+0x6d70 023365 rtn blank 
+0x6d71 023366 hfetch 2 ,core_uart_rxitems 
+0x6d72 023367 nrtn blank 
+0x6d73 023368 copy rega ,pdata 
+0x6d74 023369 store 1 ,mem_pdatatemp + 1 
+0x6d75 023370 storet 1 ,mem_pdatatemp 
+0x6d76 023371 call l2cap_malloc_is_fifo_full 
+0x6d77 023372 nrtn blank 
+0x6d78 023373 call l2cap_malloc_rfcomm_channel 
+0x6d79 023374 call l2cap_get_rfcomm_tx_buff 
+0x6d7a 023375 setarg 0x05 
+0x6d7b 023376 istore 2 ,contw 
+0x6d7c 023377 fetch 2 ,mem_rfcomm_remote_cid 
+0x6d7d 023378 istore 2 ,contw 
+0x6d7e 023379 fetch 1 ,mem_rfcomm_send_adss 
+0x6d7f 023380 istore 1 ,contw 
+0x6d80 023381 setarg 0x01ff 
+0x6d81 023382 istore 2 ,contw 
+0x6d82 023383 fetch 1 ,mem_credit_given 
+0x6d83 023384 istore 1 ,contw 
+0x6d84 023385 fetch 1 ,mem_hiufcs_spp_wcredits 
+0x6d85 023386 istore 1 ,contw 
+0x6d86 023387 jam 0 ,mem_credit_given 
+0x6d87 023388 rtn 
+:      023390 rfcomm_increase_credit_given:
+0x6d88 023391 fetch 2 ,mem_current_length 
+0x6d89 023392 rtn blank 
+0x6d8a 023393 fetch 1 ,mem_credit_given 
+0x6d8b 023394 increase 1 ,pdata 
+0x6d8c 023395 store 1 ,mem_credit_given 
+0x6d8d 023396 rtn 
+:      023398 spp_process_rx_data:
+0x6d8e 023399 set1 mark_ext_patch ,mark 
+0x6d8f 023400 bpatch patch39_2 ,mem_patch39 
+0x6d90 023401 fetch 2 ,mem_current_length 
+0x6d91 023402 copy pdata ,loopcnt 
+0x6d92 023403 call uartd_prepare_tx 
+0x6d93 023404 fetch 2 ,mem_rfcomm_uih_payload_ptr 
+0x6d94 023405 copy pdata ,contr 
+0x6d95 023406 call uart_copy_tx_bytes 
+0x6d96 023407 branch uartd_send 
+:      023409 spp_tx_rfcomm_packet:
+0x6d97 023410 set1 mark_ext_patch ,mark 
+0x6d98 023411 bpatch patch39_3 ,mem_patch39 
+0x6d99 023413 fetch 1 ,mem_remote_credits 
+0x6d9a 023414 rtn blank 
+0x6d9b 023415 increase -1 ,pdata 
+0x6d9c 023416 store 1 ,mem_remote_credits 
+0x6d9d 023417 fetch 2 ,mem_pn_max_frame_size 
+0x6d9e 023418 fetcht 2 ,mem_current_packet_length 
+0x6d9f 023419 isub temp ,null 
+0x6da0 023420 branch spp_tx_rfcomm_from_uart ,positive 
+0x6da1 023421 store 2 ,mem_current_packet_length 
+:      023422 spp_tx_rfcomm_from_uart:
+0x6da2 023423 fetch 1 ,mem_credit_given 
+0x6da3 023424 branch spp_tx_rfcomm_from_uart_without_credit ,blank 
+0x6da4 023425 jam 1 ,mem_rfcomm_send_offset 
+0x6da5 023426 fetch 1 ,mem_hiufcs_spp_wcredits 
+0x6da6 023427 store 1 ,mem_rfcomm_send_fcs 
+0x6da7 023428 setarg rsp_rx_uih_wdata 
+0x6da8 023429 store 1 ,mem_rfcomm_send_frame_type 
+0x6da9 023430 branch spp_tx_rfcomm_from_uart_common 
+:      023431 spp_tx_rfcomm_from_uart_without_credit:
+0x6daa 023432 jam 0 ,mem_rfcomm_send_offset 
+0x6dab 023433 fetch 1 ,mem_hiufcs_spp 
+0x6dac 023434 store 1 ,mem_rfcomm_send_fcs 
+0x6dad 023435 setarg rsp_tx_uih 
+0x6dae 023436 store 1 ,mem_rfcomm_send_frame_type 
+:      023437 spp_tx_rfcomm_from_uart_common:
+0x6daf 023438 set1 mark_ext_patch ,mark 
+0x6db0 023439 bpatch patch39_4 ,mem_patch39 
+0x6db1 023440 fetch 1 ,mem_current_packet_length 
+0x6db2 023441 sub pdata ,127 ,null 
+0x6db3 023442 branch spp_tx_rfcomm_from_uart_common0 ,positive 
+0x6db4 023443 fetch 1 ,mem_rfcomm_send_offset 
+0x6db5 023444 increase 1 ,pdata 
+0x6db6 023445 store 1 ,mem_rfcomm_send_offset 
+:      023446 spp_tx_rfcomm_from_uart_common0:
+0x6db7 023447 call get_rfcomm_snd_adss 
+0x6db8 023448 fetch 2 ,mem_current_packet_length 
+0x6db9 023449 increase 8 ,pdata 
+0x6dba 023450 fetcht 1 ,mem_rfcomm_send_offset 
+0x6dbb 023451 iadd temp ,rega 
+0x6dbc 023453 call l2cap_malloc 
+0x6dbd 023454 store 2 ,mem_rfcomm_tx_buff_ptr 
+0x6dbe 023455 increase 4 ,pdata 
+0x6dbf 023456 store 2 ,mem_rfcomm_tx_payload_ptr 
+0x6dc0 023457 copy pdata ,contw 
+0x6dc1 023458 fetch 1 ,mem_rfcomm_send_adss 
+0x6dc2 023459 istore 1 ,contw 
+0x6dc3 023460 fetch 1 ,mem_rfcomm_send_frame_type 
+0x6dc4 023461 istore 1 ,contw 
+0x6dc5 023462 call spp_tx_write_length 
+0x6dc6 023463 call spp_tx_write_given_credit 
+0x6dc7 023464 call get_uart_rrptr 
+0x6dc8 023465 fetch 1 ,mem_current_packet_length 
+0x6dc9 023466 copy pdata ,loopcnt 
+0x6dca 023467 call uart_copy_rx_bytes 
+0x6dcb 023468 fetch 1 ,mem_rfcomm_send_fcs 
+0x6dcc 023469 istore 1 ,contw 
+0x6dcd 023470 fetch 2 ,mem_rfcomm_tx_buff_ptr 
+0x6dce 023471 copy pdata ,contw 
+0x6dcf 023472 fetch 2 ,mem_current_packet_length 
+0x6dd0 023473 fetcht 1 ,mem_rfcomm_send_offset 
+0x6dd1 023474 iadd temp ,pdata 
+0x6dd2 023475 increase 4 ,pdata 
+0x6dd3 023476 istore 2 ,contw 
+0x6dd4 023477 fetch 2 ,mem_rfcomm_remote_cid 
+0x6dd5 023478 istore 2 ,contw 
+0x6dd6 023479 jam 0 ,mem_credit_given 
+0x6dd7 023480 branch spp_send_end 
+:      023482 spp_tx_write_length:
+0x6dd8 023483 fetch 2 ,mem_current_packet_length 
+0x6dd9 023484 sub pdata ,0x7f ,null 
+0x6dda 023485 nbranch spp_tx_write_long_packet ,positive 
+0x6ddb 023486 lshift pdata ,pdata 
+0x6ddc 023487 set1 0 ,pdata 
+0x6ddd 023488 istore 1 ,contw 
+0x6dde 023489 rtn 
+:      023490 spp_tx_write_long_packet:
+0x6ddf 023491 fetch 2 ,mem_current_packet_length 
+0x6de0 023492 rshift3 pdata ,pdata 
+0x6de1 023493 rshift4 pdata ,temp 
+0x6de2 023494 and_into 0x7f ,pdata 
+0x6de3 023495 lshift pdata ,pdata 
+0x6de4 023496 set0 0 ,pdata 
+0x6de5 023497 istore 1 ,contw 
+0x6de6 023498 istoret 1 ,contw 
+0x6de7 023499 rtn 
+:      023500 spp_tx_write_given_credit:
+0x6de8 023501 fetch 1 ,mem_credit_given 
+0x6de9 023502 rtn blank 
+0x6dea 023503 istore 1 ,contw 
+0x6deb 023504 rtn 
+:      023509 scheduler_process:
+0x6dec 023510 set1 mark_ext_patch ,mark 
+0x6ded 023511 bpatch patch33_5 ,mem_patch33 
+0x6dee 023512 call check_51cmd 
+0x6def 023513 call app_process_bb_event 
+0x6df0 023514 call process_conn_sm 
+0x6df1 023516 set1 mark_ext_patch ,mark 
+0x6df2 023517 bpatch patch33_6 ,mem_patch33 
+0x6df3 023518 call sp_calc_sequence 
+0x6df4 023519 call simple_pairing_sequence 
+0x6df5 023520 call master_simple_paring_sequence 
+0x6df6 023522 set1 mark_ext_patch ,mark 
+0x6df7 023523 bpatch patch33_7 ,mem_patch33 
+0x6df8 023524 fetch 1 ,mem_device_option 
+0x6df9 023525 rtneq dvc_op_hci 
+0x6dfa 023527 call l2cap_malloc_is_fifo_full 
+0x6dfb 023528 nrtn blank 
+0x6dfc 023530 call l2cap_call_proc_sigal_pending 
+:      023531 scheduler_process1:
+0x6dfd 023532 call l2cap_malloc_is_fifo_full 
+0x6dfe 023533 nrtn blank 
+0x6dff 023534 set1 mark_ext_patch ,mark 
+0x6e00 023535 bpatch patch34_0 ,mem_patch34 
+0x6e01 023537 call process_upper_sm 
+0x6e02 023538 call l2cap_send_config_req 
+0x6e03 023539 call rfcomm_send_more_pkt 
+:      023540 scheduler_process0:
+0x6e04 023541 call scheduler_tx_disconnect_hid 
+0x6e05 023542 set1 mark_ext_patch ,mark 
+0x6e06 023543 bpatch patch34_1 ,mem_patch34 
+0x6e07 023544 call l2cap_malloc_is_fifo_full 
+0x6e08 023545 nrtn blank 
+0x6e09 023546 branch app_process_bt 
+:      023548 scheduler_tx_disconnect_hid:
+0x6e0a 023549 set1 mark_ext_patch ,mark 
+0x6e0b 023550 bpatch patch34_2 ,mem_patch34 
+0x6e0c 023551 fetch 1 ,mem_control_tasks 
+0x6e0d 023552 bbit1 l2cap_disconnect_interrupt ,l2cap_disconnect_interrupt_req 
+0x6e0e 023553 bbit1 l2cap_disconnect_control ,l2cap_disconnect_control_req 
+0x6e0f 023554 rtn 
+:      023556 scheduler_tx_l2cap_pkt:
+0x6e10 023557 set1 mark_ext_patch ,mark 
+0x6e11 023558 bpatch patch34_3 ,mem_patch34 
+0x6e12 023559 call l2cap_malloc_is_fifo_empty 
+0x6e13 023560 rtn blank 
+0x6e14 023561 fetch 1 ,mem_op 
+0x6e15 023562 rtnbit1 op_txl2cap 
+0x6e16 023563 call l2cap_malloc_fifo_out 
+0x6e17 023564 store 2 ,mem_txptr 
+0x6e18 023565 copy pdata ,contr 
+0x6e19 023566 ifetch 2 ,contr 
+0x6e1a 023567 increase 4 ,pdata 
+0x6e1b 023568 store 2 ,mem_tx_len 
+0x6e1c 023569 jam 6 ,mem_tx_lch 
+0x6e1d 023570 set1 mark_ext_patch ,mark 
+0x6e1e 023571 bpatch patch34_4 ,mem_patch34 
+0x6e1f 023572 fetch 2 ,mem_l2cap_tx_multi_offset 
+0x6e20 023573 branch scheduler_tx_l2cap_start_pkt ,blank 
+0x6e21 023574 fetch 1 ,mem_op 
+0x6e22 023575 rtnbit0 op_pkt_comp 
+0x6e23 023576 set0 op_pkt_comp ,pdata 
+0x6e24 023577 store 1 ,mem_op 
+0x6e25 023578 jam 5 ,mem_tx_lch 
+0x6e26 023579 fetcht 2 ,mem_l2cap_tx_multi_offset 
+0x6e27 023580 fetch 2 ,mem_txptr 
+0x6e28 023581 iadd temp ,pdata 
+0x6e29 023582 store 2 ,mem_txptr 
+0x6e2a 023583 fetch 2 ,mem_tx_len 
+0x6e2b 023584 isub temp ,pdata 
+0x6e2c 023585 store 2 ,mem_tx_len 
+:      023586 scheduler_tx_l2cap_start_pkt:
+0x6e2d 023587 set1 mark_ext_patch ,mark 
+0x6e2e 023588 bpatch patch34_5 ,mem_patch34 
+0x6e2f 023589 fetch 2 ,mem_tx_len 
+0x6e30 023590 branch assert ,blank 
+0x6e31 023591 arg l2cap_max_pkt_len ,temp 
+0x6e32 023592 isub temp ,pdata 
+0x6e33 023593 nbranch scheduler_tx_l2cap_last_pkt ,positive 
+0x6e34 023594 set1 mark_ext_patch ,mark 
+0x6e35 023595 bpatch patch34_6 ,mem_patch34 
+0x6e36 023596 storet 2 ,mem_tx_len 
+0x6e37 023597 fetch 2 ,mem_l2cap_tx_multi_offset 
+0x6e38 023598 iadd temp ,pdata 
+0x6e39 023599 store 2 ,mem_l2cap_tx_multi_offset 
+0x6e3a 023600 branch scheduler_tx_l2cap_pkt_end 
+:      023601 scheduler_tx_l2cap_last_pkt:
+0x6e3b 023602 setarg 0 
+0x6e3c 023603 store 2 ,mem_l2cap_tx_multi_offset 
+:      023604 scheduler_tx_l2cap_pkt_end:
+0x6e3d 023605 fetch 1 ,mem_op 
+0x6e3e 023606 set1 op_txl2cap ,pdata 
+0x6e3f 023607 store 1 ,mem_op 
+0x6e40 023608 rtn 
+:      023610 scheduler_start_upper_sm:
+0x6e41 023611 fetch 1 ,mem_ui_profile_supported 
+0x6e42 023612 bbit1 support_hid ,scheduler_start_upper_sm_hid 
+0x6e43 023613 jam uppersm_reconn_sdp_conn ,mem_upper_sm_reconn 
+0x6e44 023614 rtn 
+:      023615 scheduler_start_upper_sm_hid:
+0x6e45 023616 jam uppersm_reconn_hid_ctrl_conn ,mem_upper_sm_reconn 
+0x6e46 023617 rtn 
+:      023619 process_upper_sm:
+0x6e47 023620 fetch 1 ,memui_reconnect_mode 
+0x6e48 023621 nbranch process_upper_sm_reconn ,blank 
+:      023622 process_upper_sm_remote_page:
+0x6e49 023623 fetch 1 ,mem_upper_sm_remote_page 
+0x6e4a 023625 rtn blank 
+0x6e4b 023627 jam 0 ,mem_upper_sm_remote_page 
+:      023628 process_upper_sm_rp_wait:
+0x6e4c 023629 rtn 
+:      023632 process_upper_sm_reconn:
+0x6e4d 023633 set1 mark_ext_patch ,mark 
+0x6e4e 023634 bpatch patch34_7 ,mem_patch34 
+0x6e4f 023635 fetch 1 ,mem_upper_sm_reconn 
+0x6e50 023636 rtn blank 
+0x6e51 023637 beq uppersm_reconn_sdp_conn ,process_upper_sm_reconn_sdp_conn 
+0x6e52 023638 beq uppersm_reconn_sdp_conn_wait ,process_upper_sm_reconn_sdp_conn_wait 
+0x6e53 023639 beq uppersm_reconn_sdp_cfg ,process_upper_sm_reconn_sdp_cfg 
+0x6e54 023640 beq uppersm_reconn_sdp_cfg_wait ,process_upper_sm_reconn_sdp_cfg_wait 
+0x6e55 023641 beq uppersm_reconn_ss_spp ,process_upper_sm_reconn_ss_spp 
+0x6e56 023642 beq uppersm_reconn_ss_spp_wait ,process_upper_sm_reconn_ss_spp_wait 
+0x6e57 023643 beq uppersm_reconn_sdp_disconn ,process_upper_sm_reconn_sdp_disconn 
+0x6e58 023644 beq uppersm_reconn_sdp_disconn_wait ,process_upper_sm_reconn_sdp_disconn_wait 
+0x6e59 023645 beq uppersm_reconn_hid_ctrl_conn ,process_upper_sm_reconn_hid_ctrl_conn 
+0x6e5a 023646 beq uppersm_reconn_hid_ctrl_conn_wait ,process_upper_sm_reconn_hid_ctrl_conn_wait 
+0x6e5b 023647 beq uppersm_reconn_hid_ctrl_cfg ,process_upper_sm_reconn_hid_ctrl_cfg 
+0x6e5c 023648 beq uppersm_reconn_hid_ctrl_cfg_wait ,process_upper_sm_reconn_hid_ctrl_cfg_wait 
+0x6e5d 023649 beq uppersm_reconn_hid_int_conn ,process_upper_sm_reconn_hid_int_conn 
+0x6e5e 023650 beq uppersm_reconn_hid_int_conn_wait ,process_upper_sm_reconn_hid_int_conn_wait 
+0x6e5f 023651 beq uppersm_reconn_hid_int_cfg ,process_upper_sm_reconn_hid_int_cfg 
+0x6e60 023652 beq uppersm_reconn_hid_int_cfg_wait ,process_upper_sm_reconn_hid_int_cfg_wait 
+0x6e61 023653 beq uppersm_reconn_rfcomm_conn ,process_upper_sm_reconn_rfcomm_conn 
+0x6e62 023654 beq uppersm_reconn_rfcomm_conn_wait ,process_upper_sm_reconn_rfcomm_conn_wait 
+0x6e63 023655 beq uppersm_reconn_rfcomm_cfg ,process_upper_sm_reconn_rfcomm_cfg 
+0x6e64 023656 beq uppersm_reconn_rfcomm_cfg_wait ,process_upper_sm_reconn_rfcomm_cfg_wait 
+0x6e65 023657 beq uppersm_reconn_rfcomm_sabm ,process_upper_sm_reconn_rfcomm_sabm 
+0x6e66 023658 beq uppersm_reconn_rfcomm_sabm_wait ,process_upper_sm_reconn_rfcomm_sabm_wait 
+0x6e67 023659 beq uppersm_reconn_spp_cmd_pn ,process_upper_sm_reconn_spp_cmd_pn 
+0x6e68 023660 beq uppersm_reconn_spp_cmd_pn_wait ,process_upper_sm_reconn_spp_cmd_pn_wait 
+0x6e69 023661 beq uppersm_reconn_spp_sabm ,process_upper_sm_reconn_spp_sabm 
+0x6e6a 023662 beq uppersm_reconn_spp_sabm_wait ,process_upper_sm_reconn_spp_sabm_wait 
+0x6e6b 023663 beq uppersm_reconn_spp_cmd_ms ,process_upper_sm_reconn_spp_cmd_ms 
+0x6e6c 023664 beq uppersm_reconn_spp_cmd_ms_wait ,process_upper_sm_reconn_spp_cmd_ms_wait 
+:      023665 process_upper_sm_reconn_wait:
+0x6e6d 023666 rtn 
+:      023667 process_upper_sm_reconn_sdp_conn:
+0x6e6e 023668 call upper_sm_send_sdp_conn 
+0x6e6f 023669 jam uppersm_reconn_sdp_conn_wait ,mem_upper_sm_reconn 
+0x6e70 023670 fetch 1 ,mem_sdp_state 
+0x6e71 023671 set1 l2cap_channel_state_conn_req ,pdata 
+0x6e72 023672 store 1 ,mem_sdp_state 
+0x6e73 023673 rtn 
+:      023674 process_upper_sm_reconn_sdp_cfg:
+0x6e74 023675 jam uppersm_reconn_sdp_cfg_wait ,mem_upper_sm_reconn 
+0x6e75 023676 fetch 1 ,mem_sdp_state 
+0x6e76 023677 rtnbit1 l2cap_channel_state_snd_cfg_req 
+0x6e77 023678 jam uppersm_reconn_sdp_cfg ,mem_upper_sm_reconn 
+0x6e78 023679 call upper_sm_send_sdp_cfg 
+0x6e79 023680 jam uppersm_reconn_sdp_cfg_wait ,mem_upper_sm_reconn 
+0x6e7a 023681 fetch 1 ,mem_sdp_state 
+0x6e7b 023682 set1 l2cap_channel_state_snd_cfg_req ,pdata 
+0x6e7c 023683 store 1 ,mem_sdp_state 
+0x6e7d 023684 rtn 
+:      023685 process_upper_sm_reconn_ss_spp:
+0x6e7e 023686 call l2cap_malloc_is_fifo_empty 
+0x6e7f 023687 nrtn blank 
+0x6e80 023688 call upper_sm_send_ss_spp 
+0x6e81 023689 jam uppersm_reconn_ss_spp_wait ,mem_upper_sm_reconn 
+0x6e82 023690 rtn 
+:      023691 process_upper_sm_reconn_sdp_disconn:
+0x6e83 023692 call upper_sm_send_sdp_disconn 
+0x6e84 023693 jam uppersm_reconn_sdp_disconn_wait ,mem_upper_sm_reconn 
+0x6e85 023694 rtn 
+:      023695 process_upper_sm_reconn_hid_ctrl_conn:
+0x6e86 023696 call upper_sm_send_hid_ctrl_conn 
+0x6e87 023697 jam uppersm_reconn_hid_ctrl_conn_wait ,mem_upper_sm_reconn 
+0x6e88 023698 fetch 1 ,mem_hid_control_state 
+0x6e89 023699 set1 l2cap_channel_state_conn_req ,pdata 
+0x6e8a 023700 store 1 ,mem_hid_control_state 
+0x6e8b 023701 rtn 
+:      023702 process_upper_sm_reconn_hid_ctrl_cfg:
+0x6e8c 023703 call upper_sm_send_hid_ctrl_cfg 
+0x6e8d 023704 jam uppersm_reconn_hid_ctrl_cfg_wait ,mem_upper_sm_reconn 
+0x6e8e 023705 fetch 1 ,mem_hid_control_state 
+0x6e8f 023706 set1 l2cap_channel_state_snd_cfg_req ,pdata 
+0x6e90 023707 store 1 ,mem_hid_control_state 
+0x6e91 023708 rtn 
+:      023709 process_upper_sm_reconn_hid_int_conn:
+0x6e92 023710 call upper_sm_send_hid_int_conn 
+0x6e93 023711 jam uppersm_reconn_hid_int_conn_wait ,mem_upper_sm_reconn 
+0x6e94 023712 fetch 1 ,mem_hid_interrupt_state 
+0x6e95 023713 set1 l2cap_channel_state_conn_req ,pdata 
+0x6e96 023714 store 1 ,mem_hid_interrupt_state 
+0x6e97 023715 rtn 
+:      023716 process_upper_sm_reconn_hid_int_cfg:
+0x6e98 023717 call upper_sm_send_hid_int_cfg 
+0x6e99 023718 jam uppersm_reconn_hid_int_cfg_wait ,mem_upper_sm_reconn 
+0x6e9a 023719 fetch 1 ,mem_hid_interrupt_state 
+0x6e9b 023720 set1 l2cap_channel_state_snd_cfg_req ,pdata 
+0x6e9c 023721 store 1 ,mem_hid_interrupt_state 
+0x6e9d 023722 rtn 
+:      023723 process_upper_sm_reconn_rfcomm_conn:
+0x6e9e 023724 call upper_sm_send_rfcomm_conn 
+0x6e9f 023725 jam uppersm_reconn_rfcomm_conn_wait ,mem_upper_sm_reconn 
+0x6ea0 023726 fetch 1 ,mem_rfcomm_state 
+0x6ea1 023727 set1 l2cap_channel_state_conn_req ,pdata 
+0x6ea2 023728 store 1 ,mem_rfcomm_state 
+0x6ea3 023729 rtn 
+:      023730 process_upper_sm_reconn_rfcomm_cfg:
+0x6ea4 023731 call upper_sm_send_rfcomm_cfg 
+0x6ea5 023732 jam uppersm_reconn_rfcomm_cfg_wait ,mem_upper_sm_reconn 
+0x6ea6 023733 fetch 1 ,mem_rfcomm_state 
+0x6ea7 023734 set1 l2cap_channel_state_snd_cfg_req ,pdata 
+0x6ea8 023735 store 1 ,mem_rfcomm_state 
+0x6ea9 023736 rtn 
+:      023737 process_upper_sm_reconn_rfcomm_sabm:
+0x6eaa 023738 call upper_sm_send_rfcomm_sabm 
+0x6eab 023739 jam uppersm_reconn_rfcomm_sabm_wait ,mem_upper_sm_reconn 
+0x6eac 023740 fetch 1 ,mem_rfcomm_state 
+0x6ead 023741 set1 l2cap_channel_rfcomm_only_sabm ,pdata 
+0x6eae 023742 store 1 ,mem_rfcomm_state 
+0x6eaf 023743 rtn 
+:      023744 process_upper_sm_reconn_spp_cmd_pn:
+0x6eb0 023745 call upper_sm_send_spp_cmd_pn 
+0x6eb1 023746 fetch 1 ,mem_spp_state 
+0x6eb2 023747 set1 rfcomm_channel_state_pn_cmd 
+0x6eb3 023748 store 1 ,mem_spp_state 
+0x6eb4 023749 jam uppersm_reconn_spp_cmd_pn_wait ,mem_upper_sm_reconn 
+0x6eb5 023750 rtn 
+:      023751 process_upper_sm_reconn_spp_sabm:
+0x6eb6 023752 call upper_sm_send_spp_sabm 
+0x6eb7 023753 fetch 1 ,mem_spp_state 
+0x6eb8 023754 set1 rfcomm_channel_state_sabm 
+0x6eb9 023755 store 1 ,mem_spp_state 
+0x6eba 023756 jam uppersm_reconn_spp_sabm_wait ,mem_upper_sm_reconn 
+0x6ebb 023757 fetch 1 ,mem_remote_spp_channel 
+0x6ebc 023758 lshift3 pdata ,pdata 
+0x6ebd 023759 or_into 3 ,pdata 
+0x6ebe 023760 arg mem_hiufcs_spp ,temp 
+0x6ebf 023761 storet 2 ,mem_contw_temp 
+0x6ec0 023762 branch rfcomm_save_fcs_uih 
+:      023763 process_upper_sm_reconn_spp_cmd_ms:
+0x6ec1 023764 call upper_sm_send_spp_cmd_ms 
+0x6ec2 023765 fetch 1 ,mem_spp_state 
+0x6ec3 023766 set1 rfcomm_channel_state_snd_ms_cmd 
+0x6ec4 023767 store 1 ,mem_spp_state 
+0x6ec5 023768 jam uppersm_reconn_spp_cmd_ms_wait ,mem_upper_sm_reconn 
+0x6ec6 023769 rtn 
+:      023771 process_upper_sm_reconn_sdp_conn_wait:
+0x6ec7 023772 fetch 1 ,mem_sdp_state 
+0x6ec8 023773 rtnbit0 l2cap_channel_state_conn_res 
+0x6ec9 023774 jam uppersm_reconn_sdp_cfg ,mem_upper_sm_reconn 
+0x6eca 023775 branch process_upper_sm_reconn 
+:      023776 process_upper_sm_reconn_sdp_cfg_wait:
+0x6ecb 023777 fetch 1 ,mem_sdp_state 
+0x6ecc 023778 rtnne l2cap_channel_setup_complete 
+0x6ecd 023779 jam uppersm_reconn_ss_spp ,mem_upper_sm_reconn 
+:      023780 process_upper_sm_reconn_ss_spp_wait:
+0x6ece 023781 fetch 1 ,mem_message_to_uppersm 
+0x6ecf 023782 rtnne recieve_ss_reasult_hf 
+0x6ed0 023783 jam 0 ,mem_message_to_uppersm 
+0x6ed1 023784 jam uppersm_reconn_sdp_disconn ,mem_upper_sm_reconn 
+0x6ed2 023785 branch process_upper_sm_reconn 
+:      023786 process_upper_sm_reconn_sdp_disconn_wait:
+0x6ed3 023787 fetch 1 ,mem_sdp_state 
+0x6ed4 023788 nrtn blank 
+0x6ed5 023789 fetch 1 ,mem_ui_profile_supported 
+0x6ed6 023790 bbit1 support_hid ,process_upper_sm_reconn_setup_hid 
+0x6ed7 023791 bbit1 support_spp ,process_upper_sm_reconn_setup_rfcomm 
+0x6ed8 023792 branch process_upper_sm_reconn_termination 
+:      023793 process_upper_sm_reconn_hid_ctrl_conn_wait:
+0x6ed9 023794 fetch 1 ,mem_hid_control_state 
+0x6eda 023795 rtnbit0 l2cap_channel_state_conn_res 
+0x6edb 023796 jam uppersm_reconn_hid_ctrl_cfg ,mem_upper_sm_reconn 
+0x6edc 023797 branch process_upper_sm_reconn 
+:      023798 process_upper_sm_reconn_hid_ctrl_cfg_wait:
+0x6edd 023799 fetch 1 ,mem_hid_control_state 
+0x6ede 023800 rtnne l2cap_channel_setup_complete 
+0x6edf 023801 jam uppersm_reconn_hid_int_conn ,mem_upper_sm_reconn 
+0x6ee0 023802 branch process_upper_sm_reconn 
+:      023803 process_upper_sm_reconn_hid_int_conn_wait:
+0x6ee1 023804 fetch 1 ,mem_hid_interrupt_state 
+0x6ee2 023805 rtnbit0 l2cap_channel_state_conn_res 
+0x6ee3 023806 jam uppersm_reconn_hid_int_cfg ,mem_upper_sm_reconn 
+0x6ee4 023807 branch process_upper_sm_reconn 
+:      023808 process_upper_sm_reconn_hid_int_cfg_wait:
+0x6ee5 023809 fetch 1 ,mem_hid_interrupt_state 
+0x6ee6 023810 rtnne l2cap_channel_setup_complete 
+0x6ee7 023811 fetch 1 ,mem_ui_profile_supported 
+0x6ee8 023812 bbit1 support_spp ,process_upper_sm_reconn_setup_rfcomm 
+0x6ee9 023813 branch process_upper_sm_reconn_termination 
+:      023814 process_upper_sm_reconn_rfcomm_conn_wait:
+0x6eea 023815 fetch 1 ,mem_rfcomm_state 
+0x6eeb 023816 rtnbit0 l2cap_channel_state_conn_res 
+0x6eec 023817 jam uppersm_reconn_rfcomm_cfg ,mem_upper_sm_reconn 
+0x6eed 023818 branch process_upper_sm_reconn 
+:      023819 process_upper_sm_reconn_rfcomm_cfg_wait:
+0x6eee 023820 fetch 1 ,mem_rfcomm_state 
+0x6eef 023821 rtnne l2cap_channel_setup_complete 
+0x6ef0 023822 jam uppersm_reconn_rfcomm_sabm ,mem_upper_sm_reconn 
+0x6ef1 023823 branch process_upper_sm_reconn 
+:      023824 process_upper_sm_reconn_rfcomm_sabm_wait:
+0x6ef2 023825 fetch 1 ,mem_rfcomm_state 
+0x6ef3 023826 rtnne l2cap_channel_rfcomm_dlci0_opened 
+0x6ef4 023827 fetch 1 ,mem_ui_profile_supported 
+0x6ef5 023828 bbit1 support_spp ,process_upper_sm_reconn_setup_spp 
+0x6ef6 023829 branch process_upper_sm_reconn_termination 
+:      023830 process_upper_sm_reconn_spp_cmd_pn_wait:
+0x6ef7 023831 fetch 1 ,mem_spp_state 
+0x6ef8 023832 rtnbit0 rfcomm_channel_state_pn_res 
+0x6ef9 023833 jam uppersm_reconn_spp_sabm ,mem_upper_sm_reconn 
+0x6efa 023834 branch process_upper_sm_reconn 
+:      023835 process_upper_sm_reconn_spp_sabm_wait:
+0x6efb 023836 fetch 1 ,mem_spp_state 
+0x6efc 023837 rtnbit0 rfcomm_channel_state_ua 
+0x6efd 023838 jam uppersm_reconn_spp_cmd_ms ,mem_upper_sm_reconn 
+0x6efe 023839 branch process_upper_sm_reconn 
+:      023840 process_upper_sm_reconn_spp_cmd_ms_wait:
+0x6eff 023841 fetch 1 ,mem_spp_state 
+0x6f00 023842 rtnne rfcomm_channel_setup_complete 
+0x6f01 023843 branch process_upper_sm_reconn_termination 
+:      023845 process_upper_sm_reconn_setup_hid:
+0x6f02 023846 jam uppersm_reconn_hid_ctrl_conn ,mem_upper_sm_reconn 
+0x6f03 023847 branch process_upper_sm_reconn 
+:      023849 process_upper_sm_reconn_setup_rfcomm:
+0x6f04 023850 jam uppersm_reconn_rfcomm_conn ,mem_upper_sm_reconn 
+0x6f05 023851 branch process_upper_sm_reconn 
+:      023852 process_upper_sm_reconn_setup_spp:
+0x6f06 023853 jam uppersm_reconn_spp_cmd_pn ,mem_upper_sm_reconn 
+0x6f07 023854 branch process_upper_sm_reconn 
+:      023858 process_upper_sm_reconn_termination:
+0x6f08 023859 jam 0 ,mem_upper_sm_reconn 
+0x6f09 023860 rtn 
+:      023861 upper_sm_send_sdp_conn:
+0x6f0a 023862 set1 mark_ext_patch ,mark 
+0x6f0b 023863 bpatch patch35_0 ,mem_patch35 
+0x6f0c 023864 call l2cap_malloc_signal_channel 
+0x6f0d 023865 setarg psm_sdp 
+0x6f0e 023866 copy pdata ,temp 
+0x6f0f 023867 setarg l2cap_sdp_channel 
+0x6f10 023868 copy pdata ,timeup 
+0x6f11 023869 branch ml2cap_send_signal_connect_req 
+:      023871 upper_sm_send_sdp_cfg:
+0x6f12 023872 set1 mark_ext_patch ,mark 
+0x6f13 023873 bpatch patch35_1 ,mem_patch35 
+0x6f14 023874 call l2cap_malloc_signal_channel 
+0x6f15 023875 fetch 2 ,mem_sdp_remote_cid 
+0x6f16 023876 copy pdata ,temp 
+0x6f17 023877 branch ml2cap_send_signal_config_req 
+:      023879 upper_sm_send_sdp_disconn:
+0x6f18 023880 set1 mark_ext_patch ,mark 
+0x6f19 023881 bpatch patch35_2 ,mem_patch35 
+0x6f1a 023882 call l2cap_malloc_signal_channel 
+0x6f1b 023883 fetch 2 ,mem_sdp_remote_cid 
+0x6f1c 023884 copy pdata ,temp 
+0x6f1d 023885 arg l2cap_sdp_channel ,timeup 
+0x6f1e 023886 call ml2cap_send_signal_disconn_req 
+0x6f1f 023887 fetch 1 ,mem_sdp_state 
+0x6f20 023888 set0 l2cap_channel_state_rcv_cfg_res ,pdata 
+0x6f21 023889 store 1 ,mem_sdp_state 
+0x6f22 023890 rtn 
+:      023892 upper_sm_send_ss_spp:
+0x6f23 023893 set1 mark_ext_patch ,mark 
+0x6f24 023894 bpatch patch35_3 ,mem_patch35 
+0x6f25 023895 call l2cap_malloc_sdp_channel 
+0x6f26 023896 call sdp_send_spp_request 
+0x6f27 023897 branch msdp_send_req_done 
+:      023899 upper_sm_send_rfcomm_conn:
+0x6f28 023900 set1 mark_ext_patch ,mark 
+0x6f29 023901 bpatch patch35_4 ,mem_patch35 
+0x6f2a 023902 call l2cap_malloc_signal_channel 
+0x6f2b 023903 setarg psm_rfcomm 
+0x6f2c 023904 copy pdata ,temp 
+0x6f2d 023905 setarg l2cap_rfcomm_channel 
+0x6f2e 023906 copy pdata ,timeup 
+0x6f2f 023907 branch ml2cap_send_signal_connect_req 
+:      023909 upper_sm_send_rfcomm_cfg:
+0x6f30 023910 set1 mark_ext_patch ,mark 
+0x6f31 023911 bpatch patch35_5 ,mem_patch35 
+0x6f32 023912 call l2cap_malloc_signal_channel 
+0x6f33 023913 fetch 2 ,mem_rfcomm_remote_cid 
+0x6f34 023914 copy pdata ,temp 
+0x6f35 023915 branch ml2cap_send_signal_config_req 
+:      023917 upper_sm_send_hid_ctrl_conn:
+0x6f36 023918 set1 mark_ext_patch ,mark 
+0x6f37 023919 bpatch patch35_6 ,mem_patch35 
+0x6f38 023920 call l2cap_malloc_signal_channel 
+0x6f39 023921 setarg psm_hid_control 
+0x6f3a 023922 copy pdata ,temp 
+0x6f3b 023923 setarg l2cap_hid_control_channel 
+0x6f3c 023924 copy pdata ,timeup 
+0x6f3d 023925 branch ml2cap_send_signal_connect_req 
+:      023927 upper_sm_send_hid_ctrl_cfg:
+0x6f3e 023928 set1 mark_ext_patch ,mark 
+0x6f3f 023929 bpatch patch35_7 ,mem_patch35 
+0x6f40 023930 call l2cap_malloc_signal_channel 
+0x6f41 023931 fetch 2 ,mem_hid_ctrl_remote_cid 
+0x6f42 023932 copy pdata ,temp 
+0x6f43 023933 branch ml2cap_send_signal_config_req 
+:      023935 upper_sm_send_hid_int_conn:
+0x6f44 023936 set1 mark_ext_patch ,mark 
+0x6f45 023937 bpatch patch36_0 ,mem_patch36 
+0x6f46 023938 call l2cap_malloc_signal_channel 
+0x6f47 023939 setarg psm_hid_interrupt 
+0x6f48 023940 copy pdata ,temp 
+0x6f49 023941 setarg l2cap_hid_interrupt_channel 
+0x6f4a 023942 copy pdata ,timeup 
+0x6f4b 023943 branch ml2cap_send_signal_connect_req 
+:      023945 upper_sm_send_hid_int_cfg:
+0x6f4c 023946 set1 mark_ext_patch ,mark 
+0x6f4d 023947 bpatch patch36_1 ,mem_patch36 
+0x6f4e 023948 call l2cap_malloc_signal_channel 
+0x6f4f 023949 fetch 2 ,mem_hid_int_remote_cid 
+0x6f50 023950 copy pdata ,temp 
+0x6f51 023951 branch ml2cap_send_signal_config_req 
+:      023953 upper_sm_send_rfcomm_sabm:
+0x6f52 023954 set1 mark_ext_patch ,mark 
+0x6f53 023955 bpatch patch36_2 ,mem_patch36 
+0x6f54 023956 call l2cap_malloc_rfcomm_channel 
+0x6f55 023958 jam 3 ,mem_current_adss 
+0x6f56 023959 jam 0x1c ,mem_current_fcs 
+0x6f57 023960 call rfcomm_send_sabm 
+0x6f58 023961 jam 1 ,mem_rfcomm_initiator 
+0x6f59 023962 rtn 
+:      023964 upper_sm_send_spp_cmd_pn:
+0x6f5a 023965 set1 mark_ext_patch ,mark 
+0x6f5b 023966 bpatch patch36_3 ,mem_patch36 
+0x6f5c 023967 call l2cap_malloc_rfcomm_channel 
+0x6f5d 023968 fetcht 1 ,mem_remote_spp_channel 
+0x6f5e 023969 call channel_to_dlci 
+0x6f5f 023970 storet 1 ,mem_pn_dlci 
+0x6f60 023971 branch rfcomm_send_param_neg_cmd 
+:      023973 upper_sm_send_spp_sabm:
+0x6f61 023974 set1 mark_ext_patch ,mark 
+0x6f62 023975 bpatch patch36_4 ,mem_patch36 
+0x6f63 023976 call l2cap_malloc_rfcomm_channel 
+0x6f64 023977 fetcht 1 ,mem_pn_dlci 
+0x6f65 023978 call dlci_to_address_cmd 
+0x6f66 023979 call rfcomm_calculate_fcs_sabm 
+0x6f67 023980 store 1 ,mem_current_fcs 
+0x6f68 023981 fetcht 1 ,mem_pn_dlci 
+0x6f69 023982 call dlci_to_address_cmd 
+0x6f6a 023983 storet 1 ,mem_current_adss 
+0x6f6b 023984 branch rfcomm_send_sabm 
+:      023986 upper_sm_send_spp_cmd_ms:
+0x6f6c 023987 set1 mark_ext_patch ,mark 
+0x6f6d 023988 bpatch patch36_5 ,mem_patch36 
+0x6f6e 023989 call l2cap_malloc_rfcomm_channel 
+0x6f6f 023990 fetcht 1 ,mem_pn_dlci 
+0x6f70 023991 call dlci_to_address_cmd 
+0x6f71 023992 branch rfcomm_send_modem_status_cmd 
+:      024005 sdp_process:
+0x6f72 024006 set1 mark_ext_patch ,mark 
+0x6f73 024007 bpatch patch3c_7 ,mem_patch3c 
+0x6f74 024008 fetch 2 ,mem_l2cap_payload_ptr 
+0x6f75 024009 iforce contr 
+0x6f76 024010 ifetch 1 ,contr 
+0x6f77 024011 copy pdata ,regb 
+0x6f78 024012 store 1 ,mem_sdp_pduid 
+0x6f79 024013 ifetch 2 ,contr 
+0x6f7a 024014 store 2 ,mem_sdp_transactionid 
+0x6f7b 024015 ifetch 1 ,contr 
+0x6f7c 024016 lshift8 pdata ,timeup 
+0x6f7d 024017 ifetch 1 ,contr 
+0x6f7e 024018 iadd timeup ,timeup 
+0x6f7f 024019 set1 mark_ext_patch ,mark 
+0x6f80 024020 bpatch patch3d_0 ,mem_patch3d 
+0x6f81 024021 deposit regb 
+0x6f82 024022 beq sdp_service_search_request ,servicesearch_req 
+0x6f83 024023 beq sdp_service_attribute_request ,serviceattribute_req 
+0x6f84 024024 beq sdp_service_search_attribute_request ,servicesearchattribute_req 
+0x6f85 024025 beq sdp_service_search_attribute_response ,servicesearchattribute_res 
+0x6f86 024026 branch sdp_insufficient_resource 
+:      024037 servicesearch_req:
+0x6f87 024038 call ask_serviceclassid 
+0x6f88 024039 compare 1 ,temp ,0xff 
+0x6f89 024040 branch empth_sa_rsp ,true 
+0x6f8a 024041 compare 0xff ,temp ,0xff 
+0x6f8b 024042 branch sdp_invalid_reqest_syntax ,true 
+0x6f8c 024044 ifetch 2 ,contr 
+0x6f8d 024045 store 2 ,mem_sdp_record_maxcnt 
+0x6f8e 024046 increase -2 ,timeup 
+0x6f8f 024048 increase -1 ,timeup 
+0x6f90 024049 nbranch sdp_invalid_pdu_size ,zero 
+0x6f91 024050 arg mem_uuid_search_pat ,timeup 
+0x6f92 024051 ifetch 2 ,timeup 
+0x6f93 024052 rtn blank 
+0x6f94 024053 increase 2 ,timeup 
+0x6f95 024054 call search_uuid 
+0x6f96 024055 call l2cap_get_sdp_tx_payload 
+0x6f97 024056 force 3 ,pdata 
+0x6f98 024057 istore 1 ,contw 
+0x6f99 024058 fetch 2 ,mem_sdp_transactionid 
+0x6f9a 024059 istore 2 ,contw 
+0x6f9b 024060 lshift2 queue ,pdata 
+0x6f9c 024061 add pdata ,5 ,pdata 
+0x6f9d 024062 add pdata ,5 ,regc 
+0x6f9e 024063 byteswap pdata ,pdata 
+0x6f9f 024064 istore 2 ,contw 
+0x6fa0 024065 deposit queue 
+0x6fa1 024066 byteswap pdata ,pdata 
+0x6fa2 024067 istore 2 ,contw 
+0x6fa3 024068 istore 2 ,contw 
+0x6fa4 024069 arg mem_handle_list ,contr 
+0x6fa5 024070 copy queue ,loopcnt 
+0x6fa6 024071 branch servicesearch_req_blank ,zero 
+:      024072 servicesearch_req_loop:
+0x6fa7 024073 ifetch 4 ,contr 
+0x6fa8 024074 istore 4 ,contw 
+0x6fa9 024075 loop servicesearch_req_loop 
+:      024076 servicesearch_req_blank:
+0x6faa 024077 force 0 ,pdata 
+0x6fab 024078 istore 1 ,contw 
+0x6fac 024079 deposit regc 
+0x6fad 024080 store 1 ,mem_sdp_tx_pkt_length 
+0x6fae 024081 branch assert ,blank 
+0x6faf 024082 rtn 
+:      024093 serviceattribute_req:
+0x6fb0 024094 ifetch 4 ,contr 
+0x6fb1 024095 store 4 ,mem_sdp_record_handle 
+0x6fb2 024096 increase -4 ,timeup 
+0x6fb3 024097 iforce temp 
+0x6fb4 024098 ifetch 2 ,contr 
+0x6fb5 024099 byteswap pdata ,pdata 
+0x6fb6 024100 increase -18 ,pdata 
+0x6fb7 024101 store 2 ,mem_sdp_attribute_maxbyte 
+0x6fb8 024102 increase -2 ,timeup 
+0x6fb9 024103 call dataelementtype6 
+0x6fba 024104 branch sdp_invalid_reqest_syntax ,zero 
+0x6fbb 024105 compare 5 ,rega ,0xff 
+0x6fbc 024107 branch serviceattribute_judge_wholerangle ,true 
+:      024108 serviceattribute_isnot_wholerangle:
+0x6fbd 024109 arg mem_attrib_list ,contw 
+0x6fbe 024110 force 0 ,queue 
+0x6fbf 024111 branch serviceattribute_req_loop 
+:      024112 serviceattribute_judge_wholerangle:
+0x6fc0 024113 ifetch 1 ,contr 
+0x6fc1 024114 bne 0xa ,sdp_invalid_reqest_syntax 
+0x6fc2 024115 ifetch 2 ,contr 
+0x6fc3 024116 nbranch serviceattribute_judge_wholerangle_false1 ,blank 
+0x6fc4 024117 ifetch 1 ,contr 
+0x6fc5 024118 bne 0xff ,serviceattribute_judge_wholerangle_false2 
+0x6fc6 024119 ifetch 1 ,contr 
+0x6fc7 024120 bne 0xff ,serviceattribute_judge_wholerangle_false3 
+0x6fc8 024121 increase -5 ,contr 
+0x6fc9 024122 branch serviceattribute_req_all 
+:      024123 serviceattribute_judge_wholerangle_false3:
+0x6fca 024124 increase -5 ,contr 
+0x6fcb 024125 branch serviceattribute_isnot_wholerangle 
+:      024126 serviceattribute_judge_wholerangle_false2:
+0x6fcc 024127 increase -4 ,contr 
+0x6fcd 024128 branch serviceattribute_isnot_wholerangle 
+:      024129 serviceattribute_judge_wholerangle_false1:
+0x6fce 024130 increase -3 ,contr 
+0x6fcf 024131 branch serviceattribute_isnot_wholerangle 
+:      024132 serviceattribute_req_loop:
+0x6fd0 024133 ifetch 1 ,contr 
+0x6fd1 024134 beq 0x09 ,serviceattribute_req_one_id 
+0x6fd2 024135 beq 0x0a ,serviceattribute_req_range_id 
+:      024136 serviceattribute_req_range_id:
+0x6fd3 024137 ifetch 2 ,contr 
+0x6fd4 024138 istore 2 ,contw 
+0x6fd5 024139 increase 1 ,queue 
+0x6fd6 024140 byteswap pdata ,regb 
+0x6fd7 024141 ifetch 2 ,contr 
+0x6fd8 024142 byteswap pdata ,pdata 
+:      024143 serviceattribute_req_range_id_increase:
+0x6fd9 024144 increase 1 ,regb 
+0x6fda 024145 isub regb ,null 
+0x6fdb 024146 nbranch serviceattribute_req_range_id_finish ,positive 
+0x6fdc 024147 copy pdata ,regc 
+0x6fdd 024148 byteswap regb ,pdata 
+0x6fde 024149 istore 2 ,contw 
+0x6fdf 024150 increase 1 ,queue 
+0x6fe0 024151 copy regc ,pdata 
+0x6fe1 024152 branch serviceattribute_req_range_id_increase 
+:      024153 serviceattribute_req_range_id_finish:
+0x6fe2 024154 increase -5 ,timeup 
+0x6fe3 024155 increase -5 ,rega 
+0x6fe4 024156 branch serviceattribute_req_check_next_id 
+:      024157 serviceattribute_req_one_id:
+0x6fe5 024158 ifetch 2 ,contr 
+0x6fe6 024159 istore 2 ,contw 
+0x6fe7 024160 increase 1 ,queue 
+0x6fe8 024161 increase -3 ,timeup 
+0x6fe9 024162 increase -3 ,rega 
+:      024163 serviceattribute_req_check_next_id:
+0x6fea 024164 nbranch sdp_invalid_reqest_syntax ,positive 
+0x6feb 024165 nbranch serviceattribute_req_loop ,zero 
+0x6fec 024166 increase -1 ,timeup 
+0x6fed 024167 nbranch sdp_invalid_reqest_syntax ,zero 
+0x6fee 024169 call l2cap_get_sdp_tx_payload 
+0x6fef 024170 increase 10 ,contw 
+0x6ff0 024171 arg mem_attrib_list ,rega 
+:      024172 answer_handle_attributelist_next:
+0x6ff1 024173 copy queue ,pdata 
+0x6ff2 024174 branch answer_handle_attributelist_end ,blank 
+0x6ff3 024175 ifetch 2 ,rega 
+0x6ff4 024176 branch answer_handle_attributelist_end ,blank 
+0x6ff5 024177 iforce regb 
+0x6ff6 024178 fetch 4 ,mem_sdp_record_handle 
+0x6ff7 024179 iforce temp 
+0x6ff8 024180 call search_handle_attrib 
+0x6ff9 024181 branch answer_handle_attributelist_notfound ,blank 
+0x6ffa 024182 increase -3 ,contr 
+0x6ffb 024183 ifetch 3 ,contr 
+0x6ffc 024184 istore 3 ,contw 
+0x6ffd 024185 call sdp_data_len_obs 
+0x6ffe 024186 branch answer_handle_attributelist_notfound ,blank 
+0x6fff 024187 iforce loopcnt 
+0x7000 024188 call memcpy 
+:      024189 answer_handle_attributelist_notfound:
+0x7001 024190 increase 2 ,rega 
+0x7002 024191 increase -1 ,queue 
+0x7003 024192 branch answer_handle_attributelist_next 
+:      024194 answer_handle_attributelist_end:
+0x7004 024195 force 0 ,pdata 
+0x7005 024196 istore 1 ,contw 
+0x7006 024197 increase -1 ,contw 
+0x7007 024198 fetcht 2 ,mem_sdp_tx_payload_ptr 
+0x7008 024199 add temp ,10 ,pdata 
+0x7009 024200 isub contw ,pdata 
+0x700a 024201 sub pdata ,0 ,rega 
+0x700b 024202 byteswap rega ,pdata 
+0x700c 024203 add temp ,8 ,regb 
+0x700d 024204 istore 2 ,regb 
+0x700e 024205 increase 3 ,rega 
+0x700f 024206 byteswap rega ,pdata 
+0x7010 024207 add temp ,5 ,regb 
+0x7011 024208 istore 2 ,regb 
+0x7012 024209 increase 3 ,rega 
+0x7013 024210 byteswap rega ,pdata 
+0x7014 024211 add temp ,3 ,regb 
+0x7015 024212 istore 2 ,regb 
+0x7016 024213 increase 5 ,rega 
+0x7017 024214 copy rega ,pdata 
+0x7018 024215 store 2 ,mem_sdp_tx_pkt_length 
+0x7019 024216 setarg 0x36 
+0x701a 024217 add temp ,7 ,regb 
+0x701b 024218 istore 1 ,regb 
+0x701c 024219 setarg 5 
+0x701d 024220 istore 1 ,temp 
+0x701e 024221 fetch 2 ,mem_sdp_transactionid 
+0x701f 024222 add temp ,1 ,regb 
+0x7020 024223 istore 2 ,regb 
+0x7021 024224 rtn 
+:      024225 serviceattribute_req_all:
+0x7022 024226 ifetch 1 ,contr 
+0x7023 024227 bne 0xa ,sdp_invalid_reqest_syntax 
+0x7024 024228 ifetch 2 ,contr 
+0x7025 024229 nbranch sdp_invalid_reqest_syntax ,blank 
+0x7026 024230 ifetch 1 ,contr 
+0x7027 024231 bne 0xff ,sdp_invalid_reqest_syntax 
+0x7028 024232 ifetch 1 ,contr 
+0x7029 024233 bne 0xff ,sdp_invalid_reqest_syntax 
+0x702a 024234 increase -5 ,timeup 
+0x702b 024235 ifetch 1 ,contr 
+0x702c 024236 beq 0 ,continue_zero 
+0x702d 024237 beq 1 ,continue_one_byte 
+0x702e 024238 beq 2 ,continue_two_byte 
+:      024239 continue_zero:
+0x702f 024240 store 2 ,mem_sdp_continue_byte 
+0x7030 024241 increase -1 ,timeup 
+0x7031 024242 branch continue_end 
+:      024243 continue_one_byte:
+0x7032 024244 ifetch 1 ,contr 
+0x7033 024245 store 2 ,mem_sdp_continue_byte 
+0x7034 024246 increase -2 ,timeup 
+0x7035 024247 branch continue_end 
+:      024248 continue_two_byte:
+0x7036 024249 ifetch 2 ,contr 
+0x7037 024250 byteswap pdata ,pdata 
+0x7038 024251 store 2 ,mem_sdp_continue_byte 
+0x7039 024252 increase -3 ,timeup 
+:      024253 continue_end:
+0x703a 024254 nbranch sdp_invalid_pdu_size ,zero 
+0x703b 024255 call search_handle 
+0x703c 024256 nbranch sdp_invalid_service_record_handle ,zero 
+0x703d 024257 copy contr ,rega 
+0x703e 024258 call l2cap_get_sdp_tx_payload 
+0x703f 024259 copy rega ,contr 
+0x7040 024260 increase 3 ,contw 
+0x7041 024261 copy contr ,timeup 
+0x7042 024262 call sdp_get_data 
+0x7043 024263 copy pdata ,rega 
+0x7044 024264 fetch 2 ,mem_sdp_continue_byte 
+0x7045 024265 copy pdata ,regb 
+0x7046 024266 copy rega ,pdata 
+0x7047 024267 isub regb ,regb 
+0x7048 024268 fetch 2 ,mem_sdp_attribute_maxbyte 
+0x7049 024269 isub regb ,null 
+0x704a 024270 nbranch fragment_sdp ,positive 
+0x704b 024272 disable user 
+0x704c 024273 fetch 2 ,mem_sdp_continue_byte 
+0x704d 024274 branch fisrt_fragment ,blank 
+0x704e 024275 iadd timeup ,contr 
+0x704f 024276 increase 3 ,regb 
+0x7050 024277 copy regb ,loopcnt 
+0x7051 024278 copy loopcnt ,pdata 
+0x7052 024279 increase 3 ,pdata 
+0x7053 024280 byteswap pdata ,pdata 
+0x7054 024281 istore 2 ,contw 
+0x7055 024282 copy loopcnt ,pdata 
+0x7056 024283 byteswap pdata ,pdata 
+0x7057 024284 istore 2 ,contw 
+0x7058 024285 branch answer_attributelist_full_loop 
+:      024286 fisrt_fragment:
+0x7059 024287 add rega ,6 ,loopcnt 
+0x705a 024288 branch parlength_continue_byte ,user 
+0x705b 024289 byteswap loopcnt ,pdata 
+0x705c 024290 branch parlength_continue_byte_end 
+:      024291 parlength_continue_byte:
+0x705d 024292 copy loopcnt ,pdata 
+0x705e 024293 increase 2 ,pdata 
+0x705f 024294 byteswap pdata ,pdata 
+:      024295 parlength_continue_byte_end:
+0x7060 024296 istore 2 ,contw 
+0x7061 024297 increase -3 ,loopcnt 
+0x7062 024298 byteswap loopcnt ,pdata 
+0x7063 024299 istore 2 ,contw 
+0x7064 024300 copy timeup ,contr 
+0x7065 024301 branch answer_attributelist_full_loop 
+:      024302 fragment_sdp:
+0x7066 024303 enable user 
+0x7067 024304 fetch 2 ,mem_sdp_attribute_maxbyte 
+0x7068 024305 copy pdata ,rega 
+0x7069 024306 copy pdata ,loopcnt 
+0x706a 024307 fetch 2 ,mem_sdp_continue_byte 
+0x706b 024308 branch fisrt_fragment ,blank 
+0x706c 024309 iadd timeup ,contr 
+0x706d 024310 copy rega ,pdata 
+0x706e 024311 increase 5 ,pdata 
+0x706f 024312 byteswap pdata ,pdata 
+0x7070 024313 istore 2 ,contw 
+0x7071 024314 copy rega ,pdata 
+0x7072 024315 byteswap pdata ,pdata 
+0x7073 024316 istore 2 ,contw 
+:      024317 answer_attributelist_full_loop:
+0x7074 024318 ifetch 1 ,contr 
+0x7075 024319 istore 1 ,contw 
+0x7076 024320 loop answer_attributelist_full_loop 
+0x7077 024321 nbranch last_frag_continue ,user 
+0x7078 024322 force 2 ,pdata 
+0x7079 024323 istore 1 ,contw 
+0x707a 024324 copy contr ,pdata 
+0x707b 024325 isub timeup ,pdata 
+0x707c 024326 byteswap pdata ,pdata 
+0x707d 024327 istore 2 ,contw 
+0x707e 024328 branch sdp_frag_end 
+:      024329 last_frag_continue:
+0x707f 024330 force 0 ,pdata 
+0x7080 024331 istore 1 ,contw 
+:      024332 sdp_frag_end:
+0x7081 024333 fetch 2 ,mem_sdp_tx_payload_ptr 
+0x7082 024334 isub contw ,pdata 
+0x7083 024335 sub pdata ,0 ,pdata 
+0x7084 024336 store 2 ,mem_sdp_tx_pkt_length 
+0x7085 024337 call l2cap_get_sdp_tx_payload 
+0x7086 024338 setarg 5 
+0x7087 024339 istore 1 ,contw 
+0x7088 024340 fetch 2 ,mem_sdp_transactionid 
+0x7089 024341 istore 2 ,contw 
+0x708a 024342 rtn 
+:      024352 servicesearchattribute_req:
+0x708b 024355 call ask_serviceclassid 
+0x708c 024356 compare 0xff ,temp ,0xff 
+0x708d 024357 branch servicesearchattribute_req_all ,true 
+0x708e 024358 ifetch 2 ,contr 
+0x708f 024359 store 2 ,mem_sdp_attribute_maxbyte 
+0x7090 024360 increase -2 ,timeup 
+0x7091 024361 call dataelementtype6 
+0x7092 024362 arg mem_attrib_list ,contw 
+0x7093 024363 force 0 ,queue 
+:      024364 servicesearchattribute_req_loop:
+0x7094 024365 ifetch 3 ,contr 
+0x7095 024366 bne 0x09 ,servicesearchattribute_req_all 
+:      024367 servicesearchattribute_req_uuid:
+0x7096 024368 rshift8 pdata ,pdata 
+0x7097 024369 istore 2 ,contw 
+0x7098 024370 increase 1 ,queue 
+0x7099 024371 increase -3 ,timeup 
+0x709a 024372 increase -3 ,rega 
+0x709b 024373 nbranch sdp_invalid_reqest_syntax ,positive 
+0x709c 024374 nbranch servicesearchattribute_req_loop ,zero 
+0x709d 024375 increase -1 ,timeup 
+0x709e 024376 nbranch sdp_invalid_reqest_syntax ,zero 
+:      024377 servicesearchattribute_req_search:
+0x709f 024378 call l2cap_get_sdp_tx_payload 
+0x70a0 024379 increase 13 ,contw 
+0x70a1 024380 fetch 2 ,mem_uuid_search_pat 
+0x70a2 024381 iforce regc 
+0x70a3 024382 arg mem_attrib_list ,rega 
+:      024383 answer_attributelist_next:
+0x70a4 024384 ifetch 4 ,rega 
+0x70a5 024385 branch answer_attributelist_end ,blank 
+0x70a6 024386 ifetch 2 ,rega 
+0x70a7 024387 iforce regb 
+0x70a8 024388 call search_attrib 
+0x70a9 024389 branch answer_attributelist_notfound ,blank 
+0x70aa 024390 increase -3 ,contr 
+0x70ab 024391 ifetch 3 ,contr 
+0x70ac 024392 istore 3 ,contw 
+0x70ad 024393 call sdp_data_len_obs 
+0x70ae 024394 iforce loopcnt 
+:      024395 answer_attributelist_attrib_loop:
+0x70af 024396 ifetch 1 ,contr 
+0x70b0 024397 istore 1 ,contw 
+0x70b1 024398 loop answer_attributelist_attrib_loop 
+:      024399 answer_attributelist_notfound:
+0x70b2 024400 increase 2 ,rega 
+0x70b3 024401 branch answer_attributelist_next 
+:      024402 servicesearchattribute_req_all:
+0x70b4 024406 ifetch 1 ,contr 
+0x70b5 024408 ifetch 1 ,contr 
+0x70b6 024410 increase -5 ,timeup 
+0x70b7 024411 increase -5 ,rega 
+0x70b8 024412 nbranch sdp_invalid_reqest_syntax ,positive 
+0x70b9 024413 arg mem_uuid_search_pat ,timeup 
+0x70ba 024414 ifetch 2 ,timeup 
+0x70bb 024416 increase 2 ,timeup 
+0x70bc 024417 call search_uuid 
+0x70bd 024418 deposit queue 
+0x70be 024419 store 1 ,mem_handle_humber 
+0x70bf 024420 branch empty_ssa_rsp ,blank 
+0x70c0 024421 arg 0 ,queue 
+0x70c1 024422 call l2cap_get_sdp_tx_payload 
+0x70c2 024423 increase 10 ,contw 
+0x70c3 024424 branch servicesearchattribute_req_next_handle 
+:      024425 answer_attributelist_end:
+0x70c4 024426 force 0 ,pdata 
+0x70c5 024427 istore 1 ,contw 
+0x70c6 024428 increase -1 ,contw 
+0x70c7 024429 fetcht 2 ,mem_sdp_tx_payload_ptr 
+0x70c8 024430 add temp ,13 ,pdata 
+0x70c9 024431 isub contw ,pdata 
+0x70ca 024432 branch no_attribute_return ,zero 
+0x70cb 024433 sub pdata ,0 ,pdata 
+0x70cc 024434 add temp ,12 ,regb 
+0x70cd 024435 istore 1 ,regb 
+0x70ce 024436 increase 3 ,pdata 
+0x70cf 024437 add temp ,9 ,regb 
+0x70d0 024438 istore 1 ,regb 
+0x70d1 024439 increase 3 ,pdata 
+0x70d2 024440 byteswap pdata ,pdata 
+0x70d3 024441 add temp ,5 ,regb 
+0x70d4 024442 istore 2 ,regb 
+0x70d5 024443 rshift8 pdata ,pdata 
+0x70d6 024444 increase 3 ,pdata 
+0x70d7 024445 byteswap pdata ,pdata 
+0x70d8 024446 add temp ,3 ,regb 
+0x70d9 024447 istore 2 ,regb 
+0x70da 024448 rshift8 pdata ,pdata 
+0x70db 024449 increase 5 ,pdata 
+0x70dc 024450 store 1 ,mem_sdp_tx_pkt_length 
+0x70dd 024452 fetch 2 ,mem_sdp_transactionid 
+0x70de 024453 add temp ,1 ,regb 
+0x70df 024454 istore 2 ,regb 
+0x70e0 024455 setarg 7 
+0x70e1 024456 istore 1 ,temp 
+0x70e2 024461 setarg 0x0036 
+0x70e3 024462 add temp ,7 ,regb 
+0x70e4 024463 istore 2 ,regb 
+0x70e5 024464 add temp ,10 ,regb 
+0x70e6 024465 istore 2 ,regb 
+0x70e7 024466 rtn 
+:      024467 no_attribute_return:
+0x70e8 024468 jam 10 ,mem_sdp_tx_pkt_length 
+0x70e9 024469 call l2cap_get_sdp_tx_payload 
+0x70ea 024471 setarg 7 
+0x70eb 024472 istore 1 ,contw 
+0x70ec 024473 fetch 2 ,mem_sdp_transactionid 
+0x70ed 024474 istore 2 ,contw 
+0x70ee 024478 setarg 0x0500 
+0x70ef 024479 istore 2 ,contw 
+0x70f0 024482 setarg 0x0200 
+0x70f1 024483 istore 2 ,contw 
+0x70f2 024487 setarg 0x000035 
+0x70f3 024488 istore 3 ,contw 
+0x70f4 024489 rtn 
+:      024491 servicesearchattribute_req_attributelist_loop:
+0x70f5 024492 ifetch 1 ,contr 
+0x70f6 024493 istore 1 ,contw 
+0x70f7 024494 increase 1 ,regb 
+0x70f8 024495 increase -1 ,rega 
+0x70f9 024496 branch servicesearchattribute_req_check_next_ctn ,zero 
+0x70fa 024497 loop servicesearchattribute_req_attributelist_loop 
+:      024498 servicesearchattribute_req_check_next_ctn:
+0x70fb 024499 copy contw ,timeup 
+0x70fc 024500 copy regb ,pdata 
+0x70fd 024501 store 2 ,mem_sdp_continue_byte 
+0x70fe 024502 copy rega ,pdata 
+0x70ff 024503 store 2 ,mem_sdp_attribute_maxbyte 
+0x7100 024504 branch answer_attributelist_with_ctn_bytes ,blank 
+0x7101 024505 branch answer_attributelist_with_ctn_end ,user 
+0x7102 024506 copy timeup ,contw 
+:      024507 servicesearchattribute_req_check_handle:
+0x7103 024508 increase 1 ,queue 
+0x7104 024509 fetch 1 ,mem_handle_humber 
+0x7105 024510 isub queue ,null 
+0x7106 024511 nbranch servicesearchattribute_req_next_handle ,zero 
+0x7107 024512 branch answer_attributelist_end_long 
+:      024513 servicesearchattribute_req_next_handle:
+0x7108 024514 arg mem_handle_list ,contr 
+0x7109 024515 lshift2 queue ,pdata 
+0x710a 024516 iadd contr ,contr 
+0x710b 024517 ifetch 4 ,contr 
+0x710c 024518 iforce temp 
+0x710d 024519 call search_handle 
+0x710e 024520 copy contr ,timeup 
+0x710f 024521 call sdp_get_data 
+0x7110 024522 add pdata ,3 ,loopcnt 
+0x7111 024523 fetch 2 ,mem_sdp_attribute_maxbyte 
+0x7112 024524 copy pdata ,rega 
+0x7113 024525 fetch 2 ,mem_sdp_continue_byte 
+0x7114 024526 copy pdata ,regb 
+0x7115 024527 copy timeup ,contr 
+0x7116 024528 branch servicesearchattribute_req_attributelist_loop 
+:      024529 answer_attributelist_with_ctn_bytes:
+0x7117 024530 arg 0 ,queue 
+0x7118 024531 arg 0 ,regb 
+:      024532 answer_attributelist_calc_attribute_length:
+0x7119 024533 arg mem_handle_list ,contr 
+0x711a 024534 lshift2 queue ,pdata 
+0x711b 024535 iadd contr ,contr 
+0x711c 024536 ifetch 4 ,contr 
+0x711d 024537 iforce temp 
+0x711e 024538 call search_handle 
+0x711f 024539 call sdp_get_data 
+0x7120 024540 add pdata ,3 ,pdata 
+0x7121 024541 iadd regb ,regb 
+0x7122 024542 increase 1 ,queue 
+0x7123 024543 fetch 1 ,mem_handle_humber 
+0x7124 024544 isub queue ,null 
+0x7125 024545 nbranch answer_attributelist_calc_attribute_length ,zero 
+0x7126 024547 copy timeup ,contw 
+0x7127 024548 force 2 ,pdata 
+0x7128 024549 istore 1 ,contw 
+0x7129 024550 fetch 2 ,mem_sdp_continue_byte 
+0x712a 024551 byteswap pdata ,pdata 
+0x712b 024552 istore 2 ,contw 
+0x712c 024553 increase -3 ,contw 
+0x712d 024554 fetcht 2 ,mem_sdp_tx_payload_ptr 
+0x712e 024555 add temp ,10 ,pdata 
+0x712f 024556 isub contw ,pdata 
+0x7130 024557 sub pdata ,0 ,pdata 
+0x7131 024558 iforce rega 
+0x7132 024560 deposit regb 
+0x7133 024561 add temp ,9 ,regb 
+0x7134 024562 istore 1 ,regb 
+0x7135 024563 rshift8 pdata ,pdata 
+0x7136 024564 add temp ,8 ,regb 
+0x7137 024565 istore 1 ,regb 
+0x7138 024566 increase 3 ,rega 
+0x7139 024567 deposit rega 
+0x713a 024568 add temp ,6 ,regb 
+0x713b 024569 istore 1 ,regb 
+0x713c 024570 rshift8 pdata ,pdata 
+0x713d 024571 add temp ,5 ,regb 
+0x713e 024572 istore 1 ,regb 
+0x713f 024573 increase 5 ,rega 
+0x7140 024574 deposit rega 
+0x7141 024575 add temp ,4 ,regb 
+0x7142 024576 istore 1 ,regb 
+0x7143 024577 rshift8 pdata ,pdata 
+0x7144 024578 add temp ,3 ,regb 
+0x7145 024579 istore 1 ,regb 
+0x7146 024580 increase 5 ,rega 
+0x7147 024581 deposit rega 
+0x7148 024582 store 2 ,mem_sdp_tx_pkt_length 
+0x7149 024583 setarg 7 
+0x714a 024584 istore 1 ,temp 
+0x714b 024585 setarg 0x36 
+0x714c 024586 add temp ,7 ,regb 
+0x714d 024587 istore 1 ,regb 
+0x714e 024588 add temp ,1 ,regb 
+0x714f 024589 fetch 2 ,mem_sdp_transactionid 
+0x7150 024590 istore 2 ,regb 
+0x7151 024591 rtn 
+:      024592 answer_attributelist_with_ctn_end:
+0x7152 024593 copy timeup ,contw 
+0x7153 024594 force 0 ,pdata 
+0x7154 024595 istore 1 ,contw 
+0x7155 024596 increase -1 ,contw 
+0x7156 024597 fetcht 2 ,mem_sdp_tx_payload_ptr 
+0x7157 024598 add temp ,7 ,pdata 
+0x7158 024599 isub contw ,pdata 
+0x7159 024600 sub pdata ,0 ,pdata 
+0x715a 024601 iforce rega 
+0x715b 024603 deposit rega 
+0x715c 024604 add temp ,6 ,regb 
+0x715d 024605 istore 1 ,regb 
+0x715e 024606 rshift8 pdata ,pdata 
+0x715f 024607 add temp ,5 ,regb 
+0x7160 024608 istore 1 ,regb 
+0x7161 024609 increase 3 ,rega 
+0x7162 024610 deposit rega 
+0x7163 024611 add temp ,4 ,regb 
+0x7164 024612 istore 1 ,regb 
+0x7165 024613 rshift8 pdata ,pdata 
+0x7166 024614 add temp ,3 ,regb 
+0x7167 024615 istore 1 ,regb 
+0x7168 024616 increase 5 ,rega 
+0x7169 024617 deposit rega 
+0x716a 024618 store 2 ,mem_sdp_tx_pkt_length 
+0x716b 024620 setarg 7 
+0x716c 024621 istore 1 ,temp 
+0x716d 024623 fetch 2 ,mem_sdp_transactionid 
+0x716e 024624 add temp ,1 ,regb 
+0x716f 024625 istore 2 ,regb 
+0x7170 024626 rtn 
+:      024628 answer_attributelist_end_long:
+0x7171 024629 force 0 ,pdata 
+0x7172 024630 istore 1 ,contw 
+0x7173 024631 increase -1 ,contw 
+0x7174 024632 fetcht 2 ,mem_sdp_tx_payload_ptr 
+0x7175 024633 add temp ,10 ,pdata 
+0x7176 024634 isub contw ,pdata 
+0x7177 024635 sub pdata ,0 ,pdata 
+0x7178 024636 iforce rega 
+0x7179 024638 deposit rega 
+0x717a 024639 add temp ,9 ,regb 
+0x717b 024640 istore 1 ,regb 
+0x717c 024641 rshift8 pdata ,pdata 
+0x717d 024642 add temp ,8 ,regb 
+0x717e 024643 istore 1 ,regb 
+0x717f 024645 increase 3 ,rega 
+0x7180 024646 deposit rega 
+0x7181 024647 add temp ,6 ,regb 
+0x7182 024648 istore 1 ,regb 
+0x7183 024649 rshift8 pdata ,pdata 
+0x7184 024650 add temp ,5 ,regb 
+0x7185 024651 istore 1 ,regb 
+0x7186 024652 increase 3 ,rega 
+0x7187 024653 deposit rega 
+0x7188 024654 add temp ,4 ,regb 
+0x7189 024655 istore 1 ,regb 
+0x718a 024656 rshift8 pdata ,pdata 
+0x718b 024657 add temp ,3 ,regb 
+0x718c 024658 istore 1 ,regb 
+0x718d 024659 increase 5 ,rega 
+0x718e 024660 deposit rega 
+0x718f 024661 store 2 ,mem_sdp_tx_pkt_length 
+0x7190 024662 setarg 0x36 
+0x7191 024663 add temp ,7 ,regb 
+0x7192 024664 istore 1 ,regb 
+0x7193 024665 setarg 7 
+0x7194 024666 istore 1 ,temp 
+0x7195 024667 fetch 2 ,mem_sdp_transactionid 
+0x7196 024668 add temp ,1 ,regb 
+0x7197 024669 istore 2 ,regb 
+0x7198 024670 rtn 
+:      024671 sdp_data_len_obs:
+0x7199 024672 copy contr ,timeup 
+0x719a 024673 ifetch 1 ,contr 
+0x719b 024674 and pdata ,0x07 ,loopcnt 
+0x719c 024675 rshift3 pdata ,pdata 
+0x719d 024676 beq 6 ,sdp_data_len_6_obs 
+0x719e 024677 beq 1 ,sdp_data_len_1 
+0x719f 024678 beq 4 ,sdp_data_len_6 
+0x71a0 024679 beq 5 ,sdp_data_len_5 
+0x71a1 024680 branch sdp_data_len_rtn 
+:      024681 sdp_data_len_6_obs:
+0x71a2 024682 call sdp_get_data_6_obs 
+0x71a3 024683 branch sdp_data_len_rtn 
+:      024684 sdp_get_data_6_obs:
+0x71a4 024685 deposit loopcnt 
+0x71a5 024686 beq 5 ,sdp_get_data_6_8bit_obs 
+0x71a6 024687 beq 6 ,sdp_get_data_6_16bit_obs 
+0x71a7 024688 force 3 ,loopcnt 
+0x71a8 024689 branch sdp_get_data_1 
+:      024690 sdp_get_data_6_8bit_obs:
+0x71a9 024691 ifetch 1 ,contr 
+0x71aa 024692 increase 2 ,pdata 
+0x71ab 024693 rtn 
+:      024694 sdp_get_data_6_16bit_obs:
+0x71ac 024695 ifetch 2 ,contr 
+0x71ad 024696 byteswap pdata ,pdata 
+0x71ae 024697 increase 3 ,pdata 
+0x71af 024698 rtn 
+:      024700 sdp_send_spp_request:
+0x71b0 024701 call l2cap_get_sdp_tx_payload 
+0x71b1 024702 copy pdata ,contw 
+0x71b2 024703 setarg 6 
+0x71b3 024704 istore 1 ,contw 
+0x71b4 024705 setarg sdp_tid_spp 
+0x71b5 024706 istore 2 ,contw 
+0x71b6 024707 setarg 0x0f00 
+0x71b7 024708 istore 2 ,contw 
+0x71b8 024709 setarg 0x1a0535 
+0x71b9 024710 istore 3 ,contw 
+0x71ba 024711 setarg 0x0111 
+0x71bb 024712 lshift16 pdata ,pdata 
+0x71bc 024713 istore 4 ,contw 
+0x71bd 024714 setarg 0x2600 
+0x71be 024715 istore 2 ,contw 
+0x71bf 024716 setarg 0x0335 
+0x71c0 024717 istore 2 ,contw 
+0x71c1 024718 setarg 0x0009 
+0x71c2 024719 istore 2 ,contw 
+0x71c3 024720 setarg 0x0004 
+0x71c4 024721 istore 2 ,contw 
+0x71c5 024722 jam 0x14 ,mem_sdp_tx_pkt_length 
+0x71c6 024723 rtn 
+:      024733 servicesearchattribute_res:
+0x71c7 024734 copy contr ,temp 
+0x71c8 024735 fetch 2 ,mem_sdp_transactionid 
+0x71c9 024736 beq sdp_tid_spp ,servicesearchattribute_res_spp 
+0x71ca 024739 branch srchfail 
+:      024741 servicesearchattribute_res_spp:
+0x71cb 024742 copy temp ,contr 
+0x71cc 024743 increase -3 ,timeup 
+0x71cd 024744 copy timeup ,pdata 
+0x71ce 024745 beq 2 ,srchfail 
+0x71cf 024746 call find_rfcomm_channel_number 
+0x71d0 024747 rtn user 
+0x71d1 024748 store 1 ,mem_remote_spp_channel 
+0x71d2 024749 jam recieve_ss_reasult_hf ,mem_message_to_uppersm 
+0x71d3 024750 rtn 
+:      024752 srchfail:
+0x71d4 024753 rtn 
+:      024759 find_rfcomm_channel_number:
+0x71d5 024760 enable user 
+0x71d6 024761 copy pdata ,loopcnt 
+0x71d7 024762 arg 0x0400 ,temp 
+:      024763 find_rfcomm_channel_number_loop:
+0x71d8 024764 ifetch 2 ,contr 
+0x71d9 024765 isub temp ,null 
+0x71da 024766 branch find_rfcomm_channel_number_find_adl ,zero 
+0x71db 024767 increase -1 ,contr 
+0x71dc 024768 loop find_rfcomm_channel_number_loop 
+0x71dd 024769 rtn 
+:      024770 find_rfcomm_channel_number_find_adl:
+0x71de 024771 arg 0x0300 ,temp 
+:      024772 find_rfcomm_channel_number_loop2:
+0x71df 024773 ifetch 2 ,contr 
+0x71e0 024774 isub temp ,null 
+0x71e1 024775 branch find_rfcomm_channel_number_find_rfcomm ,zero 
+0x71e2 024776 increase -1 ,contr 
+0x71e3 024777 loop find_rfcomm_channel_number_loop2 
+0x71e4 024778 rtn 
+:      024779 find_rfcomm_channel_number_find_rfcomm:
+0x71e5 024780 ifetch 1 ,contr 
+0x71e6 024781 ifetch 1 ,contr 
+0x71e7 024782 disable user 
+0x71e8 024783 rtn 
+:      024794 attribute_reading:
+0x71e9 024795 call dataelementtype6 
+0x71ea 024796 branch rdnortn ,zero 
+0x71eb 024797 force 0 ,regb 
+0x71ec 024798 ifetch 1 ,contr 
+0x71ed 024799 increase -1 ,rega 
+0x71ee 024800 increase -1 ,timeup 
+0x71ef 024801 compare 0x18 ,pdata ,0xf8 
+0x71f0 024802 nbranch rduuid3 ,true 
+0x71f1 024803 compare 0x04 ,pdata ,0x07 
+0x71f2 024804 nbranch is032 ,true 
+0x71f3 024805 force 1 ,regb 
+:      024806 skp2bytes:
+0x71f4 024807 increase 2 ,contr 
+0x71f5 024808 increase -2 ,rega 
+0x71f6 024809 increase -2 ,timeup 
+0x71f7 024810 branch rduuid1 
+:      024811 is032:
+0x71f8 024812 compare 0x02 ,pdata ,0x07 
+0x71f9 024813 nbranch is016 ,true 
+0x71fa 024814 branch skp2bytes 
+:      024815 is016:
+0x71fb 024816 compare 0x01 ,pdata ,0x07 
+0x71fc 024817 nbranch rduuid3 ,true 
+:      024818 rduuid1:
+0x71fd 024819 ifetch 1 ,contr 
+0x71fe 024820 increase -1 ,rega 
+0x71ff 024821 increase -1 ,timeup 
+0x7200 024822 bne 0x01 ,rduuid2 
+0x7201 024823 ifetch 1 ,contr 
+0x7202 024824 increase -1 ,rega 
+0x7203 024825 increase -1 ,timeup 
+0x7204 024826 bne 0x00 ,rduuid3 
+0x7205 024827 jam 0xff ,mem_sdp_lacap_found 
+0x7206 024828 branch rduuid3 
+:      024829 rduuid2:
+0x7207 024830 bne 0x00 ,rduuid3 
+0x7208 024831 ifetch 1 ,contr 
+0x7209 024832 increase -1 ,rega 
+0x720a 024833 increase -1 ,timeup 
+0x720b 024834 bne 0x03 ,rduuid3 
+0x720c 024835 copy regb ,null 
+0x720d 024836 branch not16by ,zero 
+0x720e 024837 increase -12 ,contr 
+0x720f 024838 increase -12 ,timeup 
+:      024839 not16by:
+0x7210 024840 force 0xff ,pdata 
+0x7211 024841 store 1 ,mem_sdp_rfcomm_found 
+0x7212 024842 ifetch 1 ,contr 
+0x7213 024843 increase -1 ,rega 
+0x7214 024844 increase -1 ,timeup 
+0x7215 024845 compare 0x08 ,pdata ,0xf8 
+0x7216 024846 nbranch rduuid3 ,true 
+0x7217 024847 compare 0x00 ,pdata ,0x07 
+0x7218 024848 branch unsign1 ,true 
+0x7219 024849 compare 0x01 ,pdata ,0x07 
+0x721a 024850 branch unsign2 ,true 
+0x721b 024851 compare 0x02 ,pdata ,0x07 
+0x721c 024852 branch unsign4 ,true 
+0x721d 024853 compare 0x03 ,pdata ,0x07 
+0x721e 024854 branch unsign8 ,true 
+0x721f 024855 compare 0x04 ,pdata ,0x07 
+0x7220 024856 nbranch rduuid3 ,true 
+0x7221 024857 increase 8 ,contr 
+0x7222 024858 increase -8 ,rega 
+0x7223 024859 increase -8 ,timeup 
+:      024860 unsign8:
+0x7224 024861 increase 4 ,contr 
+0x7225 024862 increase -4 ,rega 
+0x7226 024863 increase -4 ,timeup 
+:      024864 unsign4:
+0x7227 024865 increase 2 ,contr 
+0x7228 024866 increase -2 ,rega 
+0x7229 024867 increase -2 ,timeup 
+:      024868 unsign2:
+0x722a 024869 increase 1 ,contr 
+0x722b 024870 increase -1 ,rega 
+0x722c 024871 increase -1 ,timeup 
+:      024872 unsign1:
+0x722d 024873 ifetch 1 ,contr 
+0x722e 024874 increase -1 ,rega 
+0x722f 024875 increase -1 ,timeup 
+:      024876 rduuid3:
+0x7230 024877 increase -1 ,timeup 
+0x7231 024878 increase -1 ,rega 
+0x7232 024879 branch rduuid3 ,positive 
+0x7233 024880 increase 1 ,timeup 
+0x7234 024881 force 0x01 ,pdata 
+0x7235 024882 rtn ,
+:      024883 rdnortn:
+0x7236 024884 force 0x00 ,pdata 
+0x7237 024885 rtn ,
+:      024887 sdp_invalid_service_record_handle:
+0x7238 024888 setarg 0x0200 
+0x7239 024889 store 2 ,mem_sdp_error_code 
+0x723a 024890 branch sdp_error_rsp 
+:      024891 sdp_invalid_pdu_size:
+0x723b 024892 setarg 0x0400 
+0x723c 024893 store 2 ,mem_sdp_error_code 
+0x723d 024894 branch sdp_error_rsp 
+:      024895 sdp_insufficient_resource:
+0x723e 024896 setarg 0x0600 
+0x723f 024897 store 2 ,mem_sdp_error_code 
+0x7240 024898 branch sdp_error_rsp 
+:      024899 sdp_invalid_reqest_syntax:
+0x7241 024900 setarg 0x0300 
+0x7242 024901 store 2 ,mem_sdp_error_code 
+:      024902 sdp_error_rsp:
+0x7243 024903 call l2cap_get_sdp_tx_payload 
+0x7244 024904 istore 1 ,contw 
+0x7245 024905 fetch 2 ,mem_sdp_transactionid 
+0x7246 024906 istore 2 ,contw 
+0x7247 024907 setarg 0x0200 
+0x7248 024908 istore 2 ,contw 
+0x7249 024909 fetch 2 ,mem_sdp_error_code 
+0x724a 024910 istore 2 ,contw 
+0x724b 024911 jam 7 ,mem_sdp_tx_pkt_length 
+0x724c 024912 rtn 
+:      024914 ask_serviceclassid:
+0x724d 024915 force 0 ,temp 
+0x724e 024916 arg mem_uuid_search_pat ,contw 
+0x724f 024917 call dataelementtype6 
+0x7250 024918 branch asksrv_error ,zero 
+:      024919 classidloop:
+0x7251 024920 ifetch 1 ,contr 
+0x7252 024921 increase -1 ,rega 
+0x7253 024922 increase -1 ,timeup 
+0x7254 024923 compare 0x18 ,pdata ,0xf8 
+0x7255 024924 nbranch asksrv_error ,true 
+0x7256 024925 compare 0x04 ,pdata ,0x07 
+0x7257 024926 nbranch cmp032 ,true 
+0x7258 024927 force 1 ,temp 
+:      024928 skip2bytes:
+0x7259 024929 ifetch 1 ,contr 
+0x725a 024930 increase -1 ,rega 
+0x725b 024931 increase -1 ,timeup 
+0x725c 024932 bne 0x00 ,frstbwrong 
+0x725d 024933 ifetch 1 ,contr 
+0x725e 024934 increase -1 ,rega 
+0x725f 024935 increase -1 ,timeup 
+0x7260 024936 beq 0x00 ,cmpuuid 
+0x7261 024937 branch scndbwrong 
+:      024938 frstbwrong:
+0x7262 024939 increase 1 ,contr 
+0x7263 024940 increase -1 ,rega 
+0x7264 024941 increase -1 ,timeup 
+:      024942 scndbwrong:
+0x7265 024943 increase 2 ,contr 
+0x7266 024944 increase -2 ,rega 
+0x7267 024945 increase -2 ,timeup 
+0x7268 024946 compare 0x00 ,temp ,0xff 
+0x7269 024947 branch loopornot ,true 
+0x726a 024948 increase 12 ,contr 
+0x726b 024949 increase -12 ,rega 
+0x726c 024950 increase -12 ,timeup 
+0x726d 024951 branch loopornot 
+:      024952 cmp032:
+0x726e 024953 compare 0x02 ,pdata ,0x07 
+0x726f 024954 nbranch cmp016 ,true 
+0x7270 024955 branch skip2bytes 
+:      024956 cmp016:
+0x7271 024957 compare 0x01 ,pdata ,0x07 
+0x7272 024958 nbranch asksrv_error ,true 
+:      024959 cmpuuid:
+0x7273 024960 ifetch 2 ,contr 
+0x7274 024961 increase -2 ,rega 
+0x7275 024962 increase -2 ,timeup 
+0x7276 024963 istore 2 ,contw 
+:      024964 uuidsize:
+0x7277 024965 compare 0x00 ,temp ,0xff 
+0x7278 024966 branch loopornot ,true 
+0x7279 024967 copy contr ,temp 
+0x727a 024968 ifetch 1 ,contr 
+0x727b 024969 bne 0x00 ,wrong12b 
+0x727c 024970 ifetch 1 ,contr 
+0x727d 024971 bne 0x00 ,wrong12b 
+0x727e 024972 ifetch 1 ,contr 
+0x727f 024973 bne 0x10 ,wrong12b 
+0x7280 024974 ifetch 1 ,contr 
+0x7281 024975 bne 0x00 ,wrong12b 
+0x7282 024976 ifetch 1 ,contr 
+0x7283 024977 bne 0x80 ,wrong12b 
+0x7284 024978 ifetch 1 ,contr 
+0x7285 024979 bne 0x00 ,wrong12b 
+0x7286 024980 ifetch 1 ,contr 
+0x7287 024981 bne 0x00 ,wrong12b 
+0x7288 024982 ifetch 1 ,contr 
+0x7289 024983 bne 0x80 ,wrong12b 
+0x728a 024984 ifetch 1 ,contr 
+0x728b 024985 bne 0x5f ,wrong12b 
+0x728c 024986 ifetch 1 ,contr 
+0x728d 024987 bne 0x9b ,wrong12b 
+0x728e 024988 ifetch 1 ,contr 
+0x728f 024989 bne 0x34 ,wrong12b 
+0x7290 024990 ifetch 1 ,contr 
+0x7291 024991 beq 0xfb ,chck12dn 
+:      024992 wrong12b:
+0x7292 024993 copy temp ,contr 
+:      024994 wrong12b1:
+0x7293 024995 increase 12 ,contr 
+0x7294 024996 force 0x00 ,queue 
+0x7295 024997 force 0x00 ,temp 
+0x7296 024998 branch chck12dn 
+:      024999 noclass:
+0x7297 025000 ifetch 1 ,contr 
+0x7298 025001 increase -1 ,rega 
+0x7299 025002 increase -1 ,timeup 
+0x729a 025003 branch uuidsize 
+:      025004 chck12dn:
+0x729b 025005 increase -12 ,timeup 
+0x729c 025006 increase -12 ,rega 
+:      025007 loopornot:
+0x729d 025008 compare 0x00 ,rega ,0xff 
+0x729e 025009 nbranch classidloop ,true 
+0x729f 025010 force 0 ,pdata 
+0x72a0 025011 istore 2 ,contw 
+0x72a1 025012 rtn ,
+:      025013 asksrv_error:
+0x72a2 025014 arg 0xff ,temp 
+0x72a3 025015 rtn 
+:      025025 dataelementtype6:
+0x72a4 025026 ifetch 1 ,contr 
+0x72a5 025027 increase -1 ,timeup 
+0x72a6 025028 compare 0x30 ,pdata ,0xf8 
+0x72a7 025029 nbranch dsize_error ,true 
+0x72a8 025030 compare 0x07 ,pdata ,0x07 
+0x72a9 025031 branch dsize32 ,true 
+0x72aa 025032 compare 0x06 ,pdata ,0x07 
+0x72ab 025033 branch dsize16 ,true 
+0x72ac 025034 compare 0x05 ,pdata ,0x07 
+0x72ad 025035 nbranch dsize_error ,true 
+0x72ae 025036 ifetch 1 ,contr 
+0x72af 025037 copy pdata ,rega 
+0x72b0 025038 increase -1 ,timeup 
+0x72b1 025039 branch dsize 
+:      025040 dsize32:
+0x72b2 025041 increase 2 ,contr 
+0x72b3 025042 increase -2 ,timeup 
+:      025043 dsize16:
+0x72b4 025044 ifetch 2 ,contr 
+0x72b5 025045 byteswap pdata ,rega 
+0x72b6 025046 increase -2 ,timeup 
+:      025047 set_nblank:
+:      025048 dsize:
+0x72b7 025049 force 0x01 ,pdata 
+0x72b8 025050 rtn 
+:      025051 set_blank:
+:      025052 dsize_error:
+0x72b9 025053 force 0x00 ,pdata 
+0x72ba 025054 rtn 
+:      025064 empth_sa_rsp:
+0x72bb 025065 setarg 0x03 
+0x72bc 025066 store 1 ,mem_sdp_pduid 
+0x72bd 025067 branch empty_response 
+:      025068 empty_ssa_rsp:
+0x72be 025069 setarg 0x07 
+0x72bf 025070 store 1 ,mem_sdp_pduid 
+:      025071 empty_response:
+0x72c0 025072 call l2cap_get_sdp_tx_payload 
+0x72c1 025073 fetch 1 ,mem_sdp_pduid 
+0x72c2 025074 istore 1 ,contw 
+0x72c3 025075 copy pdata ,regb 
+0x72c4 025076 fetch 2 ,mem_sdp_transactionid 
+0x72c5 025077 istore 2 ,contw 
+0x72c6 025079 setarg 0x0500 
+0x72c7 025080 istore 2 ,contw 
+0x72c8 025081 compare 0x05 ,regb ,0xff 
+0x72c9 025082 branch fullsearch ,true 
+0x72ca 025083 compare 0x07 ,regb ,0xff 
+0x72cb 025084 branch fullsearch ,true 
+0x72cc 025085 setarg 0x000000 
+0x72cd 025086 istore 3 ,contw 
+0x72ce 025087 istore 2 ,contw 
+0x72cf 025088 branch outempty 
+:      025090 fullsearch:
+0x72d0 025097 setarg 0x350200 
+0x72d1 025098 istore 3 ,contw 
+0x72d2 025103 setarg 0 
+0x72d3 025104 istore 2 ,contw 
+:      025105 outempty:
+0x72d4 025106 jam 10 ,mem_sdp_tx_pkt_length 
+0x72d5 025107 rtn 
+:      025109 sdp_data_len:
+0x72d6 025110 copy contr ,timeup 
+0x72d7 025111 ifetch 1 ,contr 
+0x72d8 025112 and pdata ,0x7 ,loopcnt 
+0x72d9 025113 rshift3 pdata ,pdata 
+0x72da 025114 beq 6 ,sdp_data_len_6 
+0x72db 025115 beq 1 ,sdp_data_len_1 
+0x72dc 025116 beq 4 ,sdp_data_len_6 
+0x72dd 025117 beq 5 ,sdp_data_len_5 
+:      025118 sdp_data_len_rtn:
+0x72de 025119 copy timeup ,contr 
+0x72df 025120 rtn 
+:      025121 sdp_data_len_1:
+0x72e0 025122 call sdp_data_size 
+0x72e1 025123 increase 1 ,pdata 
+0x72e2 025124 branch sdp_data_len_rtn 
+:      025125 sdp_data_len_5:
+0x72e3 025126 force 2 ,pdata 
+0x72e4 025127 branch sdp_data_len_rtn 
+:      025128 sdp_data_len_6:
+0x72e5 025129 call sdp_get_data_6 
+0x72e6 025130 increase 2 ,pdata 
+0x72e7 025131 branch sdp_data_len_rtn 
+:      025133 sdp_get_data:
+0x72e8 025134 ifetch 1 ,contr 
+0x72e9 025135 and pdata ,0x7 ,loopcnt 
+0x72ea 025136 rshift3 pdata ,pdata 
+0x72eb 025137 beq 6 ,sdp_get_data_6 
+0x72ec 025138 beq 1 ,sdp_get_data_1 
+0x72ed 025139 beq 5 ,sdp_get_data_6_8bit 
+0x72ee 025140 rtn 
+:      025141 sdp_get_data_1:
+0x72ef 025142 call sdp_data_size 
+0x72f0 025143 iforce loopcnt 
+0x72f1 025144 force 0 ,temp 
+:      025145 sdp_get_data_1_loop:
+0x72f2 025146 lshift8 temp ,temp 
+0x72f3 025147 ifetch 1 ,contr 
+0x72f4 025148 ior temp ,temp 
+0x72f5 025149 loop sdp_get_data_1_loop 
+0x72f6 025150 rtn 
+:      025151 sdp_get_data_6:
+0x72f7 025152 deposit loopcnt 
+0x72f8 025153 beq 5 ,sdp_get_data_6_8bit 
+0x72f9 025154 beq 6 ,sdp_get_data_6_16bit 
+0x72fa 025155 force 3 ,loopcnt 
+0x72fb 025156 branch sdp_get_data_1 
+:      025157 sdp_get_data_6_8bit:
+0x72fc 025158 ifetch 1 ,contr 
+0x72fd 025159 rtn 
+:      025160 sdp_get_data_6_16bit:
+0x72fe 025161 ifetch 2 ,contr 
+0x72ff 025162 byteswap pdata ,pdata 
+0x7300 025163 rtn 
+:      025166 sdp_data_size:
+0x7301 025167 force 1 ,pdata 
+0x7302 025168 copy loopcnt ,null 
+0x7303 025169 rtn zero 
+:      025170 sdp_data_size_loop:
+0x7304 025171 lshift pdata ,pdata 
+0x7305 025172 loop sdp_data_size_loop 
+0x7306 025173 rtn 
+:      025178 search_uuid:
+0x7307 025179 iforce regc 
+0x7308 025180 set1 mark_ext_patch ,mark 
+0x7309 025181 bpatch patch3d_1 ,mem_patch3d 
+0x730a 025182 force 0 ,queue 
+0x730b 025183 fetch 2 ,memui_uuid_table 
+0x730c 025184 iforce contr 
+0x730d 025185 arg mem_handle_list ,contw 
+:      025186 search_uuid_next:
+0x730e 025187 disable user 
+0x730f 025188 ifetch 1 ,contr 
+0x7310 025189 rtn blank 
+0x7311 025190 iforce loopcnt 
+:      025191 search_uuid_loop:
+0x7312 025192 ifetch 2 ,contr 
+0x7313 025193 isub regc ,null 
+0x7314 025194 nbranch search_uuid_not_found ,zero 
+0x7315 025195 enable user 
+:      025196 search_uuid_not_found:
+0x7316 025197 loop search_uuid_loop 
+0x7317 025198 ifetch 4 ,contr 
+0x7318 025199 nbranch search_uuid_nomatch ,user 
+0x7319 025200 istore 4 ,contw 
+0x731a 025201 increase 1 ,queue 
+:      025202 search_uuid_nomatch:
+0x731b 025203 call sdp_get_data 
+0x731c 025204 iadd contr ,contr 
+0x731d 025205 branch search_uuid_next 
+:      025208 search_handle:
+0x731e 025209 fetch 2 ,memui_uuid_table 
+0x731f 025210 iforce contr 
+:      025211 search_handle_loop:
+0x7320 025212 ifetch 1 ,contr 
+0x7321 025213 rtn blank 
+0x7322 025214 lshift pdata ,pdata 
+0x7323 025215 iadd contr ,contr 
+0x7324 025216 ifetch 4 ,contr 
+0x7325 025217 isub temp ,null 
+0x7326 025218 rtn zero 
+0x7327 025219 call sdp_get_data 
+0x7328 025220 iadd contr ,contr 
+0x7329 025221 branch search_handle_loop 
+:      025228 search_attrib:
+0x732a 025229 set1 mark_ext_patch ,mark 
+0x732b 025230 bpatch patch3d_2 ,mem_patch3d 
+0x732c 025231 fetch 2 ,memui_uuid_table 
+0x732d 025232 iforce contr 
+:      025233 search_attrib_next:
+0x732e 025234 ifetch 1 ,contr 
+0x732f 025235 branch search_attrib_end ,blank 
+0x7330 025236 iforce loopcnt 
+:      025237 search_attrib_loop:
+0x7331 025238 ifetch 2 ,contr 
+0x7332 025239 isub regc ,null 
+0x7333 025240 branch search_attrib_found_uuid ,zero 
+0x7334 025241 loop search_attrib_loop 
+0x7335 025242 increase 4 ,contr 
+0x7336 025243 call sdp_get_data 
+0x7337 025244 iadd contr ,contr 
+0x7338 025245 branch search_attrib_next 
+:      025246 search_attrib_found_uuid:
+0x7339 025247 increase -1 ,loopcnt 
+0x733a 025248 lshift loopcnt ,pdata 
+0x733b 025249 iadd contr ,contr 
+0x733c 025250 increase 4 ,contr 
+0x733d 025251 call sdp_get_data 
+0x733e 025252 iadd contr ,temp 
+:      025253 search_attrib_loop_attribs:
+0x733f 025254 increase 1 ,contr 
+0x7340 025255 ifetch 2 ,contr 
+0x7341 025256 isub regb ,timeup 
+0x7342 025258 setflag zero ,0 ,pdata 
+0x7343 025259 copy timeup ,timeup 
+0x7344 025260 rtn zero 
+0x7345 025261 call sdp_data_len 
+0x7346 025262 iadd contr ,contr 
+0x7347 025263 deposit temp 
+0x7348 025264 isub contr ,null 
+0x7349 025265 branch search_attrib_end ,zero 
+0x734a 025266 branch search_attrib_loop_attribs 
+:      025267 search_attrib_end:
+0x734b 025268 force 0 ,contr 
+0x734c 025269 force 0 ,pdata 
+0x734d 025270 rtn 
+:      025276 search_handle_attrib:
+0x734e 025277 set1 mark_ext_patch ,mark 
+0x734f 025278 bpatch patch3d_3 ,mem_patch3d 
+0x7350 025279 fetch 2 ,memui_uuid_table 
+0x7351 025280 iforce contr 
+:      025281 search_handle_attrib_next:
+0x7352 025282 ifetch 1 ,contr 
+0x7353 025283 branch search_handle_attrib_end ,blank 
+0x7354 025284 lshift pdata ,pdata 
+0x7355 025285 iadd contr ,contr 
+0x7356 025286 ifetch 4 ,contr 
+0x7357 025287 isub temp ,null 
+0x7358 025288 branch search_handl_attrib_found_handle ,zero 
+0x7359 025289 call sdp_get_data 
+0x735a 025290 iadd contr ,contr 
+0x735b 025291 branch search_handle_attrib_next 
+:      025292 search_handl_attrib_found_handle:
+0x735c 025293 call sdp_get_data 
+0x735d 025294 iadd contr ,temp 
+:      025295 search_handle_attrib_loop_attribs:
+0x735e 025296 increase 1 ,contr 
+0x735f 025297 ifetch 2 ,contr 
+0x7360 025298 isub regb ,null 
+0x7361 025299 rtn zero 
+0x7362 025300 call sdp_data_len 
+0x7363 025301 iadd contr ,contr 
+0x7364 025302 deposit temp 
+0x7365 025303 isub contr ,null 
+0x7366 025304 branch search_handle_attrib_end ,zero 
+0x7367 025305 branch search_handle_attrib_loop_attribs 
+:      025306 search_handle_attrib_end:
+0x7368 025307 force 0 ,contr 
+0x7369 025308 rtn 
+:      025311 generate_kinit:
+0x736a 025312 call function_e22 
+0x736b 025313 arg mem_input_store ,contr 
+0x736c 025314 arg mem_kinit ,contw 
+0x736d 025315 branch memcpy16 
+:      025318 function_e21:
+0x736e 025319 disable user 
+0x736f 025320 call function_expand 
+0x7370 025321 arg mem_random_number ,contr 
+0x7371 025322 arg mem_x ,contw 
+0x7372 025323 force 15 ,loopcnt 
+0x7373 025324 call memcpy 
+0x7374 025325 ifetch 1 ,contr 
+0x7375 025326 xor_into 6 ,pdata 
+0x7376 025327 istore 1 ,contw 
+0x7377 025328 setarg mem_y 
+0x7378 025329 store 2 ,memp_ar_input 
+0x7379 025330 setarg mem_x 
+0x737a 025331 store 2 ,memp_ar_key 
+0x737b 025332 set1 mark_ar2 ,mark 
+0x737c 025333 branch function_ar 
+:      025337 function_e22:
+0x737d 025338 fetcht 1 ,mem_pin_length 
+0x737e 025339 force 16 ,regb 
+0x737f 025340 add temp ,6 ,regc 
+0x7380 025341 sub regc ,16 ,null 
+0x7381 025342 branch function_e22_pin_init ,positive 
+0x7382 025343 force 16 ,regc 
+:      025344 function_e22_pin_init:
+0x7383 025345 arg mem_x ,contw 
+:      025346 function_e22_genx_pin:
+0x7384 025347 arg mem_pin ,contr 
+0x7385 025348 copy temp ,loopcnt 
+0x7386 025349 disable user 
+:      025350 function_e22_genx_loop:
+0x7387 025351 ifetch 1 ,contr 
+0x7388 025352 istore 1 ,contw 
+0x7389 025353 increase -1 ,regb 
+0x738a 025354 branch function_e22_genx_end ,zero 
+0x738b 025355 loop function_e22_genx_loop 
+0x738c 025356 branch function_e22_genx_pin ,user 
+0x738d 025357 enable user 
+0x738e 025358 force 6 ,loopcnt 
+0x738f 025359 copy rega ,contr 
+0x7390 025360 branch function_e22_genx_loop 
+:      025361 function_e22_genx_end:
+0x7391 025362 arg mem_random_number ,contr 
+0x7392 025363 arg mem_y ,contw 
+0x7393 025364 call memcpy16 
+0x7394 025365 fetch 1 ,mem_y15 
+0x7395 025366 ixor regc ,pdata 
+0x7396 025367 store 1 ,mem_y15 
+0x7397 025368 setarg mem_y 
+0x7398 025369 store 2 ,memp_ar_input 
+0x7399 025370 setarg mem_x 
+0x739a 025371 store 2 ,memp_ar_key 
+0x739b 025372 set1 mark_ar2 ,mark 
+0x739c 025373 branch function_ar 
+:      025378 function_e1:
+0x739d 025379 disable user 
+0x739e 025380 call function_expand 
+0x739f 025381 branch function_hash 
+:      025383 function_e3:
+0x73a0 025384 arg mem_aco ,rega 
+0x73a1 025385 enable user 
+0x73a2 025386 call function_expand 
+0x73a3 025387 call function_hash 
+0x73a4 025388 arg mem_input_store ,contr 
+0x73a5 025389 arg mem_kc ,contw 
+0x73a6 025390 branch memcpy16 
+:      025393 function_hash:
+0x73a7 025394 setarg mem_random_number 
+0x73a8 025395 store 2 ,memp_ar_input 
+0x73a9 025396 setarg mem_link_key 
+0x73aa 025397 store 2 ,memp_ar_key 
+0x73ab 025398 set0 mark_ar2 ,mark 
+0x73ac 025399 call function_ar 
+0x73ad 025400 arg mem_input_store ,rega 
+0x73ae 025401 arg mem_random_number ,regb 
+0x73af 025402 arg mem_x ,contw 
+0x73b0 025403 call xor16 
+0x73b1 025404 arg mem_x ,rega 
+0x73b2 025405 arg mem_y ,regb 
+0x73b3 025406 copy regb ,contw 
+0x73b4 025407 enable user 
+0x73b5 025408 call add16 
+0x73b6 025409 call key_offset 
+0x73b7 025410 setarg mem_y 
+0x73b8 025411 store 2 ,memp_ar_input 
+0x73b9 025412 setarg mem_x 
+0x73ba 025413 store 2 ,memp_ar_key 
+0x73bb 025414 set1 mark_ar2 ,mark 
+0x73bc 025415 branch function_ar 
+:      025419 function_ar:
+0x73bd 025420 jam 0 ,mem_ar_hround 
+0x73be 025421 fetch 2 ,memp_ar_key 
+0x73bf 025422 iforce contr 
+0x73c0 025423 arg mem_key_store ,contw 
+0x73c1 025424 call memcpy16 
+0x73c2 025425 fetch 2 ,memp_ar_input 
+0x73c3 025426 iforce contr 
+0x73c4 025427 arg mem_input_store ,contw 
+0x73c5 025428 call memcpy16 
+:      025430 function_ar_loop:
+0x73c6 025431 call key_scheduling 
+0x73c7 025432 disable user 
+0x73c8 025433 bmark0 mark_ar2 ,function_ar_original 
+0x73c9 025434 fetch 1 ,mem_ar_hround 
+0x73ca 025435 bne 4 ,function_ar_original 
+0x73cb 025436 fetch 2 ,memp_ar_input 
+0x73cc 025437 iforce regb 
+0x73cd 025438 call xor_mod32_ar2 
+:      025439 function_ar_original:
+0x73ce 025440 call xor_mod32 
+0x73cf 025441 call el_boxes 
+0x73d0 025442 fetch 1 ,mem_ar_hround 
+0x73d1 025443 increase 1 ,pdata 
+0x73d2 025444 store 1 ,mem_ar_hround 
+0x73d3 025446 call key_scheduling 
+0x73d4 025447 enable user 
+0x73d5 025448 call xor_mod32 
+0x73d6 025449 call pht 
+0x73d7 025450 call permute 
+0x73d8 025451 call pht 
+0x73d9 025452 call permute 
+0x73da 025453 call pht 
+0x73db 025454 call permute 
+0x73dc 025455 call pht 
+0x73dd 025456 fetch 1 ,mem_ar_hround 
+0x73de 025457 increase 1 ,pdata 
+0x73df 025458 store 1 ,mem_ar_hround 
+0x73e0 025459 bne 16 ,function_ar_loop 
+0x73e1 025460 call key_scheduling 
+0x73e2 025461 disable user 
+0x73e3 025462 branch xor_mod32 
+:      025466 key_scheduling:
+0x73e4 025467 fetch 1 ,mem_ar_hround 
+0x73e5 025468 arg mem_key_store ,contr 
+0x73e6 025469 branch key_sched_zero ,blank 
+0x73e7 025470 iforce regb 
+0x73e8 025471 force 17 ,loopcnt 
+0x73e9 025472 copy contr ,contw 
+:      025473 key_rotateloop:
+0x73ea 025474 ifetch 1 ,contr 
+0x73eb 025475 lshift3 pdata ,temp 
+0x73ec 025476 rshift2 pdata ,pdata 
+0x73ed 025477 rshift3 pdata ,pdata 
+0x73ee 025478 ior temp ,pdata 
+0x73ef 025479 istore 1 ,contw 
+0x73f0 025480 loop key_rotateloop 
+0x73f1 025481 setarg mem_key_store 
+0x73f2 025482 iadd regb ,contr 
+0x73f3 025483 force 16 ,loopcnt 
+0x73f4 025484 arg mem_round_key ,contw 
+:      025485 key_select_octet_loop:
+0x73f5 025486 ifetch 1 ,contr 
+0x73f6 025487 istore 1 ,contw 
+0x73f7 025488 compare mem_key_store_end ,contr ,0xff 
+0x73f8 025489 nbranch key_select_octet_nwrap ,true 
+0x73f9 025490 increase -17 ,contr 
+:      025491 key_select_octet_nwrap:
+0x73fa 025492 loop key_select_octet_loop 
+0x73fb 025493 force 0 ,rega 
+0x73fc 025494 add regb ,-1 ,regc 
+0x73fd 025495 lshift2 regc ,regc 
+0x73fe 025496 lshift2 regc ,regc 
+0x73ff 025497 call enable_authrom 
+0x7400 025498 setarg mem_b_box 
+0x7401 025499 iadd regc ,regc 
+0x7402 025500 arg mem_round_key ,contw 
+0x7403 025501 force 16 ,loopcnt 
+:      025502 bias_round_key_loop:
+0x7404 025503 ifetcht 1 ,regc 
+0x7405 025504 ifetch 1 ,contw 
+0x7406 025505 iadd temp ,pdata 
+0x7407 025506 istore 1 ,contw 
+0x7408 025507 increase 1 ,regc 
+0x7409 025508 loop bias_round_key_loop 
+0x740a 025509 branch disable_authrom 
+:      025511 key_sched_zero:
+0x740b 025512 force 16 ,loopcnt 
+0x740c 025513 force 0 ,temp 
+:      025514 create_byte_16_loop:
+0x740d 025515 ifetch 1 ,contr 
+0x740e 025516 ixor temp ,temp 
+0x740f 025517 loop create_byte_16_loop 
+0x7410 025518 deposit temp 
+0x7411 025519 istore 1 ,contr 
+0x7412 025520 arg mem_key_store ,contr 
+0x7413 025521 arg mem_round_key ,contw 
+0x7414 025522 branch memcpy16 
+:      025524 xor_mod32:
+0x7415 025525 arg mem_round_key ,regb 
+:      025526 xor_mod32_ar2:
+0x7416 025527 force 16 ,loopcnt 
+0x7417 025528 arg mem_input_store ,rega 
+0x7418 025529 copy rega ,contw 
+:      025530 xor_mod32_loop:
+0x7419 025531 ifetcht 1 ,rega 
+0x741a 025532 ifetch 1 ,regb 
+0x741b 025533 ixor temp ,alarm 
+0x741c 025534 and loopcnt ,3 ,regc 
+0x741d 025535 nbranch xor_mod32_invert ,user 
+0x741e 025536 xor_into 3 ,regc 
+:      025537 xor_mod32_invert:
+0x741f 025538 sub regc ,1 ,regc 
+0x7420 025539 branch xor_even ,positive 
+0x7421 025540 iadd temp ,alarm 
+:      025541 xor_even:
+0x7422 025542 deposit alarm 
+0x7423 025543 istore 1 ,contw 
+0x7424 025544 increase 1 ,rega 
+0x7425 025545 increase 1 ,regb 
+0x7426 025546 loop xor_mod32_loop 
+0x7427 025547 rtn 
+:      025549 el_boxes:
+0x7428 025550 call enable_authrom 
+0x7429 025551 force 16 ,loopcnt 
+0x742a 025552 arg mem_input_store ,rega 
+:      025553 el_box_loop:
+0x742b 025554 ifetch 1 ,rega 
+0x742c 025555 arg mem_e_box ,contr 
+0x742d 025556 and loopcnt ,3 ,regc 
+0x742e 025557 sub regc ,1 ,null 
+0x742f 025558 branch e_boxes ,positive 
+0x7430 025559 arg mem_l_box ,contr 
+:      025560 e_boxes:
+0x7431 025561 iadd contr ,contr 
+0x7432 025562 ifetch 1 ,contr 
+0x7433 025563 istore 1 ,rega 
+0x7434 025564 increase 1 ,rega 
+0x7435 025565 loop el_box_loop 
+0x7436 025566 branch disable_authrom 
+:      025568 pht:
+0x7437 025569 force 8 ,loopcnt 
+0x7438 025570 arg mem_input_store ,contr 
+0x7439 025571 copy contr ,contw 
+:      025572 pht_loop:
+0x743a 025573 ifetch 1 ,contr 
+0x743b 025574 iforce rega 
+0x743c 025575 ifetch 1 ,contr 
+0x743d 025576 iforce regb 
+0x743e 025577 lshift rega ,pdata 
+0x743f 025578 iadd regb ,pdata 
+0x7440 025579 istore 1 ,contw 
+0x7441 025580 deposit rega 
+0x7442 025581 iadd regb ,pdata 
+0x7443 025582 istore 1 ,contw 
+0x7444 025583 loop pht_loop 
+0x7445 025584 rtn 
+:      025587 permute:
+0x7446 025588 setarg 0x8ae42c 
+0x7447 025589 iforce temp 
+0x7448 025590 force 7 ,loopcnt 
+0x7449 025591 call permute_exchange 
+0x744a 025592 setarg 0xd751b 
+0x744b 025593 iforce temp 
+0x744c 025594 force 5 ,loopcnt 
+0x744d 025595 call permute_exchange 
+0x744e 025596 fetch 1 ,mem_input_store + 15 
+0x744f 025597 iforce rega 
+0x7450 025598 fetch 1 ,mem_input_store + 3 
+0x7451 025599 store 1 ,mem_input_store + 15 
+0x7452 025600 deposit rega 
+0x7453 025601 store 1 ,mem_input_store + 3 
+0x7454 025602 rtn 
+:      025604 permute_exchange:
+0x7455 025605 and temp ,0xf ,regb 
+:      025606 permute_loop:
+0x7456 025607 and temp ,0xf ,pdata 
+0x7457 025608 arg mem_input_store ,contw 
+0x7458 025609 iadd contw ,contw 
+0x7459 025610 ifetch 1 ,contw 
+0x745a 025611 iforce regc 
+0x745b 025612 deposit rega 
+0x745c 025613 istore 1 ,contw 
+0x745d 025614 copy regc ,rega 
+0x745e 025615 rshift4 temp ,temp 
+0x745f 025616 loop permute_loop 
+0x7460 025617 setarg mem_input_store 
+0x7461 025618 iadd regb ,contw 
+0x7462 025619 deposit rega 
+0x7463 025620 istore 1 ,contw 
+0x7464 025621 rtn 
+:      025623 add16:
+0x7465 025624 enable user 
+0x7466 025625 branch xor_add16 
+:      025627 xor16:
+0x7467 025628 disable user 
+:      025629 xor_add16:
+0x7468 025630 force 16 ,loopcnt 
+:      025631 xoradd_loop:
+0x7469 025632 ifetcht 1 ,rega 
+0x746a 025633 ifetch 1 ,regb 
+0x746b 025634 branch xoradd_add ,user 
+0x746c 025635 ixor temp ,pdata 
+0x746d 025636 branch xoradd_store 
+:      025637 xoradd_add:
+0x746e 025638 iadd temp ,pdata 
+:      025639 xoradd_store:
+0x746f 025640 istore 1 ,contw 
+0x7470 025641 increase 1 ,rega 
+0x7471 025642 increase 1 ,regb 
+0x7472 025643 loop xoradd_loop 
+0x7473 025644 rtn 
+:      025647 function_expand:
+0x7474 025648 arg mem_y ,contw 
+0x7475 025649 ifetch 6 ,rega 
+0x7476 025650 istore 6 ,contw 
+0x7477 025651 branch expand_12 ,user 
+0x7478 025652 ifetch 6 ,rega 
+0x7479 025653 branch expand_cont 
+:      025654 expand_12:
+0x747a 025655 ifetch 6 ,contr 
+:      025656 expand_cont:
+0x747b 025657 istore 6 ,contw 
+0x747c 025658 ifetch 4 ,rega 
+0x747d 025659 istore 4 ,contw 
+0x747e 025660 rtn 
+:      025662 key_offset:
+0x747f 025663 arg mem_link_key ,contr 
+0x7480 025664 arg mem_x ,contw 
+0x7481 025665 arg 0 ,temp 
+0x7482 025666 setarg 0x8395a7 
+0x7483 025667 call concatenate_temp24 
+0x7484 025668 setarg 0xb3c1df 
+0x7485 025669 call concatenate_temp24 
+0x7486 025670 setarg 0xe5e9 
+0x7487 025671 call concatenate_temp16 
+0x7488 025672 copy temp ,regab 
+0x7489 025673 disable user 
+0x748a 025674 call key_addxor 
+0x748b 025675 copy regab ,temp 
+0x748c 025676 enable user 
+0x748d 025677 branch key_addxor 
+:      025679 key_addxor:
+0x748e 025680 force 8 ,loopcnt 
+:      025681 key_addxor_loop:
+0x748f 025682 ifetch 1 ,contr 
+0x7490 025683 compare 1 ,loopcnt ,1 
+0x7491 025684 branch key_high ,user 
+0x7492 025685 branch key_xor ,true 
+:      025686 key_add:
+0x7493 025687 iadd temp ,pdata 
+0x7494 025688 branch key_store 
+:      025689 key_high:
+0x7495 025690 branch key_add ,true 
+:      025691 key_xor:
+0x7496 025692 ixor temp ,pdata 
+:      025693 key_store:
+0x7497 025694 istore 1 ,contw 
+0x7498 025695 rshift8 temp ,temp 
+0x7499 025696 loop key_addxor_loop 
+0x749a 025697 rtn 
+:      025699 copy_aco:
+0x749b 025700 fetch 6 ,mem_input_store + 4 
+0x749c 025701 store 6 ,mem_aco 
+0x749d 025702 ifetch 6 ,contr 
+0x749e 025703 istore 6 ,contw 
+0x749f 025704 rtn 
+:      025706 concatenate_temp24:
+0x74a0 025707 lshift8 temp ,temp 
+:      025708 concatenate_temp16:
+0x74a1 025709 lshift16 temp ,temp 
+0x74a2 025710 ior temp ,temp 
+0x74a3 025711 rtn 
+:      025714 loop1:
+0x74a4 025715 branch loop1 
+:      025719 generate_stk:
+0x74a5 025720 call function_s1 
+0x74a6 025721 arg mem_le_ltk ,contw 
+0x74a7 025722 branch store_aes_result 
+:      025725 authenticate_rconfirm:
+0x74a8 025726 arg mem_le_srand ,contw 
+0x74a9 025727 branch authenticate_mconfirm ,master 
+0x74aa 025728 arg mem_le_mrand ,contw 
+:      025729 authenticate_mconfirm:
+0x74ab 025730 copy contr ,rega 
+0x74ac 025731 call memcpy16 
+0x74ad 025732 call function_c1 
+0x74ae 025733 arg mem_le_rconfirm ,contr 
+0x74af 025734 branch compare_res 
+:      025736 generate_confirm:
+0x74b0 025737 arg mem_le_mrand ,rega 
+0x74b1 025738 branch generate_mrand ,master 
+0x74b2 025739 arg mem_le_srand ,rega 
+:      025740 generate_mrand:
+0x74b3 025741 copy rega ,contw 
+0x74b4 025742 call generate_random 
+0x74b5 025743 branch function_c1 
+:      025745 generate_sk:
+0x74b6 025746 arg mem_le_skdm ,contr 
+0x74b7 025747 call load_data128 
+0x74b8 025748 arg mem_le_ltk ,contr 
+0x74b9 025749 call load_regext 
+0x74ba 025750 force 0x38 ,aes_ctrl 
+0x74bb 025751 force 0x0 ,aes_ctrl 
+0x74bc 025752 call wait_aes 
+0x74bd 025753 arg mem_le_sk ,contw 
+0x74be 025754 branch store_aes_result 
+:      025757 first_block_counter:
+0x74bf 025758 force 0x49 ,pdata 
+0x74c0 025759 branch first_block 
+:      025760 first_block_data:
+0x74c1 025761 force 1 ,pdata 
+:      025762 first_block:
+0x74c2 025763 force regidx_data ,regext_index 
+0x74c3 025764 lshift8 temp ,regext 
+0x74c4 025765 ior regext ,regext 
+0x74c5 025766 increase 1 ,regext_index 
+0x74c6 025767 rshift8 temp ,regext 
+0x74c7 025768 rshift16 regext ,regext 
+0x74c8 025769 fetch 2 ,mem_le_ivm 
+0x74c9 025770 lshift16 ,pdata ,pdata 
+0x74ca 025771 ior regext ,regext 
+0x74cb 025772 increase 1 ,regext_index 
+0x74cc 025773 ifetch 4 ,contr 
+0x74cd 025774 iforce regext 
+0x74ce 025775 increase 1 ,regext_index 
+0x74cf 025776 ifetch 2 ,contr 
+0x74d0 025777 byteswap rega ,regext 
+0x74d1 025778 lshift16 regext ,regext 
+0x74d2 025779 ior regext ,regext 
+0x74d3 025780 increase 1 ,regext_index 
+0x74d4 025781 rtn 
+:      025785 generate_mic:
+0x74d5 025786 add regc ,1 ,contr 
+0x74d6 025787 ifetch 1 ,contr 
+0x74d7 025788 iforce rega 
+0x74d8 025789 call first_block_counter 
+0x74d9 025790 call do_aes_ocb 
+0x74da 025792 force regidx_data ,regext_index 
+0x74db 025793 ifetch 1 ,regc 
+0x74dc 025794 and_into 0x3 ,pdata 
+0x74dd 025795 lshift16 pdata ,regext 
+0x74de 025796 set1 8 ,regext 
+0x74df 025797 call clear_hidata 
+0x74e0 025798 call do_aes_cbc 
+0x74e1 025800 copy rega ,loopcnt 
+0x74e2 025801 add regc ,2 ,contr 
+0x74e3 025802 call padding_data 
+:      025803 generate_mic_loop:
+0x74e4 025804 call aes_load_data 
+0x74e5 025805 call do_aes_cbc 
+0x74e6 025806 deposit loopcnt 
+0x74e7 025807 branch generate_mic_end ,blank 
+0x74e8 025808 branch generate_mic_loop 
+:      025809 generate_mic_end:
+0x74e9 025810 force regidx_result ,regext_index 
+0x74ea 025811 deposit regext 
+0x74eb 025812 store 4 ,mem_le_mic 
+0x74ec 025813 rtn 
+:      025815 aes_crypt_data:
+0x74ed 025816 increase 1 ,rega 
+0x74ee 025817 call first_block_data 
+0x74ef 025818 copy regc ,contr 
+0x74f0 025819 call aes_load_xor 
+0x74f1 025820 call do_aes_ctr 
+0x74f2 025821 call store_enc_data 
+0x74f3 025822 increase 16 ,regc 
+0x74f4 025823 increase -16 ,regb 
+0x74f5 025824 branch aes_crypt_data ,positive 
+0x74f6 025825 rtn 
+:      025827 le_encrypt:
+0x74f7 025828 arg mem_le_txheader ,regc 
+0x74f8 025829 fetcht 5 ,mem_le_pcnt_tx 
+0x74f9 025830 call generate_mic 
+0x74fa 025831 force regidx_xor ,regext_index 
+0x74fb 025832 iforce regext 
+0x74fc 025833 force 0 ,rega 
+0x74fd 025834 call first_block_data 
+0x74fe 025835 call do_aes_ctr 
+0x74ff 025836 arg mem_le_txpayload ,regc 
+0x7500 025837 fetch 1 ,mem_le_txlen 
+0x7501 025838 add pdata ,-1 ,regb 
+0x7502 025839 iadd regc ,contw 
+0x7503 025840 force regidx_result ,regext_index 
+0x7504 025841 deposit regext 
+0x7505 025842 istore 4 ,contw 
+0x7506 025843 call aes_crypt_data 
+0x7507 025844 fetch 1 ,mem_le_txlen 
+0x7508 025845 increase 4 ,pdata 
+0x7509 025846 store 1 ,mem_le_txlen 
+0x750a 025847 fetcht 5 ,mem_le_pcnt_tx 
+0x750b 025848 increase 1 ,temp 
+0x750c 025849 storet 5 ,mem_le_pcnt_tx 
+0x750d 025850 rtn 
+:      025852 le_decrypt:
+0x750e 025853 fetch 1 ,mem_le_rxbuf + 1 
+0x750f 025854 sub pdata ,20 ,null 
+0x7510 025855 branch le_dec_cont ,positive 
+:      025856 le_dec_cont:
+0x7511 025857 arg mem_le_rxbuf + 2 ,regc 
+0x7512 025858 add pdata ,-1 ,regb 
+0x7513 025859 increase -4 ,pdata 
+0x7514 025860 store 1 ,mem_le_rxbuf + 1 
+0x7515 025861 iadd regc ,contr 
+0x7516 025862 ifetch 4 ,contr 
+0x7517 025863 force regidx_xor ,regext_index 
+0x7518 025864 iforce regext 
+0x7519 025865 force 0 ,rega 
+0x751a 025866 fetcht 5 ,mem_le_pcnt_rx 
+0x751b 025867 call first_block_data 
+0x751c 025868 call do_aes_ctr 
+0x751d 025869 force regidx_result ,regext_index 
+0x751e 025870 deposit regext 
+0x751f 025871 store 4 ,mem_le_peer_mic 
+0x7520 025872 call aes_crypt_data 
+0x7521 025873 arg mem_le_rxbuf ,regc 
+0x7522 025874 call generate_mic 
+0x7523 025875 fetcht 4 ,mem_le_peer_mic 
+0x7524 025876 isub temp ,pdata 
+0x7525 025877 nrtn blank 
+0x7526 025878 fetch 4 ,mem_le_last_mic 
+0x7527 025879 isub temp ,pdata 
+0x7528 025880 rtn blank 
+0x7529 025881 storet 4 ,mem_le_last_mic 
+0x752a 025882 fetch 5 ,mem_le_pcnt_rx 
+0x752b 025883 increase 1 ,pdata 
+0x752c 025884 store 5 ,mem_le_pcnt_rx 
+0x752d 025885 force 0 ,pdata 
+0x752e 025886 rtn 
+:      025888 wait_aes:
+0x752f 025889 nbranch wait_aes ,aes_ready 
+0x7530 025890 rtn 
+:      025892 do_aes_ocb:
+0x7531 025893 force 0x30 ,aes_ctrl 
+0x7532 025894 force 0x0 ,aes_ctrl 
+0x7533 025895 branch wait_aes 
+:      025897 do_aes_cbc:
+0x7534 025898 force 0x32 ,aes_ctrl 
+0x7535 025899 force 0x2 ,aes_ctrl 
+0x7536 025900 branch wait_aes 
+:      025902 do_aes_ctr:
+0x7537 025903 force 0x34 ,aes_ctrl 
+0x7538 025904 force 0x4 ,aes_ctrl 
+0x7539 025905 branch wait_aes 
+:      025907 do_aes_cfb:
+0x753a 025908 force 0x36 ,aes_ctrl 
+0x753b 025909 force 0x6 ,aes_ctrl 
+0x753c 025910 branch wait_aes 
+:      025912 aes_init:
+0x753d 025913 force 1 ,aes_ctrl 
+0x753e 025914 force 0 ,aes_ctrl 
+0x753f 025915 rtn 
+:      025916 function_s1:
+0x7540 025917 force regidx_data ,regext_index 
+0x7541 025918 fetch 4 ,mem_le_mrand 
+0x7542 025919 iforce regext 
+0x7543 025920 increase 1 ,regext_index 
+0x7544 025921 ifetch 4 ,contr 
+0x7545 025922 iforce regext 
+0x7546 025923 increase 1 ,regext_index 
+0x7547 025924 fetch 4 ,mem_le_srand 
+0x7548 025925 iforce regext 
+0x7549 025926 increase 1 ,regext_index 
+0x754a 025927 ifetch 4 ,contr 
+0x754b 025928 iforce regext 
+0x754c 025929 increase 1 ,regext_index 
+0x754d 025930 call aes_clear 
+0x754e 025931 force 0x38 ,aes_ctrl 
+0x754f 025932 force 0x8 ,aes_ctrl 
+0x7550 025933 branch wait_aes 
+:      025936 function_c1:
+0x7551 025937 fetch 6 ,mem_le_lap 
+0x7552 025938 fetcht 6 ,mem_le_plap 
+0x7553 025939 branch function_c1_master ,master 
+0x7554 025940 fetch 6 ,mem_le_plap 
+0x7555 025941 fetcht 6 ,mem_le_lap 
+:      025942 function_c1_master:
+0x7556 025943 force regidx_xor ,regext_index 
+0x7557 025944 copy temp ,regext 
+0x7558 025945 increase 1 ,regext_index 
+0x7559 025946 rshift32 temp ,regext 
+0x755a 025947 lshift16 pdata ,pdata 
+0x755b 025948 ior regext ,regext 
+0x755c 025949 increase 1 ,regext_index 
+0x755d 025950 rshift32 pdata ,regext 
+0x755e 025951 increase 1 ,regext_index 
+0x755f 025952 force 0 ,regext 
+0x7560 025953 force 0 ,pdata 
+0x7561 025954 fetch 1 ,mem_le_conn_peer_addr_type 
+0x7562 025955 fetcht 1 ,mem_le_adv_own_addr_type 
+0x7563 025956 nbranch function_c1_irat ,master 
+0x7564 025958 fetch 1 ,mem_le_conn_own_addr_type 
+0x7565 025959 fetcht 1 ,mem_le_conn_peer_addr_type 
+:      025960 function_c1_irat:
+0x7566 025961 store 1 ,mem_le_iat 
+0x7567 025962 storet 1 ,mem_le_rat 
+0x7568 025963 force regidx_data ,regext_index 
+0x7569 025964 arg mem_le_iat ,regb 
+0x756a 025965 force 4 ,loopcnt 
+:      025966 function_c1_loop1:
+0x756b 025967 ifetch 4 ,rega 
+0x756c 025968 ifetcht 4 ,regb 
+0x756d 025969 ixor temp ,regext 
+0x756e 025970 increase 1 ,regext_index 
+0x756f 025971 increase 4 ,rega 
+0x7570 025972 increase 4 ,regb 
+0x7571 025973 loop function_c1_loop1 
+0x7572 025974 call aes_clear 
+0x7573 025975 force 0x38 ,aes_ctrl 
+0x7574 025976 force 0xc ,aes_ctrl 
+0x7575 025977 call wait_aes 
+0x7576 025979 call aes_clear_data 
+0x7577 025980 force 0x3a ,aes_ctrl 
+0x7578 025981 force 0x8 ,aes_ctrl 
+0x7579 025982 branch wait_aes 
+:      025984 padding_data:
+0x757a 025985 compare 0 ,loopcnt ,3 
+0x757b 025986 rtn true 
+0x757c 025987 deposit contr 
+0x757d 025988 iadd loopcnt ,contw 
+0x757e 025989 force 0 ,pdata 
+:      025990 padding_loop:
+0x757f 025991 istore 1 ,contw 
+0x7580 025992 increase 1 ,loopcnt 
+0x7581 025993 compare 0 ,loopcnt ,3 
+0x7582 025994 rtn true 
+0x7583 025995 branch padding_loop 
+:      025997 aes_load_data:
+0x7584 025998 force regidx_data ,regext_index 
+:      025999 load_data_loop:
+0x7585 026000 deposit loopcnt 
+0x7586 026001 branch load_data_padding ,blank 
+0x7587 026002 ifetch 4 ,contr 
+0x7588 026003 increase -4 ,loopcnt 
+:      026004 load_data_padding:
+0x7589 026005 iforce regext 
+0x758a 026006 increase 1 ,regext_index 
+0x758b 026007 compare regidx_key ,regext_index ,0xf 
+0x758c 026008 rtn true 
+0x758d 026009 branch load_data_loop 
+:      026011 aes_load_xor:
+0x758e 026012 force regidx_xor ,regext_index 
+0x758f 026013 branch load_regext 
+:      026014 load_key:
+0x7590 026015 force regidx_key ,regext_index 
+0x7591 026016 branch load_regext 
+:      026017 load_data128:
+0x7592 026018 force regidx_data ,regext_index 
+:      026019 load_regext:
+0x7593 026020 force 4 ,loopcnt 
+:      026021 load_regext_loop:
+0x7594 026022 ifetch 4 ,contr 
+0x7595 026023 iforce regext 
+0x7596 026024 increase 1 ,regext_index 
+0x7597 026025 loop load_regext_loop 
+0x7598 026026 rtn 
+:      026028 load_sk:
+0x7599 026029 arg mem_le_sk ,contr 
+0x759a 026030 branch load_key 
+:      026032 clear_hidata:
+0x759b 026033 force 4 ,loopcnt 
+0x759c 026034 branch clear_data_rest 
+:      026036 aes_clear_data:
+0x759d 026037 force regidx_data ,regext_index 
+:      026038 aes_clear:
+0x759e 026039 force 4 ,loopcnt 
+:      026040 clear_loop:
+0x759f 026041 force 0 ,regext 
+:      026042 clear_data_rest:
+0x75a0 026043 increase 1 ,regext_index 
+0x75a1 026044 loop clear_loop 
+0x75a2 026045 rtn 
+:      026047 store_aes_result:
+0x75a3 026048 force regidx_result ,regext_index 
+0x75a4 026049 force 4 ,loopcnt 
+:      026050 send_aes_result_loop:
+0x75a5 026051 deposit regext 
+0x75a6 026052 istore 4 ,contw 
+0x75a7 026053 increase 1 ,regext_index 
+0x75a8 026054 loop send_aes_result_loop 
+0x75a9 026055 rtn 
+:      026057 store_enc_data:
+0x75aa 026058 force regidx_result ,regext_index 
+0x75ab 026059 copy regc ,contw 
+0x75ac 026060 add regb ,1 ,loopcnt 
+0x75ad 026061 sub loopcnt ,15 ,null 
+0x75ae 026062 branch store_enc_loop ,positive 
+0x75af 026063 force 16 ,loopcnt 
+:      026064 store_enc_loop:
+0x75b0 026065 deposit regext 
+0x75b1 026066 sub loopcnt ,3 ,null 
+0x75b2 026067 branch store_enc_byte ,positive 
+0x75b3 026068 istore 4 ,contw 
+0x75b4 026069 increase -4 ,loopcnt 
+0x75b5 026070 rtn zero 
+0x75b6 026071 increase 1 ,regext_index 
+0x75b7 026072 branch store_enc_loop 
+:      026073 store_enc_byte:
+0x75b8 026074 istore 1 ,contw 
+0x75b9 026075 rshift8 pdata ,pdata 
+0x75ba 026076 loop store_enc_byte 
+0x75bb 026077 rtn 
+:      026080 compare_res:
+0x75bc 026081 force regidx_result ,regext_index 
+0x75bd 026082 force 4 ,loopcnt 
+:      026083 compare_res_loop:
+0x75be 026084 ifetch 4 ,contr 
+0x75bf 026085 isub regext ,null 
+0x75c0 026086 nrtn zero 
+0x75c1 026087 increase 1 ,regext_index 
+0x75c2 026088 loop compare_res_loop 
+0x75c3 026089 force 0 ,null 
+0x75c4 026090 rtn 
+:      026092 enable_authrom:
+0x75c5 026093 hfetch 1 ,core_clkoff 
+0x75c6 026094 set0 clock_off_auth_rom ,pdata 
+0x75c7 026095 hstore 1 ,core_clkoff 
+0x75c8 026096 rtn 
+:      026098 disable_authrom:
+0x75c9 026099 hfetch 1 ,core_clkoff 
+0x75ca 026100 set1 clock_off_auth_rom ,pdata 
+0x75cb 026101 hstore 1 ,core_clkoff 
+0x75cc 026102 rtn 
+:      026104 init_memp:
+0x75cd 026105 arg mem_p ,contw 
+0x75ce 026106 setsect 0 ,0x3ffff 
+0x75cf 026107 setsect 1 ,0x3ffff 
+0x75d0 026108 setsect 2 ,0x3ffff 
+0x75d1 026109 setsect 3 ,0x3fbff 
+0x75d2 026110 istore 9 ,contw 
+0x75d3 026111 setsect 0 ,0x3ffff 
+0x75d4 026112 setsect 1 ,0x3ffff 
+0x75d5 026113 setsect 2 ,0x3ffff 
+0x75d6 026114 setsect 3 ,0x3ffff 
+0x75d7 026115 istore 9 ,contw 
+0x75d8 026116 setsect 0 ,0x3ffff 
+0x75d9 026117 setsect 1 ,0x3ffff 
+0x75da 026118 setsect 2 ,0x3cfff 
+0x75db 026119 setsect 3 ,0x3ffff 
+0x75dc 026120 istore 9 ,contw 
+0x75dd 026121 setsect 0 ,0x3ffff 
+0x75de 026122 setsect 1 ,0x3ffff 
+0x75df 026123 setsect 2 ,0x3ffef 
+0x75e0 026124 setsect 3 ,0x3ffff 
+0x75e1 026125 istore 9 ,contw 
+0x75e2 026126 setsect 0 ,0x3ffff 
+0x75e3 026127 setsect 1 ,0x3ffff 
+0x75e4 026128 setsect 2 ,0x3ffff 
+0x75e5 026129 setsect 3 ,0x3ffff 
+0x75e6 026130 istore 9 ,contw 
+0x75e7 026131 setsect 0 ,0x3ffff 
+0x75e8 026132 setsect 1 ,0x26c7f 
+0x75e9 026133 setsect 2 ,0x146b 
+0x75ea 026134 setsect 3 ,0x37bb3 
+0x75eb 026135 istore 9 ,contw 
+0x75ec 026136 setsect 0 ,0x1feb8 
+0x75ed 026137 setsect 1 ,0x10c12 
+0x75ee 026138 setsect 2 ,0x2b722 
+0x75ef 026139 setsect 3 ,0x29fa6 
+0x75f0 026140 istore 9 ,contw 
+0x75f1 026141 setsect 0 ,0xe70f 
+0x75f2 026142 setsect 1 ,0x16720 
+0x75f3 026143 setsect 2 ,0x519e 
+0x75f4 026144 setsect 3 ,0x19084 
+0x75f5 026145 istore 9 ,contw 
+0x75f6 026146 setsect 0 ,0x31012 
+0x75f7 026147 setsect 1 ,0x360bf 
+0x75f8 026148 setsect 2 ,0x3f0af 
+0x75f9 026149 setsect 3 ,0x3d3 
+0x75fa 026150 istore 9 ,contw 
+0x75fb 026151 setsect 0 ,0x3a188 
+0x75fc 026152 setsect 1 ,0x3ad0 
+0x75fd 026153 setsect 2 ,0x3cbf2 
+0x75fe 026154 setsect 3 ,0x243d9 
+0x75ff 026155 istore 9 ,contw 
+0x7600 026156 setsect 0 ,0x2b030 
+0x7601 026157 setsect 1 ,0x36a03 
+0x7602 026158 setsect 2 ,0x11188 
+0x7603 026159 setsect 3 ,0x1e520 
+0x7604 026160 istore 9 ,contw 
+0x7605 026161 setsect 0 ,0x3a11e 
+0x7606 026162 setsect 1 ,0xfe5d 
+0x7607 026163 setsect 2 ,0xdd57 
+0x7608 026164 setsect 3 ,0x1ac93 
+0x7609 026165 istore 9 ,contw 
+0x760a 026166 setsect 0 ,0x11ed 
+0x760b 026167 setsect 1 ,0x218c4 
+0x760c 026168 setsect 2 ,0x8da7 
+0x760d 026169 setsect 3 ,0x257ff 
+0x760e 026170 istore 9 ,contw 
+0x760f 026171 setsect 0 ,0x3192b 
+0x7610 026172 setsect 1 ,0x34641 
+0x7611 026173 setsect 2 ,0x1be0c 
+0x7612 026174 setsect 3 ,0x366ad 
+0x7613 026175 istore 9 ,contw 
+0x7614 026176 setsect 0 ,0x1f83 
+0x7615 026177 setsect 1 ,0x15a23 
+0x7616 026178 setsect 2 ,0x3f9b0 
+0x7617 026179 setsect 3 ,0x3949 
+0x7618 026180 istore 9 ,contw 
+0x7619 026181 setsect 0 ,0x13a51 
+0x761a 026182 setsect 1 ,0x153fd 
+0x761b 026183 setsect 2 ,0x3372a 
+0x761c 026184 setsect 3 ,0xf1bb 
+0x761d 026185 istore 9 ,contw 
+0x761e 026186 setsect 0 ,0x3ae85 
+0x761f 026187 setsect 1 ,0x1eed9 
+0x7620 026188 setsect 2 ,0x9e66 
+0x7621 026189 setsect 3 ,0x1a8 
+0x7622 026190 istore 8 ,contw 
+0x7623 026191 rtn 
+:      026195 shutter_init:
+0x7624 026196 setarg shutter_send_process 
+0x7625 026197 store 2 ,mem_cb_bt_process 
+0x7626 026198 setarg shutter_process_idle 
+0x7627 026199 store 2 ,mem_cb_idle_process 
+0x7628 026200 setarg shutter_process_bb_event 
+0x7629 026201 store 2 ,mem_cb_bb_event_process 
+0x762a 026202 setarg shutter_process_lpm_before 
+0x762b 026203 store 2 ,mem_cb_before_lpm 
+0x762c 026204 setarg shutter_discovery_timeout_sleep 
+0x762d 026205 store 2 ,mem_cb_discovry_timeout 
+0x762e 026206 set1 mark_ext_patch ,mark 
+0x762f 026207 bpatch patch3f_1 ,mem_patch3f 
+0x7630 026208 rtn wake 
+0x7631 026210 hjam 0x00 ,core_gpio_sel1 
+0x7632 026211 call shutter_key_and_wake_gpio_setup 
+0x7633 026213 setarg shutter_before_hibernate 
+0x7634 026214 store 2 ,mem_cb_before_hibernate 
+0x7635 026216 jam flag_shutter_1key_send_null ,mem_shutter_1key_send_sm 
+0x7636 026217 jam 0 ,mem_shutter_key 
+0x7637 026218 jam flag_shutter_default ,mem_shutter_flag 
+0x7638 026219 setarg 0 
+0x7639 026220 store 4 ,mem_shutter_send_data 
+0x763a 026221 call app_check_reconn_target 
+0x763b 026222 branch app_bt_start_discovery_short ,blank 
+0x763c 026223 call app_led_on 
+0x763d 026224 call app_bt_stop_discovery 
+0x763e 026225 branch app_bt_start_reconnect 
+:      026227 shutter_key_and_wake_gpio_setup:
+0x763f 026228 fetcht 1 ,mem_shutter_iphonekey_gpio 
+0x7640 026229 call gpio_config_input 
+0x7641 026230 fetcht 1 ,mem_shutter_androidkey_gpio 
+0x7642 026231 branch gpio_config_input 
+:      026233 shutter_cancel_key_shake:
+0x7643 026234 set1 mark_ext_patch ,mark 
+0x7644 026235 bpatch patch3f_2 ,mem_patch3f 
+0x7645 026236 fetcht 4 ,mem_shutter_clkn_bt_last 
+0x7646 026237 deposit clkn_bt 
+0x7647 026238 store 4 ,mem_shutter_clkn_bt_last 
+0x7648 026239 isub temp ,pdata 
+0x7649 026240 nrtn positive 
+0x764a 026241 sub pdata ,200 ,pdata 
+0x764b 026242 rtn 
+:      026244 shutter_send_process:
+0x764c 026245 fetch 1 ,mem_hid_interrupt_state 
+0x764d 026246 rtnne 0x3f 
+:      026247 shutter_scan_key_start:
+0x764e 026248 set1 mark_ext_patch ,mark 
+0x764f 026249 bpatch patch3f_3 ,mem_patch3f 
+0x7650 026250 fetch 1 ,mem_device_option 
+0x7651 026251 rtnne dvc_op_shutter 
+0x7652 026252 disable user 
+0x7653 026253 call shutter_scan_key 
+0x7654 026254 nrtn user 
+0x7655 026255 disable user 
+0x7656 026256 fetch 1 ,mem_scan_mode 
+0x7657 026257 beq 0x03 ,shutter_reconnect_scan_2 
+0x7658 026259 fetch 1 ,mem_shutter_flag 
+0x7659 026260 beq flag_shutter_iphonekey_send ,shutter_iphonekey_release 
+0x765a 026261 beq flag_shutter_androidkey_send ,shutter_androidkey_release 
+0x765b 026262 call shutter_cancel_key_shake 
+0x765c 026263 branch shutter_send_process_end ,positive 
+0x765d 026265 fetch 1 ,mem_shutter_key 
+0x765e 026266 bbit1 flag_shutter_iphonekey_press ,shutter_iphonekey_press 
+0x765f 026267 bbit1 flag_shutter_androidkey_press ,shutter_androidkey_press 
+:      026269 shutter_send_process_end:
+0x7660 026270 jam 0 ,mem_shutter_key 
+0x7661 026271 jam flag_shutter_default ,mem_shutter_flag 
+0x7662 026272 rtn 
+:      026275 shutter_iphonekey_release:
+0x7663 026276 jam flag_shutter_default ,mem_shutter_flag 
+0x7664 026277 call ui_led_blink_stop 
+0x7665 026278 fetch 1 ,mem_shutter_key_number 
+0x7666 026279 beq flag_shutter_1key ,shutter_1key_iphonekey_release 
+:      026280 shutter_2key_iphonekey_release:
+:      026281 shutter_iphonekey_release_package:
+0x7667 026282 jam 0x05 ,mem_shutter_send_length 
+0x7668 026283 jam 0x03 ,mem_shutter_send_data 
+0x7669 026284 branch shutter_send_keydata 
+:      026285 shutter_1key_iphonekey_release:
+0x766a 026286 jam flag_shutter_1key_send_null ,mem_shutter_1key_send_sm 
+0x766b 026287 branch shutter_1key_send_step1 
+:      026289 shutter_1key_send_step1:
+0x766c 026290 jam flag_shutter_1key_send_step2 ,mem_shutter_1key_send_sm 
+0x766d 026291 branch shutter_androidkey_press_package 
+:      026292 shutter_1key_send_step2:
+0x766e 026293 jam flag_shutter_1key_send_step3 ,mem_shutter_1key_send_sm 
+0x766f 026294 branch shutter_androidkey_release_package 
+:      026295 shutter_1key_send_step3:
+0x7670 026296 jam flag_shutter_1key_send_step4 ,mem_shutter_1key_send_sm 
+0x7671 026297 branch shutter_iphonekey_press_package 
+:      026298 shutter_1key_send_step4:
+0x7672 026299 jam flag_shutter_1key_send_null ,mem_shutter_1key_send_sm 
+0x7673 026300 branch shutter_iphonekey_release_package 
+:      026302 shutter_iphonekey_press:
+0x7674 026303 jam flag_shutter_iphonekey_send ,mem_shutter_flag 
+0x7675 026304 call ui_led_on 
+0x7676 026305 fetch 1 ,mem_shutter_key_number 
+0x7677 026306 beq flag_shutter_1key ,shutter_1key_iphonekey_press 
+:      026307 shutter_2key_iphonekey_press:
+:      026308 shutter_iphonekey_press_package:
+0x7678 026309 jam 0x05 ,mem_shutter_send_length 
+0x7679 026310 setarg 0x20003 
+0x767a 026311 store 3 ,mem_shutter_send_data 
+0x767b 026312 branch shutter_send_keydata 
+:      026313 shutter_1key_iphonekey_press:
+0x767c 026314 rtn 
+:      026316 shutter_androidkey_release:
+0x767d 026317 jam flag_shutter_default ,mem_shutter_flag 
+0x767e 026318 call ui_led_blink_stop 
+:      026319 shutter_androidkey_release_package:
+0x767f 026320 jam 0x0a ,mem_shutter_send_length 
+0x7680 026321 jam 0x01 ,mem_shutter_send_data 
+0x7681 026322 branch shutter_send_keydata 
+:      026323 shutter_androidkey_press:
+0x7682 026324 jam flag_shutter_androidkey_send ,mem_shutter_flag 
+0x7683 026325 call ui_led_on 
+:      026326 shutter_androidkey_press_package:
+0x7684 026327 jam 0x0a ,mem_shutter_send_length 
+0x7685 026328 jam 0x01 ,mem_shutter_send_data 
+0x7686 026329 setarg 0x280000 
+0x7687 026330 store 3 ,mem_shutter_send_data + 1 
+:      026332 shutter_send_keydata:
+0x7688 026333 set1 mark_ext_patch ,mark 
+0x7689 026334 bpatch patch3f_4 ,mem_patch3f 
+0x768a 026335 fetch 1 ,mem_shutter_send_length 
+0x768b 026336 copy pdata ,rega 
+0x768c 026337 call hid_malloc_tx_buff 
+0x768d 026338 fetch 2 ,mem_hid_int_remote_cid 
+0x768e 026339 istore 2 ,contw 
+0x768f 026340 setarg 0xa1 
+0x7690 026341 istore 1 ,contw 
+0x7691 026342 fetcht 4 ,mem_shutter_send_data 
+0x7692 026343 istoret 8 ,contw 
+0x7693 026344 setarg 0 
+0x7694 026345 istore 1 ,contw 
+0x7695 026346 store 4 ,mem_shutter_send_data 
+0x7696 026348 fetch 1 ,mem_shutter_1key_send_sm 
+0x7697 026349 beq flag_shutter_1key_send_step2 ,shutter_1key_send_step2 
+0x7698 026350 beq flag_shutter_1key_send_step3 ,shutter_1key_send_step3 
+0x7699 026351 beq flag_shutter_1key_send_step4 ,shutter_1key_send_step4 
+0x769a 026352 rtn 
+:      026354 shutter_scan_key:
+0x769b 026355 fetcht 1 ,mem_shutter_iphonekey_gpio 
+0x769c 026356 call gpio_get_bit 
+0x769d 026357 setarg 0 
+0x769e 026358 setflag true ,flag_shutter_iphonekey_press ,pdata 
+0x769f 026359 store 1 ,mem_shutter_key_temp 
+0x76a0 026360 fetcht 1 ,mem_shutter_androidkey_gpio 
+0x76a1 026361 call gpio_get_bit 
+0x76a2 026362 setarg 0 
+0x76a3 026363 setflag true ,flag_shutter_androidkey_press ,pdata 
+0x76a4 026364 fetcht 1 ,mem_shutter_key_temp 
+0x76a5 026365 ior temp ,pdata 
+0x76a6 026366 fetcht 1 ,mem_shutter_key 
+0x76a7 026367 store 1 ,mem_shutter_key 
+0x76a8 026368 ixor temp ,null 
+0x76a9 026369 rtn zero 
+0x76aa 026370 enable user 
+0x76ab 026371 rtn 
+:      026373 shutter_process_bb_event:
+0x76ac 026374 copy regc ,pdata 
+0x76ad 026375 beq bt_evt_setup_complete ,shutter_bb_event_setup_complete 
+0x76ae 026376 beq bt_evt_hid_connected ,shutter_bb_event_hid_connected 
+0x76af 026377 beq bt_evt_hid_disconnected ,shutter_bb_event_hid_disconn 
+0x76b0 026378 beq bt_evt_virtual_cable_unplug ,shutter_bb_event_unplug 
+0x76b1 026379 beq bt_evt_bb_disconnected ,shutter_bb_event_bb_disconn 
+0x76b2 026380 beq bt_evt_reconn_failed ,shutter_bb_event_reconn_failed 
+0x76b3 026381 beq bt_evt_reconn_page_timeout ,shutter_bb_event_reconn_failed 
+0x76b4 026382 beq bt_evt_bb_connected ,shutter_process_bb_conn 
+0x76b5 026383 beq bt_evt_hid_handshake ,shutter_event_hid_handshake 
+0x76b6 026384 beq bt_evt_remote_unsniff ,app_start_auto_sniff 
+0x76b7 026385 and pdata ,0x0f ,temp 
+0x76b8 026386 and_into bt_evt_timer_mask ,pdata 
+0x76b9 026387 beq bt_evt_timer_init ,shutter_bb_event_timer 
+0x76ba 026388 rtn 
+:      026390 shutter_hid_handshake_timer:
+0x76bb 026391 fetch 1 ,mem_hid_handshake_timer_count 
+0x76bc 026392 rtn blank 
+0x76bd 026393 increase -1 ,pdata 
+0x76be 026394 store 1 ,mem_hid_handshake_timer_count 
+0x76bf 026395 nrtn blank 
+:      026396 shutter_event_hid_handshake:
+0x76c0 026397 jam app_handshake_done ,mem_app_handshake_flag 
+0x76c1 026398 call app_lpm_mult_enable 
+0x76c2 026399 call app_bt_store_reconn_info 
+0x76c3 026400 call app_bt_stop_discovery 
+0x76c4 026401 call app_led_off 
+0x76c5 026402 branch app_bt_enter_sniff 
+:      026405 shutter_process_bb_conn:
+0x76c6 026406 jam 0 ,mem_shutter_hid_disconn_count 
+0x76c7 026407 jam 0 ,mem_shutter_cable_unplug_conut 
+0x76c8 026408 rtn 
+:      026410 shutter_bb_event_bb_disconn:
+0x76c9 026411 set1 mark_ext_patch ,mark 
+0x76ca 026412 bpatch patch3f_5 ,mem_patch3f 
+0x76cb 026413 jam 0 ,mem_unsniff2sniff_timer_count 
+0x76cc 026414 jam 0 ,mem_shutter_cable_unplug_conut 
+0x76cd 026415 jam 0 ,mem_shutter_hid_disconn_count 
+0x76ce 026416 fetch app_disc_rsn_size ,mem_app_disconn_reason 
+0x76cf 026417 bbit0 app_disc_after_sniff ,shutter_check_pairing 
+:      026418 shutter_bb_event_reconn_failed:
+0x76d0 026420 fetch 2 ,mem_discovery_timeout 
+0x76d1 026421 store 2 ,mem_discovery_timeout_timer_count 
+:      026422 shutter_discovery_on_not_renew_timer:
+0x76d2 026423 call app_disconn_reason_clear 
+0x76d3 026424 branch app_bt_start_discovery_led_blink 
+:      026426 shutter_check_pairing:
+0x76d4 026427 bbit0 app_disc_after_pairing ,shutter_check_reconn 
+0x76d5 026428 branch shutter_bb_event_reconn_failed 
+:      026430 shutter_check_reconn:
+0x76d6 026431 bbit0 app_disc_after_reconn ,shutter_discovery_on_not_renew_timer 
+0x76d7 026432 branch shutter_bb_event_reconn_failed 
+:      026435 shutter_bb_event_setup_complete:
+0x76d8 026436 call app_bt_stop_discovery 
+0x76d9 026437 branch app_led_stop_blink 
+:      026439 shutter_bb_event_hid_connected:
+0x76da 026440 setarg hid_handshake_timeout 
+0x76db 026441 store 1 ,mem_hid_handshake_timer_count 
+0x76dc 026442 rtn 
+:      026444 shutter_bb_event_hid_disconn:
+0x76dd 026445 jam 0 ,mem_shutter_cable_unplug_conut 
+0x76de 026446 setarg flag_shutter_hid_disconn_timeout 
+0x76df 026447 store 1 ,mem_shutter_hid_disconn_count 
+0x76e0 026448 rtn 
+:      026450 shutter_bb_event_unplug:
+0x76e1 026451 setarg flag_shutter_cable_unplug_timeout 
+0x76e2 026452 store 1 ,mem_shutter_cable_unplug_conut 
+0x76e3 026453 rtn 
+:      026455 shutter_bb_event_timer:
+0x76e4 026456 set1 mark_ext_patch ,mark 
+0x76e5 026457 bpatch patch3f_6 ,mem_patch3f 
+0x76e6 026458 storet 1 ,mem_app_evt_timer_count 
+:      026459 shutter_bb_event_100ms_loop:
+0x76e7 026460 fetch 1 ,mem_app_evt_timer_count 
+0x76e8 026461 rtn blank 
+0x76e9 026462 increase -1 ,pdata 
+0x76ea 026463 store 1 ,mem_app_evt_timer_count 
+0x76eb 026464 call shutter_check_unplug_timer 
+0x76ec 026465 call shutter_hid_handshake_timer 
+0x76ed 026466 call shutter_check_hid_disconn_timer 
+0x76ee 026467 branch shutter_bb_event_100ms_loop 
+:      026469 shutter_check_unplug_timer:
+0x76ef 026470 fetch 1 ,mem_shutter_cable_unplug_conut 
+0x76f0 026471 rtn blank 
+0x76f1 026472 fetch 1 ,mem_shutter_cable_unplug_conut 
+0x76f2 026473 increase -1 ,pdata 
+0x76f3 026474 store 1 ,mem_shutter_cable_unplug_conut 
+0x76f4 026475 nrtn blank 
+0x76f5 026476 fetch 1 ,mem_control_tasks 
+0x76f6 026477 set1 l2cap_disconnect_interrupt ,pdata 
+0x76f7 026478 set1 l2cap_disconnect_control ,pdata 
+0x76f8 026479 store 1 ,mem_control_tasks 
+0x76f9 026480 rtn 
+:      026482 shutter_check_hid_disconn_timer:
+0x76fa 026483 fetch 1 ,mem_shutter_hid_disconn_count 
+0x76fb 026484 rtn blank 
+0x76fc 026485 fetch 1 ,mem_shutter_hid_disconn_count 
+0x76fd 026486 increase -1 ,pdata 
+0x76fe 026487 store 1 ,mem_shutter_hid_disconn_count 
+0x76ff 026488 nrtn blank 
+0x7700 026489 branch app_bt_disconnect 
+:      026491 shutter_reconnect_scan:
+0x7701 026492 set1 mark_ext_patch ,mark 
+0x7702 026493 bpatch patch3f_7 ,mem_patch3f 
+0x7703 026494 fetch 1 ,mem_scan_mode 
+0x7704 026495 rtnne 0x03 
+0x7705 026496 branch shutter_scan_key_start 
+:      026497 shutter_reconnect_scan_2:
+0x7706 026498 call shutter_cancel_key_shake 
+0x7707 026499 rtn positive 
+0x7708 026500 fetch 1 ,mem_shutter_key 
+0x7709 026501 rtn blank 
+0x770a 026502 call app_check_reconn_target 
+0x770b 026503 branch app_bt_start_discovery_short ,blank 
+0x770c 026504 call app_led_on 
+0x770d 026505 call app_bt_stop_discovery 
+0x770e 026506 branch app_bt_start_reconnect 
+:      026509 shutter_process_idle:
+0x770f 026510 branch shutter_reconnect_scan 
+:      026513 shutter_process_lpm_before:
+0x7710 026514 fetcht 1 ,mem_shutter_iphonekey_gpio 
+0x7711 026515 call gpio_set_wake_by_current_state 
+0x7712 026516 fetch 1 ,mem_shutter_key_number 
+0x7713 026517 bne flag_shutter_1key ,shutter_process_lpm_before_key2 
+0x7714 026518 rtn 
+:      026519 shutter_process_lpm_before_key2:
+0x7715 026520 fetcht 1 ,mem_shutter_androidkey_gpio 
+0x7716 026521 branch gpio_set_wake_by_current_state 
+:      026523 shutter_before_hibernate:
+0x7717 026524 branch shutter_key_and_wake_gpio_setup 
+:      026527 shutter_discovery_timeout_sleep:
+0x7718 026528 branch app_enter_hibernate 
+:      026532 sp_initialize:
+0x7719 026533 set1 mark_ext_patch ,mark 
+0x771a 026534 bpatch patch3e_2 ,mem_patch3e 
+0x771b 026535 fetch 1 ,mem_ssp_enable 
+0x771c 026536 branch ssp_disable ,blank 
+0x771d 026537 call ssp_enable 
+0x771e 026538 setarg 0 
+0x771f 026539 store 8 ,mem_sp_state_start 
+0x7720 026540 store 4 ,mem_sp_flag_start 
+0x7721 026542 arg mem_sp_iocap_remote ,contw 
+0x7722 026543 istore 7 ,contw 
+0x7723 026544 jam default_statemachine ,mem_sp_localsm 
+0x7724 026545 branch sp_pubkey_calc 
+:      026547 sp_generate_local_key:
+0x7725 026548 jam sp_flag_commit ,mem_sp_flag 
+0x7726 026549 branch sp_generate_local_key0 
+:      026550 sp_master_generate_local_key:
+0x7727 026551 fetch 1 ,mem_sp_local_key_invalid 
+0x7728 026552 beq sp_key_valid ,sp_dhkey_calc 
+0x7729 026553 branch assert 
+:      026554 sp_generate_local_key0:
+0x772a 026555 fetch 1 ,mem_sp_local_key_invalid 
+0x772b 026556 beq sp_key_valid ,sp_start_send_pubkey 
+0x772c 026557 branch sp_pubkey_calc 
+:      026559 sp_start_send_pubkey:
+0x772d 026560 call sp_dhkey_calc 
+0x772e 026561 fetch 1 ,mem_master_sp_state 
+0x772f 026562 nrtn blank 
+0x7730 026563 jam sp_stat_key_send ,mem_sp_state 
+0x7731 026564 rtn 
+:      026566 sp_calculate_commitment:
+0x7732 026567 fetch 1 ,mem_sp_calc 
+0x7733 026568 bne sp_calc_standby ,sp_calculate_commitment_wait_dhkey_calc 
+0x7734 026569 call sp_local_random_key_generator 
+0x7735 026570 arg mem_sp_prarm_stack ,contw 
+0x7736 026571 setarg mem_sp_random_local_end 
+0x7737 026572 istore 2 ,contw 
+0x7738 026573 setarg mem_sp_pubkey_local_x_end 
+0x7739 026574 istore 2 ,contw 
+0x773a 026575 setarg mem_sp_pubkey_remote_x_end 
+0x773b 026576 istore 2 ,contw 
+0x773c 026577 branch sp_calculate_commitment0 
+:      026578 master_sp_calculate_commitment:
+0x773d 026579 arg mem_sp_prarm_stack ,contw 
+0x773e 026580 setarg mem_sp_random_remote_end 
+0x773f 026581 istore 2 ,contw 
+0x7740 026582 setarg mem_sp_pubkey_remote_x_end 
+0x7741 026583 istore 2 ,contw 
+0x7742 026584 setarg mem_sp_pubkey_local_x_end 
+0x7743 026585 istore 2 ,contw 
+:      026586 sp_calculate_commitment0:
+0x7744 026587 call function_f1 
+0x7745 026588 fetch 1 ,mem_master_sp_state 
+0x7746 026589 beq sp_stat_commit_calc ,master_sp_calculate_commitment0 
+0x7747 026590 jam sp_flag_commit ,mem_sp_flag 
+0x7748 026591 jam sp_stat_commit_send ,mem_sp_state 
+0x7749 026592 rtn 
+:      026593 master_sp_calculate_commitment0:
+0x774a 026594 jam sp_stat_commitment_compare ,mem_master_sp_state 
+0x774b 026595 call sp_master_generate_local_key 
+0x774c 026596 branch master_set_mem_master_sp_flag 
+:      026598 sp_local_random_key_generator:
+0x774d 026599 arg mem_sp_random_local ,contw 
+0x774e 026600 force 8 ,queue 
+0x774f 026601 branch random_generator 
+:      026603 sp_calculate_commitment_wait_dhkey_calc:
+0x7750 026604 jam sp_flag_commit ,mem_sp_flag 
+0x7751 026605 rtn 
+:      026607 sp_confirm_check:
+0x7752 026609 arg mem_addr_value ,contw 
+0x7753 026610 fetch 6 ,mem_lap 
+0x7754 026611 istore 6 ,contw 
+0x7755 026612 fetch 6 ,mem_plap 
+0x7756 026613 istore 6 ,contw 
+0x7757 026614 fetch 3 ,mem_sp_iocap_remote 
+0x7758 026615 istore 3 ,contw 
+0x7759 026617 call function_f3a 
+0x775a 026619 arg mem_sp_calc_result_high ,rega 
+0x775b 026620 arg mem_sp_check_result ,regb 
+0x775c 026621 force 4 ,queue 
+0x775d 026622 call compare4 
+0x775e 026623 nbranch sp_confirm_check_failed ,true 
+:      026625 sp_confirm_check_success:
+0x775f 026626 fetch 1 ,mem_master_sp_state 
+0x7760 026627 beq sp_stat_confirm_check ,sp_confirm_check_success_master 
+0x7761 026628 jam sp_stat_confirm_calc ,mem_sp_state 
+0x7762 026629 jam sp_flag_commit ,mem_sp_flag 
+0x7763 026630 jam lmp_accepted ,mem_lmo_opcode2 
+0x7764 026631 rtn 
+:      026632 sp_confirm_check_success_master:
+0x7765 026633 jam lmp_accepted ,mem_lmo_opcode2 
+0x7766 026634 jam sp_state_end ,mem_master_sp_state 
+0x7767 026635 branch master_set_mem_master_sp_flag 
+:      026638 sp_confirm_check_failed:
+0x7768 026639 fetch 1 ,mem_master_sp_state 
+0x7769 026640 beq sp_stat_confirm_check ,sp_confirm_check_failed_master 
+0x776a 026641 jam sp_stat_null ,mem_sp_state 
+0x776b 026642 jam lmp_not_accepted ,mem_lmo_opcode2 
+0x776c 026644 jam authentication_failure_error ,mem_lmo_reason2 
+0x776d 026645 rtn 
+:      026646 sp_confirm_check_failed_master:
+0x776e 026647 jam lmp_not_accepted ,mem_lmo_opcode2 
+0x776f 026648 jam sp_stat_null ,mem_master_sp_state 
+0x7770 026649 rtn 
+:      026651 sp_confirm_calc:
+0x7771 026652 fetch 1 ,mem_sp_dh_ready 
+0x7772 026653 beq sp_flag_commit ,sp_confirm_calc_ready 
+0x7773 026654 jam sp_stat_confirm_calc ,mem_master_sp_state 
+0x7774 026655 branch master_set_mem_master_sp_flag 
+:      026656 sp_confirm_calc_ready:
+0x7775 026657 arg mem_addr_value ,contw 
+0x7776 026658 fetch 6 ,mem_plap 
+0x7777 026659 istore 6 ,contw 
+0x7778 026660 fetch 6 ,mem_lap 
+0x7779 026661 istore 6 ,contw 
+0x777a 026662 fetch 3 ,mem_sp_iocap_local 
+0x777b 026663 istore 3 ,contw 
+0x777c 026665 call function_f3b 
+0x777d 026666 fetch 1 ,mem_master_sp_state 
+0x777e 026667 beq sp_stat_confirm_calc ,sp_confirm_calc_master 
+0x777f 026668 jam sp_stat_confirm_send ,mem_sp_state 
+0x7780 026669 jam sp_flag_commit ,mem_sp_flag 
+0x7781 026670 rtn 
+:      026671 sp_confirm_calc_master:
+0x7782 026672 jam sp_stat_confirm_send ,mem_master_sp_state 
+0x7783 026673 jam sp_flag_commit ,mem_master_sp_flag 
+0x7784 026674 rtn 
+:      026676 sp_master_key_prarm_push:
+0x7785 026677 arg mem_sp_prarm_stack ,contw 
+0x7786 026678 fetch 6 ,mem_plap 
+0x7787 026679 istore 6 ,contw 
+0x7788 026680 fetch 6 ,mem_lap 
+0x7789 026681 istore 6 ,contw 
+0x778a 026682 setarg mem_sp_random_local_end 
+0x778b 026683 istore 2 ,contw 
+0x778c 026684 setarg mem_sp_random_remote_end 
+0x778d 026685 istore 2 ,contw 
+0x778e 026686 branch sp_link_key_calc 
+:      026687 sp_link_key_prarm_push:
+0x778f 026688 jam sp_stat_done ,mem_sp_state 
+0x7790 026689 arg mem_sp_prarm_stack ,contw 
+0x7791 026690 fetch 6 ,mem_lap 
+0x7792 026691 istore 6 ,contw 
+0x7793 026692 fetch 6 ,mem_plap 
+0x7794 026693 istore 6 ,contw 
+0x7795 026694 setarg mem_sp_random_remote_end 
+0x7796 026695 istore 2 ,contw 
+0x7797 026696 setarg mem_sp_random_local_end 
+0x7798 026697 istore 2 ,contw 
+:      026698 sp_link_key_calc:
+0x7799 026700 arg mem_addr_value ,contw 
+0x779a 026701 fetch 6 ,mem_sp_prarm_stack 
+0x779b 026702 istore 6 ,contw 
+0x779c 026703 fetch 6 ,mem_sp_prarm_stack + 6 
+0x779d 026704 istore 6 ,contw 
+0x779e 026706 call function_f2 
+0x779f 026709 jam 1 ,mem_link_key_exists 
+0x77a0 026710 arg mem_link_key ,contw 
+0x77a1 026711 arg mem_sp_calc_result_high ,contr 
+0x77a2 026712 call memcpy16 
+0x77a3 026713 branch generate_linkkey_continue 
+:      026716 sp_pubkey_calc:
+0x77a4 026717 set1 mark_ext_patch ,mark 
+0x77a5 026718 bpatch patch3e_3 ,mem_patch3e 
+0x77a6 026719 fetch 1 ,mem_sp_local_key_invalid 
+0x77a7 026720 rtnne sp_key_invalid 
+0x77a8 026721 fetch 1 ,mem_sp_calc 
+0x77a9 026722 rtnne sp_calc_standby 
+0x77aa 026723 arg mem_sp_private_key ,contw 
+0x77ab 026724 force 11 ,queue 
+0x77ac 026725 call random_generator 
+0x77ad 026726 random pdata 
+0x77ae 026727 rshift pdata ,pdata 
+0x77af 026728 istore 2 ,contw 
+0x77b0 026730 arg mem_k ,contw 
+0x77b1 026731 arg mem_sp_private_key ,contr 
+0x77b2 026732 call memcpy24 
+0x77b3 026734 arg mem_ax ,contw 
+0x77b4 026735 arg mem_gx ,contr 
+0x77b5 026736 call memcpy48 
+0x77b6 026738 arg mem_az ,contw 
+0x77b7 026739 call bn_zero 
+0x77b8 026740 jam 1 ,mem_az 
+0x77b9 026742 call eckp_calc_init 
+0x77ba 026743 jam sp_calc_pubkey ,mem_sp_calc 
+0x77bb 026744 rtn 
+:      026746 sp_pubkey_generated:
+0x77bc 026747 arg mem_sp_pubkey_local ,contw 
+0x77bd 026748 arg mem_bx ,contr 
+0x77be 026749 call memcpy48 
+0x77bf 026750 jam sp_key_valid ,mem_sp_local_key_invalid 
+0x77c0 026751 jam sp_calc_standby ,mem_sp_calc 
+0x77c1 026752 rtn 
+:      026754 sp_dhkey_calc:
+0x77c2 026755 set1 mark_ext_patch ,mark 
+0x77c3 026756 bpatch patch3e_4 ,mem_patch3e 
+0x77c4 026757 fetch 1 ,mem_sp_dhkey_invalid 
+0x77c5 026758 rtnne sp_key_invalid 
+0x77c6 026759 fetch 1 ,mem_sp_calc 
+0x77c7 026760 rtnne sp_calc_standby 
+0x77c8 026762 arg mem_k ,contw 
+0x77c9 026763 arg mem_sp_private_key ,contr 
+0x77ca 026764 call memcpy24 
+0x77cb 026766 arg mem_ax ,contw 
+0x77cc 026767 arg mem_sp_pubkey_remote ,contr 
+0x77cd 026768 call memcpy48 
+0x77ce 026770 arg mem_az ,contw 
+0x77cf 026771 call bn_zero 
+0x77d0 026772 jam 1 ,mem_az 
+0x77d1 026774 call eckp_calc_init 
+0x77d2 026775 jam sp_calc_dhkey ,mem_sp_calc 
+0x77d3 026776 rtn 
+:      026778 sp_dhkey_generated:
+0x77d4 026779 jam sp_flag_commit ,mem_sp_dh_ready 
+0x77d5 026780 arg mem_sp_dhkey ,contw 
+0x77d6 026781 arg mem_bx ,contr 
+0x77d7 026782 call memcpy24 
+0x77d8 026783 jam sp_key_valid ,mem_sp_dhkey_invalid 
+0x77d9 026784 jam sp_calc_standby ,mem_sp_calc 
+0x77da 026785 rtn 
+:      026787 random_generator:
+0x77db 026788 increase -1 ,queue 
+0x77dc 026789 nrtn positive 
+0x77dd 026790 random pdata 
+0x77de 026791 istore 2 ,contw 
+0x77df 026792 branch random_generator 
+:      026793 compare4:
+0x77e0 026794 increase -1 ,queue 
+0x77e1 026795 nbranch compare4_success ,positive 
+0x77e2 026796 ifetch 4 ,rega 
+0x77e3 026797 copy pdata ,temp 
+0x77e4 026798 ifetch 4 ,regb 
+0x77e5 026799 iflip temp ,pdata 
+0x77e6 026800 nbranch compare4_failed ,zero 
+0x77e7 026801 increase 4 ,rega 
+0x77e8 026802 increase 4 ,regb 
+0x77e9 026803 branch compare4 
+:      026804 compare4_failed:
+0x77ea 026805 disable true 
+0x77eb 026806 rtn 
+:      026807 compare4_success:
+0x77ec 026808 enable true 
+0x77ed 026809 rtn 
+:      026816 simple_pairing_sequence:
+0x77ee 026817 set1 mark_ext_patch ,mark 
+0x77ef 026818 bpatch patch3e_5 ,mem_patch3e 
+0x77f0 026819 fetch 1 ,mem_sp_flag 
+0x77f1 026820 rtn blank 
+0x77f2 026821 jam sp_flag_standby ,mem_sp_flag 
+0x77f3 026822 fetch 1 ,mem_sp_state 
+0x77f4 026823 beq sp_stat_key_send ,sp_send_lmp_encapsulated_header 
+0x77f5 026824 beq sp_stat_commit_send ,sp_send_lmp_simple_pairing_comfirm 
+0x77f6 026825 beq sp_stat_random_send ,sp_send_lmp_simple_pairing_number 
+0x77f7 026826 beq sp_stat_confirm_send ,sp_send_lmp_dhkey_check 
+0x77f8 026827 beq sp_stat_key_generate ,sp_generate_local_key 
+0x77f9 026828 beq sp_stat_commit_calc ,sp_calculate_commitment 
+0x77fa 026829 beq sp_stat_confirm_check ,sp_confirm_check 
+0x77fb 026830 beq sp_stat_confirm_calc ,sp_confirm_calc 
+0x77fc 026831 beq sp_stat_link_key_calc ,sp_link_key_prarm_push 
+0x77fd 026833 rtn 
+:      026835 master_simple_paring_sequence:
+0x77fe 026836 set1 mark_ext_patch ,mark 
+0x77ff 026837 bpatch patch3e_6 ,mem_patch3e 
+0x7800 026838 fetch 1 ,mem_master_sp_flag 
+0x7801 026839 rtn blank 
+0x7802 026840 jam sp_flag_standby ,mem_master_sp_flag 
+0x7803 026841 fetch 1 ,mem_master_sp_state 
+0x7804 026842 beq sp_master_stat_start_skip ,sp_master_send_io_cap_get 
+0x7805 026843 beq sp_master_stat_start_done ,sp_master_send_io_cap_send 
+0x7806 026844 beq sp_stat_key_send ,sp_master_send_lmp_encapsulated_header 
+0x7807 026845 beq sp_stat_commit_calc ,master_sp_calculate_commitment 
+0x7808 026846 beq sp_stat_commitment_compare ,sp_master_commitment_compare 
+0x7809 026847 beq sp_stat_random_send ,sp_master_send_lmp_simple_pairing_number 
+0x780a 026848 beq sp_stat_confirm_calc ,sp_confirm_calc 
+0x780b 026849 beq sp_stat_confirm_send ,master_sp_send_lmp_dhkey_check 
+0x780c 026850 beq sp_stat_confirm_check ,sp_confirm_check 
+0x780d 026851 beq sp_state_end ,master_sp_sm_end 
+0x780e 026852 rtn 
+:      026854 master_set_mem_master_sp_flag:
+0x780f 026855 jam sp_flag_commit ,mem_master_sp_flag 
+0x7810 026856 rtn 
+:      026858 master_clear_mem_master_sp_flag:
+0x7811 026859 jam sp_flag_standby ,mem_master_sp_flag 
+0x7812 026860 rtn 
+:      026861 sp_calc_sequence:
+0x7813 026862 set1 mark_ext_patch ,mark 
+0x7814 026863 bpatch patch3e_7 ,mem_patch3e 
+0x7815 026864 fetch 1 ,mem_sp_calc 
+0x7816 026865 rtn blank 
+0x7817 026866 increase 0x80 ,pdata 
+0x7818 026867 store 1 ,mem_sp_calc 
+0x7819 026868 rtnbit1 7 
+0x781a 026869 fetch 1 ,mem_ec_loopc 
+0x781b 026870 branch sp_calc_sequence_done ,blank 
+0x781c 026871 branch eckp_calc 
+:      026873 sp_calc_sequence_done:
+0x781d 026874 call ecunmapz 
+0x781e 026875 fetch 1 ,mem_sp_calc 
+0x781f 026876 beq sp_calc_pubkey ,sp_pubkey_generated 
+0x7820 026877 beq sp_calc_dhkey ,sp_dhkey_generated 
+0x7821 026878 rtn 
+:      026881 bn_testbit:
+0x7822 026882 and pdata ,7 ,queue 
+0x7823 026883 rshift3 pdata ,pdata 
+0x7824 026884 iadd contr ,contr 
+0x7825 026885 ifetch 1 ,contr 
+0x7826 026886 qisolate0 pdata 
+0x7827 026887 rtn 
+:      026890 ec_copy:
+0x7828 026891 call memcpy24 
+0x7829 026892 call memcpy24 
+0x782a 026893 branch memcpy24 
+:      026896 bn_eq_zero:
+0x782b 026897 ifetch 8 ,contr 
+0x782c 026898 nrtn blank 
+0x782d 026899 ifetch 8 ,contr 
+0x782e 026900 nrtn blank 
+0x782f 026901 ifetch 8 ,contr 
+0x7830 026902 rtn 
+:      026906 bn_eq:
+0x7831 026907 force 6 ,loopcnt 
+:      026908 bn_eq_0:
+0x7832 026909 ifetch 4 ,rega 
+0x7833 026910 iforce temp 
+0x7834 026911 ifetch 4 ,regb 
+0x7835 026912 isub temp ,null 
+0x7836 026913 nrtn zero 
+0x7837 026914 increase 4 ,rega 
+0x7838 026915 increase 4 ,regb 
+0x7839 026916 loop bn_eq_0 
+0x783a 026917 rtn 
+:      026920 bn_bigeq:
+0x783b 026921 force 6 ,loopcnt 
+0x783c 026922 increase 20 ,rega 
+0x783d 026923 increase 20 ,regb 
+:      026924 bn_bigeq_0:
+0x783e 026925 ifetch 4 ,regb 
+0x783f 026926 iforce temp 
+0x7840 026927 ifetch 4 ,rega 
+0x7841 026928 isub temp ,pdata 
+0x7842 026929 nrtn positive 
+0x7843 026930 nrtn blank 
+0x7844 026931 increase -4 ,rega 
+0x7845 026932 increase -4 ,regb 
+0x7846 026933 loop bn_bigeq_0 
+0x7847 026934 rtn 
+:      026936 bn_add:
+0x7848 026937 force 6 ,loopcnt 
+0x7849 026938 force 0 ,regc 
+:      026939 bn_add_0:
+0x784a 026940 ifetch 4 ,rega 
+0x784b 026941 iforce temp 
+0x784c 026942 ifetch 4 ,regb 
+0x784d 026943 iadd temp ,pdata 
+0x784e 026944 iadd regc ,pdata 
+0x784f 026945 istore 4 ,contw 
+0x7850 026946 isolate1 32 ,pdata 
+0x7851 026947 setflag true ,0 ,regc 
+0x7852 026948 increase 4 ,rega 
+0x7853 026949 increase 4 ,regb 
+0x7854 026950 loop bn_add_0 
+0x7855 026951 rtn 
+:      026953 bn_sub:
+0x7856 026954 force 6 ,loopcnt 
+0x7857 026955 force 0 ,regc 
+:      026956 bn_sub_0:
+0x7858 026957 ifetch 4 ,regb 
+0x7859 026958 iforce temp 
+0x785a 026959 ifetch 4 ,rega 
+0x785b 026960 isub temp ,pdata 
+0x785c 026961 isub regc ,pdata 
+0x785d 026962 istore 4 ,contw 
+0x785e 026963 isolate1 32 ,pdata 
+0x785f 026964 setflag true ,0 ,regc 
+0x7860 026965 increase 4 ,rega 
+0x7861 026966 increase 4 ,regb 
+0x7862 026967 loop bn_sub_0 
+0x7863 026968 rtn 
+:      026970 bn_rshift6:
+0x7864 026971 force 6 ,loopcnt 
+0x7865 026972 increase 20 ,rega 
+:      026973 bn_rshift:
+0x7866 026974 force 0 ,regc 
+:      026975 bn_rshift_0:
+0x7867 026976 ifetch 4 ,rega 
+0x7868 026977 isolate1 0 ,pdata 
+0x7869 026978 setflag true ,1 ,regc 
+0x786a 026979 rshift pdata ,pdata 
+0x786b 026980 isolate1 0 ,regc 
+0x786c 026981 setflag true ,31 ,pdata 
+0x786d 026982 istore 4 ,rega 
+0x786e 026983 increase -4 ,rega 
+0x786f 026984 rshift regc ,regc 
+0x7870 026985 loop bn_rshift_0 
+0x7871 026986 rtn 
+:      026988 bn_lshift:
+0x7872 026989 force 6 ,loopcnt 
+0x7873 026990 force 0 ,regc 
+:      026991 bn_lshift_0:
+0x7874 026992 ifetch 4 ,rega 
+0x7875 026993 isolate1 31 ,pdata 
+0x7876 026994 setflag true ,1 ,regc 
+0x7877 026995 lshift pdata ,pdata 
+0x7878 026996 isolate1 0 ,regc 
+0x7879 026997 setflag true ,0 ,pdata 
+0x787a 026998 istore 4 ,rega 
+0x787b 026999 increase 4 ,rega 
+0x787c 027000 rshift regc ,regc 
+0x787d 027001 loop bn_lshift_0 
+0x787e 027002 rtn 
+:      027004 bn_lshiftmod:
+0x787f 027005 call bn_lshift 
+:      027006 bn_lshiftmod_ismod:
+0x7880 027007 isolate1 0 ,regc 
+0x7881 027008 branch bn_lshiftmod_0 ,true 
+0x7882 027009 arg mem_p ,regb 
+0x7883 027010 copy rega ,regc 
+0x7884 027011 increase -24 ,rega 
+0x7885 027012 call bn_bigeq 
+0x7886 027013 nrtn positive 
+0x7887 027014 copy regc ,rega 
+:      027015 bn_lshiftmod_0:
+0x7888 027016 increase -24 ,rega 
+0x7889 027017 arg mem_p ,regb 
+0x788a 027018 copy rega ,contw 
+0x788b 027019 branch bn_sub 
+:      027022 bn_addmod:
+0x788c 027023 call bn_add 
+0x788d 027024 copy contw ,rega 
+0x788e 027025 branch bn_lshiftmod_ismod 
+:      027027 bn_submod:
+0x788f 027028 call bn_sub 
+0x7890 027029 isolate0 0 ,regc 
+0x7891 027030 rtn true 
+0x7892 027031 arg mem_p ,regb 
+0x7893 027032 add contw ,-24 ,rega 
+0x7894 027033 copy rega ,contw 
+0x7895 027034 branch bn_add 
+:      027037 bn_p192mod:
+0x7896 027038 copy contw ,timeup 
+0x7897 027039 copy rega ,alarm 
+0x7898 027040 arg mem_tmp2 ,regb 
+0x7899 027041 copy regb ,contw 
+0x789a 027042 add rega ,24 ,contr 
+0x789b 027043 ifetch 8 ,contr 
+0x789c 027044 istore 8 ,contw 
+0x789d 027045 istore 8 ,contw 
+0x789e 027046 force 0 ,pdata 
+0x789f 027047 istore 8 ,contw 
+0x78a0 027048 copy timeup ,contw 
+0x78a1 027049 call bn_addmod 
+0x78a2 027050 arg mem_tmp2 ,regb 
+0x78a3 027051 copy regb ,contw 
+0x78a4 027052 force 0 ,pdata 
+0x78a5 027053 istore 8 ,contw 
+0x78a6 027054 add alarm ,32 ,contr 
+0x78a7 027055 ifetch 8 ,contr 
+0x78a8 027056 istore 8 ,contw 
+0x78a9 027057 istore 8 ,contw 
+0x78aa 027058 copy timeup ,rega 
+0x78ab 027059 copy rega ,contw 
+0x78ac 027060 call bn_addmod 
+0x78ad 027061 arg mem_tmp2 ,regb 
+0x78ae 027062 copy regb ,contw 
+0x78af 027063 add alarm ,40 ,contr 
+0x78b0 027064 ifetch 8 ,contr 
+0x78b1 027065 istore 8 ,contw 
+0x78b2 027066 istore 8 ,contw 
+0x78b3 027067 istore 8 ,contw 
+0x78b4 027068 copy timeup ,rega 
+0x78b5 027069 copy rega ,contw 
+0x78b6 027070 branch bn_addmod 
+:      027073 bn_load:
+0x78b7 027074 force 6 ,loopcnt 
+:      027075 bn_load_0:
+0x78b8 027076 ifetch 4 ,contr 
+0x78b9 027077 iforce regext 
+0x78ba 027078 increase 1 ,regext_index 
+0x78bb 027079 loop bn_load_0 
+0x78bc 027080 rtn 
+:      027084 bn_mulmod:
+0x78bd 027085 copy contw ,timeup 
+0x78be 027086 arg mem_tmp1 ,contw 
+0x78bf 027087 call bn_zero 
+0x78c0 027088 arg mem_tmp1 ,contw 
+0x78c1 027089 copy rega ,contr 
+0x78c2 027090 force 0 ,regext_index 
+0x78c3 027091 call bn_load 
+0x78c4 027092 copy regb ,contr 
+0x78c5 027093 call bn_load 
+0x78c6 027094 force 0 ,regb 
+:      027095 bn_mulmod_1:
+0x78c7 027096 force 0 ,temp 
+0x78c8 027097 force 6 ,regc 
+:      027098 bn_mulmod_0:
+0x78c9 027099 ifetch 4 ,contw 
+0x78ca 027100 iforce rega 
+0x78cb 027101 copy regb ,regext_index 
+0x78cc 027102 deposit regext 
+0x78cd 027103 copy regc ,regext_index 
+0x78ce 027104 imul32 regext ,pdata 
+0x78cf 027105 iadd rega ,pdata 
+0x78d0 027106 iadd temp ,pdata 
+0x78d1 027107 istore 4 ,contw 
+0x78d2 027108 rshift32 pdata ,temp 
+0x78d3 027109 increase 1 ,regc 
+0x78d4 027110 compare 12 ,regc ,0xff 
+0x78d5 027111 nbranch bn_mulmod_0 ,true 
+0x78d6 027112 deposit temp 
+0x78d7 027113 istore 4 ,contw 
+0x78d8 027114 increase -24 ,contw 
+0x78d9 027115 increase 1 ,regb 
+0x78da 027116 compare 6 ,regb ,0xff 
+0x78db 027117 nbranch bn_mulmod_1 ,true 
+0x78dc 027118 arg mem_tmp1 ,rega 
+0x78dd 027119 copy timeup ,contw 
+0x78de 027120 branch bn_p192mod 
+:      027123 bn_sqrmod:
+0x78df 027124 copy rega ,regb 
+0x78e0 027125 branch bn_mulmod 
+:      027127 bn_rshifteven:
+0x78e1 027128 copy rega ,alarm 
+:      027129 bn_rshifteven_1:
+0x78e2 027130 copy alarm ,rega 
+0x78e3 027131 ifetch 1 ,rega 
+0x78e4 027132 isolate1 0 ,pdata 
+0x78e5 027133 rtn true 
+0x78e6 027134 call bn_rshift6 
+0x78e7 027135 ifetch 1 ,regb 
+0x78e8 027136 isolate0 0 ,pdata 
+0x78e9 027137 branch bn_rshifteven_0 ,true 
+0x78ea 027138 arg mem_p ,rega 
+0x78eb 027139 copy regb ,contw 
+0x78ec 027140 call bn_add 
+0x78ed 027141 ifetch 1 ,regb 
+0x78ee 027142 iadd regc ,pdata 
+0x78ef 027143 istore 1 ,regb 
+0x78f0 027144 increase -24 ,regb 
+:      027145 bn_rshifteven_0:
+0x78f1 027146 add regb ,24 ,rega 
+0x78f2 027147 force 7 ,loopcnt 
+0x78f3 027148 call bn_rshift 
+0x78f4 027149 branch bn_rshifteven_1 
+:      027152 bn_invmod:
+0x78f5 027153 copy contw ,timeup 
+0x78f6 027154 arg mem_tmp0 ,contw 
+0x78f7 027155 call bn_zero 
+0x78f8 027156 force 0 ,pdata 
+0x78f9 027157 store 4 ,mem_tmp5 
+0x78fa 027158 store 4 ,mem_t2 
+0x78fb 027159 jam 1 ,mem_tmp0 
+0x78fc 027160 arg mem_tmp1 ,contw 
+0x78fd 027161 call bn_zero 
+0x78fe 027162 arg mem_p ,contr 
+0x78ff 027163 arg mem_tmp2 ,contw 
+0x7900 027164 call memcpy24 
+0x7901 027165 copy rega ,contr 
+0x7902 027166 arg mem_tmp3 ,contw 
+0x7903 027167 call memcpy24 
+:      027168 bn_invmod_2:
+0x7904 027169 arg mem_tmp3 ,contr 
+0x7905 027170 call bn_eq_zero 
+0x7906 027171 branch bn_invmod_0 ,blank 
+0x7907 027172 arg mem_tmp3 ,rega 
+0x7908 027173 arg mem_tmp0 ,regb 
+0x7909 027174 call bn_rshifteven 
+0x790a 027176 arg mem_tmp2 ,rega 
+0x790b 027177 arg mem_tmp1 ,regb 
+0x790c 027178 call bn_rshifteven 
+0x790d 027179 arg mem_tmp3 ,rega 
+0x790e 027180 arg mem_tmp2 ,regb 
+0x790f 027181 call bn_bigeq 
+0x7910 027182 branch bn_invmod_1 ,positive 
+0x7911 027183 arg mem_tmp2 ,rega 
+0x7912 027184 arg mem_tmp3 ,regb 
+0x7913 027185 copy rega ,contw 
+0x7914 027186 call bn_sub 
+0x7915 027187 arg mem_tmp0 ,rega 
+0x7916 027188 arg mem_tmp1 ,regb 
+0x7917 027189 copy regb ,contw 
+0x7918 027190 call bn_add 
+0x7919 027191 ifetch 1 ,rega 
+0x791a 027192 iadd regc ,regc 
+0x791b 027193 ifetch 1 ,regb 
+0x791c 027194 iadd regc ,pdata 
+0x791d 027195 istore 1 ,regb 
+0x791e 027196 branch bn_invmod_2 
+:      027197 bn_invmod_1:
+0x791f 027198 arg mem_tmp3 ,rega 
+0x7920 027199 arg mem_tmp2 ,regb 
+0x7921 027200 copy rega ,contw 
+0x7922 027201 call bn_sub 
+0x7923 027202 arg mem_tmp1 ,rega 
+0x7924 027203 arg mem_tmp0 ,regb 
+0x7925 027204 copy regb ,contw 
+0x7926 027205 call bn_add 
+0x7927 027206 ifetch 1 ,rega 
+0x7928 027207 iadd regc ,regc 
+0x7929 027208 ifetch 1 ,regb 
+0x792a 027209 iadd regc ,pdata 
+0x792b 027210 istore 1 ,regb 
+0x792c 027211 branch bn_invmod_2 
+:      027212 bn_invmod_0:
+0x792d 027213 arg mem_tmp0 ,contw 
+0x792e 027214 call bn_zero 
+0x792f 027215 fetch 1 ,mem_tmp5 
+0x7930 027216 store 1 ,mem_tmp0 
+0x7931 027217 store 1 ,mem_tmp0a 
+0x7932 027218 arg mem_tmp0 ,rega 
+0x7933 027219 arg mem_tmp1 ,regb 
+0x7934 027220 copy regb ,contw 
+0x7935 027221 call bn_addmod 
+0x7936 027222 arg mem_p ,rega 
+0x7937 027223 arg mem_tmp1 ,regb 
+0x7938 027224 copy timeup ,contw 
+0x7939 027225 branch bn_submod 
+:      027230 ecdbl:
+0x793a 027231 arg mem_cz ,rega 
+0x793b 027232 arg mem_t2 ,contw 
+0x793c 027233 call bn_sqrmod 
+0x793d 027234 arg mem_t2 ,rega 
+0x793e 027235 arg mem_t3 ,contw 
+0x793f 027236 call bn_sqrmod 
+0x7940 027237 arg mem_a ,rega 
+0x7941 027238 arg mem_t3 ,regb 
+0x7942 027239 arg mem_t3 ,contw 
+0x7943 027240 call bn_mulmod 
+0x7944 027241 arg mem_cx ,rega 
+0x7945 027242 arg mem_t2 ,contw 
+0x7946 027243 call bn_sqrmod 
+0x7947 027244 arg mem_t2 ,contr 
+0x7948 027245 arg mem_t1 ,contw 
+0x7949 027246 call memcpy24 
+0x794a 027247 arg mem_t1 ,rega 
+0x794b 027248 call bn_lshiftmod 
+0x794c 027249 arg mem_t2 ,rega 
+0x794d 027250 arg mem_t1 ,regb 
+0x794e 027251 arg mem_t2 ,contw 
+0x794f 027252 call bn_addmod 
+0x7950 027253 arg mem_t2 ,rega 
+0x7951 027254 arg mem_t3 ,regb 
+0x7952 027255 arg mem_t2 ,contw 
+0x7953 027256 call bn_addmod 
+0x7954 027257 arg mem_cx ,contr 
+0x7955 027258 arg mem_t1 ,contw 
+0x7956 027259 call memcpy24 
+0x7957 027260 arg mem_cy ,rega 
+0x7958 027261 arg mem_t3 ,contw 
+0x7959 027262 call bn_sqrmod 
+0x795a 027263 arg mem_t1 ,rega 
+0x795b 027264 call bn_lshiftmod 
+0x795c 027265 arg mem_t1 ,rega 
+0x795d 027266 call bn_lshiftmod 
+0x795e 027267 arg mem_t1 ,rega 
+0x795f 027268 arg mem_t3 ,regb 
+0x7960 027269 arg mem_t1 ,contw 
+0x7961 027270 call bn_mulmod 
+0x7962 027271 arg mem_t3 ,rega 
+0x7963 027272 arg mem_t0 ,contw 
+0x7964 027273 call bn_sqrmod 
+0x7965 027274 arg mem_t0 ,rega 
+0x7966 027275 call bn_lshiftmod 
+0x7967 027276 arg mem_t0 ,rega 
+0x7968 027277 call bn_lshiftmod 
+0x7969 027278 arg mem_t0 ,rega 
+0x796a 027279 call bn_lshiftmod 
+0x796b 027280 arg mem_cy ,contr 
+0x796c 027281 arg mem_t3 ,contw 
+0x796d 027282 call memcpy24 
+0x796e 027283 arg mem_t3 ,rega 
+0x796f 027284 call bn_lshiftmod 
+0x7970 027285 arg mem_t3 ,rega 
+0x7971 027286 arg mem_cz ,regb 
+0x7972 027287 arg mem_cz ,contw 
+0x7973 027288 call bn_mulmod 
+0x7974 027289 arg mem_t2 ,rega 
+0x7975 027290 arg mem_t3 ,contw 
+0x7976 027291 call bn_sqrmod 
+0x7977 027292 arg mem_t3 ,rega 
+0x7978 027293 arg mem_t1 ,regb 
+0x7979 027294 arg mem_t3 ,contw 
+0x797a 027295 call bn_submod 
+0x797b 027296 arg mem_t3 ,rega 
+0x797c 027297 arg mem_t1 ,regb 
+0x797d 027298 arg mem_cx ,contw 
+0x797e 027299 call bn_submod 
+0x797f 027300 arg mem_t1 ,rega 
+0x7980 027301 arg mem_cx ,regb 
+0x7981 027302 arg mem_t3 ,contw 
+0x7982 027303 call bn_submod 
+0x7983 027304 arg mem_t3 ,rega 
+0x7984 027305 arg mem_t2 ,regb 
+0x7985 027306 arg mem_t3 ,contw 
+0x7986 027307 call bn_mulmod 
+0x7987 027308 arg mem_t3 ,rega 
+0x7988 027309 arg mem_t0 ,regb 
+0x7989 027310 arg mem_cy ,contw 
+0x798a 027311 branch bn_submod 
+:      027315 ecadd:
+0x798b 027316 arg mem_az ,rega 
+0x798c 027317 arg mem_t7 ,contw 
+0x798d 027318 call bn_sqrmod 
+0x798e 027319 arg mem_cx ,rega 
+0x798f 027320 arg mem_t7 ,regb 
+0x7990 027321 arg mem_t0 ,contw 
+0x7991 027322 call bn_mulmod 
+0x7992 027323 arg mem_az ,rega 
+0x7993 027324 arg mem_t7 ,regb 
+0x7994 027325 arg mem_t7 ,contw 
+0x7995 027326 call bn_mulmod 
+0x7996 027327 arg mem_cy ,rega 
+0x7997 027328 arg mem_t7 ,regb 
+0x7998 027329 arg mem_t1 ,contw 
+0x7999 027330 call bn_mulmod 
+0x799a 027331 arg mem_cz ,rega 
+0x799b 027332 arg mem_t7 ,contw 
+0x799c 027333 call bn_sqrmod 
+0x799d 027334 arg mem_ax ,rega 
+0x799e 027335 arg mem_t7 ,regb 
+0x799f 027336 arg mem_t2 ,contw 
+0x79a0 027337 call bn_mulmod 
+0x79a1 027338 arg mem_cz ,rega 
+0x79a2 027339 arg mem_t7 ,regb 
+0x79a3 027340 arg mem_t7 ,contw 
+0x79a4 027341 call bn_mulmod 
+0x79a5 027342 arg mem_ay ,rega 
+0x79a6 027343 arg mem_t7 ,regb 
+0x79a7 027344 arg mem_t3 ,contw 
+0x79a8 027345 call bn_mulmod 
+0x79a9 027346 arg mem_t0 ,rega 
+0x79aa 027347 arg mem_t2 ,regb 
+0x79ab 027348 arg mem_t7 ,contw 
+0x79ac 027349 call bn_submod 
+0x79ad 027350 arg mem_t0 ,rega 
+0x79ae 027351 arg mem_t2 ,regb 
+0x79af 027352 arg mem_t0 ,contw 
+0x79b0 027353 call bn_addmod 
+0x79b1 027354 arg mem_t1 ,rega 
+0x79b2 027355 arg mem_t3 ,regb 
+0x79b3 027356 arg mem_t2 ,contw 
+0x79b4 027357 call bn_submod 
+0x79b5 027358 arg mem_t1 ,rega 
+0x79b6 027359 arg mem_t3 ,regb 
+0x79b7 027360 arg mem_t1 ,contw 
+0x79b8 027361 call bn_addmod 
+0x79b9 027362 arg mem_t1 ,rega 
+0x79ba 027363 arg mem_t7 ,regb 
+0x79bb 027364 arg mem_t1 ,contw 
+0x79bc 027365 call bn_mulmod 
+0x79bd 027366 arg mem_cz ,rega 
+0x79be 027367 arg mem_az ,regb 
+0x79bf 027368 arg mem_t3 ,contw 
+0x79c0 027369 call bn_mulmod 
+0x79c1 027370 arg mem_t3 ,rega 
+0x79c2 027371 arg mem_t7 ,regb 
+0x79c3 027372 arg mem_cz ,contw 
+0x79c4 027373 call bn_mulmod 
+0x79c5 027374 arg mem_t7 ,rega 
+0x79c6 027375 arg mem_t7 ,contw 
+0x79c7 027376 call bn_sqrmod 
+0x79c8 027377 arg mem_t7 ,rega 
+0x79c9 027378 arg mem_t0 ,regb 
+0x79ca 027379 arg mem_t3 ,contw 
+0x79cb 027380 call bn_mulmod 
+0x79cc 027381 arg mem_t7 ,rega 
+0x79cd 027382 arg mem_t1 ,regb 
+0x79ce 027383 arg mem_t1 ,contw 
+0x79cf 027384 call bn_mulmod 
+0x79d0 027385 arg mem_t2 ,rega 
+0x79d1 027386 arg mem_cx ,contw 
+0x79d2 027387 call bn_sqrmod 
+0x79d3 027388 arg mem_cx ,rega 
+0x79d4 027389 arg mem_t3 ,regb 
+0x79d5 027390 arg mem_cx ,contw 
+0x79d6 027391 call bn_submod 
+0x79d7 027392 arg mem_cx ,contr 
+0x79d8 027393 arg mem_t7 ,contw 
+0x79d9 027394 call memcpy24 
+0x79da 027395 arg mem_t7 ,rega 
+0x79db 027396 call bn_lshiftmod 
+0x79dc 027397 arg mem_t3 ,rega 
+0x79dd 027398 arg mem_t7 ,regb 
+0x79de 027399 arg mem_t3 ,contw 
+0x79df 027400 call bn_submod 
+0x79e0 027401 arg mem_t3 ,rega 
+0x79e1 027402 arg mem_t2 ,regb 
+0x79e2 027403 arg mem_t2 ,contw 
+0x79e3 027404 call bn_mulmod 
+0x79e4 027405 arg mem_t2 ,rega 
+0x79e5 027406 arg mem_t1 ,regb 
+0x79e6 027407 arg mem_cy ,contw 
+0x79e7 027408 call bn_submod 
+0x79e8 027409 arg mem_cy ,rega 
+0x79e9 027410 arg mem_p ,regb 
+0x79ea 027411 arg mem_cy ,contw 
+0x79eb 027412 force 0 ,regc 
+0x79ec 027413 fetch 1 ,mem_cy 
+0x79ed 027414 isolate1 0 ,pdata 
+0x79ee 027415 call bn_add ,true 
+0x79ef 027416 copy regc ,alarm 
+0x79f0 027417 arg mem_cy ,rega 
+0x79f1 027418 call bn_rshift6 
+0x79f2 027419 fetch 1 ,mem_cy5 
+0x79f3 027420 isolate1 0 ,alarm 
+0x79f4 027421 setflag true ,7 ,pdata 
+0x79f5 027422 store 1 ,mem_cy5 
+0x79f6 027423 rtn 
+:      027426 eckp:
+0x79f7 027427 jam 192 ,mem_ec_loopc 
+0x79f8 027428 jam 1 ,mem_ec_infinite 
+:      027429 eckp_0:
+0x79f9 027430 fetch 1 ,mem_ec_loopc 
+0x79fa 027431 increase -1 ,pdata 
+0x79fb 027432 nrtn positive 
+0x79fc 027433 store 1 ,mem_ec_loopc 
+0x79fd 027434 fetch 1 ,mem_ec_infinite 
+0x79fe 027435 call ecdbl ,blank 
+0x79ff 027436 fetch 1 ,mem_ec_loopc 
+0x7a00 027437 arg mem_k ,contr 
+0x7a01 027438 call bn_testbit 
+0x7a02 027439 branch eckp_0 ,true 
+0x7a03 027440 fetch 1 ,mem_ec_infinite 
+0x7a04 027441 nbranch eckp_1 ,blank 
+0x7a05 027442 call ecadd 
+0x7a06 027443 branch eckp_0 
+:      027444 eckp_1:
+0x7a07 027445 jam 0 ,mem_ec_infinite 
+0x7a08 027446 arg mem_ax ,contr 
+0x7a09 027447 arg mem_cx ,contw 
+0x7a0a 027448 call ec_copy 
+0x7a0b 027449 branch eckp_0 
+:      027452 ecunmapz:
+0x7a0c 027453 arg mem_cz ,rega 
+0x7a0d 027454 arg mem_t3 ,contw 
+0x7a0e 027455 call bn_invmod 
+0x7a0f 027456 arg mem_t3 ,rega 
+0x7a10 027457 arg mem_t1 ,contw 
+0x7a11 027458 call bn_sqrmod 
+0x7a12 027459 arg mem_cx ,rega 
+0x7a13 027460 arg mem_t1 ,regb 
+0x7a14 027461 arg mem_bx ,contw 
+0x7a15 027462 call bn_mulmod 
+0x7a16 027463 arg mem_t3 ,rega 
+0x7a17 027464 arg mem_t1 ,regb 
+0x7a18 027465 arg mem_t2 ,contw 
+0x7a19 027466 call bn_mulmod 
+0x7a1a 027467 arg mem_cy ,rega 
+0x7a1b 027468 arg mem_t2 ,regb 
+0x7a1c 027469 arg mem_by ,contw 
+0x7a1d 027470 branch bn_mulmod 
+:      027473 sha_endian_swap:
+0x7a1e 027474 force 16 ,loopcnt 
+:      027475 sha_endian_swap2:
+0x7a1f 027476 ifetch 4 ,contr 
+0x7a20 027477 force 4 ,rega 
+0x7a21 027478 increase 3 ,contw 
+:      027479 sha_endian_loop:
+0x7a22 027480 istore 1 ,contw 
+0x7a23 027481 rshift8 pdata ,pdata 
+0x7a24 027482 increase -2 ,contw 
+0x7a25 027483 increase -1 ,rega 
+0x7a26 027484 nbranch sha_endian_loop ,zero 
+0x7a27 027485 increase 5 ,contw 
+0x7a28 027486 loop sha_endian_swap2 
+0x7a29 027487 rtn 
+:      027490 sha_getw:
+0x7a2a 027491 lshift2 queue ,pdata 
+0x7a2b 027492 iadd timeup ,contr 
+0x7a2c 027493 ifetch 4 ,contr 
+0x7a2d 027494 rtn 
+:      027496 sha_r:
+0x7a2e 027497 force 16 ,alarm 
+0x7a2f 027498 arg memdat ,timeup 
+:      027499 sha_r_loop:
+0x7a30 027500 add alarm ,-7 ,queue 
+0x7a31 027501 call sha_getw 
+0x7a32 027502 iforce temp 
+0x7a33 027503 add alarm ,-16 ,queue 
+0x7a34 027504 call sha_getw 
+0x7a35 027505 iadd temp ,temp 
+0x7a36 027506 add alarm ,-2 ,queue 
+0x7a37 027507 call sha_getw 
+0x7a38 027508 shasx pdata ,1 ,pdata 
+0x7a39 027509 iadd temp ,temp 
+0x7a3a 027510 add alarm ,-15 ,queue 
+0x7a3b 027511 call sha_getw 
+0x7a3c 027512 shasx pdata ,0 ,pdata 
+0x7a3d 027513 iadd temp ,temp 
+0x7a3e 027514 lshift2 alarm ,pdata 
+0x7a3f 027515 iadd timeup ,contw 
+0x7a40 027516 istoret 4 ,contw 
+0x7a41 027517 increase 1 ,alarm 
+0x7a42 027518 compare 64 ,alarm ,0xff 
+0x7a43 027519 nbranch sha_r_loop ,true 
+0x7a44 027520 rtn 
+:      027523 sha_init:
+0x7a45 027524 arg memh0 ,contr 
+0x7a46 027525 force 7 ,regext_index 
+:      027526 sha_init_0:
+0x7a47 027527 ifetch 4 ,contr 
+0x7a48 027528 iforce regext 
+0x7a49 027529 increase -1 ,regext_index 
+0x7a4a 027530 branch sha_init_0 ,positive 
+0x7a4b 027531 rtn 
+:      027533 sha:
+0x7a4c 027534 set1 mark_ext_patch ,mark 
+0x7a4d 027535 bpatch patch3f_0 ,mem_patch3f 
+0x7a4e 027536 call sha_r 
+0x7a4f 027537 arg memahbak ,contw 
+0x7a50 027538 force 0 ,regext_index 
+:      027539 sha_0:
+0x7a51 027540 deposit regext 
+0x7a52 027541 istore 4 ,contw 
+0x7a53 027542 increase 1 ,regext_index 
+0x7a54 027543 compare 8 ,regext_index ,0xff 
+0x7a55 027544 nbranch sha_0 ,true 
+0x7a56 027545 call enable_authrom 
+0x7a57 027546 arg memk ,timeup 
+0x7a58 027547 arg memdat ,alarm 
+0x7a59 027548 force 64 ,loopcnt 
+:      027549 sha_loop:
+0x7a5a 027550 ifetcht 4 ,alarm 
+0x7a5b 027551 ifetch 4 ,timeup 
+0x7a5c 027552 increase 4 ,timeup 
+0x7a5d 027553 increase 4 ,alarm 
+0x7a5e 027554 iadd temp ,pdata 
+0x7a5f 027555 force 7 ,regext_index 
+0x7a60 027556 iadd regext ,temp 
+0x7a61 027557 force 4 ,regext_index 
+0x7a62 027558 shasx regext ,3 ,pdata 
+0x7a63 027559 iadd temp ,temp 
+0x7a64 027560 force 5 ,regext_index 
+0x7a65 027561 deposit regext 
+0x7a66 027562 force 6 ,regext_index 
+0x7a67 027563 ixor regext ,pdata 
+0x7a68 027564 force 4 ,regext_index 
+0x7a69 027565 iand regext ,pdata 
+0x7a6a 027566 force 6 ,regext_index 
+0x7a6b 027567 ixor regext ,pdata 
+0x7a6c 027568 iadd temp ,temp 
+0x7a6d 027569 force 7 ,regext_index 
+0x7a6e 027570 copy temp ,regext 
+0x7a6f 027571 force 3 ,regext_index 
+0x7a70 027572 deposit regext 
+0x7a71 027573 iadd temp ,regext 
+0x7a72 027574 force 0 ,regext_index 
+0x7a73 027575 deposit regext 
+0x7a74 027576 force 1 ,regext_index 
+0x7a75 027577 iand regext ,temp 
+0x7a76 027578 ior regext ,pdata 
+0x7a77 027579 force 2 ,regext_index 
+0x7a78 027580 iand regext ,pdata 
+0x7a79 027581 ior temp ,temp 
+0x7a7a 027582 force 0 ,regext_index 
+0x7a7b 027583 shasx regext ,2 ,pdata 
+0x7a7c 027584 iadd temp ,pdata 
+0x7a7d 027585 force 7 ,regext_index 
+0x7a7e 027586 iadd regext ,regext 
+0x7a7f 027587 regexrot 
+0x7a80 027588 loop sha_loop 
+0x7a81 027589 arg memahbak ,contr 
+0x7a82 027590 force 0 ,regext_index 
+:      027591 sha_1:
+0x7a83 027592 ifetch 4 ,contr 
+0x7a84 027593 iadd regext ,regext 
+0x7a85 027594 increase 1 ,regext_index 
+0x7a86 027595 compare 8 ,regext_index ,0xff 
+0x7a87 027596 nbranch sha_1 ,true 
+0x7a88 027597 branch disable_authrom 
+:      027600 sha_result:
+0x7a89 027601 arg memresult ,contw 
+0x7a8a 027602 force 7 ,regext_index 
+:      027603 sha_regext_save:
+0x7a8b 027604 deposit regext 
+0x7a8c 027605 istore 4 ,contw 
+0x7a8d 027606 increase -1 ,regext_index 
+0x7a8e 027607 branch sha_regext_save ,positive 
+0x7a8f 027608 rtn 
+:      027610 pad_xor:
+0x7a90 027612 arg memdat ,contw 
+0x7a91 027613 increase -4 ,contr 
+0x7a92 027614 sub loopcnt ,16 ,rega 
+:      027615 pad_xor_0:
+0x7a93 027616 ifetch 4 ,contr 
+0x7a94 027617 ixor temp ,pdata 
+0x7a95 027618 istore 4 ,contw 
+0x7a96 027619 increase -8 ,contr 
+0x7a97 027620 loop pad_xor_0 
+0x7a98 027621 copy rega ,loopcnt 
+0x7a99 027622 deposit temp 
+:      027623 pad_xor_1:
+0x7a9a 027624 istore 4 ,contw 
+0x7a9b 027625 loop pad_xor_1 
+0x7a9c 027626 rtn 
+:      027628 g_noninit:
+0x7a9d 027629 arg mem_sp_pubkey_remote_x_end ,contr 
+0x7a9e 027630 arg memdat ,contw 
+0x7a9f 027631 force 6 ,loopcnt 
+0x7aa0 027632 call memcpy_dword_swap 
+0x7aa1 027633 arg mem_sp_pubkey_local_x_end ,contr 
+0x7aa2 027634 force 6 ,loopcnt 
+0x7aa3 027635 call memcpy_dword_swap 
+0x7aa4 027636 arg mem_sp_random_remote_end ,contr 
+0x7aa5 027637 call memcpy_dword_swap4 
+0x7aa6 027638 call sha_init 
+0x7aa7 027639 call sha 
+0x7aa8 027640 arg mem_sp_random_local_end ,contr 
+0x7aa9 027641 arg memdat ,contw 
+0x7aaa 027642 branch g_common 
+:      027644 g_init:
+0x7aab 027645 arg mem_sp_pubkey_local_x_end ,contr 
+0x7aac 027646 arg memdat ,contw 
+0x7aad 027647 force 6 ,loopcnt 
+0x7aae 027648 call memcpy_dword_swap 
+0x7aaf 027649 arg mem_sp_pubkey_remote_x_end ,contr 
+0x7ab0 027650 force 6 ,loopcnt 
+0x7ab1 027651 call memcpy_dword_swap 
+0x7ab2 027652 arg mem_sp_random_local_end ,contr 
+0x7ab3 027653 call memcpy_dword_swap4 
+0x7ab4 027654 call sha_init 
+0x7ab5 027655 call sha 
+0x7ab6 027656 arg mem_sp_random_remote_end ,contr 
+0x7ab7 027657 arg memdat ,contw 
+:      027658 g_common:
+0x7ab8 027659 call memcpy_dword_swap4 
+0x7ab9 027660 setarg 0x800000 
+0x7aba 027661 lshift8 pdata ,pdata 
+0x7abb 027662 istore 4 ,contw 
+0x7abc 027663 force 5 ,loopcnt 
+0x7abd 027664 call memset0 
+0x7abe 027665 setarg 640 
+0x7abf 027666 istore 4 ,contw 
+0x7ac0 027667 call sha 
+0x7ac1 027669 fetch 4 ,memresult 
+0x7ac2 027671 arg 1000 ,rega 
+0x7ac3 027672 idiv rega 
+0x7ac4 027673 call wait_div_end 
+0x7ac5 027674 remainder pdata 
+0x7ac6 027675 store 4 ,mem_sp_gkey 
+0x7ac7 027676 quotient pdata 
+0x7ac8 027677 arg 1000 ,rega 
+0x7ac9 027678 idiv rega 
+0x7aca 027679 call wait_div_end 
+0x7acb 027680 remainder pdata 
+0x7acc 027681 arg 1000 ,rega 
+0x7acd 027682 imul32 rega ,pdata 
+0x7ace 027683 fetcht 4 ,mem_sp_gkey 
+0x7acf 027684 iadd temp ,pdata 
+0x7ad0 027685 store 4 ,mem_sp_gkey 
+0x7ad1 027686 rtn 
+:      027688 function_f1:
+0x7ad2 027689 setarg 0x363636 
+0x7ad3 027690 lshift8 pdata ,temp 
+0x7ad4 027691 or_into 0x36 ,temp 
+0x7ad5 027692 fetch 2 ,mem_sp_prarm_stack 
+0x7ad6 027693 copy pdata ,contr 
+0x7ad7 027694 force 4 ,loopcnt 
+0x7ad8 027695 call pad_xor 
+0x7ad9 027696 call sha_init 
+0x7ada 027697 call sha 
+0x7adb 027698 fetch 2 ,mem_sp_prarm_stack + 2 
+0x7adc 027699 copy pdata ,contr 
+0x7add 027700 arg memdat ,contw 
+0x7ade 027701 force 6 ,loopcnt 
+0x7adf 027702 call memcpy_dword_swap 
+0x7ae0 027703 fetch 2 ,mem_sp_prarm_stack + 4 
+0x7ae1 027704 copy pdata ,contr 
+0x7ae2 027705 force 6 ,loopcnt 
+0x7ae3 027706 call memcpy_dword_swap 
+0x7ae4 027707 setarg 0x800000 
+0x7ae5 027708 istore 3 ,contw 
+0x7ae6 027709 force 0 ,pdata 
+0x7ae7 027710 istore 1 ,contw 
+0x7ae8 027711 force 0 ,pdata 
+0x7ae9 027712 istore 8 ,contw 
+0x7aea 027713 setarg 0x0388 
+0x7aeb 027714 istore 4 ,contw 
+0x7aec 027715 call sha 
+0x7aed 027716 call sha_result 
+0x7aee 027717 arg memresult ,contr 
+0x7aef 027718 arg memahsave ,contw 
+0x7af0 027719 call memcpy32 
+0x7af1 027721 setarg 0x5c5c5c 
+0x7af2 027722 lshift8 pdata ,temp 
+0x7af3 027723 or_into 0x5c ,temp 
+0x7af4 027724 fetch 2 ,mem_sp_prarm_stack 
+0x7af5 027725 copy pdata ,contr 
+0x7af6 027726 force 4 ,loopcnt 
+0x7af7 027727 call pad_xor 
+0x7af8 027728 call sha_init 
+0x7af9 027729 call sha 
+0x7afa 027730 arg memahsave_end ,contr 
+0x7afb 027731 arg memdat ,contw 
+0x7afc 027732 force 8 ,loopcnt 
+0x7afd 027733 call memcpy_dword_swap 
+0x7afe 027734 setarg 0x800000 
+0x7aff 027735 lshift8 pdata ,pdata 
+0x7b00 027736 istore 4 ,contw 
+0x7b01 027737 call bn_zero 
+0x7b02 027738 setarg 0x0300 
+0x7b03 027739 istore 4 ,contw 
+0x7b04 027740 call sha 
+0x7b05 027741 branch sha_result 
+:      027744 function_f2:
+0x7b06 027745 setarg 0x363636 
+0x7b07 027746 lshift8 pdata ,temp 
+0x7b08 027747 or_into 0x36 ,temp 
+0x7b09 027748 arg mem_sp_dhkey_end ,contr 
+0x7b0a 027749 force 6 ,loopcnt 
+0x7b0b 027750 call pad_xor 
+0x7b0c 027751 call sha_init 
+0x7b0d 027752 call sha 
+0x7b0e 027753 fetch 2 ,mem_sp_prarm_stack + 12 
+0x7b0f 027754 copy pdata ,contr 
+0x7b10 027755 arg memdat ,contw 
+0x7b11 027756 call memcpy_dword_swap4 
+0x7b12 027757 fetch 2 ,mem_sp_prarm_stack + 14 
+0x7b13 027758 copy pdata ,contr 
+0x7b14 027759 call memcpy_dword_swap4 
+0x7b15 027761 setarg 0x62746c 
+0x7b16 027762 lshift8 pdata ,pdata 
+0x7b17 027763 or_into 0x6b ,pdata 
+0x7b18 027764 istore 4 ,contw 
+0x7b19 027765 arg mem_addr_value_end ,contr 
+0x7b1a 027766 force 3 ,loopcnt 
+0x7b1b 027767 call memcpy_dword_swap 
+0x7b1c 027769 setarg 0x800000 
+0x7b1d 027770 lshift8 pdata ,pdata 
+0x7b1e 027771 istore 4 ,contw 
+0x7b1f 027772 force 0 ,pdata 
+0x7b20 027773 istore 8 ,contw 
+0x7b21 027774 setarg 0x0380 
+0x7b22 027775 istore 4 ,contw 
+0x7b23 027776 call sha 
+0x7b24 027778 call sha_result 
+0x7b25 027779 arg memresult ,contr 
+0x7b26 027780 arg memahsave ,contw 
+0x7b27 027781 call memcpy32 
+0x7b28 027783 setarg 0x5c5c5c 
+0x7b29 027784 lshift8 pdata ,temp 
+0x7b2a 027785 or_into 0x5c ,temp 
+0x7b2b 027786 arg mem_sp_dhkey_end ,contr 
+0x7b2c 027787 force 6 ,loopcnt 
+0x7b2d 027788 call pad_xor 
+0x7b2e 027789 call sha_init 
+0x7b2f 027790 call sha 
+0x7b30 027791 arg memahsave_end ,contr 
+0x7b31 027792 arg memdat ,contw 
+0x7b32 027793 force 8 ,loopcnt 
+0x7b33 027794 call memcpy_dword_swap 
+0x7b34 027795 setarg 0x800000 
+0x7b35 027796 lshift8 pdata ,pdata 
+0x7b36 027797 istore 4 ,contw 
+0x7b37 027798 call bn_zero 
+0x7b38 027799 setarg 0x0300 
+0x7b39 027800 istore 4 ,contw 
+0x7b3a 027801 call sha 
+0x7b3b 027802 branch sha_result 
+:      027805 function_f3a:
+0x7b3c 027806 setarg 0x363636 
+0x7b3d 027807 lshift8 pdata ,temp 
+0x7b3e 027808 or_into 0x36 ,temp 
+0x7b3f 027809 arg mem_sp_dhkey_end ,contr 
+0x7b40 027810 force 6 ,loopcnt 
+0x7b41 027811 call pad_xor 
+0x7b42 027812 call sha_init 
+0x7b43 027813 call sha 
+0x7b44 027814 arg mem_sp_random_remote_end ,contr 
+0x7b45 027815 arg memdat ,contw 
+0x7b46 027816 call memcpy_dword_swap4 
+0x7b47 027817 arg mem_sp_random_local_end ,contr 
+0x7b48 027818 call memcpy_dword_swap4 
+0x7b49 027819 branch function_f3b_common 
+:      027821 function_f3b:
+0x7b4a 027822 setarg 0x363636 
+0x7b4b 027823 lshift8 pdata ,temp 
+0x7b4c 027824 or_into 0x36 ,temp 
+0x7b4d 027825 arg mem_sp_dhkey_end ,contr 
+0x7b4e 027826 force 6 ,loopcnt 
+0x7b4f 027827 call pad_xor 
+0x7b50 027828 call sha_init 
+0x7b51 027829 call sha 
+0x7b52 027831 arg mem_sp_random_local_end ,contr 
+0x7b53 027832 arg memdat ,contw 
+0x7b54 027833 call memcpy_dword_swap4 
+0x7b55 027834 arg mem_sp_random_remote_end ,contr 
+0x7b56 027835 call memcpy_dword_swap4 
+:      027836 function_f3b_common:
+0x7b57 027837 setarg 0x0 
+0x7b58 027838 istore 8 ,contw 
+0x7b59 027839 istore 8 ,contw 
+0x7b5a 027841 copy contw ,temp 
+0x7b5b 027842 jam 0x80 ,mem_addr_padding 
+0x7b5c 027843 copy temp ,contw 
+0x7b5d 027844 arg mem_addr_iocap_end ,contr 
+0x7b5e 027845 call memcpy_dword_swap4 
+0x7b5f 027847 call sha 
+0x7b60 027849 arg memdat ,contw 
+0x7b61 027850 force 7 ,loopcnt 
+0x7b62 027851 call memset0 
+0x7b63 027852 istore 4 ,contw 
+0x7b64 027853 setarg 0x03F8 
+0x7b65 027854 istore 4 ,contw 
+0x7b66 027855 call sha 
+0x7b67 027856 call sha_result 
+0x7b68 027858 arg memresult ,contr 
+0x7b69 027859 arg memahsave ,contw 
+0x7b6a 027860 call memcpy32 
+0x7b6b 027862 setarg 0x5c5c5c 
+0x7b6c 027863 lshift8 pdata ,temp 
+0x7b6d 027864 or_into 0x5c ,temp 
+0x7b6e 027865 arg mem_sp_dhkey_end ,contr 
+0x7b6f 027866 force 6 ,loopcnt 
+0x7b70 027867 call pad_xor 
+0x7b71 027868 call sha_init 
+0x7b72 027869 call sha 
+0x7b73 027870 arg memahsave_end ,contr 
+0x7b74 027871 arg memdat ,contw 
+0x7b75 027872 force 8 ,loopcnt 
+0x7b76 027873 call memcpy_dword_swap 
+0x7b77 027874 setarg 0x800000 
+0x7b78 027875 lshift8 pdata ,pdata 
+0x7b79 027876 istore 4 ,contw 
+0x7b7a 027877 call bn_zero 
+0x7b7b 027878 setarg 0x0300 
+0x7b7c 027879 istore 4 ,contw 
+0x7b7d 027880 call sha 
+0x7b7e 027881 branch sha_result 
+:      027888 eckp_calc_init:
+0x7b7f 027889 jam 192 ,mem_ec_loopc 
+:      027890 eckp_calc_init_1:
+0x7b80 027891 fetch 1 ,mem_ec_loopc 
+0x7b81 027892 rtn blank 
+0x7b82 027893 increase -1 ,pdata 
+0x7b83 027894 store 1 ,mem_ec_loopc 
+0x7b84 027895 arg mem_k ,contr 
+0x7b85 027896 call bn_testbit 
+0x7b86 027897 branch eckp_calc_init_1 ,true 
+0x7b87 027898 arg mem_ax ,contr 
+0x7b88 027899 arg mem_cx ,contw 
+0x7b89 027900 branch ec_copy 
+:      027902 eckp_calc:
+0x7b8a 027903 call ecdbl 
+0x7b8b 027904 fetch 1 ,mem_ec_loopc 
+0x7b8c 027905 increase -1 ,pdata 
+0x7b8d 027906 store 1 ,mem_ec_loopc 
+0x7b8e 027907 arg mem_k ,contr 
+0x7b8f 027908 call bn_testbit 
+0x7b90 027909 rtn true 
+0x7b91 027910 branch ecadd 
+:      027912 eckp_cp_1:
+0x7b92 027913 jam 0 ,mem_ec_infinite 
+0x7b93 027914 arg mem_ax ,contr 
+0x7b94 027915 arg mem_cx ,contw 
+0x7b95 027916 branch ec_copy 
+:      027918 memcpy_dword_swap4:
+0x7b96 027919 force 4 ,loopcnt 
+:      027920 memcpy_dword_swap:
+0x7b97 027921 increase -4 ,contr 
+:      027922 memcpy_dword_swap_loop:
+0x7b98 027923 ifetch 4 ,contr 
+0x7b99 027924 istore 4 ,contw 
+0x7b9a 027925 increase -8 ,contr 
+0x7b9b 027926 loop memcpy_dword_swap_loop 
+0x7b9c 027927 rtn 
+:      027930 ui_init:
+0x7b9d 027931 rtn wake 
+0x7b9e 027932 call ui_button_init 
+0x7b9f 027933 call ui_timer_init 
+0x7ba0 027934 branch ui_led_init 
+:      027936 ui_dispatch:
+0x7ba1 027937 fetch 1 ,mem_device_option 
+0x7ba2 027938 rtneq dvc_op_hci 
+0x7ba3 027939 call ui_led_blink_polling 
+0x7ba4 027941 branch ui_timer_check 
+:      027943 ui_button_init:
+0x7ba5 027944 fetch 1 ,mem_ui_button_gpio 
+0x7ba6 027945 rtneq ui_button_gpio_disable 
+0x7ba7 027946 iforce temp 
+0x7ba8 027947 call gpio_config_output 
+0x7ba9 027948 fetcht 1 ,mem_ui_button_gpio 
+0x7baa 027949 call gpio_out_inactive 
+0x7bab 027950 nop 100 
+0x7bac 027951 fetcht 1 ,mem_ui_button_gpio 
+0x7bad 027952 call gpio_config_input 
+0x7bae 027953 branch ui_button_polling 
+:      027955 ui_button_disable:
+0x7baf 027956 jam ui_button_gpio_disable ,mem_ui_button_gpio 
+0x7bb0 027957 rtn 
+:      027959 ui_button_polling:
+0x7bb1 027960 set1 mark_ext_patch ,mark 
+0x7bb2 027961 bpatch patch30_5 ,mem_patch30 
+0x7bb3 027962 fetch 1 ,mem_ui_button_gpio 
+0x7bb4 027963 rtneq ui_button_gpio_disable 
+0x7bb5 027964 copy pdata ,temp 
+0x7bb6 027965 call gpio_get_bit 
+0x7bb7 027966 nbranch ui_button_up ,true 
+:      027968 ui_button_down:
+0x7bb8 027969 call ui_button_check_long_press 
+0x7bb9 027970 fetch 2 ,mem_ui_state_map 
+0x7bba 027971 set1 ui_state_btn_down 
+0x7bbb 027972 store 2 ,mem_ui_state_map 
+0x7bbc 027973 fetch 1 ,mem_ui_button_last_state 
+0x7bbd 027974 rtneq ui_button_state_down 
+0x7bbe 027975 jam ui_button_state_down ,mem_ui_button_last_state 
+0x7bbf 027977 fetch 1 ,mem_ui_button_timeout 
+0x7bc0 027978 store 1 ,mem_ui_button_timer 
+0x7bc1 027979 call lpm_button_get_wake_lock 
+0x7bc2 027980 jam bt_evt_button_down ,mem_fifo_temp 
+0x7bc3 027981 branch ui_ipc_send_event 
+:      027982 ui_button_up:
+0x7bc4 027983 fetch 2 ,mem_ui_state_map 
+0x7bc5 027984 set0 ui_state_btn_down 
+0x7bc6 027985 store 2 ,mem_ui_state_map 
+0x7bc7 027986 fetch 1 ,mem_ui_button_last_state 
+0x7bc8 027987 rtneq ui_button_state_up 
+0x7bc9 027988 jam ui_button_state_up ,mem_ui_button_last_state 
+0x7bca 027990 jam 0 ,mem_ui_button_timer 
+0x7bcb 027991 call lpm_button_clean_wake_lock 
+0x7bcc 027992 jam bt_evt_button_up ,mem_fifo_temp 
+0x7bcd 027993 branch ui_ipc_send_event 
+:      027995 ui_button_check_long_press:
+0x7bce 027996 fetch 1 ,mem_ui_button_timer 
+0x7bcf 027997 rtn blank 
+0x7bd0 027998 increase -1 ,pdata 
+0x7bd1 027999 store 1 ,mem_ui_button_timer 
+0x7bd2 028000 nrtn blank 
+0x7bd3 028002 jam bt_evt_button_long_pressed ,mem_fifo_temp 
+0x7bd4 028003 branch ui_ipc_send_event 
+:      028005 lpm_button_get_wake_lock:
+0x7bd5 028006 arg wake_lock_button ,queue 
+0x7bd6 028007 branch lpm_get_wake_lock 
+:      028009 lpm_button_clean_wake_lock:
+0x7bd7 028010 arg wake_lock_button ,queue 
+0x7bd8 028011 branch lpm_put_wake_lock 
+:      028013 ui_led_init:
+0x7bd9 028014 fetch 1 ,mem_led_gpio 
+0x7bda 028015 rtneq ui_button_gpio_disable 
+0x7bdb 028016 iforce temp 
+0x7bdc 028017 call gpio_config_output 
+0x7bdd 028018 branch ui_led_off 
+:      028020 ui_led_blink_stop:
+0x7bde 028021 fetch 2 ,mem_ui_state_map 
+0x7bdf 028022 set0 ui_state_led_blink 
+0x7be0 028023 store 2 ,mem_ui_state_map 
+0x7be1 028024 jam ui_led_stop ,mem_led_switch 
+:      028025 ui_led_off:
+0x7be2 028026 fetch 2 ,mem_ui_state_map 
+0x7be3 028027 set0 ui_state_led_on 
+0x7be4 028028 store 2 ,mem_ui_state_map 
+0x7be5 028029 fetcht 1 ,mem_led_gpio 
+0x7be6 028030 branch gpio_out_inactive 
+:      028032 ui_led_on:
+0x7be7 028033 fetch 2 ,mem_ui_state_map 
+0x7be8 028034 set1 ui_state_led_on 
+0x7be9 028035 store 2 ,mem_ui_state_map 
+0x7bea 028036 jam ui_led_stop ,mem_led_switch 
+0x7beb 028037 fetcht 1 ,mem_led_gpio 
+0x7bec 028038 branch gpio_out_active 
+:      028040 ui_led_blink_start:
+0x7bed 028041 fetch 2 ,mem_ui_state_map 
+0x7bee 028042 set1 ui_state_led_blink 
+0x7bef 028043 store 2 ,mem_ui_state_map 
+0x7bf0 028044 jam ui_led_start ,mem_led_switch 
+0x7bf1 028045 rtn 
+:      028047 ui_led_blink_polling:
+0x7bf2 028048 set1 mark_ext_patch ,mark 
+0x7bf3 028049 bpatch patch30_6 ,mem_patch30 
+0x7bf4 028050 fetch 1 ,mem_led_switch 
+0x7bf5 028051 rtneq ui_led_stop 
+0x7bf6 028052 arg ui_led_blink ,queue 
+0x7bf7 028053 call timer_check 
+0x7bf8 028054 nrtn blank 
+0x7bf9 028055 fetch 1 ,mem_led_switch 
+0x7bfa 028056 beq ui_led_dark_time ,ui_led_blink_polling_dark 
+0x7bfb 028057 call ui_led_on 
+0x7bfc 028058 jam ui_led_dark_time ,mem_led_switch 
+0x7bfd 028059 fetch 2 ,mem_led_light_time 
+0x7bfe 028060 branch ui_led_blink_timer_start 
+:      028061 ui_led_blink_polling_dark:
+0x7bff 028062 call ui_led_off 
+0x7c00 028063 jam ui_led_light_time ,mem_led_switch 
+0x7c01 028064 fetch 2 ,mem_led_dark_time 
+:      028065 ui_led_blink_timer_start:
+0x7c02 028066 arg ui_led_blink ,queue 
+0x7c03 028067 branch timer_init 
+:      028070 ui_timer_check:
+0x7c04 028071 set1 mark_ext_patch ,mark 
+0x7c05 028072 bpatch patch30_7 ,mem_patch30 
+0x7c06 028073 arg 0 ,rega 
+0x7c07 028074 fetcht 4 ,mem_ui_timer_last_btclk 
+0x7c08 028075 copy clkn_bt ,regb 
+:      028077 ui_timer_check_loop:
+0x7c09 028078 copy regb ,pdata 
+0x7c0a 028079 increase 160 ,temp 
+0x7c0b 028080 increase 160 ,temp 
+0x7c0c 028081 isub temp ,null 
+0x7c0d 028082 nbranch ui_timer_check_end ,positive 
+0x7c0e 028083 increase 1 ,rega 
+0x7c0f 028084 and rega ,0x0f ,pdata 
+0x7c10 028085 nbranch ui_timer_check_loop ,blank 
+0x7c11 028086 arg 0 ,rega 
+0x7c12 028087 call ui_timer_check_send_evt 
+:      028088 ui_timer_init:
+0x7c13 028089 copy clkn_bt ,pdata 
+0x7c14 028090 store 4 ,mem_ui_timer_last_btclk 
+0x7c15 028091 rtn 
+:      028092 ui_timer_check_end:
+0x7c16 028093 set1 mark_ext_patch ,mark 
+0x7c17 028094 bpatch patch31_0 ,mem_patch31 
+0x7c18 028095 copy rega ,pdata 
+0x7c19 028096 rtn blank 
+0x7c1a 028097 increase -160 ,temp 
+0x7c1b 028098 increase -160 ,temp 
+0x7c1c 028099 storet 4 ,mem_ui_timer_last_btclk 
+:      028100 ui_timer_check_send_evt:
+0x7c1d 028101 increase bt_evt_timer_init ,pdata 
+0x7c1e 028102 store 1 ,mem_fifo_temp 
+0x7c1f 028103 branch ui_ipc_send_event 
+:      028109 ui_ipc_get_lock:
+0x7c20 028110 jam 1 ,mem_ipc_lock_bt 
+:      028111 ui_ipc_get_lock_wait:
+0x7c21 028112 fetch 1 ,mem_ipc_lock_c51 
+0x7c22 028113 nbranch ui_ipc_get_lock_wait ,blank 
+0x7c23 028114 rtn 
+:      028116 ui_ipc_put_lock:
+0x7c24 028117 jam 0 ,mem_ipc_lock_bt 
+0x7c25 028118 rtn 
+:      028120 ui_ipc_fifo_out:
+0x7c26 028121 branch fifo_out 
+:      028125 ui_ipc_send_event:
+0x7c27 028126 set1 mark_ext_patch ,mark 
+0x7c28 028127 bpatch patch31_1 ,mem_patch31 
+0x7c29 028128 fetch 1 ,mem_device_option 
+0x7c2a 028129 rtneq dvc_op_hci 
+0x7c2b 028130 call ui_ipc_get_lock 
+0x7c2c 028131 copy rega ,pdata 
+0x7c2d 028132 store 4 ,mem_ipc_rega_temp 
+0x7c2e 028133 arg mem_ipc_fifo_bt2c51 ,rega 
+0x7c2f 028134 call fifo_in 
+0x7c30 028135 fetch 4 ,mem_ipc_rega_temp 
+0x7c31 028136 copy pdata ,rega 
+0x7c32 028137 branch ui_ipc_put_lock 
+:      028139 ui_ipc_send_cmd:
+0x7c33 028140 set1 mark_ext_patch ,mark 
+0x7c34 028141 bpatch patch31_2 ,mem_patch31 
+0x7c35 028142 fetch 1 ,mem_device_option 
+0x7c36 028143 rtneq dvc_op_hci 
+0x7c37 028144 call ui_ipc_get_lock 
+0x7c38 028145 copy rega ,pdata 
+0x7c39 028146 store 4 ,mem_ipc_rega_temp 
+0x7c3a 028147 arg mem_ipc_fifo_c512bt ,rega 
+0x7c3b 028148 call fifo_in 
+0x7c3c 028149 fetch 4 ,mem_ipc_rega_temp 
+0x7c3d 028150 copy pdata ,rega 
+0x7c3e 028151 branch ui_ipc_put_lock 
+:      028153 ui_ipc_clean_all_fifo:
+0x7c3f 028154 set1 mark_ext_patch ,mark 
+0x7c40 028155 bpatch patch31_3 ,mem_patch31 
+0x7c41 028156 setarg 0 
+0x7c42 028157 store util_fifo_len ,mem_ipc_fifo_c512bt 
+0x7c43 028158 store util_fifo_len ,mem_ipc_fifo_bt2c51 
+0x7c44 028159 rtn 
+:      028161 check_51cmd:
+0x7c45 028162 set1 mark_ext_patch ,mark 
+0x7c46 028163 bpatch patch31_4 ,mem_patch31 
+0x7c47 028164 fetch 1 ,mem_hci_cmd 
+0x7c48 028165 nrtn blank 
+0x7c49 028166 arg mem_ipc_fifo_c512bt ,rega 
+0x7c4a 028167 call fifo_is_empty 
+0x7c4b 028168 rtn blank 
+0x7c4c 028169 jam ipc_continue_process ,mem_ipc_skip_continue_proc 
+0x7c4d 028170 call check_51cmd_once 
+0x7c4e 028171 fetch 1 ,mem_ipc_skip_continue_proc 
+0x7c4f 028172 branch check_51cmd ,blank 
+0x7c50 028173 rtn 
+:      028175 check_51cmd_once:
+0x7c51 028176 set1 mark_ext_patch ,mark 
+0x7c52 028177 bpatch patch31_5 ,mem_patch31 
+0x7c53 028178 call ui_ipc_get_lock 
+0x7c54 028179 arg mem_ipc_fifo_c512bt ,rega 
+0x7c55 028180 call fifo_out 
+0x7c56 028181 copy pdata ,temp 
+0x7c57 028182 call ui_ipc_put_lock 
+0x7c58 028183 copy temp ,pdata 
+0x7c59 028184 rtn blank 
+0x7c5a 028185 beq bt_cmd_start_discovery ,check_51cmd_start_discovery 
+0x7c5b 028186 beq bt_cmd_stop_discovery ,check_51cmd_stop_discovery 
+0x7c5c 028187 beq bt_cmd_reconnect ,check_51cmd_reconnect 
+0x7c5d 028188 beq bt_cmd_enter_sniff_subrating ,check_51cmd_enter_sniff_subrating 
+0x7c5e 028189 beq bt_cmd_exit_sniff_subrating ,check_51cmd_exit_sniff_subrating 
+0x7c5f 028190 beq bt_cmd_sniff_test ,check_51cmd_sniff_test 
+0x7c60 028191 beq bt_cmd_start_inquiry ,check_51cmd_inq 
+0x7c61 028192 beq bt_cmd_stop_inquiry ,check_51cmd_stop_inq 
+0x7c62 028193 beq bt_cmd_start_adv ,check_51cmd_adv 
+0x7c63 028194 beq bt_cmd_stop_adv ,check_51cmd_stop_adv 
+0x7c64 028195 beq bt_cmd_start_direct_adv ,check_51cmd_direct_adv 
+0x7c65 028196 beq bt_cmd_stop_direct_adv ,check_51cmd_stop_direct_adv 
+0x7c66 028197 beq bt_cmd_le_update_conn ,check_51cmd_le_update_conn 
+0x7c67 028198 beq bt_cmd_led_blink ,ui_led_blink_start 
+0x7c68 028199 beq bt_cmd_led_on ,ui_led_on 
+0x7c69 028200 beq bt_cmd_led_off ,ui_led_blink_stop 
+0x7c6a 028201 beq bt_cmd_le_start_conn ,check_51cmd_le_start_con 
+0x7c6b 028202 beq bt_cmd_le_start_scan ,check_51cmd_start_scan 
+0x7c6c 028203 beq bt_cmd_le_stop_scan ,check_51cmd_stop_scan 
+0x7c6d 028204 beq bt_cmd_enter_hibernate ,check_51cmd_hibernate 
+0x7c6e 028205 beq bt_cmd_le_smp_security_request ,check_51cmd_le_smp_sec_req 
+0x7c6f 028206 beq bt_cmd_le_start_write ,check_51cmd_le_start_write 
+0x7c70 028207 beq bt_cmd_bb_reconn_cancel ,check_51cmd_bb_reconn_cancel 
+0x7c71 028209 store 1 ,mem_fifo_temp 
+0x7c72 028210 set1 mark_ext_patch ,mark 
+0x7c73 028211 bpatch patch31_6 ,mem_patch31 
+0x7c74 028212 fetch 1 ,mem_lmo_opcode2 
+0x7c75 028213 branch check_51cmd_once_continue ,blank 
+0x7c76 028214 call lmo_fifo_process 
+0x7c77 028215 fetch 1 ,mem_lmo_opcode2 
+0x7c78 028216 nbranch check_51cmd_restore ,blank 
+:      028217 check_51cmd_once_continue:
+0x7c79 028218 fetch 1 ,mem_fifo_temp 
+0x7c7a 028219 bmark0 mark_context ,check_51cmd_check_idle 
+:      028220 check_51cmd_once_continue0:
+0x7c7b 028221 beq bt_cmd_enter_sniff ,cmd_in_sniff 
+0x7c7c 028222 beq bt_cmd_exit_sniff ,cmd_exit_sniff 
+0x7c7d 028223 beq bt_cmd_set_pin_code ,check_51cmd_pincode 
+0x7c7e 028224 beq bt_cmd_disconnect ,check_51cmd_disconnect 
+0x7c7f 028225 beq bt_cmd_le_disconnect ,check_51cmd_le_disconnect 
+0x7c80 028226 beq bt_cmd_role_switch ,check_51cmd_role_switch 
+0x7c81 028227 beq bt_cmd_store_reconn_info_le ,eeprom_store_le_reconn_info 
+0x7c82 028228 beq bt_cmd_store_reconn_info_bt ,eeprom_store_bd_reconn_info 
+0x7c83 028229 beq bt_cmd_le_update_conn ,bt_cmd_le_update_conn_1 
+0x7c84 028230 rtn 
+:      028233 bt_cmd_le_update_conn_1:
+0x7c85 028234 jam xt_ll_connection_param_req ,mem_fifo_temp 
+0x7c86 028235 branch le_xtype_fifo_in 
+:      028236 check_51cmd_check_idle:
+0x7c87 028237 store 1 ,mem_fifo_temp 
+0x7c88 028238 call context_check_idle 
+0x7c89 028239 branch check_51cmd_restore ,zero 
+0x7c8a 028240 call context_search_plap 
+0x7c8b 028241 nrtn zero 
+:      028242 check_51cmd_restore:
+0x7c8c 028243 jam ipc_skip_continue_process ,mem_ipc_skip_continue_proc 
+0x7c8d 028244 branch ui_ipc_send_cmd 
+:      028247 check_51cmd_role_switch:
+0x7c8e 028248 jam lmp_slot_offset ,mem_lmo_opcode2 
+0x7c8f 028249 set1 mark_switch_initiated ,mark 
+0x7c90 028250 nrtn master 
+0x7c91 028251 jam switch_flag_init ,mem_switch_flag 
+0x7c92 028252 jam lmp_switch_req ,mem_lmo_opcode2 
+0x7c93 028253 fetch 1 ,mem_connection_options 
+0x7c94 028254 set0 connection_switch ,pdata 
+0x7c95 028255 store 1 ,mem_connection_options 
+0x7c96 028256 rtn 
+:      028258 check_51cmd_start_discovery:
+0x7c97 028259 fetch 2 ,mem_ui_state_map 
+0x7c98 028260 set1 ui_state_bt_discovery 
+0x7c99 028261 store 2 ,mem_ui_state_map 
+0x7c9a 028262 jam 3 ,mem_scan_mode 
+0x7c9b 028263 rtn 
+:      028265 check_51cmd_stop_discovery:
+0x7c9c 028266 jam 0 ,mem_hid_handshake_timer_count 
+0x7c9d 028267 jam 0 ,mem_scan_mode 
+0x7c9e 028268 fetch 2 ,mem_ui_state_map 
+0x7c9f 028269 set0 ui_state_bt_discovery 
+0x7ca0 028270 store 2 ,mem_ui_state_map 
+0x7ca1 028271 rtn 
+:      028273 check_51cmd_reconnect:
+0x7ca2 028274 jam hci_cmd_create_conn ,mem_hci_cmd 
+0x7ca3 028275 rtn 
+:      028277 check_51cmd_disconnect:
+0x7ca4 028278 jam lmp_detach ,mem_lmo_opcode2 
+0x7ca5 028279 jam other_end_terminated ,mem_disconn_reason_send 
+0x7ca6 028280 rtn 
+:      028283 check_51cmd_enter_sniff_subrating:
+0x7ca7 028284 rtn 
+:      028286 check_51cmd_exit_sniff_subrating:
+0x7ca8 028287 rtn 
+:      028289 check_51cmd_sniff_test:
+0x7ca9 028290 rtn 
+:      028292 check_51cmd_pincode:
+0x7caa 028293 jam pincode_state_pincode_ready ,mem_pincode_state 
+0x7cab 028294 branch cmd_pair 
+:      028296 check_51cmd_inq:
+0x7cac 028297 rtn 
+:      028298 check_51cmd_stop_inq:
+0x7cad 028299 rtn 
+:      028300 check_51cmd_adv:
+0x7cae 028301 jam on ,mem_le_adv_enable 
+0x7caf 028302 jam adv_ind ,mem_le_adv_type 
+0x7cb0 028303 rtn 
+:      028304 check_51cmd_stop_adv:
+0x7cb1 028305 jam off ,mem_le_adv_enable 
+0x7cb2 028306 rtn 
+:      028307 check_51cmd_direct_adv:
+0x7cb3 028308 jam on ,mem_le_adv_enable 
+0x7cb4 028309 jam adv_direct_ind ,mem_le_adv_type 
+0x7cb5 028310 rtn 
+:      028311 check_51cmd_stop_direct_adv:
+0x7cb6 028312 jam off ,mem_le_adv_enable 
+0x7cb7 028313 rtn 
+:      028314 check_51cmd_le_disconnect:
+0x7cb8 028315 setarg 1 
+0x7cb9 028316 store 2 ,mem_le_superto 
+0x7cba 028317 rtn 
+:      028318 check_51cmd_le_update_conn:
+0x7cbb 028319 rtn 
+:      028320 check_51cmd_le_start_con:
+0x7cbc 028321 jam on ,mem_le_scan_enable 
+0x7cbd 028322 jam hci_cmd_le_create_conn ,mem_hci_cmd 
+0x7cbe 028323 fetch 6 ,mem_app_peer_addr 
+0x7cbf 028324 store 6 ,mem_le_conn_peer_addr 
+0x7cc0 028325 rtn 
+:      028326 check_51cmd_start_scan:
+0x7cc1 028327 jam on ,mem_le_scan_enable 
+0x7cc2 028328 rtn 
+:      028329 check_51cmd_stop_scan:
+0x7cc3 028330 jam off ,mem_le_scan_enable 
+0x7cc4 028331 jam 0 ,mem_hci_cmd 
+0x7cc5 028332 rtn 
+:      028333 check_51cmd_le_smp_sec_req:
+0x7cc6 028334 jam xt_smp_security_request ,mem_fifo_temp 
+0x7cc7 028335 branch le_xtype_fifo_in 
+:      028336 check_51cmd_hibernate:
+0x7cc8 028337 set1 mark_ext_patch ,mark 
+0x7cc9 028338 bpatch patch31_7 ,mem_patch31 
+0x7cca 028339 fetch 2 ,mem_cb_before_hibernate 
+0x7ccb 028340 call callback_func 
+0x7ccc 028341 fetch 1 ,mem_ui_button_gpio 
+0x7ccd 028342 beq ui_button_gpio_disable ,check_51cmd_hibernate_btn_disabled 
+0x7cce 028343 copy pdata ,temp 
+0x7ccf 028344 call gpio_config_input 
+:      028345 check_51cmd_hibernate_btn_disabled:
+0x7cd0 028346 call ui_led_off 
+0x7cd1 028347 call ui_ipc_clean_all_fifo 
+0x7cd2 028348 branch lpm_hibernate 
+:      028350 check_51cmd_le_start_write:
+0x7cd3 028351 jam 1 ,mem_le_switch_send_data 
+0x7cd4 028352 rtn 
+:      028354 check_51cmd_bb_reconn_cancel:
+0x7cd5 028355 force page_length_timer ,queue 
+0x7cd6 028356 branch timer_stop 
+:      028358 ui_check_paring_button:
+0x7cd7 028359 fetch 1 ,mem_ui_state_map 
+0x7cd8 028360 rtnbit0 ui_state_btn_down 
+0x7cd9 028361 rtnbit0 ui_state_bt_reconnect 
+0x7cda 028362 branch check_51cmd_bb_reconn_cancel 
+:      028366 usb_isr:
+0x7cdb 028367 set1 mark_ext_patch ,mark 
+0x7cdc 028368 bpatch patch3a_5 ,mem_patch3a 
+0x7cdd 028369 call usb_tx_test 
+0x7cde 028370 hfetch 1 ,core_usb_status 
+0x7cdf 028371 store 1 ,mem_usb_status 
+0x7ce0 028372 hfetch 1 ,core_usb_fifo_empty 
+0x7ce1 028373 store 1 ,mem_usb_fifo_empty 
+0x7ce2 028374 hjam 0xe0 ,core_usb_status 
+0x7ce3 028375 fetch 1 ,mem_usb_fifo_empty 
+0x7ce4 028376 compare 0x1 ,pdata ,0x1 
+0x7ce5 028377 call usb0_fifo_empty ,true 
+0x7ce6 028378 set1 mark_ext_patch ,mark 
+0x7ce7 028379 bpatch patch3a_6 ,mem_patch3a 
+0x7ce8 028380 fetch 1 ,mem_usb_status 
+0x7ce9 028381 compare 0x1 ,pdata ,0x1 
+0x7cea 028382 call usb_status1 ,true 
+0x7ceb 028383 fetch 1 ,mem_usb_state 
+0x7cec 028384 bne usb_connected ,usb_tx 
+0x7ced 028385 fetch 2 ,mem_usb_idle_cnt 
+0x7cee 028386 increase 1 ,pdata 
+0x7cef 028387 store 2 ,mem_usb_idle_cnt 
+0x7cf0 028388 fetcht 2 ,mem_usb_idle_timeout 
+0x7cf1 028389 isub temp ,null 
+0x7cf2 028390 branch usb_init ,positive 
+0x7cf3 028391 fetch 1 ,mem_usb_status 
+0x7cf4 028392 bbit0 usb_status_nak ,usb_tx 
+0x7cf5 028393 setarg 0 
+0x7cf6 028394 store 2 ,mem_usb_idle_cnt 
+0x7cf7 028395 branch usb_tx 
+:      028398 usb_status1:
+0x7cf8 028399 set1 mark_ext_patch ,mark 
+0x7cf9 028400 bpatch patch3a_7 ,mem_patch3a 
+0x7cfa 028401 hjam 0x11 ,core_usb_status 
+0x7cfb 028402 hfetch 1 ,core_usb_ep_len 
+0x7cfc 028403 store 1 ,mem_usb_read_len 
+0x7cfd 028404 copy pdata ,loopcnt 
+0x7cfe 028405 branch usb_rx_no_data ,blank 
+0x7cff 028406 arg mem_usb_setup ,contw 
+0x7d00 028407 call usb_rx_read 
+0x7d01 028408 fetch 1 ,mem_usb_read_len 
+0x7d02 028409 sub pdata ,7 ,null 
+0x7d03 028410 rtn positive 
+:      028411 usb_class_type:
+0x7d04 028412 set1 mark_ext_patch ,mark 
+0x7d05 028413 bpatch patch3b_0 ,mem_patch3b 
+0x7d06 028414 fetch 1 ,mem_usb_setup_bmrequesttype 
+0x7d07 028415 beq hci_class_request_type ,usb_hci_class_req_type 
+0x7d08 028416 beq hid_class_request_type ,usb_hid_class_req_type 
+0x7d09 028417 beq zero_class_request_type ,usb_zero_class_req_type 
+0x7d0a 028418 fetch 1 ,mem_usb_setup_brequest 
+0x7d0b 028419 beq set_address ,usb0_request_set_address 
+0x7d0c 028420 beq get_descriptor ,usb0_request_get_descriptor 
+0x7d0d 028421 beq set_configuration ,usb0_request_set_configuration 
+0x7d0e 028422 beq set_interface ,usb0_request_set_interface 
+0x7d0f 028423 branch usb0_force_stall 
+:      028425 usb_zero_class_req_type:
+0x7d10 028426 fetch 1 ,mem_usb_setup_brequest 
+0x7d11 028427 beq clear_feature ,usb0_request_clear_feature 
+0x7d12 028428 beq set_feature ,usb0_request_set_feature 
+0x7d13 028429 beq set_configuration ,usb0_reply_zerolen 
+0x7d14 028430 beq set_address ,usb0_request_set_address 
+0x7d15 028431 branch usb0_force_stall 
+:      028432 usb_hci_class_req_type:
+0x7d16 028433 call usb0_reply_zerolen 
+0x7d17 028434 rtn 
+:      028436 usb_rx_no_data:
+0x7d18 028437 fetch 1 ,mem_usb_status 
+0x7d19 028438 bbit1 usb_status_setup ,usb_class_type 
+0x7d1a 028439 rtn 
+:      028440 usb_set_protocol_req:
+0x7d1b 028441 fetch 1 ,mem_usb_set_protocol_count 
+0x7d1c 028442 increase 1 ,pdata 
+0x7d1d 028443 store 1 ,mem_usb_set_protocol_count 
+0x7d1e 028444 compare 2 ,pdata ,0xff 
+0x7d1f 028445 nbranch usb0_reply_zerolen ,true 
+0x7d20 028446 jam 1 ,mem_usb_desc 
+0x7d21 028447 branch usb0_reply_zerolen 
+:      028448 usb_hid_class_req_type:
+0x7d22 028449 fetch 1 ,mem_usb_setup_brequest 
+0x7d23 028450 beq set_idle ,usb_set_idle 
+0x7d24 028451 beq set_report ,usb_set_report 
+0x7d25 028452 beq set_protocol ,usb_set_protocol_req 
+0x7d26 028453 branch usb0_force_stall 
+:      028454 usb_set_idle:
+0x7d27 028455 fetch 1 ,mem_usb_state 
+0x7d28 028456 beq usb_setidle_1 ,usb_set_idle_connected 
+0x7d29 028457 bne usb_resume ,usb0_reply_zerolen 
+0x7d2a 028458 jam usb_setidle_1 ,mem_usb_state 
+0x7d2b 028459 branch usb0_reply_zerolen 
+:      028460 usb_set_idle_connected:
+0x7d2c 028461 jam usb_connected ,mem_usb_state 
+0x7d2d 028462 branch usb0_reply_zerolen 
+:      028464 usb_set_report:
+0x7d2e 028465 jam 1 ,mem_usb_desc 
+0x7d2f 028466 arg mem_usb_desc ,rega 
+0x7d30 028467 arg 1 ,regb 
+0x7d31 028468 branch usb0_respond 
+:      028469 usb0_force_stall:
+0x7d32 028470 hjam 1 ,core_usb_stall 
+0x7d33 028471 rtn 
+:      028472 usb0_reply_zerolen:
+0x7d34 028473 hjam 0x40 ,core_usb_clear 
+0x7d35 028474 rtn 
+:      028476 usb_rx_read:
+0x7d36 028477 hfetch 1 ,core_usb_ep 
+0x7d37 028478 istore 1 ,contw 
+0x7d38 028479 loop usb_rx_read 
+0x7d39 028480 rtn 
+:      028482 usb0_fifo_empty:
+0x7d3a 028483 hjam 0x1 ,core_usb_fifo_empty 
+0x7d3b 028484 call usb0_tx 
+0x7d3c 028485 rtn 
+:      028487 usb0_request_get_descriptor:
+0x7d3d 028488 set1 mark_ext_patch ,mark 
+0x7d3e 028489 bpatch patch3b_1 ,mem_patch3b 
+0x7d3f 028490 set0 mark_isstr ,mark 
+0x7d40 028491 fetch 1 ,mem_usb_setup_bvalueh 
+0x7d41 028492 beq dsc_device ,dsc_device_info 
+0x7d42 028493 beq dsc_config ,dsc_config_info 
+0x7d43 028494 beq dsc_string ,dsc_string_info 
+0x7d44 028495 beq dsc_hid ,dsc_hid_info 
+0x7d45 028496 beq dsc_hid_report ,dsc_hid_report_info 
+0x7d46 028497 rtn 
+:      028499 dsc_device_info:
+0x7d47 028500 arg mem_devicedesc ,rega 
+0x7d48 028501 branch usb0_respond_length 
+:      028502 dsc_config_info:
+0x7d49 028503 arg mem_confdesc ,rega 
+0x7d4a 028504 branch usb0_respond_length 
+:      028505 dsc_string_info:
+0x7d4b 028506 fetch 1 ,mem_usb_setup_bvalue 
+0x7d4c 028507 and_into 3 ,pdata 
+0x7d4d 028508 arg mem_string0 ,rega 
+0x7d4e 028509 beq 0 ,usb0_respond_length 
+0x7d4f 028510 set1 mark_isstr ,mark 
+0x7d50 028511 arg mem_string1 ,rega 
+0x7d51 028512 beq 1 ,usb0_respond_length 
+0x7d52 028513 arg mem_string2 ,rega 
+0x7d53 028514 beq 2 ,usb0_respond_length 
+0x7d54 028515 arg mem_string3 ,rega 
+0x7d55 028516 beq 3 ,usb0_respond_length 
+0x7d56 028517 branch assert 
+:      028518 dsc_hid_info:
+0x7d57 028519 arg mem_confdesc + 18 ,rega 
+0x7d58 028520 fetch 1 ,mem_confdesc + 18 
+0x7d59 028521 copy pdata ,regb 
+0x7d5a 028522 branch usb0_respond 
+:      028523 dsc_hid_report_info:
+0x7d5b 028524 fetch 2 ,mem_usb_setup_windex 
+0x7d5c 028525 beq 1 ,dsc_hid_report_info0 
+0x7d5d 028526 arg mem_hidreportdesc_kb ,rega 
+0x7d5e 028527 branch usb0_respond_length 
+:      028528 dsc_hid_report_info0:
+0x7d5f 028529 jam usb_got_report_req ,mem_usb_state 
+0x7d60 028530 arg mem_hidreportdesc_m ,rega 
+0x7d61 028531 branch usb0_respond_length 
+:      028533 usb0_respond_length:
+0x7d62 028534 ifetch 1 ,rega 
+0x7d63 028535 iforce regb 
+0x7d64 028536 increase 1 ,rega 
+:      028539 usb0_respond:
+0x7d65 028540 set1 mark_ext_patch ,mark 
+0x7d66 028541 bpatch patch3b_2 ,mem_patch3b 
+0x7d67 028542 bmark0 mark_isstr ,usb0_respond0 
+0x7d68 028543 add regb ,1 ,pdata 
+0x7d69 028544 lshift pdata ,pdata 
+0x7d6a 028545 hstore 1 ,core_usb_dfifo0 
+0x7d6b 028546 hjam 3 ,core_usb_dfifo0 
+0x7d6c 028547 fetch 1 ,mem_usb_setup_blength 
+0x7d6d 028548 increase -2 ,pdata 
+0x7d6e 028549 rshift pdata ,pdata 
+0x7d6f 028550 store 1 ,mem_usb_setup_blength 
+0x7d70 028551 beq 0 ,usb_no_respond_data 
+:      028552 usb0_respond0:
+0x7d71 028553 fetch 1 ,mem_usb_setup_blength 
+0x7d72 028554 isub regb ,null 
+0x7d73 028555 branch usb0_respond1 ,positive 
+0x7d74 028556 copy pdata ,regb 
+:      028557 usb0_respond1:
+0x7d75 028558 copy rega ,pdata 
+0x7d76 028559 store 2 ,mem_bufptr 
+0x7d77 028560 copy regb ,pdata 
+0x7d78 028561 store 1 ,mem_remain 
+0x7d79 028562 branch usb0_tx 
+:      028564 usb_no_respond_data:
+0x7d7a 028565 arg 0 ,queue 
+0x7d7b 028566 branch usb_trig 
+:      028570 usb0_tx:
+0x7d7c 028571 set1 mark_ext_patch ,mark 
+0x7d7d 028572 bpatch patch3b_3 ,mem_patch3b 
+0x7d7e 028573 fetch 1 ,mem_remain 
+0x7d7f 028574 rtn blank 
+0x7d80 028575 copy pdata ,loopcnt 
+0x7d81 028576 sub pdata ,ep0_packet_size ,null 
+0x7d82 028577 branch usb0_tx_info ,positive 
+0x7d83 028578 arg ep0_packet_size ,loopcnt 
+:      028579 usb0_tx_info:
+0x7d84 028580 fetch 1 ,mem_remain 
+0x7d85 028581 isub loopcnt ,pdata 
+0x7d86 028582 store 1 ,mem_remain 
+0x7d87 028583 fetch 2 ,mem_bufptr 
+0x7d88 028584 copy pdata ,contr 
+:      028585 usb0_tx0:
+0x7d89 028586 ifetch 1 ,contr 
+0x7d8a 028587 hstore 1 ,core_usb_dfifo0 
+0x7d8b 028588 bmark0 mark_isstr ,usb0_tx1 
+0x7d8c 028589 hjam 0 ,core_usb_dfifo0 
+:      028590 usb0_tx1:
+0x7d8d 028591 loop usb0_tx0 
+0x7d8e 028592 copy contr ,pdata 
+0x7d8f 028593 store 2 ,mem_bufptr 
+0x7d90 028594 arg 0 ,queue 
+0x7d91 028595 call usb_trig 
+0x7d92 028596 fetch 1 ,mem_remain 
+0x7d93 028597 nrtn blank 
+0x7d94 028598 fetch 1 ,mem_usb_state 
+0x7d95 028599 rtnne usb_got_report_req 
+0x7d96 028600 jam usb_connected ,mem_usb_state 
+0x7d97 028601 rtn 
+:      028604 usb0_request_set_configuration:
+0x7d98 028605 fetch 1 ,mem_usb_setup_bvalue 
+0x7d99 028606 sub pdata ,1 ,null 
+0x7d9a 028607 nbranch usb0_force_stall ,positive 
+:      028608 usb0_request_set_address:
+0x7d9b 028609 fetch 1 ,mem_usb_setup_bmrequesttype 
+0x7d9c 028610 bne in_device ,usb0_force_stall 
+0x7d9d 028611 fetch 2 ,mem_usb_setup_windex 
+0x7d9e 028612 bne 0 ,usb0_force_stall 
+0x7d9f 028613 fetch 1 ,mem_usb_setup_blength 
+0x7da0 028614 bne 0 ,usb0_force_stall 
+0x7da1 028615 branch usb0_reply_zerolen 
+:      028617 usb0_request_set_interface:
+0x7da2 028618 fetch 1 ,mem_usb_setup_bmrequesttype 
+0x7da3 028619 bne in_interface ,usb0_force_stall 
+0x7da4 028620 fetch 1 ,mem_usb_setup_bvalue 
+0x7da5 028621 bne 0 ,usb0_force_stall 
+0x7da6 028622 fetch 1 ,mem_usb_setup_bvalueh 
+0x7da7 028623 bne 0 ,usb0_force_stall 
+0x7da8 028624 fetch 1 ,mem_usb_setup_blength 
+0x7da9 028625 bne 0 ,usb0_force_stall 
+0x7daa 028626 branch usb0_reply_zerolen 
+:      028628 usb0_request_set_feature:
+0x7dab 028629 fetch 1 ,mem_usb_setup_bvalue 
+0x7dac 028630 bne 1 ,usb0_force_stall 
+0x7dad 028631 jam usb_sleep ,mem_usb_state 
+0x7dae 028632 branch usb0_reply_zerolen 
+:      028634 usb0_request_clear_feature:
+0x7daf 028635 fetch 1 ,mem_usb_setup_bvalue 
+0x7db0 028636 bne 1 ,usb0_force_stall 
+0x7db1 028637 branch usb0_reply_zerolen 
+:      028639 usb_init:
+0x7db2 028640 set1 mark_ext_patch ,mark 
+0x7db3 028641 bpatch patch3b_4 ,mem_patch3b 
+0x7db4 028642 hjam 0x00 ,core_usb_config 
+0x7db5 028643 nop 10000 
+0x7db6 028644 hjam 0xc0 ,core_usb_trig 
+0x7db7 028645 hfetch 2 ,core_clkoff 
+0x7db8 028646 set0 clock_off_usb ,pdata 
+0x7db9 028647 hstore 2 ,core_clkoff 
+0x7dba 028648 hjam 0x3c ,core_usb_config 
+0x7dbb 028649 hjam 0xff ,core_usb_status 
+0x7dbc 028650 hjam 0xff ,core_usb_fifo_empty 
+0x7dbd 028651 jam 0 ,mem_mcmd 
+0x7dbe 028652 jam 0 ,mem_usb_state 
+0x7dbf 028653 setarg 0 
+0x7dc0 028654 store 2 ,mem_usb_idle_cnt 
+0x7dc1 028655 rtn 
+:      028658 usb_tx:
+0x7dc2 028659 set1 mark_ext_patch ,mark 
+0x7dc3 028660 bpatch patch3b_5 ,mem_patch3b 
+0x7dc4 028661 fetch 1 ,mem_mcmd 
+0x7dc5 028662 rtn blank 
+0x7dc6 028663 fetch 1 ,mem_usb_state 
+0x7dc7 028664 beq usb_sleep ,usb_wakeup 
+0x7dc8 028665 rtnne usb_connected 
+0x7dc9 028666 fetch 1 ,mem_mcmd 
+0x7dca 028667 jam 0 ,mem_mcmd 
+0x7dcb 028668 arg 6 ,loopcnt 
+0x7dcc 028669 arg mem_mouse_data ,contr 
+0x7dcd 028670 beq send_kb_data_cmd ,usb_tx_ep1 
+0x7dce 028671 beq send_mouse_data_cmd ,usb_tx_ep2 
+0x7dcf 028672 branch assert 
+:      028674 usb_tx_ep1:
+0x7dd0 028675 arg core_usb_dfifo1 ,rega 
+0x7dd1 028676 arg 1 ,queue 
+:      028677 usb_tx_loop:
+0x7dd2 028678 ifetch 1 ,contr 
+0x7dd3 028679 istore 1 ,rega 
+0x7dd4 028680 loop usb_tx_loop 
+:      028681 usb_trig:
+0x7dd5 028682 set1 mark_ext_patch ,mark 
+0x7dd6 028683 bpatch patch3b_6 ,mem_patch3b 
+0x7dd7 028684 disable swfine 
+0x7dd8 028685 fetch 2 ,mem_usb_trig_timeout 
+0x7dd9 028686 iforce stop_watch 
+0x7dda 028687 hjam 0x40 ,core_usb_status 
+:      028688 usb_trig_waitnak_loop:
+0x7ddb 028689 hfetch 1 ,core_usb_status 
+0x7ddc 028690 branch usb_init ,timeout 
+0x7ddd 028691 bbit0 usb_status_nak ,usb_trig_waitnak_loop 
+0x7dde 028692 fetch 2 ,mem_usb_trig_timeout 
+0x7ddf 028693 iforce stop_watch 
+0x7de0 028694 arg 0 ,temp 
+0x7de1 028695 qset1 temp 
+0x7de2 028696 hstoret 1 ,core_usb_fifo_empty 
+:      028697 usb_trig_loop:
+0x7de3 028698 branch usb_init ,timeout 
+0x7de4 028699 hstoret 1 ,core_usb_trig 
+0x7de5 028700 hfetch 1 ,core_usb_fifo_empty 
+0x7de6 028701 qisolate0 pdata 
+0x7de7 028702 branch usb_trig_loop ,true 
+0x7de8 028703 rtn 
+:      028706 usb_tx_ep2:
+0x7de9 028707 arg 2 ,queue 
+0x7dea 028708 arg core_usb_dfifo2 ,rega 
+0x7deb 028709 branch usb_tx_loop 
+:      028712 usb_wakeup:
+0x7dec 028713 set1 mark_ext_patch ,mark 
+0x7ded 028714 bpatch patch3b_7 ,mem_patch3b 
+0x7dee 028715 hjam 0xfc ,core_usb_config 
+0x7def 028716 nop 10000 
+0x7df0 028717 hjam 0x3c ,core_usb_config 
+0x7df1 028718 jam usb_resume ,mem_usb_state 
+0x7df2 028719 rtn 
+:      028721 usb_tx_test:
+0x7df3 028722 fetch 1 ,mem_mcmd 
+0x7df4 028723 nrtn blank 
+0x7df5 028724 fetch 2 ,mem_usb_cnt 
+0x7df6 028725 rtn blank 
+0x7df7 028726 increase -1 ,pdata 
+0x7df8 028727 store 2 ,mem_usb_cnt 
+0x7df9 028728 jam send_mouse_data_cmd ,mem_mcmd 
+0x7dfa 028729 rtn 
+:      028732 right_shift_n:
+0x7dfb 028733 sub loopcnt ,0 ,null 
+0x7dfc 028734 rtn zero 
+:      028735 right_shift_n_loop:
+0x7dfd 028736 rshift pdata ,pdata 
+0x7dfe 028737 loop right_shift_n_loop 
+0x7dff 028738 rtn 
+:      028740 push_stack:
+0x7e00 028741 deposit contw 
+0x7e01 028742 store 2 ,mem_contw 
+0x7e02 028743 storet 8 ,mem_temp 
+0x7e03 028744 deposit timeup 
+0x7e04 028745 store 4 ,mem_timeup 
+0x7e05 028746 deposit rega 
+0x7e06 028747 store 4 ,mem_rega 
+0x7e07 028748 deposit regb 
+0x7e08 028749 store 4 ,mem_regb 
+0x7e09 028750 deposit regc 
+0x7e0a 028751 store 3 ,mem_regc 
+0x7e0b 028752 deposit contr 
+0x7e0c 028753 store 2 ,mem_contr 
+0x7e0d 028754 rtn 
+:      028755 pop_stack:
+0x7e0e 028756 fetcht 8 ,mem_temp 
+0x7e0f 028757 fetch 4 ,mem_timeup 
+0x7e10 028758 iforce timeup 
+0x7e11 028759 fetch 4 ,mem_rega 
+0x7e12 028760 iforce rega 
+0x7e13 028761 fetch 4 ,mem_regb 
+0x7e14 028762 iforce regb 
+0x7e15 028763 fetch 3 ,mem_regc 
+0x7e16 028764 iforce regc 
+0x7e17 028765 fetch 2 ,mem_contw 
+0x7e18 028766 iforce contw 
+0x7e19 028767 fetch 2 ,mem_contr 
+0x7e1a 028768 iforce contr 
+0x7e1b 028769 rtn 
+:      028775 save_cont_pointers:
+0x7e1c 028776 copy contw ,pdata 
+0x7e1d 028777 store 2 ,mem_hold_contw 
+0x7e1e 028778 copy contr ,pdata 
+0x7e1f 028779 store 2 ,mem_hold_contr 
+0x7e20 028780 rtn 
+:      028781 load_cont_pointers:
+0x7e21 028782 fetch 2 ,mem_hold_contw 
+0x7e22 028783 copy pdata ,contw 
+0x7e23 028784 fetch 2 ,mem_hold_contr 
+0x7e24 028785 copy pdata ,contr 
+0x7e25 028786 rtn 
+:      028790 delay_10ms:
+0x7e26 028791 copy clkn_bt ,pdata 
+0x7e27 028792 increase 16 ,pdata 
+0x7e28 028793 increase 16 ,pdata 
+:      028794 delay_ms_wait:
+0x7e29 028795 copy clkn_bt ,temp 
+0x7e2a 028796 isub temp ,null 
+0x7e2b 028797 branch delay_ms_wait ,positive 
+0x7e2c 028798 rtn 
+:      028800 memcpy48:
+0x7e2d 028801 ifetch 8 ,contr 
+0x7e2e 028802 istore 8 ,contw 
+0x7e2f 028803 ifetch 8 ,contr 
+0x7e30 028804 istore 8 ,contw 
+:      028805 memcpy32:
+0x7e31 028806 ifetch 8 ,contr 
+0x7e32 028807 istore 8 ,contw 
+:      028808 memcpy24:
+0x7e33 028809 ifetch 8 ,contr 
+0x7e34 028810 istore 8 ,contw 
+:      028811 memcpy16:
+0x7e35 028812 ifetch 8 ,contr 
+0x7e36 028813 istore 8 ,contw 
+0x7e37 028814 ifetch 8 ,contr 
+0x7e38 028815 istore 8 ,contw 
+0x7e39 028816 rtn 
+:      028818 bn_zero:
+0x7e3a 028819 force 3 ,loopcnt 
+:      028820 memset0:
+0x7e3b 028821 force 0 ,pdata 
+:      028822 memset8:
+0x7e3c 028823 istore 8 ,contw 
+0x7e3d 028824 loop memset8 
+0x7e3e 028825 rtn 
+:      028828 clear_mem:
+0x7e3f 028829 deposit loopcnt 
+0x7e40 028830 rtn blank 
+0x7e41 028831 setarg 0 
+:      028832 clear_mem_loop:
+0x7e42 028833 istore 1 ,contw 
+0x7e43 028834 loop clear_mem_loop 
+0x7e44 028835 rtn 
+:      028839 memcpy:
+0x7e45 028840 deposit loopcnt 
+0x7e46 028841 rtn blank 
+:      028842 memcpy_loop:
+0x7e47 028843 ifetch 1 ,contr 
+0x7e48 028844 istore 1 ,contw 
+0x7e49 028845 loop memcpy_loop 
+0x7e4a 028846 rtn 
+:      028848 timer_stop:
+0x7e4b 028849 setarg 0 
+:      028850 timer_init:
+0x7e4c 028851 arg mem_timers ,contw 
+0x7e4d 028852 iforce temp 
+0x7e4e 028853 lshift queue ,pdata 
+0x7e4f 028854 iadd contw ,contw 
+0x7e50 028855 istoret 2 ,contw 
+0x7e51 028856 rtn 
+:      028858 timer_reinit:
+0x7e52 028859 arg 0 ,queue 
+:      028860 timer_check:
+0x7e53 028861 set1 mark_ext_patch ,mark 
+0x7e54 028862 bpatch patch37_4 ,mem_patch37 
+0x7e55 028863 fetcht 4 ,mem_last_clkn 
+0x7e56 028864 rshift clkn_bt ,pdata 
+0x7e57 028865 store 4 ,mem_last_clkn 
+0x7e58 028866 isub temp ,timeup 
+0x7e59 028867 copy timeup ,temp 
+0x7e5a 028868 arg mem_timers ,contr 
+0x7e5b 028869 copy contr ,contw 
+0x7e5c 028870 arg 16 ,loopcnt 
+:      028871 timer_loop:
+0x7e5d 028872 ifetch 2 ,contr 
+0x7e5e 028873 isub temp ,pdata 
+0x7e5f 028874 branch timer_counting ,positive 
+0x7e60 028875 force 0 ,pdata 
+:      028876 timer_counting:
+0x7e61 028877 istore 2 ,contw 
+0x7e62 028878 loop timer_loop 
+0x7e63 028879 arg mem_timers ,contr 
+0x7e64 028880 lshift queue ,pdata 
+0x7e65 028881 iadd contr ,contr 
+0x7e66 028882 ifetch 2 ,contr 
+0x7e67 028883 rtn 
+:      028886 lshift8_queue:
+0x7e68 028887 increase 1 ,queue 
+:      028888 lshift8_queue_loop:
+0x7e69 028889 increase -1 ,queue 
+0x7e6a 028890 rtn zero 
+0x7e6b 028891 lshift8 pdata ,pdata 
+0x7e6c 028892 branch lshift8_queue_loop 
+:      028896 clk_add:
+0x7e6d 028897 iadd temp ,temp 
+0x7e6e 028898 copy temp ,loopcnt 
+0x7e6f 028899 setarg 3750 
+0x7e70 028900 isub loopcnt ,pdata 
+0x7e71 028901 rtn positive 
+0x7e72 028902 sub pdata ,0 ,pdata 
+0x7e73 028903 rshift16 temp ,temp 
+0x7e74 028904 increase 1 ,temp 
+0x7e75 028905 lshift16 temp ,temp 
+0x7e76 028906 ior temp ,temp 
+0x7e77 028907 rtn 
+:      028909 clk_diff_rt:
+0x7e78 028910 call clk_diff 
+0x7e79 028911 branch clk2rt 
+:      028914 clk_diff:
+0x7e7a 028915 disable user 
+0x7e7b 028916 isub temp ,pdata 
+0x7e7c 028917 branch clk_diff_pos ,positive 
+0x7e7d 028918 enable user 
+0x7e7e 028919 sub pdata ,0 ,pdata 
+:      028920 clk_diff_pos:
+0x7e7f 028921 rtnbit0 15 
+0x7e80 028922 arg -61786 ,temp 
+0x7e81 028923 iadd temp ,pdata 
+0x7e82 028924 set0 64 ,pdata 
+0x7e83 028925 rtn 
+:      028927 clk2rt:
+0x7e84 028928 iforce contr 
+0x7e85 028929 rshift16 pdata ,pdata 
+0x7e86 028930 arg 3750 ,temp 
+0x7e87 028931 imul32 temp ,pdata 
+0x7e88 028932 iadd contr ,pdata 
+0x7e89 028933 rtn 
+:      028936 clk2lpo:
+0x7e8a 028937 lshift8 pdata ,pdata 
+0x7e8b 028938 lshift4 pdata ,pdata 
+0x7e8c 028939 fetcht 3 ,mem_clks_per_lpo 
+0x7e8d 028940 idiv temp 
+0x7e8e 028941 call wait_div_end 
+0x7e8f 028942 quotient temp 
+0x7e90 028943 rtn 
+:      028946 clk2bt:
+0x7e91 028947 arg 3750 ,temp 
+0x7e92 028948 idiv temp 
+0x7e93 028949 call wait_div_end 
+0x7e94 028950 quotient pdata 
+0x7e95 028951 lshift16 pdata ,pdata 
+0x7e96 028952 remainder temp 
+0x7e97 028953 ior temp ,temp 
+0x7e98 028954 rtn 
+:      028957 mem3_hex2string_to_uart:
+0x7e99 028958 arg 3 ,loopcnt 
+0x7e9a 028959 branch hex2string_to_uart0 
+:      028960 mem2_hex2string_to_uart:
+0x7e9b 028961 arg 2 ,loopcnt 
+0x7e9c 028962 branch hex2string_to_uart0 
+:      028966 adss_hex2string_to_uart:
+0x7e9d 028967 arg 6 ,loopcnt 
+:      028968 hex2string_to_uart0:
+0x7e9e 028969 ifetch 1 ,rega 
+0x7e9f 028970 copy pdata ,temp 
+0x7ea0 028971 rshift4 pdata ,pdata 
+0x7ea1 028972 call dialog2uchar 
+0x7ea2 028973 istore 1 ,contwu 
+0x7ea3 028974 copy temp ,pdata 
+0x7ea4 028975 and pdata ,0xf ,pdata 
+0x7ea5 028976 call dialog2uchar 
+0x7ea6 028977 istore 1 ,contwu 
+0x7ea7 028978 increase 1 ,rega 
+0x7ea8 028979 loop hex2string_to_uart0 
+0x7ea9 028980 rtn 
+:      028981 dialog2uchar:
+0x7eaa 028982 sub pdata ,9 ,null 
+0x7eab 028983 branch dialog2uchar0to9 ,positive 
+0x7eac 028984 increase 87 ,pdata 
+0x7ead 028985 rtn 
+:      028986 dialog2uchar0to9:
+0x7eae 028987 add pdata ,0x30 ,pdata 
+0x7eaf 028988 rtn 
+:      028994 string2dec_from_uart:
+0x7eb0 028995 arg 0 ,temp 
+:      028996 string2dec_from_uart_done:
+0x7eb1 028997 copy temp ,regc 
+0x7eb2 028998 ifetch 1 ,contru 
+0x7eb3 028999 sub pdata ,at_comma ,null 
+0x7eb4 029000 rtn zero 
+0x7eb5 029001 call uchar2dialog 
+0x7eb6 029002 copy regc ,temp 
+0x7eb7 029003 call swap 
+0x7eb8 029004 arg 10 ,regb 
+0x7eb9 029005 imul32 regb ,pdata 
+0x7eba 029006 iadd temp ,pdata 
+0x7ebb 029007 copy pdata ,temp 
+0x7ebc 029008 branch string2dec_from_uart_done 
+:      029011 mem2_string2hex_from_uart:
+0x7ebd 029012 arg 2 ,loopcnt 
+0x7ebe 029013 branch string2hex_from_uart 
+:      029014 adss_string2hex_from_uart:
+0x7ebf 029015 arg 6 ,loopcnt 
+:      029019 string2hex_from_uart:
+0x7ec0 029020 ifetch 1 ,contru 
+0x7ec1 029021 call uchar2dialog 
+0x7ec2 029022 lshift4 pdata ,regc 
+0x7ec3 029023 ifetch 1 ,contru 
+0x7ec4 029024 call uchar2dialog 
+0x7ec5 029025 iadd regc ,pdata 
+0x7ec6 029026 istore 1 ,contw 
+0x7ec7 029027 loop string2hex_from_uart 
+0x7ec8 029028 rtn 
+:      029030 uchar2dialog:
+0x7ec9 029031 arg 0x3a ,temp 
+0x7eca 029032 isub temp ,null 
+0x7ecb 029033 nbranch uchar2dialog_number ,positive 
+0x7ecc 029034 arg 0x61 ,temp 
+0x7ecd 029035 isub temp ,null 
+0x7ece 029036 branch uchar2dialog_a2f ,positive 
+0x7ecf 029037 arg 0x37 ,temp 
+0x7ed0 029038 isub temp ,pdata 
+0x7ed1 029039 rtn 
+:      029040 uchar2dialog_number:
+0x7ed2 029041 arg 0x30 ,temp 
+0x7ed3 029042 isub temp ,pdata 
+0x7ed4 029043 rtn 
+:      029044 uchar2dialog_a2f:
+0x7ed5 029045 arg 0x57 ,temp 
+0x7ed6 029046 isub temp ,pdata 
+0x7ed7 029047 rtn 
+:      029049 pn9:
+0x7ed8 029050 copy temp ,alarm 
+0x7ed9 029051 setarg 0x1ff 
+0x7eda 029052 force 0 ,regb 
+:      029053 pn9_loop:
+0x7edb 029054 rshift3 pdata ,rega 
+0x7edc 029055 rshift rega ,rega 
+0x7edd 029056 ixor rega ,rega 
+0x7ede 029057 isolate1 0 ,rega 
+0x7edf 029058 setflag true ,9 ,pdata 
+0x7ee0 029059 rshift temp ,temp 
+0x7ee1 029060 isolate1 0 ,pdata 
+0x7ee2 029061 setflag true ,7 ,temp 
+0x7ee3 029062 rshift pdata ,pdata 
+0x7ee4 029063 increase 1 ,regb 
+0x7ee5 029064 compare 0 ,regb ,0x7 
+0x7ee6 029065 nbranch pn9_loop ,true 
+0x7ee7 029066 istoret 1 ,contw 
+0x7ee8 029067 loop pn9_loop 
+0x7ee9 029068 copy alarm ,temp 
+0x7eea 029069 rtn 
+:      029071 bcd_byte:
+0x7eeb 029072 div pdata ,10 
+0x7eec 029073 call wait_div_end 
+0x7eed 029074 quotient pdata 
+0x7eee 029075 lshift2 pdata ,rega 
+0x7eef 029076 lshift2 rega ,rega 
+0x7ef0 029077 remainder pdata 
+0x7ef1 029078 ior rega ,pdata 
+0x7ef2 029079 rtn 
+:      029081 bcd_pack:
+0x7ef3 029082 isolate1 0 ,rega 
+0x7ef4 029083 branch bcd_pack_hi ,true 
+0x7ef5 029084 iforce regb 
+0x7ef6 029085 rtn 
+:      029086 bcd_pack_hi:
+0x7ef7 029087 lshift2 pdata ,pdata 
+0x7ef8 029088 lshift2 pdata ,pdata 
+0x7ef9 029089 ior regb ,pdata 
+0x7efa 029090 istore 1 ,contw 
+0x7efb 029091 increase -2 ,contw 
+0x7efc 029092 rtn 
+:      029094 wait_div_end:
+0x7efd 029095 rtn modone 
+0x7efe 029096 branch wait_div_end 
+:      029099 bcd2:
+0x7eff 029100 store 8 ,mem_pdatatemp 
+0x7f00 029101 force 0x20 ,pdata 
+0x7f01 029102 force 8 ,loopcnt 
+0x7f02 029103 arg mem_bcd ,contw 
+:      029104 lpo_clear:
+0x7f03 029105 istore 1 ,contw 
+0x7f04 029106 loop lpo_clear 
+0x7f05 029107 arg mem_bcd ,contw 
+0x7f06 029108 increase 7 ,contw 
+0x7f07 029109 fetch 8 ,mem_pdatatemp 
+:      029110 bcd_loop:
+0x7f08 029111 div pdata ,10 
+0x7f09 029112 call wait_div_end 
+0x7f0a 029113 remainder pdata 
+0x7f0b 029114 or_into 0x30 ,pdata 
+0x7f0c 029115 istore 1 ,contw 
+0x7f0d 029116 increase -2 ,contw 
+0x7f0e 029117 quotient pdata 
+0x7f0f 029118 rtn blank 
+0x7f10 029119 branch bcd_loop 
+:      029124 bcd:
+0x7f11 029125 store 8 ,mem_pdatatemp 
+0x7f12 029126 force 0 ,pdata 
+0x7f13 029127 store 8 ,mem_bcd 
+0x7f14 029128 arg mem_bcd ,contw 
+0x7f15 029129 increase 7 ,contw 
+0x7f16 029130 fetch 8 ,mem_pdatatemp 
+0x7f17 029131 force 0 ,rega 
+:      029132 bcd_pack_loop:
+0x7f18 029133 div pdata ,10 
+0x7f19 029134 call wait_div_end 
+0x7f1a 029135 remainder pdata 
+0x7f1b 029136 call bcd_pack 
+0x7f1c 029137 increase 1 ,rega 
+0x7f1d 029138 quotient pdata 
+0x7f1e 029139 sub pdata ,9 ,null 
+0x7f1f 029140 nbranch bcd_pack_loop ,positive 
+0x7f20 029141 call bcd_pack 
+0x7f21 029142 isolate1 0 ,rega 
+0x7f22 029143 rtn true 
+0x7f23 029144 istore 1 ,contw 
+0x7f24 029145 rtn 
+:      029153 string_compare:
+0x7f25 029154 ifetch 1 ,rega 
+0x7f26 029155 ifetcht 1 ,regb 
+0x7f27 029156 isub temp ,null 
+0x7f28 029157 nrtn zero 
+0x7f29 029158 increase 1 ,rega 
+0x7f2a 029159 increase 1 ,regb 
+0x7f2b 029160 loop string_compare 
+0x7f2c 029161 force 0 ,null 
+0x7f2d 029162 rtn 
+:      029165 ceiling:
+0x7f2e 029166 isub temp ,null 
+0x7f2f 029167 nrtn positive 
+0x7f30 029168 deposit temp 
+0x7f31 029169 rtn 
+:      029171 swap:
+0x7f32 029172 iadd temp ,pdata 
+0x7f33 029173 isub temp ,temp 
+0x7f34 029174 isub temp ,pdata 
+0x7f35 029175 rtn 
+:      029177 clean_mem:
+0x7f36 029178 arg 0x200 ,loopcnt 
+0x7f37 029179 arg 0x4000 ,contw 
+0x7f38 029180 branch memset0 
+:      029182 slave_savelist:
+0x7f39 029183 fetch 5 ,mem_sync_clke 
+0x7f3a 029184 store 5 ,mem_pdatatemp 
+0x7f3b 029185 fetch 2 ,mem_clks_per_lpo 
+0x7f3c 029186 istore 2 ,contw 
+0x7f3d 029187 setarg 0 
+0x7f3e 029188 setflag match ,7 ,pdata 
+0x7f3f 029189 setflag wake ,6 ,pdata 
+0x7f40 029190 setflag sync ,5 ,pdata 
+0x7f41 029191 setflag attempt ,4 ,pdata 
+0x7f42 029192 istore 1 ,contw 
+0x7f43 029193 branch savelist_2 
+:      029196 le_savelist:
+0x7f44 029197 fetch 5 ,mem_sync_clke 
+0x7f45 029198 store 5 ,mem_pdatatemp 
+0x7f46 029199 fetch 1 ,mem_le_ch_mapped 
+0x7f47 029200 istore 1 ,contw 
+0x7f48 029201 fetch 2 ,mem_le_event_count 
+0x7f49 029202 arg 0x0fff ,contr 
+0x7f4a 029203 iand contr ,pdata 
+0x7f4b 029204 setflag match ,15 ,pdata 
+0x7f4c 029205 setflag wake ,14 ,pdata 
+0x7f4d 029206 setflag sync ,13 ,pdata 
+0x7f4e 029207 setflag attempt ,12 ,pdata 
+0x7f4f 029208 istore 2 ,contw 
+0x7f50 029209 branch savelist_2 
+:      029210 savelist:
+0x7f51 029211 store 8 ,mem_pdatatemp 
+:      029212 savelist_2:
+0x7f52 029213 fetch 1 ,mem_seqi 
+0x7f53 029214 rtneq 0x7f 
+0x7f54 029215 and_into 0x7f ,pdata 
+0x7f55 029216 lshift3 pdata ,pdata 
+0x7f56 029217 arg mem_savelist ,contw 
+0x7f57 029218 iadd contw ,contw 
+0x7f58 029219 fetch 8 ,mem_pdatatemp 
+0x7f59 029220 istore 8 ,contw 
+0x7f5a 029221 fetch 1 ,mem_seqi 
+0x7f5b 029222 isolate1 7 ,pdata 
+0x7f5c 029223 increase 1 ,pdata 
+0x7f5d 029224 and_into 0x7f ,pdata 
+0x7f5e 029225 setflag true ,7 ,pdata 
+0x7f5f 029226 store 1 ,mem_seqi 
+0x7f60 029227 fetch 8 ,mem_pdatatemp 
+0x7f61 029228 rtn 
+:      029230 dirty_mem:
+0x7f62 029231 arg 0x800 ,loopcnt 
+0x7f63 029232 arg 0 ,contw 
+0x7f64 029233 setarg 0x01010101 
+0x7f65 029234 branch memset8 
+:      029237 callback_func:
+0x7f66 029238 rtn blank 
+0x7f67 029239 copy pdata ,pc 
+:      029242 wait_uarttx:
+0x7f68 029243 hfetch 2 ,core_uart_txitems 
+0x7f69 029244 nbranch wait_uarttx ,blank 
+0x7f6a 029245 rtn 
+:      029247 get_uart_rrptr:
+0x7f6b 029248 hfetch 2 ,core_uart_rrptr 
+0x7f6c 029249 copy pdata ,contru 
+0x7f6d 029250 rtn 
+:      029252 get_uart_twptr:
+0x7f6e 029253 hfetch 2 ,core_uart_twptr 
+0x7f6f 029254 copy pdata ,contwu 
+0x7f70 029255 rtn 
+:      029257 send_mem_to_uart:
+0x7f71 029258 copy contr ,rega 
+0x7f72 029259 call get_uart_twptr 
+0x7f73 029260 copy rega ,contr 
+:      029261 send_mem_to_uart0:
+0x7f74 029262 call uart_copy_tx_bytes 
+0x7f75 029263 call uartd_send 
+0x7f76 029264 branch wait_uarttx 
+:      029266 ice_break:
+0x7f77 029267 hjam 0x1 ,core_ice_ctrl 
+0x7f78 029268 rtn 
+:      029270 ice_setbp:
+0x7f79 029271 hstore 2 ,core_ice_break0 
+0x7f7a 029272 hfetch 1 ,core_ice_ctrl 
+0x7f7b 029273 set1 4 ,pdata 
+0x7f7c 029274 hstore 1 ,core_ice_ctrl 
+0x7f7d 029275 rtn 
+:      029276 ice_setbp2:
+0x7f7e 029277 hstore 2 ,core_ice_break1 
+0x7f7f 029278 hfetch 1 ,core_ice_ctrl 
+0x7f80 029279 set1 6 ,pdata 
+0x7f81 029280 hstore 1 ,core_ice_ctrl 
+0x7f82 029281 rtn 
+:      029283 ice_set_write_bp:
+0x7f83 029284 hstore 2 ,core_ice_break0 
+0x7f84 029285 hjam 0x30 ,core_ice_ctrl 
+0x7f85 029286 rtn 
+:      029288 test_no_white:
+0x7f86 029289 hfetch 1 ,core_config 
+0x7f87 029290 set1 whiteoff_bit ,pdata 
+0x7f88 029291 hstore 1 ,core_config 
+0x7f89 029292 rtn 
+:      029294 test_enable_white:
+0x7f8a 029295 hfetch 1 ,core_config 
+0x7f8b 029296 set0 whiteoff_bit ,pdata 
+0x7f8c 029297 hstore 1 ,core_config 
+0x7f8d 029298 rtn 
+:      029300 check_uart_tx_buff:
+0x7f8e 029301 hfetch 2 ,core_uart_txitems 
+0x7f8f 029302 arg uart_air_control_threshold ,temp 
+:      029303 pdata_sub_temp:
+0x7f90 029304 isub temp ,null 
+0x7f91 029305 rtn 
+:      029311 fifo_in:
+0x7f92 029312 set1 mark_ext_patch ,mark 
+0x7f93 029313 bpatch patch37_5 ,mem_patch37 
+0x7f94 029314 ifetcht util_fifo_len ,rega 
+0x7f95 029315 and temp ,0xff ,pdata 
+0x7f96 029316 nbranch fifo_in_push ,blank 
+0x7f97 029317 rshift8 temp ,pdata 
+0x7f98 029318 istore util_fifo_len ,rega 
+:      029319 fifo_in_push:
+0x7f99 029320 increase util_fifo_len + util_fifo_offset ,rega 
+0x7f9a 029321 ifetch 1 ,rega 
+0x7f9b 029322 nbranch assert ,blank 
+0x7f9c 029323 fetch 1 ,mem_fifo_temp 
+0x7f9d 029324 istore 1 ,rega 
+0x7f9e 029325 rtn 
+:      029330 fifo_out:
+0x7f9f 029331 set1 mark_ext_patch ,mark 
+0x7fa0 029332 bpatch patch37_6 ,mem_patch37 
+0x7fa1 029333 arg util_fifo_len ,loopcnt 
+0x7fa2 029334 ifetch util_fifo_len ,rega 
+0x7fa3 029335 rtn blank 
+:      029336 fifo_out_loop:
+0x7fa4 029337 ifetch 1 ,rega 
+0x7fa5 029338 nbranch fifo_out_end ,blank 
+0x7fa6 029339 increase 1 ,rega 
+0x7fa7 029340 loop fifo_out_loop 
+0x7fa8 029341 branch assert 
+:      029342 fifo_out_end:
+0x7fa9 029343 arg 0 ,temp 
+0x7faa 029344 istoret 1 ,rega 
+0x7fab 029345 rtn 
+:      029350 fifo_is_empty:
+0x7fac 029351 ifetch util_fifo_len ,rega 
+0x7fad 029352 rtn 
+:      029357 fifo_is_full:
+0x7fae 029358 ifetch 1 ,rega 
+0x7faf 029359 rtn 
+:      029362 fifo_is_near_full:
+0x7fb0 029363 ifetch 2 ,rega 
+0x7fb1 029364 rtn 
+:      029368 fifo_content_count:
+0x7fb2 029369 arg 0 ,temp 
+:      029370 fifo_content_count_loop:
+0x7fb3 029371 fetch 1 ,contr 
+0x7fb4 029372 loop fifo_content_count_loop ,blank 
+0x7fb5 029373 increase 1 ,temp 
+0x7fb6 029374 loop fifo_content_count_loop 
+0x7fb7 029375 copy temp ,pdata 
+0x7fb8 029376 rtn 
+:      029378 not_greater_than:
+0x7fb9 029379 isub temp ,null 
+0x7fba 029380 nrtn positive 
+0x7fbb 029381 copy temp ,pdata 
+0x7fbc 029382 rtn 
Index: btkb/output/bt_program23.meta
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/btkb/output/bt_program23.meta	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/btkb/output/bt_program23.meta	(working copy)
@@ -0,0 +1,29384 @@
+define REVD
+//define FPGA
+define PATCH
+define ROMCODE
+//define RAM_VERSION
+//define CLK6M
+//define DEBUG_MALLOC
+//define DEBUG_H4LOG_ENABLE
+//define DEBUG_LIGHT_STATE
+//define E2_LOG
+//define LMP_DBG
+
+define SIMPLE_PAIRING
+define COMPILE_RFCOMM
+define COMPILE_SHUTTER
+define COMPILE_HCI_BCSP
+define COMPILE_IR
+define COMPILE_KEYBOARD
+define COMPILE_MOUSE
+define COMPILE_MODULE
+define COMPILE_AT
+define COMPILE_PRCP
+define COMPILE_USB
+define COMPILE_DONGLE
+define COMPILE_LE
+
+INCLUDE "bt_format"
+
+org 0x0000		// start from patch ram address start
+define BT_30
+define BLE
+//define BLE_PINCODE
+define P24G
+//define GPIO_TEST_01
+define TX_POWER_MAX
+//define LE_BATTERY_LEVEL_DISPLAY
+define WAKE_DEV
+
+	bmark1 mark_ext_patch,patch_ext
+	beq patch00_0,p_soft_reset
+	beq patch00_3,p_main_loop
+	beq patch00_5,p_main_loop_end
+	beq patch00_6,p_connection_incontext
+	beq patch01_2,p_idle_page_mode_r0
+	beq patch04_7,p_role_switch_check
+	beq patch05_0,p_role_switch_prepare0_0
+	beq patch05_3,p_roles_replyto_fhs
+	beq patch08_2,p_slave_loop
+	beq patch08_3,p_slave_notmatch
+	beq patch0a_0,p_prepare_tx_not_sco
+	beq patch0a_4,p_tx_l2cap_type
+	beq patch06_1,p_context_new
+	beq patch06_3,p_context_search
+	beq patch12_0,p_shutdown_radio
+	beq patch12_2,p_set_freq_rx
+	beq patch12_4,p_set_freq_tx
+	beq patch12_5,p_initialize_radio_cont
+	beq patch16_0,p_lpm_sleep
+	beq patch16_1,p_lpm_recover_clk
+	beq patch16_2,p_lpm_dispatch
+	beq patch16_3,p_lpm_dispatch_next
+	beq patch16_6,p_lpm_dispatch_unconn
+	beq patch17_1,p_lpm_cal_xtal_startup
+	branch assert
+
+patch_ext:
+  	beq patch23_0,p_l2cap_rx_multiplexing
+  	beq patch23_3,p_l2cap_process_one_signal
+	beq patch24_3,p_ml2cap_call_proc_signal
+  	beq patch24_4,p_l2cap_malloc
+  	beq patch26_2,p_le_init_conn
+	beq patch27_3,le_slave_unsync + 3
+	beq patch27_6,p_le_enable
+	beq patch27_7,p_le_disable
+	beq patch29_2,p_lerx_nopayload
+	beq patch29_3,p_le_transmit_receive_sifs
+	beq patch29_4,p_le_transmit
+	beq patch29_6,p_le_send_adv_ind
+	beq patch2a_6,p_le_update_param
+	beq patch2c_1,p_le_prepare_tx
+	beq patch2c_3,p_le_prepare_tx_cmd
+	beq patch2c_4,p_le_prepare_smp
+	beq patch2c_5,p_le_prepare_att
+	beq patch2d_1,p_le_send_non_l2cap
+	beq patch2d_2,p_le_parse
+	beq patch2d_3,p_le_parse_ll
+	beq patch2d_6,p_le_parse_smp
+	beq patch2d_7,p_le_parse_att
+	beq patch30_7,p_ui_timer_check
+	beq patch31_5,p_check_51cmd_once
+	beq patch31_6,p_check_51cmd_once_continue
+	beq patch31_7,p_check_enter_hibernate	
+	beq patch37_5,p_fifo_in
+	beq patch39_5,p_kb_init
+	beq patch39_7,p_app_process_bb_event
+	beq patch3a_0,p_kb_bb_event_timer
+	beq patch33_4,p_hid_rx_process
+	beq patch33_7,p_scheduler_process_sdp_succ
+	beq patch3c_2,p_parse_lmp
+	beq patch3c_3,p_send_lmp
+	beq patch3c_6,p_process_conn_sm
+	branch assert
+
+
+p_context_search:
+	arg mem_context,rega
+	force 1,loopcnt
+	branch context_search_loop
+
+p_context_new:
+	arg mem_context,contw
+	arg 10,loopcnt
+	call memset0
+	branch context_new+2
+	
+	
+p_soft_reset: 
+	hfetch 1,0x813b
+	store 1,mem_wakup_from_power_flag
+	hjam lock_otp,core_misc_ctrl
+	branch soft_reset+2
+
+
+
+p_main_loop:	
+	call p_ipc_timer_check
+	call p_ui_check_timer_setup
+	call p_ipc_rx
+	call p_bt_status_handle
+	branch main_loop+2
+
+p_bt_status_handle:
+	fetcht 2,mem_ui_state_map
+	fetch 1, mem_le_adv_enable
+	nsetflag blank,UI_STATE_BLE_ADV,temp
+	fetch 1,mem_scan_mode
+	nsetflag blank,UI_STATE_BT_DISCOVERY,temp
+	storet 2, mem_ui_state_map
+	rtn	
+
+p_main_loop_end:
+	call inquiry_scan_dispatch
+	call page_scan_dispatch
+	call connection_dispatch 
+	call p_g24_dispatch
+	branch main_loop+15
+
+
+p_ipc_rx:
+	fetch 1,mem_ssp_enable
+	branch p_ipc_rx0,blank
+	fetch 1,mem_sp_local_key_invalid	// simple pairing is not ready
+	rtn blank
+p_ipc_rx0:
+	call p_check_ipc_2bt
+	rtn user
+	byteswap pdata,pdata
+	copy pdata,contr
+	call p_ipc_rx_byte
+	store 1,mem_ipc_rx_type
+	beq IPC_TYPE_CMD,p_ipc_rx_cmd
+	beq IPC_TYPE_24G,p_ipc_rx_24g
+	copy pdata,temp
+	copy contr,rega
+	fetch 1,mem_context
+	bbit0 state_inconn,p_ipc_abondon_rx_data
+	copy rega,contr
+	rtnmark0 mark_context
+	copy temp,pdata
+	beq IPC_TYPE_HID,p_ipc_rx_hid
+	beq IPC_TYPE_BLE,p_ipc_rx_ble
+	branch assert
+
+p_ipc_abondon_rx_data:
+	copy rega,contr
+	arg mem_tst_pktcnt_sync,contw
+	branch p_ipc_rx_cpy
+
+p_ipc_rx_cmd:
+	call p_ipc_rx_byte
+	call p_ipc_rx_byte
+	store 1,mem_fifo_temp
+	call p_ipc_next_rx
+	branch ui_ipc_send_cmd
+p_ipc_next_rx:
+	call p_ipc_rx_updata_contr
+	copy contr,temp
+	byteswap temp,temp
+	storet 2,mem_ipc_2bt_read_index
+	rtn
+	
+p_ipc_rx_24g:
+	arg mem_24g_txbuf_new,contw
+	branch p_ipc_rx_cpy
+
+p_ipc_rx_hid:
+	call p_ipc_rx_byte
+	copy pdata,rega
+	copy contr,pdata
+	store 2,mem_contr
+	call l2cap_malloc_is_fifo_nearly_full
+	nbranch p_ipc_rx_hid0,blank
+	increase 1,rega
+	call hid_malloc_tx_buff
+	branch p_ipc_rx_hid1
+p_ipc_rx_hid0:
+	arg mem_uart_packet,contw
+	copy rega,loopcnt
+	fetch 2,mem_contr
+	copy pdata,contr
+	branch p_ipc_copy
+
+p_ipc_rx_hid1:	
+	add contw,-2,regb
+	fetch 2,mem_hid_int_remote_cid
+	istore 2,contw
+	setarg 0xa1
+	istore 1,contw
+	add rega,-1,loopcnt
+	fetch 2,mem_contr
+	copy pdata,contr
+	call p_ipc_copy
+	copy regb,contr
+	ifetch 2,contr
+	store 2,mem_kb_last_data
+	add pdata,2,loopcnt
+	call memcpy
+	jam 100,mem_kb_wake_timer
+	rtn	
+p_ipc_rx_ble:	
+	copy contr,rega
+p_ipc_rx_ble_read_fifo:
+	fetch 1,mem_queue_write
+	add pdata,1,temp
+	and temp,0x03,temp
+	storet 1,mem_queue_write
+	mul32 pdata,7,pdata
+	arg mem_uart_packet,contw
+	iadd contw,contw
+	
+	copy rega,contr
+	call p_ipc_rx_byte
+	copy contr,rega
+	increase -1,pdata
+	copy pdata,loopcnt
+	increase 7,pdata
+	store 1,mem_le51_tx_length
+	copy rega,contr
+	call p_ipc_rx_byte
+	copy contr,rega
+	beq 01,p_report1
+	beq 02,p_report2
+	beq 03,p_report3
+	beq 04,p_report4
+	beq 06,p_report6
+	beq 08,p_report8
+p_report1:
+	fetch 2,mem_att_report_standard_key	
+p_set_report:
+	istore 2,contw
+	copy rega,contr
+	call p_ipc_copy
+	call le_xtype_fifo_is_near_full
+	nrtn blank
+	jam ATTOP_HANDLE_VALUE_NOTIFICATION,mem_fifo_temp
+	branch le_xtype_fifo_in
+
+p_report2:
+	fetch 2,mem_att_report_media_key
+	branch p_set_report
+p_report3:
+	fetch 2,mem_att_report_system_ctrl
+	branch p_set_report
+p_report6:
+	fetch 2,mem_att_report_game
+	branch p_set_report
+p_report8:
+	fetch 2,mem_att_report_game
+	branch p_set_report
+
+	
+p_report4:
+	fetch 2,mem_att_report_battery
+	istore 2,contw
+	copy rega,contr
+	branch p_ipc_copy
+
+
+
+p_ui_check_timer_setup:
+	fetcht 4,mem_ui_check_timer_setup
+	copy clkn_bt,pdata
+	isub temp,pdata
+	fetcht 2,mem_customize_timer_setup		// * 0.3125ms
+	idiv temp
+	call wait_div_end
+	quotient pdata
+	rtn blank
+	copy clkn_bt,temp
+	storet 4,mem_ui_check_timer_setup
+	fetch 1,mem_customize_timer
+	increase 1,pdata
+	store 1,mem_customize_timer
+	rtn
+
+
+
+//1600 == 500ms
+p_ipc_timer_check:
+	fetcht 4,mem_ipc_last_check_timer
+	copy clkn_bt,pdata
+	isub temp,pdata
+	//arg 3200,temp
+	arg 1600,temp
+	idiv temp
+	call wait_div_end
+	quotient pdata
+	rtn blank
+	copy clkn_bt,temp
+	storet 4,mem_ipc_last_check_timer
+	fetcht 2,mem_ipc_bt_timer
+	byteswap temp,temp
+	iadd temp,pdata
+	byteswap pdata,pdata
+	store 2,mem_ipc_bt_timer
+	byteswap pdata,pdata
+	and pdata,0x3,pdata
+	rtnne 0
+p_adc_check_hvin:
+	hjam 0xaf,rf_adc_mode	//read HVIN voltage directly
+p_read_adc:
+	hfetch 1,core_uart_baud + 1
+	set1 7,pdata
+	hstore 1,core_uart_baud + 1 
+	hfetch 1,rf_adc_ch
+	or_into 0x30,pdata
+	hstore 1,rf_adc_ch
+	hjam 0x74,rfen_adc
+	hjam 0x7c,rfen_adc
+	hjam 0xaa,rf_adc_gc
+	nop 5000
+	hfetcht 2,core_adc_sum
+	hfetch 1,core_uart_baud + 1
+	set0 7,pdata
+	hstore 1,core_uart_baud + 1
+	byteswap temp,temp
+	storet 2,mem_adc_current_value
+	rtn
+
+p_ipc_rx_cpy:
+	call p_ipc_rx_byte
+	copy pdata,loopcnt
+p_ipc_copy:
+	call p_ipc_cpy_loop
+	branch p_ipc_next_rx
+	
+p_ipc_cpy_loop:
+	call p_ipc_rx_byte
+	istore 1,contw
+	loop p_ipc_cpy_loop
+	rtn
+
+p_ipc_rx_byte:
+	call p_ipc_rx_updata_contr
+	ifetch 1,contr
+	rtn
+
+p_ipc_rx_updata_contr:
+	setarg mem_ipc_2bt_fifo_end
+	isub contr,null
+	nrtn zero
+	arg mem_ipc_2bt_fifo_head,contr
+	rtn
+
+p_ipc_tx_evt:
+	arg 3,loopcnt
+	arg mem_ipc_tx_evt_buff,contr
+p_ipc_tx_cpy:
+	copy contr,rega
+	fetch 2,mem_ipc_2C51_write_index
+	byteswap pdata,pdata
+	copy pdata,contw
+	copy rega,contr
+p_ipc_tx_loop:
+	ifetch 1,contr
+	istore 1,contw
+	call p_ipc_tx_updata_contw
+	loop p_ipc_tx_loop
+	copy contw,pdata
+	byteswap pdata,pdata
+	store 2,mem_ipc_2C51_write_index
+	rtn
+p_ipc_tx_updata_contw:
+	setarg mem_ipc_2C51_fifo_end
+	isub contw,null
+	nrtn zero
+	arg mem_ipc_2C51_fifo_head,contw
+	rtn
+
+//user: no data
+p_check_ipc_2c51:
+	fetch 2,mem_ipc_2C51_read_index
+	fetcht 2,mem_ipc_2C51_write_index
+	branch p_check_ipc_common
+p_check_ipc_2bt:
+	fetch 2,mem_ipc_2bt_read_index
+	fetcht 2,mem_ipc_2bt_write_index
+p_check_ipc_common:
+	isub temp,null
+	branch enable_usr,zero
+	branch disable_usr
+
+
+p_ui_timer_check:				// 100ms_event   clock overflow
+	copy clkn_bt,pdata
+	store 4,mem_ui_timer_last_btclk_temp
+	fetcht 1,mem_ui_timer_last_btclk+3
+	fetch 1,mem_ui_timer_last_btclk_temp+3
+	isub temp,null
+	ncall p_ui_timer_reinit,positive
+	branch ui_timer_check+2
+
+p_ui_timer_reinit:
+	fetcht 4,mem_ui_timer_last_btclk_temp
+	storet 4,mem_ui_timer_last_btclk
+	storet 4,mem_ipc_last_check_timer
+	storet 4,mem_ui_check_timer_setup
+	rtn
+ 
+	
+p_app_process_bb_event:
+	arg mem_ipc_fifo_bt2c51,rega
+	call fifo_out
+	rtn blank
+	//reaching here mains c51 cannot get bb event.
+	copy pdata,regc
+	call p_app_event_normal_process
+	branch app_process_bb_event_priority
+p_app_event_normal_process:
+	rtneq BT_EVT_LINKKEY_GENERATE
+	beq BT_EVT_LE_CONNECTED,scale_process_le_conn
+	beq BT_EVT_LE_DISCONNECTED,scale_process_le_discon
+	beq BT_EVT_HID_CONNECTED,mouse_bt_hid_connected
+	beq BT_EVT_BB_DISCONNECTED,p_app_bb_event_bb_disconn
+	branch app_event_normal_process
+
+p_app_bb_event_bb_disconn:
+	jam 0,mem_unsniff2sniff_timer_count
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BT_RECONNECT,app_bb_event_bb_reconn_disconn
+	isolate0 UI_STATE_BT_SETUP_COMPLETE,pdata
+ 	call p_app_discard_event,true
+	branch app_bb_event_bb_reconn_disconn
+
+
+p_app_discard_event:
+	fetch 1,mem_pincode_state
+	rtneq pincode_state_pincode_ready
+	branch app_discard_event
+
+
+// 1clkn_bt = 0.3125ms
+p_kb_bb_event_timer:
+	storet 1,mem_app_evt_timer_count
+	fetch 1,mem_ipc_bt_100ms_timer
+	increase 1,pdata
+	store 1,mem_ipc_bt_100ms_timer
+p_kb_bb_event_100ms_loop:
+	fetch 1,mem_app_evt_timer_count
+	rtn blank
+	increase -1,pdata
+	store 1,mem_app_evt_timer_count
+	call p_kb_check_hid_handshake_timer
+	call p_kb_long_sleep_timer
+	call p_kb_wake_remote_dev
+	branch p_kb_bb_event_100ms_loop
+	
+p_kb_wake_remote_dev:
+	fetch 1,mem_suspend_flag
+	nrtn blank
+	fetch 1,mem_kb_wake_timer
+	rtn blank
+	increase -1,pdata
+	store 1,mem_kb_wake_timer
+	rtnne 1
+	jam 100,mem_kb_wake_timer
+	//call app_check_sniff
+	//nrtn true
+	fetch 2,mem_ui_state_map
+	//rtnbit0 UI_STATE_BT_HID_HANDSHAKE
+	rtnbit0 UI_STATE_BT_SNIFF
+	fetch 2,mem_kb_last_data
+	rtn blank
+	call l2cap_malloc_is_fifo_empty
+	nrtn blank
+	fetch 2,mem_kb_last_data
+	copy pdata,rega
+	call hid_malloc_tx_buff
+	add rega,2,loopcnt
+	arg mem_kb_last_data+2,contr
+	branch memcpy
+	
+p_kb_check_hid_handshake_timer:
+	fetch 1,mem_hid_handshake_timer_count
+	rtn blank
+	increase -1,pdata
+	store 1,mem_hid_handshake_timer_count
+	nrtn blank
+	call app_evt_hid_handshake
+	branch hid_handshake_event
+
+p_kb_long_sleep_timer:
+	fetch 1,mem_24g_enter_lpm_timer
+	rtn blank
+	increase -1,pdata
+	store 1,mem_24g_enter_lpm_timer
+	rtn
+	
+
+p_c51_user_event:
+	copy regc,pdata
+	and_into BT_EVT_TIMER_MASK,pdata
+	rtneq BT_EVT_TIMER_INIT
+	call p_c51_ext_evt
+	copy regc,pdata
+	rtn blank
+	store 1,mem_ipc_tx_evt
+	branch p_ipc_tx_evt
+p_c51_ext_evt:
+	copy regc,pdata
+	beq BT_EVT_ENTER_SNIFF,p_kb_wake_enable
+	beq BT_EVT_BB_DISCONNECTED,p_bk_wake_disable
+	rtn
+p_kb_wake_enable:
+	jam 40,mem_kb_wake_timer
+	setarg 0x0a
+	store 2,mem_kb_last_data
+	fetch 2,mem_hid_int_remote_cid
+	istore 2,contw
+	setarg 0x01a1
+	istore 2,contw
+	rtn
+p_bk_wake_disable:
+	jam 0,mem_kb_wake_timer
+	arg 20,loopcnt
+	arg mem_kb_last_data,contw
+	branch clear_mem
+	
+
+/*
+****************************************************************************************************
+* All Timer End
+****************************************************************************************************
+*/
+
+p_lpm_recover_clk:
+	jam 0x7f,mem_seqi
+	call lpm_recover_clk+2
+	fetch 1,mem_hibernate_flag
+	rtn blank
+	jam 0,mem_hibernate_flag
+	copy clkn_bt,pdata
+	store 4,mem_ipc_last_check_timer
+	rtn
+
+
+
+p_lpm_cal_xtal_startup:
+	fetch 1,mem_lpm_xtalcnt
+	nrtn blank
+	hjam clksel_rc,core_clksel
+	setarg 0xf0c
+	call lpm_write_config
+	setarg 200000
+	call sleep
+	until null,lpo_edge
+	copy lpo_time,alarm
+	call xtal_fast_wake
+	nop 5000
+	branch lpm_cal_xtal_startup+12
+
+
+p_lpm_dispatch:
+	rtnmark1 mark_24g
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BLE_CONNECTED,lpm_dispatch+2
+	call lpo_calibration
+	fetch 3,mem_clks_per_lpo
+	rtn blank
+	//fetch 2,mem_context + coffset_tsniff
+	//rtn blank										/* role switch */
+	fetch 1,mem_lpm_mode
+	rtn blank
+
+	call l2cap_malloc_is_fifo_empty
+	nrtn blank
+	call lpm_check_wake_lock
+	nrtn blank
+	call xtal_fast_wake
+	fetch 1,mem_ssp_enable
+	branch lpm_dispatch0,blank
+	fetch 1,mem_sp_local_key_invalid	// simple pairing is not ready
+	rtn blank
+	branch lpm_dispatch0
+
+p_check_IPC_for_LPM:
+	call p_check_ipc_2bt
+	nrtn user
+	call p_check_ipc_2c51
+	nrtn user
+	jam 1,mem_c51_lpm_lock
+	jam SYC_TASK_LPM,mem_c51_flag
+	call p_c51_wait
+	branch p_check_ipc_2bt
+	
+p_lpm_dispatch_next:
+	call p_check_IPC_for_LPM
+	nrtn user
+	fetch 1,mem_c51_lpm_lock
+	nrtn blank
+	branch lpm_dispatch1
+
+p_c51_wait:
+	fetch 1,mem_c51_flag
+	nop 10
+	bne 0,p_c51_wait
+	rtn
+
+
+p_lpm_dispatch_unconn:
+	call p_check_IPC_for_LPM
+	nrtn user
+	fetch 1,mem_c51_lpm_lock
+	nrtn blank
+	branch lpm_dispatch_unconn + 2
+
+
+
+p_initialize_radio_cont:
+	call p_switchto_dpllclk
+	branch initialize_radio_cont + 4	
+p_switchto_dpllclk:
+	fetch 1,mem_lpm_xtalcnt
+	nbranch p_switchdpll_nocal,blank
+	call lpm_cal_xtal_startup
+	nop 30000
+	nop 30000
+	nop 30000
+p_switchdpll_nocal:
+	call switchto_dpllclk
+	hjam clksel_xtal,core_clksel
+	hfetch 1,rf_clkpll_frac+2
+	and_into 0xcf,pdata
+	hstore 1,rf_clkpll_frac+2
+	or_into 0x30,pdata
+	hstore 1,rf_clkpll_frac+2
+	rtn
+
+
+
+p_set_freq_rx:
+	storet 1,mem_last_freq
+	add temp,rx_freq_offset,rega			/* index to frequency */
+	branch set_freq_rx + 4	
+
+p_set_freq_tx_common:
+	storet 1,mem_last_freq
+	add temp,0,rega			// 0--2M 1--1M 2--M  index to frequency 
+	branch rf_write_freq
+	
+p_set_freq_tx:
+	call p_set_freq_tx_common
+	setarg param_pll_setup
+	call sleep
+p_txon:
+	hjam 0x1,rfen_adc
+	hjam 0x3c,rfen_rx
+	hjam 0xe0,rfen_tx
+	hjam 0x12,0x96d   /*Max added, for best Pout*/
+	nop 10 /* wait LDOs to turn ON*/
+	hjam 0x01, rfen_mdm
+	hjam 0x3d, rfen_mdm
+	nop 10 /* wait tx blocks to turn ON*/
+	hjam 0xb7,rfen_sn
+	nop 10 /* wait tx lo buffer to turn ON*/
+	hjam 0x7d, rfen_mdm
+	fetch 1,mem_24g_pairing_sm
+	bne STATE_24G_PAIRING_SUCCESS,p_txpower_0dbm
+	fetch 5,mem_5db_tx_power_param
+	istore 5,contw
+	ifetch 5,contr
+	istore 5,contw
+	hjam 0xdf, 0x956
+	call p_set_tx_step_power
+	hjam 0xdf, 0x955
+	rtn
+
+p_txpower_0dbm:
+	fetch 5,mem_24g_paring_tx_power_param
+	istore 5,contw
+	ifetch 5,contr
+	istore 5,contw
+ 	hjam 0xc2, 0x956
+ 	hjam 0xd0, 0x955
+	rtn
+
+	
+	//pout ramp up
+	//c0 ~df	
+p_set_tx_step_power:
+	//hjam 0xff, 0x956   //hjam 0xce, 0x956 only for yc1021C1_#7, BQB, -2.9dBm. changed for ramp_up/down
+	nop 4
+	hjam 0xd1, 0x955
+	nop 4
+	hjam 0xd2, 0x955
+	nop 4
+	hjam 0xd4, 0x955
+	nop 4
+	//d0~df
+	//hjam 0xdf, 0x955  //hjam 0xd7, 0x955 only for yc1021C1_#7, BQB, -2.9dBm. changed for ramp_up/down
+ 	rtn
+
+p_tx_ramp_down_common:
+	hjam 0xd4, 0x955
+	nop 4
+	hjam 0xd2, 0x955
+	nop 4
+	hjam 0xd1, 0x955
+	nop 4 
+	hjam 0xd0, 0x955  //hjam 0xd8, 0x955 only for yc1021C1_#7, BQB, -2.9dBm. changed for ramp_up/down
+	hjam 0xc0, 0x956
+	rtn
+
+p_shutdown_radio:
+	branch shutdown_radio+2,is_rx
+	call p_tx_ramp_down_common
+	branch shutdown_radio+2
+
+p_kb_send_process:	
+	call l2cap_malloc_is_fifo_nearly_full
+	nrtn blank
+	branch p_ipc_rx
+
+p_kb_before_hibernate: 
+	enable user
+	hfetch 4,0x8138
+	setflag user,26,pdata
+	hstore 4,core_lpm_reg
+	call  lpm_write_ctrl
+	jam 1,mem_lpm_current_mult
+p_kb_bt_lpm_before:
+	rtn
+
+p_kb_init:
+	fetch 1,mem_le_name_len
+	increase 2,pdata
+	store 1,mem_le_scan_data_len	//update scan_rsp len
+	jam 0,mem_c51_flag
+	jam 6,mem_connection_options
+	call app_lpm_mult_enable
+	setarg p_kb_send_process
+	store 2,mem_cb_bt_process
+	setarg p_kb_bt_lpm_before
+	store 2,mem_cb_before_lpm
+	setarg p_c51_user_event
+	store 2,mem_cb_bb_event_process
+	setarg p_mouse_idle
+	store 2,mem_cb_idle_process
+	setarg p_ipc_rx
+	store 2,mem_cb_le_process
+	setarg p_kb_before_hibernate
+	store 2,mem_cb_before_hibernate
+	setarg mem_ipc_2bt_fifo_head
+	byteswap pdata,pdata
+	store 2,mem_ipc_2bt_read_index
+	store 2,mem_ipc_2bt_write_index
+	call lpm_disable_exen_output
+	setarg mem_ipc_2C51_fifo_head
+	byteswap pdata,pdata
+	store 2,mem_ipc_2C51_read_index
+	store 2,mem_ipc_2C51_write_index
+	fetch 1,mem_hibernate_flag
+	beq 0x5a,p_device_init_init_hibwake
+	branch p_deveice_init_wake,wake
+	fetch 2,mem_adc_0v
+	byteswap pdata,pdata
+	store 2,mem_adc_0v
+	fetch 2,mem_adc_3v
+	byteswap pdata,pdata
+	store 2,mem_adc_3v
+	call p_init_adc_from_otp
+	fetch 8,mem_temp
+	nbranch p_deveice_init_reset,blank
+	fetch 2,0x4ad4
+	byteswap pdata,pdata
+	branch p_deveice_init_reset,blank
+	store 2,mem_adc_3v
+p_deveice_init_reset:
+	call p_le_queue_init
+	jam BT_EVT_RESET,mem_ipc_tx_evt
+p_device_init_common:
+	call p_ipc_tx_evt
+	jam 0,mem_hibernate_flag
+	hjam START_C51_CORE,core_docd_ctrl
+	rtn
+p_deveice_init_wake:
+	jam BT_EVT_WAKEUP,mem_ipc_tx_evt
+	branch p_device_init_common
+p_device_init_init_hibwake:
+	copy auxcnt,pdata
+	branch p_enter_hibernate_continue,blank
+	call init_lmp_work
+	call l2cap_init_work
+	setarg 0
+	store 8,mem_context
+	store 2,mem_ui_state_map
+	copy clkn_bt,pdata
+	store 4,mem_ipc_last_check_timer
+	jam BT_EVT_HIBERNATE_WAKE,mem_ipc_tx_evt
+	branch p_device_init_common
+
+p_init_adc_from_otp:
+	call otp_enable_chgpump
+	setarg 0x7e0
+	arg mem_temp,rega
+	arg 14,temp
+	call otpd_read_data
+	call otp_disable_chgpump
+	fetch 1,mem_temp
+	bbit1 0,assert		// limit 1086 1085
+	fetch 8,mem_temp+2
+	rtn blank
+p_calc_adc_base_hvin:
+	fetcht 2,mem_temp + 4
+	fetch 2,mem_temp + 10
+	copy temp,regb
+	copy pdata,rega
+	isub temp,regc
+	rshift2 regc,regc
+	copy regb,pdata
+	isub regc,pdata
+	byteswap pdata,pdata
+	store 2,mem_adc_0v
+	lshift regc,regc
+	copy rega,pdata
+	isub regc,pdata
+	byteswap pdata,pdata
+	store 2,mem_adc_3v
+	rtn
+
+
+p_le_enable:
+	jam 39,mem_le_ch_mapped
+	hjam 0x36,0x90f        /*For BLE, tune AGC_gain_offset, Max added*/
+	hjam 0x5f,0x90b        //for BLE
+	branch le_enable+2
+p_le_disable:
+	hjam 0x2e,0x90f        /*For BR/EDR, tune AGC_gain_offset, Max added*/
+	hjam 0xff,0x90b         //for EDR&BR
+	branch le_disable+2
+
+
+p_mouse_idle:
+	rtn
+p_check_enter_hibernate:
+	fetch 2,mem_ipc_2C51_write_index
+	store 2,mem_ipc_2C51_read_index
+	fetch 2,mem_ipc_2bt_write_index
+	store 2,mem_ipc_2bt_read_index
+	jam SYC_TASK_HIBERNATE,mem_c51_flag
+	call p_c51_wait
+p_enter_hibernate_continue:
+//	branch lpm_hibernate
+	
+	jam 0x5a,mem_hibernate_flag
+	call lpm_write_gpio_wakeup
+	hfetch 4,core_lpm_ctrl
+	set0 15,pdata					
+	hstore 4,core_lpm_reg
+	call lpm_write_ctrl
+	arg param_hibernate_clks,temp
+	branch lpm_sleep
+
+p_fifo_in:
+	ifetcht UTIL_FIFO_LEN,rega
+	and temp,0xff,pdata
+	nbranch p_fifo_in_push,blank
+	rshift8 temp,pdata
+	istore UTIL_FIFO_LEN,rega
+p_fifo_in_push:
+	increase UTIL_FIFO_LEN+UTIL_FIFO_OFFSET,rega
+	ifetch 1,rega
+	nrtn,blank //fifo full
+	branch fifo_in_push+3
+
+
+	
+ 
+p_check_51cmd_once:
+	call ui_ipc_get_lock
+	arg mem_ipc_fifo_c512bt,rega
+	call fifo_out
+	copy pdata,temp
+	call ui_ipc_put_lock
+	copy temp,pdata
+	rtn blank 
+	beq BT_CMD_START_24G,p_check_51cmd_start24g
+	beq BT_CMD_STOP_24G,p_check_51cmd_stop24g
+	beq BT_CMD_PAIR_24G,p_g24_start_pairing_sm1
+
+	beq BT_CMD_START_DISCOVERY,p_check_51cmd_start_discovery
+	beq BT_CMD_START_ADV,p_check_51cmd_start_adv
+	beq BT_CMD_START_ADV_DISCOVERY,p_check_51cmd_start_adv_discovery
+	beq BT_CMD_START_ADV_REC,p_handle_adv_1
+	beq BT_CMD_RECONNECT,p_check_51cmd_reconnect
+	beq BT_CMD_SET_RECONNECT_INIT,p_disconnect_connected_device
+	beq BT_CMD_LE_UPDATE_CONN,BT_CMD_LE_UPDATE_CONN_1
+	branch check_51cmd_once+9
+p_check_51cmd_start24g:
+	jam STATE_24G_PAIRING_SUCCESS,mem_24g_pairing_sm
+	branch p_g24_start_24g_mode
+p_check_51cmd_stop24g:
+	set0 mark_24g,mark
+	jam STATE_24G_PAIRING_SUCCESS,mem_24g_pairing_sm
+	branch p_g24_stop_g24_mode
+
+
+p_slave_ble_disconnect:
+	jam XT_LL_TERMINATE_IND,mem_fifo_temp
+	branch le_xtype_fifo_in
+
+p_check_51cmd_once_continue:
+	fetch 1,mem_lmo_opcode2
+	branch p_check_51cmd_once_continue0,blank
+	call lmo_fifo_process
+	fetch 1,mem_lmo_opcode2
+	nbranch check_51cmd_restore,blank  //process this cmd next time while lmo fifo is full
+p_check_51cmd_once_continue0:
+	fetch 1,mem_fifo_temp
+	bmark0 mark_context,check_51cmd_check_idle
+	beq BT_CMD_DISCONNECT,p_check_51cmd_disconnect
+	beq BT_CMD_LE_DISCONNECT,p_slave_ble_disconnect
+	beq BT_CMD_UPDATE_SUPERVISION_TO,p_check_51cmd_update_supervision_to
+	branch check_51cmd_once_continue0
+p_check_51cmd_disconnect:
+	fetch 2,mem_ui_state_map
+	bbit0 UI_STATE_BT_HID_HANDSHAKE,p_check_51cmd_quick_disconnect
+	branch check_51cmd_disconnect
+p_check_51cmd_quick_disconnect:
+	setarg 10
+	store 4,mem_supervision_to
+	branch check_51cmd_disconnect
+
+p_check_51cmd_update_supervision_to:
+	jam LMP_SUPERVISION_TIMEOUT,mem_lmo_opcode2
+	fetch 2,mem_new_supervision_to
+	store 2,mem_supervision_to
+	rtn
+
+p_check_51cmd_start_adv_discovery:
+	call p_check_51cmd_start_discovery
+p_check_51cmd_start_adv:	
+	call app_clear_reconnect_flag
+	call check_51cmd_bb_reconn_cancel
+	jam 0,mem_lpm_mode
+	random pdata					//random ble addr
+	store 1,mem_le_lap
+p_handle_adv_0:
+	jam 5,mem_le_adv_data+2
+	setarg 0x181203		
+	store 3,mem_le_adv_data+8
+	
+	arg 7,temp				// mem_le_adv_swift_pair
+	call p_le_adv_data_update
+	branch check_51cmd_adv
+
+p_handle_adv_1:
+	jam 4,mem_le_adv_data+2
+	setarg 0x0000ff		//  ios bluetooth list will display device name when reconnect 
+	store 3,mem_le_adv_data+8
+
+	arg 0,temp
+	call p_le_adv_data_update
+	branch check_51cmd_adv
+	
+p_le_adv_data_update:
+	fetch 1,mem_le_scan_data_len  //  mem_le_name_len + 2 
+	iadd temp,pdata
+	add pdata,11,pdata
+	sub pdata,0x1f,null
+	nbranch p_le_adv_data_overflow,positive
+	store 1,mem_le_adv_data_len
+
+	arg mem_le_adv_data+11,contw
+	copy temp,pdata
+	ncall p_handle_adv_swift_pair,blank
+	
+	fetch 1,mem_le_scan_data_len
+	copy pdata,loopcnt
+	arg mem_le_scan_data,contr
+	branch memcpy
+	
+
+p_handle_adv_swift_pair:
+	copy pdata,loopcnt
+	arg mem_le_adv_swift_pair,contr
+	branch memcpy
+	
+p_le_adv_data_overflow:
+	fetch 1,mem_le_scan_data_len
+	add pdata,11,pdata
+	store 1,mem_le_adv_data_len
+	rtn
+	
+p_check_51cmd_start_discovery:
+	call app_clear_reconnect_flag
+	jam 6,mem_connection_options
+	branch check_51cmd_start_discovery
+p_check_51cmd_reconnect:
+	call init_param
+	call l2cap_init
+	call init_lmp
+	jam 6,mem_connection_options
+	fetch 1,mem_ssp_enable
+	beq 0,p_check_51cmd_reconnect_common
+	jam 0x17,mem_connection_options
+p_check_51cmd_reconnect_common:
+	jam 1,mem_link_key_exists
+	branch check_51cmd_reconnect
+
+p_disconnect_connected_device:
+	//jam 10,mem_recon_count
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BLE_CONNECTED,app_ble_disconnect
+	bbit1 UI_STATE_BT_CONNECTED,p_disconnect_bt
+	bbit1 UI_STATE_BT_RECONNECT,check_51cmd_bb_reconn_cancel
+	bmark1 mark_24g,p_g24_stop_g24_mode
+	jam OFF,mem_le_adv_enable
+	call app_bt_stop_discovery
+	//call mouse3_0_bb_event_discovery_btn
+	jam BT_EVT_RECONNECT_STANDY,mem_fifo_temp
+	branch ui_ipc_send_event
+
+	
+p_disconnect_bt:
+	call app_clear_reconnect_flag
+	call check_51cmd_bb_reconn_cancel
+	//jam 1,mem_gpio_reconnect_flag
+	branch app_bt_disconnect
+	
+
+
+p_lpm_sleep:
+	call xtal_fast_wake
+	branch lpm_sleep+2
+
+
+p_connection_incontext:
+	call p_context_search_insniff
+	branch connection_incontext+3
+p_context_search_insniff:
+	arg p_context_search_sniff,regc
+	branch context_search
+	
+p_context_search_sniff:
+	bbit0 state_insniff,context_search_next
+p_context_search_sniff_loop:
+	call context_get_anchor
+	call sign_pdata_temp
+	isub temp,pdata
+	increase 1,pdata
+	branch p_context_search_sniff_miss,positive
+	branch context_search_sniff_cont+3
+p_context_search_sniff_miss:
+	iforce regb
+	add rega,coffset_tsniff,contr
+	ifetch 2,contr
+	branch context_search_meet,blank
+	call context_next_anchor
+	branch p_context_search_sniff_loop
+
+    // process 0-fffffff or fffffff-0
+sign_pdata_temp:
+	rshift16 pdata,timeup
+	rshift8 timeup,timeup
+	branch sign_pdata_temp_p0,zero
+	compare 0xf,timeup,0xf
+	nrtn true
+	rshift16 temp,timeup
+	rshift8 timeup,timeup
+	nrtn zero
+	set1 28,temp
+	rtn
+sign_pdata_temp_p0:
+	rshift16 temp,timeup
+	rshift8 timeup,timeup
+	compare 0xf,timeup,0xf
+	nrtn true
+	set1 28,pdata
+	rtn
+
+
+p_idle_page_mode_r0:
+	storet 8,mem_temp
+	call timer_check
+	fetcht 8,mem_temp
+	branch idle_page_mode_r0+13
+
+	
+p_role_switch_check:
+	disable user
+	fetch 2,mem_tsniff
+	arg 0xffff,temp
+	isub temp,null
+	nrtn zero
+	fetch 4,mem_sniff_anchor
+	branch p_role_switch_clkn,clknt
+	isub clke_bt,pdata
+	branch p_role_switch_clke
+
+p_role_switch_clkn:
+	isub clkn_bt,pdata
+p_role_switch_clke:
+	sub pdata,4,null
+	nrtn positive
+	force 0,pdata
+	store 2,mem_tsniff
+	branch enable_user
+	
+
+p_parse_lmp_accepted_switch:
+	jam BT_EVT_SWITCH_ACCEPT,mem_fifo_temp
+	call ui_ipc_send_event
+	branch p_role_switch_prepare0
+//branch role_switch_prepare0
+p_role_switch_prepare0_0:
+//	set0 mark_ext_patch,mark
+//	bpatch patch05_0,mem_patch05
+	storet 4,mem_sniff_anchor
+p_role_switch_prepare0:
+	jam SWITCH_FLAG_ACCEPT,mem_switch_flag
+	setarg 0xffff
+	store 2,mem_tsniff
+	jam 1,mem_sniff_attempt
+	rtn
+
+p_roles_replyto_fhs:
+	call rf_setup_time_slave_slot
+	call p_master_send_packet
+	branch roles_replyto_fhs + 4
+
+p_master_send_packet:
+	add clkn_bt,1,bt_clk          /* master start to use native clock */
+	call fetch_self_bt_adr
+	force 0x03,freq_mode          /* we are in connection!! */
+	call tx_radio_freq
+	call start_transmitter	/* get ready for that id packet */
+	call start_tx_native
+	call send_access_word
+	branch end_of_packet
+
+
+	
+p_slave_loop:
+	call check_bt_disabled
+	call scheduler_process
+	call slave_conn_recv_packet	/* go listen for a packet */
+	branch slave_loop+6
+
+	
+p_slave_notmatch:
+	call lpm_set_mult
+	call supervision_update
+	branch slave_disconnect,positive
+	call check_disconnect_timeout
+	nbranch slave_disconnect,user
+	call check_attempt
+	nbranch p_slave_loop + 1,blank
+	rtn
+
+
+p_prepare_tx_not_sco:
+	call context_check_all_wack			 //abandon mark_retransmit, use context_check_all_wack instead.
+	nbranch prepare_tx_no_retransmit,zero
+	fetch 1,mem_arq
+	bbit0 wack,prepare_tx_pollnull
+	fetch 1,mem_last_type
+	beq type_lmp,prepare_tx_retransmit+7
+	fetch 2,mem_last_txlen
+	sub pdata,20,null
+	nbranch prepare_tx_retransmit+7,positive 
+	store 2,mem_tx_len
+	fetch 1,mem_last_txlch
+	store 1,mem_tx_lch
+	setarg mem_last_txdata
+	store 2,mem_txptr
+	branch prepare_tx_retransmit+7	
+
+
+p_tx_l2cap_type:
+	fetch 2,mem_tx_len
+	store 2,mem_last_txlen
+	sub pdata,20,null
+	nbranch tx_l2cap_type + 2,positive 
+	iforce loopcnt
+	fetch 1,mem_tx_lch
+	store 1,mem_last_txlch
+	fetch 2,mem_txptr
+	iforce contr
+	arg mem_last_txdata,contw
+	call memcpy
+	branch tx_l2cap_type + 2
+
+
+p_l2cap_rx_multiplexing:
+	fetch 2, mem_l2cap_rx_pkt_length
+	branch l2cap_rx_reset_state,blank
+	fetch 1,mem_l2cap_rx_cid
+	beq L2CAP_signal_channel,p_l2cap_call_proc_signal
+	branch l2cap_rx_multiplexing0
+p_l2cap_call_proc_signal:
+	call l2cap_malloc_is_fifo_full
+	nrtn blank
+	branch l2cap_call_proc_signal0
+
+
+p_l2cap_process_one_signal:
+	ifetch 1,contr
+	beq signal_info_req,p_l2cap_proc_signal_info_req
+	branch l2cap_process_one_signal+3
+p_l2cap_proc_signal_info_req:
+	ifetch 1,contr //IDs
+	copy pdata,queue
+	ifetch 2,contr //length
+	copy pdata,rega
+	copy regc,pdata
+	isub rega,regc
+	setarg signal_info_rsp
+	istore 1,contw
+	copy queue,pdata
+	istore 1, contw
+	ifetch 2,contr 
+p_l2cap_proc_signal_info_req_reply:
+	beq L2CAP_SIG_EXT_FEATRUE,p_l2cap_proc_signal_info_req_ext
+	beq L2CAP_SIG_FIX_FEATRUE,p_l2cap_proc_signal_info_req_fix
+	branch assert
+p_l2cap_proc_signal_info_req_ext:
+	setarg 0x020008
+	istore 6, contw
+	setarg 0x0200
+	istore 4, contw
+	force 12,pdata
+	iadd regb,regb
+	branch l2cap_process_one_signal_rtn
+p_l2cap_proc_signal_info_req_fix:
+	setarg 0x3000c
+	istore 6, contw
+	setarg 0x0006
+	istore 8, contw
+	force 16,pdata
+	iadd regb,regb
+	branch l2cap_process_one_signal_rtn
+
+	
+p_ml2cap_call_proc_signal:
+	call l2cap_malloc_signal_channel
+	force 0,regb
+	call l2cap_get_signal_tx_payload
+	copy pdata,contw
+	fetch 2,mem_l2cap_rx_pkt_length
+	copy pdata,regc
+	fetch 2,mem_l2cap_payload_ptr
+	iforce contr
+	call p_ml2cap_proc_one_comm
+	branch ml2cap_proc_one_comm_loop+1
+p_ml2cap_proc_one_comm:
+	ifetch 1,contr
+	beq signal_info_req,p_ml2cap_proc_signal_info_req
+	branch ml2cap_proc_one_comm+1
+p_ml2cap_proc_signal_info_req:
+	ifetch 1,contr //IDs
+	copy pdata,queue
+	ifetch 2,contr //length
+	copy pdata,rega
+	ifetch 2,contr
+	store 2,mem_temp
+	copy regc,pdata
+	isub rega,regc 
+	call l2cap_get_signal_tx_payload
+	setarg signal_info_rsp
+	istore 1,contw
+	copy queue,pdata
+	istore 1,contw 
+	fetch 2,mem_temp
+	branch p_l2cap_proc_signal_info_req_reply
+	
+
+p_l2cap_malloc:
+	arg 0,regb
+	call l2cap_malloc_is_fifo_full
+	nrtn blank//assert when fifo full
+	branch l2cap_malloc+5
+
+p_hid_rx_process:
+	fetch 2,mem_l2cap_payload_ptr
+	copy pdata,contr
+	ifetch 1,contr
+	and pdata,0x0f,temp
+	rshift4 pdata,pdata //hidtype
+//	beq hid_type_set_idle,hid_rx_process_handshake
+//	beq hid_type_set_protocol,hid_rx_process_handshake
+	beq hid_type_data,p_hid_rx_process_data
+	beq HID_TYPE_SET_REPORT,p_hid_rx_process_set_report
+	//beq HID_TYPE_CONTROL,hid_rx_process_hid_control
+	beq HID_TYPE_CONTROL,p_hid_rx_process_hid_control
+	beq HID_TYPE_GET_REPORT,hid_rx_process_handshake
+	branch hid_rx_process+7
+
+
+p_hid_rx_process_hid_control:
+	copy temp,pdata
+	beq HID_CONTROL_P_VIRTUALCABLEUNPLUG,hid_rx_process_virtual_cable_unplug
+	jam 1,mem_suspend_flag
+	beq HID_CONTROL_P_SUSPEND,hid_rx_process_handshake
+	jam 0,mem_suspend_flag
+	beq HID_CONTROL_P_EXITSUSPEND,hid_rx_process_handshake
+	rtn
+
+
+p_hid_rx_process_set_report:
+	call p_hid_rx_process_data
+	branch hid_rx_process_set_report
+p_hid_rx_process_data:
+	ifetch 1,contr	
+	beq HID_REPORT_ID_KB,p_hid_rx_process_data_hid_kb	
+	rtn
+
+p_scheduler_process_sdp_succ:
+	call l2cap_malloc_is_fifo_full
+	nrtn blank
+	//for conn to MTK 
+	call p_l2cap_call_proc_sigal_pending
+	branch scheduler_process1
+
+p_l2cap_call_proc_sigal_pending:
+	fetch 1,mem_device_option
+	rtneq dvc_op_hci
+	fetch 1,mem_l2cap_pending_item
+	rtn blank
+	copy pdata,rega
+	jam 0,mem_l2cap_pending_item
+	copy rega,pdata
+	beq L2CAP_SDP_channel,l2cap_sdp_conn_succ
+	rtn
+
+	
+p_parse_lmp:
+	fetch 1,mem_lmi_opcode2
+	beq LMP_ACCEPTED,p_parse_lmp_accepted
+	beq LMP_DETACH,p_parse_lmp_detach
+//	beq LMP_ENCRYPTION_KEY_SIZE_REQ,p_parse_lmp_crypt_key 
+	branch parse_lmp+26
+p_parse_lmp_accepted:
+	fetch 1,mem_rxbuf+1
+	store 1,mem_lmi_accepted_opcode
+	beq LMP_SWITCH_REQ,p_parse_lmp_accepted_switch
+	beq LMP_HOST_CONNECTION_REQ,p_parse_lmp_accepted_hostconn//ok
+	branch parse_lmp_accepted + 2	
+p_parse_lmp_accepted_hostconn:
+	//fetch 1,mem_state
+	//rtnbit0 state_init_seq
+	fetch 1,mem_lmp_conn_state
+	set1 RECEIVED_CONN_REQ,pdata
+	store 1,mem_lmp_conn_state
+	jam BT_EVT_BB_CONNECTED,mem_fifo_temp
+	call ui_ipc_send_event
+	branch parse_lmp_accepted_hostconn_ctn
+
+
+p_parse_lmp_detach:
+	fetch 1,mem_rxbuf + 1
+	store 1,mem_disconn_reason_send
+	branch parse_lmp_detach
+
+/*
+p_parse_lmp_crypt_key:
+	fetcht 1,mem_rxbuf+1
+	sub temp,6,null
+	branch p_reject_lmp_packet_pdu_not_allowed,positive
+	storet 1,mem_key_size
+	branch accept_lmp_msg
+ 
+p_reject_lmp_packet_pdu_not_allowed:
+	jam PDU_NOT_ALLOWED,mem_lmo_reason2
+	branch reject_lmp_packet
+*/
+
+
+p_send_lmp:
+	disable user
+	call lmo_fifo_process
+	fetch 1,mem_lmp_to_send
+	rtn blank
+	bbit1 7,send_lmp_escape
+	beq LMP_NAME_RES,p_send_lmp_name_res
+	beq LMP_DETACH,p_send_lmp_detach
+	branch send_lmp+7
+p_send_lmp_name_res:
+	force 17,pdata
+	call msg_send_lmp
+	fetch 1,mem_lmi_opcode /* loading name offset */
+	copy pdata,temp
+	beq 0x00,p_send_lmp_name_res_offset_ok
+	beq 0x0e,p_send_lmp_name_res_offset_ok
+	beq 0x1c,p_send_lmp_name_res_offset_ok
+	rtn
+p_send_lmp_name_res_offset_ok:
+	istore 1,contw /* writing name offset */
+	fetch 1,mem_local_name_length
+	istore 1,contw /* writing name length */
+	setarg 14
+	branch send_lmp_name_res_offset_ok+3
+
+p_send_lmp_detach:
+	call send_lmp_detach
+	jam 100,mem_conn_timer		// ios power fast off on acl error 
+	rtn
+	
+
+p_process_conn_sm:
+	fetch 1,mem_lmo_opcode2
+	branch p_process_conn_sm_continue,blank
+	call lmo_fifo_process
+	fetch 1,mem_lmo_opcode2
+	nrtn blank
+p_process_conn_sm_continue:
+	fetch 1,mem_conn_sm
+	rtn blank
+	beq CONN_SM_AUTH_PAIR, p_host_create_conn_auth_pair
+	beq CONN_SM_WAIT_SWITCH_AFTER_HOST_CONNECTION, p_host_creat_conn_wait_switch
+	branch process_conn_sm_continue + 2
+
+p_host_creat_conn_wait_switch:
+	fetch 1,mem_switch_flag
+	rtneq SWITCH_FLAG_INIT
+	beq SWITCH_FLAG_ACCEPT,p_host_create_conn_switch_accept
+	arg switch_wait_timer,queue
+	call timer_check
+	nrtn blank
+	jam SWITCH_FLAG_INIT,mem_switch_flag
+	branch host_create_conn_switch
+p_host_create_conn_switch_accept:
+	rtn master
+	branch p_host_create_conn_auth_pair
+
+p_host_create_conn_auth_pair:
+	fetch 1,mem_connection_options
+	bbit1 CONNECTION_SWITCH,host_create_conn_switch
+	bbit1 CONNECTION_AUTH,p_host_create_conn_auth_pair_true
+p_host_create_conn_auth_pair_true:
+	fetch 1,mem_link_key_exists
+	branch host_create_conn_auth_pair_nokey,blank
+	fetch 1,mem_lmp_conn_state
+	rtnbit0 SENT_SETUP_COMPLETE
+	rtnbit0 RECEIVED_SETUP_COMPLETE
+	fetch 4,mem_aurand_send_delay_time
+	arg 800,temp
+	iadd temp,temp
+	copy clkn_bt,pdata
+	isub temp,null
+	nrtn positive
+	branch host_create_conn_auth
+
+p_hid_rx_process_data_hid_kb:
+	ifetch 1,contr
+	store 1,mem_caps_num_lock
+	rtn	
+
+
+
+
+p_le_transmit_receive_sifs:
+	call le_transmit
+	fetcht 1,mem_last_freq
+	call set_freq_rx
+	call rf_rx_enable
+	enable swfine
+	arg 5500,timeup	// about 417us
+	//call ice_break
+	branch le_receive_rxon
+
+p_le_init_conn:
+	jam 0x01,mem_le_txheader
+	jam  0,mem_le_txlen
+	branch le_init_conn+2
+
+p_le_transmit:
+	call le_prep
+	call p_letx_setfreq
+	branch le_transmit+4
+
+p_letx_setfreq:
+	branch p_txon,match
+	call le_setfreq
+	branch set_freq_tx
+
+p_le_send_adv_ind:
+	fetch 1,mem_le_rx_window
+	store 4,mem_le_transmit_window// init first packate rx window
+	fetch 1,mem_le_adv_type
+	beq ADV_DIRECT_IND,p_le_send_adv_direct_ind
+	branch le_send_adv_ind+2
+p_le_send_adv_direct_ind:
+	jam 0,mem_le_adv_type
+	branch le_send_adv_direct_ind
+
+p_le_update_param:
+	fetch 1,mem_le_state
+	rtnbit0 lestate_update_param
+	fetch 2,mem_le_event_count
+	fetcht 2,mem_le_instant
+	isub temp,pdata
+	nrtn positive
+	branch le_update_param+8
+
+
+p_le_prepare_tx: 
+	fetch 1,mem_le_arq  
+	rtnbit1 wak 
+
+	fetch 1,mem_le_rxbuf + 1  
+	branch le_prepare_tx + 4,blank  
+	branch le_send_empty      // send empty data when got non empty packet
+
+
+
+
+
+p_le_prepare_tx_cmd:
+	fetch 1,mem_le_txpayload
+	beq LL_UNKNOWN_RSP,p_le_send_unknown_rsp
+	beq LL_CONNECTION_PARAM_REQ,p_le_send_conn_param_req
+	beq LL_START_ENC_RSP,p_le_send_start_enc_rsp
+//	beq LL_VERSION_IND,p_le_send_version_ind
+	beq LL_TERMINATE_IND,p_le_send_terminate_ind
+	beq LL_PING_RSP,p_le_send_ping_rsp
+	branch le_prepare_tx_cmd+10
+
+p_le_send_ping_rsp:
+	force 1,temp
+	branch le_send_packet
+
+p_le_send_terminate_ind:
+	setarg 10 // 100ms
+	store 2,mem_le_superto
+	branch le_send_terminate_ind
+
+p_le_send_start_enc_rsp:
+	jam BT_CMD_LE_UPDATE_CONN,mem_fifo_temp
+	call  ui_ipc_send_cmd
+	force 1,temp
+	branch le_send_packet,master
+	jam BT_EVT_LE_PROTOCOL_CONNECTED,mem_fifo_temp
+	call ui_ipc_send_event
+	fetch 1,mem_le_pairing_state
+	beq FLAG_LE_PAIRING_AFTER_AUTH,p_le_send_start_enc_rsp0
+	branch p_le_send_start_enc_rsp_end
+p_le_send_start_enc_rsp0:
+	jam XT_SMP_ENCRYPTION_INFORMATION,mem_fifo_temp
+	call le_xtype_fifo_in
+p_le_send_start_enc_rsp_end:
+	force 1,temp
+	branch le_send_packet
+
+/*	
+p_le_send_version_ind:		logitch version ind
+	setarg 0x005907
+	istore 3,contw
+	setarg 0x005a
+	branch le_send_version_ind+3
+*/
+
+p_le_send_unknown_rsp:
+	fetch 1,mem_le_ll_unknown_type
+	istore 1,contw
+	force 2,temp
+	branch le_send_packet
+
+p_le_send_conn_param_req:
+	increase -1,contw
+	fetch 8,mem_le_connection_updata_param
+	istore 8,contw
+	ifetch 8,contr
+	istore 8,contw
+	force 2,type
+	branch le_send_autolen
+
+p_le_prepare_smp:
+	fetch 1,mem_le_l2cap
+	beq SMP_IDENTITY_ADDRESS_INFORMATION,le_send_smp_identity_address_information + 2
+	beq SMP_PAIRING_RESPONSE,p_le_send_smp_pairing_response
+	beq SMP_MASTER_IDENTIFICATION,le_send_smp_master_identification+2
+	branch le_prepare_smp0
+	
+
+
+p_le_send_smp_pairing_response:
+	setarg param_smp_paring_response
+	store 3,mem_le_pres
+	setarg 0x01
+	istore 1,contw
+	setarg param_smp_key_dist0
+	istore 3,contw
+	branch le_send_smp_pairing_response + 4
+
+
+	
+
+
+p_lerx_nopayload:
+	parse 3,0,24	
+	enable swfine
+	arg param_sifs,27
+	rshift32 pdata,pdata
+	rshift16 pdata,pdata
+	istore 3,contw
+	branch end_of_packet,6
+	enable match
+	fetch 1,mem_last_freq
+	add pdata,0,rega
+	branch lerx_nopayload+12
+
+p_le_parse_att:
+	ifetch 3,contr
+	store 3,mem_le_att_opcode
+	//beq ATTOP_WRITE_REQUEST,p_le_parse_att_write_request
+	beq ATTOP_WRITE_COMMAND,p_le_parse_att_write_command
+	//beq ATTOP_PREPARE_WRITE_REQUEST,p_le_parse_att_prepare_write_request
+	//beq ATTOP_EXECUTE_WRITE_REQUEST,p_le_parse_att_execute_write_request
+	beq ATTOP_EXCHANGE_MTU_REQUEST,p_le_parse_att_exchange_mtu_request
+	beq ATTOP_WRITE_REQUEST,p_le_parse_att_write_request
+	branch le_parse_att_p
+
+p_le_parse_att_write_command:
+	jam 1,mem_reconnect_continue
+	fetch 2,mem_le_att_handle
+	beq HANDLE_UUID_CHRCTR_REPORT_ID1_OUTPUT,p_handle_num
+	branch le_parse_att_write_command
+p_handle_num:
+	//fetch 1,mem_le_rxbuf
+	arg mem_le_rxbuf+9,contr 
+	branch p_hid_rx_process_data_hid_kb
+
+p_le_parse_att_write_request:
+	fetch 2,mem_le_att_handle				//MAC  CAPS
+	sub pdata,HANDLE_UUID_CHRCTR_REPORT_ID1_OUTPUT,null
+	call p_handle_num,zero
+	fetch 2,mem_le_att_handle			
+	sub pdata,HANDLE_UUID_END,null
+	call p_set_lpm_mode,zero	
+	fetch 2,mem_le_att_handle
+	fetcht 2,mem_att_report_game
+	increase 1,temp
+	isub temp,null
+	branch p_key_data_send,zero
+	branch le_parse_att_write_request
+p_key_data_send:
+	jam BT_EVT_LE_PROTOCOL_CONNECTED,mem_fifo_temp
+	call ui_ipc_send_event
+	branch le_parse_att_write_request
+
+
+p_set_lpm_mode:
+	jam 1,mem_lpm_mode
+	rtn
+
+
+p_le_parse_att_exchange_mtu_request:
+	jam ATTOP_EXCHANGE_MTU_RESPONSE,mem_fifo_temp
+	branch le_xtype_fifo_in
+
+p_le_prepare_att:
+	fetch 1,mem_le_l2cap
+	beq ATTOP_HANDLE_VALUE_NOTIFICATION,p_le_send_att_handle_value_notification
+	beq ATTOP_HANDLE_VALUE_INDICATION,p_le_send_att_handle_value_indication
+	beq ATTOP_READ_BY_GROUP_TYPE_RESPONSE,p_le_send_att_read_by_group_type_response
+	beq ATTOP_READ_BY_TYPE_RESPONSE,p_le_send_att_read_by_type_response
+	beq ATTOP_FIND_INFORMATION_RESPONSE,p_le_send_att_find_information_response
+	beq ATTOP_FIND_BY_TYPE_VALUE_RESPONSE,p_le_send_att_find_by_type_value_response
+	beq ATTOP_WRITE_RESPONSE,le_send_att_write_response_go
+	beq ATTOP_EXCHANGE_MTU_RESPONSE,p_le_send_att_exchange_mtu_rsp
+	beq ATTOP_READ_RESPONSE, p_le_send_att_read_response
+	beq ATTOP_READ_BLOB_RESPONSE,p_le_send_att_read_blob_response
+	branch le_prepare_att0
+
+p_le_send_att_read_blob_response:
+	fetch 2,mem_le_att_handle
+	beq HANDLE_UUID_CHRCTR_DEVICE_NAME,p_le_send_att_read_blob_response_error
+	branch le_send_att_read_blob_response
+
+p_le_send_att_read_blob_response_error:
+	jam ATT_ERR_INVALID_OFFSET,mem_le_err_code
+	branch le_send_att_error_response
+
+p_le_send_att_exchange_mtu_rsp:
+//	branch p_le_send_att_exchange_mtu_req
+	//branch p_ng_event_remote_mtu_res
+p_le_send_att_exchange_mtu_req:
+	fetch 2,mem_le_local_mtu
+	istore 2,contw
+	branch le_send_autolen
+
+p_le_send_att_read_response:
+	fetch 2,mem_le_att_handle
+	//beq 27,p_le_send_att_read_response_error
+	beq HANDLE_UUID_BATTERY_LEVEL,le_send_att_error_response_notfound
+	beq HANDLE_UUID_CHRCTR_MANUFACTURER_NAME,p_le_send_att_read_response_error
+//	beq HANDLE_UUID_PNP_ID,p_le_send_att_read_response_error
+	branch le_send_att_read_response
+
+p_le_send_att_read_response_error:
+	fetch 1,mem_le_pairing_state
+	bne FLAG_LE_PAIRING_NULL,le_send_att_read_response
+	fetch 1,mem_ltk_states
+	beq LTK_NOT_LOST,le_send_att_read_response	
+	//fetch 1,mem_ltk_exists
+	//nbranch le_send_att_read_response,blank
+	copy contw,temp
+	jam FLAG_LE_PAIRING_START,mem_le_pairing_state	
+	copy temp,contw
+	jam ATT_ERR_INSUFFICIENT_AUTHENTICATION,mem_le_err_code
+	branch le_send_att_error_response
+
+p_le_send_att_find_by_type_value_response:
+	call le_start_end_handle_check_1
+	rtn user
+	fetcht 2,mem_le_search_att_type
+	setarg UUID_SERVICE_HIDS
+	isub temp,null
+	branch p_le_send_att_find_value_by_type_hid,zero
+	setarg UUID_SERVICE_BATTERY
+	isub temp,null
+	branch p_le_send_att_find_value_by_type_battery,zero	
+	setarg UUID_SERVICE_DEVICE_INFO
+	isub temp,null
+	branch p_le_send_att_find_value_by_type_device_info,zero
+	setarg UUID_SERVICE_GENERIC_ATT
+	isub temp,null
+	branch p_le_send_att_find_value_by_type_gatt,zero
+	branch le_send_att_find_by_type_value_response+2
+
+p_le_send_find_value_by_type:
+	fetch 1,mem_shutter_find_type_value_flag
+	arg 0,temp
+	qset1 temp
+	iand temp,pdata
+	bne 0,le_send_att_error_response_notfound
+	fetch 1,mem_shutter_find_type_value_flag
+	qset1 pdata
+	store 1,mem_shutter_find_type_value_flag
+	branch p_le_send_att_find_value_by_type_command
+
+p_le_send_att_find_value_by_type_hid:
+	arg LE_FIND_TYPE_VALUE_HID_BIT,queue
+	branch p_le_send_find_value_by_type
+
+p_le_send_att_find_value_by_type_battery:
+	arg LE_FIND_TYPE_VALUE_BATTERY_BIT,queue
+	branch p_le_send_find_value_by_type
+
+p_le_send_att_find_value_by_type_gatt:
+	arg LE_FIND_TYPE_VALUE_GATT_BIT,queue
+	branch p_le_send_find_value_by_type
+p_le_send_att_find_value_by_type_device_info:
+	arg LE_FIND_TYPE_VALUE_DEVICE_INFO_BIT,queue
+	branch p_le_send_find_value_by_type
+p_le_send_att_find_value_by_type_command:
+	fetch 2,mem_le_search_att_type
+	copy pdata,rega
+	fetcht 2,mem_le_uuid
+	copy temp,regb
+	call p_find_type_value_start_handle
+	branch p_le_save_find_value_handle,zero
+	branch le_send_att_error_response_notfound	
+
+p_find_type_value_start_handle:
+	arg mem_le_att_list,contr
+p_find_type_value_start_handle_loop:
+	ifetch 2,contr
+	rtn blank
+	ifetch 3,contr
+	ifetch 2,contr			// length
+	isub rega,null
+	rtn zero
+	increase -3,contr
+	ifetch 1,contr
+	iadd contr,contr
+	branch p_find_type_value_start_handle_loop
+
+p_le_save_find_value_handle:
+	increase -7,contr
+	ifetch 2,contr
+	store 2,mem_le_find_type_value_start_handle
+	call p_find_type_value_end_handle
+	branch le_send_att_error_response_notfound,blank
+	increase -4,contr
+	ifetch 2,contr
+	increase -1,pdata
+	store 2,mem_le_find_type_value_end_handle
+	jam ATTOP_FIND_BY_TYPE_VALUE_RESPONSE,mem_le_l2cap
+	fetch 4,mem_le_find_type_value_start_handle
+	store 4,mem_le_l2cap_response
+	//fetch 2,mem_le_find_type_value_end_handle
+	//istore 2,contw
+	force 9,temp
+	branch le_send_packet
+	
+p_find_type_value_end_handle:
+	ifetch 2,contr
+	ifetch 1,contr
+	iadd contr,contr
+p_find_type_value_end_handle_loop:
+	ifetch 2,contr
+	rtn blank
+	ifetch 2,contr
+	isub regb,null
+	rtn zero
+	ifetch 1,contr
+	iadd contr,contr
+	branch p_find_type_value_end_handle_loop
+
+p_le_send_att_find_information_response:
+	arg 3,timeup
+	force 1,pdata
+	store 1,mem_le_l2cap_response
+	call le_init_attlist_search
+p_le_send_att_find_information_res_loop:
+	call le_att_handle_inrange
+	branch le_send_att_find_information_res_end,blank
+	nbranch p_le_send_att_find_information_res_next,positive
+	disable user
+	istore 2,contw
+	ifetch 2,contr
+	istore 2,contw
+	increase -1,timeup
+	branch le_send_att_find_information_res_end,zero
+p_le_send_att_find_information_res_cont:
+	ifetch 1,contr
+	iadd contr,contr
+	branch p_le_send_att_find_information_res_loop
+p_le_send_att_find_information_res_next:
+	increase 2,contr
+	branch p_le_send_att_find_information_res_cont
+
+
+
+p_le_send_att_read_by_type_response:
+	fetcht 2,mem_le_search_att_type
+	setarg UUID_CHRCTR_DEVICE_NAME
+	isub temp,null
+	branch p_le_send_att_read_by_type_res_device_name,zero	
+	setarg UUID_PNP_ID
+	isub temp,null
+	branch p_le_send_att_read_by_type_res_pnp_id,zero	
+	setarg UUID_GATT_CHARACTERISTIC
+	isub temp,null
+	nbranch le_send_att_error_response_notfound,zero
+	fetch 2,mem_le_search_handle_start
+	store 2,mem_temp
+	enable user
+p_le_send_att_read_by_type_response_loop:
+	call p_le_att_handle_inrange
+	nbranch p_le_send_att_read_by_type_response_end,positive
+	fetcht 2,mem_temp
+	call p_le_att_get_handle_info
+	beq 1,p_le_send_att_read_by_type_response_end
+	call p_le_att_same_type
+	nbranch p_le_send_att_read_by_type_response_next_handle,zero
+	disable user
+	call p_le_send_att_read_by_type_write_properties
+	call p_le_att_next_handle
+	call p_le_att_get_handle_info
+	call p_le_send_att_read_by_type_write_uuid
+	branch p_le_send_att_read_by_type_response_end
+p_le_send_att_read_by_type_response_next_handle:
+	call p_le_att_next_handle
+	branch p_le_send_att_read_by_type_response_loop
+p_le_send_att_read_by_type_response_end:
+	branch le_send_att_error_response_notfound,user
+	branch p_le_send_auto_len_by_mem
+p_le_send_att_read_by_type_write_properties:
+	fetch 2,mem_temp
+	store 2,mem_le_l2cap_response+1
+	fetch 1,mem_le_search_len
+	copy pdata,loopcnt
+	call p_get_contr
+	arg mem_le_l2cap_response+3,contw
+	call memcpy
+	branch p_store_contw
+p_le_send_att_read_by_type_write_uuid:
+	fetcht 2,mem_le_cur_att_type
+	rshift8 temp,pdata
+	bne 0x05,p_le_send_att_read_by_type_write_short_uuid
+	call p_get_contw
+	fetch 2,mem_temp
+	istore 2,contw
+	call p_store_contw
+	setarg mem_le_att_list
+	iadd temp,contr
+	ifetch 1,contr
+	copy contr,temp
+	copy pdata,loopcnt
+	increase 5,pdata
+	store 1,mem_le_l2cap_response
+	call p_get_contw
+	copy temp,contr
+	call memcpy
+	branch p_store_contw
+p_le_send_att_read_by_type_write_short_uuid:
+	call p_get_contw
+	fetch 2,mem_temp
+	istore 2,contw
+	fetch 2,mem_le_cur_att_type
+	istore 2,contw
+	call p_store_contw
+	jam 7,mem_le_l2cap_response
+	rtn
+p_le_send_att_read_by_type_res_device_name:
+	call le_get_device_name
+p_le_send_att_read_by_type_res_packet:
+	ifetch 1,contr // length
+	copy pdata,loopcnt
+	increase 2,pdata
+	store 1,mem_le_l2cap_response // att packet length
+	increase -5,contr // point to handle
+	ifetch 2,contr
+	istore 2,contw // handle
+	increase 3,contr // point to name
+	call memcpy
+	branch le_send_autolen
+	
+p_le_send_att_read_by_type_res_pnp_id:
+	arg UUID_PNP_ID,temp
+	call le_att_get_uuid_ptr
+	branch p_le_send_att_read_by_type_res_packet
+
+p_le_send_att_read_by_group_type_response:
+	//call ice_break
+	arg 2,timeup
+	fetch 2,mem_le_search_handle_start
+	store 2,mem_temp
+	jam 0,mem_le_search_res
+	enable user
+p_le_send_att_read_by_group_type_response_loop:
+	call p_le_att_handle_inrange
+	nbranch p_le_send_att_read_by_group_type_end0,positive
+	fetcht 2,mem_temp
+	call p_le_att_get_handle_info
+	beq 1,p_le_send_att_read_by_group_type_end1
+	call p_le_att_same_type
+	nbranch p_le_send_att_read_by_group_type_next_handle,zero
+	fetch 1,mem_le_search_res
+	beq 1,p_le_send_att_read_by_group_type_end1
+	nbranch p_le_send_att_read_by_group_type_store_write_record,user		//un first
+	disable user
+	fetch 1,mem_le_search_len
+	increase 4,pdata
+	store 1,mem_le_l2cap_response
+	call p_store_contw
+	branch p_le_send_att_read_by_group_type_store_record
+p_le_send_att_read_by_group_type_store_write_record:
+	fetch 1,mem_le_search_len
+	sub pdata,0x10,null
+	branch p_le_send_att_read_by_group_type_end1,zero
+	fetch 1,mem_le_l2cap_response
+	sub pdata,0x10,null
+	branch p_le_send_att_read_by_group_type_end1,zero
+	fetch 2,mem_temp
+	increase -1,pdata
+	store 2,mem_le_cur_handle_end
+	call p_le_write_att_record
+p_le_send_att_read_by_group_type_store_record:
+	fetch 2,mem_temp
+	store 2,mem_le_cur_handle_start
+	call p_le_store_att_record
+	increase -1,timeup
+	branch p_le_send_att_read_by_group_type_last_find,zero		
+p_le_send_att_read_by_group_type_next_handle:
+	call p_le_att_next_handle
+	branch p_le_send_att_read_by_group_type_response_loop
+p_le_send_att_read_by_group_type_last_find:
+	jam 1,mem_le_search_res
+	branch p_le_send_att_read_by_group_type_next_handle
+p_le_send_att_read_by_group_type_end0:	//> att handle end
+	fetch 2,mem_temp
+	store 2,mem_le_cur_handle_end
+	branch p_le_send_att_read_by_group_type_end_common
+p_le_send_att_read_by_group_type_end1:	//>att max list handle or diff len 
+	fetch 2,mem_temp
+	increase -1,pdata
+	store 2,mem_le_cur_handle_end
+	branch p_le_send_att_read_by_group_type_end_common
+p_le_send_att_read_by_group_type_end_common:
+	branch le_send_att_error_response_notfound,user
+	call p_le_write_att_record
+	branch p_le_send_auto_len_by_mem
+
+p_le_att_next_handle:
+	fetcht 2,mem_temp
+	increase 1,temp
+	storet 2,mem_temp
+	rtn
+
+p_le_store_att_record:
+	fetch 1,mem_le_search_len
+	store 1, mem_tmp_buffer
+	copy pdata,loopcnt
+	call p_get_contr
+	branch memcpy
+	
+p_le_write_att_record:
+	call p_get_contw
+	fetch 2,mem_le_cur_handle_start
+	istore 2,contw
+	fetch 2,mem_le_cur_handle_end
+	istore 2,contw
+	fetch 1,mem_tmp_buffer
+	copy pdata,loopcnt
+	call memcpy
+	branch p_store_contw
+
+
+p_le_att_handle_inrange:
+	fetcht 2,mem_temp
+	fetch 2,mem_le_search_handle_end
+	isub temp,null
+	rtn
+
+p_le_att_same_type:
+	fetch 2,mem_le_search_att_type
+	fetcht 2,mem_le_cur_att_type
+	isub temp,null
+	rtn
+
+p_le_att_get_handle_info:
+	arg mem_le_att_list,contr
+	copy temp,rega
+p_le_att_get_handle_loop:
+	ifetch 2,contr
+	branch p_le_att_unfind_handle,blank
+	ifetcht 2,contr
+	storet 2,mem_le_cur_att_type
+	isub rega,null
+	branch p_le_att_finded_handle, zero
+	ifetch 1,contr			/* length */
+	iadd contr,contr
+	branch p_le_att_get_handle_loop
+p_le_att_unfind_handle:
+	setarg 1
+	rtn
+p_le_att_finded_handle:
+	ifetch 1,contr
+	store 1,mem_le_search_len
+	call p_store_contr
+	setarg 0
+	rtn
+p_get_contw:
+	fetch 2,mem_contw
+	copy pdata,contw
+	rtn
+p_get_contr:
+	fetch 2,mem_contr
+	copy pdata,contr
+	rtn
+p_store_contw:
+	copy contw,pdata
+	store 2,mem_contw
+	rtn
+p_store_contr:
+	copy contr,pdata
+	store 2,mem_contr
+	rtn
+
+p_le_send_auto_len_by_mem:
+	call p_get_contw
+	branch le_send_autolen	
+
+p_le_send_att_handle_value_indication:
+p_le_send_att_handle_value_notification:
+	fetch 1,mem_queue_read
+	add pdata,1,temp
+	and temp,0x03,temp
+	storet 1,mem_queue_read
+	mul32 pdata,7,pdata
+	arg mem_uart_packet,contr
+	iadd contr,contr
+	fetch 1,mem_le51_tx_length
+	increase -5,pdata
+	copy pdata,loopcnt
+	arg mem_le_l2cap+1,contw
+	call memcpy
+	fetcht 1,mem_le51_tx_length
+	branch le_send_packet
+	
+p_le_parse:
+	call le_xtype_fifo_is_full
+	branch le_parse+4
+
+
+p_le_parse_ll:
+	copy regc,pdata
+	beq LL_ENC_REQ,p_le_parse_enc_req
+	beq LL_PAUSE_ENC_REQ,p_le_parse_pause_enc_rsq
+//	beq LL_CONNECTION_UPDATE_REQ,p_le_parse_connection_update_req
+	beq LL_PING_REQ,p_le_parse_ping_req
+	beq LL_TERMINATE_IND,p_le_parse_terminate_ind
+	sub pdata,0x0d,null
+	branch le_parse+20,positive
+	store 1,mem_le_ll_unknown_type
+	jam XT_LL_UNKNOWN_RSP,mem_fifo_temp
+	branch le_xtype_fifo_in	
+//p_le_parse_connection_update_req:
+
+//	call le_parse_connection_update_req
+//	fetch 2,mem_le_new_param+3	// interval
+//	mul32 pdata,4,temp
+//	storet 2,mem_customize_timer_setup
+//	rtn
+
+p_le_parse_enc_req:
+	jam DEFAULT_STATES,mem_ltk_states
+	branch le_parse_enc_req
+
+p_le_parse_ping_req:
+	jam XT_LL_PING_RSP,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+p_le_parse_pause_enc_rsq:
+	jam XT_LL_PAUSE_ENC_RSP,mem_fifo_temp
+	branch le_xtype_fifo_in
+
+p_le_parse_terminate_ind:
+	setarg 20 // 200ms
+	store 2,mem_le_superto
+	rtn
+
+p_le_send_non_l2cap:
+	fetch 1,mem_le_txheader
+	compare 1,type,3
+	branch p_le_send_non_l2cap1,true
+	branch le_send_non_l2cap+14
+p_le_send_non_l2cap1:
+	fetch 1,mem_le_txlen
+	branch p_le_send_empty_clear_md,blank
+	branch le_send_non_l2cap+14
+
+p_le_send_empty_clear_md:		// HUAWEI M5 pair fail
+	fetch 1,mem_le_txheader
+	set0 md,pdata
+	store 1,mem_le_txheader
+	rtn
+
+p_le_parse_smp:
+	ifetch 1,contr
+	beq SMP_PAIRING_REQUEST,p_le_parse_smp_pairing_request
+	beq SMP_PAIRING_RANDOM,p_le_parse_smp_pairing_random
+	beq SMP_IDENTITY_ADDRESS_INFORMATION,p_le_parse_smp_identity_address_information
+	branch le_parse_smp + 4
+
+
+p_le_parse_smp_identity_address_information:
+	jam FLAG_LE_PAIRING_END,mem_le_pairing_state
+	branch le_parse_smp_identity_address_information
+
+p_le_parse_smp_pairing_request:
+	jam 1,mem_le_send_security_request_flag
+	store 1,mem_le_preq
+	ifetch 6,contr
+	istore 6,contw
+	jam XT_SMP_PAIRING_RESPONSE,mem_fifo_temp
+	branch le_xtype_fifo_in
+
+p_le_parse_smp_pairing_random:
+	call authenticate_rconfirm
+	branch p_le_parse_smp_pairing_random_success,zero
+	branch le_parse_smp_pairing_random + 2
+p_le_parse_smp_pairing_random_success:
+	jam FLAG_LE_PAIRING_AFTER_AUTH,mem_le_pairing_state
+	branch le_parse_smp_pairing_random_success
+
+
+/*
+p_le_modified_name:
+	arg UUID_CHRCTR_DEVICE_NAME,temp
+	call le_att_get_uuid_ptr
+	ifetch 1,contr						// attribute length
+	copy contr,contw
+	fetcht 1,mem_le_name_len
+	copy temp,loopcnt
+	isub temp,temp
+	arg mem_new_le_name,contr
+	call memcpy
+	copy temp,loopcnt
+	ncall memcpy_empty,zero
+p_le_modified_scan:
+	fetcht 1,mem_le_name_len
+	copy temp,loopcnt
+	increase 1,temp
+	storet 1,mem_le_scan_data
+	increase 1,temp
+	increase 1,contw
+	arg mem_new_le_name,contr
+	call memcpy
+	sub temp,0x1f,loopcnt
+	branch clear_mem	
+*/
+
+
+scale_process_le_conn:
+	jam PAIR_UNKNOWN,mem_pair_state
+	call app_ble_stop_adv
+	call app_bt_stop_discovery
+	call  app_lpm_mult_enable
+	branch app_le_event_bb_connected
+
+
+scale_process_le_discon:
+	jam 0,mem_lpm_mult
+	jam 0,mem_ltk_exists
+	jam DEFAULT_STATES,mem_ltk_states
+	jam FLAG_LE_PAIRING_NULL,mem_le_pairing_state
+	jam 0,mem_shutter_find_type_value_flag
+	jam PAIR_UNKNOWN,mem_pair_state
+	branch app_le_event_bb_disconn
+	
+
+p_le_queue_init:
+	setarg 0
+	store 4,mem_queue_write
+	rtn
+
+		
+p_g24_dispatch:
+	rtnmark0 mark_24g
+	fetch 4,mem_24g_enter_hibernate
+	store 4,mem_24g_enter_hibernate_setup
+	call p_g24_txdata_prep
+	nbranch p_g24_long_sleep,user
+	jam 10,mem_24g_enter_lpm_timer
+	call p_g24_transmit_packet
+	fetch 1,mem_24g_pairing_sm
+	rtnne STATE_24G_PAIRING_SUCCESS
+p_g24_short_sleep:
+	fetch 1,mem_mouse_retry_flag
+	nrtn blank
+	call p_check_IPC_for_LPM
+	nrtn user
+	fetch 1,mem_c51_lpm_lock
+	nrtn blank
+	call lpo_calibration
+	fetch 3,mem_clks_per_lpo
+	rtn blank
+	fetch 1,mem_lpm_mode
+	rtn blank
+p_g24_short_sleep_1:	
+	//setarg 0x120000
+	//setarg 0x0a0000
+	fetch 3,mem_24g_short_sleep_counter
+p_g24_short_sleep_2:	
+	call clk2lpo
+ 	storet 4,mem_sleep_counter
+ 	branch lpm_sleep
+
+p_g24_long_sleep:
+	call p_check_IPC_for_LPM
+	nrtn user
+	fetch 1,mem_c51_lpm_lock
+	nrtn blank
+	call lpo_calibration
+	fetch 3,mem_clks_per_lpo
+	rtn blank
+	fetch 1,mem_lpm_mode
+	rtn blank
+	fetch 1,mem_24g_enter_lpm_timer
+	nbranch p_g24_short_sleep_1,blank	
+	fetch 4,mem_24g_enter_hibernate_setup
+  	branch p_g24_short_sleep_2
+
+p_g24_txdata_prep:
+	fetch 1,mem_24g_pairing_sm
+	bne STATE_24G_PAIRING_SUCCESS,p_g24_pairing_sm	
+	call p_g24_package_data
+	call p_g24_get_package_data,user
+	call p_g24_transmit_prep,user
+p_g24_txdata_enable_tx:
+	jam ENSURE_ON_24G,mem_24g_ensure
+	rtn
+
+p_g24_package_data:
+	disable user
+	jam 2,mem_24g_data_type
+	fetch 1,mem_24g_txbuf_new
+	beq 0x04,p_g24_dataready			
+	beq 0x05,p_g24_dataready_mk	
+	beq 0x06,p_g24_dataready_ms
+	beq 0x07,p_g24_dataready_sys
+	beq 0x08,p_g24_dataready_game 
+	fetch 1,mem_mouse_retry_flag
+	ncall enable_user,blank
+	rtn
+p_g24_dataready:				
+	jam 0x00,mem_24g_txbuf_new				//standard key 0x00
+	jam 10,mem_24g_datalen		// 02 + 00 + 8 payload
+	branch p_g24_package_data_rtn
+
+p_g24_dataready_game:  //game key
+	jam 0x08,mem_24g_txbuf_new				
+	jam 16,mem_24g_datalen		// 02 + 08 + 14
+	branch p_g24_package_data_rtn
+	
+p_g24_dataready_mk:			
+	jam 0x03,mem_24g_txbuf_new				//multi key 0x03
+	jam 4,mem_24g_datalen		// 02 + 03 + 2 payload
+	branch p_g24_package_data_rtn
+p_g24_dataready_sys:
+	jam 0x02,mem_24g_txbuf_new				//system key 0x02
+	jam 3,mem_24g_datalen		// 02 + 02 + 1 payload
+	branch p_g24_package_data_rtn
+p_g24_dataready_ms:
+	jam 1,mem_24g_data_type		// mouse
+	jam 8,mem_24g_datalen		// 01 + 7 payload
+p_g24_package_data_rtn:	
+	jam 0,mem_24g_get_ack_fail
+	branch enable_user
+
+
+p_g24_get_package_data:
+	arg mem_24g_txbuf,contw
+	arg mem_24g_txbuf_new,contr
+	arg 20,loopcnt
+	branch memcpy
+
+
+p_g24_transmit_packet:
+	jam 0,mem_24g_retry
+p_g24_transmit_loop:
+	arg param_rx_setup,timeup
+	until clkn_rt,meet
+	call p_g24_transmit_receive_ack
+	nbranch p_g24_retransmit,user3
+	call p_g24_ackpayload_parse	
+	fetch 1,mem_24g_pid
+	increase 1,pdata
+	store 1,mem_24g_pid
+	jam 0,mem_mouse_retry_flag
+	fetch 1,mem_24g_pairing_sm
+	bne STATE_24G_PAIRING_SUCCESS,p_g24_paring_mode_start
+p_g24_transmit_abandon:
+	call p_g24_clear_txbuf
+	jam 0,mem_24g_get_ack_fail
+	jam ENSURE_OFF_24G,mem_24g_ensure
+	rtn
+
+
+p_g24_retransmit:
+	jam 1,mem_mouse_retry_flag
+	fetch 1,mem_24g_get_ack_fail
+	increase 1,pdata
+	store 1,mem_24g_get_ack_fail
+	fetch 1,mem_24g_pairing_sm
+	bne STATE_24G_PAIRING_SUCCESS,p_g24_tx_paring_retry
+	fetch 1,mem_24g_get_ack_fail
+	beq  0xff,p_g24_stop_g24_mode
+	fetch 1,mem_24g_get_ack_fail
+	arg 16,temp
+	isub temp,null
+	branch p_g24_ch,positive
+	fetch 1,mem_24g_retry
+	increase 1,pdata
+	store 1,mem_24g_retry
+	nop 10
+	bne retry_24g,p_g24_transmit_loop
+	branch p_g24_ch
+	
+
+p_g24_clear_txbuf:
+	setarg 0
+	store 20,mem_24g_txbuf
+	store 20,mem_24g_txbuf_new
+	rtn
+
+/*
+p_g24_long_sleep_setup:
+	jam 0,mem_mouse_retry_flag
+	call p_g24_clear_txbuf
+	jam 0,mem_24g_get_ack_fail
+	fetch 4,mem_24g_enter_hibernate_max
+	store 4,mem_24g_enter_hibernate
+	rtn
+*/
+
+p_g24_paring_mode_start:
+	branch p_g24_paring_mode
+
+p_g24_transmit_receive_ack:
+	disable user3
+	call p_g24_transmit
+//	fetch 1,mem_24g_no_ack
+//	beq no_ack_24g,p_g24_transmit_no_ack	//tx no ack
+	force 0,radio_ctrl
+	fetch 4,mem_24g_addr
+	iforce access
+	fetcht 1,mem_last_freq
+	call set_freq_rx
+	call rf_rx_enable
+	call p_g24_receive_rxon
+	call p_g24_end_of_packet,user3
+	rtn
+//p_g24_transmit_no_ack:
+//	jam 0,mem_24g_rxbuf+1
+//	enable user3
+//	branch p_g24_end_of_packet
+
+
+p_g24_tx_paring_retry:
+	rtn
+//	fetch 1,mem_24g_get_ack_fail
+//	rtnne 0xff
+//	jam 0,mem_24g_get_ack_fail
+p_g24_stop_g24_mode:
+	jam 0,mem_mouse_retry_flag
+	jam BT_EVT_24G_ATTEMPT_FAIL,mem_fifo_temp
+	branch ui_ipc_send_event
+
+
+p_g24_ackpayload_parse:
+	call p_g24_read_len_pid_crc
+	fetch 1,mem_24g_rxbuf
+	rtnne 0x02					// mem_24g_data_type : 0x02 keyboard	
+	fetch 1,mem_24g_rxdata_length	//ack payload length 
+	rtn blank
+	iforce loopcnt
+	arg mem_24g_rxbuf+2,contr
+	arg mem_24g_rxpayload,contw	//ack payload buffer 
+	call memcpy
+	fetch 1,mem_24g_rxbuf+1
+	compare 0x08,pdata,0xf8
+	nrtn true
+	fetch 1,mem_24g_rxbuf+2
+	beq 0xff,p_pc_sleep_mode	//pc enter sleep mode
+	store 1,mem_caps_num_lock
+//	jam 0,mem_24g_led_flag
+	rtn
+
+p_pc_sleep_mode:
+	jam 1,mem_pc_sleep_flag
+	rtn
+	
+
+	
+p_g24_start_pairing_sm1:
+	set1 mark_24g,mark
+	call p_g24_pair_init
+	call p_g24_transmit_abandon
+	jam STATE_24G_PAIRING_1,mem_24g_pairing_sm
+	rtn
+
+p_g24_pair_init:
+	jam 0,mem_24g_pid
+	jam G24_PAIR_CH,mem_24g_ch
+	fetch 4,mem_24g_paring_addr
+	branch p_g24_update_addr_and_synccrc8
+
+p_g24_pairing_sm:
+	call p_g24_pair_init
+	fetch 1,mem_24g_ensure
+	beq ENSURE_ON_24G,enable_user
+	fetch 1,mem_24g_pairing_sm
+	beq STATE_24G_PAIRING_1,p_g24_pairing_sm_1
+	beq STATE_24G_PAIRING_2,p_g24_pairing_sm_2
+	beq STATE_24G_PAIRING_3,p_g24_pairing_sm_3
+	branch assert
+
+p_g24_pairing_sm_1:
+	jam STATE_24G_PAIRING_1_WAITING_ACK,mem_24g_pairing_sm
+	jam 0xaa,mem_24g_common_temp
+	branch p_g24_pairing_sm_common
+p_g24_pairing_sm_2:
+	jam STATE_24G_PAIRING_2_WAITING_ACK,mem_24g_pairing_sm
+	jam 0x55,mem_24g_common_temp
+	branch p_g24_pairing_sm_common
+p_g24_pairing_sm_3:
+	jam STATE_24G_PAIRING_3_WAITING_ACK,mem_24g_pairing_sm
+	jam 0x22,mem_24g_common_temp
+p_g24_pairing_sm_common:
+	//fetch 1,mem_24g_data_type
+	//and_into bits_data,pdata
+	//store 1,mem_24g_common_temp+1
+	jam 0x02,mem_24g_common_temp+1	// mem_24g_data_type: 02 keyboard
+	fetch 4,mem_24g_device_addr
+	store 4,mem_24g_common_temp+2
+	jam 0,mem_24g_common_temp+6
+	arg mem_24g_common_temp,rega
+	arg 7,temp
+	call p_g24_put_data_in_buff
+	call p_g24_transmit_prep
+	call p_g24_txdata_enable_tx
+	branch enable_user
+
+p_g24_paring_mode:
+	fetch 1,mem_24g_pairing_sm
+	rtneq STATE_24G_PAIRING_SUCCESS
+	beq STATE_24G_PAIRING_1_WAITING_ACK,p_g24_pairing_sm_1_waiting_ack
+	beq STATE_24G_PAIRING_2_WAITING_ACK,p_g24_pairing_sm_2_waiting_ack
+	beq STATE_24G_PAIRING_3_WAITING_ACK,p_g24_pairing_sm_3_waiting_ack
+	rtn
+
+
+p_g24_pairing_sm_1_waiting_ack:
+	jam STATE_24G_PAIRING_2,mem_24g_pairing_sm
+	branch p_g24_transmit_abandon
+p_g24_pairing_sm_2_waiting_ack:
+	jam STATE_24G_PAIRING_3,mem_24g_pairing_sm
+	branch p_g24_transmit_abandon
+p_g24_pairing_sm_3_waiting_ack:
+	jam STATE_24G_PAIRING_SUCCESS,mem_24g_pairing_sm
+	jam BT_EVT_24G_PAIRING_COMPLETE,mem_fifo_temp
+	call ui_ipc_send_event	
+	fetch 4,mem_24g_rxpayload+2
+	call p_g24_update_addr_and_synccrc8
+	branch p_g24_transmit_abandon
+
+p_g24_start_24g_mode:
+//	rtnmark1 mark_24g
+	set1 mark_24g,mark
+	call p_g24_syncword_crc8
+	call p_g24_ch
+	fetch 1,mem_24g_pairing_sm
+	rtnne STATE_24G_PAIRING_SUCCESS
+	call p_g24_tx_attemp_data_prep
+	setarg 0
+	store 2,mem_24g_check_dongle_times
+p_g24_tx_attemp_dongle_loop:
+	call lpo_calibration
+	nop 2000
+	fetch 1,mem_24g_check_dongle_times
+	beq 0xff,p_g24_stop_g24_mode	//
+	call p_g24_transmit_receive_ack
+	nbranch p_g24_attemp_txdata_retry,user3
+p_g24_tx_attemp_dongle_succ:
+	call p_g24_clear_txbuf
+	set1 mark_24g,mark
+	jam BT_EVT_24G_ATTEMPT_SUCCESS,mem_fifo_temp
+	branch ui_ipc_send_event
+
+
+p_g24_tx_attemp_data_prep:
+	jam 0xff,mem_24g_common_temp
+	fetch 1,mem_24g_data_type
+	store 1,mem_24g_common_temp+1
+	fetch 4,mem_24g_device_addr
+	store 4,mem_24g_common_temp+2
+	arg 6,temp
+	arg mem_24g_common_temp,rega
+	call p_g24_put_data_in_buff
+	branch p_g24_transmit_prep
+	
+p_g24_attemp_txdata_retry:
+	fetch 2,mem_24g_check_dongle_times
+	increase 1,pdata
+	store 2,mem_24g_check_dongle_times
+	call p_g24_ch
+	branch p_g24_tx_attemp_dongle_loop
+
+
+p_g24_put_data_in_buff:
+	storet 1,mem_24g_datalen
+	copy temp,loopcnt
+	arg mem_24g_txbuf,contw
+	copy rega,contr
+	branch memcpy
+
+p_g24_read_len_pid_crc:
+//read control
+	fetch 1,mem_24g_rxbuf+1
+	rshift3 pdata,pdata
+	store 1,mem_24g_rxdata_length
+	rtn
+
+p_rssi_signal:
+	fetcht 1,mem_rssi_signal_index
+	setarg mem_rssi_signal_buf
+	iadd temp,contw
+	copy rega,pdata
+	istore 1,contw
+	increase 1,temp
+	and_into RSSI_BUF_LEN_SIGNAL,temp
+	storet 1,mem_rssi_signal_index
+	rtn
+
+//p_rssi_noise:
+//	call save_rssi
+//	rtn blank
+//	fetcht 1,mem_rssi_noise_index
+//	arg mem_rssi_noise_buf,rega
+//	call p_rssi_store
+//	storet 1,mem_rssi_noise_index
+//	rtn
+//	
+//p_rssi_store:
+//	copy rega,pdata
+//	iadd temp,contw
+//	fetch 1,mem_rssi
+//	istore 1,contw
+//	increase 1,temp
+//	and_into RSSI_BUF_LEN_SIGNAL,temp
+//	rtn
+
+p_g24_update_addr_and_synccrc8:	
+	store 4,mem_24g_addr
+
+//output: 1BYTE crc8
+p_g24_syncword_crc8:
+	arg 0,rega
+	arg 4,loopcnt
+	arg mem_24g_addr,contr
+p_g24_syncword_crc8_loop:
+	ifetch 1,contr
+	iadd rega,rega
+	loop p_g24_syncword_crc8_loop
+	copy rega,pdata
+	store 2,mem_24g_syncword
+	fetch 1,mem_24g_syncword
+	fetcht 1,mem_24g_syncword+1
+	iadd temp,pdata
+	store 1,mem_24g_syncword_crc8
+	rtn
+
+
+p_g24_transmit_prep:
+// total length
+	fetch 1,mem_24g_datalen
+	increase 2,pdata
+	store 1,mem_24g_txlen
+// data type
+	fetch 1,mem_24g_data_type
+	store 1,mem_24g_txpayload
+//prepare 5bit payload length, 2bit PID, 1bit NO_ACK
+	fetch 1,mem_24g_datalen
+	lshift3 pdata,pdata
+	fetcht 1,mem_24g_pid
+	and temp,0x03,temp
+	lshift temp,temp
+	ior temp,pdata
+	fetcht 1,mem_24g_no_ack
+	iadd temp,pdata
+	istore 1,contw
+//prepare payload data
+	fetch 1,mem_24g_pairing_sm
+	bne STATE_24G_PAIRING_SUCCESS,p_g24_transmit_prep_pair
+	fetch 1,mem_24g_data_type
+	istore 1,contw
+p_g24_transmit_prep_pair:	
+	fetch 1,mem_24g_datalen
+	iforce loopcnt
+	fetch 1,mem_24g_data_type
+	beq 1,p_g24_transmit_prep_mouse
+	arg mem_24g_txbuf,contr
+	call memcpy
+// type == 2 && mem_24g_txbuf[0] == 0x03  : multi	
+// type == 1 && mem_24g_txbuf[0] == 0x03  : mouse
+// if transmit fail,next package will send mouse data
+	fetch 1,mem_24g_txbuf	
+	beq 0x03,p_g24_multi_key_setup
+	rtn
+p_g24_multi_key_setup:
+	jam 0x02,mem_24g_txbuf
+	rtn
+
+
+p_g24_transmit_prep_mouse:
+	arg mem_24g_txbuf+1,contr
+	branch memcpy
+
+p_g24_ch:
+	fetcht 1,mem_24g_current_ch_number
+	call p_g24_ch_calc
+	increase 1,temp
+	and_into 3,temp //map size =4
+	storet 1,mem_24g_current_ch_number
+	rtn
+
+p_g24_ch_calc:
+	fetch 1,mem_24g_addr	
+	and_into 0x03,pdata
+	mul32 pdata,4,rega			//24addr low bit0 bit1 ,00-map1,01-map2,10-map3,11-map4
+	setarg mem_24g_ch_map1
+	iadd rega,pdata
+	iadd temp,contr
+	ifetch 1,contr
+	store 1,mem_24g_ch
+	rtn
+
+p_g24_prep:
+	disable enable_crc
+	disable enable_white
+	setarg 0x555555
+	iforce crc24_init
+	fetch 1,mem_24g_ch
+	reverse pdata,temp
+	set1 1,temp
+	rshift temp,white_init
+	rtn
+
+p_g24_receive_rxon:
+	call p_g24_prep
+	enable decode_fec0	
+	enable is_rx
+	disable is_tx
+	enable swfine
+	fetch 2,mem_24g_rx_window
+	iforce stop_watch
+	correlate null,timeout
+	nbranch p_g24_sync_timeout,sync
+	disable decode_fec0
+	enable decode_fec1
+	enable enable_white
+	enable enable_crc
+	parse demod,bucket,8
+	rshift3 pwindow,pdata
+	store 1,mem_24g_get_syncword_crc8
+	fetcht 1,mem_24g_syncword_crc8
+	isub temp,null
+	nbranch p_g24_end_of_packet,zero
+	parse demod,bucket,8
+	rshift3 pwindow,pdata
+	store 1,mem_24g_rxbuf	//device id
+//	fetch 1,mem_24g_mode
+//	sub pdata,rx_24g,null
+//	branch p_g24_receive_skip,zero
+	fetch 1,mem_24g_rxbuf
+	fetcht 1,mem_24g_data_type
+	icompare bits_data,temp
+	nbranch p_g24_end_of_packet,true
+p_g24_receive_skip:
+	parse demod,bucket,8
+	rshift3 pwindow,pdata
+	istore 1,contw
+	rshift3 pdata,pdata
+	and pdata,0x1f,loopcnt	//max payload: 32bytes
+	branch p_g24rx_nopayload,zero
+p_g24rx_loop:
+	parse demod,bucket,8
+	rshift3 pwindow,pdata
+	istore 1,contw
+	loop p_g24rx_loop
+p_g24rx_nopayload:
+	//receive rssi hex
+	copy contw,rega
+	parse demod,bucket,8
+	rshift3 pwindow,pdata
+	store 1,mem_rssi_hex_received
+	copy rega,contw
+	parse demod,bucket,24
+	enable swfine
+	arg param_sifs,stop_watch	
+	rshift32 pdata,pdata
+	rshift16 pdata,pdata
+	istore 3,contw
+	disable decode_fec1
+	branch p_g24_end_of_packet,crc_failed
+	enable user3
+	fetch 1,mem_last_freq
+	add pdata,0,rega
+	call rf_write_freq
+	disable decode_fec0
+	call set_sync_on
+	fetch 1,mem_rssi_hex_received
+	copy pdata,rega
+	branch p_rssi_signal
+	
+
+p_g24_sync_timeout:
+//	call p_rssi_noise
+//	branch p_g24_end_of_packet
+p_g24_end_of_packet:
+	disable encode_fec1
+	disable decode_fec1
+	branch end_of_packet
+
+p_g24_set_freq_tx:
+	call set_sync_on
+	fetcht 1,mem_24g_ch
+	branch set_freq_tx
+
+p_g24_transmit:
+	call le_enable
+	fetch 4,mem_24g_addr
+	iforce access
+	call p_g24_prep
+	call p_g24_set_freq_tx
+	set1 TXGFSK,radio_ctrl
+	enable encode_fec0
+	enable is_tx
+	disable is_rx
+	rshift16 access,pdata
+	rshift8 pdata,pdata
+	rshift4 pdata,pdata
+	inject mod,40
+	disable encode_fec0
+	enable encode_fec1
+	enable enable_white
+	enable enable_crc
+	fetch 1,mem_24g_syncword_crc8
+	inject mod,8
+	fetch 1,mem_24g_txlen
+	iforce loopcnt
+	arg mem_24g_txpayload,contr
+p_g24tr_loop:
+	ifetch 1,contr
+	inject mod,8
+	loop p_g24tr_loop
+	enable enable_parity
+	inject mod,24	//crc
+	disable enable_parity
+	until null,tx_clear
+	nop 100
+	disable encode_fec0
+	disable encode_fec1
+	branch set_sync_on
+
+
+
+	
+
+/******************************************/
+/***********   ROM Start   ***************/
+/******************************************/
+
+org 0x3000		// start from rom address start
+start:
+	call lpmstate
+
+
+soft_reset:
+	set0 mark_ext_patch,mark
+	bpatch patch00_0,mem_patch00
+	clear_stack
+	call initialize_radio
+	call iicd_init_12m
+	call init_param
+	call l2cap_init
+	set0 mark_ext_patch,mark
+	bpatch patch00_1,mem_patch00
+	call rfcomm_init
+	call init_lmp
+	call ui_init
+	call app_init
+	set0 mark_ext_patch,mark
+	bpatch patch00_2,mem_patch00
+	call app_lpm_init,wake
+	call sp_initialize
+	call lpm_recover_clk,wake
+main_loop:	
+	set0 mark_ext_patch,mark
+	bpatch patch00_3,mem_patch00
+	call sp_calc_sequence
+	call le_dispatch
+	call hci_dispatch
+	set0 mark_ext_patch,mark
+	bpatch patch00_4,mem_patch00
+	call idle_dispatch
+	call app_process_idle
+	call inquiry_dispatch
+	set0 mark_ext_patch,mark
+	bpatch patch00_5,mem_patch00
+	call inquiry_scan_dispatch
+	call page_scan_dispatch
+	call connection_dispatch
+	call lpm_dispatch
+	branch main_loop
+
+connection_dispatch:
+	call connection_incontext
+	rtnmark0 mark_context
+	set0 mark_context,mark
+	call context_save
+	branch le_disable
+	
+connection_incontext:
+	set0 mark_ext_patch,mark
+	bpatch patch00_6,mem_patch00
+	call context_search_insniff
+	nbranch connection_nosniff,zero
+	call context_load
+	add rega,coffset_mode,contr
+	ifetch 1,contr
+	bbit1 mode_le,le_conn_dispatch
+	bbit1 mode_master, master_dispatch
+	branch slave_dispatch
+connection_nosniff:
+	set0 mark_ext_patch,mark
+	bpatch patch00_7,mem_patch00
+	call context_get_next
+	copy loopcnt,null
+	rtn zero
+	call context_load
+	fetch 1,mem_state
+	bbit1 state_inpage,master_page
+	fetch 1,mem_mode
+	bbit1 mode_master, master_dispatch
+	branch slave_dispatch
+
+
+
+/**************************************/
+/**************idle dispatch*********/
+/**************************************/
+	
+idle_dispatch:
+	fetch 1,mem_hci_cmd
+	rtn blank
+	beq hci_cmd_inquiry,idle_inquiry
+	beq hci_cmd_inquiry_cancel,idle_inquiry_cancel
+	beq hci_cmd_remote_name_req,idle_remote_name_req
+	beq hci_cmd_create_conn,idle_create_conn
+	beq hci_cmd_le_create_conn,idle_le_create_conn
+	call context_search_conn_handle
+	rtn zero
+	call context_search_plap
+	rtn zero
+idle_exit:
+	jam 0,mem_hci_cmd
+	rtn
+
+idle_le_create_conn:
+	jam hci_cmd_le_create_conn,mem_cmd_le_create_conn
+	jam 0,mem_hci_cmd
+	rtn
+	
+idle_inquiry:
+	set1 mark_inquiry_on,mark
+	set0 mark_inquiry_trainb,mark
+	jam param_ninquiry,mem_ninqy_index
+	jam 31,mem_nfreq_index_inq
+	branch idle_exit
+
+idle_inquiry_cancel:
+	set0 mark_inquiry_on,mark
+	force 0,stop_watch
+	branch idle_exit
+
+idle_remote_name_req:
+	call context_search_plap
+	rtn zero
+	force LMP_NAME_REQ,temp
+	jam 5,mem_nameres_cnt
+	branch idle_start_page
+
+idle_create_conn:
+	set0 mark_ext_patch,mark
+	bpatch patch01_0,mem_patch01
+	fetch 1,mem_device_option
+	beq dvc_op_hci,idle_create_conn_hci
+idle_create_conn_device:
+	fetch 6,mem_hci_plap
+	branch idle_exit,blank
+	jam RECONNECT_HID,memui_reconnect_mode
+	//jam HS_INIT_CALL,mem_hs_mode //init as master
+	jam CONN_SM_WAIT_FEATURES_RES,mem_conn_sm
+	branch idle_create_conn_cont
+	
+idle_create_conn_hci:
+	fetch 6,mem_hci_plap
+	branch idle_exit,blank
+	store 6,mem_plap
+idle_create_conn_cont:
+	force LMP_VERSION_REQ,temp
+idle_start_page:
+	set0 mark_ext_patch,mark
+	bpatch patch01_1,mem_patch01
+	fetch 1,mem_page_mode
+	branch idle_page_mode_r0,blank
+	lshift3 pdata,pdata
+	lshift4 pdata,pdata
+	increase -1,pdata
+idle_page_mode_r0:
+	store 1,mem_npage
+	store 1,mem_npage_index
+	jam 31,mem_nfreq_index_page
+	set0 mark_page_trainb,mark
+	call context_new
+	nbranch idle_page_fail,zero
+	call get_free_amaddr
+	store 1,mem_amaddr
+	storet 1,mem_lmo_opcode2
+	fetch 6,mem_hci_plap
+	store 6,mem_plap
+	set0 mark_ext_patch,mark
+	bpatch patch01_2,mem_patch01
+	force 0,pdata
+	compare LMP_NAME_REQ,temp,0xff
+	nsetflag true,state_init_seq,pdata
+	set1 state_inpage,pdata
+	store 1,mem_state
+	jam BT_EVT_RECONN_STARTED,mem_fifo_temp
+	call ui_ipc_send_event
+	force 0,pdata
+	setflag true,smap_name_req,pdata
+	store 1,mem_state_map
+	setarg 0
+	set1 mode_master,pdata
+	store 1,mem_mode
+	enable master
+	call context_save
+	disable master
+	force page_length_timer,queue
+	fetch 2,mem_page_to
+	call timer_init
+	branch idle_exit
+idle_page_fail:
+	set0 mark_ext_patch,mark
+	bpatch patch01_3,mem_patch01
+	fetch 6,mem_hci_plap
+	store 6,mem_plap
+	compare LMP_NAME_REQ,temp,0xff
+	branch idle_name_fail,true
+	force HCI_ERROR_MEMORY_FULL,temp
+	call hci_send_connection_error
+	branch idle_exit
+idle_name_fail:
+	arg mem_tmp_buffer,contw
+	arg 8,loopcnt
+	call memset0
+	force HCI_ERROR_MEMORY_FULL,queue
+	call hci_send_name
+	jam BT_EVT_RECONN_FAILED,mem_fifo_temp
+	call ui_ipc_send_event
+	branch idle_exit
+	
+
+/******************************************/
+/**************  Inquiry  *****************/
+/******************************************/
+
+inquiry_dispatch:
+	rtnmark0 mark_inquiry_on
+	force inquiry_length_timer,queue
+	call timer_check
+	nsetflag blank,mark_inquiry_on,mark
+	nbranch inquiry_start,blank
+	rtn
+	
+
+
+inquiry_start:
+	set0 mark_ext_patch,mark
+	bpatch patch01_4,mem_patch01
+	fetcht 2,mem_inq_window
+	force 4,queue
+	call sniff_check_window
+	rtn user
+	call afh_clear
+	force 0,freq_mode
+inquiry_restart:
+	rtn timeout
+	set0 mark_fhs_already_good,mark
+	set0 mark_fhs_eir,mark
+inquiry_rx_restart:
+	add clkn_bt,1,bt_clk
+	isolate1 mark_inquiry_trainb,mark
+	setflag true,2,freq_mode
+	compare 0x00,bt_clk,0x02      /* see if this is even slot */
+	nbranch inquiry_receive,true
+
+inquiry_transmit:
+	set0 mark_ext_patch,mark
+	bpatch patch01_5,mem_patch01
+	fetch 1,mem_inquiry_transmit
+	increase 1,pdata
+	store 1,mem_inquiry_transmit
+	call fetch_giac
+	call tx_radio_freq
+	call fetch_diac
+	call start_transmitter	/* get ready for that id packet */
+	call start_tx_native
+	call send_access_word
+	call end_of_packet
+	call inquiry_check_train
+	branch inquiry_restart
+
+inquiry_check_train:
+	set0 mark_ext_patch,mark
+	bpatch patch01_6,mem_patch01
+	fetch 1,mem_nfreq_index_inq
+	increase -1,pdata
+	store 1,mem_nfreq_index_inq
+	rtn positive  /* if it's time to incremnt N */
+	jam 31,mem_nfreq_index_inq
+	fetch 1,mem_ninqy_index
+	increase -1,pdata
+	store 1,mem_ninqy_index
+	rtn positive      /* if it's time to change train */
+	setflip mark_inquiry_trainb,mark
+	jam param_ninquiry,mem_ninqy_index
+	rtn
+
+inquiry_receive:
+	set0 mark_ext_patch,mark
+	bpatch patch01_7,mem_patch01
+	call fetch_giac
+	call rx_radio_freq
+	call fetch_diac
+	call start_rx_native
+	call start_receiver	/* get ready for that id packet */
+	call wait_access_clkn_rt
+	branch inquiry_sync,sync   /* try look for id packet again if not found */
+	call inquiry_check_train
+	branch inquiry_rx_restart
+inquiry_sync:
+	set0 mark_ext_patch,mark
+	bpatch patch02_0,mem_patch02
+	call save_rssi
+	call scan_mode_whiten
+	call receive_packet_whitened
+	set0 mark_rxbuf_inuse,mark
+	rtnmark0 mark_fhs_already_good
+inquiry_receive_rtn:
+	set0 mark_ext_patch,mark
+	bpatch patch02_1,mem_patch02
+	fetch 1,mem_at_using_flag
+	bbit1 AT_FLAG_INQ,at_inquiry_reply
+	call hci_inquiry_reply
+inquiry_receive_eir_rtn:
+	fetch 1,mem_inquiry_rcv
+	increase 1,pdata
+	store 1,mem_inquiry_rcv
+	rtn
+inquiry_receive_eir:
+	set0 mark_fhs_already_good,mark
+	call rf_setup_time_slave_slot_eir
+	call fetch_giac
+	call rx_radio_freq
+	call init_rx_packet_flags
+	call start_rx_native	/* start listening at start_rx time */
+	call start_receiver
+	call wait_access_clkn_rt
+	branch inquiry_receive_eir_packet,sync   /* try look for id packet again if not found */
+	rtn
+inquiry_receive_eir_packet:
+	call scan_mode_whiten
+	call receive_packet_whitened
+	set0 mark_rxbuf_inuse,mark		/*open recive pkt*/
+	branch inquiry_receive_rtn,crc_failed
+	call hci_inquiry_reply_eir
+	branch inquiry_receive_eir_rtn
+	
+rf_setup_time_slave_slot_eir:
+	arg param_rf_setup, timeup
+rf_setup_time_eir:
+	until clkn_rt,meet
+	and clkn_bt,3,pdata
+	bne 1,rf_setup_time_eir
+	rtn
+	
+	
+/******************************************/
+/**************  Master Dispatch  *************/
+/******************************************/
+
+
+
+master_page:
+	set0 mark_ext_patch,mark
+	bpatch patch02_2,mem_patch02
+	enable master
+	enable clknt
+	fetch 2,mem_page_interval
+	branch master_page_no_interval,blank
+	force page_interval_timer,queue
+	call timer_check               
+	nrtn blank
+master_page_no_interval:
+	set0 mark_ext_patch,mark
+	bpatch patch02_3,mem_patch02
+	fetcht 2,mem_page_window
+	force 40,queue
+	call sniff_check_window
+	branch page_exit,user
+	force page_length_timer,queue
+	call timer_check
+	nbranch page_start,blank
+	fetch 1,mem_state_map
+	bbit1 smap_name_req,master_npage_timeout
+	force HCI_ERROR_PAGE_TIMEOUT,temp
+	call hci_send_connection_error
+	branch master_page_timeout
+master_npage_timeout:
+	arg mem_tmp_buffer,contw
+	arg 8,loopcnt
+	call memset0
+	force HCI_ERROR_PAGE_TIMEOUT,queue
+	call hci_send_name
+master_page_timeout:
+	set0 mark_ext_patch,mark
+	bpatch patch02_4,mem_patch02
+	jam 0,mem_state
+	call init_lmp_work
+	jam 0,memui_reconnect_mode
+	jam BT_EVT_RECONN_PAGE_TIMEOUT,mem_fifo_temp
+	call ui_ipc_send_event	
+	branch page_exit
+
+page_start:
+	set0 mark_ext_patch,mark
+	bpatch patch02_5,mem_patch02
+	force 0,timeup
+	until clkn_rt,meet
+	fetch 1,mem_page_clk
+	increase -1,pdata
+	ixor clkn_bt,pdata
+	compare 0,pdata,3
+	nbranch page_start,true
+	deposit am_addr
+	store 1,mem_fhs_am_addr
+	force 0,N_tx_slot
+	force 0,freq_mode
+
+page_restart:
+	set0 mark_ext_patch,mark
+	bpatch patch02_6,mem_patch02
+	branch page_exit,timeout
+	call fetch_page_bt_adr
+	arg param_rf_setup, timeup
+	until clkn_rt,meet         /* wait for the start_receiver time against native real clk  */
+page_rx_restart:
+	set0 mark_ext_patch,mark
+	bpatch patch02_7,mem_patch02
+	fetch 4,mem_page_clk    /* deposit clk_estimate */
+	iforce bt_clk
+	increase 1,pdata
+	store 4,mem_page_clk
+	isolate1 mark_page_trainb,mark
+	setflag true,2,freq_mode
+	compare 0x00,bt_clk,0x02      /* see if this is even slot */
+	nbranch page_receive,true
+	fetch 1, mem_page_transmit
+	increase 1,pdata
+	store 1, mem_page_transmit
+	call tx_radio_freq
+	call start_transmitter	/* get ready for that id packet */
+	call start_tx_native
+	call send_access_word
+	call end_of_packet
+	call page_check_train
+	branch page_restart	
+master_dispatch_exit:
+page_exit:
+	set0 mark_ext_patch,mark
+	bpatch patch03_0,mem_patch03
+	disable master
+	fetch 2,mem_page_interval      
+	rtn blank
+	force page_interval_timer,queue
+	branch timer_init              
+
+page_check_train:
+	set0 mark_ext_patch,mark
+	bpatch patch03_1,mem_patch03
+	fetch 1,mem_nfreq_index_page
+	increase -1,pdata
+	store 1,mem_nfreq_index_page
+	rtn positive
+	jam 31,mem_nfreq_index_page
+	fetch 1,mem_npage_index
+	increase -1,pdata                 /* increment N */
+	store 1,mem_npage_index
+	rtn positive      			/* if it's time to change train */
+	setflip mark_page_trainb,mark             /* change train */
+	fetch 1,mem_npage
+	store 1,mem_npage_index
+	rtn
+	
+page_receive:
+	set0 mark_ext_patch,mark
+	bpatch patch03_2,mem_patch03
+	call rx_radio_freq
+	call start_rx_native
+	call start_receiver	/* get ready for that id packet */
+	call wait_access_clkn_rt	/* try id look for id packet again */
+	branch page_sync,sync         /* restart if didn't receive anything */
+	call page_check_train
+	branch page_rx_restart
+page_sync:
+	call end_of_packet
+	fetch 1, mem_page_rcv
+	increase 1,pdata
+	store 1, mem_page_rcv
+	force 0,stop_watch
+	fetch 4,mem_page_clk
+page_send_fhs:
+	set0 mark_ext_patch,mark
+	bpatch patch03_3,mem_patch03
+	call rf_setup_time_master_slot
+	call fetch_page_bt_adr
+	increase 1,N_tx_slot
+page_send_fhs_continue:
+	and_into 0x1fd,bt_clk
+	and_into 0x1fc,freq_mode               /* master response = x00, even_train settin must remain the same */
+	call tx_radio_freq
+	call start_transmitter	/* get ready for that id packet */
+	call start_tx_native
+	call send_access_word
+	deposit clkn_bt
+	store 4,mem_clkn_bt
+	force 0,am_addr
+	force type_fhs,type
+	call scan_mode_whiten
+	call transmit_packet_whitened
+page_wait_fhs_reply:
+	set0 mark_ext_patch,mark
+	bpatch patch03_4,mem_patch03
+	call rf_setup_time_slave_slot
+	or_into 0x02,bt_clk
+	and_into 0x1fc,freq_mode               /* master response sequence = x00, even train setting must be preserved */
+	call rx_radio_freq
+	call start_rx_native
+	call start_receiver	/* get ready for that id packet */
+	call wait_access_clkn_rt	/* look for that reply */
+	call end_of_packet,sync              /* id reply is enough */
+	branch page_wait_fhs_reply_ok,sync           /* no reply then send fhs again */
+	fetch 1,mem_fhs_wait_counter
+	branch page_restart,blank
+	increase -1,pdata
+	store 1,mem_fhs_wait_counter
+	branch page_send_fhs
+	
+page_wait_fhs_reply_ok:
+	set0 mark_ext_patch,mark
+	bpatch patch03_5,mem_patch03
+	fetch 1, mem_page_rcv_fhs
+	increase 1,pdata
+	store 1, mem_page_rcv_fhs
+	call prepare_newconn
+master_newconn_loop:
+	call master_newconn_once
+	branch newconn_poll_responded,sync
+	call new_conn_timeout
+	nbranch master_newconn_loop,blank
+	branch page_restart
+
+newconn_poll_responded:
+	set0 mark_ext_patch,mark
+	bpatch patch03_6,mem_patch03
+	fetch 1,mem_state
+	set0 state_inpage,pdata
+	store 1,mem_state
+	call newconn_init
+	disable master
+	rtn
+	
+
+master_dispatch:
+	set0 mark_ext_patch,mark
+	bpatch patch03_7,mem_patch03
+	enable master
+	enable clknt
+	call role_switch_master
+	rtn user
+	call check_bt_disabled
+	call rf_setup_time_master_slot
+	add clkn_bt,1,bt_clk
+	call fetch_self_bt_adr
+	force 0x03,freq_mode
+	call load_esco
+	call get_sco_data
+	call scheduler_tx_l2cap_pkt
+	call prepare_tx
+	call tx_radio_freq
+	call start_transmitter
+	call start_tx_native
+	call send_access_word
+	call transmit_packet
+master_loop:
+	set0 mark_ext_patch,mark
+	bpatch patch04_0,mem_patch04
+	call parse_lmp
+	call process_cmd
+	call hci_send_num_complete_packets
+	call master_conn_recv_packet
+	nbranch master_notmatch,match
+	call supervision_flush
+	call parse_l2cap
+	fetch 1,mem_master_rcvcnt
+	increase 1,pdata
+	store 1,mem_master_rcvcnt
+master_notmatch:
+	set0 mark_ext_patch,mark
+	bpatch patch04_1,mem_patch04
+	call scheduler_process
+	call check_master_disconnect
+	nrtn master					/* disconnected */
+	call check_attempt
+	nbranch master_attempt,blank
+master_exit:
+	call process_sco_data
+	call restore_esco
+	disable master
+	rtn
+
+master_attempt:
+	call prepare_tx
+	call master_conn_send_packet
+	branch master_loop
+
+
+check_master_disconnect:
+	branch check_master_match,match
+	call supervision_update
+	branch master_disconnect,positive
+check_master_match:
+	call check_disconnect_timeout
+	nbranch master_disconnect,user
+	fetch 1,mem_state_map
+	rtnbit0 smap_name_req
+	rtnbit1 smap_name_res
+	fetch 1,mem_op
+	rtnbit1 op_disconn
+	call conn_timer_expired
+	nrtn blank
+	fetch 1,mem_nameres_cnt
+	increase -1,pdata
+	store 1,mem_nameres_cnt
+	nrtn blank
+	branch lmp_disconnect
+
+master_disconnect:
+	set0 mark_ext_patch,mark
+	bpatch patch04_2,mem_patch04
+	call quit_connection
+	disable master
+	fetch 1,mem_state_map
+	bbit1 smap_name_req,master_name_disconnect
+	fetch 1,mem_state
+	bbit0 state_conn_comp,master_disconnect_quiet
+	fetcht 1,mem_conn_handle
+	branch hci_send_disconn_complete
+master_disconnect_quiet:
+	force HCI_ERROR_CONNECTION_TIMEOUT,temp
+	branch hci_send_connection_error
+master_name_disconnect:
+	force HCI_SUCCESS,queue
+	fetch 1,mem_state_map
+	bbit1 smap_name_res,hci_send_name
+master_name_error:
+	force HCI_ERROR_PAGE_TIMEOUT,queue
+	arg mem_tmp_buffer,contw
+	arg 8,loopcnt
+	call memset0
+	branch hci_send_name
+	
+disconnect_stop_sco:
+	set0 mark_ext_patch,mark
+	bpatch patch04_3,mem_patch04
+	fetch 1,mem_state
+	rtnbit0 state_insco
+	fetcht 1,mem_conn_handle
+	fetch 1,mem_sco_asso_handle
+	isub temp,null
+	nrtn zero
+	call stop_esco  //include sco
+	branch restore_esco_check_no_mark
+
+check_disconnect_timeout:
+	set0 mark_ext_patch,mark
+	bpatch patch04_4,mem_patch04
+	enable user
+	fetch 1,mem_op
+	rtnbit0 op_disconn
+	call conn_timer_expired
+	nrtn blank
+disable_usr:
+	disable user
+	rtn
+
+conn_timer_expired:
+	fetch 1,mem_conn_timer
+	increase -1,pdata
+	store 1,mem_conn_timer
+	rtn
+
+linkkey_ready:
+	set0 mark_ext_patch,mark
+	bpatch patch04_5,mem_patch04
+	fetch 1,mem_state
+	bbit1 state_linkkey,linkkey_set
+	fetch 1,mem_device_option
+	beq dvc_op_hci,linkkey_send_hci
+	fetch 1,mem_pairing_auth
+	branch linkkey_set,blank
+	jam DEFALT_PAIRING_AUTH,mem_pairing_auth
+	jam BT_EVT_LINKKEY_GENERATE,mem_fifo_temp
+	call ui_ipc_send_event
+	branch linkkey_set
+linkkey_send_hci:
+	call check_localsm
+	ncall hci_send_linkkey_notification,true
+linkkey_set:
+	set0 mark_ext_patch,mark
+	bpatch patch04_6,mem_patch04
+	call context_traverse_linkkey
+	fetch 1,mem_state
+	set1 state_linkkey,pdata
+	store 1,mem_state
+	jam 1,mem_link_key_exists
+	fetch 1,mem_conn_sm
+	bne CONN_SM_PAIRING,linkkey_set_continue
+linkkey_set_continue:
+	rtn
+
+generate_linkkey_continue:
+	jam PAIRING_AUTH,mem_pairing_auth
+clear_linkstate:
+	fetch 1,mem_state
+	set0 state_linkkey,pdata
+	store 1,mem_state
+	rtn
+	
+
+	/* rtn user if switch */
+role_switch_check:
+	set0 mark_ext_patch,mark
+	bpatch patch04_7,mem_patch04
+	disable user
+	fetch 1,mem_state
+	rtnbit0 state_insniff
+	fetch 2,mem_tsniff
+	nrtn blank
+	fetch 4,mem_sniff_anchor
+	branch role_switch_clkn,clknt
+	isub clke_bt,pdata
+	branch role_switch_clke
+role_switch_clkn:
+	isub clkn_bt,pdata
+role_switch_clke:
+	sub pdata,4,null
+	nrtn positive
+	fetch 1,mem_state
+	set0 state_insniff,pdata
+	store 1,mem_state
+	enable user
+	rtn
+
+	/* pdata: switch instant, set tsniff=0 for special sniff */	
+role_switch_prepare:
+	copy pdata,temp
+	set0 mark_ext_patch,mark
+	bpatch patch05_0,mem_patch05
+	store 4,mem_sniff_anchor
+role_switch_prepare0:
+	jam SWITCH_FLAG_ACCEPT,mem_switch_flag
+	fetch 1,mem_state
+	set1 state_insniff,pdata
+	store 1,mem_state
+	force 0,pdata
+	store 2,mem_tsniff
+	jam 10,mem_current_sniff_attempt		// allow 10 more polls or nulls afterwards
+	jam 1,mem_sniff_attempt
+	rtn
+
+
+role_switch_master:
+	set0 mark_ext_patch,mark
+	bpatch patch05_1,mem_patch05
+	call role_switch_check
+	nrtn user
+	disable user
+	jam param_newconnto,mem_newconnto_counter
+	set0 mark_fhs_already_good,mark
+roles_waitfhs_loop:
+	call rf_setup_time_master_slot
+	call master_recv_packet
+	bmark1 mark_fhs_already_good,roles_replyto_fhs
+	call new_conn_timeout
+	nbranch roles_waitfhs_loop,blank
+role_switch_fail_master:
+	set0 mark_ext_patch,mark
+	bpatch patch05_2,mem_patch05
+	disable user
+	deposit clkn_bt
+	store 4,mem_next_btclk
+	enable clknt
+	enable master
+	jam BT_EVT_SWITCH_FAIL_MASTER,mem_fifo_temp
+	branch ui_ipc_send_event
+	
+roles_replyto_fhs:
+	set0 mark_ext_patch,mark
+	bpatch patch05_3,mem_patch05
+	call rf_setup_time_slave_slot
+	call master_send_packet
+	disable clknt
+	disable master
+	call apply_switch_clke
+	call prepare_newconn
+roles_newconns_loop:
+	set0 mark_ext_patch,mark
+	bpatch patch05_4,mem_patch05
+	call slave_newconn_once
+	branch roles_newconns_responded,match
+	call new_conn_timeout
+	nbranch roles_newconns_loop,blank
+	branch role_switch_fail_master
+roles_newconns_responded:
+	force 1,temp
+	call hci_send_role_change
+	fetch 1,mem_mode
+	set0 mode_master,pdata
+	store 1,mem_mode
+	call supervision_flush
+	call calc_clke_offset
+	enable user
+	jam BT_EVT_SWITCH_SUCCESS_MASTER,mem_fifo_temp
+	branch ui_ipc_send_event
+
+	
+load_esco:
+	set0 mark_ext_patch,mark
+	bpatch patch05_5,mem_patch05
+	rtnmark0 mark_esco
+	fetch 1,mem_state
+	rtnbit0 state_insco
+load_esco_do:
+	call init_esco_ibuff
+	fetch 1,mem_esco_arq
+	fetcht 1,mem_arq
+	storet 1,mem_esco_saved_arq
+	store 1,mem_arq
+	deposit am_addr
+	store 1,mem_saved_amaddr
+	fetch 1,mem_esco_addr
+	iforce am_addr
+	set0 mark_esco_rxok,mark	
+	fetch 1,mem_last_type
+	store 1,mem_last_type_saved
+	fetch 1,mem_last_type_esco
+	store 1,mem_last_type
+	rtn
+
+restore_esco:
+	set0 mark_ext_patch,mark
+	bpatch patch05_6,mem_patch05
+	rtnmark0 mark_esco	
+restore_esco_check_no_mark:
+	call check_esco_amaddr
+	nrtn true
+restore_esco_do:
+	call clear_got_tx
+	fetch 1,mem_esco_saved_arq
+	fetcht 1,mem_arq
+	store 1,mem_arq
+	storet 1,mem_esco_arq
+	fetch 1,mem_saved_amaddr
+	iforce am_addr
+	fetch 1,mem_last_type
+	store 1,mem_last_type_esco
+	fetch 1,mem_last_type_saved
+	store 1,mem_last_type
+	setarg 0xffff
+	store 2,mem_retransmission_cnt
+	rtn
+
+
+
+
+context_load:
+	set0 mark_ext_patch,mark
+	bpatch patch05_7,mem_patch05
+	set1 mark_context,mark
+	deposit rega
+	store 2,mem_context_ptr
+	force context_size,loopcnt
+	arg mem_le_state,contw
+	add rega,coffset_mode,contr
+	ifetch 1,contr
+	copy rega,contr
+	bbit1 mode_le,memcpy
+	arg mem_state,contw
+	call memcpy
+	disable attempt
+	fetch 1,mem_amaddr
+	iforce am_addr
+	jam 1,mem_current_sniff_attempt
+	branch context_load_master,master
+	jam 1,mem_current_sniff_attempt
+context_load_master:
+	fetch 1,mem_state
+	rtnbit0 state_insniff
+	fetch 1,mem_sniff_attempt
+	store 1,mem_current_sniff_attempt
+	fetch 1,mem_sniff_timeout
+	store 1,mem_current_sniff_timeout
+	rtn
+	
+context_save:
+	set0 mark_ext_patch,mark
+	bpatch patch06_0,mem_patch06
+	fetch 2,mem_context_ptr
+	iforce contw
+	force context_size,loopcnt
+	arg mem_le_state,contr
+	branch memcpy,le
+	arg mem_state,contr
+	branch memcpy
+
+	
+
+context_get_next:
+	fetcht 1,mem_current_context
+	arg context_num,loopcnt
+context_get_next_loop:
+	increase 1,temp
+	compare context_num,temp,0xff
+	nbranch context_get_next_cont,true
+	arg 0,temp
+context_get_next_cont:
+	storet 1,mem_current_context
+	mul32 temp,context_size,pdata
+	arg mem_context,rega
+	iadd rega,rega
+	ifetch 1,rega
+	bbit1 state_insniff,context_get_next_sniff
+	rtnbit1 state_inconn
+	rtnbit1 state_inpage
+context_get_next_sniff:
+	loop context_get_next_loop
+	rtn
+	
+context_new:
+	set0 mark_ext_patch,mark
+	bpatch patch06_1,mem_patch06
+	arg context_search_empty,regc
+	call context_search
+	nrtn zero					// all occupied
+	deposit rega
+	store 2,mem_context_ptr
+	force 0,null
+	rtn
+	
+	//return zero if anyone's wack is 1.
+	//return nzero if all wack is 0
+context_check_all_wack:
+	call check_esco_amaddr
+	branch context_check_esco_wack,true
+	fetch 2,mem_context_ptr
+	add pdata,coffset_arq,contw
+	fetch 1,mem_arq
+	istore 1,contw
+	arg context_check_a_wack,regc
+	branch context_search
+
+context_check_esco_wack:
+	fetch 1,mem_arq
+	isolate1 wack,pdata
+	branch context_esco_wack,true
+	force 1,null
+	rtn
+context_esco_wack:
+	force 0,null
+	rtn
+	
+	//rtn nzero if idle(no conn)
+context_check_idle:
+	arg context_check_inconn,regc
+	branch context_search
+	
+context_traverse_linkkey:
+	fetcht 2,mem_context_ptr
+	arg context_traverse_clearkey,regc
+	branch context_search
+	
+context_traverse_max_slot:
+	fetcht 2,mem_context_ptr
+	arg context_traverse_mslot,regc
+	branch context_search
+	
+	/* return zero if conn handle is found */
+context_search_conn_handle:
+	fetcht 1,mem_hci_conn_handle
+context_search_conn_handle2:
+	arg context_search_handle,regc
+	branch context_search
+	/* return zero if plap is found */
+context_search_plap:
+	set0 mark_ext_patch,mark
+	bpatch patch06_2,mem_patch06
+	fetcht 6,mem_hci_plap
+context_search_plap2:
+	arg context_search_lap,regc
+	branch context_search
+	/* return zero if sniff anchor is meet and rega pointers to context */
+context_search_insniff:
+	arg context_search_sniff,regc
+	branch context_search
+	/* return zero if sniff window is in content with current transaction */
+context_search_sniff_window:
+	arg context_search_window,regc
+context_search:
+	set0 mark_ext_patch,mark
+	bpatch patch06_3,mem_patch06
+	arg mem_context,rega
+	force context_num,loopcnt
+context_search_loop:
+	ifetch 1,rega
+	copy regc,pc
+context_search_next:
+	increase context_size,rega
+	loop context_search_loop
+	force 1,null
+	rtn
+
+context_search_empty:
+	bbit1 state_inconn,context_search_next
+	bbit1 state_inpage,context_search_next
+	force 0,null
+	rtn
+	
+context_search_lap:
+	bbit1 state_inpage,context_search_lap_cont
+	bbit0 state_inconn,context_search_next
+context_search_lap_cont:
+	add rega,coffset_plap,contr
+	ifetch 6,contr
+	isub temp,null
+	rtn zero
+	branch context_search_next
+
+context_search_handle:
+	bbit0 state_inconn,context_search_next
+	add rega,coffset_conn_handle,contr
+	ifetch 1,contr
+	isub temp,null
+	rtn zero
+	branch context_search_next
+
+context_search_sniff:
+	bbit0 state_insniff,context_search_next
+context_search_sniff_loop:
+	call context_get_anchor
+	bbit1 27,context_search_sniff_cont
+	isolate0 27,temp
+	branch context_search_sniff_cont,true
+	set1 28,pdata								/* case:0 - fffffff */
+context_search_sniff_cont:
+	isub temp,pdata
+	increase 1,pdata
+	branch context_search_sniff_miss,positive
+	increase 5,pdata
+	nbranch context_search_next,positive
+context_search_meet:
+	copy temp,bt_clk
+	call context_next_anchor
+	force 0,null
+	rtn
+
+context_search_sniff_miss:
+	iforce regb
+	add rega,coffset_tsniff,contr
+	ifetch 2,contr
+	branch context_search_meet,blank
+	call context_next_anchor
+	branch context_search_sniff_loop
+
+context_check_inconn:
+	bbit0 state_inconn,context_search_next
+	force 0,null 				// found
+	rtn
+	
+context_check_a_wack:
+	bbit0 state_inconn,context_search_next
+	add rega,coffset_mode,contr
+	ifetch 1,contr
+	bbit1 mode_le,context_search_next
+	add rega,coffset_arq,contr
+	ifetch 1,contr
+	bbit0 wack,context_search_next
+	force 0,null 				// found
+	rtn
+
+context_get_anchor:
+	add rega,coffset_mode,contr
+	ifetcht 1,contr
+	deposit clkn_bt
+	isolate1 mode_master,temp
+	add rega,coffset_sniff_anchor,contr
+	ifetcht 4,contr
+	rtn true
+	add rega,coffset_clk_offset,contr
+	ifetch 6,contr
+	call calc_clke2
+	deposit clke_bt
+	rtn
+
+context_next_anchor:
+	add rega,coffset_tsniff,contr
+	add rega,coffset_sniff_anchor,contw
+	ifetch 2,contr
+	iadd temp,timeup			/* wrap to 28 bits */
+	deposit timeup
+	istore 4,contw
+	branch le_context_nexthop
+	
+
+context_search_window:
+	bbit0 state_insniff,context_search_next
+	call context_get_anchor
+	iadd stop_watch,pdata
+	iadd stop_watch,pdata
+	iadd queue,pdata
+	isub temp,null
+	nbranch context_search_next,positive
+	force 0,null
+	rtn
+
+context_traverse_mslot:
+	bbit0 state_inconn,context_search_next
+	deposit temp
+	isub rega,null
+	branch context_search_next,null
+	add rega,coffset_mode,contr
+	ifetch 1,contr
+	bbit1 mode_le,context_search_next
+	add rega,coffset_lmp_to_send,contw
+	ifetch 1,contw
+	nbranch context_search_next,blank
+	force LMP_MAX_SLOT,pdata
+	istore 1,contw
+	branch context_search_next
+
+context_traverse_clearkey:
+	bbit0 state_inconn,context_search_next
+	deposit temp
+	isub rega,null
+	branch context_search_next,null
+	add rega,coffset_mode,contr
+	ifetch 1,contr
+	bbit1 mode_le,context_search_next
+	ifetch 1,rega
+	set0 state_linkkey,pdata
+	istore 1,rega
+	branch context_search_next
+
+	
+master_conn_send_packet:
+	set0 mark_ext_patch,mark
+	bpatch patch06_4,mem_patch06
+	call rf_setup_time_master_slot
+master_send_packet:
+	add clkn_bt,1,bt_clk          /* master start to use native clock */
+	call fetch_self_bt_adr
+	force 0x03,freq_mode          /* we are in connection!! */
+	call tx_radio_freq
+	call start_transmitter
+	call start_tx_native
+	call send_access_word
+	branch transmit_packet
+
+master_conn_recv_packet:
+	set0 mark_ext_patch,mark
+	bpatch patch06_5,mem_patch06
+	call rf_setup_time_slave_slot
+master_recv_packet:
+	add clkn_bt,1,bt_clk          /* master start to use native clock */
+	call fetch_self_bt_adr
+	force 0x03,freq_mode          /* we are in connection!! */
+	call rx_radio_freq
+	call init_rx_packet_flags
+	call prep_crypt
+	call start_rx_native	/* start listening at start_rx time */
+	call start_receiver
+master_rx_conn_finish_packet:
+	call wait_access_clkn_rt	/* master use native clock */
+	nrtn sync
+	call save_rssi
+	branch receive_packet
+	
+	
+
+master_newconn_once:
+	set0 mark_ext_patch,mark
+	bpatch patch06_6,mem_patch06
+	fetch 1,mem_fhs_am_addr
+	iforce am_addr			//review
+	force type_poll,type
+	call master_conn_send_packet
+	branch master_conn_recv_packet
+
+
+
+
+
+
+/******************************************/
+/************* Inquiry Scan ***************/
+/******************************************/
+
+inquiry_scan_dispatch:
+	fetch 1,mem_scan_mode
+	rtnbit0 inq_scan_mode
+	force iscan_interval_timer,queue
+	call timer_check
+	nrtn blank
+	fetcht 2,mem_iscan_window
+	force 4,queue
+	call sniff_check_window
+	rtn user
+	call inquiry_scan_start
+	force iscan_interval_timer,queue
+	fetch 2,mem_iscan_interval
+	nbranch timer_init,sync
+	random pdata				/* inquiry scan backoff */
+	iand mask3ff,pdata
+	branch timer_init
+	
+
+inquiry_scan_start:
+	set0 mark_ext_patch,mark
+	bpatch patch06_7,mem_patch06
+	jam 0,mem_fhs_am_addr
+	disable clknt
+	disable attempt
+	call afh_clear
+	and clkn_bt,0x1fc,bt_clk      /* freeze the clock, set bit[1] 0, this is version 1.1 */
+	force 0x01,freq_mode     /* slave in inquiry scan, kind of same as inquriy_response, this is version 1.1 */
+	call fetch_giac
+	call rx_radio_freq
+	setflip mark_inquiry_state,mark
+	fetch 1,mem_inquiryscan_waitcnt
+	increase 1,pdata
+	store 1,mem_inquiryscan_waitcnt
+	call fetch_diac
+	call start_receiver	/* get ready for that id packet */
+	call wait_access_forever	/* until there is timeout, or matched (true) */
+	nrtn sync
+	set0 mark_ext_patch,mark
+	bpatch patch07_0,mem_patch07
+	force 0,stop_watch
+	call shutdown_radio	/* must have heard */
+	fetch 1,mem_inquiryscan_rcvcnt
+	increase 1,pdata
+	store 1,mem_inquiryscan_rcvcnt
+	call fetch_giac
+	call rf_setup_time_slave_slot
+	or_into 0x002,bt_clk               /* put clk(1) to 1 */
+	force 0x01,freq_mode               /* slave in inquriy and page, response only */
+	call tx_radio_freq
+	call fetch_diac
+	call start_transmitter	/* get ready for that id packet */
+	call start_tx_external
+	deposit clkn_bt
+	store 4,mem_clkn_bt
+	call send_access_word
+	force type_fhs,type
+	force 0,am_addr                       /* put 0 into am_addr field for fhs */
+	call scan_mode_whiten
+	call transmit_packet_whitened
+	call send_eir
+	and_into 0x1fd,bt_clk                 /* put clk(1) back to 0 */
+	increase 1,N_tx_slot
+	rtn
+
+send_eir:
+	set0 mark_ext_patch,mark
+	bpatch patch07_1,mem_patch07
+	fetch 1,mem_eir_enable
+	rtn blank
+	arg mem_eir,contw
+	fetch 1,mem_local_name_length
+	copy pdata,loopcnt
+	increase 1,pdata
+	istore 1,contw	
+	copy contw,temp
+	increase 1,pdata
+	store 2,mem_tx_len	
+	copy temp,contw
+	setarg 0x09  //type:name
+	istore 1,contw		
+	arg  mem_local_name,contr
+	call memcpy       //name
+	arg mem_all_uuid_128bits,regc
+	arg 4,loopcnt
+	call get_all_uuid
+	arg mem_all_uuid_16bits,regc
+	arg 1,loopcnt
+	call get_all_uuid
+	force type_dm3,type		/* DM3 */
+	jam 2,mem_tx_lch
+	setarg mem_eir
+	store 2,mem_txptr
+	call rf_setup_time_slave_slot
+	call tx_radio_freq
+	call start_transmitter	/* get ready for that id packet */
+	call start_tx_external
+	call send_access_word
+	call scan_mode_whiten
+	call transmit_packet_whitened
+	rtn
+
+
+get_all_uuid:
+	copy contw,temp
+	copy regc,contr
+	ifetch 1,contr
+	rtn blank
+lshift_loop:
+	lshift pdata,pdata
+	loop lshift_loop
+	copy pdata,rega
+	increase 2,pdata
+	copy pdata,queue
+	fetch 2,mem_tx_len
+	iadd queue,pdata
+	store 2,mem_tx_len
+	copy temp,contw
+	copy rega,pdata
+	increase 1,pdata
+	istore 1,contw
+	copy regc,contr
+	ifetch 1,contr
+	ifetch 1,contr	//fetch type
+	istore 1,contw
+	copy rega,loopcnt
+	branch memcpy  //copy uuid
+	
+/******************************************/
+/******** Slave dispatch ***********/
+/******************************************/
+
+page_scan_dispatch:	
+	fetch 1,mem_scan_mode
+	rtnbit0 page_scan_mode
+	force pscan_interval_timer,queue
+	call timer_check
+	nrtn blank
+	fetcht 2,mem_pscan_window
+	force 40,queue
+	call sniff_check_window
+	rtn user
+	force 0,am_addr
+	jam param_pagerespto,mem_fhs_wait_counter
+	set0 mark_fhs_already_good,mark
+	call page_scan_start
+	force pscan_interval_timer,queue
+	fetch 2,mem_pscan_interval
+	branch timer_init
+	
+
+page_scan_start:
+	set0 mark_ext_patch,mark
+	bpatch patch07_2,mem_patch07
+	disable clknt
+	call afh_clear
+	fetch 1,mem_pagescan_waitcnt
+	increase 1,pdata
+	store 1,mem_pagescan_waitcnt
+	force 0,N_tx_slot
+	call fetch_self_bt_adr
+	add clkn_bt,1,bt_clk      /* freeze the clock on native clock until scan window is up */
+	force 0x02, freq_mode     /* slave in inquiry and page, not response */
+	set0 mark_ext_patch,mark
+	bpatch patch07_3,mem_patch07
+	call rx_radio_freq
+	call start_receiver	/* wait for that id packet from master */
+	call wait_access_forever
+	nrtn sync                          /* pscan window timeout occured, back to dispatch */
+	call shutdown_radio	/* got the id packet */
+	fetch 1,mem_pagescan_rcvcnt
+	increase 1,pdata
+	store 1,mem_pagescan_rcvcnt
+	force 0,stop_watch
+	call rf_setup_time_slave_slot
+	or_into 0x002,bt_clk               /* put clk(1) to 1 */
+	force 0x01,freq_mode               /* slave in inquriy and page, response only */
+	call tx_radio_freq
+	call start_transmitter
+	call start_tx_external
+	call send_access_word
+	call end_of_packet
+	force 0,am_addr
+	arg param_rf_setup, timeup
+	until clke_rt,meet
+	or_into 0x03,clke_bt
+	and_into 0x1fd,bt_clk
+page_scan_wait_fhs_restart:
+	set0 mark_ext_patch,mark
+	bpatch patch07_4,mem_patch07
+	increase 1,N_tx_slot
+	call rx_radio_freq
+	call start_receiver
+	call wait_access_mhalfbnd
+	nbranch page_scan_wait_fhs_again,sync	/* go back if didn't find access code */
+	call scan_mode_whiten
+	call receive_packet_whitened
+	bmark1 mark_fhs_already_good,page_scan_reply_to_fhs
+page_scan_wait_fhs_again:
+	set0 mark_ext_patch,mark
+	bpatch patch07_5,mem_patch07
+	fetch 1,mem_fhs_wait_counter
+	rtn blank
+	increase -1,pdata
+	store 1,mem_fhs_wait_counter
+	call rf_setup_time_master_slot	/* set up expiration time */
+	branch page_scan_wait_fhs_restart
+
+
+page_scan_reply_to_fhs:
+	set0 mark_ext_patch,mark
+	bpatch patch07_6,mem_patch07
+	set0 1,clke_bt
+	set1 0,clke_bt
+	fetch 1,mem_pagescan_rcvfhscnt
+	increase 1,pdata
+	store 1,mem_pagescan_rcvfhscnt
+	call rf_setup_time_slave_slot
+	or_into 0x02,bt_clk
+	call tx_radio_freq
+	call start_transmitter
+	call start_tx_external
+	call send_access_word
+	call end_of_packet
+slave_apply_clke_bt:
+	compare 0x03,clke_bt,0x03
+	branch slave_apply_clke_bt_now,true
+	until null,mhalfbnd
+	branch slave_apply_clke_bt
+slave_apply_clke_bt_now:
+	fetch 4,mem_clke_bt
+	or_into 0x03,pdata
+	icopy clke_bt
+
+start_slave_connection:
+	set0 mark_ext_patch,mark
+	bpatch patch07_7,mem_patch07
+	fetch 6,extm_lap
+	store 6,mem_plap
+	call prepare_newconn
+slave_newconn_loop:
+	call slave_newconn_once
+	branch sconn_successful,match     /* we were talked to */
+	call new_conn_timeout
+	nbranch slave_newconn_loop,blank
+	rtn
+
+	
+sconn_successful:
+	set0 mark_ext_patch,mark
+	bpatch patch08_0,mem_patch08
+	call newconn_init
+	call context_new
+	nrtn zero
+	jam 0,mem_mode
+	call calc_clke_offset
+	branch context_save
+
+
+slave_dispatch:
+	set0 mark_ext_patch,mark
+	bpatch patch08_1,mem_patch08
+	call calc_clke
+	call role_switch_slave
+	rtn user
+	call load_esco
+	call get_sco_data
+slave_loop:
+	set0 mark_ext_patch,mark
+	bpatch patch08_2,mem_patch08
+	call check_bt_disabled
+	call scheduler_process
+	call slave_conn_recv_packet	/* go listen for a packet */
+	call slave_savelist
+	nbranch slave_notmatch,match
+	call supervision_flush
+	call parse_l2cap
+	call scheduler_tx_l2cap_pkt
+	call prepare_tx
+	call slave_conn_send_packet
+	call parse_lmp
+	call process_cmd
+	call hci_send_num_complete_packets
+	fetch 1,mem_slave_rcvcnt
+	increase 1,pdata
+	store 1,mem_slave_rcvcnt
+	call calc_clke_offset
+slave_notmatch:
+	set0 mark_ext_patch,mark
+	bpatch patch08_3,mem_patch08
+	call lpm_set_mult
+	call supervision_update
+	branch slave_disconnect,positive
+	call check_disconnect_timeout
+	nbranch slave_disconnect,user
+	call check_attempt
+	nbranch slave_loop,blank
+	call process_sco_data
+	branch restore_esco
+
+
+slave_disconnect:
+	set0 mark_ext_patch,mark
+	bpatch patch08_4,mem_patch08
+	jam 0,mem_tester_emulate
+	jam 0,mem_debug_config
+	call quit_connection
+	set0 mark_testmode,mark
+	call test_enable_white
+	fetch 1,mem_state
+	bbit0 state_conn_comp,slave_connection_fail
+	fetcht 1,mem_conn_handle
+	branch hci_send_disconn_complete
+
+slave_connection_fail:
+	force HCI_ERROR_KEY_MISSING,temp
+	branch hci_send_connection_error
+
+role_switch_slave:
+	set0 mark_ext_patch,mark
+	bpatch patch08_5,mem_patch08
+	call role_switch_check
+	nrtn user
+	copy am_addr,temp
+	call get_free_amaddr
+	store 1,mem_fhs_am_addr
+	copy temp,am_addr
+	jam param_newconnto,mem_newconnto_counter
+roles_sendfhs_loop:
+	set0 mark_ext_patch,mark
+	bpatch patch08_6,mem_patch08
+	call rf_setup_time_master_slot
+	force type_fhs,type
+	call slave_send_access
+	deposit clkn_bt
+	store 4,mem_clkn_bt
+	call transmit_packet
+	call rf_setup_time_slave_slot
+	enable user3
+	call slave_receive_access
+	branch roles_got_fhs_reply,sync
+	call shutdown_radio
+	call new_conn_timeout
+	nbranch roles_sendfhs_loop,blank
+	rtnmark0 mark_accept_switch
+	jam LMP_SLOT_OFFSET,mem_lmo_opcode2
+	set1 mark_switch_initiated,mark
+	rtn
+roles_got_fhs_reply:
+	enable clknt
+	call prepare_newconn
+	call afh_clear
+roles_newconn_loop:
+	set0 mark_ext_patch,mark
+	bpatch patch08_7,mem_patch08
+	call master_newconn_once
+	branch roles_newconn_responded,sync
+	call new_conn_timeout
+	nbranch roles_newconn_loop,blank
+	disable clknt
+	deposit clke_bt
+	store 4,mem_next_btclk
+	rtn
+roles_newconn_responded:
+	force 0,temp
+	call hci_send_role_change
+	enable master
+	bmark0 mark_accept_switch,roles_newconn_nolmp
+	set0 mark_accept_switch,mark
+	jam LMP_ACCEPTED,mem_lmo_opcode2
+	jam LMP_HOST_CONNECTION_REQ,mem_lmi_opcode2
+	call tid_set_reply
+roles_newconn_nolmp:
+	deposit am_addr
+	store 1,mem_amaddr
+	force 0,pdata
+	store 6,mem_clk_offset
+	fetch 1,mem_mode
+	set1 mode_master,pdata
+	store 1,mem_mode
+	call supervision_flush
+	disable master
+enable_user:
+	enable user
+	rtn
+
+	
+
+init_rx_packet_flags:
+	set0 mark_ext_patch,mark
+	bpatch patch09_0,mem_patch09
+	disable match
+	set0 mark_loopback,mark
+	set0 mark_am_addr_broadcast,mark          /* initialize slave flags */
+	set0 mark_longpacket,mark
+	set0 mark_old_packet,mark
+	fetch 1,mem_arq    /* mem_arq + am_addr */
+	set0 arqnx,pdata
+	set1 flowx,pdata
+	store 1,mem_arq
+	rtn
+
+prepare_newconn:
+	set0 mark_ext_patch,mark
+	bpatch patch09_1,mem_patch09
+	jam param_newconnto,mem_newconnto_counter
+	jam param_newconn_arq,mem_arq
+	fetch 2,mem_rx_window_init
+	store 2,mem_rx_window
+	deposit clkn_bt
+	store 4,mem_next_btclk
+	rtn clknt
+	deposit clke_bt
+	store 4,mem_next_btclk
+	rtn
+
+newconn_init:
+	set0 mark_ext_patch,mark
+	bpatch patch09_2,mem_patch09
+	call init_lmp_reinit
+	call new_conn_handle
+	store 1,mem_conn_handle
+	setarg param_supervision_to
+	store 2,mem_supervision_to
+	fetch 1,mem_state
+	set1 state_inconn,pdata
+	store 1,mem_state
+	jam 0,mem_op
+	jam 0,mem_state_map
+	jam 0,mem_lpm_current_mult
+	branch supervision_flush
+	
+
+clear_linkkey:
+	set0 mark_ext_patch,mark
+	bpatch patch09_3,mem_patch09
+	force 0,pdata
+	store 8,mem_link_key
+	istore 8,contw
+	call clear_linkstate
+	branch context_traverse_linkkey
+	
+new_conn_timeout:
+	fetch 1,mem_newconnto_counter
+	increase -1,pdata
+	store 1,mem_newconnto_counter
+	rtn
+
+new_conn_handle:
+	fetch 1,mem_handle_num
+	increase 1,pdata
+	store 1,mem_handle_num
+	rtn
+
+
+quit_connection:
+	set0 mark_ext_patch,mark
+	bpatch patch09_4,mem_patch09
+	call disconnect_stop_sco
+	fetch 1,mem_hci_cmd
+	beq hci_cmd_remote_name_req,quit_connection_name
+	fetch 1,mem_lmp_to_send
+	bne LMP_NAME_REQ,quit_connection_cont
+quit_connection_name:
+	call cmd_check_plap
+	nbranch quit_connection_cont,zero
+	call master_name_error
+	jam 0,mem_hci_cmd
+quit_connection_cont:
+	set0 mark_ext_patch,mark
+	bpatch patch09_5,mem_patch09
+	call app_disconn_reason_collect_bt
+	call process_cmd				/* clear pending command */
+	call sniff_exit
+	jam BT_EVT_BB_DISCONNECTED,mem_fifo_temp
+	call ui_ipc_send_event
+	call init_lmp_work
+	call l2cap_init_work
+	call sp_initialize
+	fetch 1,mem_state
+	set0 state_inconn
+	store 1,mem_state
+	jam 0,memui_reconnect_mode
+
+	fetch 1,mem_state_map
+	compare 0x0,pdata,0xc0
+	branch quit_connection_not_clear_mark,true
+	set0 mark_rxbuf_inuse,mark
+quit_connection_not_clear_mark:
+	fetch 1,mem_arq
+	bbit0 wack,quit_connection_not_clear_tx
+quit_connection_not_clear_tx:
+	fetch 1,mem_op
+	rtnbit0 op_txl2cap
+	set0 mark_tx_l2cap,mark
+	rtn
+
+slave_newconn_once:
+	set0 mark_ext_patch,mark
+	bpatch patch09_6,mem_patch09
+	fetch 1,extm_newconn_am_addr
+	rtn blank     
+	icopy am_addr
+	call slave_conn_recv_packet
+	nrtn match
+	force type_null,type
+	call slave_conn_send_packet
+	deposit am_addr
+	store 1,mem_amaddr                 /* now the new am_addr is official */
+	force 0,pdata
+	store 1,extm_newconn_am_addr
+	rtn
+
+
+/******************************************/
+/********  Time consuming task  ***********/
+/******************************************/
+prepare_tx:
+	set0 mark_ext_patch,mark
+	bpatch patch09_7,mem_patch09
+	fetch 1,mem_state
+	bbit0 state_insco,prepare_tx_not_sco
+	force type_hv3,type
+	bmark0 mark_esco,prepare_tx_not_esco
+	call check_esco_amaddr
+	nbranch prepare_tx_not_sco,true
+	branch prepare_tx_not_sco,attempt	
+	call set_wait_ack					/* send esco only at the first attempt */
+	setarg 2		/* esco only has 1 retry */
+	store 2,mem_retransmission_cnt
+	rtn
+prepare_tx_not_esco:
+	nrtn attempt						/* send sco only at the first attempt */
+prepare_tx_not_sco:
+	set0 mark_ext_patch,mark
+	bpatch patch0a_0,mem_patch0a
+	call context_check_all_wack			 //abandon mark_retransmit, use context_check_all_wack instead.
+	nbranch prepare_tx_no_retransmit,zero
+	fetch 1,mem_arq
+	bbit0 wack,prepare_tx_pollnull		/* other wack, tx buffer in use, but not me */
+prepare_tx_retransmit:
+	bmark1 mark_loopback,prepare_tx_loopback
+	fetch 1,mem_debug_config
+	bbit1 debug_tx_pattern,prepare_tx_txpat
+	fetch 2,mem_retransmission_cnt
+	increase -1,pdata
+	store 2,mem_retransmission_cnt
+	branch prepare_tx_nomore_retransmit,blank
+	fetch 1,mem_last_type
+	iforce type
+	rtn
+
+prepare_tx_nomore_retransmit:
+	set0 mark_ext_patch,mark
+	bpatch patch0a_1,mem_patch0a
+	call clear_got_tx
+prepare_tx_no_retransmit:
+	call check_esco_amaddr
+	branch prepare_tx_pollnull,true
+	call send_lmp
+	branch prepare_tx_sendlmp,user
+	fetch 1,mem_op
+	bbit1 op_txl2cap,prepare_tx_sendl2cap
+	bmark1 mark_loopback,prepare_tx_loopback
+	fetch 1,mem_debug_config
+	bbit1 debug_tx_pattern,prepare_tx_txpat
+prepare_tx_pollnull:
+	force type_poll,type				/* POLL for master */
+	rtn master
+	force type_null,type				/* default is NULL */
+	rtn
+prepare_tx_loopback:
+	set0 mark_ext_patch,mark
+	bpatch patch0a_2,mem_patch0a
+	fetch 1,mem_rx_type
+	iforce type
+	rtnne 1
+	force type_null,type
+	rtn
+prepare_tx_txpat:
+	fetch 1,test_mode_packet_type
+	and pdata,0xf,type
+	set1 mark_loopback,mark
+	rtn
+prepare_tx_sendlmp:
+	force type_lmp,type
+	branch set_wait_ack
+prepare_tx_sendl2cap:
+	call tx_l2cap_type
+
+set_wait_ack:
+	set0 mark_ext_patch,mark
+	bpatch patch0a_3,mem_patch0a
+	fetcht 1,mem_arq
+	set1 wack,temp
+	storet 1,mem_arq
+	deposit type
+	store 1,mem_last_type
+	setarg 0xffff
+	store 2,mem_retransmission_cnt
+	rtn
+
+tx_l2cap_type:
+	set0 mark_ext_patch,mark
+	bpatch patch0a_4,mem_patch0a
+	fetch 1,mem_state_map
+	isolate1 smap_edr,pdata
+	fetch 2,mem_tx_len
+	branch tx_l2cap_type_edr,true
+	force type_dm1,type		/* DM1 */
+	sub pdata,17,null			
+	rtn positive
+	force type_dh1,type		/* DH1 */
+	sub pdata,27,null				
+	rtn positive
+	force type_dm3,type		/* DM3 */
+	sub pdata,121,null
+	rtn positive
+	force type_dm5,type		/* DM5 */
+	sub pdata,224,null
+	rtn positive
+	force type_dh5,type		/* DH5 */
+	rtn
+tx_l2cap_type_edr:
+	force type_dm1,type
+	sub pdata,17,null
+	rtn positive
+	force type_dh1,type		/*2-DH1*/
+	sub pdata,54,null
+	rtn positive
+	force type_dm3,type		/*2-DH3*/
+	arg 367,temp
+	isub temp,null
+	nrtn positive
+	force type_dm5,type		/*2-DH5*/
+	arg 679,temp
+	isub temp,null
+	nrtn positive
+	force type_dh5,type		/*3-DH5*/
+	rtn
+
+
+/******************************************/
+/***********  Receive Packet  *************/
+/******************************************/
+
+
+
+slave_receive_master_slot:
+	fetch 1,mem_state
+	bbit0 state_insniff,slave_receive_notsniff
+	fetch 2,mem_tsniff
+	branch slave_receive_notsniff,blank		/* role switch */
+	nbranch slave_receive_sniff,attempt
+slave_receive_notsniff:
+	call rf_setup_time_master_slot
+slave_receive_access:
+	add clke_bt,1,bt_clk
+slave_receive_sniff:
+	enable swfine
+	fetch 2,mem_rx_window
+	rshift pdata,pdata
+	arg param_pll_setup,temp
+	iadd temp,pdata
+	call ahead_window
+	call fetch_extm_bt_adr
+	force 0x03,freq_mode          /* connection hop */
+	call rx_radio_freq
+	call init_rx_packet_flags
+	call prep_crypt
+	set0 mark_ext_patch,mark
+	bpatch patch0a_5,mem_patch0a
+	fetch 2,mem_rx_window
+	rshift pdata,pdata
+	call ahead_window
+	call start_receiver
+	enable decode_fec0
+	fetch 2,mem_rx_window
+	arg param_clke_cal,temp
+	iadd temp,stop_watch
+	correlate null,timeout
+	copy clke,temp
+	storet 6,mem_sync_clke
+	disable decode_fec0
+	nrtn sync
+	arg param_clke_cal,clke_rt
+	copy bt_clk,clke_bt
+	branch lpm_adjust_clk,wake
+	rtn
+	
+
+slave_conn_recv_packet:
+	set0 mark_ext_patch,mark
+	bpatch patch0a_6,mem_patch0a
+	call slave_receive_master_slot
+	nbranch shutdown_radio,sync
+	call save_rssi
+	bmark0 mark_testmode,receive_packet
+	fetch 2,mem_tst_pktcnt_sync
+	increase 1,pdata
+	store 2,mem_tst_pktcnt_sync
+receive_packet:
+	rshift bt_clk,temp
+	or temp,0x40,white_init
+receive_packet_whitened:
+	set0 mark_ext_patch,mark
+	bpatch patch0a_7,mem_patch0a
+	enable enable_white
+	enable enable_hec
+	enable decode_fec1
+	parse demod,bucket,3  /* get am_addr */
+	rshift8 pwindow,pdata
+	store 1,mem_temp_am_addr
+	parse demod,bucket,4  /* get type */
+	inject bucket,7       /* align up to pwindow */
+	copy pwindow,pdata
+	store 1,mem_rx_type
+	parse demod,bucket,3  /* get arq */
+	rshift8 pwindow,pdata
+	store 1,mem_temp_arq
+	fetch 1,mem_rx_type
+	sub pdata,3,null
+	branch receive_packet_noedr,positive
+	beq 7,receive_packet_noedr		/* esco packet */
+	fetch 1,mem_state_map
+	isolate1 smap_edr,pdata
+	setflag true,PSK,radio_ctrl
+receive_packet_noedr:
+	set0 mark_ext_patch,mark
+	bpatch patch0b_0,mem_patch0b
+	parse demod,bucket,8   /* cycle thru hec */
+	disable decode_fec1
+	disable enable_hec   /* at this moment, 1 seqn + 8 hec is in shift */
+	branch error_header,crc_failed  /* if hec error, nothing is valid */
+	bmark0 mark_testmode,receive_packet_amchk
+	fetch 2,mem_tst_pktcnt_hec
+	increase 1,pdata
+	store 2,mem_tst_pktcnt_hec
+receive_packet_amchk:	
+	set0 mark_ext_patch,mark
+	bpatch patch0b_1,mem_patch0b
+	fetch 1,mem_temp_am_addr
+	compare 0,pdata,0x07           /* check for broadcast */
+	setflag true,mark_am_addr_broadcast,mark   /* received a broadcast message, can fire ar_addr if during unpark_req */
+	branch am_addr_ok,true
+	icompare 0x07,am_addr
+	branch am_addr_match,true
+	bmark0 mark_esco,end_of_packet
+	fetcht 1,mem_saved_amaddr
+	icompare 0x7,temp
+	nbranch end_of_packet,true
+	call restore_esco
+	fetch 1,mem_arq    /* mem_arq + am_addr */
+	set0 arqnx,pdata
+	set1 flowx,pdata
+	store 1,mem_arq
+am_addr_match:
+	enable match
+am_addr_ok:
+	set0 mark_ext_patch,mark
+	bpatch patch0b_2,mem_patch0b
+	fetch 1,mem_rx_type
+	icopy type
+	bmark1 mark_am_addr_broadcast,arqn_bypass        /* arqn doesn't make sense */
+	fetcht 1,mem_temp_arq
+	fetch 1,mem_arq
+	set0 flow,pdata
+	isolate1 flow,temp
+	setflag true,flow,pdata
+	isolate1 arqn,temp
+	setflag true,arqn,pdata
+	store 1,mem_arq
+	isolate0 arqn,temp
+	branch arqn_bypass,true
+	call clear_got_tx
+arqn_bypass:
+	set0 mark_ext_patch,mark
+	bpatch patch0b_3,mem_patch0b
+	arg 0,temp
+	call reserve_slot
+	and type,0xf,pdata
+	beq type_poll,process_poll
+	beq type_null,end_of_packet	/* null */
+	beq type_fhs,process_fhs
+	fetcht 1,mem_temp_arq
+	fetch 1,mem_arq
+	icompare 0x04,temp    /* bit 2 is seqn */
+	nbranch rx_type_dispatch,true   /* different then it's new */
+	bmark0 mark_am_addr_broadcast,failed_seqn         /* seqn failed, and not broadcast */
+	bbit0 bcast1,rx_type_dispatch           /* first broadcast never fail seqn */
+failed_seqn:
+	set1 mark_old_packet,mark
+rx_type_dispatch:
+	set0 mark_ext_patch,mark
+	bpatch patch0b_4,mem_patch0b
+	deposit type
+	beq type_dm1, process_dm1
+	beq type_dh1, process_dh1
+	beq type_hv3, process_hev
+	beq type_3dh1, process_3dh1
+	arg 4,temp
+	call reserve_slot
+	beq type_dm3, process_dm3
+	beq type_dh3, process_dh3
+	arg 8,temp
+	call reserve_slot
+	beq type_dm5, process_dm5
+	beq type_dh5, process_dh5
+	rtn
+
+
+process_hev:
+	set0 mark_ext_patch,mark
+	bpatch patch0b_5,mem_patch0b
+	enable decode_fec0
+	enable enable_crc
+	enable encrypt
+	arg mem_sco_ibuf,contw
+	force 30,loopcnt
+process_hev_loop:	
+	parse demod,bucket,8
+	rshift3 pwindow,pdata
+	istore 1,contw
+	loop process_hev_loop
+	bmark0 mark_esco,end_of_packet
+	parse demod,bucket,16  /* cycle through the crc */
+	nsetflag crc_failed,mark_esco_rxok,mark
+	call test_esco,crc_failed
+	branch error_payload,crc_failed
+	branch ack_payload
+
+test_esco:
+	deposit clke
+	store 6,mem_display
+	rtn
+
+process_poll:
+	branch end_of_packet
+
+process_dm3:
+process_dm5:
+	set1 mark_longpacket,mark
+process_dm1:
+	enable decode_fec2
+	branch process_dmh
+	
+process_dh3:
+process_dh5:
+	set1 mark_longpacket,mark
+process_3dh1:
+	set1 PSK3M,radio_ctrl
+process_dh1:
+	enable decode_fec0
+process_dmh:
+	set0 mark_ext_patch,mark
+	bpatch patch0b_6,mem_patch0b
+	bmark1 mark_rxbuf_inuse,end_of_packet			/* buffer in use, nack */
+	isolate0 PSK,radio_ctrl
+	branch process_dmh_noedr,true
+	disable enable_white
+	enable decode_fec0
+	disable decode_fec2
+	add clkn_bt,2,timeup
+	correlate clkn_bt,meet
+	nbranch error_payload,sync
+	set1 mark_longpacket,mark
+	enable enable_white
+process_dmh_noedr:
+	set0 mark_ext_patch,mark
+	bpatch patch0b_7,mem_patch0b
+	enable encrypt
+	enable enable_crc
+	parse demod,bucket,3  /* parse in lch+l2cap flow */
+	rshift8 pwindow,pdata
+	store 1,mem_lch_code		/* for loopback */
+	parse demod,bucket,5  /* parse in 5 bit packetlength */
+	bmark1 mark_longpacket,process_dmh_long
+	rshift3 pwindow,loopcnt
+	rshift3 loopcnt,loopcnt
+	branch process_dmh_common
+process_dmh_long:
+	parse demod,bucket,5		/* multi slot packet length of dh3 dh5 dm3 dm5 */
+	rshift pwindow,loopcnt
+	parse demod,bucket,3  /* undefined+bit 9 of length */
+process_dmh_common:	
+	set0 mark_ext_patch,mark
+	bpatch patch0c_0,mem_patch0c
+	deposit loopcnt
+	store 2,mem_len
+	branch process_dmh_data_end,blank
+	isub mask3ff,null
+	branch error_payload,positive	/* packet too large, discard */
+	set0 mark_ext_patch,mark
+	bpatch patch0c_1,mem_patch0c
+	set0 mark_fhs_eir,mark
+	fetch 1,mem_lch_code
+	and_into 0x03,pdata
+	arg mem_rxbuf,contw //lmp_data or test packet
+	beq LLID_LMP,process_lmp
+	bmark1 mark_testmode,process_dmh_data
+	fetch 1,mem_device_option
+	beq dvc_op_hci,process_dmh_acl	//HCI mode
+	//non-HCI mode
+	fetch 1,mem_lch_code
+	and_into 0x03,pdata
+	beq LLID_L2CAP_START,process_dmh_data_l2cap_start_pkt
+	beq LLID_L2CAP_CONT,process_dmh_data_l2cap_continue_pkt
+	branch error_payload
+
+process_lmp:
+	fetch 2,mem_len
+	sub pdata,0x70,null		//lmp buffer size
+	nbranch error_payload,positive
+	bmark1 mark_old_packet,ack_payload
+	branch process_dmh_data
+
+process_dmh_acl: //HCI
+	set0 mark_ext_patch,mark
+	bpatch patch0c_2,mem_patch0c
+	bmark1 mark_old_packet,ack_payload
+	fetch 2,mem_len
+	branch error_payload,blank
+	call hci_check_bcsp_protocol
+	nbranch process_dmh_acl_check_h4_buff,true
+process_dmh_acl_bcsp:
+	fetcht 2,mem_h5tx_free
+	increase 10,pdata
+	isub temp,null
+	nbranch process_dmh_acl_packet,positive// nbranch if no free buff
+	call hci_dispatch
+	branch process_dmh_acl_bcsp// loop and wait for tx buff
+process_dmh_acl_check_h4_buff:
+	hfetch 2,core_uart_txitems
+	arg 300,temp
+	isub temp,null
+	branch error_payload,positive
+	fetch 2,mem_acl_credits
+	branch error_payload,blank
+process_dmh_acl_packet: // packaging
+	set0 mark_ext_patch,mark
+	bpatch patch0c_3,mem_patch0c
+	call hci_get_packet_ptr
+	fetch 1,mem_conn_handle
+	fetcht 1,mem_lch_code
+	and_into 3,temp
+	lshift8 temp,temp
+	lshift4 temp,temp
+	ior temp,pdata
+	istore 2,contwu
+	fetcht 2,mem_len
+	copy temp,loopcnt
+	istoret 2,contwu //length in temp
+process_dmh_acl_copy:
+	set0 mark_ext_patch,mark
+	bpatch patch0c_4,mem_patch0c
+	parse demod,bucket,8
+	rshift3 pwindow,pdata
+	istore 1,contwu
+	loop process_dmh_acl_copy
+	add temp,4,loopcnt
+	call hci_check_bcsp_protocol
+	nbranch process_dmh_acl_send_h4,true
+	set1 mark_h5tx_rp,mark
+	force 6,queue
+	call bcsp_send_packet
+	branch process_dmh_data_end
+process_dmh_acl_send_h4:
+	call h4_send_packet_acl
+	branch process_dmh_data_end
+	
+process_dmh_data_l2cap_start_pkt:
+	set0 mark_ext_patch,mark
+	bpatch patch0c_5,mem_patch0c
+	bmark1 mark_old_packet,ack_payload
+	fetch 2,mem_len
+	arg 0x2e0,temp //l2cap buffer size
+	isub temp,null
+	branch error_payload,positive
+	fetch 1,mem_l2cap_rxbuff_inuse
+	bbit0 L2CAP_INUSE_BUFF1,process_dmh_data_into_buff1
+	bbit0 L2CAP_INUSE_BUFF2,process_dmh_data_into_buff2
+	branch end_of_packet
+process_dmh_data_into_buff1:
+	jam 1,mem_l2cap_rxbuff_new //new data in buff 1
+	fetch 2,mem_l2cap_rxbuff1_len
+	bne 0,end_of_packet			//baseband head error
+	arg mem_l2cap_rxbuff1,contw
+	branch process_dmh_data
+process_dmh_data_into_buff2:
+	jam 2,mem_l2cap_rxbuff_new //new data in buff 2
+	fetch 2,mem_l2cap_rxbuff2_len
+	bne 0,end_of_packet
+	arg mem_l2cap_rxbuff2,contw
+	branch process_dmh_data
+	
+process_dmh_data_l2cap_continue_pkt:
+	set0 mark_ext_patch,mark
+	bpatch patch0c_6,mem_patch0c
+	bmark1 mark_old_packet,ack_payload
+	fetch 2,mem_len
+	arg 0x2e0,temp //l2cap buffer size
+	isub temp,null
+	branch error_payload,positive
+	fetch 1,mem_l2cap_rxbuff_new
+	beq 1,process_dmh_data_l2cap_continue_pkt1
+	beq 2,process_dmh_data_l2cap_continue_pkt2
+	branch end_of_packet
+process_dmh_data_l2cap_continue_pkt1:
+	arg mem_l2cap_rxbuff1,contw
+	fetch 2,mem_l2cap_rxbuff1_len
+	iadd contw,contw
+	branch process_dmh_data
+process_dmh_data_l2cap_continue_pkt2:
+	arg mem_l2cap_rxbuff2,contw
+	fetch 2,mem_l2cap_rxbuff2_len
+	iadd contw,contw
+process_dmh_data:	
+	parse demod,bucket,8
+	rshift3 pwindow,pdata
+	istore 1,contw
+	loop process_dmh_data
+process_dmh_data_end:	
+	set0 mark_ext_patch,mark
+	bpatch patch0c_7,mem_patch0c
+	parse demod,bucket,16  /* cycle through the crc */
+	branch error_payload_crc,crc_failed
+	call lpm_hci_wake_dispatch
+	fetch 1,mem_l2cap_flow_ctrl_flag
+	beq L2CAP_FLOW_CTRL_ENABLE,end_of_packet
+	bmark1 mark_testmode,process_dmh_cont
+	bmark1 mark_old_packet,redundant_payload
+	fetch 1,mem_lch_code
+	compare 3,pdata,3
+	branch process_dmh_cont,true
+	fetch 2,mem_len
+	branch process_dmh_cont,blank
+	fetch 1,mem_device_option
+	beq dvc_op_hci,process_dmh_cont
+	set0 mark_ext_patch,mark
+	bpatch patch0d_0,mem_patch0d
+	fetch 1,mem_l2cap_rxbuff_new
+	beq 1,process_l2cap_pass_crc_buff1
+	beq 2,process_l2cap_pass_crc_buff2
+	branch assert
+process_l2cap_pass_crc_buff1:
+	fetch 2,mem_l2cap_rxbuff1_len
+	fetcht 2,mem_len
+	iadd temp,pdata
+	store 2,mem_l2cap_rxbuff1_len
+	beq 0,assert
+	fetcht 2,mem_l2cap_rxbuff1// l2cap payload length
+	increase 4,temp
+	isub temp,null
+	call l2cap_buff1_inuse,zero //l2cap pkts not ended
+	branch process_dmh_cont
+process_l2cap_pass_crc_buff2:
+	fetch 2,mem_l2cap_rxbuff2_len
+	fetcht 2,mem_len
+	iadd temp,pdata
+	store 2,mem_l2cap_rxbuff2_len
+	beq 0,assert
+	fetcht 2,mem_l2cap_rxbuff2// l2cap payload length 
+	add temp,4,temp
+	isub temp,null
+	call l2cap_buff2_inuse,zero //l2cap pkts not ended
+	branch process_dmh_cont
+process_dmh_cont:
+	set0 mark_ext_patch,mark
+	bpatch patch0d_1,mem_patch0d
+	fetcht 1,mem_state_map
+	fetch 1,mem_lch_code
+	compare 3,pdata,0x03
+	setflag true,smap_rxlmp,temp
+	nsetflag true,smap_rxl2cap,temp
+	storet 1,mem_state_map
+	nbranch process_dmh_cont_rxbuf_not_use,true
+	set1 mark_rxbuf_inuse,mark
+process_dmh_cont_rxbuf_not_use:
+	bmark0 mark_testmode,ack_payload
+	isolate1 smap_rxlmp,temp
+	branch ack_payload,true
+	fetch 2,mem_tst_pktcnt_crc
+	increase 1,pdata
+	store 2,mem_tst_pktcnt_crc
+	set1 mark_loopback,mark
+	set0 smap_rxl2cap,temp
+	set0 mark_rxbuf_inuse,mark
+	storet 1,mem_state_map
+ack_payload:
+	set0 mark_ext_patch,mark
+	bpatch patch0d_2,mem_patch0d
+	fetcht 1,mem_temp_arq
+	fetch 1,mem_arq
+	set1 arqnx,pdata
+	isolate1 seqn,temp            /* if accept, seqn always copies from the header */
+	setflag true,seqn,pdata
+	isolate1 mark_am_addr_broadcast,mark
+	setflag true,bcast1,pdata
+	store 1,mem_arq
+	fetch 2,mem_len
+	nbranch end_of_packet,blank
+	fetch 1,mem_state_map
+	set0 smap_rxl2cap,pdata//better to do this in l2cap_flow_ctrl_stop
+	store 1,mem_state_map
+	fetch 1,mem_lch_code
+	compare 0x01,pdata,0x07
+	//call l2cap_flow_ctrl_stop,true
+	branch end_of_packet
+	
+error_header:
+	set0 mark_ext_patch,mark
+	bpatch patch0d_3,mem_patch0d
+	disable match
+	fetch 2,mem_rx_hec_err
+	increase 1,pdata
+	store 2,mem_rx_hec_err
+	branch end_of_packet
+error_payload_crc:
+	fetch 2,mem_rx_crc_err
+	increase 1,pdata
+	store 2,mem_rx_crc_err
+	call discard_pkt
+	bmark0 mark_testmode,error_payload
+	set1 mark_loopback,mark
+error_payload:
+	branch end_of_packet
+	
+discard_pkt:
+	set0 mark_ext_patch,mark
+	bpatch patch0d_4,mem_patch0d
+	fetch 1,mem_lch_code
+	compare 3,pdata,0x03
+	nbranch discard_pkt_l2cap,true
+discard_pkt_lmp:	
+	fetcht 1,mem_state_map
+	set0 smap_rxlmp,temp
+	storet 1,mem_state_map
+	rtn
+discard_pkt_l2cap:
+//	isolate1 mark_testmode,mark
+//	setflag true,mark_loopback,mark
+	fetcht 1,mem_state_map
+	set0 smap_rxl2cap,temp
+	storet 1,mem_state_map
+	branch  h4_send_acl_trigger_clear
+
+redundant_payload:
+	fetch 1,mem_arq
+	set1 arqnx,pdata
+	store 1,mem_arq
+end_of_packet:
+	set0 mark_ext_patch,mark
+	bpatch patch0d_5,mem_patch0d
+	disable encode_fec0
+	disable encode_fec2
+	disable decode_fec0
+	disable decode_fec2
+	disable enable_crc
+	disable encrypt
+	disable enable_white
+	branch shutdown_radio,is_rx
+	until null,tx_clear
+	nop 100          /* flush out the last bit */
+	branch shutdown_radio
+	
+process_fhs:
+	set0 mark_ext_patch,mark
+	bpatch patch0d_6,mem_patch0d
+	enable enable_crc
+	enable decode_fec2
+	parse demod,bucket,72
+	isolate1 58,pdata
+	setflag true,mark_fhs_eir,mark
+	copy bt_adr,temp             /* save current address to aside */
+	ialigned bt_adr            /* send it to access gen */
+	ialigned fhs0			/* get fhs_misc */
+	pulse recalc                /* calc the lap just received from the other guy */
+	setsect 2,0xfffff             /* preset ms of shift reg as big mask */
+	setsect 3,0x0ffff             /* preset ms of shift reg as big mask */
+	nop 32                       /* 30 cycles after recalc */
+	iverify fhs_parity             /* check fhs_parity against ls 34 bits at shift reg, with msb 36 bits as mask */
+	deposit lap
+	store 3,extm_lap
+	deposit uap
+	store 1,extm_uap
+	copy temp,bt_adr             /* put the address back */
+	branch fhs_parity_ok,true     /* fhs parity failed */
+	branch error_payload
+fhs_parity_ok:
+	set0 mark_ext_patch,mark
+	bpatch patch0d_7,mem_patch0d
+	parse demod,bucket,72
+	ialigned fhs1                   /* give host the information on class and fhs_misc */
+	ialigned am_addr                /* store the am_addr the master assigned us */
+	ialigned nap
+	ialigned regb                   /* store external clock in regb according to clock format */
+	force 0,pdata
+	parse demod,bucket,16  /* cycle through the crc */
+	branch error_payload,crc_failed
+	setarg 0x0ffffffc
+	iand regb,pdata
+	store 4,mem_clke_bt
+	deposit fhs_class
+	store 3,extm_class
+	deposit fhs_misc
+	store 1,extm_fhs_misc
+	deposit am_addr
+	store 1,extm_newconn_am_addr
+	deposit nap
+	store 2,extm_nap
+	deposit bt_clk
+	inject rxf,32
+	compare type_fhs,type,0x0f         /* see if this was fhs packet */
+	setflag true,mark_fhs_already_good,mark
+	branch end_of_packet
+
+clear_got_tx:
+	set0 mark_ext_patch,mark
+	bpatch patch0e_0,mem_patch0e
+	fetch 1,mem_arq
+	rtnbit0 wack
+	set0 wack,pdata
+	setflip seqnx,pdata
+	store 1,mem_arq
+	fetch 1,mem_last_type
+	beq type_lmp,clear_got_txlmp
+	rtneq type_hv3
+	fetch 1,mem_op
+	rtnbit0 op_txl2cap,pdata
+	set0 op_txl2cap,pdata
+	set1 op_pkt_comp,pdata
+	store 1,mem_op
+	set0 mark_tx_l2cap,mark
+	fetch 1,mem_device_option
+	rtneq dvc_op_hci
+	fetch 2,mem_l2cap_tx_multi_offset
+	nrtn blank
+	fetch 1,mem_op
+	set0 op_pkt_comp,pdata
+	store 1,mem_op
+	branch l2cap_malloc_free
+
+clear_got_txlmp:
+	set0 mark_ext_patch,mark
+	bpatch patch0e_1,mem_patch0e
+	fetch 1,mem_lmo_header_opcode
+	rshift pdata,pdata
+	beq LMP_START_ENCRYPTION_REQ,start_encryption
+	beq LMP_STOP_ENCRYPTION_REQ,stop_encryption
+	beq LMP_UNSNIFF_REQ, sniff_exit
+	beq LMP_ESCAPE,clear_lmp_escape
+	beq LMP_REMOVE_SCO_LINK_REQ,stop_sco
+	rtnne LMP_ACCEPTED
+	fetch 1,mem_lmo_payload
+	beq LMP_SCO_LINK_REQ,sco_link_req_by_slave
+	beq LMP_START_ENCRYPTION_REQ,clear_send_setup_complete
+	rtn
+
+clear_lmp_escape:
+	fetch 1,mem_lmo_payload
+	set1 7,pdata
+	beq LMP_EXT_REMOVE_ESCO_REQ,stop_sco
+	rtn
+clear_send_setup_complete:
+	rtn master
+	fetch 1,mem_state
+	rtnbit1 state_conn_comp
+	jam LMP_SETUP_COMPLETE,mem_lmo_opcode2
+	rtn
+	
+// nokia BH-105  CALLING when reconnection
+sco_link_req_by_slave:
+	rtn master
+	fetch 1,mem_mode
+	isolate1 send_sco_when_slave,pdata
+	branch clean_mem_mode,true
+	//jam LMP_REMOVE_SCO_LINK_REQ,mem_lmo_opcode2
+	rtn
+clean_mem_mode:
+	set0 send_sco_when_slave,pdata
+	store 1,mem_mode
+	rtn
+	
+start_encryption:
+	set0 mark_ext_patch,mark
+	bpatch patch0e_2,mem_patch0e
+	fetch 1,mem_state_map
+	set1 smap_encryption,pdata
+	store 1,mem_state_map
+	hjam 1,core_encrypt
+	fetch 1,mem_state
+	isolate1 state_conn_comp,pdata
+	branch hci_send_encryption_change,true
+	rtn
+
+stop_encryption:
+	set0 mark_ext_patch,mark
+	bpatch patch0e_3,mem_patch0e
+	fetch 1,mem_state_map
+	set0 smap_encryption,pdata
+	store 1,mem_state_map
+	hjam 0,core_encrypt
+	rtn
+
+
+sniff_init:
+	set0 mark_ext_patch,mark
+	bpatch patch0e_4,mem_patch0e
+	copy clkn_bt,pdata
+	store 4,mem_lpm_delay_after_sniff
+	add clkn_bt,3,rega
+	branch sniff_init_master,master
+	add clke_bt,3,rega
+sniff_init_master:
+	fetcht 2,mem_tsniff
+	deposit rega
+	set0 27,pdata
+	idiv temp
+	fetch 2,mem_dsniff
+	call wait_div_end
+	remainder regc
+	isub regc,pdata
+	branch sniff_init_nowrap,positive
+	iadd temp,pdata
+sniff_init_nowrap:
+	iadd rega,pdata
+	store 4,mem_sniff_anchor
+	jam SWITCH_FLAG_INIT,mem_switch_flag
+	fetch 1,mem_state
+	set1 state_insniff,pdata
+	store 1,mem_state
+	fetch 1,mem_sniff_attempt
+	store 1,mem_current_sniff_attempt
+	jam 0x80,mem_seqi
+	setarg 0
+	store 3,mem_sniff_rcv
+	store 3,mem_sniff_lost
+	store 1,mem_sniff_unint_lost
+	jam BT_EVT_ENTER_SNIFF,mem_fifo_temp
+	call ui_ipc_send_event
+	fetch 2,mem_rx_window_sniff
+	store 2,mem_rx_window
+	nrtn master
+	add am_addr,-1,queue
+	rtn
+
+sniff_exit:
+	set0 mark_ext_patch,mark
+	bpatch patch0e_5,mem_patch0e
+	fetch 1,mem_state
+	rtnbit0 state_insniff
+	set0 state_insniff,pdata
+	store 1,mem_state
+	jam 0x7f,mem_seqi
+	fetch 2,mem_rx_window_init
+	store 2,mem_rx_window
+	disable wake
+	jam BT_EVT_EXIT_SNIFF,mem_fifo_temp
+	branch ui_ipc_send_event
+
+
+check_attempt:
+	set0 mark_ext_patch,mark
+	bpatch patch0e_6,mem_patch0e
+	enable attempt
+	fetch 1,mem_state
+	bbit1 state_insniff,check_attempt_sniff
+	rtnmark1 mark_testmode						/* pdata won't be blank now, try attempt */
+	fetch 1,mem_arq
+	rtnbit1 wack
+	fetch 1,mem_lmp_to_send
+	nrtn blank
+	fetch 1,mem_op
+	rtnbit1 op_txl2cap
+check_attempt_nomore:
+	force 0,pdata
+	rtn
+
+check_attempt_sniff:
+	bbit0 state_insco,check_attempt_not_sco
+	fetch 1,mem_current_sniff_attempt
+	beq 2,check_attempt_sniff_restore_sco
+	fetch 1,mem_arq
+	bbit1 wack,check_attempt_notimeout
+	bmark0 mark_esco_rxok,check_attempt_notimeout
+check_attempt_sniff_restore_sco:
+	call restore_esco
+	nbranch check_attempt_notimeout,master
+	fetch 1,mem_lmp_to_send
+	nbranch check_attempt_notimeout,blank
+check_attempt_sco_master:
+	fetch 1,mem_sco_poll
+	increase -1,pdata
+	store 1,mem_sco_poll
+	nbranch check_attempt_nomore,blank
+	jam param_sco_poll,mem_sco_poll
+	branch check_attempt_notimeout
+	
+check_attempt_not_sco:
+	fetch 1,mem_current_sniff_attempt
+	bne 1,check_attempt_notimeout
+	fetch 1,mem_current_sniff_timeout
+	branch check_attempt_notimeout,blank
+	increase -1,pdata
+	store 1,mem_current_sniff_timeout
+	fetch 1,mem_arq
+	rtnbit1 wack						// waiting for next ack
+	nrtn match						// waiting for next poll
+check_attempt_notimeout:
+	fetch 1,mem_current_sniff_attempt
+	increase -1,pdata
+	store 1,mem_current_sniff_attempt
+	rtn
+
+	/* enable user if sniff window vialation, queue is extra overhead */
+sniff_check_window:
+	set0 mark_ext_patch,mark
+	bpatch patch0e_7,mem_patch0e
+	disable swfine
+	copy temp,stop_watch
+	call context_search_sniff_window
+	disable user
+	nrtn zero
+	force 0,stop_watch
+	enable user
+	rtn
+
+	//return true if it is esco context
+check_esco_amaddr:
+	fetch 1,mem_esco_addr
+	icompare 0xff,am_addr
+	rtn
+	
+play_sco:
+	set0 mark_ext_patch,mark
+	bpatch patch0f_0,mem_patch0f
+	jam 1,mem_max_slot
+	//call context_traverse_max_slot
+	call enable_pcm
+	force 12,pdata
+	store 2,mem_tsniff
+	fetch 1,mem_esco_desco
+	lshift pdata,pdata
+	store 2,mem_dsniff
+	fetch 1,mem_state
+	set1 state_insco,pdata
+	store 1,mem_state
+	jam 3,mem_sniff_attempt
+	jam 3,mem_current_sniff_attempt
+	call sniff_init
+	force 0,temp //sco chn
+	call hci_send_sco_complete
+	jam 0x50,mem_esco_arq
+	jam param_sco_poll,mem_sco_poll
+	rtn
+	
+stop_sco:
+	set0 mark_ext_patch,mark
+	bpatch patch0f_1,mem_patch0f
+	call sniff_exit
+	jam 5,mem_max_slot
+	//call context_traverse_max_slot
+	call disable_pcm	
+	fetch 1,mem_state
+	set0 state_insco,pdata
+	store 1,mem_state
+stop_sco_hci:
+	arg 0xe00,temp
+	jam HCI_ERROR_REMOTE_USER_ENDED_CONNECTION,mem_hci_disconn_reason
+	branch hci_send_disconn_complete
+
+stop_esco:
+	set0 mark_ext_patch,mark
+	bpatch patch0f_2,mem_patch0f
+	jam default_neogotiation_state,mem_neogotiation_state
+	call stop_sco
+	call restore_esco
+	set0 mark_esco,mark
+	rtn	
+
+parse_l2cap:	
+	set0 mark_ext_patch,mark
+	bpatch patch0f_3,mem_patch0f
+	fetch 1,mem_device_option
+	beq dvc_op_hci,parse_l2cap_hci
+	set0 mark_rxbuf_inuse,mark 
+parse_l2cap_cont:
+	jam L2CAP_RX_CLEAR,mem_l2cap_rx_done
+	fetch 1,mem_l2cap_rxbuff_inuse
+	rtn blank
+	isolate1 L2CAP_INUSE_BUFF1,pdata
+	arg mem_l2cap_rxbuff1,contr
+	call process_rx_l2cap_pkt,true
+	set0 mark_ext_patch,mark
+	bpatch patch0f_4,mem_patch0f
+	fetch 1,mem_l2cap_rx_done
+	beq L2CAP_RX_DONE,parse_l2cap_release_buff1
+	
+	jam L2CAP_RX_CLEAR,mem_l2cap_rx_done
+	fetch 1,mem_l2cap_rxbuff_inuse
+	rtnbit0 L2CAP_INUSE_BUFF2
+	arg mem_l2cap_rxbuff2,contr	
+	call process_rx_l2cap_pkt
+	fetch 1,mem_l2cap_rx_done
+	beq L2CAP_RX_DONE,parse_l2cap_release_buff2
+	rtn
+	
+parse_l2cap_exit:
+	fetch 1,mem_state_map
+	set0 smap_rxl2cap,pdata
+	store 1,mem_state_map
+	set0 mark_rxbuf_inuse,mark
+	branch h4_send_acl_trigger_clear
+	
+parse_l2cap_release_buff1:
+	fetch 1,mem_l2cap_rxbuff_inuse
+	set0 L2CAP_INUSE_BUFF1,pdata
+	store 1,mem_l2cap_rxbuff_inuse
+	setarg 0
+	store 2,mem_l2cap_rxbuff1_len
+	rtn
+parse_l2cap_release_buff2:
+	fetch 1,mem_l2cap_rxbuff_inuse
+	set0 L2CAP_INUSE_BUFF2,pdata
+	store 1,mem_l2cap_rxbuff_inuse
+	setarg 0
+	store 2,mem_l2cap_rxbuff2_len
+	rtn
+
+parse_l2cap_hci:
+	fetch 1,mem_state_map
+	rtnbit0 smap_rxl2cap,pdata
+	call h4_send_acl_trigger
+	fetch 2,mem_acl_credits
+	branch assert,blank
+	increase -1,pdata
+	store 2,mem_acl_credits
+	branch parse_l2cap_exit
+
+l2cap_buff1_inuse:
+	fetch 1,mem_l2cap_rxbuff_inuse
+	set1 L2CAP_INUSE_BUFF1,pdata
+	store 1,mem_l2cap_rxbuff_inuse
+	rtn
+
+l2cap_buff2_inuse:
+	fetch 1,mem_l2cap_rxbuff_inuse
+	set1 L2CAP_INUSE_BUFF2,pdata
+	store 1,mem_l2cap_rxbuff_inuse
+	rtn
+
+/******************************************/
+/**********  Transmit Packet  *************/
+/******************************************/
+
+slave_send_access:
+	set0 mark_ext_patch,mark
+	bpatch patch0f_5,mem_patch0f
+	add clke_bt,1,bt_clk          /* slave start to use native clock */
+	call fetch_extm_bt_adr
+	force 0x03,freq_mode          /* connection frequency */
+	call tx_radio_freq
+	call start_transmitter
+	call start_tx_external
+	branch send_access_word
+	
+
+slave_conn_send_packet:
+	set0 mark_ext_patch,mark
+	bpatch patch0f_6,mem_patch0f
+	call rf_setup_time_slave_slot
+	deposit clke_bt
+	fetcht 4,mem_next_btclk
+	isub temp,pdata
+	rtnne 1					/* missed slave slot */
+	compare type_null,type,0x1f
+	nbranch slave_conn_send_access,true
+	fetch 1,mem_rx_type
+	rtn blank					/* null packet, do nothing */
+slave_conn_send_access:
+	call slave_send_access
+	compare type_id,type,0x1f        /* is this id only ? */
+	branch end_of_packet,true
+transmit_packet:
+	rshift bt_clk,temp
+	or temp,0x40,white_init
+transmit_packet_whitened:
+	set0 mark_ext_patch,mark
+	bpatch patch0f_7,mem_patch0f
+	enable enable_white
+	enable enable_hec
+	enable encode_fec1
+	set0 mark_longpacket,mark
+	deposit am_addr
+	inject mod,3             /* am_addr, temp is disabled */
+	deposit type
+	inject mod,4
+	fetch 1,mem_arq   /* aka mem_arq */
+	inject bucket,4  /* align up to flowx, arqnx, seqnx */
+	inject mod,3
+	enable enable_parity
+	inject mod,8   /* transmit parity */
+	disable encode_fec1
+	disable enable_parity
+	disable enable_hec
+	set0 PSK3M,radio_ctrl
+	arg 0,temp
+	call reserve_slot
+	set0 mark_ext_patch,mark
+	bpatch patch10_0,mem_patch10
+	and type,0x1f,pdata
+	beq type_lmp, transmit_lmp
+	beq type_null, end_of_packet
+	beq type_poll, end_of_packet
+	beq type_fhs, transmit_fhs  /* master mode fhs need got_tx and ack */
+	beq type_dm1, transmit_dm1
+	beq type_dh1, transmit_dh1
+	beq type_hv3, transmit_hev
+	beq type_3dh1, transmit_3dh1
+	arg 4,temp
+	call reserve_slot
+	beq type_dm3, transmit_dm3
+	beq type_dh3, transmit_dh3
+	arg 8,temp
+	call reserve_slot
+	beq type_dh5, transmit_dh5
+	branch transmit_dm5	/* must be 14, dm5 */
+
+
+transmit_hev:
+	set0 mark_ext_patch,mark
+	bpatch patch10_1,mem_patch10
+	enable encode_fec0
+	enable enable_crc
+	enable encrypt
+	force 30,loopcnt
+	arg mem_sco_obuf,contr
+transmit_ev_loop:
+	ifetch 1,contr
+	inject mod,8
+	loop transmit_ev_loop
+	bmark1 mark_esco,transmit_end
+	branch end_of_packet
+	
+transmit_fhs:
+	set0 mark_ext_patch,mark
+	bpatch patch10_2,mem_patch10
+	fetch 1,mem_fhs_am_addr            /* this is the am_addr to assign to slave */
+	icopy am_addr
+	fetch 1,mem_fhs_misc
+	icopy fhs_misc    /* [7:6]SR [5:4]SP [3:1]PS [0]undef  */
+	fetch 3,mem_class   /* store away class */
+	icopy fhs_class
+	fetch 2,mem_nap
+	icopy nap
+	enable enable_crc
+	enable encode_fec2
+	copy bt_adr,rega
+	call fetch_self_bt_adr
+	pulse recalc
+	nop 32                    /* 30 cycles after recalc for sync word generation */
+	copy bt_clk,timeup
+	fetch 4,mem_clkn_bt
+	icopy bt_clk
+	preload fhs0
+	set1 58,pdata		/* eir */
+	inject mod,72
+	preload fhs1
+	inject mod,72
+	copy timeup,bt_clk
+	copy rega,bt_adr
+	enable enable_parity
+	inject mod,16   /* generate CRC */
+	disable enable_parity
+	branch end_of_packet
+
+transmit_lmp:    /* expect the payload ready as in bb spec */
+	set0 mark_ext_patch,mark
+	bpatch patch10_3,mem_patch10
+	enable encrypt
+	enable enable_crc
+	enable encode_fec2
+	fetch 1,mem_lmo_header_length   /* this is the payload header */
+	and pdata,0x1f8,temp       /* temp is number of bits, check payload header format */
+	arg mem_lmo_header_length,contr
+	increase 8,temp   /* temp is in bits */
+transmit_lmp_loop:
+	add temp,-72,regc   /* regc is remainder */
+	nbranch transmit_lmp_finish,positive
+	ifetch 9,contr
+	inject mod,72
+	copy regc,temp
+	branch transmit_lmp_loop
+transmit_lmp_finish:
+	ifetch 9,contr
+	iinject mod,temp
+	branch transmit_end
+
+transmit_dm1:
+	enable encode_fec2
+	branch transmit_dmh
+transmit_dm3:
+transmit_dm5:
+	enable encode_fec2
+	set1 mark_longpacket,mark
+	branch transmit_dmh
+
+transmit_3dh1:
+	set1 PSK3M,radio_ctrl
+transmit_dh1:
+	enable encode_fec0
+	branch transmit_dmh
+	
+transmit_dh3:
+transmit_dh5:
+	set1 PSK3M,radio_ctrl
+	enable encode_fec0
+	set1 mark_longpacket,mark
+
+transmit_dmh:
+	set0 mark_ext_patch,mark
+	bpatch patch10_4,mem_patch10
+	fetch 1,mem_state_map
+	bbit0 smap_edr,transmit_noedr
+	sub type,3,null
+	branch transmit_noedr,positive
+	disable encrypt
+	disable encode_fec2
+	enable encode_fec0
+	disable enable_white
+	set1 PSK,radio_ctrl
+	isolate1 PSK3M,radio_ctrl
+	branch transmit_edr3m,true
+	setarg 0xabeee
+	inject mod,20
+	branch transmit_edr_sync_end
+transmit_edr3m:
+	setarg 0x5faeba
+	inject mod,24
+	setarg 0x12
+	inject mod,6
+transmit_edr_sync_end:	
+	enable enable_white
+	set1 mark_longpacket,mark
+transmit_noedr:
+	enable encrypt
+	enable enable_crc
+	bmark1 mark_loopback,transmit_loopback
+	fetch 1,mem_tx_lch
+	inject mod,3
+	fetch 2,mem_tx_len
+	iforce loopcnt
+	bmark1 mark_longpacket,transmit_long
+	inject mod,5
+	branch transmit_stuff
+transmit_long:	
+	inject mod,13
+transmit_stuff:
+	fetch 1,mem_device_option
+	beq dvc_op_hci,transmit_stuff_hci
+	deposit loopcnt
+	branch transmit_end,blank
+	fetch 2,mem_txptr
+	iforce contr
+transmit_stuff_loop:
+	ifetch 1,contr
+	inject mod,8
+	loop transmit_stuff_loop
+	branch transmit_end
+transmit_stuff_hci:
+	fetch 2,mem_txptr
+	iforce contru
+transmit_stuff_hci_loop:
+	ifetch 1,contru
+	inject mod,8
+	loop transmit_stuff_hci_loop
+transmit_end:
+	enable enable_parity
+	inject mod,16
+	disable enable_parity
+	call set_wait_ack
+	fetch 1,mem_state_map
+	bbit0 smap_edr,end_of_packet
+	force 0,pdata
+	inject mod,6				/* edr trailer */
+	branch end_of_packet
+
+
+transmit_loopback:
+	set0 mark_ext_patch,mark
+	bpatch patch10_5,mem_patch10
+	bmark1 mark_longpacket,transmit_loopback_long
+transmit_loopback_short:
+	fetch 1,mem_lch_code
+	inject mod,3						/* LLID and FLOW */
+	fetch 1,mem_len	/* take packet length */
+	iforce regc
+	inject mod,5
+	branch transmit_loopback_cont
+transmit_loopback_long:
+	fetch 1,mem_lch_code
+	inject mod,3						/* LLID and FLOW */
+	fetch 2,mem_len	/* take packet length */
+	iforce regc
+	inject mod,13
+transmit_loopback_cont:
+	arg mem_rxbuf,contr
+transmit_loopback_loop:	
+	copy regc,null
+	branch transmit_loopback_end,zero
+	ifetch 1,contr
+	inject mod,8
+	increase -1,regc
+	branch transmit_loopback_loop
+transmit_loopback_end:
+	fetch 2,mem_tst_pktcnt_dmh
+	increase 1,pdata
+	store 2,mem_tst_pktcnt_dmh
+	branch transmit_end
+	
+
+apply_switch_clke:
+	fetch 4,mem_clke_bt
+	add pdata,7,rega
+	fetch 2,mem_slot_offset
+	nbranch apply_switch_nozero,blank
+	increase -3,rega
+	branch apply_switch_wait_loop
+apply_switch_nozero:
+	mul32 pdata,12,pdata
+	hfetcht 2,core_halfslot
+	increase 1,temp
+apply_switch_loop:
+	isub temp,pdata
+	nbranch apply_switch_bt,positive
+	increase -1,rega
+	branch apply_switch_loop
+apply_switch_bt:
+	sub pdata,0,pdata
+apply_switch_wait_loop:
+	until null,oneslot
+	compare 0,clkn_bt,3
+	nbranch apply_switch_wait_loop,true
+	iforce clke_rt
+	copy rega,clke_bt
+	iforce clke_rt
+	rtn
+	
+
+calc_slot_offset:
+	set0 mark_ext_patch,mark
+	bpatch patch10_6,mem_patch10
+	until null,halfslot
+	deposit clke
+	iforce contr
+	rshift16,pdata,pdata
+	isub clkn_bt,loopcnt
+	and_into 3,loopcnt			/* bt portion */
+	nbranch calc_bt_portion,zero
+	force 0,pdata
+	branch calc_skip_bt
+calc_bt_portion:
+	arg 3750,temp
+	force 0,pdata
+calc_slot_offset_loop:
+	iadd temp,pdata
+	loop calc_slot_offset_loop
+calc_skip_bt:
+	iadd contr,pdata			/* add rt portion */
+	div pdata,12
+	call wait_div_end
+	quotient pdata
+	store 2,mem_slot_offset
+	rtn
+
+calc_clke_offset:
+	set0 mark_ext_patch,mark
+	bpatch patch10_7,mem_patch10
+	deposit clke
+	copy clkn,temp
+	isub temp,null
+	nsetflag positive,44,pdata
+	isub temp,temp
+	setarg 3750
+	isolate0 15,temp
+	branch calc_clke_pos,true
+	setarg -61786
+	iadd temp,temp
+calc_clke_pos:
+	storet 6,mem_le_clk_offset
+	rtn le
+	storet 6,mem_clk_offset
+	rtn
+
+calc_clke:
+	disable clknt
+	fetch 6,mem_le_clk_offset
+	branch calc_clke2,le
+	fetch 6,mem_clk_offset
+calc_clke2:
+	iadd clkn,alarm
+	increase 10,alarm
+	setarg 3750
+	isub alarm,pdata
+	isolate0 15,pdata
+	branch calc_clke_pos_adj,true
+	setarg 0xf15a
+	iadd alarm,alarm
+calc_clke_pos2:
+	copy alarm,clke
+	rtn
+calc_clke_pos_adj:		/* add 2 clock */
+	force 0,null
+	branch calc_clke_pos2
+	
+/******************************************/
+/********* RF related functions ***********/
+/******************************************/
+
+
+calc_radio_freq:
+	set0 mark_ext_patch,mark
+	bpatch patch11_0,mem_patch11
+	call set_sync_on
+	copy bt_clk,pdata
+	and_into 0x180,pdata
+	compare 3,freq_mode,0x07
+	nbranch freq_not_connection,true    /* don't do the hack if not in connection */
+	rshift3 pdata,pdata
+	iadd freq_index,pdata
+	branch do_hop_mod_now
+freq_not_connection:	
+	copy freq_index,pdata
+do_hop_mod_now:
+	div pdata,79
+	pulse recalc         /* now is good time to recalc id */
+	call wait_div_end
+	remainder rega
+	add rega,-40,temp
+	branch odd_half,positive
+	lshift rega,temp
+	branch freq_result
+odd_half:
+	lshift temp,temp
+	increase 1,temp
+freq_result:	
+	set0 mark_ext_patch,mark
+	bpatch patch11_1,mem_patch11
+	fetch 1,mem_mode
+	bbit0 afh_change,afh_process_con
+afh_process_0:	
+	fetch 4, mem_afh_instant   
+	isub bt_clk, null
+	branch afh_process_con,positive
+	call afh_clear
+	fetch 1,mem_afh_new_mod
+	rtn blank
+	fetch 1,mem_mode
+	set1 afh_enable,pdata
+	store 1,mem_mode
+	fetch 5,mem_afh_map_new
+	store 5,mem_afh_map_lo
+	ifetch 5,contr
+	store 5,mem_afh_map_hi
+	call afh_process_freq_map
+afh_process_con:
+	fetch 1,mem_mode
+	rtnbit0 afh_enable
+	isolate1 1,bt_clk
+	branch afh_same_channel,true	/* at odd slot, use the same as last even */
+	rshift3 temp,rega
+	and temp,7,queue
+	setarg mem_afh_map_lo  
+	iadd rega, rega
+	ifetch 1, rega
+	qisolate0 pdata
+	branch afh_process_1,true		/* not in map, do afh */
+	deposit temp
+	branch afh_process_end
+afh_process_1:
+	fetch 1, mem_afh_used
+	iforce regb                     
+	deposit bt_clk
+	and_into 0x180, pdata
+	rshift3 pdata,pdata
+	iadd freq_index,pdata
+	idiv regb
+	setarg mem_afh_map     
+	call wait_div_end
+	remainder rega
+	iadd rega,contr
+	ifetch 1,contr
+afh_process_end:	
+	store 1,mem_afh_index
+	iforce temp  
+  	rtn
+
+afh_same_channel:
+	fetch 1, mem_afh_index           /* last afh index  */
+	iforce temp
+	rtn
+
+afh_clear:
+	fetch 1,mem_mode
+	set0 afh_enable,pdata
+	set0 afh_change,pdata
+	store 1,mem_mode
+	rtn
+/*
+fixed_frequency:
+	fetcht 1,mem_fixed_freq
+	rtn
+*/
+afh_process_freq_map:
+	set0 mark_ext_patch,mark
+	bpatch patch11_2,mem_patch11
+	arg mem_afh_map,contw
+	force 10,loopcnt
+	call memset0
+	arg mem_afh_map,contw
+	force 0,regc
+	force 2,queue
+process_freq_3:	
+	fetch 5,mem_afh_map_lo
+	iforce temp
+	compare 2,queue,0xff
+	branch process_freq_1,true
+	rshift temp,temp
+process_freq_1:	
+	isolate0 0,temp
+	branch process_freq_0,true
+	deposit regc
+	istore 1,contw
+process_freq_0:
+	rshift2 temp,temp
+	increase 2,regc
+	compare 40,regc,0xfe
+	nbranch process_freq_2,true
+	fetch 5,mem_afh_map_hi
+	iforce temp
+	compare 2,queue,0xff
+	branch process_freq_2,true
+	rshift temp,temp
+process_freq_2:	
+	sub regc,78,null
+	branch process_freq_1,positive
+	force 1,regc
+	increase -1,queue
+	nbranch process_freq_3,zero
+	arg mem_afh_map,rega
+	deposit contw
+	isub rega,pdata
+	store 1,mem_afh_used
+	rtn
+
+rx_radio_freq:
+	set0 mark_ext_patch,mark
+	bpatch patch11_3,mem_patch11
+	call calc_radio_freq
+	fetch 1,mem_debug_config
+	bbit0 debug_rx_fixed_freq,rx_radio_freq_now
+	fetcht 1,mem_rx_fixed_freq
+rx_radio_freq_now:
+	branch set_freq_rx
+	
+
+tx_radio_freq:
+	set0 mark_ext_patch,mark
+	bpatch patch11_4,mem_patch11
+	call calc_radio_freq
+	fetch 1,mem_debug_config
+	bbit0 debug_tx_fixed_freq,tx_radio_freq_now
+	fetcht 1,mem_tx_fixed_freq
+tx_radio_freq_now:
+	branch set_freq_tx
+	
+
+fetch_giac:
+	force 0,uap
+	fetch 3,mem_glap
+	iforce lap
+	rtn
+
+fetch_page_bt_adr:
+	set0 mark_ext_patch,mark
+	bpatch patch11_5,mem_patch11
+	fetch 1,mem_hci_puap
+	icopy uap
+	fetch 3,mem_hci_plap
+	icopy lap
+	rtn
+
+fetch_self_bt_adr:
+	set0 mark_ext_patch,mark
+	bpatch patch11_6,mem_patch11
+	fetch 2,mem_nap
+	icopy nap
+	fetch 1,mem_uap
+	icopy uap
+	fetch 3,mem_lap
+	icopy lap                 /* copy self_adr,bt_adr */      /* use own address */
+	rtn
+
+fetch_extm_bt_adr:
+	set0 mark_ext_patch,mark
+	bpatch patch11_7,mem_patch11
+	fetch 2,mem_pnap
+	icopy nap
+	fetch 1,mem_puap
+	icopy uap
+	fetch 3,mem_plap
+	icopy lap         
+	rtn
+
+
+fetch_diac:
+	bmark1 mark_all_diac,fetch_diac_do
+	rtnmark0 mark_inquiry_state
+	rtnmark0 mark_periodical_diac
+fetch_diac_do:
+	and_into -256,lap
+	pulse recalc
+	nop 32
+	rtn
+
+
+shutdown_radio:
+	set0 mark_ext_patch,mark
+	bpatch patch12_0,mem_patch12
+	force 0,radio_ctrl
+	disable is_rx
+	disable is_tx
+	pulse packet_end
+	hjam 0x0,rfen_mdm
+	hjam 0x0,rfen_tx
+	hjam 0x0,rfen_rx
+	hjam 0,rfen_sn
+	hjam 0x70,rfen_msc
+	hjam 0x0,rfen_adc
+	rtn	
+
+set_sync_on:
+	set0 mark_ext_patch,mark
+	bpatch patch12_1,mem_patch12
+	hjam 0x0,rfen_mdm					/* if called from tx or rx */
+	hjam 0x0,rfen_tx
+	hjam 0x18,rfen_rx
+	hjam 0xa7,rfen_sn
+	hjam 0x7f,rfen_msc
+	rtn
+
+
+set_freq_rx:
+	set0 mark_ext_patch,mark
+	bpatch patch12_2,mem_patch12
+		/* IF is +2MHz */
+	storet 1,mem_last_freq
+	add temp,rx_freq_offset,rega			/* index to frequency */
+	branch rf_write_freq
+rf_rx_enable:
+	set0 mark_ext_patch,mark
+	bpatch patch12_3,mem_patch12
+	hjam 0xcf,rfen_tx
+	nop 10					/* wait adc clk48 ready */
+	hjam 0xff,rfen_rx
+	hjam 0xaf,rfen_sn
+	hjam 0xff,rfen_msc
+	nop 10
+	hjam 0xa0,rfen_mdm
+	rtn
+
+
+set_freq_tx:
+	set0 mark_ext_patch,mark
+	bpatch patch12_4,mem_patch12
+	storet 1,mem_last_freq
+	add temp,tx_freq_offset,rega			/* index to frequency */
+	call rf_write_freq
+	setarg param_pll_setup
+	call sleep
+txon:	
+	hjam 0x1,rfen_adc
+	hjam 0x3c,rfen_rx
+	hjam 0xe0,rfen_tx
+	hjam 0xb7,rfen_sn
+	hjam 0x7f, rfen_mdm
+	rtn
+
+initialize_radio:
+	hjam clksel_rc,core_clksel
+	call init_rf_regs
+	call init_agc_table
+initialize_radio_wait:
+	fetch 2,mem_rf_init_ptr
+	bbit0 14,initialize_radio_wait
+	iforce contr
+	arg 0x8900,temp
+initialize_radio_loop:
+	ifetch 1,contr
+	beq 0xff,initialize_radio_cont
+	ior temp,contw
+	ifetch 1,contr
+	istore 1,contw
+	branch initialize_radio_loop
+initialize_radio_cont:
+	set0 mark_ext_patch,mark
+	bpatch patch12_5,mem_patch12
+	call lpm_cal_xtal_startup
+	call switchto_dpllclk
+//	ncall check_dpll,wake
+	setarg param_dpll_start_delay
+	iadd clkn_bt,pdata
+	store 4,mem_dpll_clkn
+	set1 RESET,radio_ctrl
+	force 0,radio_ctrl
+	ncall do_rccal,wake
+	branch set_rccal
+
+	/* rega is frequency, 00=2400Mhz */
+rf_write_freq:
+	set0 mark_ext_patch,mark
+	bpatch patch12_6,mem_patch12
+	setarg 2400
+	iadd rega,temp
+	fetch 1,mem_fcomp_mul
+	hjam 0x04,rf_pll_rstn
+	imul32 temp,pdata
+	fetcht 1,mem_fcomp_div
+	idiv temp
+	call wait_div_end
+	quotient rega			/* rega is FLOOR(FVCO/fcomp) */
+	remainder pdata		
+	lshift16 pdata,pdata
+	lshift4 pdata,pdata		/* pdata is frac * 2^20 */
+	idiv temp
+	call wait_div_end
+	quotient pdata		/* pdata is frac *2^20/fcomp */
+	lshift8 pdata,pdata
+	lshift pdata,pdata
+	ior rega,pdata
+	hstore 4,rf_pll_intg
+	hjam 0x44,rf_pll_rstn
+	hjam 0xc4,rf_pll_rstn
+	rtn
+
+	
+do_rccal:
+	set0 mark_ext_patch,mark
+	bpatch patch12_7,mem_patch12
+	hjam 0x02,rfen_adc
+	setarg 250000
+	call sleep					/* wait clkpll&xtal stable */
+	hjam 0x7f,rfen_rx
+	nop 130
+	hjam 0x30,rf_rccal_ctrl
+	hjam 0xd0,rfen_tx
+	hjam 0x70,rf_rccal_ctrl
+	hjam 0xf0,rf_rccal_ctrl
+	force 50,loopcnt
+do_rccal_loop:
+	hfetch 1,rf_rccal_result
+	bbit1 5,do_rccal_end
+	loop do_rccal_loop
+do_rccal_end:
+	store 1,mem_rf_rccal
+	hjam 0,rfen_tx
+	hjam 0,rfen_rx
+	hjam 0x00,rfen_adc
+	rtn
+
+set_rccal:
+	set0 mark_ext_patch,mark
+	bpatch patch13_0,mem_patch13
+	fetch 1,mem_rf_rccal
+	set1 5,pdata
+	hstore 1,rf_rccal_ctrl
+	hfetcht 1,rf_bpf_ctrim
+	and_into 7,temp
+	lshift3 pdata,pdata
+	ior temp,pdata
+	hstore 1,rf_bpf_ctrim
+	hfetch 1,rf_bpf_ib
+	set0 bpf_rccal,pdata
+	hstore 1,rf_bpf_ib
+	hfetch 1,rf_adc_rccal
+	set0 adc_rccal,pdata
+	hstore 1,rf_adc_rccal
+	rtn
+
+save_rssi:
+	set0 mark_ext_patch,mark
+	bpatch patch13_1,mem_patch13
+	hfetch 2,rf_afc_d2a
+	rshift4 pdata,pdata
+	rshift3 pdata,pdata
+	sub pdata,0,pdata
+	and_into 0xff,pdata
+	div pdata,10
+	call wait_div_end
+	quotient pdata
+	lshift4 pdata,pdata
+	remainder temp
+	ior temp,pdata
+	store 1,mem_rssi			/* bcd value */
+	rtn
+
+switchto_rcclk:
+	hjam 0xa,core_clksel
+	hjam 0,rfen_ck
+	hfetch 3,core_lpm_ctrl
+	hstore 3,core_lpm_reg
+	hjam 0xfc,core_lpm_reg
+	call lpm_write_ctrl
+	nop 1000
+	rtn
+	
+switchto_dpllclk:
+	hjam clksel_rc,core_clksel
+	hfetch 1,rf_clkpll_frac+2
+	set0 4,pdata
+	set0 5,pdata
+	hstore 1,rf_clkpll_frac+2
+	hjam 0x00,rfen_ck
+	hjam 0x00,rfen_msc
+	hjam 0x70,rfen_msc
+	hjam 0xff,rfen_ck
+	hfetch 1,rf_clkpll_frac+2
+	set1 4,pdata
+	set1 5,pdata
+	hstore 1,rf_clkpll_frac+2
+	call init_lpm_ctrl
+	hfetch 1,rf_clkpll_int
+	set1 7,pdata
+	hstore 1,rf_clkpll_int
+	set0 7,pdata
+	hstore 1,rf_clkpll_int
+	set1 7,pdata
+	hstore 1,rf_clkpll_int
+	hjam clksel_dpll,core_clksel
+	rtn
+
+check_dpll:
+	nop 1000
+	hjam clksel_xtal,core_clksel
+	nop 10
+	hjam 0x00,core_bist_ctrl
+	hjam ccnt_start,core_misc_ctrl
+check_dpll_loop:
+	hfetch 1,core_perf_status
+	bbit0 1,check_dpll_loop
+	hfetcht 3,core_clk_counter
+	hjam clksel_dpll,core_clksel
+	nop 10
+	hjam ccnt_start,core_misc_ctrl
+check_dpll_loop2:
+	hfetch 1,core_perf_status
+	bbit0 1,check_dpll_loop2
+	hfetch 3,core_clk_counter
+	isub temp,pdata
+	branch check_dpll_pos,positive
+	sub pdata,0,pdata
+check_dpll_pos:
+	store 2,mem_dpll_error
+	sub pdata,70,null
+check_dpll_assert:
+	nbranch check_dpll_assert,positive
+	rtn
+	
+xtal_fast_wake:
+	setarg 0xf0f
+	branch lpm_write_config
+
+init_lpm_ctrl:
+	setarg 0x80f
+	branch lpm_write_config
+
+
+
+start_receiver:
+	set0 mark_ext_patch,mark
+	bpatch patch13_2,mem_patch13
+	call rf_rx_enable
+	disable is_tx
+	enable is_rx
+	pulse init_encrypt
+	rtn
+
+prep_crypt:
+	set0 mark_ext_patch,mark
+	bpatch patch13_3,mem_patch13
+	fetch 1,mem_state_map
+	isolate1 smap_encryption,pdata
+	setflag true,0,pdata
+	hstore 1,core_encrypt
+	arg mem_kc,contr
+	ifetch 9,contr
+	iforce kc_ls
+	ifetch 7,contr
+	iforce kc_ms
+	fetch 1,mem_key_size
+	add pdata,-1,g1l
+	pulse kc_p_activate               /* immediately start calculating primary Key */
+	rtn
+	
+wait_access_clke_rt:
+	set0 mark_ext_patch,mark
+	bpatch patch13_4,mem_patch13
+	enable decode_fec0
+	arg param_conn_access,timeup
+	correlate clke_rt,meet    /* keep correlating until sync is found, stop on no other condition */
+wait_access_end:
+	deposit clke
+	store 6,mem_sync_clke
+	disable decode_fec0
+	nbranch shutdown_radio,sync
+	arg param_clke_cal,clke_rt
+	increase 1,clke_bt
+	and_into 0x1fc,clke_bt
+	rtn
+
+
+
+wait_access_mhalfbnd:
+	enable decode_fec0
+wait_access_mhalfbnd_correlate:
+	correlate null,mhalfbnd    /* keep correlating until sync is found, or clke half */
+	branch wait_access_end,sync
+	compare 0x02,clke_bt,0x02
+	nbranch wait_access_mhalfbnd_correlate,true
+	branch wait_access_end
+
+wait_access_clkn_rt:
+	set0 mark_ext_patch,mark
+	bpatch patch13_5,mem_patch13
+	arg param_conn_access,timeup	/* found sync must occur within this time */
+	enable decode_fec0
+	correlate clkn_rt,meet    /* keep correlating until sync is found, or until clkn_rt timeup */
+	disable decode_fec0
+	nbranch shutdown_radio,sync
+	rtn
+
+wait_access_forever:
+	set0 mark_ext_patch,mark
+	bpatch patch13_6,mem_patch13
+	enable decode_fec0
+	correlate null,timeout    /* keep correlating until sync is found, or timeout */
+	disable decode_fec0
+	nbranch shutdown_radio,sync
+	arg param_clke_cal,clke_rt
+	and_into 0x1fc,clke_bt
+	rtn
+
+	/* reserve slots for mult-slot packet */
+reserve_slot:
+	set0 mark_ext_patch,mark
+	bpatch patch13_7,mem_patch13
+	iforce rega
+	deposit bt_clk
+	iadd temp,timeup
+	copy timeup,pdata
+	store 4,mem_next_btclk
+	deposit rega
+	rtn
+
+	/* pdata = clks ahead of bt_clk */
+ahead_window:
+	copy pdata,temp
+	set0 mark_ext_patch,mark
+	bpatch patch14_0,mem_patch14
+	copy temp,pdata
+	call clk2bt
+	lshift16 bt_clk,pdata
+	set1 44,pdata
+	call clk_diff
+	set0 44,pdata
+	call get_clk
+	call clk_diff
+	rtn user
+	call clk2rt
+	iforce stop_watch
+	until null,timeout
+	rtn
+
+
+setup_clk:
+	set0 mark_ext_patch,mark
+	bpatch patch14_1,mem_patch14
+	branch setup_clkn,clknt
+	until clke_rt,meet
+skip_setup_clke:
+	copy clke_bt,temp
+	branch setup_clknbt
+setup_clkn:
+	branch skip_setup_clkn,attempt
+	until clkn_rt,meet
+skip_setup_clkn:
+	copy clkn_bt,temp
+setup_clknbt:
+	branch setup_clk11,user
+	compare 1,temp,3
+	nbranch setup_clk,true
+setup_complete:
+	set0 mark_ext_patch,mark
+	bpatch patch14_2,mem_patch14
+	fetch 1,mem_state
+	rtnbit0 state_inconn
+	fetch 4,mem_next_btclk
+	isub temp,pdata
+	nrtn positive
+	sub pdata,0xff,null
+	branch setup_clk,positive
+	rtn
+setup_clk11:
+	compare 3,temp,3
+	nbranch setup_clk,true
+	branch setup_complete
+
+rf_setup_time:
+	set0 mark_ext_patch,mark
+	bpatch patch14_3,mem_patch14
+	arg param_rf_setup,timeup
+	branch setup_clk
+	
+rf_setup_time_slave_slot:
+	disable user
+	branch rf_setup_time
+
+rf_setup_time_master_slot:
+	enable user
+	branch rf_setup_time
+	
+start_transmitter:
+	set0 mark_ext_patch,mark
+	bpatch patch14_4,mem_patch14
+	call prep_crypt
+	disable is_rx
+	enable is_tx
+	rtn
+
+
+
+start_tx_native:
+	set0 mark_ext_patch,mark
+	bpatch patch14_5,mem_patch14
+	arg param_tx_setup,timeup
+	until clkn_rt,meet         /* wait until start_tx time */
+	pulse init_encrypt
+	rtn
+
+start_rx_native:
+	set0 mark_ext_patch,mark
+	bpatch patch14_6,mem_patch14
+	arg param_rx_setup,timeup
+	until clkn_rt,meet
+	rtn
+
+
+start_tx_external:
+	set0 mark_ext_patch,mark
+	bpatch patch14_7,mem_patch14
+	arg param_tx_setup,timeup
+	until clke_rt,meet         /* wait until start_tx time */
+	pulse init_encrypt
+	rtn
+
+send_access_word:
+	set0 mark_ext_patch,mark
+	bpatch patch15_0,mem_patch15
+	preload access          /* load in access word ready to be sent */
+	enable encode_fec0
+	set1 TXGFSK,radio_ctrl
+	inject mod,72
+	disable encode_fec0
+	rtn
+
+
+scan_mode_whiten:
+	copy xin,temp
+	or_into 0x60,temp                /* extend xin with 5->1, 6->1 */
+	copy temp,white_init
+	rtn
+
+
+
+	/* return blank if free amaddr is found */
+get_free_amaddr:
+	set0 mark_ext_patch,mark
+	bpatch patch15_1,mem_patch15
+	fetch 1,mem_current_amaddr
+	increase 1,pdata
+	bne param_esco_addr,get_free_amaddr_cont
+	force 1,pdata
+get_free_amaddr_cont:
+	store 1,mem_current_amaddr
+	iforce am_addr
+	rtn
+
+get_clk:
+	copy clkn,temp
+	rtn master
+	copy clke,temp
+	rtn
+
+get_clkbt:
+	deposit clkn_bt
+	rtn master
+	deposit clke_bt
+	rtn
+
+
+supervision_update:
+	set0 mark_ext_patch,mark
+	bpatch patch15_2,mem_patch15
+	fetcht 4,mem_supervision_timer
+	call get_clkbt
+	isub temp,timeup					/* and to 28 bits */
+	deposit timeup
+	fetcht 2,mem_supervision_to
+	lshift temp,temp
+	isub temp,pdata
+	rtn
+	
+supervision_flush:
+	set0 mark_ext_patch,mark
+	bpatch patch15_3,mem_patch15
+	call get_clkbt
+	store 4,mem_supervision_timer
+	rtn
+
+assert:
+	branch assert
+	
+loop:
+	branch loop
+
+sleep:	
+	rtn blank
+	/* sleep pdata clocks, only even clocks are accurate */
+	rshift pdata,pdata
+	increase -3,pdata
+sleep_loop:	
+	increase -1,pdata
+	nbranch sleep_loop,zero
+	force 0,pdata
+	rtn
+
+
+
+init_param:
+	/* clear specified sched ram */
+	arg 0x10,loopcnt
+	arg 0,contw
+	call memset0
+	arg mem_le_state,contw
+	arg 10,loopcnt
+	call memset0
+	jam 0,mem_sp_calc
+	jam 0,mem_fifo_temp
+	jam 0,mem_le_testtype
+	jam 0,mem_debug_config
+	jam 0,mem_lmp_conn_state
+	set0 mark_ext_patch,mark
+	bpatch patch15_4,mem_patch15
+	jam 0,mem_connection_options
+	jam 0,mem_tester_emulate
+	jam 0,mem_tester_cnt
+	setarg param_glap
+	store 3,mem_glap
+	setarg param_acl_pktlen
+	store 2,mem_acl_pktlen
+	jam param_sco_pktlen,mem_sco_pktlen
+	jam param_acl_pktcnt,mem_acl_pktcnt
+	jam param_sco_pktcnt,mem_sco_pktcnt
+	setarg param_hci_version
+	store 3,mem_hci_version
+	setarg param_lmp_version
+	store 3,mem_lmp_version
+	setarg param_lmp_subversion
+	store 2,mem_lmp_subversion
+	jam 0x60,mem_fhs_misc		/* R1 for 1.28s ps interval,P2 */
+	jam param_max_slot,mem_max_slot
+	jam 0x02,mem_fw_ver		/* set firmware version */
+	call init_memp
+	set0 mark_ext_patch,mark
+	bpatch patch15_5,mem_patch15
+	rtn wake
+	setarg 0
+	store 2,mem_tx_len
+	rshift clkn_bt,pdata
+	store 4,mem_last_clkn
+	rtn
+	
+
+//clear esco ibuff
+init_esco_ibuff:
+	setarg 0xaa,pdata
+	arg mem_sco_ibuf,contw
+	force 30,loopcnt
+init_esco_ibuff_loop:
+	istore 1,contw
+	loop init_esco_ibuff_loop
+	rtn
+
+init_rf_regs:
+	hjam 0x02,0x907
+	hjam 0x1f,0x908
+	hjam 0x1f,0x909
+	hjam 0xe0,0x90a
+	hjam 0x4e,0x90b			/* EVM */
+	hjam 0x45,rf_agc_ctrl		/* invert demod */
+	hjam 0x00,0x953			/* rccal */
+
+	hjam 0xfb,0x94c			/* rx sensitivity */
+	hjam 0xef,0x94d
+	hjam 0x0c,0x94e
+	
+	hjam 0x88,0x96f
+	hjam 0x30,0x973			/* turn off charge pump */
+
+	// tx power up to -3dBm
+	hjam 0x00,0x953
+	hjam 0xc9,0x956
+	hjam 0x6c,0x958
+	hjam 0x50,0x959
+	rtn
+
+init_agc_table:
+//AGC Table Setting Conservative, Based on 8PSK_sen, Max added
+	hjam 0xa9,0x930 //hjam 0x9D,0x930	
+	hjam 0xb1,0x92f //hjam 0xA1,0x92f	
+	hjam 0xb9,0x92e //hjam 0xA9,0x92e	
+	hjam 0xAD,0x92d	
+	hjam 0xB1,0x92c	
+	hjam 0xB5,0x92b	
+	hjam 0xBA,0x92a	
+	hjam 0xBE,0x929	
+	hjam 0xC2,0x928	
+	hjam 0xC6,0x927	
+	hjam 0xCA,0x926	
+	hjam 0xCE,0x925	
+	hjam 0xD2,0x924	
+	hjam 0xD6,0x923	
+	hjam 0xDA,0x922	
+	hjam 0xDE,0x921	
+	hjam 0xE2,0x920	
+	hjam 0xE6,0x91f	
+	hjam 0xEA,0x91e	
+	hjam 0xEE,0x91d	
+	hjam 0xF2,0x91c	
+	hjam 0xF6,0x91b	
+	hjam 0xFB,0x91a
+	
+	hjam 0xf5,0x947 //hjam 0xF8,0x947	
+	hjam 0xe5,0x946 //hjam 0xE9,0x946	
+	hjam 0xd5,0x945 //hjam 0xD9,0x945	
+	hjam 0xD8,0x944	
+	hjam 0xC9,0x943	
+	hjam 0xC8,0x942	
+	hjam 0x89,0x941	
+	hjam 0x88,0x940	
+	hjam 0x87,0x93f	
+	hjam 0x48,0x93e	
+	hjam 0x09,0x93d	
+	hjam 0x08,0x93c	
+	hjam 0xC9,0x93b	
+	hjam 0xC8,0x93a	
+	hjam 0xC7,0x939	
+	hjam 0xC6,0x938	
+	hjam 0xC5,0x937	
+	hjam 0xC4,0x936	
+	hjam 0xC3,0x935	
+	hjam 0xC2,0x934	
+	hjam 0xC1,0x933	
+	hjam 0xC0,0x932	
+	hjam 0x80,0x931
+	rtn	
+
+
+
+init_250k:
+	enable le
+	setarg 0x8e89be
+	lshift8 pdata,pdata
+	or_into 0xd6,pdata
+	iforce access
+	hjam 7,0x914			// enable ble
+	hjam 0xa0,0x90a
+	hjam 0x8f,0x90d		// enable 250k
+	hjam 0x0f,0x911		
+	hjam 0x87,0x912		// disable agc
+	rtn
+
+
+/*****************************************LPO************************************************/
+
+lpmstate:
+	setarg 0xee21
+	hstore 2,core_clkoff			// disable unused peripherals
+	hfetch 1,core_lpm_ldocnt
+	bbit0 gpio_latch,loadcode		// power up boot
+	enable wake
+	bbit0 cold_wake,lpmwake		
+	disable wake
+	deposit auxcnt
+	nbranch lpmwake,blank		// sleep interrupted, wakeup
+	arg param_hibernate_clks,temp
+	branch lpm_enter_sleep
+lpmwake:
+	hfetch 3,core_lpm_xtalcnt
+	hstore 3,core_lpm_reg
+	ifetch 1,contr
+	or_into isogate_mask,pdata		// open all isolation gate&power switch
+	istore 1,contw
+	call lpm_write_ctrl2
+	hfetch 1,core_lpm_isogate
+	set1 enable_retmem,pdata
+	hstore 1,core_lpm_isogate
+	call lpm_write_ctrl2
+	call lpm_load_context,wake
+	hfetch 1,core_lpm_reg+2
+	set0 gpio_latch,pdata			// enable gpio fuction
+	hstore 1,core_lpm_reg+2
+	call lpm_write_ctrl2
+	rtn wake
+	branch loadcode				// wakeup from hibernate
+
+lpm_load_context:
+	fetch 1,mem_saved_spidctrl
+	hstore 1,core_spid_ctrl
+	fetch 3,mem_saved_gsel
+	hstore 3,core_gpio_sel
+	fetch 4,mem_saved_gpio+4
+	hstore 4,core_gpio_out0
+	fetch 4,mem_saved_gpio
+	hstore 4,core_gpio_oe0
+	fetch 8,mem_saved_gpio+8
+	hstore 8,core_gpio_pu0	
+	fetch 8,mem_saved_mark
+	iforce mark
+	hfetch 8,core_gpio_wakeup_low
+	store 8,mem_gpio_wakeup_low
+	call load_ucode
+	rtn
+
+lpm_save_context:
+	deposit mark
+	store 8,mem_saved_mark
+	hfetch 8,core_gpio_oe0
+	store 8,mem_saved_gpio
+	ifetch 8,contr
+	istore 8,contw
+	hfetch 3,core_gpio_sel
+	store 3,mem_saved_gsel
+	hfetch 1,core_spid_ctrl
+	store 1,mem_saved_spidctrl
+	branch lpm_write_gpio_wakeup
+
+lpo_calibration:
+	hfetch 1,core_bist_ctrl
+	nbranch lpo_cal_inited,blank
+	fetch 3,mem_clks_per_lpo
+	nrtn blank
+	hjam 0xc0,core_bist_ctrl
+	hjam ccnt_start,core_misc_ctrl
+lpo_cal_inited:
+	hfetch 1,core_perf_status
+	rtnbit0 1
+	hfetch 3,core_clk_counter
+	store 3,mem_clks_per_lpo
+	rtn
+
+
+	/* temp is synced clke */
+lpm_adjust_clk:
+	set0 mark_ext_patch,mark
+	bpatch patch15_6,mem_patch15
+	deposit clke
+	call clk_diff_rt
+	fetcht 4,mem_sleep_counter_all
+	sub temp,0xff,null
+	rtn positive				// interval too small
+	lshift8 pdata,pdata
+	lshift4 pdata,pdata
+	idiv temp
+	call wait_div_end
+	quotient pdata
+	arg param_lpm_adjmax,temp
+	call ceiling
+	store 1,mem_lpm_adjust
+	nbranch lpm_adjust_positive,user
+	sub pdata,0,pdata
+lpm_adjust_positive:
+	fetcht 3,mem_clks_per_lpo
+	iadd temp,pdata
+	store 3,mem_clks_per_lpo
+lpm_clear_counter:
+	setarg 0
+	store 4,mem_sleep_counter_all
+	rtn
+
+	/* no retention memory at all */
+lpm_hibernate:
+	set0 mark_ext_patch,mark
+	bpatch patch15_7,mem_patch15
+	call lpm_write_gpio_wakeup
+	hfetch 4,core_lpm_ctrl
+	set0 15,pdata						/* lowest lpo */
+	hstore 4,core_lpm_reg
+	call lpm_write_ctrl
+lpm_hibernate_normal:
+	arg param_hibernate_clks,temp
+	fetch 1,mem_lpm_hibernate_switch
+	store 1,mem_lpm_xtalcnt + 4
+	fetch 1,mem_lpm_xtalcnt + 2
+	set1 cold_wake,pdata
+	store 1,mem_lpm_xtalcnt + 2
+
+	/* temp is lpo clocks to sleep */
+lpm_sleep:
+	set0 mark_ext_patch,mark
+	bpatch patch16_0,mem_patch16
+	fetch 4,mem_sleep_counter_all
+	iadd temp,pdata
+	store 4,mem_sleep_counter_all
+	call lpm_save_context
+	fetch 5,mem_lpm_xtalcnt
+	hstore 4,core_lpm_reg
+	rshift32 pdata,rega
+	until null,lpo_edge
+	deposit clkn
+	store 6,mem_sleep_clkn
+	hjam lpmreg_sel_ctrl2,core_lpm_wr
+	until null,lpo_edge
+	until null,lpo_edge
+	deposit rega
+	hstore 1,core_lpm_isogate
+	hjam lpmreg_sel_ctrl2,core_lpm_wr
+lpm_enter_sleep:
+	until null,lpo_edge
+	until null,lpo_edge
+	hstoret 4,core_lpm_reg
+	hjam lpmreg_sel_counter,core_lpm_wr
+	until null,never
+
+
+
+
+lpm_recover_clk:
+	set0 mark_ext_patch,mark
+	bpatch patch16_1,mem_patch16
+	setarg 0
+	copy auxcnt,null
+	branch lpm_recover_timeout,zero
+	hfetch 1,core_lpm_xtalcnt
+	hfetcht 1,core_lpm_buckcnt
+	isub temp,null
+	branch lpm_recover_xtal,positive
+	deposit temp
+lpm_recover_xtal:
+	isub auxcnt,pdata
+	increase 1,pdata
+lpm_recover_timeout:
+	increase 8,pdata
+	until null,lpo_edge
+	iadd lpo_time,pdata
+	fetcht 4,mem_sleep_counter
+	iadd temp,pdata
+	fetcht 3,mem_clks_per_lpo
+	imul32 temp,pdata
+	rshift8 pdata,pdata
+	rshift4 pdata,pdata
+	increase param_lpm_fix,pdata
+	arg 3750,temp
+	idiv temp
+	call wait_div_end
+	quotient pdata
+	lshift16 pdata,pdata
+	remainder temp
+	ior temp,pdata
+	fetcht 6,mem_sleep_clkn
+	call clk_add
+	copy temp,clkn
+	fetch 6,mem_context + coffset_clk_offset
+	call calc_clke2
+	deposit clke
+	store 6,mem_pdatatemp
+	deposit auxcnt
+	istore 1,contw
+	hfetch 1,core_gpio_in1
+	or_into 0xf0,pdata
+	istore 1,contw
+	call savelist_2
+	rtn
+	
+lpm_dispatch:
+	set0 mark_ext_patch,mark
+	bpatch patch16_2,mem_patch16
+	call lpo_calibration
+	fetch 3,mem_clks_per_lpo
+	rtn blank
+	fetch 1,mem_lpm_mode
+	rtn blank
+	call lpm_check_wake_lock
+	nrtn blank
+lpm_dispatch0:
+	fetch 1,mem_context
+	compare 3,pdata,0x7							/* sco won't sleep */
+	nbranch lpm_dispatch_unconn,true
+	fetch 2,mem_context + coffset_tsniff
+	rtn blank										/* role switch */
+	rtn wake
+	set0 mark_ext_patch,mark
+	bpatch patch16_3,mem_patch16
+lpm_dispatch1:
+	fetcht 1,mem_lpm_current_mult
+	fetch 2,mem_context + coffset_tsniff
+	imul32 temp,pdata
+	rshift4 temp,temp
+	rshift2 temp,temp
+	isub temp,pdata
+	fetcht 4,mem_context + coffset_sniff_anchor
+	iadd temp,pdata
+	fetcht 1,mem_lpm_overhead
+	isub temp,pdata
+	lshift16 pdata,alarm
+	set0 mark_ext_patch,mark
+	bpatch patch16_4,mem_patch16
+	fetch 2,mem_context + coffset_rx_window
+	rshift pdata,pdata
+	call clk2bt
+	deposit alarm
+	call clk_diff
+	copy clke,temp
+	call clk_diff_rt
+	rtn user
+lpm_dispatch_sleep:
+	call clk2lpo
+lpm_dispatch_lpo:
+	set0 mark_ext_patch,mark
+	bpatch patch16_5,mem_patch16
+	fetch 1,mem_lpm_xtalcnt
+	isub temp,null
+	branch lpm_clear_counter,positive
+	storet 4,mem_sleep_counter
+	call app_will_enter_lpm
+	call l2cap_lpm_save_txbuf
+	fetcht 4,mem_sleep_counter
+	branch lpm_sleep
+	
+lpm_dispatch_unconn:
+	set0 mark_ext_patch,mark
+	bpatch patch16_6,mem_patch16
+	fetch 1,mem_context
+	rtnbit1 state_inconn					// wont sleep in connection
+	rtnbit1 state_inpage					// wont sleep when paging
+	fetch 1,mem_ssp_enable
+	branch lpm_unconn_nossp,blank
+	fetch 1,mem_sp_local_key_invalid	// simple pairing is not ready
+	rtn blank
+lpm_unconn_nossp:
+	fetch 1,mem_le_adv_enable
+	nbranch lpm_unconn_cont,blank
+	fetch 1,mem_scan_mode
+	rtn blank
+lpm_unconn_cont:
+	fetch 2,mem_lpm_interval
+	rtn blank
+lpm_sleep_btclk:
+	fetcht 1,mem_lpm_overhead
+	isub temp,pdata
+	arg 7500,temp				/* 1.25ms */
+	imul32 temp,pdata
+	branch lpm_dispatch_sleep
+
+lpm_set_mult:
+	set0 mark_ext_patch,mark
+	bpatch patch16_7,mem_patch16
+	disable wake
+	fetch 1,mem_state
+	rtnbit0 state_insniff
+	nbranch lpm_not_match,match
+	call lpm_match
+	fetch 2,mem_rx_window_sniff
+	store 2,mem_rx_window
+	fetch 1,mem_arq
+	bbit1 wack,lpm_mult_short
+	bmark0 mark_lpm_mult_enable,lpm_mult_short
+	call l2cap_malloc_is_fifo_empty
+	nbranch lpm_mult_short,blank
+lpm_mult_wait_timeout:
+	jam 0,mem_lpm_current_mult
+	bmark0 mark_lpm_mult_enable,lpm_mult_short
+	fetch 1,mem_lpm_mult_cnt
+	branch lpm_mult_long,blank
+	increase -1,pdata
+	store 1,mem_lpm_mult_cnt
+	rtn
+
+lpm_match:
+	jam 0,mem_sniff_unint_lost
+	fetch 3,mem_sniff_rcv
+	increase 1,pdata
+	store 3,mem_sniff_rcv
+	rtn
+
+lpm_not_match:
+	set0 mark_ext_patch,mark
+	bpatch patch17_0,mem_patch17
+	fetcht 2,mem_rx_window_sniff
+	rshift temp,temp
+	fetch 2,mem_rx_window
+	iadd temp,pdata
+	store 2,mem_rx_window
+lpm_lost:
+	jam 0,mem_lpm_current_mult
+	fetch 3,mem_sniff_lost
+	increase 1,pdata
+	store 3,mem_sniff_lost
+	fetch 1,mem_sniff_unint_lost
+	increase 1,pdata
+	store 1,mem_sniff_unint_lost
+	rtn
+
+lpm_mult_short:
+	jam 0,mem_lpm_current_mult
+	fetch 1,mem_lpm_mult_timeout
+	store 1,mem_lpm_mult_cnt
+	rtn
+
+lpm_mult_long:
+	fetcht 1,mem_lpm_mult
+	storet 1,mem_lpm_current_mult
+	rtn
+
+lpm_cal_xtal_startup:
+	set0 mark_ext_patch,mark
+	bpatch patch17_1,mem_patch17
+	fetch 1,mem_lpm_xtalcnt
+	nrtn blank
+	hjam clksel_rc,core_clksel
+	setarg 0xf0c
+	call lpm_write_config
+	setarg 200000
+	call sleep
+	until null,lpo_edge
+	copy lpo_time,alarm
+	call xtal_fast_wake
+	hjam clksel_xtal,core_clksel
+	nop 10
+	until null,lpo_edge
+	deposit lpo_time
+	isub alarm,pdata
+	increase 0x30,pdata
+	arg 0xff,temp
+	call ceiling
+	store 1,mem_lpm_xtalcnt
+	rtn
+
+
+
+	/* pdata is lpm_reg[11:0] */
+lpm_write_config:
+	arg 0xfff,contw
+	iand contw,contw
+	fetch 1,mem_lpm_config
+	and_into 0xf0,pdata
+	lshift8 pdata,pdata
+	ior contw,pdata
+	hstore 2,core_lpm_reg
+	ifetch 2,contr
+	istore 2,contw
+
+lpm_write_ctrl:
+	setarg lpmreg_sel_ctrl
+	branch lpm_write
+
+lpm_write_ctrl2:
+	setarg lpmreg_sel_ctrl2
+lpm_write:
+	until null,lpo_edge
+	hstore 1,core_lpm_wr
+	until null,lpo_edge
+	until null,lpo_edge
+	rtn
+
+
+lpm_write_gpio_wakeup:
+	set0 mark_ext_patch,mark
+	bpatch patch17_2,mem_patch17
+	fetch 4,mem_gpio_wakeup_low
+	hstore 4,core_lpm_reg
+	setarg lpmreg_sel_gpiolow
+	call lpm_write
+	fetch 4,mem_gpio_wakeup_high
+	hstore 4,core_lpm_reg
+	setarg lpmreg_sel_gpiohigh
+	branch lpm_write
+
+lpm_get_wake_lock:
+	fetch 2,mem_lpm_wake_lock
+	qset1 pdata
+	store 2,mem_lpm_wake_lock
+	rtn
+
+lpm_put_wake_lock:
+	fetch 2,mem_lpm_wake_lock
+	qset0 pdata
+	store 2,mem_lpm_wake_lock
+	rtn
+
+
+
+lpm_check_wake_lock:
+	set0 mark_ext_patch,mark
+	bpatch patch17_3,mem_patch17
+	call app_check_wake_lock
+	fetch 2,mem_lpm_wake_lock
+	copy pdata,rega
+	fetch 1,mem_state_map
+	isolate1 smap_rxlmp,pdata
+	setflag true,wake_lock_lmp_rx,rega
+	fetch 1,mem_lmo_opcode1
+	fetcht 1,mem_lmo_opcode2
+	iadd temp,pdata
+	fetcht 1,mem_lmp_to_send
+	iadd temp,pdata
+	nsetflag blank,wake_lock_lmp_tx,rega
+	set0 mark_ext_patch,mark
+	bpatch patch17_4,mem_patch17
+	fetch 2,mem_l2cap_rxbuff1_len
+	fetcht 2,mem_l2cap_rxbuff2_len
+	iadd temp,pdata
+	nsetflag blank,wake_lock_l2cap_rx,rega
+	fetch 5,mem_ipc_fifo_bt2c51
+	nsetflag blank,wake_lock_ipc_bt2c51,rega
+	fetch 5,mem_ipc_fifo_c512bt
+	nsetflag blank,wake_lock_ipc_c512bt,rega
+	fetch 1,mem_hci_cmd
+	nsetflag blank,wake_lock_cmd,rega
+	fetch 1,mem_device_option
+	compare dvc_op_module,pdata,0xff
+	call lpm_uart_wake_lock,true
+	set0 mark_ext_patch,mark
+	bpatch patch17_5,mem_patch17
+	fetch 1,mem_device_option
+	bne dvc_op_hci,lpm_check_wake_lock_nothci
+	call lpm_uart_wake_lock
+	fetch 1,mem_link_key_exists
+	setflag blank,wake_link_key_exists,rega
+	fetch 4,mem_lpm_delay_after_sniff
+	arg 0x1710,temp
+	iadd temp,temp
+	copy clkn_bt,pdata
+	isub temp,null
+	nsetflag positive,wake_lock_delay,rega
+	branch lpm_check_wake_lock_end
+
+lpm_uart_wake_lock:
+	hfetch 2,core_uart_rxitems
+	nsetflag blank,wake_lock_uart_rx ,rega
+	hfetch 2,core_uart_txitems
+	nsetflag blank,wake_lock_uart_tx ,rega
+	rtn
+
+lpm_check_wake_lock_nothci:
+	setarg -8
+	iand rega,rega
+lpm_check_wake_lock_end:
+	copy rega,pdata
+	store 2,mem_lpm_wake_lock
+	rtn blank
+	rtn match
+	enable wake
+	rtn
+
+lpm_shut_down:
+	hfetch 4,core_lpm_ctrl
+	set0 27,pdata
+	hstore 4,core_lpm_reg
+	call  lpm_write_ctrl
+	branch assert
+
+lpm_enable_exen_output:
+	hfetch 4,core_lpm_xtalcnt
+	set1 20,pdata
+	hstore 4,core_lpm_reg
+	branch lpm_write_ctrl2
+	
+lpm_disable_exen_output:
+	hfetch 4,core_lpm_xtalcnt
+	set0 20,pdata
+	hstore 4,core_lpm_reg
+	branch lpm_write_ctrl2
+
+lpm_hci_wake_dispatch:
+	set0 mark_ext_patch,mark
+	bpatch patch17_6,mem_patch17
+	fetch 1,mem_device_option
+	rtnne dvc_op_hci
+	call gpio_check_uart_state
+	rtn true
+	fetch 4,mem_hci_wake_clk
+	nbranch lpm_hci_check_wake_time,blank
+	copy clkn_bt,pdata
+	store 4,mem_hci_wake_clk
+	branch gpio_pd_uart_tx
+lpm_hci_check_wake_time:
+	set0 mark_ext_patch,mark
+	bpatch patch17_7,mem_patch17
+	copy clkn_bt,pdata
+	fetcht 4,mem_hci_wake_clk
+	isub temp,pdata
+	arg HOST_WAKE_TIME,temp
+	isub temp,null
+	nrtn positive
+	setarg 0
+	store 4,mem_hci_wake_clk
+	branch hci_exit_lpm
+
+check_bt_disabled:
+	fetch 2,mem_chip_functions
+	bbit1 bt_disabled,assert
+	rtn
+check_ble_disabled:
+	fetch 2,mem_chip_functions
+	bbit1 ble_disabled,assert
+	rtn
+check_module_disabled:
+	fetch 2,mem_chip_functions
+	bbit1 module_disable,assert
+	rtn
+	
+test_init:
+	setarg test_proc
+	store 2,mem_cb_bt_process
+	setarg test_sleep
+	store 2,mem_cb_bb_event_process
+	setarg test_proc
+	store 2,mem_cb_idle_process
+	rtn wake
+	jam ui_led_start,mem_led_switch
+	rtn
+
+test_proc:
+	fetch 1,mem_state
+	bbit0 state_insniff,check_test_cond
+	set1 mark_lpm_mult_enable,mark
+	fetch 6,mem_sniff_rcv
+	store 6,mem_local_name
+	branch ui_led_blink_stop
+	
+
+test_sleep:
+	deposit regc
+	rtnne BT_EVT_BUTTON_LONG_PRESSED
+test_sleep_loop:
+	call ui_button_polling
+	fetch 1,mem_ui_button_last_state
+	beq 1,test_sleep_loop
+	call ui_led_off
+	branch lpm_hibernate
+
+
+test_tx:
+	force 2,temp
+	increase -2,temp
+	call set_sync_on
+	call set_freq_tx
+	disable enable_white
+	enable encode_fec0
+	set1 TXGFSK,radio_ctrl
+	call start_transmitter
+test_tx_loop:
+	fetch 1,0
+	inject mod,8
+	branch test_tx_loop
+
+
+	
+
+
+app_init:
+	set1 mark_ext_patch,mark
+	bpatch patch39_5,mem_patch39
+	fetch 1,mem_device_option
+	branch app_init,blank				/* wait ram to be initialized */
+	beq dvc_op_ukey,le_ukey_init
+	beq dvc_op_ir,le_ir_init
+	beq dvc_op_dongle,le_dongle_init
+	beq dvc_op_kb,kb_init
+	beq dvc_op_hci,hci_init
+	beq dvc_op_shutter,shutter_init
+	beq dvc_op_module,module_init
+	beq dvc_op_ble_kb,le_kb_init
+	beq dvc_op_ble_prcp,prcp_init
+	beq dvc_op_test,test_init
+	bbit1 dvc_op_mouse,mouse_init
+	rtn
+	
+app_lpm_init:
+	set1 mark_ext_patch,mark
+	bpatch patch39_6,mem_patch39
+	jam 0,mem_tester_emulate
+	jam 0,mem_debug_config
+	jam 0, mem_lch_code
+	setarg 0
+	store 5,mem_sp_state_start
+	fetch 1,mem_device_option
+	branch app_lpm_init,blank				/* wait ram to be initialized */
+	beq dvc_op_module,module_lpm_init
+	rtn
+
+	
+app_process_idle:
+	call ui_dispatch
+	call check_51cmd
+	call app_process_bb_event
+	fetch 2,mem_cb_idle_process
+	branch callback_func
+	
+app_process_bt:
+	fetch 2,mem_cb_bt_process
+	branch callback_func
+	
+app_process_ble:
+	fetch 2,mem_cb_le_process
+	branch callback_func
+
+app_process_bb_event:
+	set1 mark_ext_patch,mark
+	bpatch patch39_7,mem_patch39
+	//return if c51 need to process bb event
+	arg mem_ipc_fifo_bt2c51,rega
+	call fifo_out
+	rtn blank
+	//reaching here mains c51 cannot get bb event.
+	copy pdata,regc
+	call app_event_normal_process
+	branch app_process_bb_event_priority
+	
+app_discard_event:
+	arg 0,regc
+	rtn
+
+//************************************************//
+//*APP BB EVENT NORMAL PROCESS**//
+//************************************************//
+app_event_normal_process:
+	beq BT_EVT_BB_CONNECTED,app_evt_bt_conn
+	beq BT_EVT_BUTTON_LONG_PRESSED,app_evt_button_long_pressed
+	beq BT_EVT_SETUP_COMPLETE,app_evt_setup_complete
+	beq BT_EVT_HID_HANDSHAKE,app_evt_hid_handshake
+	beq BT_EVT_HID_CONNECTED,app_bb_event_hid_connected
+	beq BT_EVT_RECONN_FAILED,app_bb_event_reconn_failed
+	beq BT_EVT_BB_DISCONNECTED,app_bb_event_bb_disconn
+	beq BT_EVT_RECONN_PAGE_TIMEOUT,app_bb_event_reconn_failed	
+	beq BT_EVT_LE_CONNECTED,app_le_event_bb_connected
+	beq BT_EVT_LE_DISCONNECTED,app_le_event_bb_disconn
+	beq BT_EVT_RECONN_STARTED,app_event_reconn_start
+	beq BT_EVT_ENTER_SNIFF,app_event_enter_sniff
+	beq BT_EVT_EXIT_SNIFF,app_event_exit_sniff
+	
+	beq BT_EVT_ML2CAP_CONN_REFUSED,app_event_ml2cap_conn_refused
+	beq BT_EVT_LINKKEY_GENERATE,app_event_linkkey_generate
+	beq BT_EVT_SWITCH_FAIL_MASTER,app_event_switch_fail_master
+	beq BT_EVT_SWITCH_SUCCESS_MASTER,app_event_switch_success
+	
+	and pdata,0x0f,temp
+	and_into BT_EVT_TIMER_MASK,pdata
+	beq BT_EVT_TIMER_INIT,app_evt_timer
+	rtn
+
+app_evt_bt_conn:
+	fetch 2,mem_ui_state_map
+	set1 UI_STATE_BT_CONNECTED,pdata
+	store 2,mem_ui_state_map
+	fetch APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	set0 APP_DISC_BY_BUTTON ,pdata
+	store APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	rtn
+app_event_switch_success:
+	jam 0,mem_switch_fail_master_count
+	rtn	
+
+app_event_switch_fail_master:
+	fetch 1,mem_switch_fail_master_count
+	increase 1,pdata
+	store 1,mem_switch_fail_master_count
+	sub pdata,1,null
+	branch app_bt_role_switch,positive
+	jam 0,mem_switch_fail_master_count
+	fetch APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	set1 APP_DISC_SWITCH_FAIL,pdata
+	store APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	branch app_bt_disconnect
+	
+app_process_bb_event_priority:
+	fetch 2,mem_cb_bb_event_process
+	branch callback_func
+
+app_check_wake_lock:
+	fetch 2,mem_cb_check_wakelock
+	branch callback_func
+	
+app_will_enter_lpm:
+	fetch 2,mem_cb_before_lpm
+	branch callback_func
+
+app_event_linkkey_generate:
+	fetch APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	set1 APP_DISC_AFTER_PAIRING ,pdata
+	store APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	branch app_bt_store_reconn_info
+	
+app_event_reconn_start:
+	fetch 2,mem_ui_state_map
+	set1 UI_STATE_BT_RECONNECT,pdata
+	store 2,mem_ui_state_map
+	fetch APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	set1 APP_DISC_AFTER_RECONN,pdata
+	store APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	rtn
+
+app_evt_setup_complete:
+	fetch 2,mem_ui_state_map
+	set1 UI_STATE_BT_SETUP_COMPLETE,pdata
+	store 2,mem_ui_state_map
+	fetch APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	set1 APP_DISC_AFTER_SETUP_DONE,pdata
+	store APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	rtn
+
+app_evt_hid_handshake:
+	fetch 2,mem_ui_state_map
+	set1 UI_STATE_BT_HID_HANDSHAKE,pdata
+	store 2,mem_ui_state_map
+	rtn
+	
+app_event_enter_sniff:
+	fetch 2,mem_ui_state_map
+	set1 UI_STATE_BT_SNIFF,pdata
+	store 2,mem_ui_state_map
+	fetch APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	set1 APP_DISC_AFTER_SNIFF,pdata
+	store APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	rtn
+	
+app_event_exit_sniff:
+	fetch 2,mem_ui_state_map
+	set0 UI_STATE_BT_SNIFF,pdata
+	store 2,mem_ui_state_map
+	rtn
+
+app_le_event_bb_connected:
+	fetch 2,mem_ui_state_map
+	set1 UI_STATE_BLE_CONNECTED,pdata
+	store 2,mem_ui_state_map
+	rtn
+	
+app_le_event_bb_disconn:
+	fetch 2,mem_ui_state_map
+	set0 UI_STATE_BLE_CONNECTED,pdata
+	store 2,mem_ui_state_map
+	jam 0,mem_le_switch_send_data
+	branch app_lpm_mult_disable
+	
+app_bb_event_hid_connected:
+	fetch 2,mem_ui_state_map
+	set1 UI_STATE_BT_HID_CONN,pdata
+	store 2,mem_ui_state_map
+	rtn
+
+app_evt_button_long_pressed:
+	fetch APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	set1 APP_DISC_BY_BUTTON,pdata
+	store APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	rtn
+	
+app_event_ml2cap_conn_refused:
+	fetch APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	set1 APP_DISC_L2CAP_REFUSED,pdata
+	store APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	branch  app_bt_disconnect
+
+
+app_evt_timer:
+	set1 mark_ext_patch,mark
+	bpatch patch3a_0,mem_patch3a
+	storet 1,mem_app_evt_timer_count
+app_evt_100ms_loop:
+	fetch 1,mem_app_evt_timer_count
+	rtn blank
+	increase -1,pdata
+	store 1,mem_app_evt_timer_count
+	call ui_button_polling
+	call app_lpm_wake_auto_lock_timer
+	call app_unsniff_delay_timer
+	call app_discovery_timer
+	branch app_evt_100ms_loop
+	
+app_unsniff_delay_timer:
+	fetch 1,mem_unsniff2sniff_timer_count
+	rtn blank
+	increase -1,pdata
+	store 1,mem_unsniff2sniff_timer_count
+	nrtn blank
+	call context_check_idle
+	branch app_bt_enter_sniff,zero
+	rtn
+app_discovery_timer:
+	fetch 2,mem_discovery_timeout_timer_count
+	rtn blank
+	increase -1,pdata
+	store 2,mem_discovery_timeout_timer_count
+	nrtn blank
+	call app_bt_stop_discovery
+	call app_led_off
+	fetch 2,mem_cb_discovry_timeout
+	branch callback_func 
+	
+app_bb_event_reconn_failed:
+	call app_disconn_reason_flag_clear
+app_clear_reconnect_flag:
+	fetch 2,mem_ui_state_map
+	set0 UI_STATE_BT_RECONNECT,pdata
+	store 2,mem_ui_state_map
+	rtn
+
+app_bb_event_bb_disconn:
+	jam 0,mem_unsniff2sniff_timer_count
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BT_RECONNECT,app_bb_event_bb_reconn_disconn
+	isolate0 UI_STATE_BT_SETUP_COMPLETE,pdata
+ 	call app_discard_event,true
+app_bb_event_bb_reconn_disconn:
+	fetch 2,mem_ui_state_map
+	set0 UI_STATE_BT_CONNECTED,pdata
+	set0 UI_STATE_BT_SETUP_COMPLETE,pdata
+	set0 UI_STATE_BT_HID_CONN,pdata
+	set0 UI_STATE_BT_HID_HANDSHAKE,pdata
+	set0 UI_STATE_BT_SPP_CONN,pdata
+	store 2,mem_ui_state_map
+	branch app_lpm_mult_disable
+	
+app_bb_hibernate:
+	call app_disconn_reason_clear
+	branch app_enter_hibernate
+
+	
+app_event_do_nothing:
+app_disconn_reason_clear:
+	setarg 0
+	store APP_DISC_RSN_SIZE,mem_app_disconn_reason
+	rtn
+app_disconn_reason_flag_clear:
+	setarg 0
+	store APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	rtn
+
+	
+app_disconn_reason_collect_bt:
+	fetch APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	store APP_DISC_RSN_SIZE,mem_app_disconn_reason
+	setarg 0
+	store APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	rtn
+	
+app_disconn_reason_collect_ble:
+	fetch APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	set1 APP_DISC_BLE,pdata
+	store APP_DISC_RSN_SIZE,mem_app_disconn_reason
+	setarg 0
+	store APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	rtn
+
+	
+//************************************************//
+//********APP SHARED FUNCSIONS*******//
+//************************************************//
+app_check_reconn_target:
+	call eeprom_load_reconn_info
+	fetch 6,mem_hci_plap
+	rtn
+	
+app_le_check_reconn_target:
+	fetch 1,mem_ltk_exists
+	branch app_le_check_reconn_target_none,blank
+	call app_led_on
+	branch app_ble_start_direct_adv
+app_le_check_reconn_target_none:
+	call app_led_start_blink
+	branch app_ble_start_adv
+
+app_check_plap:
+	set1 mark_ext_patch,mark
+	bpatch patch3a_1,mem_patch3a
+	arg mem_check_plap_temp,regb
+	arg app_check_one_plap,regc
+	branch context_search
+	
+app_check_one_plap:
+	arg 0,temp
+	bbit0 state_inconn,app_check_one_plap_next
+	add rega,coffset_plap,contr
+	ifetcht 6,contr
+app_check_one_plap_next:
+	copy temp,pdata
+	ncall app_check_one_plap_device_exist,blank
+	istoret 6,regb
+	increase 6,regb
+	branch context_search_next
+app_check_one_plap_device_exist:
+	fetch 1,mem_device_nums
+	increase 1,pdata
+	store 1,mem_device_nums
+	rtn
+	
+app_check_conn_device_nums_addr:
+	jam 0,mem_device_nums
+	branch app_check_plap
+
+app_check_sniff:
+	fetch 1,mem_ui_state_map
+	isolate1 UI_STATE_BT_SNIFF,pdata
+	rtn
+
+//*****************************************//
+//*****************API********************//
+//*****************************************//
+app_clearflag_store:
+	setarg 0
+	branch app_flag_store
+app_initflag_store:
+	setarg EEPROM_INIT_FLAG
+app_flag_store:
+	store 2,mem_timeup
+	set1 mark_ext_patch,mark
+	bpatch patch3a_2,mem_patch3a
+	arg 2,temp
+	arg mem_timeup,rega
+	arg eeprom_module_init_flag,regb
+	branch iicd_write_eep_data
+
+//initflag is in eeprom to sure is eeprom nead to init
+app_initflag_check:
+	set1 mark_ext_patch,mark
+	bpatch patch3a_3,mem_patch3a
+	arg 2,temp
+	arg mem_pdatatemp,rega
+	arg eeprom_module_init_flag,regb
+	call iicd_read_eep_data
+	fetch 2,mem_pdatatemp
+	arg EEPROM_INIT_FLAG,temp
+	isub  temp,null
+	rtn
+
+
+app_start_auto_sniff:
+	fetch 1,mem_unsniff2sniff_timer
+	store 1,mem_unsniff2sniff_timer_count
+	rtn	
+	
+app_get_lpm_wake_lock:
+	arg wake_lock_app,queue
+	branch lpm_get_wake_lock
+
+app_put_lpm_wake_lock:
+	arg wake_lock_app,queue
+	branch lpm_put_wake_lock
+	
+app_lpm_wake_auto_lock:
+	jam  LPM_WAKE_UP_DELAY_TIMER,mem_wake_up_delay_timer
+	branch app_get_lpm_wake_lock
+app_lpm_wake_auto_lock_timer:
+	fetch 1,mem_wake_up_delay_timer
+	rtn blank
+	increase -1,pdata
+	store 1,mem_wake_up_delay_timer
+	nrtn blank
+	branch app_put_lpm_wake_lock
+
+app_l2cap_flow_control_enable:
+	jam L2CAP_FLOW_CTRL_ENABLE,mem_l2cap_flow_ctrl_flag
+	rtn
+
+app_l2cap_flow_control_disable:
+	jam L2CAP_FLOW_CTRL_DISABLE,mem_l2cap_flow_ctrl_flag
+	rtn
+	
+app_bt_set_pincode:
+	jam BT_CMD_SET_PIN_CODE,mem_fifo_temp
+	branch ui_ipc_send_cmd
+
+app_bt_role_switch:
+	jam BT_CMD_ROLE_SWITCH,mem_fifo_temp
+	branch ui_ipc_send_cmd
+	
+app_bt_start_reconnect:
+	set1 mark_ext_patch,mark
+	bpatch patch3a_4,mem_patch3a
+	fetch 1,mem_app_connection_options
+	store 1,mem_connection_options
+	jam APP_FLAG_RECONNECT,mem_reconnect_flag
+	jam BT_CMD_RECONNECT,mem_fifo_temp
+	branch ui_ipc_send_cmd	
+	
+app_bt_reconnect_cancel:
+	jam BT_CMD_BB_RECONN_CANCEL,mem_fifo_temp
+	branch ui_ipc_send_cmd
+	
+app_bt_disconnect:
+	jam BT_CMD_DISCONNECT,mem_fifo_temp
+	branch ui_ipc_send_cmd	
+
+app_bt_start_discovery_short:
+	fetch 2,mem_discovery_timeout
+	store 2,mem_discovery_timeout_timer_count
+app_bt_start_discovery_led_blink:
+	call app_led_start_blink
+app_bt_start_discovery:
+	jam BT_CMD_START_DISCOVERY,mem_fifo_temp
+	branch ui_ipc_send_cmd
+
+app_bt_stop_discovery:
+	setarg 0
+	store 2,mem_discovery_timeout_timer_count
+	jam BT_CMD_STOP_DISCOVERY,mem_fifo_temp
+	branch ui_ipc_send_cmd
+	
+app_ble_start_direct_adv:
+	jam BT_CMD_START_DIRECT_ADV,mem_fifo_temp
+	branch ui_ipc_send_cmd
+
+app_ble_stop_direct_adv:
+	jam BT_CMD_STOP_DIRECT_ADV,mem_fifo_temp
+	branch ui_ipc_send_cmd
+	
+app_ble_stop_adv:
+	jam BT_CMD_STOP_ADV,mem_fifo_temp
+	branch ui_ipc_send_cmd
+	
+app_ble_start_adv:	
+	jam BT_CMD_START_ADV,mem_fifo_temp
+	branch ui_ipc_send_cmd
+	
+app_ble_start_scan:
+	jam BT_CMD_LE_START_SCAN,mem_fifo_temp
+	branch ui_ipc_send_cmd
+	
+app_ble_stop_scan:
+	jam BT_CMD_LE_STOP_SCAN,mem_fifo_temp
+	branch ui_ipc_send_cmd
+	
+app_ble_start_conn:
+	jam BT_CMD_LE_START_CONN,mem_fifo_temp
+	branch ui_ipc_send_cmd
+	
+app_ble_disconnect:
+	jam BT_CMD_LE_DISCONNECT,mem_fifo_temp
+	branch ui_ipc_send_cmd
+
+app_ble_start_write:
+	jam BT_CMD_LE_START_WRITE,mem_fifo_temp
+	branch ui_ipc_send_cmd
+	
+app_led_start_blink:	
+	jam BT_CMD_LED_BLINK,mem_fifo_temp
+	branch ui_ipc_send_cmd
+
+app_led_on:
+	jam BT_CMD_LED_ON,mem_fifo_temp
+	branch ui_ipc_send_cmd
+	
+app_led_stop_blink:
+app_led_off:
+	jam BT_CMD_LED_OFF,mem_fifo_temp
+	branch ui_ipc_send_cmd
+	
+app_enter_hibernate:
+	jam BT_CMD_ENTER_HIBERNATE,mem_fifo_temp 
+	branch ui_ipc_send_cmd
+	
+app_bt_sniff_exit:
+	jam BT_CMD_EXIT_SNIFF,mem_fifo_temp
+	branch  ui_ipc_send_cmd
+	
+app_bt_enter_sniff:
+	jam BT_CMD_ENTER_SNIFF,mem_fifo_temp
+	branch ui_ipc_send_cmd
+
+app_ble_store_reconn_info:
+	jam BT_CMD_STORE_RECONN_INFO_LE,mem_fifo_temp
+	branch ui_ipc_send_cmd
+
+app_bt_store_reconn_info:
+	jam BT_CMD_STORE_RECONN_INFO_BT,mem_fifo_temp
+	branch ui_ipc_send_cmd
+	
+app_lpm_mult_enable:
+	set1 mark_lpm_mult_enable,mark
+	rtn
+
+app_lpm_mult_disable:
+	set0 mark_lpm_mult_enable,mark
+	rtn
+	
+
+
+at_restore_param:
+	set1 mark_ext_patch,mark
+	bpatch patch32_0,mem_patch32
+	arg 32,temp
+	arg mem_le_name_len,rega
+	arg eeprom_module_ble_name_length,regb
+	call iicd_read_eep_data
+
+
+	arg 32,temp
+	arg mem_local_name_length,rega
+	arg eeprom_module_bt_name_length,regb
+	call iicd_read_eep_data
+
+	arg 6,temp
+	arg mem_lap,rega
+	arg eeprom_module_bt_adss,regb
+	call iicd_read_eep_data
+
+	arg 6,temp
+	arg mem_le_lap,rega
+	arg eeprom_module_le_adss,regb
+	call iicd_read_eep_data
+	call le_modified_name
+
+	arg 2,temp
+	arg mem_baud,rega
+	arg eeprom_module_trans_baud,regb
+	call iicd_read_eep_data
+	call uart_set_baud_by_mem
+
+	branch  at_restore_pin_code
+
+at_restore_pin_code:
+	arg 14,temp
+	arg mem_pin_length,rega
+	arg eeprom_module_pincode_length,regb
+	branch iicd_read_eep_data
+
+init_module_environment:
+	set1 mark_ext_patch,mark
+	bpatch patch32_1,mem_patch32
+	call app_initflag_check
+	branch at_restore_param,zero
+init_module_eeprom:
+	call at_store_bt_name
+	call at_store_le_name
+	call le_modified_name
+	call at_store_le_adss
+	call at_store_bt_adss
+	call pincode_reinit
+	call at_store_bt_pincode
+	call at_store_throughput_uart_baud115200
+	branch app_initflag_store
+
+at_store_bt_name:
+	fetcht 1,mem_local_name_length
+	increase 1,temp
+	arg mem_local_name_length,rega
+	arg eeprom_module_bt_name_length,regb
+	branch iicd_write_eep_data
+
+at_store_le_name:
+	fetcht 1,mem_le_name_len
+	increase 1,temp
+	arg mem_le_name_len,rega
+	arg eeprom_module_ble_name_length,regb
+	branch iicd_write_eep_data
+
+at_store_le_adss:
+	arg 6,temp
+	arg mem_le_lap,rega
+	arg eeprom_module_le_adss,regb
+	branch iicd_write_eep_data
+
+at_store_bt_adss:
+	arg 6,temp
+	arg mem_lap,rega
+	arg eeprom_module_bt_adss,regb
+	branch iicd_write_eep_data
+
+at_store_bt_pincode:
+	fetcht 1,mem_pin_length
+	increase 1,temp
+	arg mem_pin_length,rega
+	arg eeprom_module_pincode_length,regb
+	branch iicd_write_eep_data
+
+at_store_throughput_uart_baud115200:
+	setarg AT_baud_115200
+	store 2,mem_timeup
+at_store_throughput_uart_baud:
+	arg 2,temp
+	arg mem_timeup,rega
+	arg eeprom_module_trans_baud,regb
+	branch iicd_write_eep_data
+
+
+at_process:
+	set1 mark_ext_patch,mark
+	bpatch patch32_2,mem_patch32
+	fetch 2,mem_current_packet_length
+	arg 300,temp
+	isub temp,null
+	branch at_error_rev_end,positive
+	call check_module_disabled
+	call get_uart_rrptr
+	copy contru,rega
+	fetch 2,mem_current_packet_length
+	increase -2,pdata
+	iadd contru,contru
+	ifetch 2,contru
+	arg AT_CMD_END,temp
+	isub temp,null
+	nrtn zero		//the end is not \n
+	copy rega,contru
+	arg mem_prarm_atp,regb
+	arg 3,loopcnt
+	call string_compare_uart_follow
+	nbranch at_error_rev_end,true
+	branch at_dispatch
+	
+at_dispatch:
+	set1 mark_ext_patch,mark
+	bpatch patch32_3,mem_patch32
+/****************name****************/
+	copy contru,rega
+	arg mem_prarm_name,regb
+	force 4,loopcnt
+	call string_compare_uart_follow
+	branch at_rev_name,true
+/****************lename****************/
+	arg mem_prarm_blename,regb
+	force 7,loopcnt
+	call string_compare_uart_follow
+	branch at_rev_le_name,true
+/*****************adss****************/
+	arg mem_prarm_adss,regb
+	force 4,loopcnt
+	call string_compare_uart_follow
+	branch at_rev_adss,true
+/*****************leadss*******************/
+	arg mem_prarm_bleadss,regb
+	force 7,loopcnt
+	call string_compare_uart_follow
+	branch at_rev_leadss,true
+/*****************vers****************/
+	arg mem_prarm_vers,regb
+	force 4,loopcnt
+	call string_compare_uart_follow
+	branch at_rev_vers,true
+/******************uart****************/
+	arg mem_prarm_uart,regb
+	force 4,loopcnt
+	call string_compare_uart_follow
+	branch at_rev_uart,true
+/****************pswd******************/
+	arg mem_prarm_pswd,regb
+	force 4,loopcnt
+	call string_compare_uart_follow
+	branch at_rev_pswd,true
+/****************class*********************/
+	arg mem_prarm_class,regb
+	force 5,loopcnt
+	call string_compare_uart_follow
+	branch at_rev_class,true
+/*******************list******************/
+	arg mem_prarm_list,regb
+	force 4,loopcnt
+	call string_compare_uart_follow
+	branch at_rev_list,true
+/****************role*********************/
+	arg mem_prarm_role,regb
+	force 4,loopcnt
+	call string_compare_uart_follow
+	branch at_rev_role,true
+/****************sniff*********************/
+	arg mem_prarm_sniff,regb
+	force 5,loopcnt
+	call string_compare_uart_follow
+	branch at_rev_sniff,true
+/****************ldev*********************/
+	arg mem_prarm_ldev,regb
+	force 4,loopcnt
+	call string_compare_uart_follow
+	branch at_rev_ldev,true
+/****************rssi*********************/
+	arg mem_prarm_rssi,regb
+	force 4,loopcnt
+	call string_compare_uart_follow
+	branch at_rev_rssi,true
+/****************cdev*********************/
+	arg mem_prarm_cdev,regb
+	force 4,loopcnt
+	call string_compare_uart_follow
+	branch at_rev_cdev,true
+/****************inqr*********************/
+	arg mem_prarm_inqr,regb
+	force 4,loopcnt
+	call string_compare_uart_follow
+	branch at_rev_inqr,true
+/****************leinqr*********************/
+	arg mem_prarm_bleinqr,regb
+	force 7,loopcnt
+	call string_compare_uart_follow
+	branch at_rev_leinqr,true
+/****************cmode*********************/
+	arg mem_prarm_cmode,regb
+	force 5,loopcnt
+	call string_compare_uart_follow
+	branch at_rev_cmode,true
+/****************mode*********************/
+	arg mem_prarm_mode,regb
+	force 4,loopcnt
+	call string_compare_uart_follow
+	branch at_rev_mode,true
+/****************DMstate*********************/
+	arg mem_prarm_dmstate,regb
+	force 7,loopcnt
+	call string_compare_uart_follow
+	branch at_rev_dmstate,true
+/****************reconn*********************/
+	arg mem_prarm_reconn,regb
+	force 6,loopcnt
+	call string_compare_uart_follow
+	branch at_rev_reconn,true
+/***************discov*******************/	
+	arg mem_prarm_discov,regb
+	force 6,loopcnt
+	call string_compare_uart_follow
+	branch at_rev_discov,true
+/****************dis*********************/
+	arg mem_prarm_dis,regb
+	force 3,loopcnt
+	call string_compare_uart_follow
+	branch at_rev_dis,true
+/****************stsn*********************/
+	arg mem_prarm_stsn,regb
+	force 4,loopcnt
+	call string_compare_uart_follow
+	branch at_rev_stsn,true
+/***************clrflg*******************/
+	arg mem_prarm_clrflg,regb
+	force 6,loopcnt
+	call string_compare_uart_follow
+	branch at_rev_clrflg,true
+/*****************OTA******************/
+	arg mem_prarm_ota,regb
+	force 3,loopcnt
+	call string_compare_uart_follow
+	branch at_rev_ota,true
+	branch at_error_rev_end
+
+/****************name****************/
+at_rev_name:
+	ifetch 1,contru
+	beq AT_QUES,at_rev_name_inquiry
+	beq AT_EQU,at_rev_name_set
+	branch at_error_rev_end
+at_rev_name_inquiry:
+	call get_uart_twptr
+	call at_group_name_inquiry
+	branch at_nomal_rev_end
+	
+/****************lename****************/
+at_rev_le_name:
+	ifetch 1,contru
+	beq AT_QUES,at_rev_le_name_inquiry
+	beq AT_EQU,at_rev_le_name_set
+	branch at_error_rev_end
+at_rev_le_name_inquiry:
+	call get_uart_twptr
+	call at_group_le_name_inquiry
+	branch at_nomal_rev_end
+/*****************adss****************/
+at_rev_adss:
+	ifetch 1,contru
+	beq AT_QUES,at_rev_adss_inquiry
+	beq AT_EQU,at_rev_adss_set
+	branch at_error_rev_end
+at_rev_adss_inquiry:
+	call at_group_adss_inquiry
+	branch at_nomal_rev_end
+
+at_rev_leadss:
+	ifetch 1,contru
+	beq AT_QUES,at_rev_leadss_inquiry
+	beq AT_EQU,at_rev_leadss_set
+	branch at_error_rev_end
+at_rev_leadss_inquiry:
+
+	call at_group_leadss_inquiry
+	branch at_nomal_rev_end
+/*****************vers****************/
+at_rev_vers:
+	ifetch 1,contru
+	beq AT_QUES,at_rev_vers_inquiry
+	branch at_error_rev_end
+at_rev_vers_inquiry:
+	call at_group_version_inquiry
+	branch at_nomal_rev_end
+	
+/******************uart****************/
+at_rev_uart:
+	ifetch 1,contru
+	beq AT_EQU,at_rev_uart_set
+	branch at_error_rev_end
+	
+/****************pswd******************/
+at_rev_pswd:
+	ifetch 1,contru
+	beq AT_QUES,at_rev_pswd_inquiry
+	beq AT_EQU,at_rev_pswd_set
+	branch at_error_rev_end
+at_rev_pswd_inquiry:
+	call at_group_pswd_inquiry
+	branch at_nomal_rev_end
+/****************class*********************/
+at_rev_class:
+	ifetch 1,contru
+	beq AT_QUES,at_rev_class_inquiry
+	beq AT_EQU,at_rev_class_set
+	branch at_error_rev_end
+at_rev_class_inquiry:
+	call at_group_class_inquiry
+	branch at_nomal_rev_end
+/****************list*********************/
+at_rev_list:
+	ifetch 1,contru
+	beq AT_QUES,at_rev_list_inquiry
+	beq AT_EQU,at_rev_list_set
+	branch at_error_rev_end
+at_rev_list_inquiry:
+	call at_group_list_inquiry
+	branch at_nomal_rev_end
+/****************role*********************/
+at_rev_role:
+	ifetch 1,contru
+	beq AT_QUES,at_rev_role_inquiry
+	beq AT_EQU,at_rev_role_set
+	branch at_error_rev_end
+
+/****************sniff*********************/
+at_rev_sniff:
+	ifetch 1,contru
+	beq AT_QUES,at_rev_sniff_inquiry
+	beq AT_EQU,at_rev_sniff_set
+	branch at_error_rev_end
+at_rev_sniff_inquiry:
+	call at_group_sniff_inquiry
+	branch at_nomal_rev_end
+/****************ldev*********************/
+at_rev_ldev:
+	ifetch 1,contru
+	beq AT_QUES,at_rev_ldev_inquiry
+	branch at_error_rev_end
+at_rev_ldev_inquiry:
+	call at_group_ldev_inquiry
+	branch at_nomal_rev_end
+/****************rssi*********************/
+at_rev_rssi:
+	ifetch 1,contru
+	beq AT_QUES,at_rev_rssi_inquiry
+	branch at_nomal_rev_end
+at_rev_rssi_inquiry:
+	call context_check_idle
+	nbranch at_error_rev_end,zero
+	call at_group_rssi_inquiry
+	branch at_nomal_rev_end
+/****************cdev*********************/
+at_rev_cdev:
+	ifetch 1,contru
+	beq AT_QUES,at_rev_cdev_inquiry
+	branch at_error_rev_end
+at_rev_cdev_inquiry:
+	fetch 1,mem_context
+	bbit0 state_inconn,at_error_rev_end
+	call get_uart_twptr
+	fetch 1,mem_context+coffset_mode
+	bbit1 mode_le,le_cdev_inquiry
+	branch at_cdev_unle_inq
+le_cdev_inquiry:
+	arg mem_prarm_cdev,rega
+	arg 4,loopcnt
+	call at_group_inquiryhead_common
+	call at_rev_uart_write_62
+	setarg 0x34
+	istore 1,contwu
+	call at_rev_uart_write_44
+	arg mem_le_plap,rega
+	call adss_hex2string_to_uart
+	call uartd_send
+	branch at_nomal_rev_end
+at_cdev_unle_inq:
+	arg mem_prarm_cdev,rega
+	arg 4,loopcnt
+	call at_group_inquiryhead_common
+	call at_rev_uart_write_62
+	setarg 0x33
+	istore 1,contwu
+	call at_rev_uart_write_44
+	arg mem_plap,rega
+	call adss_hex2string_to_uart
+	call uartd_send
+	branch at_nomal_rev_end
+	
+/****************inqr*********************/
+at_rev_inqr:
+	set1 mark_ext_patch,mark
+	bpatch patch32_4,mem_patch32
+	call app_check_conn_device_nums_addr
+	fetch 1,mem_device_nums
+	bne 0,at_error_rev_end
+	call do_at_inquiry
+	branch at_nomal_rev_end
+
+at_rev_leinqr:
+	set1 mark_ext_patch,mark
+	bpatch patch32_5,mem_patch32
+	call do_at_leinquiry
+	branch at_nomal_rev_end
+/****************role*********************/
+at_rev_role_inquiry:
+	arg mem_prarm_role,rega
+	arg 4,loopcnt
+	call at_group_inquiryhead_common
+	call context_check_idle
+	nbranch at_rev_uart_write_N,zero
+	fetch 1,mem_context+coffset_mode
+	bbit1 mode_master,at_rev_uart_write_M
+	call at_rev_uart_write_S
+	call uartd_send
+	branch at_nomal_rev_end
+at_rev_uart_write_M:
+	setarg 0x4d
+	istore 1,contwu
+	call uartd_send
+	branch at_nomal_rev_end
+at_rev_uart_write_S:
+	setarg 0x53
+	istore 1,contwu
+	rtn
+/****************cmode*********************/
+at_rev_cmode:
+	ifetch 1,contru
+	beq AT_QUES,at_rev_cmode_inquiry
+	beq AT_EQU,at_rev_cmode_set
+	branch at_error_rev_end
+at_rev_cmode_inquiry:
+	call at_group_cmode_inquiry
+	branch at_nomal_rev_end
+/****************mode*********************/
+at_rev_mode:
+	ifetch 1,contru
+	beq AT_EQU,at_rev_mode_set
+	branch at_error_rev_end
+/****************dmstate*********************/
+at_rev_dmstate:
+	ifetch 1,contru
+	beq AT_QUES,at_rev_dmstate_inquiry
+	branch at_error_rev_end
+at_rev_dmstate_inquiry:
+	call at_group_dmstate_inquiry
+	branch at_nomal_rev_end
+/**************reconn****************/
+at_rev_reconn:
+	fetch 1,mem_app_connection_options
+	store 1,mem_connection_options
+	call eeprom_load_reconn_info
+	call app_check_conn_device_nums_addr
+	fetch 1,mem_device_nums
+	bne 0,at_error_rev_end
+	fetch 1,mem_xrecord_mode
+	beq REC_3_MODE,at_rev_unle_reconn
+	beq REC_4_MODE,at_rev_lereconn
+	branch at_error_rev_end
+/**************lereconn****************/
+at_rev_lereconn:
+	call app_ble_start_direct_adv
+	branch at_nomal_rev_end
+at_rev_unle_reconn:
+	call app_bt_start_reconnect
+	branch at_nomal_rev_end
+/**************dis****************/
+at_rev_dis:
+	call app_check_conn_device_nums_addr
+	fetch 1,mem_device_nums
+	bne 1,at_error_rev_end
+	fetch 1,mem_context+coffset_mode 
+	bbit1 mode_le,at_rev_ledis
+	call  app_bt_disconnect
+	branch at_nomal_rev_end
+	
+/**************ledis****************/
+at_rev_ledis:
+	call app_ble_disconnect
+	branch at_nomal_rev_end
+	
+/**************stsn****************/
+at_rev_stsn:
+	ifetch 1,contru
+	beq AT_EQU,at_rev_stsn_set
+	branch at_error_rev_end
+at_rev_stsn_set:
+	ifetch 1,contru
+	beq 0x31,at_exit_sniff
+	beq 0x30,at_enter_sniff
+	branch at_error_rev_end
+at_enter_sniff:
+	call app_check_sniff
+	branch at_nomal_rev_end,true
+	call app_bt_enter_sniff
+	branch at_nomal_rev_end
+at_exit_sniff:
+	call app_check_sniff
+	nbranch at_nomal_rev_end,true
+	call module_exit_sniff
+	call at_set_cmd_task_flag
+	branch at_nomal_rev_end
+	
+/***************clrflg*******************/
+at_rev_clrflg:
+	call app_clearflag_store
+	branch at_nomal_rev_end
+
+at_rev_ota:
+	ifetch 1,contru
+	beq AT_EQU,at_rev_ota_process
+	branch at_error_rev_end
+
+at_rev_discov:
+	call app_check_conn_device_nums_addr
+	fetch 1,mem_device_nums
+	bne 0,at_error_rev_end
+	call module_disconn_start
+	branch at_nomal_rev_end
+
+	
+/********************************************at FUNC*****************************************/
+
+/**************at_SET***********/
+at_rev_name_set:
+	arg mem_local_name,rega
+	call at_set_common
+	storet 1,mem_local_name_length
+	call at_store_bt_name
+	branch at_nomal_rev_end
+	
+at_rev_le_name_set:
+	arg  mem_le_name,rega
+	call at_set_common
+	storet 1,mem_le_name_len
+	call at_store_le_name
+ 	call le_modified_name
+	branch at_nomal_rev_end
+
+at_rev_adss_set:
+	arg mem_lap,contw
+	call adss_string2hex_from_uart
+	call at_store_bt_adss
+	branch at_nomal_rev_end
+
+at_rev_leadss_set:
+	arg mem_le_lap,contw
+	call adss_string2hex_from_uart
+	call at_store_le_adss
+	branch at_nomal_rev_end
+
+at_rev_pswd_set:
+	arg mem_pin,rega
+	call at_set_common
+	storet 1,mem_pin_length
+	call at_store_bt_pincode
+	branch at_nomal_rev_end
+
+at_rev_uart_set:
+	call string2dec_from_uart
+	setarg uart_clk
+	idiv temp
+	call wait_div_end
+	quotient pdata
+	store 2,mem_timeup
+	call at_store_throughput_uart_baud
+	branch at_nomal_rev_end
+
+at_rev_mode_set:
+	ifetch 1,contru
+	sub pdata,0x33,null
+	nbranch at_error_rev_end,positive
+	and pdata,0x3,pdata
+	store 1,mem_module_state
+	branch at_nomal_rev_end
+
+at_rev_class_set:
+	ifetch 3,contru
+	store 3,mem_class
+	branch at_nomal_rev_end
+	
+at_rev_role_set:
+	call context_check_idle
+	nbranch at_error_rev_end,zero
+	ifetch 1,contru
+	beq 0x53,at_role_slave
+	beq 0x4D,at_role_master
+	branch at_error_rev_end
+	
+at_role_slave:
+	fetch 1,mem_context+coffset_mode
+	bbit1 mode_master,at_switch_role
+	branch at_error_rev_end
+	
+at_role_master:
+	fetch 1,mem_context+coffset_mode
+	bbit0 mode_master,at_switch_role
+	branch at_error_rev_end
+	
+at_switch_role:
+	fetch 1,mem_module_task
+	set1 AT_TASK_SWITCH,pdata
+	store 1,mem_module_task
+	jam hci_cmd_role_switch,mem_hci_cmd
+	branch at_rev_end
+
+at_rev_sniff_set:
+	arg mem_sniff_param_interval,contw
+	call mem2_string2hex_from_uart
+	arg mem_sniff_param_attempt,contw
+	call mem2_string2hex_from_uart
+	arg  mem_sniff_param_timeout,contw
+	call mem2_string2hex_from_uart
+	branch at_nomal_rev_end
+
+at_rev_list_set:
+	ifetch 1,contru
+	beq 0x31,at_rev_list_set_1
+	beq 0x32,at_rev_list_set_2
+	branch at_error_rev_end
+at_rev_list_set_1:
+	ifetch 1,contru
+	arg mem_temp_lap,contw
+	call adss_string2hex_from_uart
+	call  eeprom_clear_bd_reconn_info
+	nrtn user
+	branch at_nomal_rev_end
+at_rev_list_set_2:
+	call eeprom_clear_all_reconn_info
+	branch at_nomal_rev_end
+	
+at_rev_cmode_set:
+	ifetch 1,contru
+	fetcht 1,mem_module_state
+	nsetflag blank,AT_STATE_CMODE,temp
+	storet 1,mem_module_state
+	branch at_nomal_rev_end,blank
+	ifetch 1,contru
+	arg mem_cmode_addr,contw
+	call adss_string2hex_from_uart
+	branch at_nomal_rev_end
+
+at_rev_ota_process:
+	set1 mark_ext_patch,mark
+	bpatch patch32_6,mem_patch32
+	arg 20,loopcnt
+	arg mem_l2cap_rxbuff1,contw
+	call uart_copy_rx_bytes
+	arg mem_l2cap_rxbuff1,rega
+	fetch 1,mem_l2cap_rxbuff1
+	compare OTA_WRITE_REQ,pdata,0xff
+	call prcp_parse_ota_write_req,true
+	fetch 1,mem_l2cap_rxbuff1
+	compare OTA_END_CMD,pdata,0xff
+	call prcp_parse_ota_end_cmd,true
+	branch at_nomal_rev_end
+	
+
+/***********************************at  INQUIRY******************************/
+/****************name****************/
+at_group_name_inquiry:
+	arg mem_prarm_name,rega
+	arg 4,loopcnt
+	call at_group_inquiryhead_common
+	fetch 1,mem_local_name_length
+	copy pdata,loopcnt
+	arg mem_local_name,contr
+	branch send_mem_to_uart0
+at_group_le_name_inquiry:
+	arg mem_prarm_blename,rega
+	force 7,loopcnt
+	call at_group_inquiryhead_common
+	call le_get_device_name
+	ifetch 1,contr	
+	copy pdata,loopcnt
+	branch send_mem_to_uart0
+	
+/****************adss****************/
+at_group_adss_inquiry:
+	arg mem_prarm_adss,rega
+	arg 4,loopcnt
+	call at_group_inquiryhead_common
+	arg mem_lap,rega
+	call adss_hex2string_to_uart
+	branch uartd_send
+at_group_leadss_inquiry:
+	arg mem_prarm_bleadss,rega
+	arg 7,loopcnt
+	call at_group_inquiryhead_common
+	arg mem_le_lap,rega
+	call adss_hex2string_to_uart
+	branch uartd_send
+
+/****************vers****************/
+at_group_version_inquiry:
+	arg mem_prarm_vers,rega
+	arg 4,loopcnt
+	call at_group_inquiryhead_common
+	arg 6,loopcnt
+	arg mem_module_version,contr
+	branch send_mem_to_uart0
+/****************class****************/
+at_group_class_inquiry:
+	arg mem_prarm_class,rega
+	arg 5,loopcnt
+	call at_group_inquiryhead_common
+	arg 3,loopcnt
+	arg mem_class,contr
+	branch send_mem_to_uart0
+/****************list****************/
+at_group_list_inquiry:
+	arg mem_prarm_list,rega
+	arg 4,loopcnt
+	call at_group_inquiryhead_common
+	call eeprom_load_bdaddr_list
+	call at_group_list_reply
+	branch uartd_send
+
+/****************ldev****************/
+at_group_ldev_inquiry:
+	call eeprom_load_reconn_bdaddr
+	arg mem_prarm_ldev,rega
+	arg 4,loopcnt
+	call at_group_inquiryhead_common
+	fetch 1,mem_record_bt_mode
+	beq REC_3_MODE,at_group_ldev_inquiry0
+	beq REC_4_MODE,at_group_ldev_inquiry0
+	branch uartd_send
+at_group_ldev_inquiry0:	
+	istore 1,contwu
+	call at_rev_uart_write_44
+	arg mem_temp_lap,rega
+	call adss_hex2string_to_uart
+	branch uartd_send
+/****************rssi****************/
+at_group_rssi_inquiry:
+	set1 mark_ext_patch,mark
+	bpatch patch32_7,mem_patch32
+	arg mem_prarm_rssi,rega
+	arg 4,loopcnt
+	call at_group_inquiryhead_common
+	call at_rssi_result
+	branch uartd_send
+at_rssi_result:
+	arg mem_rssi,rega
+	arg 1,loopcnt
+	branch hex2string_to_uart0
+/****************cdev****************/
+at_group_cdev_inquiry:
+	rtn
+
+/****************cmode****************/
+at_group_cmode_inquiry:
+	arg mem_prarm_cmode,rega
+	arg 5,loopcnt
+	call at_group_inquiryhead_common
+	arg mem_cmode_addr,rega
+	call adss_hex2string_to_uart
+	branch uartd_send
+
+/****************dmstate****************/
+at_group_dmstate_inquiry:
+	arg mem_prarm_dmstate,rega
+	arg 7,loopcnt
+	call at_group_inquiryhead_common
+	fetch 1,mem_module_state
+	copy pdata,rega
+	fetch 1,mem_context
+	isolate1 state_inconn,pdata
+	setflag true,AT_STATE_ISCONN,rega
+	isolate1 state_insniff,pdata
+	setflag true,AT_STATE_SNIFF,rega
+	fetch 1,mem_context+coffset_mode
+	isolate1 mode_master,pdata
+	setflag true,AT_STATE_ROLE,rega
+	isolate1 mode_le,pdata
+	setflag true,AT_STATE_LE,rega
+	copy rega,pdata
+	istore 1,contwu
+	branch uartd_send
+
+do_at_inquiry:
+	setarg param_glap
+	store 3,mem_glap
+	fetch 1,mem_at_using_flag
+	set1 AT_FLAG_INQ,pdata
+	store 1,mem_at_using_flag
+	branch do_at_inquiry0
+	
+do_at_leinquiry:
+	call app_check_conn_device_nums_addr
+	fetch 1,mem_device_nums
+	bne 0,at_error_rev_end
+	call app_ble_start_scan
+	fetch 1,mem_at_using_flag
+	set1 AT_FLAG_LEINQ,pdata
+	store 1,mem_at_using_flag
+	setarg 0x200
+	store 2,mem_at_scan_time
+	arg mem_prarm_bleinqr,rega
+	arg 6,loopcnt
+	call at_group_inquiryhead_common
+	call send_mem_to_uart0
+	branch at_rev_end
+
+
+/****************pswd****************/
+at_group_pswd_inquiry:
+	arg mem_prarm_pswd,rega
+	arg 4,loopcnt
+	call at_group_inquiryhead_common
+	fetch 1,mem_pin_length
+	copy pdata,loopcnt
+	arg mem_pin,contr
+	branch send_mem_to_uart0
+
+
+/*****************sniff*********************/
+at_group_sniff_inquiry:
+	arg mem_prarm_sniff,rega
+	arg 5,loopcnt
+	call at_group_inquiryhead_common
+	call at_rev_uart_write_62
+	setarg 84//T
+	istore 1,contwu
+	call at_rev_uart_write_colon
+	arg mem_sniff_param_interval,rega
+	call mem2_hex2string_to_uart
+	call at_rev_uart_write_62
+	setarg 65//A
+	istore 1,contwu
+	call at_rev_uart_write_colon
+	arg mem_sniff_param_attempt,rega
+	call mem2_hex2string_to_uart
+	call at_rev_uart_write_62
+	setarg 79//O
+	istore 1,contwu
+	call at_rev_uart_write_colon
+	arg mem_sniff_param_timeout,rega
+	call mem2_hex2string_to_uart
+	branch send_mem_to_uart0
+at_inquiry_reply:
+	call get_uart_twptr
+	call at_rev_uart_write_62
+	arg extm_lap,rega
+	call adss_hex2string_to_uart
+	call at_rev_uart_write_44
+	arg extm_class,rega
+	call mem3_hex2string_to_uart
+	call at_rev_uart_write_44
+	call at_rssi_result
+	branch uartd_send
+
+/*********************at do*************************/
+
+
+	
+/**************************************at inline*************************************/
+
+//input:rega length:loopcnt 
+//rtn:length:temp
+//note:at_rev_adss_set not use this
+at_set_common:
+	call at_set_setprarm
+	branch uart_copy_rx_bytes
+at_set_setprarm:
+	call uart_get_remain_length
+	copy pdata,temp
+	copy pdata,loopcnt
+	copy rega,contw
+	rtn
+
+//input:loopcnt 	contxt:rega
+at_group_inquiryhead_common:
+	call get_uart_twptr
+	call at_rev_uart_write_plus
+at_group_inquiryhead_common0:
+	copy rega,contr
+	call uart_copy_tx_bytes
+	branch at_rev_uart_write_colon
+
+	
+string_compare_uart_follow:
+	ifetch 1,contru
+	ifetcht 1,regb
+	isub temp,null
+	disable true
+	nbranch string_compare_uart_follow_diff, zero
+	increase 1,regb
+	loop string_compare_uart_follow
+	enable true
+	rtn
+string_compare_uart_follow_diff:
+	branch restore_contru
+
+
+at_rev_uart_write_plus:
+	setarg UI_PLUS
+	istore 1,contwu
+	rtn
+
+at_rev_uart_write_colon:
+	setarg UI_COLON
+	istore 1,contwu
+	rtn
+
+//>
+at_rev_uart_write_62:
+	setarg 62
+	istore 1,contwu
+	rtn
+at_rev_uart_write_N:
+	setarg 78
+	istore 1,contwu
+	call uartd_send
+	branch at_nomal_rev_end
+
+
+//,
+at_rev_uart_write_44:
+	setarg AT_COMMA
+	istore 1,contwu
+	rtn
+	
+restore_contru:
+	copy rega,contru
+	rtn
+
+at_group_list_reply:
+	arg mem_bdaddr_list_buff+7,regc
+	arg 4,loopcnt
+at_group_list_reply_loop:
+	copy loopcnt,pdata
+	store 1,mem_pdatatemp
+	ifetch 1,regc
+	beq REC_3_MODE,at_group_list_isrecord
+	beq REC_4_MODE,at_group_list_isrecord
+	branch at_group_list_notrecord
+at_group_list_isrecord:
+	call at_rev_uart_write_62
+	ifetch 1,regc
+	istore 1,contwu
+	increase 1,regc
+	call at_rev_uart_write_44
+	copy regc,rega
+	call adss_hex2string_to_uart
+at_group_list_notrecord0:
+	increase 6,regc
+	fetch 1,mem_pdatatemp
+	copy pdata,loopcnt
+	loop at_group_list_reply_loop
+	rtn
+at_group_list_notrecord:
+	increase 1,regc
+	branch at_group_list_notrecord0
+	
+	
+//rtn remain length
+uart_get_remain_length:
+	set1 mark_ext_patch,mark
+	bpatch patch33_0,mem_patch33
+	hfetch  2,core_uart_rrptr
+	isub contru,pdata
+	rtn zero
+	branch uart_get_remain_length0,positive
+uart_get_remain_length_common:
+	fetcht 2,mem_current_packet_length
+	iadd temp,pdata
+	increase -2,pdata
+	rtn
+uart_get_remain_length0:
+	call uart_get_rx_buff_length
+	iadd contru,temp
+	hfetch  2,core_uart_rrptr
+	isub temp,pdata
+	branch uart_get_remain_length_common
+
+uart_get_rx_buff_length:
+	arg mem_module_rx_buf_end,pdata
+	increase  1,pdata
+	arg mem_module_rx_buf,temp
+	isub temp,pdata
+	rtn
+
+release_packet:
+	fetcht 2,mem_current_packet_length
+	branch uartd_rxdone_by_len
+
+
+
+/********at_rev_end********/
+at_error_rev_end:
+	set1 mark_ext_patch,mark
+	bpatch patch33_1,mem_patch33
+	call get_uart_twptr
+	setarg 0x525245	//write err
+	istore 3,contwu
+	call uartd_send
+	branch at_rev_end
+	
+at_nomal_rev_end:
+	set1 mark_ext_patch,mark
+	bpatch patch33_2,mem_patch33
+	call get_uart_twptr
+	setarg 0x4b4f	//write ok
+	istore 2,contwu
+	call uartd_send
+spp_send_end:
+at_rev_end:
+	set1 mark_ext_patch,mark
+	bpatch patch33_3,mem_patch33
+	call release_packet
+spp_ipc_end:
+	setarg 0
+	store 2,mem_current_packet_length
+	store 4,mem_last_uart_clock
+	rtn
+
+
+le_dongle_init:
+	call usb_init
+	call app_led_start_blink
+	setarg le_dongle
+	store 2,mem_cb_le_process
+	setarg dongle_process_bb_event
+	store 2,mem_cb_bb_event_process
+	setarg usb_isr
+	store 2,mem_cb_idle_process
+	jam 5,mem_dongle_count
+	jam 0,mem_dongle_peers
+	jam hci_cmd_le_create_conn,mem_hci_cmd
+	rtn	
+
+
+le_dongle:
+	disable true
+	call app_check_conn_device_nums_addr
+	//jam 1,mem_le_scan_enable
+	jam 0x1b,mem_cmd_le_create_conn
+	fetch 1,mem_device_nums
+	compare 2,pdata,0x3
+	nrtn true
+	jam 0,mem_le_scan_enable
+	rtn
+
+le_scan_dongle:
+	fetch 1,mem_le_rxbuf
+	bbit0 0,dongle_add_peer
+	fetch 6,mem_le_rxbuf+2			// direct ind, for me?
+	fetcht 6,mem_le_plap
+	isub temp,null
+	nrtn zero
+dongle_peer_paired:
+	fetch 6,mem_le_plap
+	store 6,mem_le_conn_peer_addr
+	rtn
+	
+dongle_add_peer:
+	arg 0xff,rega
+	call le_search_adtype
+	nrtn zero
+	ifetch 2,contr
+	fetcht 2,mem_dongle_signature
+	isub temp,null
+	nrtn zero
+	fetch 1,mem_dongle_peers
+	increase 1,pdata
+	store 1,mem_dongle_peers
+	fetcht 1,mem_dongle_pairing_cnt
+	isub temp,null
+	branch dongle_peer_paired,positive
+	rtn
+
+dongle_process_bb_event:
+	copy regc,pdata
+	beq BT_EVT_LE_DISCONNECTED,dongle_le_event_bb_disconnected
+	beq BT_EVT_LE_CONNECTED,dongle_bb_event_connected
+	and pdata,0x0f,temp
+	and_into BT_EVT_TIMER_MASK,pdata
+	beq BT_EVT_TIMER_INIT,dongle_bb_event_100ms
+	rtn
+	
+dongle_le_event_bb_disconnected:
+	setarg 0
+	store 6,mem_le_conn_peer_addr
+	jam 0,mem_dongle_peers
+	setarg 0
+	store 5,mem_mouse_data
+	jam SEND_MOUSE_DATA_CMD,mem_mcmd
+	call usb_isr
+	branch app_ble_start_scan
+ 	
+dongle_bb_event_100ms:
+	rtn
+	fetch 1,mem_le_scan_enable
+	rtn blank
+	fetch 1,mem_dongle_count
+	rtn blank
+	increase -1,pdata
+	store 1,mem_dongle_count
+	nrtn blank
+	call le_change_peer_addr
+	branch app_ble_start_conn
+	
+	
+dongle_bb_event_connected:
+	branch app_ble_stop_scan
+
+le_change_peer_addr:
+
+	jam 5,mem_dongle_count
+	fetch 1,mem_le_peer_state
+	beq LE_CONTEXT_STATE_KB,addr_slave2
+	beq LE_CONTEXT_STATE_MOUSE,addr_slave1
+	rtn
+addr_slave1:
+	fetch 6,mem_le_addr_slave1
+	store 6,mem_app_peer_addr
+	jam LE_CONTEXT_STATE_KB,mem_le_peer_state
+	rtn
+addr_slave2:
+  	fetch 6,mem_le_addr_slave2
+  	store 6,mem_app_peer_addr
+  	jam LE_CONTEXT_STATE_MOUSE,mem_le_peer_state
+  	rtn
+  	
+
+hci_rx_bcsp:
+	ifetch 2,contru
+	branch hci_reset_uart,blank		//length = 0
+	iforce regc						/* regc is byte count */
+	ifetch 1,contru
+	store 1,mem_h5rx_tmp
+	iforce rega						/* rega is checksum */
+	bbit0 6,hci_rx_bcsp_nocrc
+	increase -2,regc
+hci_rx_bcsp_nocrc:
+	ifetch 2,contru
+	rshift4 pdata,loopcnt				/* loopcnt is packet length */
+	and pdata,0xf,debug				/* debug is packet type */
+	iadd rega,rega
+	rshift8 pdata,pdata
+	iadd rega,rega
+	ifetch 1,contru
+	iadd rega,pdata
+	bne 0xff,hci_rx_bcsp_discard_packet		/* checksum error */
+	add regc,-4,pdata
+	isub loopcnt,null
+	nbranch hci_rx_bcsp_discard_packet_err,zero	/* received byte not equal length */
+	fetch 1,mem_h5rx_tmp
+	isolate0 7,pdata
+	branch hci_rx_bcsp_check_ack_skip,true
+	set0 mark_h5_reset,mark
+	bmark1 mark_h5_reset,hci_rx_bcsp_check_ack_skip
+	and_into 7,pdata
+	fetcht 1,mem_h5tx_ack
+	isub temp,null
+	nbranch hci_rx_bcsp_discard_packet_err,zero	/*ack  number err*/
+hci_rx_bcsp_check_ack_skip:
+	setarg 1600
+	force lpo_delay_timer,queue
+	call timer_init
+	deposit debug
+	call hci_bcsp_parse_packet
+	rtn user							/* delaying parse packet */
+	fetch 1,mem_h5rx_tmp
+	iforce rega						/* saved in rega */
+	rshift3 pdata,temp
+	and_into 7,temp					/* temp is ack no */
+	fetch 1,mem_h5rx_ack
+	isub temp,pdata
+	sub pdata,0,pdata
+	and_into 7,pdata
+	bne 1,hci_rx_bcsp_discard_packet_err		/* should only ack 1 packet! */
+	storet 1,mem_h5rx_ack
+	fetch 1,mem_h5rx_ackcnt
+	increase 1,pdata
+	store 1,mem_h5rx_ackcnt
+	branch hci_rx_bcsp_discard_packet
+	
+hci_rx_bcsp_discard_packet_err:
+	fetch 1,mem_check_err_acl_cont
+	increase 1,pdata
+	store 1,mem_check_err_acl_cont
+hci_rx_bcsp_discard_packet:
+	hfetch 2,core_uart_rrptr
+	iforce contru
+	ifetch 2,contru
+	iadd contru,contru
+	deposit contru
+	hstore 2,core_uart_rrptr
+	rtn
+
+hci_bcsp_parse_packet:
+	disable user
+	rtn blank					/* ack packet, do nothing */
+	beq 1,parse_bcsp_link_establish
+	beq 2,parse_bcsp_bccmd
+	beq 5,process_hci_cmd
+	beq 6,process_acl
+	beq 8,process_hci_patch
+	rtn
+
+parse_bcsp_link_establish:
+	set0 mark_h5_reinit,mark
+	ifetch 1,contru
+	beq 0xda,parse_bcsp_link_establish_sync
+	beq 0xac,parse_bcsp_link_establish_syncrsp
+	beq 0xad,parse_bcsp_link_establish_conf
+	beq 0xde,parse_bcsp_link_establish_confrsp
+	rtn
+parse_bcsp_link_establish_sync:
+	bmark1 mark_h5_sync,parse_bcsp_link_establish_send_syncrsp
+	force 0xda,temp
+	setarg 0xededdc
+	call parse_bcsp_link_establish_send
+parse_bcsp_link_establish_send_syncrsp:	
+	force 0xac,temp
+	setarg 0xeeefaf
+	branch parse_bcsp_link_establish_send
+parse_bcsp_link_establish_syncrsp:
+	set1 mark_h5_sync,mark
+	force 0xad,temp
+	setarg 0xedacef
+	branch parse_bcsp_link_establish_send
+parse_bcsp_link_establish_conf:
+	force 0xde,temp
+	setarg 0xd0d0ad
+parse_bcsp_link_establish_send:	
+	lshift8 pdata,pdata
+	ior temp,temp
+	call hci_get_packet_ptr
+	istoret 4,contwu
+	force 1,queue				/* queue is packet type */
+	force 4,loopcnt
+	set0 mark_h5tx_rp,mark
+	branch bcsp_send_packet
+parse_bcsp_link_establish_confrsp:
+	force 0,alarm
+	branch hci_command_status
+	
+parse_bcsp_bccmd:
+	copy loopcnt,alarm
+	call bcsp_send_ack
+	force 0,regb
+	call hci_get_packet_ptr
+	copy alarm,loopcnt
+	ifetch 1,contru
+	setarg 1
+	istore 1,contwu
+	set0 mark_temp,mark
+parse_bcsp_bccmd_loop:
+	ifetch 1,contru
+	increase 1,regb
+	beq 0x1c,parse_bcsp_bccmd_sco_link		/*sco link patch by csr*/
+	compare 4,regb,0xff
+	nbranch parse_bcsp_bccmd_next,true
+	setflag blank,mark_temp,mark
+	bne 0x3a,parse_bcsp_bccmd_next
+	setarg 2000
+	force h5_reinit_timer,queue
+	call timer_init
+	set1 mark_h5_reinit,mark
+	rtn
+	
+parse_bcsp_bccmd_sco_link:
+	compare 6,regb,0xff
+	branch parse_bcsp_bccmd_next_ok,true	
+parse_bcsp_bccmd_next:
+	isolate1 mark_temp,mark
+	call parse_bcsp_bccmd_replace,true
+	istore 1,contwu
+	loop parse_bcsp_bccmd_loop
+	set0 mark_bccmd_patch,mark
+	copy alarm,loopcnt
+	set1 mark_h5tx_rp,mark
+	force 2,queue
+	branch bcsp_send_packet
+parse_bcsp_bccmd_next_ok:
+	set1 mark_bccmd_patch,mark
+	branch parse_bcsp_bccmd_next
+	
+parse_bcsp_bccmd_replace:
+	rtnmark1 mark_bccmd_patch
+	compare 10,regb,0xff
+	branch parse_bcsp_bccmd_replace1,true
+	compare 11,regb,0xff
+	nrtn true
+	setarg 0x12
+	rtn
+parse_bcsp_bccmd_replace1:
+	setarg 0xe9
+	rtn
+	
+bcsp_send_ack:
+	fetch 1,mem_h5rx_tmp
+	increase 1,pdata
+	and_into 7,pdata
+	store 1,mem_h5tx_ack		/* our ack is got seq + 1 */
+	force 0,loopcnt
+	force 0,queue
+	set0 mark_h5tx_rp,mark
+bcsp_send_packet:
+//	set1 mark_h5tx_crc,mark
+	add loopcnt,4,regb				/* regb is total packet length */
+	fetch 1,mem_h5tx_ack
+	lshift3 pdata,regc
+	isolate0 mark_h5tx_crc,mark
+	nsetflag true,6,regc
+	branch bcsp_send_packet_nocrc,true	
+	increase 2,regb
+bcsp_send_packet_nocrc:
+	bmark0 mark_h5tx_rp,bcsp_send_packet_form_nonrp
+	set1 7,regc
+	fetch 1,mem_h5tx_seq
+	ior regc,regc
+	increase 1,pdata
+	and_into 7,pdata
+	store 1,mem_h5tx_seq
+	fetch 1,mem_rp_packets
+	increase 1,pdata
+	store 1,mem_rp_packets
+bcsp_send_packet_form_nonrp:
+	fetch 2,mem_h5tx_wptr
+	iforce contwu
+	deposit regb
+	isolate1 mark_h5tx_rp,mark
+	setflag true,hci_flag_rp,pdata
+	istore 2,contwu
+	copy contwu,rega		/* rega is packet pointer */
+	deposit regc
+	istore 1,contwu
+	lshift4 loopcnt,pdata
+	ior queue,pdata
+	iadd regc,regc
+	istore 2,contwu
+	rshift8 pdata,pdata
+	iadd regc,pdata
+	sub pdata,0xff,pdata
+	istore 1,contwu
+	bmark0 mark_h5tx_crc,bcsp_send_packet_form_nocrc
+	increase 4,loopcnt		/* crc includes header 4 bytes */
+	copy rega,contwu
+	call calc_tx_crc16
+	istore 2,contwu
+bcsp_send_packet_form_nocrc:
+	fetch 2,mem_h5tx_wptr
+	iadd regb,contwu
+	increase 2,contwu
+	deposit contwu
+	store 2,mem_h5tx_wptr
+	hstore 2,core_uart_twptr
+	fetcht 2,mem_h5tx_rptr
+	call bcsp_update_free
+	call bcsp_init_retransmit
+	setarg 1600
+	force lpo_delay_timer,queue
+	branch timer_init
+	
+bcsp_init_retransmit:
+	setarg 400				/* retransmit timeout : 250ms */
+	force hci_retransmit_timer,queue
+	call timer_init
+	set1 mark_h5tx_retransmit,mark
+	rtn
+
+bcsp_retransmit:
+	rtnmark0 mark_h5tx_retransmit
+	force hci_retransmit_timer,queue
+	call timer_check
+	nrtn blank
+	fetch 2,mem_h5tx_rptr
+	hstore 2,core_uart_trptrp
+	branch bcsp_init_retransmit
+
+bcsp_freepacket:
+	fetch 2,mem_h5tx_wptr
+	fetcht 2,mem_h5tx_rptr
+	isub temp,null
+	branch bcsp_noretransmit,zero			/* no more packet to free */
+	copy temp,contwu
+	ifetch 2,contwu
+	iforce rega							/* rega is length+flag */
+	iand mask3ff,pdata
+	iadd contwu,contwu					/* contwu is new rptr */
+	hfetch 2,core_uart_trptr
+	isub contwu,pdata
+	iand mask3ff,regb						/* regb is trptr - new rptr */
+	fetch 2,mem_h5tx_wptr
+	isub contwu,pdata
+	iand mask3ff,pdata						/* pdata is wptr - new rptr */
+	isub regb,pdata
+	nrtn positive							/* packet not transmitted yet */
+	isolate0 hci_flag_rp,rega
+	branch bcsp_discardnrp,true
+	fetch 1,mem_h5rx_ackcnt
+	rtn blank								/* not acked yet */
+	increase -1,pdata
+	store 1,mem_h5rx_ackcnt
+	fetch 1,mem_rp_packets
+	increase -1,pdata
+	store 1,mem_rp_packets
+bcsp_discardnrp:
+	copy contwu,temp
+	storet 2,mem_h5tx_rptr
+	fetch 2,mem_h5tx_wptr
+	call bcsp_update_free
+	branch bcsp_freepacket
+bcsp_noretransmit:
+	set0 mark_h5tx_retransmit,mark
+	rtn	
+
+bcsp_update_free:
+	isub temp,pdata
+	iand mask3ff,pdata
+	isub mask3ff,pdata
+	sub pdata,0,pdata
+	store 2,mem_h5tx_free
+	rtn
+	
+bcsp_get_tx_ptr:	/* contwu is offset to packet start */
+	fetch 2,mem_h5tx_wptr
+	iadd contwu,contwu
+	rtn
+	
+
+
+hci_log:
+	rtn
+
+hci_rx_h4:
+	set1 mark_ext_patch,mark
+	bpatch patch3d_4,mem_patch3d
+	fetch 1,mem_hci_cmd
+	nrtn blank
+hci_rx_h4_1:
+	call hci_h4_parse_packet
+	ncall h4_rx_discard_packet,user
+	rtn
+	
+hci_h4_parse_packet:
+	set1 mark_ext_patch,mark
+	bpatch patch3d_5,mem_patch3d
+	copy contru,rega
+	arg 4,temp
+	ifetch 1,contru //type
+	beq HCI_H4_TYPE_CMD,hci_h4_parse_packet_wait_len
+	increase 1,temp //acl packet has 2 bytes for length
+	beq HCI_H4_TYPE_ACL,hci_h4_parse_packet_wait_len
+	copy contru,pdata
+	hstore 2,core_uart_rrptr
+	rtn
+hci_h4_parse_packet_wait_len:
+	hfetch 2,core_uart_rxitems
+	isub temp,null
+	nbranch hci_h4_parse_packet_wait_len,positive // while(rxitems >= 4 or 5);
+	//Make sure length has been recieved.
+	disable user
+	copy rega,contru
+	call h4_get_rx_payload_len
+	iadd temp,temp
+hci_h4_parse_packet_wait:
+	hfetch 2,core_uart_rxitems
+	isub temp,null
+	nbranch hci_h4_parse_packet_wait,positive//wait for rcv a complete packet
+	copy rega,contru
+	ifetch 1,contru //HCI packet type
+	beq  HCI_H4_TYPE_CMD,process_hci_cmd
+	beq HCI_H4_TYPE_ACL,hci_h4_parse_packet_acl
+	branch assert
+hci_h4_parse_packet_acl: //downgoing ACL
+	set1 mark_ext_patch,mark
+	bpatch patch3d_6,mem_patch3d
+	copy contru,rega
+	ifetch 2,contru // handle
+	copy rega,contru
+	fetcht 1,mem_conn_handle
+	icompare 0xff,temp
+	branch process_acl,true// traditional BT handle
+	branch le_acl_downgoing,le //BLE handle
+	enable user
+	rtn
+h4_rx_discard_packet:
+	set1 mark_ext_patch,mark
+	bpatch patch3d_7,mem_patch3d
+	hfetch 2,core_uart_rrptr
+	iforce contru
+	call h4_get_rx_payload_len
+	iadd contru,contru
+	deposit contru
+	hstore 2,core_uart_rrptr
+	rtn
+
+
+//contru = pointer to packet start
+//return len via pdata
+h4_get_rx_payload_len:
+	ifetch 1,contru
+	increase 2,contru
+	beq HCI_H4_TYPE_ACL,h4_get_rx_payload_len_acl
+	ifetch 1,contru
+	rtn
+h4_get_rx_payload_len_acl:
+	ifetch 2,contru
+	rtn
+
+h4_get_tx_ptr:
+	hfetch 2,core_uart_twptr
+	increase -5,contwu
+	iadd contwu,contwu
+	rtn
+
+h4_send_packet_event:
+	arg HCI_H4_TYPE_EVENT,temp //type
+	branch h4_send_packet
+h4_send_packet_acl: //upgoing ACL
+	arg HCI_H4_TYPE_ACL,temp //type
+h4_send_packet:
+	set1 mark_ext_patch,mark
+	bpatch patch3e_0,mem_patch3e
+	increase 1,loopcnt
+	hfetch 2,core_uart_twptr
+	copy pdata,contwu
+	copy loopcnt,pdata //length
+	istoret 1,contwu //packet type in temp
+	increase -1,pdata
+	iadd contwu,contwu
+	copy contwu,pdata
+	store 2,mem_hci_acl_tx_trigger_wptr
+	copy temp,pdata
+	rtneq HCI_H4_TYPE_ACL //not send acl packet immediately
+	fetch 2,mem_hci_acl_tx_trigger_wptr
+	hstore 2,core_uart_twptr
+	branch h4_send_acl_trigger_clear
+	
+h4_send_acl_trigger:
+	set1 mark_ext_patch,mark
+	bpatch patch3e_1,mem_patch3e
+	fetch 2,mem_hci_acl_tx_trigger_wptr
+	branch assert,blank
+	hstore 2,core_uart_twptr
+	branch h4_send_acl_trigger_clear
+	
+h4_send_acl_trigger_clear:
+	setarg 0
+	store 2,mem_hci_acl_tx_trigger_wptr
+	rtn
+
+h4_tx_buffer_remain:
+	hfetcht 2,core_uart_trptr
+	hfetch 2,core_uart_twptr
+	isub temp,rega
+	nbranch h4_tx_buffer_remain_negative,positive
+	hfetcht 2,core_uart_tsaddr
+	hfetch 2,core_uart_teaddr
+	isub temp,pdata
+	isub rega,temp
+	rtn
+h4_tx_buffer_remain_negative:
+	sub rega,-1,temp
+	rtn
+	
+/*********************************/
+/**********   HCI  *****************/
+/*********************************/
+hci_dispatch:
+	set0 mark_ext_patch,mark
+	bpatch patch19_5,mem_patch19
+	fetch 1,mem_device_option
+	rtnne dvc_op_hci
+	call hci_rx_packet
+	call hci_check_bcsp_protocol
+	call bcsp_retransmit,true
+	call hci_check_bcsp_protocol
+	call bcsp_freepacket,true
+	branch  process_send_acl
+	rtnmark0 mark_h5_reinit
+	force h5_reinit_timer,queue
+	call timer_check
+	nrtn blank
+	call hci_reinit
+	call hci_check_bcsp_protocol
+	nrtn true
+	set0 mark_h5_sync,mark
+	force 0xda,temp
+	setarg 0xededdc
+	call parse_bcsp_link_establish_send
+	setarg 2000
+	force h5_reinit_timer,queue
+	branch timer_init
+
+
+hci_init:
+	set0 mark_ext_patch,mark
+	bpatch patch19_6,mem_patch19
+	rtn wake
+	setarg hci_idle_dispatch
+	store 2,mem_cb_idle_process
+
+	setarg uart_baud_115200
+	store uart_baud_len,mem_baud
+hci_lpm_init:
+	set0 mark_ext_patch,mark
+	bpatch patch19_7,mem_patch19
+	call init_filter_ram
+	setarg mem_h5rx_buf
+	hstore 2,core_uart_rsaddr
+	setarg mem_h5rx_buf_end
+	hstore 2,core_uart_readdr
+	setarg mem_h5tx_buf
+	hstore 2,core_uart_tsaddr
+	call hci_sel_init
+hci_reinit:
+	set0 mark_ext_patch,mark
+	bpatch patch1a_0,mem_patch1a
+	hjam 0x0,core_uart_ctrl
+	jam 0,mem_h5rx_ack
+	jam 0,mem_h5tx_ack
+	jam 0,mem_h5tx_seq
+ 	setarg mem_h5tx_buf
+	store 2,mem_h5tx_wptr
+	store 2,mem_h5tx_rptr
+	hstore 2,core_uart_twptr
+	hstore 2,core_uart_trptrp
+	setarg mem_h5rx_buf
+	hstore 2,core_uart_rrptr
+	store 2,mem_h5rx_rptr
+hci_init_common:
+	set0 mark_ext_patch,mark
+	bpatch patch1a_1,mem_patch1a
+	hfetch 2,core_clkoff
+	set0 CLOCK_OFF_UART,pdata
+	hstore 2,core_clkoff
+	call uart_set_baud_by_mem
+	hjam uartclk_dpll,core_uart_clksel
+	hjam uart_ctrl_h4,core_uart_ctrl
+	branch hci_init_queue_ack
+
+hci_sel_init:
+	setarg mem_h5tx_buf_end
+	hstore 2,core_uart_teaddr
+	hfetch 1,core_gpio_sel1
+	or_into 0x07,pdata
+	hstore 1,core_gpio_sel1
+	jam 0xff,mem_ucode_id_local
+	rtn
+	
+hci_reset_uart:
+	hfetch 2,core_uart_rwptr
+	hstore 2,core_uart_rrptr
+	set1 mark_h5_reset,mark
+	rtn
+
+	
+hci_check_bcsp_protocol:
+	hfetch 1,core_uart_ctrl
+	isolate1 uart_ctrl_bit_slip_protocol,pdata
+	rtn// set true if it is bcsp protocol
+	
+hci_init_queue_ack:
+	setarg mem_hci_acl_queue_start
+	store 2,mem_hci_acl_queue_wptr
+	store 2,mem_hci_acl_queue_rptr
+	force param_acl_pktcnt,temp
+	iadd temp,pdata
+	iadd temp,pdata
+	increase 2,pdata		/*add one pkt more*/
+	store 2,mem_hci_acl_queue_end
+	setarg 0x00
+	store 1,mem_hci_acl_cnt
+	store 1,mem_hci_acl_queue_wcnt
+	rtn
+
+hci_rx_packet:
+	set0 mark_ext_patch,mark
+	bpatch patch1a_2,mem_patch1a
+	hfetch 1,core_uart_status
+	iforce regb
+	bbit0 uart_status_rx_fifo_empty,hci_rx_packet_cont
+	hfetch 2,core_uart_rxitems
+	iforce regc
+	arg 0x44f,temp
+	isub temp,null
+	nrtn zero
+hci_rx_packet_cont:
+	hfetch 2,core_uart_rrptr
+	iforce contru
+	call hci_check_bcsp_protocol
+	branch hci_rx_bcsp,true
+	branch hci_rx_h4
+
+hci_send_ack:
+	call hci_check_bcsp_protocol
+	branch bcsp_send_ack,true
+	rtn
+	
+uart_send_byte:
+	hfetcht 1,core_uart_status
+	isolate1 6,temp
+	branch uart_send_byte,true
+	hstore 1,core_uart_txd
+	rtn
+
+
+process_acl_into_queue:
+	fetcht 2,mem_hci_acl_queue_end
+	fetch 2,mem_hci_acl_queue_wptr
+	iforce contw
+	deposit contru
+	istore 2,contw
+	deposit contw
+	store 2,mem_hci_acl_queue_wptr
+	icompare 0xff,temp
+	call process_acl_into_queue_loop,true
+	fetch 1,mem_hci_acl_queue_wcnt
+	increase 1,pdata
+	store 1,mem_hci_acl_queue_wcnt
+	rtn	
+process_acl_into_queue_loop:
+	setarg mem_hci_acl_queue_start
+	store 2,mem_hci_acl_queue_wptr
+	rtn
+	
+	
+process_acl_dequeue:
+	fetch 1,mem_hci_acl_queue_wcnt
+	rtn blank
+	fetcht 2,mem_hci_acl_queue_end
+	fetch 2,mem_hci_acl_queue_rptr
+	iforce contr
+	ifetch 2,contr
+	iforce contru
+	deposit contr
+	store 2,mem_hci_acl_queue_rptr
+	icompare 0xff,temp
+	call process_acl_dequeue_loop,true
+	fetch 1,mem_hci_acl_queue_wcnt
+	increase -1,pdata
+	store 1,mem_hci_acl_queue_wcnt
+	force 1,pdata
+	rtn	
+process_acl_dequeue_loop:
+	setarg mem_hci_acl_queue_start
+	store 2,mem_hci_acl_queue_rptr
+	rtn
+
+process_acl: // traditional BT downgoing ACL
+	set0 mark_ext_patch,mark
+	bpatch patch1a_3,mem_patch1a
+	fetch 1,mem_hci_acl_queue_wcnt
+	sub pdata,2,null
+	branch process_acl_queue_check_ok,positive
+	enable user
+	branch process_send_acl
+process_acl_queue_check_ok:
+	call hci_send_ack
+	call process_acl_into_queue
+process_send_acl: //downgoing ACL
+	set0 mark_ext_patch,mark
+	bpatch patch1a_4,mem_patch1a
+	rtnmark1 mark_tx_l2cap		
+	call process_acl_dequeue
+	rtn blank
+	ifetcht 1,contru
+	call context_search_conn_handle2
+	nrtn zero						/* cannot find conn handle */
+	ifetch 1,contru
+	rshift4 pdata,pdata
+	and pdata,0x3,pdata //low 2 bits
+	nbranch process_send_acl_good_lch,blank
+	set1 1,pdata //BT2.0device donot know '00' lch
+process_send_acl_good_lch:
+	set1 2,pdata
+	store 1,mem_tx_lch
+	ifetch 2,contru
+	store 2,mem_tx_len				/* length */
+	deposit contru
+	store 2,mem_txptr
+	set1 mark_tx_l2cap,mark
+	bmark0 mark_context,process_acl_ncontext
+	fetch 1,mem_conn_handle
+	isub temp,null
+	nbranch process_acl_ncontext,zero
+	fetch 1,mem_op
+	set1 op_txl2cap,pdata
+	store 1,mem_op
+	rtn
+
+process_acl_ncontext:
+        increase coffset_op,rega                             
+        ifetch 1,rega
+        set1 op_txl2cap,pdata
+        istore 1,rega
+        rtn
+
+
+
+	
+process_hci_cmd:
+	set0 mark_ext_patch,mark
+	bpatch patch1a_5,mem_patch1a
+	fetch 1,mem_hci_cmd
+	branch process_hci_cmd_cont,blank
+	enable user					/* last command still there */
+	rtn
+process_hci_cmd_cont:
+	call hci_send_ack
+	ifetch 2,contru
+	iforce alarm				/* alarm is used for sending */
+	iforce queue				/* queue is OCF */
+	ifetch 1,contru		/* skip hci length */
+	iforce temp			/* temp has the length */
+	rshift2 alarm,pdata
+	rshift8 pdata,pdata
+	beq HCI_OGF_LINK_CONTROL,phci_grp_link_control
+	beq HCI_OGF_LINK_POLICY,phci_grp_link_policy
+	beq HCI_OGF_BASEBAND,phci_grp_baseband
+	beq HCI_OGF_INFO,phci_grp_info
+	beq HCI_OGF_STATUS,phci_grp_status
+	beq HCI_OGF_TEST,phci_grp_test
+	beq HCI_OGF_VENDOR_SPECIFIC,phci_grp_vendor_specific
+	beq HCI_OGF_LOW_ENERGY,phci_grp_low_energy
+	rtn
+
+
+phci_grp_link_control:
+	set0 mark_ext_patch,mark
+	bpatch patch1a_6,mem_patch1a
+	deposit queue
+	beq HCI_INQUIRY,phci_inquiry 
+	beq HCI_INQUIRY_CANCEL,phci_inquiry_cancel 
+	beq HCI_PERIODIC_INQUIRY_MODE,hci_normal_reply
+	beq HCI_EXIT_PERIODIC_INQUIRY_MODE,hci_normal_reply
+	beq HCI_CREATE_CONNECTION,phci_create_connection 
+	beq HCI_DISCONNECT,phci_disconnect 
+	beq HCI_ADD_SCO_CONNECTION,hci_normal_reply
+	beq HCI_CREATE_CONNECTION_CANCEL,phci_create_connection_cancel
+	beq HCI_ACCEPT_CONNECTION,phci_accept_connection
+	beq HCI_REJECT_CONNECTION,phci_reject_connection
+	beq HCI_LINK_KEY_REQUEST_REPLY,phci_link_key_request_reply 
+	beq HCI_LINK_KEY_REQUEST_NEGATIVE_REPLY,phci_link_key_request_negative_reply 
+	beq HCI_PIN_CODE_REQUEST_REPLY,phci_pin_code_request_reply
+	beq HCI_PIN_CODE_REQUEST_NEGATIVE_REPLY,phci_pin_code_request_negative_reply
+	beq HCI_CHANGE_CONNECTION_PACKET_TYPE,phci_change_connection_packet_type
+	beq HCI_AUTHENTICATION_REQUESTED,phci_authentication_requested
+	beq HCI_SET_CONNECTION_ENCRYPTION,phci_set_connection_encryption
+	beq HCI_CHANGE_CONNECTION_LINK_KEY,hci_normal_reply
+	beq HCI_MASTER_LINK_KEY,hci_normal_reply
+	beq HCI_REMOTE_NAME_REQUEST,phci_remote_name_request 
+	beq HCI_READ_REMOTE_SUPPORTED_FEATURES,phci_read_remote_supported_features 
+	beq HCI_READ_REMOTE_EXT_FEATURES,phci_read_remote_ext_features 
+	beq HCI_READ_REMOTE_VERSION_INFORMATION,phci_read_remote_version_information
+	beq HCI_READ_CLOCK_OFFSET,phci_read_clock_offset
+	beq HCI_SETUP_SCO_CONNECTION,phci_setup_sco_connection
+	beq HCI_ACCEPT_SCO_CONNECTION,phci_accept_sco_connection
+	beq HCI_IO_CAP_REQUEST_REPLY,phci_io_cap_request_reply
+	branch phci_unknown_command
+
+
+phci_grp_link_policy:
+	set0 mark_ext_patch,mark
+	bpatch patch1a_7,mem_patch1a
+	deposit queue
+	beq HCI_ROLE_DISCOVERY,phci_role_discovery 
+	beq HCI_WRITE_LINK_POLICY_SETTINGS,phci_write_link_policy_settings
+	beq HCI_HOLD_MODE,hci_normal_reply
+	beq HCI_SNIFF_MODE,phci_sniff_mode
+	beq HCI_EXIT_SNIFF_MODE,phci_exit_sniff_mode
+	beq HCI_PARK_MODE,hci_normal_reply
+	beq HCI_EXIT_PARK_MODE,hci_normal_reply
+	beq HCI_QOS_SETUP,hci_normal_reply
+	beq HCI_SWITCH_ROLE,phci_switch_role
+	beq HCI_READ_LINK_POLICY_SETTINGS,hci_normal_reply
+	beq HCI_READ_DEFAULT_LINK_POLICY_SETTINGS,hci_normal_reply
+	beq HCI_WRITE_DEFAULT_LINK_POLICY_SETTINGS,hci_normal_reply
+	beq HCI_FLOW_SPECIFICATION,hci_normal_reply
+	beq HCI_SNIFF_SUBRATING,phci_sniff_subrating
+	branch phci_unknown_command
+
+phci_grp_baseband:
+	set0 mark_ext_patch,mark
+	bpatch patch1b_0,mem_patch1b
+	deposit queue
+	beq HCI_SET_EVENT_MASK ,phci_set_event_mask
+	beq HCI_RESET ,hci_normal_reply
+	beq HCI_DELETE_STORED_LINK_KEY,phci_delete_stored_link_key 
+	beq HCI_WRITE_LOCAL_NAME,phci_change_local_name 
+	beq HCI_READ_LOCAL_NAME,phci_read_local_name 
+	beq HCI_WRITE_PAGE_TIMEOUT,phci_write_page_timeout 
+	beq HCI_READ_SCAN_ENABLE,phci_read_scan_enable 
+	beq HCI_WRITE_SCAN_ENABLE,phci_write_scan_enable 
+	beq HCI_WRITE_PAGE_SCAN_ACTIVITY,phci_write_page_scan_activity 
+	beq HCI_WRITE_INQUIRY_SCAN_ACTIVITY,phci_write_inquiry_scan_activity 
+	beq HCI_WRITE_AUTHENTICATION_ENABLE,phci_write_authentication_enable 
+	beq HCI_WRITE_ENCRYPTION_MODE,phci_write_encryption_mode
+	beq HCI_WRITE_CLASS_OF_DEVICE,phci_write_class_of_device 
+	beq HCI_WRITE_VOICE_SETTING,hci_normal_reply 
+	beq HCI_SET_CONTROLLER_TO_HOST_FLOW_CONTROL ,hci_normal_reply
+	beq HCI_HOST_BUFFER_SIZE,hci_normal_reply 
+	beq HCI_HOST_NUM_COMPLETED_PACKETS,phci_host_num_completed
+	beq HCI_WRITE_INQUIRY_SCAN_TYPE,hci_normal_reply 
+	beq HCI_WRITE_INQUIRY_MODE,hci_normal_reply 
+	beq HCI_WRITE_PAGE_SCAN_TYPE,hci_normal_reply 
+	beq HCI_READ_EXTENDED_INQUIRY_RESPONSE,phci_read_ext_inquiry_response
+	beq HCI_WRITE_SIMPLE_PAIRING_MODE,phci_write_ssp_mode 
+	branch phci_unknown_command
+
+phci_grp_info:
+	set0 mark_ext_patch,mark
+	bpatch patch1b_1,mem_patch1b
+	deposit queue
+	beq HCI_READ_LOCAL_VERSION_INFORMATION,phci_read_local_version_information 
+	beq HCI_READ_LOCAL_SUPPORTED_FEATURES,phci_read_local_supported_features 
+	beq HCI_READ_LOCAL_EXT_FEATURES,phci_read_local_ext_features 
+	beq HCI_READ_BUFFER_SIZE,phci_read_buffer_size
+	beq HCI_READ_BD_ADDR,phci_read_bd_addr
+	branch phci_unknown_command
+
+phci_grp_status:
+	set0 mark_ext_patch,mark
+	bpatch patch1b_2,mem_patch1b
+	deposit queue
+	beq HCI_READ_FAILED_CONTACT_COUNTER,hci_normal_reply
+	beq HCI_RESET_FAILED_CONTACT_COUNTER,phci_reset_failed_contact_counter
+	beq HCI_GET_LINK_QUALITY,phci_get_link_quality
+	beq HCI_READ_RSSI,phci_read_rssi
+	beq HCI_READ_AFH_CHANNEL_MAP,phci_read_afh_channel_map
+	beq HCI_READ_BD_CLOCK,phci_read_bd_clock
+	branch phci_unknown_command
+
+phci_grp_test:
+	set0 mark_ext_patch,mark
+	bpatch patch1b_3,mem_patch1b
+	deposit queue
+	beq HCI_READ_LOOPBACK_MODE,hci_normal_reply
+	beq HCI_WRITE_LOOPBACK_MODE,hci_normal_reply
+	beq HCI_ENABLE_DEVICE_UNDER_TEST_MODE,hci_normal_reply
+	beq HCI_WRITE_SIMPLE_PAIRING_DEBUG_MODE,hci_normal_reply
+	branch phci_unknown_command
+	rtn
+
+phci_grp_vendor_specific:
+	set0 mark_ext_patch,mark
+	bpatch patch1b_4,mem_patch1b
+	deposit queue
+	beq HCI_VENDOR_CMD_RESET,hci_normal_reply
+	beq HCI_VENDOR_CMD_CHIPID,phci_grp_vendor_chipid
+	beq HCI_VENDOR_CMD_BAUD,phci_grp_vendor_baud
+	beq HCI_VENDOR_CMD_PATCH,phci_grp_vendor_patch
+	beq HCI_VENDOR_CMD_PATCH_DONE,phci_grp_vendor_done
+	beq HCI_VENDOR_CMD_ECHO,hci_normal_reply
+	beq HCI_VENDOR_CMD_BDADDR,phci_grp_vendor_bdaddr
+	beq HCI_VENDOR_CMD_ENTER_LPM,phci_grp_vendor_enter_lpm
+	
+	beq HCI_VENDOR_CMD_MEM,phci_grp_vendor_mem
+	beq HCI_VENDOR_CMD_EEP,phci_grp_vendor_eep
+	branch hci_normal_reply
+
+phci_grp_vendor_enter_lpm:
+	call hci_normal_reply
+	call wait_uarttx
+	call gpio_pu_uart_tx
+hci_enter_lpm:
+	call app_put_lpm_wake_lock
+	call app_l2cap_flow_control_enable
+	branch gpio_rx_config_input_with_pu
+
+hci_exit_lpm:
+	jam HCI_RX_READY,mem_hci_lt_rx_state
+	call app_get_lpm_wake_lock
+	call hci_lpm_init
+	branch app_l2cap_flow_control_disable
+	
+phci_grp_vendor_chipid:
+	call hci_get_cmd_complete_ptr
+	hfetch 2,core_chipid
+	istore 2,contwu
+	force 6,loopcnt
+	branch hci_command_complete
+	
+phci_grp_vendor_baud:
+	ifetch 2,contru
+	store 2,mem_baud
+	hstore 2,core_uart_baud
+	rtn
+	
+phci_grp_vendor_patch:
+	//hjam 0x80,core_ucode_ctrl
+	ifetch 1,contru
+	copy pdata,temp //check sum via temp
+	hstore 1,core_ucode_low
+	ifetch 1,contru
+	iadd temp,temp
+	set1 7,pdata
+	hstore 1,core_ucode_ctrl
+	ifetch 1,contru
+	iadd temp,temp
+	copy pdata,loopcnt
+phci_grp_vendor_patch_loop:
+	ifetch 1,contru
+	hstore 1,core_ucode_data
+	iadd temp,temp
+	loop phci_grp_vendor_patch_loop
+	and temp,0xff,temp
+	ifetch 1,contru
+	isub temp,null
+	nbranch phci_grp_vendor_patch_bad,zero
+	branch hci_normal_reply
+
+phci_grp_vendor_done:
+	arg 0x20,loopcnt    //patch switch length
+	arg mem_patch00,contw
+	arg 0,temp //checksum
+phci_grp_vendor_done_loop:
+	ifetch 1,contru
+	istore 1,contw
+	iadd temp,temp
+	loop phci_grp_vendor_done_loop
+	and temp,0xff,temp
+	ifetch 1,contru
+	isub temp,null
+	nbranch phci_grp_vendor_patch_bad,zero
+	hjam 0,core_ucode_ctrl
+	call hci_normal_reply
+	call h4_rx_discard_packet
+	branch soft_reset
+
+phci_grp_vendor_patch_bad:
+	hjam 0,core_ucode_ctrl
+	branch start
+	
+phci_grp_vendor_bdaddr:
+	ifetch 6,contru
+	store 6,mem_lap
+	branch hci_normal_reply
+
+
+phci_grp_vendor_mem:
+	ifetch 1,contru
+	store 1,mem_hci_curr_len
+	copy pdata,loopcnt
+	ifetch 2,contru
+	store 2,mem_hci_curr_target
+	copy pdata,contw
+	call uart_copy_rx_bytes
+	branch hci_normal_reply
+
+
+phci_grp_vendor_eep:
+	ifetch 1,contru
+	store 1,mem_hci_curr_len
+	copy pdata,loopcnt
+	ifetch 2,contru
+	store 2,mem_hci_curr_target
+	arg mem_l2cap_rxbuff1,contw
+	call uart_copy_rx_bytes
+	fetcht 1,mem_hci_curr_len
+	arg mem_l2cap_rxbuff1,rega
+	fetch 2,mem_hci_curr_target
+	branch iicd_write_ota_data
+	
+
+
+
+
+phci_grp_low_energy:
+	set0 mark_ext_patch,mark
+	bpatch patch1b_5,mem_patch1b
+	deposit queue
+	beq HCI_LE_SET_EVENT_MASK,hci_normal_reply
+	beq HCI_LE_READ_BUFFER_SIZE,phci_le_read_buffer_size
+	beq HCI_LE_READ_LOCAL_SUPPORTED_FEATURES,phci_le_read_local_supported_features
+	beq HCI_LE_SET_ADVERTISING_PARAMETERS,phci_le_set_adv_param
+	beq HCI_LE_SET_ADVERTISING_DATA, phci_le_set_adv_data
+	beq HCI_LE_SET_SCAN_RESPONSE_DATA,phci_le_set_scan_response_data
+	beq HCI_LE_SET_ADVERTISE_ENABLE,phci_le_set_adv_enable
+	beq HCI_LE_SET_SCAN_PARAMETERS,phci_le_set_scan_param
+	beq HCI_LE_SET_SCAN_ENABLE,phci_le_set_scan_enable
+	beq HCI_LE_CREATE_CONNECTION,phci_le_create_conn
+	beq HCI_LE_CREATE_CONNECTION_CANCEL,phci_le_create_conn_cancel
+	beq HCI_LE_READ_CHANNEL_MAP,phci_le_read_channel_map
+	beq HCI_LE_READ_REMOTE_USED_FEATURES,hci_command_status
+	beq HCI_LE_CONNECTION_UPDATE,hci_normal_reply
+	branch phci_unknown_command
+	rtn
+phci_le_read_buffer_size:
+	call hci_get_cmd_complete_ptr
+	setarg 0
+	istore 3,contwu
+	force 0x07,loopcnt
+	branch hci_command_complete
+
+phci_le_read_local_supported_features:
+	call hci_get_cmd_complete_ptr
+	setarg 1
+	istore 2,contwu
+	setarg 0
+	istore 6,contwu
+	force 0x0c,loopcnt
+	branch hci_command_complete
+
+phci_le_set_adv_param:
+	arg 15,loopcnt
+	arg mem_le_adv_param,contw
+	call uart_copy_rx_bytes
+	branch hci_normal_reply
+
+phci_le_set_adv_data:
+	arg 32,loopcnt
+	arg mem_le_adv_data_len,contw
+	call uart_copy_rx_bytes
+	branch hci_normal_reply
+
+phci_le_set_scan_response_data:
+	arg 32,loopcnt
+	arg mem_le_scan_data_len,contw
+	call uart_copy_rx_bytes
+	branch hci_normal_reply
+
+phci_le_set_adv_enable:
+	ifetch 1,contru
+	store 1,mem_le_adv_enable
+	branch hci_normal_reply
+	
+phci_le_set_scan_param:
+	ifetch 7,contru
+	store 7,mem_le_scan_params
+	branch hci_normal_reply
+	
+phci_le_set_scan_enable:
+	ifetch 1,contru
+	store 1,mem_le_scan_enable
+	branch hci_normal_reply
+
+phci_le_create_conn:
+	ifetch 4,contru //interval & window
+	store 4,mem_le_scan_interval
+	ifetch 1,contru
+	store 1,mem_le_scan_filter_policy
+	arg 20,loopcnt
+	arg mem_le_conn_param,contw
+	call uart_copy_rx_bytes
+	jam 1,mem_le_scan_enable
+	fetch 1,mem_le_conn_own_addr_type
+	store 1,mem_le_scan_own_addr_type
+	fetch 2,mem_le_conn_interval_max 
+	store 2,mem_le_conn_interval
+	fetch 2,mem_le_conn_latency
+	store 2,mem_le_slave_latency
+	fetch 2,mem_le_conn_superto
+	store 2,mem_le_superto
+	jam hci_cmd_le_create_conn,mem_hci_cmd
+	branch hci_command_status
+
+phci_le_create_conn_cancel:
+
+	branch hci_normal_reply
+	
+phci_le_read_channel_map:
+	call hci_get_cmd_complete_ptr
+	ifetch 2,contru
+	istore 2,contwu
+	setarg 0x1fffff
+	istore 5,contwu
+	force 0x0b,loopcnt
+	branch hci_command_complete
+	
+
+
+
+phci_host_num_completed:
+	ifetch 3,contru
+	ifetcht 3,contru
+	fetch 2,mem_acl_credits
+	iadd temp,pdata  
+	store 2,mem_acl_credits
+	rtn
+
+phci_inquiry:
+	ifetch 3,contru
+	store 3,mem_glap
+do_at_inquiry0:
+	jam hci_cmd_inquiry,mem_hci_cmd
+	ifetch 1,contru
+	arg 1600,temp
+	imul32 temp,pdata
+	arg 0xffff,temp
+	isub temp,null
+	nbranch phci_inquiry_nowrap,positive
+	deposit temp
+phci_inquiry_nowrap:
+	force inquiry_length_timer,queue
+	call timer_init
+	fetch 1,mem_at_using_flag
+	bbit1 AT_FLAG_INQ,at_rev_end
+	branch hci_command_status
+	
+	
+phci_inquiry_cancel:
+	jam hci_cmd_inquiry_cancel,mem_hci_cmd
+	branch hci_normal_reply
+
+phci_create_connection:
+	call phci_read_plap
+	ifetch 2,contru
+	store 2,mem_packet_type
+	ifetch 2,contru
+	store 1,mem_page_mode
+	call phci_read_clock
+	ifetch 1,contru
+	store 1,mem_allow_switch
+	jam hci_cmd_create_conn,mem_hci_cmd
+	branch hci_command_status
+
+
+phci_disconnect:
+	jam hci_cmd_disconn,mem_hci_cmd
+	ifetch 2,contru
+	store 1,mem_hci_conn_handle
+	ifetch 1,contru
+	store 1,mem_disconn_reason_send
+	jam HCI_ERROR_CONNECTION_TERMINATED_BY_LOCAL_HOST,mem_hci_disconn_reason
+	fetch 1,mem_hci_conn_handle
+	fetcht 1,mem_sco_handle
+	isub temp,null
+	nbranch hci_command_status,zero
+	jam hci_cmd_disconn_sco,mem_hci_cmd
+	fetch 1,mem_sco_asso_handle
+	store 1,mem_hci_conn_handle
+	branch hci_command_status
+	
+phci_create_connection_cancel:
+	call hci_get_cmd_complete_ptr
+	call hci_write_plap
+	force 10,loopcnt
+	call hci_command_complete
+	//connection cancel 
+	jam hci_cmd_detach,mem_hci_cmd
+	force HCI_ERROR_NO_CONNECTION,temp
+	branch hci_send_connection_error
+
+phci_link_key_request_reply:
+	call phci_read_plap
+	arg mem_link_key,contw
+	force 16,loopcnt
+	call uart_copy_rx_bytes
+	jam hci_cmd_linkkey,mem_hci_cmd
+	branch phci_pin_code_reply
+
+phci_link_key_request_negative_reply:
+	call phci_read_plap
+	jam hci_cmd_nokey,mem_hci_cmd
+	branch phci_pin_code_reply
+
+phci_pin_code_request_reply:
+	call phci_read_plap
+	ifetch 1,contru
+	store 1,mem_pin_length
+	iforce loopcnt
+	arg mem_pin,contw
+	call uart_copy_rx_bytes
+	jam hci_cmd_pair,mem_hci_cmd
+	branch phci_pin_code_reply
+
+phci_pin_code_request_negative_reply:
+	call phci_read_plap
+	jam hci_cmd_nopair,mem_hci_cmd
+phci_pin_code_reply:
+	call hci_get_cmd_complete_ptr
+	call hci_write_plap
+	force 10,loopcnt
+	branch hci_command_complete
+
+phci_io_cap_request_reply:
+	//BD_ADDR, IO_Capability, 
+	increase 6,contru
+	ifetch 3,contru
+	store 3,mem_sp_iocap_local
+	fetch 1,mem_master_sp_state
+	beq SP_MASTER_STAT_START_DONE,phci_io_cap_request_reply_master
+	beq SP_STAT_KEY_SEND,phci_io_cap_request_reply_master
+	jam hci_cmd_io_cap,mem_hci_cmd
+	branch phci_io_cap_request_reply_commom
+phci_io_cap_request_reply_master:
+	jam SP_FLAG_COMMIT,mem_master_sp_flag
+phci_io_cap_request_reply_commom:
+	call hci_get_cmd_complete_ptr
+	call hci_write_plap
+	force 10,loopcnt
+	branch hci_command_complete
+	
+
+phci_authentication_requested:
+	call phci_read_handle
+	jam hci_cmd_auth,mem_hci_cmd
+	branch hci_command_status
+
+phci_set_connection_encryption:
+	call phci_read_handle
+	ifetch 1,contru
+	increase hci_cmd_stopencrypt,pdata
+	store 1,mem_hci_cmd
+	branch hci_command_status
+
+phci_remote_name_request:
+	call phci_read_plap
+	ifetch 2,contru
+	store 1,mem_page_mode
+	call phci_read_clock
+	jam hci_cmd_remote_name_req,mem_hci_cmd
+	branch hci_command_status
+	
+phci_read_remote_ext_features:
+	ifetch 2,contru
+	ifetch 1,contru
+	store 1, mem_ext_features_page
+	jam hci_cmd_remote_ext_features_req,mem_hci_cmd
+	branch hci_command_status
+
+phci_read_remote_supported_features:
+	//if no handle,need send err status
+	fetch 1,mem_conn_handle
+	force HCI_ERROR_NO_CONNECTION,rega
+	branch hci_command_status_err,blank
+	call phci_read_handle
+	jam hci_cmd_remote_feature_req,mem_hci_cmd
+	branch hci_command_status
+
+
+phci_read_remote_version_information:
+	//if no handle,need send err status
+	fetch 1,mem_conn_handle
+	force HCI_ERROR_NO_CONNECTION,rega
+	branch hci_command_status_err,blank
+	call phci_read_handle
+	jam hci_cmd_remote_version_req,mem_hci_cmd
+	branch hci_command_status
+
+
+phci_read_clock_offset:
+	call phci_status_reply_temp
+	force HCI_EVENT_READ_CLOCK_OFFSET_COMPLETE,queue
+	force 5,loopcnt
+	branch hci_send_event
+
+phci_setup_sco_connection:
+	call phci_read_handle
+	increase 10,contru
+	ifetch 2,contru
+	store 2,mem_voice_setting
+	ifetch 1,contru
+	store 1,mem_retransmission_effort
+	ifetch 2,contru
+	store 2,mem_sco_ptype
+	jam 2,mem_air_mode				/* cvsd */
+	jam hci_cmd_setup_sco,mem_hci_cmd
+	branch hci_command_status
+
+phci_accept_sco_connection:
+	jam hci_cmd_accept_sco_conn,mem_hci_cmd
+	branch hci_command_status	
+	
+	
+	
+phci_read_local_name:
+	call hci_get_cmd_complete_ptr
+	arg mem_local_name,contr
+	sub contr,0xff,loopcnt
+	call uart_copy_tx_bytes
+	force 0,pdata
+	sub contr,mem_local_name,loopcnt
+	increase 0xf8,loopcnt
+	call uart_write_bytes
+	force 0xfc,loopcnt
+	branch hci_command_complete
+	
+phci_change_local_name:
+	arg mem_local_name,contw
+	sub contw,0xff,loopcnt
+phci_change_local_name_loop:
+	ifetch 1,contru
+	istore 1,contw
+	branch phci_write_local_name_end,blank
+	loop phci_change_local_name_loop
+phci_write_local_name_end:
+	sub contw,mem_local_name,pdata
+	sub pdata,0,pdata
+	store 1,mem_local_name_length
+	branch hci_normal_reply
+
+phci_role_discovery:
+	call hci_get_cmd_complete_ptr
+	call hci_write_handle
+	force 0,pdata
+	nsetflag master,0,pdata
+	istore 1,contwu
+	force 7,loopcnt
+	arg 0x809,alarm				/* role discovery */
+	call hci_command_complete
+	branch cmd_exit
+	jam hci_cmd_role_discovery,mem_hci_cmd
+	rtn
+
+
+phci_write_link_policy_settings:
+	call phci_copy_handle
+	force 6,loopcnt
+	branch hci_command_complete
+
+
+phci_delete_stored_link_key:
+	branch hci_normal_reply
+
+phci_write_page_timeout:
+	ifetch 2,contru
+	store 2,mem_page_to
+	branch hci_normal_reply
+
+	
+phci_write_scan_enable:
+	ifetch 1,contru
+	store 1,mem_scan_mode
+	branch hci_normal_reply
+
+phci_write_page_scan_activity:
+	ifetch 2,contru
+	store 2,mem_pscan_interval
+	ifetch 2,contru
+	store 2,mem_pscan_window
+	branch hci_normal_reply
+
+phci_write_inquiry_scan_activity:
+	ifetch 2,contru
+	store 2,mem_iscan_interval
+	ifetch 2,contru
+	store 2,mem_iscan_window
+	branch hci_normal_reply
+
+phci_write_encryption_mode:
+	branch hci_normal_reply
+
+	
+phci_write_authentication_enable:
+	ifetch 1,contru
+	store 1,mem_auth_enable
+	branch hci_normal_reply
+
+phci_write_class_of_device:
+	ifetch 3,contru
+	store 3,mem_class
+	branch hci_normal_reply
+
+
+
+
+phci_read_ext_inquiry_response:
+	deposit temp
+	branch hci_normal_reply,blank
+	call hci_get_payload_ptr
+	force 0x1,pdata
+	istore 1,contwu
+	deposit alarm
+	istore 2,contwu
+	force HCI_ERROR_INVALID_HCI_COMMAND_PARAMETERS,pdata
+	istore 1,contwu
+	setarg 0
+	increase 0xf1,loopcnt
+	call uart_write_bytes
+	
+	force HCI_EVENT_COMMAND_COMPLETE,queue
+	force 0xf5,loopcnt
+	branch hci_send_event
+
+
+	
+phci_write_ssp_mode:
+	ifetch 1,contru
+	ncall ssp_enable,blank
+	call ssp_disable,blank
+	branch hci_normal_reply
+
+phci_read_scan_enable:
+	call hci_get_cmd_complete_ptr
+	fetch 1,mem_scan_mode
+	istore 1,contwu
+	force 5,loopcnt
+	branch hci_command_complete
+
+phci_read_local_version_information:
+	call hci_get_cmd_complete_ptr
+	fetch 8,mem_hci_version
+	istore 8,contwu
+	force 12,loopcnt
+	branch hci_command_complete
+
+phci_read_local_supported_features:
+	call hci_get_cmd_complete_ptr
+	fetch 8,mem_features
+	istore 8,contwu
+	force 12,loopcnt
+	branch hci_command_complete
+	
+phci_read_local_ext_features:
+	call hci_get_cmd_complete_ptr
+	setarg 0x0101	// page 1, and max page is 1
+	istore 2,contwu
+	setarg 0x01		// only support ssp
+	istore 8,contwu
+	force 14,loopcnt
+	branch hci_command_complete
+
+phci_read_buffer_size:
+	call hci_get_cmd_complete_ptr
+	fetch 7,mem_acl_pktlen
+	istore 7,contwu
+	force 11,loopcnt
+	branch hci_command_complete
+	
+phci_read_bd_addr:
+	call hci_get_cmd_complete_ptr
+	fetch 6,mem_lap
+	istore 6,contwu
+	force 10,loopcnt
+	branch hci_command_complete
+
+phci_set_event_mask:
+	branch hci_normal_reply
+
+//NO SUPPUT
+phci_reset_failed_contact_counter:
+	branch hci_normal_reply
+phci_get_link_quality:
+	call hci_get_cmd_complete_ptr
+	call hci_write_handle
+	setarg 0xff
+	istore 1,contwu
+	force 7,loopcnt
+	branch hci_command_complete
+	
+phci_read_rssi:
+	call hci_get_cmd_complete_ptr
+	call hci_write_handle
+	setarg 0x00
+	istore 1,contwu
+	force 7,loopcnt
+	branch hci_command_complete
+	
+phci_read_afh_channel_map:
+	set0 mark_ext_patch,mark
+	bpatch patch1b_6,mem_patch1b
+	branch hci_normal_reply
+phci_read_bd_clock:
+	set0 mark_ext_patch,mark
+	bpatch patch1b_7,mem_patch1b
+	branch hci_normal_reply
+
+
+
+
+phci_accept_connection:
+	call phci_read_plap
+	jam hci_cmd_accept_conn,mem_hci_cmd
+	ifetch 1,contru
+	beq 1,hci_command_status	//1 role slave
+	jam hci_cmd_accept_with_switch,mem_hci_cmd
+	branch hci_command_status
+		
+phci_reject_connection:
+	branch phci_accept_connection
+	call phci_read_plap
+	jam hci_cmd_reject_conn,mem_hci_cmd
+	branch hci_normal_reply
+	
+phci_change_connection_packet_type:
+	call hci_command_status
+	call hci_get_payload_ptr
+	setarg 0
+	istore 1,contwu
+	ifetch 4,contru
+	istore 4,contwu
+	force 8,loopcnt
+	arg HCI_EVENT_CONNECTION_PACKET_TYPE_CHANGED,queue
+	arg 5,loopcnt
+	branch hci_send_event
+
+phci_unknown_command:
+	force HCI_ERROR_UNKNOWN_HCI_COMMAND,rega
+	branch hci_command_status_err
+	
+phci_sniff_mode:
+//	force HCI_ERROR_COMMAND_DISALLOWED,rega
+//	branch hci_command_status_err
+	call phci_read_handle
+	ifetch 2,contru
+	store 2,mem_sniff_param_interval
+	ifetch 2,contru
+	store 2,mem_hci_sniff_min_interval
+	ifetch 2,contru
+	store 2,mem_sniff_param_attempt
+	ifetch 2,contru
+	store 2,mem_sniff_param_timeout
+	jam hci_cmd_in_sniff,mem_hci_cmd
+	branch hci_command_status
+	
+phci_exit_sniff_mode:
+	call phci_read_handle
+	call exit_sniff
+	branch hci_command_status
+
+exit_sniff:
+	jam hci_cmd_exit_sniff,mem_hci_cmd
+	rtn
+
+phci_sniff_subrating:
+	branch hci_normal_reply
+	
+phci_switch_role:
+	call phci_read_plap
+	jam hci_cmd_role_switch,mem_hci_cmd
+	branch hci_command_status
+
+phci_read_plap:
+	ifetch 6,contru
+	store 6,mem_hci_plap
+	rtn
+
+phci_read_handle:
+	ifetch 2,contru
+	store 1,mem_hci_conn_handle
+	rtn
+
+phci_copy_handle:
+	call phci_read_handle
+	call hci_get_cmd_complete_ptr
+	fetch 1,mem_hci_conn_handle
+	istore 2,contwu
+	rtn
+
+
+	/* TODO: should be replaced with real job */
+phci_status_reply_temp:
+	call phci_read_handle
+	call hci_command_status
+	call hci_get_payload_ptr
+	force 0,pdata
+	istore 1,contwu
+	fetch 1,mem_hci_conn_handle
+	istore 2,contwu
+	rtn
+	
+phci_read_clock:
+	ifetch 2,contru
+	iadd clkn_bt,pdata
+	and_into 0x1fc,pdata
+	store 4,mem_page_clk
+	rtn
+
+hci_inquiry_reply:
+	set0 mark_ext_patch,mark
+	bpatch patch1c_0,mem_patch1c
+	fetch 1,mem_rp_packets
+	sub pdata,2,null
+	nrtn positive
+	fetcht 6,extm_lap
+	call context_search_plap2
+	rtn zero
+	call hci_get_packet_ptr
+	setarg 0x10f22
+	istore 3,contwu
+	fetch 6,extm_lap
+	istore 6,contwu
+	fetch 1, extm_fhs_misc
+	copy pdata, temp
+	rshift3 pdata, pdata
+	rshift3 pdata, pdata
+	istore 1,contwu
+	copy temp, pdata
+	and pdata,0x30,pdata
+	rshift3 pdata, pdata
+	rshift pdata, pdata
+	istore 1,contwu
+	fetch 3, extm_class
+	istore 3,contwu
+	fetch 4,mem_clke_bt
+	isub clkn_bt,pdata
+	istore 2,contwu
+	setarg 0xc8
+	istore 1,contwu
+	force 15,loopcnt
+	branch hci_send_event_raw
+	
+hci_inquiry_reply_eir:
+	set0 mark_ext_patch,mark
+	bpatch patch1c_1,mem_patch1c
+	force 540,temp
+	fetch 2,mem_h5tx_free
+	isub temp,null
+	nrtn positive
+	fetcht 3,mem_extm_uap_restore
+	fetch 3,extm_uap
+	isub temp,null
+	rtn zero
+	rtn blank
+	store 3,mem_extm_uap_restore
+	fetch 1,mem_rp_packets
+	sub pdata,2,null
+	nrtn positive
+	fetcht 6,extm_lap
+	call context_search_plap2
+	rtn zero
+	call hci_eir_reply
+	force 15,temp
+	fetch 1,mem_rxbuf+1
+	bne 0x09,hci_inquiry_reply_eir_end
+	fetch 1,mem_rxbuf
+	branch hci_inquiry_reply_eir_end,blank
+	iforce loopcnt
+	istore 1,contwu
+	iadd temp,temp
+	increase 1,temp
+	arg mem_rxbuf+1,contr
+	//increase 1,contr
+hci_inquiry_name_loop:
+	ifetch 1,contr
+	istore 1,contwu
+	loop hci_inquiry_name_loop
+hci_inquiry_other_rtn_loop:
+	ifetch 1,contr
+	branch hci_inquiry_reply_eir_end,blank
+	iforce loopcnt
+	istore 1,contwu
+	iadd temp,temp
+	increase 1,temp
+hci_inquiry_other_loop:
+	ifetch 1,contr
+	istore 1,contwu
+	loop hci_inquiry_other_loop
+	branch hci_inquiry_other_rtn_loop	
+hci_inquiry_reply_eir_end:
+	sub temp,0xff,pdata
+	iforce loopcnt
+hci_inquiry_fill_zero:
+	setarg 0x00
+	istore 1,contwu
+	loop hci_inquiry_fill_zero
+	force 0xff,loopcnt
+	branch hci_send_event_raw
+	
+hci_eir_reply:
+	set0 mark_ext_patch,mark
+	bpatch patch1c_2,mem_patch1c
+	call hci_get_packet_ptr
+	setarg 0x1ff2f
+	istore 3,contwu
+	fetch 6,extm_lap
+	istore 6,contwu
+	fetch 1, extm_fhs_misc
+	copy pdata, temp
+	rshift3 pdata, pdata
+	rshift3 pdata, pdata
+	istore 1,contwu
+	copy temp, pdata
+	and pdata,0x30,pdata
+	rshift3 pdata, pdata
+	rshift pdata, pdata
+	istore 1,contwu
+	fetch 3, extm_class
+	istore 3,contwu
+	fetch 4,mem_clke_bt
+	isub clkn_bt,pdata
+	istore 2,contwu
+	setarg 0xc8
+	istore 1,contwu
+	rtn
+	/* temp is features */
+hci_send_remote_features:
+	set0 mark_ext_patch,mark
+	bpatch patch1c_3,mem_patch1c
+	fetch 1,mem_device_option
+	rtnne dvc_op_hci
+	call hci_write_handle3
+	istoret 8,contwu
+	force 11,loopcnt
+	force HCI_EVENT_READ_REMOTE_FEATURES_COMPLETE,queue
+	branch hci_send_event
+
+hci_send_remote_ext_features_notification:
+	set0 mark_ext_patch,mark
+	bpatch patch1c_4,mem_patch1c
+	fetch 1,mem_device_option
+	rtnne dvc_op_hci
+	// BDaddr, Extended_LMP_Features
+	call hci_get_payload_ptr
+	fetch 6,mem_plap
+	istore 6,contwu
+	istoret 8,contwu// 8 bytes remote ext feature saved in temp reg
+	force 14,loopcnt
+	force HCI_EVENT_REMOTE_HOST_SUPPORTED_FEATURES_NOTIFICATION,queue
+	branch hci_send_event	
+	
+hci_send_remote_ext_features_event:
+	set0 mark_ext_patch,mark
+	bpatch patch1c_5,mem_patch1c
+	fetch 1,mem_device_option
+	rtnne dvc_op_hci
+	//Status, Connection_Handle, Page_Number, Maximum page number, Extended_LMP_Features
+	call hci_write_handle3
+	fetch 1,mem_ext_features_page
+	istore 1,contwu
+	setarg 1
+	istore 1,contwu
+	istoret 8,contwu// 8 bytes remote ext feature saved in temp reg
+	force 13,loopcnt
+	force HCI_EVENT_READ_REMOTE_EXT_FEATURES_COMPLETE,queue
+	branch hci_send_event	
+
+	/* temp is version */
+hci_send_version_information:
+	set0 mark_ext_patch,mark
+	bpatch patch1c_6,mem_patch1c
+	fetch 1,mem_device_option
+	rtnne dvc_op_hci
+	call hci_write_handle3
+	istoret 5,contwu
+	force 8,loopcnt
+	force HCI_EVENT_READ_REMOTE_VERSION_INFORMATION_COMPLETE,queue
+	branch hci_send_event
+
+hci_send_io_cap_response_event:
+	set0 mark_ext_patch,mark
+	bpatch patch1c_7,mem_patch1c
+	fetch 1,mem_device_option
+	rtnne dvc_op_hci
+	// BD_ADDR, IO_Capability,
+	call hci_get_payload_ptr
+	fetch 6,mem_plap
+	istore 6,contwu
+	fetch 3,mem_sp_iocap_remote
+	istore 3,contwu
+	force 9,loopcnt
+	force HCI_EVENT_IO_CAP_RESPONSE,queue
+	branch hci_send_event	
+
+hci_send_io_cap_req_event:
+	set0 mark_ext_patch,mark
+	bpatch patch1d_0,mem_patch1d
+	fetch 1,mem_device_option
+	rtnne dvc_op_hci
+	// BD_ADDR
+	call hci_get_payload_ptr
+	fetch 6,mem_plap
+	istore 6,contwu
+	force 6,loopcnt
+	force HCI_EVENT_IO_CAP_REQ,queue
+	branch hci_send_event	
+
+	
+hci_send_connection_complete:
+	force 0,temp
+hci_send_connection_error:
+	set0 mark_ext_patch,mark
+	bpatch patch1d_1,mem_patch1d
+	fetch 1,mem_device_option
+	rtnne dvc_op_hci
+	force HCI_EVENT_CONNECTION_COMPLETE,queue
+	jam 5,mem_acl_credits
+	call hci_get_payload_ptr
+	istoret 1,contwu
+	call hci_write_handle
+	call hci_write_plap
+	force 1,pdata				/* connection type=1:ACL */
+	istore 1,contwu
+	force 0,pdata
+	fetcht 1,mem_state_map
+	isolate1 smap_encryption,temp
+	setflag true,0,pdata
+	istore 1,contwu
+	force 11,loopcnt
+	branch hci_send_event
+
+	/* temp is connection type 0=sco,1=acl */
+hci_send_conn_req_event:
+	set0 mark_ext_patch,mark
+	bpatch patch1d_2,mem_patch1d
+	fetch 1,mem_device_option
+	rtnne dvc_op_hci
+	force HCI_EVENT_CONNECTION_REQUEST,queue
+	call hci_get_payload_ptr
+	call hci_write_plap
+	// class of device
+	fetch 3,extm_class
+	istore 3,contwu
+	istoret 1,contwu
+	force 10,loopcnt
+	branch hci_send_event
+
+hci_send_encryption_change:
+	set0 mark_ext_patch,mark
+	bpatch patch1d_3,mem_patch1d
+	fetch 1,mem_device_option
+	rtnne dvc_op_hci
+	call hci_write_handle3
+	force 0,pdata
+	fetcht 1,mem_state_map
+	isolate1 smap_encryption,temp
+	setflag true,0,pdata
+	istore 1,contwu
+	force HCI_EVENT_ENCRYPTION_CHANGE_COMPLETE,queue
+	force 4,loopcnt
+	branch hci_send_event
+
+
+hci_send_linkkey_notification:
+	set0 mark_ext_patch,mark
+	bpatch patch1d_4,mem_patch1d
+	fetch 1,mem_device_option
+	rtnne dvc_op_hci
+	force HCI_EVENT_LINK_KEY_NOTIFICATION,queue
+	call hci_get_payload_ptr
+	call hci_write_plap
+	arg mem_link_key,contr
+	force 16,loopcnt
+	call uart_copy_tx_bytes
+	force 0x05,pdata
+	istore 1,contwu
+	force 0x17,loopcnt
+	branch hci_send_event
+
+hci_send_user_confirmation_req:
+	fetch 1,mem_device_option
+	rtnne dvc_op_hci
+	force HCI_EVENT_USER_CONFIRMATION_REQUEST,queue
+	call hci_get_payload_ptr
+	call hci_write_plap
+	fetch 4,mem_sp_gkey
+	istore 4,contwu
+	force 0xa,loopcnt
+	branch hci_send_event
+
+hci_send_ssp_complete:
+	fetch 1,mem_device_option
+	rtnne dvc_op_hci
+	force HCI_EVENT_SIMPLE_PAIRING_COMPLETE,queue
+	call hci_get_payload_ptr
+	setarg 0
+	istore 1,contwu
+	call hci_write_plap
+	force 0x7,loopcnt
+	branch hci_send_event
+
+
+hci_send_linkkey_req:
+	set0 mark_ext_patch,mark
+	bpatch patch1d_5,mem_patch1d
+	force HCI_EVENT_LINK_KEY_REQUEST,queue
+hci_send_sec_req:	/* used by linkkey and pin req */
+	fetch 1,mem_device_option
+	rtnne dvc_op_hci
+	call hci_get_payload_ptr
+	call hci_write_plap
+	force 6,loopcnt
+	branch hci_send_event
+
+hci_send_pincode_req:
+	fetch 1,mem_device_option
+	rtnne dvc_op_hci
+	force HCI_EVENT_PIN_CODE_REQUEST,queue
+	branch hci_send_sec_req
+
+	/* temp=role */
+hci_send_role_change:
+	fetch 1,mem_device_option
+	rtnne dvc_op_hci
+	force HCI_EVENT_ROLE_CHANGE,queue
+	call hci_get_payload_ptr
+	force 0,pdata
+	istore 1,contwu
+	call hci_write_plap
+	istoret 1,contwu
+	force 8,loopcnt
+	branch hci_send_event
+
+hci_send_role_change_err:
+	fetch 1,mem_device_option
+	rtnne dvc_op_hci
+	force 0,temp
+	nbranch hci_send_role_change_err_slave,master
+	force 1,temp
+hci_send_role_change_err_slave:
+	fetch 1,mem_device_option
+	rtnne dvc_op_hci
+	force HCI_EVENT_ROLE_CHANGE,queue
+	call hci_get_payload_ptr
+	force 0x35,pdata
+	istore 1,contwu
+	call hci_write_plap
+	istoret 1,contwu
+	force 8,loopcnt
+	branch hci_send_event
+
+hci_send_name:	/* queue is error code */
+	set0 mark_ext_patch,mark
+	bpatch patch1d_6,mem_patch1d
+	fetch 1,mem_device_option
+	rtnne dvc_op_hci
+	call hci_get_packet_ptr
+	setarg 0xff07
+	istore 2,contwu
+	deposit queue
+	istore 1,contwu
+	call hci_write_plap
+	arg mem_tmp_buffer,contr
+	force 248,loopcnt
+hci_read_remote_name_loop:
+	ifetch 1,contr
+	istore 1,contwu
+	loop hci_read_remote_name_loop
+	force 0xff,loopcnt
+	branch hci_send_event_raw
+
+hci_send_num_complete_packets:
+	set0 mark_ext_patch,mark
+	bpatch patch1d_7,mem_patch1d
+	fetch 1,mem_device_option
+	rtnne dvc_op_hci
+	hfetch 1,core_uart_txitems
+	nrtn blank
+	fetch 1,mem_op
+	rtnbit0 op_pkt_comp
+	set0 op_pkt_comp,pdata
+	store 1,mem_op
+	call hci_get_payload_ptr
+	force 1,pdata
+	istore 1,contwu
+	call hci_write_handle
+	force 1,pdata
+	istore 2,contwu
+	force HCI_EVENT_NUM_COMPLETED_PACKETS,queue
+	force 5,loopcnt
+	branch hci_send_event
+
+
+
+hci_send_auth_complete:
+	set0 mark_ext_patch,mark
+	bpatch patch1e_0,mem_patch1e
+	fetch 1,mem_device_option
+	rtnne dvc_op_hci
+	call hci_write_handle3
+	force HCI_EVENT_AUTHENTICATION_COMPLETE,queue
+	force 3,loopcnt
+	branch hci_send_event
+
+
+	/* temp is connection handle */
+hci_send_disconn_complete:
+	set0 mark_ext_patch,mark
+	bpatch patch1e_1,mem_patch1e
+	fetch 1,mem_device_option
+	rtnne dvc_op_hci
+	call hci_get_payload_ptr
+	force 0,pdata
+	istore 1,contwu
+	istoret 2,contwu
+	fetch 1,mem_hci_disconn_reason
+	istore 1,contwu
+	force HCI_EVENT_DISCONNECTION_COMPLETE,queue
+	force 4,loopcnt
+	branch hci_send_event
+
+
+hci_send_le_adv_report_event:
+	set0 mark_ext_patch,mark
+	bpatch patch1e_2,mem_patch1e
+	fetch 1,mem_device_option
+	rtnne dvc_op_hci,pdata
+	call hci_get_payload_ptr
+	setarg 0x0102//HCI_LE_SUBEVENT_ADV_REPORT + report number
+	istore 2,contwu
+	fetcht 1,mem_le_rxbuf
+	and temp,0xf,pdata//PDU type
+	istore 1,contwu
+	copy rega,pdata//advertiser address type
+	istore 1,contwu
+	fetcht 1,mem_le_rxbuf+1//payload length
+	increase -6,temp//data_len = payload length -6;
+	fetch 6,mem_le_rxbuf+2 //advertiser address
+	istore 6,contwu
+	istoret 1,contwu//data_len
+	copy temp,loopcnt 
+	call uart_copy_tx_bytes //copy adv data
+	setarg 127// RSSI not available
+	istore 1,contwu
+	copy temp,loopcnt
+	add loopcnt,12,loopcnt //payload_len = data_len + 12;
+	force HCI_EVENT_LE_META_EVENT,queue
+	branch hci_send_event
+	
+hci_send_le_conn_complete:
+	set0 mark_ext_patch,mark
+	bpatch patch1e_3,mem_patch1e
+	fetch 1,mem_device_option
+	rtnne dvc_op_hci,pdata
+	call hci_get_payload_ptr
+	setarg HCI_LE_SUBEVENT_CONN_COMPLETE
+	istore 1,contwu
+	istoret 1,contwu //status
+	fetch 1,mem_le_conn_handle
+	istore 2,contwu//handle
+	fetch 1,mem_le_mode
+	rshift pdata,pdata
+	setflip 0,pdata
+	istore 1,contwu//role:0 master,1 slave
+	fetch 1,mem_le_conn_peer_addr_type
+	istore 1,contwu//peer addr & type
+	fetch 6,mem_le_plap
+	istore 6,contwu
+	fetch 2,mem_le_conn_interval// interval & latency & super to
+	istore 2,contwu// interval & latency & super to
+	fetch 2,mem_le_slave_latency
+	istore 2,contwu
+	fetch 2,mem_le_superto
+	istore 2,contwu
+	fetch 1,mem_le_peer_sca
+	istore 1,contwu//Master_Clock_Accuracy
+	force HCI_EVENT_LE_META_EVENT,queue
+	arg 19,loopcnt
+	branch hci_send_event
+
+
+	/* temp is mode */	
+hci_send_mode_change:
+	set0 mark_ext_patch,mark
+	bpatch patch1e_4,mem_patch1e
+	fetch 1,mem_device_option
+	rtnne dvc_op_hci
+	//storet 1,mem_lpm_mode
+	call hci_get_payload_ptr
+	call hci_write_handle3
+	istoret 1,contwu
+	fetch 2,mem_tsniff
+	rshift pdata,pdata
+	istore 2,contwu
+	force 6,loopcnt
+	force HCI_EVENT_MODE_CHANGE,queue
+	branch hci_send_event
+	
+	/* temp is status,hansdle of sco on hci is 0xe00 */
+hci_send_sco_complete:
+	set0 mark_ext_patch,mark
+	bpatch patch1e_5,mem_patch1e
+	fetch 1,mem_device_option
+	rtnne dvc_op_hci
+	set0 mark_ext_patch,mark
+	bpatch patch1e_6,mem_patch1e
+	call hci_get_payload_ptr
+	istoret 1,contwu
+	setarg 0xe00
+	istore 2,contwu
+	call hci_write_plap
+	force 0,pdata
+	bmark1 mark_esco,hci_send_esco
+	force 0,pdata
+	istore 7,contwu
+	branch hci_send_sco_cont
+hci_send_esco:
+	fetch 1,mem_device_option
+	rtnne dvc_op_hci
+	setarg 0x020602
+	istore 3,contwu
+	setarg 30
+	istore 2,contwu
+	setarg 30
+	istore 2,contwu
+hci_send_sco_cont:	
+	fetch 1,mem_device_option
+	rtnne dvc_op_hci
+	fetch 1,mem_air_mode
+	istore 1,contwu
+	force HCI_EVENT_SCO_CONNECTION_COMPLETE,queue
+	force 17,loopcnt
+	branch hci_send_event
+
+
+hci_command_status:
+	set0 mark_ext_patch,mark
+	bpatch patch1e_7,mem_patch1e
+	call hci_get_payload_ptr
+	setarg 0x100
+	istore 2,contwu
+	deposit alarm
+	istore 2,contwu
+	force 4,loopcnt
+	force HCI_EVENT_COMMAND_STATUS,queue
+	branch hci_send_event
+	
+hci_command_status_err:
+	set0 mark_ext_patch,mark
+	bpatch patch1f_0,mem_patch1f
+	call hci_get_payload_ptr
+	deposit rega	/*err type in rega*/
+	istore 1,contwu
+	setarg 0x01
+	istore 1,contwu
+	deposit alarm
+	istore 2,contwu
+	force 4,loopcnt
+	force HCI_EVENT_COMMAND_STATUS,queue
+	branch hci_send_event
+	
+hci_normal_reply:
+	set0 mark_ext_patch,mark
+	bpatch patch1f_1,mem_patch1f
+	force 4,loopcnt
+hci_command_complete:	/* loopcnt is hci length */
+	call hci_get_payload_ptr
+	force 0x1,pdata
+	istore 1,contwu
+	deposit alarm
+	istore 3,contwu
+	force HCI_EVENT_COMMAND_COMPLETE,queue
+hci_send_event:		/* queue:event code, loopcnt: length */
+	set0 mark_ext_patch,mark
+	bpatch patch1f_2,mem_patch1f
+	call hci_get_packet_ptr
+	deposit queue
+	istore 1,contwu
+	deposit loopcnt
+	istore 1,contwu
+hci_send_event_raw:
+	set1 mark_h5tx_rp,mark
+	force 5,queue
+	increase 2,loopcnt
+hci_send_packet:
+	call hci_check_bcsp_protocol
+	branch bcsp_send_packet,true
+	branch h4_send_packet_event
+
+hci_send_commu_ready_event:
+	force HCI_EVENT_VENDOR_SPECIFIC,queue
+	call hci_get_payload_ptr
+	setarg HCI_VENDOR_EVENT_COMMU_READY
+	istore 1,contwu
+	force 1,loopcnt
+	branch hci_send_event
+
+
+hci_write_plap:
+	fetch 6,mem_plap
+	istore 6,contwu
+	rtn
+
+hci_write_handle3:
+	call hci_get_payload_ptr
+	force 0,pdata
+	istore 1,contwu
+hci_write_handle:
+	fetch 1,mem_conn_handle
+	istore 2,contwu
+	rtn
+
+hci_get_cmd_complete_ptr:
+	force 12,contwu
+	branch hci_get_tx_ptr
+
+hci_get_payload_ptr:
+	force 8,contwu
+	branch hci_get_tx_ptr
+
+hci_get_packet_ptr:
+	force 6,contwu
+hci_get_tx_ptr:
+	call hci_check_bcsp_protocol
+	branch bcsp_get_tx_ptr,true
+	branch h4_get_tx_ptr
+
+uart_copy_tx_bytes:
+	deposit loopcnt
+	rtn blank
+uart_copy_tx_bytes_loop:
+	ifetch 1,contr
+	istore 1,contwu
+	loop uart_copy_tx_bytes_loop
+	rtn
+
+uart_copy_rx_bytes:
+	deposit loopcnt
+	rtn blank
+uart_copy_rx_bytes_loop:
+	ifetch 1,contru
+	istore 1,contw
+	loop uart_copy_rx_bytes_loop
+	rtn
+
+uart_write_bytes:
+	istore 1,contwu
+	rshift8 pdata,pdata
+	loop uart_write_bytes
+	rtn
+	
+
+calc_tx_crc16:
+	pulse crc16
+	enable enable_crc
+crcloop:
+	ifetch 1,contwu
+	inject bucket,8
+	loop crcloop
+	enable enable_parity
+	inject bucket,16
+	disable enable_parity
+	disable enable_crc
+	disable crc16
+	byteswap pdata,pdata
+	rtn
+
+stop_loop:
+	nop 1
+	hjam 1,0x8203
+	branch stop_loop
+
+
+
+process_cmd:
+	set0 mark_ext_patch,mark
+	bpatch patch1f_3,mem_patch1f
+	fetch 1,mem_hci_cmd
+	rtn blank
+	fetch 1,mem_lmo_opcode2
+	nrtn blank
+	call cmd_check_plap
+	nbranch process_cmd_conn_handle,zero
+	fetch 1,mem_hci_cmd
+	beq hci_cmd_remote_name_req,cmd_namereq
+	beq hci_cmd_pair,cmd_pair
+	beq hci_cmd_nopair,cmd_nopair
+	beq hci_cmd_linkkey,cmd_has_key
+	beq hci_cmd_nokey,cmd_no_key
+	beq hci_cmd_reject_conn,cmd_disconn
+	beq hci_cmd_role_switch,cmd_role_switch
+	beq hci_cmd_accept_conn,cmd_accept_conn
+	beq hci_cmd_accept_with_switch,cmd_accept_with_switch
+	beq hci_cmd_detach,cmd_detach
+	beq hci_cmd_in_sniff,cmd_in_sniff
+	beq hci_cmd_exit_sniff,cmd_exit_sniff
+process_cmd_conn_handle:
+	set0 mark_ext_patch,mark
+	bpatch patch1f_4,mem_patch1f
+	call cmd_check_handle
+	nrtn blank
+	fetch 1,mem_hci_cmd
+	beq hci_cmd_auth,cmd_auth
+	beq hci_cmd_startencrypt,cmd_start_encrypt
+	beq hci_cmd_stopencrypt,cmd_stop_encrypt
+	beq hci_cmd_setup_sco,cmd_setup_sco
+	beq hci_cmd_disconn_sco,cmd_disconn_sco
+	beq hci_cmd_accept_sco_conn,cmd_accept_sco_conn
+	beq hci_cmd_remote_feature_req,cmd_feature_req
+	beq hci_cmd_remote_ext_features_req,cmd_ext_feature_req
+	beq hci_cmd_remote_version_req,cmd_version_req
+	beq hci_cmd_role_discovery,cmd_role_discovery
+	beq hci_cmd_io_cap,cmd_io_cap
+	rtnne hci_cmd_disconn
+	call lmp_disconnect
+cmd_exit:
+	jam 0,mem_hci_cmd
+	rtn
+
+cmd_check_plap:
+	fetch 6,mem_hci_plap
+	fetcht 6,mem_plap
+	isub temp,null
+	rtn
+
+	/* return pdata=0 if handle match */
+cmd_check_handle:
+	fetch 1,mem_hci_conn_handle
+	fetcht 1,mem_conn_handle
+	isub temp,pdata
+	rtn
+
+cmd_accept_conn:
+	jam LMP_ACCEPTED,mem_lmo_opcode2
+	jam LMP_HOST_CONNECTION_REQ,mem_lmi_opcode2
+	call tid_set_reply
+	branch cmd_exit
+
+cmd_accept_with_switch:
+	branch cmd_accept_sco_conn,master
+	set1 mark_accept_switch,mark
+cmd_role_switch:
+	jam LMP_SLOT_OFFSET,mem_lmo_opcode2
+	set1 mark_switch_initiated,mark
+	nbranch cmd_exit,master
+	jam LMP_SWITCH_REQ ,mem_lmo_opcode2
+	fetch 1,mem_connection_options
+	set0 CONNECTION_SWITCH,pdata
+	store 1,mem_connection_options
+	branch cmd_exit
+
+	
+cmd_namereq:
+	jam LMP_NAME_REQ,mem_lmo_opcode2
+	jam 0,mem_name_offset
+	branch cmd_exit
+	
+//enable ssp master sm
+cmd_ssp:
+	jam SP_FLAG_COMMIT,mem_master_sp_flag
+	jam SP_MASTER_STAT_START_SKIP,mem_master_sp_state
+	branch cmd_exit
+	
+cmd_pair:
+	fetch 1,mem_op
+	bbit1 op_inrand_req,cmd_pair_passive
+	call tid_initiate
+	jam LMP_IN_RAND,mem_lmo_opcode2
+	branch cmd_exit
+cmd_pair_passive:
+	set0 op_inrand_req,pdata
+	store 1,mem_op
+	call lmp_accept_inrand
+	setarg 0
+	setflag master,smap_lmptid,pdata		
+	store 1,mem_lmo_tid2
+	branch cmd_exit
+	
+cmd_nopair:
+	jam PAIRING_NOT_ALLOWED,mem_disconn_reason_send
+	jam LMP_DETACH,mem_lmo_opcode2
+	fetch 1,mem_state
+	bbit1 state_inconn,cmd_exit
+	force HCI_ERROR_PAIRING_NOT_ALLOWED,temp
+	call hci_send_connection_error
+	branch cmd_exit
+
+	
+cmd_has_key:
+	call linkkey_set
+	fetch 1,mem_op
+	bbit1 op_auth_req,cmd_send_aurand
+	bbit1 op_send_sres,cmd_send_sres
+	bbit1 op_inrand_req,cmd_pair_passive
+	branch cmd_exit
+cmd_send_sres:
+	set0 op_send_sres,pdata
+	store 1,mem_op
+	jam LMP_SRES,mem_lmo_opcode2
+	branch cmd_exit
+
+cmd_no_key:
+	fetch 1,mem_op
+	bbit1 op_send_sres,cmd_no_key_reject
+	call hci_send_pincode_req
+	branch cmd_exit
+cmd_no_key_reject:
+	set0 op_send_sres,pdata
+	store 1,mem_op
+	jam LMP_NOT_ACCEPTED,mem_lmo_opcode2
+	jam LMP_AU_RAND,mem_lmi_opcode2
+	jam KEY_MISSING,mem_lmo_reason2
+	branch cmd_exit
+	
+
+cmd_auth:
+	fetch 1,mem_op
+	set1 op_auth_req,pdata
+	store 1,mem_op
+	fetch 1,mem_state
+	bbit1 state_linkkey,cmd_auth_sendaurand
+	call hci_send_linkkey_req
+	branch cmd_exit
+
+cmd_send_aurand:
+cmd_auth_sendaurand:
+	call tid_initiate
+	jam LMP_AU_RAND,mem_lmo_opcode2
+	branch cmd_exit
+
+cmd_start_encrypt:
+	jam LMP_ENCRYPTION_MODE_REQ,mem_lmo_opcode2
+	branch cmd_exit
+
+cmd_stop_encrypt:
+	jam LMP_ENCRYPTION_MODE_REQ ,mem_lmo_opcode2
+	branch cmd_exit
+
+cmd_feature_req:
+	set0 mark_ext_patch,mark
+	bpatch patch1f_5,mem_patch1f
+	jam LMP_FEATURES_REQ,mem_lmo_opcode2
+	jam hci_cmd_wait_remote_feature,mem_hci_cmd
+	rtn
+	
+cmd_ext_feature_req:	
+	jam LMP_EXT_FEATURES_REQ,mem_lmo_opcode2
+	jam hci_cmd_wait_remote_ext_feature,mem_hci_cmd
+	rtn
+	
+cmd_version_req:
+	jam LMP_VERSION_REQ,mem_lmo_opcode2
+	branch cmd_exit
+	
+cmd_in_sniff:
+	jam LMP_SNIFF_REQ,mem_lmo_opcode2
+	arg mem_sniff_payload,contw
+	setarg 0
+	isolate1 27,clke_bt
+	setflag true,1,pdata		/* use init 2 if bit27 of clke is 1 */
+	istore 1,contw	
+	setarg 0	/* dsniff */
+	istore 2,contw
+	fetch 2,mem_sniff_param_interval	/* tsniff */
+	istore 2,contw
+	fetch 1,mem_sniff_param_attempt	/* attempt */
+	istore 2,contw
+	fetch 1,mem_sniff_param_timeout	/* timeout */
+	istore 2,contw
+	branch cmd_exit
+	
+cmd_exit_sniff:
+	jam LMP_UNSNIFF_REQ,mem_lmo_opcode2
+	branch cmd_exit
+	
+cmd_setup_sco:
+	call new_conn_handle
+	store 1,mem_sco_handle
+	fetch 1,mem_conn_handle
+	store 1,mem_sco_asso_handle
+	jam LMP_SCO_LINK_REQ,mem_lmo_opcode2
+	set1 mark_esco,mark
+	jam LMP_EXT_ESCO_LINK_REQ,mem_lmo_opcode2
+	branch cmd_exit
+
+cmd_disconn:
+	call lmp_disconnect
+	branch cmd_exit
+	
+cmd_disconn_sco:
+	jam LMP_REMOVE_SCO_LINK_REQ,mem_lmo_opcode2
+	bmark0 mark_esco,cmd_exit
+	jam LMP_EXT_REMOVE_ESCO_REQ,mem_lmo_opcode2
+	branch cmd_exit
+	
+cmd_accept_sco_conn:
+	branch cmd_accept_sco_conn_master,master
+	jam LMP_ACCEPTED,mem_lmo_opcode2
+	jam LMP_SCO_LINK_REQ,mem_lmi_opcode2
+	bmark0 mark_esco,cmd_exit
+	fetch 1,mem_esco_type
+	bne type_hv3,parse_lmpext_esco_link_req_change_param //ev3 only
+	jam LMP_EXT_ACCEPTED ,mem_lmo_opcode2
+	jam LMP_EXT_ESCO_LINK_REQ,mem_lmi_opcode2
+	branch cmd_exit	
+cmd_accept_sco_conn_master:
+	call new_conn_handle
+	store 1,mem_sco_handle
+	fetch 1,mem_conn_handle
+	store 1,mem_sco_asso_handle
+	jam LMP_SCO_LINK_REQ,mem_lmo_opcode2
+	bmark0 mark_esco,cmd_exit
+	branch parse_lmpext_esco_link_req_change_param	
+
+
+cmd_role_discovery:
+	call hci_get_cmd_complete_ptr
+	call hci_write_handle
+	force 0,pdata
+	nsetflag master,0,pdata
+	istore 1,contwu
+	force 7,loopcnt
+	arg 0x809,alarm				/* role discovery */
+	call hci_command_complete
+	branch cmd_exit
+	
+cmd_io_cap:
+	jam LMP_IO_CAP_RES,mem_lmo_opcode2 
+	branch cmd_exit
+	
+cmd_detach:
+	jam LMP_DETACH,mem_lmo_opcode2
+	jam OTHER_END_TERMINATED,mem_disconn_reason_send
+	branch cmd_exit
+
+
+
+// below  merged from bt_hci_patch
+process_hci_patch:
+	jam 0, mem_check_sum
+	//check the packet id
+	//if the packid is not mem_ucode_id_local + 1 then send nak with packe number
+	ifetch 1,contru
+	store 1, mem_ucode_id_remote
+	call hci_ucode_checksum_add
+	
+	call push_stack
+	fetch 1, mem_ucode_id_remote
+	copy pdata, temp
+	fetch 1, mem_ucode_id_local
+	increase 1,pdata
+	icompare 0xff,temp
+	nbranch hci_nak_ucode_with_stack, true
+	store 1, mem_ucode_id_local
+	call pop_stack
+	
+	ifetch 1,contru
+	beq 0x01,hci_enable_ucode_load
+	beq 0x02,process_hci_ucode
+	beq 0x03,hci_disable_ucode_load
+	beq 0x05,process_hci_n_sched_data
+	beq 0x06,hci_write_register
+	beq 0x07,hci_read_register
+	beq 0x08,hci_enable_ucode
+	beq 0x09,hci_soft_branch
+	rtn
+hci_ucode_checksum_add:
+	copy pdata, temp
+	call push_stack
+	fetch 1, mem_check_sum
+	iadd temp,pdata
+	store 1, mem_check_sum
+	branch pop_stack
+
+
+hci_ack_ucode:
+	force 1,pdata
+	call uart_send_byte
+	fetch 1, mem_ucode_id_local
+	branch uart_send_byte
+	
+hci_nak_ucode_with_stack:
+	call pop_stack
+	branch hci_nak_ucode_ucode_id
+hci_nak_ucode:
+	fetch 1, mem_ucode_id_local
+	increase -1,pdata
+	store 1, mem_ucode_id_local
+hci_nak_ucode_ucode_id:	
+	force 0,pdata
+	call uart_send_byte
+	fetch 1, mem_ucode_id_local
+	branch uart_send_byte
+	
+hci_write_register:
+	call hci_ucode_checksum_add
+	ifetch 1,contru
+	store 1, mem_ucode_temp
+	call hci_ucode_checksum_add
+	ifetch 1,contru
+	lshift8 pdata, contw
+	call hci_ucode_checksum_add
+	fetch 1, mem_ucode_temp
+	iadd contw, contw
+	ifetch 1,contru //data in pdata
+	istore 1, contw //store the data in register
+	call hci_ucode_checksum_add
+	ifetch 1,contru
+	call hci_ucode_checksum_add
+	fetch 1, mem_check_sum
+	bne 0xff, hci_nak_ucode
+	branch hci_ack_ucode
+	
+hci_read_register:
+	call hci_ucode_checksum_add
+	ifetch 1,contru
+	store 1, mem_ucode_temp
+	call hci_ucode_checksum_add
+	ifetch 1,contru
+	store 1, mem_ucode_temp1
+	call hci_ucode_checksum_add
+	ifetch 1,contru
+	call hci_ucode_checksum_add
+	fetch 1, mem_check_sum
+	bne 0xff, hci_nak_ucode
+	
+	fetch 1, mem_ucode_temp1
+	lshift8 pdata, temp
+	fetch 1, mem_ucode_temp
+	iadd temp,contru
+	ifetch 1, contru
+	store 1, mem_ucode_temp
+hci_read_register_ack:	
+	force 1,pdata
+	call uart_send_byte
+	fetch 1, mem_ucode_temp //hardware register
+	call uart_send_byte
+	jam 0xff, mem_ucode_id_local
+	rtn
+	
+hci_enable_ucode:
+	call hci_ucode_checksum_add
+	ifetch 1,contru
+	call hci_ucode_checksum_add
+	fetch 1, mem_check_sum
+	bne 0xff, hci_nak_ucode
+	branch hci_ack_ucode
+
+process_hci_ucode:
+	call hci_ucode_checksum_add
+	ifetch 1,contru
+	hstore 1,core_ucode_low
+	call hci_ucode_checksum_add
+	ifetch 1,contru
+	set1 7,pdata
+	hstore 1,core_ucode_ctrl
+	set0 7,pdata
+	call hci_ucode_checksum_add
+	ifetch 1,contru //length
+	copy pdata,loopcnt
+	call hci_ucode_checksum_add
+write_ucode_loop:
+	ifetch 1,contru
+	hstore 1, core_ucode_data
+	call hci_ucode_checksum_add
+	loop write_ucode_loop
+	ifetch 1,contru
+	call hci_ucode_checksum_add
+	fetch 1, mem_check_sum
+	bne 0xff, hci_nak_ucode
+	branch hci_ack_ucode
+		
+process_hci_n_sched_data:
+	call hci_ucode_checksum_add
+	ifetch 1,contru
+	store 1, mem_ucode_temp
+	call hci_ucode_checksum_add
+	ifetch 1,contru
+	lshift8 pdata, contw
+	call hci_ucode_checksum_add
+	fetch 1, mem_ucode_temp
+	iadd contw, contw
+	ifetch 1,contru
+	iforce loopcnt
+	call hci_ucode_checksum_add
+process_hci_n_sched_loop:
+	ifetch 1,contru
+	istore 1,contw
+	call hci_ucode_checksum_add
+	loop process_hci_n_sched_loop
+	ifetch 1,contru
+	call hci_ucode_checksum_add
+	fetch 1, mem_check_sum
+	bne 0xff, hci_nak_ucode
+	branch hci_ack_ucode
+
+
+
+hci_enable_ucode_load:
+	call hci_ucode_checksum_add
+	ifetch 1,contru
+	call hci_ucode_checksum_add
+	fetch 1, mem_check_sum
+	bne 0xff, hci_nak_ucode
+	hjam 0x80,core_ucode_ctrl
+	branch hci_ack_ucode
+
+hci_disable_ucode_load:
+	call hci_ucode_checksum_add
+	ifetch 1,contru
+	call hci_ucode_checksum_add
+	fetch 1, mem_check_sum
+	bne 0xff, hci_nak_ucode
+	hjam 0,core_ucode_ctrl
+	branch hci_ack_ucode
+	
+hci_soft_branch:
+	call hci_ucode_checksum_add
+	ifetch 1,contru
+	call hci_ucode_checksum_add
+	fetch 1, mem_check_sum
+	bne 0xff, hci_nak_ucode
+	call hci_ack_ucode
+	branch soft_reset
+
+
+hci_idle_dispatch:
+	call gpio_check_uart_state
+	rtn true
+	arg UART_WAKEUP_RX,temp
+	call gpio_get_bit
+	nbranch uart_wake_up,true
+	jam HCI_RX_WAKE,mem_hci_lt_rx_state
+	rtn
+uart_wake_up:
+	fetch 1,mem_hci_lt_rx_state
+	rtnne HCI_RX_WAKE
+	call hci_exit_lpm
+	branch hci_send_commu_ready_event
+	
+	
+/**
+* the following API is to send the HID data
+* 
+*/
+
+/**
+* the following API is to process the hid  rx data
+* 
+*/
+//handle the hid data
+
+hid_rx_process:
+	set1 mark_ext_patch,mark
+	bpatch patch33_4,mem_patch33
+	fetch 2,mem_l2cap_payload_ptr
+	copy pdata,contr
+	ifetch 1,contr
+	and pdata,0x0f,temp
+	rshift4 pdata,pdata //hidtype
+	beq HID_TYPE_SET_IDLE,hid_rx_process_handshake
+	beq HID_TYPE_SET_PROTOCOL,hid_rx_process_handshake
+	beq HID_TYPE_DATA,hid_rx_process_data
+	beq HID_TYPE_SET_REPORT,hid_rx_process_set_report
+	beq HID_TYPE_CONTROL,hid_rx_process_hid_control
+	rtn
+
+hid_rx_process_hid_control:
+	copy temp,pdata
+	beq HID_CONTROL_P_VIRTUALCABLEUNPLUG,hid_rx_process_virtual_cable_unplug
+	beq HID_CONTROL_P_SUSPEND,hid_rx_process_suspend
+	rtn
+	
+hid_rx_process_virtual_cable_unplug:
+	jam BT_EVT_VIRTUAL_CABLE_UNPLUG,mem_fifo_temp
+	call ui_ipc_send_event
+	fetch 1,mem_device_option
+	rtnne dvc_op_mouse,pdata
+	copy temp,pdata
+	beq HID_CONTROL_P_VIRTUALCABLEUNPLUG,eeprom_erase_reconn_info
+	rtn
+hid_rx_process_suspend:
+	rtn
+
+hid_rx_process_set_report:
+	arg 0x01,rega
+	call hid_malloc_tx_buff
+	fetch 2,mem_hid_ctrl_remote_cid
+	istore 2,contw
+	setarg 0x00
+	istore 1,contw
+	rtn
+
+hid_rx_process_handshake:
+	arg 1,rega//payload length
+	call hid_malloc_tx_buff
+	fetch 2,mem_hid_ctrl_remote_cid
+	istore 2,contw
+	setarg 0
+	istore 1,contw
+	jam 1,mem_ui_data_txbuff_length
+	fetch 1,mem_hid_control_state
+	set1 l2cap_channel_hid_handshake_done
+	store 1,mem_hid_control_state
+hid_handshake_event:
+	jam BT_EVT_HID_HANDSHAKE,mem_fifo_temp
+	branch ui_ipc_send_event
+
+hid_rx_process_data:
+	ifetch 1,contr
+	beq HID_REPORT_ID_KB,hid_rx_process_data_hid_kb
+	rtn
+
+hid_rx_process_data_hid_kb:
+	copy contr,rega
+	fetch 1,mem_device_option
+	rtnne dvc_op_kb,pdata
+	copy rega,contr
+	branch kb_process_kb_report
+	
+hid_malloc_tx_buff:
+	call l2cap_malloc
+	copy rega,temp
+	storet 1,mem_ui_data_txbuff_length
+	copy pdata,contw
+	copy rega,pdata
+	istore 2,contw //hid payload length
+	rtn
+
+
+le_ir_init:
+	setarg le_ir
+	store 2,mem_cb_le_process	
+	setarg le_ir_wcb
+	store 2,mem_cb_att_write
+	call eeprom_load_reconn_info
+	call le_init_att
+	hjam 158,core_pwm_ncnt0
+	hjam 8,core_gpio_sel1
+	hjam 5,core_gpio_out1
+	setarg -1
+	set0 1,pdata
+	set0 21,pdata
+	hstore 4,core_gpio_oe0
+	hjam 2,core_gpio_pu0
+	rtn wake
+	jam 1,mem_le_adv_enable
+	rtn
+
+
+le_ir_wcb:
+	ifetch 1,rega
+	store 1,mem_ir_cmd
+	beq ircmd_write_pulse,le_ir_write_pulse
+	beq ircmd_write_seq,le_ir_write_seq
+	beq ircmd_write_next,le_ir_write_next
+	beq ircmd_screen_on,le_ir_screen_on
+	beq ircmd_screen_off,le_ir_screen_off
+	rtnne ircmd_play
+	ifetch 1,contr
+	store 1,mem_ir_play_count
+	rtn
+
+le_ir_write_pulse:
+	arg mem_ir_pulse_zero,contw
+	branch le_ir_write
+	
+le_ir_write_seq:
+	arg mem_ir_sequence_len,contw
+	branch le_ir_write
+
+le_ir_write_next:
+	fetch 2,mem_ir_ptr
+	iforce contw
+
+le_ir_write:
+	arg 19,loopcnt
+	call memcpy
+	deposit contw
+	store 2,mem_ir_ptr
+	jam 0,mem_ir_cmd
+	rtn
+
+
+	
+le_ir:
+	fetch 1,mem_ir_cmd
+	beq ircmd_record,le_ir_start_record
+	beq ircmd_play,le_ir_play
+	beq ircmd_report_pulse,le_ir_report
+	beq ircmd_report_seq,le_ir_report
+	beq ircmd_report_raw,le_ir_report
+	beq ircmd_test_play,le_ir_play
+	beq ircmd_test_rec,le_ir_rec
+	rtn
+
+le_ir_screen_on:
+	jam 0,mem_lpm_mult
+	jam 0,mem_ir_cmd
+	rtn
+le_ir_screen_off:
+	jam 30,mem_lpm_mult
+	jam 0,mem_ir_cmd
+	rtn
+
+	
+
+le_ir_rec:
+	jam 0,mem_ir_cmd
+	arg 0xfffff,stop_watch
+	call ir_record
+	rtn
+	
+le_ir_next_anchor:
+	fetcht 2,mem_le_tsniff
+	iadd temp,pdata
+	store 4,mem_le_anchor
+le_ir_start_record:
+	fetch 4,mem_le_anchor
+	isub clke_bt,pdata
+	nbranch le_ir_next_anchor,positive
+	rshift pdata,stop_watch
+	call ir_record
+	rtn blank
+	jam ircmd_report_raw,mem_ir_cmd
+	arg mem_ir_record,temp
+	storet 2,mem_ir_ptr
+	
+le_ir_report:
+	call le_xtype_fifo_is_full
+	nrtn blank
+	jam notify_handle,mem_le_notify_handle
+	jam ATTOP_HANDLE_VALUE_NOTIFICATION,mem_fifo_temp
+	call le_xtype_fifo_in
+	fetch 2,mem_le_notify_attr_start
+	iforce contw
+	fetch 2,mem_ir_ptr
+	iforce contr
+	arg 20,loopcnt
+	call memcpy
+	deposit contr
+	store 2,mem_ir_ptr
+	fetch 2,mem_ir_report_len
+	increase -20,pdata
+	store 2,mem_ir_report_len
+	rtn positive
+	jam 0,mem_ir_cmd
+	rtn
+
+
+le_ir_play:
+	fetch 1,mem_ir_play_count
+	call ir_play
+	jam 0,mem_ir_cmd
+	rtn
+
+
+ir_record:
+	call ir_receive
+	setarg mem_ir_record
+	isub contw,pdata
+	sub pdata,0,pdata
+	store 2,mem_ir_report_len
+	rtn
+
+
+	/* stop_watch is sync timeout */
+ir_receive:
+	disable swfine
+	arg mem_ir_record,contw
+ir_receive_waitsync:
+	rtn timeout
+	hfetch 1,core_gpio_in+2
+	bbit0 5,ir_receive_waitsync
+	copy clkn,temp
+	arg 0x80,loopcnt
+	call memset0
+	arg mem_ir_record,contw
+	arg 0x0,regc
+ir_receive_loop:
+	arg 180,stop_watch
+ir_receive_waitedge:
+	rtn timeout
+	hfetch 1,core_gpio_in+2
+	ixor regc,pdata
+	bbit1 5,ir_receive_waitedge
+	copy clkn,pdata
+	iforce alarm
+	call clk_diff_rt
+	sub pdata,0xff,null
+	branch ir_receive_waitedge,positive
+	isolate0 5,regc
+	setflag true,23,pdata
+	istore 3,contw
+	rshift8 contw,pdata
+	rtneq mem_ir_record_max
+	copy alarm,temp
+	xor_into 0x20,regc	
+	branch ir_receive_loop
+
+
+	/* return 0xff if all sequence is sent */
+ir_get_next_seq:
+	branch ir_get_next_seq_saved,user
+	branch ir_get_next_encoded,user2
+ir_get_next_seq_fetch:
+	arg mem_ir_sequence,temp
+	fetch 1,mem_ir_sequence_len
+	iadd temp,pdata
+	isub rega,null
+	branch ir_get_next_seq_exit,zero
+	ifetch 1,rega
+	copy contr,rega
+	bbit0 7,ir_get_next_cont
+	enable user2
+	and pdata,0x7f,regb
+	lshift3 rega,rega
+	branch ir_get_next_encoded
+ir_get_next_cont:
+	rshift4 pdata,debug
+	and_into 0xf,pdata
+	isub debug,null
+	rtn zero
+	enable user
+	rtn
+ir_get_next_seq_saved:
+	deposit debug
+	disable user
+	rtn
+ir_get_next_encoded:
+	deposit regb
+	branch ir_get_next_encoded_end,blank
+	and rega,0x7,queue
+	rshift3 rega,contr
+	ifetch 1,contr
+	increase 1,rega
+	increase -1,regb
+	qisolate0 pdata
+	fetch 1,mem_ir_pulse_zero
+	branch ir_get_next_cont,true
+	fetch 1,mem_ir_pulse_one
+	branch ir_get_next_cont
+ir_get_next_encoded_end:
+	disable user2
+	increase 7,rega
+	rshift3 rega,rega
+	branch ir_get_next_seq_fetch
+ir_get_next_seq_exit:
+	setarg 0xff
+	rtn
+	
+	/* pdata=index of pulse */
+ir_get_pulse:
+	lshift pdata,contr
+	iadd contr,pdata
+	arg mem_ir_pulses,contr
+	iadd contr,contr
+	ifetch 3,contr
+	rtn
+	
+	/* pdata=number of seqs to send */
+ir_play:
+	enable swfine
+	iforce loopcnt
+ir_play_nloop:
+	disable user
+	disable user2
+	arg mem_ir_sequence,rega
+ir_play_loop:
+	call ir_get_next_seq
+	beq 0xff,ir_play_end
+	call ir_get_pulse
+	bbit0 23,ir_play_silence
+	set0 23,pdata
+	hjam 158,core_pwm_pcnt0
+ir_play_silence:
+	iforce stop_watch
+	until null,timeout
+	hjam 0,core_pwm_pcnt0
+	branch ir_play_loop
+ir_play_end:
+	loop ir_play_nloop
+	rtn
+
+
+
+
+
+le_kb_init:
+	call kb_init_common
+	setarg kb_process_idle
+	store 2,mem_cb_idle_process
+	setarg kb_send_process
+	store 2,mem_cb_bt_process
+	setarg kb_process_bb_event
+	store 2,mem_cb_bb_event_process
+	setarg kb_process_lpm_before
+	store 2,mem_cb_before_lpm
+	setarg kb_discovery_timeout_sleep
+	store 2,mem_cb_discovry_timeout
+    	setarg kb_before_hibernate
+	store 2,mem_cb_before_hibernate
+	setarg kb_wakeup_check
+	store 2,mem_cb_check_wakelock
+	rtn wake	
+	
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BTN_DOWN,app_bt_start_discovery_short
+	call app_check_reconn_target
+	branch kb_start_discovery,blank
+	call app_bt_stop_discovery
+	branch app_bt_start_reconnect
+
+	
+kb_init:	
+	call kb_init_common
+	setarg kb_process_idle
+	store 2,mem_cb_idle_process
+	setarg kb_send_process
+	store 2,mem_cb_bt_process
+	setarg kb_process_bb_event
+	store 2,mem_cb_bb_event_process
+	setarg kb_process_lpm_before
+	store 2,mem_cb_before_lpm
+	setarg kb_discovery_timeout_sleep
+	store 2,mem_cb_discovry_timeout
+    	setarg kb_before_hibernate
+	store 2,mem_cb_before_hibernate
+	setarg kb_wakeup_check
+	store 2,mem_cb_check_wakelock
+	rtn wake	
+		
+	jam 0,mem_sp_flag
+	jam 0,mem_master_sp_flag
+
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BTN_DOWN,app_bt_start_discovery_short
+	call app_check_reconn_target
+	branch kb_start_discovery,blank
+	call app_bt_stop_discovery
+	branch app_bt_start_reconnect
+
+	
+	
+kb_init_common:
+	set1 mark_ext_patch,mark
+	bpatch patch36_6,mem_patch36
+//	call kb_init_before_hibernate
+	fetch 1,0x8140
+	branch assert,blank
+	hjam 0,core_gpio_oe0
+	hjam 0xff,core_gpio_pu0
+
+	hjam 0xff,core_gpio_oe1
+	hjam 0xff,core_gpio_oe2
+	hfetch 1,core_gpio_oe3
+	or_into 0x0f,pdata
+	hstore 1,core_gpio_oe3
+
+	hjam 0x00,core_gpio_sel
+	hjam 0x00,core_gpio_sel1
+	hjam 0xff,core_gpio_key0
+	hjam 0xFf,core_gpio_key1
+	hfetch 1,core_gpio_key2
+	or_into 0x03,pdata
+	hstore 1,core_gpio_key2
+	hjam 0x00,core_kscn_rowmask
+	setarg KB_KSCAN_COL_1
+	lshift3 pdata,pdata
+	add pdata,KB_KSCAN_ROW_1,pdata
+	hstore 1,core_kscn_rctc
+
+	hfetch 1,core_config
+	set1 2,pdata //set keyscan clk source
+	hstore 1,core_config
+	hfetch 1, core_clkoff+1
+	set0 1,pdata
+	hstore 1,core_clkoff+1
+	hjam 0xd,core_kscn_ksctrl
+	hjam 0xd3,core_kscn_m_debounce
+	hjam 0,core_kscn_scancycle_timer_l
+	hjam 0x31,core_kscn_scancycle_timer_h
+	call lpm_disable_exen_output
+	fetcht 1,mem_led_cap_gpio
+ 	call gpio_config_output
+	fetcht 1,mem_led_num_gpio
+ 	call gpio_config_output
+	fetcht 1,mem_led_scl_gpio
+ 	call gpio_config_output
+	rtn
+
+kb_process_kb_report:
+	set1 mark_ext_patch,mark
+	bpatch patch36_7,mem_patch36
+	ifetch 1,contr
+	copy pdata,rega
+	fetcht 1,mem_led_num_gpio
+	isolate1 KB_NUM_LOCK_SELECTED,rega
+	call gpio_out_flag
+	fetcht 1,mem_led_cap_gpio
+	isolate1 KB_CAPS_LOCK_SELECTED,rega
+	call gpio_out_flag
+	fetcht 1,mem_led_scl_gpio
+	isolate1 KB_SCROLL_LOCK_SELECTED ,rega
+	call gpio_out_flag
+	jam 1,mem_kb_rcv_led_data
+	rtn
+
+
+kb_send_process:
+//	call kb_wakeup_check
+	call kb_kscan_check_if_empty
+	nrtn user
+	nrtn user2
+//	call app_lpm_wake_auto_lock
+	fetch 1,mem_pincode_state
+	beq pincode_state_wait_pincode,kb_pincode
+	fetch 1,mem_hid_interrupt_state
+	rtnne 0x3f
+
+	arg 10,rega
+	call hid_malloc_tx_buff
+	fetch 2,mem_hid_int_remote_cid
+	istore 2,contw
+	setarg 0x01a1
+	istore 2,contw
+	fetch 8,mem_kb_state
+	istore 8,contw
+	rtn
+	
+kb_pincode:
+	fetcht 1,mem_pin_length
+	setarg mem_pin
+	iadd temp,contw
+	fetch 1,mem_kb_report_data
+	branch kb_pincode_rtn,blank
+	beq KB_KCODE_BKSP,kb_pincode_bksp
+	bne KB_KCODE_ENTER,kb_pincode_data
+	storet 1,mem_pin_length
+	branch app_bt_set_pincode
+	
+kb_pincode_rtn:
+	storet 1,mem_pin_length
+	rtn
+kb_pincode_bksp:
+	fetch 1,mem_pin_length
+	rtn blank
+	increase -1,pdata
+	store 1,mem_pin_length
+	arg mem_pin,contw
+	iadd contw,contw
+	setarg 0
+	istore 1,contw
+	enable user2
+	branch kb_send_pin
+kb_pincode_data:
+	sub pdata,KB_KCODE_1_M1,null
+	rtn positive
+	arg 0x30,temp
+	sub pdata,KB_KCODE_0,null
+	nrtn positive
+	branch kb_pincode_0,zero
+	arg KB_KCODE_1_M1,temp
+	isub temp,temp
+	or_into 0x30,temp
+kb_pincode_0:
+	istoret 1,contw
+	fetch 1,mem_pin_length
+	increase 1,pdata
+	store 1,mem_pin_length
+	disable user2
+	branch kb_send_pin
+
+kb_send_pin:
+	fetch 2,mem_hid_int_remote_cid
+	rtn blank
+	arg 3,rega
+	call hid_malloc_tx_buff
+	fetch 2,mem_hid_int_remote_cid
+	istore 2,contw
+	setarg 0xffa1
+	istore 2,contw
+	setarg 0
+	setflag user2,0,pdata
+	istore 1,contw
+	rtn
+
+
+	
+kb_kscan_check_if_empty:
+	disable user
+	disable user2
+	hfetch 1,core_kscn_kstat
+	rtnbit1 KB_KSCAN_STAT_EMPTY
+
+kb_kscan_check_ghost:
+	hfetch 1,core_kscn_event_num
+	bbit1 KB_KSCAN_KEY_EVENT_STAT,kb_kscan_process_event
+	hfetch 1,core_kscn_kstat
+	bbit0 KB_KSCAN_STAT_GHOST,kb_kscan_process_event
+	hfetch 1,core_kscn_event
+	branch kb_kscan_check_if_empty
+		
+kb_kscan_process_event:
+	enable user
+	enable user2
+	hfetch 1,core_kscn_event_num
+	isolate0 kb_KSCAN_KEY_EVENT_STAT,pdata
+	hfetch 1,core_kscn_event
+	arg mem_kb_map,contr
+	iadd contr,contr
+	ifetch 1,contr
+	bbit1 7,kb_kscan_read_statekey
+	nbranch kb_kscan_release_a_key_data,true	
+	disable user2
+	iforce temp
+	fetch 1,mem_kb_keys
+	sub pdata,4,null
+	nrtn positive
+	copy pdata,rega
+	arg 3,loopcnt
+	arg mem_kb_report_data,contr
+kb_kscan_check_report_data:
+	ifetch 1,contr
+	isub temp,null
+	branch kb_kscan_check_if_empty,zero
+	loop kb_kscan_check_report_data
+kb_kscan_store_a_key_data:
+	copy rega,pdata
+	arg mem_kb_report_data,contw
+	iadd contw,contw
+	istoret 1,contw
+	increase 1,pdata
+	store 1,mem_kb_keys
+ 	hfetch 1,core_kscn_event_num
+	rshift3 pdata,pdata
+	nbranch kb_kscan_check_nextevent, blank
+	branch kb_kscan_prepare_send
+
+kb_kscan_check_nextevent:
+	increase -1,pdata
+	branch kb_kscan_prepare_send,zero
+	hfetch 1,core_kscn_event_num
+	and_into 0x01,pdata
+	beq KB_KSCAN_KEY_PRESS,kb_kscan_check_if_empty                 // key pressed
+	beq KB_KSCAN_KEY_RELEASE,kb_kscan_prepare_send              // key release
+	rtn
+kb_kscan_prepare_send:	
+	enable user2
+	rtn
+	
+kb_kscan_release_a_key_data:
+	and pdata,0xff,temp
+	fetch 1,mem_kb_keys
+	rtn blank
+	iforce loopcnt
+	arg mem_kb_report_data,contr
+kb_kscan_find_same_key_data:
+	ifetch 1,contr
+	isub temp,null
+	branch kb_kscan_release_foundkey,zero
+	loop kb_kscan_find_same_key_data
+	rtn
+kb_kscan_release_foundkey:
+	add contr,-1,contw
+	call memcpy
+	fetch 1,mem_kb_keys
+	increase -1,pdata
+	store 1,mem_kb_keys
+	hfetch 1,core_kscn_event_num
+	rshift3 pdata,pdata
+	nbranch kb_kscan_check_nextevent2, blank
+	rtn
+
+kb_kscan_check_nextevent2:
+ 	hfetch 1,core_kscn_event_num
+	and_into 0x01,pdata
+	beq KB_KSCAN_KEY_PRESS,kb_kscan_prepare_send
+	beq KB_KSCAN_KEY_RELEASE,kb_kscan_check_if_empty
+	rtn
+	
+kb_kscan_read_statekey:
+	and pdata,7,queue
+	fetch 1,mem_kb_state
+	qsetflag true,pdata
+	store 1,mem_kb_state
+	rtn
+
+kb_clear_keys:
+	setarg 0
+	store 8,mem_kb_state
+	store 1,mem_kb_keys
+	rtn
+	
+kb_clean_kscan_fifo:
+	hfetch 1,core_kscn_event_num
+	hfetch 1,core_kscn_event
+	hfetch 1,core_kscn_kstat
+	bbit0 KB_KSCAN_STAT_EMPTY,kb_clean_kscan_fifo
+	setarg 0xff
+	enable user
+	rtn
+	
+le_keyboard:
+	fetcht 2,mem_le_notify_handle
+	call le_att_check_notification_enable
+	rtnbit0 0
+	fetch 1,mem_le_switch_send_data
+	rtnbit0 0
+	call le_xtype_fifo_is_full
+	nrtn blank
+	call kb_kscan_check_if_empty
+	nrtn user
+	nrtn user2
+le_slave_keyboard_send_data:
+	call app_lpm_wake_auto_lock
+	jam 2,mem_lpm_mult
+	fetcht 2,mem_le_notify_handle
+	call le_att_get_handle_ptr
+	add contr,1,contw
+	fetch 8,mem_kb_state
+	istore 8,contw
+	jam ATTOP_HANDLE_VALUE_NOTIFICATION,mem_fifo_temp
+	call le_xtype_fifo_in
+	fetch 1,mem_le_op
+	bbit1 op_disconn,loop
+	rtn
+le_keyboard_process_bb_event:
+	copy regc,pdata
+	beq BT_EVT_BUTTON_LONG_PRESSED,le_keyboard_bb_event_discovery_btn
+	//beq BT_EVT_100MS_TIMER,le_keyboard_bb_event_hud_ms
+	beq BT_EVT_LE_CONNECTED,le_kb_connected
+	beq BT_EVT_LE_WRITE_REQUEST,le_kb_bb_event_write_request
+	beq BT_EVT_LE_ENC_INFO,le_kb_bb_event_enc_info
+	beq BT_EVT_REMOTE_UNSNIFF,app_start_auto_sniff
+	rtn
+le_kb_bb_event_enc_info:
+le_kb_bb_event_write_request:
+	call app_lpm_mult_enable
+	branch app_ble_start_write
+le_kb_connected:
+	call kb_clean_kscan_fifo
+	branch kb_clear_keys
+
+le_keyboard_bb_event_discovery_btn:
+	call le_clean_att_list_handle_enable
+	call app_ble_disconnect
+	call app_ble_start_adv
+	branch app_led_start_blink
+
+le_keyboard_bb_event_hud_ms:
+	fetch 1,mem_le_led_on_time
+	rtn blank
+	increase -1,pdata
+	store 1,mem_le_led_on_time
+	nrtn blank
+	fetch 1,mem_le_adv_type
+	rtn blank
+	branch app_led_off
+
+
+kb_process_idle:
+	branch kb_pairing_button_check
+
+
+kb_wakeup_check:	
+	hfetch 3,core_gpio_in
+	copy pdata,regb
+	hfetch 1,core_gpio_in+3
+	and_into 0x0f,pdata
+	lshift16 pdata,pdata
+	lshift8 pdata,pdata
+	ior regb,pdata
+	fetcht 4,mem_kb_fast_wake_last
+	isub temp,pdata
+	rtn blank
+	arg 0xbb,regb
+ 	branch app_lpm_wake_auto_lock
+
+
+kb_pairing_button_check:
+	fetch 1,mem_scan_mode// rtn when scan_mode =03 
+	nrtn blank
+	fetch 1,mem_app_handshake_flag//rtn when handshake success 
+	nrtn blank
+	fetch 1,mem_ui_button_timer// rtn when timer >3s
+	rtn blank
+	fetch 1,mem_ui_button_last_state//rtn when pairing button press
+	nrtn blank
+	branch app_enter_hibernate
+	
+kb_process_bb_event:
+	copy regc,pdata
+	beq BT_EVT_HID_CONNECTED,kb_hid_connected
+	beq BT_EVT_PINCODE_REQ,kb_process_pincode
+	beq BT_EVT_HID_CONNECTED,kb_bt_hid_handshake
+	beq BT_EVT_BUTTON_LONG_PRESSED,kb_bb_event_discovery_btn
+	beq BT_EVT_REMOTE_UNSNIFF,app_start_auto_sniff
+	beq BT_EVT_BB_CONNECTED,kb_stop_discovery
+	beq BT_EVT_BB_DISCONNECTED,kb_bb_disconnected
+//	beq BT_EVT_100MS_TIMER,kb_bb_event_100ms
+	beq BT_EVT_RECONN_FAILED,kb_bb_event_reconn_failed
+	beq BT_EVT_RECONN_PAGE_TIMEOUT,kb_bb_event_reconn_failed
+	and pdata,0x0f,temp
+	and_into BT_EVT_TIMER_MASK,pdata
+	beq BT_EVT_TIMER_INIT,kb_bb_event_timer
+	rtn
+
+kb_bb_event_timer:
+	set1 mark_ext_patch,mark
+	bpatch patch37_0,mem_patch37
+	storet 1,mem_app_evt_timer_count
+kb_bb_event_100ms_loop:
+	fetch 1,mem_app_evt_timer_count
+	rtn blank
+	increase -1,pdata
+	store 1,mem_app_evt_timer_count
+//	call app_lpm_wake_auto_lock_timer
+	call kb_check_hid_handshake_timer	
+	branch kb_bb_event_100ms_loop
+
+kb_bb_event_reconn_failed:
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BTN_DOWN,kb_start_discovery
+	branch app_bb_hibernate
+
+
+kb_bb_disconnected:
+	set1 mark_ext_patch,mark
+	bpatch patch37_1,mem_patch37
+	call kb_bb_discon_clear_stack
+	fetch APP_DISC_RSN_SIZE,mem_app_disconn_reason
+//	bbit1 APP_DISC_BLE,mouse4_0_event_bb_disconn
+	bbit1 APP_DISC_BY_BUTTON,app_disconn_reason_clear
+	bbit1 APP_DISC_AFTER_PAIRING,kb_event_light_state_pairing
+	bbit1 APP_DISC_AFTER_RECONN,kb_event_light_state_reconn
+	branch kb_start_discovery
+kb_bb_discon_clear_stack:
+	jam 0,mem_link_key_exists
+	jam 0,mem_ltk_exists
+	rtn
+
+kb_event_light_state_pairing:
+	bbit1 APP_DISC_AFTER_HANDSHAKE,app_bb_hibernate
+	bbit1 APP_DISC_AFTER_SNIFF,app_bb_hibernate
+	branch kb_start_discovery
+kb_event_light_state_reconn:
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BTN_DOWN,kb_start_discovery
+	branch app_bb_hibernate
+
+
+	
+kb_check_hid_handshake_timer:
+	fetch 1,mem_hid_handshake_timer_count
+	rtn blank
+	increase -1,pdata
+	store 1,mem_hid_handshake_timer_count
+	nrtn blank
+	branch kb_bt_hid_handshake
+
+
+kb_bb_event_discovery_btn:
+	call kb_3_0_bb_event_discovery_btn
+	branch kb_start_discovery
+
+kb_3_0_bb_event_discovery_btn:
+	set1 mark_ext_patch,mark
+	bpatch patch37_2,mem_patch37
+	fetch 2,mem_ui_state_map
+	isolate1 UI_STATE_BT_RECONNECT,pdata
+	call app_bt_reconnect_cancel,true
+	fetch 2,mem_discovery_timeout
+	store 2,mem_discovery_timeout_timer_count	
+	fetch APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	set1 APP_DISC_BY_BUTTON,pdata
+	store APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BT_CONNECTED,app_bt_disconnect
+	rtn
+
+	
+kb_stop_discovery:
+	call app_bt_stop_discovery
+	branch app_led_stop_blink
+
+kb_start_discovery:
+	call app_bt_start_discovery
+	branch app_led_start_blink
+	
+kb_discovery_timeout_sleep:	
+	branch app_enter_hibernate
+	
+kb_process_pincode:
+	jam 0,mem_pin_length
+	rtn
+
+
+kb_before_hibernate:
+
+kb_process_lpm_before:
+	hjam 0x00,core_gpio_key0
+	hjam 0x00,core_gpio_key1
+	hfetch 1,core_gpio_key2
+	and_into 0xf0,pdata
+	hstore 1,core_gpio_key2
+	setarg 0x00
+	store 4,mem_gpio_wakeup_high
+	setarg 0xff
+	fetcht 1,mem_ui_button_gpio
+	copy temp,queue
+	qset1 pdata
+	store 4,mem_gpio_wakeup_low
+	rtn
+
+kb_hid_connected:
+ 	setarg HID_HANDSHAKE_TIMEOUT
+	store 1,mem_hid_handshake_timer_count
+	call kb_clean_kscan_fifo
+	//fetch 1,core_kscn_ksctrl
+	//set1 5,pdata
+	//store 1,core_kscn_ksctrl
+	branch kb_clear_keys
+kb_bt_hid_handshake:
+	set1 mark_ext_patch,mark
+	bpatch patch37_3,mem_patch37
+	jam APP_HANDSHAKE_DONE,mem_app_handshake_flag
+	call app_lpm_mult_enable
+	call app_bt_store_reconn_info
+//	jam BT_KB_MODE_STATE,mem_mouse_mode_state
+	setarg 0
+	store 2,mem_discovery_timeout_timer_count
+	store 1,mem_hid_handshake_timer_count
+	branch app_bt_enter_sniff
+
+
+	
+/************************************/
+/*initialize L2CAP related variables*/
+/************************************/
+l2cap_init:
+	branch l2cap_init_wake,wake
+l2cap_init_work:
+	setarg mem_l2cap_xmem_end
+	arg mem_l2cap_xmem_start,contw
+	isub contw,loopcnt
+	call clear_mem
+l2cap_init_wake:	
+	set1 mark_ext_patch,mark
+	bpatch patch22_6,mem_patch22
+	setarg mem_sdp_mem_end
+	arg mem_sdp_mem_start,contw
+	isub contw,loopcnt
+	call clear_mem
+	setarg mem_l2cap_mem_end
+	arg mem_l2cap_mem_start,contw
+	isub contw,loopcnt
+	call clear_mem
+	branch l2cap_lpm_load_txbuf
+	
+process_rx_l2cap_pkt:
+	set1 mark_ext_patch,mark
+	bpatch patch22_7,mem_patch22
+	copy contr,temp
+	//call l2cap_malloc_is_fifo_full
+	//nrtn blank
+	copy temp,contr
+	ifetch 2,contr
+	store 2,mem_l2cap_rx_pkt_length
+	ifetch 2,contr
+	store 2,mem_l2cap_rx_cid
+	deposit contr
+	store 2,mem_l2cap_payload_ptr
+	fetch 1,memui_reconnect_mode
+	beq NO_RECONNECTION,l2cap_rx_multiplexing
+	branch ml2cap_rx_multiplexing
+
+l2cap_rx_multiplexing:
+	set1 mark_ext_patch,mark
+	bpatch patch23_0,mem_patch23
+	fetch 2, mem_l2cap_rx_pkt_length
+	branch l2cap_rx_reset_state,blank
+	fetch 1,mem_l2cap_rx_cid
+	beq L2CAP_signal_channel,l2cap_call_proc_signal
+l2cap_rx_multiplexing0:
+	beq L2CAP_SDP_channel,l2cap_call_proc_sdp
+	beq L2CAP_RFCOMM_channel,l2cap_call_proc_rfcomm
+	beq L2CAP_HID_Control_channel,l2cap_call_proc_hid
+	beq L2CAP_HID_Interrupt_channel,l2cap_call_proc_hid
+	branch l2cap_rx_reset_state
+
+l2cap_call_proc_signal:
+	call l2cap_malloc_is_fifo_full
+	nrtn blank
+	jam 0,mem_l2cap_pending_item
+l2cap_call_proc_signal0:
+	call l2cap_malloc_signal_channel
+	call l2cap_process_signal_pkt
+	fetcht 2,mem_l2cap_signal_tx_length
+	branch l2cap_call_proc_no_reply,blank
+	call l2cap_get_signal_tx_buff
+	fetch 2,mem_l2cap_signal_tx_length
+	istore 2,contw
+	force L2CAP_signal_channel,pdata
+	istore 2,contw
+	branch l2cap_rx_reset_state
+	
+l2cap_call_proc_sigal_pending:
+	fetch 1,mem_device_option
+	rtneq dvc_op_hci
+	fetch 1,mem_l2cap_pending_item
+	rtn blank
+	copy pdata,rega
+	fetch 4,mem_l2cap_sdpres_delay_time
+	arg 0x100,temp
+	iadd temp,temp
+	copy clkn_bt,pdata
+	isub temp,null
+	nrtn positive
+	jam 0,mem_l2cap_pending_item
+	copy rega,pdata
+	beq L2CAP_SDP_channel,l2cap_sdp_conn_succ
+	branch assert
+l2cap_sdp_conn_succ:
+	call l2cap_malloc_signal_channel
+	call restore_l2cap_req_param
+	call l2cap_get_signal_tx_payload
+	call save_cont_pointers
+	call send_connection_sdp_res
+	call l2cap_get_signal_tx_buff
+	//fetch 2,mem_l2cap_signal_tx_length
+	setarg 0x000c
+	istore 2,contw
+	force L2CAP_signal_channel,pdata
+	istore 2,contw
+	branch l2cap_rx_reset_state
+	
+l2cap_call_proc_sdp:
+	call l2cap_malloc_is_fifo_empty
+	nrtn blank// not process this packet until fifo empty
+	call l2cap_malloc_sdp_channel
+	call sdp_process
+	call l2cap_get_sdp_tx_buff
+	fetch 2,mem_sdp_tx_pkt_length
+	branch l2cap_call_proc_no_reply,blank
+	istore 2,contw
+	fetch 2,mem_sdp_remote_cid
+	istore 2,contw
+	branch l2cap_rx_reset_state
+
+l2cap_call_proc_hid:
+	call hid_rx_process
+	branch l2cap_rx_reset_state
+
+l2cap_call_proc_rfcomm:
+	set1 mark_ext_patch,mark
+	bpatch patch23_1,mem_patch23
+	jam RFCOMM_MALLOC_SUCCEED,mem_rfcomm_malloc_fail_flag
+	call rfcomm_rx_process
+	fetch 1,mem_rfcomm_malloc_fail_flag
+	rtneq RFCOMM_MALLOC_FAIL
+	branch l2cap_rx_reset_state
+l2cap_call_proc_no_reply:
+	call l2cap_malloc_discard
+	//fall through
+l2cap_rx_reset_state:
+	setarg 0
+	store 2,mem_l2cap_rx_pkt_length
+	store 2,mem_l2cap_rx_cid
+	jam L2CAP_RX_DONE,mem_l2cap_rx_done
+	rtn
+/* To process one L2CAP signalling pkt consisting of 1 or more signalling commands.	*/
+l2cap_process_signal_pkt:
+	set1 mark_ext_patch,mark
+	bpatch patch23_2,mem_patch23
+	call l2cap_get_signal_tx_payload
+	force 0,regb
+	fetch 2,mem_l2cap_rx_pkt_length
+	copy pdata,regc
+	fetch 2,mem_l2cap_payload_ptr
+	iforce contr
+l2cap_process_signal_pkt_loop:
+	call l2cap_process_one_signal
+	deposit regc
+	increase -4,regc
+	increase -4,pdata
+	nbranch l2cap_process_signal_pkt_loop,blank
+	copy regb,pdata
+	store 2,mem_l2cap_signal_tx_length
+	rtn
+
+l2cap_process_one_signal:
+	set1 mark_ext_patch,mark
+	bpatch patch23_3,mem_patch23
+	ifetch 1,contr
+	beq signal_cmd_reject,l2cap_proc_signal_cmd_reject
+	beq signal_connect_req,l2cap_proc_signal_connect_req
+	beq signal_connect_rsp,l2cap_proc_signal_connect_rsp
+	beq signal_config_req,l2cap_proc_signal_config_req
+	beq signal_config_rsp,l2cap_proc_signal_config_rsp
+	beq signal_disconnect_req,l2cap_proc_signal_disconnect_req
+	beq signal_disconnect_rsp,l2cap_proc_signal_disconnect_rsp
+	beq signal_echo_req,l2cap_proc_signal_echo_req
+	beq signal_echo_rsp,l2cap_proc_signal_echo_rsp
+	beq signal_info_req,l2cap_proc_signal_info_req
+	beq signal_info_rsp,l2cap_proc_signal_info_rsp
+	call l2cap_reject_command
+l2cap_process_one_signal_rtn:
+	rtn
+
+l2cap_proc_signal_info_req:
+	ifetch 1,contr //IDs
+	copy pdata,queue
+	ifetch 2,contr //length
+	copy pdata,rega
+	copy regc,pdata
+	isub rega,regc
+	copy rega,pdata
+	iadd contr,contr
+	setarg 0x0b
+	istore 1,contw
+	copy queue,pdata
+	istore 1, contw
+	force 0x0008, pdata
+	istore 2, contw
+	force 0x0002, pdata
+	istore 2, contw
+	force 0x0000, pdata
+	istore 2, contw
+	force 0x0400,pdata
+	istore 2,contw
+	force 0x0000,pdata
+	istore 2,contw
+	force 12,pdata
+	iadd regb,regb
+	branch l2cap_process_one_signal_rtn
+
+ml2cap_proc_signal_info_req:
+	ifetch 1,contr //IDs
+	copy pdata,queue
+	ifetch 2,contr //length
+	copy pdata,rega
+	copy regc,pdata
+	isub rega,regc
+	copy rega,pdata
+	iadd contr,contr
+	call l2cap_get_signal_tx_payload
+	setarg 0x0b
+	istore 1,contw
+	copy queue,pdata
+	istore 1, contw
+	force 0x0008, pdata
+	istore 2, contw
+	force 0x0002, pdata
+	istore 2, contw
+	force 0x0000, pdata
+	istore 2, contw
+	force 0x0400,pdata
+	istore 2,contw
+	force 0x0000,pdata
+	istore 2,contw
+	force 12,pdata
+	iadd regb,regb
+	//call scheduler_start_upper_sm
+	branch l2cap_process_one_signal_rtn
+
+
+/*  Respond to the command reject signal sent from the remote BD.   */
+l2cap_proc_signal_cmd_reject:
+	ifetch 1,contr
+	copy pdata,queue
+	ifetch 2,contr
+	copy pdata,rega
+	iadd contr,contr
+	copy regc,pdata
+	isub rega,regc
+l2cap_proc_signal_cmd_reject_rtn:
+	branch l2cap_process_one_signal_rtn
+/* Respond to an L2CAP connection request from remote BD. (generate a connection_rsp)	*/
+l2cap_proc_signal_connect_req:
+	call save_cont_pointers
+	//fetch 6,mem_inquiry_bd_addr
+  	//store 6,mem_master_paged_bd_addr
+  	call load_cont_pointers
+	arg 0,debug
+	ifetch 1,contr
+	copy pdata,queue
+	ifetch 2,contr
+	copy pdata,rega
+	ifetch 2,contr
+	copy pdata,temp //PSM
+	ifetch 2,contr
+	copy pdata,timeup
+	copy temp,pdata
+	beq PSM_SDP,l2cap_proc_signal_connect_req_sdp
+	beq PSM_RFCOMM,l2cap_proc_signal_connect_req_rfcomm
+	beq PSM_HID_control,l2cap_proc_signal_connect_req_hid_ctrl
+	beq PSM_HID_interrupt,l2cap_proc_signal_connect_req_hid_int
+	call l2cap_reject_command
+	branch l2cap_proc_signal_connect_req_rtn
+
+l2cap_proc_signal_connect_req_sdp:
+	call save_cont_pointers
+	arg L2CAP_SDP_channel,temp
+	fetch 2,mem_sdp_remote_cid
+	nbranch already_connected,blank
+	copy timeup,pdata
+	store 2,mem_sdp_remote_cid
+	copy clkn_bt,pdata
+	store 4,mem_l2cap_sdpres_delay_time
+	call store_l2cap_req_param
+	branch  send_connection_pending
+
+store_l2cap_req_param:
+	storet 2,mem_psm
+	deposit timeup
+	store 2,mem_scid
+	deposit rega
+	store 2,mem_cmd_length
+	deposit regb
+	store 2,mem_tt2
+	deposit regc
+	store 2,mem_tt3
+	deposit queue
+	store 2,mem_id
+	rtn
+
+restore_l2cap_req_param:
+	fetcht 2,mem_psm
+	fetch 2,mem_scid
+	copy pdata,timeup
+	fetch 2,mem_cmd_length
+	copy pdata,rega
+	fetch 2,mem_tt2
+	copy pdata,regb
+	fetch 2,mem_tt3
+	copy pdata,regc
+	fetch 2,mem_id
+	copy pdata,queue
+	rtn
+
+l2cap_proc_signal_connect_req_rfcomm:
+	call save_cont_pointers
+	setarg L2CAP_RFCOMM_channel
+	arg L2CAP_RFCOMM_channel,temp
+	fetch 2,mem_RFCOMM_remote_CID
+	nbranch already_connected,blank
+	copy timeup,pdata
+	store 2,mem_RFCOMM_remote_CID
+	fetch 1,mem_rfcomm_state
+	set1 L2CAP_CHANNEL_STATE_CONN_REQ,pdata
+	set1 L2CAP_CHANNEL_STATE_CONN_RES,pdata
+	store 1,mem_rfcomm_state
+	branch send_connection_res
+l2cap_proc_signal_connect_req_hid_ctrl:
+	call save_cont_pointers
+	arg L2CAP_HID_Control_channel,temp
+	fetch 2,mem_hid_ctrl_remote_cid
+	nbranch already_connected,blank
+	copy timeup,pdata
+	store 2,mem_hid_ctrl_remote_cid
+	fetch 1,mem_hid_control_state
+	set1 L2CAP_CHANNEL_STATE_CONN_REQ,pdata
+	set1 L2CAP_CHANNEL_STATE_CONN_RES,pdata
+	store 1,mem_hid_control_state
+	branch send_connection_res
+l2cap_proc_signal_connect_req_hid_int:
+	call save_cont_pointers
+	deposit clke
+	arg L2CAP_HID_Interrupt_channel,temp
+	fetch 2,mem_hid_int_remote_cid
+	nbranch already_connected,blank
+	copy timeup,pdata
+	store 2,mem_hid_int_remote_cid
+	fetch 1,mem_hid_interrupt_state
+	set1 L2CAP_CHANNEL_STATE_CONN_REQ,pdata
+	set1 L2CAP_CHANNEL_STATE_CONN_RES,pdata
+	store 1,mem_hid_interrupt_state
+	branch send_connection_res
+
+send_connection_pending:
+	setarg L2CAP_connect_pending
+	store 2,memL2CAP_T1
+	jam L2CAP_SDP_channel,mem_l2cap_pending_item
+	branch send_connection_res0
+send_connection_sdp_res:
+	fetch 1,mem_sdp_state
+	set1 L2CAP_CHANNEL_STATE_CONN_REQ,pdata
+	set1 L2CAP_CHANNEL_STATE_CONN_RES,pdata
+	store 1,mem_sdp_state
+send_connection_res:
+	setarg L2CAP_connect_successful
+	store 2,memL2CAP_T1
+send_connection_res0:
+	set1 mark_ext_patch,mark
+	bpatch patch23_4,mem_patch23
+	call load_cont_pointers
+	setarg signal_connect_rsp
+	istore 1,contw
+	copy queue,pdata
+	istore 1,contw
+	setarg 0x0008
+	istore 2,contw
+	copy temp,pdata
+	istore 2,contw
+	copy timeup,pdata
+	istore 2,contw
+	fetch 2,memL2CAP_T1
+	beq L2CAP_connect_pending,connect_pending
+	isolate0 0,debug
+	branch connect_suc,true
+	setarg L2CAP_connect_refused_no_resources
+connect_suc:
+	istore 2,contw
+	force 0x0000,pdata
+	istore 2,contw
+	setarg 12
+	branch connect_req_update_byte_counts
+connect_pending:
+	istore 2,contw
+	force 0x0002,pdata
+	istore 2,contw
+	setarg 12
+	branch connect_req_update_byte_counts
+	
+already_connected:
+	set1 0,debug
+	branch send_connection_res
+connect_req_update_byte_counts:
+	iadd regb,regb
+	copy regc,pdata
+	isub rega,regc
+	branch l2cap_proc_signal_connect_req_rtn
+l2cap_proc_signal_connect_req_rtn:
+	branch l2cap_process_one_signal_rtn
+
+l2cap_proc_signal_connect_rsp:
+	ifetch 1,contr //identifier
+	copy pdata,queue
+	ifetch 2,contr //length
+	copy pdata,rega
+	copy regc,pdata
+	isub rega,regc
+	ifetch 2,contr //remote cid
+	copy pdata,timeup
+	ifetch 2,contr //local cid
+	copy pdata,temp
+	setarg L2CAP_SDP_channel
+	isub temp,null
+	branch l2cap_proc_signal_connect_rsp_sdp,zero
+	setarg L2CAP_RFCOMM_channel
+	isub temp,null
+	branch l2cap_proc_signal_connect_rsp_rfcomm,zero
+	setarg L2CAP_HID_Control_channel
+	isub temp,null
+	branch l2cap_proc_signal_connect_rsp_hid_ctrl,zero
+	setarg L2CAP_HID_Interrupt_channel
+	isub temp,null
+	branch l2cap_proc_signal_connect_rsp_hid_int,zero
+	rtn
+
+l2cap_proc_signal_connect_rsp_sdp:
+	copy timeup,pdata
+	store 2,mem_sdp_remote_cid
+	fetch 1,mem_sdp_state
+	set1 L2CAP_CHANNEL_STATE_CONN_RES,pdata
+	store 1,mem_sdp_state
+	branch l2cap_process_one_signal_rtn
+l2cap_proc_signal_connect_rsp_rfcomm:
+	copy timeup,pdata
+	store 2,mem_rfcomm_remote_CID
+	fetch 1,mem_rfcomm_state
+	set1 L2CAP_CHANNEL_STATE_CONN_RES,pdata
+	store 1,mem_rfcomm_state
+	rtn
+l2cap_proc_signal_connect_rsp_hid_int:
+	copy timeup,pdata
+	store 2,mem_hid_ctrl_remote_cid
+	fetch 1,mem_hid_interrupt_state
+	set1 L2CAP_CHANNEL_STATE_CONN_RES,pdata
+	store 1,mem_hid_interrupt_state
+	rtn
+l2cap_proc_signal_connect_rsp_hid_ctrl:
+	copy timeup,pdata
+	store 2,mem_hid_int_remote_cid
+	fetch 1,mem_hid_control_state
+	set1 L2CAP_CHANNEL_STATE_CONN_RES,pdata
+	store 1,mem_hid_control_state
+	rtn
+
+l2cap_proc_signal_config_req:
+	ifetch 1,contr//identifier
+	copy pdata,queue
+	ifetch 2,contr//length
+	copy pdata,rega
+	copy regc,pdata
+	isub rega,regc
+	ifetch 2,contr//dest cid
+	copy pdata,temp
+	copy temp,rega
+	setarg L2CAP_SDP_channel
+	isub temp,null
+	branch l2cap_proc_signal_config_req_sdp,zero
+	setarg L2CAP_RFCOMM_channel
+	isub temp,null
+	branch l2cap_proc_signal_config_req_rfcomm,zero
+	setarg L2CAP_HID_Control_channel
+	isub temp,null
+	branch l2cap_proc_signal_config_req_hid_ctrl,zero
+	setarg L2CAP_HID_Interrupt_channel
+	isub temp,null
+	branch l2cap_proc_signal_config_req_hid_int,zero
+	branch l2cap_reject_command
+	//branch L2CAP_proc_signal_config_req_rtn
+l2cap_proc_signal_config_req_sdp:
+	copy contw, timeup
+	fetch 1,mem_sdp_state
+	set1 L2CAP_CHANNEL_STATE_RCV_CFG_REQ,pdata
+	set1 L2CAP_CHANNEL_STATE_SND_CFG_RES,pdata
+	//set1 L2CAP_CHANNEL_STATE_SND_CFG_REQ,pdata
+	store 1,mem_sdp_state
+	copy timeup,contw
+	arg L2CAP_SDP_channel,timeup
+	fetch 2,mem_sdp_remote_cid
+	copy pdata,temp
+	branch l2cap_send_config_rsp
+l2cap_proc_signal_config_req_hid_ctrl:
+	copy contw, timeup
+	fetch 1,mem_hid_control_state
+	set1 L2CAP_CHANNEL_STATE_RCV_CFG_REQ,pdata
+	set1 L2CAP_CHANNEL_STATE_SND_CFG_RES,pdata
+	//set1 L2CAP_CHANNEL_STATE_SND_CFG_REQ,pdata
+	store 1,mem_hid_control_state
+	copy timeup,contw
+	arg L2CAP_HID_Control_channel,timeup
+	fetch 2,mem_hid_ctrl_remote_cid
+	copy pdata,temp
+	branch l2cap_send_config_rsp
+l2cap_proc_signal_config_req_hid_int:
+	copy contw, timeup
+	fetch 1,mem_hid_interrupt_state
+	set1 L2CAP_CHANNEL_STATE_RCV_CFG_REQ,pdata
+	set1 L2CAP_CHANNEL_STATE_SND_CFG_RES,pdata
+	//set1 L2CAP_CHANNEL_STATE_SND_CFG_REQ,pdata
+	store 1,mem_hid_interrupt_state
+	copy timeup,contw
+	arg L2CAP_HID_Interrupt_channel,timeup
+	fetch 2,mem_hid_int_remote_cid
+	copy pdata,temp
+	branch l2cap_send_config_rsp
+l2cap_proc_signal_config_req_rfcomm:
+	copy contw, timeup
+	fetch 1,mem_rfcomm_state
+	set1 L2CAP_CHANNEL_STATE_RCV_CFG_REQ,pdata
+	set1 L2CAP_CHANNEL_STATE_SND_CFG_RES,pdata
+	//set1 L2CAP_CHANNEL_STATE_SND_CFG_REQ,pdata
+	store 1,mem_rfcomm_state
+//	jam UPPERSM_RP_SDP_CONN,mem_upper_sm_remote_page
+	copy timeup,contw
+	arg L2CAP_RFCOMM_channel,timeup
+	fetch 2,mem_RFCOMM_remote_CID
+	copy pdata,temp
+l2cap_send_config_rsp:
+	set1 mark_ext_patch,mark
+	bpatch patch23_5,mem_patch23
+	setarg  signal_config_rsp
+	istore 1,contw
+	copy queue,pdata
+	istore 1,contw
+	setarg 0x0006
+	istore 2,contw
+	copy temp,pdata
+	istore 2,contw
+	force 0x00,pdata
+	istore 2,contw
+	force L2CAP_config_success,pdata
+	istore 2,contw
+	force 10,pdata
+	iadd regb,regb
+	//copy temp,pdata
+	storet 2,mem_config_req_dest_CID
+	copy queue,pdata
+	store 1,mem_config_identifier
+	force L2CAP_SDP_channel,pdata
+	icompare 0xff,timeup
+	branch l2cap_send_config_rsp_is_sdp,true
+	increase 1,pdata
+l2cap_send_config_rsp_is_sdp:
+	//store 1,mem_send_config_req
+	rtn
+l2cap_check_channel_state:
+	disable user
+	rtnbit1 L2CAP_CHANNEL_STATE_SND_CFG_REQ,pdata
+	rtnbit0 L2CAP_CHANNEL_STATE_CONN_REQ,pdata
+	rtnbit0 L2CAP_CHANNEL_STATE_CONN_RES,pdata
+	set1 L2CAP_CHANNEL_STATE_SND_CFG_REQ,pdata
+	copy contr,contw
+	increase -1,contw
+	istore 1,contw
+	enable user
+	rtn
+l2cap_send_config_req:
+l2cap_send_config_req_sdp:
+	fetch 1,mem_sdp_state
+	call l2cap_check_channel_state
+	nbranch l2cap_send_config_req_rfcomm,user
+	jam L2CAP_SDP_channel,mem_send_config_req
+	fetch 2,mem_sdp_remote_cid
+	store 2,mem_config_req_dest_CID
+	branch l2cap_generate_config_req
+l2cap_send_config_req_rfcomm:
+	fetch 1,mem_rfcomm_state
+	call l2cap_check_channel_state
+	nbranch l2cap_send_config_req_hid_ctrl,user
+	jam L2CAP_RFCOMM_channel,mem_send_config_req
+	fetch 2,mem_RFCOMM_remote_CID
+	store 2,mem_config_req_dest_CID
+	branch l2cap_generate_config_req
+l2cap_send_config_req_hid_ctrl:
+	fetch 1,mem_hid_control_state
+	call l2cap_check_channel_state
+	nbranch l2cap_send_config_req_hid_int,user
+	jam L2CAP_HID_Control_channel,mem_send_config_req
+	fetch 2,mem_hid_ctrl_remote_cid
+	store 2,mem_config_req_dest_CID
+	branch l2cap_generate_config_req
+l2cap_send_config_req_hid_int:
+	fetch 1,mem_hid_interrupt_state
+	call l2cap_check_channel_state
+	nrtn user//End of sending config req
+	jam L2CAP_HID_Interrupt_channel,mem_send_config_req
+	fetch 2,mem_hid_int_remote_cid
+	store 2,mem_config_req_dest_CID
+	//branch L2CAP_generate_config_req
+
+l2cap_generate_config_req:
+	set1 mark_ext_patch,mark
+	bpatch patch23_6,mem_patch23
+	call l2cap_get_req_id
+	call l2cap_malloc_signal_channel
+	force 0,regb
+	call l2cap_get_signal_tx_payload
+	force signal_config_req,pdata
+	istore 1,contw
+	fetch 1,mem_ML2CAP_comm_id
+	istore 1,contw
+	setarg 0x0008
+	istore 2,contw
+	fetch 2,mem_config_req_dest_CID
+	istore 2,contw
+	setarg 0x0000
+	istore 2,contw
+	force 1,pdata
+	istore 1,contw
+	force 2,pdata
+	istore 1,contw
+	fetch 1,mem_send_config_req
+	beq L2CAP_RFCOMM_channel,l2cap_generate_config_req_rfcomm
+	setarg L2CAP_config_MTU_SDP
+	istore 2,contw
+	branch l2cap_generate_config_req_done
+l2cap_generate_config_req_rfcomm:
+	setarg L2CAP_config_MTU_RFCOMM
+	istore 2,contw
+l2cap_generate_config_req_done:
+	arg 0x0c,temp
+	storet 2,mem_l2cap_signal_tx_length
+	call l2cap_get_signal_tx_buff
+	fetch 2,mem_l2cap_signal_tx_length
+	istore 2,contw
+	force L2CAP_signal_channel,pdata
+	istore 2,contw
+	jam 0,mem_send_config_req
+l2cap_proc_signal_config_req_rtn:
+	branch l2cap_process_one_signal_rtn
+
+l2cap_proc_signal_config_rsp:
+	increase 1,contr
+	ifetch 2,contr
+	copy pdata,rega
+	copy regc,pdata
+	isub rega,regc
+	ifetch 2,contr //source cid
+	copy pdata,rega
+	setarg L2CAP_SDP_channel
+	isub rega,null
+	branch l2cap_proc_signal_config_rsp_sdp,zero
+	setarg L2CAP_RFCOMM_channel
+	isub rega,null
+	branch l2cap_proc_signal_config_rsp_rfcomm,zero
+	setarg L2CAP_HID_Control_channel
+	isub rega,null
+	branch l2cap_proc_signal_config_rsp_hid_ctrl,zero
+	setarg L2CAP_HID_Interrupt_channel
+	isub rega,null
+	branch l2cap_proc_signal_config_rsp_hid_int,zero
+	increase 2,contr
+	ifetch 2,contr
+	iforce null
+	branch l2cap_process_one_signal_rtn
+l2cap_proc_signal_config_rsp_sdp:
+	fetch 1,mem_sdp_state
+	set1 L2CAP_CHANNEL_STATE_RCV_CFG_RES,pdata
+	store 1,mem_sdp_state
+	branch l2cap_process_one_signal_rtn
+l2cap_proc_signal_config_rsp_rfcomm:
+	fetch 1,mem_rfcomm_state
+	set1 L2CAP_CHANNEL_STATE_RCV_CFG_RES,pdata
+	store 1,mem_rfcomm_state
+	branch l2cap_process_one_signal_rtn
+l2cap_proc_signal_config_rsp_hid_ctrl:
+	fetch 1,mem_hid_control_state
+	set1 L2CAP_CHANNEL_STATE_RCV_CFG_RES,pdata
+	store 1,mem_hid_control_state
+	branch l2cap_process_one_signal_rtn
+l2cap_proc_signal_config_rsp_hid_int:
+	fetch 1,mem_hid_interrupt_state
+	set1 L2CAP_CHANNEL_STATE_RCV_CFG_RES,pdata
+	store 1,mem_hid_interrupt_state
+	jam BT_EVT_HID_CONNECTED,mem_fifo_temp
+	branch ui_ipc_send_event
+	
+
+
+l2cap_proc_signal_disconnect_req:
+	ifetch 1,contr
+	copy pdata,queue
+	ifetch 2,contr
+	copy pdata,rega
+	copy regc,pdata
+	isub rega,regc
+	ifetch 2,contr
+	copy pdata,rega
+	ifetch 2,contr
+	copy pdata,timeup
+	copy rega,temp
+	call save_cont_pointers
+	setarg L2CAP_SDP_channel
+	isub temp,null
+	branch l2cap_proc_signal_disconnect_req_sdp,zero
+	setarg L2CAP_RFCOMM_channel
+	isub temp,null
+	branch l2cap_proc_signal_disconnect_req_rfcomm,zero
+	setarg L2CAP_HID_Control_channel
+	isub temp,null
+	branch l2cap_proc_signal_disconnect_req_hid_ctrl,zero
+	setarg L2CAP_HID_Interrupt_channel
+	isub temp,null
+	branch l2cap_proc_signal_disconnect_req_hid_int,zero
+	call l2cap_reject_command
+	branch l2cap_proc_signal_disconnect_req_err_rtn
+l2cap_proc_signal_disconnect_req_hid_ctrl:
+	copy timeup,temp
+	fetch 2,mem_hid_ctrl_remote_cid
+	isub temp,null
+	branch l2cap_disconnect_hid_control_now,zero
+	call l2cap_reject_command
+	branch l2cap_proc_signal_disconnect_req_err_rtn
+l2cap_proc_signal_disconnect_req_hid_int:
+	copy timeup,temp
+	fetch 2,mem_hid_int_remote_cid
+	isub temp,null
+	branch l2cap_disconnect_hid_interrupt_now,zero
+	call l2cap_reject_command
+	branch l2cap_proc_signal_disconnect_req_err_rtn
+
+l2cap_proc_signal_disconnect_req_sdp:
+	copy timeup,temp
+	fetch 2,mem_sdp_remote_cid
+	isub temp,null
+	branch l2cap_disconnect_sdp_now,zero
+	call l2cap_reject_command
+	branch l2cap_proc_signal_disconnect_req_err_rtn
+l2cap_disconnect_hid_control_now:
+	call l2cap_reset_hid_ctrl_state
+	branch l2cap_send_disconnect_rsp_pkt
+l2cap_disconnect_hid_interrupt_now:
+	call l2cap_reset_hid_int_state
+	fetch 2, mem_hid_ctrl_remote_cid
+	branch l2cap_send_disconnect_rsp_pkt, blank
+	//set the flag,hid channel close
+	//should we set here?
+	//call HID_mem_lock
+	//fetch 1, mem_hid_cb1
+	//set1 HID_CB_APP_HID_DISCONNECTED,pdata
+	//store 1, mem_hid_cb1
+	//call HID_mem_unlock
+	branch l2cap_send_disconnect_rsp_pkt
+
+l2cap_disconnect_sdp_now:
+	call l2cap_reset_sdp_channel_state
+	fetch 1,mem_upper_sm_ss
+	nbranch l2cap_send_disconnect_rsp_pkt,blank
+	//jam LMP_ENCRYPTION_MODE_REQ,mem_lmo_opcode2
+	//jam UPPERSM_RP_SDP_CONN,mem_upper_sm_remote_page
+	branch l2cap_send_disconnect_rsp_pkt
+l2cap_proc_signal_disconnect_req_rfcomm:
+	copy timeup,temp
+	fetch 2, mem_RFCOMM_remote_CID
+	isub temp,null
+	branch l2cap_disconnect_rfcomm_now,zero
+	call l2cap_reject_command
+	branch l2cap_proc_signal_disconnect_req_err_rtn
+l2cap_disconnect_rfcomm_now:
+	call l2cap_reset_rfcomm_channel_state
+	branch l2cap_send_disconnect_rsp_pkt
+l2cap_send_disconnect_rsp_pkt:
+	call load_cont_pointers
+	setarg signal_disconnect_rsp
+	istore 1,contw
+	copy queue,pdata
+	istore 1,contw
+	setarg 0x0004
+	istore 2,contw
+	copy rega,pdata
+	istore 2,contw
+	copy timeup,pdata
+	istore 2,contw
+	force 8,pdata
+	branch l2cap_proc_signal_disconnect_req_rtn
+l2cap_proc_signal_disconnect_req_err_rtn:
+	call load_cont_pointers
+	branch l2cap_proc_signal_disconnect_req_rtn
+l2cap_proc_signal_disconnect_req_rtn:
+	iadd regb,regb
+	branch l2cap_process_one_signal_rtn
+l2cap_proc_signal_disconnect_rsp:
+	ifetch 1,contr
+	copy pdata,queue
+	ifetch 2,contr
+	copy pdata,rega
+	copy regc,pdata
+	isub rega,regc
+	ifetch 2,contr
+	copy pdata,timeup
+	ifetch 2,contr
+	copy pdata,temp
+	call save_cont_pointers
+	setarg L2CAP_SDP_channel
+	isub temp,null
+	branch l2cap_proc_signal_disconnect_rsp_sdp,zero
+	setarg L2CAP_RFCOMM_channel
+	isub temp,null
+	branch l2cap_proc_signal_disconnect_rsp_rfcomm,zero
+	setarg L2CAP_HID_Control_channel
+	isub temp,null
+	branch l2cap_proc_signal_disconnect_rsp_hid_ctrl,zero
+	setarg L2CAP_HID_Interrupt_channel
+	isub temp,null
+	branch l2cap_proc_signal_disconnect_rsp_hid_int,zero
+	call l2cap_reject_command
+	branch l2cap_proc_signal_disconnect_rsp_err_rtn
+l2cap_proc_signal_disconnect_rsp_sdp:
+	copy temp,rega
+	copy timeup,temp
+	fetch 2,mem_sdp_remote_cid
+	isub temp,null
+	call l2cap_reset_sdp_channel_state,zero
+	branch l2cap_proc_signal_disconnect_rsp_rtn
+l2cap_proc_signal_disconnect_rsp_rfcomm:
+	copy temp,rega
+	copy timeup,temp
+	fetch 2,mem_rfcomm_remote_CID
+	isub temp,null
+	call l2cap_reset_rfcomm_channel_state,zero
+	branch l2cap_proc_signal_disconnect_rsp_rtn
+l2cap_proc_signal_disconnect_rsp_hid_ctrl:
+	copy temp,rega
+	copy timeup,temp
+	fetch 2,mem_hid_ctrl_remote_cid
+	isub temp,null
+	call  l2cap_reset_hid_ctrl_state,zero
+	branch l2cap_proc_signal_disconnect_rsp_rtn
+l2cap_proc_signal_disconnect_rsp_hid_int:
+	copy temp,rega
+	copy timeup,temp
+	fetch 2,mem_hid_int_remote_cid
+	isub temp,null
+	call l2cap_reset_hid_int_state,zero
+	branch l2cap_proc_signal_disconnect_rsp_rtn
+l2cap_proc_signal_disconnect_rsp_rtn:
+	call load_cont_pointers
+	branch l2cap_process_one_signal_rtn
+l2cap_proc_signal_disconnect_rsp_err_rtn:
+	branch l2cap_process_one_signal_rtn
+
+/* received an echo request from remote BD.  Will echo the 1st 1 byte back,		*/
+l2cap_proc_signal_echo_req:
+	ifetch 1,contr
+	copy pdata,queue
+	ifetch 2,contr
+	copy pdata,rega
+	iadd contr,contr
+	setarg 9
+	istore 1,contw
+	copy queue,pdata
+	istore 1,contw
+	force 0x0000,pdata
+	istore 2,contw
+	force 4,pdata
+	iadd regb,regb
+	copy regc,pdata
+	isub rega,regc
+	branch l2cap_process_one_signal_rtn
+l2cap_proc_signal_echo_rsp:
+	branch l2cap_process_one_signal_rtn
+
+l2cap_proc_signal_info_rsp:
+	branch l2cap_process_one_signal_rtn
+l2cap_reject_command:
+	force 0,regb
+	call l2cap_get_signal_tx_payload
+	setarg signal_cmd_reject
+	istore 1,contw
+	copy queue,pdata
+	istore 1,contw
+	setarg 2
+	istore 2,contw
+	setarg cmd_not_understood
+	istore 2,contw
+	increase 6,regb
+	arg 4,regc
+	branch l2cap_process_one_signal_rtn
+
+
+
+l2cap_reset_rfcomm_channel_state:
+	setarg 0
+	store 2,mem_RFCOMM_Tx_pkt_length
+	store 2,mem_RFCOMM_remote_CID
+	jam 0,mem_rfcomm_state
+	rtn
+l2cap_reset_sdp_channel_state:
+	setarg 0
+	store 2,mem_sdp_tx_pkt_length
+	store 2,mem_sdp_remote_cid
+	jam 0,mem_sdp_state
+	rtn
+l2cap_reset_hid_ctrl_state:
+	setarg 0
+	store 2,mem_hid_ctrl_remote_cid
+	jam 0,mem_hid_control_state
+	fetch 1,mem_hid_interrupt_state
+	beq 0,l2cap_reset_hid_disconnected
+	rtn
+
+l2cap_reset_hid_int_state:
+	setarg 0
+	store 2,mem_hid_int_remote_cid
+	jam 0,mem_hid_interrupt_state
+	fetch 1,mem_hid_control_state
+	beq 0,l2cap_reset_hid_disconnected
+	rtn
+	
+l2cap_reset_hid_disconnected:
+	jam BT_EVT_HID_DISCONNECTED,mem_fifo_temp
+	branch ui_ipc_send_event	
+
+l2cap_disconnect_interrupt_req:
+	fetch 1,mem_CONTROL_tasks
+	set0  L2CAP_DISCONNECT_INTERRUPT, pdata
+	store 1,mem_CONTROL_tasks
+	fetch 2, mem_hid_int_remote_cid
+	rtn blank
+	call l2cap_malloc_signal_channel
+	fetch 2, mem_hid_int_remote_cid
+	copy pdata,rega
+	force L2CAP_HID_Interrupt_channel,regb
+	branch l2cap_generate_disconnect_req
+l2cap_disconnect_control_req:
+	fetch 1,mem_CONTROL_tasks
+	set0  L2CAP_DISCONNECT_CONTROL, pdata
+	store 1,mem_CONTROL_tasks
+	fetch 2, mem_hid_ctrl_remote_cid
+	rtn blank
+	call l2cap_malloc_signal_channel
+	fetch 2, mem_hid_ctrl_remote_cid
+	copy pdata,rega
+	force L2CAP_HID_Control_channel,regb
+l2cap_generate_disconnect_req:
+	call l2cap_get_req_id
+	call l2cap_get_signal_tx_payload
+	force signal_disconnect_req,pdata
+	istore 1,contw
+	fetch  1,mem_ML2CAP_comm_id
+	istore 1,contw
+	setarg 0x0004
+	istore 2,contw
+	copy rega,pdata
+	istore 2,contw
+	copy regb,pdata
+	istore 2,contw
+	force 0x08,temp //signal tx length in temp
+	branch ml2cap_send_signal
+
+ml2cap_send_signal_connect_req:
+	set1 mark_ext_patch,mark
+	bpatch patch23_7,mem_patch23
+	call l2cap_get_req_id
+	call l2cap_get_signal_tx_payload
+	setarg signal_connect_req
+	istore 1,contw
+	fetch 1,mem_ML2CAP_comm_id
+	istore 1,contw
+	setarg 0x0004
+	istore 2,contw
+	copy temp,pdata	 //PSM
+	istore 2,contw
+	copy timeup,pdata
+	istore 2,contw
+	arg 8,temp
+	branch ml2cap_send_signal
+ml2cap_send_signal_config_req:
+	set1 mark_ext_patch,mark
+	bpatch patch24_0,mem_patch24
+	call l2cap_get_req_id
+	call l2cap_get_signal_tx_payload
+	setarg signal_config_req
+	istore 1,contw
+	fetch 1,mem_ML2CAP_comm_id
+	istore 1,contw
+	setarg 0x0008
+	istore 2,contw
+	/****modigy for nokia*****/
+	copy temp,pdata
+	/*setarg 0x0040*/
+	istore 2,contw
+	setarg 0x0000
+	istore 2,contw
+	setarg 0x01
+	istore 1,contw
+	setarg 0x02
+	istore 1,contw
+	setarg L2CAP_config_MTU_RFCOMM
+	istore 2,contw
+	arg 0xc,temp
+	branch ml2cap_send_signal
+ml2cap_send_signal_disconn_req:
+	set1 mark_ext_patch,mark
+	bpatch patch24_1,mem_patch24
+	call l2cap_get_req_id
+	call l2cap_get_signal_tx_payload
+	setarg signal_disconnect_req
+	istore 1,contw
+	fetch 1,mem_ML2CAP_comm_id
+	increase 1,pdata
+	copy contw,rega
+	store 1,mem_ML2CAP_comm_id
+	copy rega,contw
+	istore 1,contw
+	setarg 0x0004
+	istore 2,contw
+	copy temp,pdata
+	istore 2,contw
+	copy timeup,pdata
+	istore 2,contw
+	arg 0x8,temp
+	//branch ml2cap_send_signal
+	//Fall through
+ml2cap_send_signal:
+	storet 2,mem_l2cap_signal_tx_length
+	copy temp,pdata
+	branch l2cap_malloc_discard,blank
+	call l2cap_get_signal_tx_buff
+	fetch 2,mem_l2cap_signal_tx_length
+	istore 2,contw //make sure that length is still in temp!
+	force L2CAP_signal_channel,pdata
+	istore 2,contw
+	rtn
+
+msdp_send_req_done:
+	fetch 2,mem_sdp_tx_pkt_length
+	branch assert,blank
+	call l2cap_get_sdp_tx_buff
+	fetch 2,mem_sdp_tx_pkt_length
+	istore 2,contw
+	fetch 2,mem_sdp_remote_cid
+	istore 2,contw
+	rtn
+ml2cap_rx_multiplexing:
+	set1 mark_ext_patch,mark
+	bpatch patch24_2,mem_patch24
+	fetch 2, mem_l2cap_rx_pkt_length
+	branch l2cap_rx_reset_state,blank
+	fetch 1,mem_l2cap_rx_cid
+	beq L2CAP_signal_channel,ml2cap_call_proc_signal
+	beq L2CAP_SDP_channel,l2cap_call_proc_sdp
+	beq L2CAP_RFCOMM_channel,l2cap_call_proc_rfcomm
+	beq L2CAP_HID_Control_channel,l2cap_call_proc_hid
+	beq L2CAP_HID_Interrupt_channel,l2cap_call_proc_hid
+	branch l2cap_rx_reset_state
+
+ml2cap_call_proc_signal:
+	set1 mark_ext_patch,mark
+	bpatch patch24_3,mem_patch24
+	call l2cap_malloc_signal_channel
+	force 0,regb
+	call l2cap_get_signal_tx_payload
+	copy pdata,contw
+	fetch 2,mem_l2cap_rx_pkt_length
+	copy pdata,regc
+	fetch 2,mem_l2cap_payload_ptr
+	iforce contr
+ml2cap_proc_one_comm_loop:
+	call ml2cap_proc_one_comm
+	increase -4,regc
+	nbranch ml2cap_proc_one_comm_loop,zero
+	copy regb,temp
+	call ml2cap_send_signal
+	branch l2cap_rx_reset_state
+	
+ml2cap_proc_one_comm:
+	ifetch 1,contr
+	beq signal_connect_req,ml2cap_proc_signal_connect_req
+	beq signal_cmd_reject,ml2cap_proc_signal_cmd_reject
+	beq signal_connect_rsp,ml2cap_proc_signal_connect_rsp
+	beq signal_config_rsp,ml2cap_proc_signal_config_rsp
+	beq signal_config_req,ml2cap_proc_signal_config_req
+	beq signal_disconnect_rsp,ml2cap_proc_signal_disconn_rsp
+	beq signal_disconnect_req,ml2cap_proc_signal_disconn_req
+	beq signal_echo_req,l2cap_proc_signal_echo_req
+	beq signal_info_req,ml2cap_proc_signal_info_req
+	branch ml2cap_proc_send_reject
+
+ml2cap_proc_signal_connect_req:
+	call save_cont_pointers
+	//jam NO_RECONNECTION,memui_reconnect_mode
+	call load_cont_pointers
+	branch l2cap_proc_signal_connect_req
+ml2cap_proc_signal_cmd_reject:
+	ifetch 1,contr
+	copy pdata,queue
+	ifetch 2,contr
+	copy pdata,rega
+	copy regc,pdata
+	isub rega,regc
+mvptr:
+	ifetch 1,contr
+	increase -1,rega
+	nbranch mvptr,zero
+	rtn
+ml2cap_proc_signal_connect_rsp:
+	ifetch 1,contr //id
+	copy pdata,queue
+	ifetch 2,contr
+	copy pdata,rega	//length
+	ifetch 2,contr
+	copy pdata,timeup	//destination	cid
+	ifetch 2,contr
+	copy pdata,temp	//source	cid
+	ifetch 2,contr 		// result
+	sub pdata,0,null
+	branch ml2cap_proc_signal_connect_rsp_sucessful,zero
+	beq L2CAP_connect_refused_PSM_unsupported,ml2cap_proc_signal_connect_refused_result
+	beq L2CAP_connect_refused_no_resources,ml2cap_proc_signal_connect_refused_result
+	branch ml2cap_proc_signal_connect_rsp_mnosucc
+ml2cap_proc_signal_connect_refused_result:
+	jam BT_EVT_ML2CAP_CONN_REFUSED,mem_fifo_temp
+	call ui_ipc_send_event
+ml2cap_proc_signal_connect_rsp_mnosucc:
+	ifetch 2,contr //reason
+	branch mnosucc
+ml2cap_proc_signal_connect_rsp_sucessful:
+	call save_cont_pointers
+	//fetch 1,mem_ML2CAP_comm_id
+	//icompare 0xff,queue
+	//nbranch mnosucc1,true
+	setarg L2CAP_SDP_channel
+	isub temp,null
+	branch ml2cap_proc_signal_connect_rsp_sdp,zero
+	setarg L2CAP_RFCOMM_channel
+	isub temp,null
+	branch ml2cap_proc_signal_connect_rsp_rfcomm,zero
+	setarg L2CAP_HID_Interrupt_channel
+	isub temp,null
+	branch ml2cap_proc_signal_connect_rsp_hid_int,zero
+	setarg L2CAP_HID_Control_channel
+	isub temp,null
+	branch ml2cap_proc_signal_connect_rsp_hid_ctrl,zero
+	branch mnosucc
+ml2cap_proc_signal_connect_rsp_sdp:
+	copy timeup,pdata
+	store 2,mem_sdp_remote_cid
+	fetch 1,mem_sdp_state
+	set1 L2CAP_CHANNEL_STATE_CONN_RES
+	store 1,mem_sdp_state
+	branch mnosucc1
+ml2cap_proc_signal_connect_rsp_rfcomm:
+	copy timeup,pdata
+	store 2,mem_RFCOMM_remote_CID
+	fetch 1,mem_rfcomm_state
+	set1 L2CAP_CHANNEL_STATE_CONN_RES
+	store 1,mem_rfcomm_state
+	branch mnosucc1
+ml2cap_proc_signal_connect_rsp_hid_ctrl:
+	copy timeup,pdata
+	store 2,mem_hid_ctrl_remote_cid
+	fetch 1,mem_hid_control_state
+	set1 L2CAP_CHANNEL_STATE_CONN_RES
+	store 1,mem_hid_control_state
+	branch mnosucc1
+ml2cap_proc_signal_connect_rsp_hid_int:
+	copy timeup,pdata
+	store 2,mem_hid_int_remote_cid
+	fetch 1,mem_hid_interrupt_state
+	set1 L2CAP_CHANNEL_STATE_CONN_RES
+	store 1,mem_hid_interrupt_state
+	//branch mnosucc1
+
+mnosucc1:
+	call load_cont_pointers
+mnosucc:
+	copy regc,pdata
+	isub rega,regc
+	rtn
+
+ml2cap_proc_signal_config_rsp:
+	ifetch 1,contr		//	Ident
+	copy pdata,queue
+	ifetch 2,contr		//	SigLen
+	copy pdata,rega
+	copy regc,pdata
+	isub rega,regc
+	ifetch 2,contr		//	DestnCID
+	copy pdata,timeup
+	ifetch 2,contr
+	ifetch 2,contr		//	Get the result value, check success
+	nbranch mcrsdone1,blank
+	call save_cont_pointers
+	//fetch 1,mem_ML2CAP_comm_id
+	//icompare 0xff,queue
+	//nbranch mcfrsdone,true
+	copy timeup,temp
+	setarg L2CAP_SDP_channel
+	isub temp,null
+	branch ml2cap_proc_signal_config_rsp_sdp,zero
+	setarg L2CAP_RFCOMM_channel
+	isub temp,null
+	branch ml2cap_proc_signal_config_rsp_rfcomm,zero
+	setarg L2CAP_HID_Control_channel
+	isub temp,null
+	branch ml2cap_proc_signal_config_rsp_hid_ctrl,zero
+	setarg L2CAP_HID_Interrupt_channel
+	isub temp,null
+	branch ml2cap_proc_signal_config_rsp_hid_int,zero
+ml2cap_proc_signal_config_rsp_sdp:
+	fetch 1,mem_sdp_state
+	set1 L2CAP_CHANNEL_STATE_RCV_CFG_RES
+	store 1,mem_sdp_state
+	rtn
+ml2cap_proc_signal_config_rsp_rfcomm:
+	fetch 1,mem_rfcomm_state
+	set1 L2CAP_CHANNEL_STATE_RCV_CFG_RES
+	store 1,mem_rfcomm_state
+	rtn
+ml2cap_proc_signal_config_rsp_hid_ctrl:
+	fetch 1,mem_hid_control_state
+	set1 L2CAP_CHANNEL_STATE_RCV_CFG_RES
+	store 1,mem_hid_control_state
+	rtn
+ml2cap_proc_signal_config_rsp_hid_int:
+	fetch 1,mem_hid_interrupt_state
+	set1 L2CAP_CHANNEL_STATE_RCV_CFG_RES
+	store 1,mem_hid_interrupt_state
+	jam BT_EVT_HID_CONNECTED,mem_fifo_temp
+	branch ui_ipc_send_event
+
+
+mcfrsdone:
+	call load_cont_pointers
+mcrsdone1:
+	increase -6,rega
+mloop2:
+	branch mcrsdone,zero
+	increase 1,contr
+	increase -1,rega
+	branch mloop2
+mcrsdone:
+	rtn
+ml2cap_proc_signal_config_req:
+	ifetch 1,contr		//	Ident
+	copy pdata,queue
+	ifetch 2,contr		//	SigLen
+	copy pdata,rega
+	copy regc,pdata
+	isub rega,regc
+	ifetch 2,contr		//	DestnCID
+	increase 2,contr
+	copy pdata,temp
+	setarg  signal_config_rsp
+	istore 1,contw
+	copy queue,pdata
+	istore 1,contw
+	increase 2,rega
+	copy rega,pdata
+	istore 2,contw
+	call save_cont_pointers
+	setarg L2CAP_SDP_channel
+	isub temp,null
+	branch ml2cap_proc_signal_config_req_sdp,zero
+	setarg L2CAP_RFCOMM_channel
+	isub temp,null
+	branch ml2cap_proc_signal_config_req_rfcomm,zero
+	setarg L2CAP_HID_Control_channel
+	isub temp,null
+	branch ml2cap_proc_signal_config_req_hid_ctrl,zero
+	setarg L2CAP_HID_Interrupt_channel
+	isub temp,null
+	branch ml2cap_proc_signal_config_req_hid_int,zero
+	branch mcfgrq_done
+ml2cap_proc_signal_config_req_sdp:
+	fetch 1,mem_sdp_state
+	set1 L2CAP_CHANNEL_STATE_RCV_CFG_REQ,pdata
+	set1 L2CAP_CHANNEL_STATE_SND_CFG_RES,pdata
+	store 1,mem_sdp_state
+	bbit1 L2CAP_CHANNEL_STATE_SND_CFG_REQ,ml2cap_proc_signal_config_req_sdp_nsndreq
+	fetcht 1,mem_CONTROL_tasks
+	set1 L2CAP_init_Config_Req,temp
+	storet 1,mem_CONTROL_tasks
+	copy queue,pdata
+	increase 1,pdata
+	store 1,mem_config_identifier
+	fetch 1,mem_sdp_state
+	set1 L2CAP_CHANNEL_STATE_SND_CFG_REQ,pdata
+	store 1,mem_sdp_state
+ml2cap_proc_signal_config_req_sdp_nsndreq:
+	fetch 2,mem_sdp_remote_cid
+	store 2,mem_config_req_dest_CID
+	branch mcfgrq_done
+ml2cap_proc_signal_config_req_rfcomm:
+	fetch 1,mem_rfcomm_state
+	set1 L2CAP_CHANNEL_STATE_RCV_CFG_REQ,pdata
+	set1 L2CAP_CHANNEL_STATE_SND_CFG_RES,pdata
+	store 1,mem_rfcomm_state
+	fetch 2,mem_RFCOMM_remote_CID
+	branch mcfgrq_done
+ml2cap_proc_signal_config_req_hid_ctrl:
+	fetch 1,mem_hid_control_state
+	set1 L2CAP_CHANNEL_STATE_RCV_CFG_REQ,pdata
+	set1 L2CAP_CHANNEL_STATE_SND_CFG_RES,pdata
+	store 1,mem_hid_control_state
+	fetch 2,mem_hid_ctrl_remote_cid
+	branch mcfgrq_done
+ml2cap_proc_signal_config_req_hid_int:
+	fetch 1,mem_hid_interrupt_state
+	set1 L2CAP_CHANNEL_STATE_RCV_CFG_REQ,pdata
+	set1 L2CAP_CHANNEL_STATE_SND_CFG_RES,pdata
+	store 1,mem_hid_interrupt_state
+	fetch 2,mem_hid_int_remote_cid
+	//branch mcfgrq_done
+
+mcfgrq_done:
+	copy pdata,timeup
+	call load_cont_pointers
+/*******for Nokia**************/
+	copy timeup,pdata
+	/*setarg 0x0040*/
+	istore 2,contw
+	force 0x0000,pdata
+	istore 2,contw
+	force 0x0000,pdata
+	istore 2,contw
+	force 10,pdata
+	iadd regb,regb
+	increase -6,rega
+mloop1:
+	branch mcrqdone,zero
+	ifetch 1,contr
+	istore 1,contw
+	increase 1,regb
+	increase -1,rega
+	branch mloop1
+mcrqdone:
+	rtn
+ml2cap_proc_signal_disconn_req:
+	ifetch 1,contr
+	copy pdata,queue
+	ifetch 2,contr
+	copy pdata,rega
+	copy regc,pdata
+	isub rega,regc
+
+	ifetch 2,contr
+	copy pdata,rega
+	ifetch 2,contr
+	copy pdata,timeup
+	call save_cont_pointers
+	setarg L2CAP_SDP_channel
+	copy rega,temp
+	isub temp,null
+	branch ml2cap_proc_signal_disconn_sdp,zero
+	setarg L2CAP_HID_Control_channel
+	copy rega,temp
+	isub temp,null
+	branch ml2cap_proc_signal_disconn_hid_ctrl,zero
+	setarg L2CAP_HID_Interrupt_channel
+	copy rega,temp
+	isub temp,null
+	branch ml2cap_proc_signal_disconn_hid_int,zero
+	branch mclsrfc
+ml2cap_proc_signal_disconn_sdp:
+	setarg 0x0000
+	store 2,mem_sdp_tx_pkt_length
+	store 2,mem_sdp_remote_cid
+	store 1,mem_sdp_state
+	branch mclssdp
+ml2cap_proc_signal_disconn_hid_ctrl:
+	call l2cap_reset_hid_ctrl_state
+	branch mclssdp
+ml2cap_proc_signal_disconn_hid_int:
+	call l2cap_reset_hid_int_state
+	//call HID_mem_lock
+	//fetch 1, mem_hid_cb1
+	//set1 HID_CB_APP_HID_DISCONNECTED,pdata
+	//store 1, mem_hid_cb1
+	//call HID_mem_unlock
+	branch mclssdp
+mclsrfc:
+	setarg 0x0000
+	store 2,mem_RFCOMM_Tx_pkt_length
+mclssdp:
+	call load_cont_pointers
+	setarg signal_disconnect_rsp
+	istore 1,contw
+	copy queue,pdata
+	istore 1,contw
+	setarg 0x0004
+	istore 2,contw
+	copy rega,pdata
+	istore 2,contw
+	copy timeup,pdata
+	istore 2,contw
+	force 8,pdata
+	iadd regb,regb
+	rtn
+
+ml2cap_proc_signal_disconn_rsp:
+	ifetch 1,contr
+	copy pdata,queue
+	ifetch 2,contr
+	copy pdata,rega
+	ifetch 2,contr
+	copy pdata,timeup
+	ifetch 2,contr
+	copy pdata,temp
+	call save_cont_pointers
+	fetch 1,mem_ML2CAP_comm_id
+	icompare 0xff,queue
+	nbranch mdisdone,true
+	setarg L2CAP_SDP_channel
+	isub temp,null
+	branch ml2cap_proc_signal_disconn_rsp_sdp,zero
+	setarg L2CAP_RFCOMM_channel
+	isub temp,null
+	branch ml2cap_proc_signal_disconn_rsp_rfcomm,zero
+	branch mdisdone
+ml2cap_proc_signal_disconn_rsp_sdp:
+	jam 0,mem_sdp_remote_cid
+	jam 0,mem_sdp_state
+	branch mdisdone
+ml2cap_proc_signal_disconn_rsp_rfcomm:
+	//
+	//
+mdisdone:
+	call load_cont_pointers
+	copy regc,pdata
+	isub rega,regc
+	rtn
+
+ml2cap_proc_send_reject:
+	setarg signal_cmd_reject
+	istore 1,contw
+	ifetch 1,contr
+	istore 1,contw
+	setarg 0x0002
+	istore 2,contw
+	setarg 0x0000
+	istore 2,contw
+	setarg 0x0006
+	iadd regb,regb
+	force 4,regc
+	rtn
+	
+//l2cap command id, 0 is not allowed
+l2cap_get_req_id:
+	fetch 1,mem_ML2CAP_comm_id
+	increase 1,pdata
+	bne 0,l2cap_get_req_id_ok
+	increase 1,pdata
+l2cap_get_req_id_ok:
+	store 1,mem_ML2CAP_comm_id
+	rtn
+
+
+/*********************************************************/
+//char* malloc(short len)
+//input: rega -> len
+//rtn: regb -> pbuff;return from pdata
+//val: queue -> i
+//val: timeup -> buff_cnt
+/*********************************************************/
+l2cap_malloc:
+	set1 mark_ext_patch,mark
+	bpatch patch24_4,mem_patch24
+	arg 0,regb
+	call l2cap_malloc_is_fifo_full
+	nbranch assert,blank//assert when fifo full
+	call l2cap_malloc_get_full_map
+	arg mem_tx_buff0,regb//pbuff = buff0;
+	arg 0,queue // i = 0;
+l2cap_malloc_loop:
+	fetcht 1,mem_used_map
+	qisolate1 temp
+	branch l2cap_malloc_next,true//if(1 == (used_map & (1 << i)))goto next;
+	call l2cap_malloc_enough
+	sub timeup,0,null// (0 - timeup)
+	branch l2cap_malloc_next,positive//if(buff_cnt <= 0)goto next;
+	call l2cap_malloc_into_fifo
+	branch l2cap_malloc_rtn//return (pbuff);
+l2cap_malloc_next:
+	increase 128,regb//pbuff += BUFF_SIZE;//point to next buff
+	increase 1,queue
+	setarg 8//BUFF_MAX_COUNT
+	isub queue,null //BUFF_MAX_COUNT - i
+	branch l2cap_malloc_loop,positive//while(i < buff_max_count)
+	arg 0,regb//return NULL
+l2cap_malloc_rtn:
+	copy regb,pdata
+	branch assert,blank
+	rtn//return pointer via pdata
+	
+/*********************************************************/
+//void* l2cap_malloc_fifo_out(void)
+//output:len -> temp
+//output:ptr ->pdata
+//only get ptr,not free
+/*********************************************************/
+l2cap_malloc_fifo_out:
+	set1 mark_ext_patch,mark
+	bpatch patch24_5,mem_patch24
+	call l2cap_malloc_fifo_get_first_ptr
+	increase 1,contr
+	ifetch 2,contr //ptr ->pdata
+	rtn 
+
+/*********************************************************/
+//void free_first_buff_in_fifo(void)
+//only free the first one
+/*********************************************************/
+l2cap_malloc_free:
+	set1 mark_ext_patch,mark
+	bpatch patch24_6,mem_patch24
+	call l2cap_malloc_fifo_get_first_ptr
+	copy contr,contw
+	copy contr,temp
+	setarg 0
+	istore 3,contw
+	rtn
+/*********************************************************/
+//void l2cap_malloc_discard(void)
+//discard the latest malloc
+/*********************************************************/
+l2cap_malloc_discard:
+	set1 mark_ext_patch,mark
+	bpatch patch24_7,mem_patch24
+	call l2cap_malloc_is_fifo_empty
+	branch assert,blank
+	fetch 3,mem_tx_fifo2
+	store 3,mem_tx_fifo3
+	fetch 3,mem_tx_fifo1
+	store 3,mem_tx_fifo2
+	fetch 3,mem_tx_fifo0
+	store 3,mem_tx_fifo1
+	rtn
+/*********************************************************/
+//bool fifo_is_full(void)
+//blank == 1: not full
+//blank == 0: full
+/*********************************************************/
+l2cap_malloc_is_fifo_full:
+	fetch 3,mem_tx_fifo0
+	rtn
+/*********************************************************/
+//bool fifo_nearly_full(void)
+//blank == 1: nearly full
+//blank == 0: not nearly full
+/*********************************************************/
+l2cap_malloc_is_fifo_nearly_full:
+	fetch 3,mem_tx_fifo1
+	rtn
+/*********************************************************/
+//bool fifo_is_empty(void)
+//blank == 1: empty
+//blank == 0: not empty
+/*********************************************************/
+l2cap_malloc_is_fifo_empty:
+	fetch 3,mem_tx_fifo3
+	rtn
+/*********************************************************/
+//char* l2cap_malloc_fifo_get_first_ptr(void)
+//output:contr  -->ptr
+/*********************************************************/	
+l2cap_malloc_fifo_get_first_ptr:
+	call l2cap_malloc_is_fifo_empty
+	branch assert,blank // fifo is empty
+	arg mem_tx_fifo0,contr
+l2cap_malloc_free_loop:
+	ifetch 3,contr
+	branch l2cap_malloc_free_loop,blank
+	increase -3,contr
+	rtn
+
+/*********************************************************/
+//char* l2cap_malloc_get_full_map(void)
+//output:mem_used_map  -->full_map
+//add all maps into one
+/*********************************************************/	
+l2cap_malloc_get_full_map:
+	set1 mark_ext_patch,mark
+	bpatch patch25_0,mem_patch25
+	arg 4,loopcnt
+	arg mem_tx_fifo0_map,contr
+	arg 0,temp
+l2cap_malloc_get_full_map_loop:	
+	ifetch 3,contr
+	and pdata,0xff,pdata
+	ior temp,temp
+	loop l2cap_malloc_get_full_map_loop
+	storet 1,mem_used_map
+	rtn
+/*********************************************************/
+//void buff_into_fifo(char buff_index, char buff_cnt, short len)
+//input: rega -> len
+//input: regc -> buff_index
+//input: timeup -> buff_cnt
+//val:temp ->   (fifo->map)
+/*********************************************************/
+l2cap_malloc_into_fifo:
+	set1 mark_ext_patch,mark
+	bpatch patch25_1,mem_patch25
+	call l2cap_malloc_is_fifo_full
+	nbranch assert,blank //fifo full
+	call l2cap_malloc_is_fifo_empty
+	branch l2cap_malloc_into_fifo_no_push,blank//fifo empty, no need to push
+	fetch 3,mem_tx_fifo1
+	store 3,mem_tx_fifo0
+	ifetch 3,contr//mem_tx_fifo2
+	istore 3,contw//mem_tx_fifo1
+	ifetch 3,contr//mem_tx_fifo3
+	istore 3,contw//mem_tx_fifo2
+	setarg 0
+	istore 3,contw//mem_tx_fifo3
+l2cap_malloc_into_fifo_no_push:
+	arg 0,temp
+	copy timeup,pdata
+	iadd queue,pdata
+l2cap_malloc_into_fifo_loop:
+	qset1 temp//fifo->map |= 1 << i;
+	increase 1,queue
+	isub queue,null
+	nbranch l2cap_malloc_into_fifo_loop,zero
+	//map in temp
+	lshift8 regb,pdata
+	ior temp,pdata
+	store 3,mem_tx_fifo3
+	rtn
+
+/*********************************************************/
+//char is_size_enough(char buff_index, short len)
+//input: rega -> len
+//input: queue -> buff_index
+//rtn: timeup -> buff_cnt
+//val: max_size_fom_buff_index -> temp
+//val: i -> loopcnt
+/*********************************************************/
+l2cap_malloc_enough:
+	set1 mark_ext_patch,mark
+	bpatch patch25_2,mem_patch25
+	call l2cap_malloc_get_full_map
+	copy queue,regc//restore buff_index to regc
+	arg 0,temp
+	arg 0,timeup//default return val
+	//increase 1,queue
+l2cap_malloc_enough_loop:
+	copy queue,pdata
+	beq 8,l2cap_malloc_enough_end
+	fetch 1,mem_used_map
+	qisolate1 pdata
+	branch l2cap_malloc_enough_end,true
+	increase 128,temp
+	increase 1,queue
+	copy rega,pdata
+	isub temp,null
+	branch l2cap_malloc_enough_end,zero//(max_size_fom_buff_index ==  len)
+	branch l2cap_malloc_enough_loop,positive//(max_size_fom_buff_index <  len)
+l2cap_malloc_enough_end:
+	copy temp,pdata
+	isub rega,null
+	nbranch l2cap_malloc_enough_rtn,positive// max_size_fom_buff_index - len > 0
+	copy queue,pdata//i
+	copy regc,temp//buff_index
+	isub temp,timeup//return (i - buff_index)
+l2cap_malloc_enough_rtn:
+	copy regc,queue//restore buff_index to queue
+	rtn
+	
+
+l2cap_malloc_signal_channel:
+	set1 mark_ext_patch,mark
+	bpatch patch25_3,mem_patch25
+	arg L2CAP_SIGNAL_MALLOC_SIZE,rega
+	call l2cap_malloc
+	store 2,mem_l2cap_signal_tx_buff_ptr
+	increase 4,pdata
+	store 2,mem_l2cap_signal_tx_payload_ptr
+	setarg 0
+	store 2,mem_l2cap_signal_tx_length
+	rtn
+
+l2cap_get_signal_tx_buff:
+	fetch 2,mem_l2cap_signal_tx_buff_ptr
+	branch l2cap_util_pdata_to_contw
+
+l2cap_get_signal_tx_payload:
+	fetch 2,mem_l2cap_signal_tx_payload_ptr
+	branch l2cap_util_pdata_to_contw
+
+
+l2cap_malloc_sdp_channel:
+	set1 mark_ext_patch,mark
+	bpatch patch25_4,mem_patch25
+	arg SDP_MALLOC_SIZE,rega
+	call l2cap_malloc
+	store 2,mem_sdp_tx_buff_ptr
+	increase 4,pdata
+	store 2,mem_sdp_tx_payload_ptr
+	setarg 0
+	store 2,mem_sdp_tx_pkt_length
+	rtn
+
+l2cap_get_sdp_tx_buff:
+	fetch 2,mem_sdp_tx_buff_ptr
+	branch l2cap_util_pdata_to_contw
+
+l2cap_get_sdp_tx_payload:
+	fetch 2,mem_sdp_tx_payload_ptr
+	branch l2cap_util_pdata_to_contw
+
+
+l2cap_malloc_rfcomm_channel:
+	set1 mark_ext_patch,mark
+	bpatch patch25_5,mem_patch25
+	call push_stack
+	jam RFCOMM_MALLOC_FAIL,mem_rfcomm_malloc_fail_flag
+	call l2cap_malloc_is_fifo_full
+	nrtn blank
+	arg RFCOMM_MALLOC_SIZE,rega
+	call l2cap_malloc
+	store 2,mem_rfcomm_tx_buff_ptr
+	increase 4,pdata
+	store 2,mem_rfcomm_tx_payload_ptr
+	setarg 0
+	store 2,mem_rfcomm_tx_pkt_length
+	jam RFCOMM_MALLOC_SUCCEED,mem_rfcomm_malloc_fail_flag
+	branch pop_stack
+
+l2cap_get_rfcomm_tx_buff:
+	fetch 2,mem_rfcomm_tx_buff_ptr
+	branch l2cap_util_pdata_to_contw
+	
+l2cap_get_rfcomm_tx_payload:
+	fetch 2,mem_rfcomm_tx_payload_ptr
+	//fall through
+l2cap_util_pdata_to_contw:
+	branch assert,blank
+	copy pdata,contw
+	rtn
+	
+
+l2cap_lpm_save_calc_len:
+	set1 mark_ext_patch,mark
+	bpatch patch25_6,mem_patch25
+	arg 0,regb
+	arg mem_tx_fifo0_map,rega
+	increase -2,rega
+l2cap_lpm_save_calc_len_loop:
+	increase 2,rega
+	setarg mem_tx_fifo_end
+	isub rega,null
+	branch l2cap_lpm_save_calc_len_end,zero //end of 2lcap tx fifo
+	ifetch 1,rega
+	increase 1,rega
+	branch l2cap_lpm_save_calc_len_loop,blank
+	ifetcht 2,rega
+	ifetch 2,temp
+	iadd regb,regb
+	increase 4,regb //l2cap header len
+	branch l2cap_lpm_save_calc_len_loop
+l2cap_lpm_save_calc_len_end:
+	copy regb,pdata
+	rtn
+
+
+l2cap_lpm_get_wake_lock:
+	arg wake_lock_l2cap_tx,queue
+	branch lpm_get_wake_lock
+
+l2cap_lpm_put_wake_lock:
+	arg wake_lock_l2cap_tx,queue
+	branch lpm_put_wake_lock
+	
+l2cap_lpm_save_txbuf:
+	set1 mark_ext_patch,mark
+	bpatch patch25_7,mem_patch25
+	call l2cap_malloc_get_full_map
+	fetch 1,mem_used_map
+	rtn blank
+	call l2cap_lpm_save_calc_len
+	arg l2cap_lpm_txbuf_len,temp
+	isub temp,null
+	branch l2cap_lpm_get_wake_lock,positive //no enougth space to save l2cap tx data
+	call l2cap_lpm_put_wake_lock
+	arg mem_l2cap_lpm_txbuf,contw
+	arg mem_tx_fifo0,rega
+l2cap_lpm_save_txbuf_loop:
+	setarg mem_tx_fifo_end
+	isub rega,null
+	rtn zero //end of 2lcap tx fifo
+	ifetch 1,rega  //mem_tx_fifoX_map
+	increase 1,rega
+	nbranch l2cap_lpm_save_txbuf_nempty,blank
+	istore 2,contw // length = 0
+	increase 2,rega
+	branch l2cap_lpm_save_txbuf_loop
+l2cap_lpm_save_txbuf_nempty:
+	ifetch 2,rega //ptr
+	increase 2,rega
+	copy pdata,contr
+	ifetch 2,contr  //l2cap len
+	istore 2,contw
+	copy pdata,loopcnt
+	increase 2,loopcnt //add CID len
+	call memcpy
+	branch l2cap_lpm_save_txbuf_loop
+	
+l2cap_lpm_load_txbuf:
+	set1 mark_ext_patch,mark
+	bpatch patch26_0,mem_patch26
+	call l2cap_malloc_get_full_map
+	fetch 1,mem_used_map
+	rtn blank
+	arg mem_tx_fifo0_ptr,rega
+	increase -3,rega //mem_tx_fifo0_ptr -3
+	arg mem_l2cap_lpm_txbuf,contr
+l2cap_lpm_load_txbuf_loop:
+	increase 3,rega //mem_tx_fifoX_ptr
+	setarg mem_tx_fifo_end+1
+	isub rega,null
+	rtn zero //end of 2lcap tx fifo
+	ifetch 2,contr
+	branch l2cap_lpm_load_txbuf_loop,blank
+	increase 4,pdata //l2cap header len
+	copy pdata,loopcnt
+	copy contr,regb
+	ifetch 2,rega //ptr
+	copy pdata,contw
+	copy regb,contr
+	increase -2,contr
+	call memcpy
+	branch l2cap_lpm_load_txbuf_loop
+	
+
+
+	
+//******************************************//
+//*************LE INIT ****************//
+//******************************************//
+le_init_param:
+	rtn wake
+	setarg param_le_scan_interval
+	store 2,mem_le_scan_interval
+	setarg param_le_scan_window
+	store 2,mem_le_scan_window
+	rtn
+
+le_init_att:
+	arg notify_handle,temp
+	call le_att_get_handle_ptr
+	add contr,1,pdata
+	store 2,mem_le_notify_attr_start
+	rtn
+
+le_init_conn:
+	set1 mark_ext_patch,mark
+	bpatch patch26_2,mem_patch26
+	disable wake
+	jam 1,mem_app_state
+	jam 1,mem_le_conn_handle
+	jam 3,mem_le_state
+	jam 1,mem_le_arq
+	setarg -1
+	store 2,mem_le_event_count
+	force 0,pdata
+	store 1,mem_le_conn_sm
+	store 1,mem_le_ch
+	store 1,mem_le_op
+	store 3,mem_sniff_rcv
+	store 3,mem_sniff_lost
+	store 5,mem_le_pcnt_tx
+	set1 39,pdata
+	store 5,mem_le_pcnt_rx
+	branch le_supervision_flush
+
+le_init_master:
+	set1 mark_ext_patch,mark
+	bpatch patch26_3,mem_patch26
+	enable master
+	jam lemode_master,mem_le_mode
+	jam 1,mem_le_att_handle
+	jam 1,mem_le_search_handle_start
+	setarg 0xffff
+	store 2,mem_le_search_handle_end
+	force 0,pdata
+	store 5,mem_le_pcnt_rx
+	set1 39,pdata
+	store 5,mem_le_pcnt_tx	
+	branch le_init_conn
+
+
+le_init_slave:
+	set1 mark_ext_patch,mark
+	bpatch patch26_4,mem_patch26
+	disable master
+	jam lemode_slave,mem_le_mode
+	jam 0,mem_le_adv_enable
+	jam 0,mem_lpm_current_mult
+	branch le_init_conn
+	
+
+//******************************************//
+//*************LE main process*********//
+//******************************************//
+le_dispatch:
+	call le_enable
+	call le_scan
+	call le_adv
+	branch le_disable
+
+le_conn_dispatch:
+	set1 mark_ext_patch,mark
+	bpatch patch26_5,mem_patch26
+	call le_enable
+	call app_process_ble
+	fetch 1,mem_le_mode
+	beq lemode_master,le_master_dispatch
+	branch le_slave_dispatch
+	
+//******************************************//
+//***********LE master process*********//
+//******************************************//
+	
+le_master_dispatch:
+	set1 mark_ext_patch,mark
+	bpatch patch26_6,mem_patch26
+	enable master
+	call le_supervision_update
+	branch le_master_disconn,positive
+	call check_ble_disabled
+	call le_setup
+	call le_prepare_tx
+	disable match
+	call le_transmit_receive_sifs
+	nrtn match
+	set1 mark_ext_patch,mark
+	bpatch patch26_7,mem_patch26
+	fetch 1,mem_le_conn_rcv
+	increase 1,pdata
+	store 1,mem_le_conn_rcv
+	call le_acknowledge
+	call le_conn_sm_master
+	disable master
+	rtn
+	
+le_master_disconn:
+	call le_disconnect
+	disable master
+	rtn
+	
+//******************************************//
+//***********LE slave process***********//
+//******************************************//
+le_slave_dispatch:
+	set1 mark_ext_patch,mark
+	bpatch patch27_0,mem_patch27
+	disable attempt
+	call le_supervision_update
+	branch le_slave_disconn,positive
+	call check_ble_disabled
+	call le_setup
+	call le_receive_slave
+	nbranch le_slave_unsync,match
+le_slave_match:
+	set1 mark_ext_patch,mark
+	bpatch patch27_1,mem_patch27
+	call le_got_first_packet
+	call le_acknowledge
+	call le_prepare_tx
+	fetch 1,mem_le_rxbuf
+	bbit1 md,le_slave_more_data //more data to rx
+	call le_xtype_fifo_is_empty
+	nbranch le_slave_more_data,blank// more data to tx
+le_slave_transmit_last:
+	set1 mark_ext_patch,mark
+	bpatch patch27_2,mem_patch27
+	call le_transmit_norx
+le_slave_cont:
+	call check_51cmd
+	fetch 1,mem_le_op
+	bbit1 op_disconn,le_slave_disconn
+le_slave_unsync:
+	set1 mark_ext_patch,mark
+	bpatch patch27_3,mem_patch27
+	call le_savelist
+	call le_lpm_set_mult
+	call le_update_channel_map
+	call le_update_param
+	branch calc_clke_offset
+
+le_slave_more_data:
+	set1 mark_ext_patch,mark
+	bpatch patch27_4,mem_patch27
+	enable attempt
+	call le_transmit_receive_sifs
+	branch le_slave_match,match
+	branch le_slave_cont
+
+le_slave_disconn:
+
+	//fall through
+le_disconnect:
+	set1 mark_ext_patch,mark
+	bpatch patch27_5,mem_patch27
+	call le_clear_connection_info
+	call app_disconn_reason_collect_ble
+	jam BT_EVT_LE_DISCONNECTED,mem_fifo_temp
+	branch ui_ipc_send_event
+
+le_clear_connection_info:
+	fetcht 1,mem_le_conn_handle
+	jam HCI_ERROR_CONNECTION_TIMEOUT,mem_hci_disconn_reason
+	call hci_send_disconn_complete
+	jam 0,mem_le_conn_handle
+	jam lemode_idle,mem_le_mode
+	jam 0,mem_le_state
+	jam 0,mem_app_state
+	rtn
+	
+le_got_first_packet:
+	fetch 1,mem_le_conn_rcv
+	increase 1,pdata
+	store 1,mem_le_conn_rcv
+	fetch 1,mem_le_state
+	rtnbit1 lestate_got_first_packet
+	set1 lestate_got_first_packet
+	store 1,mem_le_state
+	setarg 0
+	store 4,mem_le_transmit_window
+	rtn
+
+
+
+
+le_enable:
+	set1 mark_ext_patch,mark
+	bpatch patch27_6,mem_patch27
+	enable le
+	hjam 7,rfen_ulp			/* enable ulp */
+	branch check_ble_disabled
+
+le_disable:
+	set1 mark_ext_patch,mark
+	bpatch patch27_7,mem_patch27
+	disable le
+	hjam 3,rfen_ulp
+	arg 0,stop_watch
+	rtn
+	
+le_prep:
+	disable enable_crc
+	disable enable_white
+	fetch 3,mem_le_crcinit
+	iforce crc24_init
+	fetch 1,mem_le_ch_mapped
+	reverse pdata,temp
+	set1 1,temp
+	rshift temp,white_init
+	rtn
+	
+
+lerx_setfreq:
+	call le_setfreq
+	call set_freq_rx
+	setarg param_pll_setup
+	call sleep
+	branch rf_rx_enable
+
+letx_setfreq:
+	branch txon,match
+	call le_setfreq
+	branch set_freq_tx
+le_setfreq:
+	set1 mark_ext_patch,mark
+	bpatch patch28_0,mem_patch28
+	call set_sync_on
+	fetch 1, mem_le_testtype
+	nbranch le_ctf_test,blank
+	fetch 1,mem_le_ch_mapped
+	sub pdata,36,null
+	branch le_ctf_normal,positive
+	force 0,temp
+	rtneq 37
+	force 24,temp
+	rtneq 38
+	force 78,temp
+	rtn
+	
+le_ctf_normal:
+	sub pdata,10,null
+	branch le_ctf_low,positive
+	increase 1,pdata
+	
+le_ctf_low:	
+	lshift pdata,pdata
+	add pdata,2,temp
+	rtn
+	
+le_ctf_test:
+	fetch 1,mem_le_ch_mapped
+	lshift pdata,temp
+	rtn
+
+le_sca_map:
+	arg 500,temp
+	rtn blank
+	arg 250,temp
+	rtneq 1
+	arg 150,temp
+	rtneq 2
+	arg 100,temp
+	rtneq 3
+	arg 75,temp
+	rtneq 4
+	arg 50,temp
+	rtneq 5
+	arg 40,temp
+	rtneq 6
+	arg 20,temp
+	rtn
+
+
+	
+le_adv_access:
+	setarg 0x8e89be
+	lshift8 pdata,pdata
+	or_into 0xd6,pdata
+	iforce access
+	setarg 0x555555
+	store 3,mem_le_crcinit
+	rtn
+
+le_setup:
+	set1 mark_ext_patch,mark
+	bpatch patch28_1,mem_patch28
+	enable swfine
+	fetch 4,mem_le_access
+	iforce access
+	call le_map_channel
+	setarg 0x200
+	branch le_setup_master,master
+	fetch 2,mem_le_receive_window
+	rshift pdata,pdata
+le_setup_master:
+	arg param_pll_setup,temp
+	iadd temp,pdata
+	call ahead_window
+	deposit clke
+	store 6,mem_le_rxon_ts
+	rtn
+
+le_next_adv_channel:
+	set1 mark_ext_patch,mark
+	bpatch patch28_2,mem_patch28
+	fetch 1,mem_le_ch_mapped
+	increase 1,pdata
+	store 1,mem_le_ch_mapped
+	rtnne 40
+	jam 37,mem_le_ch_mapped
+	rtn	
+
+le_context_nexthop:
+	set1 mark_ext_patch,mark
+	bpatch patch28_3,mem_patch28
+	add rega,coffset_mode,contr
+	ifetch 1,contr
+	rtnbit0 mode_le
+	add rega,coffset_le_event_cnt,contw
+	ifetch 2,contw
+	increase 1,pdata
+	istore 2,contw
+	add rega,coffset_le_hop,contr
+	ifetch 1,contr
+	add rega,coffset_le_ch,contw
+	ifetcht 1,contw
+	iadd temp,pdata
+	sub pdata,36,null
+	branch le_nexthop_nowrap,positive
+	increase -37,pdata
+le_nexthop_nowrap:
+	istore 1,contw
+	rtn
+
+
+le_calc_channel_map:
+	set1 mark_ext_patch,mark
+	bpatch patch28_4,mem_patch28
+	fetch 5,mem_le_channel_map
+	force 0,temp
+	force 37,loopcnt
+le_count_channels_loop:
+	bbit0 0,le_count_channels_notused
+	increase 1,temp
+le_count_channels_notused:
+	rshift pdata,pdata
+	loop le_count_channels_loop
+	add temp,-1,pdata
+	store 1,mem_le_channels
+	rtn
+
+le_map_channel:
+	set1 mark_ext_patch,mark
+	bpatch patch28_5,mem_patch28
+	fetch 1,mem_le_ch
+	iforce queue
+	fetcht 5,mem_le_channel_map
+	qisolate1 temp
+	branch le_map_channel_end,true
+le_map_channel_next:
+	set1 mark_ext_patch,mark
+	bpatch patch28_6,mem_patch28
+	fetch 1,mem_le_channels
+	isub queue,pdata
+	branch le_map_channel_cont,positive
+	sub pdata,-1,queue
+	branch le_map_channel_next
+le_map_channel_cont:
+	copy queue,loopcnt
+	force 0,queue
+le_map_channel_loop:
+	qisolate1 temp
+	branch le_map_channel_skip,true
+	increase 1,loopcnt
+le_map_channel_skip:
+	deposit loopcnt
+	branch le_map_channel_end,blank
+	increase 1,queue
+	increase -1,loopcnt
+	branch le_map_channel_loop
+le_map_channel_end:
+	deposit queue
+	store 1,mem_le_ch_mapped
+	rtn
+
+
+le_wait_tx:
+	branch le_wait_master,master
+	until null,timeout
+	rtn
+	
+le_wait_master:
+	arg 0xea0,timeup
+	until clkn_rt,meet
+	rtn
+
+le_receive_adv:
+	disable swfine
+	fetch 2,mem_le_scan_window
+	copy pdata,timeup
+	branch le_receive_packet
+
+
+le_receive_slave:
+	set1 mark_ext_patch,mark
+	bpatch patch28_7,mem_patch28
+	enable swfine
+	fetch 2,mem_le_receive_window
+	fetcht 4,mem_le_transmit_window
+	iadd temp,timeup
+le_receive_packet:
+	call lerx_setfreq
+le_receive_rxon:
+	set1 mark_ext_patch,mark
+	bpatch patch29_0,mem_patch29
+	call le_prep
+	disable match
+	enable decode_fec0
+	enable is_rx
+	disable is_tx
+	copy timeup,stop_watch
+	correlate null,timeout
+	branch le_receive_on_attempt,attempt
+	copy clke,temp
+	storet 6,mem_sync_clke
+le_receive_on_attempt:
+	nbranch end_of_packet,sync
+	branch le_receive_skip,attempt
+	arg param_clke_cal_le,clke_rt
+	copy bt_clk,clke_bt
+	fetch 1,mem_le_state
+	bbit0 lestate_got_first_packet,le_receive_skip
+	call lpm_adjust_clk,wake
+le_receive_skip:
+	set1 mark_ext_patch,mark
+	bpatch patch29_1,mem_patch29
+	call save_rssi
+	enable enable_white
+	enable enable_crc
+	parse demod,bucket,8
+	rshift3 pwindow,pdata
+	store 1,mem_le_rxbuf
+	parse demod,bucket,8
+	rshift3 pwindow,pdata
+	istore 1,contw
+	and pdata,0x3f,loopcnt
+	branch lerx_nopayload,zero
+	
+lerx_loop:
+	parse demod,bucket,8
+	rshift3 pwindow,pdata
+	istore 1,contw
+	loop lerx_loop
+	
+lerx_nopayload:
+	set1 mark_ext_patch,mark
+	bpatch patch29_2,mem_patch29
+	parse demod,bucket,24	
+	enable swfine
+	arg param_sifs,stop_watch		// start SIFS timer after last bit of crc
+	rshift32 pdata,pdata
+	rshift16 pdata,pdata
+	istore 3,contw
+	branch end_of_packet,crc_failed
+	enable match
+	fetch 1,mem_last_freq
+	add pdata,2,rega
+	call rf_write_freq				/* set frequency to tx mode freq */
+	disable decode_fec0
+	branch set_sync_on
+
+le_transmit_receive_sifs:
+	set1 mark_ext_patch,mark
+	bpatch patch29_3,mem_patch29
+	call le_transmit
+	fetcht 1,mem_last_freq
+	call set_freq_rx
+	call rf_rx_enable
+	enable swfine
+	arg 5000,timeup	// about 417us
+	branch le_receive_rxon
+
+le_transmit_norx:
+	call le_transmit
+	branch end_of_packet
+	
+le_transmit:
+	set1 mark_ext_patch,mark
+	bpatch patch29_4,mem_patch29
+	call le_prep
+	call letx_setfreq
+	set1 TXGFSK,radio_ctrl
+	enable encode_fec0
+	enable is_tx
+	disable is_rx
+	call le_wait_tx
+	rshift16 access,pdata
+	rshift8 pdata,pdata
+	rshift4 pdata,pdata
+	inject mod,40
+	enable enable_white
+	enable enable_crc
+	set1 mark_ext_patch,mark
+	bpatch patch29_5,mem_patch29
+	fetch 1,mem_le_txheader
+	inject mod,8
+	ifetch 1,contr
+	and pdata,0x3f,loopcnt
+	inject mod,8
+	branch letr_nopayload,zero
+letr_loop:
+	ifetch 1,contr
+	inject mod,8
+	loop letr_loop
+	
+letr_nopayload:
+	enable enable_parity
+	inject mod,24
+	disable enable_parity
+	until null,tx_clear
+	nop 100          /* flush out the last bit */
+	disable encode_fec0
+	rtn
+	
+le_send_adv_ind:
+	set1 mark_ext_patch,mark
+	bpatch patch29_6,mem_patch29
+	fetch 1,mem_le_adv_type
+	beq ADV_DIRECT_IND,le_send_adv_direct_ind
+	fetch 1,mem_le_adv_own_addr_type
+	lshift4 pdata,pdata
+	lshift2 pdata,pdata
+	store 1,mem_le_txheader
+	fetcht 1,mem_le_adv_data_len
+	add temp,6,pdata
+	store 1,mem_le_txlen
+	fetch 6,mem_le_lap
+	store 6,mem_le_txpayload
+	copy temp,loopcnt
+	arg mem_le_adv_data,contr
+	call memcpy
+	branch le_send_adv_transmit
+le_send_adv_direct_ind:
+	fetcht 2,mem_le_notify_handle
+	call le_att_check_notification_enable
+	copy rega,contw
+	setarg 1
+	istore 1,contw
+	fetch 1,mem_le_adv_direct_addr_type
+	lshift4 pdata,pdata
+	lshift2 pdata,pdata
+	increase 1,pdata
+	store 1,mem_le_txheader
+	setarg 12
+	store 1,mem_le_txlen
+	fetch 6,mem_le_lap
+	store 6,mem_le_txpayload
+	fetch 6,mem_hci_plap
+	istore 6,contw
+le_send_adv_transmit:
+	set1 mark_ext_patch,mark
+	bpatch patch29_7,mem_patch29
+	fetch 1,mem_le_adv_transmit
+	increase 1,pdata
+	store 1,mem_le_adv_transmit
+	arg 1800,stop_watch
+	disable match
+	branch le_transmit_receive_sifs
+	
+le_send_scan_request:
+	set1 mark_ext_patch,mark
+	bpatch patch2a_0,mem_patch2a
+	fetch 1,mem_le_scan_type
+	rtnne LE_SCAN_TYPE_ACTIVE,pdata
+	fetch 1,mem_le_adv_transmit
+	increase 1,pdata
+	store 1,mem_le_adv_transmit
+	arg 0x0c03,temp// length + SCAN_REQ PDU
+	fetch 1,mem_le_scan_own_addr_type
+	nsetflag blank,LE_SENDER_ADDR_BIT,temp
+	copy rega,pdata
+	nsetflag blank,LE_RECEIVER_ADDR_BIT,temp	
+	storet 2,mem_le_txheader
+	fetch 6,mem_le_lap
+	istore 6,contw
+	fetch 6,mem_le_plap
+	istore 6,contw
+	branch le_transmit_receive_sifs
+
+
+le_send_scan_response:
+	set1 mark_ext_patch,mark
+	bpatch patch2a_1,mem_patch2a
+	arg SCAN_RSP,temp
+	fetch 1,mem_le_adv_own_addr_type
+	nsetflag blank,LE_SENDER_ADDR_BIT,temp
+	storet 1,mem_le_txheader
+	fetcht 1,mem_le_scan_data_len
+	add temp,6,pdata
+	store 1,mem_le_txlen
+	fetch 6,mem_le_lap
+	store 6,mem_le_txpayload
+	arg mem_le_scan_data,contr
+	copy temp,loopcnt
+	call memcpy
+	branch le_transmit_norx
+
+
+le_connect_request:
+	set1 mark_ext_patch,mark
+	bpatch patch2a_2,mem_patch2a
+	force -1,pdata
+	setsect 2,1
+	store 5,mem_le_channel_map
+	call le_calc_channel_map	
+	force 4,loopcnt
+	arg mem_le_access,contw
+	call generate_random_loop	
+	fetch 2,mem_le_conn_superto
+	store 2,mem_le_superto
+le_con_req_hop_retry:
+	random pdata
+	and_into 0xf,pdata
+	sub pdata,4,null
+	branch le_con_req_hop_retry,positive
+	store 1,mem_le_hop
+	store 1,mem_tmp1
+	set1 mark_ext_patch,mark
+	bpatch patch2a_3,mem_patch2a
+	fetcht 2,mem_le_conn_interval
+	storet 2,mem_le_tsniff	
+	copy temp,regc			// tsniff in regc
+	add clkn_bt,7,pdata			// leave space for offset
+	idiv regc
+	call wait_div_end
+	remainder rega
+	isub rega,pdata
+	iadd regc,pdata
+	fetcht 2,mem_le_dsniff
+	iadd temp,pdata
+	store 4,mem_le_anchor
+	isub clkn_bt,rega
+	increase -6,rega			// window offset
+	arg 0x2205,regb			// length & CONN_REQ PDU
+	fetch 1,mem_le_conn_own_addr_type
+	nsetflag blank,LE_SENDER_ADDR_BIT,regb
+	fetch 1,mem_le_conn_peer_addr_type
+	nsetflag blank,LE_RECEIVER_ADDR_BIT,regb
+	copy regb,pdata
+	store 2,mem_le_txheader
+	fetch 6,mem_le_lap
+	istore 6,contw//own addr
+	fetch 6,mem_le_plap
+	istore 6,contw// peer addr
+	fetch 4,mem_le_access
+	istore 4,contw
+	random pdata
+	istore 2,contw				/* crc init */
+	random pdata
+	istore 1,contw
+	force 2,pdata				/* window size */	
+	istore 1,contw
+	rshift2 rega,pdata
+	istore 2,contw				/* window offset */
+	rshift2 regc,pdata			
+	istore 2,contw				/* conn Interval */
+	set1 mark_ext_patch,mark
+	bpatch patch2a_4,mem_patch2a
+	fetch 2,mem_le_conn_latency			/* slave latency */
+	istore 2,contw
+	fetch 2,mem_le_conn_superto
+	istore 2,contw
+	fetch 5,mem_le_channel_map
+	istore 5,contw				/* channel map */
+	fetch 1,mem_le_hop
+	arg param_le_sca,temp
+	ior temp,pdata
+	istore 1,contw
+	call le_transmit_norx
+	setarg mem_le_txheader
+	add pdata,18,contr
+	ifetch 3,contr
+	store 3,mem_le_crcinit
+	rtn
+		
+le_init_adv:
+	set1 mark_ext_patch,mark
+	bpatch patch2a_5,mem_patch2a
+	disable master
+	branch le_adv_access
+	
+
+
+le_update_param:
+	set1 mark_ext_patch,mark
+	bpatch patch2a_6,mem_patch2a
+	fetch 1,mem_le_state
+	rtnbit0 lestate_update_param
+	fetch 2,mem_le_event_count
+	fetcht 2,mem_le_instant
+	isub temp,pdata
+	nrtn positive
+	fetch 1,mem_le_state
+	set0 lestate_update_param,pdata
+	set0 lestate_got_first_packet,pdata
+	store 1,mem_le_state
+	fetch 4,mem_le_anchor
+	fetcht 2,mem_le_tsniff
+	isub temp,rega
+	set1 mark_ext_patch,mark
+	bpatch patch2a_7,mem_patch2a
+	fetch 1,mem_le_new_param
+	store 1,mem_le_window_size
+	ifetcht 2,contr
+	ifetch 2,contr
+	lshift2 pdata,pdata
+	store 2,mem_le_tsniff
+	lshift2 temp,temp
+	iadd temp,pdata
+	ifetcht 4,contr
+	storet 4,mem_le_slave_latency	// and superTO
+	iadd rega,pdata
+	store 4,mem_le_anchor
+	branch le_receive_window_size
+
+le_update_channel_map:
+	set1 mark_ext_patch,mark
+	bpatch patch2b_0,mem_patch2b
+	fetch 1,mem_le_state
+	rtnbit0 lestate_update_map
+	fetch 2,mem_le_event_count
+	fetcht 2,mem_le_instant
+	isub temp,pdata
+	nrtn positive
+	fetch 1,mem_le_state
+	set0 lestate_update_map,pdata
+	store 1,mem_le_state
+ 	fetch 5,mem_le_new_map
+	store 5,mem_le_channel_map
+	branch le_calc_channel_map	
+	
+	
+le_acknowledge:
+	set1 mark_ext_patch,mark
+	bpatch patch2b_1,mem_patch2b
+	call le_supervision_flush
+	call le_check_wak
+	fetch 1,mem_le_rxbuf
+	rshift pdata,pdata
+	ixor temp,pdata
+	isolate1 nesn,pdata
+	setflag true,mark_old_packet,mark	/* retransmit */
+	fetch 1,mem_le_rxbuf+1			
+	branch le_ack_unenc,blank		/* empty packet, no decryption */
+	fetch 1,mem_le_state
+	bbit0 lestate_encryption,le_ack_unenc
+	call load_sk
+	call le_decrypt
+	nrtn blank
+le_ack_unenc:
+	rtnmark1 mark_old_packet
+	fetcht 1,mem_le_arq
+	setflip nesn,temp
+	storet 1,mem_le_arq
+	branch le_parse
+	
+le_check_wak:
+	set1 mark_ext_patch,mark
+	bpatch patch2b_2,mem_patch2b
+	fetcht 1,mem_le_arq
+	isolate0 wak,temp
+	rtn true
+	fetch 1,mem_le_rxbuf
+	lshift pdata,pdata
+	ixor temp,pdata
+	rtnbit0 sn			/* received NESN is same as SN, NAK */
+	set0 wak,temp
+	setflip sn,temp
+	storet 1,mem_le_arq
+	compare 3,temp,3
+	nrtn true
+	fetch 1,mem_le_txpayload
+	rtnne LL_START_ENC_REQ
+	fetch 1,mem_le_state
+	set1 lestate_encryption,pdata
+	store 1,mem_le_state
+	rtn	
+	
+le_wait_adv:
+	set1 mark_ext_patch,mark
+	bpatch patch2b_3,mem_patch2b
+	call le_next_adv_channel
+	call le_receive_adv
+	fetch 1,mem_le_adv_waitcnt
+	increase 1,pdata
+	store 1,mem_le_adv_waitcnt
+	rtn
+
+le_scan:
+	set1 mark_ext_patch,mark
+	bpatch patch2b_4,mem_patch2b
+	fetch 1,mem_le_scan_enable
+	rtnne LE_SCAN_ENABLE
+	arg le_scan_interval_timer,queue
+	call timer_check
+	nrtn blank
+	fetch 2,mem_le_scan_interval
+	fetcht 2,mem_le_scan_window
+	isub temp,pdata
+	arg le_scan_interval_timer,queue
+	call timer_init
+	disable master
+	call le_init_adv
+	call le_wait_adv
+	nrtn match
+	set1 mark_ext_patch,mark
+	bpatch patch2b_5,mem_patch2b
+	fetch 6,mem_le_rxbuf+2
+	store 6,mem_le_plap
+	call le_scan_dongle
+	call le_scan_addr_to_uart
+
+	fetch 1,mem_le_adv_rcv
+	increase 1,pdata
+	store 1,mem_le_adv_rcv
+	call le_create_conn
+	rtn master
+	call hci_send_le_adv_report_event
+	call le_send_scan_request
+	nrtn match
+	set1 mark_ext_patch,mark
+	bpatch patch2b_6,mem_patch2b
+	fetch 1,mem_le_scanrsp_rcv
+	increase 1,pdata
+	store 1,mem_le_scanrsp_rcv
+	fetch 9,mem_le_rxbuf+8
+	store 9,mem_tmp_buffer
+	branch hci_send_le_adv_report_event
+	
+le_create_conn:
+	set1 mark_ext_patch,mark
+	bpatch patch2b_7,mem_patch2b
+	fetch 1,mem_cmd_le_create_conn
+	rtnne hci_cmd_le_create_conn,pdata
+	fetch 6,mem_le_plap
+	fetcht 6,mem_le_conn_peer_addr
+	isub temp,null
+	nrtn zero
+	call context_new
+	nrtn zero
+	call le_connect_request
+	call le_init_master
+	set1 mark_ext_patch,mark
+	bpatch patch2c_0,mem_patch2c
+	jam 0,mem_hci_cmd
+	jam 0,mem_le_peer_sca
+	fetch 1,mem_device_option
+	bne dvc_op_dongle,le_create_conn_ndongle
+	jam CONN_SM_SEND_WRITE_REQ,mem_le_conn_sm
+le_create_conn_ndongle:
+	arg 0,temp//status successful
+	call hci_send_le_conn_complete
+	jam 0,mem_le_scan_enable
+	jam 0,mem_cmd_le_create_conn
+	jam XT_LL_VERSION_IND,mem_fifo_temp
+	call le_xtype_fifo_in
+	branch context_save
+	
+le_scan_check_sender_addr_type:
+	arg 1,rega// sender_addr_type
+	fetch 1,mem_le_rxbuf
+	rtnbit1 LE_SENDER_ADDR_BIT
+	arg 0,rega
+	rtn
+
+le_xtype_fifo_count:
+	arg mem_le_xtype_fifo,contr
+	branch fifo_content_count
+	
+le_xtype_fifo_is_empty:
+	arg mem_le_xtype_fifo,rega
+	branch fifo_is_empty
+	
+le_xtype_fifo_is_full:
+	arg mem_le_xtype_fifo,rega
+	branch fifo_is_full
+	
+le_xtype_fifo_is_near_full:
+	arg mem_le_xtype_fifo,rega
+	branch fifo_is_near_full
+	
+le_xtype_fifo_in:
+	arg mem_le_xtype_fifo,rega	
+	branch fifo_in
+	
+le_prepare_tx:
+	set1 mark_ext_patch,mark
+	bpatch patch2c_1,mem_patch2c
+	fetch 1,mem_le_arq
+	rtnbit1 wak
+	arg mem_le_xtype_fifo,rega
+	call fifo_out
+	nbranch le_prepare_tx_cmd,blank
+	fetch 1,mem_device_option
+	bne dvc_op_hci,le_send_empty
+	arg 0,type
+	call hci_rx_packet //check acl packet
+	copy type,pdata
+	nrtn blank
+	branch le_send_empty
+le_prepare_tx_cmd:
+	copy pdata,temp
+	set1 mark_ext_patch,mark
+	bpatch patch2c_2,mem_patch2c
+	copy temp,pdata
+	bbit0 5,le_prepare_l2cap
+	force 3,type
+	set0 5,pdata
+	store 1,mem_le_txpayload
+	set1 mark_ext_patch,mark
+	bpatch patch2c_3,mem_patch2c
+	fetch 1,mem_le_txpayload
+	beq LL_CONNECTION_UPDATE_REQ,le_send_connection_update_req
+	beq LL_CHANNEL_MAP_REQ,le_send_channel_map_req
+	beq LL_TERMINATE_IND,le_send_terminate_ind
+	beq LL_ENC_REQ,le_send_enc_req
+	beq LL_ENC_RSP,le_send_enc_rsp
+	beq LL_START_ENC_REQ,le_send_start_enc_req
+	beq LL_START_ENC_RSP,le_send_start_enc_rsp
+	beq LL_UNKNOWN_RSP,le_send_unknown_rsp
+	beq LL_FEATURE_REQ,le_send_feature
+	beq LL_FEATURE_RSP,le_send_feature
+	beq LL_PAUSE_ENC_REQ,le_send_pause_enc_req
+	beq LL_PAUSE_ENC_RSP,le_send_pause_enc_rsp
+	beq LL_VERSION_IND,le_send_version_ind
+	beq LL_REJECT_IND,le_send_reject_ind
+	beq LL_CONNECTION_PARAM_REQ,le_send_conn_param_req  //ACL PACKET
+	branch assert
+	
+le_prepare_l2cap:
+	jam 0,mem_le_txcid+1
+	force 2,type
+	bbit0 6,le_prepare_att
+	beq ATTOP_WRITE_COMMAND,le_prepare_att
+	beq ATTOP_SIGNED_WRITE_COMMAND,le_prepare_att
+	jam LE_L2CAP_CID_SMP,mem_le_txcid
+	set0 6,pdata
+	store 1,mem_le_l2cap
+le_prepare_smp:
+	set1 mark_ext_patch,mark
+	bpatch patch2c_4,mem_patch2c
+	fetch 1,mem_le_l2cap
+le_prepare_smp0:
+	beq SMP_PAIRING_REQUEST,le_send_smp_pairing_request             
+	beq SMP_PAIRING_RESPONSE,le_send_smp_pairing_response            
+	beq SMP_PAIRING_CONFIRM,le_send_smp_pairing_confirm             
+	beq SMP_PAIRING_RANDOM,le_send_smp_pairing_random              
+	beq SMP_PAIRING_FAILED,le_send_smp_pairing_failed              
+	beq SMP_ENCRYPTION_INFORMATION,le_send_smp_encryption_information      
+	beq SMP_MASTER_IDENTIFICATION,le_send_smp_master_identification       
+	beq SMP_IDENTITY_INFORMATION,le_send_smp_identity_information        
+	beq SMP_IDENTITY_ADDRESS_INFORMATION,le_send_smp_identity_address_information
+	beq SMP_SIGNING_INFORMATION,le_send_smp_signing_information         
+	beq SMP_SECURITY_REQUEST,le_send_smp_security_request            
+	branch assert
+	
+le_prepare_att:
+	jam LE_L2CAP_CID_ATT,mem_le_txcid
+	store 1,mem_le_l2cap
+	set1 mark_ext_patch,mark
+	bpatch patch2c_5,mem_patch2c
+le_prepare_att0:
+	fetch 1,mem_le_l2cap
+	beq ATTOP_ERROR_RESPONSE,le_send_att_error_response
+	beq ATTOP_EXCHANGE_MTU_REQUEST,le_send_att_exchange_mtu
+	beq ATTOP_EXCHANGE_MTU_RESPONSE,le_send_att_exchange_mtu
+	beq ATTOP_FIND_INFORMATION_REQUEST,le_send_att_find_information_request
+	beq ATTOP_FIND_INFORMATION_RESPONSE,le_send_att_find_information_response
+	beq ATTOP_FIND_BY_TYPE_VALUE_REQUEST,le_send_att_find_by_type_value_request
+	beq ATTOP_FIND_BY_TYPE_VALUE_RESPONSE,le_send_att_find_by_type_value_response
+	beq ATTOP_READ_BY_TYPE_REQUEST,le_send_att_read_by_type_request
+	beq ATTOP_READ_BY_TYPE_RESPONSE,le_send_att_read_by_type_response
+	beq ATTOP_READ_REQUEST,le_send_att_read_request
+	beq ATTOP_READ_RESPONSE,le_send_att_read_response
+	beq ATTOP_READ_BLOB_REQUEST,le_send_att_read_blob_request
+	beq ATTOP_READ_BLOB_RESPONSE,le_send_att_read_blob_response
+	beq ATTOP_READ_MULTIPLE_REQUEST,le_send_att_read_multiple_request
+	beq ATTOP_READ_MULTIPLE_RESPONSE,le_send_att_read_multiple_response
+	beq ATTOP_READ_BY_GROUP_TYPE_REQUEST,le_send_att_read_by_group_type_request
+	beq ATTOP_READ_BY_GROUP_TYPE_RESPONSE,le_send_att_read_by_group_type_response
+	beq ATTOP_WRITE_REQUEST,le_send_att_write_request
+	beq ATTOP_WRITE_RESPONSE,le_send_att_write_response
+	beq ATTOP_PREPARE_WRITE_REQUEST,le_send_att_prepare_write_request
+	beq ATTOP_PREPARE_WRITE_RESPONSE,le_send_att_prepare_write_response
+	beq ATTOP_EXECUTE_WRITE_REQUEST,le_send_att_execute_write_request
+	beq ATTOP_EXECUTE_WRITE_RESPONSE,le_send_att_execute_write_response
+	beq ATTOP_HANDLE_VALUE_NOTIFICATION,le_send_att_handle_value_notification
+	beq ATTOP_HANDLE_VALUE_INDICATION,le_send_att_handle_value_indication
+	beq ATTOP_HANDLE_VALUE_CONFIRMATION,le_send_att_handle_value_confirmation
+	beq ATTOP_WRITE_COMMAND,le_send_att_write_command
+	beq ATTOP_SIGNED_WRITE_COMMAND,le_send_att_signed_write_command
+	beq EMPTY_LE_DATA_PRE,le_send_empty_le_data_pre
+	beq EMPTY_LE_DATA,le_send_empty_le_data
+	branch assert
+	
+le_send_empty_le_data_pre:
+	jam ATTOP_READ_BY_GROUP_TYPE_REQUEST,mem_fifo_temp
+	call le_xtype_fifo_in
+	
+le_send_empty_le_data:
+	setarg 0x0011
+	store 2,mem_le_txheader
+	fetch 1,mem_le_arq
+	set1 wak,pdata
+	store 1,mem_le_arq
+	jam ATTOP_WRITE_REQUEST,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+le_send_connection_update_req:
+	force 12,temp
+	branch le_send_packet
+	
+le_send_channel_map_req:
+	force 8,temp
+	branch le_send_packet
+	
+le_send_terminate_ind:
+	force 2,temp
+	branch le_send_packet
+	
+le_send_enc_req:
+	force 0,pdata
+	istore 8,contw					/* RAND=0 */
+	istore 2,contw					/* EDIV=0 */
+	copy contw,temp
+	arg mem_le_skdm,contw
+	force 8,loopcnt
+	call generate_random_loop
+	fetch 8,mem_le_skdm
+	istore 8,temp					/* SKDm */
+	copy contw,temp
+	arg mem_le_ivm,contw
+	force 4,loopcnt
+	call generate_random_loop
+	fetch 4,mem_le_ivm
+	istore 4,temp					/* IVm */
+	force 23,temp
+	branch le_send_packet
+	
+le_send_enc_rsp:
+	copy contw,temp
+	arg mem_le_skds,contw
+	force 8,loopcnt
+	call generate_random_loop
+	fetch 8,mem_le_skds
+	istore 8,temp					/* SKDs */
+	copy contw,temp
+	arg mem_le_ivs,contw
+	force 4,loopcnt
+	call generate_random_loop
+	fetch 4,mem_le_ivs
+	istore 4,temp					/* IVs */
+	call generate_sk
+	jam XT_LL_START_ENC_REQ,mem_fifo_temp
+	call le_xtype_fifo_in
+	force 13,temp
+	branch le_send_packet
+	
+le_send_start_enc_req:
+	force 1,temp
+	branch le_send_packet
+	
+le_send_start_enc_rsp:
+	force 1,temp
+	branch le_send_packet,master
+	jam XT_SMP_ENCRYPTION_INFORMATION,mem_fifo_temp
+	call le_xtype_fifo_in
+	force 1,temp
+	branch le_send_packet
+	
+le_send_unknown_rsp:
+	force 2,temp
+	branch le_send_packet
+	
+le_send_feature:
+	setarg param_le_features
+	istore 8,contw
+	force 9,temp
+	branch le_send_packet
+	
+le_send_pause_enc_req:
+	force 6,temp
+	branch le_send_packet
+	
+le_send_pause_enc_rsp:
+	force 6,temp
+	branch le_send_packet
+	
+le_send_version_ind:
+	setarg param_le_version
+	istore 3,contw
+	setarg param_le_subversion
+	istore 2,contw
+	force 6,temp
+	branch le_send_packet
+	
+le_send_reject_ind:
+	force 2,temp
+	branch le_send_packet
+
+le_send_conn_param_req:
+	increase -1,contw
+	setarg 0x000c
+	istore 2,contw //Length
+	setarg 0x0005
+	istore 2,contw	//CID
+	setarg 0xb412
+	istore 2,contw		
+	setarg 0x0008
+	istore 2,contw
+	setarg 0x0008
+	istore 2,contw //min interval
+	setarg 0x0010
+	istore 2,contw //max interval
+	setarg 0
+	istore 2,contw //latency
+	setarg 0x012c
+	istore 2,contw //timeout	
+	call le_send_autolen
+	force 2,type
+	branch le_send_packet
+
+le_send_smp_pairing_request:
+	setarg 0x1000401
+	store 4,mem_le_preq
+	setarg 0x070710
+	istore 3,contw
+	fetch 6,mem_le_preq+1
+	store 6,mem_le_l2cap_response
+	force 11,temp
+	branch le_send_packet
+	
+le_send_smp_pairing_response:
+	setarg param_smp_paring_response	
+	store 4,mem_le_pres
+	setarg param_smp_key_dist
+	istore 3,contw
+	fetch 6,mem_le_pres+1
+	store 6,mem_le_l2cap_response
+	force 11,temp
+	branch le_send_packet
+	
+le_send_smp_pairing_confirm:
+	call generate_confirm
+	arg mem_le_l2cap_response,contw
+	call store_aes_result
+	force 21,temp
+	branch le_send_packet
+	
+le_send_smp_pairing_random:
+	fetch 8,mem_le_mrand
+	branch le_send_smp_mrandom,master
+	fetch 8,mem_le_srand
+	
+le_send_smp_mrandom:
+	call le_send_smp_128
+	branch le_send_packet
+	
+le_send_smp_pairing_failed:
+	force 6,temp
+	branch le_send_packet
+	
+le_send_smp_encryption_information:
+	jam BT_EVT_LE_ENC_INFO,mem_fifo_temp
+	call ui_ipc_send_event
+	jam XT_SMP_MASTER_IDENTIFICATION,mem_fifo_temp
+	call le_xtype_fifo_in
+	arg mem_le_my_ltk,contw
+	call generate_random
+	fetch 8,mem_le_my_ltk
+	fetch 8,mem_le_ltk
+	call le_send_smp_128
+	branch le_send_packet
+	
+le_send_smp_master_identification:
+	jam XT_SMP_IDENTITY_INFORMATION,mem_fifo_temp
+	call le_xtype_fifo_in
+	arg mem_le_l2cap_response,contw
+	force 8,loopcnt
+	call generate_random_loop
+	force 15,temp
+	branch le_send_packet
+	
+le_send_smp_identity_information:
+	jam XT_SMP_IDENTITY_ADDRESS_INFORMATION,mem_fifo_temp
+	call le_xtype_fifo_in
+	arg mem_le_l2cap_response,contw
+	call generate_random
+	branch le_send_autolen
+	
+le_send_smp_identity_address_information:
+	jam XT_SMP_SIGNING_INFORMATION,mem_fifo_temp
+	call le_xtype_fifo_in
+	force 0,pdata						/* address type:PUBLIC */
+	store 1,mem_le_l2cap_response
+	fetch 6,mem_le_lap
+	istore 6,contw
+	branch le_send_autolen
+	
+le_send_smp_signing_information:
+	arg mem_le_l2cap_response,contw
+	call generate_random
+	branch le_send_autolen
+	
+le_send_smp_security_request:
+	force 6,temp
+	branch le_send_packet
+	
+le_send_smp_128:
+	store 8,mem_le_l2cap_response
+	ifetch 8,contr
+	istore 8,contw
+	force 21,temp
+	rtn
+
+le_send_att_error_response_notfound:	
+	jam ATT_ERR_ATTRIBUTE_NOT_FOUND,mem_le_err_code
+le_send_att_error_response:	
+	jam ATTOP_ERROR_RESPONSE,mem_le_l2cap
+	fetch 3,mem_le_att_opcode
+	store 3,mem_le_l2cap_response
+	fetch 1,mem_le_err_code
+	istore 1,contw
+	branch le_send_autolen
+	
+le_send_att_exchange_mtu:
+	setarg param_le_mtu
+	istore 2,contw
+	branch le_send_autolen
+	
+le_send_att_find_information_request:
+	fetch 2,mem_le_search_handle_start
+	store 2,mem_le_l2cap_response
+	fetch 2,mem_le_search_handle_end
+	istore 2,contw
+	branch le_send_autolen
+	
+	
+
+le_send_att_find_information_response:
+	force 1,pdata
+	store 1,mem_le_l2cap_response
+	call le_init_attlist_search
+le_send_att_find_information_res_loop:
+	call le_att_handle_inrange
+	branch le_send_att_find_information_res_end,blank
+	nbranch le_send_att_find_information_res_next,positive
+	disable user
+	istore 2,contw
+	ifetch 2,contr
+	istore 2,contw
+le_send_att_find_information_res_cont:
+	ifetch 1,contr
+	iadd contr,contr
+	branch le_send_att_find_information_res_loop
+le_send_att_find_information_res_next:
+	increase 2,contr
+	branch le_send_att_find_information_res_cont
+le_send_att_find_information_res_end:
+	branch le_send_att_error_response_notfound,user
+	branch le_send_autolen
+
+	
+le_send_att_find_by_type_value_request:
+	fetch 2,mem_le_search_handle_start
+	branch le_send_empty_le_data,blank
+	store 2,mem_le_l2cap_response
+	fetch 2,mem_le_search_handle_end
+	//setarg 0xffff
+	istore 2,contw
+	fetch 2,mem_le_uuid
+	//setarg 0x2800
+	istore 2,contw
+	fetch 2,mem_le_search_att_type
+	//setarg 0x1801
+	istore 2,contw
+	branch le_send_autolen
+
+	
+le_send_att_find_by_type_value_response:
+	call le_start_end_handle_check_1
+	rtn user
+	fetcht 2,mem_le_uuid
+	setarg UUID_GATT_PRIMARY_SERVICE
+	isub temp,null
+	branch le_send_att_find_by_type_value_res_primary,zero
+	setarg UUID_GATT_SECONDARY_SERVICE
+	isub temp,null
+	branch le_send_att_error_response_notfound,zero
+	setarg UUID_GATT_INCLUDE
+	isub temp,null
+	branch le_send_att_error_response_notfound,zero
+	setarg UUID_GATT_CHARACTERISTIC
+	isub temp,null
+	branch le_send_att_error_response_notfound,zero
+	branch le_send_att_error_response_notfound
+	
+le_send_att_find_by_type_value_res_primary:
+	fetcht 2,mem_le_search_att_type
+	increase 2,contr
+	ifetch 1,contr
+	icopy regc //primary service number
+	increase 1,regc
+	
+le_send_att_find_by_type_value_res_primary_search_loop:
+         increase -1,regc
+         branch le_send_att_error_response_notfound,zero
+         ifetch 2,contr
+	isub temp,null
+	branch le_send_att_find_by_type_value_res_primary_search_end,zero
+	increase 4,contr
+	branch le_send_att_find_by_type_value_res_primary_search_loop
+	
+le_send_att_find_by_type_value_res_primary_search_end:
+	ifetch 2,contr
+	icopy rega//handle start
+	ifetch 2,contr
+	icopy regb//handle end	
+	call le_start_end_handle_check_2
+	rtn user
+	jam ATTOP_FIND_BY_TYPE_VALUE_RESPONSE,mem_le_l2cap
+	deposit rega
+	store 2,mem_le_l2cap_response
+	deposit regb
+	istore 2,contw
+	force 9,temp
+	branch le_send_packet
+	
+
+
+
+le_start_end_handle_check_1:
+	disable user
+	fetcht 2,mem_le_search_handle_start
+	fetch 2,mem_le_search_handle_end
+	isub temp,null
+	nbranch le_start_end_handle_check_1_fail,positive
+	deposit temp
+	rtnne 0
+         
+le_start_end_handle_check_1_fail:
+	enable user
+le_send_att_invalid_handle:
+	jam ATT_ERR_INVALID_HANDLE,mem_le_err_code
+	branch le_send_att_error_response
+	
+le_start_end_handle_check_2:
+	disable user
+	fetcht 2,mem_le_search_handle_start
+	deposit rega
+	isub temp,null
+	nbranch le_start_end_handle_check_2_fail,positive
+	fetch 2,mem_le_search_handle_end
+	isub regb,null
+	nbranch le_start_end_handle_check_2_fail,positive
+	deposit regb
+	isub rega,null
+	nbranch le_start_end_handle_check_2_fail,positive
+	rtn
+         
+le_start_end_handle_check_2_fail:
+	enable user
+	branch le_send_att_error_response_notfound
+
+	
+le_send_att_read_by_type_request:
+	fetch 2,mem_le_search_handle_start
+//	setarg 0x0001
+	istore 2,contw
+	fetch 2,mem_le_search_handle_end
+//	setarg 0x0018
+	istore 2,contw
+	fetch 2,mem_le_search_att_type
+	istore 2,contw
+	force 11,temp
+	branch le_send_packet
+
+	
+le_send_att_read_by_type_response:
+	fetcht 2,mem_le_search_att_type
+	setarg UUID_GATT_CHARACTERISTIC
+	isub temp,null
+	setarg 7
+	branch le_send_att_read_by_type_res_cont,zero
+	setarg UUID_GATT_PRIMARY_SERVICE
+	isub temp,null
+	setarg 6
+	branch le_send_att_read_by_type_res_cont,zero
+	branch le_send_att_error_response_notfound
+le_send_att_read_by_type_res_cont:
+	store 1,mem_le_l2cap_response
+	call le_init_attlist_search
+	force 3,alarm
+le_send_att_read_by_type_res_loop:
+	call le_att_handle_inrange
+	branch le_send_att_read_by_type_res_end,blank
+	nbranch le_send_att_read_by_type_res_next,positive
+	iforce rega
+	ifetch 2,contr
+	isub temp,null
+	nbranch le_send_att_read_by_type_res_next2,zero
+	disable user
+	deposit rega
+	istore 2,contw
+	ifetch 1,contr
+	add pdata,4,loopcnt
+	call memcpy
+	increase -1,alarm
+	branch le_send_att_read_by_type_res_end,zero
+	branch le_send_att_read_by_type_res_next2
+le_send_att_read_by_type_res_next:
+	increase 2,contr
+le_send_att_read_by_type_res_next2:
+	ifetch 1,contr
+	iadd contr,contr
+	branch le_send_att_read_by_type_res_loop
+le_send_att_read_by_type_res_end:
+	branch le_send_att_error_response_notfound,user
+	branch le_send_autolen
+
+	
+le_send_att_read_request:
+	fetch 1,mem_le_temp
+	//branch le_send_att_read_req_end,blank
+         increase -1,pdata
+         store 1,mem_le_temp
+         lshift pdata,pdata
+         //increase -2,pdata
+         iadd contr,contr
+         ifetcht 2,contr
+         storet 2,mem_le_l2cap_response
+	branch le_send_autolen
+	
+le_send_att_read_response:
+	fetcht 2,mem_le_att_handle
+	call le_att_get_handle_ptr
+	branch le_send_att_error_response_notfound,blank
+	ifetch 1,contr
+	branch le_send_autolen,blank
+	sub pdata,22,null
+	branch le_send_att_read_response_less,positive
+	force 22,pdata
+le_send_att_read_response_less:
+	icopy loopcnt
+	call memcpy
+	branch le_send_autolen
+
+	
+le_send_att_read_blob_request:
+	setarg 0x0003
+	store 2,mem_le_l2cap_response
+	setarg 0x0008
+	istore 2,contw
+	branch le_send_autolen
+	
+le_send_att_read_blob_response:
+	fetch 2,mem_le_att_offset
+	iforce rega
+	fetcht 2,mem_le_att_handle
+	call le_att_get_handle_ptr 
+	branch le_send_att_error_response_notfound,blank
+	ifetch 1,contr
+	isub rega,loopcnt
+	nbranch le_send_att_error_response_notfound,positive
+	sub loopcnt,22,null
+	branch le_send_att_read_blob_response_less,positive
+	force 22,loopcnt
+le_send_att_read_blob_response_less:
+	deposit rega
+	iadd contr,contr
+	call memcpy	
+	branch le_send_autolen
+	
+le_send_att_read_multiple_request:
+	setarg 0x0003
+	istore 2,contw
+	setarg 0x0007
+	istore 2,contw
+	setarg 0x0009
+	istore 2,contw
+	branch le_send_autolen
+	
+le_send_att_read_multiple_response:
+	fetch 1,mem_le_temp
+	icopy regc//handle number
+	arg mem_le_rxbuf+7,rega
+	arg mem_le_l2cap_response,regb
+	arg 0,timeup
+	disable user7
+
+le_send_att_read_multiple_response_loop:
+	copy rega,contr
+	ifetcht 2,contr
+	copy contr,rega
+	call le_att_get_handle_ptr 
+	branch le_send_att_read_multiple_response_end,blank
+	ifetch 1,contr
+	icopy loopcnt
+	iadd timeup,timeup
+	//deposit timeup
+	//store 1,0x1ff3
+	//branch loop	
+	sub timeup,24,null
+	nbranch le_send_att_read_multiple_response_end_1,positive
+	copy regb,contw
+	
+le_copy_att_value_loop_3:
+	ifetch 1,contr
+	istore 1,contw
+	loop le_copy_att_value_loop_3
+	copy contw,regb
+	enable user7
+	increase -1,regc
+	branch le_send_att_read_multiple_response_end,zero
+	branch le_send_att_read_multiple_response_loop
+
+le_send_att_read_multiple_response_end:
+	nbranch le_send_att_read_multiple_response_fail,user7
+	disable user7
+	copy timeup,temp
+	increase 5,temp
+	branch le_send_packet
+	
+le_send_att_read_multiple_response_end_1:
+	nbranch le_send_att_read_multiple_response_fail,user7
+	disable user7
+	deposit timeup
+	isub loopcnt,temp
+	increase 5,temp
+	branch le_send_packet
+	
+le_send_att_read_multiple_response_fail:
+	jam ATT_ERR_UNSUPPORTED_GROUP_TYPE,mem_le_err_code
+	branch le_send_att_error_response
+
+	
+le_send_att_read_by_group_type_request:
+	fetch 2,mem_le_att_handle
+	branch le_send_empty_le_data,blank
+	istore 2,contw
+	setarg 0xffff
+	istore 2,contw
+	setarg 0x2800
+	istore 2,contw
+	branch le_send_autolen
+
+	
+le_send_att_read_by_group_type_response:
+	setarg 0x06
+	store 1,mem_le_l2cap_response
+	fetch 2,mem_le_search_att_type
+	iforce rega
+	call le_init_attlist_search
+	force 3,loopcnt
+le_send_att_read_by_group_type_response_loop:
+	call le_att_handle_inrange
+	branch le_send_att_read_by_group_type_response_last,blank
+	nbranch le_send_att_read_by_group_type_response_next,positive
+	iforce alarm
+	ifetch 2,contr
+	isub rega,null			/* same type? */
+	nbranch le_send_att_read_by_group_type_response_cont,zero
+	deposit alarm
+	branch le_send_att_read_by_group_type_response_first,user
+	increase -1,pdata
+	istore 2,contw			/* end handle */
+	istoret 2,contw			/* type uuid */
+	increase 1,pdata
+	increase -1,loopcnt
+	branch le_send_autolen,zero
+le_send_att_read_by_group_type_response_first:
+	disable user
+	istore 2,contw			/* start handle */
+	increase 1,contr
+	ifetcht 2,contr
+	increase -3,contr
+	branch le_send_att_read_by_group_type_response_cont
+le_send_att_read_by_group_type_response_last:
+	branch le_send_att_error_response_notfound,user
+	force -1,pdata
+	istore 2,contw
+	istoret 2,contw
+	branch le_send_autolen
+le_send_att_read_by_group_type_response_next:
+	increase 2,contr
+le_send_att_read_by_group_type_response_cont:
+	ifetch 1,contr
+	iadd contr,contr
+	branch le_send_att_read_by_group_type_response_loop
+	
+
+	
+le_send_att_write_request:
+	fetch 2,mem_le_notify_handle
+	store 2,mem_le_l2cap_response
+	fetch 1,mem_le_handle_data_len
+	copy pdata,loopcnt
+	arg mem_le_handle_data,contr
+	call memcpy
+	branch le_send_autolen
+	
+le_send_att_write_response:
+	fetcht 2,mem_le_att_handle
+	call le_att_get_handle_ptr
+	branch le_send_att_write_response_go,blank
+	increase -2,contr
+	ifetcht 2,contr
+	setarg UUID_CLIENT_CHARACTERISTIC
+	isub temp,null
+	nbranch le_send_att_write_response_go,zero
+	increase 1,contr
+	ifetcht 2,contr
+	setarg 0x0001
+	isub temp,null
+	branch le_send_att_write_response_notify,zero
+	setarg 0x0000
+	isub temp,null
+	nbranch le_send_att_write_response_go,zero
+	branch le_send_att_write_response_go
+	
+le_send_att_write_response_notify:
+	increase -7,contr
+	ifetch 2,contr
+	increase -1,pdata
+	store 2,mem_le_notify_handle	
+	jam ATTOP_HANDLE_VALUE_NOTIFICATION,mem_fifo_temp
+	call le_xtype_fifo_in
+//	jam	CONN_SM_NOTIFY,mem_le_conn_sm
+
+le_send_att_write_response_go:
+	force 5,temp
+	branch le_send_packet
+
+le_send_att_prepare_write_request:
+	force 6,temp
+	branch le_send_packet
+	
+le_send_att_prepare_write_response:
+	force 6,temp
+	branch le_send_packet
+	
+le_send_att_execute_write_request:
+	force 6,temp
+	branch le_send_packet
+	
+le_send_att_execute_write_response:
+	force 6,temp
+	branch le_send_packet
+
+le_att_check_notification_enable: // temp ->handle,output-> pdata,output :contr->rega
+	set1 mark_ext_patch,mark
+	bpatch patch2c_6,mem_patch2c
+	increase 1,temp
+	call le_att_get_handle_ptr
+	increase -2,contr
+	ifetch 2,contr
+	arg CLIENT_CHARACTERTIC_CONFIGURATION,temp
+	isub temp,null
+	nrtn zero
+	increase 1,contr
+	copy contr,rega
+	ifetch 1,contr
+	rtn
+	
+le_send_att_handle_value_notification:
+	jam 0,mem_le_notify_len
+	fetch 2,mem_cb_update_notify_value
+	call callback_func
+	arg mem_le_l2cap,contw
+	increase 1,contw
+	fetcht 2,mem_le_notify_handle
+	istoret 2,contw
+	call le_att_get_handle_ptr 
+	ifetch 1,contr
+	icopy loopcnt
+	call memcpy
+	fetcht 1,mem_le_notify_len
+	increase 7,temp
+	call le_send_packet
+	branch le_clear_notify_att
+
+le_send_att_handle_value_indication:
+	force 6,temp
+	branch le_send_packet
+	
+le_send_att_handle_value_confirmation:
+	force 6,temp
+	branch le_send_packet
+	
+le_send_att_write_command:
+	force 6,temp
+	branch le_send_packet
+	
+le_send_att_signed_write_command:
+	force 6,temp
+	branch le_send_packet
+
+
+le_send_autolen:
+	set1 mark_ext_patch,mark
+	bpatch patch2c_7,mem_patch2c
+	setarg mem_le_txpayload
+	isub contw,pdata
+	sub pdata,0,temp
+	branch le_send_packet
+
+
+le_send_empty:
+	force 0,temp
+	force 1,type
+	
+le_send_packet:
+	set1 mark_ext_patch,mark
+	bpatch patch2d_0,mem_patch2d
+	storet 1,mem_le_txlen
+	compare 2,type,3
+	nbranch le_send_non_l2cap,true
+	add temp,-4,pdata
+	store 2,mem_le_txpayload
+	
+le_send_non_l2cap:
+	fetcht 1,mem_le_arq
+	call le_xtype_fifo_is_empty
+	nsetflag blank,md,temp
+	set1 wak,temp
+	and temp,0xfc,pdata
+	ior type,pdata
+	store 1,mem_le_arq
+	and_into 0x1f,pdata
+	store 1,mem_le_txheader
+	set1 mark_ext_patch,mark
+	bpatch patch2d_1,mem_patch2d
+	fetch 1,mem_le_txheader
+	compare 1,type,3
+	rtn true
+	fetch 7,mem_le_txheader+1
+	fetch 1,mem_le_state
+	rtnbit0 lestate_encryption
+	call load_sk
+	branch le_encrypt
+	
+le_parse:
+	set1 mark_ext_patch,mark
+	bpatch patch2d_2,mem_patch2d
+	call le_xtype_fifo_is_full
+	nbranch assert,blank
+	nrtn blank // xtype fifo full
+	fetch 1,mem_le_rxbuf+1
+	rtn blank
+	fetch 1,mem_le_rxbuf
+	compare 1,pdata,3
+	branch le_parse_l2cap,true //ACL-U continue or empty packet
+	fetch 7,mem_le_rxbuf+1
+	fetch 1,mem_le_rxbuf
+	compare 2,pdata,3
+	branch le_parse_l2cap,true
+	fetch 1,mem_le_rxbuf+2
+	store 1,mem_le_rx_ll_opcode
+	copy pdata,regc
+	set1 mark_ext_patch,mark
+	bpatch patch2d_3,mem_patch2d
+	copy regc,pdata
+	beq LL_CONNECTION_UPDATE_REQ,le_parse_connection_update_req
+	beq LL_CHANNEL_MAP_REQ,le_parse_channel_map_req
+	beq LL_TERMINATE_IND,le_parse_terminate_ind
+	beq LL_ENC_REQ,le_parse_enc_req
+	beq LL_ENC_RSP,le_parse_enc_rsp
+	beq LL_START_ENC_REQ,le_parse_start_enc_req
+	beq LL_START_ENC_RSP,le_parse_start_enc_rsp
+	beq LL_UNKNOWN_RSP,le_parse_unknown_rsp
+	beq LL_FEATURE_REQ,le_parse_feature_req
+	beq LL_FEATURE_RSP,le_parse_feature_rsp
+	beq LL_PAUSE_ENC_REQ,le_parse_pause_enc_req
+	beq LL_PAUSE_ENC_RSP,le_parse_pause_enc_rsp
+	beq LL_VERSION_IND,le_parse_version_ind
+	beq LL_REJECT_IND,le_parse_reject_ind
+	branch assert
+	
+le_parse_l2cap:
+	fetch 1,mem_le_rxbuf+1
+	and pdata,0x1f,pdata //get length
+	rtn blank//empty packet
+	fetch 1,mem_device_option
+	beq dvc_op_hci,le_acl_upgoing
+	fetch 2,mem_le_rxbuf+4//CID
+	beq LE_L2CAP_CID_ATT,le_parse_att
+	beq LE_L2CAP_CID_SMP,le_parse_smp
+	rtn
+
+le_acl_upgoing: //upgoing ACL, from air to host
+	set1 mark_ext_patch,mark
+	bpatch patch2d_4,mem_patch2d
+	call hci_get_packet_ptr
+	fetch 1,mem_le_conn_handle
+	fetcht 1,mem_le_rxbuf//LLID low 2 bits
+	and_into 3,temp
+	lshift8 temp,temp
+	lshift4 temp,temp
+	ior temp,pdata
+	istore 2,contwu
+	fetcht 1,mem_le_rxbuf+1
+	and temp,0x1f,temp
+	istoret 2,contwu //length
+	copy temp,loopcnt
+	call uart_copy_tx_bytes
+	add temp,4,loopcnt
+	call h4_send_packet_acl
+	branch h4_send_acl_trigger
+
+le_acl_downgoing: //downgoing ACL, from host to air
+	set1 mark_ext_patch,mark
+	bpatch patch2d_5,mem_patch2d
+	arg 0x2,type
+	ifetch 2,contru
+	ifetch 2,contru //length
+	branch assert,blank
+	copy pdata,loopcnt
+	arg mem_le_txpayload,contw
+	call uart_copy_rx_bytes	
+	branch le_send_autolen
+	
+le_parse_smp:
+	set1 mark_ext_patch,mark
+	bpatch patch2d_6,mem_patch2d
+	ifetch 1,contr
+	beq SMP_PAIRING_REQUEST,le_parse_smp_pairing_request
+	beq SMP_PAIRING_RESPONSE,le_parse_smp_pairing_response
+	beq SMP_PAIRING_CONFIRM,le_parse_smp_pairing_confirm
+	beq SMP_PAIRING_RANDOM,le_parse_smp_pairing_random
+	beq SMP_PAIRING_FAILED,le_parse_smp_pairing_failed
+	beq SMP_ENCRYPTION_INFORMATION,le_parse_smp_encryption_information
+	beq SMP_MASTER_IDENTIFICATION,le_parse_smp_master_identification
+	beq SMP_IDENTITY_INFORMATION,le_parse_smp_identity_information
+	beq SMP_IDENTITY_ADDRESS_INFORMATION,le_parse_smp_identity_address_information
+	beq SMP_SIGNING_INFORMATION,le_parse_smp_signing_information
+	beq SMP_SECURITY_REQUEST,le_parse_smp_security_request
+	branch assert
+	
+le_parse_att:
+	set1 mark_ext_patch,mark
+	bpatch patch2d_7,mem_patch2d
+	ifetch 3,contr
+	store 3,mem_le_att_opcode
+le_parse_att_p:
+	beq ATTOP_ERROR_RESPONSE,le_parse_att_error_response
+	beq ATTOP_EXCHANGE_MTU_REQUEST,le_parse_att_exchange_mtu_request
+	beq ATTOP_EXCHANGE_MTU_RESPONSE,le_parse_att_exchange_mtu_response
+	beq ATTOP_FIND_INFORMATION_REQUEST,le_parse_att_find_information_request
+	beq ATTOP_FIND_INFORMATION_RESPONSE,le_parse_att_find_information_response
+	beq ATTOP_FIND_BY_TYPE_VALUE_REQUEST,le_parse_att_find_by_type_value_request
+	beq ATTOP_FIND_BY_TYPE_VALUE_RESPONSE,le_parse_att_find_by_type_value_response
+	beq ATTOP_READ_BY_TYPE_REQUEST,le_parse_att_read_by_type_request
+	beq ATTOP_READ_BY_TYPE_RESPONSE,le_parse_att_read_by_type_response
+	beq ATTOP_READ_REQUEST,le_parse_att_read_request
+	beq ATTOP_READ_RESPONSE,le_parse_att_read_response
+	beq ATTOP_READ_BLOB_REQUEST,le_parse_att_read_blob_request
+	beq ATTOP_READ_BLOB_RESPONSE,le_parse_att_read_blob_response
+	beq ATTOP_READ_MULTIPLE_REQUEST,le_parse_att_read_multiple_request
+	beq ATTOP_READ_MULTIPLE_RESPONSE,le_parse_att_read_multiple_response
+	beq ATTOP_READ_BY_GROUP_TYPE_REQUEST,le_parse_att_read_by_group_type_request
+	beq ATTOP_READ_BY_GROUP_TYPE_RESPONSE,le_parse_att_read_by_group_type_response
+	beq ATTOP_WRITE_REQUEST,le_parse_att_write_request
+	beq ATTOP_WRITE_RESPONSE,le_parse_att_write_response
+	beq ATTOP_PREPARE_WRITE_REQUEST,le_parse_att_prepare_write_request
+	beq ATTOP_PREPARE_WRITE_RESPONSE,le_parse_att_prepare_write_response
+	beq ATTOP_EXECUTE_WRITE_REQUEST,le_parse_att_execute_write_request
+	beq ATTOP_EXECUTE_WRITE_RESPONSE,le_parse_att_execute_write_response
+	beq ATTOP_HANDLE_VALUE_NOTIFICATION,le_parse_att_handle_value_notification
+	beq ATTOP_HANDLE_VALUE_INDICATION,le_parse_att_handle_value_indication
+	beq ATTOP_HANDLE_VALUE_CONFIRMATION,le_parse_att_handle_value_confirmation
+	beq ATTOP_WRITE_COMMAND,le_parse_att_write_command
+	beq ATTOP_SIGNED_WRITE_COMMAND,le_parse_att_signed_write_command
+	branch assert
+
+
+le_parse_connection_update_req:
+	ifetch 9,contr
+	store 9,mem_le_new_param
+	ifetch 2,contr
+	store 2,mem_le_instant
+	fetch 1,mem_le_state
+	set1 lestate_update_param,pdata
+	store 1,mem_le_state
+	rtn
+	
+le_parse_channel_map_req:
+	ifetch 5,contr
+	store 5,mem_le_new_map
+	ifetch 2,contr
+	store 2,mem_le_instant
+	fetch 1,mem_le_state
+	set1 lestate_update_map,pdata
+	store 1,mem_le_state
+	rtn
+	
+le_parse_terminate_ind:
+	fetch 1,mem_le_op
+	set1 op_disconn,pdata
+	store 1,mem_le_op
+	rtn
+	
+le_parse_enc_req:
+	increase 10,contr
+	ifetch 8,contr
+	store 8,mem_le_skdm
+	ifetch 4,contr
+	store 4,mem_le_ivm
+	jam XT_LL_ENC_RSP,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+le_parse_enc_rsp:
+	ifetch 8,contr
+	store 8,mem_le_skds
+	ifetch 4,contr
+	store 4,mem_le_ivs
+	branch generate_sk
+	
+le_parse_start_enc_req:
+	fetch 1,mem_le_state
+	set1 lestate_encryption,pdata
+	store 1,mem_le_state
+	jam XT_LL_START_ENC_RSP,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+le_parse_start_enc_rsp:
+	rtn master
+	jam XT_LL_START_ENC_RSP,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+le_parse_unknown_rsp:
+	rtn
+	
+le_parse_feature_req:
+	jam XT_LL_FEATURE_RSP,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+le_parse_feature_rsp:
+	rtn
+	
+le_parse_pause_enc_req:
+	rtn
+	
+le_parse_pause_enc_rsp:
+	rtn
+	
+le_parse_version_ind:
+	rtn master
+	jam XT_LL_VERSION_IND,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+le_parse_reject_ind:
+	rtn
+
+
+le_parse_smp_pairing_request:
+	store 1,mem_le_preq
+	ifetch 6,contr
+	istore 6,contw
+	jam XT_SMP_PAIRING_RESPONSE,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+le_parse_smp_pairing_response:
+	store 1,mem_le_pres
+	ifetch 6,contr
+	istore 6,contw
+	jam XT_SMP_PAIRING_CONFIRM,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+le_parse_smp_pairing_confirm:
+	arg mem_le_rconfirm,contw
+	call memcpy16
+	jam XT_SMP_PAIRING_RANDOM,mem_fifo_temp
+	branch  le_xtype_fifo_in,master
+	jam XT_SMP_PAIRING_CONFIRM,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+le_parse_smp_pairing_random:
+	call authenticate_rconfirm
+	branch le_parse_smp_pairing_random_success,zero
+	jam XT_SMP_PAIRING_FAILED,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+le_parse_smp_pairing_random_success:
+	call generate_stk
+	jam XT_LL_ENC_REQ,mem_fifo_temp
+	branch le_xtype_fifo_in,master
+	jam XT_SMP_PAIRING_RANDOM,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+le_parse_smp_pairing_failed:
+	rtn
+	
+le_parse_smp_encryption_information:
+	arg mem_le_peer_ltk,contw
+	branch memcpy16
+	
+le_parse_smp_master_identification:
+	rtn
+	
+le_parse_smp_identity_information:
+	rtn
+	
+le_parse_smp_identity_address_information:
+	rtn
+	
+le_parse_smp_signing_information:
+	rtn
+	
+le_parse_smp_security_request:
+	rtn
+
+le_parse_att_error_response:
+	increase -2,contr
+	ifetcht 1,contr
+	setarg ATTOP_FIND_BY_TYPE_VALUE_REQUEST
+	isub temp,null
+	branch le_parse_att_error_res_find_by_type_value,zero
+	setarg ATTOP_FIND_INFORMATION_REQUEST
+	isub temp,null
+	branch le_parse_att_error_res_find_info,zero
+	setarg ATTOP_READ_BY_TYPE_REQUEST
+	isub temp,null
+	branch le_parse_att_error_res_read_by_type,zero
+	setarg ATTOP_READ_BLOB_REQUEST
+	isub temp,null
+	branch le_parse_att_error_res_read_blob,zero
+	setarg ATTOP_READ_MULTIPLE_REQUEST
+	isub temp,null
+	branch le_parse_att_error_res_read_multiple,zero
+	rtn
+	
+le_parse_att_error_res_find_by_type_value:
+	rtn
+	
+le_parse_att_error_res_find_info:
+	rtn
+	
+le_parse_att_error_res_read_by_type:
+	rtn
+	
+le_parse_att_error_res_read_blob:
+	rtn
+	
+le_parse_att_error_res_read_multiple:
+	rtn
+
+	
+le_parse_att_exchange_mtu_request:
+	jam ATTOP_EXCHANGE_MTU_RESPONSE,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+le_parse_att_exchange_mtu_response:
+	rtn
+	
+le_parse_att_find_information_request:
+	rshift8 pdata,pdata
+	store 2,mem_le_search_handle_start
+	ifetch 2,contr
+	store 2,mem_le_search_handle_end
+	jam ATTOP_FIND_INFORMATION_RESPONSE,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+le_parse_att_find_information_response:
+	rtn
+	
+le_parse_att_find_info_res_multi:
+	rtn
+	
+le_parse_att_find_info_res_error:
+	rtn
+	
+le_parse_att_find_by_type_value_request:
+	rshift8 pdata,pdata
+	store 2,mem_le_search_handle_start
+	ifetch 2,contr
+	store 2,mem_le_search_handle_end
+	ifetch 2,contr
+	store 2,mem_le_uuid//type
+	ifetch 2,contr
+	store 2,mem_le_search_att_type//value
+	jam ATTOP_FIND_BY_TYPE_VALUE_RESPONSE,mem_fifo_temp
+	branch le_xtype_fifo_in
+
+	
+le_parse_att_find_by_type_value_response:
+	rtn
+	
+le_parse_att_read_by_type_request:
+	rshift8 pdata,pdata
+	store 2,mem_le_search_handle_start
+	ifetch 2,contr
+	store 2,mem_le_search_handle_end
+	ifetch 2,contr
+	store 2,mem_le_search_att_type
+	jam ATTOP_READ_BY_TYPE_RESPONSE,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+le_parse_att_read_by_type_response:
+	rtn
+	
+le_parse_att_read_request:
+	fetch 2,mem_le_rxbuf+7
+	store 2,mem_le_att_handle
+	jam ATTOP_READ_RESPONSE,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+le_parse_att_read_response:
+	rtn
+	
+le_send_att_read_res_end:
+	rtn
+	
+le_prepare_descriptor:
+	rtn
+
+	
+le_parse_att_read_blob_request:
+	ifetch 2,contr
+	store 2,mem_le_att_offset
+	jam ATTOP_READ_BLOB_RESPONSE,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+le_parse_att_read_blob_response: 
+	rtn
+	
+le_parse_att_read_multiple_request:
+	fetch 1,mem_le_rxbuf+1
+	increase -5,pdata
+	rshift pdata,pdata
+	store 1,mem_le_temp
+	jam ATTOP_READ_MULTIPLE_RESPONSE,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+le_parse_att_read_multiple_response:
+	rtn
+	
+le_parse_att_read_by_group_type_request:
+	rshift8 pdata,pdata
+	store 2,mem_le_search_handle_start
+	ifetch 2,contr
+	store 2,mem_le_search_handle_end
+	ifetch 2,contr
+	store 2,mem_le_search_att_type
+	jam ATTOP_READ_BY_GROUP_TYPE_RESPONSE,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+le_parse_att_read_by_group_type_response:
+	rtn
+	
+le_parse_att_write_request:
+	fetch 1,mem_le_rxbuf+1
+	increase -7,pdata
+	icopy loopcnt
+	fetcht 2,mem_le_att_handle
+	call le_att_get_handle_ptr
+	branch le_parse_att_write_request_fail,blank
+	ifetch 1,contr
+	isub loopcnt,null
+	nbranch le_parse_att_write_request_fail,positive
+	copy contr,contw
+
+	arg mem_le_rxbuf+9,contr
+	call memcpy
+	jam BT_EVT_LE_WRITE_REQUEST,mem_fifo_temp
+	call ui_ipc_send_event
+le_parse_att_write_request_fail:
+	jam ATTOP_WRITE_RESPONSE,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+le_parse_att_write_response:
+	fetch 1,mem_le_conn_sm
+	rtn
+	
+le_parse_att_prepare_write_request:
+	rtn
+	
+le_parse_att_prepare_write_response:
+	rtn
+	
+le_parse_att_execute_write_request:
+	rtn
+	
+le_parse_att_execute_write_response:
+	rtn
+	
+le_parse_att_handle_value_notification:
+	//copy contr,rega
+	//fetcht 6,mem_le_plap
+	//fetch 6,mem_le_addr_slave1
+	//isub temp,null
+	//branch le_kb_handle_value_notification,zero
+	//copy rega,contr
+	ifetch 5,contr
+	store 5,mem_mouse_data
+	jam SEND_MOUSE_DATA_CMD,mem_mcmd
+	//jam 3,0x4905
+	call usb_isr
+	rtn
+le_kb_handle_value_notification:
+	copy rega,contr
+	ifetch 8,contr
+	store 8,mem_mouse_data
+	jam SEND_KB_DATA_CMD,mem_mcmd
+	call usb_isr
+	rtn
+	
+le_parse_att_handle_value_indication:
+	rtn
+	
+le_parse_att_handle_value_confirmation:
+	rtn
+	
+le_parse_att_write_command:
+	fetch 1,mem_le_rxbuf+1
+	increase -7,pdata
+	icopy loopcnt
+	fetcht 2,mem_le_att_handle
+	call le_att_get_handle_ptr
+	branch le_parse_att_write_command_fail,blank
+	ifetch 1,contr
+	isub loopcnt,null
+	nbranch le_parse_att_write_command_fail,positive
+	copy contr,contw
+	copy contr,rega
+	copy loopcnt,regb
+	arg mem_le_rxbuf+9,contr
+	call memcpy
+	jam PRCP_LE,mem_prcp
+	call le_writeatt_cb
+le_parse_att_write_command_fail:
+	rtn
+
+	/* rega pointers to data, regb is length */
+le_writeatt_cb:
+	fetch 2,mem_cb_att_write
+	rtn blank
+	iforce pc
+
+
+le_parse_att_signed_write_command:
+	rtn
+
+le_supervision_update:
+	fetcht 4,mem_le_supervision_timer
+	call get_clkbt
+	isub temp,timeup					/* and to 28 bits */
+	deposit timeup
+	fetcht 2,mem_le_superto
+	lshift4 temp,temp
+	lshift temp,temp
+	isub temp,pdata
+	rtn
+	
+le_supervision_flush:
+	call get_clkbt
+	store 4,mem_le_supervision_timer
+	rtn
+	
+	
+	
+le_adv:
+	set1 mark_ext_patch,mark
+	bpatch patch2e_0,mem_patch2e
+	fetch 1,mem_le_adv_enable
+	rtn blank
+	arg le_adv_interval_timer,queue
+	call timer_check
+	nrtn blank
+	disable master
+	enable swfine
+	call le_init_adv
+	call le_next_adv_channel
+	call le_send_adv_ind
+	nbranch le_adv_not_match,match
+	set1 mark_ext_patch,mark
+	bpatch patch2e_1,mem_patch2e
+	fetch 1,mem_le_req_rcv
+	increase 1,pdata
+	store 1,mem_le_req_rcv
+	fetch 1,mem_le_rxbuf
+	and pdata,0x0f,pdata
+	beq SCAN_REQ,le_send_scan_response
+	beq CONNECT_REQ,parse_connect_req
+le_adv_not_match:
+	nop 10000
+	fetch 1,mem_le_ch_mapped
+	bne 39,le_adv
+	call le_ledoff
+	arg le_adv_interval_timer,queue
+	fetch 2,mem_le_adv_interval_max
+	branch timer_init
+	
+
+le_receive_window_size:
+	set1 mark_ext_patch,mark
+	bpatch patch2e_2,mem_patch2e
+	fetch 1,mem_le_peer_sca
+	call le_sca_map
+	fetch 2,mem_le_tsniff
+	imul32 temp,pdata
+	arg 375,temp
+	imul32 temp,pdata
+	arg 100000,temp
+	idiv temp
+	fetch 1,mem_le_window_size
+	arg 20000,temp
+	imul32 temp,pdata
+	store 4,mem_le_transmit_window
+	set1 mark_ext_patch,mark
+	bpatch patch2e_3,mem_patch2e
+	fetch 2,mem_rx_window_sniff
+	call wait_div_end
+	quotient temp
+	iadd temp,pdata
+	store 2,mem_le_receive_window
+	rtn
+
+parse_connect_req:
+	set1 mark_ext_patch,mark
+	bpatch patch2e_4,mem_patch2e
+	fetch 6,mem_le_rxbuf+8
+	fetcht 6,mem_le_lap
+	isub temp,null
+	nrtn zero
+	call le_scan_check_sender_addr_type
+	copy rega,pdata
+	store 1,mem_le_conn_peer_addr_type
+	fetch 7,mem_le_rxbuf+21
+	store 7,mem_tmp_buffer
+	ifetch 8,contr
+	istore 8,contw
+	fetch 6,mem_le_rxbuf+2
+	store 6,mem_le_plap
+	set1 mark_ext_patch,mark
+	bpatch patch2e_5,mem_patch2e
+	increase 6,contr
+	ifetch 8,contr
+	store 8,mem_le_access 	// and crcinit & window size
+	ifetcht 2,contr				// transmit offset
+	lshift2 temp,temp			
+	ifetch 2,contr				// connInterval
+	lshift2 pdata,pdata
+	store 2,mem_le_tsniff
+	store 4,mem_le_anchor
+	isub temp,pdata
+	add pdata,-2,clke_bt
+	ifetch 9,contr
+	store 9,mem_le_slave_latency// and super to & channel map
+	set1 mark_ext_patch,mark
+	bpatch patch2e_6,mem_patch2e
+	ifetch 1,contr
+	rshift4 pdata,temp
+	rshift temp,temp
+	storet 1,mem_le_peer_sca
+	and_into 0x1f,pdata
+	store 1,mem_le_hop
+	call le_receive_window_size
+	call le_calc_channel_map
+	call le_init_slave
+	call context_new
+	nrtn zero
+	set1 mark_ext_patch,mark
+	bpatch patch2e_7,mem_patch2e
+	arg 0,temp//status successful
+	call hci_send_le_conn_complete
+	call calc_clke_offset
+	jam BT_EVT_LE_CONNECTED,mem_fifo_temp
+	call ui_ipc_send_event
+//	call app_get_lpm_wake_lock
+	branch context_save
+	
+
+le_init_attlist_search:
+	set1 mark_ext_patch,mark
+	bpatch patch2f_0,mem_patch2f
+	fetch 2,mem_le_search_handle_start
+	iforce regb
+	fetch 2,mem_le_search_handle_end
+	iforce regc
+	arg mem_le_att_list,contr
+	enable user
+	rtn
+
+	/* return handle in pdata, blank:end of list, positive:in range */
+le_att_handle_inrange:
+	ifetch 2,contr
+	rtn blank
+	isub regb,null			/* less than start ? */
+	nrtn positive
+	isub regc,null			/* greater than end ? */
+	rtn zero
+	branch le_att_handle_blank,positive
+	force 1,null
+	rtn
+le_att_handle_blank:
+	force 0,pdata
+	rtn
+
+	/* handle in temp, return pointer in contr to length, blank not found */	
+le_att_get_handle_ptr:
+	arg mem_le_att_list,contr
+le_att_get_handle_loop:
+	ifetch 2,contr
+	rtn blank
+	increase 2,contr
+	isub temp,null
+	rtn zero
+	ifetch 1,contr			/* length */
+	iadd contr,contr
+	branch le_att_get_handle_loop
+	
+le_data_send_write_req:
+	jam 0x2,mem_le_handle_data_len
+	setarg 0x0001
+	store 2,mem_le_handle_data
+	jam CONN_SM_WAIT_WRITE_RES,mem_le_conn_sm
+	jam ATTOP_WRITE_REQUEST,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+le_data_wait_write_res:
+	rtn
+le_data_wait_write_res1:
+	rtn
+le_conn_sm_master:
+	set1 mark_ext_patch,mark
+	bpatch patch2f_1,mem_patch2f
+	fetch 1,mem_device_option
+	rtnne dvc_op_dongle
+	fetch 1,mem_le_conn_sm
+	beq CONN_SM_SEND_WRITE_REQ,le_data_send_write_req
+	beq CONN_SM_WAIT_WRITE_RES,le_data_wait_write_res
+	beq CONN_SM_WAIT_WRITE_RES1,le_data_wait_write_res1
+	rtn
+
+le_ukey_init:
+	setarg le_ukey
+	store 2,mem_cb_le_process
+	hjam uart_ctrl_normal,core_uart_ctrl
+	setarg uart_baud_115200
+	hstore uart_baud_len,core_uart_baud
+	hjam uartclk_dpll,core_uart_clksel
+	hjam 0x4,core_gpio_sel1
+	setarg le_ukey_wcb
+	store 2,mem_cb_att_write
+	call le_init_att
+	rtn wake
+	branch eeprom_load_reconn_info
+	
+	
+le_ukey:
+	fetch 1,mem_le_mode
+	compare lemode_slave,pdata,0xff
+	setarg 5
+	call set_pwm_steadyon,true
+	ncall set_pwm_blink,true
+	call uartd_prepare_rx
+	branch le_ukey_senddata,blank
+	fetch 2,mem_le_notify_attr_start
+	iforce contw
+	sub loopcnt,20,null
+	branch le_ukey_loop,positive
+	force 20,loopcnt
+le_ukey_loop:
+	ifetch 1,contru
+	istore 1,contw
+	loop le_ukey_loop
+	call uartd_rxdone
+le_ukey_senddata:
+	jam notify_handle,mem_le_notify_handle
+	fetcht 2,mem_le_notify_attr_start
+	ifetch 1,temp
+	rtn blank
+	call le_xtype_fifo_is_full
+	nrtn blank
+	jam ATTOP_HANDLE_VALUE_NOTIFICATION,mem_fifo_temp 
+	branch le_xtype_fifo_in
+
+le_ukey_wcb:
+	copy regb,temp
+	call uartd_prepare_tx
+	copy rega,contr
+	copy regb,loopcnt
+le_writeatt_cb_loop:
+	ifetch 1,contr
+	istore 1,contwu
+	loop le_writeatt_cb_loop
+	branch uartd_send
+
+le_clear_notify_att:
+	fetch 1,mem_device_option
+	rtnne dvc_op_ukey
+	fetch 2,mem_le_notify_handle
+	rtnne notify_handle
+	fetcht 2,mem_le_notify_attr_start
+	setarg 0
+	istore 9,temp
+	istore 9,contw
+	istore 2,contw
+	rtn
+
+
+le_ledoff:
+	fetcht 1,mem_le_adv_led
+	setflip gpio_active_bit,temp
+	branch gpio_out
+
+	
+le_modified_name:
+	set1 mark_ext_patch,mark
+	bpatch patch2f_2,mem_patch2f
+	call le_modified_name_att_list
+	branch le_modified_name_adv
+
+le_modified_name_att_list:
+	fetch 1,mem_le_name_len
+	copy pdata,loopcnt
+	arg UUID_CHRCTR_DEVICE_NAME,temp
+	call le_att_get_uuid_ptr
+	increase 1,contr
+	copy contr,contw
+	arg mem_le_name,contr
+	call memcpy
+	fetch 1,mem_le_name_len
+	sub pdata,MAX_NAME_LEN,loopcnt
+	copy loopcnt,temp
+	copy loopcnt,pdata
+	ncall memcpy_empty,blank	
+	rtn
+
+le_modified_name_adv:	
+	fetch 1,mem_le_adv_data_len
+	fetcht 1,mem_le_adv_data
+	isub temp,pdata
+	copy pdata,loopcnt
+	copy pdata,rega
+	fetch 1,mem_le_adv_data
+	increase 1,pdata
+	arg mem_le_adv_data,contr
+	iadd contr,contr
+	arg mem_le_adv_temp,contw
+	call memcpy
+	set1 mark_ext_patch,mark
+	bpatch patch2f_3,mem_patch2f
+	fetch 1,mem_le_name_len
+	copy pdata,loopcnt
+	increase 1,pdata
+	store 1,mem_le_adv_data
+	arg mem_le_adv_data+2,contw
+	arg mem_le_name,contr
+	call memcpy
+	copy rega,loopcnt
+	arg mem_le_adv_temp,contr
+	call memcpy
+	fetch 1,mem_le_adv_data
+	iadd rega,pdata
+	store 1,mem_le_adv_data_len
+	rtn
+
+
+le_get_device_name:
+	set1 mark_ext_patch,mark
+	bpatch patch2f_4,mem_patch2f
+	arg UUID_CHRCTR_DEVICE_NAME,temp
+	branch le_att_get_uuid_ptr
+
+	// temp is uuid to search
+le_att_get_uuid_ptr:
+	arg mem_le_att_list,contr
+le_att_get_uuid_loop:
+	ifetch 2,contr			// handle
+	branch assert,blank
+	ifetch 2,contr			// uuid
+	isub temp,null
+	rtn zero
+	ifetch 1,contr			// length 
+	iadd contr,contr
+	branch le_att_get_uuid_loop
+
+	
+memcpy_empty:
+	setarg SPACE
+	istore 1,contw
+	loop memcpy_empty
+	rtn
+
+
+le_lpm_set_mult:
+	set1 mark_ext_patch,mark
+	bpatch patch2f_5,mem_patch2f
+	disable wake
+	branch le_lpm_set_mult_attempt,attempt
+	nbranch le_lpm_lost,match
+le_lpm_set_mult_attempt:
+	call lpm_match
+	fetch 2,mem_rx_window_sniff
+	store 2,mem_le_receive_window
+	fetch 1,mem_le_rxbuf
+	compare 1,pdata,3
+	nbranch lpm_mult_short,true		// rx not empty, short interval
+	fetch 1,mem_le_txheader
+	compare 1,pdata,3
+	nbranch lpm_mult_short,true		// tx not empty, short interval
+	fetch 1,mem_le_state
+	bbit1 lestate_update_param,lpm_mult_short
+	branch lpm_mult_wait_timeout
+	
+le_lpm_lost:
+	fetcht 2,mem_rx_window_sniff
+	rshift temp,temp
+	fetch 2,mem_le_receive_window
+	iadd temp,pdata
+	store 2,mem_le_receive_window
+	branch lpm_lost
+
+le_clean_att_list_handle_enable:
+	set1 mark_ext_patch,mark
+	bpatch patch2f_6,mem_patch2f
+	jam 0,mem_le_switch_send_data
+	fetcht 2,mem_le_notify_handle
+	call le_att_check_notification_enable
+	copy rega,contw
+	setarg 0
+	istore 1,contw
+	rtn
+le_scan_addr_to_uart:
+	fetch 1,mem_device_option
+	rtnne dvc_op_module 
+	call get_uart_twptr
+	arg mem_le_plap,rega
+	call adss_hex2string_to_uart
+	setarg 0x2c
+	istore 1,contwu
+	call at_rssi_result
+	branch uartd_send
+	
+//input:regb  prcp_tx_len
+prcp_le_tx:
+	arg PRCP_TX_LE,temp
+	call le_att_check_notification_enable
+	rtnbit0 0
+	call le_xtype_fifo_is_full
+	nrtn blank
+	arg PRCP_TX_LE,temp
+	storet 2,mem_le_notify_handle
+	call le_att_get_handle_ptr
+	branch assert,blank
+	add contr,1,contw
+	arg PRCP_TX_DATA_LEN,loopcnt
+	arg mem_prcp_data,contr
+	call memcpy
+	jam ATTOP_HANDLE_VALUE_NOTIFICATION,mem_fifo_temp
+	branch le_xtype_fifo_in
+prcp_tx:
+	rtn
+
+	/* rega = ad type to search, return zero when found */
+le_search_adtype:
+	set1 mark_ext_patch,mark
+	bpatch patch2f_7,mem_patch2f
+	fetch 1,mem_le_rxbuf + 1
+	arg mem_le_rxbuf + 8,contr
+	iadd contr,loopcnt
+le_search_adtype_loop:
+	ifetcht 1,contr
+	ifetch 1,contr
+	isub rega,null
+	rtn zero
+	add temp,-1,pdata
+	iadd contr,contr
+	deposit loopcnt
+	isub contr,null
+	branch le_search_adtype_loop,positive
+	force 1,null
+	rtn
+	
+
+	
+/******************************************/
+/*************   LMP Parse   **************/
+/******************************************/
+init_lmp:
+	rtn wake
+init_lmp_work:
+	setarg 0
+	store 1,mem_lmp_to_send
+	store 1,mem_conn_sm
+	store 1,mem_lmo_opcode1
+	store 1,mem_lmo_opcode2
+	store 1,mem_esco_addr
+	store 1,mem_auth_enable
+	store 1,mem_connection_options
+	store 1,mem_pairing_auth
+	jam SWITCH_FLAG_INIT,mem_switch_flag
+	jam 0,mem_switch_fail_master_count
+	jam NULL_ENCRYP,mem_wait_encryption
+init_lmp_reinit:	
+	set1 mark_ext_patch,mark
+	bpatch patch3c_0,mem_patch3c
+	jam 0,mem_pairing_auth
+	jam 0,mem_sp_localsm
+	jam 0,mem_lmp_conn_state
+	fetch 1,mem_device_option
+	rtnne dvc_op_hci,pdata
+	jam 0,mem_link_key_exists
+	//fall through
+parse_rx_done:
+	rtn
+
+parse_lmp:
+	set1 mark_ext_patch,mark
+	bpatch patch3c_1,mem_patch3c
+	call setlocalsm_master,master	//use this flag in hci
+	ncall setlocalsm_slave,master
+	fetch 1,mem_lmo_opcode2
+	ncall lmo_fifo_process,blank
+	fetch 1,mem_lmo_opcode2
+	nrtn blank
+	fetch 1,mem_state_map
+	rtnbit0 smap_rxlmp
+	set0 smap_rxlmp,pdata
+	set0 mark_rxbuf_inuse,mark
+	store 1,mem_state_map
+	fetch 1,mem_rxbuf
+	fetcht 1,mem_state_map
+	isolate1 smap_lmptidinit,pdata
+	setflag true,smap_lmptid,temp
+	storet 1,mem_state_map
+	and_into 0x2,temp //smap_lmptid only
+	storet 1,mem_lmo_tid2
+	fetcht 1,mem_state_map
+	rshift pdata,pdata			/* align lmp_opcode */
+  	store 1,mem_lmi_opcode2
+	set1 mark_ext_patch,mark
+	bpatch patch3c_2,mem_patch3c
+  	fetch 1,mem_lmi_opcode2
+  	beq LMP_ESCAPE,parse_lmp_escape//multi
+  	beq LMP_ACCEPTED,parse_lmp_accepted//multi
+	beq LMP_NOT_ACCEPTED,parse_lmp_not_accepted//multi
+  	beq LMP_SET_AFH, parse_lmp_set_afh
+  	beq LMP_CLKOFFSET_REQ, parse_lmp_clkoffset_req
+ 	beq LMP_ENCRYPTION_MODE_REQ, parse_lmp_encryption_mode_req
+ 	beq LMP_ENCRYPTION_KEY_SIZE_REQ,parse_lmp_crypt_key
+	beq LMP_AUTO_RATE,parse_lmp_auto_rate
+	beq LMP_TEST_CONTROL,parse_lmp_test_control//multi
+	beq LMP_TEST_ACTIVATE,parse_lmp_test_activate
+	beq LMP_SETUP_COMPLETE,parse_lmp_setup_complete
+	beq LMP_SUPERVISION_TIMEOUT,parse_lmp_supervision_timeout
+	beq LMP_FEATURES_REQ,parse_lmp_features_req
+	beq LMP_HOST_CONNECTION_REQ,parse_lmp_conn_req
+	beq LMP_VERSION_REQ,parse_lmp_version_req
+	beq LMP_VERSION_RES,parse_lmp_version_res
+	beq LMP_DETACH,parse_lmp_detach
+	beq LMP_MAX_SLOT,parse_lmp_max_slot
+	beq LMP_MAX_SLOT_REQ,parse_lmp_max_slot_req
+	beq LMP_NAME_REQ,parse_lmp_name_req
+	beq LMP_NAME_RES,parse_lmp_name_res
+	beq LMP_FEATURES_RES,parse_lmp_features_res
+	beq LMP_COMB_KEY,parse_lmp_comb_key
+	beq LMP_AU_RAND, parse_lmp_au_rand
+	beq LMP_IN_RAND,parse_lmp_in_rand
+	beq LMP_SRES,parse_lmp_sres
+	beq LMP_INCR_POWER_REQ,parse_lmp_incr_power
+	beq LMP_DECR_POWER_REQ,parse_lmp_decr_power
+	beq LMP_MAX_POWER, parse_lmp_max_power
+	beq LMP_MIN_POWER, parse_lmp_min_power
+	beq LMP_PAGE_MODE_REQ, parse_lmp_page_mode_req
+	beq LMP_PAGE_SCAN_MODE_REQ, parse_lmp_page_scan_mode_req
+	beq LMP_PREFERRED_RATE, parse_lmp_preferred_rate
+	beq LMP_REMOVE_SCO_LINK_REQ, parse_lmp_remove_sco_link_req
+	beq LMP_SCO_LINK_REQ, parse_lmp_sco_link_req
+	beq LMP_SLOT_OFFSET, parse_lmp_slot_offset
+	beq LMP_SNIFF_REQ, parse_lmp_sniff_req
+	beq LMP_START_ENCRYPTION_REQ, parse_lmp_start_encryption_req
+	beq LMP_STOP_ENCRYPTION_REQ, parse_lmp_stop_encryption_req
+	beq LMP_SWITCH_REQ, parse_lmp_switch_req
+	beq LMP_TEMP_RAND, parse_lmp_temp_rand
+	beq LMP_TEMP_KEY, parse_lmp_temp_key
+	beq LMP_TIMING_ACCURACY_REQ, parse_lmp_timing_accuracy_req
+	beq LMP_TIMING_ACCURACY_RES, parse_lmp_timing_accuracy_res
+	beq LMP_UNIT_KEY, parse_lmp_unit_key
+	beq LMP_UNSNIFF_REQ, parse_lmp_unsniff_req
+	beq LMP_USE_SEMI_PERMANENT_KEY, parse_lmp_use_semi_permanend_key
+	beq  LMP_ENCAPSULATED_HEADER,parse_lmp_encapsulated_header
+	beq  LMP_ENCAPSULATED_PAYLOAD,parse_lmp_encapsulated_payload
+	beq	LMP_SIMPLE_PAIRING_CONFIRM,parse_simple_pairing_confirm
+	beq  LMP_SIMPLE_PAIRING_NUMBER,parse_lmp_simple_pairing_number
+	beq  LMP_DHKEY_CHECK,parse_dhkey_check
+	beq LMP_CLKOFFSET_RES, parse_lmp_clkoffset_res
+	beq LMP_ENC_KEY_SIZE_MASK_REQ,parse_enc_key_size_mask_req
+/* lmp is not recognized, check to see if we respond to all messages */ 
+/* rejecting the unrecognized message with PDU not recognized */
+reject_unknown_packet:
+	jam UNKNOWN_LMP_PDU,mem_lmo_reason2
+reject_lmp_packet:
+	jam LMP_NOT_ACCEPTED,mem_lmo_opcode2
+	rtn
+
+parse_lmp_clkoffset_req:
+	jam LMP_CLKOFFSET_RES,mem_lmo_opcode2
+	rtn	
+
+parse_enc_key_size_mask_req:
+	jam LMP_ENC_KEY_SIZE_MASK_RES,mem_lmo_opcode2
+	rtn
+	
+parse_lmp_set_afh:
+	fetch 4,mem_rxbuf+1
+	lshift pdata,pdata
+	store 4,mem_afh_instant
+	fetch 1,mem_rxbuf+5
+	store 1,mem_afh_new_mod
+	fetch 5,mem_rxbuf+6
+	store 5,mem_afh_map_new
+	fetch 5,mem_rxbuf+11
+	istore 5,contw
+	fetch 1,mem_mode
+	set1 afh_change,pdata
+	store 1,mem_mode
+	rtn
+parse_lmp_escape:
+	fetch 1,mem_rxbuf+1
+	set1 7,pdata
+	store 1,mem_lmi_opcode2
+	beq LMP_EXT_ACCEPTED,parse_lmpext_accepted
+	beq LMP_NOT_ACCEPTED_EXT,parse_lmpext_not_accepted
+	beq LMP_SNIFF_SUBRATING_REQ, parse_lmp_sniff_subrating_req
+	beq LMP_SNIFF_SUBRATING_RES, parse_lmp_sniff_subrating_res
+	beq LMP_PACKET_TYPE_TABLE_REQ,parse_lmpext_packet_type_table_req
+	beq LMP_EXT_FEATURES_REQ,parse_lmpext_features_req
+	beq LMP_EXT_FEATURES_RES,parse_lmpext_features_res
+	beq LMP_EXT_CHN_CLASSIFICATION_REQ,parse_lmpext_chn_classification_req
+	beq LMP_PAUSE_ENCRYPTION_REQ,parse_lmpext_pause_encrypt
+	beq LMP_RESUME_ENCRYPTION_REQ,parse_lmpext_resume_encrypt
+	beq LMP_IO_CAP_REQ,parse_lmpext_iocap_req
+	beq LMP_IO_CAP_RES,parse_lmpext_iocap_res
+	beq LMP_EXT_REMOVE_ESCO_REQ,parse_lmpext_remove_esco_req
+	beq LMP_EXT_ESCO_LINK_REQ,parse_lmpext_esco_link_req
+	rtneq LMP_EXT_FEATURES_RES
+
+
+reject_unknown_ext_packet:
+	jam LMP_NOT_ACCEPTED_EXT,mem_lmo_opcode2
+	jam UNKNOWN_LMP_PDU,mem_lmo_reason2
+	
+	rtn
+parse_lmpext_chn_classification_req:
+	jam LMP_NOT_ACCEPTED_EXT,mem_lmo_opcode2
+	jam NOT_SUPPORT_CHN_CLASSIFICATION,mem_lmo_reason2
+	rtn
+	
+parse_lmpext_esco_link_req:	
+	fetch 1,mem_rxbuf+2
+	store 1,mem_sco_handle
+	fetch 1,mem_rxbuf+3
+	store 1,mem_esco_addr
+	fetch 1,mem_rxbuf+5
+	store 1,mem_esco_desco
+	fetch 1,mem_rxbuf+9
+	store 1,mem_esco_type
+	fetch 1,mem_rxbuf+14
+	store 1,mem_air_mode
+	bmark1 mark_esco,check_esco_prarm
+	set1 mark_esco,mark
+	call push_tid_follow
+	store 1,mem_accptsco_tid
+	force 0,temp
+	branch hci_send_conn_req_event
+
+parse_lmpext_esco_link_req_change_param:
+	jam LMP_EXT_ESCO_LINK_REQ,mem_lmo_opcode2
+	jam prarm_neogotiation,mem_neogotiation_state
+	branch cmd_exit
+
+check_esco_prarm:
+	fetch 1,mem_esco_type
+	bne type_hv3,reject_esco_prarm	
+	jam LMP_EXT_ACCEPTED,mem_lmo_opcode2
+	branch esco_prarm_common
+reject_esco_prarm:
+	set0 mark_esco,mark
+	jam LMP_NOT_ACCEPTED_EXT,mem_lmo_opcode2
+	force HCI_ERROR_UNKNOWN_HCI_COMMAND,temp //sco fail
+	call hci_send_sco_complete
+esco_prarm_common:
+	jam LMP_EXT_ESCO_LINK_REQ,mem_lmi_opcode2
+	rtn
+
+	
+parse_lmpext_remove_esco_req:
+	jam LMP_EXT_ACCEPTED,mem_lmo_opcode2
+	jam LMP_EXT_REMOVE_ESCO_REQ,mem_lmi_opcode2
+	branch stop_esco
+	
+parse_lmpext_iocap_req:
+	call iocap_lmpext_load
+	fetch 1,mem_device_option
+	beq dvc_op_hci,iocap_lmpext_hci
+	jam LMP_IO_CAP_RES,mem_lmo_opcode2
+	rtn
+
+parse_lmpext_iocap_res:
+	call iocap_lmpext_load
+	fetch 1,mem_device_option
+	beq dvc_op_hci,iocap_lmpext_hci
+	branch iocap_lmpext_common
+	
+iocap_lmpext_load:
+	arg      mem_sp_iocap_remote,contw
+	fetch 3, mem_rxbuf+2
+	istore    3,contw
+	rtn
+	
+iocap_lmpext_hci:
+	call hci_send_io_cap_response_event
+iocap_lmpext_common:
+	call check_localsm
+	ncall hci_send_io_cap_req_event,true
+	branch master_set_mem_master_sp_flag,true//is un very ok to use master flag,but we have to add many codes if wo don't
+	rtn
+parse_lmpext_accepted:
+	fetch 1,mem_rxbuf+3
+	set1 7,pdata
+	store 1,mem_lmi_accepted_opcode
+	beq LMP_PACKET_TYPE_TABLE_REQ,parse_lmpext_accepted_ptt
+	beq LMP_EXT_ESCO_LINK_REQ,play_sco
+	beq LMP_EXT_REMOVE_ESCO_REQ,parse_lmpext_stop_esco
+	rtn
+
+parse_lmpext_stop_esco:
+	branch stop_esco
+	
+parse_lmpext_not_accepted:
+	fetch 1,mem_rxbuf+3
+	set1 7,pdata
+	store 1,mem_lmi_accepted_opcode
+	beq LMP_PACKET_TYPE_TABLE_REQ,parse_lmpext_not_accepted_ptt
+	beq LMP_EXT_ESCO_LINK_REQ,parse_lmpext_not_accepted_esco
+	rtn
+
+parse_lmpext_not_accepted_esco:
+	set0 mark_esco,mark
+	rtn
+
+parse_lmpext_accepted_ptt:
+	fetch 1,mem_ptt
+	fetcht 1,mem_state_map
+	nsetflag blank,smap_edr,temp
+	storet 1,mem_state_map
+parse_lmpext_not_accepted_ptt:
+	fetch 1,mem_state
+	rtnbit0 state_init_seq
+	set0 state_init_seq,pdata
+	store 1,mem_state
+	fetch 1,mem_auth_enable
+	nbranch hci_send_linkkey_req,blank
+	jam LMP_SETUP_COMPLETE,mem_lmo_opcode2
+	rtn
+
+parse_lmpext_pause_encrypt:
+	nbranch parse_lmpext_pause_encrypt_slave, master
+	jam LMP_STOP_ENCRYPTION_REQ,mem_lmo_opcode2
+	branch tid_reply
+
+parse_lmpext_pause_encrypt_slave:	
+	jam LMP_PAUSE_ENCRYPTION_REQ, mem_lmo_opcode2
+	rtn
+
+parse_lmpext_resume_encrypt:
+//trans file to pc may cause pause/resume encrypt
+//if ms is conn_sm_wait_end the controllor won't send ack after recieved start_encypt_accept
+	call tid_reply
+	branch lmp_start_encryption
+
+parse_lmpext_features_req:
+	jam LMP_EXT_FEATURES_RES,mem_lmo_opcode2
+	rtn
+
+parse_lmpext_features_res:
+	fetcht 1,mem_rxbuf+4
+	and temp,0x1,temp
+	storet 1,mem_remote_sppcap
+	fetch 1,mem_hci_cmd
+	bne hci_cmd_wait_remote_ext_feature,parse_lmpext_features_res_not_hci
+	jam 0,mem_hci_cmd
+	call hci_send_remote_ext_features_event
+parse_lmpext_features_res_not_hci:
+	fetch 1,mem_conn_sm
+	rtnne CONN_SM_WAIT_FEATURES_EXT
+	jam CONN_SM_SEND_CONN_REQ,mem_conn_sm
+	branch process_conn_sm
+
+parse_lmp_accepted:
+	fetch 1,mem_rxbuf+1
+	store 1,mem_lmi_accepted_opcode
+	beq LMP_HOST_CONNECTION_REQ,parse_lmp_accepted_hostconn//ok
+	beq LMP_IN_RAND,parse_lmp_accepted_inrand//ok
+	beq LMP_ENCRYPTION_MODE_REQ,parse_lmp_accepted_enc_mode//ok
+	beq LMP_ENCRYPTION_KEY_SIZE_REQ,parse_lmp_accepted_enc_keysize//ok
+	beq LMP_START_ENCRYPTION_REQ,parse_lmp_accepted_start_enc//ok
+	beq LMP_STOP_ENCRYPTION_REQ,parse_lmp_accepted_stop_enc//ok
+	beq LMP_UNSNIFF_REQ,parse_lmp_accepted_unsniff_req//ok
+	beq LMP_SNIFF_REQ,parse_lmp_accepted_sniff_req//ok
+	beq LMP_SCO_LINK_REQ,play_sco
+//	beq LMP_REMOVE_SCO_LINK_REQ,stop_sco
+	beq LMP_SWITCH_REQ,parse_lmp_accepted_switch
+	// simple pairing 
+	beq LMP_ENCAPSULATED_HEADER,parse_lmp_accepted_encapsulated_header//ok
+	beq LMP_ENCAPSULATED_PAYLOAD,parse_lmp_accepted_encapsulated_payload//ok
+	beq LMP_SIMPLE_PAIRING_NUMBER,parse_lmp_accepted_simple_pairing_number//ok
+	beq LMP_DHKEY_CHECK,parse_lmp_accepted_dhkey_check//ok
+	rtn
+	
+parse_lmp_not_accepted:
+	fetch 1,mem_rxbuf+1
+	store 1,mem_lmi_accepted_opcode
+	beq LMP_NAME_REQ,parse_lmp_not_accepted_name_req//ok
+	beq LMP_HOST_CONNECTION_REQ,parse_lmp_not_accepted_hostconn//ok
+	beq LMP_AU_RAND,parse_lmp_not_accepted_aurand//ok
+	beq LMP_SCO_LINK_REQ,parse_lmp_not_accepted_sco_link_req//ok
+	beq LMP_IN_RAND,parse_lmp_not_accepted_inrand//ok
+	beq LMP_SWITCH_REQ,parse_lmp_not_accepted_switch//ok
+	/* simple pairing support */
+	beq  LMP_SIMPLE_PAIRING_NUMBER,parse_lmp_not_accepted_simple_pairing_number//ok
+	beq  LMP_DHKEY_CHECK,parse_lmp_not_accepted_dhkey_check//ok
+	beq LMP_UNSNIFF_REQ,parse_lmp_not_accepted_unsniff_req
+	beq LMP_SNIFF_REQ,parse_lmp_not_acdcept_sniff_req
+	rtn
+
+parse_lmp_accepted_switch:
+	jam BT_EVT_SWITCH_ACCEPT,mem_fifo_temp
+	call ui_ipc_send_event
+	branch role_switch_prepare0
+parse_lmp_not_accepted_switch:
+	jam BT_EVT_SWITCH_NOT_ACCEPT,mem_fifo_temp
+	call ui_ipc_send_event
+	jam SWITCH_FLAG_NOT_ACCEPT,mem_switch_flag
+	setarg TIMER_SWITCH_WAITE
+	arg switch_wait_timer,queue
+	branch timer_init
+
+
+parse_lmp_accepted_hostconn:
+	//fetch 1,mem_state
+	//rtnbit0 state_init_seq
+	fetch 1,mem_lmp_conn_state
+	set1 RECEIVED_CONN_REQ,pdata
+	store 1,mem_lmp_conn_state
+	jam BT_EVT_BB_CONNECTED,mem_fifo_temp
+	call ui_ipc_send_event
+	jam LMP_PACKET_TYPE_TABLE_REQ,mem_lmo_opcode2
+	//nbranch parse_lmp_accepted_hostconn_ctn,master
+parse_lmp_accepted_hostconn_ctn:
+	/* checking to see if we requested host connection */
+	fetch 1,mem_conn_sm
+	bne CONN_SM_WAIT_CONN_ACCEPT, parse_rx_done
+	//branch parse_lmp_accepted_hostconn_master,master
+	/* continuing on with host connection state machine */
+	jam CONN_SM_AUTH_PAIR,mem_conn_sm
+	rtn
+	//branch host_create_conn_auth_pair
+
+	/* we need to move fast and send au_rand...jumping to next part of state machine for conn */
+//parse_lmp_accepted_hostconn_master:
+	//jam CONN_SM_AUTH_PAIR ,mem_conn_sm
+//	rtn
+
+parse_lmp_not_accepted_hostconn:
+	jam ACL_CONNECTION_ALREADY_EXISTS,mem_disconn_reason_send
+	jam LMP_DETACH,mem_lmo_opcode2
+	force HCI_ERROR_HOST_TIMEOUT,temp
+	call hci_send_connection_error
+	/* clearing connection state machine */
+	jam CONN_SM_STANDBY,mem_conn_sm
+	/* sending error message to host */
+	branch parse_rx_done,true
+	rtn
+	
+parse_lmp_not_accepted_sco_link_req:
+	jam LMP_SCO_LINK_REQ,mem_lmo_opcode2
+	rtn
+
+
+parse_lmp_accepted_inrand:
+	fetch 1,mem_link_key_exists
+	nrtn blank
+	call clear_linkkey
+	call  lmp_generate_key
+	rtn master
+	set1 mark_slave_in_rand_accepted,mark
+	rtn
+
+parse_lmp_accepted_enc_mode:
+	nrtn master
+	jam LMP_ENCRYPTION_KEY_SIZE_REQ,mem_lmo_opcode2
+	fetch 1,mem_state_map
+	rtnbit0 smap_encryption
+	jam LMP_STOP_ENCRYPTION_REQ,mem_lmo_opcode2
+	rtn
+
+parse_lmp_accepted_enc_keysize:
+	branch lmp_start_encryption
+	
+parse_lmp_accepted_start_enc:
+	call send_create_conn_start_l2cap_timer_sm
+	fetch 1,mem_state
+	rtnbit1 state_conn_comp
+	jam LMP_SETUP_COMPLETE,mem_lmo_opcode2
+	fetch 1,mem_conn_sm
+	rtnne CONN_SM_ENCRYPT_WAIT
+	jam CONN_SM_ENCRYPT_WAIT_CLEAR,mem_conn_sm
+	rtn
+	
+parse_lmp_accepted_stop_enc:
+	/* again this won't work with multipoint. keep track of anyone else encrypting */
+	//jam HOST_STOP_ENCRYPTION,message_queue_B0
+	//jam 1,message_queue_B1
+	//jam HOST_RETURN_SUCCESS,message_queue_B2
+	//fetch 1,mem_lmp_state2
+	//set1 MESSAGE_QUEUE,pdata
+	//store 1,mem_lmp_state2
+	rtn
+
+parse_lmp_not_accepted_aurand:
+	fetch 1,mem_device_option
+	bne dvc_op_hci,parse_lmp_not_accepted_aurand_send_detach
+	fetch 1,mem_link_key_exists
+	rtn blank
+	fetcht 1,mem_conn_sm
+	jam 0,mem_conn_sm
+	jam 0,mem_link_key_exists
+	fetch 1,mem_rxbuf+2
+	rtnne KEY_MISSING
+	storet 1,mem_conn_sm
+	jam LOCAL_STATEMACHINE,mem_sp_localsm
+	fetch 2,mem_lmpext_ssp_enable
+	fetcht 1,mem_remote_sppcap
+	iand temp,pdata
+	branch cmd_pair,blank
+	branch cmd_ssp
+	
+parse_lmp_not_accepted_aurand_send_detach:	
+	jam LMP_DETACH,mem_lmo_opcode2
+	jam OTHER_END_TERMINATED,mem_disconn_reason_send
+	rtn
+/*in pair remote cancel the pair*/
+parse_lmp_not_accepted_inrand:
+	fetch 1,mem_rxbuf+2
+	beq KEY_MISSING,parse_lmp_inrand_key_missing
+	rtnne PAIRING_NOT_ALLOWED
+	jam PAIRING_NOT_ALLOWED,mem_disconn_reason_send
+	jam LMP_DETACH,mem_lmo_opcode2
+	rtn	
+parse_lmp_inrand_key_missing:
+	jam KEY_MISSING,mem_disconn_reason_send
+	jam LMP_DETACH,mem_lmo_opcode2
+	rtn
+	
+parse_lmp_not_accepted_name_req:
+	rtn
+	
+parse_lmp_not_accepted_simple_pairing_number:
+	jam      SP_STAT_NULL,mem_sp_state
+	jam LMP_DETACH,mem_lmo_opcode2
+	branch   parse_rx_done
+	
+parse_lmp_not_accepted_dhkey_check:
+	jam      SP_STAT_NULL,mem_sp_state
+	jam LMP_DETACH,mem_lmo_opcode2
+	branch   parse_rx_done
+parse_lmp_not_accepted_unsniff_req:
+	jam BT_EVT_UNSNIFF_NOT_ACCEPT,mem_fifo_temp
+	branch ui_ipc_send_event
+	
+parse_lmp_accepted_unsniff_req:
+	jam BT_EVT_UNSNIFF_ACCEPT,mem_fifo_temp
+	call ui_ipc_send_event
+	call sniff_exit
+	force 0,temp
+	branch hci_send_mode_change
+	
+parse_lmp_accepted_sniff_req:
+	jam BT_EVT_SNIFF_ACCEPT,mem_fifo_temp
+	call ui_ipc_send_event
+	force 0x02,temp
+	call hci_send_mode_change
+	setarg 0
+	store 2,mem_dsniff
+	fetch 2,mem_sniff_param_interval
+	lshift pdata,pdata
+	store 2,mem_tsniff
+	fetch 1,mem_sniff_param_attempt
+	store 1,mem_sniff_attempt
+	fetch 1,mem_sniff_param_timeout
+	store 1,mem_sniff_timeout
+	branch sniff_init
+	
+parse_lmp_not_acdcept_sniff_req:
+	jam BT_EVT_SNIFF_NOT_ACCEPT,mem_fifo_temp
+	branch ui_ipc_send_event
+	
+parse_lmp_crypt_key:
+	fetcht 1,mem_rxbuf+1
+	storet 1,mem_key_size
+	branch accept_lmp_msg
+	
+parse_lmp_setup_complete:
+	fetch 1,mem_lmp_conn_state
+	set1 RECEIVED_SETUP_COMPLETE,pdata
+	store 1,mem_lmp_conn_state
+	rtnbit1 SENT_SETUP_COMPLETE
+	jam LMP_SETUP_COMPLETE,mem_lmo_opcode2
+	branch parse_rx_done
+	
+parse_lmp_max_slot:
+	//jam LMP_MAX_SLOT,mem_lmi_opcode2
+	//branch accept_lmp_msg
+	rtn
+	
+parse_lmp_max_slot_req:
+	fetch 1,mem_max_slot
+	fetcht 1,mem_rxbuf+1
+	isub temp,null
+	//jam LMP_MAX_SLOT_REQ,mem_lmi_opcode2
+	branch accept_lmp_msg,positive
+	jam LMP_NOT_ACCEPTED,mem_lmo_opcode2
+	jam UNSPECIFIED_ERROR,mem_lmo_reason2
+	jam LMP_MAX_SLOT_REQ,mem_lmi_opcode2
+	rtn
+	
+parse_lmp_detach:
+	call prepare_disconnect
+	branch accept_lmp_msg
+	
+accept_lmp_msg:
+	jam LMP_ACCEPTED,mem_lmo_opcode2
+	rtn
+
+parse_lmp_incr_power:
+	jam LMP_MAX_POWER,mem_lmo_opcode2
+	rtn
+
+parse_lmp_decr_power:
+	jam LMP_MIN_POWER,mem_lmo_opcode2
+	rtn
+	
+parse_lmp_version_res:
+	fetch 1,mem_conn_sm
+	rtneq CONN_SM_WAIT_VERSION
+	/* continuing on with host connection state machine */
+	jam CONN_SM_SEND_FEATURES ,mem_conn_sm
+	/* we need to move fast and send au_rand...jumping to next part of state machine for conn */
+	rtn
+
+
+parse_lmp_auto_rate:
+	rtn	
+
+parse_lmp_in_rand:
+	call lmp_copy_rand
+	jam pincode_state_wait_pincode,mem_pincode_state
+	fetch 1,mem_device_option
+	beq dvc_op_hci,parse_lmp_in_rand_hci	
+	jam BT_EVT_PINCODE_REQ,mem_fifo_temp
+	call ui_ipc_send_event
+parse_lmp_in_rand_hci:
+	call hci_send_pincode_req
+	call tid_check
+	nbranch lmp_accept_inrand,true
+	nbranch parse_lmp_inrand_res,master // ignore this because of not ssp temporary
+	jam LMP_NOT_ACCEPTED,mem_lmo_opcode2
+	jam LMP_IN_RAND,mem_lmi_opcode2
+	jam TRANSACTION_COLLISION,mem_lmo_reason2
+	rtn
+parse_lmp_inrand_res:
+	fetch 1,mem_op
+	set1 op_inrand_req,pdata
+	store 1,mem_op
+	rtn
+
+//store current tid
+pop_tid_follow:
+	fetcht 1,mem_state_map
+	nsetflag blank,smap_lmptid,temp
+	storet 1,mem_state_map
+	rtn
+	
+//restore current tid
+push_tid_follow:
+	fetch 1,mem_lmo_tid2
+	rshift pdata,pdata
+	and_into 1,pdata
+	rtn
+	
+parse_lmp_au_rand:
+	call push_tid_follow
+	store 1,mem_sres_tid
+	call lmp_copy_rand
+	jam LMP_SRES,mem_lmo_opcode2
+	fetch 1,mem_link_key_exists
+	nrtn blank
+	fetch 1,mem_state
+	rtnbit1 state_combkey		/* we have comb key, but not verified */
+	jam KEY_MISSING,mem_lmo_reason2
+	fetch 1,mem_device_option
+	bne dvc_op_hci,reject_lmp_packet
+	fetch 1,mem_auth_enable
+	nbranch reject_lmp_packet,blank
+	jam 0,mem_lmo_opcode2
+parse_lmp_inrand_sres:
+	fetch 1,mem_op
+	set1 op_send_sres,pdata
+	store 1,mem_op
+	branch hci_send_linkkey_req
+	
+parse_lmp_sres:	
+	arg mem_plap,rega
+	call function_e1
+	fetch 4,mem_rxbuf+1
+	fetcht 4,mem_input_store
+	isub temp,null
+	branch authentication_ok,zero
+	jam LMP_DETACH,mem_lmo_opcode2
+	jam AUTHENTICATION_FAILURE_ERROR,mem_disconn_reason_send	
+	rtn
+authentication_ok:
+	call copy_aco
+	call linkkey_ready///save link key
+	fetch 1,mem_op
+	isolate1 op_auth_req,pdata
+	set0 op_auth_req,pdata
+	store 1,mem_op
+	call hci_send_auth_complete,true
+	fetch 1,mem_conn_sm
+	beq CONN_SM_AUTH_WAIT,authentication_ok_conn_sm
+	beq CONN_SM_PAIRING_WAIT,authentication_ok_conn_sm
+	rtn
+authentication_ok_conn_sm:
+	fetch 1,mem_pairing_auth
+	rtnne DEFALT_PAIRING_AUTH
+	fetch 1,mem_state_map
+	rtnbit1 smap_encryption
+	branch host_create_conn_encrypt
+
+parse_lmp_comb_key:
+	arg mem_rxbuf+1,rega
+	arg mem_kinit,regb
+	arg mem_random_number,contw
+	call xor16
+	arg mem_plap,rega
+	call generate_linkkey
+	jam LMP_AU_RAND,mem_lmo_opcode2
+	fetch 1,mem_state
+	bbit0 state_combkey,lmp_generate_key
+	rtn
+	
+parse_lmp_name_res:
+	fetch 2,mem_len
+	add pdata,-3,loopcnt	//for remote name length error
+	fetcht 1,mem_rxbuf+1
+	setarg mem_tmp_buffer
+	iadd temp,contw
+	arg mem_rxbuf+3,contr
+	call memcpy
+	fetcht 1,mem_name_offset
+	fetch 1,mem_rxbuf+2
+	isub temp,pdata
+	sub pdata,14,null
+	branch parse_lmp_name_res_end,positive
+	add temp,14,pdata
+	store 1,mem_name_offset
+	jam LMP_NAME_REQ,mem_lmo_opcode2
+	rtn
+parse_lmp_name_res_end:
+	fetch 1,mem_state_map
+	set1 smap_name_res,pdata
+	store 1,mem_state_map
+	bbit1 smap_name_req,lmp_disconnect
+	//force HCI_SUCCESS,queue
+	//branch hci_send_name
+	rtn
+parse_lmp_name_req:
+	fetch 1,mem_rxbuf+1
+	store 1,mem_lmi_opcode2 //offset 
+	jam LMP_NAME_RES,mem_lmo_opcode2
+	rtn
+
+parse_lmp_conn_req:
+	fetch 1,mem_device_option
+	bne dvc_op_hci,accept_lmp_msg
+	force 1,temp
+	branch hci_send_conn_req_event	
+	
+parse_lmp_timing_accuracy_req:
+	jam LMP_TIMING_ACCURACY_RES,mem_lmo_opcode2
+	rtn
+
+parse_lmp_features_req:
+	jam LMP_FEATURES_RES,mem_lmo_opcode2
+	rtn
+
+parse_lmp_version_req:
+	jam LMP_VERSION_RES,mem_lmo_opcode2
+	rtn
+
+parse_lmp_supervision_timeout:
+//	fetch 2,mem_rxbuf+1
+//	store 2,mem_supervision_to
+	rtn
+	
+
+
+parse_lmp_sniff_subrating_req:
+	fetch 2,mem_tsniff
+	iforce temp
+	fetch 1,mem_rxbuf+2
+	store 1,mem_subsniff_rate
+	imul32 temp,temp
+	fetch 2,mem_rxbuf+3
+	lshift pdata,pdata
+	store 2,mem_subsniff_tcmax
+	fetch 4,mem_rxbuf+5
+	lshift pdata,pdata
+ 	store 4,mem_subsniff_instant
+	//product pdata
+	deposit temp
+	store 2,mem_subsniff_tsniff
+	rtn
+parse_lmpext_packet_type_table_req:
+	fetcht 1,mem_ptt
+	fetch 1,mem_rxbuf+2
+	ixor temp,null
+	nbranch reject_unknown_ext_packet,zero
+	isolate1 0,pdata
+	fetch 1,mem_state_map
+	setflag true,smap_edr,pdata
+	store 1,mem_state_map
+	jam LMP_EXT_ACCEPTED,mem_lmo_opcode2
+	jam LMP_PACKET_TYPE_TABLE_REQ,mem_lmi_opcode2
+	rtn
+
+	
+parse_lmp_sniff_subrating_res:
+	rtn
+
+parse_lmp_max_power:
+	rtn
+parse_lmp_min_power:
+	rtn
+parse_lmp_page_mode_req:
+	//jam LMP_PAGE_MODE_REQ,mem_lmi_opcode2
+	branch accept_lmp_msg
+parse_lmp_page_scan_mode_req:
+	//this can influence connection. need accepted
+	//jam LMP_PAGE_SCAN_MODE_REQ,mem_lmi_opcode2
+	branch accept_lmp_msg
+parse_lmp_preferred_rate:
+	rtn
+parse_lmp_remove_sco_link_req:
+	call stop_sco
+	jam LMP_REMOVE_SCO_LINK_REQ,mem_lmi_opcode2
+	branch accept_lmp_msg
+
+
+parse_lmp_sco_link_req:
+	fetch 1,mem_rxbuf+1
+	store 1,mem_sco_handle
+	fetch 1,mem_rxbuf+3
+	store 1,mem_esco_desco
+	fetch 1,mem_rxbuf+6
+	store 1,mem_air_mode
+	call push_tid_follow
+	store 1,mem_accptsco_tid
+	force 0,temp
+	branch hci_send_conn_req_event
+	
+parse_lmp_slot_offset:
+	fetch 2,mem_rxbuf+1
+	store 2,mem_slot_offset
+	rtn
+	
+parse_lmp_sniff_req:
+	fetch 1,mem_state
+	bbit1 state_insniff,lmp_reject_sniff
+	fetch 2,mem_rxbuf+2 /* dsniff */
+	lshift pdata,pdata
+	store 2,mem_dsniff	
+	fetch 2,mem_rxbuf+4 /* tsniff */
+	lshift pdata,pdata
+	store 2,mem_tsniff
+	fetch 2,mem_rxbuf+6 /* sniff attempt */
+	store 1,mem_sniff_attempt
+	iforce temp
+	fetch 2,mem_rxbuf+8 /* sniff timeout */
+	store 1,mem_sniff_timeout
+	isub temp,null
+	nbranch set_big_value_to_attempt,positive
+	store 1,mem_sniff_attempt
+set_big_value_to_attempt:	
+	//call sniff_init
+	jam LMP_ACCEPTED,mem_lmo_opcode2
+	jam LMP_SNIFF_REQ,mem_lmi_opcode2
+	rtn
+
+lmp_reject_sniff:
+	jam PDU_NOT_ALLOWED,mem_lmo_reason2
+	branch reject_lmp_packet
+
+parse_lmp_start_encryption_req:
+	call accept_lmp_msg
+	call lmp_copy_rand
+	call function_e3
+	branch start_encryption
+	
+parse_lmp_stop_encryption_req:
+	call accept_lmp_msg
+	branch stop_encryption
+	
+
+parse_lmp_switch_req:
+	fetch 4,mem_rxbuf+1
+	lshift pdata,pdata
+	//branch parse_lmp_switch_req_not_accept
+	branch parse_lmp_switch_accept,master
+	fetcht 1,mem_link_key_exists
+	nbranch parse_lmp_switch_req_clear_mark,blank
+parse_lmp_switch_req_not_accept:
+	jam LMP_NOT_ACCEPTED,mem_lmo_opcode2
+	jam LMP_SWITCH_REQ,mem_lmi_opcode2
+	jam PDU_NOT_ALLOWED,mem_lmo_reason2
+	rtn
+parse_lmp_switch_req_clear_mark:
+	jam LMP_SLOT_OFFSET,mem_lmo_opcode2
+	jam 0,mem_conn_sm
+	branch role_switch_prepare
+
+parse_lmp_switch_accept:
+	call role_switch_prepare
+	set1 mark_reconn_recieve_switch,mark
+	fetch 1,mem_connection_options
+	set0 CONNECTION_SWITCH,pdata
+	store 1,mem_connection_options
+	branch accept_lmp_msg
+
+	
+
+parse_lmp_temp_rand:
+	rtn
+parse_lmp_temp_key:
+	rtn
+parse_lmp_timing_accuracy_res:
+	rtn
+	
+parse_lmp_unit_key:
+	
+	rtn
+
+	
+parse_lmp_unsniff_req:
+	jam LMP_ACCEPTED,mem_lmo_opcode2
+	jam LMP_UNSNIFF_REQ,mem_lmi_opcode2
+	jam BT_EVT_REMOTE_UNSNIFF,mem_fifo_temp
+	call ui_ipc_send_event
+	force 0,temp
+	call hci_send_mode_change
+	branch sniff_exit
+parse_lmp_use_semi_permanend_key:
+	rtn
+	
+parse_lmp_encapsulated_header:
+	fetch 1,mem_rxbuf+1
+	bne ENCAPSULATED_MAJOR_TYPE_P192,parse_lmp_encapsulated_header_reject
+	fetch 1,mem_rxbuf+2
+	bne ENCAPSULATED_MINOR_TYPE_P192,parse_lmp_encapsulated_header_reject
+	fetch 1,mem_rxbuf+3
+	bne ENCAPSULATED_LEN_P192,parse_lmp_encapsulated_header_reject
+	call check_localsm
+	branch parse_lmp_encapsulated_header_master,true
+	jam SP_STAT_KEY_RECV,mem_sp_state
+parse_lmp_encapsulated_header_master:
+	jam LMP_ACCEPTED,mem_lmo_opcode2
+	jam LMP_ENCAPSULATED_HEADER,mem_lmi_opcode2
+	branch parse_rx_done
+	
+parse_lmp_encapsulated_header_reject:
+	jam      PDU_NOT_ALLOWED,mem_lmo_reason2
+	branch   reject_lmp_packet
+	
+parse_lmp_accepted_encapsulated_header:
+	//jam LMP_ENCAPSULATED_PAYLOAD,mem_lmi_opcode2
+	//branch   accept_lmp_msg  	
+	jam LMP_ENCAPSULATED_PAYLOAD,mem_lmo_opcode2
+      //   branch   accept_lmp_msg  	
+         rtn
+parse_lmp_accepted_simple_pairing_number:
+	call check_localsm
+	rtn true
+	jam      SP_STAT_CONFIRM_RECV,mem_sp_state
+	rtn
+
+parse_lmp_accepted_dhkey_check:
+	//here must be change***  shyd
+	call check_localsm
+	ncall g_noninit,true	//when be master  call g_init
+	call g_init,true
+	call hci_send_user_confirmation_req
+	call hci_send_ssp_complete		//un very good put here
+	call check_localsm
+	rtn true
+	jam SP_STAT_LINK_KEY_CALC,mem_sp_state
+	jam SP_FLAG_COMMIT,mem_sp_flag
+	rtn
+
+parse_simple_pairing_confirm:
+	arg mem_sp_confirm_remote,contw
+	fetch 8,mem_rxbuf+1
+	istore   8,contw
+	fetch 8,mem_rxbuf+9
+	istore   8,contw
+	branch master_set_mem_master_sp_flag
+	
+parse_lmp_encapsulated_payload:
+	fetch 1,mem_master_sp_state
+	beq SP_STAT_RANDOM_SEND,parse_encapsulated_payload_master
+	fetch    1,mem_sp_state
+	bne SP_STAT_KEY_RECV,parse_lmp_encapsulated_payload_reject
+parse_encapsulated_payload_master:
+	fetch    1,mem_sp_remote_key_recv_count
+	sub      pdata,0x20,contw
+	nbranch  parse_lmp_encapsulated_payload_reject,positive
+	arg      mem_sp_pubkey_remote,contw
+	iadd     contw,contw
+	fetch 8,mem_rxbuf+1
+	istore   8,contw
+	fetch 8,mem_rxbuf+9
+	istore   8,contw
+	fetch    1,mem_sp_remote_key_recv_count
+	increase 16,pdata
+	store    1,mem_sp_remote_key_recv_count
+	bne ENCAPSULATED_LEN_P192,accept_lmp_msg
+parse_lmp_encapsulated_payload_completed:
+	call check_localsm
+	branch accept_lmp_msg,true
+	jam      SP_KEY_VALID,mem_sp_remote_key_invalid
+	jam      SP_STAT_KEY_GENERATE,mem_sp_state
+	jam      SP_FLAG_COMMIT,mem_sp_flag  
+	branch   accept_lmp_msg
+parse_lmp_encapsulated_payload_reject:
+	jam      PDU_NOT_ALLOWED,mem_lmo_reason2
+	branch   reject_lmp_packet	
+parse_lmp_accepted_encapsulated_payload: 
+	fetch 1,mem_sp_local_key_send_count
+	beq	ENCAPSULATED_LEN_P192,parse_LMP_ENCAPSULATED_PAYLOAD_all_accepted
+	jam LMP_ENCAPSULATED_PAYLOAD,mem_lmo_opcode2
+	branch   parse_rx_done  	
+parse_lmp_encapsulated_payload_all_accepted:   
+	call check_localsm
+	branch parse_lmp_encapsulated_payload_all_accepted_master,true
+	jam      SP_FLAG_COMMIT,mem_sp_flag
+	jam      SP_STAT_COMMIT_CALC,mem_sp_state 
+	branch   parse_rx_done 
+parse_lmp_encapsulated_payload_all_accepted_master:
+	//call sp_master_generate_local_key
+	branch   parse_rx_done   
+
+parse_lmp_simple_pairing_number:
+	fetch 1,mem_master_sp_state
+	beq SP_STAT_RANDOM_SEND,parse_lmp_simple_pairing_number_master
+	fetch    1,mem_sp_state
+	bne SP_STAT_RANDOM_RECV,parse_lmp_simple_pairing_number_reject
+parse_lmp_simple_pairing_number_master:
+	arg      mem_sp_random_remote,contw
+	fetch 8,mem_rxbuf+1
+	istore   8,contw
+	fetch 8,mem_rxbuf+9
+	istore   8,contw
+	call check_localsm
+	branch parse_lmp_simple_pairing_number_master0,true
+	jam      SP_STAT_RANDOM_SEND,mem_sp_state
+	jam      SP_FLAG_COMMIT,mem_sp_flag
+	branch accept_lmp_msg  
+parse_lmp_simple_pairing_number_master0:
+	jam SP_STAT_COMMIT_CALC,mem_master_sp_state
+	branch master_set_mem_master_sp_flag
+	//jam LMP_SIMPLE_PAIRING_NUMBER,mem_lmi_opcode2
+	//branch accept_lmp_msg  
+parse_lmp_simple_pairing_number_reject:
+	jam      PDU_NOT_ALLOWED,mem_lmo_reason2
+	branch reject_lmp_packet
+	
+parse_dhkey_check:
+	fetch    1,mem_master_sp_state
+	beq SP_STAT_CONFIRM_SEND,parse_dhkey_check_master
+	fetch    1,mem_sp_state
+	bne SP_STAT_CONFIRM_RECV,parse_lmp_dhkey_check_reject
+parse_dhkey_check_master:
+	arg      mem_sp_check_result,contw
+	fetch 8,mem_rxbuf+1
+	istore   8,contw
+	fetch 8,mem_rxbuf+9
+	istore   8,contw
+	call check_localsm
+	branch parse_dhkey_check_master0,true
+	jam      SP_STAT_CONFIRM_CHECK,mem_sp_state
+	jam      SP_FLAG_COMMIT,mem_sp_flag
+	branch   parse_rx_done
+parse_dhkey_check_master0:
+	jam      SP_STAT_CONFIRM_CHECK,mem_master_sp_state
+	jam      SP_FLAG_COMMIT,mem_master_sp_flag
+	branch   parse_rx_done
+parse_lmp_dhkey_check_reject:
+	jam      PDU_NOT_ALLOWED,mem_lmo_reason2
+	branch reject_lmp_packet
+	
+parse_lmp_clkoffset_res:
+	branch parse_rx_done
+		
+parse_lmp_encryption_mode_req:
+	fetch 1,mem_connection_options
+	set0 CONNECTION_ENCRYPT
+	store 1,mem_connection_options
+	call accept_lmp_msg
+	nrtn master					/* do sth only if we're master */
+	fetch 1,mem_rxbuf+1
+	fetcht 1,mem_op
+	setflag blank,op_stop_enc,temp
+	nsetflag blank,op_start_enc,temp
+	storet 1,mem_op
+	rtn 
+	
+parse_lmp_features_res:
+	fetcht 8,mem_rxbuf+1		/*fix bcp(baoshijie) err*/
+	fetch 1,mem_hci_cmd
+	bne hci_cmd_wait_remote_feature,parse_lmp_features_res_not_hci
+	jam 0,mem_hci_cmd
+	call hci_send_remote_features
+parse_lmp_features_res_not_hci:	
+	fetch 1,mem_conn_sm
+	rtnne CONN_SM_WAIT_FEATURES_RES
+	fetch 1,mem_device_option
+	beq dvc_op_hci,parse_lmp_feature_ext_sm
+	fetch 1,mem_connection_options
+	bbit0 CONNECTION_FEATURE_EXT,parse_lmp_send_conn
+parse_lmp_feature_ext_sm:
+	jam CONN_SM_SEND_FEATURES_EXT,mem_conn_sm
+	rtn
+parse_lmp_send_conn:
+	jam CONN_SM_SEND_CONN_REQ,mem_conn_sm
+	rtn
+parse_lmp_test_activate:
+	fetch 1,mem_debug_config
+	store 1,mem_test_mode_old_debug_config
+	jam LMP_ACCEPTED,mem_lmo_opcode2
+	jam LMP_TEST_ACTIVATE,mem_lmi_opcode2
+	rtn
+parse_lmp_test_control:
+	/* the 9 test control parameters are XORed with 0x55 */
+	/* doing the XOR here and storing in mem_temp_payload */
+	jam LMP_ACCEPTED,mem_lmo_opcode2
+	jam LMP_TEST_CONTROL,mem_lmi_opcode2
+	force 9,loopcnt
+	arg mem_rxbuf+1,contr
+	arg mem_temp_payload,contw
+parse_lmp_test_xor:
+	ifetch 1,contr
+	xor_into 0x55,pdata
+	istore 1,contw
+	loop parse_lmp_test_xor
+	fetch 1,test_mode_scenario
+	fetcht 1,mem_tester_emulate
+	set0 tester_no_whitening,temp
+	set0 tester_pattern_test,temp
+	beq EXIT_TEST_MODE,	 parse_lmp_test_control_exit
+	beq PAUSE_TEST_MODE,	 parse_lmp_test_control_pause
+	beq CLOSED_LOOP_BACK_ACL,	 parse_lmp_test_control_loopback
+	beq ACL_WITHOUT_WHITENING,	 parse_lmp_test_control_loopback_nowhite
+	beq CLOSED_LOOP_BACK_SCO,	 parse_lmp_test_control_loopback
+	beq SCO_WITHOUT_WHITENING,	 parse_lmp_test_control_loopback_nowhite
+	beq ZERO_PATTERN,	 parse_lmp_test_control_pattern
+	beq ONE_PATTERN,	 parse_lmp_test_control_pattern
+	beq ALT_PATTERN,	 parse_lmp_test_control_pattern
+	beq ALT2_PATTERN,	 parse_lmp_test_control_pattern
+	beq PSEUDORANDOM,	 parse_lmp_test_control_pattern
+	rtn
+parse_lmp_test_control_exit:
+	/* restoring old parameters */
+	fetch 1,mem_tester_emulate
+	set1 tester_exit,pdata
+	set1 tester_change,pdata
+	store 1,mem_tester_emulate
+	rtn
+parse_lmp_test_control_pattern:
+	set1 tester_pattern_test,temp
+	jam 5,mem_lch_code
+	fetch 2,test_mode_data_length
+	iforce loopcnt
+	store 2,mem_len
+	arg mem_rxbuf,contw
+	call pn9
+parse_lmp_test_control_loopback_nowhite:
+	set1 tester_no_whitening,temp
+parse_lmp_test_control_loopback:
+	set1 tester_change,temp
+	force 0,pdata
+	store 1,mem_slave_rcvcnt
+	store 2,mem_tst_pktcnt_crc
+	store 2,mem_tst_pktcnt_dmh
+	store 2,mem_tst_pktcnt_hec
+	store 2,mem_tst_pktcnt_sync
+	fetch 1,test_mode_hopping_mode
+	compare FIXED_FREQ,pdata,0xff
+	setflag true,tester_fixed_freq,temp
+	storet 1,mem_tester_emulate
+	rtn
+
+parse_lmp_test_control_pause:
+	set0 mark_testmode,mark
+	jam 0,mem_tester_emulate
+	fetch 1,mem_debug_config
+	set0 debug_tx_pattern,pdata
+	store 1,mem_debug_config
+	rtn
+
+check_test_cond:
+	fetch 1,mem_tester_emulate
+	rtnbit0 tester_change
+	fetch 1,mem_tester_cnt
+	increase 1,pdata
+	store 1,mem_tester_cnt
+	rtnne 5
+	jam 0,mem_tester_cnt
+	fetch 1,mem_tester_emulate
+	set0 tester_change,pdata
+	store 1,mem_tester_emulate
+	bbit1 tester_exit,check_test_exit
+	isolate1 tester_no_whitening,pdata
+	call test_no_white,true
+	ncall test_enable_white,true
+	fetch 1,test_mode_packet_type
+	compare 0x20,pdata,0x30
+	fetch 1,mem_state_map
+	setflag true,smap_edr,pdata
+	store 1,mem_state_map
+	fetch 1,mem_tester_emulate
+	fetcht 1,mem_debug_config
+	isolate1 tester_pattern_test,pdata
+	setflag true,debug_tx_pattern,temp
+	isolate1 tester_fixed_freq,pdata
+	setflag true,debug_tx_fixed_freq,temp
+	setflag true,debug_rx_fixed_freq,temp
+	storet 1,mem_debug_config
+	fetch 1,test_mode_tx_freq
+	store 1,mem_tx_fixed_freq
+	fetch 1,test_mode_rx_freq
+	store 1,mem_rx_fixed_freq
+	set1 mark_testmode,mark
+	rtn
+	
+check_test_exit:
+	set0 mark_testmode,mark
+	jam 0,mem_tester_emulate
+	fetch 1,mem_test_mode_old_debug_config
+	store 1,mem_debug_config
+	hfetch 1,core_config
+	and_into 0xfb,pdata			/* whitening on */
+	hstore 1,core_config	
+	rtn
+	
+
+lmp_copy_rand:	
+	arg mem_rxbuf+1,contr
+	arg mem_random_number,contw
+	branch memcpy16
+
+lmp_generate_key:
+	jam LMP_COMB_KEY,mem_lmo_opcode2
+	rtn
+
+lmp_start_encryption:
+	nrtn master
+	jam LMP_START_ENCRYPTION_REQ,mem_lmo_opcode2
+	rtn
+	
+lmp_accept_inrand:
+	arg mem_lap,rega
+	call generate_kinit
+	jam LMP_ACCEPTED,mem_lmo_opcode2
+	jam LMP_IN_RAND,mem_lmi_opcode2
+	rtn
+
+lmp_disconnect:
+	jam 10,mem_conn_timer
+	jam LMP_DETACH,mem_lmo_opcode2
+	jam LOCAL_HOST,mem_disconn_reason_send	
+	rtn
+
+/*********************************/
+/*********lmp send*************/
+/********************************/
+	/* enable user if a lmp packet is to send */
+send_lmp:
+	set1 mark_ext_patch,mark
+	bpatch patch3c_3,mem_patch3c
+	disable user
+	call lmo_fifo_process
+	fetch 1,mem_lmp_to_send
+	rtn blank
+/* lmp message to be processed. this will either be because host??? */
+/* wants to send a lmp message or because one resulted from the LMP */
+/* processing section */
+/********* outgoing lmp lookup table *************/
+	bbit1 7,send_lmp_escape
+	beq LMP_NAME_REQ,	 send_lmp_name_req
+	beq LMP_NAME_RES,	 send_lmp_name_res
+	beq LMP_ACCEPTED,	 send_lmp_accepted
+	beq LMP_NOT_ACCEPTED,	 send_lmp_not_accepted
+	beq LMP_FEATURES_REQ,	 send_lmp_features_req
+	beq LMP_FEATURES_RES,	 send_lmp_features_res
+	beq LMP_TIMING_ACCURACY_RES,	 send_lmp_timing_accuracy_res
+	beq LMP_VERSION_REQ,	 send_lmp_version_req
+	beq LMP_VERSION_RES,	 send_lmp_version_res
+	beq LMP_SETUP_COMPLETE,	 send_lmp_setup_complete
+	beq LMP_SUPERVISION_TIMEOUT,	 send_lmp_superto
+	beq LMP_HOST_CONNECTION_REQ,send_lmp_no_payload
+	beq LMP_IN_RAND,send_lmp_inrand
+	beq LMP_COMB_KEY,send_lmp_comb_key
+	beq LMP_AU_RAND,send_lmp_aurand
+	beq LMP_SRES,send_lmp_sres
+	beq LMP_ENCRYPTION_MODE_REQ,send_lmp_encryption_mode_req
+	beq LMP_ENCRYPTION_KEY_SIZE_REQ,send_lmp_encryption_key_size_req
+	beq LMP_START_ENCRYPTION_REQ,send_lmp_start_encryption
+	beq LMP_DETACH,send_lmp_detach
+	beq LMP_QUALITY_OF_SERVICE_REQ, send_lmp_quality_of_service_req
+	beq LMP_UNIT_KEY,send_lmp_unit_key
+	//Optional (O)
+	beq LMP_SCO_LINK_REQ, send_lmp_sco_link_req	
+	beq LMP_CLKOFFSET_RES, send_lmp_clkoffset_res	
+	beq LMP_MAX_POWER,send_lmp_nopayload_reply
+	beq LMP_MAX_SLOT, send_lmp_max_slot
+	beq LMP_MAX_SLOT_REQ, send_lmp_max_slot_req
+	beq LMP_MIN_POWER,send_lmp_nopayload_reply
+	beq LMP_REMOVE_SCO_LINK_REQ, send_lmp_remove_sco_link_req	
+	beq LMP_SLOT_OFFSET, send_lmp_slot_offset
+	beq LMP_SWITCH_REQ, send_lmp_switch_req
+	beq LMP_SNIFF_REQ, send_lmp_sniff_req
+	beq LMP_STOP_ENCRYPTION_REQ, send_lmp_stop_encryption_req	
+	beq LMP_TIMING_ACCURACY_REQ, send_lmp_timing_accuracy_req
+	beq LMP_UNSNIFF_REQ, send_lmp_unsniff_req
+	beq LMP_ENCAPSULATED_HEADER,send_lmp_encapsulated_header
+	beq LMP_ENCAPSULATED_PAYLOAD,send_lmp_encapsulated_payload
+	beq LMP_SIMPLE_PAIRING_CONFIRM,send_lmp_simple_pairing_comfirm
+	beq LMP_SIMPLE_PAIRING_NUMBER,send_lmp_simple_pairing_number
+	beq LMP_DHKEY_CHECK,send_lmp_dhkey_check
+	beq LMP_AUTO_RATE,send_lmp_auto_rate
+	beq LMP_ENC_KEY_SIZE_MASK_RES,send_lmp_enc_key_size_mask_res
+	//master only must(M)
+	beq LMP_CLKOFFSET_REQ, send_lmp_clkoffset_req
+	beq LMP_QUALITY_OF_SERVICE, send_lmp_quality_of_service
+	beq LMP_TEST_ACTIVATE, send_lmp_test_activate
+	beq LMP_TEST_CONTROL, send_lmp_test_control
+send_lmp_error:
+	branch assert
+	rtn
+send_lmp_escape:
+	beq LMP_EXT_ESCO_LINK_REQ,send_lmpext_esco_req
+	beq LMP_EXT_REMOVE_ESCO_REQ,send_lmpext_remove_esco
+	beq LMP_EXT_ACCEPTED,send_lmpext_accepted
+	beq LMP_EXT_FEATURES_RES,send_lmpext_features_res
+	beq LMP_NOT_ACCEPTED_EXT,send_lmpext_not_accepted
+	beq LMP_EXT_FEATURES_REQ,send_lmpext_features_req
+	beq LMP_PACKET_TYPE_TABLE_REQ,send_lmpext_packet_type_table_req
+	beq LMP_PAUSE_ENCRYPTION_REQ,send_lmpext_pause_encryption_req
+	beq LMP_IO_CAP_REQ,send_lmp_io_cap_req
+	beq LMP_IO_CAP_RES,send_lmpext_io_cap_res
+	beq LMP_SNIFF_SUBRATING_REQ,send_lmpext_sniff_subrating_req
+	beq LMP_SNIFF_SUBRATING_RES,send_lmpext_sniff_subrating_res
+	branch assert
+
+
+/******** LMP follow messages **********/
+/****** TID follow received packet  *******/
+
+send_lmp_accepted:
+	force 2,pdata
+	call msg_send_lmp
+	fetch 1,mem_lmi_opcode
+	istore 1,contw
+	beq LMP_SCO_LINK_REQ,send_lmp_accptsco
+	call send_lmp_follow
+	fetch 1,mem_lmi_opcode
+	beq LMP_IN_RAND,send_lmp_accepted_inrand
+	beq LMP_ENCRYPTION_MODE_REQ,send_lmp_accepted_enc_mode
+	beq LMP_ENCRYPTION_KEY_SIZE_REQ,send_lmp_accepted_enc_key
+	beq LMP_SNIFF_REQ,send_lmp_accept_sniff_req
+	beq LMP_HOST_CONNECTION_REQ,send_lmp_accepted_connection
+	beq LMP_REMOVE_SCO_LINK_REQ,send_lmp_accept_remove_sco_link_req
+	beq LMP_DHKEY_CHECK,send_lmp_accept_dhkey_check
+	beq LMP_START_ENCRYPTION_REQ,send_create_conn_start_l2cap_timer_sm  
+	rtn	
+	
+send_create_conn_start_l2cap_timer_sm:
+	fetch 1,mem_conn_sm
+	rtn blank
+	jam CONN_SM_WAIT_DONE,mem_conn_sm
+	setarg TIMER_ENPT_WAITE
+	arg enpt_delay_timer,queue
+	branch timer_init
+	
+send_lmp_accept_sniff_req:
+	force 0x02,temp
+	call hci_send_mode_change
+	branch sniff_init
+send_lmp_not_accepted:
+	force 3,pdata
+	call msg_send_lmp
+	fetch 1,mem_lmi_opcode
+	beq LMP_AU_RAND,send_not_accept_aurand
+	istore 1,contw
+	fetch 1,mem_lmo_reason
+	istore 1,contw
+	branch send_lmp_follow
+
+send_not_accept_aurand:
+	istore 1,contw
+	fetch 1,mem_lmo_reason
+	istore 1,contw
+	arg mem_sres_tid,temp
+	branch special_tid_store
+
+send_lmpext_accepted:	
+	force 4,queue
+	call send_lmpext
+	setarg LMP_ESCAPE
+	istore 1,contw
+	fetch 1,mem_lmi_opcode
+	set0 7,pdata
+	istore 1,contw
+	fetch 1,mem_lmi_opcode
+	beq LMP_EXT_ESCO_LINK_REQ,send_lmp_accptsco
+	call send_lmp_follow
+	fetch 1,mem_lmi_opcode
+	beq LMP_EXT_REMOVE_ESCO_REQ,send_lmp_accept_remove_sco_link_req
+	rtn
+
+send_lmpext_not_accepted:
+	force 5,queue
+	call send_lmpext
+	setarg LMP_ESCAPE
+	istore 1,contw
+	fetch 1,mem_lmi_opcode
+	set0 7,pdata
+	istore 1,contw
+	fetch 1,mem_lmo_reason
+	istore 1,contw
+	branch send_lmp_follow
+
+send_lmp_accptsco:
+	call play_sco
+	arg mem_accptsco_tid,temp
+	branch special_tid_store
+	
+
+send_lmp_accepted_inrand:
+	call clear_linkkey
+	call tid_check	
+	rtn true
+	branch lmp_generate_key
+
+send_lmp_accepted_enc_mode:
+	fetch 1,mem_op
+	bbit1 op_start_enc,send_lmp_accepted_enc_start
+	rtnbit0 op_stop_enc
+	jam LMP_STOP_ENCRYPTION_REQ,mem_lmo_opcode2
+	set0 op_stop_enc,pdata
+	call tid_reply
+	branch send_lmp_accepted_enc_exit
+send_lmp_accepted_enc_start:
+	jam LMP_ENCRYPTION_KEY_SIZE_REQ,mem_lmo_opcode2
+	set0 op_start_enc,pdata
+send_lmp_accepted_enc_exit:
+	store 1,mem_op
+	rtn
+
+send_lmp_accepted_enc_key:
+	call check_localsm
+	branch lmp_start_encryption,true
+	rtn
+
+send_lmp_accepted_connection:
+	//jam LMP_SETUP_COMPLETE,mem_lmo_opcode2
+	fetch 1,mem_lmp_conn_state
+	set1 RECEIVED_CONN_REQ,pdata
+	store 1,mem_lmp_conn_state
+	jam BT_EVT_BB_CONNECTED,mem_fifo_temp
+	branch ui_ipc_send_event
+
+/*distroy sco handle 0xe00*/
+send_lmp_accept_remove_sco_link_req:
+	rtn
+
+send_lmp_accept_dhkey_check:
+	rtn
+/******** LMP reply messages **********/
+/****** TID always set to remote  *******/
+
+send_lmpext_features_res:
+	force 12,queue
+	call send_lmpext
+	setarg 0x01
+	istore 1,contw
+	fetch 2,mem_lmpext_ssp_enable
+	istore 2,contw
+	setarg 0
+	istore 3,contw
+	setarg 0x00
+	istore 4,contw
+	branch send_lmp_reply
+send_lmpext_io_cap_res:
+         
+         force 5,queue
+         call send_lmpext
+         fetch 1,mem_device_option
+         beq dvc_op_hci,send_lmpext_io_cap_res_hci
+         setarg 0x040003
+         istore 3,contw
+         store 3,mem_sp_iocap_local
+         branch send_lmp_reply
+send_lmpext_io_cap_res_hci:
+	fetch 3,mem_sp_iocap_local
+	istore 3,contw
+	branch send_lmp_reply
+         
+send_lmp_io_cap_req:
+	force 5,queue
+	call send_lmpext
+	fetch 3,mem_sp_iocap_local
+	istore 3,contw
+	branch send_lmp_request
+	
+
+send_lmpext_sniff_subrating_req: 
+
+	rtn
+send_lmpext_sniff_subrating_res: 
+         force 9,queue
+         call send_lmpext
+         fetch 1,mem_subsniff_rate
+         istore 1,contw
+         fetch 2,mem_subsniff_tcmax
+         istore 2,contw
+         fetch 4,mem_subsniff_instant
+         istore 4,contw
+	branch send_lmp_reply
+
+send_lmp_name_res:
+	force 17,pdata
+	call msg_send_lmp
+	fetch 1,mem_lmi_opcode  /* loading name offset */
+	copy pdata,temp
+	beq 0x00,send_lmp_name_res_offset_ok
+	beq 0x0e,send_lmp_name_res_offset_ok
+	beq 0x1c,send_lmp_name_res_offset_ok
+	rtn
+send_lmp_name_res_offset_ok:
+	istore 1,contw	/* writing name offset */
+	fetch 1,mem_local_name_length
+	istore 1,contw	/* writing name length */
+	copy pdata,loopcnt
+	setarg mem_local_name
+	iadd temp,contr	/* setting read location */
+	call memcpy
+	branch send_lmp_reply
+
+
+send_lmp_timing_accuracy_res:
+	force 3,pdata
+	call msg_send_lmp
+	setarg 0x0114
+	istore 2,contw
+	branch send_lmp_reply
+
+send_lmp_clkoffset_res:
+	// dopod s505 must wait for this res
+	force 3,pdata
+	call msg_send_lmp
+	fetch 4,mem_clke_bt
+	isub clkn_bt,pdata
+	branch send_lmp_clkoffset_res_master,master
+	sub pdata,0,pdata		/* our role is slave */
+send_lmp_clkoffset_res_master:	
+	// bit 16-2 of clkslave-clkmaster
+	rshift2 pdata,pdata
+	set0 15,pdata
+	istore 2,contw
+	branch send_lmp_reply
+
+send_lmp_version_res:
+	force 6,pdata
+	call msg_send_lmp
+	fetch 5,mem_lmp_version
+	istore 5,contw
+	branch send_lmp_reply
+
+send_lmp_features_res:
+	force 9,pdata
+	call msg_send_lmp
+	fetch 8,mem_features
+	istore 8,contw
+	branch send_lmp_reply  
+
+
+/******** LMP request messages **********/
+/****** TID always set to local initiated *******/
+	
+send_lmpext_esco_req:
+	branch send_lmpext_esco_req_master,master
+	//jam 0x00,mem_sco_handle
+	//jam 0x7,mem_esco_addr
+	branch send_lmpext_esco_req_slave
+send_lmpext_esco_req_master:
+	jam 0x07,mem_esco_addr
+send_lmpext_esco_req_slave:
+	jam 0,mem_esco_desco
+	force 16,queue
+	call send_lmpext
+	fetch 1,mem_sco_handle
+	istore 1,contw
+	fetch 1,mem_esco_addr
+	istore 1,contw
+	setarg 0
+	istore 1,contw			/* timing ctrl */
+	fetch 1,mem_esco_desco
+	istore 1,contw			/* Desco */
+	setarg 6
+	istore 1,contw			/* Tesco */
+	setarg 2
+	istore 1,contw			/* Wesco */
+	setarg 7
+	istore 1,contw			/* M packet type EV3 */
+	istore 1,contw			/* S packet type EV3 */
+	setarg 30
+	istore 2,contw			/* M packet size */
+	istore 2,contw			/* S packet size */
+	fetch 1,mem_air_mode
+	istore 1,contw
+	fetch 1,mem_neogotiation_state
+	istore 1,contw			/* neogotiation state */
+	nbranch send_lmp_reply,blank
+	branch send_lmp_reply,master
+	branch send_lmp_request
+	
+send_lmpext_remove_esco:
+	force 4,queue
+	call send_lmpext
+	fetch 1,mem_sco_handle
+	istore 1,contw
+	fetch 1,mem_disconn_reason_send
+	istore 1,contw
+	fetch 1,mem_esco_saved_arq
+	store 1,mem_arq 
+	branch send_lmp_request
+	
+
+send_lmpext_features_req:
+	force 12,queue
+	call send_lmpext
+	setarg 0x01
+	istore 1,contw
+	fetch 2,mem_lmpext_ssp_enable
+	istore 2,contw
+	setarg 0
+	istore 3,contw
+	setarg 0x00
+	istore 4,contw
+	branch send_lmp_request
+
+send_lmpext_packet_type_table_req:
+	force 3,queue
+	call send_lmpext
+	fetch 1,mem_ptt
+	istore 1,contw
+	disable user
+	call send_lmp_request
+	nrtn user
+	nrtn master
+	fetch 1,mem_afh_cfg
+	rtnbit0 AFH_CFG_ON
+	call afh_init
+	branch afh_open_all_channels
+	
+//default:featrue is enable,extfeature is disable
+ssp_enable:
+	fetch 1,mem_features+6
+	set1 param_featrue_ssp,pdata
+	store 1,mem_features+6
+	setarg param_lmpext_ssp_enable
+	store 2,mem_lmpext_ssp_enable
+	rtn
+
+ssp_disable:
+	fetch 1,mem_features+6
+	set0 param_featrue_ssp,pdata
+	store 1,mem_features+6
+	setarg 0
+	store 2,mem_lmpext_ssp_enable
+	rtn
+	
+afh_init:
+	jam 0x3,mem_afh_cfg
+	setarg 0
+	store 4,mem_afh_timer
+	arg mem_afh_map_lo,contw
+	call afh_reset_map
+	arg mem_afh_map_new,contw
+	call afh_reset_map
+	arg mem_afh_classify_channel_map,contw
+	call afh_reset_map
+	branch afh_clear_error_counter
+afh_open_all_channels:
+	arg mem_afh_map_new,contw
+	call afh_reset_map
+	call afh_clear_error_counter
+	branch afh_set_send_flag
+
+
+afh_open_classify_map:
+	fetch 5,mem_afh_classify_channel_map
+	store 5,mem_afh_map_new
+	ifetch 5,contr
+	istore 5,contw
+	call afh_clear_error_counter
+	branch afh_set_send_flag
+	
+afh_reset_map:
+	setarg 0xffffff
+	istore 3,contw
+	istore 3,contw
+	istore 3,contw
+	setarg 0x7f
+	istore 1,contw
+	rtn
+afh_clear_error_counter:
+	setarg 0
+	store 2,mem_afh_error_total
+	rtn
+afh_set_send_flag:
+	fetch 1,mem_afh_cfg
+	set1 send_lmp_set_afh,pdata
+	store 1,mem_afh_cfg
+	rtn
+send_set_afh:
+	nrtn master
+	force 16,pdata
+	call msg_send_lmp
+	deposit clkn_bt
+	arg 476,temp
+	iadd temp,pdata
+	rshift pdata,pdata
+	increase 1,pdata
+	set0 0,pdata
+	istore 4,contw
+	copy pdata,temp
+	setarg 1
+	istore 1,contw
+	fetch 5,mem_afh_map_new
+	istore 5,contw
+	ifetch 5,contr
+	istore 5,contw
+	lshift temp,temp
+	storet 4,mem_afh_instant
+	call send_lmp_request
+	fetch 1,mem_mode
+	set1 afh_change,pdata
+	store 1,mem_mode
+	jam 1,mem_afh_new_mod
+	fetch 4,mem_afh_instant
+	arg TIMER_ONE_MINUTE,temp //set ahf_reset_timer
+	iadd temp,pdata
+	store 4,mem_afh_timer
+	fetch 1,mem_afh_cfg
+	rtnbit1 AFH_CFG_MASTER_SENT_REQ
+	jam LMP_EXT_CHN_CLASSIFICATION_REQ,mem_lmo_opcode2
+	rtn
+
+
+send_lmpext_pause_encryption_req:
+	force 2,queue
+	call send_lmpext
+	nbranch send_lmp_reply,master
+	// assume slave will not send pause req firstly???
+	branch send_lmp_request
+
+
+	
+send_lmp_detach:
+	force 2,pdata
+	call msg_send_lmp
+	fetch 1,mem_disconn_reason_send
+	istore 1,contw
+	call send_lmp_request
+prepare_disconnect:
+	fetch 1,mem_op
+	set1 op_disconn,pdata
+	store 1,mem_op
+	jam 50,mem_conn_timer
+	rtn
+	
+
+send_lmp_no_payload:
+	force 1,pdata
+	call msg_send_lmp
+	branch send_lmp_request
+send_lmp_nopayload_reply:
+	force 1,pdata
+	call msg_send_lmp
+	branch send_lmp_reply
+	
+	
+send_lmp_encryption_mode_req:
+	force 2,pdata
+	call msg_send_lmp
+	fetch 1,mem_state_map
+	isolate0 smap_encryption,pdata
+	setflag true,0,pdata
+	and_into 1,pdata
+	istore 1,contw
+	branch send_lmp_request
+
+
+send_lmp_superto:
+	force 3,pdata
+	call msg_send_lmp
+	fetch 2,mem_supervision_to
+	istore 2,contw
+	branch send_lmp_request
+
+send_lmp_name_req:
+	jam 250,mem_conn_timer
+	force 2,pdata
+	call msg_send_lmp
+	fetch 1,mem_name_offset
+	istore 1,contw
+	branch send_lmp_request
+
+send_lmp_test_control:
+	force 10,pdata
+	call msg_send_lmp
+	arg mem_temp_payload,contr
+	force 9,loopcnt
+send_lmp_test_control_loop:	
+	ifetch 1,contr
+	xor_into 0x55,pdata
+	istore 1,contw
+	loop send_lmp_test_control_loop
+	branch send_lmp_request  
+
+send_lmp_quality_of_service_req:
+	branch send_lmp_request
+send_lmp_unit_key:
+	branch send_lmp_request
+
+send_lmp_slot_offset:
+	rtn master
+	call calc_slot_offset
+	force 9,pdata
+	call msg_send_lmp
+	fetch 2,mem_slot_offset
+	istore 2,contw
+	fetch 3,mem_lap
+	istore 3,contw
+	fetch 1,mem_uap
+	istore 1,contw
+	fetch 2,mem_nap
+	istore 2,contw
+	bmark0 mark_switch_initiated,send_lmp_slot_offset_reply
+	set0 mark_switch_initiated,mark
+	call send_lmp_request
+	jam LMP_SWITCH_REQ,mem_lmo_opcode2
+	rtn
+send_lmp_slot_offset_reply:
+	call send_lmp_reply
+	jam LMP_ACCEPTED,mem_lmo_opcode2
+	jam LMP_SWITCH_REQ,mem_lmi_opcode2
+	rtn
+	
+send_lmp_switch_req:
+	arg 0x200,temp
+	branch switch_on_native,master
+	deposit clke_bt
+	branch switch_slack
+switch_on_native:
+	deposit clkn_bt
+switch_slack:
+	deposit bt_clk
+	iadd temp,pdata
+	and_into 0x1fc,pdata
+	store 4,mem_sniff_anchor
+	force 5,pdata
+	call msg_send_lmp
+	fetch 4,mem_sniff_anchor		/* reused as switch instant */
+	rshift pdata,pdata
+	istore 4,contw
+	branch send_lmp_request
+	
+send_lmp_sniff_req:
+	force 10,pdata
+	call msg_send_lmp
+	arg mem_sniff_payload,contr
+	ifetch 9,contr
+	istore 9,contw
+	branch send_lmp_request
+
+	
+send_lmp_timing_accuracy_req:
+/* default to TID_NORM_SEND */
+	force 3,pdata
+	call msg_send_lmp
+	setarg 0x0114
+	istore 2,contw
+	branch send_lmp_request
+	
+send_lmp_unsniff_req:
+//--------------------need to completa
+	force 1,pdata
+	call msg_send_lmp
+	//fetch 1,mem_unsniff_pending
+	//nbranch send_msg_done,blank
+	//jam 1,mem_unsniff_pending
+	//fetch 2,mem_sniff_attempt
+	//fetch 2,mem_nsniff_attempt
+	//lshift3 pdata,pdata
+	//lshift pdata,pdata
+	//store 1,mem_unsniff_cnt
+	branch send_lmp_request
+
+send_lmp_sco_link_req:
+	branch send_lmp_sco_link_master,master
+	jam 0x00,mem_sco_handle
+	fetch 1,mem_mode
+	set1 send_sco_when_slave,pdata
+	store 1,mem_mode
+send_lmp_sco_link_master:
+	jam 0,mem_esco_desco
+	force 7,pdata
+	call msg_send_lmp
+	fetch 1,mem_sco_handle
+	istore 1,contw
+	setarg 0x00		/*timing ctrl flags*/
+	istore 1,contw
+	fetch 1,mem_esco_desco		/*Dsco*/
+	istore 1,contw
+	setarg 0x06		/*Tsco*/
+	istore 1,contw
+	setarg 0x02		/*HV3*/
+	istore 1,contw
+	fetch 1,mem_air_mode
+	istore 1,contw
+	branch send_lmp_reply,master
+	branch send_lmp_tid
+	
+send_lmp_remove_sco_link_req:
+	/* default to TID_NORM_SEND */
+	force 3,pdata
+	call msg_send_lmp
+	fetch 1,mem_sco_handle
+	istore 1,contw
+	force OTHER_END_TERMINATED,pdata
+	istore 1,contw
+	branch send_lmp_request
+	
+send_lmp_max_slot:
+	force 2,pdata
+	call msg_send_lmp
+	fetch 1,mem_max_slot
+	istore 1,contw
+	branch send_lmp_request
+	
+	
+send_lmp_max_slot_req:
+	force 2,pdata
+	call msg_send_lmp
+	setarg 0x05		/*5 slot*/
+	istore 1,contw
+	branch send_lmp_request
+
+send_lmp_setup_complete:
+	fetch 1,mem_state
+	set1 state_conn_comp,pdata
+	store 1,mem_state
+	copy clkn_bt,pdata
+	store 4,mem_aurand_send_delay_time
+	fetch 1,mem_lmp_conn_state
+	bbit1 SENT_SETUP_COMPLETE,send_lmp_setup_complete_has_sent
+	set1 SENT_SETUP_COMPLETE,pdata
+	store 1,mem_lmp_conn_state
+	jam BT_EVT_SETUP_COMPLETE,mem_fifo_temp
+	call ui_ipc_send_event
+	call hci_send_connection_complete
+	force 1,pdata
+	call msg_send_lmp
+	branch send_lmp_request
+send_lmp_setup_complete_has_sent:
+	jam 0,mem_lmp_to_send
+	rtn
+	
+send_lmp_version_req:
+	force 6,pdata
+	call msg_send_lmp
+	fetch 5,mem_lmp_version
+	istore 5,contw
+	branch send_lmp_request
+
+send_lmp_features_req:
+	force 9,pdata
+	call msg_send_lmp
+	fetch 8,mem_features
+	istore 8,contw
+	branch send_lmp_request  
+
+sp_master_send_io_cap_get:
+	call hci_send_io_cap_req_event
+	fetch 1,mem_device_option
+	beq dvc_op_hci,sp_master_send_io_cap_get_hci
+	jam SP_FLAG_COMMIT,mem_master_sp_flag
+	fetch 1,mem_sp_local_key_invalid
+	rtnne SP_KEY_VALID
+sp_master_send_io_cap_get_hci:
+	jam SP_MASTER_STAT_START_DONE,mem_master_sp_state
+	rtn
+
+sp_master_send_io_cap_send:
+	call tid_initiate
+	jam LMP_IO_CAP_REQ,mem_lmo_opcode2
+	jam SP_STAT_KEY_SEND,mem_master_sp_state
+	rtn
+	
+	
+sp_master_send_LMP_ENCAPSULATED_HEADER:
+	call tid_initiate
+	jam      LMP_ENCAPSULATED_HEADER,mem_lmo_opcode2
+	jam SP_STAT_RANDOM_SEND,mem_master_sp_state
+	rtn
+	
+sp_master_commitment_compare:
+	arg mem_sp_calc_result_high,rega
+	arg mem_sp_confirm_remote,regb
+	arg 16,loopcnt
+	call string_compare
+	branch sp_master_commitment_compare_success,zero
+	jam SP_STAT_NULL,mem_master_sp_state
+	call master_clear_mem_master_sp_flag
+	jam   PDU_NOT_ALLOWED,mem_lmo_reason2
+	jam 	LMP_SIMPLE_PAIRING_NUMBER,mem_lmi_opcode2 
+	branch reject_lmp_packet
+sp_master_commitment_compare_success:
+	jam 	SP_STAT_CONFIRM_CALC,mem_master_sp_state
+	call master_set_mem_master_sp_flag
+	jam LMP_SIMPLE_PAIRING_NUMBER,mem_lmi_opcode2
+	branch accept_lmp_msg  
+	
+
+	
+sp_master_send_lmp_simple_pairing_number:
+	jam LMP_SIMPLE_PAIRING_NUMBER,mem_lmo_opcode2
+	rtn
+	
+
+
+sp_send_lmp_encapsulated_header:
+	// calculate the private & public key here
+	//jam      LMP_ENCAPSULATED_HEADER,mem_lmp_to_send
+	jam      LMP_ENCAPSULATED_HEADER,mem_lmo_opcode2
+	//jam      TID_PAIRING,mem_lmp_tid
+	rtn
+	//fetch 1,mem_tid_table
+	//set1 TID_PAIRING,pdata
+	//store 1,mem_tid_table
+     
+    
+send_lmp_encapsulated_header: 
+	jam 0,mem_sp_local_key_send_count
+	force 4,pdata
+	call msg_send_lmp
+	force ENCAPSULATED_MAJOR_TYPE_P192,pdata
+	istore 1,contw
+	force ENCAPSULATED_MINOR_TYPE_P192,pdata
+	istore 1,contw  
+	force ENCAPSULATED_LEN_P192,pdata
+	istore 1,contw 
+	call check_localsm
+	branch send_lmp_request,true
+	branch send_lmp_reply
+
+send_lmp_encapsulated_payload:
+	//jam      TID_PAIRING,mem_lmp_tid
+	 force 17,pdata
+	call msg_send_lmp
+	fetch 1,mem_sp_local_key_send_count
+	arg mem_sp_pubkey_local,contr
+	iadd contr,contr    
+	ifetch   8,contr
+	istore   8,contw
+	ifetch   8,contr
+	istore   8,contw
+	fetch    1,mem_sp_local_key_send_count
+	increase 16,pdata
+	store    1,mem_sp_local_key_send_count
+	call check_localsm
+	branch send_lmp_request,true
+	branch send_lmp_reply
+	//branch send_lmp_request
+	
+sp_send_lmp_simple_pairing_comfirm:
+        jam      SP_STAT_RANDOM_RECV,mem_sp_state
+        jam      LMP_SIMPLE_PAIRING_CONFIRM,mem_lmo_opcode2
+        rtn
+send_lmp_simple_pairing_comfirm:
+        //jam      SP_STAT_RANDOM_RECV,mem_sp_state
+        //jam      TID_PAIRING,mem_lmp_tid
+        force    17,pdata
+        call msg_send_lmp   
+        arg      mem_sp_calc_result_high,contr
+        ifetch   8,contr
+        istore   8,contw
+        ifetch   8,contr
+        istore   8,contw 
+        branch send_lmp_reply
+
+sp_send_lmp_simple_pairing_number:
+	call lmo_fifo_process
+	//if lmo_fifo(0,1,3) is full,we should add code for stop jam NEW LMP to mem_lmo_opcode2
+	jam      LMP_SIMPLE_PAIRING_NUMBER,mem_lmo_opcode2
+	rtn
+
+send_lmp_simple_pairing_number:
+	//jam      TID_PAIRING,mem_lmp_tid
+	call check_localsm
+	call sp_local_random_key_generator,true
+	force    17,pdata
+	call msg_send_lmp
+	arg      mem_sp_random_local,contr
+	ifetch   8,contr
+	istore   8,contw
+	ifetch   8,contr
+	istore   8,contw
+	call check_localsm
+	nbranch send_lmp_reply,true
+	branch send_lmp_request,true
+
+master_sp_sm_end:
+	//jam DEFAULT_STATEMACHINE,mem_sp_localsm
+	jam SP_STAT_DONE,mem_master_sp_state
+sp_aurand_send:
+	call tid_initiate
+	jam LMP_AU_RAND,mem_lmo_opcode2
+	call check_localsm_master
+	branch sp_master_key_prarm_push,true
+	branch sp_link_key_prarm_push
+master_sp_send_lmp_dhkey_check:
+	call tid_reply
+sp_send_lmp_dhkey_check: 
+	jam      LMP_DHKEY_CHECK,mem_lmo_opcode2
+	rtn
+send_lmp_dhkey_check: 
+	//jam      TID_PAIRING,mem_lmp_tid
+	force    17,pdata
+	call     msg_send_lmp
+	arg      mem_sp_calc_result_high,contr
+	ifetch   8,contr
+	istore   8,contw
+	ifetch   8,contr
+	istore   8,contw 
+	call check_localsm
+	nbranch send_lmp_reply,true
+	branch send_lmp_request,true
+
+send_lmp_enc_key_size_mask_res:
+	force 3,pdata
+	call msg_send_lmp   
+	setarg 0xfffe //enc key size mask
+	istore 2,contw
+	branch send_lmp_reply
+
+send_lmp_auto_rate:
+	branch send_lmp_request
+send_lmp_clkoffset_req:
+	branch send_lmp_request
+send_lmp_quality_of_service:
+	branch send_lmp_request
+send_lmp_test_activate:
+	branch send_lmp_request
+
+/******** LMP request/reply messages **********/
+/****** TID transaction specific *******/
+
+send_lmp_comb_key:
+	call generate_random_number
+	arg mem_lap,rega
+	call generate_linkkey
+	force 17,pdata
+	call msg_send_lmp
+	arg mem_kinit,rega
+	arg mem_random_number,regb
+	call xor16
+	nbranch send_lmp_follow,master
+	branch send_lmp_tid
+
+send_lmp_inrand:
+	call generate_random_number
+	arg mem_plap,rega
+	call generate_kinit
+send_lmp_rand:	/* used by in_rand,au_rand,start_encrypt */
+	force 17,pdata
+	call msg_send_lmp
+	arg mem_random_number,contr
+	call memcpy16
+	fetch 1,mem_conn_sm 
+	beq CONN_SM_AUTH_WAIT,send_lmp_request
+	beq CONN_SM_PAIRING_WAIT,send_lmp_request
+	branch send_lmp_tid
+
+send_lmp_aurand:
+	fetch 1,mem_pairing_auth
+	branch send_lmp_aurand_notpairing,blank
+	call check_localsm
+	call tid_initiate,true
+	ncall tid_reply,true
+	branch send_lmp_aurand_common
+send_lmp_aurand_notpairing:
+	call tid_initiate
+send_lmp_aurand_common:
+	call generate_random_number
+	branch send_lmp_rand
+
+send_lmp_sres:
+	arg mem_lap,rega
+	call function_e1
+	force 5,pdata
+	call msg_send_lmp
+	fetch 4,mem_input_store
+	istore 4,contw
+	arg mem_sres_tid,temp
+	call special_tid_store
+	call copy_aco
+	call check_localsm
+	branch send_lmp_sres_master,true
+	jam DONE_ENCRYP,mem_wait_encryption
+	fetch 1,mem_pairing_auth
+	rtn blank
+	jam LMP_AU_RAND,mem_lmo_opcode2
+send_lmp_sres_master:
+	fetch 1,mem_link_key_exists
+	rtn blank
+	call check_localsm
+	call hci_send_linkkey_notification,true
+send_lmp_sres_startenc:
+	call check_localsm
+	nbranch send_lmp_sres_startenc_slave,true
+	fetch 1,mem_auth_enable
+	rtn blank
+	jam LMP_ENCRYPTION_MODE_REQ, mem_lmo_opcode2
+	rtn
+send_lmp_sres_startenc_slave:
+	rtnmark0 mark_slave_in_rand_accepted
+	set0 mark_slave_in_rand_accepted,mark
+	jam LMP_ENCRYPTION_MODE_REQ, mem_lmo_opcode2
+	rtn
+	
+
+	
+send_lmp_start_encryption:
+	call generate_random_number
+	call function_e3
+	force 17,pdata
+	call msg_send_lmp
+	arg mem_random_number,contr
+	call memcpy16
+	branch send_lmp_tid
+
+send_lmp_stop_encryption_req:
+	force 1,pdata
+	call msg_send_lmp
+	branch send_lmp_tid
+
+send_lmp_encryption_key_size_req:
+	force 2,pdata
+	call msg_send_lmp
+	force 16,pdata
+	istore 1,contw
+	store 1,mem_key_size
+	branch send_lmp_tid
+
+msg_send_lmp:
+/* FLOW is set high and LMP is indicated */
+	lshift3 pdata,pdata
+	or_into 0x07,pdata
+	store 1,mem_lmo_header_length
+	arg 17,loopcnt
+	arg mem_lmo_payload,contw
+	call clear_mem
+	arg mem_lmo_payload,contw
+	rtn
+
+send_lmpext:
+	and pdata,0x7f,rega
+	jam LMP_ESCAPE,mem_lmp_to_send
+	deposit queue
+	call msg_send_lmp
+	deposit rega
+	istore 1,contw
+	rtn
+
+send_lmp_follow:
+	fetch 1,mem_lmp_to_send
+	lshift pdata,pdata
+	fetcht 1,mem_state_map
+	isolate1 smap_lmptid,temp
+	setflag true,0,pdata
+	branch send_lmp_exit
+
+
+send_lmp_tid:
+	fetcht 1,mem_state_map
+	and_into 1,temp
+	branch send_lmp_end
+
+send_lmp_reply:
+	force 0,temp
+	branch send_lmp_end
+	
+send_lmp_request:
+	force 1,temp
+send_lmp_end:
+	fetch 1,mem_lmp_to_send
+	lshift pdata,pdata
+	setflag master,0,pdata
+	ixor temp,pdata
+send_lmp_exit:
+	store 1,mem_lmo_header_opcode
+	jam 0,mem_lmp_to_send
+	call lmo_fifo_process_lmo0empty
+	enable user
+	rtn
+	
+lmo_fifo_process:
+	set1 mark_ext_patch,mark
+	bpatch patch3c_4,mem_patch3c
+	fetch 1,mem_lmp_to_send
+	branch lmo_fifo_process_lmo0empty,blank
+	fetch 1,mem_lmo_opcode1
+	nrtn blank
+	branch lmo_fifo_process_lmo2to1
+lmo_fifo_process_lmo0empty:
+	fetch 1,mem_lmo_opcode1
+	branch lmo_fifo_process_lmo1_empty,blank
+	fetch 3,mem_lmo_opcode1
+	store 3,mem_lmp_to_send//1=>0
+	fetcht 1,mem_lmo_tid1
+	fetch 1,mem_state_map
+	set0 smap_lmptid,pdata
+	ior temp,pdata
+	store 1,mem_state_map
+	jam 0,mem_lmo_opcode1
+lmo_fifo_process_lmo2to1:
+	fetch 1,mem_lmo_opcode2
+	rtn blank
+	fetch 4,mem_lmo_opcode2
+	store 4,mem_lmo_opcode1//2=>1
+	jam 0,mem_lmo_opcode2
+	rtn
+lmo_fifo_process_lmo1_empty:
+	fetch 1,mem_lmo_opcode2
+	rtn blank
+	fetch 3,mem_lmo_opcode2
+	store 3,mem_lmp_to_send//2=>0	
+	fetcht 1,mem_lmo_tid2
+	fetch 1,mem_state_map
+	set0 smap_lmptid,pdata
+	ior temp,pdata
+	store 1,mem_state_map
+	jam 0,mem_lmo_opcode2
+	rtn
+	
+//input:temp
+special_tid_store:
+	set1 mark_ext_patch,mark
+	bpatch patch3c_5,mem_patch3c
+	fetch 1,mem_state_map
+	copy pdata,regc
+	ifetch 1,temp
+	call pop_tid_follow
+	call send_lmp_follow
+	copy regc,pdata
+	store 1,mem_state_map
+	rtn
+	
+tid_reply:
+	fetcht 1,mem_state_map
+	set0 smap_lmptidinit,temp
+	storet 1,mem_state_map
+	rtn
+	
+tid_initiate:
+	fetcht 1,mem_state_map
+	set1 smap_lmptidinit,temp
+	storet 1,mem_state_map
+	rtn
+	
+	/* true if transaction from remote */
+tid_check:
+	nsetflag master,smap_lmptid,pdata //it is ok
+	fetcht 1,mem_state_map
+	ixor temp,pdata
+	isolate1 smap_lmptid,pdata
+	rtn	
+
+	/* set to remote */
+tid_set_reply:
+	fetch 1,mem_state_map
+	setflag master,smap_lmptid,pdata //it is ok
+	store 1,mem_state_map
+	rtn
+
+	/*rtn true when we lead lmp*/
+check_localsm:
+	fetch 1,mem_sp_localsm
+	compare 	LOCAL_STATEMACHINE,pdata,0x7f
+	rtn
+setlocalsm_master:
+	fetch 1,mem_sp_localsm
+	set1 7,pdata
+	store 1,mem_sp_localsm
+	rtn
+setlocalsm_slave:
+	fetch 1,mem_sp_localsm
+	set0 7,pdata
+	store 1,mem_sp_localsm
+	rtn
+check_localsm_master:
+	fetch 1,mem_sp_localsm
+	isolate1 7,pdata
+	store 1,mem_sp_localsm
+	rtn
+	
+generate_random_number:
+	/* generating a 16 byte random number,storing in ape_random_number */
+	arg mem_random_number,contw
+generate_random:
+	force 16,loopcnt
+generate_random_another:
+generate_random_loop:
+	random pdata
+	istore 1,contw
+	loop generate_random_another
+	rtn
+
+generate_linkkey:
+	call function_e21
+	arg mem_link_key,rega
+	arg mem_input_store,regb
+	ifetch 8,rega					/* check if already got comb key */
+	fetcht 1,mem_state
+	nsetflag blank,state_combkey,temp
+	storet 1,mem_state
+	copy rega,contw
+	call  xor16
+	branch generate_linkkey_continue
+
+/*********************************/
+/*********lmp send*************/
+/********************************/
+
+process_conn_sm:
+	//nrtn master
+	set1 mark_ext_patch,mark
+	bpatch patch3c_6,mem_patch3c
+	fetch 1,mem_lmo_opcode2
+	branch process_conn_sm_continue,blank
+	call lmo_fifo_process
+	fetch 1,mem_lmo_opcode2
+	nrtn blank
+process_conn_sm_continue:
+	fetch 1,mem_conn_sm
+	rtn blank
+	/* state machine begins in standby */
+	//beq CONN_SM_STANDBY, host_create_conn_begin
+	//beq CONN_SM_WAIT_PAGE, host_create_conn_wait_page
+	beq CONN_SM_SEND_CONN_REQ, host_create_conn_send_conn_req
+	beq CONN_SM_WAIT_CONN_ACCEPT, host_create_conn_wait_accept
+	beq CONN_SM_SEND_FEATURES, host_create_conn_send_features
+	beq CONN_SM_WAIT_FEATURES_RES, host_create_conn_waiting
+	beq CONN_SM_SEND_SWITCH,host_create_conn_send_switch
+	beq CONN_SM_AUTH_PAIR, host_create_conn_auth_pair
+	beq CONN_SM_AUTH_PAIR_WAIT, host_create_conn_auth_pair_wait
+	beq CONN_SM_ENCRYPT, host_create_conn_encrypt
+	beq CONN_SM_ENCRYPT_WAIT, host_create_conn_encrypt_wait
+	beq CONN_SM_ENCRYPT_WAIT_CLEAR, host_create_conn_encrypt_wait_clear
+	beq CONN_SM_SEND_SETUP_COMPLETE, host_create_conn_send_setup_complete
+	beq CONN_SM_WAIT_SETUP_COMPLETE, host_create_conn_wait_setup_complete
+	beq CONN_SM_DETACH_DELAY,host_create_conn_master_detach
+	beq CONN_SM_SEND_VERSION, host_create_conn_send_version
+	beq CONN_SM_WAIT_VERSION, host_create_conn_waiting
+	beq CONN_SM_WAIT_SWITCH_AFTER_HOST_CONNECTION, host_creat_conn_wait_switch
+	beq CONN_SM_SEND_FEATURES_EXT,host_creat_conn_send_feat_ext
+	beq CONN_SM_WAIT_FEATURES_EXT,host_create_conn_waiting
+	beq CONN_SM_PAIRING,host_create_conn_pairing
+	beq CONN_SM_PAIRING_WAIT,host_create_conn_pairing_wait
+	beq CONN_SM_AUTH,host_create_conn_auth
+	beq CONN_SM_AUTH_WAIT,host_create_conn_auth_wait
+	beq CONN_SM_DONE,host_create_conn_done
+	beq CONN_SM_WAIT_DONE,host_create_conn_done_wait
+	jam CONN_SM_STANDBY,mem_conn_sm
+	/* sending error message to host */
+	rtn
+host_create_conn_done:
+	fetch 1,mem_lmp_conn_state		
+	rtnbit0 RECEIVED_SETUP_COMPLETE
+	rtnbit0 SENT_SETUP_COMPLETE
+	jam CONN_SM_STANDBY,mem_conn_sm
+	call host_conn_judge_encrypt
+	branch scheduler_start_upper_sm
+	
+host_conn_judge_encrypt:
+	fetch 1,mem_connection_options
+	rtnbit0 CONNECTION_ENCRYPT
+	jam CONN_SM_ENCRYPT_WAIT,mem_conn_sm
+	rtn
+
+host_create_conn_done_wait:
+	arg enpt_delay_timer,queue
+	call timer_check
+	nrtn blank
+	jam CONN_SM_DONE,mem_conn_sm
+	rtn
+	
+host_create_conn_auth:
+	fetch 1,mem_connection_options
+	set0 CONNECTION_AUTH,pdata
+	store 1,mem_connection_options
+	jam CONN_SM_AUTH_WAIT,mem_conn_sm
+	jam LMP_AU_RAND,mem_lmo_opcode2
+	rtn 
+host_create_conn_auth_wait:
+	rtn
+host_create_conn_pairing:
+	fetch 1,mem_pincode_state
+	rtnne pincode_state_pincode_ready //wait for pincode
+	call host_auth
+	jam CONN_SM_PAIRING_WAIT,mem_conn_sm
+	rtn
+
+host_create_conn_pairing_wait:
+	rtn
+host_creat_conn_send_feat_ext:
+	jam CONN_SM_WAIT_FEATURES_EXT,mem_conn_sm
+	jam LMP_EXT_FEATURES_REQ,mem_lmo_opcode2
+	rtn
+host_create_conn_send_version:
+	jam CONN_SM_WAIT_VERSION,mem_conn_sm
+	jam LMP_VERSION_REQ,mem_lmo_opcode2
+	rtn 
+	
+host_creat_conn_wait_switch:
+	fetch 1,mem_switch_flag
+	rtneq SWITCH_FLAG_INIT
+	beq SWITCH_FLAG_ACCEPT,host_create_conn_switch_accept
+	arg switch_wait_timer,queue
+	call timer_check
+	nrtn blank
+	jam SWITCH_FLAG_INIT,mem_switch_flag
+	branch host_create_conn_switch
+host_create_conn_switch_accept:
+	rtn master
+	branch host_create_conn_auth_pair
+
+host_create_conn_send_features:
+	jam CONN_SM_WAIT_FEATURES_RES,mem_conn_sm
+	jam LMP_FEATURES_REQ,mem_lmo_opcode2
+	rtn 
+host_create_conn_send_switch:
+	jam LMP_SWITCH_REQ,mem_lmo_opcode2
+	set1 mark_switch_initiated,mark
+	jam CONN_SM_WAIT_CONN_ACCEPT,mem_conn_sm
+	setarg 0x1ff
+	store 2, mem_soft_timer
+	rtn
+host_create_conn_send_conn_req:
+	jam CONN_SM_WAIT_CONN_ACCEPT,mem_conn_sm
+	jam 0xff,mem_soft_timer
+	set0 mark_reconn_recieve_switch,mark
+	jam LMP_HOST_CONNECTION_REQ,mem_lmo_opcode2
+	branch init_lmp_reinit
+host_create_conn_wait_accept:
+	rtnmark1 mark_reconn_recieve_switch
+	fetch 2,mem_soft_timer
+	sub pdata,1,pdata
+	branch host_create_conn_resend,zero
+	store 2, mem_soft_timer
+	rtn
+host_create_conn_resend:
+	jam CONN_SM_SEND_SWITCH,mem_conn_sm
+	rtn
+host_create_conn_waiting:
+	/* we will exit waiting for connection request accepted, features res, or other commands to finish */
+	rtn 
+
+host_create_conn_switch:
+	fetch 1,mem_lmp_conn_state
+	rtnbit0 SENT_SETUP_COMPLETE
+	rtnbit0 RECEIVED_SETUP_COMPLETE
+	fetch 1,mem_connection_options
+	set0 CONNECTION_SWITCH,pdata
+	store 1,mem_connection_options
+	jam LMP_SWITCH_REQ,mem_lmo_opcode2
+	jam CONN_SM_WAIT_SWITCH_AFTER_HOST_CONNECTION,mem_conn_sm
+	rtn 
+
+host_create_conn_send_setup_complete:
+	jam CONN_SM_WAIT_SETUP_COMPLETE,mem_conn_sm	
+	jam LMP_SETUP_COMPLETE,mem_lmo_opcode2
+	rtn 
+
+host_create_conn_wait_setup_complete:
+	fetch 1,mem_lmp_conn_state
+	rtnbit0 RECEIVED_SETUP_COMPLETE
+	jam CONN_SM_STANDBY,mem_conn_sm	
+
+	rtn
+host_create_conn_wait_setup_complete_rtn:	
+	jam CONN_SM_AUTH_PAIR ,mem_conn_sm
+	rtn
+
+host_create_conn_master_detach:
+	fetch 1, mem_soft_timer
+	increase -1,pdata
+	branch host_create_conn_send_detach,blank//detach
+	store 1, mem_soft_timer
+	rtn 
+host_create_conn_send_detach:
+	jam LMP_DETACH,mem_lmo_opcode2
+	jam LOCAL_HOST,mem_disconn_reason_send
+	jam 0,mem_conn_sm
+	rtn
+host_create_conn_auth_pair:
+	/* checking whether or not to do m/s switch */
+	fetch 1,mem_connection_options
+	bbit1 CONNECTION_SWITCH,host_create_conn_switch
+	bbit1 CONNECTION_AUTH,host_create_conn_auth_pair_true
+host_create_conn_sm_done:
+	jam CONN_SM_DONE,mem_conn_sm
+	rtn
+host_create_conn_auth_pair_true:
+	fetch 1,mem_link_key_exists
+	branch host_create_conn_auth_pair_nokey,blank
+	fetch 1,mem_lmp_conn_state
+	rtnbit0 SENT_SETUP_COMPLETE
+	rtnbit0 RECEIVED_SETUP_COMPLETE
+	fetch 4,mem_aurand_send_delay_time
+	arg 100,temp
+	iadd temp,temp
+	copy clkn_bt,pdata
+	isub temp,null
+	nrtn positive
+	branch host_create_conn_auth
+
+
+
+host_create_conn_auth_pair_nokey:
+	jam CONN_SM_PAIRING,mem_conn_sm
+	jam 4,mem_pin_length
+	setarg 0x3030
+	store 2,mem_pin
+	istore 2,contw
+	jam pincode_state_pincode_ready,mem_pincode_state
+	branch host_create_conn_pairing
+
+host_create_conn_auth_pair_wait:
+	rtn
+host_create_conn_encrypt:
+	fetch 1,mem_connection_options
+	bbit1 CONNECTION_ENCRYPT,host_create_conn_encrypt_start
+	jam CONN_SM_DONE,mem_conn_sm
+	rtn 
+
+host_create_conn_encrypt_start:
+	fetch 1,mem_connection_options
+	set0 CONNECTION_ENCRYPT,pdata
+	store 1,mem_connection_options
+	jam LMP_ENCRYPTION_MODE_REQ,mem_lmo_opcode2  
+	rtn
+
+host_create_conn_encrypt_wait:
+	fetch 1, mem_wait_encryption
+	rtn blank
+	jam CONN_SM_STANDBY,mem_conn_sm
+	branch host_create_conn_encrypt_start 
+
+host_create_conn_encrypt_wait_clear:
+	jam CONN_SM_SEND_SETUP_COMPLETE,mem_conn_sm
+	rtn 
+
+host_auth:
+	fetch 1,mem_op
+	bbit1 op_inrand_req,remote_auth
+	call tid_initiate
+	jam LMP_IN_RAND,mem_lmo_opcode2
+	branch cmd_exit
+remote_auth:
+	fetch 1,mem_op
+	set0 op_inrand_req,pdata
+	store 1,mem_op
+	call lmp_accept_inrand
+	call tid_set_reply
+	branch cmd_exit
+
+pincode_reinit:
+	setarg 4
+	store 1,mem_pin_length
+	setarg 0x3030
+	istore 2,contw
+	istore 2,contw
+	rtn
+	
+
+
+
+
+
+
+module_init:
+	rtn wake
+	jam 0,mem_module_task
+	call module_gpio_init
+	call module_init_static_string
+	setarg module_process_idle
+	store 2,mem_cb_idle_process
+	setarg module_conn_process
+	store 2,mem_cb_bt_process
+	setarg module_process_bb_event
+	store 2,mem_cb_bb_event_process
+	setarg module_le_rx
+	store 2,mem_cb_att_write
+	setarg module_conn_process
+	store 2,mem_cb_le_process
+	set1 mark_ext_patch,mark
+	bpatch patch30_0,mem_patch30
+	setarg module_lpm_lock
+	store 2,mem_cb_check_wakelock
+	setarg module_le_tx_update_data
+	store 2,mem_cb_update_notify_value
+	setarg 0
+	store 4,mem_last_uart_clock
+	store 2,mem_module_prepare_tx_len
+	call module_hardware_init
+	call init_module_environment
+	call check_module_disabled
+	branch eeprom_load_reconn_info
+
+module_hardware_init:
+	rtn wake
+	setarg uart_baud_115200
+	store uart_baud_len,mem_baud
+module_lpm_uart_init:
+	call init_filter_ram
+	setarg mem_module_rx_buf
+	hstore 2,core_uart_rsaddr
+	setarg mem_module_rx_buf_end
+	hstore 2,core_uart_readdr
+	setarg mem_module_tx_buf
+	hstore 2,core_uart_tsaddr
+	setarg mem_module_tx_buf_end
+	hstore 2,core_uart_teaddr
+	hjam 0x4,core_gpio_sel1
+	jam 0xff,mem_ucode_id_local
+	hjam 0x0,core_uart_ctrl
+ 	setarg mem_module_tx_buf
+	hstore 2,core_uart_twptr
+	hstore 2,core_uart_trptrp
+	setarg mem_module_rx_buf
+	hstore 2,core_uart_rrptr
+	branch hci_init_common 
+
+
+module_lpm_init:
+	call module_lpm_uart_init
+	branch module_gpio_init
+	
+module_gpio_init:
+	//module state pin
+	call ui_led_init	
+	call app_led_start_blink
+	//module conn state pin
+	fetcht 1,mem_module_connect_state_gpio
+	call gpio_config_output
+	call module_set_conn_pin_low
+	
+	fetcht 1,mem_module_wake_up_gpio
+	call gpio_config_input
+	fetcht 1,mem_at_gpio
+	branch gpio_config_input_without_wake
+
+module_lpm_lock:
+	fetcht 1,mem_module_wake_up_gpio
+	call gpio_get_bit
+	nbranch app_put_lpm_wake_lock,true
+	branch app_get_lpm_wake_lock
+
+	
+/*************at dispatch*******************/
+module_process_idle:
+	branch module_app_dispatch
+module_conn_process:
+	branch module_app_dispatch
+module_app_dispatch:
+	set1 mark_ext_patch,mark
+	bpatch patch30_1,mem_patch30
+	call module_control_air_flow
+	call module_uart_set
+	call l2cap_malloc_is_fifo_full
+	nrtn blank
+	branch module_process
+module_process_bb_event:
+	copy regc,pdata
+	beq BT_EVT_PINCODE_REQ,module_process_evt_pincode_req
+	beq BT_EVT_RECONN_FAILED,module_reconn_fail
+	beq BT_EVT_RECONN_PAGE_TIMEOUT,module_page_time_out
+	beq BT_EVT_BB_DISCONNECTED,module_process_bb_event_disconned
+	beq BT_EVT_SWITCH_NOT_ACCEPT,module_process_switch_not_accept
+	beq BT_EVT_SWITCH_ACCEPT,module_process_switch_accept
+	beq BT_EVT_SNIFF_ACCEPT,module_process_sniff_accept
+	beq BT_EVT_SNIFF_NOT_ACCEPT,module_process_sniff_not_accept
+	beq BT_EVT_UNSNIFF_ACCEPT,module_process_unsniff_accept
+	beq BT_EVT_UNSNIFF_NOT_ACCEPT,module_process_unsniff_not_accept
+	beq BT_EVT_LE_CONNECTED,module_process_le_conn
+	beq BT_EVT_BB_CONNECTED,module_process_bb_conn
+	beq BT_EVT_LE_DISCONNECTED,module_process_bb_even_le_disconn
+	beq BT_EVT_SETUP_COMPLETE,module_process_setup_complete
+	beq BT_EVT_ENTER_SNIFF,module_sniff_param_check
+	beq BT_EVT_EXIT_SNIFF,app_lpm_mult_disable
+	and pdata,0x0f,temp
+	and_into BT_EVT_TIMER_MASK,pdata
+	beq BT_EVT_TIMER_INIT,module_bb_event_timer
+	rtn
+
+module_process_bb_event_disconned:
+	call module_disconn_start
+	fetch APP_DISC_RSN_SIZE,mem_app_disconn_reason
+	rtnbit0 APP_DISC_AFTER_SETUP_DONE
+	arg 3,loopcnt
+	arg mem_prarm_dis,contr
+	branch send_mem_to_uart
+	
+module_sniff_param_check:
+	//fetch 1,mem_context
+	//rtnbit0 state_insniff
+	fetch 2,mem_context+coffset_tsniff
+	rshift pdata,pdata
+	fetcht 2,mem_sniff_param_interval
+	isub temp,null
+	nbranch module_sniff_param_check_unsniff,zero
+	branch app_lpm_mult_enable
+module_sniff_param_check_unsniff:
+	fetch 1,mem_module_task
+	rtnbit1 AT_TASK_UNSINFF
+	hfetch 2,core_uart_rxitems    //*
+	ncall at_set_unsniff_task_flag,blank    //*加这两句话
+	branch app_bt_sniff_exit
+ 	
+module_process_setup_complete:
+	call module_conn_start
+	call module_check_cmode
+	branch module_uart_send_conn,zero
+	branch  app_bt_disconnect
+module_uart_send_conn:
+	arg 4,loopcnt
+	arg mem_prarm_conn,contr
+	branch send_mem_to_uart
+	
+module_process_bb_even_le_disconn:
+	call module_disconn_start
+	arg 5,loopcnt
+	arg mem_prarm_bledis,contr
+	branch send_mem_to_uart
+
+module_process_evt_pincode_req:
+	call at_restore_pin_code
+	branch  app_bt_set_pincode
+module_process_switch_not_accept:
+	fetch 1,mem_module_task
+	rtnbit0 AT_TASK_SWITCH
+	set0 AT_TASK_SWITCH,pdata
+	store 1,mem_module_task
+	branch at_error_rev_end
+	
+module_process_switch_accept:
+	fetch 1,mem_module_task
+	rtnbit0 AT_TASK_SWITCH
+	set0 AT_TASK_SWITCH,pdata
+	store 1,mem_module_task
+	branch at_nomal_rev_end
+
+module_process_sniff_accept:
+	rtn
+
+module_process_sniff_not_accept:
+	rtn
+	
+module_process_unsniff_accept:
+	fetch 1,mem_module_task
+	bbit0 AT_TASK_UNSINFF,app_bt_enter_sniff
+	branch at_clear_unsniff_task_flag
+	
+module_process_unsniff_not_accept:
+	rtn
+	
+module_process_le_conn:
+	call module_conn_start
+	arg mem_le_plap,regb
+	call module_check_cmode
+	branch module_uart_send_leconn,zero
+	branch  app_ble_disconnect
+module_uart_send_leconn:
+	arg 6,loopcnt
+	arg mem_prarm_bleconn,contr
+	branch  send_mem_to_uart
+
+module_process_bb_conn:
+	rtn
+
+
+module_reconn_fail:
+	arg 7,loopcnt
+	arg mem_prarm_recfail,contr
+	call send_mem_to_uart
+	branch module_disconn_start
+module_page_time_out:
+	arg 7,loopcnt
+	arg mem_prarm_pageout,contr
+	call send_mem_to_uart
+module_disconn_start:
+	call module_start_adv_discovery
+	branch module_set_conn_pin_high
+
+module_start_adv_discovery:
+	fetch 1,mem_module_state
+	isolate1 AT_STATE_SET30,pdata
+	call app_bt_start_discovery,true
+	fetch 1,mem_module_state
+	isolate1 AT_STATE_SET40,pdata
+	call app_ble_start_adv,true
+	rtn
+module_set_conn_pin_high:
+	fetcht 1,mem_module_connect_state_gpio
+	branch gpio_out_active
+
+module_conn_start:
+	call module_stop_adv_discovery
+	branch module_set_conn_pin_low
+	
+module_stop_adv_discovery:
+	fetch 1,mem_module_state
+	isolate1 AT_STATE_SET30,pdata
+	call app_bt_stop_discovery,true
+	fetch 1,mem_module_state
+	isolate1 AT_STATE_SET40,pdata
+	call app_ble_stop_adv,true
+	rtn
+module_set_conn_pin_low:
+	fetcht 1,mem_module_connect_state_gpio
+	branch gpio_out_inactive
+
+
+	
+
+module_process:
+	fetch 1,mem_device_option
+	rtnne dvc_op_module
+	hfetch 2,core_uart_rxitems
+	rtn blank
+	store 2,mem_current_packet_length
+
+	call spp_mode
+	branch at_process,true
+	call at_ckeck_send_buff
+	branch module_tx_packet
+
+
+spp_mode:    //true=1透传\true=0 不透传
+	fetcht 1,mem_at_gpio
+	branch gpio_get_bit
+
+
+module_exit_sniff:
+	fetch 1,mem_module_task
+	rtnbit1 AT_TASK_UNSINFF
+	call at_set_unsniff_task_flag	
+	branch app_bt_sniff_exit
+
+module_tx_packet:
+	fetch 1,mem_context
+	bbit0 state_inconn,spp_send_end
+	fetch 1,mem_context+coffset_mode
+	bbit1 mode_le,modle_le_tx
+	call app_check_sniff
+	branch module_exit_sniff,true
+	branch spp_tx_rfcomm_packet
+
+module_le_rx:
+	call le_att_get_handle_ptr
+	ifetch 1,contr
+	copy contr,rega
+	call get_uart_twptr
+	copy regb,loopcnt
+	copy rega,contr
+	call uart_copy_tx_bytes
+	branch uartd_send
+
+
+module_le_tx_update_data:
+	//get tx len
+	fetch 2,mem_module_prepare_tx_len
+	rtn blank
+	arg DM_LE_BUFF_LEN,temp
+	call not_greater_than
+	store 2,mem_module_temp_len
+	//reduced mem_module_prepare_tx_len
+	copy pdata,temp
+	fetch 2,mem_module_prepare_tx_len
+	isub temp,pdata
+	store 2,mem_module_prepare_tx_len
+	nbranch assert,positive
+	//get destination for copy
+	arg PRCP_TX_LE,temp
+	storet 2,mem_le_notify_handle
+	call le_att_get_handle_ptr
+	branch assert,blank
+	add contr,1,contw
+	//copy len
+	fetch 2,mem_module_temp_len
+	copy pdata,loopcnt
+	//get source for copy
+	call get_uart_rrptr
+	//copy
+	call uart_copy_rx_bytes
+	//release and clean
+	fetch 2,mem_module_temp_len
+	store 2,mem_current_packet_length
+	store 2,mem_le_notify_len
+	branch spp_send_end 
+
+
+modle_le_tx:
+	rtnmark0 mark_context
+	call modle_le_tx_once // 3 times
+	call modle_le_tx_once
+modle_le_tx_once:
+	call le_xtype_fifo_is_near_full
+	nrtn blank
+	hfetch 2,core_uart_rxitems
+	rtn blank
+	fetcht 2,mem_module_prepare_tx_len
+	isub temp,pdata    //uart_rx_len - data_in_ble_tx_fifo
+	nbranch assert,positive
+	store 2,mem_current_packet_length
+	rtn blank
+	call at_ckeck_send_buff_le
+	fetch 2,mem_module_prepare_tx_len
+	fetcht 2,mem_current_packet_length
+	iadd temp,pdata
+	store 2,mem_module_prepare_tx_len
+	fetcht 2,mem_module_prepare_tx_len
+	hfetch 2,core_uart_rxitems
+	isub temp,rega
+	nbranch assert,positive
+	jam ATTOP_HANDLE_VALUE_NOTIFICATION,mem_fifo_temp
+	branch le_xtype_fifo_in
+
+module_bb_event_timer:
+	storet 1,mem_app_evt_timer_count
+module_bb_event_100ms_loop:
+	fetch 1,mem_app_evt_timer_count
+	rtn blank
+	increase -1,pdata
+	store 1,mem_app_evt_timer_count
+	call module_bb_event_hud_ms
+	branch module_bb_event_100ms_loop
+	
+module_bb_event_hud_ms:
+	fetch 2,mem_at_scan_time
+	rtn blank
+	increase -1,pdata
+	store 2,mem_at_scan_time
+	nrtn blank
+	fetch 1,mem_at_using_flag
+	jam 0,mem_at_using_flag
+	bbit1 AT_FLAG_LEINQ,modue_le_inq
+	bbit1 AT_FLAG_INQ,module_inq
+	branch assert
+modue_le_inq:
+	branch app_ble_stop_scan
+module_inq:
+	jam hci_cmd_inquiry_cancel,mem_hci_cmd
+	rtn
+
+at_ckeck_send_buff:
+	fetch 1,mem_context+coffset_mode
+	bbit1 mode_le,at_ckeck_send_buff_le
+	fetch 2,mem_current_packet_length
+	arg DM_REFCOM_BUFF_LEN,temp
+	/*long packet*/
+	call not_greater_than
+	store 2,mem_current_packet_length
+	rtn
+at_ckeck_send_buff_le:
+	fetch 2,mem_current_packet_length
+	arg DM_LE_BUFF_LEN,temp
+	call not_greater_than
+	store 2,mem_current_packet_length
+	rtn
+
+at_set_unsniff_task_flag:
+	fetch 1,mem_module_task
+	set1 AT_TASK_UNSINFF,pdata
+	store 1,mem_module_task
+	rtn
+
+at_clear_unsniff_task_flag:
+	fetch 1,mem_module_task
+	set0 AT_TASK_UNSINFF,pdata
+	store 1,mem_module_task
+	rtn
+
+at_set_cmd_task_flag:
+	fetch 1,mem_module_task
+	set1 AT_TASK_CMD_FLAG,pdata
+	store 1,mem_module_task
+	rtn
+
+at_clear_cmd_task_flag:
+	fetch 1,mem_module_task
+	set0 AT_TASK_CMD_FLAG,pdata
+	store 1,mem_module_task
+	rtn
+
+module_control_air_flow:
+	set1 mark_ext_patch,mark
+	bpatch patch30_2,mem_patch30
+	call check_uart_tx_buff
+	branch app_l2cap_flow_control_enable,positive
+	branch app_l2cap_flow_control_disable
+
+module_uart_set:
+	call spp_mode
+	branch module_set_baud_115200,true
+	hfetcht uart_baud_len,core_uart_baud
+	fetch 2,mem_baud
+	isub temp,null
+	rtn zero
+	branch uart_set_baud_by_mem
+
+
+module_set_baud_115200:
+	hfetcht uart_baud_len,core_uart_baud
+	setarg AT_baud_115200
+	isub temp,null
+	rtn zero
+	hstore uart_baud_len,core_uart_baud
+	rtn
+
+module_check_cmode:
+	set1 mark_ext_patch,mark
+	bpatch patch30_3,mem_patch30
+	fetch 1,mem_module_state
+	isolate0 AT_STATE_CMODE,pdata
+	branch module_check_cmode_close,true
+	arg mem_cmode_addr,rega
+	arg 6,loopcnt
+	branch string_compare
+module_check_cmode_close:
+	force 0,null
+	rtn
+
+module_init_static_string:
+	set1 mark_ext_patch,mark
+	bpatch patch30_4,mem_patch30
+	arg mem_prarm_pswd,contw
+	setsect 0,0x35350
+	setsect 1,0x15115
+	setsect 2,0x12415
+	setsect 3,0x10951
+	istore 9,contw
+	setsect 0,0x2454c
+	setsect 1,0x35053
+	setsect 2,0x2454
+	setsect 3,0x11531
+	istore 9,contw
+	setsect 0,0x34441
+	setsect 1,0x194d4
+	setsect 2,0x12455
+	setsect 3,0x10d4d
+	istore 9,contw
+	setsect 0,0x3414c
+	setsect 1,0xd4d4
+	setsect 2,0x124c4
+	setsect 3,0x13119
+	istore 9,contw
+	setsect 0,0x15247
+	setsect 1,0x3d0d1
+	setsect 2,0xe4e4
+	setsect 3,0x11531
+	istore 9,contw
+	setsect 0,0x34944
+	setsect 1,0x114d4
+	setsect 2,0xe535
+	setsect 3,0x15105
+	istore 9,contw
+	setsect 0,0x14c2b
+	setsect 1,0x114d2
+	setsect 2,0xf525
+	setsect 3,0x11531
+	istore 9,contw
+	setsect 0,0x14e53
+	setsect 1,0x19192
+	setsect 2,0x44c4
+	setsect 3,0x15915
+	istore 9,contw
+	setsect 0,0x35352
+	setsect 1,0xd254
+	setsect 2,0x5444
+	setsect 3,0x10959
+	istore 9,contw
+	setsect 0,0x1454c
+	setsect 1,0x5392
+	setsect 2,0x3525
+	setsect 3,0x13d35
+	istore 9,contw
+	setsect 0,0x14544
+	setsect 1,0x113d3
+	setsect 2,0x4454
+	setsect 3,0x14d35
+	istore 9,contw
+	setsect 0,0x4154
+	setsect 1,0x11155
+	setsect 2,0x13494
+	setsect 3,0x13d0d
+	istore 9,contw
+	setsect 0,0x4f56
+	setsect 1,0x31055
+	setsect 2,0x3454
+	setsect 3,0x1393d
+	istore 9,contw
+	setsect 0,0x1504e
+	setsect 1,0x151d0
+	setsect 2,0x154f4
+	setsect 3,0x14951
+	istore 9,contw
+	setsect 0,0x24345
+	setsect 1,0x25051
+	setsect 2,0x4c4
+	istore 6,contw
+	rtn
+/*************at end*******************/
+		
+
+mouse_init:
+	setarg le_mouse
+	store 2,mem_cb_le_process
+	setarg mouse_send_process
+	store 2,mem_cb_bt_process
+	setarg mouse_process_lpm_before
+	store 2,mem_cb_before_lpm
+	setarg mouse_priority_bb_event
+	store 2,mem_cb_bb_event_process
+	setarg mouse_idle
+	store 2,mem_cb_idle_process
+	setarg mouse_le_notify_update_data
+	store 2,mem_cb_update_notify_value
+	jam 0,mem_sp_flag
+	jam 0,mem_master_sp_flag
+	set0 mark_ext_patch,mark
+	bpatch patch18_0,mem_patch18
+	call mouse_init_common
+	rtn wake
+	call mouse_init_environment
+	call mouse_dpi_init
+	setarg mouse_before_hibernate
+	store 2,mem_cb_before_hibernate
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BTN_DOWN,mouse_start_discovery
+	branch mouse_check_reconn_target
+
+mouse_init_environment:
+	call app_initflag_check
+	branch mouse_load_eeprom_param,zero
+	call eeprom_store_le_local_addr
+	call eeprom_store_mouse_dpi
+	branch app_initflag_store
+mouse_load_eeprom_param:
+	call eeprom_load_reconn_info
+	call eeprom_load_le_loacal_addr
+	branch eeprom_load_mouse_dpi
+
+mouse_dpi_init:
+	jam DPI_BUTTON_STATE_UP,mem_mouse_dpi_button_state
+	branch mouse_modified_dpi
+
+mouse_idle:
+	call ui_check_paring_button
+	call mouse_check_dpi
+	branch mouse_wheel_check
+
+mouse_check_dpi:
+	fetcht 1,mem_dpi_button_gpio
+	call gpio_get_bit
+	nbranch mouse_dpi_up,true
+mouse_dpi_down:
+	fetch 1,mem_mouse_dpi_button_state
+	rtneq DPI_BUTTON_STATE_DOWN
+	jam DPI_BUTTON_STATE_DOWN,mem_mouse_dpi_button_state
+	rtn
+mouse_dpi_up:
+	fetch 1,mem_mouse_dpi_button_state
+	rtneq DPI_BUTTON_STATE_UP
+	jam DPI_BUTTON_STATE_UP,mem_mouse_dpi_button_state
+	fetch 1,mem_mouse_dpi
+	increase 1,pdata
+	and pdata,0x03,pdata
+	store 1,mem_mouse_dpi
+	branch mouse_modified_dpi
+mouse_modified_dpi:
+	setarg MOUSE_DPI_ADDRESS
+	call twspi_read
+	and pdata,0xfc,temp
+	fetch 1,mem_mouse_dpi
+	iadd temp,pdata
+	lshift8 pdata,pdata
+	add pdata,MOUSE_DPI_ADDRESS,pdata
+	call twspi_write
+	branch eeprom_store_mouse_dpi
+
+mouse_init_common:
+	call mouse_init_sunt
+	call mouse_gpio_init
+	hfetch 2,core_clkoff
+	set0 CLOCK_OFF_QDECODER,pdata
+	hstore 2,core_clkoff
+	rtn
+	
+mouse_gpio_init:
+	call lpm_disable_exen_output
+	fetcht 1,mem_whee_a_data_gpio
+	call gpio_config_input
+	fetcht 1,mem_whee_b_data_gpio
+	call gpio_config_input
+	fetcht 1,mem_lbutton_gpio
+	call gpio_config_input
+	fetcht 1,mem_rbutton_gpio
+	call gpio_config_input
+	fetcht 1,mem_mbutton_gpio
+	call gpio_config_input
+	fetcht 1,mem_sensor_data_gpio
+	call gpio_config_input
+	fetcht 1,mem_dpi_button_gpio
+	call gpio_config_input
+	hfetch 1,core_gpio_pu3
+	or_into 0x18,pdata
+	hstore 1,core_gpio_pu3
+	hfetch 1,core_gpio_pd2+1
+	and_into 0xe7,pdata
+	hstore 1,core_gpio_pd2+1
+	rtn 	 
+
+	
+mouse_before_hibernate:
+	setarg 0xbc05
+	call twspi_write
+	jam 1,mem_lpm_current_mult
+
+mouse_process_lpm_before:
+	call mouse_wheel_check
+	arg 25,temp					// set sclk high
+	call gpio_config_output
+	hjam 0,core_gpio_sel1
+	fetcht 1,mem_whee_a_data_gpio
+	call gpio_set_wake_by_current_state
+	fetcht 1,mem_whee_b_data_gpio
+	call gpio_set_wake_by_current_state
+	fetcht 1,mem_lbutton_gpio
+	call gpio_set_wake_by_current_state
+	fetcht 1,mem_rbutton_gpio
+	call gpio_set_wake_by_current_state
+	fetcht 1,mem_mbutton_gpio
+	call gpio_set_wake_by_current_state
+	fetcht 1,mem_sensor_data_gpio
+	call gpio_set_wake
+	fetch 1,mem_lpm_current_mult
+	nrtn blank					// 7.5ms, no gpio wakeup
+	branch gpio_clr_wake
+	
+mouse_wheel_check:
+	set0 mark_ext_patch,mark
+	bpatch patch18_1,mem_patch18
+	arg 0,rega
+	fetcht 1,mem_whee_a_data_gpio
+	call gpio_get_bit
+	setflag true,0,rega
+	fetcht 1,mem_whee_b_data_gpio
+	call gpio_get_bit
+	setflag true,1,rega
+	copy rega,pdata
+
+	and_into  0x3,pdata
+	fetcht 1,mem_mouse_z_now
+	store 1,mem_mouse_z_now
+	isub temp,null
+	branch mouse_wheel_clear,zero
+	fetch 1,mem_mouse_z_before
+	store 1,mem_mouse_z_last
+	storet 1,mem_mouse_z_before
+	fetch 1,mem_mouse_z_now
+	lshift4 pdata,pdata
+	fetcht 1,mem_mouse_z_before
+	lshift2 temp,temp
+	iadd temp,pdata
+	fetcht 1,mem_mouse_z_last
+	iadd temp,pdata
+	beq 0x38,mouse_wheel_forward
+	beq 0x34,mouse_wheel_back
+	beq 0x0b,mouse_wheel_back
+	beq 0x07,mouse_wheel_forward
+	rtn
+
+mouse_wheel_clear:
+	rtn
+	
+mouse_wheel_forward:
+	fetch 1,mem_mouse_z_data
+	increase 1,pdata
+	store 1,mem_mouse_z_data
+	rtn
+	
+mouse_wheel_back:
+	fetch 1,mem_mouse_z_data
+	increase -1,pdata
+	store 1,mem_mouse_z_data
+	rtn
+		
+mouse_process_ble:
+
+	rtn
+mouse_sleep_sensor:
+	setarg 0xB805
+	branch twspi_write
+
+mouse_bb_connected:
+	rtn
+	
+le_mouse_bb_event_write_request:
+	call app_ble_store_reconn_info
+	jam MOUSE_MODE_STATE_BLE,mem_mouse_mode_state
+	call app_lpm_mult_enable
+le_mouse_bb_event_enc_info:
+	branch app_ble_start_write
+
+le_hibernate_timer:
+	fetch 2,mem_le_hibernate_timer
+	rtn blank
+	increase -1,pdata
+	store 2,mem_le_hibernate_timer
+	nrtn blank
+	branch app_enter_hibernate
+	
+mouse_hid_connected:
+	setarg HID_HANDSHAKE_TIMEOUT
+	store 1,mem_hid_handshake_timer_count
+	rtn
+	
+mouse_send_process:
+	fetch 1,mem_app_handshake_flag
+	rtn blank
+	call l2cap_malloc_is_fifo_nearly_full
+	nrtn blank
+	call mouse_motion
+	nrtn user
+	call mouse_no_data_timer_init
+	call mouse_send_blank_packet_timer_init
+mouse_send_data:
+	arg 8,rega
+	call hid_malloc_tx_buff
+	fetch 2,mem_hid_int_remote_cid
+	istore 2,contw
+	setarg 0x02a1
+	istore 2,contw
+	fetch 1,mem_mouse_key
+	istore 1,contw
+	fetch 2,mem_mouse_x
+	arg 0xfff,temp
+	iand temp,pdata
+	fetcht 2,mem_mouse_y
+	lshift4 temp,temp
+	lshift8 temp,temp
+	ior temp,pdata
+	istore 3,contw
+	fetch 1,mem_mouse_z
+	istore 1,contw
+	setarg 0
+	istore 1,contw
+	jam 8,mem_UI_data_txbuff_length
+	rtn
+
+
+mouse_send_blank_packet_timer:
+	set0 mark_ext_patch,mark
+	bpatch patch18_2,mem_patch18
+	fetch 1,mem_mouse_send_blank_timer
+	rtn blank
+	increase -1,pdata
+	store 1,mem_mouse_send_blank_timer
+	nrtn blank
+	call l2cap_malloc_is_fifo_empty
+	nrtn blank
+	setarg 0
+	store 5,mem_mouse_x
+	call mouse_send_data
+	jam  MOUSE_SEND_BLANK_TIMER,mem_mouse_send_blank_timer
+	rtn
+mouse_send_blank_packet_timer_init:
+	fetch 2,mem_mouse_blank_data_timeout
+	store 2,mem_mouse_blank_data_timer
+	jam  MOUSE_SEND_BLANK_TIMER,mem_mouse_send_blank_timer
+	rtn
+	
+mouse_no_data_timer_init:
+	fetch 2,mem_mouse_no_data_timeout
+	store 2,mem_mouse_no_data_timer
+	rtn
+
+	
+mouse_le_notify_update_data:
+	fetcht 2, mem_le_notify_handle
+	call le_att_get_handle_ptr 
+	ifetch 1,contr
+	store 1,mem_le_notify_len
+	rtn
+
+	
+mouse_fill_data_le:
+	set0 mark_ext_patch,mark
+	bpatch patch18_3,mem_patch18
+	fetcht 2, mem_le_notify_handle
+	call le_att_get_handle_ptr
+	add contr,1,contw
+mouse_fill_data:
+	fetch 1,mem_mouse_key
+	istore 1,contw
+	fetch 2,mem_mouse_x
+	arg 0xfff,temp
+	iand temp,pdata
+	fetcht 2,mem_mouse_y
+	lshift4 temp,temp
+	lshift8 temp,temp
+	ior temp,pdata
+	istore 3,contw
+	fetch 1,mem_mouse_z
+	istore 1,contw
+	rtn
+
+mouse_motion:
+	set0 mark_ext_patch,mark
+	bpatch patch18_4,mem_patch18
+	disable user
+	setarg 0
+	store 5,mem_mouse_x
+	call p3204_motion
+	call p3204_sdio_low
+	call mouse_zwheel
+	branch mouse_key
+	
+p3204_motion:
+	fetch 1,mem_sensor_type
+	rtnne SENSOR_TYPE_P3204
+	fetch 1,mem_mouse_move_flag
+	call p3204_clear_data,blank
+	jam 1,mem_mouse_move_flag
+	disable user
+	fetcht 1,mem_sensor_data_gpio
+	call gpio_get_bit
+	nrtn true
+	setarg 0
+	call twspi_read
+	bne P3204_ID,twspi_reset
+	setarg 2
+	call twspi_read
+	rtnbit0 7
+	setarg 3
+	call twspi_read
+	call extsign
+	store 2,mem_mouse_x
+	setarg 4
+	call twspi_read
+	call extsign
+	sub pdata,0,pdata
+	store 2,mem_mouse_y
+	fetch 4,mem_mouse_x
+	enable user
+	rtn
+mouse_zwheel:
+	fetch 1,mem_mouse_z_data
+	rtn blank	
+	store 1,mem_mouse_z
+	jam 0,mem_mouse_z_data
+	enable user
+	rtn
+mouse_key:
+	arg 0,rega
+	fetcht 1,mem_lbutton_gpio
+	call gpio_get_bit
+	setflag true,0,rega
+	fetcht 1,mem_rbutton_gpio
+	call gpio_get_bit
+	setflag true,1,rega
+	fetcht 1,mem_mbutton_gpio
+	call gpio_get_bit
+	setflag true,2,rega
+	deposit rega
+	fetcht 1,mem_mouse_key
+	store 1,mem_mouse_key	
+	ixor temp,pdata
+	sub pdata,0,null
+	rtn zero
+	enable user
+	rtn
+	
+
+
+	/* sdio high will cost extra 9mA */
+p3204_sdio_low:
+	arg 26,temp
+	call gpio_get_bit
+	rtn true
+	setarg 0
+	call twspi_read
+	branch p3204_sdio_low
+
+p3204_clear_data:
+	arg 0,loopcnt
+p3204_clear_data_loop:
+	setarg 2
+	call twspi_read
+	nop 100
+	increase 1,loopcnt
+	fetcht 1,mem_sensor_data_gpio
+	call gpio_get_bit	
+	branch p3204_clear_data_loop,true
+	deposit loopcnt
+	store 2,mem_init_cnt
+	rtn
+mouse_init_sunt:
+	call spid_init
+	rtn wake
+	
+mouse_init_p3204:	
+	setarg 0
+	call twspi_read
+	store 1,mem_sensor_id
+	beq P3204_ID,mouse_init_p3204_cont
+	call twspi_reset
+	nop 10000
+	branch mouse_init_p3204
+mouse_init_p3204_cont:
+	setarg 0x8006
+	call twspi_write
+	nop 1000
+	jam SENSOR_TYPE_P3204,mem_sensor_type
+	rtn
+
+
+
+extsign:
+	rtnbit0 7
+	arg 0xff00,temp
+	ior temp,pdata
+	rtn
+
+
+
+le_mouse:
+	call le_xtype_fifo_is_near_full
+	nrtn blank
+	fetcht 2,mem_le_notify_handle
+	call le_att_check_notification_enable
+	rtnbit0 0
+	fetch 1,mem_le_switch_send_data
+	rtnbit0 0
+	call mouse_motion
+//	call mouse_test
+	nrtn user
+	call mouse_no_data_timer_init
+	//call app_lpm_wake_auto_lock
+	jam ATTOP_HANDLE_VALUE_NOTIFICATION,mem_fifo_temp
+	call le_xtype_fifo_in
+	branch mouse_fill_data_le
+
+mouse_test:
+	rtn user
+	fetch 1,mem_mouse_test_cnt
+	increase 1,pdata
+	store 1,mem_mouse_test_cnt
+	arg 1,temp
+	bbit0 7,mouse_test_pos
+	arg 0xffff,temp
+mouse_test_pos:
+	storet 5,mem_mouse_x
+	enable user
+	rtn
+
+mouse_check_mode_state:
+	disable user
+	fetch 1,mem_mouse_mode_state
+	rtneq MOUSE_MODE_STATE_BLE
+	enable user
+	rtn
+	
+mouse_priority_bb_event:	
+	copy regc,pdata
+	beq BT_EVT_LE_CONNECTED,le_mouse_bb_event_connected
+	beq BT_EVT_BB_CONNECTED,mouse_stop_discovery
+	beq BT_EVT_LE_DISCONNECTED,mouse_bb_disconnected
+	beq BT_EVT_BB_DISCONNECTED,mouse_bb_disconnected
+	beq BT_EVT_SETUP_COMPLETE,mouse_bt_event_setup_complete
+	beq BT_EVT_BUTTON_LONG_PRESSED,mouse_bb_event_discovery_btn
+	beq BT_EVT_HID_HANDSHAKE,mouse_bt_hid_handshake
+	beq BT_EVT_HID_CONNECTED,mouse_bt_hid_connected
+	beq BT_EVT_LE_WRITE_REQUEST,le_mouse_bb_event_write_request
+	beq BT_EVT_LE_ENC_INFO,le_mouse_bb_event_enc_info
+	beq BT_EVT_RECONN_FAILED,mouse_bb_event_reconn_failed
+	beq BT_EVT_RECONN_PAGE_TIMEOUT,mouse_bb_event_reconn_failed
+	beq BT_EVT_PINCODE_REQ,mouse_bb_event_pincode
+	beq BT_EVT_REMOTE_UNSNIFF,app_start_auto_sniff
+	and pdata,0x0f,temp
+	and_into BT_EVT_TIMER_MASK,pdata
+	beq BT_EVT_TIMER_INIT,mouse_bb_event_timer
+	rtn
+
+le_mouse_bb_event_connected:
+	fetch APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	set0 APP_DISC_BY_BUTTON ,pdata
+	store APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	setarg 0
+	store 2,mem_mouse_direct_timer
+	fetch 1,mem_conn_cnt
+	increase 1,pdata
+	store 1,mem_conn_cnt
+	branch mouse_stop_discovery
+
+mouse_bb_event_pincode:
+	call pincode_reinit
+	branch app_bt_set_pincode
+	
+mouse_bb_event_reconn_failed:
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BTN_DOWN,mouse_start_discovery
+	branch app_bb_hibernate
+
+	
+mouse_bt_hid_connected:
+	call mouse_hid_connected
+	rtn
+mouse_bt_event_setup_complete:
+	rtn
+
+mouse_bb_disconnected:
+	set0 mark_ext_patch,mark
+	bpatch patch18_5,mem_patch18
+	call mouse_bb_discon_clear_stack
+	fetch APP_DISC_RSN_SIZE,mem_app_disconn_reason
+	bbit1 APP_DISC_BLE,mouse4_0_event_bb_disconn
+	bbit1 APP_DISC_BY_BUTTON,app_disconn_reason_clear
+	bbit1 APP_DISC_AFTER_PAIRING,mouse_event_light_state_pairing
+	bbit1 APP_DISC_AFTER_RECONN,mouse_event_light_state_hibernate
+	bbit1 APP_DISC_AFTER_SNIFF,mouse_event_light_state_hibernate
+	branch mouse_start_discovery
+mouse_bb_discon_clear_stack:
+	setarg 0
+	store 4,mem_mouse_z_last
+	jam 0,mem_mouse_send_blank_timer
+	jam 0,mem_mouse_move_flag
+	jam APP_HANDSHAKE_NULL,mem_app_handshake_flag
+	jam 0,mem_ltk_exists
+	jam 0,mem_mouse_mode_state
+	jam 0,mem_reconnect_timeout
+	rtn
+
+mouse_event_light_state_pairing:
+	bbit1 APP_DISC_AFTER_HANDSHAKE,mouse_event_light_state_hibernate
+	bbit1 APP_DISC_AFTER_SNIFF,mouse_event_light_state_hibernate
+	branch mouse_start_discovery
+mouse_event_light_state_hibernate:
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BTN_DOWN,mouse_start_discovery
+	branch app_bb_hibernate
+
+mouse4_0_event_bb_disconn:
+	call le_clean_att_list_handle_enable
+	fetch APP_DISC_RSN_SIZE,mem_app_disconn_reason
+	bbit1 APP_DISC_BY_BUTTON,app_disconn_reason_clear
+	branch app_bb_hibernate
+
+mouse_bb_event_timer:
+	set0 mark_ext_patch,mark
+	bpatch patch18_6,mem_patch18
+	storet 1,mem_app_evt_timer_count
+mouse_bb_event_100ms_loop:
+	fetch 1,mem_app_evt_timer_count
+	rtn blank
+	increase -1,pdata
+	store 1,mem_app_evt_timer_count
+	//common part
+	//call app_lpm_wake_auto_lock_timer
+	call mouse_check_hid_handshake_timer
+	call mouse_check_discovery_timeout_timer
+	call mouse_check_direct_timeout_timer
+	call mouse_check_no_data_timeout_timer
+	//process for different mode, BT or BLE
+	fetch 1,mem_mouse_mode_state
+	compare MOUSE_MODE_STATE_BLE,pdata,0xff
+	call mouse4_0_bb_event_100ms,true
+	fetch 1,mem_mouse_mode_state
+	compare MOUSE_MODE_STATE_BT,pdata,0xff
+	call mouse3_0_bb_event_100ms,true
+	branch mouse_bb_event_100ms_loop
+	
+mouse3_0_bb_event_100ms: 
+	//flag user cannot bt changed!!!!
+	call mouse_check_blank_data_timeout_timer
+	branch mouse_send_blank_packet_timer
+	
+mouse4_0_bb_event_100ms:
+	//flag user cannot bt changed!!!!
+	rtn
+	
+mouse_check_hid_handshake_timer:
+	fetch 1,mem_hid_handshake_timer_count
+	rtn blank
+	increase -1,pdata
+	store 1,mem_hid_handshake_timer_count
+	nrtn blank
+	branch mouse_bt_hid_handshake
+
+mouse_check_discovery_timeout_timer:	
+	fetch 2,mem_mouse_discovery_timer
+	rtn blank
+	increase -1,pdata
+	store 2,mem_mouse_discovery_timer
+	nrtn blank
+	call mouse_stop_discovery
+	branch app_enter_hibernate
+
+mouse_check_direct_timeout_timer:
+	fetch 2,mem_mouse_direct_timer
+	rtn blank
+	increase -1,pdata
+	store 2,mem_mouse_direct_timer
+	nrtn blank
+	call app_ble_stop_direct_adv
+	branch app_enter_hibernate
+
+mouse_check_blank_data_timeout_timer:
+	fetch 2,mem_mouse_blank_data_timer
+	rtn blank
+	increase -1,pdata
+	store 2,mem_mouse_blank_data_timer
+	nrtn blank
+	jam 0,mem_mouse_send_blank_timer
+	rtn
+
+mouse_check_no_data_timeout_timer:
+	fetch 2,mem_mouse_no_data_timer
+	rtn blank
+	increase -1,pdata
+	store 2,mem_mouse_no_data_timer
+	nrtn blank
+	branch mouse_disconnect
+	
+mouse_bb_event_discovery_btn:
+	set0 mark_ext_patch,mark
+	bpatch patch18_7,mem_patch18
+	jam 0,mem_mouse_send_blank_timer
+	jam 1,mem_reconnect_timeout
+	setarg 0
+	store 2,mem_mouse_direct_timer
+	call mouse_disconnect
+	fetch 1,mem_device_option
+	isolate1 MODE_4_MOUSE,pdata
+	call mouse4_0_bb_event_discovery_btn,true
+	fetch 1,mem_device_option
+	isolate1 MODE_3_MOUSE,pdata
+	call mouse3_0_bb_event_discovery_btn,true
+	call app_lpm_mult_disable
+	branch mouse_start_discovery
+
+
+
+mouse3_0_check_reconn_target:
+	fetch 6,mem_hci_plap
+	branch app_bt_start_discovery_short,blank	
+	branch app_bt_start_reconnect
+	
+mouse4_0_check_reconn_target:
+	fetch 6,mem_hci_plap
+	branch mouse4_0_no_reconn_target,blank
+	fetch 2,mem_mouse_direct_timeout
+	store 2,mem_mouse_direct_timer
+	call app_lpm_mult_enable
+	branch app_ble_start_direct_adv
+mouse4_0_no_reconn_target:
+	call app_led_start_blink
+	branch app_ble_start_adv
+
+mouse3_0_bb_event_discovery_btn:
+	fetch 2,mem_ui_state_map
+	isolate1 UI_STATE_BT_RECONNECT,pdata
+	call app_bt_reconnect_cancel,true
+	rtn
+mouse4_0_bb_event_discovery_btn:
+	call le_clean_att_list_handle_enable
+	rtn
+	
+mouse_bt_hid_handshake:
+	jam APP_HANDSHAKE_DONE,mem_app_handshake_flag
+	call app_lpm_mult_enable
+	call app_bt_store_reconn_info
+	jam MOUSE_MODE_STATE_BT,mem_mouse_mode_state
+	setarg 0
+	store 2,mem_discovery_timeout_timer_count
+	store 1,mem_hid_handshake_timer_count
+	call app_bt_enter_sniff
+	branch mouse_send_blank_packet_timer_init
+
+mouse_check_reconn_target:
+	fetch 1,mem_xrecord_mode
+	beq REC_3_MODE,mouse3_0_check_reconn_target
+	beq REC_4_MODE,mouse4_0_check_reconn_target	
+	branch mouse_start_discovery
+
+mouse_start_discovery:
+	set0 mark_ext_patch,mark
+	bpatch patch19_0,mem_patch19
+	fetch 1,mem_le_lap
+	increase 1,pdata
+	store 1,mem_le_lap
+	call app_lpm_mult_disable
+	fetch 2,mem_discovery_timeout
+	store 2,mem_mouse_discovery_timer
+	fetch 1,mem_device_option
+	isolate1 MODE_4_MOUSE,pdata
+	call app_ble_start_adv,true
+	fetch 1,mem_device_option
+	isolate1 MODE_3_MOUSE,pdata
+	call app_bt_start_discovery,true
+	branch app_led_start_blink
+
+mouse_stop_discovery:
+	set0 mark_ext_patch,mark
+	bpatch patch19_1,mem_patch19
+	setarg 0
+	store 2,mem_mouse_discovery_timer
+	fetch 1,mem_device_option
+	isolate1 MODE_4_MOUSE,pdata
+	call app_ble_stop_adv,true
+	fetch 1,mem_device_option
+	isolate1 MODE_3_MOUSE,pdata
+	call app_bt_stop_discovery,true
+	branch app_led_stop_blink
+
+mouse_disconnect:
+	set0 mark_ext_patch,mark
+	bpatch patch19_2,mem_patch19
+	setarg 0
+	store 2,mem_mouse_no_data_timer
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BLE_CONNECTED,app_ble_disconnect
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BT_CONNECTED,app_bt_disconnect
+	rtn
+
+eeprom_store_mouse_dpi:
+	set0 mark_ext_patch,mark
+	bpatch patch19_3,mem_patch19
+	arg 1,temp
+	arg mem_mouse_dpi,rega
+	arg mouse_dpi_eeprom_addr,regb
+	branch iicd_write_eep_data
+
+eeprom_load_mouse_dpi:
+	set0 mark_ext_patch,mark
+	bpatch patch19_4,mem_patch19
+	arg 1,temp
+	arg mem_mouse_dpi,rega
+	arg mouse_dpi_eeprom_addr,regb
+	branch iicd_read_eep_data
+
+
+
+
+
+/* ===================== two wire SPI gpio ======================= */
+
+twspi_reset:
+	set0 mark_ext_patch,mark
+	bpatch patch1f_6,mem_patch1f
+	hfetch 1,core_gpio_oe3
+	arg 0x06,temp
+	ior temp,pdata
+	hstore 1,core_gpio_oe3
+	hfetch 1,core_gpio_out3
+	ior temp,pdata
+	hstore 1,core_gpio_out3
+	hjam 0,core_gpio_sel1	
+	hfetch 1,core_gpio_out3
+	set0 1,pdata
+	set0 2,pdata
+	hstore 1,core_gpio_out3	
+	nop 30
+	hjam 1,core_gpio_sel1	
+	rtn
+twspi_write:
+	branch spid_write_reg
+
+twspi_read:
+	branch spid_read_reg
+
+
+
+/* ===================== code loading ======================= */
+
+
+read_function_aes:
+	nbranch read_function,user
+	hfetch 1,core_gpio_key2
+	or_into 0x20,pdata   	// enable aes 
+	hstore 1,core_gpio_key2
+read_function:
+	copy temp,null
+	branch read_fuction_zero,zero
+	copy regc,pc
+read_fuction_zero:
+	isolate0 0,null
+	branch set_ucode_status
+	
+/* return temp = block length */
+get_block_header:
+	force 4,temp
+get_block_header0:
+	arg mem_ucode_buf,rega
+	hfetch 1,core_gpio_key2
+	and_into 0xdf,pdata   	// disable aes for header
+	hstore 1,core_gpio_key2
+	call read_function
+	arg 0x55aa,rega
+	fetch 2,mem_ucode_buf
+	ifetcht 2,contr
+	isub rega,null
+	rtn	
+
+read_first_block:
+	arg 2,temp
+	arg mem_ucode_ptr,rega
+	call read_function
+	fetch 2,mem_ucode_ptr
+	store 2,mem_addr_mi
+	call get_iv,user
+	rtn
+	
+get_iv:
+	arg 16,temp
+	arg mem_ucode_keybuf,rega
+	hfetch 1,core_gpio_key2
+	and_into 0xdf,pdata   // disable aes for iv
+	hstore 1,core_gpio_key2
+	call read_function
+	arg mem_ucode_keybuf,contr
+	arg 16,loopcnt
+	call aes_load_data
+	call aes_init
+	call aes_clear_data
+	branch do_aes_cbc					/* generate first IV */
+
+load_storage:
+	disable match
+	call get_block_header
+	nrtn zero
+	enable match
+	hjam 0x80, core_ucode_ctrl
+	hjam 0,core_ucode_hi
+	hjam 0,core_ucode_low
+	arg core_ucode_data,rega
+	call read_function_aes
+	hjam 0x0, core_ucode_ctrl
+	call get_block_header
+	nrtn zero
+	force 0,pdata
+	hstore 2,core_docd_paddr
+	arg core_docd_pdata,rega
+	call read_function_aes
+load_storage_loop:
+	arg 6,temp
+	call get_block_header0
+	nrtn zero
+	ifetch 2,contr
+	iforce rega
+	call read_function
+	branch load_storage_loop
+
+
+
+	
+	/* only load memory data from eeprom */
+reload_eeprom:
+	call clean_mem
+	setarg 0x1000
+	store 2,mem_addr_mi
+	arg iicd_read_eep,regc
+	arg 2,loopcnt
+reload_eeprom_loop:
+	call get_block_header
+	nrtn zero
+	fetch 2,mem_addr_mi
+	byteswap pdata,pdata
+	iadd temp,pdata
+	byteswap pdata,pdata
+	store 2,mem_addr_mi
+	loop reload_eeprom_loop
+	branch load_storage_loop
+	
+loadcode:
+	hjam 0x25,core_clkoff			// disable debug uart
+	hjam 5,core_docd_ctrl
+	call clean_mem
+loadcode_lpm:
+	disable user
+	call otp_enable_chgpump
+	setarg otp_ucode_flag
+	arg mem_otp_ucode_flag,rega
+	arg 2,temp
+	call otpd_read_data
+	fetch 2,mem_otp_ucode_flag
+	bbit0 otp_uflag_aes, loadcode_otp
+	setarg otp_ucode_aeskey
+	arg mem_ucode_keybuf,rega
+	arg 16,temp
+	call otpd_read_data
+	hjam lock_otp,core_misc_ctrl	// disable further read/write of key
+	arg mem_ucode_keybuf,contr
+	call load_key
+	enable user					// set user for aes
+loadcode_otp:
+	fetch 2,mem_otp_ucode_flag
+	byteswap pdata,pdata
+	arg 0x7ff,temp
+	iand temp,pdata
+	branch loadcode_spi, zero
+	call otp_set_addr
+	arg otpd_read_code,regc
+	call get_iv,user
+	call load_storage
+	fetch 1,mem_ucode_status
+	compare 3,pdata,3
+	nbranch loadcode_otp,true	// crc error, try again
+loadcode_spi:
+	call otp_disable_chgpump
+	fetch 1,mem_otp_ucode_flag
+	bbit1 otp_uflag_skip_flash, loadcode_iic
+	setarg 0x0
+	store 3,mem_addr_hi
+	call spid_init_flash
+	arg spid_read_flash,regc
+	call read_first_block
+	call load_storage
+	nbranch loadcode_iic,match
+	fetch 1,mem_ucode_status
+	compare 3,pdata,3
+	nbranch loadcode_spi,true	// crc error, try again
+loadcode_iic:
+	fetch 1,mem_otp_ucode_flag
+	bbit1 otp_uflag_skip_eep,loadcode_hci
+	setarg 0x0
+	store 2,mem_addr_mi
+	arg iicd_read_eep,regc
+	call iicd_init_12m
+	call read_first_block
+	call load_storage
+	nbranch loadcode_hci,match
+	fetch 1,mem_ucode_status
+	compare 3,pdata,3
+	nbranch loadcode_iic,true	// crc error, try again
+loadcode_hci:
+	hjam 0x21,core_clkoff			// enable debug uart
+	fetch 1,mem_otp_ucode_flag
+	rtnbit0 otp_uflag_hci
+	call hci_init
+loadcode_hci_loop:
+	call hci_rx_packet
+	branch loadcode_hci_loop
+
+/* true flag is set into status */
+set_ucode_status:
+	fetch 1,mem_ucode_status
+	lshift pdata,pdata
+	setflag true,0,pdata
+	isolate0 15,rega
+	rtn true
+	store 1,mem_ucode_status
+	rtn
+
+	/* queue is bit position of hw done status */
+decrypt_code:
+	hfetch 1,core_gpio_key2
+	rtnbit0 5
+	branch decrypt_code_skip	/* skip to key generation at first for speed */
+decrypt_code_loop:
+	hfetch 1,core_dma_status
+	qisolate1 pdata
+	rtn true
+decrypt_code_skip:
+	hfetch 1,core_misc_status
+	bbit0 1,decrypt_code_loop
+	call do_aes_cbc
+	branch decrypt_code_loop
+
+
+	/* loopcnt is ucode instruction count, pdata is buffer ptr */
+save_ucode:
+	copy loopcnt,temp
+	storet 2,mem_patch_len
+	hjam 0x80, core_ucode_ctrl
+	hjam 0,core_ucode_hi
+	hjam 0,core_ucode_low
+	store 2,mem_patch_ptr
+	iforce contw
+	lshift2 loopcnt,loopcnt
+save_ucode_loop:
+	hfetch 1,core_ucode_data
+	istore 1,contw
+	loop save_ucode_loop
+	hjam 0x0, core_ucode_ctrl
+	rtn
+
+load_ucode:
+	fetch 2,mem_patch_ptr
+	rtn blank
+	hjam 0x80, core_ucode_ctrl
+	hjam 0,core_ucode_hi
+	hjam 0,core_ucode_low
+	fetcht 2,mem_patch_len
+	lshift2 temp,loopcnt
+	iforce contr
+load_ucode_loop:
+	ifetch 1,contr
+	hstore 1,core_ucode_data
+	loop load_ucode_loop
+	hjam 0x0, core_ucode_ctrl
+	rtn
+
+
+/* ===================== SPI dma ======================= */
+
+spid_init:
+	set0 mark_ext_patch,mark
+	bpatch patch1f_7,mem_patch1f
+	hjam 0x75,core_spid_ctrl	// A7530 should at least 34, or write fail
+	hjam 10,core_spid_delay	// 4us delay
+	setarg mem_spid_tbuf
+	hstore 2,core_spid_txaddr
+	setarg mem_spid_rbuf
+	hstore 2,core_spid_rxaddr
+	hfetch 1,core_gpio_sel1
+	set1 0,pdata
+	set0 1,pdata
+	hstore 1,core_gpio_sel1
+	rtn
+
+spid_reset:
+	hfetch 1,core_spid_ctrl
+	set1 7,pdata
+	hstore 1,core_spid_ctrl
+	set0 7,pdata
+	hstore 1,core_spid_ctrl
+	rtn
+
+
+/* pdata 6:0 is reg address, 15:8 is data to write */
+spid_write_reg:
+	set1 7,pdata
+	store 2,mem_spid_tbuf
+	set1 mark_ext_patch,mark
+	bpatch patch20_0,mem_patch20
+	hjam 2,core_spid_txlen
+	hjam 0,core_spid_rxlen
+	hjam spid_start,core_misc_ctrl
+	branch wait_spid_done
+
+/* pdata 6:0 is reg address */
+spid_read_reg:
+	force 1,temp
+/* pdata 6:0 is burst reg address, temp is bytes to read */
+spid_read_regs:
+//	nop 100
+	store 1,mem_spid_tbuf
+	set1 mark_ext_patch,mark
+	bpatch patch20_1,mem_patch20
+	hjam 1,core_spid_txlen
+	hstoret 2,core_spid_rxlen
+	hjam spid_start,core_misc_ctrl
+	call wait_spid_done
+	fetch 1,mem_spid_rbuf
+	rtn
+
+wait_spid_done:
+	fetch 2,mem_afh_error_total
+	increase 1,pdata
+	store 2,mem_afh_error_total
+	hfetch 1,core_dma_status
+	bbit0 spid_done,wait_spid_done
+	rtn
+
+spid_init_flash:
+	hjam 0x40,core_spid_ctrl
+	hjam 0x0,core_spid_delay
+	hfetch 1,core_gpio_sel1
+	set0 0,pdata
+	set1 1,pdata
+	hstore 1,core_gpio_sel1
+	setarg 0
+	store 4,mem_spid_tbuf
+	rtn
+
+spid_unlock_flash:
+	setarg 0
+	hstore 2,core_spid_rxlen
+	setarg 1
+	hstore 1,core_spid_txlen
+	setarg mem_spid_tbuf
+	hstore 2,core_spid_txaddr
+	jam 6,mem_spid_tbuf
+	hjam spid_start,core_misc_ctrl
+	branch wait_spid_done
+
+
+	/* pdata is flash address, rega pointers to txdata(4 ahead bytes should be left), temp is length */
+spid_write_flash:
+	increase 4,temp
+	hstoret 2,core_spid_txlen
+	increase -4,rega
+	arg 2,temp
+	istoret 1,rega
+	rshift16 pdata,temp
+	istoret 1,contw
+	rshift8 pdata,temp
+	istoret 1,contw
+	istore 1,contw
+	deposit rega
+	hstore 2,core_spid_txaddr
+	setarg 0
+	hstore 2,core_spid_rxlen
+	hjam spid_start,core_misc_ctrl
+	branch wait_spid_done
+	
+
+/* temp is length, rega pointers to buf */
+spid_read_flash:
+	hstoret 2,core_spid_rxlen
+	setarg 4
+	hstore 2,core_spid_txlen
+	jam 3,mem_spid_tbuf
+	setarg mem_spid_tbuf
+	hstore 2,core_spid_txaddr
+	deposit rega
+	hstore 2,core_spid_rxaddr
+	hfetch 1,core_spid_ctrl
+	isolate0 15,rega
+	setflag true,6,pdata
+	hstore 1,core_spid_ctrl
+	hjam spid_start,core_misc_ctrl
+spi_read_flash_wait:
+	hfetch 1,core_dma_status
+	bbit1 7,spi_read_flash_wait			// waiting for spid write
+	arg spid_done,queue
+	call decrypt_code
+	call wait_spid_done
+	isolate1 spid_crcok,pdata
+	call set_ucode_status
+	fetch 1,mem_addr_hi
+	lshift16 pdata,regb
+	fetch 1,mem_addr_mi
+	lshift8 pdata,pdata
+	ior regb,regb
+	fetch 1,mem_addr_lo
+	ior regb,pdata
+	iadd temp,pdata
+	store 1,mem_addr_lo
+	rshift8 pdata,pdata
+	store 1,mem_addr_mi
+	rshift8 pdata,pdata
+	store 1,mem_addr_hi
+	rtn
+
+
+/* ===================== I2C dma ======================= */
+iicd_init_5m:
+	hjam 0xa,core_clksel			// use 5M rc clock to load eeprom
+	hjam 2,core_iicd_scl_low
+ 	hjam 3,core_iicd_scl_high
+	hjam 3,core_iicd_start_setup
+	hjam 3,core_iicd_start_hold
+	hjam 3,core_iicd_stop_setup
+	hjam 2,core_iicd_data_setup
+	rtn
+
+iicd_init_12m:
+	hjam 5,core_iicd_scl_low
+ 	hjam 7,core_iicd_scl_high
+	hjam 7,core_iicd_start_setup
+	hjam 7,core_iicd_start_hold
+	hjam 7,core_iicd_stop_setup
+	hjam 5,core_iicd_data_setup
+	rtn
+
+
+
+wait_iicd_done:
+	hfetch 1,core_dma_status
+	bbit0 iicd_done,wait_iicd_done
+	rtn
+
+	/* pdata is iic addr, rega points to buf, temp is length */
+iicd_read_data:
+	store 1,mem_iicd_tbuf
+	setarg mem_iicd_tbuf
+	hstore 2,core_iicd_txaddr
+	setarg 1
+	hstore 2,core_iicd_txlen
+	hstoret 2,core_iicd_rxlen
+	deposit rega
+	hstore 2,core_iicd_rxaddr
+	hjam 1,core_iicd_ctrl
+	hjam iicd_start,core_misc_ctrl
+	branch wait_iicd_done
+
+byteswap_addr_mi:
+	byteswap pdata,pdata
+	store 2,mem_addr_mi
+	rtn
+
+
+//length:temp 
+//mem ptr:rega
+//eeprom addr offset:regb
+iicd_read_eep_data:
+	set1 mark_ext_patch,mark
+	bpatch patch20_2,mem_patch20
+	fetch 2,mem_eeprom_base
+	iadd regb,pdata
+
+/* pdata:eeprom address, rega pointers to buf, temp is length  */
+iicd_read_eep_adr:
+	byteswap pdata,pdata
+	store 2,mem_addr_mi
+
+/* rega pointers to buf, temp is length  */
+iicd_read_eep:
+	set1 mark_ext_patch,mark
+	bpatch patch20_3,mem_patch20
+	setarg 4
+	hstore 2,core_iicd_txlen
+	jam 0xa0,mem_iicd_tbuf
+	jam 0xa1,mem_iicd_tbuf+3
+	setarg mem_iicd_tbuf
+	hstore 2,core_iicd_txaddr
+	hstoret 2,core_iicd_rxlen
+	deposit rega
+	hstore 2,core_iicd_rxaddr
+	setarg 2
+	isolate0 15,rega
+	setflag true,0,pdata
+	hstore 1,core_iicd_ctrl
+	hjam iicd_start,core_misc_ctrl
+	arg iicd_done,queue
+	call decrypt_code
+	call wait_iicd_done
+	isolate1 iicd_crcok,pdata	
+	call set_ucode_status
+	fetch 2,mem_addr_mi
+	byteswap pdata,pdata
+	iadd temp,pdata
+	byteswap pdata,pdata
+	store 2,mem_addr_mi
+	rtn
+
+	
+//length:temp 
+//mem ptr:rega
+//eeprom addr offset:regb
+iicd_write_eep_data:
+	set1 mark_ext_patch,mark
+	bpatch patch20_4,mem_patch20
+	fetch 2,mem_eeprom_base
+	iadd regb,pdata
+
+//cuur ptr:pdata length:temp buf:rega
+iicd_write_ota_data:
+	store 2,mem_pdatatemp //curr ptr
+	set1 mark_ext_patch,mark
+	bpatch patch20_5,mem_patch20
+	storet 2,mem_temp	//len
+	copy rega,pdata
+	store 2,mem_contr
+iicd_write_eep_loop:
+	call iicd_eep_transparency
+
+	fetcht 2,mem_regb
+	fetch 2,mem_contr
+	copy pdata,rega
+	fetch 2,mem_pdatatemp
+	
+	call iicd_write_eep
+
+	fetch 2,mem_regb
+	fetcht 2,mem_contr
+	iadd temp,temp
+	storet 2,mem_contr
+	fetcht 2,mem_pdatatemp
+	iadd temp,temp
+	storet 2,mem_pdatatemp
+	fetch 2,mem_temp
+	nbranch iicd_write_eep_loop,blank
+	rtn
+	
+//in:
+//1.size 2.len 3.src 4.des
+//mem_regc page's area
+//mem_pdatatemp curr ptr
+//mem_temp all len      
+//mem_regb curr len
+iicd_eep_transparency:
+	set1 mark_ext_patch,mark
+	bpatch patch20_6,mem_patch20
+	fetch 2,mem_eeprom_block_size
+	increase -1,pdata
+	fetcht 2,mem_pdatatemp
+	ior temp,pdata
+	increase 1,pdata
+	store 3,mem_regc
+
+	fetch 2,mem_temp
+	iadd temp,pdata
+
+	fetcht 3,mem_regc
+	isub temp,pdata
+	nbranch iicd_eep_deal_short_packet,positive
+	store 2,mem_temp
+	fetch 3,mem_regc
+	fetcht 2,mem_pdatatemp
+	isub temp,pdata
+	store 2,mem_regb
+	rtn
+iicd_eep_deal_short_packet:
+	fetch 2,mem_temp
+	store 2,mem_regb
+	setarg 0
+	store 2,mem_temp
+	rtn
+
+
+
+	/* pdata is eeprom address, rega pointers to txdata(3 ahead bytes should be left), temp is length */
+iicd_write_eep:
+	copy pdata,regb
+	set1 mark_ext_patch,mark
+	bpatch patch20_7,mem_patch20
+	copy regb,pdata
+	increase 3,temp
+	hstoret 2,core_iicd_txlen
+	increase -3,rega
+	ifetcht 3,rega
+	copy temp,regb
+	arg 0xa0,temp
+	istoret 1,rega
+	byteswap pdata,pdata
+	istore 2,contw
+	deposit rega
+	hstore 2,core_iicd_txaddr
+	setarg 0
+	hstore 2,core_iicd_rxlen
+	hjam 1,core_iicd_ctrl
+	hjam iicd_start,core_misc_ctrl
+	call wait_iicd_done
+	copy regb,pdata
+	istore 3,rega
+	nop 10000
+	nop 10000
+	nop 10000
+	rtn
+
+/* ===================== OTP ======================= */
+
+otp_enable_chgpump:
+	hjam 0x70,rfen_chgpump
+	nop param_chgpump_delay
+	rtn
+
+otp_disable_chgpump:
+	hjam 0x30,rfen_chgpump
+	rtn
+	
+otp_set_addr:
+	lshift3 pdata,pdata
+	hstore 2,core_otp_addr
+	hjam 0,core_otpd_ctrl
+	rtn	
+
+/* pdata = otp address, rega pointers data, loopcnt is count */
+otp_write:
+	call otp_set_addr
+	call otp_ce
+otp_program:
+	ifetcht 1,rega
+	increase 1,rega
+	force 0,queue
+otp_program_bit:
+	qisolate0 temp
+	branch otp_skip_0,true
+	hfetch 1,core_otp_din
+	set1 6,pdata				/* din */
+	set1 7,pdata				/* dle */
+	hstore 1,core_otp_din
+	hjam 0x02,core_otp_ctrl	/* web */
+	hjam 0x82,core_otp_ctrl
+	set0 7,pdata				/* dle */
+	hstore 1,core_otp_din
+	hjam 0x8a,core_otp_ctrl	/* pgmen */
+	nop 11
+	hjam 0xca,core_otp_ctrl	/* vppen */
+	nop 33
+	hjam 0x4a,core_otp_ctrl	/* web 2nd */
+	nop 44
+	hjam 0xca,core_otp_ctrl	/* release web */
+	nop 22
+	hjam 0x8a,core_otp_ctrl	/* release vppen */
+	nop 33
+	hjam 0x82,core_otp_ctrl	/* release pgmen */
+	nop 1
+	hjam 0x92,core_otp_ctrl	/* pgmvfy */
+	nop 10
+	hjam 0xb2,core_otp_ctrl	/* readen */
+	hfetch 1,core_otp_rdata
+	hjam 0x92,core_otp_ctrl	/* release readen */
+	nop 1
+	hjam 0x82,core_otp_ctrl	/* release pgmvfy */
+	qisolate0 pdata
+	branch otp_program_bit,true	/* program error */
+otp_skip_0:
+	hfetch 2,core_otp_addr
+	increase 1,pdata
+	hstore 2,core_otp_addr
+	increase 1,queue
+	compare 8,queue,0xf
+	nbranch otp_program_bit,true
+	loop otp_program
+	hjam 0x83,core_otp_ctrl
+	rtn
+
+otp_ce:
+	hjam 0x82,core_otp_ctrl	/* ceb */
+	nop 12
+	hjam 0x80,core_otp_ctrl	/* rstn */
+	hjam 0x82,core_otp_ctrl	/* release rstn */
+	nop 150					/* waiting for vdd25 stable */
+	rtn
+
+	/* rega points to data, temp is count */
+otpd_read_init:
+	call otp_ce
+otpd_read_special:
+	hjam 0xa2,core_otp_ctrl	/* readen */
+	deposit rega
+	hstore 2,core_otpd_addr
+	set1 11,temp
+	isolate0 15,pdata
+	setflag true,15,temp
+	hstoret 2,core_otpd_len
+	hjam otpd_start,core_misc_ctrl
+	rtn
+
+otpd_wait_end:
+	hfetch 1,core_dma_status
+	bbit0 otpd_done,otpd_wait_end
+	rtn
+	
+	/* pdata=otp address, rega points to data, temp is count */
+otpd_read_data:
+	call otp_set_addr
+	call otpd_read_init
+	call otpd_wait_end
+	hjam 0x83,core_otp_ctrl	/* release ceb */
+	rtn
+
+
+
+/* rega pointers to buf, temp is length */
+otpd_read_code:	
+	hfetch 2,core_current_otp_addr
+	hstore 2,core_otp_addr
+	call otpd_read_init
+	arg otpd_done,queue
+	call decrypt_code
+	call otpd_wait_end
+	isolate1 otpd_crcok,pdata	
+	call set_ucode_status
+	hjam 0x83,core_otp_ctrl	/* release ceb */
+	rtn
+
+/* ===================== uart dma ======================= */
+uartd_rx_cnt_got_first_byte:
+	jam 1,mem_uartd_rxitems_got_data
+	force uart_rx_timer,queue
+	fetch 2,mem_uartd_rx_timeout
+	branch timer_init
+uartd_rx_cnt_with_threshold:
+	hfetch 2,core_uart_rxitems
+	rtn blank
+	fetcht 1,mem_uartd_rxitems_threshold
+	isub temp,null
+	branch uartd_rx_cnt_rtn_value,positive
+	fetch 1,mem_uartd_rxitems_got_data
+	branch uartd_rx_cnt_got_first_byte,blank
+	arg uart_rx_timer,queue
+	call timer_check
+	branch uartd_rx_cnt_rtn_value,blank
+	setarg 0
+	rtn
+uartd_rx_cnt_rtn_value:
+	force uart_rx_timer,queue
+	call timer_stop
+	jam 0,mem_uartd_rxitems_got_data
+	hfetch 2,core_uart_rxitems
+	rtn
+	
+
+
+
+	
+	/* temp=bytes to send */	
+uartd_prepare_tx:
+	hfetch 2,core_uart_twptr
+	iforce contwu
+	rtn
+
+uartd_send:
+	deposit contwu
+	hstore 2,core_uart_twptr
+	rtn
+
+uartd_prepare_rx:
+	hfetch 2,core_uart_rxitems
+	rtn blank
+	iforce loopcnt
+	hfetch 2,core_uart_rrptr
+	iforce contru
+	rtn
+
+	//len in temp
+uartd_rxdone_by_len:
+	hfetch 2,core_uart_rrptr
+	iadd temp,pdata
+	copy pdata,contru
+uartd_rxdone:
+	deposit contru
+	hstore 2,core_uart_rrptr
+	rtn
+
+uart_set_baud_by_mem:
+	fetch uart_baud_len,mem_baud
+	hstore uart_baud_len,core_uart_baud
+	rtn
+
+/* ===================== eeprom data ======================= */
+
+eeprom_store_le_reconn_info:
+	fetch 6,mem_le_plap
+	store 6,mem_temp_lap
+	jam REC_4_MODE,mem_record_bt_mode
+	branch eeprom_store_reconn_info
+eeprom_store_bd_reconn_info:
+	fetch 6,mem_plap
+	store 6,mem_temp_lap
+	jam REC_3_MODE,mem_record_bt_mode
+eeprom_store_reconn_info:
+	set1 mark_ext_patch,mark
+	bpatch patch21_0,mem_patch21
+	call eeprom_store_remote_bdaddr
+	call eeprom_store_last_record_index
+	fetch 1,mem_record_bt_mode
+	beq REC_4_MODE,eeprom_store_rec_4_mode
+	beq REC_3_MODE,eeprom_store_link_key
+	rtn
+eeprom_store_rec_4_mode:
+	call eeprom_store_le_ltl
+	branch eeprom_store_le_local_addr
+	
+//
+eeprom_load_reconn_info:
+	set1 mark_ext_patch,mark
+	bpatch patch21_1,mem_patch21
+	call eeprom_load_reconn_bdaddr
+	fetch 1,mem_select_list_item
+	rtneq 0xff
+	fetch 6,mem_temp_lap
+	store 6,mem_hci_plap
+	fetch 1,mem_record_bt_mode
+	store 1,mem_xrecord_mode
+	beq REC_3_MODE,eeprom_load_rec_3_mode
+	beq REC_4_MODE,eeprom_load_rec_4_mode
+	rtn
+eeprom_load_reconn_bdaddr:
+	call eeprom_load_last_record_index
+	fetch 1,mem_select_list_item
+	rtneq 0xff
+	branch eeprom_load_remote_bdaddr
+eeprom_load_rec_3_mode:
+	call eeprom_load_link_key
+	branch check_link_key_load
+eeprom_load_rec_4_mode:
+	call eeprom_load_ltk_key
+	branch check_ltk_load
+eeprom_clear_bd_reconn_info:
+	call eeprom_load_bdaddr_list
+	disable user
+	call find_addr_from_bd_list
+	nbranch at_error_rev_end,user
+eeprom_clear_reconn_info_common:
+	fetcht 2,mem_list_item_ptr
+	increase -1,temp
+	setarg 0
+	istore 7,temp
+	arg 28,temp
+	arg mem_bdaddr_list_buff+7,rega
+	arg eeprom_bdaddr_list,regb
+	branch iicd_write_eep_data
+
+eeprom_clear_all_reconn_info:
+	set1 mark_ext_patch,mark
+	bpatch patch21_2,mem_patch21
+	arg mem_bdaddr_list_buff,contw
+	force 4,loopcnt
+	call memset0
+	arg 28,temp
+	arg mem_bdaddr_list_buff,rega
+	arg eeprom_bdaddr_list,regb
+	branch iicd_write_eep_data
+
+eeprom_erase_reconn_info:
+	set1 mark_ext_patch,mark
+	bpatch patch21_3,mem_patch21
+	setarg 0x0
+	store 3,mem_plap
+	istore 3,contw
+	branch eeprom_store_remote_bdaddr
+	
+eeprom_load_last_record_index:
+	arg 1,temp
+	arg mem_select_list_item,rega
+	arg eeprom_last_record,regb
+	branch iicd_read_eep_data
+
+eeprom_store_last_record_index:
+	arg 1,temp
+	arg mem_select_list_item,rega
+	arg eeprom_last_record,regb
+	branch iicd_write_eep_data
+
+
+eeprom_store_remote_bdaddr:
+	set1 mark_ext_patch,mark
+	bpatch patch21_4,mem_patch21
+	call eeprom_load_bdaddr_list
+	disable user
+	call find_addr_from_bd_list
+	rtn user
+eeprom_store_remote_addr_unfind:
+	jam 0,mem_select_list_item
+	fetch 6,mem_temp_lap
+	store 6,mem_bdaddr_list_buff+1
+	fetch 1,mem_record_bt_mode
+	store 1,mem_bdaddr_list_buff
+	arg 28,temp
+	arg mem_bdaddr_list_buff,rega
+	arg eeprom_bdaddr_list,regb
+	branch iicd_write_eep_data
+
+
+eeprom_store_le_local_addr:
+	arg 6,temp
+	arg mem_le_lap,rega
+	arg eeprom_le_reconn_local_addr,regb
+	branch iicd_write_eep_data
+	
+eeprom_load_le_loacal_addr:
+	arg 6,temp
+	arg mem_le_lap,rega
+	arg eeprom_le_reconn_local_addr,regb
+	branch iicd_read_eep_data
+
+
+eeprom_load_remote_bdaddr:
+	set1 mark_ext_patch,mark
+	bpatch patch21_5,mem_patch21
+	arg 7,temp
+	arg mem_temp_reconn_record,rega
+	arg eeprom_bdaddr_list,regb
+	fetch 1,mem_select_list_item
+	mul32 pdata,7,pdata
+	iadd regb,regb
+	branch iicd_read_eep_data
+
+eeprom_linkkey_addr:
+	arg 0x10,temp
+	arg eeprom_linkkey_list,regb
+	fetch 1,mem_select_list_item
+	lshift4 pdata,pdata
+	iadd regb,regb
+	rtn
+	
+eeprom_store_le_ltl:
+	arg mem_le_ltk,rega
+	branch eeprom_store_link_key_common
+eeprom_store_link_key:
+	arg mem_link_key,rega
+eeprom_store_link_key_common:
+	set1 mark_ext_patch,mark
+	bpatch patch21_6,mem_patch21
+	call eeprom_linkkey_addr
+	branch iicd_write_eep_data
+
+eeprom_load_ltk_key:
+	arg mem_le_ltk,rega
+	branch eeprom_load_link_key_common
+eeprom_load_link_key:
+	arg mem_link_key,rega
+eeprom_load_link_key_common:
+	set1 mark_ext_patch,mark
+	bpatch patch21_7,mem_patch21
+	call eeprom_linkkey_addr
+	branch iicd_read_eep_data
+
+
+	
+eeprom_load_bdaddr_list:
+	arg 28,temp
+	arg mem_bdaddr_list_buff+7,rega
+	arg eeprom_bdaddr_list,regb
+	branch iicd_read_eep_data
+
+find_addr_from_bd_list:
+	set1 mark_ext_patch,mark
+	bpatch patch22_0,mem_patch22
+	setarg mem_bdaddr_list_buff+7
+	store 2,mem_list_item_ptr
+	jam 0,mem_select_list_item
+	arg 4,loopcnt
+find_addr_from_list:
+	copy loopcnt,pdata
+	store 1,mem_pdatatemp
+	fetch 2,mem_list_item_ptr
+	copy pdata,rega
+	call find_addr_from_list_compare
+	rtn user
+	fetch 2,mem_list_item_ptr
+	increase 7,pdata
+	store 2,mem_list_item_ptr
+	fetch 1,mem_select_list_item
+	increase 1,pdata
+	store 1,mem_select_list_item
+	fetch 1,mem_pdatatemp
+	copy pdata,loopcnt
+	loop find_addr_from_list
+	rtn
+
+check_link_key_load:
+	fetch 8,mem_link_key
+	fetcht 8,mem_link_key+8
+	ior temp,pdata
+	rtn blank
+	jam 1,mem_link_key_exists
+	rtn
+check_ltk_load:
+	fetch 6,mem_hci_plap
+	rtn blank
+	jam 1,mem_ltk_exists
+	rtn
+
+find_addr_from_list_compare:
+	arg mem_temp_reconn_record,regb
+	arg 7,loopcnt
+	call string_compare
+	branch enable_usr,zero
+	rtn
+enable_usr:
+	enable user
+	rtn
+le_eeprom_load_reconn_info:
+	branch assert
+
+
+/* =============== GPIO CONTROL ================= */
+
+
+	//temp [4:0]=GPIO number, 0-31, 
+gpio_set_wake_by_current_state:
+	set1 mark_ext_patch,mark
+	bpatch patch22_1,mem_patch22
+	set1 7,temp
+	call gpio_get_bit
+	nsetflag true,7,temp
+	//branch gpio_set_wake
+	//fall through
+	
+	//temp [4:0]=GPIO number, 0-31, [7]=0, low active
+gpio_set_wake:
+	set1 mark_ext_patch,mark
+	bpatch patch22_2,mem_patch22
+	isolate0 7,temp
+	and temp,0x1f,queue
+	fetch 4,mem_gpio_wakeup_low
+	qsetflag true,pdata
+	store 4,mem_gpio_wakeup_low
+	fetch 4,mem_gpio_wakeup_high
+	nqsetflag true,pdata
+	store 4,mem_gpio_wakeup_high
+	rtn
+	
+	//temp [4:0]=GPIO number, 0-31, [7]=0, low active
+gpio_clr_wake:
+	set1 mark_ext_patch,mark
+	bpatch patch22_3,mem_patch22
+	isolate0 7,temp
+	and temp,0x1f,queue
+	fetch 4,mem_gpio_wakeup_low
+	qset0 pdata
+	store 4,mem_gpio_wakeup_low
+	fetch 4,mem_gpio_wakeup_high
+	qset0 pdata
+	store 4,mem_gpio_wakeup_high
+	rtn
+
+
+gpio_config_input_nowake:
+	call gpio_clr_wake
+	branch gpio_config_input_without_wake
+
+	//temp [4:0]=GPIO number, 0-31, [7]=0, low active
+gpio_config_input:
+	ncall gpio_set_wake,wake
+
+gpio_config_input_without_wake:
+	arg core_gpio_pd0,contw
+	call gpio_set_bit
+	setflip gpio_active_bit,temp
+	arg core_gpio_pu0,contw
+	call gpio_set_bit
+	set0 gpio_active_bit,temp
+	arg core_gpio_oe0,contw
+	branch gpio_set_bit
+	
+	//temp [4:0]=GPIO number, 0-31, [7]=0, low active. set gpio to inactive state
+gpio_config_output:	
+	setflip gpio_active_bit,temp
+	call gpio_out
+	set1 gpio_active_bit,temp
+	arg core_gpio_oe0,contw
+	branch gpio_set_bit
+	
+gpio_common:
+	and temp,0x07,queue
+	rshift3 temp,pdata
+	and_into 3,pdata
+	iadd contw,contw
+	ifetch 1,contw
+	rtn
+
+	
+	/* temp is gpio number, return true if gpio active */
+gpio_get_bit:
+	arg core_gpio_in,contw
+	call gpio_common
+	isolate1 gpio_active_bit,temp
+	branch gpio_get_bit_reverse,true
+	qisolate0 pdata
+	rtn
+gpio_get_bit_reverse:
+	qisolate1 pdata
+	rtn
+
+gpio_out_inactive:
+	isolate1 7,null
+	branch gpio_out_flag
+
+gpio_out_active:
+	isolate0 7,null
+
+	/* temp is gpio number,  [7]=1,set out equa true flag if gpio active */
+gpio_out_flag:
+	setarg 0
+	nsetflag true,gpio_active_bit,pdata
+	ixor temp,temp
+	
+	/* temp is gpio number,0-31, [7]=out bit value */
+gpio_out:
+	arg core_gpio_out0,contw
+
+	//temp [4:0]=GPIO number, 0-31, [7]=bit value; contw is gpio reg base
+gpio_set_bit:
+	call gpio_common
+	isolate1 gpio_active_bit,temp
+	qsetflag true,pdata
+	istore 1,contw
+	rtn
+
+gpio_test:
+	fetch 1,mem_seqi
+	rtneq 0x7f
+	hjam 0,core_gpio_out3
+	nop 30
+	hjam 8,core_gpio_out3
+	rtn
+
+
+/* ===================== PWM ======================= */
+
+set_pwm_blink:
+	lshift8 pdata,pdata
+	lshift4 pdata,pdata
+	hstore 2,core_pwm_ncnt0
+	hstore 2,core_pwm_pcnt0
+	rtn
+
+set_pwm_steadyon:
+	setarg 0
+	hstore 2,core_pwm_ncnt0
+	setarg 1
+	hstore 2,core_pwm_pcnt0
+	rtn
+
+set_pwm_off:
+	setarg 0
+	hstore 2,core_pwm_ncnt0
+	hstore 2,core_pwm_pcnt0
+	rtn
+
+	
+/* ===================== CODEC ======================= */
+
+init_filter_ram:
+	arg 0x8800,contw
+	arg 0x20,loopcnt
+	call memset0
+	setarg 0x4f9
+	hstore 2,0x8848
+	hstore 2,0x884a
+	hstore 2,0x884c
+	hstore 2,0x886c
+	hstore 2,0x888c
+	hstore 2,0x88ac
+	setarg 0x204
+	hstore 2,0x88ae
+	setarg 0x0506
+	hstore 2,0x88b0
+	setarg 0x0504
+	hstore 2,0x88b2
+	setarg 0x0200
+	hstore 2,0x88b4
+	setarg 0xFEFB
+	hstore 2,0x88b6
+	setarg 0xFAF9
+	hstore 2,0x88b8
+	setarg 0xFAFB
+	hstore 2,0x88ba
+	setarg 0xFD00
+	hstore 2,0x88bc
+	setarg 0x0408
+	hstore 2,0x88be
+	setarg 0x0A0C
+	hstore 2,0x88c0
+	setarg 0x0B09
+	hstore 2,0x88c2
+	setarg 0x0500
+	hstore 2,0x88c4
+	setarg 0xF8F1
+	hstore 2,0x88c6
+	setarg 0xECE8
+	hstore 2,0x88c8
+	setarg 0xE9EB
+	hstore 2,0x88ca
+	setarg 0xF500
+	hstore 2,0x88cc
+	setarg 0x1223
+	hstore 2,0x88ce
+	setarg 0x374B
+	hstore 2,0x88d0
+	setarg 0x5E71
+	hstore 2,0x88d2
+	setarg 0x787F
+	hstore 2,0x88d4
+	rtn
+
+enable_pcm:
+	set1 mark_ext_patch,mark
+	bpatch patch22_4,mem_patch22
+	hfetch 2,core_clkoff
+	set0 CLOCK_OFF_CODEC,pdata
+	hstore 2,core_clkoff
+	hjam 0x11,core_enc_ctrl
+	hjam 0x1,core_cvsd_ctrl
+	hjam 0x1,core_codec_ctrl
+	hjam 0x11,core_dec_ctrl
+	rtn
+
+disable_pcm:
+	set1 mark_ext_patch,mark
+	bpatch patch22_5,mem_patch22
+	hfetch 2,core_clkoff
+	set1 CLOCK_OFF_CODEC,pdata
+	hstore 2,core_clkoff
+	hjam 0x4,core_enc_ctrl
+	hjam 0x4,core_dec_ctrl
+	hjam 0x0,core_cvsd_ctrl
+	hjam 0x0,core_codec_ctrl
+	rtn
+
+
+
+get_sco_data:
+	fetch 1,mem_state
+	rtnbit0 state_insco
+	arg mem_sco_obuf,contw
+	arg 30,loopcnt
+get_sco_data_loop:
+	hfetch 1,core_pcminfifo
+	istore 1,contw
+	loop get_sco_data_loop
+	rtn
+	
+
+process_sco_data:
+	fetch 1,mem_state
+	rtnbit0 state_insco
+	arg mem_sco_ibuf,contr
+	force 30,loopcnt
+process_sco_loop:
+	ifetch 1,contr
+	hstore 1,core_pcmoutfifo
+	loop process_sco_loop
+	rtn
+
+init_sched:
+	rtn
+
+
+
+/* ===================== sniff GPIO CONTROL ======================= */
+gpio_cfg_uart_tx_output:
+	call gpio_uart2gpio
+	arg UART_WAKEUP_TX,temp
+	branch gpio_config_output
+
+gpio_pu_uart_tx:
+	call gpio_cfg_uart_tx_output
+	arg UART_WAKEUP_TX,temp
+	branch gpio_out_inactive
+
+gpio_pd_uart_tx:
+	call gpio_cfg_uart_tx_output
+	arg UART_WAKEUP_TX,temp
+	branch gpio_out_active
+
+gpio_cfg_uart_rx_output:
+	call gpio_uart2gpio
+	arg UART_WAKEUP_RX,temp
+	branch gpio_config_output
+
+gpio_pu_uart_rx:
+	call gpio_cfg_uart_rx_output
+	arg UART_WAKEUP_RX,temp
+	branch gpio_out_inactive
+
+gpio_pd_uart_rx:
+	call gpio_cfg_uart_rx_output
+	arg UART_WAKEUP_RX,temp
+	branch gpio_out_active
+
+gpio_tx_config_input_with_pu:
+	call gpio_uart2gpio
+	hfetch 1, core_gpio_pu0
+	set1 UART_WAKEUP_TX,pdata
+	hstore 1,core_gpio_pu0
+	arg UART_WAKEUP_TX,temp
+	branch gpio_config_input
+
+gpio_rx_config_input_with_pu:
+	call gpio_uart2gpio
+	hfetch 1, core_gpio_pu0
+	set1 UART_WAKEUP_RX,pdata
+	hstore 1,core_gpio_pu0
+	arg UART_WAKEUP_RX,temp
+	branch gpio_config_input
+	
+gpio_gpio2uart:
+	hfetch 1,core_gpio_sel1
+	or_into 0x04,pdata
+	hstore 1,core_gpio_sel1
+	rtn
+
+gpio_uart2gpio:
+	hfetch 1,core_gpio_sel1
+	and_into 0xfb,pdata
+	hstore 1,core_gpio_sel1
+	rtn
+
+gpio_check_uart_state:
+	hfetch 1,core_gpio_sel1
+	isolate1 2,pdata
+	rtn
+	
+
+prcp_init:
+	setarg prcp_process
+	store 2,mem_cb_att_write
+	rtn
+prcp_process:
+	call clear_prcp_sendbuff
+	fetch 1,mem_prcp
+	beq PRCP_LE,le_prcp
+	beq PRCP_SSP,prcp
+	branch assert
+le_prcp:
+	arg PRCP_RX_LE,temp
+	storet 2,mem_le_notify_handle
+	call le_att_get_handle_ptr
+	ifetch 1,contr
+	call prcp_parse
+	branch prcp_le_tx
+prcp:
+	call prcp_parse
+	branch prcp_tx
+prcp_parse:
+	copy contr,rega
+	set1 mark_ext_patch,mark
+	bpatch patch26_1,mem_patch26
+	ifetch 1,contr
+	beq COMMON_RES,prcp_parse_common_res
+	beq READ_REGISTERS_REQ,prcp_parse_read_registers_req
+	beq READ_REGISTERS_RES,prcp_parse_read_registers_res
+	beq WRITE_REGISTERS_REQ,prcp_parse_write_registers_req
+	beq I2C_CONFIG_REQ,prcp_parse_i2c_config_req
+	beq I2C_READ_REQ,prcp_parse_i2c_read_req
+	beq I2C_READ_RES,prcp_parse_i2c_read_res
+	beq I2C_WRITE_REQ,prcp_parse_i2c_write_req
+	beq SPI_CONFIG_REQ,prcp_parse_spi_config_req
+	beq SPI_READ_REQ,prcp_parse_spi_read_req
+	beq SPI_READ_RES,prcp_parse_spi_read_res
+	beq SPI_WRITE_REQ,prcp_parse_spi_write_req
+	beq PWM_CONFIG_REQ,prcp_parse_pwm_config_req
+	beq PWM_WRITE_REQ,prcp_parse_pwm_write_req
+	beq GPIO_CONFIG_REQ,prcp_parse_gpio_config_req
+	beq GPIO_READ_REQ,prcp_parse_gpio_read_req
+	beq GPIO_READ_RES,prcp_parse_gpio_read_res
+	beq GPIO_WRITE_REQ,prcp_parse_gpio_write_req
+	beq OTA_WRITE_REQ,prcp_parse_ota_write_req
+	beq OTA_END_CMD,prcp_parse_ota_end_cmd
+	rtn
+
+
+prcp_parse_common_res:
+	copy rega,contr
+    	ifetch 1,contr
+    	lshift8 pdata,pdata
+    	store 3,mem_prcp_data
+	rtn
+prcp_parse_read_registers_req:
+	rtn
+prcp_parse_read_registers_res:
+	rtn
+prcp_parse_write_registers_req:
+	rtn
+/*********************************************/
+/************** prcp_spi********************/
+/*********************************************/
+prcp_parse_spi_config_req:
+	rtn
+prcp_parse_spi_read_req:
+	rtn
+prcp_parse_spi_read_res:
+	rtn
+prcp_parse_spi_write_req:
+	rtn
+/***********************************************/
+/************** prcp_pwm********************/
+/***********************************************/
+prcp_parse_pwm_config_req:
+	ifetch 4,contr
+	hstore 1,core_gpio_sel2
+	rshift8 pdata,pdata
+	hfetcht 1,core_gpio_sel1
+	and_into 0x7f,temp
+	ior temp,temp
+	hstoret 1,core_gpio_sel1
+	rshift8 pdata,pdata
+	hfetcht 1,core_clkoff+1
+	and_into 0xdf,temp
+	ior temp,temp
+	hstoret 1,core_clkoff+1
+	rshift8 pdata,pdata
+	hfetcht 1,core_clksel
+	and_into 0x3f,temp
+	ior temp,temp
+	hstoret 1,core_clksel
+	branch prcp_parse_common_res
+prcp_parse_pwm_write_req:
+	ifetch 9,contr
+    hfetcht 1,core_gpio_key2//PWM_enable
+    and_into 0x3f,temp
+	ior temp,temp
+	hstoret 1,core_gpio_key2
+	rshift8 pdata,pdata
+	hstore 2,core_pwm_pcnt0
+	rshift16 pdata,pdata
+	hstore 2,core_pwm_ncnt0
+	rshift16 pdata,pdata
+	hstore 2,core_pwm_pcnt1
+	rshift16 pdata,pdata
+	hstore 2,core_pwm_ncnt1
+	branch prcp_parse_common_res
+/**********************************************/
+/************** prcp_gpio********************/
+/***********************************************/
+prcp_parse_gpio_config_req:
+	ifetch 4,contr
+    	hstore 4,core_gpio_oe0
+    	ifetch 4,contr
+    	hstore 4,core_gpio_pu0
+   	ifetch 4,contr
+    	hstore 4,core_gpio_pd0
+    	ifetch 1,contr
+    	hstore 1,core_gpio_sel
+    	ifetch 1,contr
+    	hstore 1,core_gpio_sel1
+  	ifetch 1,contr
+    	hstore 1,core_gpio_sel2
+    	branch prcp_parse_common_res
+prcp_parse_gpio_read_req:
+	branch prcp_parse_gpio_read_res
+prcp_parse_gpio_read_res:
+	jam 0x10,mem_prcp_data
+    	arg mem_prcp_data+1,contw
+   	hfetch 4,core_gpio_out0
+    	istore 4,contw
+    	hfetch 4,core_gpio_in
+    	istore 4,contw
+    	rtn
+prcp_parse_gpio_write_req:
+	ifetcht 1,contr
+    	ifetch 1,contr
+   	lshift3 pdata,pdata
+   	lshift4 pdata,pdata
+   	ior temp,temp
+  	call gpio_out
+    	branch prcp_parse_common_res
+
+/*********************************************/
+/************** prcp_i2c********************/
+/*********************************************/
+prcp_parse_i2c_read_req:
+	ifetcht 1,contr
+	hstoret 1,iic_slave_addr
+	ifetch 1,contr
+	compare 1,pdata,0xff
+	ifetch 1,contr
+	hstore 1,iic_fifo
+	branch iic_read_data_len,true
+	ifetch 1,contr
+	hstore 1,iic_fifo
+iic_read_data_len:
+	ifetch 1,contr
+	copy pdata,loopcnt
+	increase -1,pdata
+	or_into 0x90,pdata
+	hstore 1,iic_ctr//read byte
+	hjam 2,iic_cr//
+	nop 1
+	//call iic_wait
+	arg mem_prcp_data ,contw
+iic_read_loop:
+	hfetch 1,iic_fifo
+	istore 1,contw
+	loop iic_read_loop
+	rtn
+
+clear_prcp_sendbuff:
+	setarg 0
+	store 4,mem_prcp_data
+	istore 8,contw
+	istore 8,contw
+	rtn
+	
+/*********************************************/
+/************** prcp_ota********************/
+/* rxbuf:[0]head,[1-2]offset,[3]len,[4-19]data]*/
+//rega points to rxbuf
+prcp_parse_ota_write_req:
+        copy rega,pdata//copy contr,pdata
+        increase 1,pdata//
+        store 2,rx_buf_data_ptr
+        fetch 2, mem_eeprom_ota_base_addr
+        beq 0x0000,prcp_parse_ota_start1
+prcp_parse_ota_load:    
+        fetch 2, mem_eeprom_ota_base_addr
+        fetcht 2,rx_buf_data_ptr
+        ifetcht 2,temp
+        iadd temp,pdata
+        fetcht 2,rx_buf_data_ptr
+        increase 2,temp
+        copy temp,contr
+        ifetcht 1,contr  // data_len =>temp 
+        copy contr,rega //data_buf to rega
+        branch iicd_write_ota_data 
+
+prcp_parse_ota_start1:   /*compute the bytes of code*/    
+	setarg 0x0002
+	byteswap pdata,pdata
+	store 2,mem_addr_mi
+	arg iicd_read_eep,regc
+	arg 0x2,loopcnt
+prcp_parse_ota_loop1:
+         call get_block_header
+	nbranch prcp_parse_ota_start2, zero
+	fetch 2,mem_addr_mi
+	byteswap pdata,pdata
+	iadd temp,pdata
+	store 2,mem_eeprom_ota_base_addr
+	byteswap pdata,pdata
+	store 2,mem_addr_mi
+	loop prcp_parse_ota_loop1
+prcp_parse_ota_start2: /*compute the bytes of init-mem*/  
+	fetch 2, mem_eeprom_ota_base_addr
+	byteswap pdata,pdata
+	store 2,mem_addr_mi
+	arg iicd_read_eep,regc
+	arg 0xffff,loopcnt
+prcp_parse_ota_loop2:
+         call get_block_header
+	nbranch prcp_parse_ota_load, zero
+	fetch 2,mem_addr_mi
+	byteswap pdata,pdata
+	iadd temp,pdata
+	increase 2,pdata
+	store 2,mem_eeprom_ota_base_addr
+	byteswap pdata,pdata
+	store 2,mem_addr_mi
+	loop prcp_parse_ota_loop2
+
+prcp_parse_ota_end_cmd:  /*end of ota*/
+         fetch 2,mem_eeprom_ota_base_addr
+         increase 2,pdata
+         byteswap pdata,pdata
+         store 2,mem_eeprom_ota_base_addr
+	arg mem_eeprom_ota_base_addr,rega  
+         arg 0x02,temp  
+         arg  0x0000,pdata
+         call  iicd_write_ota_data
+         setarg 0x0000
+         store 2,mem_eeprom_ota_base_addr
+	rtn
+
+prcp_parse_i2c_config_req:
+	rtn
+prcp_parse_i2c_read_res:
+	rtn
+prcp_parse_i2c_write_req:
+	rtn	
+	
+	
+
+
+rfcomm_init:
+	rtn wake
+	jam 0,mem_rfcomm_send_more_pkt
+	jam BITS9600,memRemoteRPNBitRate        
+	jam DATABITS8,memRemotePRNDataBits      
+	jam 0x11,memRemotePRNXon
+	jam 0x13,memRemotePRNXoff
+	setarg 0
+	store 3,memRemotePRNStopBit
+	store 1,mem_spp_state                  
+	jam 0,memui_reconnect_mode
+	//branch rfcomm_init_spp
+rfcomm_init_spp:
+	set1 mark_ext_patch,mark
+	bpatch patch37_7,mem_patch37
+	setarg 0
+	store 1,mem_spp_state
+	store 1,mem_remote_spp_channel
+	store 1,mem_pn_dlci
+	jam 0x50,mem_credit_given
+	rtn
+
+set_CR_bit:
+	or_into 0x02,temp
+	rtn
+
+
+/*below added by koufan*/
+
+/*rfcomm_send */
+
+
+
+	/*rfcomm_calculate_FCS_sabm*/
+	/*input: address in temp*/
+	/*output: FCS in pdata  */
+rfcomm_calculate_FCS_sabm:
+	copy temp,pdata
+	reverse pdata,pdata //address
+	store 1,memFCStemp3
+	force INI_TX_SABM,pdata
+	reverse pdata,pdata
+	store 1,memFCStemp2
+	force 0x01,pdata                        
+	reverse pdata,pdata
+	store 1,memFCStemp1
+	call caculate_fcs
+	copy temp,pdata                        
+	rtn
+rfcomm_calculate_FCS_ua:
+	reverse pdata,pdata //address
+	store 1,memFCStemp3
+	force   RSP_TX_UA, pdata
+	reverse pdata, pdata
+	store   1, memFCStemp2
+	force   0x01, pdata
+	reverse pdata, pdata
+	store   1, memFCStemp1
+	branch caculate_fcs
+	/* FCS return from temp                */
+rfcomm_calculate_FCS_dlci0:
+	fetch 1,mem_rfcomm_initiator
+	branch rfcomm_calculate_FCS_dlci0_res,blank
+	setarg 0x70 //FCS of initiator
+	rtn
+rfcomm_calculate_FCS_dlci0_res:
+	setarg 0xaa//FCS of responder
+	rtn
+	
+rfcomm_save_FCS_uih:
+	reverse pdata, pdata //address 
+	store 1,memFCStemp3                     /* contw distroided                    */
+	force RSP_RX_UIH,pdata 
+	call caculate_UIHdata_fcs
+	fetcht 2,mem_contw_temp
+	copy temp,contw
+	istore 1,contw                      /* save FCS for later use              */
+	copy contw,temp
+	storet 2,mem_contw_temp
+	force RSP_RX_UIH_WDATA,pdata             /* P/F =1 + RSP_RX_UIH                 */
+	call caculate_UIHdata_fcs
+	fetcht 2,mem_contw_temp
+	copy temp,contw
+	istore 1,contw             /* save FCS for later use              */
+	rtn	
+/**********************************************************************/
+/* This subroutine caculates the FCS for UIH data                     */
+/* Input:                                                             */
+/*        the address byte at memFCStemp3(bit reversed), control byte */
+/*        at pdata (not bit reversed)                                 */
+/* Output:                                                            */
+/*        pdata: the FCS                                              */
+/**********************************************************************/  
+caculate_UIHdata_fcs:
+	reverse pdata,pdata
+	store   1,memFCStemp2
+	fetch   2, memFCStemp2                     
+	lshift8 pdata,pdata
+	store 3,mem_mod2div_temp
+	arg     0x107,rega
+	arg 0xf,regb
+	call mod2div
+	xor_into     0xd7, pdata
+	invert  pdata,pdata
+	reverse pdata,pdata
+	rtn
+	
+/**********************************************************************/
+/* This subroutine caculates the FCS                                  */
+/* Input:                                                             */
+/*        the address byte at memFCStemp3, control byte at memFCStemp2*/  
+/*        lenght at memFCStemp1 (all above data are bit reversed)     */
+/* Output:                                                            */
+/*        temp: the FCS                                               */
+/**********************************************************************/     
+caculate_fcs:
+	fetch 3, memFCStemp1                    /* load 3 bytes start at memFCStemp1   */
+	store 3,mem_mod2div_temp
+	arg 0x107,rega
+	arg 0xf,regb  //24bit(memFCStemp1+..+memFCStemp3) - 9bit(rega) = 15bit
+	call mod2div
+	lshift8 pdata,pdata 
+	arg 0x7, regb  //16bit(lshift8 pdata,pdata ) - 9bit(rega) = 7bit
+	call mod2div
+	xor_into     0x2b, pdata		//0x3d
+	invert  pdata, pdata                        
+	reverse pdata, pdata                      /* FCS at pdata                        */
+	copy    pdata, temp
+	rtn
+
+mod2div:
+	arg 0,regc
+	copy regb,loopcnt
+	call right_shift_n // right shift pdata (regb)bit
+	icopy temp
+mod2div_loop:
+	//jam 1,0x1fff
+//mod2div_loop1:
+	//fetch 1,0x1fff
+	//nbranch mod2div_loop1,blank
+	copy temp,pdata
+	lshift regc,regc//quotient
+	bbit0 8, mod2div_not_enough_reduction//the high bit of 0x107
+	ixor rega,temp// temp----remainer
+	increase 1,regc// quotient
+mod2div_not_enough_reduction: //Minuend smaller than Subtrahend
+	lshift temp,temp
+	fetch 3,mem_mod2div_temp
+	increase -1,regb
+	compare 0xff,regb,0xff
+	branch mod2div_end,true
+	copy regb,loopcnt
+	call right_shift_n // right shift pdata (regb)bit
+	isolate1 0,pdata
+	setflag true,0,temp //move a new bit from Dividend(queue) into Minuend(pdata)
+	branch mod2div_loop
+mod2div_end:
+	//output:remainer in pdata
+	rshift  temp,pdata
+	rtn
+
+get_rfcomm_snd_adss:
+	fetcht 1,mem_pn_dlci
+dlci_to_address_cmd:
+	//input DLCI from temp
+	lshift2 temp,temp
+	set1 RFCOMM_ADDRESS_EXT_LEN,temp
+	fetch 1,mem_rfcomm_initiator
+	ncall set_CR_bit,blank
+	storet 1,mem_rfcomm_send_adss
+	rtn
+
+dlci_to_address_res:
+	//input DLCI from temp
+	lshift2 temp,temp
+	set1 RFCOMM_ADDRESS_EXT_LEN,temp
+	fetch 1,mem_rfcomm_initiator
+	call set_CR_bit,blank
+	rtn
+channel_to_dlci:
+	//input channel from temp
+	lshift temp,temp
+	fetch 1,mem_rfcomm_initiator
+	setflag blank,0,temp //direction in dlci
+	//output dlci to temp
+	rtn
+rfcomm_rx_process_DLCI0_sabm:
+	fetcht 1,mem_current_channel //address
+	jam 0xd7,mem_current_fcs //FCS
+	call rfcomm_send_ua
+	fetch 1,mem_rfcomm_state
+	set1 L2CAP_CHANNEL_RFCOMM_ONLY_SABM,pdata
+	set1 L2CAP_CHANNEL_RFCOMM_ONLY_UA,pdata
+	store 1,mem_rfcomm_state
+	jam 0,mem_rfcomm_initiator
+	branch rfcomm_rx_process_end
+rfcomm_rx_process_DLCI0_ua:
+	fetch 1,mem_rfcomm_state
+	set1 L2CAP_CHANNEL_RFCOMM_ONLY_UA,pdata
+	store 1,mem_rfcomm_state
+	branch rfcomm_rx_process_end
+
+	
+rfcomm_rx_process:
+	set1 mark_ext_patch,mark
+	bpatch patch38_0,mem_patch38
+	fetch 1,memui_reconnect_mode
+	beq NO_RECONNECTION,rfcomm_rx_process_remote_page
+	branch rfcomm_rx_process_reconn
+
+rfcomm_rx_process_remote_page:
+	fetch 2,mem_l2cap_payload_ptr
+	copy pdata,contr
+	call get_rfcomm_head_struct
+	fetch 1,mem_current_channel
+	beq 0,parse_dlci0_rp
+	branch parse_uih_rp
+parse_dlci0_rp:
+	set1 mark_ext_patch,mark
+	bpatch patch38_1,mem_patch38
+	fetch 1,mem_current_frame_type
+	beq RFCOMM_FRAME_TYPE_SABM,rfcomm_rx_process_DLCI0_sabm
+	beq RFCOMM_FRAME_TYPE_UA,rfcomm_rx_process_DLCI0_ua
+	beq RFCOMM_FRAME_TYPE_UIH,parse_DLCI0_rp_uih
+	rtneq RFCOMM_FRAME_TYPE_DISCONN
+	branch assert
+
+
+parse_DLCI0_rp_uih:
+	fetch 2,mem_rfcomm_uih_payload_ptr
+	copy pdata,contr
+	call get_rfcomm_uih_head_struct
+	fetch 1,mem_uih_cmd_type
+	beq UIH_PARAM_NEG_CMD,parse_DLCI0_rp_uih_pn_cmd
+	beq UIH_PARAM_NEG_RES,parse_DLCI0_rp_uih_pn_res
+	beq UIH_MODEM_STATUS_CMD,parse_DLCI0_rp_uih_ms_cmd
+	beq UIH_MODEM_STATUS_RES,parse_DLCI0_rp_uih_ms_res
+	branch rfcomm_rx_process_end
+	
+parse_DLCI0_rp_uih_pn_cmd:
+	call parse_DLCI0_rp_uih_pn_res_common
+	fetch 1,mem_pn_dlci
+	rshift pdata,pdata
+	sub pdata,SPP_SLAVE_CHANNEL,null
+	branch parse_DLCI0_rp_uih_pn_cmd_spp,zero
+	branch assert
+parse_DLCI0_rp_uih_pn_cmd_spp:
+	fetch 1,mem_spp_state
+	set1 RFCOMM_CHANNEL_STATE_PN_CMD,pdata
+	set1 RFCOMM_CHANNEL_STATE_PN_RES,pdata
+	store 1,mem_spp_state
+	call rfcomm_send_param_neg_res
+	branch rfcomm_rx_process_end
+	
+parse_DLCI0_rp_uih_pn_res:
+	call parse_DLCI0_rp_uih_pn_res_common
+	branch rfcomm_rx_process_end
+
+parse_DLCI0_rp_uih_pn_res_common:
+	call get_param_payload_ptr
+	branch  get_rfcomm_prarmer_negotiation
+
+get_rfcomm_param_modem_status:
+	call get_param_payload_ptr
+	ifetch 1,contr
+	rshift3 pdata,pdata
+	store 1,mem_ms_channel
+	ifetch 1,contr
+	store 1,mem_ms_param
+	rtn
+
+
+get_rfcomm_head_struct:
+	ifetch 1,contr
+	store 1,mem_current_adss
+	rshift3 pdata,pdata
+	store 1,mem_current_channel
+	ifetch 1,contr
+	store 1,mem_current_frame_type
+get_rfcomm_current_length:
+	call get_rfcomm_length_common
+	storet 2,mem_current_length
+	copy contr,pdata
+	store 2,mem_rfcomm_uih_payload_ptr
+	rtn
+
+get_rfcomm_uih_head_struct:
+	ifetch 1,contr
+	rshift pdata,pdata
+	store 1,mem_uih_cmd_type
+	call get_rfcomm_length_common
+	storet 2,mem_uih_length
+	copy contr,pdata
+	store 2,mem_param_payload_ptr
+	rtn
+
+
+get_param_payload_ptr:
+	fetch 2,mem_param_payload_ptr
+	copy pdata,contr
+	rtn
+
+get_rfcomm_param_length_common:
+	fetch 2,mem_param_payload_ptr
+	copy pdata,contr
+get_rfcomm_length_common:
+	ifetch 1,contr
+	copy pdata,temp
+	rshift temp,temp
+	rtnbit1 0
+	ifetch 1,contr
+	lshift3 pdata,pdata
+	lshift4 pdata,pdata
+	iadd temp,temp
+	rtn
+
+get_rfcomm_prarmer_negotiation:
+	ifetch 1,contr
+	store 1,mem_pn_dlci
+	ifetch 1,contr
+	store 1,mem_pn_credit_flow_type_info
+	ifetch 1,contr
+	store 1,mem_pn_priority
+	ifetch 1,contr
+	store 1,mem_pn_acknowledg_timer
+	ifetch 2,contr
+	store 2,mem_pn_max_frame_size
+	ifetch 1,contr
+	store 1,mem_pn_max_retrans
+	ifetch 1,contr
+	store 1,mem_remote_credits
+	rtn
+
+
+parse_DLCI0_rp_uih_ms_cmd:
+	call get_rfcomm_param_modem_status
+	fetch 1,mem_ms_channel
+	sub pdata,1,null
+	branch parse_DLCI0_rp_uih_ms_cmd_spp,zero
+	branch assert
+parse_DLCI0_rp_uih_ms_cmd_spp:
+	fetch 1,mem_spp_state
+	set1 RFCOMM_CHANNEL_STATE_RCV_MS_CMD,pdata
+	set1 RFCOMM_CHANNEL_STATE_SND_MS_RES,pdata
+	store 1,mem_spp_state
+	fetcht 1,mem_pn_dlci
+	lshift2 temp,temp
+	or_into 3,temp
+	call rfcomm_send_modem_status_res
+	jam MORE_PKT_MSC_CMD_SPP,mem_rfcomm_send_more_pkt
+	branch rfcomm_rx_process_end
+	
+parse_DLCI0_rp_uih_ms_res:
+	call get_rfcomm_param_modem_status
+	fetch 1,mem_ms_channel
+	sub pdata,1,null
+	branch parse_DLCI0_rp_uih_MS_RES_spp,zero
+	branch assert
+parse_DLCI0_rp_uih_ms_res_spp:
+	fetch 1,mem_spp_state
+	set1 RFCOMM_CHANNEL_STATE_RCV_MS_RES,pdata
+	store 1,mem_spp_state
+	branch rfcomm_rx_process_end
+
+parse_uih_rp:
+	fetch 1,mem_current_channel
+	sub pdata,SPP_SLAVE_CHANNEL,null
+	branch parse_uih_rp_spp,zero
+	branch assert
+parse_uih_rp_spp:
+	fetch 1,mem_current_frame_type
+	beq RFCOMM_FRAME_TYPE_UA,parse_uih_rp_spp_ua
+	beq RFCOMM_FRAME_TYPE_SABM,parse_uih_rp_spp_sabm
+	beq RFCOMM_FRAME_TYPE_UIH,parse_uih_spp_uih
+	beq RFCOMM_FRAME_TYPE_UIH_CREDITS,parse_uih_spp_uih_credits
+	beq RFCOMM_FRAME_TYPE_DISCONN,parse_uih_rp_spp_disconn
+	branch assert
+parse_uih_rp_spp_ua:
+	fetch 1,mem_spp_state
+	set1 RFCOMM_CHANNEL_STATE_UA,pdata
+	store 1,mem_spp_state
+	branch rfcomm_rx_process_end
+parse_uih_rp_spp_sabm:
+	fetch 1,mem_spp_state
+	set1 RFCOMM_CHANNEL_STATE_UA,pdata
+	set1 RFCOMM_CHANNEL_STATE_SABM,pdata
+	store 1,mem_spp_state
+	fetch 1,mem_current_adss
+	call rfcomm_calculate_FCS_ua
+	store 1,mem_current_fcs
+	call rfcomm_send_ua
+	fetch 1,mem_current_adss
+	rshift2 pdata,pdata
+	store 1,mem_pn_dlci
+	lshift2 pdata,pdata
+	set0 RFCOMM_ADDRESS_CR,pdata
+	set1 RFCOMM_ADDRESS_EXT_LEN,pdata 
+	arg mem_HIUfcs_spp,temp // mem_HIUfcs_HF_WCredits in regb++
+	storet 2,mem_contw_temp
+	call rfcomm_save_FCS_uih
+	branch rfcomm_rx_process_end
+	
+parse_uih_spp_uih_credits:
+	fetch 2,mem_rfcomm_uih_payload_ptr
+	copy pdata,contr
+	increase 1,pdata
+	store 2,mem_rfcomm_uih_payload_ptr
+	ifetch 1,contr //remote credits
+	fetcht 1,mem_remote_credits
+	iadd temp,pdata
+	store 1,mem_remote_credits
+parse_uih_spp_uih:
+	call rfcomm_increase_credit_given
+parse_uih_spp_uih_cont:
+	call get_rfcomm_snd_adss
+	call rfcomm_send_uih_without_payload
+	call spp_process_rx_data
+	branch rfcomm_rx_process_end
+	
+parse_uih_rp_spp_disconn:
+	call rfcomm_init_spp
+	fetch 1,mem_current_adss
+	call rfcomm_calculate_FCS_ua
+	store 1,mem_current_fcs
+	call rfcomm_send_ua
+	branch rfcomm_rx_process_end
+	
+///////////////////////////////////////////
+///////////////////////////////////////////
+///////////////////////////////////////////
+rfcomm_rx_process_reconn:
+	fetch 2,mem_l2cap_payload_ptr
+	copy pdata,contr
+	call get_rfcomm_head_struct
+	fetch 1,mem_current_channel
+	beq 0,parse_DLCI0_reconn
+	branch parse_uih_reconn
+		
+parse_DLCI0_reconn:
+	set1 mark_ext_patch,mark
+	bpatch patch38_2,mem_patch38
+	fetch 1,mem_current_frame_type
+	beq RFCOMM_FRAME_TYPE_SABM,rfcomm_rx_process_DLCI0_sabm
+	beq RFCOMM_FRAME_TYPE_UA,rfcomm_rx_process_DLCI0_ua
+	beq RFCOMM_FRAME_TYPE_UIH,parse_DLCI0_reconn_uih
+	branch rfcomm_rx_process_end
+parse_DLCI0_reconn_uih:
+	fetch 2,mem_rfcomm_uih_payload_ptr
+	copy pdata,contr
+	call get_rfcomm_uih_head_struct
+	fetch 1,mem_uih_cmd_type
+	beq UIH_PARAM_NEG_CMD,parse_DLCI0_reconn_uih_pn_cmd
+	beq UIH_PARAM_NEG_RES,parse_DLCI0_reconn_uih_pn_cmd
+	beq UIH_MODEM_STATUS_CMD,parse_DLCI0_reconn_uih_ms_cmd
+	beq UIH_MODEM_STATUS_RES,parse_DLCI0_reconn_uih_ms_res
+	branch rfcomm_rx_process_end
+
+parse_DLCI0_reconn_uih_pn_cmd:
+	call parse_DLCI0_rp_uih_pn_res_common
+	fetch 1,mem_pn_dlci
+	rshift pdata,pdata
+	fetcht 1,mem_remote_spp_channel
+	isub temp,null
+	branch parse_DLCI0_reconn_uih_pn_cmd_spp,zero
+	branch assert
+parse_DLCI0_reconn_uih_pn_cmd_spp:
+	fetch 1,mem_spp_state
+	set1 RFCOMM_CHANNEL_STATE_PN_RES,pdata
+	store 1,mem_spp_state
+	branch rfcomm_rx_process_end
+
+parse_DLCI0_reconn_uih_ms_cmd:
+	call get_rfcomm_param_modem_status
+	fetch 1,mem_ms_channel
+	fetcht 1,mem_remote_spp_channel
+	isub temp,null
+	branch parse_DLCI0_reconn_uih_ms_cmd_spp,zero
+	branch assert
+	branch rfcomm_rx_process_end
+parse_DLCI0_reconn_uih_ms_cmd_spp:
+	fetch 1,mem_spp_state
+	set1 RFCOMM_CHANNEL_STATE_RCV_MS_CMD,pdata
+	set1 RFCOMM_CHANNEL_STATE_SND_MS_RES,pdata
+	store 1,mem_spp_state
+	fetcht 1,mem_pn_dlci
+	lshift2 temp,temp
+	or_into 3,temp
+	call rfcomm_send_modem_status_res
+	branch rfcomm_rx_process_end
+	
+parse_DLCI0_reconn_uih_ms_res:
+	call get_rfcomm_param_modem_status
+	fetch 1,mem_ms_channel
+	fetcht 1,mem_remote_spp_channel
+	isub temp,null
+	branch parse_DLCI0_reconn_uih_ms_res_spp,zero
+	branch assert
+parse_DLCI0_reconn_uih_ms_res_spp:
+	fetch 1,mem_spp_state
+	set1 RFCOMM_CHANNEL_STATE_RCV_MS_RES,pdata
+	store 1,mem_spp_state
+	branch rfcomm_rx_process_end
+
+parse_uih_reconn:
+	fetch 1,mem_current_channel
+	fetcht 1,mem_remote_spp_channel
+	isub temp,null
+	branch parse_uih_reconn_spp,zero
+	branch assert
+	branch rfcomm_rx_process_end
+
+parse_uih_reconn_spp:
+	fetch 1,mem_current_frame_type
+	beq RFCOMM_FRAME_TYPE_UA,parse_uih_reconn_spp_ua
+	beq RFCOMM_FRAME_TYPE_UIH,parse_uih_spp_uih
+	beq RFCOMM_FRAME_TYPE_UIH_CREDITS,parse_uih_spp_uih_credits
+	beq RFCOMM_FRAME_TYPE_DISCONN,parse_uih_reconn_spp_disconn
+parse_uih_reconn_spp_ua:
+	fetch 1,mem_spp_state
+	set1 RFCOMM_CHANNEL_STATE_UA,pdata
+	store 1,mem_spp_state
+	branch rfcomm_rx_process_end
+parse_uih_reconn_spp_sabm:
+	branch parse_uih_reconn_spp_sabm//loop
+parse_uih_reconn_spp_disconn:
+	branch parse_uih_rp_spp_disconn
+rfcomm_rx_process_end:
+	rtn
+	
+rfcomm_send_more_pkt:
+	fetch 1,mem_rfcomm_send_more_pkt
+	rtn blank
+	beq MORE_PKT_MSC_CMD_SPP,rfcomm_send_more_pkt_msc_cmd_spp
+	branch assert
+	
+rfcomm_send_more_pkt_msc_cmd_spp:
+	jam 0,mem_rfcomm_send_more_pkt
+	call l2cap_malloc_rfcomm_channel
+	arg SPP_SLAVE_CHANNEL,temp
+	lshift3 temp,temp
+rfcomm_send_more_pkt_msc_cmd_spp0:
+	or_into 0x03,temp
+	arg 0xaa,rega
+	call rfcomm_send_modem_status_cmd
+	call l2cap_get_rfcomm_tx_buff
+	copy contw,contr
+	ifetch 2, contr
+	branch assert,blank
+	rtn
+
+rfcomm_send_sabm:
+	set1 mark_ext_patch,mark
+	bpatch patch38_3,mem_patch38
+	call l2cap_get_rfcomm_tx_buff
+	setarg 0x0004
+	istore 2,contw //l2cap len
+	fetch 2,mem_rfcomm_remote_cid
+	istore 2,contw//cid
+	fetch 1,mem_current_adss
+	istore 1,contw //address
+	setarg 0x013f
+	istore 2,contw
+	fetch 1,mem_current_fcs
+	istore 1,contw
+	rtn
+rfcomm_send_ua:
+	set1 mark_ext_patch,mark
+	bpatch patch38_4,mem_patch38
+	call l2cap_malloc_rfcomm_channel
+	call l2cap_get_rfcomm_tx_buff
+	setarg 0x0004
+	istore 2,contw //l2cap len
+	fetch 2,mem_rfcomm_remote_cid
+	istore 2,contw//cid
+	fetch 1,mem_current_adss
+	istore 1,contw //address
+	setarg 0x0173
+	istore 2,contw
+	fetch 1,mem_current_fcs
+	istore 1,contw
+	rtn
+rfcomm_send_param_neg_cmd:
+	set1 mark_ext_patch,mark
+	bpatch patch38_5,mem_patch38
+	call l2cap_get_rfcomm_tx_buff
+	setarg 0x000e
+	istore 2,contw //l2cap len
+	fetch 2,mem_rfcomm_remote_cid
+	istore 2,contw//cid
+	fetch 1,mem_rfcomm_initiator
+	lshift pdata,pdata
+	set1 0,pdata //ext len
+	istore 1,contw //DLCI0 address
+	setarg 0x15ef
+	istore 2,contw
+	setarg 0x1183
+	istore 2,contw
+	copy temp,pdata //DLCI in temp
+	istore 1,contw
+	setarg 0x0000f0
+	istore 3,contw
+	setarg RFCOMM_MAX_FRAME_SIZE
+	istore 2,contw
+	setarg 0
+	istore 1,contw
+	setarg 0x01		//change here later
+	istore 1,contw
+	call rfcomm_calculate_FCS_dlci0
+	istore 1,contw
+	jam 0x10,mem_credit_given
+	rtn
+rfcomm_send_param_neg_res:
+	set1 mark_ext_patch,mark
+	bpatch patch38_6,mem_patch38
+	call l2cap_malloc_rfcomm_channel
+	call l2cap_get_rfcomm_tx_buff
+	setarg 0x000e
+	istore 2,contw //l2cap len
+	fetch 2,mem_rfcomm_remote_cid
+	istore 2,contw//cid
+	fetch 1,mem_rfcomm_initiator
+	lshift pdata,pdata
+	set1 0,pdata //ext len
+	istore 1,contw //DLCI0 address
+	setarg 0x15ef
+	istore 2,contw
+	setarg 0x1181
+	istore 2,contw
+	fetch 1,mem_pn_dlci
+	istore 1,contw //DLCI
+	setarg 0x0000e0
+	istore 3,contw
+	setarg RFCOMM_MAX_FRAME_SIZE //max frame size
+	istore 2,contw 
+	setarg 0x00 //max retrans
+	istore 1,contw
+	setarg 0x07
+	istore 1,contw // init credits
+	call rfcomm_calculate_FCS_dlci0
+	istore 1,contw
+	rtn
+rfcomm_send_modem_status_cmd:
+	set1 mark_ext_patch,mark
+	bpatch patch38_7,mem_patch38
+	call l2cap_get_rfcomm_tx_buff
+	setarg 0x0008
+	istore 2,contw //l2cap len
+	fetch 2,mem_rfcomm_remote_cid
+	istore 2,contw//cid
+	fetch 1,mem_rfcomm_initiator
+	lshift pdata,pdata
+	set1 0,pdata //ext len
+	istore 1,contw //DLCI0 address
+	setarg 0x09ef
+	istore 2,contw
+	setarg 0x05e3
+	istore 2,contw
+	copy temp,pdata //DLCI adress
+	istore 1,contw
+	setarg 0x8d
+	istore 1,contw
+	call rfcomm_calculate_FCS_dlci0
+	istore 1,contw
+	rtn
+
+rfcomm_send_modem_status_res:
+	set1 mark_ext_patch,mark
+	bpatch patch39_0,mem_patch39
+	call l2cap_malloc_rfcomm_channel
+	call l2cap_get_rfcomm_tx_buff
+	setarg 0x0008
+	istore 2,contw //l2cap len
+	fetch 2,mem_rfcomm_remote_cid
+	istore 2,contw//cid
+	copy temp,timeup
+	fetch 1,mem_rfcomm_initiator
+	lshift pdata,pdata
+	set1 0,pdata //ext len
+	istore 1,contw //DLCI0 address
+	setarg 0x09ef
+	istore 2,contw
+	setarg 0x05e1
+	istore 2,contw
+	copy timeup,pdata //DLCI address in temp
+	istore 1,contw
+	setarg 0x8d
+	istore 1,contw
+	call rfcomm_calculate_FCS_dlci0
+	istore 1,contw
+	rtn
+
+rfcomm_send_uih_without_payload:
+	set1 mark_ext_patch,mark
+	bpatch patch39_1,mem_patch39
+	fetch 1,mem_credit_given
+	rtn blank
+	hfetch 2,core_uart_rxitems
+	nrtn blank
+	copy rega,pdata
+	store 1,mem_pdatatemp+1
+	storet 1,mem_pdatatemp
+	call l2cap_malloc_is_fifo_full
+	nrtn blank
+	call l2cap_malloc_rfcomm_channel
+	call l2cap_get_rfcomm_tx_buff
+	setarg 0x05
+	istore 2,contw
+	fetch 2,mem_RFCOMM_remote_CID
+	istore 2,contw
+	fetch 1,mem_rfcomm_send_adss
+	istore 1,contw
+	setarg 0x01ff
+	istore 2,contw
+	fetch 1,mem_credit_given
+	istore 1,contw
+	fetch 1,mem_HIUfcs_SPP_WCredits
+	istore 1,contw
+	jam 0,mem_credit_given
+	rtn
+	
+rfcomm_increase_credit_given:
+	fetch 2,mem_current_length
+	rtn blank
+	fetch 1,mem_credit_given
+	increase 1,pdata
+	store 1,mem_credit_given
+	rtn
+
+spp_process_rx_data:
+	set1 mark_ext_patch,mark
+	bpatch patch39_2,mem_patch39
+	fetch 2,mem_current_length
+	copy pdata,loopcnt
+	call uartd_prepare_tx
+	fetch 2,mem_rfcomm_uih_payload_ptr
+	copy pdata,contr
+	call uart_copy_tx_bytes
+	branch uartd_send
+
+spp_tx_rfcomm_packet:
+	set1 mark_ext_patch,mark
+	bpatch patch39_3,mem_patch39
+	//credit
+	fetch 1,mem_remote_credits
+	rtn blank
+	increase -1,pdata
+	store 1,mem_remote_credits
+	fetch 2,mem_pn_max_frame_size
+	fetcht 2,mem_current_packet_length
+	isub temp,null
+	branch spp_tx_rfcomm_from_uart,positive
+	store 2,mem_current_packet_length
+spp_tx_rfcomm_from_uart:
+	fetch 1,mem_credit_given
+	branch spp_tx_rfcomm_from_uart_without_credit,blank
+	jam 1,mem_rfcomm_send_offset
+	fetch 1,mem_HIUfcs_SPP_WCredits
+	store 1,mem_rfcomm_send_fcs
+	setarg RSP_RX_UIH_WDATA
+	store 1,mem_rfcomm_send_frame_type
+	branch spp_tx_rfcomm_from_uart_common
+spp_tx_rfcomm_from_uart_without_credit:
+	jam 0,mem_rfcomm_send_offset
+	fetch 1,mem_HIUfcs_SPP
+	store 1,mem_rfcomm_send_fcs
+	setarg RSP_TX_UIH
+	store 1,mem_rfcomm_send_frame_type
+spp_tx_rfcomm_from_uart_common:
+	set1 mark_ext_patch,mark
+	bpatch patch39_4,mem_patch39
+	fetch 1,mem_current_packet_length
+	sub pdata,127,null
+	branch spp_tx_rfcomm_from_uart_common0,positive
+	fetch 1,mem_rfcomm_send_offset
+	increase 1,pdata
+	store 1,mem_rfcomm_send_offset
+spp_tx_rfcomm_from_uart_common0:
+	call get_rfcomm_snd_adss
+	fetch 2,mem_current_packet_length
+	increase 8,pdata	//fcs + rfcommhead + l2caphead == 8
+	fetcht 1,mem_rfcomm_send_offset
+	iadd temp,rega
+	//rfcomm payload
+	call l2cap_malloc
+	store 2,mem_rfcomm_tx_buff_ptr
+	increase 4,pdata
+	store 2,mem_rfcomm_tx_payload_ptr
+	copy pdata,contw
+	fetch 1,mem_rfcomm_send_adss
+	istore 1,contw
+	fetch 1,mem_rfcomm_send_frame_type
+	istore 1,contw
+	call spp_tx_write_length
+	call spp_tx_write_given_credit
+	call get_uart_rrptr	
+	fetch 1,mem_current_packet_length
+	copy pdata,loopcnt
+	call uart_copy_rx_bytes
+	fetch 1,mem_rfcomm_send_fcs
+	istore 1,contw
+	fetch 2,mem_rfcomm_tx_buff_ptr
+	copy pdata,contw
+	fetch 2,mem_current_packet_length
+	fetcht 1,mem_rfcomm_send_offset
+	iadd temp,pdata
+	increase 4,pdata
+	istore 2,contw
+	fetch 2,mem_rfcomm_remote_cid
+	istore 2,contw
+	jam 0,mem_credit_given	//whatever mem_credit_given is set to 0
+	branch spp_send_end
+	
+spp_tx_write_length:
+	fetch 2,mem_current_packet_length
+	sub pdata,0x7f,null
+	nbranch spp_tx_write_long_packet,positive
+	lshift pdata,pdata
+	set1 0,pdata
+	istore 1,contw
+	rtn
+spp_tx_write_long_packet:
+	fetch 2,mem_current_packet_length
+	rshift3 pdata,pdata
+	rshift4 pdata,temp
+	and_into 0x7f,pdata
+	lshift pdata,pdata
+	set0 0,pdata
+	istore 1,contw
+	istoret 1,contw
+	rtn
+spp_tx_write_given_credit:
+	fetch 1,mem_credit_given
+	rtn blank
+	istore 1,contw
+	rtn
+
+	
+
+
+scheduler_process:
+	set1 mark_ext_patch,mark
+	bpatch patch33_5,mem_patch33
+	call check_51cmd
+	call app_process_bb_event
+	call process_conn_sm
+/* check the connection state sequence byte */
+	set1 mark_ext_patch,mark
+	bpatch patch33_6,mem_patch33
+	call sp_calc_sequence
+	call simple_pairing_sequence
+	call master_simple_paring_sequence
+//return if it is hci mode. 'cause the following is host part.
+	set1 mark_ext_patch,mark
+	bpatch patch33_7,mem_patch33
+	fetch 1,mem_device_option
+	rtneq dvc_op_hci
+//notify BB to tx a l2cap packet
+	call l2cap_malloc_is_fifo_full
+	nrtn blank
+	//for conn to MTK 
+	call l2cap_call_proc_sigal_pending
+scheduler_process1:
+	call l2cap_malloc_is_fifo_full
+	nrtn blank
+	set1 mark_ext_patch,mark
+	bpatch patch34_0,mem_patch34
+//to generat a new l2cap packet
+	call process_upper_sm
+	call l2cap_send_config_req
+	call rfcomm_send_more_pkt//use this function to send msc_cmd after msc_rep sent
+scheduler_process0:
+	call scheduler_tx_disconnect_hid //may not used
+	set1 mark_ext_patch,mark
+	bpatch patch34_1,mem_patch34
+	call l2cap_malloc_is_fifo_full
+	nrtn blank
+	branch app_process_bt
+	
+scheduler_tx_disconnect_hid:
+	set1 mark_ext_patch,mark
+	bpatch patch34_2,mem_patch34
+	fetch 1,mem_CONTROL_tasks		
+	bbit1 L2CAP_DISCONNECT_INTERRUPT,L2CAP_disconnect_interrupt_req
+	bbit1 L2CAP_DISCONNECT_CONTROL,L2CAP_disconnect_control_req
+	rtn
+	
+scheduler_tx_l2cap_pkt:
+	set1 mark_ext_patch,mark
+	bpatch patch34_3,mem_patch34
+	call l2cap_malloc_is_fifo_empty
+	rtn blank //empty
+	fetch 1,mem_op
+	rtnbit1 op_txl2cap
+	call l2cap_malloc_fifo_out
+	store 2,mem_txptr
+	copy pdata,contr
+	ifetch 2,contr
+	increase 4,pdata
+	store 2,mem_tx_len
+	jam 6,mem_tx_lch//start pkt
+	set1 mark_ext_patch,mark
+	bpatch patch34_4,mem_patch34
+	fetch 2,mem_l2cap_tx_multi_offset
+	branch scheduler_tx_l2cap_start_pkt,blank
+	fetch 1,mem_op
+	rtnbit0 op_pkt_comp
+	set0 op_pkt_comp,pdata
+	store 1,mem_op
+	jam 5,mem_tx_lch//continue pkt
+	fetcht 2,mem_l2cap_tx_multi_offset
+	fetch 2,mem_txptr
+	iadd temp,pdata
+	store 2,mem_txptr
+	fetch 2,mem_tx_len
+	isub temp,pdata
+	store 2,mem_tx_len
+scheduler_tx_l2cap_start_pkt:
+	set1 mark_ext_patch,mark
+	bpatch patch34_5,mem_patch34
+	fetch 2,mem_tx_len
+	branch assert,blank
+	arg l2cap_max_pkt_len,temp //max len of dh3 pkt
+	isub temp,pdata
+	nbranch scheduler_Tx_l2cap_last_pkt,positive
+	set1 mark_ext_patch,mark
+	bpatch patch34_6,mem_patch34
+	storet 2,mem_tx_len //l2cap_max_pkt_len
+	fetch 2,mem_l2cap_tx_multi_offset
+	iadd temp,pdata
+	store 2,mem_l2cap_tx_multi_offset
+	branch scheduler_Tx_l2cap_pkt_end
+scheduler_Tx_l2cap_last_pkt:
+	setarg 0
+	store 2,mem_l2cap_tx_multi_offset
+scheduler_Tx_l2cap_pkt_end:
+	fetch 1,mem_op
+	set1 op_txl2cap,pdata
+	store 1,mem_op
+	rtn
+
+scheduler_start_upper_sm:
+	fetch 1,mem_UI_profile_supported
+	bbit1 support_HID,scheduler_start_upper_sm_hid
+	jam UPPERSM_RECONN_SDP_CONN,mem_upper_sm_reconn
+	rtn
+scheduler_start_upper_sm_hid:
+	jam UPPERSM_RECONN_HID_CTRL_CONN,mem_upper_sm_reconn
+	rtn
+	
+process_upper_sm:
+	fetch 1,memui_reconnect_mode
+	nbranch process_upper_sm_reconn,blank
+process_upper_sm_remote_page:
+	fetch 1,mem_upper_sm_remote_page
+	//beq UPPERSM_RP_IDLE,process_upper_sm_rp_idle
+	rtn blank
+	//nothing to do when remote page to create a connection.
+	jam 0,mem_upper_sm_remote_page
+process_upper_sm_rp_wait:
+	rtn
+
+
+process_upper_sm_reconn:
+	set1 mark_ext_patch,mark
+	bpatch patch34_7,mem_patch34
+	fetch 1,mem_upper_sm_reconn
+	rtn blank
+	beq UPPERSM_RECONN_SDP_CONN,process_upper_sm_reconn_sdp_conn
+	beq UPPERSM_RECONN_SDP_CONN_WAIT,process_upper_sm_reconn_sdp_conn_wait
+	beq UPPERSM_RECONN_SDP_CFG,process_upper_sm_reconn_sdp_cfg
+	beq UPPERSM_RECONN_SDP_CFG_WAIT,process_upper_sm_reconn_sdp_cfg_wait
+	beq UPPERSM_RECONN_SS_SPP,process_upper_sm_reconn_ss_spp
+	beq UPPERSM_RECONN_SS_SPP_WAIT,process_upper_sm_reconn_ss_spp_wait
+	beq UPPERSM_RECONN_SDP_DISCONN,process_upper_sm_reconn_sdp_disconn
+	beq UPPERSM_RECONN_SDP_DISCONN_WAIT,process_upper_sm_reconn_sdp_disconn_wait
+	beq UPPERSM_RECONN_HID_CTRL_CONN,process_upper_sm_reconn_hid_ctrl_conn
+	beq UPPERSM_RECONN_HID_CTRL_CONN_WAIT,process_upper_sm_reconn_hid_ctrl_conn_wait
+	beq UPPERSM_RECONN_HID_CTRL_CFG,process_upper_sm_reconn_hid_ctrl_cfg
+	beq UPPERSM_RECONN_HID_CTRL_CFG_WAIT,process_upper_sm_reconn_hid_ctrl_cfg_wait
+	beq UPPERSM_RECONN_HID_INT_CONN,process_upper_sm_reconn_hid_int_conn
+	beq UPPERSM_RECONN_HID_INT_CONN_WAIT,process_upper_sm_reconn_hid_int_conn_wait
+	beq UPPERSM_RECONN_HID_INT_CFG,process_upper_sm_reconn_hid_int_cfg
+	beq UPPERSM_RECONN_HID_INT_CFG_WAIT,process_upper_sm_reconn_hid_int_cfg_wait
+	beq UPPERSM_RECONN_RFCOMM_CONN,process_upper_sm_reconn_rfcomm_conn
+	beq UPPERSM_RECONN_RFCOMM_CONN_WAIT,process_upper_sm_reconn_rfcomm_conn_wait
+	beq UPPERSM_RECONN_RFCOMM_CFG,process_upper_sm_reconn_rfcomm_cfg
+	beq UPPERSM_RECONN_RFCOMM_CFG_WAIT,process_upper_sm_reconn_rfcomm_cfg_wait
+	beq UPPERSM_RECONN_RFCOMM_SABM,process_upper_sm_reconn_rfcomm_sabm
+	beq UPPERSM_RECONN_RFCOMM_SABM_WAIT,process_upper_sm_reconn_rfcomm_sabm_wait
+	beq UPPERSM_RECONN_SPP_CMD_PN,process_upper_sm_reconn_spp_cmd_pn
+	beq UPPERSM_RECONN_SPP_CMD_PN_WAIT,process_upper_sm_reconn_spp_cmd_pn_wait
+	beq UPPERSM_RECONN_SPP_SABM,process_upper_sm_reconn_spp_sabm
+	beq UPPERSM_RECONN_SPP_SABM_WAIT,process_upper_sm_reconn_spp_sabm_wait
+	beq UPPERSM_RECONN_SPP_CMD_MS,process_upper_sm_reconn_spp_cmd_ms
+	beq UPPERSM_RECONN_SPP_CMD_MS_WAIT,process_upper_sm_reconn_spp_cmd_ms_wait
+process_upper_sm_reconn_wait:
+	rtn
+process_upper_sm_reconn_sdp_conn:
+	call upper_sm_send_sdp_conn //return n-user if sending failed
+	jam UPPERSM_RECONN_SDP_CONN_WAIT,mem_upper_sm_reconn
+	fetch 1,mem_sdp_state
+	set1 L2CAP_CHANNEL_STATE_CONN_REQ,pdata
+	store 1,mem_sdp_state
+	rtn
+process_upper_sm_reconn_sdp_cfg:
+	jam UPPERSM_RECONN_SDP_CFG_WAIT,mem_upper_sm_reconn
+	fetch 1,mem_sdp_state
+	rtnbit1 L2CAP_CHANNEL_STATE_SND_CFG_REQ
+	jam UPPERSM_RECONN_SDP_CFG,mem_upper_sm_reconn
+	call upper_sm_send_sdp_cfg //return n-user if sending failed
+	jam UPPERSM_RECONN_SDP_CFG_WAIT,mem_upper_sm_reconn
+	fetch 1,mem_sdp_state
+	set1 L2CAP_CHANNEL_STATE_SND_CFG_REQ,pdata
+	store 1,mem_sdp_state
+	rtn
+process_upper_sm_reconn_ss_spp:
+	call l2cap_malloc_is_fifo_empty
+	nrtn blank
+	call upper_sm_send_ss_spp
+	jam UPPERSM_RECONN_SS_SPP_WAIT,mem_upper_sm_reconn
+	rtn
+process_upper_sm_reconn_sdp_disconn:
+	call upper_sm_send_sdp_disconn
+	jam UPPERSM_RECONN_SDP_DISCONN_WAIT,mem_upper_sm_reconn
+	rtn
+process_upper_sm_reconn_hid_ctrl_conn:
+	call upper_sm_send_hid_ctrl_conn
+	jam UPPERSM_RECONN_HID_CTRL_CONN_WAIT,mem_upper_sm_reconn
+	fetch 1,mem_hid_control_state
+	set1 L2CAP_CHANNEL_STATE_CONN_REQ,pdata
+	store 1,mem_hid_control_state
+	rtn
+process_upper_sm_reconn_hid_ctrl_cfg:    
+	call upper_sm_send_hid_ctrl_cfg
+	jam UPPERSM_RECONN_HID_CTRL_CFG_WAIT,mem_upper_sm_reconn
+	fetch 1,mem_hid_control_state
+	set1 L2CAP_CHANNEL_STATE_SND_CFG_REQ,pdata
+	store 1,mem_hid_control_state
+	rtn
+process_upper_sm_reconn_hid_int_conn:
+	call upper_sm_send_hid_int_conn
+	jam UPPERSM_RECONN_HID_INT_CONN_WAIT,mem_upper_sm_reconn
+	fetch 1,mem_hid_interrupt_state
+	set1 L2CAP_CHANNEL_STATE_CONN_REQ,pdata
+	store 1,mem_hid_interrupt_state
+	rtn
+process_upper_sm_reconn_hid_int_cfg:    
+	call upper_sm_send_hid_int_cfg
+	jam UPPERSM_RECONN_HID_INT_CFG_WAIT,mem_upper_sm_reconn
+	fetch 1,mem_hid_interrupt_state
+	set1 L2CAP_CHANNEL_STATE_SND_CFG_REQ,pdata
+	store 1,mem_hid_interrupt_state
+	rtn
+process_upper_sm_reconn_rfcomm_conn:
+	call upper_sm_send_rfcomm_conn
+	jam UPPERSM_RECONN_RFCOMM_CONN_WAIT,mem_upper_sm_reconn
+	fetch 1,mem_rfcomm_state
+	set1 L2CAP_CHANNEL_STATE_CONN_REQ,pdata
+	store 1,mem_rfcomm_state
+	rtn
+process_upper_sm_reconn_rfcomm_cfg: 
+	call upper_sm_send_rfcomm_cfg
+	jam UPPERSM_RECONN_RFCOMM_CFG_WAIT,mem_upper_sm_reconn
+	fetch 1,mem_rfcomm_state
+	set1 L2CAP_CHANNEL_STATE_SND_CFG_REQ,pdata
+	store 1,mem_rfcomm_state
+	rtn
+process_upper_sm_reconn_rfcomm_sabm:
+	call upper_sm_send_rfcomm_sabm
+	jam UPPERSM_RECONN_RFCOMM_SABM_WAIT,mem_upper_sm_reconn
+	fetch 1,mem_rfcomm_state
+	set1 L2CAP_CHANNEL_RFCOMM_ONLY_SABM,pdata
+	store 1,mem_rfcomm_state
+	rtn
+process_upper_sm_reconn_spp_cmd_pn: 
+	call upper_sm_send_spp_cmd_pn
+	fetch 1,mem_spp_state
+	set1 RFCOMM_CHANNEL_STATE_PN_CMD
+	store 1,mem_spp_state
+	jam UPPERSM_RECONN_SPP_CMD_PN_WAIT,mem_upper_sm_reconn
+	rtn
+process_upper_sm_reconn_spp_sabm:   
+	call upper_sm_send_spp_sabm
+	fetch 1,mem_spp_state
+	set1 RFCOMM_CHANNEL_STATE_SABM
+	store 1,mem_spp_state
+	jam UPPERSM_RECONN_SPP_SABM_WAIT,mem_upper_sm_reconn
+	fetch 1,mem_remote_spp_channel //address in pdata
+	lshift3 pdata,pdata
+	or_into 3,pdata
+	arg mem_HIUfcs_SPP,temp // mem_HIUfcs_spp_WCredits in regb++
+	storet 2,mem_contw_temp
+	branch rfcomm_save_FCS_uih
+process_upper_sm_reconn_spp_cmd_ms: 
+	call upper_sm_send_spp_cmd_ms
+	fetch 1,mem_spp_state
+	set1 RFCOMM_CHANNEL_STATE_SND_MS_CMD
+	store 1,mem_spp_state
+	jam UPPERSM_RECONN_SPP_CMD_MS_WAIT,mem_upper_sm_reconn
+	rtn
+
+process_upper_sm_reconn_sdp_conn_wait:
+	fetch 1,mem_sdp_state
+	rtnbit0 L2CAP_CHANNEL_STATE_CONN_RES
+	jam UPPERSM_RECONN_SDP_CFG,mem_upper_sm_reconn
+	branch process_upper_sm_reconn
+process_upper_sm_reconn_sdp_cfg_wait:
+	fetch 1,mem_sdp_state
+	rtnne L2CAP_CHANNEL_SETUP_COMPLETE
+	jam UPPERSM_RECONN_SS_SPP ,mem_upper_sm_reconn
+process_upper_sm_reconn_ss_spp_wait:
+	fetch 1,mem_message_to_uppersm
+	rtnne RECIEVE_SS_REASULT_HF
+	jam 0,mem_message_to_uppersm
+	jam UPPERSM_RECONN_SDP_DISCONN,mem_upper_sm_reconn
+	branch process_upper_sm_reconn
+process_upper_sm_reconn_sdp_disconn_wait:
+	fetch 1,mem_sdp_state
+	nrtn blank
+	fetch 1,mem_UI_profile_supported
+	bbit1 support_HID,process_upper_sm_reconn_setup_hid
+	bbit1 support_SPP,process_upper_sm_reconn_setup_rfcomm
+	branch process_upper_sm_reconn_termination
+process_upper_sm_reconn_hid_ctrl_conn_wait:
+	fetch 1,mem_hid_control_state
+	rtnbit0 L2CAP_CHANNEL_STATE_CONN_RES
+	jam UPPERSM_RECONN_HID_CTRL_CFG,mem_upper_sm_reconn
+	branch process_upper_sm_reconn
+process_upper_sm_reconn_hid_ctrl_cfg_wait:
+	fetch 1,mem_hid_control_state
+	rtnne L2CAP_CHANNEL_SETUP_COMPLETE
+	jam UPPERSM_RECONN_HID_INT_CONN,mem_upper_sm_reconn
+	branch process_upper_sm_reconn
+process_upper_sm_reconn_hid_int_conn_wait:  
+	fetch 1,mem_hid_interrupt_state
+	rtnbit0 L2CAP_CHANNEL_STATE_CONN_RES
+	jam UPPERSM_RECONN_HID_INT_CFG,mem_upper_sm_reconn
+	branch process_upper_sm_reconn
+process_upper_sm_reconn_hid_int_cfg_wait:  
+	fetch 1,mem_hid_interrupt_state
+	rtnne L2CAP_CHANNEL_SETUP_COMPLETE
+	fetch 1,mem_UI_profile_supported
+	bbit1 support_SPP,process_upper_sm_reconn_setup_rfcomm
+	branch process_upper_sm_reconn_termination
+process_upper_sm_reconn_rfcomm_conn_wait: 
+	fetch 1,mem_rfcomm_state
+	rtnbit0 L2CAP_CHANNEL_STATE_CONN_RES
+	jam UPPERSM_RECONN_RFCOMM_CFG,mem_upper_sm_reconn
+	branch process_upper_sm_reconn
+process_upper_sm_reconn_rfcomm_cfg_wait:
+	fetch 1,mem_rfcomm_state
+	rtnne L2CAP_CHANNEL_SETUP_COMPLETE
+	jam UPPERSM_RECONN_RFCOMM_SABM,mem_upper_sm_reconn
+	branch process_upper_sm_reconn
+process_upper_sm_reconn_rfcomm_sabm_wait:  
+	fetch 1,mem_rfcomm_state
+	rtnne L2CAP_CHANNEL_RFCOMM_DLCI0_OPENED
+	fetch 1,mem_UI_profile_supported
+	bbit1 support_SPP,process_upper_sm_reconn_setup_spp
+	branch process_upper_sm_reconn_termination
+process_upper_sm_reconn_spp_cmd_pn_wait:
+	fetch 1,mem_spp_state
+	rtnbit0 RFCOMM_CHANNEL_STATE_PN_RES
+	jam UPPERSM_RECONN_SPP_SABM,mem_upper_sm_reconn
+	branch process_upper_sm_reconn
+process_upper_sm_reconn_spp_sabm_wait:
+	fetch 1,mem_spp_state
+	rtnbit0 RFCOMM_CHANNEL_STATE_UA
+	jam UPPERSM_RECONN_SPP_CMD_MS ,mem_upper_sm_reconn
+	branch process_upper_sm_reconn
+process_upper_sm_reconn_spp_cmd_ms_wait: 
+	fetch 1,mem_spp_state
+	rtnne RFCOMM_CHANNEL_SETUP_COMPLETE
+	branch process_upper_sm_reconn_termination
+
+process_upper_sm_reconn_setup_hid:
+	jam UPPERSM_RECONN_HID_CTRL_CONN,mem_upper_sm_reconn
+	branch process_upper_sm_reconn
+
+process_upper_sm_reconn_setup_rfcomm:
+	jam UPPERSM_RECONN_RFCOMM_CONN,mem_upper_sm_reconn
+	branch process_upper_sm_reconn
+process_upper_sm_reconn_setup_spp:
+	jam UPPERSM_RECONN_SPP_CMD_PN,mem_upper_sm_reconn
+	branch process_upper_sm_reconn
+
+
+
+process_upper_sm_reconn_termination:
+	jam 0,mem_upper_sm_reconn
+	rtn
+upper_sm_send_sdp_conn:
+	set1 mark_ext_patch,mark
+	bpatch patch35_0,mem_patch35
+	call l2cap_malloc_signal_channel
+	setarg PSM_SDP
+	copy pdata,temp
+	setarg L2CAP_SDP_channel
+	copy pdata,timeup
+	branch ML2CAP_send_signal_connect_req
+	
+upper_sm_send_sdp_cfg:
+	set1 mark_ext_patch,mark
+	bpatch patch35_1,mem_patch35
+	call l2cap_malloc_signal_channel
+	fetch 2,mem_SDP_remote_CID
+	copy pdata,temp
+	branch ML2CAP_send_signal_config_req
+	
+upper_sm_send_sdp_disconn:
+	set1 mark_ext_patch,mark
+	bpatch patch35_2,mem_patch35
+	call l2cap_malloc_signal_channel
+	fetch 2,mem_SDP_remote_CID
+	copy pdata,temp
+	arg L2CAP_SDP_channel,timeup
+	call ML2CAP_send_signal_disconn_req
+	fetch 1,mem_sdp_state
+	set0 L2CAP_CHANNEL_STATE_RCV_CFG_RES ,pdata
+	store 1,mem_sdp_state
+	rtn
+//service search
+upper_sm_send_ss_spp:
+	set1 mark_ext_patch,mark
+	bpatch patch35_3,mem_patch35
+	call l2cap_malloc_sdp_channel
+	call sdp_send_spp_request
+	branch MSDP_send_req_done
+
+upper_sm_send_rfcomm_conn:
+	set1 mark_ext_patch,mark
+	bpatch patch35_4,mem_patch35
+	call l2cap_malloc_signal_channel
+	setarg PSM_RFCOMM
+	copy pdata,temp
+	setarg L2CAP_RFCOMM_channel
+	copy pdata,timeup
+	branch ML2CAP_send_signal_connect_req
+
+upper_sm_send_rfcomm_cfg:
+	set1 mark_ext_patch,mark
+	bpatch patch35_5,mem_patch35
+	call l2cap_malloc_signal_channel
+	fetch 2,mem_rfcomm_remote_cid
+	copy pdata,temp
+	branch ML2CAP_send_signal_config_req
+
+upper_sm_send_hid_ctrl_conn:
+	set1 mark_ext_patch,mark
+	bpatch patch35_6,mem_patch35
+	call l2cap_malloc_signal_channel
+	setarg PSM_HID_control
+	copy pdata,temp
+	setarg L2CAP_HID_Control_channel
+	copy pdata,timeup
+	branch ML2CAP_send_signal_connect_req
+
+upper_sm_send_hid_ctrl_cfg:
+	set1 mark_ext_patch,mark
+	bpatch patch35_7,mem_patch35
+	call l2cap_malloc_signal_channel
+	fetch 2,mem_hid_ctrl_remote_cid
+	copy pdata,temp
+	branch ML2CAP_send_signal_config_req
+
+upper_sm_send_hid_int_conn:
+	set1 mark_ext_patch,mark
+	bpatch patch36_0,mem_patch36
+	call l2cap_malloc_signal_channel
+	setarg PSM_HID_interrupt
+	copy pdata,temp
+	setarg L2CAP_HID_interrupt_channel
+	copy pdata,timeup
+	branch ML2CAP_send_signal_connect_req
+	
+upper_sm_send_hid_int_cfg:
+	set1 mark_ext_patch,mark
+	bpatch patch36_1,mem_patch36
+	call l2cap_malloc_signal_channel
+	fetch 2,mem_hid_int_remote_cid
+	copy pdata,temp
+	branch ML2CAP_send_signal_config_req
+
+upper_sm_send_rfcomm_sabm:
+	set1 mark_ext_patch,mark
+	bpatch patch36_2,mem_patch36
+	call l2cap_malloc_rfcomm_channel
+	//force 3,temp //address
+	jam 3,mem_current_adss
+	jam 0x1c,mem_current_fcs
+	call rfcomm_send_sabm
+	jam 1,mem_rfcomm_initiator
+	rtn
+
+upper_sm_send_spp_cmd_pn:
+	set1 mark_ext_patch,mark
+	bpatch patch36_3,mem_patch36
+	call l2cap_malloc_rfcomm_channel
+	fetcht 1,mem_remote_spp_channel
+	call channel_to_dlci
+	storet 1,mem_pn_dlci
+	branch rfcomm_send_param_neg_cmd
+
+upper_sm_send_spp_sabm:
+	set1 mark_ext_patch,mark
+	bpatch patch36_4,mem_patch36
+	call l2cap_malloc_rfcomm_channel
+	fetcht 1,mem_pn_dlci
+	call dlci_to_address_cmd
+	call rfcomm_calculate_FCS_sabm //sabm fcs use once only,not need to save
+	store 1,mem_current_fcs
+	fetcht 1,mem_pn_dlci
+	call dlci_to_address_cmd
+	storet 1,mem_current_adss
+	branch rfcomm_send_sabm
+
+upper_sm_send_spp_cmd_ms:
+	set1 mark_ext_patch,mark
+	bpatch patch36_5,mem_patch36
+	call l2cap_malloc_rfcomm_channel
+	fetcht 1,mem_pn_dlci
+	call dlci_to_address_cmd //address in temp
+	branch rfcomm_send_modem_status_cmd
+
+
+
+/**********************************************************************/
+/* Subroutine: sdp_process                                         */
+/* Process Service Discovery Request                                  */
+/* Called from L2CAP, check PDUID, branch to different req processings*/
+/*                                                                    */  
+/* Input:       mem_L2CAP_Rx_payload                                  */
+/* Output:      mem_SDP_Tx_payload, mem_SDP_Tx_pkt_length	      */
+/*                                                                    */
+/**********************************************************************/     
+sdp_process:
+	set1 mark_ext_patch,mark
+	bpatch patch3c_7,mem_patch3c
+	fetch 2,mem_l2cap_payload_ptr
+	iforce contr
+	ifetch 1,contr
+	copy pdata,regb				/* PDUID */
+	store 1,mem_sdp_pduid
+	ifetch 2,contr
+	store 2,mem_sdp_transactionid			/* save transaction id */
+	ifetch 1,contr				/* higher byte of parameter length */
+	lshift8 pdata,timeup				
+	ifetch 1,contr				/* lower byte of parameter length */
+	iadd timeup,timeup				/* parameter length stored in "timeup" */
+	set1 mark_ext_patch,mark
+	bpatch patch3d_0,mem_patch3d
+	deposit regb						/* PDUID  */
+	beq SDP_SERVICE_SEARCH_REQUEST,servicesearch_req			
+	beq SDP_SERVICE_ATTRIBUTE_REQUEST,serviceattribute_req
+	beq SDP_SERVICE_SEARCH_ATTRIBUTE_REQUEST,servicesearchattribute_req
+	beq SDP_SERVICE_SEARCH_ATTRIBUTE_RESPONSE,servicesearchattribute_res
+	branch sdp_insufficient_resource
+
+/**********************************************************************/
+/* servicesearch_req			                              */
+/* Processing Service Search Request                                  */
+/* Call: ask_serviceclassid, empty_response                     */
+/*                                                                    */  
+/* Input:       mem_L2CAP_Rx_payload pointer in contr                 */
+/* Output:      mem_SDP_Tx_payload, mem_SDP_Tx_pkt_length	      */
+/*                                                                    */
+/**********************************************************************/     
+servicesearch_req:
+	call ask_serviceclassid
+	compare 1,temp,0xff
+	branch empth_sa_rsp,true
+	compare 0xff,temp,0xff
+	branch sdp_invalid_reqest_syntax,true
+
+	ifetch 2,contr				/* max aservice record count */
+	store 2,mem_sdp_record_maxcnt
+	increase -2,timeup
+
+	increase -1,timeup				/* continuation state 1 byte (0) */
+	nbranch sdp_invalid_pdu_size,zero		/* invalid pdu size */
+	arg mem_uuid_search_pat,timeup
+	ifetch 2,timeup
+	rtn blank
+	increase 2,timeup
+	call search_uuid
+	call l2cap_get_sdp_tx_payload			/* put the pointer to Tx buffer  */
+	force 3,pdata						/* PDUID 3, Service Search Response */
+	istore 1,contw
+	fetch 2,mem_sdp_transactionid			/* write transaction id */
+	istore 2,contw
+	lshift2 queue,pdata
+	add pdata,5,pdata
+	add pdata,5,regc
+	byteswap pdata,pdata
+	istore 2,contw							/* write parLength */
+	deposit queue
+	byteswap pdata,pdata
+	istore 2,contw							/* write TotSrvRecCount */
+	istore 2,contw							/* write CurSrvRecCount */
+	arg mem_handle_list,contr
+	copy queue,loopcnt
+	branch servicesearch_req_blank,zero
+servicesearch_req_loop:	
+	ifetch 4,contr
+	istore 4,contw
+	loop servicesearch_req_loop
+servicesearch_req_blank:	
+	force 0,pdata
+	istore 1,contw							/* continuation state */
+	deposit regc
+	store 1,mem_sdp_tx_pkt_length
+	branch assert,blank
+	rtn
+
+/**********************************************************************/
+/* serviceattribute_req			                              */
+/* Processing Service Attribute Request                               */
+/* Call: ask_attributeid, empty_response (if 3 stored attr.     */
+/* not asked) or answer_attributelist                              */  
+/* Input:       mem_L2CAP_Rx_payload pointer in contr                 */
+/* Output:      mem_SDP_Tx_payload, mem_SDP_Tx_pkt_length	      */
+/*                                                                    */
+/**********************************************************************/     
+serviceattribute_req:
+	ifetch 4,contr				/* service record handle */
+	store 4,mem_sdp_record_handle	 
+	increase -4,timeup
+	iforce temp
+	ifetch 2,contr				/* max attribute byte count */
+	byteswap pdata,pdata
+	increase -18,pdata	
+	store 2,mem_sdp_attribute_maxbyte
+	increase -2,timeup
+	call dataelementtype6		/* result: data size stored in rega */
+	branch sdp_invalid_reqest_syntax,zero
+	compare 5,rega,0xff
+	//branch serviceattribute_req_all,true
+	branch serviceattribute_judge_WholeRangle,true
+serviceattribute_isnot_wholerangle:
+	arg mem_attrib_list,contw
+	force 0,queue
+	branch serviceattribute_req_loop
+serviceattribute_judge_wholerangle:
+	ifetch 1,contr
+	bne 0xa,sdp_invalid_reqest_syntax
+	ifetch 2,contr
+	nbranch serviceattribute_judge_WholeRangle_false1,blank
+	ifetch 1,contr
+	bne 0xff,serviceattribute_judge_WholeRangle_false2
+	ifetch 1,contr
+	bne 0xff,serviceattribute_judge_WholeRangle_false3		//also exist potential bug because mem_attrib_list length is only 7f
+	increase -5,contr
+	branch serviceattribute_req_all
+serviceattribute_judge_wholerangle_false3:
+	increase -5,contr
+	branch serviceattribute_isnot_wholerangle
+serviceattribute_judge_wholerangle_false2:
+	increase -4,contr
+	branch serviceattribute_isnot_wholerangle
+serviceattribute_judge_wholerangle_false1:
+	increase -3,contr
+	branch serviceattribute_isnot_wholerangle
+serviceattribute_req_loop:	
+	ifetch 1,contr
+	beq 0x09, serviceattribute_req_one_id
+	beq 0x0a, serviceattribute_req_range_id
+serviceattribute_req_range_id:
+	ifetch 2, contr
+	istore 2, contw
+	increase 1,queue
+	byteswap pdata,regb
+	ifetch 2, contr
+	byteswap pdata,pdata
+serviceattribute_req_range_id_increase:	
+	increase 1, regb
+	isub regb, null
+	nbranch serviceattribute_req_range_id_finish,positive
+	copy pdata, regc
+	byteswap regb,pdata
+	istore 2, contw
+	increase 1,queue
+	copy regc, pdata
+	branch serviceattribute_req_range_id_increase
+serviceattribute_req_range_id_finish:
+	increase -5,timeup
+	increase -5,rega
+	branch serviceattribute_req_check_next_id
+serviceattribute_req_one_id:
+	ifetch 2,contr
+	istore 2,contw //save the attribute id in mem_attrib_list
+	increase 1,queue
+	increase -3,timeup
+	increase -3,rega
+serviceattribute_req_check_next_id:	
+	nbranch sdp_invalid_reqest_syntax,positive
+	nbranch serviceattribute_req_loop,zero
+	increase -1,timeup
+	nbranch sdp_invalid_reqest_syntax,zero
+	
+	call l2cap_get_sdp_tx_payload
+	increase 10,contw//arg mem_SDP_Tx_payload+10,contw
+	arg mem_attrib_list,rega
+answer_handle_attributelist_next:
+	copy queue,pdata
+	branch answer_handle_attributelist_end,blank
+	ifetch 2,rega
+	branch answer_handle_attributelist_end,blank
+	iforce regb /* regb is the attribute ID */
+	fetch 4,mem_sdp_record_handle	
+	iforce temp
+	call search_handle_attrib
+	branch answer_handle_attributelist_notfound,blank
+	increase -3,contr
+	ifetch 3,contr
+	istore 3,contw
+	call sdp_data_len_obs
+	branch answer_handle_attributelist_notfound,blank
+	iforce loopcnt	
+	call memcpy
+answer_handle_attributelist_notfound:
+	increase 2,rega
+	increase -1, queue
+	branch answer_handle_attributelist_next
+
+answer_handle_attributelist_end:
+	force 0,pdata
+	istore 1,contw
+	increase -1,contw
+	fetcht 2,mem_sdp_tx_payload_ptr
+	add temp,10,pdata//setarg mem_SDP_Tx_payload+10
+	isub contw,pdata
+	sub pdata,0,rega
+	byteswap rega, pdata
+	add temp,8,regb//store 2,mem_SDP_Tx_payload+8
+	istore 2,regb
+	increase 3,rega
+	byteswap rega, pdata
+	add temp,5,regb//store 2,mem_SDP_Tx_payload+5
+	istore 2,regb
+	increase 3,rega
+	byteswap rega, pdata
+	add temp,3,regb//store 2,mem_SDP_Tx_payload+3// ParLength
+	istore 2,regb	
+	increase 5,rega
+	copy rega,pdata
+	store 2,mem_sdp_tx_pkt_length
+	setarg 0x36
+	add temp,7,regb//jam 0x36, mem_SDP_Tx_payload+7
+	istore 1,regb
+	setarg 5
+	istore 1,temp//jam 5,mem_SDP_Tx_payload	// PDU ID
+	fetch 2,mem_sdp_transactionid
+	add temp,1,regb//store 2,mem_SDP_Tx_payload+1
+	istore 2,regb
+	rtn
+serviceattribute_req_all:	
+	ifetch 1,contr
+	bne 0xa,sdp_invalid_reqest_syntax
+	ifetch 2,contr
+	nbranch sdp_invalid_reqest_syntax,blank
+	ifetch 1,contr
+	bne 0xff,sdp_invalid_reqest_syntax
+	ifetch 1,contr
+	bne 0xff,sdp_invalid_reqest_syntax
+	increase -5,timeup
+	ifetch 1, contr
+	beq 0, continue_zero
+	beq 1, continue_one_byte
+	beq 2, continue_two_byte
+continue_zero:	
+	store 2, mem_sdp_continue_byte
+	increase -1,timeup				/* continuation state byte (0) */
+	branch continue_end
+continue_one_byte:
+	ifetch 1, contr
+	store 2, mem_sdp_continue_byte
+	increase -2,timeup				/* continuation state byte (1) */
+	branch continue_end
+continue_two_byte:
+	ifetch 2, contr
+	byteswap pdata,pdata
+	store 2, mem_sdp_continue_byte	
+	increase -3,timeup				/* continuation state byte (2) */
+continue_end:
+	nbranch sdp_invalid_pdu_size,zero		/* invalid pdu size */
+	call 	search_handle
+	nbranch sdp_invalid_service_record_handle,zero
+	copy contr,rega
+	call l2cap_get_sdp_tx_payload
+	copy rega,contr
+	increase 3,contw//arg mem_SDP_Tx_payload+3,contw
+	copy contr,timeup //sdp start pointer
+	call sdp_get_data
+	copy pdata, rega //sdp total length
+	fetch 2, mem_sdp_continue_byte
+	copy pdata, regb
+	copy rega,pdata
+	isub regb,regb //total_length - continue_byte in regb
+	fetch 2, mem_sdp_attribute_maxbyte
+	isub regb, null
+	nbranch fragment_sdp, positive
+	// the last fragment
+	disable user
+	fetch 2, mem_sdp_continue_byte
+	branch fisrt_fragment,blank
+	iadd timeup, contr //set the read pointer
+	increase 3,regb //include the total length field, 3 bytes
+	copy regb, loopcnt
+	copy loopcnt, pdata
+	increase 3, pdata
+	byteswap pdata,pdata
+	istore 2, contw
+	copy loopcnt, pdata
+	byteswap pdata,pdata
+	istore 2, contw
+	branch answer_attributelist_full_loop
+fisrt_fragment:
+	add rega,6,loopcnt
+	branch parlength_continue_byte, user
+	byteswap loopcnt,pdata
+	branch parlength_continue_byte_end
+parlength_continue_byte:
+	copy loopcnt, pdata
+	increase 2, pdata
+	byteswap pdata,pdata
+parlength_continue_byte_end:
+	istore 2,contw				/* ParLength */
+	increase -3,loopcnt
+	byteswap loopcnt,pdata			
+	istore 2,contw				/* AttrListByteCount */
+	copy timeup,contr
+	branch answer_attributelist_full_loop
+fragment_sdp:
+	enable user
+	fetch 2, mem_sdp_attribute_maxbyte
+	copy pdata, rega
+	copy pdata, loopcnt
+	fetch 2, mem_sdp_continue_byte
+	branch fisrt_fragment,blank
+	iadd timeup, contr
+	copy rega,pdata
+	increase 5,pdata
+	byteswap pdata,pdata	
+	istore 2, contw
+	copy rega,pdata
+	byteswap pdata,pdata
+	istore 2, contw
+answer_attributelist_full_loop:	
+	ifetch 1,contr
+	istore 1,contw
+	loop answer_attributelist_full_loop
+	nbranch last_frag_continue, user
+	force 2,pdata
+	istore 1,contw
+	copy contr, pdata
+	isub timeup, pdata
+	byteswap pdata,pdata
+	istore 2, contw
+	branch sdp_frag_end
+last_frag_continue:
+	force 0,pdata
+	istore 1,contw
+sdp_frag_end:	
+	fetch 2,mem_sdp_tx_payload_ptr//setarg mem_SDP_Tx_payload
+	isub contw,pdata
+	sub pdata,0,pdata
+	store 2,mem_sdp_tx_pkt_length
+	call l2cap_get_sdp_tx_payload//jam 5,mem_SDP_Tx_payload
+	setarg 5
+	istore 1,contw
+	fetch 2,mem_sdp_transactionid
+	istore 2,contw//store 2,mem_SDP_Tx_payload+1
+	rtn			
+/**********************************************************************/
+/* servicesearchattribute_req                          		      */
+/* Processing Service Search Attribute Request                        */
+/* Call: ask_serviceclassid, ask_attributeid, empty_response */
+/*       or answer_attributelist                                   */  
+/* Input:       contr                                                 */
+/* Output:      mem_SDP_Tx_payload, mem_SDP_Tx_pkt_length             */
+/*                                                                    */
+/**********************************************************************/     
+servicesearchattribute_req:
+	//compare 29,timeup,0xff
+	//branch empty_ssa_rsp,true
+	call ask_serviceclassid
+	compare 0xff,temp,0xff
+	branch servicesearchattribute_req_all,true
+	ifetch 2,contr				/* max attribute byte count */
+	store 2,mem_sdp_attribute_maxbyte
+	increase -2,timeup
+	call dataelementtype6
+	arg mem_attrib_list,contw
+	force 0,queue
+servicesearchattribute_req_loop:	
+	ifetch 3,contr //service recorde handle 0x0a0000ffff
+	bne 0x09,servicesearchattribute_req_all
+servicesearchattribute_req_uuid:
+	rshift8 pdata,pdata
+	istore 2,contw //save the attribute id in mem_attrib_list
+	increase 1,queue
+	increase -3,timeup
+	increase -3,rega
+	nbranch sdp_invalid_reqest_syntax,positive
+	nbranch servicesearchattribute_req_loop,zero
+	increase -1,timeup
+	nbranch sdp_invalid_reqest_syntax,zero
+servicesearchattribute_req_search:
+	call l2cap_get_sdp_tx_payload
+	increase 13,contw//arg mem_SDP_Tx_payload+13,contw
+	fetch 2,mem_uuid_search_pat
+	iforce regc
+	arg mem_attrib_list,rega
+answer_attributelist_next:	
+	ifetch 4,rega
+	branch answer_attributelist_end,blank
+	ifetch 2,rega
+	iforce regb						/* regb is the attribute ID */
+	call search_attrib
+	branch answer_attributelist_notfound,blank
+	increase -3,contr
+	ifetch 3,contr
+	istore 3,contw
+	call sdp_data_len_obs
+	iforce loopcnt	
+answer_attributelist_attrib_loop:
+	ifetch 1,contr
+	istore 1,contw
+	loop answer_attributelist_attrib_loop
+answer_attributelist_notfound:
+	increase 2,rega
+	branch answer_attributelist_next
+servicesearchattribute_req_all:
+	//bne 0x0a,sdp_invalid_reqest_syntax
+	//rshift8 pdata,pdata
+	//nbranch sdp_invalid_reqest_syntax,blank
+	ifetch 1,contr
+	//bne 0xff,sdp_invalid_reqest_syntax
+	ifetch 1,contr
+	//bne 0xff,sdp_invalid_reqest_syntax
+	increase -5,timeup
+	increase -5,rega
+	nbranch sdp_invalid_reqest_syntax,positive
+	arg mem_uuid_search_pat,timeup
+	ifetch 2,timeup
+	//rtn blank
+	increase 2,timeup
+	call search_uuid  //handle number in queue
+	deposit queue
+	store 1,mem_handle_humber
+	branch empty_ssa_rsp,blank
+	arg 0,queue
+	call l2cap_get_sdp_tx_payload
+	increase 10,contw//arg mem_SDP_Tx_payload+10,contw
+	branch servicesearchattribute_req_next_handle
+answer_attributelist_end:
+	force 0,pdata
+	istore 1,contw
+	increase -1,contw
+	fetcht 2,mem_sdp_tx_payload_ptr
+	add temp,13,pdata//setarg mem_SDP_Tx_payload+13
+	isub contw,pdata
+	branch no_attribute_return,zero
+	sub pdata,0,pdata
+	add temp,12,regb//store 1,mem_SDP_Tx_payload+12
+	istore 1,regb
+	increase 3,pdata
+	add temp,9,regb//store 1,mem_SDP_Tx_payload+9
+	istore 1,regb
+	increase 3,pdata
+	byteswap pdata,pdata
+	add temp,5,regb//store 2,mem_SDP_Tx_payload+5
+	istore 2,regb		/* AttrListByteCount */
+	rshift8 pdata,pdata
+	increase 3,pdata
+	byteswap pdata,pdata
+	add temp,3,regb//store 2,mem_SDP_Tx_payload+3
+	istore 2,regb		/* ParLength */
+	rshift8 pdata,pdata
+	increase 5,pdata
+	store 1,mem_sdp_tx_pkt_length	/*packet length*/
+	
+	fetch 2,mem_sdp_transactionid
+	add temp,1,regb//mem_SDP_Tx_payload+1
+	istore 2,regb
+	setarg 7
+	istore 1,temp//jam 7,mem_SDP_Tx_payload//PDU ID 
+	//jam 0,mem_SDP_Tx_payload+8		
+	//jam 0x36,mem_SDP_Tx_payload+7
+	//jam 0,mem_SDP_Tx_payload+11		
+	//jam 0x36,mem_SDP_Tx_payload+10
+	setarg 0x0036
+	add temp,7,regb
+	istore 2,regb
+	add temp,10,regb
+	istore 2,regb
+	rtn
+no_attribute_return:
+	jam 10,mem_sdp_tx_pkt_length
+	call l2cap_get_sdp_tx_payload
+	//jam 7,mem_SDP_Tx_payload	//PDU ID
+	setarg 7
+	istore 1,contw 
+	fetch 2,mem_sdp_transactionid
+	istore 2,contw
+	//store 2,mem_SDP_Tx_payload+1
+	//jam 0,mem_SDP_Tx_payload+3
+	//jam 5,mem_SDP_Tx_payload+4	 //ParLength =5
+	setarg 0x0500
+	istore 2,contw
+	//jam 0,mem_SDP_Tx_payload+5
+	//jam 2,mem_SDP_Tx_payload+6	// AttrListByteCount =2
+	setarg 0x0200
+	istore 2,contw
+	//jam 0x35,mem_SDP_Tx_payload+7
+	//jam 0,mem_SDP_Tx_payload+8
+	//jam 0,mem_SDP_Tx_payload+9
+	setarg 0x000035
+	istore 3,contw
+	rtn
+	
+servicesearchattribute_req_attributelist_loop:	
+	ifetch 1,contr
+	istore 1,contw
+	increase 1, regb //mem_sdp_continue_byte
+	increase -1, rega  //mem_sdp_attribute_maxbyte
+	branch servicesearchattribute_req_check_next_ctn,zero
+	loop servicesearchattribute_req_attributelist_loop
+servicesearchattribute_req_check_next_ctn:	
+	copy contw, timeup
+	copy regb, pdata
+	store 2, mem_sdp_continue_byte
+	copy rega, pdata
+	store 2, mem_sdp_attribute_maxbyte
+	branch answer_attributelist_with_ctn_bytes,blank
+	branch answer_attributelist_with_ctn_end, user
+	copy timeup,contw
+servicesearchattribute_req_check_handle:	
+	increase 1,queue
+	fetch 1, mem_handle_humber
+	isub queue,null
+	nbranch servicesearchattribute_req_next_handle,zero
+	branch answer_attributelist_end_long
+servicesearchattribute_req_next_handle:	
+	arg mem_handle_list,contr
+	lshift2 queue,pdata
+	iadd contr,contr
+	ifetch 4, contr //handle in pdata
+	iforce temp
+	call 	search_handle
+	copy contr,timeup
+	call sdp_get_data
+	add pdata,3,loopcnt
+	fetch 2, mem_sdp_attribute_maxbyte
+	copy pdata, rega
+	fetch 2, mem_sdp_continue_byte
+	copy pdata, regb
+	copy timeup,contr
+	branch servicesearchattribute_req_attributelist_loop
+answer_attributelist_with_ctn_bytes:
+	arg 0, queue
+	arg 0, regb
+answer_attributelist_calc_attribute_length:	
+	arg mem_handle_list,contr
+	lshift2 queue,pdata
+	iadd contr,contr
+	ifetch 4, contr //handle in pdata
+	iforce temp
+	call 	search_handle
+	call sdp_get_data
+	add pdata,3,pdata
+	iadd regb, regb
+	increase 1,queue
+	fetch 1, mem_handle_humber
+	isub queue,null
+	nbranch answer_attributelist_calc_attribute_length,zero
+	
+	copy timeup,contw
+	force 2,pdata
+	istore 1,contw
+	fetch 2, mem_sdp_continue_byte
+	byteswap pdata,pdata
+	istore 2, contw
+	increase -3,contw
+	fetcht 2,mem_sdp_tx_payload_ptr
+	add temp,10,pdata //setarg mem_SDP_Tx_payload+10
+	isub contw,pdata
+	sub pdata,0,pdata
+	iforce rega
+
+	deposit regb //no longer use regb??
+	add temp,9,regb//store 1,mem_SDP_Tx_payload+9
+	istore 1,regb
+	rshift8 pdata,pdata
+	add temp,8,regb
+	istore 1,regb//store 1,mem_SDP_Tx_payload+8
+	increase 3,rega
+	deposit rega
+	add temp,6,regb
+	istore 1,regb//store 1,mem_SDP_Tx_payload+6	/* AttrListByteCount */
+	rshift8 pdata,pdata
+	add temp,5,regb
+	istore 1,regb//store 1,mem_SDP_Tx_payload+5
+	increase 5,rega
+	deposit rega
+	add temp,4,regb
+	istore 1,regb//store 1,mem_SDP_Tx_payload+4	/* ParLength */
+	rshift8 pdata,pdata
+	add temp,3,regb
+	istore 1,regb//store 1,mem_SDP_Tx_payload+3
+	increase 5,rega
+	deposit rega
+	store 2,mem_sdp_tx_pkt_length	
+	setarg 7
+	istore 1,temp//jam 7,mem_SDP_Tx_payload	 //PDU ID
+	setarg 0x36
+	add temp,7,regb//jam 0x36,mem_SDP_Tx_payload+7
+	istore 1,regb
+	add temp,1,regb//store 2,mem_SDP_Tx_payload+1
+	fetch 2,mem_sdp_transactionid
+	istore 2,regb
+	rtn
+answer_attributelist_with_ctn_end:
+	copy timeup,contw
+	force 0,pdata
+	istore 1,contw
+	increase -1, contw
+	fetcht 2,mem_sdp_tx_payload_ptr
+	add temp,7,pdata//setarg mem_SDP_Tx_payload+7
+	isub contw,pdata
+	sub pdata,0,pdata
+	iforce rega
+
+	deposit rega
+	add temp,6,regb//store 1,mem_SDP_Tx_payload+6
+	istore 1,regb
+	rshift8 pdata,pdata
+	add temp,5,regb//store 1,mem_SDP_Tx_payload+5  /* AttrListByteCount */
+	istore 1,regb
+	increase 3,rega
+	deposit rega
+	add temp,4,regb//store 1,mem_SDP_Tx_payload+4	/* ParLength */
+	istore 1,regb
+	rshift8 pdata,pdata
+	add temp,3,regb//store 1,mem_SDP_Tx_payload+3
+	istore 1,regb
+	increase 5,rega
+	deposit rega
+	store 2,mem_sdp_tx_pkt_length	
+
+	setarg 7
+	istore 1,temp//jam 7,mem_SDP_Tx_payload	/* PDU ID */
+	
+	fetch 2,mem_sdp_transactionid
+	add temp,1,regb//store 2,mem_SDP_Tx_payload+1
+	istore 2,regb
+	rtn
+	
+answer_attributelist_end_long:
+	force 0,pdata
+	istore 1,contw
+	increase -1,contw
+	fetcht 2,mem_sdp_tx_payload_ptr
+	add temp,10,pdata//setarg mem_SDP_Tx_payload+10
+	isub contw,pdata
+	sub pdata,0,pdata
+	iforce rega
+
+	deposit rega
+	add temp,9,regb//store 1,mem_SDP_Tx_payload+9
+	istore 1,regb
+	rshift8 pdata,pdata
+	add temp,8,regb//store 1,mem_SDP_Tx_payload+8
+	istore 1,regb
+	
+	increase 3,rega
+	deposit rega
+	add temp,6,regb//store 1,mem_SDP_Tx_payload+6	/* AttrListByteCount */
+	istore 1,regb
+	rshift8 pdata,pdata
+	add temp,5,regb//store 1,mem_SDP_Tx_payload+5
+	istore 1,regb
+	increase 3,rega
+	deposit rega
+	add temp,4,regb//store 1,mem_SDP_Tx_payload+4	/* ParLength */
+	istore 1,regb
+	rshift8 pdata,pdata
+	add temp,3,regb//store 1,mem_SDP_Tx_payload+3
+	istore 1,regb
+	increase 5,rega
+	deposit rega
+	store 2,mem_sdp_tx_pkt_length	
+	setarg 0x36
+	add temp,7,regb
+	istore 1,regb//jam 0x36,mem_SDP_Tx_payload+7
+	setarg 7
+	istore 1,temp//jam 7,mem_SDP_Tx_payload	/* PDU ID */
+	fetch 2,mem_sdp_transactionid
+	add temp,1,regb//store 2,mem_SDP_Tx_payload+1
+	istore 2,regb
+	rtn	
+sdp_data_len_obs:
+	copy contr,timeup
+	ifetch 1,contr
+	and pdata,0x07,loopcnt
+	rshift3 pdata,pdata
+	beq 6,sdp_data_len_6_obs
+	beq 1,sdp_data_len_1
+	beq 4,sdp_data_len_6
+	beq 5,sdp_data_len_5
+	branch sdp_data_len_rtn
+sdp_data_len_6_obs:
+	call sdp_get_data_6_obs
+	branch sdp_data_len_rtn
+sdp_get_data_6_obs:
+	deposit loopcnt
+	beq 5,sdp_get_data_6_8bit_obs
+	beq 6,sdp_get_data_6_16bit_obs
+	force 3,loopcnt
+	branch sdp_get_data_1
+sdp_get_data_6_8bit_obs:
+	ifetch 1,contr
+	increase 2,pdata
+	rtn
+sdp_get_data_6_16bit_obs:
+	ifetch 2,contr
+	byteswap pdata,pdata
+	increase 3,pdata
+	rtn
+
+sdp_send_spp_request:
+	call l2cap_get_sdp_tx_payload
+	copy pdata,contw
+	setarg 6//Search Attr Req
+	istore 1,contw
+	setarg sdp_tid_spp					
+	istore 2,contw
+	setarg 0x0f00 //length15
+	istore 2,contw
+	setarg 0x1a0535
+	istore 3,contw
+	setarg 0x0111
+	lshift16 pdata,pdata //UUID
+	istore 4,contw
+	setarg 0x2600 //max return len
+	istore 2,contw
+	setarg 0x0335
+	istore 2,contw
+	setarg 0x0009
+	istore 2,contw
+	setarg 0x0004
+	istore 2,contw
+	jam 0x14,mem_sdp_tx_pkt_length
+	rtn
+
+/**********************************************************************/
+/* servicesearchattribute_res			                      */
+/* Processing Service Search Attribute Response                       */
+/* Call: dataelementtype6, attribute_reading                    */
+/* Input:       contr                                                 */
+/* Output:      mem_sdp_record_handle,mem_sdp_search_failed           */
+/*                                                                    */
+/**********************************************************************/     
+servicesearchattribute_res:
+	copy contr,temp				/* save reading pointer */
+	fetch 2,mem_sdp_transactionid			/* check if this is the response for   */
+	beq sdp_tid_spp,servicesearchattribute_res_spp
+	//no profiles now, hs,hf,pbap,avtarg were cut off
+	//maybe add something about spp
+	branch srchfail
+
+servicesearchattribute_res_spp:
+	copy temp,contr
+	increase -3,timeup
+	copy timeup,pdata
+	beq 2,srchfail// empty response
+	call find_rfcomm_channel_number
+	rtn user
+	store 1,mem_remote_spp_channel
+	jam RECIEVE_SS_REASULT_HF,mem_message_to_uppersm
+	rtn
+
+srchfail:
+	rtn
+	/* find_rfcomm_channel_number	*/
+	/* input att_list_lenth in pdata   	*/
+	/* input att_list_ptr in contr		*/
+	/* output channel_number in pdata	*/
+	/* output failed while user was set	*/
+find_rfcomm_channel_number:
+	enable user
+	copy pdata,loopcnt
+	arg 0x0400,temp //att_descriptor_list
+find_rfcomm_channel_number_loop://find att_descriptor_list
+	ifetch 2,contr
+	isub temp,null
+	branch find_rfcomm_channel_number_find_adl,zero
+	increase -1,contr
+	loop find_rfcomm_channel_number_loop
+	rtn
+find_rfcomm_channel_number_find_adl:
+	arg 0x0300,temp
+find_rfcomm_channel_number_loop2:
+	ifetch 2,contr
+	isub temp,null
+	branch find_rfcomm_channel_number_find_rfcomm,zero
+	increase -1,contr
+	loop find_rfcomm_channel_number_loop2
+	rtn
+find_rfcomm_channel_number_find_rfcomm:
+	ifetch 1,contr
+	ifetch 1,contr
+	disable user
+	rtn
+/**********************************************************************/
+/* Subroutine: attribute_reading                                   */
+/* Reading each Data Element Sequence inside one Attribute List       */
+/* Called from servicesearchattribute_res                             */
+/* Call dataelementtype6                                           */  
+/* Input:       contr,timeup                                          */
+/* Output:      timeup,mem_sdp_LACAP_found,mem_sdp_RFCOMM_found      */
+/*                                                                    */
+/*                                                                    */
+/**********************************************************************/     
+attribute_reading:
+	call dataelementtype6		/* decode data element sequence */
+	branch rdnortn,zero  
+	force 0,regb					/* regb to be used as 128 bit uuid flag */
+	ifetch 1,contr
+	increase -1,rega  
+	increase -1,timeup  
+	compare 0x18,pdata,0xf8			/* 5 MSB: b00011, uuid */
+	nbranch rduuid3,true
+	compare 0x04,pdata,0x07			/* 3 LSB: b100, 128 bits uuid */
+	nbranch is032,true
+	force 1,regb					/* mark it as 128 bit uuid */
+skp2bytes:
+	increase 2,contr				/* skip 2 bytes */
+	increase -2,rega	
+	increase -2,timeup
+	branch rduuid1				/* add 126 bits  */
+is032:
+	compare 0x02,pdata,0x07			/* 3 LSB: b010 32 bits uuid */
+	nbranch is016,true
+	branch skp2bytes			
+is016:
+	compare 0x01,pdata,0x07			/* 3 LSB: b001 16 bit uuid */
+	nbranch rduuid3,true
+rduuid1:
+	ifetch 1,contr				/* get higher order byte */
+	increase -1,rega
+	increase -1,timeup
+	bne 0x01, rduuid2
+	ifetch 1,contr				/* get lower order byte */
+	increase -1,rega
+	increase -1,timeup
+	bne 0x00, rduuid3
+	jam 0xff,mem_sdp_LACAP_found			/* set L2CAP found parameter */
+	branch rduuid3
+rduuid2:
+	bne 0x00, rduuid3
+	ifetch 1,contr				/* get lower order byte */
+	increase -1,rega
+	increase -1,timeup
+	bne 0x03, rduuid3
+	copy regb,null
+	branch not16by,zero				/* 128 bit uuid, skip 12 bytes */
+	increase -12,contr	
+	increase -12,timeup
+not16by:		
+	force 0xff,pdata
+	store 1,mem_sdp_RFCOMM_found			/* set RFCOMM found parameter */
+	ifetch 1,contr
+	increase -1,rega
+	increase -1,timeup
+	compare 0x08,pdata,0xf8		//b00001	
+	nbranch rduuid3,true
+	compare 0x00,pdata,0x07
+	branch unsign1,true
+	compare 0x01,pdata,0x07
+	branch unsign2,true
+	compare 0x02,pdata,0x07
+	branch unsign4,true
+	compare 0x03,pdata,0x07
+	branch unsign8,true
+	compare 0x04,pdata,0x07
+	nbranch rduuid3,true
+	increase 8,contr
+	increase -8,rega
+	increase -8,timeup
+unsign8:  
+	increase 4,contr
+	increase -4,rega
+	increase -4,timeup
+unsign4:  
+	increase 2,contr
+	increase -2,rega
+	increase -2,timeup
+unsign2:  
+	increase 1,contr
+	increase -1,rega
+	increase -1,timeup
+unsign1:  
+	ifetch 1,contr
+	increase -1,rega
+	increase -1,timeup
+rduuid3:
+	increase -1,timeup
+	increase -1,rega
+	branch rduuid3,positive			/* if rega=0, done */
+	increase 1,timeup				/* return byte count */
+	force 0x01,pdata
+	rtn,
+rdnortn:
+	force 0x00,pdata
+	rtn,						    
+
+sdp_invalid_service_record_handle:		
+	setarg 0x0200
+	store 2,mem_sdp_error_code
+	branch sdp_error_rsp
+sdp_invalid_pdu_size:				
+	setarg 0x0400
+	store 2,mem_sdp_error_code
+	branch sdp_error_rsp
+sdp_insufficient_resource:			
+	setarg 0x0600
+	store 2,mem_sdp_error_code
+	branch sdp_error_rsp
+sdp_invalid_reqest_syntax:			
+	setarg 0x0300
+	store 2,mem_sdp_error_code
+sdp_error_rsp:	
+	call l2cap_get_sdp_tx_payload
+	istore 1,contw
+	fetch 2,mem_sdp_transactionid			
+	istore 2,contw
+	setarg 0x0200					
+	istore 2,contw
+	fetch 2,mem_sdp_error_code			
+	istore 2,contw
+	jam  7,mem_sdp_tx_pkt_length
+	rtn
+
+ask_serviceclassid:  
+	force 0,temp					/* use "temp" to mark syntax error or to mark 128 bit uuid */
+	arg mem_uuid_search_pat,contw
+	call dataelementtype6
+	branch asksrv_error,zero
+classidloop:
+	ifetch 1,contr
+	increase -1,rega
+	increase -1,timeup
+	compare 0x18,pdata,0xf8			/* 5 MSB: b00011: uuid */
+	nbranch asksrv_error,true
+	compare 0x04,pdata,0x07			/* 3 LSB: b100 128 bits uuid */
+	nbranch cmp032,true
+	force 1,temp					/* mark it as 128 bit uuid */
+skip2bytes:
+	ifetch 1,contr
+	increase -1,rega	
+	increase -1,timeup
+	bne 0x00, frstbwrong
+	ifetch 1,contr
+	increase -1,rega	
+	increase -1,timeup
+	beq 0x00, cmpuuid
+	branch scndbwrong
+frstbwrong:  
+	increase 1,contr
+	increase -1,rega	
+	increase -1,timeup
+scndbwrong:  
+	increase 2,contr				/* skip 2 bytes, first 2 bytes already wrong */
+	increase -2,rega	
+	increase -2,timeup
+	compare 0x00,temp,0xff                        /* 128 bits or 32 bits ? */
+	branch loopornot,true
+	increase 12,contr				/* skip 12 bytes, first 2 bytes already wrong */
+	increase -12,rega	
+	increase -12,timeup
+	branch loopornot
+cmp032:
+	compare 0x02,pdata,0x07			/* 3 LSB: b010 32 bits uuid */
+	nbranch cmp016,true
+	branch skip2bytes			
+cmp016:
+	compare 0x01,pdata,0x07			/* 3 LSB: b001 16 bit uuid */
+	nbranch asksrv_error,true
+cmpuuid:
+	ifetch 2,contr				/* higher order byte */
+	increase -2,rega
+	increase -2,timeup
+	istore 2,contw
+uuidsize:
+	compare 0x00,temp,0xff			/* is this 128 bits uuid */
+	branch loopornot,true
+	copy contr,temp
+	ifetch 1,contr
+	bne 0x00, wrong12b
+	ifetch 1,contr
+	bne 0x00, wrong12b
+	ifetch 1,contr
+	bne 0x10, wrong12b
+	ifetch 1,contr
+	bne 0x00, wrong12b
+	ifetch 1,contr
+	bne 0x80, wrong12b
+	ifetch 1,contr
+	bne 0x00, wrong12b
+	ifetch 1,contr
+	bne 0x00, wrong12b
+	ifetch 1,contr
+	bne 0x80, wrong12b
+	ifetch 1,contr
+	bne 0x5f, wrong12b
+	ifetch 1,contr
+	bne 0x9b, wrong12b
+	ifetch 1,contr
+	bne 0x34, wrong12b
+	ifetch 1,contr
+	beq 0xfb, chck12dn
+wrong12b:
+	copy temp,contr  
+wrong12b1:
+	increase 12,contr				/* skip 12 bytes */
+	force 0x00,queue
+	force 0x00,temp
+	branch chck12dn
+noclass:
+	ifetch 1,contr
+	increase -1,rega
+	increase -1,timeup
+	branch uuidsize
+chck12dn:
+	increase -12,timeup
+	increase -12,rega
+loopornot:
+	compare 0x00,rega,0xff
+	nbranch classidloop,true
+	force 0,pdata
+	istore 2,contw			/* end list with null */
+	rtn,
+asksrv_error:
+	arg 0xff,temp
+	rtn
+
+/**********************************************************************/
+/* Subroutine: dataelementtype6                                    */
+/* Parse Data Element Sequence, obtain the data size                  */
+/* Input:  SDP Rx Buf Pointer in contr, parameter count in timeup     */
+/* Output: data size in rega, SDP Rx Buf Pointer in contr             */
+/*         and  parameter count in timeup, return with zero flag set: */
+/*         syntax error                                               */
+/**********************************************************************/     
+dataelementtype6:
+	ifetch 1,contr
+	increase -1,timeup
+	compare 0x30,pdata,0xf8			/* 5 MSB: b00110: type 6 */
+	nbranch dsize_error,true
+	compare 0x07,pdata,0x07			/* 3 LSB: b111: 32 bits */
+	branch dsize32,true
+	compare 0x06,pdata,0x07			/* 3 LSB: b110: 16 bits */
+	branch dsize16,true
+	compare 0x05,pdata,0x07			/* 3 LSB: b101: 8 bits */
+	nbranch dsize_error,true
+	ifetch 1,contr
+	copy pdata,rega				/* data in reg A */
+	increase -1,timeup
+	branch dsize
+dsize32:
+	increase 2,contr				/* just move pointer +2, zero in 2 high byte */
+	increase -2,timeup
+dsize16:
+	ifetch 2,contr
+	byteswap pdata,rega
+	increase -2,timeup
+set_nblank:
+dsize:
+	force 0x01,pdata
+	rtn
+set_blank:
+dsize_error:
+	force 0x00,pdata
+	rtn
+
+/**********************************************************************/
+/* Subroutine: empty_response                                      */
+/* Send empty response                                                */
+/*                                                                    */
+/* Input:       mem_sdp_pduid, mem_sdp_transactionid                  */
+/* Output:      mem_SDP_Tx_payload, mem_SDP_Tx_pkt_length             */
+/*                                                                    */
+/**********************************************************************/     
+empth_sa_rsp:
+	setarg 0x03
+	store 1, mem_sdp_pduid
+	branch empty_response
+empty_ssa_rsp:
+	setarg 0x07
+	store 1, mem_sdp_pduid
+empty_response:
+	call l2cap_get_sdp_tx_payload			/* empty attribute list */
+	fetch 1,mem_sdp_pduid				/* PDUID */
+	istore 1,contw
+	copy pdata,regb
+	fetch 2,mem_sdp_transactionid			/* copy back transaction id */
+	istore 2,contw
+	
+	setarg 0x0500
+	istore 2, contw
+	compare 0x05,regb,0xff			/* pduid 3 */
+	branch fullsearch,true
+	compare 0x07,regb,0xff			/* pduid 3 */
+	branch fullsearch,true
+	setarg 0x000000
+	istore 3,contw
+	istore 2,contw
+	branch outempty
+
+fullsearch:					/* pduid must be 5 or 7 */
+	//force 0x00,pdata
+	//istore 1,contw
+	//force 0x02,pdata
+	//istore 1,contw
+	//force 0x35,pdata
+	//istore 1,contw
+	setarg 0x350200
+	istore 3,contw
+	//force 0x00,pdata
+	//istore 1,contw
+	//force 0x00,pdata
+	//istore 1,contw
+	setarg 0
+	istore 2, contw
+outempty:
+	jam 10,mem_sdp_tx_pkt_length
+	rtn
+
+sdp_data_len:
+	copy contr,timeup
+	ifetch 1,contr
+	and pdata,0x7,loopcnt
+	rshift3 pdata,pdata
+	beq 6,sdp_data_len_6
+	beq 1,sdp_data_len_1
+	beq 4,sdp_data_len_6
+	beq 5,sdp_data_len_5
+sdp_data_len_rtn:	
+	copy timeup,contr
+	rtn
+sdp_data_len_1:
+	call sdp_data_size
+	increase 1,pdata
+	branch sdp_data_len_rtn
+sdp_data_len_5:
+	force 2,pdata
+	branch sdp_data_len_rtn
+sdp_data_len_6:
+	call sdp_get_data_6
+	increase 2,pdata
+	branch sdp_data_len_rtn
+	
+sdp_get_data:
+	ifetch 1,contr
+	and pdata,0x7,loopcnt
+	rshift3 pdata,pdata
+	beq 6,sdp_get_data_6
+	beq 1,sdp_get_data_1
+	beq 5,sdp_get_data_6_8bit
+	rtn
+sdp_get_data_1:
+	call sdp_data_size
+	iforce loopcnt
+	force 0,temp
+sdp_get_data_1_loop:	
+	lshift8 temp,temp
+	ifetch 1,contr
+	ior temp,temp
+	loop sdp_get_data_1_loop
+	rtn
+sdp_get_data_6:
+	deposit loopcnt
+	beq 5,sdp_get_data_6_8bit
+	beq 6,sdp_get_data_6_16bit
+	force 3,loopcnt
+	branch sdp_get_data_1
+sdp_get_data_6_8bit:
+	ifetch 1,contr
+	rtn
+sdp_get_data_6_16bit:
+	ifetch 2,contr
+	byteswap pdata,pdata
+	rtn
+
+	/* get data size according to size index in loopcnt */
+sdp_data_size:
+	force 1,pdata
+	copy loopcnt,null
+	rtn zero
+sdp_data_size_loop:
+	lshift pdata,pdata
+	loop sdp_data_size_loop
+	rtn
+
+
+
+	/* return handles in queue if found */
+search_uuid:
+	iforce regc
+	set1 mark_ext_patch,mark
+	bpatch patch3d_1,mem_patch3d
+	force 0,queue
+	fetch 2, memui_uuid_table
+	iforce contr
+	arg mem_handle_list,contw
+search_uuid_next:
+	disable user
+	ifetch 1,contr
+	rtn blank
+	iforce loopcnt
+search_uuid_loop:	
+	ifetch 2,contr
+	isub regc,null
+	nbranch search_uuid_not_found,zero
+	enable user					/* uuid match */
+search_uuid_not_found:
+	loop search_uuid_loop
+	ifetch 4,contr					/* get handle */
+	nbranch search_uuid_nomatch,user
+	istore 4,contw
+	increase 1,queue
+search_uuid_nomatch:	
+	call sdp_get_data
+	iadd contr,contr			/* next paragraph */
+	branch search_uuid_next
+
+	/* return handle in pdata if found, 0 if not */
+search_handle:
+	fetch 2,memui_uuid_table
+	iforce contr
+search_handle_loop:	
+	ifetch 1,contr
+	rtn blank
+	lshift pdata,pdata
+	iadd contr,contr
+	ifetch 4,contr
+	isub temp,null
+	rtn zero
+	call sdp_get_data
+	iadd contr,contr
+	branch search_handle_loop
+
+/**
+* input regb and regc.regb is the attribute ID and regc is UUID.
+* set contr if find attribute or 0 if not
+*/
+	
+search_attrib:
+	set1 mark_ext_patch,mark
+	bpatch patch3d_2,mem_patch3d
+	fetch 2,memui_uuid_table
+	iforce contr
+search_attrib_next:
+	ifetch 1,contr
+	branch search_attrib_end, blank
+	iforce loopcnt
+search_attrib_loop:	
+	ifetch 2,contr
+	isub regc,null						/* regc is UUID, compare it */
+	branch search_attrib_found_uuid,zero
+	loop search_attrib_loop
+	increase 4,contr
+	call sdp_get_data
+	iadd contr,contr			/* next paragraph */
+	branch search_attrib_next	
+search_attrib_found_uuid:
+	increase -1,loopcnt
+	lshift loopcnt,pdata
+	iadd contr,contr
+	increase 4,contr
+	call sdp_get_data
+	iadd contr,temp					/* attribute list end */
+search_attrib_loop_attribs:	
+	increase 1,contr
+	ifetch 2,contr
+	isub regb,timeup
+	//force 0x1,pdata,zero
+	setflag zero, 0,pdata
+	copy timeup, timeup
+	rtn zero							/* attribute found */
+	call sdp_data_len
+	iadd contr,contr
+	deposit temp
+	isub contr,null
+	branch search_attrib_end, zero /*attribute end, not found the attribute, return contr = 0*/
+	branch search_attrib_loop_attribs	
+search_attrib_end:
+	force 0,contr
+	force 0,pdata
+	rtn
+	
+
+//search the attribute according the record handle
+//record handle in temp, attribute in regb
+//set the contr to zero if not found
+search_handle_attrib:	
+	set1 mark_ext_patch,mark
+	bpatch patch3d_3,mem_patch3d
+	fetch 2,memui_uuid_table
+	iforce contr
+search_handle_attrib_next:
+	ifetch 1,contr
+	branch search_handle_attrib_end, blank
+	lshift pdata,pdata
+	iadd contr, contr
+	ifetch 4,contr
+	isub temp,null						/* regc is UUID, compare it */
+	branch search_handl_attrib_found_handle,zero
+	call sdp_get_data
+	iadd contr,contr			/* next paragraph */
+	branch search_handle_attrib_next	
+search_handl_attrib_found_handle:
+	call sdp_get_data
+	iadd contr,temp					/* attribute list end */
+search_handle_attrib_loop_attribs:	
+	increase 1,contr
+	ifetch 2,contr
+	isub regb,null
+	rtn zero							/* attribute found */
+	call sdp_data_len
+	iadd contr,contr
+	deposit temp
+	isub contr,null
+	branch search_handle_attrib_end, zero /*attribute end, not found the attribute, return contr = 0*/
+	branch search_handle_attrib_loop_attribs
+search_handle_attrib_end:
+	force 0,contr
+	rtn	
+
+	
+generate_kinit:
+	call function_e22
+	arg mem_input_store,contr
+	arg mem_kinit,contw		/* Kinit is ready */
+	branch memcpy16
+
+
+function_e21:	/* rega pointers to bdaddr */
+	disable user
+	call function_expand
+	arg mem_random_number,contr
+	arg mem_x,contw
+	force 15,loopcnt
+	call memcpy			
+	ifetch 1,contr
+	xor_into 6,pdata
+	istore 1,contw
+	setarg mem_y
+	store 2,memp_ar_input
+	setarg mem_x
+	store 2,memp_ar_key
+	set1 mark_ar2,mark
+	branch function_ar
+
+
+	
+function_e22:		/* rega pointers to bdaddr */
+	fetcht 1,mem_pin_length
+	force 16,regb			/* total 16 bytes */
+	add temp,6,regc		/* regc is l' */
+	sub regc,16,null		
+	branch function_e22_pin_init,positive 
+	force 16,regc
+function_e22_pin_init:			/* generate x from pin and bdaddr */
+	arg mem_x,contw
+function_e22_genx_pin:
+	arg mem_pin,contr
+	copy temp,loopcnt
+	disable user
+function_e22_genx_loop:
+	ifetch 1,contr
+	istore 1,contw
+	increase -1,regb
+	branch function_e22_genx_end,zero
+	loop function_e22_genx_loop
+	branch function_e22_genx_pin,user
+	enable user
+	force 6,loopcnt
+	copy rega,contr
+	branch function_e22_genx_loop
+function_e22_genx_end:
+	arg mem_random_number,contr
+	arg mem_y,contw
+	call memcpy16
+	fetch 1,mem_y15
+	ixor regc,pdata
+	store 1,mem_y15	/* inpy[15] = rand_num[15]^l'; */
+	setarg mem_y
+	store 2,memp_ar_input
+	setarg mem_x
+	store 2,memp_ar_key
+	set1 mark_ar2,mark
+	branch function_ar
+
+
+
+
+function_e1:	/* rega pointers to bdaddr */
+	disable user
+	call function_expand
+	branch function_hash
+
+function_e3:
+	arg mem_aco,rega
+	enable user
+	call function_expand
+	call function_hash
+	arg mem_input_store,contr
+	arg mem_kc,contw
+	branch memcpy16
+
+	/* costs 41769 clocks */
+function_hash:
+	setarg mem_random_number
+	store 2,memp_ar_input
+	setarg mem_link_key
+	store 2,memp_ar_key
+	set0 mark_ar2,mark
+	call function_ar
+	arg mem_input_store,rega
+	arg mem_random_number,regb
+	arg mem_x,contw
+	call xor16
+	arg mem_x,rega
+	arg mem_y,regb
+	copy regb,contw
+	enable user
+	call add16
+	call key_offset
+	setarg mem_y
+	store 2,memp_ar_input
+	setarg mem_x
+	store 2,memp_ar_key
+	set1 mark_ar2,mark
+	branch function_ar
+	
+
+	/* totally costs 20700 clocks */
+function_ar:
+	jam 0,mem_ar_hround
+	fetch 2,memp_ar_key
+	iforce contr
+	arg mem_key_store,contw
+	call memcpy16
+	fetch 2,memp_ar_input
+	iforce contr
+	arg mem_input_store,contw
+	call memcpy16
+	
+function_ar_loop:
+	call key_scheduling
+	disable user
+	bmark0 mark_ar2,function_ar_original
+	fetch 1,mem_ar_hround
+	bne 4,function_ar_original
+	fetch 2,memp_ar_input
+	iforce regb
+	call xor_mod32_ar2
+function_ar_original:
+	call xor_mod32
+	call el_boxes
+	fetch 1,mem_ar_hround
+	increase 1,pdata
+	store 1,mem_ar_hround
+
+	call key_scheduling
+	enable user
+	call xor_mod32
+	call pht
+	call permute
+	call pht
+	call permute
+	call pht
+	call permute
+	call pht
+	fetch 1,mem_ar_hround
+	increase 1,pdata
+	store 1,mem_ar_hround
+	bne 16,function_ar_loop
+	call key_scheduling
+	disable user
+	branch xor_mod32
+	
+/* input round number and temp key in mem_key_store, and output the next temp key in mem_key_store */
+/* round key is generated and store in mem_round_key */
+key_scheduling:
+	fetch 1,mem_ar_hround
+	arg mem_key_store,contr
+	branch key_sched_zero,blank
+	iforce regb      			/* regb is half round */
+	force 17,loopcnt
+	copy contr,contw
+key_rotateloop:
+	ifetch 1,contr
+	lshift3 pdata,temp
+	rshift2 pdata,pdata
+	rshift3 pdata,pdata
+	ior temp,pdata
+	istore 1,contw
+	loop key_rotateloop
+	setarg mem_key_store
+	iadd regb,contr
+	force 16,loopcnt    
+	arg mem_round_key,contw
+key_select_octet_loop:
+	ifetch 1,contr
+	istore 1,contw
+	compare mem_key_store_end,contr,0xff
+	nbranch key_select_octet_nwrap,true
+	increase -17,contr
+key_select_octet_nwrap:
+	loop key_select_octet_loop
+	force 0,rega         /* rega is index of octet within row */
+	add regb,-1,regc    /* this is the row index, half_round#1 is 0 */
+	lshift2 regc,regc
+	lshift2 regc,regc
+	call enable_authrom
+	setarg mem_b_box
+	iadd regc,regc       /* regc hold the starting address of the row */
+	arg mem_round_key,contw
+	force 16,loopcnt
+bias_round_key_loop:
+	ifetcht 1,regc
+	ifetch 1,contw
+	iadd temp,pdata
+	istore 1,contw
+	increase 1,regc
+	loop bias_round_key_loop
+	branch disable_authrom
+
+key_sched_zero:    /* round 0, key1 */
+	force 16,loopcnt
+	force 0,temp
+create_byte_16_loop:
+	ifetch 1,contr
+	ixor temp,temp
+	loop create_byte_16_loop
+	deposit temp
+	istore 1,contr    	/* store the byte #16 */
+	arg mem_key_store,contr
+	arg mem_round_key,contw
+	branch memcpy16
+
+xor_mod32:     /* xor on 0,3, add on 1,2. if user is set, invert. x in rega and y in regb, out in contw */
+	arg mem_round_key,regb
+xor_mod32_ar2:
+	force 16,loopcnt
+	arg mem_input_store,rega
+	copy rega,contw
+xor_mod32_loop:	
+	ifetcht 1,rega
+	ifetch 1,regb
+	ixor temp,alarm
+	and loopcnt,3,regc
+	nbranch xor_mod32_invert,user
+	xor_into 3,regc
+xor_mod32_invert:
+	sub regc,1,regc
+	branch xor_even,positive
+	iadd temp,alarm
+xor_even:
+	deposit alarm
+	istore 1,contw
+	increase 1,rega
+	increase 1,regb
+	loop xor_mod32_loop
+	rtn
+
+el_boxes:
+	call enable_authrom
+	force 16,loopcnt
+	arg mem_input_store,rega
+el_box_loop:	
+	ifetch 1,rega
+	arg mem_e_box,contr
+	and loopcnt,3,regc
+	sub regc,1,null
+	branch e_boxes,positive
+	arg mem_l_box,contr
+e_boxes:
+	iadd contr,contr
+	ifetch 1,contr
+	istore 1,rega
+	increase 1,rega
+	loop el_box_loop
+	branch disable_authrom
+
+pht:				
+	force 8,loopcnt
+	arg mem_input_store,contr
+	copy contr,contw
+pht_loop:
+	ifetch 1,contr
+	iforce rega
+	ifetch 1,contr
+	iforce regb
+	lshift rega,pdata
+	iadd regb,pdata
+	istore 1,contw
+	deposit rega
+	iadd regb,pdata
+	istore 1,contw
+	loop pht_loop
+	rtn
+
+/* 8 11 12 15 2 1 6 5 10 9 14 13 0 7 4 3 */
+permute:			
+	setarg 0x8ae42c
+	iforce temp
+	force 7,loopcnt
+	call permute_exchange
+	setarg 0xd751b
+	iforce temp
+	force 5,loopcnt
+	call permute_exchange
+	fetch 1,mem_input_store+15
+	iforce rega
+	fetch 1,mem_input_store+3
+	store 1,mem_input_store+15
+	deposit rega
+	store 1,mem_input_store+3
+	rtn
+
+permute_exchange:
+	and temp,0xf,regb
+permute_loop:
+	and temp,0xf,pdata
+	arg mem_input_store,contw
+	iadd contw,contw
+	ifetch 1,contw
+	iforce regc
+	deposit rega
+	istore 1,contw
+	copy regc,rega
+	rshift4 temp,temp
+	loop permute_loop	
+	setarg mem_input_store
+	iadd regb,contw
+	deposit rega
+	istore 1,contw
+	rtn
+
+add16:
+	enable user
+	branch xor_add16
+
+xor16:
+	disable user
+xor_add16:	/* if user is set, do add, else do xor */
+	force 16,loopcnt	/* rega and regb pointers to src, contw is result */
+xoradd_loop:
+	ifetcht 1,rega
+	ifetch 1,regb
+	branch xoradd_add,user
+	ixor temp,pdata
+	branch xoradd_store
+xoradd_add:	
+	iadd temp,pdata
+xoradd_store:	
+	istore 1,contw
+	increase 1,rega
+	increase 1,regb
+	loop xoradd_loop
+	rtn
+
+	
+function_expand:		/* rega pointers to bdaddr, or aco and user is set */
+	arg mem_y,contw
+	ifetch 6,rega
+	istore 6,contw
+	branch expand_12,user
+	ifetch 6,rega
+	branch expand_cont
+expand_12:
+	ifetch 6,contr
+expand_cont:
+	istore 6,contw
+	ifetch 4,rega
+	istore 4,contw
+	rtn
+
+key_offset:
+	arg mem_link_key,contr
+	arg mem_x,contw
+	arg 0,temp
+	setarg 0x8395a7
+	call concatenate_temp24
+	setarg 0xb3c1df
+	call concatenate_temp24
+	setarg 0xe5e9
+	call concatenate_temp16
+	copy temp,regab
+	disable user
+	call key_addxor
+	copy regab,temp
+	enable user
+	branch key_addxor
+
+key_addxor:
+	force 8,loopcnt
+key_addxor_loop:	
+	ifetch 1,contr
+	compare 1,loopcnt,1
+	branch key_high,user
+	branch key_xor,true
+key_add:	
+	iadd temp,pdata
+	branch key_store
+key_high:
+	branch key_add,true
+key_xor:
+	ixor temp,pdata
+key_store:
+	istore 1,contw
+	rshift8 temp,temp
+	loop key_addxor_loop
+	rtn
+
+copy_aco:
+	fetch 6,mem_input_store+4
+	store 6,mem_aco
+	ifetch 6,contr
+	istore 6,contw
+	rtn
+	
+concatenate_temp24:
+	lshift8 temp,temp
+concatenate_temp16:
+	lshift16 temp,temp
+	ior temp,temp
+	rtn
+
+
+loop1:	
+	branch loop1
+
+/* ==================== LE security ================= */
+
+generate_stk:
+	call function_s1
+	arg mem_le_ltk,contw
+	branch store_aes_result
+
+	/* contr = rand pointer */
+authenticate_rconfirm:
+	arg mem_le_srand,contw
+	branch authenticate_mconfirm,master
+	arg mem_le_mrand,contw
+authenticate_mconfirm:
+	copy contr,rega
+	call memcpy16
+	call function_c1
+	arg mem_le_rconfirm,contr
+	branch compare_res
+
+generate_confirm:
+	arg mem_le_mrand,rega
+	branch generate_mrand,master
+	arg mem_le_srand,rega
+generate_mrand:
+	copy rega,contw
+	call generate_random
+	branch function_c1
+
+generate_sk:
+	arg mem_le_skdm,contr
+	call load_data128
+	arg mem_le_ltk,contr
+	call load_regext
+	force 0x38,aes_ctrl
+	force 0x0,aes_ctrl
+	call wait_aes
+	arg mem_le_sk,contw
+	branch store_aes_result
+
+	/* temp=packet counter, rega = length or block counter*/
+first_block_counter:
+	force 0x49,pdata
+	branch first_block
+first_block_data:
+	force 1,pdata
+first_block:
+	force regidx_data,regext_index			/* B0 */
+	lshift8 temp,regext
+	ior regext,regext
+	increase 1,regext_index
+	rshift8 temp,regext
+	rshift16 regext,regext
+	fetch 2,mem_le_ivm
+	lshift16,pdata,pdata
+	ior regext,regext				/* octet3&octet4 of counter and low 16 bit of IV */
+	increase 1,regext_index
+	ifetch 4,contr					/* IV2-IV5 */
+	iforce regext
+	increase 1,regext_index
+	ifetch 2,contr					/* IV6-IV7 */
+	byteswap rega,regext
+	lshift16 regext,regext
+	ior regext,regext
+	increase 1,regext_index
+	rtn
+
+
+	/* temp=packet counter, regc pointers to data */	
+generate_mic:
+	add regc,1,contr
+	ifetch 1,contr
+	iforce rega
+	call first_block_counter
+	call do_aes_ocb
+
+	force regidx_data,regext_index			/* B1 */
+	ifetch 1,regc
+	and_into 0x3,pdata
+	lshift16 pdata,regext
+	set1 8,regext
+	call clear_hidata
+	call do_aes_cbc
+
+	copy rega,loopcnt
+	add regc,2,contr
+	call padding_data
+generate_mic_loop:
+	call aes_load_data
+	call do_aes_cbc
+	deposit loopcnt
+	branch generate_mic_end,blank
+	branch generate_mic_loop
+generate_mic_end:
+	force regidx_result,regext_index
+	deposit regext
+	store 4,mem_le_mic
+	rtn
+
+aes_crypt_data:
+	increase 1,rega
+	call first_block_data
+	copy regc,contr
+	call aes_load_xor
+	call do_aes_ctr
+	call store_enc_data
+	increase 16,regc
+	increase -16,regb
+	branch aes_crypt_data,positive
+	rtn
+	
+le_encrypt:
+	arg mem_le_txheader,regc
+	fetcht 5,mem_le_pcnt_tx
+	call generate_mic
+	force regidx_xor,regext_index
+	iforce regext
+	force 0,rega					/* rega is block counter */
+	call first_block_data
+	call do_aes_ctr
+	arg mem_le_txpayload,regc
+	fetch 1,mem_le_txlen
+	add pdata,-1,regb
+	iadd regc,contw
+	force regidx_result,regext_index
+	deposit regext
+	istore 4,contw	
+	call aes_crypt_data
+	fetch 1,mem_le_txlen
+	increase 4,pdata
+	store 1,mem_le_txlen
+	fetcht 5,mem_le_pcnt_tx
+	increase 1,temp
+	storet 5,mem_le_pcnt_tx
+	rtn
+
+le_decrypt:
+	fetch 1,mem_le_rxbuf+1
+	sub pdata,20,null
+	branch le_dec_cont,positive
+le_dec_cont:
+	arg mem_le_rxbuf+2,regc
+	add pdata,-1,regb
+	increase -4,pdata				/* mic will be discarded */
+	store 1,mem_le_rxbuf+1
+	iadd regc,contr
+	ifetch 4,contr
+	force regidx_xor,regext_index
+	iforce regext
+	force 0,rega					/* rega is block counter */
+	fetcht 5,mem_le_pcnt_rx
+	call first_block_data
+	call do_aes_ctr
+	force regidx_result,regext_index
+	deposit regext
+	store 4,mem_le_peer_mic
+	call aes_crypt_data
+	arg mem_le_rxbuf,regc
+	call generate_mic
+	fetcht 4,mem_le_peer_mic
+	isub temp,pdata				/* MIC ok? */
+	nrtn blank
+	fetch 4,mem_le_last_mic			/* reduntdant packet? */
+	isub temp,pdata
+	rtn blank
+	storet 4,mem_le_last_mic
+	fetch 5,mem_le_pcnt_rx
+	increase 1,pdata
+	store 5,mem_le_pcnt_rx
+	force 0,pdata
+	rtn
+
+wait_aes:
+	nbranch wait_aes,aes_ready
+	rtn
+
+do_aes_ocb:
+	force 0x30,aes_ctrl
+	force 0x0,aes_ctrl
+	branch wait_aes
+
+do_aes_cbc:
+	force 0x32,aes_ctrl
+	force 0x2,aes_ctrl
+	branch wait_aes
+
+do_aes_ctr:
+	force 0x34,aes_ctrl
+	force 0x4,aes_ctrl
+	branch wait_aes
+
+do_aes_cfb:
+	force 0x36,aes_ctrl
+	force 0x6,aes_ctrl
+	branch wait_aes
+	
+aes_init:
+	force 1,aes_ctrl
+	force 0,aes_ctrl
+	rtn
+function_s1:
+	force regidx_data,regext_index
+	fetch 4,mem_le_mrand
+	iforce regext
+	increase 1,regext_index
+	ifetch 4,contr
+	iforce regext
+	increase 1,regext_index
+	fetch 4,mem_le_srand
+	iforce regext
+	increase 1,regext_index
+	ifetch 4,contr
+	iforce regext
+	increase 1,regext_index
+	call aes_clear
+	force 0x38,aes_ctrl
+	force 0x8,aes_ctrl
+	branch wait_aes
+
+	/* rega pointers to random number */
+function_c1:
+	fetch 6,mem_le_lap
+	fetcht 6,mem_le_plap
+	branch function_c1_master,master
+	fetch 6,mem_le_plap
+	fetcht 6,mem_le_lap
+function_c1_master:
+	force regidx_xor,regext_index
+	copy temp,regext
+	increase 1,regext_index
+	rshift32 temp,regext
+	lshift16 pdata,pdata
+	ior regext,regext
+	increase 1,regext_index
+	rshift32 pdata,regext
+	increase 1,regext_index
+	force 0,regext					/* p2 = ia || ra */
+	force 0,pdata
+	fetch 1,mem_le_conn_peer_addr_type
+	fetcht 1,mem_le_adv_own_addr_type
+	nbranch function_c1_irat,master
+	//conn as master
+	fetch 1,mem_le_conn_own_addr_type
+	fetcht 1,mem_le_conn_peer_addr_type
+function_c1_irat:
+	store 1,mem_le_iat
+	storet 1,mem_le_rat
+	force regidx_data,regext_index
+	arg mem_le_iat,regb
+	force 4,loopcnt
+function_c1_loop1:
+	ifetch 4,rega		
+	ifetcht 4,regb
+	ixor temp,regext
+	increase 1,regext_index
+	increase 4,rega
+	increase 4,regb
+	loop function_c1_loop1		/* p1 ^ r */
+	call aes_clear				/* k = 0 */
+	force 0x38,aes_ctrl
+	force 0xc,aes_ctrl
+	call wait_aes
+
+	call aes_clear_data
+	force 0x3a,aes_ctrl
+	force 0x8,aes_ctrl
+	branch wait_aes
+
+padding_data:
+	compare 0,loopcnt,3
+	rtn true
+	deposit contr
+	iadd loopcnt,contw
+	force 0,pdata
+padding_loop:
+	istore 1,contw
+	increase 1,loopcnt
+	compare 0,loopcnt,3
+	rtn true
+	branch padding_loop
+
+aes_load_data:
+	force regidx_data,regext_index
+load_data_loop:
+	deposit loopcnt
+	branch load_data_padding,blank
+	ifetch 4,contr
+	increase -4,loopcnt
+load_data_padding:
+	iforce regext
+	increase 1,regext_index
+	compare regidx_key,regext_index,0xf
+	rtn true
+	branch load_data_loop
+
+aes_load_xor:
+	force regidx_xor,regext_index
+	branch load_regext
+load_key:
+	force regidx_key,regext_index
+	branch load_regext
+load_data128:
+	force regidx_data,regext_index
+load_regext:
+	force 4,loopcnt
+load_regext_loop:
+	ifetch 4,contr
+	iforce regext
+	increase 1,regext_index
+	loop load_regext_loop
+	rtn
+
+load_sk:
+	arg mem_le_sk,contr
+	branch load_key
+
+clear_hidata:
+	force 4,loopcnt
+	branch clear_data_rest
+
+aes_clear_data:
+	force regidx_data,regext_index
+aes_clear:
+	force 4,loopcnt
+clear_loop:
+	force 0,regext
+clear_data_rest:
+	increase 1,regext_index
+	loop clear_loop
+	rtn
+
+store_aes_result:
+	force regidx_result,regext_index
+	force 4,loopcnt
+send_aes_result_loop:
+	deposit regext
+	istore 4,contw
+	increase 1,regext_index
+	loop send_aes_result_loop
+	rtn
+
+store_enc_data:
+	force regidx_result,regext_index
+	copy regc,contw
+	add regb,1,loopcnt
+	sub loopcnt,15,null
+	branch store_enc_loop,positive
+	force 16,loopcnt
+store_enc_loop:
+	deposit regext
+	sub loopcnt,3,null
+	branch store_enc_byte,positive
+	istore 4,contw
+	increase -4,loopcnt
+	rtn zero
+	increase 1,regext_index
+	branch store_enc_loop
+store_enc_byte:
+	istore 1,contw
+	rshift8 pdata,pdata
+	loop store_enc_byte
+	rtn
+	
+	/* contr pointers to value to be compared */
+compare_res:
+	force regidx_result,regext_index
+	force 4,loopcnt
+compare_res_loop:
+	ifetch 4,contr
+	isub regext,null
+	nrtn zero
+	increase 1,regext_index
+	loop compare_res_loop
+	force 0,null
+	rtn
+
+enable_authrom:
+	hfetch 1,core_clkoff
+	set0 CLOCK_OFF_AUTH_ROM,pdata
+	hstore 1,core_clkoff
+	rtn
+
+disable_authrom:
+	hfetch 1,core_clkoff
+	set1 CLOCK_OFF_AUTH_ROM,pdata
+	hstore 1,core_clkoff
+	rtn
+
+init_memp:
+	arg mem_p,contw
+	setsect 0,0x3ffff
+	setsect 1,0x3ffff
+	setsect 2,0x3ffff
+	setsect 3,0x3fbff
+	istore 9,contw
+	setsect 0,0x3ffff
+	setsect 1,0x3ffff
+	setsect 2,0x3ffff
+	setsect 3,0x3ffff
+	istore 9,contw
+	setsect 0,0x3ffff
+	setsect 1,0x3ffff
+	setsect 2,0x3cfff
+	setsect 3,0x3ffff
+	istore 9,contw
+	setsect 0,0x3ffff
+	setsect 1,0x3ffff
+	setsect 2,0x3ffef
+	setsect 3,0x3ffff
+	istore 9,contw
+	setsect 0,0x3ffff
+	setsect 1,0x3ffff
+	setsect 2,0x3ffff
+	setsect 3,0x3ffff
+	istore 9,contw
+	setsect 0,0x3ffff
+	setsect 1,0x26c7f
+	setsect 2,0x146b
+	setsect 3,0x37bb3
+	istore 9,contw
+	setsect 0,0x1feb8
+	setsect 1,0x10c12
+	setsect 2,0x2b722
+	setsect 3,0x29fa6
+	istore 9,contw
+	setsect 0,0xe70f
+	setsect 1,0x16720
+	setsect 2,0x519e
+	setsect 3,0x19084
+	istore 9,contw
+	setsect 0,0x31012
+	setsect 1,0x360bf
+	setsect 2,0x3f0af
+	setsect 3,0x3d3
+	istore 9,contw
+	setsect 0,0x3a188
+	setsect 1,0x3ad0
+	setsect 2,0x3cbf2
+	setsect 3,0x243d9
+	istore 9,contw
+	setsect 0,0x2b030
+	setsect 1,0x36a03
+	setsect 2,0x11188
+	setsect 3,0x1e520
+	istore 9,contw
+	setsect 0,0x3a11e
+	setsect 1,0xfe5d
+	setsect 2,0xdd57
+	setsect 3,0x1ac93
+	istore 9,contw
+	setsect 0,0x11ed
+	setsect 1,0x218c4
+	setsect 2,0x8da7
+	setsect 3,0x257ff
+	istore 9,contw
+	setsect 0,0x3192b
+	setsect 1,0x34641
+	setsect 2,0x1be0c
+	setsect 3,0x366ad
+	istore 9,contw
+	setsect 0,0x1f83
+	setsect 1,0x15a23
+	setsect 2,0x3f9b0
+	setsect 3,0x3949
+	istore 9,contw
+	setsect 0,0x13a51
+	setsect 1,0x153fd
+	setsect 2,0x3372a
+	setsect 3,0xf1bb
+	istore 9,contw
+	setsect 0,0x3ae85
+	setsect 1,0x1eed9
+	setsect 2,0x9e66
+	setsect 3,0x1a8
+	istore 8,contw
+	rtn
+
+
+
+shutter_init:	
+	setarg shutter_send_process
+	store 2,mem_cb_bt_process
+	setarg shutter_process_idle
+	store 2,mem_cb_idle_process
+	setarg shutter_process_bb_event
+	store 2,mem_cb_bb_event_process
+	setarg shutter_process_lpm_before
+	store 2,mem_cb_before_lpm
+	setarg shutter_discovery_timeout_sleep
+	store 2,mem_cb_discovry_timeout
+	set1 mark_ext_patch,mark
+	bpatch patch3f_1,mem_patch3f
+	rtn wake
+
+	hjam 0x00,core_gpio_sel1//1: GPIO[26:25] is two wire SPI, 2: GPIO[26:23] is SPI, 3: GPIO[26:23] is PCM
+	call shutter_key_and_wake_gpio_setup
+	
+	setarg shutter_before_hibernate
+	store 2,mem_cb_before_hibernate
+	
+	jam FLAG_SHUTTER_1KEY_SEND_NULL,mem_shutter_1key_send_sm
+	jam 0,mem_shutter_key
+	jam FLAG_SHUTTER_DEFAULT,mem_shutter_flag
+	setarg 0
+	store 4,mem_shutter_send_data
+	call app_check_reconn_target
+	branch app_bt_start_discovery_short,blank
+	call app_led_on	
+	call app_bt_stop_discovery
+	branch app_bt_start_reconnect
+	
+shutter_key_and_wake_gpio_setup:
+	fetcht 1,mem_shutter_iphonekey_gpio
+	call gpio_config_input
+	fetcht 1,mem_shutter_androidkey_gpio
+	branch gpio_config_input	
+
+shutter_cancel_key_shake:
+	set1 mark_ext_patch,mark
+	bpatch patch3f_2,mem_patch3f
+	fetcht 4,mem_shutter_clkn_bt_last
+	deposit clkn_bt
+	store 4,mem_shutter_clkn_bt_last
+	isub temp,pdata	
+	nrtn positive 
+	sub pdata,200,pdata
+	rtn
+	
+shutter_send_process:
+	fetch 1,mem_hid_interrupt_state
+	rtnne 0x3f	
+shutter_scan_key_start:
+	set1 mark_ext_patch,mark
+	bpatch patch3f_3,mem_patch3f
+	fetch 1,mem_device_option
+	rtnne dvc_op_shutter	
+	disable user
+	call shutter_scan_key	
+	nrtn user
+	disable user
+	fetch 1,mem_scan_mode
+	beq 0x03,shutter_reconnect_scan_2
+	
+	fetch 1,mem_shutter_flag
+	beq FLAG_SHUTTER_IPHONEKEY_SEND,shutter_iphonekey_release 
+	beq FLAG_SHUTTER_ANDROIDKEY_SEND,shutter_androidkey_release 
+	call shutter_cancel_key_shake
+	branch  shutter_send_process_end,positive
+
+	fetch 1,mem_shutter_key
+	bbit1 FLAG_SHUTTER_IPHONEKEY_PRESS,shutter_iphonekey_press
+	bbit1 FLAG_SHUTTER_ANDROIDKEY_PRESS,shutter_androidkey_press
+	
+shutter_send_process_end:
+	jam 0,mem_shutter_key
+	jam FLAG_SHUTTER_DEFAULT,mem_shutter_flag
+	rtn
+
+	
+shutter_iphonekey_release:
+	jam FLAG_SHUTTER_DEFAULT,mem_shutter_flag
+	call ui_led_blink_stop
+	fetch 1,mem_shutter_key_number
+	beq FLAG_SHUTTER_1KEY,shutter_1key_iphonekey_release
+shutter_2key_iphonekey_release:
+shutter_iphonekey_release_package:
+	jam 0x05,mem_shutter_send_length
+	jam 0x03,mem_shutter_send_data
+	branch shutter_send_keydata
+shutter_1key_iphonekey_release:
+	jam FLAG_SHUTTER_1KEY_SEND_NULL,mem_shutter_1key_send_sm
+	branch shutter_1key_send_step1
+
+shutter_1key_send_step1:
+	jam FLAG_SHUTTER_1KEY_SEND_STEP2,mem_shutter_1key_send_sm
+	branch shutter_androidkey_press_package
+shutter_1key_send_step2:
+	jam FLAG_SHUTTER_1KEY_SEND_STEP3,mem_shutter_1key_send_sm
+	branch shutter_androidkey_release_package
+shutter_1key_send_step3:
+	jam FLAG_SHUTTER_1KEY_SEND_STEP4,mem_shutter_1key_send_sm
+	branch shutter_iphonekey_press_package
+shutter_1key_send_step4:
+	jam FLAG_SHUTTER_1KEY_SEND_NULL,mem_shutter_1key_send_sm
+	branch shutter_iphonekey_release_package
+	
+shutter_iphonekey_press:
+	jam FLAG_SHUTTER_IPHONEKEY_SEND,mem_shutter_flag	
+	call ui_led_on
+	fetch 1,mem_shutter_key_number
+	beq FLAG_SHUTTER_1KEY,shutter_1key_iphonekey_press
+shutter_2key_iphonekey_press:
+shutter_iphonekey_press_package:
+	jam 0x05,mem_shutter_send_length
+	setarg 0x20003
+	store 3,mem_shutter_send_data
+	branch shutter_send_keydata
+shutter_1key_iphonekey_press:
+	rtn
+	
+shutter_androidkey_release:
+	jam FLAG_SHUTTER_DEFAULT,mem_shutter_flag
+	call ui_led_blink_stop
+shutter_androidkey_release_package:
+	jam 0x0a,mem_shutter_send_length
+	jam 0x01,mem_shutter_send_data
+	branch shutter_send_keydata
+shutter_androidkey_press:
+	jam FLAG_SHUTTER_ANDROIDKEY_SEND,mem_shutter_flag
+	call ui_led_on
+shutter_androidkey_press_package:
+	jam 0x0a,mem_shutter_send_length	
+	jam 0x01,mem_shutter_send_data	
+	setarg 0x280000
+	store 3,mem_shutter_send_data+1
+	
+shutter_send_keydata:
+	set1 mark_ext_patch,mark
+	bpatch patch3f_4,mem_patch3f
+	fetch 1,mem_shutter_send_length
+	copy pdata,rega
+	call hid_malloc_tx_buff
+	fetch 2,mem_hid_int_remote_cid
+	istore 2,contw
+	setarg 0xa1
+	istore 1,contw
+	fetcht 4,mem_shutter_send_data
+	istoret 8,contw	
+	setarg 0
+	istore 1,contw	
+	store 4,mem_shutter_send_data
+	
+	fetch 1,mem_shutter_1key_send_sm
+	beq FLAG_SHUTTER_1KEY_SEND_STEP2,shutter_1key_send_step2
+  	beq FLAG_SHUTTER_1KEY_SEND_STEP3,shutter_1key_send_step3
+ 	beq FLAG_SHUTTER_1KEY_SEND_STEP4,shutter_1key_send_step4
+	rtn			
+	
+shutter_scan_key:
+	fetcht 1, mem_shutter_iphonekey_gpio
+	call gpio_get_bit
+	setarg 0
+	setflag true,FLAG_SHUTTER_IPHONEKEY_PRESS,pdata
+	store 1,mem_shutter_key_temp
+	fetcht 1,mem_shutter_androidkey_gpio
+	call gpio_get_bit
+	setarg 0
+	setflag true,FLAG_SHUTTER_ANDROIDKEY_PRESS,pdata
+	fetcht 1,mem_shutter_key_temp
+	ior temp,pdata
+	fetcht 1,mem_shutter_key
+	store 1,mem_shutter_key
+	ixor temp,null
+	rtn zero
+	enable user
+	rtn
+
+shutter_process_bb_event:
+	copy regc,pdata
+	beq BT_EVT_SETUP_COMPLETE,shutter_bb_event_setup_complete
+	beq BT_EVT_HID_CONNECTED,shutter_bb_event_hid_connected
+	beq BT_EVT_HID_DISCONNECTED,shutter_bb_event_hid_disconn
+	beq BT_EVT_VIRTUAL_CABLE_UNPLUG,shutter_bb_event_unplug
+	beq BT_EVT_BB_DISCONNECTED,shutter_bb_event_bb_disconn
+	beq BT_EVT_RECONN_FAILED,shutter_bb_event_reconn_failed
+	beq BT_EVT_RECONN_PAGE_TIMEOUT,shutter_bb_event_reconn_failed
+	beq BT_EVT_BB_CONNECTED,shutter_process_bb_conn
+	beq BT_EVT_HID_HANDSHAKE,shutter_event_hid_handshake
+	beq BT_EVT_REMOTE_UNSNIFF,app_start_auto_sniff
+	and pdata,0x0f,temp
+	and_into BT_EVT_TIMER_MASK,pdata
+	beq BT_EVT_TIMER_INIT,shutter_bb_event_timer
+	rtn
+	
+shutter_hid_handshake_timer:
+	fetch 1,mem_hid_handshake_timer_count
+	rtn blank
+	increase -1,pdata
+	store 1,mem_hid_handshake_timer_count
+	nrtn blank
+shutter_event_hid_handshake:
+	jam APP_HANDSHAKE_DONE,mem_app_handshake_flag
+	call app_lpm_mult_enable
+	call app_bt_store_reconn_info
+	call app_bt_stop_discovery
+	call app_led_off
+	branch app_bt_enter_sniff
+
+	
+shutter_process_bb_conn:
+	jam 0,mem_shutter_hid_disconn_count
+	jam 0,mem_shutter_cable_unplug_conut	
+	rtn	
+	
+shutter_bb_event_bb_disconn:
+	set1 mark_ext_patch,mark
+	bpatch patch3f_5,mem_patch3f
+	jam 0,mem_unsniff2sniff_timer_count
+	jam 0,mem_shutter_cable_unplug_conut	
+	jam 0,mem_shutter_hid_disconn_count
+	fetch APP_DISC_RSN_SIZE,mem_app_disconn_reason
+	bbit0 APP_DISC_AFTER_SNIFF,shutter_check_pairing
+shutter_bb_event_reconn_failed:
+	//call ice_break
+	fetch 2,mem_discovery_timeout
+	store 2,mem_discovery_timeout_timer_count
+shutter_discovery_on_not_renew_timer://when pairing does not renew discovery timer
+	call app_disconn_reason_clear
+	branch app_bt_start_discovery_led_blink
+
+shutter_check_pairing:
+	bbit0 APP_DISC_AFTER_PAIRING,shutter_check_reconn
+	branch shutter_bb_event_reconn_failed
+	
+shutter_check_reconn:
+	bbit0 APP_DISC_AFTER_RECONN,shutter_discovery_on_not_renew_timer
+	branch shutter_bb_event_reconn_failed
+
+
+shutter_bb_event_setup_complete:
+	call app_bt_stop_discovery
+	branch app_led_stop_blink
+
+shutter_bb_event_hid_connected:
+	setarg HID_HANDSHAKE_TIMEOUT
+	store 1,mem_hid_handshake_timer_count
+	rtn
+	
+shutter_bb_event_hid_disconn: 
+	jam 0,mem_shutter_cable_unplug_conut	
+	setarg FLAG_SHUTTER_HID_DISCONN_TIMEOUT
+	store 1,mem_shutter_hid_disconn_count
+	rtn
+	
+shutter_bb_event_unplug:	
+	setarg FLAG_SHUTTER_CABLE_UNPLUG_TIMEOUT
+	store 1,mem_shutter_cable_unplug_conut
+	rtn
+
+shutter_bb_event_timer:
+	set1 mark_ext_patch,mark
+	bpatch patch3f_6,mem_patch3f
+	storet 1,mem_app_evt_timer_count
+shutter_bb_event_100ms_loop:
+	fetch 1,mem_app_evt_timer_count
+	rtn blank
+	increase -1,pdata
+	store 1,mem_app_evt_timer_count
+	call shutter_check_unplug_timer
+	call shutter_hid_handshake_timer
+	call shutter_check_hid_disconn_timer
+	branch shutter_bb_event_100ms_loop
+	
+shutter_check_unplug_timer:
+	fetch 1,mem_shutter_cable_unplug_conut
+	rtn blank
+	fetch 1,mem_shutter_cable_unplug_conut
+	increase -1,pdata
+	store 1,mem_shutter_cable_unplug_conut
+	nrtn blank
+	fetch 1,mem_CONTROL_tasks
+	set1  L2CAP_DISCONNECT_INTERRUPT, pdata
+	set1  L2CAP_DISCONNECT_CONTROL, pdata
+	store 1,mem_CONTROL_tasks	
+	rtn
+
+shutter_check_hid_disconn_timer:
+	fetch 1,mem_shutter_hid_disconn_count
+	rtn blank
+	fetch 1,mem_shutter_hid_disconn_count
+	increase -1,pdata
+	store 1,mem_shutter_hid_disconn_count
+	nrtn blank
+	branch app_bt_disconnect	
+ 
+shutter_reconnect_scan:
+	set1 mark_ext_patch,mark
+	bpatch patch3f_7,mem_patch3f
+	fetch 1,mem_scan_mode
+	rtnne 0x03
+	branch shutter_scan_key_start
+shutter_reconnect_scan_2:
+	call shutter_cancel_key_shake
+	rtn positive
+	fetch 1,mem_shutter_key
+	rtn blank
+	call app_check_reconn_target
+	branch app_bt_start_discovery_short,blank
+	call app_led_on		
+	call app_bt_stop_discovery
+	branch app_bt_start_reconnect
+
+
+shutter_process_idle:
+	branch shutter_reconnect_scan
+
+
+shutter_process_lpm_before:
+	fetcht 1, mem_shutter_iphonekey_gpio
+	call gpio_set_wake_by_current_state
+	fetch 1,mem_shutter_key_number
+	bne FLAG_SHUTTER_1KEY,shutter_process_lpm_before_key2
+	rtn
+shutter_process_lpm_before_key2:	
+	fetcht 1, mem_shutter_androidkey_gpio
+	branch gpio_set_wake_by_current_state
+
+shutter_before_hibernate:
+	branch shutter_key_and_wake_gpio_setup
+
+
+shutter_discovery_timeout_sleep:	
+	branch app_enter_hibernate
+		
+
+
+sp_initialize:
+	set1 mark_ext_patch,mark
+	bpatch patch3e_2,mem_patch3e
+	fetch 1,mem_ssp_enable	//set in ssp.rom
+	branch ssp_disable, blank
+	call ssp_enable
+	setarg 0
+	store 8,mem_sp_state_start
+	store 4,mem_sp_flag_start
+	
+	arg mem_sp_iocap_remote,contw
+	istore 7,contw
+	jam DEFAULT_STATEMACHINE,mem_sp_localsm
+	branch sp_pubkey_calc 
+
+sp_generate_local_key:
+	jam SP_FLAG_COMMIT,mem_sp_flag  
+	branch sp_generate_local_key0
+sp_master_generate_local_key:
+	fetch 1,mem_sp_local_key_invalid
+	beq SP_KEY_VALID,sp_dhkey_calc
+	branch assert
+sp_generate_local_key0:
+	fetch 1,mem_sp_local_key_invalid
+	beq SP_KEY_VALID,sp_start_send_pubkey
+	branch sp_pubkey_calc
+    
+sp_start_send_pubkey:
+	call sp_dhkey_calc
+	fetch 1,mem_master_sp_state
+	nrtn blank
+	jam SP_STAT_KEY_SEND,mem_sp_state
+	rtn
+    
+sp_calculate_commitment:
+	fetch 1,mem_sp_calc
+	bne SP_CALC_STANDBY,sp_calculate_commitment_wait_dhkey_calc
+	call sp_local_random_key_generator
+	arg mem_sp_prarm_stack,contw
+	setarg mem_sp_random_local_end
+	istore 2,contw
+	setarg mem_sp_pubkey_local_x_end
+	istore 2,contw
+	setarg mem_sp_pubkey_remote_x_end
+	istore 2,contw
+	branch sp_calculate_commitment0
+master_sp_calculate_commitment:
+	arg mem_sp_prarm_stack,contw
+	setarg mem_sp_random_remote_end
+	istore 2,contw
+	setarg mem_sp_pubkey_remote_x_end
+	istore 2,contw
+	setarg mem_sp_pubkey_local_x_end
+	istore 2,contw
+sp_calculate_commitment0:
+	call function_f1
+	fetch 1,mem_master_sp_state
+	beq SP_STAT_COMMIT_CALC,master_sp_calculate_commitment0
+	jam SP_FLAG_COMMIT,mem_sp_flag
+	jam SP_STAT_COMMIT_SEND,mem_sp_state
+	rtn
+master_sp_calculate_commitment0:
+	jam SP_STAT_COMMITMENT_COMPARE,mem_master_sp_state
+	call sp_master_generate_local_key
+	branch master_set_mem_master_sp_flag 
+
+sp_local_random_key_generator:
+	arg mem_sp_random_local,contw
+	force 8,queue
+	branch random_generator
+  
+sp_calculate_commitment_wait_dhkey_calc:
+	jam      SP_FLAG_COMMIT,mem_sp_flag
+	rtn
+    
+sp_confirm_check:
+    /* calculate Ea here */
+	arg      mem_addr_value,contw
+	fetch    6,mem_lap
+	istore   6,contw
+	fetch    6,mem_plap
+	istore   6,contw
+	fetch    3,mem_sp_iocap_remote
+	istore   3,contw 
+
+	call     function_f3a
+
+	arg      mem_sp_calc_result_high,rega
+	arg      mem_sp_check_result,regb    
+	force    4,queue 
+	call     compare4
+	nbranch  sp_confirm_check_failed,true  
+    
+sp_confirm_check_success:
+	fetch 1,mem_master_sp_state
+	beq SP_STAT_CONFIRM_CHECK,sp_confirm_check_success_master
+	jam SP_STAT_CONFIRM_CALC,mem_sp_state
+	jam SP_FLAG_COMMIT,mem_sp_flag  
+	jam LMP_ACCEPTED,mem_lmo_opcode2
+	rtn
+sp_confirm_check_success_master:
+	jam LMP_ACCEPTED,mem_lmo_opcode2
+	jam SP_STATE_END,mem_master_sp_state
+	branch master_set_mem_master_sp_flag
+	//accept opcode?
+	
+sp_confirm_check_failed:
+	fetch 1,mem_master_sp_state
+	beq SP_STAT_CONFIRM_CHECK,sp_confirm_check_failed_master
+	jam SP_STAT_NULL,mem_sp_state
+	jam LMP_NOT_ACCEPTED,mem_lmo_opcode2
+	//accept opcode?
+	jam      AUTHENTICATION_FAILURE_ERROR,mem_lmo_reason2 
+	rtn
+sp_confirm_check_failed_master:
+	jam LMP_NOT_ACCEPTED,mem_lmo_opcode2
+	jam SP_STAT_NULL,mem_master_sp_state
+	rtn
+    
+sp_confirm_calc:
+	fetch 1,mem_sp_dh_ready
+	beq SP_FLAG_COMMIT, sp_confirm_calc_ready
+	jam 	SP_STAT_CONFIRM_CALC,mem_master_sp_state
+	branch master_set_mem_master_sp_flag
+sp_confirm_calc_ready:
+	arg      mem_addr_value,contw
+	fetch    6,mem_plap
+	istore   6,contw
+	fetch    6,mem_lap
+	istore   6,contw
+	fetch    3,mem_sp_iocap_local
+	istore   3,contw 
+
+	call     function_f3b
+	fetch 1,mem_master_sp_state
+	beq SP_STAT_CONFIRM_CALC,sp_confirm_calc_master
+	jam      SP_STAT_CONFIRM_SEND,mem_sp_state
+	jam      SP_FLAG_COMMIT,mem_sp_flag
+	rtn
+sp_confirm_calc_master:
+	jam      SP_STAT_CONFIRM_SEND,mem_master_sp_state
+	jam      SP_FLAG_COMMIT,mem_master_sp_flag
+	rtn   
+
+sp_master_key_prarm_push:
+	arg mem_sp_prarm_stack,contw
+	fetch    6,mem_plap
+	istore   6,contw
+	fetch    6,mem_lap
+	istore   6,contw
+	setarg mem_sp_random_local_end
+	istore 2,contw
+	setarg mem_sp_random_remote_end
+	istore 2,contw
+	branch sp_link_key_calc
+sp_link_key_prarm_push:
+	jam      SP_STAT_DONE,mem_sp_state    
+	arg mem_sp_prarm_stack,contw
+	fetch    6,mem_lap
+	istore   6,contw
+	fetch    6,mem_plap
+	istore   6,contw
+	setarg mem_sp_random_remote_end
+	istore 2,contw
+	setarg mem_sp_random_local_end
+	istore 2,contw
+sp_link_key_calc:
+    /*calculate Link key here */
+	arg      mem_addr_value,contw
+	fetch    6,mem_sp_prarm_stack
+	istore   6,contw
+	fetch    6,mem_sp_prarm_stack+6
+	istore   6,contw
+	
+	call     function_f2    
+
+	/*handle linkkey  */
+	jam 1,mem_link_key_exists
+	arg mem_link_key,contw
+	arg mem_sp_calc_result_high,contr
+	call memcpy16
+	branch  generate_linkkey_continue
+
+    
+sp_pubkey_calc:
+	set1 mark_ext_patch,mark
+	bpatch patch3e_3,mem_patch3e
+	fetch    1,mem_sp_local_key_invalid
+	rtnne SP_KEY_INVALID
+	fetch    1,mem_sp_calc
+	rtnne  SP_CALC_STANDBY
+	arg      mem_sp_private_key,contw 
+	force    11,queue
+	call     random_generator
+	random   pdata
+	rshift   pdata,pdata
+	istore   2,contw 
+/* we don't need fixed private key,generate random key instead */ 
+	arg      mem_k,contw
+	arg      mem_sp_private_key,contr	
+	call     memcpy24 //mem_sp_private_key=>mem_k 24BYTES
+
+	arg      mem_ax,contw
+	arg      mem_gx,contr
+	call     memcpy48 //mem_gx=>mem_ax 48bytes
+
+	arg      mem_az,contw
+	call     bn_zero
+	jam      1,mem_az //0=>mem_az 24bytes
+
+	call     eckp_calc_init
+	jam SP_CALC_PUBKEY,mem_sp_calc
+	rtn    
+	
+sp_pubkey_generated:
+	arg      mem_sp_pubkey_local,contw
+	arg      mem_bx,contr
+	call     memcpy48   
+	jam      SP_KEY_VALID,mem_sp_local_key_invalid
+	jam      SP_CALC_STANDBY,mem_sp_calc
+	rtn
+
+sp_dhkey_calc:
+	set1 mark_ext_patch,mark
+	bpatch patch3e_4,mem_patch3e
+	fetch    1,mem_sp_dhkey_invalid
+	rtnne  SP_KEY_INVALID
+	fetch    1,mem_sp_calc
+	rtnne  SP_CALC_STANDBY
+
+	arg      mem_k,contw
+	arg      mem_sp_private_key,contr	
+	call     memcpy24
+
+	arg      mem_ax,contw
+	arg      mem_sp_pubkey_remote,contr
+	call     memcpy48
+
+	arg      mem_az,contw
+	call     bn_zero
+	jam      1,mem_az
+
+	call     eckp_calc_init
+	jam      SP_CALC_DHKEY,mem_sp_calc
+	rtn 	
+	
+sp_dhkey_generated:
+	jam SP_FLAG_COMMIT,mem_sp_dh_ready
+	arg mem_sp_dhkey,contw
+	arg mem_bx,contr
+	call memcpy24
+	jam SP_KEY_VALID,mem_sp_dhkey_invalid
+	jam SP_CALC_STANDBY,mem_sp_calc
+	rtn
+
+random_generator:
+	increase -1,queue
+	nrtn     positive
+	random   pdata
+	istore   2,contw  
+	branch   random_generator
+compare4:
+	increase -1,queue
+	nbranch  compare4_success,positive
+	ifetch   4,rega
+	copy     pdata,temp
+	ifetch   4,regb
+	iflip    temp,pdata
+	nbranch  compare4_failed,zero
+	increase 4,rega
+	increase 4,regb
+	branch   compare4
+compare4_failed:
+	disable  true
+	rtn
+compare4_success:
+	enable   true
+	rtn
+
+/*************************************************/
+/** Message state machine routines ***************/
+/*************************************************/
+// simple pairing support 
+
+simple_pairing_sequence:
+	set1 mark_ext_patch,mark
+	bpatch patch3e_5,mem_patch3e
+         fetch 1,mem_sp_flag
+         rtn blank
+	jam      SP_FLAG_STANDBY,mem_sp_flag
+	fetch    1,mem_sp_state
+	beq  SP_STAT_KEY_SEND,sp_send_LMP_ENCAPSULATED_HEADER
+	beq  SP_STAT_COMMIT_SEND,sp_send_LMP_SIMPLE_PAIRING_COMFIRM
+	beq  SP_STAT_RANDOM_SEND,sp_send_LMP_SIMPLE_PAIRING_NUMBER
+	beq  SP_STAT_CONFIRM_SEND,sp_send_LMP_DHKEY_CHECK
+	beq  SP_STAT_KEY_GENERATE,sp_generate_local_key
+	beq  SP_STAT_COMMIT_CALC,sp_calculate_commitment
+	beq  SP_STAT_CONFIRM_CHECK,sp_confirm_check
+	beq  SP_STAT_CONFIRM_CALC,sp_confirm_calc
+	beq  SP_STAT_LINK_KEY_CALC,sp_link_key_prarm_push
+	//beq  SP_STAT_FEATURE_EXT_SEND,send_LMP_FEATURES_REQ_EXT
+	rtn  
+
+master_simple_paring_sequence:
+	set1 mark_ext_patch,mark
+	bpatch patch3e_6,mem_patch3e
+	fetch 1,mem_master_sp_flag
+	rtn blank
+	jam SP_FLAG_STANDBY,mem_master_sp_flag
+	fetch 1,mem_master_sp_state
+	beq SP_MASTER_STAT_START_SKIP,sp_master_send_io_cap_get
+	beq SP_MASTER_STAT_START_DONE,sp_master_send_io_cap_send
+	beq SP_STAT_KEY_SEND,sp_master_send_LMP_ENCAPSULATED_HEADER
+	beq SP_STAT_COMMIT_CALC,master_sp_calculate_commitment
+	beq SP_STAT_COMMITMENT_COMPARE,sp_master_commitment_compare
+	beq SP_STAT_RANDOM_SEND,sp_master_send_LMP_SIMPLE_PAIRING_NUMBER
+	beq SP_STAT_CONFIRM_CALC,sp_confirm_calc
+	beq SP_STAT_CONFIRM_SEND,master_sp_send_lmp_dhkey_check
+	beq SP_STAT_CONFIRM_CHECK,sp_confirm_check
+	beq SP_STATE_END,master_sp_sm_end
+	rtn
+
+master_set_mem_master_sp_flag:
+	jam SP_FLAG_COMMIT,mem_master_sp_flag
+	rtn
+	
+master_clear_mem_master_sp_flag:
+	jam SP_FLAG_STANDBY,mem_master_sp_flag
+	rtn
+sp_calc_sequence:
+	set1 mark_ext_patch,mark
+	bpatch patch3e_7,mem_patch3e
+	fetch 1,mem_sp_calc
+	rtn blank
+	increase 0x80,pdata
+	store    1,mem_sp_calc
+	rtnbit1 7
+	fetch    1,mem_ec_loopc
+	branch   sp_calc_sequence_done,blank
+	branch   eckp_calc
+
+sp_calc_sequence_done:    
+	call ecunmapz
+	fetch 1,mem_sp_calc
+	beq  SP_CALC_PUBKEY,sp_pubkey_generated
+	beq  SP_CALC_DHKEY,sp_dhkey_generated
+	rtn
+
+
+bn_testbit:
+	and pdata,7,queue
+	rshift3 pdata,pdata
+	iadd contr,contr
+	ifetch 1,contr
+	qisolate0 pdata
+	rtn
+
+
+ec_copy:
+	call memcpy24
+	call memcpy24
+	branch memcpy24
+	
+	
+bn_eq_zero:
+	ifetch 8,contr
+	nrtn blank
+	ifetch 8,contr
+	nrtn blank
+	ifetch 8,contr
+	rtn
+	
+	
+	/* return zero if eq */
+bn_eq:
+	force 6,loopcnt
+bn_eq_0:	
+	ifetch 4,rega
+	iforce temp
+	ifetch 4,regb
+	isub temp,null
+	nrtn zero
+	increase 4,rega
+	increase 4,regb
+	loop bn_eq_0
+	rtn
+
+	/* return positive if A >= B */
+bn_bigeq:
+	force 6,loopcnt
+	increase 20,rega
+	increase 20,regb
+bn_bigeq_0:	
+	ifetch 4,regb
+	iforce temp
+	ifetch 4,rega
+	isub temp,pdata
+	nrtn positive
+	nrtn blank
+	increase -4,rega
+	increase -4,regb
+	loop bn_bigeq_0
+	rtn
+
+bn_add:
+	force 6,loopcnt
+	force 0,regc
+bn_add_0:	
+	ifetch 4,rega
+	iforce temp
+	ifetch 4,regb
+	iadd temp,pdata
+	iadd regc,pdata
+	istore 4,contw
+	isolate1 32,pdata
+	setflag true,0,regc
+	increase 4,rega
+	increase 4,regb
+	loop bn_add_0
+	rtn
+
+bn_sub:
+	force 6,loopcnt
+	force 0,regc
+bn_sub_0:	
+	ifetch 4,regb
+	iforce temp
+	ifetch 4,rega
+	isub temp,pdata
+	isub regc,pdata
+	istore 4,contw
+	isolate1 32,pdata
+	setflag true,0,regc
+	increase 4,rega
+	increase 4,regb
+	loop bn_sub_0
+	rtn
+
+bn_rshift6:
+	force 6,loopcnt
+	increase 20,rega
+bn_rshift:
+	force 0,regc
+bn_rshift_0:	
+	ifetch 4,rega
+	isolate1 0,pdata
+	setflag true,1,regc
+	rshift pdata,pdata
+	isolate1 0,regc
+	setflag true,31,pdata
+	istore 4,rega
+	increase -4,rega
+	rshift regc,regc
+	loop bn_rshift_0
+	rtn
+
+bn_lshift:
+	force 6,loopcnt
+	force 0,regc
+bn_lshift_0:	
+	ifetch 4,rega
+	isolate1 31,pdata
+	setflag true,1,regc
+	lshift pdata,pdata
+	isolate1 0,regc
+	setflag true,0,pdata
+	istore 4,rega
+	increase 4,rega
+	rshift regc,regc
+	loop bn_lshift_0
+	rtn
+	
+bn_lshiftmod:
+	call bn_lshift
+bn_lshiftmod_ismod:	
+	isolate1 0,regc
+	branch bn_lshiftmod_0,true
+	arg mem_p,regb
+	copy rega,regc
+	increase -24,rega
+	call bn_bigeq
+	nrtn positive
+	copy regc,rega
+bn_lshiftmod_0:
+	increase -24,rega
+	arg mem_p,regb
+	copy rega,contw
+	branch bn_sub
+	
+
+bn_addmod:
+	call bn_add
+	copy contw,rega
+	branch bn_lshiftmod_ismod
+	
+bn_submod:
+	call bn_sub
+	isolate0 0,regc
+	rtn true
+	arg mem_p,regb
+	add contw,-24,rega
+	copy rega,contw
+	branch bn_add
+	
+
+bn_p192mod:
+	copy contw,timeup				/* save result ptr */
+	copy rega,alarm				/* temp save rega */
+	arg mem_tmp2,regb
+	copy regb,contw
+	add rega,24,contr
+	ifetch 8,contr
+	istore 8,contw
+	istore 8,contw
+	force 0,pdata
+	istore 8,contw
+	copy timeup,contw
+	call bn_addmod
+	arg mem_tmp2,regb
+	copy regb,contw
+	force 0,pdata
+	istore 8,contw
+	add alarm,32,contr
+	ifetch 8,contr
+	istore 8,contw
+	istore 8,contw
+	copy timeup,rega
+	copy rega,contw
+	call bn_addmod
+	arg mem_tmp2,regb
+	copy regb,contw
+	add alarm,40,contr
+	ifetch 8,contr
+	istore 8,contw
+	istore 8,contw
+	istore 8,contw
+	copy timeup,rega
+	copy rega,contw
+	branch bn_addmod
+		
+
+bn_load:
+	force 6,loopcnt
+bn_load_0:	
+	ifetch 4,contr
+	iforce regext
+	increase 1,regext_index
+	loop bn_load_0
+	rtn
+
+
+	/* cost 1562 clks */	
+bn_mulmod:
+	copy contw,timeup					/* save result ptr */
+	arg mem_tmp1,contw
+	call bn_zero
+	arg mem_tmp1,contw
+	copy rega,contr
+	force 0,regext_index
+	call bn_load
+	copy regb,contr
+	call bn_load
+	force 0,regb
+bn_mulmod_1:	
+	force 0,temp
+	force 6,regc
+bn_mulmod_0:
+	ifetch 4,contw					/* d[i+j] */
+	iforce rega
+	copy regb,regext_index
+	deposit regext
+	copy regc,regext_index
+	imul32 regext,pdata
+	iadd rega,pdata					/* uv = a[i]*b[j] + d[i+j] */
+	iadd temp,pdata					/* uv += u */
+	istore 4,contw					/* ->d[i+j] */
+	rshift32 pdata,temp				/* temp = u = uv >> 32 */
+	increase 1,regc
+	compare 12,regc,0xff
+	nbranch bn_mulmod_0,true
+	deposit temp
+	istore 4,contw					/* d[i + 12] = u */
+	increase -24,contw
+	increase 1,regb
+	compare 6,regb,0xff
+	nbranch bn_mulmod_1,true
+	arg mem_tmp1,rega
+	copy timeup,contw
+	branch bn_p192mod
+
+	
+bn_sqrmod:
+	copy rega,regb
+	branch bn_mulmod
+
+bn_rshifteven:
+	copy rega,alarm
+bn_rshifteven_1:
+	copy alarm,rega
+	ifetch 1,rega
+	isolate1 0,pdata
+	rtn true
+	call bn_rshift6
+	ifetch 1,regb
+	isolate0 0,pdata
+	branch bn_rshifteven_0,true
+	arg mem_p,rega
+	copy regb,contw
+	call bn_add
+	ifetch 1,regb
+	iadd regc,pdata
+	istore 1,regb						/* [6] */
+	increase -24,regb
+bn_rshifteven_0:
+	add regb,24,rega
+	force 7,loopcnt
+	call bn_rshift
+	branch bn_rshifteven_1
+
+	/* cost 141910 clks */
+bn_invmod:
+	copy contw,timeup					/* save result ptr */
+	arg mem_tmp0,contw				/* x */
+	call bn_zero
+	force 0,pdata
+	store 4,mem_tmp5
+	store 4,mem_t2
+	jam 1,mem_tmp0
+	arg mem_tmp1,contw				/* y */
+	call bn_zero
+	arg mem_p,contr
+	arg mem_tmp2,contw				/* a */
+	call memcpy24
+	copy rega,contr
+	arg mem_tmp3,contw				/* b */
+	call memcpy24
+bn_invmod_2:	
+	arg mem_tmp3,contr
+	call bn_eq_zero
+	branch bn_invmod_0,blank
+	arg mem_tmp3,rega
+	arg mem_tmp0,regb
+	call bn_rshifteven
+
+	arg mem_tmp2,rega
+	arg mem_tmp1,regb
+	call bn_rshifteven
+	arg mem_tmp3,rega
+	arg mem_tmp2,regb
+	call bn_bigeq
+	branch bn_invmod_1,positive
+	arg mem_tmp2,rega
+	arg mem_tmp3,regb
+	copy rega,contw
+	call bn_sub
+	arg mem_tmp0,rega
+	arg mem_tmp1,regb
+	copy regb,contw
+	call bn_add
+	ifetch 1,rega
+	iadd regc,regc
+	ifetch 1,regb
+	iadd regc,pdata
+	istore 1,regb
+	branch bn_invmod_2
+bn_invmod_1:
+	arg mem_tmp3,rega
+	arg mem_tmp2,regb
+	copy rega,contw
+	call bn_sub
+	arg mem_tmp1,rega
+	arg mem_tmp0,regb
+	copy regb,contw
+	call bn_add
+	ifetch 1,rega
+	iadd regc,regc
+	ifetch 1,regb
+	iadd regc,pdata
+	istore 1,regb
+	branch bn_invmod_2
+bn_invmod_0:
+	arg mem_tmp0,contw
+	call bn_zero
+	fetch 1,mem_tmp5
+	store 1,mem_tmp0
+	store 1,mem_tmp0a
+	arg mem_tmp0,rega
+	arg mem_tmp1,regb
+	copy regb,contw
+	call bn_addmod
+	arg mem_p,rega
+	arg mem_tmp1,regb
+	copy timeup,contw
+	branch bn_submod
+	
+
+
+	/* cost 64742 clks */
+ecdbl:
+	arg mem_cz,rega
+	arg mem_t2,contw
+	call bn_sqrmod
+	arg mem_t2,rega
+	arg mem_t3,contw
+	call bn_sqrmod
+	arg mem_a,rega
+	arg mem_t3,regb
+	arg mem_t3,contw
+	call bn_mulmod		/* t3=a*z4	*/
+	arg mem_cx,rega
+	arg mem_t2,contw
+	call bn_sqrmod
+	arg mem_t2,contr
+	arg mem_t1,contw
+	call memcpy24
+	arg mem_t1,rega
+	call bn_lshiftmod
+	arg mem_t2,rega
+	arg mem_t1,regb
+	arg mem_t2,contw
+	call bn_addmod
+	arg mem_t2,rega
+	arg mem_t3,regb
+	arg mem_t2,contw
+	call bn_addmod		/* t2=3*x2 + z*z4		D  */
+	arg mem_cx,contr
+	arg mem_t1,contw
+	call memcpy24
+	arg mem_cy,rega
+	arg mem_t3,contw
+	call bn_sqrmod
+	arg mem_t1,rega
+	call bn_lshiftmod
+	arg mem_t1,rega
+	call bn_lshiftmod
+	arg mem_t1,rega		
+	arg mem_t3,regb
+	arg mem_t1,contw
+	call bn_mulmod		/* t1=4x*y2	B	*/
+	arg mem_t3,rega
+	arg mem_t0,contw
+	call bn_sqrmod
+	arg mem_t0,rega
+	call bn_lshiftmod
+	arg mem_t0,rega
+	call bn_lshiftmod		
+	arg mem_t0,rega		
+	call bn_lshiftmod		/* t0=8*y4		C */
+	arg mem_cy,contr
+	arg mem_t3,contw
+	call memcpy24
+	arg mem_t3,rega
+	call bn_lshiftmod
+	arg mem_t3,rega
+	arg mem_cz,regb
+	arg mem_cz,contw
+	call bn_mulmod		
+	arg mem_t2,rega
+	arg mem_t3,contw
+	call bn_sqrmod
+	arg mem_t3,rega
+	arg mem_t1,regb
+	arg mem_t3,contw
+	call bn_submod
+	arg mem_t3,rega
+	arg mem_t1,regb
+	arg mem_cx,contw
+	call bn_submod
+	arg mem_t1,rega
+	arg mem_cx,regb
+	arg mem_t3,contw
+	call bn_submod
+	arg mem_t3,rega
+	arg mem_t2,regb
+	arg mem_t3,contw
+	call bn_mulmod		
+	arg mem_t3,rega
+	arg mem_t0,regb
+	arg mem_cy,contw
+	branch bn_submod
+	
+
+	/* cost 104904	clks */
+ecadd:
+	arg mem_az,rega
+	arg mem_t7,contw
+	call bn_sqrmod
+	arg mem_cx,rega
+	arg mem_t7,regb
+	arg mem_t0,contw
+	call bn_mulmod		/* n1=t0=xa*zb2  */
+	arg mem_az,rega
+	arg mem_t7,regb
+	arg mem_t7,contw
+	call bn_mulmod	
+	arg mem_cy,rega
+	arg mem_t7,regb
+	arg mem_t1,contw
+	call bn_mulmod		/* n2=t1=ya*zb3 */
+	arg mem_cz,rega
+	arg mem_t7,contw
+	call bn_sqrmod
+	arg mem_ax,rega
+	arg mem_t7,regb
+	arg mem_t2,contw
+	call bn_mulmod		/* n3=t2=xb*za2 */
+	arg mem_cz,rega
+	arg mem_t7,regb
+	arg mem_t7,contw
+	call bn_mulmod	
+	arg mem_ay,rega
+	arg mem_t7,regb
+	arg mem_t3,contw
+	call bn_mulmod		/* n4=t3=yb*za3 */
+	arg mem_t0,rega
+	arg mem_t2,regb
+	arg mem_t7,contw
+	call bn_submod		/* n5=t7=n1-n3=t0-t2 */
+	arg mem_t0,rega
+	arg mem_t2,regb
+	arg mem_t0,contw
+	call bn_addmod		/* n7=t0=n1+n3=t0+t2 */
+	arg mem_t1,rega
+	arg mem_t3,regb
+	arg mem_t2,contw
+	call bn_submod		/* n6=t2=n2-n4=t1-t3 */
+	arg mem_t1,rega
+	arg mem_t3,regb
+	arg mem_t1,contw
+	call bn_addmod		/* n8=t1=n2+n4=t1+t3 */
+	arg mem_t1,rega
+	arg mem_t7,regb
+	arg mem_t1,contw
+	call bn_mulmod		/* t1=n8*n5 */
+	arg mem_cz,rega
+	arg mem_az,regb
+	arg mem_t3,contw
+	call bn_mulmod	
+	arg mem_t3,rega
+	arg mem_t7,regb
+	arg mem_cz,contw
+	call bn_mulmod		/* z=za*zb*n5 */
+	arg mem_t7,rega
+	arg mem_t7,contw
+	call bn_sqrmod		/* t7=n5^2 */
+	arg mem_t7,rega
+	arg mem_t0,regb
+	arg mem_t3,contw
+	call bn_mulmod		/* t3=n5^2*n7 */
+	arg mem_t7,rega
+	arg mem_t1,regb
+	arg mem_t1,contw
+	call bn_mulmod		/* t1=n8*n5^3 */
+	arg mem_t2,rega
+	arg mem_cx,contw
+	call bn_sqrmod		
+	arg mem_cx,rega
+	arg mem_t3,regb
+	arg mem_cx,contw
+	call bn_submod		/* x=n6^2-n5^2*n7 */
+	arg mem_cx,contr
+	arg mem_t7,contw
+	call memcpy24
+	arg mem_t7,rega
+	call bn_lshiftmod		/* t7=2*x */
+	arg mem_t3,rega
+	arg mem_t7,regb
+	arg mem_t3,contw
+	call bn_submod		/* t3=n9 */
+	arg mem_t3,rega
+	arg mem_t2,regb
+	arg mem_t2,contw
+	call bn_mulmod		/* t2=n9*n6 */
+	arg mem_t2,rega
+	arg mem_t1,regb
+	arg mem_cy,contw
+	call bn_submod	
+	arg mem_cy,rega
+	arg mem_p,regb
+	arg mem_cy,contw
+	force 0,regc
+	fetch 1,mem_cy
+	isolate1 0,pdata
+	call bn_add,true
+	copy regc,alarm
+	arg mem_cy,rega
+	call bn_rshift6
+	fetch 1,mem_cy5
+	isolate1 0,alarm
+	setflag true,7,pdata
+	store 1,mem_cy5
+	rtn
+
+	/* cost 22276983 clks */
+eckp:
+	jam 192,mem_ec_loopc
+	jam 1,mem_ec_infinite
+eckp_0:	
+	fetch 1,mem_ec_loopc
+	increase -1,pdata
+	nrtn positive
+	store 1,mem_ec_loopc
+	fetch 1,mem_ec_infinite
+	call ecdbl,blank
+	fetch 1,mem_ec_loopc
+	arg mem_k,contr
+	call bn_testbit
+	branch eckp_0,true
+	fetch 1,mem_ec_infinite
+	nbranch eckp_1,blank
+	call ecadd
+	branch eckp_0
+eckp_1:
+	jam 0,mem_ec_infinite
+	arg mem_ax,contr
+	arg mem_cx,contw
+	call ec_copy
+	branch eckp_0
+
+	/* cost 162522 clks */
+ecunmapz:
+	arg mem_cz,rega
+	arg mem_t3,contw
+	call bn_invmod			/* t3 = 1/z */
+	arg mem_t3,rega
+	arg mem_t1,contw		
+	call bn_sqrmod			/* t1 = 1/z2 */
+	arg mem_cx,rega
+	arg mem_t1,regb
+	arg mem_bx,contw
+	call bn_mulmod
+	arg mem_t3,rega
+	arg mem_t1,regb
+	arg mem_t2,contw			
+	call bn_mulmod			/* t2 = 1/z3 */
+	arg mem_cy,rega
+	arg mem_t2,regb
+	arg mem_by,contw
+	branch bn_mulmod		
+	
+	
+sha_endian_swap:
+	force 16,loopcnt
+sha_endian_swap2:	
+	ifetch 4,contr
+	force 4,rega
+	increase 3,contw
+sha_endian_loop:	
+	istore 1,contw
+	rshift8 pdata,pdata
+	increase -2,contw
+	increase -1,rega
+	nbranch sha_endian_loop,zero
+	increase 5,contw
+	loop sha_endian_swap2
+	rtn	
+
+
+sha_getw:
+	lshift2 queue,pdata
+	iadd timeup,contr
+	ifetch 4,contr
+	rtn
+	
+sha_r:
+	force 16,alarm
+	arg memdat,timeup
+sha_r_loop:	
+	add alarm,-7,queue
+	call sha_getw
+	iforce temp						/* W[t - 7] */
+	add alarm,-16,queue
+	call sha_getw
+	iadd temp,temp					/* W[t-7] + W[t-16] */
+	add alarm,-2,queue
+	call sha_getw
+	shasx pdata,1,pdata
+	iadd temp,temp					/* S1(W[t -  2]) + W[t-7] + W[t-16] */
+	add alarm,-15,queue
+	call sha_getw
+	shasx pdata,0,pdata
+	iadd temp,temp					/* S0(W[t - 15]) + S1(W[t -  2]) + W[t-7] + W[t-16] */
+	lshift2 alarm,pdata
+	iadd timeup,contw
+	istoret 4,contw
+	increase 1,alarm
+	compare 64,alarm,0xff
+	nbranch sha_r_loop,true
+	rtn
+	
+
+sha_init:
+	arg memh0,contr
+	force 7,regext_index
+sha_init_0:	
+	ifetch 4,contr
+	iforce regext
+	increase -1,regext_index
+	branch sha_init_0,positive
+	rtn
+
+sha:
+	set1 mark_ext_patch,mark
+	bpatch patch3f_0,mem_patch3f
+	call sha_r		/* preprocessing data into R() */
+	arg memahbak,contw
+	force 0,regext_index
+sha_0:	
+	deposit regext
+	istore 4,contw
+	increase 1,regext_index
+	compare 8,regext_index,0xff
+	nbranch sha_0,true
+	call enable_authrom
+	arg memk,timeup
+	arg memdat,alarm
+	force 64,loopcnt
+sha_loop:	
+	ifetcht 4,alarm
+	ifetch 4,timeup
+	increase 4,timeup
+	increase 4,alarm
+	iadd temp,pdata			/* x+K */
+	force 7,regext_index
+	iadd regext,temp			/* x+K+h */
+	force 4,regext_index
+	shasx regext,3,pdata
+	iadd temp,temp			/* temp = s3(e)+x+K+h */
+	force 5,regext_index
+	deposit regext
+	force 6,regext_index
+	ixor regext,pdata
+	force 4,regext_index
+	iand regext,pdata			/* (e & (f ^ g)) */
+	force 6,regext_index
+	ixor regext,pdata			/* F1(e, f, g) = g ^ (e & (f ^ g)) */
+	iadd temp,temp			/* temp1 = h + S3(e) + F1(e,f,g) + K + x */
+	force 7,regext_index
+	copy temp,regext			/* save to H */
+	force 3,regext_index
+	deposit regext
+	iadd temp,regext			/* save to D */
+	force 0,regext_index
+	deposit regext
+	force 1,regext_index
+	iand regext,temp			/* a & b */
+	ior regext,pdata			/* a | b */			
+	force 2,regext_index
+	iand regext,pdata			/* (c & (a | b)) */
+	ior temp,temp				/* F0:(a & b) | (c & (a | b)) */
+	force 0,regext_index
+	shasx regext,2,pdata
+	iadd temp,pdata			/* temp2 = S2(a) + F0(a,b,c) */
+	force 7,regext_index
+	iadd regext,regext			/* h = temp1 + temp2 */
+	regexrot					/* rotate move h,a-g => a-h */
+	loop sha_loop
+	arg memahbak,contr
+	force 0,regext_index
+sha_1:	
+	ifetch 4,contr
+	iadd regext,regext
+	increase 1,regext_index
+	compare 8,regext_index,0xff
+	nbranch sha_1,true
+	branch disable_authrom
+
+	
+sha_result:
+	arg   memresult,contw
+	force 7,regext_index
+sha_regext_save:
+	deposit regext
+	istore  4,contw 
+	increase -1,regext_index
+	branch   sha_regext_save,positive
+	rtn	
+
+pad_xor:
+//	arg memx_end,contr
+	arg      memdat,contw
+	increase -4,contr
+	sub      loopcnt,16,rega
+pad_xor_0:	    
+	ifetch   4,contr
+	ixor     temp,pdata
+	istore   4,contw	
+	increase -8,contr	
+	loop  pad_xor_0
+	copy     rega,loopcnt
+	deposit  temp
+pad_xor_1:	
+	istore 4,contw
+	loop pad_xor_1
+	rtn
+	
+g_noninit:
+ 	arg      mem_sp_pubkey_remote_x_end,contr
+	arg      memdat,contw
+	force    6,loopcnt
+	call     memcpy_dword_swap
+	arg      mem_sp_pubkey_local_x_end,contr
+	force    6,loopcnt
+	call     memcpy_dword_swap
+	arg      mem_sp_random_remote_end,contr
+	call     memcpy_dword_swap4
+	call     sha_init
+	call     sha	
+ 	arg      mem_sp_random_local_end,contr
+	arg      memdat,contw
+	branch g_common
+	
+g_init:
+ 	arg      mem_sp_pubkey_local_x_end,contr
+	arg      memdat,contw
+	force    6,loopcnt
+	call     memcpy_dword_swap
+	arg      mem_sp_pubkey_remote_x_end,contr
+	force    6,loopcnt
+	call     memcpy_dword_swap
+	arg      mem_sp_random_local_end,contr
+	call     memcpy_dword_swap4
+	call     sha_init
+	call     sha	
+ 	arg      mem_sp_random_remote_end,contr
+	arg      memdat,contw	
+g_common:	
+	call     memcpy_dword_swap4
+	setarg   0x800000
+	lshift8  pdata,pdata 
+	istore   4,contw
+	force    5,loopcnt
+	call memset0
+	setarg 640
+	istore 4,contw
+	call sha
+
+	fetch 4,memresult
+//	store 4,mem_sp_gkey
+	arg 1000,rega
+	idiv rega
+	call wait_div_end
+	remainder pdata
+	store 4,mem_sp_gkey
+	quotient pdata
+	arg 1000,rega
+	idiv rega
+	call wait_div_end
+	remainder pdata
+	arg 1000,rega
+	imul32 rega,pdata
+	fetcht 4,mem_sp_gkey
+	iadd temp,pdata
+	store 4,mem_sp_gkey
+	rtn
+	
+function_f1:
+	setarg   0x363636
+	lshift8  pdata,temp
+	or_into       0x36,temp
+	fetch 2,mem_sp_prarm_stack
+	copy pdata,contr
+	force    4,loopcnt
+	call     pad_xor
+	call     sha_init
+	call     sha
+	fetch 2,mem_sp_prarm_stack+2
+	copy pdata,contr
+	arg      memdat,contw
+	force    6,loopcnt
+	call     memcpy_dword_swap
+	fetch 2,mem_sp_prarm_stack+4
+	copy pdata,contr
+	force    6,loopcnt
+	call     memcpy_dword_swap
+	setarg   0x800000
+	istore   3,contw
+	force    0,pdata  
+	istore   1,contw
+	force    0,pdata
+	istore   8,contw
+	setarg   0x0388
+	istore   4,contw
+	call     sha
+	call     sha_result
+	arg      memresult,contr
+	arg      memahsave,contw 
+	call     memcpy32
+    
+	setarg   0x5c5c5c
+	lshift8  pdata,temp
+	or_into       0x5c,temp
+	fetch 2,mem_sp_prarm_stack
+	copy pdata,contr
+	force    4,loopcnt
+	call     pad_xor
+	call     sha_init
+	call     sha
+	arg      memahsave_end,contr
+	arg      memdat,contw
+	force    8,loopcnt
+	call     memcpy_dword_swap
+	setarg   0x800000
+	lshift8  pdata,pdata 
+	istore   4,contw
+	call		bn_zero
+	setarg   0x0300
+	istore   4,contw
+	call     sha
+	branch     sha_result
+	
+	
+function_f2:
+	setarg   0x363636
+	lshift8  pdata,temp
+	or_into       0x36,temp
+	arg      mem_sp_dhkey_end,contr
+	force    6,loopcnt
+	call     pad_xor
+	call     sha_init
+	call     sha
+	fetch 2,mem_sp_prarm_stack+12
+	copy pdata,contr
+	arg      memdat,contw
+	call     memcpy_dword_swap4
+	fetch 2,mem_sp_prarm_stack+14
+	copy pdata,contr
+	call     memcpy_dword_swap4
+
+	setarg   0x62746c
+	lshift8  pdata,pdata
+	or_into       0x6b,pdata       
+	istore   4,contw
+	arg      mem_addr_value_end,contr
+	force    3,loopcnt
+	call     memcpy_dword_swap
+	
+	setarg   0x800000
+	lshift8  pdata,pdata 
+	istore   4,contw
+	force    0,pdata
+	istore   8,contw
+	setarg   0x0380
+	istore   4,contw
+	call     sha
+
+	call     sha_result
+	arg      memresult,contr
+	arg      memahsave,contw 
+	call     memcpy32
+    
+	setarg   0x5c5c5c
+	lshift8  pdata,temp
+	or_into       0x5c,temp
+	arg      mem_sp_dhkey_end,contr 
+	force    6,loopcnt
+	call     pad_xor
+	call     sha_init
+	call     sha
+	arg      memahsave_end,contr
+	arg      memdat,contw
+	force    8,loopcnt
+	call     memcpy_dword_swap
+	setarg   0x800000
+	lshift8  pdata,pdata 
+	istore   4,contw
+	call bn_zero
+	setarg   0x0300
+	istore   4,contw
+	call     sha
+	branch     sha_result
+	
+
+function_f3a:
+	setarg   0x363636
+	lshift8  pdata,temp
+	or_into       0x36,temp
+	arg      mem_sp_dhkey_end,contr
+	force    6,loopcnt
+	call     pad_xor
+	call     sha_init
+	call     sha
+	arg      mem_sp_random_remote_end,contr
+	arg      memdat,contw
+	call     memcpy_dword_swap4
+	arg      mem_sp_random_local_end,contr
+	call     memcpy_dword_swap4
+	branch function_f3b_common
+
+function_f3b:
+	setarg   0x363636
+	lshift8  pdata,temp
+	or_into       0x36,temp
+	arg      mem_sp_dhkey_end,contr
+	force    6,loopcnt
+	call     pad_xor
+	call     sha_init
+	call     sha
+
+	arg      mem_sp_random_local_end,contr
+	arg      memdat,contw
+	call     memcpy_dword_swap4
+	arg      mem_sp_random_remote_end,contr
+	call     memcpy_dword_swap4
+function_f3b_common:    
+	setarg   0x0    
+	istore   8,contw
+	istore   8,contw
+    
+	copy     contw,temp
+	jam      0x80,mem_addr_padding
+	copy     temp,contw
+	arg      mem_addr_iocap_end,contr
+	call     memcpy_dword_swap4
+
+	call     sha
+    
+	arg      memdat,contw
+	force 7,loopcnt
+	call memset0
+	istore   4,contw
+	setarg   0x03F8
+	istore   4,contw
+	call     sha
+	call     sha_result
+	
+	arg      memresult,contr
+	arg      memahsave,contw 
+	call     memcpy32
+    
+	setarg   0x5c5c5c
+	lshift8  pdata,temp
+	or_into       0x5c,temp
+	arg      mem_sp_dhkey_end,contr 
+	force    6,loopcnt
+	call     pad_xor
+	call     sha_init
+	call     sha
+	arg      memahsave_end,contr
+	arg      memdat,contw
+	force    8,loopcnt
+	call     memcpy_dword_swap
+	setarg   0x800000
+	lshift8  pdata,pdata 
+	istore   4,contw
+	call bn_zero
+	setarg   0x0300
+	istore   4,contw
+	call     sha	
+	branch     sha_result
+		
+/*
+eckp:
+	jam 192,mem_ec_loopc
+	jam 1,mem_ec_infinite
+*/
+eckp_calc_init:
+	jam      192,mem_ec_loopc
+eckp_calc_init_1:    
+	fetch    1,mem_ec_loopc
+	rtn      blank
+	increase -1,pdata
+	store    1,mem_ec_loopc 	
+	arg      mem_k,contr
+	call     bn_testbit
+	branch eckp_calc_init_1,true
+	arg      mem_ax,contr
+	arg      mem_cx,contw
+	branch     ec_copy	
+	
+eckp_calc:
+	call     ecdbl  
+	fetch    1,mem_ec_loopc
+	increase -1,pdata
+	store    1,mem_ec_loopc
+	arg      mem_k,contr
+	call     bn_testbit
+	rtn	true
+	branch     ecadd                
+	             
+eckp_cp_1:
+	jam 0,mem_ec_infinite
+	arg mem_ax,contr
+	arg mem_cx,contw
+	branch ec_copy
+
+memcpy_dword_swap4:
+	force 4,loopcnt
+memcpy_dword_swap:
+	increase -4,contr
+memcpy_dword_swap_loop:
+	ifetch   4,contr
+	istore   4,contw
+	increase -8,contr
+	loop   memcpy_dword_swap_loop 
+    	rtn
+
+
+ui_init:
+	rtn wake
+	call ui_button_init
+	call ui_timer_init
+	branch ui_led_init
+
+ui_dispatch:
+	fetch 1,mem_device_option
+	rtneq dvc_op_hci
+	call ui_led_blink_polling
+	
+	branch ui_timer_check
+	
+ui_button_init:
+	fetch 1,mem_ui_button_gpio
+	rtneq UI_BUTTON_GPIO_DISABLE
+	iforce temp
+	call gpio_config_output
+	fetcht 1,mem_ui_button_gpio
+	call gpio_out_inactive
+	nop 100
+	fetcht 1,mem_ui_button_gpio
+	call gpio_config_input
+	branch ui_button_polling
+
+ui_button_disable:
+	jam UI_BUTTON_GPIO_DISABLE,mem_ui_button_gpio
+	rtn
+	
+ui_button_polling:
+	set1 mark_ext_patch,mark
+	bpatch patch30_5,mem_patch30
+	fetch 1,mem_ui_button_gpio
+	rtneq UI_BUTTON_GPIO_DISABLE
+	copy pdata,temp
+	call gpio_get_bit
+	nbranch ui_button_up,true
+	//fall through
+ui_button_down:
+	call ui_button_check_long_press
+	fetch 2,mem_ui_state_map
+	set1 UI_STATE_BTN_DOWN
+	store 2,mem_ui_state_map
+	fetch 1,mem_ui_button_last_state
+	rtneq UI_BUTTON_STATE_DOWN
+	jam UI_BUTTON_STATE_DOWN,mem_ui_button_last_state
+	//Down Edge
+	fetch 1,mem_ui_button_timeout
+	store 1,mem_ui_button_timer //start long press timer
+	call lpm_button_get_wake_lock
+	jam BT_EVT_BUTTON_DOWN,mem_fifo_temp
+	branch ui_ipc_send_event
+ui_button_up:
+	fetch 2,mem_ui_state_map
+	set0 UI_STATE_BTN_DOWN
+	store 2,mem_ui_state_map
+	fetch 1,mem_ui_button_last_state
+	rtneq UI_BUTTON_STATE_UP
+	jam UI_BUTTON_STATE_UP,mem_ui_button_last_state
+	//Up Edge
+	jam 0,mem_ui_button_timer//stop long press timer
+	call lpm_button_clean_wake_lock
+	jam BT_EVT_BUTTON_UP,mem_fifo_temp
+	branch ui_ipc_send_event
+
+ui_button_check_long_press:
+	fetch 1,mem_ui_button_timer
+	rtn blank
+	increase -1,pdata
+	store 1,mem_ui_button_timer
+	nrtn blank
+	//Long Press
+	jam BT_EVT_BUTTON_LONG_PRESSED,mem_fifo_temp
+	branch ui_ipc_send_event
+
+lpm_button_get_wake_lock:
+	arg wake_lock_button,queue
+	branch lpm_get_wake_lock
+	
+lpm_button_clean_wake_lock:
+	arg wake_lock_button,queue
+	branch lpm_put_wake_lock
+
+ui_led_init:
+	fetch 1,mem_led_gpio
+	rtneq UI_BUTTON_GPIO_DISABLE
+	iforce temp
+	call gpio_config_output
+	branch ui_led_off
+	
+ui_led_blink_stop:
+	fetch 2,mem_ui_state_map
+	set0 UI_STATE_LED_BLINK
+	store 2,mem_ui_state_map
+	jam ui_led_stop,mem_led_switch
+ui_led_off:
+	fetch 2,mem_ui_state_map
+	set0 UI_STATE_LED_ON
+	store 2,mem_ui_state_map
+	fetcht 1,mem_led_gpio
+	branch gpio_out_inactive
+
+ui_led_on:
+	fetch 2,mem_ui_state_map
+	set1 UI_STATE_LED_ON
+	store 2,mem_ui_state_map
+	jam ui_led_stop,mem_led_switch
+	fetcht 1,mem_led_gpio
+	branch gpio_out_active
+
+ui_led_blink_start:
+	fetch 2,mem_ui_state_map
+	set1 UI_STATE_LED_BLINK
+	store 2,mem_ui_state_map
+	jam ui_led_start,mem_led_switch
+	rtn
+	
+ui_led_blink_polling:
+	set1 mark_ext_patch,mark
+	bpatch patch30_6,mem_patch30
+	fetch 1,mem_led_switch
+	rtneq ui_led_stop
+	arg ui_led_blink,queue
+	call timer_check
+	nrtn blank
+	fetch 1,mem_led_switch
+	beq ui_led_dark_time,ui_led_blink_polling_dark
+	call ui_led_on
+	jam ui_led_dark_time,mem_led_switch
+	fetch 2,mem_led_light_time
+	branch ui_led_blink_timer_start
+ui_led_blink_polling_dark:
+	call ui_led_off
+	jam ui_led_light_time,mem_led_switch
+	fetch 2,mem_led_dark_time
+ui_led_blink_timer_start:
+	arg ui_led_blink,queue
+	branch timer_init	
+
+	
+ui_timer_check:
+	set1 mark_ext_patch,mark
+	bpatch patch30_7,mem_patch30
+	arg 0,rega
+	fetcht 4,mem_ui_timer_last_btclk
+	copy clkn_bt,regb
+	//call ice_break
+ui_timer_check_loop:
+	copy regb,pdata
+	increase 160,temp    //320btclk = 100ms
+	increase 160,temp
+	isub temp,null
+	nbranch ui_timer_check_end,positive
+	increase 1,rega   //increase 1 every 100ms count
+	and rega,0x0f,pdata
+	nbranch ui_timer_check_loop,blank
+	arg 0,rega  //reset timer if it's longer than 1.5s between 2 checks
+	call ui_timer_check_send_evt
+ui_timer_init:
+	copy clkn_bt,pdata
+	store 4,mem_ui_timer_last_btclk
+	rtn
+ui_timer_check_end:
+	set1 mark_ext_patch,mark
+	bpatch patch31_0,mem_patch31
+	copy rega,pdata
+	rtn blank
+	increase -160,temp    //320btclk = 100ms
+	increase -160,temp
+	storet 4,mem_ui_timer_last_btclk
+ui_timer_check_send_evt:
+	increase BT_EVT_TIMER_INIT,pdata
+	store 1,mem_fifo_temp
+	branch ui_ipc_send_event
+	
+
+//**********************************************************//
+//************UI Inter-Processor Communication*******//
+//**********************************************************//
+ui_ipc_get_lock:
+	jam 1,mem_ipc_lock_bt
+ui_ipc_get_lock_wait:
+	fetch 1,mem_ipc_lock_c51
+	nbranch ui_ipc_get_lock_wait,blank
+	rtn
+	
+ui_ipc_put_lock:
+	jam 0,mem_ipc_lock_bt
+	rtn
+	
+ui_ipc_fifo_out:
+	branch fifo_out
+
+
+	
+ui_ipc_send_event:
+	set1 mark_ext_patch,mark
+	bpatch patch31_1,mem_patch31
+	fetch 1,mem_device_option
+	rtneq dvc_op_hci
+	call ui_ipc_get_lock
+	copy rega,pdata
+	store 4,mem_ipc_rega_temp
+	arg mem_ipc_fifo_bt2c51,rega
+	call fifo_in
+	fetch 4,mem_ipc_rega_temp
+	copy pdata,rega
+	branch ui_ipc_put_lock
+
+ui_ipc_send_cmd:
+	set1 mark_ext_patch,mark
+	bpatch patch31_2,mem_patch31
+	fetch 1,mem_device_option
+	rtneq dvc_op_hci
+	call ui_ipc_get_lock
+	copy rega,pdata
+	store 4,mem_ipc_rega_temp	
+	arg mem_ipc_fifo_c512bt,rega
+	call fifo_in
+	fetch 4,mem_ipc_rega_temp
+	copy pdata,rega	
+	branch ui_ipc_put_lock
+
+ui_ipc_clean_all_fifo:
+	set1 mark_ext_patch,mark
+	bpatch patch31_3,mem_patch31
+	setarg 0
+	store UTIL_FIFO_LEN,mem_ipc_fifo_c512bt
+	store UTIL_FIFO_LEN,mem_ipc_fifo_bt2c51
+	rtn
+	
+check_51cmd:
+	set1 mark_ext_patch,mark
+	bpatch patch31_4,mem_patch31
+	fetch 1,mem_hci_cmd
+	nrtn blank
+	arg mem_ipc_fifo_c512bt,rega
+	call fifo_is_empty
+	rtn blank
+	jam IPC_CONTINUE_PROCESS,mem_ipc_skip_continue_proc
+	call check_51cmd_once
+	fetch 1,mem_ipc_skip_continue_proc
+	branch check_51cmd,blank
+	rtn
+
+check_51cmd_once:
+	set1 mark_ext_patch,mark
+	bpatch patch31_5,mem_patch31
+	call ui_ipc_get_lock
+	arg mem_ipc_fifo_c512bt,rega
+	call fifo_out
+	copy pdata,temp
+	call ui_ipc_put_lock
+	copy temp,pdata
+	rtn blank
+ 	beq BT_CMD_START_DISCOVERY,check_51cmd_start_discovery
+  	beq BT_CMD_STOP_DISCOVERY,check_51cmd_stop_discovery
+  	beq BT_CMD_RECONNECT,check_51cmd_reconnect
+  	beq BT_CMD_ENTER_SNIFF_SUBRATING,check_51cmd_enter_sniff_subrating
+  	beq BT_CMD_EXIT_SNIFF_SUBRATING,check_51cmd_exit_sniff_subrating
+  	beq BT_CMD_SNIFF_TEST,check_51cmd_sniff_test
+	beq BT_CMD_START_INQUIRY,check_51cmd_inq
+	beq BT_CMD_STOP_INQUIRY,check_51cmd_stop_inq
+	beq BT_CMD_START_ADV,check_51cmd_adv
+	beq BT_CMD_STOP_ADV,check_51cmd_stop_adv
+	beq BT_CMD_START_DIRECT_ADV,check_51cmd_direct_adv
+	beq BT_CMD_STOP_DIRECT_ADV,check_51cmd_stop_direct_adv
+	beq BT_CMD_LE_UPDATE_CONN,check_51cmd_le_update_conn
+	beq BT_CMD_LED_BLINK,ui_led_blink_start
+	beq BT_CMD_LED_ON,ui_led_on
+	beq BT_CMD_LED_OFF,ui_led_blink_stop
+	beq BT_CMD_LE_START_CONN,check_51cmd_le_start_con
+	beq BT_CMD_LE_START_SCAN,check_51cmd_start_scan
+	beq BT_CMD_LE_STOP_SCAN,check_51cmd_stop_scan
+	beq BT_CMD_ENTER_HIBERNATE,check_51cmd_hibernate
+	beq BT_CMD_LE_SMP_SECURITY_REQUEST,check_51cmd_le_smp_sec_req
+	beq BT_CMD_LE_START_WRITE,check_51cmd_le_start_write
+	beq BT_CMD_BB_RECONN_CANCEL,check_51cmd_bb_reconn_cancel
+	//context related, process in context
+	store 1,mem_fifo_temp
+	set1 mark_ext_patch,mark
+	bpatch patch31_6,mem_patch31
+	fetch 1,mem_lmo_opcode2
+	branch check_51cmd_once_continue,blank
+	call lmo_fifo_process
+	fetch 1,mem_lmo_opcode2
+	nbranch check_51cmd_restore,blank  //process this cmd next time while lmo fifo is full
+check_51cmd_once_continue:
+	fetch 1,mem_fifo_temp
+	bmark0 mark_context,check_51cmd_check_idle
+check_51cmd_once_continue0:
+  	beq BT_CMD_ENTER_SNIFF,cmd_in_sniff
+  	beq BT_CMD_EXIT_SNIFF,cmd_exit_sniff
+  	beq BT_CMD_SET_PIN_CODE,check_51cmd_pincode
+	beq BT_CMD_DISCONNECT,check_51cmd_disconnect
+	beq BT_CMD_LE_DISCONNECT,check_51cmd_le_disconnect
+	beq BT_CMD_ROLE_SWITCH,check_51cmd_role_switch
+	beq BT_CMD_STORE_RECONN_INFO_LE,eeprom_store_le_reconn_info
+	beq BT_CMD_STORE_RECONN_INFO_BT,eeprom_store_bd_reconn_info
+	beq BT_CMD_LE_UPDATE_CONN,BT_CMD_LE_UPDATE_CONN_1
+  	rtn
+
+
+BT_CMD_LE_UPDATE_CONN_1:
+	jam XT_LL_CONNECTION_PARAM_REQ,mem_fifo_temp
+	branch le_xtype_fifo_in
+check_51cmd_check_idle:
+	store 1,mem_fifo_temp
+  	call context_check_idle
+	branch check_51cmd_restore,zero
+	call context_search_plap
+	nrtn zero
+check_51cmd_restore:
+	jam IPC_SKIP_CONTINUE_PROCESS,mem_ipc_skip_continue_proc
+	branch ui_ipc_send_cmd
+
+
+check_51cmd_role_switch:
+  	jam LMP_SLOT_OFFSET,mem_lmo_opcode2
+	set1 mark_switch_initiated,mark
+	nrtn master
+	jam SWITCH_FLAG_INIT,mem_switch_flag
+	jam LMP_SWITCH_REQ ,mem_lmo_opcode2
+	fetch 1,mem_connection_options
+	set0 CONNECTION_SWITCH,pdata
+	store 1,mem_connection_options
+	rtn
+	
+check_51cmd_start_discovery:
+	fetch 2,mem_ui_state_map
+	set1 UI_STATE_BT_DISCOVERY
+	store 2,mem_ui_state_map
+	jam 3,mem_scan_mode
+	rtn
+	
+check_51cmd_stop_discovery:
+	jam 0,mem_hid_handshake_timer_count
+	jam 0,mem_scan_mode
+	fetch 2,mem_ui_state_map
+	set0 UI_STATE_BT_DISCOVERY
+	store 2,mem_ui_state_map
+	rtn
+	
+check_51cmd_reconnect:	
+	jam hci_cmd_create_conn,mem_hci_cmd
+	rtn
+	
+check_51cmd_disconnect:
+	jam LMP_DETACH,mem_lmo_opcode2
+	jam OTHER_END_TERMINATED,mem_disconn_reason_send
+	rtn
+	
+	
+check_51cmd_enter_sniff_subrating:
+	rtn
+	
+check_51cmd_exit_sniff_subrating:
+	rtn	
+	
+check_51cmd_sniff_test:
+	rtn
+	
+check_51cmd_pincode:
+	jam pincode_state_pincode_ready,mem_pincode_state
+	branch cmd_pair
+
+check_51cmd_inq:
+	rtn
+check_51cmd_stop_inq:
+	rtn
+check_51cmd_adv:
+	jam ON,mem_le_adv_enable
+	jam ADV_IND,mem_le_adv_type
+	rtn
+check_51cmd_stop_adv:
+	jam OFF,mem_le_adv_enable
+	rtn
+check_51cmd_direct_adv:
+	jam ON,mem_le_adv_enable
+	jam ADV_DIRECT_IND,mem_le_adv_type
+	rtn
+check_51cmd_stop_direct_adv:
+	jam OFF,mem_le_adv_enable
+	rtn
+check_51cmd_le_disconnect:
+	setarg 1
+	store 2,mem_le_superto
+	rtn
+check_51cmd_le_update_conn:
+	rtn
+check_51cmd_le_start_con:
+	jam ON,mem_le_scan_enable
+	jam hci_cmd_le_create_conn,mem_hci_cmd
+	fetch 6,mem_app_peer_addr
+	store 6,mem_le_conn_peer_addr
+	rtn
+check_51cmd_start_scan:
+	jam ON,mem_le_scan_enable
+	rtn
+check_51cmd_stop_scan:
+	jam OFF,mem_le_scan_enable
+	jam 0,mem_hci_cmd
+	rtn
+check_51cmd_le_smp_sec_req:
+	jam XT_SMP_SECURITY_REQUEST,mem_fifo_temp
+	branch le_xtype_fifo_in
+check_51cmd_hibernate:
+	set1 mark_ext_patch,mark
+	bpatch patch31_7,mem_patch31
+	fetch 2,mem_cb_before_hibernate
+	call callback_func
+	fetch 1,mem_ui_button_gpio
+	beq UI_BUTTON_GPIO_DISABLE,check_51cmd_hibernate_btn_disabled
+	copy pdata,temp
+	call gpio_config_input
+check_51cmd_hibernate_btn_disabled:
+	call ui_led_off
+	call ui_ipc_clean_all_fifo
+	branch lpm_hibernate
+	
+check_51cmd_le_start_write:
+	jam 1,mem_le_switch_send_data
+	rtn
+
+check_51cmd_bb_reconn_cancel:
+	force page_length_timer,queue
+	branch timer_stop
+
+ui_check_paring_button:
+	fetch 1,mem_ui_state_map
+	rtnbit0 UI_STATE_BTN_DOWN
+	rtnbit0 UI_STATE_BT_RECONNECT
+	branch check_51cmd_bb_reconn_cancel
+
+
+
+usb_isr:
+	set1 mark_ext_patch,mark
+	bpatch patch3a_5,mem_patch3a
+	call usb_tx_test
+	hfetch 1,core_usb_status
+	store 1,mem_usb_status
+	hfetch 1,core_usb_fifo_empty
+	store 1,mem_usb_fifo_empty
+	hjam 0xe0,core_usb_status
+	fetch 1,mem_usb_fifo_empty
+	compare 0x1,pdata,0x1 
+	call usb0_fifo_empty,true
+	set1 mark_ext_patch,mark
+	bpatch patch3a_6,mem_patch3a
+	fetch 1,mem_usb_status	
+	compare 0x1,pdata,0x1  
+	call usb_status1,true
+	fetch 1,mem_usb_state
+	bne USB_CONNECTED,usb_tx
+	fetch 2,mem_usb_idle_cnt
+	increase 1,pdata
+	store 2,mem_usb_idle_cnt
+	fetcht 2,mem_usb_idle_timeout
+	isub temp,null
+	branch usb_init,positive
+	fetch 1,mem_usb_status	
+	bbit0 USB_STATUS_NAK,usb_tx
+	setarg 0
+	store 2,mem_usb_idle_cnt
+	branch usb_tx
+	
+
+usb_status1:
+	set1 mark_ext_patch,mark
+	bpatch patch3a_7,mem_patch3a
+	hjam 0x11,core_usb_status
+	hfetch 1,core_usb_ep_len
+	store 1,mem_usb_read_len
+	copy pdata,loopcnt
+	branch usb_rx_no_data,blank
+	arg mem_usb_setup,contw
+	call usb_rx_read
+	fetch 1,mem_usb_read_len
+	sub pdata,7,null
+	rtn positive
+usb_class_type:
+	set1 mark_ext_patch,mark
+	bpatch patch3b_0,mem_patch3b
+	fetch 1,mem_usb_setup_bmRequestType
+	beq HCI_CLASS_REQUEST_TYPE,usb_hci_class_req_type
+	beq HID_CLASS_REQUEST_TYPE,usb_hid_class_req_type
+	beq ZERO_CLASS_REQUEST_TYPE,usb_zero_class_req_type
+	fetch 1,mem_usb_setup_bRequest
+	beq SET_ADDRESS,usb0_request_set_address
+	beq GET_DESCRIPTOR,usb0_request_get_descriptor
+	beq SET_CONFIGURATION,usb0_request_set_configuration
+	beq SET_INTERFACE,usb0_request_set_interface
+	branch usb0_force_stall
+
+usb_zero_class_req_type:
+	fetch 1,mem_usb_setup_bRequest
+	beq CLEAR_FEATURE,usb0_request_clear_feature
+	beq SET_FEATURE,usb0_request_set_feature
+	beq SET_CONFIGURATION,usb0_reply_zerolen
+	beq SET_ADDRESS,usb0_request_set_address
+	branch usb0_force_stall
+usb_hci_class_req_type:
+	call usb0_reply_zerolen
+	rtn
+
+usb_rx_no_data:
+	fetch 1,mem_usb_status
+	bbit1 USB_STATUS_SETUP,usb_class_type
+	rtn
+usb_set_protocol_req:
+	fetch 1,mem_usb_set_protocol_count
+	increase 1,pdata
+	store 1,mem_usb_set_protocol_count
+	compare 2,pdata,0xff
+	nbranch usb0_reply_zerolen,true	
+	jam 1,mem_usb_desc
+	branch usb0_reply_zerolen
+usb_hid_class_req_type:
+	fetch 1,mem_usb_setup_bRequest
+	beq SET_IDLE,usb_set_idle
+	beq SET_REPORT,usb_set_report
+	beq SET_PROTOCOL,usb_set_protocol_req	
+	branch usb0_force_stall
+usb_set_idle:
+	fetch 1,mem_usb_state
+	beq USB_SETIDLE_1,usb_set_idle_connected
+	bne USB_RESUME,usb0_reply_zerolen
+	jam USB_SETIDLE_1,mem_usb_state
+	branch usb0_reply_zerolen
+usb_set_idle_connected:
+	jam USB_CONNECTED,mem_usb_state
+	branch usb0_reply_zerolen
+	
+usb_set_report:
+	jam 1,mem_usb_desc
+	arg mem_usb_desc,rega
+	arg 1,regb
+	branch usb0_respond
+usb0_force_stall:
+	hjam 1,core_usb_stall
+	rtn
+usb0_reply_zerolen:
+	hjam 0x40,core_usb_clear
+	rtn
+
+usb_rx_read:
+	hfetch 1,core_usb_ep
+	istore 1,contw
+	loop usb_rx_read
+	rtn
+
+usb0_fifo_empty:
+	hjam 0x1,core_usb_fifo_empty
+	call usb0_tx
+	rtn
+
+usb0_request_get_descriptor:
+	set1 mark_ext_patch,mark
+	bpatch patch3b_1,mem_patch3b
+	set0 mark_isstr,mark
+	fetch 1,mem_usb_setup_bValueH
+	beq DSC_DEVICE,dsc_device_info
+	beq DSC_CONFIG,dsc_config_info	
+	beq DSC_STRING,dsc_string_info
+	beq DSC_HID,dsc_hid_info
+	beq DSC_HID_REPORT,dsc_hid_report_info
+	rtn
+	
+dsc_device_info:
+	arg mem_devicedesc,rega
+	branch usb0_respond_length
+dsc_config_info:
+	arg mem_confdesc,rega
+	branch usb0_respond_length
+dsc_string_info:
+	fetch 1,mem_usb_setup_bValue
+	and_into 3,pdata
+	arg mem_string0,rega
+	beq 0,usb0_respond_length	
+	set1 mark_isstr,mark
+	arg mem_string1,rega
+	beq 1,usb0_respond_length
+	arg mem_string2,rega
+	beq 2,usb0_respond_length
+	arg mem_string3,rega
+	beq 3,usb0_respond_length
+	branch assert
+dsc_hid_info:
+	arg mem_confdesc+18,rega
+	fetch 1,mem_confdesc+18
+	copy pdata,regb
+	branch usb0_respond
+dsc_hid_report_info:
+	fetch 2,mem_usb_setup_wIndex
+	beq 1,dsc_hid_report_info0
+	arg mem_hidreportdesc_kb,rega
+	branch usb0_respond_length
+dsc_hid_report_info0:
+	jam USB_GOT_REPORT_REQ,mem_usb_state
+	arg mem_hidreportdesc_m,rega
+	branch usb0_respond_length
+
+usb0_respond_length:
+	ifetch 1,rega
+	iforce regb
+	increase 1,rega
+	
+//rega=*buff,reb=size	
+usb0_respond:
+	set1 mark_ext_patch,mark
+	bpatch patch3b_2,mem_patch3b
+	bmark0 mark_isstr,usb0_respond0
+	add regb,1,pdata
+	lshift pdata,pdata
+	hstore 1,core_usb_dfifo0 
+	hjam 3,core_usb_dfifo0
+	fetch 1,mem_usb_setup_bLength
+	increase -2,pdata
+	rshift pdata,pdata
+	store 1,mem_usb_setup_bLength
+	beq 0,usb_no_respond_data
+usb0_respond0:
+	fetch 1,mem_usb_setup_bLength
+	isub regb,null
+	branch usb0_respond1,positive
+	copy pdata,regb	
+usb0_respond1:
+	copy rega,pdata
+	store 2,mem_bufptr
+	copy regb,pdata
+	store 1,mem_remain
+	branch usb0_tx
+
+usb_no_respond_data:
+	arg 0,queue
+	branch usb_trig
+
+
+//mem_bufptr=*buff,mem_remain=size,loopcnt=i,rega=len
+usb0_tx:
+	set1 mark_ext_patch,mark
+	bpatch patch3b_3,mem_patch3b
+	fetch 1,mem_remain
+	rtn blank
+	copy pdata,loopcnt
+	sub pdata,EP0_PACKET_SIZE,null
+	branch usb0_tx_info,positive
+	arg EP0_PACKET_SIZE,loopcnt	
+usb0_tx_info:
+	fetch 1,mem_remain
+	isub loopcnt,pdata
+	store 1,mem_remain//mem_remain -= len
+	fetch 2,mem_bufptr
+	copy pdata,contr	
+usb0_tx0:
+	ifetch 1,contr
+	hstore 1,core_usb_dfifo0
+	bmark0 mark_isstr,usb0_tx1
+	hjam 0,core_usb_dfifo0
+usb0_tx1:
+	loop usb0_tx0
+	copy contr,pdata
+	store 2,mem_bufptr//mem_bufptr += len
+	arg 0,queue
+	call usb_trig
+	fetch 1,mem_remain
+	nrtn blank
+	fetch 1,mem_usb_state
+	rtnne USB_GOT_REPORT_REQ
+	jam USB_CONNECTED,mem_usb_state
+	rtn
+
+
+usb0_request_set_configuration:
+	fetch 1,mem_usb_setup_bValue
+	sub pdata,1,null
+	nbranch usb0_force_stall,positive
+usb0_request_set_address:
+	fetch 1,mem_usb_setup_bmRequestType
+	bne IN_DEVICE,usb0_force_stall
+	fetch 2,mem_usb_setup_wIndex
+	bne 0,usb0_force_stall
+	fetch 1,mem_usb_setup_bLength
+	bne 0,usb0_force_stall
+	branch usb0_reply_zerolen
+
+usb0_request_set_interface:
+	fetch 1,mem_usb_setup_bmRequestType
+	bne IN_INTERFACE,usb0_force_stall
+	fetch 1,mem_usb_setup_bValue
+	bne 0,usb0_force_stall
+	fetch 1,mem_usb_setup_bValueH
+	bne 0,usb0_force_stall
+	fetch 1,mem_usb_setup_bLength
+	bne 0,usb0_force_stall
+	branch usb0_reply_zerolen
+
+usb0_request_set_feature:
+	fetch 1,mem_usb_setup_bValue
+	bne 1,usb0_force_stall
+	jam USB_SLEEP,mem_usb_state
+	branch usb0_reply_zerolen
+
+usb0_request_clear_feature:
+	fetch 1,mem_usb_setup_bValue
+	bne 1,usb0_force_stall
+	branch usb0_reply_zerolen
+	
+usb_init:
+	set1 mark_ext_patch,mark
+	bpatch patch3b_4,mem_patch3b
+	hjam 0x00,core_usb_config
+	nop 10000
+	hjam 0xc0,core_usb_trig
+	hfetch 2,core_clkoff
+	set0 CLOCK_OFF_USB,pdata
+	hstore 2,core_clkoff
+	hjam 0x3c,core_usb_config
+	hjam 0xff,core_usb_status
+	hjam 0xff,core_usb_fifo_empty
+	jam 0,mem_mcmd
+	jam 0,mem_usb_state
+	setarg 0
+	store 2,mem_usb_idle_cnt
+	rtn
+
+
+usb_tx:
+	set1 mark_ext_patch,mark
+	bpatch patch3b_5,mem_patch3b
+	fetch 1,mem_mcmd
+	rtn blank
+	fetch 1,mem_usb_state
+	beq USB_SLEEP,usb_wakeup
+	rtnne USB_CONNECTED
+	fetch 1,mem_mcmd
+	jam 0,mem_mcmd
+	arg 6,loopcnt	
+	arg mem_mouse_data,contr
+	beq SEND_KB_DATA_CMD,usb_tx_ep1
+	beq SEND_MOUSE_DATA_CMD,usb_tx_ep2
+	branch assert
+	
+usb_tx_ep1:
+	arg core_usb_dfifo1,rega
+	arg 1,queue
+usb_tx_loop:
+	ifetch 1,contr
+	istore 1,rega
+	loop usb_tx_loop
+usb_trig:
+	set1 mark_ext_patch,mark
+	bpatch patch3b_6,mem_patch3b
+	disable swfine
+	fetch 2,mem_usb_trig_timeout
+	iforce stop_watch
+	hjam 0x40,core_usb_status
+usb_trig_waitnak_loop:
+	hfetch 1,core_usb_status
+	branch usb_init,timeout
+	bbit0 USB_STATUS_NAK,usb_trig_waitnak_loop
+	fetch 2,mem_usb_trig_timeout
+	iforce stop_watch
+	arg 0,temp
+	qset1 temp
+	hstoret 1,core_usb_fifo_empty
+usb_trig_loop:
+	branch usb_init,timeout
+	hstoret 1,core_usb_trig
+	hfetch 1,core_usb_fifo_empty
+	qisolate0 pdata
+	branch usb_trig_loop,true
+	rtn
+
+
+usb_tx_ep2:
+	arg 2,queue
+	arg core_usb_dfifo2,rega
+	branch usb_tx_loop
+
+
+usb_wakeup:
+	set1 mark_ext_patch,mark
+	bpatch patch3b_7,mem_patch3b
+	hjam 0xfc,core_usb_config
+	nop 10000
+	hjam 0x3c,core_usb_config
+	jam USB_RESUME,mem_usb_state
+	rtn
+
+usb_tx_test:
+	fetch 1,mem_mcmd
+	nrtn blank
+	fetch 2,mem_usb_cnt
+	rtn blank
+	increase -1,pdata
+	store 2,mem_usb_cnt
+	jam SEND_MOUSE_DATA_CMD,mem_mcmd
+	rtn	
+	
+
+right_shift_n: //rshiftN pdata,pdata
+	sub loopcnt,0,null
+	rtn zero
+right_shift_n_loop: 
+	rshift pdata,pdata
+	loop right_shift_n_loop
+	rtn
+	
+push_stack:
+	deposit contw
+	store 2, mem_contw
+	storet 8,mem_temp
+	deposit timeup
+	store 4,mem_timeup
+	deposit rega
+	store 4, mem_rega
+	deposit regb
+	store 4, mem_regb
+	deposit regc
+	store 3, mem_regc
+	deposit contr
+	store 2, mem_contr
+	rtn
+pop_stack:
+	fetcht 8,mem_temp
+	fetch 4,mem_timeup
+	iforce timeup
+	fetch 4, mem_rega
+	iforce rega
+	fetch 4, mem_regb
+	iforce regb
+	fetch 3,mem_regc
+	iforce regc
+	fetch 2, mem_contw
+	iforce contw
+	fetch 2, mem_contr
+	iforce contr
+	rtn
+	
+	
+	
+
+//
+save_cont_pointers:
+	copy contw,pdata
+	store 2,mem_hold_contw
+	copy contr,pdata
+	store 2,mem_hold_contr
+	rtn
+load_cont_pointers:
+	fetch 2,mem_hold_contw
+	copy pdata,contw
+	fetch 2,mem_hold_contr
+	copy pdata,contr
+	rtn
+
+
+
+delay_10ms:
+	copy clkn_bt,pdata
+	increase 16,pdata
+	increase 16,pdata
+delay_ms_wait:
+	copy clkn_bt,temp
+	isub temp,null
+	branch delay_ms_wait,positive
+	rtn
+
+memcpy48:
+	ifetch 8,contr
+	istore 8,contw
+	ifetch 8,contr
+	istore 8,contw
+memcpy32:
+	ifetch 8,contr
+	istore 8,contw
+memcpy24:
+	ifetch 8,contr
+	istore 8,contw
+memcpy16:
+	ifetch 8,contr
+	istore 8,contw
+	ifetch 8,contr
+	istore 8,contw
+	rtn
+
+bn_zero:
+	force 3,loopcnt
+memset0:
+	force 0,pdata
+memset8:
+	istore   8,contw
+	loop   memset8
+	rtn
+
+
+clear_mem:
+	deposit loopcnt
+	rtn blank
+	setarg 0
+clear_mem_loop:
+	istore 1,contw
+	loop clear_mem_loop
+	rtn
+	
+	
+
+memcpy:
+	deposit loopcnt
+	rtn blank
+memcpy_loop:
+	ifetch 1,contr
+	istore 1,contw
+	loop memcpy_loop
+	rtn
+
+timer_stop:
+	setarg 0
+timer_init:
+	arg mem_timers,contw
+	iforce temp
+	lshift queue,pdata
+	iadd contw,contw
+	istoret 2,contw
+	rtn
+
+timer_reinit:
+	arg 0,queue
+timer_check:
+	set1 mark_ext_patch,mark
+	bpatch patch37_4,mem_patch37
+	fetcht 4,mem_last_clkn
+	rshift clkn_bt,pdata
+	store 4,mem_last_clkn
+	isub temp,timeup
+	copy timeup,temp
+	arg mem_timers,contr
+	copy contr,contw
+	arg 16,loopcnt
+timer_loop:
+	ifetch 2,contr
+	isub temp,pdata
+	branch timer_counting,positive
+	force 0,pdata
+timer_counting:
+	istore 2,contw
+	loop timer_loop	
+	arg mem_timers,contr
+	lshift queue,pdata
+	iadd contr,contr
+	ifetch 2,contr
+	rtn
+
+	/* lshift pdata 8*queue */
+lshift8_queue:
+	increase 1,queue
+lshift8_queue_loop:
+	increase -1,queue
+	rtn zero
+	lshift8 pdata,pdata
+	branch lshift8_queue_loop
+
+
+	/* pdata 28+16 bit add temp 26+16 bit, result in temp */
+clk_add:
+	iadd temp,temp
+	copy temp, loopcnt
+	setarg 3750
+	isub loopcnt,pdata
+	rtn positive
+	sub pdata,0,pdata
+	rshift16 temp,temp
+	increase 1,temp
+	lshift16 temp,temp
+	ior temp,temp
+	rtn
+
+clk_diff_rt:
+	call clk_diff
+	branch clk2rt
+
+/* pdata -temp -> pdata, all are 28+16 bits, set user if negative */
+clk_diff:
+	disable user
+	isub temp,pdata
+	branch clk_diff_pos,positive
+	enable user
+	sub pdata,0,pdata
+clk_diff_pos:
+	rtnbit0 15
+	arg -61786,temp
+	iadd temp,pdata
+	set0 64,pdata
+	rtn
+
+clk2rt:
+	iforce contr
+	rshift16 pdata,pdata
+	arg 3750,temp
+	imul32 temp,pdata
+	iadd contr,pdata
+	rtn
+
+	/* pdata = clks in, temp = lpo out */
+clk2lpo:
+	lshift8 pdata,pdata
+	lshift4 pdata,pdata
+	fetcht 3,mem_clks_per_lpo
+	idiv temp
+	call wait_div_end
+	quotient temp
+	rtn
+
+	/* rt clk -> bt+rt clk */
+clk2bt:
+	arg 3750,temp
+	idiv temp
+	call wait_div_end
+	quotient pdata
+	lshift16 pdata,pdata
+	remainder temp
+	ior temp,temp
+	rtn
+
+
+mem3_hex2string_to_uart:
+	arg 3,loopcnt
+	branch hex2string_to_uart0
+mem2_hex2string_to_uart:
+	arg 2,loopcnt
+	branch hex2string_to_uart0
+//input:src:rega des:contwu
+//len of src:loopcnt
+//ex:0x123456 to str //using:temp rega regb
+adss_hex2string_to_uart:
+	arg 6,loopcnt
+hex2string_to_uart0:
+	ifetch 1,rega
+	copy pdata,temp
+	rshift4 pdata,pdata
+	call dialog2uchar
+	istore 1,contwu
+	copy temp,pdata
+	and pdata,0xf,pdata
+	call dialog2uchar
+	istore 1,contwu
+	increase 1,rega
+	loop hex2string_to_uart0
+	rtn
+dialog2uchar:
+	sub pdata,9,null
+	branch dialog2uchar0to9,positive
+	increase 87,pdata
+	rtn
+dialog2uchar0to9:
+	add pdata,0x30,pdata
+	rtn
+
+
+//input:contru 
+//output:temp
+//used register: temp regc
+string2dec_from_uart:
+	arg 0,temp
+string2dec_from_uart_done:
+         copy temp,regc
+	ifetch 1,contru
+	sub pdata,AT_COMMA,null 
+	rtn zero
+	call uchar2dialog	
+	copy regc,temp
+	call swap
+	arg 10,regb
+	imul32 regb,pdata
+	iadd temp,pdata
+	copy pdata,temp
+	branch string2dec_from_uart_done
+
+
+mem2_string2hex_from_uart:
+	arg 2,loopcnt
+	branch string2hex_from_uart
+adss_string2hex_from_uart:
+	arg 6,loopcnt
+//input:contru contw
+//len of src:loopcnt
+//ex:123456 to 0x12 0x34 0x56
+string2hex_from_uart:
+	ifetch 1,contru
+	call uchar2dialog
+	lshift4 pdata,regc
+	ifetch 1,contru
+	call uchar2dialog
+	iadd regc,pdata
+	istore 1,contw
+	loop string2hex_from_uart
+	rtn
+
+uchar2dialog:
+	arg 0x3a,temp
+	isub temp,null
+	nbranch uchar2dialog_number,positive
+	arg 0x61,temp
+	isub temp,null
+	branch uchar2dialog_a2f,positive
+	arg 0x37,temp
+	isub temp,pdata
+	rtn
+uchar2dialog_number:
+	arg 0x30,temp
+	isub temp,pdata
+	rtn
+uchar2dialog_a2f:
+	arg 0x57,temp
+	isub temp,pdata
+	rtn
+
+pn9:
+	copy temp,alarm
+	setarg 0x1ff
+	force 0,regb
+pn9_loop:	
+	rshift3 pdata,rega
+	rshift rega,rega
+	ixor rega,rega
+	isolate1 0,rega
+	setflag true,9,pdata
+	rshift temp,temp
+	isolate1 0,pdata
+	setflag true,7,temp
+	rshift pdata,pdata
+	increase 1,regb
+	compare 0,regb,0x7
+	nbranch pn9_loop,true
+	istoret 1,contw
+	loop pn9_loop
+	copy alarm,temp
+	rtn
+
+bcd_byte:
+	div pdata,10
+	call wait_div_end
+	quotient pdata
+	lshift2 pdata,rega
+	lshift2 rega,rega
+	remainder pdata
+	ior rega,pdata
+	rtn
+
+bcd_pack:
+	isolate1 0,rega
+	branch bcd_pack_hi,true
+	iforce regb
+	rtn
+bcd_pack_hi:
+	lshift2 pdata,pdata
+	lshift2 pdata,pdata
+	ior regb,pdata
+	istore 1,contw
+	increase -2,contw
+	rtn
+
+wait_div_end:	
+	rtn modone
+	branch wait_div_end
+
+
+bcd2:
+	store 8,mem_pdatatemp
+	force 0x20,pdata
+	force 8,loopcnt
+	arg mem_bcd,contw
+lpo_clear:	
+	istore 1,contw
+	loop lpo_clear
+	arg mem_bcd,contw
+	increase 7,contw
+	fetch 8,mem_pdatatemp
+bcd_loop:
+	div pdata,10
+	call wait_div_end
+	remainder pdata
+	or_into 0x30,pdata
+	istore 1,contw
+	increase -2,contw
+	quotient pdata
+	rtn blank
+	branch bcd_loop
+
+
+
+/* store as packed bcd digits */
+bcd:
+	store 8,mem_pdatatemp
+	force 0,pdata
+	store 8,mem_bcd
+	arg mem_bcd,contw
+	increase 7,contw
+	fetch 8,mem_pdatatemp
+	force 0,rega
+bcd_pack_loop:
+	div pdata,10
+	call wait_div_end
+	remainder pdata
+	call 	bcd_pack
+	increase 1,rega
+	quotient pdata
+	sub pdata,9,null
+	nbranch bcd_pack_loop,positive
+	call bcd_pack
+	isolate1 0,rega
+	rtn true
+	istore 1,contw
+	rtn
+	
+//input:
+//	count:loopcnt str1:rega str2:regb
+//output:
+//	same:set falg true ,diff set falg false
+// using:
+//	reg:temp null flag:zero
+string_compare:
+	ifetch 1,rega
+	ifetcht 1,regb
+	isub temp,null
+	nrtn zero
+	increase 1,rega
+	increase 1,regb
+	loop string_compare
+	force 0,null
+	rtn
+
+	/* pdata = temp if pdata > temp */
+ceiling:
+	isub temp,null
+	nrtn positive
+	deposit temp
+	rtn
+	
+swap:
+	iadd temp,pdata
+	isub temp,temp
+	isub temp,pdata
+	rtn
+
+clean_mem:
+	arg 0x200,loopcnt
+	arg 0x4000,contw
+	branch memset0				// clear xram at boot
+
+slave_savelist:
+	fetch 5,mem_sync_clke
+	store 5,mem_pdatatemp
+	fetch 2,mem_clks_per_lpo
+	istore 2,contw
+	setarg 0
+	setflag match,7,pdata
+	setflag wake,6,pdata
+	setflag sync,5,pdata
+	setflag attempt,4,pdata
+	istore 1,contw
+	branch savelist_2
+
+
+le_savelist:
+	fetch 5,mem_sync_clke
+	store 5,mem_pdatatemp
+	fetch 1,mem_le_ch_mapped
+	istore 1,contw
+	fetch 2,mem_le_event_count
+	arg 0x0fff,contr
+	iand contr,pdata
+	setflag match,15,pdata
+	setflag wake,14,pdata
+	setflag sync,13,pdata
+	setflag attempt,12,pdata
+	istore 2,contw
+	branch savelist_2
+savelist:		
+	store 8,mem_pdatatemp
+savelist_2:
+	fetch 1,mem_seqi
+	rtneq 0x7f
+	and_into 0x7f,pdata
+	lshift3 pdata,pdata
+	arg mem_savelist,contw
+	iadd contw,contw
+	fetch 8,mem_pdatatemp
+	istore 8,contw
+	fetch 1,mem_seqi
+	isolate1 7,pdata
+	increase 1,pdata
+	and_into 0x7f,pdata
+	setflag true,7,pdata
+	store 1,mem_seqi
+	fetch 8,mem_pdatatemp
+	rtn	
+
+dirty_mem:
+	arg 0x800,loopcnt
+	arg 0,contw
+	setarg 0x01010101
+	branch memset8
+
+	//cb function ptr in pdata
+callback_func:
+	rtn blank
+	copy pdata,pc	//rtn through cb functon.
+	//branch assert
+
+wait_uarttx:
+	hfetch 2,core_uart_txitems
+	nbranch wait_uarttx,blank
+	rtn
+
+get_uart_rrptr:
+	hfetch 2,core_uart_rrptr
+	copy pdata,contru
+	rtn 
+
+get_uart_twptr:
+	hfetch 2,core_uart_twptr
+	copy pdata,contwu
+	rtn
+//input:contr loopcnt
+send_mem_to_uart:
+	copy contr,rega
+	call get_uart_twptr
+	copy rega,contr
+send_mem_to_uart0:
+	call uart_copy_tx_bytes
+	call  uartd_send
+	branch wait_uarttx
+
+ice_break:
+	hjam 0x1,core_ice_ctrl
+	rtn
+
+ice_setbp:
+	hstore 2,core_ice_break0
+	hfetch 1,core_ice_ctrl
+	set1 4,pdata
+	hstore 1,core_ice_ctrl
+	rtn
+ice_setbp2:
+	hstore 2,core_ice_break1
+	hfetch 1,core_ice_ctrl
+	set1 6,pdata
+	hstore 1,core_ice_ctrl
+	rtn
+	
+ice_set_write_bp:
+	hstore 2,core_ice_break0
+	hjam 0x30,core_ice_ctrl
+	rtn
+	
+test_no_white:
+	hfetch 1,core_config
+	set1 whiteoff_bit,pdata
+	hstore 1,core_config			/* whitening off */
+	rtn
+
+test_enable_white:
+	hfetch 1,core_config
+	set0 whiteoff_bit,pdata
+	hstore 1,core_config			/* whitening on */
+	rtn
+
+check_uart_tx_buff:
+	hfetch 2,core_uart_txitems
+	arg UART_AIR_CONTROL_THRESHOLD,temp
+pdata_sub_temp:
+	isub temp,null
+	rtn
+
+	//fuction fifo_in
+	//rega pointer to fifo memory , *(rega+len) is the end of fifo
+	//mem_fifo_temp data into fifo
+	//assert if fifo was full
+fifo_in:
+	set1 mark_ext_patch,mark
+	bpatch patch37_5,mem_patch37
+	ifetcht UTIL_FIFO_LEN,rega
+	and temp,0xff,pdata
+	nbranch fifo_in_push,blank
+	rshift8 temp,pdata
+	istore UTIL_FIFO_LEN,rega
+fifo_in_push:
+	increase UTIL_FIFO_LEN+UTIL_FIFO_OFFSET,rega
+	ifetch 1,rega
+	nbranch assert,blank //fifo full
+	fetch 1,mem_fifo_temp
+	istore 1,rega
+	rtn
+	
+	//fuction fifo_out
+	//rega pointer to fifo memory
+	//pdata  data from fifo, blank mains fifo empty
+fifo_out:
+	set1 mark_ext_patch,mark
+	bpatch patch37_6,mem_patch37
+	arg UTIL_FIFO_LEN,loopcnt
+	ifetch UTIL_FIFO_LEN,rega
+	rtn blank
+fifo_out_loop:
+	ifetch 1,rega
+	nbranch fifo_out_end,blank
+	increase 1,rega
+	loop fifo_out_loop
+	branch assert
+fifo_out_end:
+	arg 0,temp
+	istoret 1,rega
+	rtn
+
+	//fuction fifo_is_empty
+	//rega pointer to fifo memory
+	//blank--- fifo is empty
+fifo_is_empty:
+	ifetch UTIL_FIFO_LEN,rega
+	rtn
+
+	//fuction fifo_is_full
+	//rega pointer to fifo memory
+	//blank--- fifo is NOT full
+fifo_is_full:
+	ifetch 1,rega
+	rtn
+	//rega pointer to fifo memory
+	//blank--- fifo is NOT near full
+fifo_is_near_full:
+	ifetch 2,rega
+	rtn
+
+	//rega pointer to fifo memory
+	//count output via pdata
+fifo_content_count:
+	arg 0,temp
+fifo_content_count_loop:
+	fetch 1,contr
+	loop fifo_content_count_loop,blank
+	increase 1,temp
+	loop fifo_content_count_loop
+	copy temp,pdata
+	rtn
+	
+not_greater_than:
+	isub temp,null
+	nrtn positive
+	copy temp,pdata
+	rtn
+
+
Index: btkb/output/bt_program23.rom
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/btkb/output/bt_program23.rom	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/btkb/output/bt_program23.rom	(working copy)
@@ -0,0 +1,32701 @@
+11000101000100101000000000011010
+11000000000000000000000001000101
+11000000000000011000000001001001
+11000000000000101000000001010101
+11000000000000110000001100000000
+11000000000001010000001100100001
+11000000000100111000001100100101
+11000000000101000000001100110111
+11000000000101011000001100111101
+11000000001000010000001101001000
+11000000001000011000001101001100
+11000000001010000000001101010100
+11000000001010100000001101100011
+11000000000110001000000001000001
+11000000000110011000000000111110
+11000000010010000000001000001110
+11000000010010010000000111011000
+11000000010010100000000111011110
+11000000010010101000000111001000
+11000000010110000000001011111110
+11000000010110001000000110001100
+11000000010110010000000110100000
+11000000010110011000000110111010
+11000000010110110000000111000011
+11000000010111001000000110010100
+00100000001000000011101111110001
+11000000000011000000001101101111
+11000000000011011000001101110111
+11000000000100011000001110010110
+11000000000100100000001110110010
+11000000000110010000010000110000
+11000000000111011101001110110000
+11000000000111110000001001110011
+11000000000111111000001001110111
+11000000001001010000010001111100
+11000000001001011000010000101001
+11000000001001100000010000110011
+11000000001001110000010000111001
+11000000001010110000010001000000
+11000000001100001000010001000111
+11000000001100011000010001001100
+11000000001100100000010001110000
+11000000001100101000010010100110
+11000000001101001000011000000010
+11000000001101010000010111101101
+11000000001101011000010111101111
+11000000001101110000011000001101
+11000000001101111000010010000111
+11000000010000111000000100100111
+11000000010001101000001010010010
+11000000010001110000001010101011
+11000000010001111000001001111011
+11000000010111101000001010001001
+11000000011001101000001000011011
+11000000011001111000000100110011
+11000000011010000000000101001000
+11000000010011100000001110110110
+11000000010011111000001111001100
+11000000011100010000001111011001
+11000000011100011000001111101011
+11000000011100110000010000000011
+00100000001000000011101111110001
+11011010001000000100000001000000
+00011000000000000111001000000001
+00100000001000000011001100000101
+11011000101000000100000001000000
+11011111001000000000000000001010
+00100000010000000111111000111011
+00100000001000000011001011011000
+01101000000100001000000100111011
+01100000000000001000101110000001
+01110000100000000000011000001000
+00100000001000000011000000000011
+00100000010000000000000011010111
+00100000010000000000000011001001
+00100000010000000000000001011010
+00100000010000000000000001001110
+00100000001000000011000000010101
+01101000000010010100011111110100
+01101000000000001100001111011000
+01111101001110100000010000001011
+01101000000000001100000100110011
+01111101001110100000010000000110
+01100000000010010100011111110100
+00100000011000000000000000000000
+00100000010000000011001110010010
+00100000010000000011010000000111
+00100000010000000011000000100100
+00100000010000000000011000101110
+00100000001000000011000000100010
+01101000000000001100011111011100
+00100000001110100000000001011110
+01101000000000001100011110010011
+00100000011110100000000000000000
+00100000010000000000000100100010
+00100000011101000000000000000000
+00011111111100001111111000000000
+00011111111000100000110000000000
+00100000010000000000000100000011
+01100000000000001100101110100111
+11000000000000001000000001110011
+11000000000000110000000001111101
+00011111111000100000010000000000
+00011000110000100010001000000000
+01101000000000001100000001000000
+11000011000000000000000001110000
+00011010001000100000110000000000
+11000110100001001000000000000000
+00011000010000100111111000000000
+11000000000000011000000001111111
+11000000000000101000000010011101
+00100000001000000011101111110001
+00011010001000100000110000000000
+11011000101000000000000011111000
+00100000001000000000000011111011
+00100000010000000000000100000011
+00100000010000000000000100000011
+01100000000000001000101101111101
+00100000010000000000000001111000
+00100000001000000111110000110011
+00100000010000000000000100000110
+00011000110000100000010000000000
+00011000010100001000010000000000
+01100000000010010100101110011010
+00100000011000000000000000000000
+11011000101000000100110100110100
+00100000001000000000000011111011
+00100000010000000000000100000011
+00011111111000100010001000000000
+00011000110000100111111000000000
+01100000000000010000001010110111
+00100000010000000101001001111100
+00100100001110100000000010001000
+00011010001000001010001000000001
+00100000010000000100101100101100
+00100000001000000000000010001101
+11011000101000000100101110101101
+00011010001000100111001000000000
+01101000000000010000001010110111
+00011111111000100000110000000000
+00100000001000000000000011111101
+00011000101000001010010111111110
+01101000000000010100001010110111
+11100000101000010000000000000000
+01011000000000000000000010100001
+11100000101000001000000000000000
+00011010001000001111001111111111
+01101000000000010000001010110111
+00011111111000100000110000000000
+00100000010000000000000011111101
+00011010010000100000110000000000
+11101000110000010000000000000000
+01100000000000010100110001111011
+00011111111000001111001000000010
+00100000010000000111111001000101
+01110000010011000111101001100100
+00100000011000000000000000000000
+00011000110000100010001000000000
+01101000000000001100101110101001
+00011111111000001000010000000001
+00011000010000010000010000000011
+01100000000010001100101110101001
+00011111111011111111111000000111
+11011000101000000100101110101101
+10011000101000001000101000000000
+00011010001000100000110000000000
+00100000010000000000000100000011
+00011000110000100010001000000000
+00011111111000001111111111111111
+00011111111000100111001000000000
+00011111111000001111111000000111
+01100000000000001100110001100010
+00011010001000100000110000000000
+00100000010000000000000100000011
+00011000110000100010001000000000
+11000000000000001000000010110101
+11000000000000010000000010111101
+11000000000000011000000010111111
+11000000000000100000000011000101
+11000000000000110000000011000001
+11000000000001000000000011000011
+01101000000000010100110010010001
+11100000101000010000000000000000
+00011010001000100000110000000000
+00100000010000000000000011111101
+00100000010000000101011000011110
+00100100011110100000000000000000
+01110000000010110111110100011011
+00100000001000000101011000100000
+01101000000000010100110010010011
+00100000001000000000000010110110
+01101000000000010100110010010101
+00100000001000000000000010110110
+01101000000000010100110010011001
+00100000001000000000000010110110
+01101000000000010100110010011001
+00100000001000000000000010110110
+01101000000000010100110010010111
+11100000101000010000000000000000
+00011010001000100000110000000000
+00100000001000000000000011111101
+01101000000010100100110100101000
+00011100010000100111111000000000
+10011000010001100111111000000000
+01101000000010010100110100101100
+10011000010001101111110000000000
+00100000010000000111111011111101
+00011000000001111111111000000000
+00100000011110100000000000000000
+00011100010000100000010000000000
+01100000000010100100110100101000
+01101000000000001100110100101110
+00011111111000001111111000000001
+01100000000000001100110100101110
+00100000011000000000000000000000
+01101000000010100100110000111010
+00011100010000100111111000000000
+10011000010001100111111000000000
+11011000010000000000011001000000
+10011000010001101111110000000000
+00100000010000000111111011111101
+00011000000001111111111000000000
+00100000011110100000000000000000
+00011100010000100000010000000000
+01100000000010100100110000111010
+01101000000010010100101110100101
+00011000010100001000010000000000
+10011000010000001111111000000000
+00011111111100001111111000000000
+01100000000000010100101110100101
+00011111111100001111111000000000
+00011111111000010111111000000011
+11000001100000000000000000000000
+01110000100010010111000110101111
+01101000000100001000000001010011
+01111001001000000111111000000111
+01100000000100001000000001010011
+01101000000100001000100101110011
+00011111111000011111111000110000
+01100000000100001000100101110011
+01110000100010010000011001110100
+01110000100010010000011001111100
+01110000100010010111001010101010
+00100000000000000001001110001000
+01101000000110010000000101010000
+01101000000100001000000001010011
+01111001001111111111111000000111
+01100000000100001000000001010011
+00011000010100001000010000000000
+01100000000010010100110001110101
+00100000011000000000000000000000
+00100000010000000000000100000011
+00011111111000100111001000000000
+00100000010000000000000011111111
+00100000001000000000000001111000
+00100000010000000000000100000011
+11100000101000001000000000000000
+11000010000000000000000011111111
+00100000011000000000000000000000
+00100000010000000000000100000110
+11101000110000001000000000000000
+00100000011000000000000000000000
+01011000000000000100101100110110
+10011000110001100111110000000000
+00100100011000101000000000000000
+11011000110000000100101010100000
+00100000011000000000000000000000
+11011111001000000000000000000011
+11011000110000000100101110100010
+00011000110000100010001000000000
+01101000000000010100101110100000
+00011111111100001111111000000000
+00011111111000100000101000000000
+00011010001000100000110000000000
+11101000110000001000000000000000
+11100000101000001000000000000000
+00100000010000000000000100011010
+11000010000000000000000100010010
+00011000101000100111111000000000
+00011111111100001111111000000000
+01100000000000010100101110100000
+00100000011000000000000000000000
+01011000000000000100101110011010
+10011000101001100111110000000000
+00100100011000101000000000000000
+11011000101000000100101100110110
+00100000011000000000000000000000
+01101000000000010100101110011110
+01101000000010010100101110100000
+00100000001000000000000100100100
+01101000000000010100101110011010
+01101000000010010100101110011100
+10011000010001100111110000000000
+00100000001000101110100110110001
+00100000001000000011001000001011
+00011100010000100111111000000000
+01100000000000100100110100100100
+01101000000010001100011111101111
+01101000000000001100110100100111
+10011000010001100111110000000000
+00100100010000010000000100101110
+00100000001000000111110000000110
+01101000000010100100110100100100
+01100000000010100100011111101100
+01100000000010100100110000111010
+01100000000010100100110100101000
+00100000011000000000000000000000
+11011010001000000100011111011111
+00100000010000000111111110011111
+00100000011110100000000000000000
+00011111111000100010011000000000
+00100000010000000000000100111001
+00100000001000000011111010100101
+11000001000011000000000000000000
+11000000000010100000011000011111
+11000000000010101000011000100100
+11000000000000110110011000010100
+11000000000000010000000100111111
+00100000001000000011111001111101
+01110000010000101001110100000000
+01101000000000010100011111110100
+11000010100000111011111100001000
+00101111111011000000000000000001
+00100000010000001000000101000101
+00100000001000000011111100001000
+01101000000000001000010001010000
+11000001000000010000000000000000
+00100000001000000011111001111011
+01100000000010001000001001011001
+01101000000000001100110001101101
+00011111111000001111111000000001
+01100000000000001100110001101101
+01101000000000001000001001011001
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001000001001011001
+00100000010000000000000101101000
+00100000010000000000000101101111
+00100000010000000000000101010100
+00100000001000000000000101001100
+01101000000000001100110010011101
+00100100011110100000000000000000
+01101000000000001100110001111010
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001100110001111010
+11000001100000001000000000000000
+01110000010011000111101001100100
+01101000000000010100011111110100
+11000100000000101000000000000000
+01101000000000010100110001111011
+00100000011110100000000000000000
+00100000010000000101001001111110
+00100100011110100000000000000000
+01101000000000010100110001111011
+00011111111000100010001000000000
+00100000010000000100101100101100
+00011010001000001111001000000010
+11011000110000000100110001111101
+00100000001000000111111001000101
+01101000000000001100011111110010
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001100011111110010
+00100100011110100000000000000000
+00100000010000000011111010111101
+00100000001000000100101100100010
+01101000000000001100110000001011
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001100110000001011
+00100000011000000000000000000000
+00011010011000100111111000000000
+00011111111000010111111011110000
+11000001001010000000000000000000
+00100000010000000000000101111100
+00011010011000100111111000000000
+00100000011110100000000000000000
+01100000000000001100101110100100
+00100000001000000000000100001011
+00011010011000100111111000000000
+11000000000001011000000110000000
+11000000000000010000000110001000
+00100000011000000000000000000000
+01110000010011000111101000101000
+01011000000000000000000000001010
+01100000000000010100110001111011
+01101000000000010100001010110111
+11100000101000010000000000000000
+01011000000000000000000110100001
+11100000101000010000000000000000
+00100000011000000000000000000000
+01110000010011000111101000000000
+11011111001000000000000000010100
+11011000101000000100110001111011
+00100000001000000111111000111111
+01110000010000010110111001111111
+00100000010000000011110011110011
+01101000000000001100110001110111
+00100000011110100000000000000000
+01110000010011000111011100000000
+00011100010000100111111000000000
+01100000000000100100110000111010
+00100000011000000000000000000000
+01101000000000001100001000011001
+00100100011110100000000000000000
+01110000100000000100001000000110
+01011000000000000000111100001100
+00100000010000000011110110100111
+01011000000000110000110101000000
+00100000010000000011101111110011
+00110111110110011000001000000000
+00011110001000100110000000000000
+00100000010000000011101100110110
+00100000000000000001001110001000
+00100000001000000011110110011101
+11000110000100011000000000000000
+01101000000000010100011111110100
+11000010100001001011110100011110
+00100000010000000011110010101011
+01101000000000011100001000010000
+00100000011110100000000000000000
+01101000000000001100000100110001
+00100000011110100000000000000000
+00100000010000000101001001111110
+00100100011110100000000000000000
+00100000010000000011110111001010
+00100100011110100000000000000000
+00100000010000000011101100110110
+01101000000000001100011111011100
+00100000001110100011110100100101
+01101000000000001100011110010011
+00100000011110100000000000000000
+00100000001000000011110100100101
+00100000010000000000000100100010
+00100100011101000000000000000000
+00100000010000000000000100011111
+00100100011101000000000000000000
+01110000000010110111111100000001
+01110000000010110111111000000001
+00100000010000000000000110111111
+00100000001000000000000100100010
+00100000010000000000000110110010
+00100100011101000000000000000000
+01101000000000001000101101111111
+00100100011110100000000000000000
+00100000001000000011110100101101
+01101000000000001000101101111110
+00100000000000000000000000001010
+11000000100000000000000110111111
+00100000011000000000000000000000
+00100000010000000000000110110010
+00100100011101000000000000000000
+01101000000000001000101101111111
+00100100011110100000000000000000
+00100000001000000011110101001111
+00100000010000000000000111001010
+00100000001000000011101010101111
+01101000000000001100001000011001
+00100100001110100000000111010000
+00100000010000000011110110010001
+00100000000000000111010100110000
+00100000000000000111010100110000
+00100000000000000111010100110000
+00100000010000000011101100001010
+01110000100000000100001000000100
+01101000000100001000100101101011
+00011111111000010111111011001111
+01100000000100001000100101101011
+00011111111000011111111000110000
+01100000000100001000100101101011
+00100000011000000000000000000000
+01100000000010001000000000010111
+00011000010000001010001000000100
+00100000001000000011101010000110
+01100000000010001000000000010111
+00011000010000001010001000000000
+00100000001000000011101010110110
+00100000010000000000000111011011
+01011000000000000000010100000000
+00100000010000000011101111110011
+01110000100010010000011000000001
+01110000100010010000000000111100
+01110000100010010000000111100000
+01110000100010010110110100010010
+00100000000000000000000000001010
+01110000100010010000001000000001
+01110000100010010000001000111101
+00100000000000000000000000001010
+01110000100010010000001110110111
+00100000000000000000000000001010
+01110000100010010000001001111101
+01101000000000001100101111101111
+11000000111111111000000111110110
+01101000000000101100101010010001
+11100000101000101000000000000000
+11101000110000101000000000000000
+11100000101000101000000000000000
+01110000100010010101011011011111
+00100000010000000000000111111101
+01110000100010010101010111011111
+00100000011000000000000000000000
+01101000000000101100101010000111
+11100000101000101000000000000000
+11101000110000101000000000000000
+11100000101000101000000000000000
+01110000100010010101011011000010
+01110000100010010101010111010000
+00100000011000000000000000000000
+00100000000000000000000000000100
+01110000100010010101010111010001
+00100000000000000000000000000100
+01110000100010010101010111010010
+00100000000000000000000000000100
+01110000100010010101010111010100
+00100000000000000000000000000100
+00100000011000000000000000000000
+01110000100010010101010111010100
+00100000000000000000000000000100
+01110000100010010101010111010010
+00100000000000000000000000000100
+01110000100010010101010111010001
+00100000000000000000000000000100
+01110000100010010101010111010000
+01110000100010010101011011000000
+00100000011000000000000000000000
+00100000001100001011101001101111
+00100000010000000000001000000101
+00100000001000000011101001101111
+00100000010000000101001001111100
+00100100011110100000000000000000
+00100000001000000000000001011010
+01111000001101000111110000000000
+01101000000100100000000100111000
+01111001001101000111111000011010
+01100000000100100000000001001100
+00100000010000000011110110110000
+01110000000000001010001000000001
+00100000011000000000000000000000
+01101000000000001100010000011001
+00011111111000001111111000000010
+01100000000000001100001111111001
+01110000000010110111111000000000
+01110000000000010111011100000110
+00100000010000000011111110100100
+01011000000000000000001000010001
+01100000000000010100001010001110
+01011000000000000000001000011010
+01100000000000010100001010001010
+01011000000000000000000101110100
+01100000000000010100001010010010
+01011000000000000000001001111010
+01100000000000010100001010010000
+01011000000000000000000001011010
+01100000000000010100001010001100
+01011000000000000000001000010100
+01100000000000010100001010001000
+01011000000000000100101010100000
+00011111111100001111111000000000
+01100000000000010100101110011010
+01100000000000010100101110011100
+00100000010000000011111000001011
+01011000000000000100101100110110
+00011111111100001111111000000000
+01100000000000010100101110011110
+01100000000000010100101110100000
+01101000000000001100110001110111
+11000000001011010000001001001110
+00100000001101011000001001001100
+01101000000000010100110001110001
+00011111111100001111111000000000
+01100000000000010100110001110001
+01101000000000010100110001110011
+00011111111100001111111000000000
+01100000000000010100110001110011
+00100000010000000000001001011001
+01101000000001000000001010100000
+00100100001110100000001001000110
+01101000000000010100101011010100
+00011111111100001111111000000000
+00100000001110100000001001000110
+01100000000000010100110001110011
+00100000010000000000011000101011
+01110000010010111010010000101111
+00100000010000000000000100001011
+01110000010011000111011100000000
+01110000100000101000000000000011
+00100000011000000000000000000000
+01110000010010111010010000110000
+00100000001000000000001001001000
+00011100111000100111111000000000
+00100000001110100000001010000001
+00100000010000000101101101100011
+00100000010000000100110110011001
+01011000000000000000000000000000
+01100000000001000100000001000000
+01100000000000010100011111110100
+00011100010000100111111000000000
+01100000000000100100110000111010
+01110000010010111010010000110011
+00100000001000000000001001001000
+00100000010000000110100010001010
+01011000000000000000011111100000
+11011010001000000000001010100000
+11011000010000000000000000001110
+00100000010000000110100011010011
+00100000010000000110100010001101
+01101000000000001000001010100000
+11000010100000000011101111110001
+01101000000001000000001010100010
+00100000011110100000000000000000
+01101000000010010000001010100100
+01101000000000010000001010101010
+00011000010000100010010000000000
+00011111111000100010001000000000
+10011000010001100010011000000000
+00011010011010110010011000000000
+00011010010000100111111000000000
+10011010011001100111111000000000
+00011111111100001111111000000000
+01100000000000010100110001110001
+00011010011000111010011000000000
+00011010001000100111111000000000
+10011010011001100111111000000000
+00011111111100001111111000000000
+01100000000000010100110001110011
+00100000011000000000000000000000
+01110000000000000001011000100111
+01110000100010010000111100110110
+01110000100010010000101101011111
+00100000001000000101001111010100
+01110000100010010000111100101110
+01110000100010010000101111111111
+00100000001000000101001111011001
+00100000011000000000000000000000
+01101000000000010100101110100000
+01100000000000010100101110011110
+01101000000000010100101110011100
+01100000000000010100101110011010
+01110000000010110111111000000011
+00100000010000000000000110111111
+01110000010011000111011101011010
+00100000010000000011110110111000
+01101000000100100000000100111000
+01111001001111111111111000001111
+01100000000100100000000001001100
+00100000010000000011110110110000
+11011000010111111111111111111111
+00100000001000000011110011011010
+11101010001010101000000000000000
+00011000010000010111111011111111
+00100100001110100000001010001110
+00011000010011001111111000000000
+11100010001000101000000000000000
+00011010001000001010001000000100
+11101010001000001000000000000000
+00100100011110100000000000000000
+00100000001000000111111110011100
+00100000010000000111110000100000
+11011010001000000100011111100100
+00100000010000000111111110011111
+00011111111000100000010000000000
+00100000010000000111110000100100
+00011000010000100111111000000000
+00100000011110100000000000000000
+11000000000100001000001010100100
+11000000000100010000001010100110
+11000000000100011000011011000001
+11000000000000001000001011100110
+11000000000001101000001011000001
+11000000000101100000001011000000
+11000000000101011000001011001100
+11000000000000011000001011101001
+11000000000101010000001011110010
+11000000000010010111110010000101
+00100000001000000111110001011010
+01110000010010111110111111111111
+00100000001000000000011011110100
+01111001001111111000000000100011
+01110000010010111110111111111111
+00100000001000000000011010101100
+01110000000010110111110100100010
+00100000001000000101011000100000
+01101000000000001000000001111100
+00100000001110100000001010110000
+00100000010000000110000111011001
+01101000000000001000000001111100
+00100100001110100111110010001100
+01101000000000001000101101111101
+11000101100001001111110010000111
+11000000000000100000001010110110
+11000000000010001000001010101001
+11000000000101000000001010111100
+00100000001000000111110001111011
+01101000000000010100011111110100
+11000011000000011000001010111001
+00100000001000000111110010100100
+01011000000000000000000000001010
+01100000000000100000000001010001
+00100000001000000111110010100100
+01110000000000000111110000110111
+01101000000000010100110001111000
+01100000000000010000000001010001
+00100000011000000000000000000000
+00100000010000000000001011100110
+00100000010000000011111011111111
+00100000010000000111110011010101
+01110000010000010011000100000000
+00011000000010100111111000000000
+01100000000000001100010011111001
+01110000010000111101110000000101
+01011000000110000001001000000011
+01100000000000011100001111100010
+11011000010000000000000000000111
+00100000010000000000001011010010
+00100000001000000111110010101110
+01110000010000111101110000000100
+01011000000000000000000011111111
+01100000000000011100001111100010
+11011000010000000000000000000000
+00100000010000000000001011010010
+00100000001000000111110010101110
+01101000000000001100001111111001
+10011000010000001111111000000000
+00011111111000001111111000001011
+00011111111001100111110000011111
+00100100001000010000001011100010
+01100000000000001100001111011001
+11011000101000000100001111100101
+00011000010000100111111000000000
+00100100010110100000001011011111
+01101000000000001100001111111001
+00011111111000100111001000000000
+11011000110000000100001111111010
+00100000001000000111111001000101
+00011111111000100111001000000000
+11011000110000000100110101001000
+00100000001000000111111001000101
+01101000000000001100001111111001
+00011111111000001111111000001011
+01100000000000001100001111011001
+00100000011000000000000000000000
+00100000010000000011111011111111
+01110000000000010111011100000110
+00100000001000000111110010010111
+00100000010000000011101111111010
+00100000010000000100110110011000
+00100000010000000101101101100010
+01110000000000010111011100000110
+01101000000000001100011111011100
+11000000000000000000001011110000
+01110000000000010111011100010111
+01110000010000100101111000000001
+00100000001000000111110010100010
+01101000000000010100011111110100
+11000010100001001011111110010000
+11000010100000000000001011111011
+11000010100000111111110011010101
+11000101000100011000011010101100
+01110000010000111101100000000000
+00100000010000000011111101111110
+01110000000010110111110100110111
+00100000001000000111110000100111
+00100000010000000011111011111111
+00100000010000000111110011010101
+00100000001000000011111101110111
+00100000010000000011101100110110
+00100000001000000011110011011100
+00100000010000000000001100000010
+00100000001000000011000000101100
+11011010011000000000001100000100
+00100000001000000011001100000001
+11000011000000001011001100000111
+00100000010000000011001100111101
+00100000010000000000001100010001
+10011000010001100111111000000000
+00011111111000001111111000000001
+00100000001000010000001100001011
+00100000001000000011001100100101
+10011000000000000010010000000000
+00011010001000001000110000000010
+11101000110000010000000000000000
+00100000001110100011001100100111
+00100000010000000011001101001001
+00100000001000000000001100000101
+00011111111100010001011000000000
+00011001011011001001011000000000
+00100000001000101000001100011011
+00101001011000000001111000001111
+00100100011000001000000000000000
+00011000010100010001011000000000
+00011001011011001001011000000000
+00100100011000101000000000000000
+01111001001000000000010000011100
+00100000011000000000000000000000
+00011000010100010001011000000000
+00011001011011001001011000000000
+00101001011000000001111000001111
+00100100011000001000000000000000
+01111001001000000111111000011100
+00100000011000000000000000000000
+01100000000011000000001010100000
+00100000010000000111111001010011
+01101000000011000000001010100000
+00100000001000000011000001111100
+01111000010101000111110000000000
+01101000000000010000000000110010
+11011000010000001111111111111111
+10011000010001100111110000000000
+00100100011000101000000000000000
+01101000000000100000000000110100
+00100000001110000000001100101110
+10011101000001100111111000000000
+00100000001000000000001100101111
+10011100010001100111111000000000
+00011111111001100111110000000100
+00100100011000010000000000000000
+00011000000000000111111000000000
+01100000000000010000000000110010
+00100000001000000011010011011111
+01110000000010110111110100100000
+00100000010000000111110000100111
+00100000001000000000001100111000
+01100000000010100000000000110100
+01110000010001110100100000000001
+01011000000000001111111111111111
+01100000000000010000000000110010
+01110000000000000111001100000001
+00100000011000000000000000000000
+00100000010000000011101110101010
+00100000010000000000001101000000
+00100000001000000011001001100111
+00011100010000001100001000000001
+00100000010000000011101001010100
+00011000000000000100100000000011
+00100000010000000011101001000010
+00100000010000000011101110101110
+00100000010000000011101110110100
+00100000010000000011101111000101
+00100000001000000011011101011100
+00100000010000000011111000100101
+00100000010000000110110111101100
+00100000010000000011010111010110
+00100000001000000011010010000000
+00100000010000000011110101100001
+00100000010000000011101111100010
+00100000001000010011010010011000
+00100000010000000011001000000100
+00100100001101000011010010011000
+00100000010000000011100000010010
+00100100001110100000001101001001
+00100000011000000000000000000000
+00100000010000000011001011011111
+00100100001000101011010101101000
+01101000000000001000000001000111
+11000011000000011011010101110001
+01101000000000001100000101100101
+11000000000010011011010101100010
+01101000000000010100110000100100
+00011111111001100111110000010100
+00100100001000010011010101100010
+01100000000000010000000010010001
+01101000000000001100110000100011
+01100000000000001000000010010000
+01011000000000000100110000100110
+01100000000000010000000101111001
+00100000001000000011010101100010
+01101000000000010000000010010001
+01100000000000010100110000100100
+00011111111001100111110000010100
+00100100001000010011010110001111
+10011000000000000111001000000000
+01101000000000001000000010010000
+01100000000000001100110000100011
+01101000000000010000000101111001
+10011000000000000000110000000000
+11011000101000000100110000100110
+00100000010000000111111001000101
+00100000001000000011010110001111
+01101000000000010000001011001101
+00100000001110100100110111111100
+01101000000000001000001011001111
+11000000000000001000001101110100
+00100000001000000100110110111011
+00100000010000000101001001111010
+00100100011110100000000000000000
+00100000001000000100110111000011
+11101000110000001000000000000000
+11000000000001010000001101111010
+00100000001000000100111000010100
+11101000110000001000000000000000
+00011111111000100000111000000000
+11101000110000010000000000000000
+00011111111000100010001000000000
+00011010011000100111111000000000
+10011010001001100010011000000000
+01011000000000000000000000001011
+11100000101000001000000000000000
+00011000111000100111111000000000
+11100000101000001000000000000000
+11101000110000010000000000000000
+11000000000000010000001110001000
+11000000000000011000001110001111
+00100000001000000011101111110001
+01011000000000100000000000001000
+11100000101000110000000000000000
+01011000000000000000001000000000
+11100000101000100000000000000000
+00011000000000000111111000001100
+10011010010000001010010000000000
+00100000001000000100111000100000
+01011000000000110000000000001100
+11100000101000110000000000000000
+01011000000000000000000000000110
+11100000101001000000000000000000
+00011000000000000111111000010000
+10011010010000001010010000000000
+00100000001000000100111000100000
+00100000010000000101001011000100
+00011000000000000010010000000000
+00100000010000000101001011010000
+00011111111000100000101000000000
+01101000000000010000001011001101
+00011111111000100010011000000000
+01101000000000010000001011001011
+10011000000000000000110000000000
+00100000010000000000001110100000
+00100000001000000101000100010000
+11101000110000001000000000000000
+11000000000001010000001110100011
+00100000001000000101000100010110
+11101000110000001000000000000000
+00011111111000100000111000000000
+11101000110000010000000000000000
+00011111111000100010001000000000
+11101000110000010000000000000000
+01100000000000010000001010100000
+00011010011000100111111000000000
+10011010001001100010011000000000
+00100000010000000101001011010000
+01011000000000000000000000001011
+11100000101000001000000000000000
+00011000111000100111111000000000
+11100000101000001000000000000000
+01101000000000010000001010100000
+00100000001000000000001110000101
+11011010010000000000000000000000
+00100000010000000101001001111010
+00100100011110100000000000000000
+00100000001000000101001001001101
+01101000000000010000001011001011
+00011111111000100000110000000000
+11101000110000001000000000000000
+00011111111000010000010000001111
+00011111111100011111111000000000
+11000000000001010000001111001001
+11000000000000101000001111000111
+11000000000000001000001111000000
+11000000000000100100101100011000
+00100000001000000100101011111111
+00011000010000100111111000000000
+11000000000000101100101100001001
+01110000010011001001110100000001
+11000000000000011100101100011000
+01110000010011001001110100000000
+11000000000000100100101100011000
+00100000011000000000000000000000
+00100000010000000000001111001001
+00100000001000000100101100010001
+11101000110000001000000000000000
+11000000000000001000010000100110
+00100000011000000000000000000000
+00100000010000000101001001111010
+00100100011110100000000000000000
+00100000010000000000001111010000
+00100000001000000110110111111101
+01101000000000001100000100110010
+11000001000000001000000000000000
+01101000000000001100001111001101
+00100000011110100000000000000000
+00011111111000100010001000000000
+01110000010000111100110100000000
+00011010001000100111111000000000
+11000000001010000100110111011100
+00100000011000000000000000000000
+01101000000000001000000001111101
+11000000000000011000001111011101
+11000000000000111000001111101000
+00100000001000000101101110010010
+01101000000000001000010011011111
+01100000000000001000010001000101
+11000000000010011000001100110100
+11000000000110011000001111100010
+00100000001000000101110001011000
+01101000000000001000010001001101
+01111001001000000111111000000000
+01100000000000001000010001001101
+01110000000010110111110100000001
+00100000010000000111110000100111
+00100000001000000101110010000011
+01101000000000001000010011011111
+01100000000000001000010001000110
+00100000001000000101110011110011
+01111000010101000111110000000000
+00100000010000000110000111011001
+01101000000000001000000001001000
+00100000011110100000000000000000
+11000010100000111101111100010000
+11000000000000010000001111110011
+11000000000000111000010000000000
+00100000001000000101111011100000
+00011000000000000111111000010001
+00100000010000000110000110110101
+01101000000000001000000001001001
+00011111111000100000010000000000
+11000000000000000000001111111011
+11000000000001110000001111111011
+11000000000011100000001111111011
+00100000011000000000000000000000
+11100000101000001000000000000000
+01101000000000001100011100000010
+11100000101000001000000000000000
+01011000000000000000000000001110
+00100000001000000101111110100110
+00100000010000000110000001010101
+01110000000000000111001001100100
+00100000011000000000000000000000
+01101000000000001000000001111100
+00100000001110100000010000001000
+00100000010000000110000111011001
+01101000000000001000000001111100
+00100100011110100000000000000000
+01101000000000001000000001010101
+00100000011110100000000000000000
+11000000000000110000010000010111
+11000000000010000000010000001101
+00100000001000000110001000111110
+01101000000000001100011101001000
+11000001000000000000000000000000
+11000000000000001000010000010101
+11011000111000000000000000001010
+00100000010000000111111001010011
+00100100011110100000000000000000
+01110000010001110100100000000000
+00100000001000000110001010011011
+00100000011101001000000000000000
+00100000001000000000010000010111
+01101000000000001000000101110111
+11000010100000010110001010011011
+11000010100000000000010000011010
+01101000000000001100001001011110
+00100000001110100110001011000111
+01101000000000001000010001001101
+11000100000000011000000000000000
+11000100000000010000000000000000
+01101000000000100000010001100101
+11011000010000000000001100100000
+10011000010000001000010000000000
+00011100010000100111111000000000
+10011000010001100111110000000000
+00100100011000010000000000000000
+00100000001000000110001001100111
+11101000110000001000000000000000
+01100000000000001100110010010000
+00100000011000000000000000000000
+00100000010000000101010010111101
+01101000000010001000000000010111
+00100000010000000011101010000010
+00100000010000000011101010000111
+01111000001010000111110000000000
+11011001011000000001010101111100
+00100000001000000101010001111111
+01110000010001000011111000000001
+01110000010001000011111100000000
+00100000001000000101001101001110
+00100000010000000101001111011101
+00100000010000000000010000110110
+00100000001000000101010011000001
+00100000001101101000000111100001
+00100000010000000101001111101110
+00100000001000000011101010010001
+01101000000000001100110001000000
+01100000000000100100011011111001
+01101000000000001100010011011011
+11000000000000001000010000111110
+00100000001000000101010011100000
+01110000010001001101101100000000
+00100000001000000101010011101111
+01101000000000001000001111000000
+11000100000000101000000000000000
+01101000000000010000001111011010
+01101000000010010000001111100000
+10011000010001100111111000000000
+00100100011000010000000000000000
+00100000001000000101010101111110
+01101000000000001000001111010111
+11000011100000101000000000000000
+01101000000000001000001101000001
+00100000001110100101011000100110
+00100000001000000101100010010000
+01101000000000001100010001000000
+11000000000000111000010001100101
+11000000000001111000010001101001
+11000000000000110000010001011000
+11000000000000010000010001010101
+11000000000010011000010001010011
+00100000001000000101011000111010
+00011000000000000000010000000001
+00100000001000000101100010010010
+01011000000000000000000000001010
+01100000000000010000001111101111
+00100000001000000101011010010011
+01110000000010110111110100010010
+00100000010000000111110000110011
+00011000000000000000010000000001
+00100000001101001101100010010010
+01110000000010110111110100110100
+00100000010000000111110000100111
+01101000000000001100110001001001
+11000000000000010000010001100001
+00100000001000000000010001100011
+01110000000010110111110101000110
+00100000010000000101011000100000
+00011000000000000000010000000001
+00100000001000000101100010010010
+01101000000000001100110001001000
+11100000101000001000000000000000
+00011000000000000000010000000010
+00100000001000000101100010010010
+00011000101000001000101111111111
+01101000000001000100110001001100
+11100000101001000000000000000000
+11101000110001000000000000000000
+11100000101001000000000000000000
+00011000000000000000001000000010
+00100000001000000101100010001010
+01101000000000001100010001000100
+11000000000001001101011100011001
+11000000000000010000010001110101
+11000000000000111101011100001101
+00100000001000000101011001010110
+01011001000000000000001100000010
+01100000000000011100010010110101
+01011000000000000000000000000001
+11100000101000001000000000000000
+01011000000000010000000000010000
+11100000101000011000000000000000
+00100000001000000101011011110001
+00001001100000000000000000011000
+01111000001010000111110000000000
+11011011011000000000011001100100
+00011111111011110111111000000000
+00011111111100010111111000000000
+11100000101000011000000000000000
+00100000001000110011011101011100
+01111000001101101111110000000000
+01101000000000001000000000010111
+00011111111000001010001000000000
+00100000001000000101010010101111
+11101000110000011000000000000000
+01100000000000011000001111111001
+11000000001010010000010010001101
+11000000000000010000010010100100
+11000000000010010000010010010011
+00100000001000000101100100000111
+01110000010011010001011100000001
+01101000000000010000001111111010
+11000000000100001000010010010001
+00100000001000000101100111101101
+11011000110000000000001101001001
+00100000001000000000010000100110
+01101000000000010000001111111010
+00011111111001100111110000100001
+00100000010000101000010010010001
+01101000000000010000001111111010
+00011111111001100111110000110001
+00100000010000101000010010100010
+01101000000000010000001111111010
+01101000000010010100110010011001
+00011000010000001000010000000001
+10011000010001100111110000000000
+00100000001000101000010010011111
+00100000001000000101100111001010
+01110000000010110111110100110100
+00100000010000000111110000100111
+00100000001000000101100111001010
+01110000010000010011000100000001
+00100000011000000000000000000000
+01110000000010110111110100000011
+00100000001000000101011000100000
+01101000000000001100010001000100
+11000000000011011000010111011111
+11000000000011101000010111011111
+11000000000010001000010101110011
+11000000000001001000010100100101
+11000000000000101000010100010011
+11000000000000111000010011000111
+11000000000010011101100001011100
+11000000000000011000010010110111
+11000000000001011000010010111010
+11000000000001101000010010110010
+00100000001000000101011001100110
+01101000000000010000001111111010
+11000000000000111000010010110101
+00100000001000000101011111010110
+01110000000000111111110000000111
+00100000001000000101011100101001
+01101000000000010100110001001010
+11100000101000010000000000000000
+00100000001000000101100010001010
+01101000000000010000001111111010
+11000000000110000101011100101000
+11000000000001110000010010111110
+00100000001000000101011111000110
+01101000000000001100110001001001
+11000000100000000101011111000110
+01101000000000001100110001011100
+11000000000000011101011111000110
+00011000101000100000010000000000
+01110000010011000100100100000001
+00011000010000100000101000000000
+01110000000000111111110000000101
+00100000001000000101011100101001
+00100000010000000101011101111011
+00100000011101000000000000000000
+01101000000010010100010011000000
+01011000000000000001100000010010
+10011000010001100111110000000000
+00100000001000101000010011100000
+01011000000000000001100000001111
+10011000010001100111110000000000
+00100000001000101000010011100010
+01011000000000000001100000001010
+10011000010001100111110000000000
+00100000001000101000010011100110
+01011000000000000001100000000001
+10011000010001100111110000000000
+00100000001000101000010011100100
+00100000001000000101011101010100
+01101000000000001100110001011111
+11011000010000000000000000000000
+11111001001000000000010000000000
+10011000010000010111111000000000
+11000000100000000101011100101000
+01101000000000001100110001011111
+11111001001000000111111000000000
+01100000000000001100110001011111
+00100000001000000000010011101000
+11011000111000000000000000000000
+00100000001000000000010011010111
+11011000111000000000000000000001
+00100000001000000000010011010111
+11011000111000000000000000000011
+00100000001000000000010011010111
+11011000111000000000000000000010
+00100000001000000000010011010111
+01101000000000010100010011000000
+00011111111000100010001000000000
+01101000000010010100010011000100
+00011000010000100010010000000000
+00100000010000000000010011101111
+00100000001000101000010011111010
+00100000001000000101011100101000
+11011000110000000100010100000100
+11101000110000010000000000000000
+00100000011110100000000000000000
+11101000110000011000000000000000
+11101000110000010000000000000000
+10011010001001100111110000000000
+00100000011000101000000000000000
+00011000110000001000110111111101
+11101000110000001000000000000000
+10011000110000001000110000000000
+00100000001000000000010011110000
+00011000110000001000110111111001
+11101000110000010000000000000000
+01100000000000010100110001000001
+00100000010000000000010100001000
+00100000001110100101011100101000
+00011000110000001000110111111100
+11101000110000010000000000000000
+00011111111000001111111111111111
+01100000000000010100110001000011
+01110000010001000100010000000111
+01101000000000100100110001000001
+01100000000000100100010001000101
+00011000000000000000010000001001
+00100000001000000101100010010010
+11101000110000010000000000000000
+11101000110000001000000000000000
+10011000110000001000110000000000
+11101000110000010000000000000000
+00100000011110100000000000000000
+11101000110000010000000000000000
+10011010010001100111110000000000
+00100000011000101000000000000000
+11101000110000001000000000000000
+10011000110000001000110000000000
+00100000001000000000010100001011
+11011001011000000000000000000011
+00011000000000000111111000000001
+01100000000000001100010001000101
+00100000010000000101101001110100
+00100000010000000101101001111101
+00100000001110100101011101000110
+00100100001000010000010100100011
+01111000010101000111110000000000
+11100000101000010000000000000000
+11101000110000010000000000000000
+11100000101000010000000000000000
+00011001011000001001011111111111
+00100000001000101101011101000110
+11101000110000001000000000000000
+10011000110000001000110000000000
+00100000001000000000010100010111
+00011000110000001000110000000010
+00100000001000000000010100100000
+01101000000010010100010011000000
+01011000000000000010101000000000
+10011000010001100111110000000000
+00100000001000101000010101100101
+01011000000000000010101001010000
+10011000010001100111110000000000
+00100000001000101000010101110000
+01011000000000000010100000000011
+10011000010001100111110000000000
+00100100001000101101011100101000
+01101000000000010100010010111100
+01100000000000010000001010100000
+01111000001101000111110000000000
+00100000010000000000010110110111
+00100100001000010000010101000001
+01101000000010010000001010100000
+00100000010000000000010110111111
+11000000000000001000010101000001
+00100000010000000000010110111011
+00100100001000101000010100111111
+01111000010101000111110000000000
+00100000010000000000010101000011
+00100000010000000000010110100101
+00100000010000000000010110111111
+00100000010000000000010101001011
+00100000001000000000010101000001
+00100000010000000000010110100101
+00100000001000000000010100110010
+00100000001101000101011100101000
+00100000001000000000010111011101
+01101000000000010000001010100000
+01100000000000010100010001000110
+01101000000000001100110001000111
+00011111111000100111001000000000
+00100000010000000000010111010100
+11011000101000000100010001001000
+00100000010000000111111001000101
+00100000001000000000010111010111
+01101000000010010100110001000101
+00011000010011001111111000000000
+11000000100000101000010101011101
+00100000010000000000010111010001
+01101000000000010000001010100000
+11100000101000010000000000000000
+00100000010000000000010111010111
+01011000000000000100010100000100
+10011000010000001000110000000000
+11101000110000001000000000000000
+00011000110000100000010000000000
+00011111111000100111001000000000
+00011111111000001111111000000101
+01100000000000001100010001000101
+00100000010000000000010111010001
+00011000010000100000110000000000
+00100000010000000111111001000101
+00100000001000000000010111010111
+00100000010000000000010111010001
+01101000000000010000001010100000
+11100000101000010000000000000000
+01101000000000010100110001000101
+11100000101000010000000000000000
+00100000010000000000010111010111
+01110000010001000100010100000111
+00100000011000000000000000000000
+00100000010000000101101100001000
+11101000110000001000000000000000
+00011111111000100111001000000000
+00011111111000001111111000000010
+01100000000000001100010001000101
+00011000110000001000110111111011
+11101000110000010000000000000000
+11100000101000010000000000000000
+00011000110000001000110000000011
+00100000010000000111111001000101
+00100000001000000101100010001010
+11011000010000000010101001010000
+00100000010000000101101100001100
+00100000001000000000010101100110
+11011001011000000000000000000010
+01101000000000010100010010111100
+01100000000000010000001010100000
+01110000000011010101110000000000
+01111000001101000111110000000000
+00100000010000000000010110110111
+00100100001000010000010110011011
+01101000000010010000001010100000
+00100000010000000000010110111111
+11000000000000001000010110011110
+00100000010000000000010110111011
+00100100001000101000010110010111
+01101000000000001000110101011100
+11000000000000001000010110011110
+00100100001101000000010110001000
+01111000010101000111110000000000
+01101000000000001100110001000111
+00011111111000001111111000000100
+01100000000000001100010001000101
+00100000010000000000010111010111
+00100000001000000000010110010010
+01101000000000001100110001000111
+00011111111001100111110000010000
+00100000001000101000010110011110
+01101000000000001100010001000101
+00011111111001100111110000010000
+00100000001000101000010110011110
+01101000000000010000001010100000
+00011111111000001111111111111111
+01100000000000010000110101011010
+00100000010000000000010110101110
+01101000000000010000001010100000
+01100000000000010000110101011000
+00100000010000000000010110101001
+00011001011000001001011111111111
+00100000001000101000010110011001
+00100000010000000000010110100101
+00100000001000000000010101111000
+01110000000011010101110000000001
+00100000001000000000010110010111
+01101000000000010000001010100000
+01100000000000010000110101011010
+00100000001000000000010110100010
+01101000000000010000001010100000
+00011111111000001111111111111111
+01100000000000010000110101011010
+00100000001000000000010110100010
+00100000001101000101011100101000
+00100000010000000000010110101110
+00100000001000000000010111011101
+01101000000010010000001010100000
+00011000010000001000010000000001
+01100000000010010000001010100000
+00100000011000000000000000000000
+01101000000000001100110001000111
+01100000000000001000000100000011
+00011111111000100111001000000000
+00100000010000000000010111010100
+00100000001000000111111001000101
+00100000010000000000010111010001
+01101000000000010000110101011000
+11100000101000010000000000000000
+01101000000000010000110101011010
+11100000101000010000000000000000
+01101000000000001000000100000011
+00011111111000100111001000000000
+00100000010000000111111001000101
+00100000001000000000010111010111
+01101000000010010000001010100000
+01101000000000010100010010111110
+10011000010001100111110000000000
+00100000011000000000000000000000
+01101000000000010100010011000000
+01101000000010010100110001000101
+10011000010001100111110000000000
+00100000011000000000000000000000
+11011000110000000100010100000100
+00011000010000100010001000000000
+11101000110000010000000000000000
+00100000001110100000010111001010
+11101000110010010000000000000000
+01100000000010010100110001000101
+10011010001001100111110000000000
+00100000001000101000010111001100
+11101000110000001000000000000000
+10011000110000001000110000000000
+00100000001000000000010111000001
+01011000000000000000000000000001
+00100000011000000000000000000000
+11101000110000001000000000000000
+01100000000000001100110001000111
+00100000010000000000010111011010
+01011000000000000000000000000000
+00100000011000000000000000000000
+01101000000000010000001010111001
+00011111111000100000101000000000
+00100000011000000000000000000000
+01101000000000010000001010110111
+00011111111000100000110000000000
+00100000011000000000000000000000
+00011000101000100111111000000000
+01100000000000010000001010111001
+00100000011000000000000000000000
+00011000110000100111111000000000
+01100000000000010000001010110111
+00100000011000000000000000000000
+00100000010000000000010111010001
+00100000001000000101100010001010
+01101000000000001100101110101011
+00011111111000001000010000000001
+00011000010000010000010000000011
+01100000000010001100101110101011
+00011111111011111111111000000111
+11011000110000000100101110101101
+10011000110000001000110000000000
+01101000000000001100110001100010
+00011111111000001111111111111011
+00011111111000100111001000000000
+11011000101000000100010001000101
+00100000010000000111111001000101
+01101000000010001100110001100010
+00100000001000000101100010010010
+00100000010000000101011000011100
+00100000001000000101100010110000
+00011010011000100111111000000000
+11000000000000011000010111111001
+11000000000001010000010111111101
+11000000000010010000010111111011
+11000000000000010000010111111111
+00011111111001100111110000001101
+00100000001000010101100011000000
+01100000000000001100110001001000
+01110000000010110111110100100111
+00100000001000000101011000100000
+01110000010011000101110000000000
+00100000001000000101100100111000
+01110000000010110111110100110011
+00100000001000000101011000100000
+01110000000010110111110100101011
+00100000001000000101011000100000
+01011000000000000000000000010100
+01100000000000010000001111101111
+00100000011000000000000000000000
+01101000000000001100010000111110
+00101000001000000000011000000001
+00100000001000001000011000000110
+00100000001000000101100010100111
+01101000000000001100010000111111
+00100000001110100000011000001001
+00100000001000000101100010100111
+01101000000000001100010000111110
+01111001001111111111111000000100
+01100000000000001100010000111110
+00100000011000000000000000000000
+11101000110000001000000000000000
+11000000000000001000011000010100
+11000000000000100000011000011010
+11000000000001001000011000010010
+00100000001000000101100011111000
+01110000010011000100100100000011
+00100000001000000101100101110100
+01110000010011010001110000000001
+01100000000000001100010010101110
+11101000110000110000000000000000
+11100000101000110000000000000000
+01110000000010110111110101000010
+00100000001000000101011000100000
+00100000010000000111010010101000
+00100000001000101000011000011101
+00100000001000000101100101101000
+01110000010011000100100100000010
+00100000001000000101100101101010
+01110000010011000101110100000000
+00100000010000000011111110000110
+00100000010000000011111101111110
+00100000010000000011111110100100
+00100000001000000011111011001100
+01110000010000100001001100000000
+01110000010001001000101100000000
+01110000010011000101110000000000
+01110000010011000100100100000000
+01110000010011000101111100000000
+01110000010011000101110100000000
+00100000001000000011111011010000
+01011000000000000000000000000000
+01100000000000100100101110101001
+00100000011000000000000000000000
+11000110100100011000000000000000
+01101000000000100100110100011101
+01100000000000100100110101001111
+00100000010000000000011001010011
+00100100001101000000011001000110
+01110000010011000000101100001010
+00100000010000000000011001111001
+01101000000000001100101111101111
+11000001111111111000000000000000
+01101000000000001100110100100010
+00100100011110100000000000000000
+00100000010000000000000110110010
+00100100011101000000000000000000
+01101000000000001000101101111111
+00100100011110100000000000000000
+00100000010000000011110010101011
+01101000000000011100001000010000
+00100000011110100000000000000000
+01101000000000001100000100110001
+00100000011110100000000000000000
+01101000000000011100110101010111
+00100000010000000111111010001010
+01100000000010100100000111111100
+00100000001000000011110011011010
+00100000010000000000000110110010
+00100100011101000000000000000000
+01101000000000001000101101111111
+00100100011110100000000000000000
+00100000010000000011110010101011
+01101000000000011100001000010000
+00100000011110100000000000000000
+01101000000000001100000100110001
+00100000011110100000000000000000
+01101000000000001100110000001011
+00100100001110100000011001000010
+01101000000000100100110101001111
+00100000001000000000011001000011
+01101000000000001100101111101111
+11000000111111111000011011001010
+00100000010000000000011001011010
+00100000010101000000011001110101
+00100000010101000000011100110100
+01110000010010111110011000000001
+00100000011000000000000000000000
+01111000010101000111110000000000
+01110000010010111110001000000010
+01101000000000001100110100110100
+11000000000000100000011001100101
+11000000000000101000011001101011
+11000000000000110000011001110001
+11000000000000111000011001101110
+11000000000001000000011001101000
+01101000000000001100110100100010
+00100100010110100011010011011111
+00100000011000000000000000000000
+01110000010011010011010000000000
+01110000010010111110000100001010
+00100000001000000000011001110011
+01110000010011010011010000001000
+01110000010010111110000100010000
+00100000001000000000011001110011
+01110000010011010011010000000011
+01110000010010111110000100000100
+00100000001000000000011001110011
+01110000010011010011010000000010
+01110000010010111110000100000011
+00100000001000000000011001110011
+01110000010010111110001000000001
+01110000010010111110000100001000
+01110000010010111110011100000000
+00100000001000000011010011011111
+11011000101000000000110011010101
+11011000110000000100110100110100
+11011111001000000000000000010100
+00100000001000000111111001000101
+01110000010010111110100000000000
+11011001011000000000110100000000
+00110100011100110000001000000000
+00100000010000000000011010100000
+00100100001101111000011010001001
+00100000010000000000011010101111
+01101000000000001100101111100000
+00011111111000001111111000000001
+01100000000000001100101111100000
+01110000010011010010001000000000
+01101000000000001100101111101111
+11000000111111111000011010011111
+00100000010000000000011010011011
+01110000010010111110011100000000
+01110000010010111110011000000000
+00100000011000000000000000000000
+01110000010011010010001000000001
+01101000000000001100101111100111
+00011111111000001111111000000001
+01100000000000001100101111100111
+01101000000000001100101111101111
+11000000111111111000011010101011
+01101000000000001100101111100111
+11000000011111111000011010101100
+01101000000000001100101111100111
+11011000010000000000000000010000
+10011000010001100111110000000000
+00100000001000010000011101010011
+01101000000000001100101111101000
+00011111111000001111111000000001
+01100000000000001100101111101000
+00100000000000000000000000001010
+11000000100000111000011001111010
+00100000001000000000011101010011
+01011000000000000000000000000000
+01100000000000100000110011010101
+01100000000000100100110100110100
+00100000011000000000000000000000
+00100000001000000000011011100100
+01111000010101111111110000000000
+00100000010000000000011110101011
+00011000000000000010101000000000
+01101000000000100100110000000000
+10011000000000000001001000000000
+01101000000010001000000000010111
+00100000010000000011101010000010
+00100000010000000011101010000111
+00100000010000000000011101101011
+00100000010101111000011110100101
+00100000011000000000000000000000
+00100000011000000000000000000000
+01110000010011010010001000000000
+01110000000010110111110100110010
+00100000001000000111110000100111
+00100000010000000000011100011001
+01101000000000001000110010110011
+11000001100000010000000000000000
+01101000000000001100101111011111
+00100000011110100000000000000000
+10011000000000000111001000000000
+11011000110000000000110010110101
+11011000101000000000110100010111
+00100000010000000111111001000101
+01101000000000001000110010110100
+00101111111000011111000000001000
+00100100011000001000000000000000
+01101000000000001000110010110101
+11000000011111111000011010111111
+01100000000000001100110010010000
+00100000011000000000000000000000
+01110000010011010101101000000001
+00100000011000000000000000000000
+01111001001000000000000000100011
+00100000010000000000011011000110
+00100000010000000000011010000101
+01110000010010111110111100000001
+00100000011000000000000000000000
+01110000010010111110000000000000
+01110000010010111110100101001110
+01101000000000100100101111101011
+00100000001000000000011100100110
+00100000010000000000011011000110
+01101000000000001100101111100110
+11000000000000001011010011011111
+01101000000000001100101111101111
+11000000000000001000011011010010
+11000000000000010000011011010101
+11000000000000011000011011011000
+00100000001000000011101111110001
+01110000010010111110111100010001
+01110000000011010011011110101010
+00100000001000000000011011011010
+01110000010010111110111100010010
+01110000000011010011011101010101
+00100000001000000000011011011010
+01110000010010111110111100010011
+01110000000011010011011100100010
+01110000000011010011100000000010
+01101000000000100100110000000110
+01100000000000100000110100111001
+01110000000011010011110100000000
+11011010001000000000110100110111
+11011000010000000000000000000111
+00100000010000000000011100010100
+00100000010000000000011100110100
+00100000010000000000011001011000
+00100000001000000011010011011111
+01101000000000001100101111101111
+11000001011111111000000000000000
+11000000000010001000011011101010
+11000000000010010000011011101100
+11000000000010011000011011101110
+00100000011000000000000000000000
+01110000010010111110111100000010
+00100000001000000000011010000101
+01110000010010111110111100000011
+00100000001000000000011010000101
+01110000010010111110111111111111
+01110000000010110111110100110001
+00100000010000000111110000100111
+01101000000000100000110100011001
+00100000010000000000011100100110
+00100000001000000000011010000101
+01111001001000000000000000100011
+00100000010000000000011100100111
+00100000010000000000011101010011
+01101000000000001100101111101111
+11000001111111111000000000000000
+00100000010000000000011100000110
+01011000000000000000000000000000
+01100000000000010100110000000100
+00100000010000000011110010101011
+00100000000000000000011111010000
+01101000000000001100110000000100
+11000000011111111000011010101100
+00100000010000000000011010100000
+00100100001101111000011100001111
+00100000010000000000011010011011
+01111001001000000000000000100011
+01110000000010110111110100111100
+00100000001000000111110000100111
+01110000000011010011011111111111
+01101000000000001100101111100010
+01100000000000001000110100111000
+01101000000000100100110000000110
+01100000000000100000110100111001
+11011000010000000000000000000110
+11011010001000000000110100110111
+00100000010000000000011100010100
+00100000001000000000011100110100
+01101000000000010100110000000100
+00011111111000001111111000000001
+01100000000000010100110000000100
+00100000010000000000011101010011
+00100000001000000000011011111100
+01100000000010001100101111100001
+00011000010000100111001000000000
+11011000101000000000110011010101
+00011010001000100000110000000000
+00100000001000000111111001000101
+01101000000000001000110010110100
+00011111111010010111111000000000
+01100000000000001100101111011111
+00100000011000000000000000000000
+01101000000010001100110000100010
+01011000000000000100110000010001
+10011000010000001000101000000000
+00011010001000100111111000000000
+11100000101000001000000000000000
+00011000010000001000010000000001
+00011000010000010000010000000111
+01100000000010001100110000100010
+00100000011000000000000000000000
+01100000000000100100110000000000
+11011010001000000000000000000000
+11011111001000000000000000000100
+11011000110000000100110000000000
+11101000110000001000000000000000
+10011010001000001010001000000000
+11000010000000000000011100101010
+00011010001000100111111000000000
+01100000000000010100110000001100
+01101000000000001100110000001100
+01101000000010001100110000001101
+10011000010000001111111000000000
+01100000000000001100110000001110
+00100000011000000000000000000000
+01101000000000001100101111100001
+00011111111000001111111000000010
+01100000000000001100101111100011
+01101000000000001100101111100010
+01100000000000001000110011110101
+01101000000000001100101111100001
+00011111111010011111111000000000
+01101000000010001100101111100000
+00011000010000010000010000000011
+00011000010000111000010000000000
+10011000010000011111111000000000
+01101000000010001100110000001010
+10011000010000001111111000000000
+11100000101000001000000000000000
+01101000000000001100101111101111
+11000000111111111000011101000110
+01101000000000001100101111100010
+11100000101000001000000000000000
+01101000000000001100101111100001
+10011000000000000111001000000000
+01101000000000001100101111100010
+11000000000000001000011101010001
+11011000110000000000110011010101
+00100000010000000111111001000101
+01101000000000001000110011010101
+11000000000000011000011101001111
+00100000011000000000000000000000
+01110000000011001101010100000010
+00100000011000000000000000000000
+11011000110000000000110011010110
+00100000001000000111111001000101
+01101000000010001100101111101010
+00100000010000000000011101011001
+00011000010000001000010000000001
+00011000010000010000010000000011
+01100000000010001100101111101010
+00100000011000000000000000000000
+01101000000000001100110000000000
+00011111111000010111111000000011
+00011111111011111010001000000100
+01011000000000000100101111110000
+10011010001000001111111000000000
+10011000010000001000110000000000
+11101000110000001000000000000000
+01100000000000001100101111101001
+00100000011000000000000000000000
+01111000010001001111110000000000
+01111000010000111111110000000000
+01011000010101010101010101010101
+10011000000000000001111000000000
+01101000000000001100101111101001
+00011111111011011000010000000000
+01111001001000000000010000000001
+00011000010000110001110000000000
+00100000011000000000000000000000
+00100000010000000000011101100010
+01111000001001101111110000000000
+01111000001100001111110000000000
+01111000010100000111110000000000
+01111000001010000111110000000000
+01101000000000010100101111100100
+10011000000000000011011000000000
+00110111110000011000010000000000
+00100100001011000000011110100101
+01111000010001101111110000000000
+01111000001001011111110000000000
+01111000001000111111110000000000
+01111000001001001111110000000000
+00001001100000000000000000001000
+00011001100010010111111000000000
+01100000000000001100110000001111
+01101000000010001100110000001110
+10011000010001100111110000000000
+00100100001000101000011110100101
+00001001100000000000000000001000
+00011001100010010111111000000000
+01100000000000001000110010110011
+01101000000000001000110010110011
+01101000000010001100101111100010
+10101000010000000000111000000000
+00100100001000001000011110100101
+00001001100000000000000000001000
+00011001100010010111111000000000
+11100000101000001000000000000000
+00011111111010010111111000000000
+00011111111000010111001000011111
+00100000001000101000011110001111
+00001001100000000000000000001000
+00011001100010010111111000000000
+11100000101000001000000000000000
+11000010000000000000011110001011
+00011000101000100010001000000000
+00001001100000000000000000001000
+00011001100010010111111000000000
+01100000000000001100110000010000
+00011010001000100000101000000000
+00001001100000000000000000011000
+01111000001010000111110000000000
+11011011011000000000011001100100
+00011111111011110111111000000000
+00011111111100010111111000000000
+11100000101000011000000000000000
+01111000010001011111110000000000
+00100000001000110000011110100101
+01111000001101111111110000000000
+01101000000000001000000000010111
+00011111111000001010001000000000
+00100000010000000011101010110110
+01111000010001101111110000000000
+00100000010000000011101001111010
+01101000000000001100110000010000
+00011111111000100010001000000000
+00100000001000000000011100011101
+01111000010011011111110000000000
+01111000010001011111110000000000
+00100000001000000011011101011100
+00100000010000000011101001111010
+01101000000010001100101111101001
+00100000001000000011101010010001
+00100000010000000101001111010010
+01101000000000100100110000000000
+10011000000000000001001000000000
+00100000010000000000011101100010
+00100000010000000000011110101000
+01111001001000000010101000000000
+01111000001011101111110000000000
+01111000001100000111110000000000
+01111000010100001111110000000000
+00011001001100010111111000000000
+00011111111011001111111000000000
+00011111111100011111111000000000
+00001000000000001000011000101000
+01111000010011101111110000000000
+01111000001011011111110000000000
+01111000001000111111110000000000
+01111000001001001111110000000000
+01101000000000001100110000001110
+00001000000000001000011000001000
+01101000000000001100101111100011
+10011000000000000111001000000000
+11011000110000000000110011110101
+11101000110000001000000000000000
+00001000000000001000011000001000
+11000010000000000000011111000001
+01111000001001000111110000000000
+00001000000000001000011000011000
+01111000010001000111110000000000
+00110111110100111000001000000000
+00100000000000000000000001100100
+01111000010011101111110000000000
+01111000010011011111110000000000
+00100000001000000011101001111010
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+                                
+00100000010000000011110001110100
+01111001001111111000000000100101
+01000100100000000100000000000000
+00100000100000000000000000000000
+00100000010000000011101010011110
+00100000010000000110100000000101
+00100000010000000011101111111010
+00100000010000000100110110011000
+01111001001111111000000000100101
+01000100100000001100000000000000
+00100000010000000110101101010011
+00100000010000000101101101100010
+00100000010000000111101110011101
+00100000010000000011111001001111
+01111001001111111000000000100101
+01000100100000010100000000000000
+00100000010101011011111001011111
+00100000010000000111011100011001
+00100000010101011011110011110001
+01111001001111111000000000100101
+01000100100000011100000000000000
+00100000010000000111100000010011
+00100000010000000101001101110011
+00100000010000000100010001001001
+01111001001111111000000000100101
+01000100100000100100000000000000
+00100000010000000011000000111110
+00100000010000000011111001101010
+00100000010000000011000010100001
+01111001001111111000000000100101
+01000100100000101100000000000000
+00100000010000000011001110010010
+00100000010000000011010000000111
+00100000010000000011000000100100
+00100000010000000011110100011100
+00100000001000000011000000010011
+00100000010000000011000000101001
+11000110100001001000000000000000
+01111001001111111000000000001001
+00100000010000000011001010111101
+00100000001000000101001111010111
+01111001001111111000000000100101
+01000100100000110100000000000000
+00100000010000000011001011111110
+00100100001000101011000000110011
+00100000010000000011001010100011
+00011010001000001000110000000001
+11101000110000001000000000000000
+11000010100000000101001101110111
+11000010100000001011000110100111
+00100000001000000011010001110011
+01111001001111111000000000100101
+01000100100000111100000000000000
+00100000010000000011001011000110
+00011111001000100111110000000000
+00100000011000101000000000000000
+00100000010000000011001010100011
+01101000000000001000000000110000
+11000010100000011011000100000011
+01101000000000001000000000110001
+11000010100000001011000110100111
+00100000001000000011010001110011
+01101000000000001100001001110010
+00100000011110100000000000000000
+11000000000000001011000001001110
+11000000000000010011000001010011
+11000000000000011011000001010110
+11000000000000101011000001011011
+11000000000011011011000001001011
+00100000010000000011001011110110
+00100000011000101000000000000000
+00100000010000000011001011111001
+00100000011000101000000000000000
+01110000010000100111001000000000
+00100000011000000000000000000000
+01110000000001000001110000011011
+01110000010000100111001000000000
+00100000011000000000000000000000
+01111001001000000000000000011100
+01111001001111111000000000011110
+01110000000000001000111011111111
+01110000000000001000110000011111
+00100000001000000011000001001001
+01111001001111111000000000011100
+00011000000000000011011000000000
+00100000001000000011000001001001
+00100000010000000011001011111001
+00100000011000101000000000000000
+00011000000000000000010000000001
+01110000000000010111100000000101
+00100000001000000011000001101000
+01111001001111111000000000100101
+01000100100001000100000000000001
+01101000000000001100000100110010
+11000000000000001011000001100100
+01101000000000110100001001110100
+00100000001110100011000001001001
+01110000010001111111001100000001
+01110000000000000101010100000011
+00100000001000000011000001100111
+01101000000000110100001001110100
+00100000001110100011000001001001
+01100000000000110000000001000000
+00011000000000000000010000100101
+01111001001111111000000000100101
+01000100100001001100000000000001
+01101000000000001000000011110011
+00100000001110100011000001101111
+00011111111010011111111000000000
+00011111111100100111111000000000
+00011111111000001111111111111111
+01100000000000001100000101000110
+01100000000000001000000011110010
+01110000000000001000110100011111
+01111001001111111000000000001100
+00100000010000000011001011010110
+00100100001000101011000010010000
+00100000010000000011101111010001
+01100000000000001000000001110111
+01100000000010001000000001111100
+01101000000000110100001001110100
+01100000000000110000000001000000
+01111001001111111000000000100101
+01000100100001010100000000000001
+00011000000000000111111000000000
+00101000010000011111111000000001
+01111101001000001111111000000101
+01111001001000000111111000000011
+01100000000000001000000000110000
+01110000000010110111110100000011
+00100000010000000111110000100111
+00011000000000000111111000000000
+01111001001000001111111000000100
+01100000000000001000000001001100
+01011000000000000000000000000000
+01111001001000000111111000000001
+01100000000000001000000000110001
+01111000001101001111110000000000
+00100000010000000011001010111101
+01111000010101001111110000000000
+00011000000000000000111000000100
+01101000000000010100000101011001
+00100000010000000111111001001100
+00100000001000000011000001001001
+01111001001111111000000000100101
+01000100100001011100000000000001
+01101000000000110100001001110100
+01100000000000110000000001000000
+00101000010000011111111000000001
+00100000001000001011000010011001
+00011000000000000000010000000111
+00100000010000000100100000100110
+00100000001000000011000001001001
+11011000101000000000000100000011
+11011111001000000000000000001000
+00100000010000000111111000111011
+00011000000000000000111000000111
+00100000010000000100100010011000
+01110000000010110111110100000100
+00100000010000000111110000100111
+00100000001000000011000001001001
+11000110100011100000000000000000
+00011000000000000000111000000010
+00100000010000000111111001010011
+01111101001110100000000000011100
+00100100001110100011000010100111
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100100001100100000000000001
+01101000000010010100000101011011
+00011000000000000000111000000100
+00100000010000000011100000111101
+00100000011101000000000000000000
+00100000010000000011101000010010
+00011000000000000100100000000000
+00100000011000011000000000000000
+01111001001111111000000000001011
+01111001001111111000000000000000
+00011100010000001100001000000001
+00101000000011111111111000011110
+01111001001000001100100000000010
+00101100001000000000010000000000
+00100100001000001011000011010011
+01111001001111111000000000100101
+01000100100001101100000000000001
+01101000000000001000000000010010
+00011111111000001111111000000001
+01100000000000001000000000010010
+00100000010000000011101001001001
+00100000010000000011101001000010
+00100000010000000011101001100110
+00100000010000000011101110101110
+00100000010000000011101110110100
+00100000010000000011101111000101
+00100000010000000011011101011100
+00100000010000000011000011000101
+00100000001000000011000010101111
+01111001001111111000000000100101
+01000100100001110100000000000001
+01101000000000001000000010001100
+00011111111000001111111111111111
+01100000000000001000000010001100
+00100000011000010000000000000000
+01110000000000001000110000011111
+01101000000000001000000010001110
+00011111111000001111111111111111
+01100000000000001000000010001110
+00100000011000010000000000000000
+01111001010000000000000000011110
+01110000000000001000111011111111
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100100001111100000000000001
+00100000010000000011101001001001
+00100000010000000011101000111011
+00100000010000000011101001100110
+00100000010000000011101110111010
+00100000010000000011101100111010
+00100000010000000011101101100011
+00100000001011000011000011011110
+00100000010000000011000011000101
+00100000001000000011000010110010
+01111001001111111000000000100101
+01000100100010000100000000000010
+00100000010000000011101011110011
+00100000010000000011101111001101
+00100000010000000011010111100001
+01111001001111111000000000000001
+11000110100001011000000000000000
+01111001001111111000000000100101
+01000100100010001100000000000010
+01101000000000001100001010100100
+11000010100000000100001000100001
+00100000010000000100011101111011
+01101000000000001000000000010011
+00011111111000001111111000000001
+01100000000000001000000000010011
+00100000011000000000000000000000
+01111001001111111000000000001011
+00100000010000000011000011111110
+00100000010000000011101001001001
+00100000010000000011101000111011
+00100000010000000011010011100001
+00100000010000000011101110111010
+00100000010000000011101100111010
+00100000010000000011101101100011
+00100000001011000011000011111000
+00100000011000000000000000000000
+00100000010000000011101111001101
+00100000010000000011010111100001
+01111001001111111000000000000001
+00100000001000110011000011100101
+00100000010000000100011110011011
+00100000001000000011000011101010
+11011001011000000000011000000000
+00110100011100110000001000000000
+00011100010000010111111000000011
+11000000100000001011000011111111
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100100010010100000000000010
+01111000001101001111110000000000
+01111000001110000111110000000000
+01101000000000010100000101010101
+00100000001110100011000100001100
+00011000000000000000111000001101
+00100000010000000111111001010011
+00100100011110100000000000000000
+01111001001111111000000000100101
+01000100100010011100000000000010
+01101000000010010100000101010111
+00011000000000000000111000101000
+00100000010000000011100000111101
+00100000001101000011000101001110
+00011000000000000000111000000100
+00100000010000000111111001010011
+00100100001110100011000100100111
+01101000000000001000000001001100
+11000010100000100011000100011010
+00011000000000000000010000000100
+00100000010000000100100000100110
+00100000001000000011000100011111
+11011000101000000000000100000011
+11011111001000000000000000001000
+00100000010000000111111000111011
+00011000000000000000111000000100
+00100000010000000100100010011000
+01111001001111111000000000100101
+01000100100010100100000000000010
+01110000000000000011000000000000
+00100000010000000101101101100011
+01110000010001111111001100000000
+01110000000010110111110100010011
+00100000010000000111110000100111
+00100000001000000011000101001110
+01111001001111111000000000100101
+01000100100010101100000000000010
+00011000000000000001011000000000
+00110100011100110000001000000000
+01101000000000001000000011110100
+00011111111000001111111111111111
+10011100010000101111111000000000
+00101111111000000000011000000000
+00100100001000001011000100100111
+00011000100000100111111000000000
+01100000000000001000000110001011
+00011000000000000100110000000000
+00011000000000000100100000000000
+01111001001111111000000000100101
+01000100100010110100000000000010
+00100000001000011011000101001110
+00100000010000000011101001001101
+11011001011000000000011000000000
+00110100011100110000001000000000
+01111001001111111000000000100101
+01000100100010111100000000000010
+01101000000000100000000011110100
+10011000000000000100001000000000
+00011111111000001111111000000001
+01100000000000100000000011110100
+00101000000011111111111000001100
+01111001001000001100100000000010
+00101100001000000000010000000000
+00100100001000001011000101100100
+01101000000000001000000000001100
+00011111111000001111111000000001
+01100000000000001000000000001100
+00100000010000000011101001000010
+00100000010000000011101110101110
+00100000010000000011101110110100
+00100000010000000011101111000101
+00100000010000000011011101011100
+00100000010000000011000101010101
+00100000001000000011000100110100
+01111001001111111000000000100101
+01000100100011000100000000000011
+01111000010101001111110000000000
+01101000000000010100000101010101
+00100000011110100000000000000000
+00011000000000000000111000001101
+00100000001000000111111001001100
+01111001001111111000000000100101
+01000100100011001100000000000011
+01101000000000001000000010001101
+00011111111000001111111111111111
+01100000000000001000000010001101
+00100000011000010000000000000000
+01110000000000001000110100011111
+01101000000000001000000011110010
+00011111111000001111111111111111
+01100000000000001000000011110010
+00100000011000010000000000000000
+01111001010000000000000000001100
+01101000000000001100000101000110
+01100000000000001000000011110010
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100100011010100000000000011
+00100000010000000011101000111011
+00100000010000000011101110111010
+00100000010000000011101100111010
+00100000010000000011101101100011
+00100000001011000011000101101101
+00100000010000000011000101010101
+00100000001000000011000100111010
+00100000010000000011011101011100
+01101000000000001000000000001101
+00011111111000001111111000000001
+01100000000000001000000000001101
+00011000000000000011011000000000
+01101000000000100000000011110100
+01111001001111111000000000100101
+01000100100011011100000000000011
+00100000010000000011101110101100
+00100000010000000011101001001101
+00011100110000001100110000000001
+00011100001000010100001111111101
+00011100100000010100100111111100
+00100000010000000011101001000010
+00100000010000000011101110101110
+00100000010000000011101110110100
+00100000010000000011101111000101
+00011100010000100111111000000000
+01100000000000100000000101101011
+00011000000000000000100000000000
+00011000000000000000001000000010
+00100000010000000011101111001101
+00100000010000000011100011000001
+01111001001111111000000000100101
+01000100100011100100000000000011
+00100000010000000011101110101010
+00011100001000011100001000000010
+00011100100000010100100111111100
+00100000010000000011101000111011
+00100000010000000011101110111010
+00100000010000000011101100111010
+00100000010000000011101101100011
+00100000010011000011011101011100
+00100000001011000011000110010100
+01101000000000001000000000010000
+00100000001110100011000100110100
+00011111111000001111111111111111
+01100000000000001000000000010000
+00100000001000000011000101110011
+01111001001111111000000000100101
+01000100100011101100000000000011
+01101000000000001000000000001110
+00011111111000001111111000000001
+01100000000000001000000000001110
+00100000010000000011010011101101
+00100000010000000011001110001011
+00100000001011000011000110011111
+00100000010000000011010100001110
+00100100001110100011000110011010
+00100000001000000011000100110100
+01111001001111111000000000100101
+01000100100011110100000000000011
+01101000000000001000000000110000
+01111001001111111111111000000011
+01100000000000001000000000110000
+00100000010000000011010011111001
+01111000010101001111110000000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100100011111100000000000011
+01111000001101001111110000000000
+01111000001110000111110000000000
+00100000010000000011001001001110
+00100000011101000000000000000000
+00100000010000000011111000100101
+00100000010000000011101110101100
+00011100010000001100001000000001
+00100000010000000011101001010100
+00011000000000000100100000000011
+00100000010000000011001001111100
+00100000010000000110101001010100
+00100000010000000110111000010000
+00100000010000000011010101000111
+00100000010000000011101001000010
+00100000010000000011101110101110
+00100000010000000011101110110100
+00100000010000000011101111000101
+00100000010000000011100010111111
+01111001001111111000000000100101
+01000100100100000100000000000100
+00100000010000000101101101111000
+00100000010000000100100110010101
+00100000010000000100100010101001
+00100000010000000011001101111100
+00100100001101101011000111000111
+00100000010000000011101111101100
+00100000010000000011100001110000
+01101000000000001000000000001111
+00011111111000001111111000000001
+01100000000000001000000000001111
+01111001001111111000000000100101
+01000100100100001100000000000100
+00100000010000000110110111101100
+00100000010000000011000111010101
+00100100011101001000000000000000
+00100000010000000011100000010010
+00100100001110100011000111010010
+00100000010000000110101001011100
+00100000010000000011001010010000
+01111000010101001111110000000000
+00100000011000000000000000000000
+00100000010000000011010101000111
+00100000010000000011001101110001
+00100000001000000011000110111011
+00100000001101101011000111011000
+00100000010000000011101111100010
+00100000001000010011000111100110
+00100000010000000011001000000100
+00100100001101000011000111100110
+01101000000000001000000001001100
+11000100000000100000000000000000
+11000011100000011000000000000000
+01101000000000001000000001001011
+11000011100000011000000000000000
+00100000010000000011001000001101
+00100100011110100000000000000000
+01101000000000001000000101111000
+00011111111000001111111111111111
+01100000000000001000000101111000
+00100100011110100000000000000000
+00100000001000000101111011010101
+01111001001111111000000000100101
+01000100100100010100000000000100
+00100000010000000011010100010110
+01111000010101001111110000000000
+01101000000000001000000001001100
+11000010100000100011000111110010
+01101000000000001000000000110000
+11000011000000100011000111110000
+01101000000010001000000001000110
+00100000001000000100100011000100
+00011000000000000000010000001000
+00100000001000000100100000100110
+00011000000000000000111000000000
+01101000000000001000000001001100
+11000010100000011100100010011000
+00011000000000000000111000000100
+11011000101000000000000100000011
+11011111001000000000000000001000
+00100000010000000111111000111011
+00100000001000000100100010011000
+01111001001111111000000000100101
+01000100100100011100000000000100
+01101000000000001000000000110000
+11000100000000010000000000000000
+01101000000010001000000001000110
+01101000000000001000000010101100
+10011000010001100111110000000000
+00100100011000101000000000000000
+00100000010000000011100001101001
+00100000001000000011001010010011
+01111001001111111000000000100101
+01000100100100100100000000000100
+01111000001101000111110000000000
+01101000000000001000000001001011
+11000100000000011000000000000000
+00100000010000000011001000001101
+00100100011110100000000000000000
+01111000010101000111110000000000
+00100000011000000000000000000000
+01101000000000001000000001110010
+00011111111000001111111111111111
+01100000000000001000000001110010
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100100100101100000000000100
+01101000000000001000000000110000
+11000010100000111011001000011111
+01101000000000001100000100110010
+11000000000000001011001000011101
+01101000000000001000011111100001
+00100000001110100011001000011111
+01110000000001111110000100000000
+01110000000010110111110100011000
+00100000010000000111110000100111
+00100000001000000011001000011111
+00100000010000000110001000010110
+00100100010000001100100001010010
+01111001001111111000000000100101
+01000100100100110100000000000100
+00100000010000000011001011110000
+01101000000000001000000000110000
+01111001001000000111111000000111
+01100000000000001000000000110000
+01110000010000100101111000000001
+01101000000000001000000001010101
+11000000100010110011001000101000
+00100000011000000000000000000000
+01110000000001111110000100000001
+01101000000000001000000000110000
+01111001001111111111111000000111
+01100000000000001000000000110000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100100100111100000000000100
+01111000010101000111110000000000
+01101000000000001000000000110000
+11000100000000001000000000000000
+01101000000000010000000000110010
+00100100011110100000000000000000
+01101000000000100000000000110100
+00100000001110000011001000111001
+10011101000001100111111000000000
+00100000001000000011001000111010
+10011100010001100111111000000000
+00011111111001100111110000000100
+00100100011000010000000000000000
+01101000000000001000000000110000
+01111001001111111111111000000001
+01100000000000001000000000110000
+01111000001101000111110000000000
+00100000011000000000000000000000
+00011111111000100000010000000000
+01111001001111111000000000100101
+01000100100101000100000000000101
+01100000000000100000000000110100
+01110000010001110100100000000001
+01101000000000001000000000110000
+01111001001000000111111000000001
+01100000000000001000000000110000
+00011000000000000111111000000000
+01100000000000010000000000110010
+01110000000000001000101000001010
+01110000000000000111001100000001
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100100101001100000000000101
+00100000010000000011001000101110
+00100100011101000000000000000000
+01111000010101000111110000000000
+01110000000000000001000100100000
+01111001001111111000000000001011
+00100000010000000011101110101100
+00100000010000000011001101111111
+11000101000001011011001001100011
+00100000010000000011010100001110
+00100100001110100011001001010101
+01111001001111111000000000100101
+01000100100101010100000000000101
+01111000010101000111110000000000
+00011100010000100111111000000000
+01100000000000100100000101101010
+01111000001110000111110000000000
+01111000001101001111110000000000
+01110000000010110111110100101010
+00100000001000000111110000100111
+01111001001111111000000000100101
+01000100100101011100000000000101
+00100000010000000011101110101010
+00100000010000000011001101110100
+01111000010110000111110000000000
+01111000010101001111110000000000
+00100000010000000011100110000010
+00100000010000000011010011101101
+01111001001111111000000000100101
+01000100100101100100000000000101
+00100000010000000011010100111001
+00100000001101101011001001110010
+00100000010000000011010100001110
+00100100001110100011001001101011
+00100000001000000011001001011010
+00011000000000000000010000000001
+00100000010000000100100001111111
+01101000000000001000000000110001
+01111001001111111111111000000001
+01100000000000001000000000110001
+00100000010000000011101111101100
+00100000010000000011100110101100
+01111000001101000111110000000000
+01110000000010110111110100101011
+00100000001000000111110000100111
+01111001001111111000000000100101
+01000100100101101100000000000101
+11000110100000111000000000000000
+01101000000000001000000000110000
+11000100000000010000000000000000
+00100000010000000011110000100011
+01101000000000001000000010110011
+01101000000010001000000001000111
+01100000000010001000000010110100
+01100000000000001000000001000111
+00011000100000100111111000000000
+01100000000000001000000010110010
+01101000000000001100000111111001
+10011000000000000000100000000000
+01111001001111111000000000001000
+01101000000000001100000101100101
+01100000000000001100000101100111
+01101000000000001100000101100110
+01100000000000001100000101100101
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100100101110100000000000101
+11000110100000111000000000000000
+00100000010000000011100001000111
+00100100011000001000000000000000
+00100000010000000011011110011001
+01101000000000001000000010110100
+01101000000010001000000001000111
+01100000000000001000000001000111
+01100000000010001000000010110011
+01101000000000001000000010110010
+10011000000000000000100000000000
+01101000000000001100000101100101
+01100000000000001100000101100110
+01101000000000001100000101100111
+01100000000000001100000101100101
+01011000000000001111111111111111
+01100000000000010100000101101000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100100101111100000000000101
+01111001001000000000000000001001
+00011010001000100111111000000000
+01100000000000010000000000011110
+00011000000000000111001001010000
+11011000101000000000001111000000
+00011010001000001000110000000001
+11101000110000001000000000000000
+00011010001000100000110000000000
+11000010100000000111111001000101
+11011000101000000000000000110000
+00100000010000000111111001000101
+01111000010101110111110000000000
+01101000000000001000000001110111
+10011000000000000000100000000000
+01110000000000001000101000000001
+00100000001101001011001010110110
+01110000000000001000101000000001
+01101000000000001000000000110000
+11000100000000001000000000000000
+01101000000000001000000001110011
+01100000000000001000000010001010
+01101000000000001000000001110100
+01100000000000001000000010001011
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100100110000100000000000110
+01101000000000010000000000011110
+10011000000000000000101000000000
+00011000000000000111001001010000
+11011000110000000000001111000000
+00100000001110110111111001000101
+11011000110000000000000000110000
+00100000001000000111111001000101
+01101000000010001000000000010101
+11011111001000000000000000000011
+00011000010000001000010000000001
+00101000010000011111111000000011
+00100100001000001011001011001100
+11011000010000000000000000000000
+01100000000010001000000000010101
+00011000010011111111111001010000
+11011010001000000100000001000000
+10011010001000001010001000000000
+11101010001000001000000000000000
+11000010100000001011001011010100
+11000011100000000000000000000000
+11000011100000011000000000000000
+11000010000000000011001011001000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100100110001100000000000110
+11011010011000000011001100001011
+00100000010000000011001100000001
+00100100011000101000000000000000
+00011010001000100111111000000000
+01100000000000010000000000011110
+00011000000000000111110000000000
+00100000011000000000000000000000
+00100000010000000011100001000111
+00100000001000001011001011100111
+01101000000000010000000000011110
+00011111111000001000101000010111
+01101000000000001000000001000111
+11100000101000001000000000000000
+11011010011000000011001100110100
+00100000001000000011001100000001
+01101000000000001000000001000111
+00101111111011111111111000000011
+00100000001000001011001011101100
+00011000000000000111110000000001
+00100000011000000000000000000000
+00011000000000000111110000000000
+00100000011000000000000000000000
+11011010011000000011001100110001
+00100000001000000011001100000001
+01101000000010010000000000011110
+11011010011000000011001101100110
+00100000001000000011001100000001
+01101000000010010000000000011110
+11011010011000000011001101011001
+00100000001000000011001100000001
+01101000000010001100001001110011
+11011010011000000011001100010110
+00100000001000000011001100000001
+01111001001111111000000000100101
+01000100100110010100000000000110
+01101000000010110100001001110100
+11011010011000000011001100001111
+00100000001000000011001100000001
+11011010011000000011001100011100
+00100000001000000011001100000001
+11011010011000000011001101010000
+01111001001111111000000000100101
+01000100100110011100000000000110
+11011010001000000100000001000000
+00011000000000000111001000000011
+11101010001000001000000000000000
+00011010011000100111101000000000
+00011010001000001010001001010000
+11000010000000000011001100000101
+00011000000000000111110000000001
+00100000011000000000000000000000
+11000010100000000011001100000111
+11000010100000011011001100000111
+00011000000000000111110000000000
+00100000011000000000000000000000
+11000010100000011011001100010001
+11000011000000000011001100000111
+00011010001000001000110000010000
+11101000110000110000000000000000
+10011000010001100111110000000000
+00100000011000101000000000000000
+00100000001000000011001100000111
+11000011000000000011001100000111
+00011010001000001000110000010110
+11101000110000001000000000000000
+10011000010001100111110000000000
+00100000011000101000000000000000
+00100000001000000011001100000111
+11000011000000001011001100000111
+00100000010000000011001100111101
+11000010100011011011001100100010
+00101000010011000000000000011011
+00100000001000001011001100100010
+01111001001000000111111000011100
+10011000010001100111111000000000
+00011111111000001111111000000001
+00100000001000010011001100101011
+00011111111000001111111000000101
+00100100001000010011001100000111
+00011000010000100100001000000000
+00100000010000000011001101001001
+00011000000000000111110000000000
+00100000011000000000000000000000
+10011000000000000010010000000000
+00011010001000001000110000000010
+11101000110000010000000000000000
+00100000001110100011001100100111
+00100000010000000011001101001001
+00100000001000000011001100011101
+11000011000000000011001100000111
+00011000000000000111110000000000
+00100000011000000000000000000000
+11000011000000000011001100000111
+00011010001000001000110000000001
+11101000110000001000000000000000
+11000010100000000011001100000111
+00011010001000001000110000010111
+11101000110000001000000000000000
+11000011000000011011001100000111
+00011000000000000111110000000000
+00100000011000000000000000000000
+00011010001000001000110000000001
+11101000110010001000000000000000
+00011100010000100111111000000000
+00101000010011111111111000000001
+00011010001000001000110000000100
+11101000110010100000000000000000
+00100000011000001000000000000000
+00011010001000001000110000001000
+11101000110000110000000000000000
+00100000010000000011100111000000
+00011101000000100111111000000000
+00100000011000000000000000000000
+00011010001000001000110000000010
+00011010001000001000101000000100
+11101000110000010000000000000000
+10011000010000001001011000000000
+00011001011000100111111000000000
+11100000101000100000000000000000
+00100000001000000101010000110100
+11000011000000001011001100000111
+00100000010000000011001100111101
+10011011011000001111111000000000
+10011011011000001111111000000000
+10011000111000001111111000000000
+10011000010001100111110000000000
+00100100001000010011001100000111
+00011000000000000111110000000000
+00100000011000000000000000000000
+11000011000000000011001100000111
+00011000010000100111111000000000
+10011010001001100111110000000000
+00100000001111110011001100000111
+00011010001000001000110000000001
+11101000110000001000000000000000
+11000010100000000011001100000111
+00011010001000001000101000011000
+11101000101000001000000000000000
+00100100001110100011001100000111
+00011000000000000111111000101101
+11100000101000001000000000000000
+00100000001000000011001100000111
+11000011000000000011001100000111
+00011000010000100111111000000000
+10011010001001100111110000000000
+00100000001111110011001100000111
+00011010001000001000110000000001
+11101000110000001000000000000000
+11000010100000000011001100000111
+11101010001000001000000000000000
+01111001001111111111111000000111
+11100010001000001000000000000000
+00100000001000000011001100000111
+01111001001111111000000000100101
+01000100100110100100000000000110
+00100000010000000011101110101100
+00011100010000001100001000000001
+00100000010000000011101001010100
+00011000000000000100100000000011
+00100000010000000011101001000010
+00100000010000000011101110101110
+00100000010000000011101110110100
+00100000010000000011101111000101
+00100000001000000011100010111111
+01111001001111111000000000100101
+01000100100110101100000000000110
+00100000010000000011101110101010
+00011100010000001100001000000001
+00100000010000000011101001010100
+00011000000000000100100000000011
+00100000010000000011101000111011
+00100000010000000011010011100001
+00100000010000000011101101000001
+00100000010000000011101110111010
+00100000010000000011101100111010
+00100000010000000011101101100011
+00100100011011000000000000000000
+00100000010000000011101011110011
+00100000001000000011010111011111
+01111001001111111000000000100101
+01000100100110110100000000000110
+01101000000000001000000110001011
+10011000000000000000100000000000
+00011000000000000000001000000001
+00100000010000000011001101110001
+00100000001000000011001101111100
+01101000000000001100000100110011
+11000100000000000000000000000000
+00011000000000000000111000000101
+00100000010000000111111001010011
+00100100011110100000000000000000
+01101000000010010100000101001101
+00011000000000000000111000000100
+00100000010000000011100000111101
+00100000011101000000000000000000
+00100000010000000011001110100010
+00011000000000000000111000000101
+01101000000000010100000101001111
+00100100001011000111111001001100
+00011000000010100111111000000000
+10011110101000010111111000000000
+00100000001000000111111001001100
+01111001001111111000000000100101
+01000100100110111100000000000110
+01110000000000011000101100000000
+01111000010110000111110000000000
+01111000010101110111110000000000
+00100000010000000011101000010010
+00011100010000010100001111111100
+00011000000000000100100000000001
+00100000010000000011101001001001
+00100000010000000011101000111011
+01111001010000000000000000011101
+01101000000000001000000000000110
+00011111111000001111111000000001
+01100000000000001000000000000110
+00100000010000000011101001100110
+00100000010000000011101100111010
+00100000010000000011101101101011
+00100100011011000000000000000000
+01111001001111111000000000100101
+01000100100111000100000000000111
+00011000000000000011011000000000
+00100000010000000011101001101101
+01101000000000001000000000000111
+00011111111000001111111000000001
+01100000000000001000000000000111
+00100000010000000011101001001001
+00100000010000000011101110101010
+00011100001000011100001000000010
+00011000000000000100100000000001
+00100000010000000011101001000010
+00100000010000000011101001100110
+00100000010000000011101110101110
+00100000010000000011101110111111
+00011100010000100111111000000000
+01100000000000100000000101101011
+00100000010000000011101111000101
+00011000000000000000001000000010
+00011000000000000000100000000000
+00100000010000000011101111001101
+00100000010000000011100011000001
+00100000010000000011001111001110
+00011100001000010100001111111101
+00011100110000001100110000000001
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100100111001100000000000111
+01101000000000001100000101110010
+00100000011110100000000000000000
+11011000101000000000000110111100
+01101000000000001100011100000010
+00011111111000100111001000000000
+00011111111000001111111000000001
+11100000101000001000000000000000
+00011000101000100000010000000000
+00011111111000001111111000000001
+01100000000000010000000010010001
+00011000010000100000101000000000
+01011000000000000000000000001001
+11100000101000001000000000000000
+11011000110000000100011100000011
+00100000010000000111111001000101
+11011010011000000100011101110001
+11011111001000000000000000000100
+00100000010000000011001111110001
+11011010011000000100011101011011
+11011111001000000000000000000001
+00100000010000000011001111110001
+00011000000000000000001000001010
+01110000000000001001000000000010
+01011000000000000000000110111100
+01100000000000010000000101111001
+00100000010000000011101110101010
+00100000010000000011101001000010
+00100000010000000011101110101110
+00100000010000000011101110111111
+00100000010000000011101111000101
+00100000010000000011101111001101
+00100000010000000011100011000001
+00100000011000000000000000000000
+00011000101000100000010000000000
+00011010011000100000110000000000
+11101000110000001000000000000000
+00100000011110100000000000000000
+00011111111000111111111000000000
+11000010000000000011001111110101
+00011111111000100010001000000000
+00011111111000001111111000000010
+00011111111000100000111000000000
+01101000000000010000000010010001
+10011000111000001111111000000000
+01100000000000010000000010010001
+00011000010000100000101000000000
+00011010001000100111111000000000
+00011111111000001111111000000001
+11100000101000001000000000000000
+00011010011000100000110000000000
+11101000110000001000000000000000
+11101000110000001000000000000000
+11100000101000001000000000000000
+00011010001000100111001000000000
+00100000001000000111111001000101
+01101000000000001100000100110011
+11000100000000001000000000000000
+00011000000000000000111000000110
+00100000010000000111111001010011
+00100100011110100000000000000000
+01101000000010010100000101010001
+00011000000000000000111000101000
+00100000010000000011100000111101
+00100000011101000000000000000000
+00011000000000000000100000000000
+01110000000000000001000000001000
+01111001001111111000000000001011
+00100000010000000011010000010111
+00011000000000000000111000000110
+01101000000000010100000101010011
+00100000001000000111111001001100
+01111001001111111000000000100101
+01000100100111010100000000000111
+01111000010110000111110000000000
+00100000010000000011101000010010
+01101000000000001000000000001000
+00011111111000001111111000000001
+01100000000000001000000000001000
+00011000000000000100110000000000
+00100000010000000011101001010100
+00011100010000001100001000000001
+00011000000000000100100000000010
+01111001001111111000000000100101
+01000100100111011100000000000111
+00100000010000000011101000111011
+00100000010000000011101100111010
+00100000010000000011101101101011
+00100100011011000000000000000000
+00100000010000000011101001101101
+01101000000000001000000000001001
+00011111111000001111111000000001
+01100000000000001000000000001001
+00011000000000000011011000000000
+00100000010000000011101110101010
+00011100001000011100001000000010
+00011000000000000100100000000001
+00100000010000000011101001000010
+00100000010000000011101110101110
+00100000010000000011101110111111
+00100000010000000011101111000101
+00100000010000000011011101011100
+00011000000000000000100000000000
+11011001011000000000011000000000
+00110101001100110000001000000000
+00011101000000011101000000000011
+00011100001000010100001111111101
+01111001001111111000000000100101
+01000100100111100100000000000111
+00011100110000001100110000000001
+00100000010000000011101000111011
+00100000010000000011101100111010
+00100000010000000011101101011101
+00100100001011000011010001000100
+00100000010000000011101111001101
+00100000010000000011010111100001
+11000101000001011011010001001100
+01111001001111111000000000100101
+01000100100111101100000000000111
+01101000000000001000000000010000
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001000000000010000
+00100000010000000011101110101100
+00100000001000000011010000111010
+01111001001111111000000000100101
+01000100100111110100000000000111
+01111001001111111101000000000001
+01111001001000000101000000000000
+01101000000000001000000000001010
+00011111111000001111111000000001
+01100000000000001000000000001010
+00100000010000000011101110101010
+00011100001000011100001000000010
+00100000010000000011101001000010
+00100000010000000011101110101110
+00100000010000000011101110111111
+00100000010000000011101111000101
+00100000010000000011011101011100
+00101101000000000000011000000011
+00100000001000001011010001011110
+00110111110010111000001000000000
+00100000001000000011010001011010
+01101000000000100000000101101111
+00011111111000011111111000000011
+00011111111000100101000000000000
+01111001001111111000000000100101
+01000100100111111100000000000111
+01101000000000110000000110000010
+01100000000000110000000001000000
+00100000010000000011010011101101
+00100000010000000011010100111001
+00100000001101101011010001101011
+00100000010000000011010100001110
+00100100001110100011010001100110
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100101000000100000000001000
+00100000010000000011010011111001
+00100000010000000011001011010110
+00100100011000101000000000000000
+01110000000000000011000100000000
+00100000010000000011100110101100
+00100000001000000011001010111101
+01111001001111111000000000100101
+01000100101000001100000000001000
+00100000010000000011100110111100
+00100000010000000011010010100101
+00100000011101000000000000000000
+00100000010000000011001001111100
+00100000010000000110101001010100
+01111001001111111000000000100101
+01000100101000010100000000001000
+00100000010000000011111000100101
+00100000010000000110110111101100
+00100000010000000011010111010110
+00100000010000000111111100111001
+00100100001101101011010010001101
+00100000010000000011101111101100
+00100000010000000011100001110000
+00100000010000000110111000010000
+00100000010000000011010101000111
+00100000010000000011100010110001
+00100000010000000101101101111000
+00100000010000000100100110010101
+00100000010000000100100010101001
+01101000000000001000000000001011
+00011111111000001111111000000001
+01100000000000001000000000001011
+00100000010000000011100110101100
+01111001001111111000000000100101
+01000100101000011100000000001000
+00100000010000000011110101100001
+00100000010000000011101111100010
+00100000001000010011010010011000
+00100000010000000011001000000100
+00100100001101000011010010011000
+00100000010000000011100000010010
+00100100001110100011010001111010
+00100000010000000110101001011100
+00100000001000000011001010010000
+01111001001111111000000000100101
+01000100101000100100000000001000
+01110000000000010101001100000000
+01110000000000011000100100000000
+00100000010000000011010100010110
+01111001001111111000000000010001
+00100000010000000111111110001010
+01101000000000001000000000110000
+11000011000000100011010010100011
+01101000000010001000000001000110
+00100000001000000100100011000100
+00011000000000000000010000000110
+00100000001000000100100000100110
+01111001001111111000000000100101
+01000100101000101100000000001000
+00100000010000000011001000101110
+00100100011101000000000000000000
+00011000100000100000010000000000
+00100000010000000011101111010001
+01100000000000001000000110001011
+00011000010000100000100000000000
+01110000000000000001000100100000
+01111001001111111000000000100101
+01000100101000110100000000001000
+00100000010000000011101110101100
+00011000000000000000001000000010
+00100000010000000011100010101000
+00011100010000100111111000000000
+01100000000000100000000101101011
+00100000010000000011100010111111
+00100000010000000011101110101010
+01111000001101111111110000000000
+00100000010000000011010110110111
+00100000001011000011010011000001
+00100000010000000011101001101101
+00100000010000000011010100001110
+00100100001110100011010010101110
+11000110100000100000000000000000
+01110000000000000111110000110100
+01111001001000000000000000000011
+00100000011000000000000000000000
+01111000001110000111110000000000
+00100000010000000011010011101101
+00100000010000000011101000010010
+01111001001111111000000000100101
+01000100101000111100000000001000
+00100000010000000011001110001011
+00100000001011000011010011001110
+00100000010000000011010100001110
+00100100001110100011010011000100
+01111000010110000111110000000000
+00011101000000100111111000000000
+01100000000000100100000101101010
+00100000011000000000000000000000
+00011000000000000000010000000000
+00100000010000000100100001111111
+01111000001101001111110000000000
+11000101100000100011010011010110
+01111001001111111000000000000100
+01110000000000000111110000000011
+01110000000000000111110100110011
+00100000010000000110001000010010
+00011000100000100111111000000000
+01100000000000001000000001110111
+00011000000000000111111000000000
+01100000000000110000000000111000
+01101000000000001000000000110001
+01111001001000000111111000000001
+01100000000000001000000000110001
+00100000010000000011101111101100
+01111000010101001111110000000000
+01111000001101000111110000000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100101001000100000000001001
+01111000010101101111110000000000
+01111001001111111000000000000101
+01111001001111111000000000001010
+01111001001111111000000000010000
+01111001001111111000000000001111
+01101000000000001000000001000111
+01111001001111111111111000000101
+01111001001000000111111000000100
+01100000000000001000000001000111
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100101001001100000000001001
+01110000000000000001000100100000
+01110000000000000100011101010000
+01101000000000010100000101011111
+01100000000000010000000000111110
+00011100010000100111111000000000
+01100000000000100100000101101010
+00100000011110000000000000000000
+00011101000000100111111000000000
+01100000000000100100000101101010
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100101001010100000000001001
+00100000010000000101101101101111
+00100000010000000011010100010010
+01100000000000001000000001000110
+01011000000000000001110010000000
+01100000000000010000000001010001
+01101000000000001000000000110000
+01111001001000000111111000000000
+01100000000000001000000000110000
+01110000000000000100101100000000
+01110000000000000100110000000000
+01110000000000001010001000000000
+00100000001000000011101111101100
+01111001001111111000000000100101
+01000100101001011100000000001001
+00011000000000000111111000000000
+01100000000001000100001001100010
+11100000101001000000000000000000
+00100000010000000011001000101010
+00100000001000000011001011110000
+01101000000000001000000000010001
+00011111111000001111111111111111
+01100000000000001000000000010001
+00100000011000000000000000000000
+01101000000000001100000101110000
+00011111111000001111111000000001
+01100000000000001100000101110000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100101001100100000000001001
+00100000010000000011000111111010
+01101000000000001100001001110010
+11000000000000011011010100011101
+01101000000000001000000001001000
+11000000100000001011010100100001
+00100000010000000100100110111110
+00100100001000101011010100100001
+00100000010000000011000111110101
+01110000010000100111001000000000
+01111001001111111000000000100101
+01000100101001101100000000001001
+00100000010000000011111100011000
+00100000010000000100100110010101
+00100000010000000011100000000110
+01110000000010110111110100000010
+00100000010000000111110000100111
+00100000010000000101101101100011
+00100000010000000100110110011001
+00100000010000000111011100011001
+01101000000000001000000000110000
+01111001001111111111111000000000
+01100000000000001000000000110000
+01110000010001111111001100000000
+01101000000000001000000001001100
+00101111111000011000000000000000
+00100000001000001011010100110011
+01111001001111111000000000000001
+01101000000000001000000001000111
+11000011000000011011010100110101
+01101000000000001000000001001011
+11000100000000110000000000000000
+01111001001111111000000000000010
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100101001110100000000001001
+01101000000000001000000101111110
+00100000011110100000000000000000
+00011111111000100000100000000000
+00100000010000000011010111010110
+00100100011101101000000000000000
+00011000000000000000001000000000
+00100000010000000011100010110001
+00011000100000100111111000000000
+01100000000000001000000001110111
+00011000000000000111111000000000
+01100000000000001000000101111110
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100101001111100000000001001
+01101000000000001000000000110000
+11000011000000010011010101010101
+00011000000000000000001000000111
+11000101100000111011010101010100
+00100000010000000011100001000111
+00100100001000001011010101010101
+00100000001101110011010101010101
+00100000010000000011010110000011
+01011000000000000000000000000010
+01100000000000010100000101101000
+00100000011000000000000000000000
+00100100011101110000000000000000
+01111001001111111000000000100101
+01000100101010000100000000001010
+00100000010000000011001011011111
+00100100001000101011010101101000
+01101000000000001000000001000111
+11000011000000011011010101110001
+11000101000000101011010101110101
+01101000000000001000000110001001
+11000010100000110011010101111100
+01101000000000010100000101101000
+00011111111000001111111111111111
+01100000000000010100000101101000
+00100000001110100011010101100101
+01101000000000001100000101100101
+10011000000000000000001000000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100101010001100000000001010
+00100000010000000011011110011001
+00100000010000000011100001000111
+00100000001000001011010101110001
+00100000010000000101111011011001
+00100000001101000011010110000000
+01101000000000001000000001001011
+11000010100000110011010110000010
+11000101000000101011010101110101
+01101000000000001000000110001001
+11000010100000110011010101111100
+00011000000000000000001000000001
+00100000011101001000000000000000
+00011000000000000000001000000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100101010010100000000001010
+01101000000000001000000000011001
+10011000000000000000001000000000
+11000001100000001000000000000000
+00011000000000000000001000000000
+00100000011000000000000000000000
+01101000000000001000000101011010
+00011111111000010000001000001111
+01111001001000000000000000000101
+00100000011000000000000000000000
+00011000000000000000001000010011
+00100000001000000011010110000011
+00100000010000000011010110001101
+01111001001111111000000000100101
+01000100101010011100000000001010
+01101000000010001000000001000111
+01111001001000000000010000000011
+01100000000010001000000001000111
+00011000001000100111111000000000
+01100000000000001100000101100101
+01011000000000001111111111111111
+01100000000000010100000101101000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100101010100100000000001010
+01101000000000001000000001001100
+00101111111011111111111000000101
+01101000000000010000000010010001
+00100000001000001011010110100001
+00011000000000000000001000000011
+00011111111001100111110000010001
+00100000011000010000000000000000
+00011000000000000000001000000100
+00011111111001100111110000011011
+00100000011000010000000000000000
+00011000000000000000001000001010
+00011111111001100111110001111001
+00100000011000010000000000000000
+00011000000000000000001000001110
+00011111111001100111110011100000
+00100000011000010000000000000000
+00011000000000000000001000001111
+00100000011000000000000000000000
+00011000000000000000001000000011
+00011111111001100111110000010001
+00100000011000010000000000000000
+00011000000000000000001000000100
+00011111111001100111110000110110
+00100000011000010000000000000000
+00011000000000000000001000001010
+11011000010000000000000101101111
+10011000010001100111110000000000
+00100100011000010000000000000000
+00011000000000000000001000001110
+11011000010000000000001010100111
+10011000010001100111110000000000
+00100100011000010000000000000000
+00011000000000000000001000001111
+00100000011000000000000000000000
+01101000000000001000000000110000
+11000011000000001011010110110110
+01101000000000010000000000110010
+00100000001110100011010110110110
+00100100001101110011010110111000
+00100000010000000011101110101100
+00011101000000001100001000000001
+01111000001010000111110000000000
+01101000000000010000000000111110
+00011111111000110111111000000000
+11011000010000000000010100000000
+10011000010000001111111000000000
+00100000010000000011101101111101
+00100000010000000011101001011101
+00011000000000000100100000000011
+00100000010000000011101000111011
+00100000010000000011010011100001
+00100000010000000011101101000001
+01111001001111111000000000100101
+01000100101010101100000000001010
+01101000000000010000000000111110
+00011111111000110111111000000000
+00100000010000000011101101111101
+00100000010000000011101100111010
+01111000001001101111110000000000
+01101000000000010000000000111110
+11011000010000000000001110111011
+10011000010000001011011000000000
+00110111110000011000010000000000
+00011011010000100000010000000000
+01100000000010110000000010011100
+01111000010001101111110000000000
+00100100011011000000000000000000
+11011101001000000000001110111011
+00011100001000100101000000000000
+00100000001101011011110010110110
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100101010110100000000001010
+00100000010000000011010110110001
+00100100001011000011101001101101
+00100000010000000011101011110011
+11000101100010001011010111011111
+01101000000000010000000011111000
+00011111111000001111111000000001
+01100000000000010000000011111000
+00011100001000110000010000000000
+00011000010000011001110001000000
+01111001001111111000000000100101
+01000100101010111100000000001010
+01111000001000111111110000000000
+01111000001001010111110000000000
+01111000001001011111110000000000
+00001001100000000000000000000011
+00011001100011001111111000000000
+01100000000000001000000101011111
+00001001100000000000000000000100
+00001000000000001000000000000111
+00011001100000100111111000000000
+01100000000000001000000000011001
+00001001100000000000000000000011
+00011001100011001111111000000000
+01100000000000001000000101100000
+01101000000000001000000000011001
+00011111111001100111110000000011
+00100000001000010011010111110111
+11000000000000111011010111110111
+01101000000000001000000001001100
+00101111111011111111111000000101
+01111001001000001010101000000001
+01111001001111111000000000100101
+01000100101011000100000000001011
+00001001100000000000000000001000
+01111000010001011111110000000000
+01111000010001010111110000000000
+00100000001000110011011100111110
+11000101100010001011011000000001
+01101000000000010000000011111010
+00011111111000001111111000000001
+01100000000000010000000011111010
+01111001001111111000000000100101
+01000100101011001100000000001011
+01101000000000001000000101011111
+00101111111000000000111000000000
+01111001001000001000000000001010
+00100000001000001011011000010011
+10101000100000000000111000000000
+00100000001000001011011000010010
+11000101100000111011011101011100
+01101000000010001000000010110010
+10101000010000000000111000000000
+00100100001000001011011101011100
+00100000010000000011001010010000
+01101000000000001000000001000111
+01111001001111111111111000000101
+01111001001000000111111000000100
+01100000000000001000000001000111
+01111000001101101111110000000000
+01111001001111111000000000100101
+01000100101011010100000000001011
+01101000000000001000000000011001
+00011111111000100000001000000000
+11000101000001010011011000100011
+01101000000010001000000101100000
+01101000000000001000000001000111
+01111001001111111111111000000000
+00101000010011111111111000000000
+01111001001000001111111000000000
+00101000010011111111111000000001
+01111001001000001111111000000001
+01100000000000001000000001000111
+00101000010011000000000000000001
+00100000001000001011011000100011
+00100000010000000011011110011001
+01111001001111111000000000100101
+01000100101011011100000000001011
+11011000010000000000000000000000
+00100000010000000011101101110100
+00011000001000010111111000001111
+11000000000000001011011001010110
+11000000000000000011011101011100
+11000000000000010011011101101001
+01101000000010001000000101100000
+01101000000000001000000001000111
+10101000010000000000100000000000
+00100100001000001011011000110010
+11000101100001010011011000110001
+11000011000000111011011000110010
+01111001001000000000000000001111
+01111001001111111000000000100101
+01000100101011100100000000001011
+00011000001000100111111000000000
+11000000000000011011011001011000
+11000000000000100011011001011100
+11000000000000111011011001000010
+11000000000001000011011001011011
+11011000010000000000000000000100
+00100000010000000011101101110100
+11000000000001010011011001010111
+11000000000001011011011001011010
+11011000010000000000000000001000
+00100000010000000011101101110100
+11000000000001110011011001010111
+11000000000001111011011001011010
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100101011101100000000001011
+01111000001001101111110000000000
+01111000001001001111110000000000
+01111000001001110111110000000000
+11011000101000000000000011010011
+00011000000000000111001000011110
+00001001100000000000000000001000
+00011001100010010111111000000000
+11100000101000001000000000000000
+11000010000000000011011001001001
+11000101100000111011011101011100
+00001001100000000000000000010000
+01111101001000110000000000001000
+00100000010000110011011001010011
+00100000001000110011011101001011
+00100000001000000011011100101100
+00011011010000100111111000000000
+01100000000000110000000000100000
+00100000011000000000000000000000
+00100000001000000011011101011100
+01111001001000000000000000010000
+01111000001001100111110000000000
+00100000001000000011011001011101
+01111001001000000000000000010000
+01111001001000000010101000000010
+01111000001001101111110000000000
+01111001001111111000000000100101
+01000100101011110100000000001011
+11000101000000001011011101011100
+00101010101011000000000000000001
+00100000001000001011011001101010
+01111000010000111111110000000000
+01111000001001101111110000000000
+01111000010001100111110000000000
+00011100010000001001011000000010
+00110100010100110000010000000000
+00100100001011000011011101001011
+01111001001000000000000000010000
+01111000001000111111110000000000
+01111001001111111000000000100101
+01000100101011111100000000001011
+01111000001001110111110000000000
+01111000001001001111110000000000
+00001001100000000000000000000011
+00011001100011001111111000000000
+01100000000000001000000110001010
+00001001100000000000000000000101
+11000101000010000011011001110110
+00011001100010010111001000000000
+00011111001010010111001000000000
+00100000001000000011011001111001
+00001001100000000000000000000101
+00011001100000110111001000000000
+00001001100000000000000000000011
+01111001001111111000000000100101
+01000100101100000100000000001100
+00011111001000100111111000000000
+01100000000000010000000101101001
+00100000001110100011011011101110
+10011110101001100111110000000000
+00100000001000010011011101001011
+01111001001111111000000000100101
+01000100101100001100000000001100
+01111001001111111000000000000000
+01101000000000001000000110001010
+00011111111000010111111000000011
+11011000101000000000010011011110
+11000000000000011011011010001111
+11000101000010001011011011101010
+01101000000000001100000100110010
+11000000000000001011011010010100
+01101000000000001000000110001010
+00011111111000010111111000000011
+11000000000000010011011011000011
+11000000000000001011011011011000
+00100000001000000011011101001011
+01101000000000010000000101101001
+00011111111001100111110001110000
+00100100001000010011011101001011
+11000101000001111011011100101100
+00100000001000000011011011101010
+01111001001111111000000000100101
+01000100101100010100000000001100
+11000101000001111011011100101100
+01101000000000010000000101101001
+00100000001110100011011101001011
+00100000010000000100010010010100
+00100100001000001011011010100001
+01101000000010010000001010010001
+00011111111000001111111000001010
+10011000010001100111110000000000
+00100100001000010011011010100111
+00100000010000000100010001001001
+00100000001000000011011010011011
+01101000000100010000000100001110
+11011000010000000000000100101100
+10011000010001100111110000000000
+00100000001000010011011101001011
+01101000000000010100100000000000
+00100000001110100011011101001011
+01111001001111111000000000100101
+01000100101100011100000000001100
+00100000010000000100100101110010
+01101000000000001000000001000110
+01101000000010001000000110001010
+00011000010000010000010000000011
+00011000010011010000010000000000
+00011000010100100000010000000000
+10011000010000011111111000000000
+11100001010000010000000000000000
+01101000000010010000000101101001
+00011000010000100111001000000000
+11100001010010010000000000000000
+01111001001111111000000000100101
+01000100101100100100000000001100
+00001001100000000000000000001000
+00011001100010010111111000000000
+11100001010000001000000000000000
+11000010000000000011011010110100
+00011000010000001111001000000100
+00100000010000000100010010010100
+00100100001000001011011011000001
+01111001001000000000000000010011
+00011000000000000000111000000110
+00100000010000000100001101111000
+00100000001000000011011011101110
+00100000010000000100010000100100
+00100000001000000011011011101110
+01111001001111111000000000100101
+01000100101100101100000000001100
+11000101000001111011011100101100
+01101000000000010000000101101001
+11011000010000000000001011100000
+10011000010001100111110000000000
+00100000001000010011011101001011
+01101000000000001000001011001010
+11000011000000000011011011001110
+11000011000000001011011011010011
+00100000001000000011011101011100
+01110000000000101100100000000001
+01101000000000010000001011000100
+11000000100000000011011101011100
+11011000101000000001000000000000
+00100000001000000011011011101010
+01110000000000101100100000000010
+01101000000000010000001011000110
+11000000100000000011011101011100
+11011000101000000001010000000000
+00100000001000000011011011101010
+01111001001111111000000000100101
+01000100101100110100000000001100
+11000101000001111011011100101100
+01101000000000010000000101101001
+11011000010000000000001011100000
+10011000010001100111110000000000
+00100000001000010011011101001011
+01101000000000001000001011001000
+11000000000000001011011011100011
+11000000000000010011011011100111
+00100000001000000011011101011100
+11011000101000000001000000000000
+01101000000000010000001011000100
+10011000101000001000101000000000
+00100000001000000011011011101010
+11011000101000000001010000000000
+01101000000000010000001011000110
+10011000101000001000101000000000
+00001001100000000000000000001000
+00011001100010010111111000000000
+11100000101000001000000000000000
+11000010000000000011011011101010
+01111001001111111000000000100101
+01000100101100111100000000001100
+00001001100000000000000000010000
+00100000001000110011011101000101
+00100000010000000011111000001111
+01101000000000001100001111001100
+11000000000000001011011101011100
+11000101000010001011011100011000
+11000101000001111011011101011001
+01101000000000001000000110001010
+00101111111000000000011000000011
+00100000001000001011011100011000
+01101000000000010000000101101001
+00100000001110100011011100011000
+01101000000000001100000100110010
+11000000000000001011011100011000
+01111001001111111000000000100101
+01000100101101000100000000001101
+01101000000000001000001011001000
+11000000000000001011011100000100
+11000000000000010011011100001110
+00100000001000000011101111110001
+01101000000000010000001011000100
+01101000000010010000000101101001
+10011000010000001111111000000000
+01100000000000010000001011000100
+11000000000000000011101111110001
+01101000000010010001000000000000
+00011000010000001000010000000100
+10011000010001100111110000000000
+00100000010000101011100010100000
+00100000001000000011011100011000
+01101000000000010000001011000110
+01101000000010010000000101101001
+10011000010000001111111000000000
+01100000000000010000001011000110
+11000000000000000011101111110001
+01101000000010010001010000000000
+00011000010000001000010000000100
+10011000010001100111110000000000
+00100000010000101011100010100100
+00100000001000000011011100011000
+01111001001111111000000000100101
+01000100101101001100000000001101
+01101000000010001000000001001100
+01101000000000001000000110001010
+00101111111000000000011000000011
+01111001001000001000010000000110
+01111101001000001000010000000111
+01100000000010001000000001001100
+00100100001000001011011100100010
+01111001001000000000000000000001
+11000101100010001011011100101100
+00101000010011111111111000000110
+00100000001000001011011100101100
+01101000000000010000000011111100
+00011111111000001111111000000001
+01100000000000010000000011111100
+01111001001000000000000000000101
+01111001001111111000010000000111
+01111001001111111000000000000001
+01100000000010001000000001001100
+01111001001111111000000000100101
+01000100101101010100000000001101
+01101000000010001000000101100000
+01101000000000001000000001000111
+01111001001000000111111000000101
+00101000010011111111111000000010
+01111001001000001111111000000010
+00101000000011111111111000001010
+01111001001000001111111000000111
+01100000000000001000000001000111
+01101000000000010000000101101001
+00100100001110100011011101011100
+01101000000000001000000001001100
+01111001001111111111111000000111
+01100000000000001000000001001100
+01101000000000001000000110001010
+00101111111000000000111000000001
+00100000001000000011011101011100
+01111001001111111000000000100101
+01000100101101011100000000001101
+01111000010101101111110000000000
+01101000000000010000000000011010
+00011111111000001111111000000001
+01100000000000010000000000011010
+00100000001000000011011101011100
+01101000000000010000000000011100
+00011111111000001111111000000001
+01100000000000010000000000011100
+00100000010000000011011101001100
+11000101100010001011011101001011
+01111001001000000000000000000101
+00100000001000000011011101011100
+01111001001111111000000000100101
+01000100101101100100000000001101
+01101000000000001000000110001010
+00101111111000000000011000000011
+00100100001000001011011101010101
+01101000000010001000000001001100
+01111001001111111000010000000110
+01100000000010001000000001001100
+00100000011000000000000000000000
+01101000000010001000000001001100
+01111001001111111000010000000111
+01100000000010001000000001001100
+00100000001000000100010000111011
+01101000000000001000000001000111
+01111001001000000111111000000101
+01100000000000001000000001000111
+01111001001111111000000000100101
+01000100101101101100000000001101
+01111000010011101111110000000000
+01111000010011100111110000000000
+01111000010001101111110000000000
+01111000010001100111110000000000
+01111000010001001111110000000000
+01111000010001110111110000000000
+01111000010000111111110000000000
+00100000001100001011101001101101
+00110111110100111000001000000000
+00100000000000000000000001100100
+00100000001000000011101001101101
+01111001001111111000000000100101
+01000100101101110100000000001101
+01111000001001001111110000000000
+01111000001001100111110000000000
+00001001100000000000000001001000
+00101111111011111111111000111010
+01111001001000001000000000000000
+00011100000000100000010000000000
+01010111111000000100000000000000
+01010111111000000011110000000000
+01111000001010101111110000000000
+00111000000010111111111111111111
+00111000000011001111111111111111
+00100000000000000000000000100000
+00101001101010000000000000000000
+00011101100000100111111000000000
+01100000000000011000000110000010
+00011101101000100111111000000000
+01100000000000001000000110000101
+00011000010000100100000000000000
+00100000001000001011011101111111
+00100000001000000011011101001011
+01111001001111111000000000100101
+01000100101101111100000000001101
+00001001100000000000000001001000
+01010111111000000011111000000000
+01010111111000000000100000000000
+01010111111000000101110000000000
+01010111111000000010010000000000
+00011000000000000111111000000000
+00001001100000000000000000010000
+00100000001000110011011101001011
+01011111111111111111111111111100
+10011010010000010111111000000000
+01100000000000100000000101101111
+00011011101000100111111000000000
+01100000000000011000000101111111
+00011011100000100111111000000000
+01100000000000001000000101111101
+00011000100000100111111000000000
+01100000000000001000000101111110
+00011101110000100111111000000000
+01100000000000010000000110000110
+00011100001000100111111000000000
+00001000000000001000001000100000
+00101000001000000001111000000010
+01111001001000001000000000001011
+00100000001000000011011101011100
+01111001001111111000000000100101
+01000100101110000100000000001110
+01101000000000001000000001000111
+11000100000000011000000000000000
+01111001001111111111111000000011
+01111001010000000111111000000110
+01100000000000001000000001000111
+01101000000000001100000101100101
+11000000000010011011011110110001
+11000001000000111000000000000000
+01101000000000001000000001001011
+11000100000000110000000000000000
+01111001001111111111111000000110
+01111001001000000111111000000111
+01100000000000001000000001001011
+01111001001111111000000000000010
+01101000000000001100000100110010
+11000001000000001000000000000000
+01101000000000010100001010101111
+00100100011110100000000000000000
+01101000000000001000000001001011
+01111001001111111111111000000111
+01100000000000001000000001001011
+00100000001000000101001001100111
+01111001001111111000000000100101
+01000100101110001100000000001110
+01101000000000001000010000110011
+00011111111000110111111000000000
+11000000000010001011011111010000
+11000000000010010011011111011010
+11000000000011000011100000000110
+11000000001111111011011110111111
+11000000000101100011100001011110
+11000001100000011000000000000000
+01101000000000001000010000110100
+11000000000101011011011111001000
+11000000000010001011011111000011
+00100000011000000000000000000000
+01101000000000001000010000110100
+01111001001000000111111000000111
+11000000010001101011100001011110
+00100000011000000000000000000000
+00100000011101001000000000000000
+01101000000000001000000000110000
+11000011100000100000000000000000
+01110000000000000111110000110001
+00100000011000000000000000000000
+00100000011101001000000000000000
+01101000000000001000000000110001
+00101111111011111111111000000100
+00100000001000001011011111001101
+00100000011000000000000000000000
+01111001001111111111111000000100
+01100000000000001000000000110001
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100101110010100000000001110
+01101000000000001000000001001100
+01111001001000000111111000000010
+01100000000000001000000001001100
+01110000100000000001000100000001
+01101000000000001000000000110000
+00101111111011111111111000000100
+00100000001000001100100001000101
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100101110011100000000001110
+01101000000000001000000001001100
+01111001001111111111111000000010
+01100000000000001000000001001100
+01110000100000000001000100000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100101110100100000000001110
+00011100010000100111111000000000
+01100000000000100100001010100101
+00011100010000001010001000000011
+00100000001101001011011111101000
+00011101000000001010001000000011
+01101000000010010000000000110010
+00011010001000100111111000000000
+01111001001111111111111000011011
+10011000010001101111110000000000
+01101000000000010000000001110101
+00100000010000000111111011111101
+00011000000001110010011000000000
+10011010011001100111111000000000
+00100000001000010011011111110010
+10011000010000001111111000000000
+10011010001000001111111000000000
+01100000000000100000000000110100
+01110000010001110100100000000000
+01101000000000001000000000110000
+01111001001000000111111000000001
+01100000000000001000000000110000
+01101000000000001000000001110011
+01100000000000001000000010001010
+01110000010000010110111010000000
+01011000000000000000000000000000
+01100000000000011100001000001010
+01100000000000011100001000001101
+01100000000000001100000111111010
+01110000000010110111110100001011
+00100000010000000111110000100111
+01101000000000010100000101100001
+01100000000000010000000000111110
+00100100011101001000000000000000
+00011000100000001000111111111111
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100101110101100000000001110
+01101000000000001000000000110000
+11000100000000001000000000000000
+01111001001111111111111000000001
+01100000000000001000000000110000
+01110000010000010110111001111111
+01101000000000010100000101011111
+01100000000000010000000000111110
+01111000010101011111110000000000
+01110000000010110111110100001100
+00100000001000000111110000100111
+01111001001111111000000000100101
+01000100101110110100000000001110
+01111000001101110111110000000000
+01101000000000001000000000110000
+11000010100000001011100000100000
+11000110000010001000000000000000
+01101000000000001000000001000111
+11000011100000011000000000000000
+01101000000000001000000001001000
+00100100011110100000000000000000
+01101000000000001000000001001011
+11000011100000110000000000000000
+00011000000000000111111000000000
+00100000011000000000000000000000
+11000011000000010011100000110000
+01101000000000001000000010001010
+11000000000000010011100000100110
+01101000000000001000000001000111
+11000010100000011011100000111001
+11000101100001000011100000111001
+00100000010000000011001010010000
+00100100001101001011100000111001
+01101000000000001000000001001000
+00100100001110100011100000111001
+01101000000000001000000011110001
+00011111111000001111111111111111
+01100000000000001000000011110001
+00100100001110100011100000011110
+01110000000000001111000100010000
+00100000001000000011100000111001
+01101000000000001000000010001010
+11000000100000001011100000111001
+01101000000000001000000010001011
+00100000001110100011100000111001
+00011111111000001111111111111111
+01100000000000001000000010001011
+01101000000000001000000001000111
+11000011100000011000000000000000
+00100100011101101000000000000000
+01101000000000001000000010001010
+00011111111000001111111111111111
+01100000000000001000000010001010
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100101110111100000000001110
+01111000010010000111110000000000
+00011000010000100011011000000000
+00100000010000000011001100000000
+01111000010101000111110000000000
+00100100011000101000000000000000
+00011000000000000011011000000000
+01111000001101000111110000000000
+00100000011000000000000000000000
+01101000000000001100000111111001
+10101000100000011111111000000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100101111000100000000001111
+01110000010000010111000100000001
+00100000010000000110101001000000
+00011000000000000111111000001100
+01100000000000010000000000110010
+01101000000000001000000010101111
+00011111111000111111111000000000
+01100000000000010000000001110101
+01101000000000001000000000110000
+01111001001000000111111000000010
+01100000000000001000000000110000
+01110000000000000111001100000011
+01110000000000001000101000000011
+00100000010000000011011111100001
+00011000000000000000010000000000
+00100000010000000100100100010100
+01110000000000001011001101010000
+01110000000000001111000100010000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100101111001100000000001111
+00100000010000000011100000000110
+01110000010000010111000100000101
+00100000010000000110101001001010
+01101000000000001000000000110000
+01111001001111111111111000000010
+01100000000000001000000000110000
+11011000010000000000111000000000
+01110000000000101100000000010011
+00100000001000000100100011000100
+01111001001111111000000000100101
+01000100101111010100000000001111
+01110000000000001011000100000000
+00100000010000000011100001011110
+00100000010000000011001010010000
+01111001001111111000000000000111
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100101111011100000000001111
+01101000000000001100000100110010
+11000000000000001011100010011000
+01111001001111111000000000000001
+01110000000000101101000100000000
+01101000000000001000001011001010
+00100000011110100000000000000000
+00101111111011111111111000000000
+11011000110000000001000000000000
+00100000010000001100110110101000
+01111001001111111000000000100101
+01000100101111100100000000001111
+01101000000000001000001011010001
+11000000000000001011100010001100
+01110000000000101101000100000000
+01101000000000001000001011001010
+11000100000000001000000000000000
+11011000110000000001010000000000
+00100000010000000100110110101000
+01101000000000001000001011010001
+11000000000000001011100010010010
+00100000011000000000000000000000
+01101000000000001000000001001100
+01111001001111111111111000000111
+01100000000000001000000001001100
+01111001001111111000000000000001
+00100000001000000100010000111011
+01101000000000001000001011001010
+01111001001111111111111000000000
+01100000000000001000001011001010
+01011000000000000000000000000000
+01100000000000010000001011000100
+00100000011000000000000000000000
+01101000000000001000001011001010
+01111001001111111111111000000001
+01100000000000001000001011001010
+01011000000000000000000000000000
+01100000000000010000001011000110
+00100000011000000000000000000000
+01101000000000001000000001001100
+11000100000000111000000000000000
+00100000010000000100010000110101
+01101000000000010100100000000000
+00100000001110100011101111110001
+00011111111000001111111111111111
+01100000000000010100100000000000
+00100000001000000011100010000111
+01101000000000001000001011001010
+01111001001000000111111000000000
+01100000000000001000001011001010
+00100000011000000000000000000000
+01101000000000001000001011001010
+01111001001000000111111000000001
+01100000000000001000001011001010
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100101111101100000000001111
+00011101000000001100001000000001
+00100000010000000011101001011101
+00011000000000000100100000000011
+00100000010000000011101001000010
+00100000010000000011101110101110
+00100000010000000011101110111111
+00100000001000000011101111000101
+01111001001111111000000000100101
+01000100101111110100000000001111
+00100000010000000011101110101010
+00011101000000100111111000000000
+01101000000010100100000101101010
+10011000010001100111111000000000
+11000001100000001000000000000000
+00101000001000000011111000000000
+00100100001000001011100010111100
+01101000000000001000000000011001
+00100000011110100000000000000000
+00100000010000000011100010101000
+00101000001000000011111000010000
+00100000001000001011011101011100
+00011100001000110000010000000000
+00011000010000011001110001000000
+01111001001111111000000000100101
+01000100101111111100000000001111
+01111000001000111111110000000000
+01111000001001010111110000000000
+01111000001011011111110000000000
+01111001001111111000000000010000
+00011000100000100111111000000000
+00001000000000001000011000000011
+00011000001000100111111000000000
+00001000000000001000011000000100
+01101000000000001000000001000111
+00001000000000001000000000000100
+00001000000000001000011000000011
+01111000001001000111110000000000
+00001000000000001000011000001000
+01111000010011011111110000000000
+01111000010001000111110000000000
+01111000010001010111110000000000
+01111001001111111010101000000010
+11011000010000000000000000000000
+00100000010000000011101101110100
+01111001001111111000000000100101
+01000100110000000100000000010000
+00011000001000010111111000011111
+11000000000010011011100100010011
+11000000000000000011011101011100
+11000000000000001011011101011100
+11000000000000010011100011110101
+11000000000000011011100100100101
+11000000000000100011100100101011
+11000000000000111011100011101001
+11000000000001000011100100101010
+11011000010000000000000000000100
+00100000010000000011101101110100
+11000000000001010011100100100111
+11000000000001011011100100101101
+11011000010000000000000000001000
+00100000010000000011101101110100
+11000000000001111011100100101101
+00100000001000000011100100100111
+01111001001111111000000000100101
+01000100110000001100000000010000
+01111000001011101111110000000000
+01111000001001001111110000000000
+01111000001001110111110000000000
+00011000000000000111001000011110
+11011000110000000000000010110101
+11101000110000001000000000000000
+00001000000000001000011000001000
+11000010000000000011100011110000
+11000101000000111011100101100000
+00100000001000000011011101011100
+01111001001111111000000000100101
+01000100110000010100000000010000
+01101000000000001000000110001011
+00011111111000100000100000000000
+01101000000000001000000010001111
+00011111111000100011100000000000
+01101000000000011100000101001010
+00011111111000100011101000000000
+01101000000000010100000101000100
+00011111111000100101110000000000
+01111000001001001111110000000000
+01111000001011100111110000000000
+00011100000000100010001000000000
+00100000010000000011101001010100
+01111000001010101111110000000000
+00100000000000000000000000100000
+00011100001000100001011000000000
+01101000000000100000000101101011
+00011111111000100100001000000000
+01010011110000000111111000000000
+01111001001000000111111000111010
+00001000000000001000011001001000
+01010011111000000111111000000000
+00001000000000001000011001001000
+00011001011000100100001000000000
+00011010001000100100000000000000
+01111000001001000111110000000000
+00001000000000001000011000010000
+01111000010001000111110000000000
+00100000001000000011011101011100
+01111001001111111000000000100101
+01000100110000011100000000010000
+01111000001001110111110000000000
+01111000001001001111110000000000
+01111000001011100111110000000000
+01101000000000001000010000110010
+00011111111000010000010111111000
+11011000110000000000010000110010
+00011000010000001000010000001000
+00011000010000001010011110111000
+00100100001000010011100100100010
+11101000110001001000000000000000
+00001000000000001000011001001000
+00011010011000100000010000000000
+00100000001000000011100100011100
+11101000110001001000000000000000
+00001000010000011000011000000000
+00100000001000000011100101100000
+01111000001011100111110000000000
+00100000001000000011100100110000
+01111000001011100111110000000000
+01111001001000000000000000010000
+00100000001000000011100100110000
+01111001001000000010101000000010
+01111000001011101111110000000000
+00100000001000000011100100110000
+01111001001000000010101000000010
+01111000001011101111110000000000
+01111001001000000000000000010000
+01111001001111111000000000100101
+01000100110000100100000000010000
+01101000000000001000000001001100
+11000011000000101011100101000110
+00011000001001100111110000000011
+00100000001000010011100101000110
+01111000010001110111110000000000
+01111000010011100111110000000000
+01111000001011101111110000000000
+01111000010000111111110000000000
+01111001001000000010101000000001
+00101010101011111111111000000010
+00100000001000001011100101000000
+01011000000010101011111011101110
+00001000000000001000011000010100
+00100000001000000011100101000100
+01011000010111111010111010111010
+00001000000000001000011000011000
+01011000000000000000000000010010
+00001000000000001000011000000110
+01111000001000111111110000000000
+01111001001000000000000000010000
+01111000001001110111110000000000
+01111000001001001111110000000000
+11000101000000101011100101101001
+01101000000000001000000010010000
+00001000000000001000011000000011
+01101000000000010000000010010001
+10011000000000000111001000000000
+11000101000010000011100101010000
+00001000000000001000011000000101
+00100000001000000011100101010001
+00001000000000001000011000001101
+01101000000000001100000100110010
+11000000000000001011100101011011
+00011111001000100111111000000000
+00100000001110100011100101100000
+01101000000000010000000101111001
+10011000000000000000110000000000
+11101000110000001000000000000000
+00001000000000001000011000001000
+11000010000000000011100101010111
+00100000001000000011100101100000
+01101000000000010000000101111001
+10011000000000000000011000000000
+11101000011000001000000000000000
+00001000000000001000011000001000
+11000010000000000011100101011101
+01111000001001000111110000000000
+00001000000000001000011000010000
+01111000010001000111110000000000
+00100000010000000011010110000011
+01101000000000001000000001001100
+11000011000000101011011101011100
+00011000000000000111111000000000
+00001000000000001000011000000110
+00100000001000000011011101011100
+01111001001111111000000000100101
+01000100110000101100000000010000
+11000101000010000011100101110010
+01101000000000001000000110001010
+00001000000000001000011000000011
+01101000000000001000000101101001
+10011000000000000010011000000000
+00001000000000001000011000000101
+00100000001000000011100101110111
+01101000000000001000000110001010
+00001000000000001000011000000011
+01101000000000010000000101101001
+10011000000000000010011000000000
+00001000000000001000011000001101
+11011000110000000000010011011110
+00011010011000100111110000000000
+00100000001000101011100101111110
+11101000110000001000000000000000
+00001000000000001000011000001000
+00011010011000001010011111111111
+00100000001000000011100101111000
+01101000000000010000000011111110
+00011111111000001111111000000001
+01100000000000010000000011111110
+00100000001000000011100101100000
+01101000000000100000000101101111
+00011111111000001010001000000111
+01101000000000010000000101111011
+00100100001110100011100110001000
+00011010001000001010001111111101
+00100000001000000011100110010000
+00011111111011111111111000001100
+01101000000110010000000001000000
+00011000010000001000010000000001
+10011000010001100111111000000000
+00100100001000010011100110001111
+00011010001000001010001111111111
+00100000001000000011100110001011
+00011111111001100111111000000000
+00110111110100011000001000000000
+00101100010000000000011000000000
+00100100001000001011100110010000
+10011000000000000101001000000000
+00011010001000100101000000000000
+10011000000000000101001000000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110000110100000000010000
+00110111110100010000001000000000
+00011011010000100111111000000000
+10011000000000000000110000000000
+00011111111100010111111000000000
+10011100010001100111001000000000
+00011111001000010111001000000011
+00100100001000101011100110100010
+00011000000000000111111000000000
+00100000001000000011100110100110
+11011000010000000000111010100110
+00011000000000000111111000000000
+10011000010000001111111000000000
+11000010000000000011100110100100
+10011000110000001111111000000000
+00011111111001101111110000001100
+00100000010000000111111011111101
+00011000000001111111111000000000
+01100000000000010000000101111011
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110000111100000000010000
+00011011010000100111111000000000
+00011011001000100000010000000000
+10011000010001100111110000000000
+01111101001000010111111000101100
+10011000010001100000010000000000
+01011000000000000000111010100110
+00101000010011000000000000001111
+00100000001000001011100110111000
+01011111111111110000111010100110
+10011000010000001000010000000000
+01100000000010110000001111001000
+00100000011110110000000000000000
+01100000000010110000000000111000
+00100000011000000000000000000000
+01111000010110000111110000000000
+01101000000000110000001111001000
+00100000001110110011100111000000
+01101000000000110000000000111000
+10011011001000001110000000000000
+00011110000000001110000000001010
+01011000000000000000111010100110
+10011110000001100111111000000000
+00101111111011000000000000001111
+00100000001000001011100111001010
+01011000000000001111000101011010
+10011110000000001110000000000000
+00011110000000100011010000000000
+00100000011000000000000000000000
+00011000000000000111110000000000
+00100000001000000011100111001000
+01111001001111111000000000100101
+01000100110001000100000000010001
+00100000010000000011101001111010
+00011100001000100111111000000000
+00011111111000010111111110000000
+00101100100000000000111000000011
+00100100001000001011100111010110
+00011111111010010111111000000000
+10011010111000001111111000000000
+00100000001000000011100111010111
+00011010111000100111111000000000
+00011111111001101111110001001111
+01111000001010101111110000000000
+00100000010000000111111011111101
+00011000000001110010001000000000
+00011010001000001000010111011000
+00100000001000010011100111011111
+00011010001000111000010000000000
+00100000001000000011100111100001
+00011000010000111000010000000000
+00011000010000001000010000000001
+01111001001111111000000000100101
+01000100110001001100000000010001
+01101000000000001000000000110001
+11000011000000011011100111110011
+01101000000000100100000101110011
+10011100001001100111110000000000
+00100000001000010011100111110011
+00100000010000000011101000010010
+01101000000000001100000101111010
+00100000011110100000000000000000
+01101000000000001000000000110001
+01111001001000000111111000000010
+01100000000000001000000000110001
+01101000000000101100000110001000
+01100000000000101100000101111011
+11101000110000101000000000000000
+01100000000000101100000110000000
+00100000010000000011101000010111
+01101000000000001000000000110001
+11000100000000010000000000000000
+00101100001011111111111000000001
+00100000001000001011101000001111
+00011000010010010010001000000000
+00011000010000010000111000000111
+01011000000000000100000101111011
+10011010001000001010001000000000
+11101010001000001000000000000000
+10101111111011000000000000000000
+00100000001000001011101000000000
+00011000010000100111111000000000
+00100000001000000011101000001100
+01101000000000001100000110000101
+10011000000000000010010000000000
+00011100001000100111111000000000
+00011111111000010111111110000000
+00011111111010010111111000000000
+10011010111000001111111000000000
+10011010010001101111110000000000
+01011000000000000100000110010011
+00100000010000000111111011111101
+00011000000001110010001000000000
+10011010001000001000110000000000
+11101000110000001000000000000000
+01100000000000001100000110000110
+10011000000000000000010000000000
+00100000011000000000000000000000
+01101000000000001100000110000110
+10011000000000000000010000000000
+00100000011000000000000000000000
+01101000000000001000000000110001
+01111001001111111111111000000010
+01111001001111111111111000000011
+01100000000000001000000000110001
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110001010100000000010001
+11011000101000000100000110010011
+00011000000000000111001000001010
+00100000010000000111111000111011
+11011000101000000100000110010011
+00011000000000000010011000000000
+00011000000000000000111000000010
+01101000000000101100000101111011
+10011000000000000000010000000000
+00101000111000011111111000000010
+00100000001000001011101000100100
+00011000010000110000010000000000
+00101000010011000000000000000000
+00100000001000001011101000101000
+00011010011000100111111000000000
+11100000101000001000000000000000
+00011000010010110000010000000000
+00011010011000001010011000000010
+00101010011000011111110000101000
+00100100001000001011101000110001
+01101000000000101100000110000000
+10011000000000000000010000000000
+00101000111000011111111000000010
+00100000001000001011101000110001
+00011000010000110000010000000000
+00011010011001100111110001001110
+00100000001000010011101000100100
+00011000000000000010011000000001
+00011000111000001000111111111111
+00100100001000101011101000011111
+11011010001000000100000110010011
+00011000101000100111111000000000
+10011010001001100111111000000000
+01100000000000001100000110000101
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110001011100000000010001
+00100000010000000011100111001100
+01101000000000001000000110001001
+11000011000000101011101001000001
+01101000000010001000010001001000
+00100000001000000011101010000010
+01111001001111111000000000100101
+01000100110001100100000000010001
+00100000010000000011100111001100
+01101000000000001000000110001001
+11000011000000100011101001001000
+01101000000010001000010001000111
+00100000001000000011101010010001
+00011000000000000101101000000000
+01101000000000011100000101000111
+10011000000000000101100000000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110001101100000000010001
+01101000000000001100001001110111
+00011111111000100101101000000000
+01101000000000011100001001110100
+00011111111000100101100000000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110001110100000000010001
+01101000000000010100000101000100
+00011111111000100101110000000000
+01101000000000001100000101000011
+00011111111000100101101000000000
+01101000000000011100000101000000
+00011111111000100101100000000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110001111100000000010001
+01101000000000010000000001000100
+00011111111000100101110000000000
+01101000000000001000000001000011
+00011111111000100101101000000000
+01101000000000011000000001000000
+00011111111000100101100000000000
+00100000011000000000000000000000
+11000101000100000011101001101001
+11000110100011101000000000000000
+11000110100011111000000000000000
+00011101100000010101100100000000
+01111000001010101111110000000000
+00100000000000000000000000100000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110010000100000000010010
+00011000000000000010101000000000
+01111000010100001111110000000000
+01111000010100000111110000000000
+01111000001011110111110000000000
+01110000100010010000001000000000
+01110000100010010000000100000000
+01110000100010010000000000000000
+01110000100010010000001100000000
+01110000100010010000010001110000
+01110000100010010000011000000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110010001100000000010010
+01110000100010010000001000000000
+01110000100010010000000100000000
+01110000100010010000000000011000
+01110000100010010000001110100111
+01110000100010010000010001111111
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110010010100000000010010
+01100000000010001000000000010111
+00011000010000001010001000000100
+00100000001000000011101010110110
+01111001001111111000000000100101
+01000100110010011100000000010010
+01110000100010010000000111001111
+00100000000000000000000000001010
+01110000100010010000000011111111
+01110000100010010000001110101111
+01110000100010010000010011111111
+00100000000000000000000000001010
+01110000100010010000001010100000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110010100100000000010010
+01100000000010001000000000010111
+00011000010000001010001000000010
+00100000010000000011101010110110
+01011000000000000000010100000000
+00100000010000000011101111110011
+01110000100010010000011000000001
+01110000100010010000000000111100
+01110000100010010000000111100000
+01110000100010010000001110110111
+01110000100010010000001001111111
+00100000011000000000000000000000
+01110000100000000100001000000110
+00100000010000000011110000101001
+00100000010000000011110000111010
+01101000000000010100000101100011
+11000011000001110011101010100001
+10011000000000000000110000000000
+11011000010000001000100100000000
+11101000110000001000000000000000
+11000000011111111011101010101011
+10011000010000011000101000000000
+11101000110000001000000000000000
+11100000101000001000000000000000
+00100000001000000011101010100101
+01111001001111111000000000100101
+01000100110010101100000000010010
+00100000010000000011110110010001
+00100000010000000011101100001010
+01011000000000000000011111010000
+10011100010000001111111000000000
+01100000000000100000000101110011
+01111001001000000010101000000011
+00011000000000000010101000000000
+00100100010101011011101011001110
+00100000001000000011101011100010
+01111001001111111000000000100101
+01000100110010110100000000010010
+01011000000000000000100101100000
+10011010001000001000010000000000
+01101000000000001100000101011101
+01110000100010010101111100000100
+10011000010011111111111000000000
+01101000000010001100000101011110
+10011000010001101111110000000000
+00100000010000000111111011111101
+00011000000001111010001000000000
+00011000000001110111111000000000
+00011111111100000111111000000000
+00011111111100100111111000000000
+10011000010001101111110000000000
+00100000010000000111111011111101
+00011000000001111111111000000000
+00011111111011010111111000000000
+00011111111000111111111000000000
+10011010001000011111111000000000
+01100000000100100000100101100000
+01110000100010010101111101000100
+01110000100010010101111111000100
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110010111100000000010010
+01110000100010010000011000000010
+01011000000000111101000010010000
+00100000010000000011101111110011
+01110000100010010000000001111111
+00100000000000000000000010000010
+01110000100010010101001000110000
+01110000100010010000000111010000
+01110000100010010101001001110000
+01110000100010010101001011110000
+00011000000000000111001000110010
+01101000000100001000100110000000
+11000010100000101011101011011101
+11000010000000000011101011011010
+01100000000000001100000101101111
+01110000100010010000000100000000
+01110000100010010000000000000000
+01110000100010010000011000000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110011000100000000010011
+01101000000000001100000101101111
+01111001001000000111111000000101
+01100000000100001000100101010010
+01101000000110001000100101010000
+00011000010000010000010000000111
+00011111111010011111111000000000
+10011000010000011111111000000000
+01100000000100001000100101010000
+01101000000100001000100101010001
+01111001001111111111111000000000
+01100000000100001000100101010001
+01101000000100001000100101010010
+01111001001111111111111000000101
+01100000000100001000100101010010
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110011001100000000010011
+01101000000100010000100110000001
+00011111111100011111111000000000
+00011111111010010111111000000000
+00011111111001100111111000000000
+00011111111000010111111011111111
+00011111111001101111110000001010
+00100000010000000111111011111101
+00011000000001111111111000000000
+00011111111100100111111000000000
+00011000000001110000010000000000
+10011000010000011111111000000000
+01100000000000001000000000011000
+00100000011000000000000000000000
+01110000100000000100001000001010
+01110000100010010000010100000000
+01101000000100011000000100111000
+01100000000100011000000001001100
+01110000100000000100110011111100
+00100000010000000011110110110000
+00100000000000000000001111101000
+00100000011000000000000000000000
+01110000100000000100001000000110
+01101000000100001000100101101011
+01111001001111111111111000000100
+01111001001111111111111000000101
+01100000000100001000100101101011
+01110000100010010000010100000000
+01110000100010010000010000000000
+01110000100010010000010001110000
+01110000100010010000010111111111
+01101000000100001000100101101011
+01111001001000000111111000000100
+01111001001000000111111000000101
+01100000000100001000100101101011
+00100000010000000011101100111000
+01101000000100001000100101101000
+01111001001000000111111000000111
+01100000000100001000100101101000
+01111001001111111111111000000111
+01100000000100001000100101101000
+01111001001000000111111000000111
+01100000000100001000100101101000
+01110000100000000100001000000101
+00100000011000000000000000000000
+00100000000000000000001111101000
+01110000100000000100001000000100
+00100000000000000000000000001010
+01110000100000001011010000000000
+01110000100000000000011010000000
+01101000000100001000000100101101
+11000011000000001011101100100110
+01101000000110011000000101001001
+01110000100000000100001000000101
+00100000000000000000000000001010
+01110000100000000000011010000000
+01101000000100001000000100101101
+11000011000000001011101100101100
+01101000000100011000000101001001
+10011000010001100111111000000000
+00100000001000010011101100110010
+00011111111001100111111000000000
+01100000000000010000000110001100
+00011111111001100111110001000110
+00100100001000010011101100110100
+00100000011000000000000000000000
+01011000000000000000111100001111
+00100000001000000011110110100111
+01011000000000000000100000001111
+00100000001000000011110110100111
+01111001001111111000000000100101
+01000100110011010100000000010011
+00100000010000000011101010000111
+01111000010100000111110000000000
+01111000001100001111110000000000
+01111000001010110111110000000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110011011100000000010011
+01101000000000001000000001001100
+00101111111011111111111000000010
+01111001001000001111111000000000
+01100000000100001000000000010001
+11011000110000000000000001100010
+11101000110001001000000000000000
+10011000000000000110010000000000
+11101000110000111000000000000000
+10011000000000000110011000000000
+01101000000000001000000001010100
+00011111111000001110100111111111
+01111000001011010111110000000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110011100100000000010011
+01111000001001101111110000000000
+11011001011000000000011000000000
+00110101001100110000010000000000
+00011011010000100111111000000000
+01100000000000110000000010011100
+01111000010001101111110000000000
+00100100001011000011101001101101
+11011101001000000000001110111011
+00011101000000001101000000000001
+00011101000000010101000111111100
+00100000011000000000000000000000
+01111000001001101111110000000000
+00110111110010111000010000000000
+00100000001011000011101101010101
+00101101000000000000010000000010
+00100100001000001011101101011110
+00100000001000000011101101010101
+01111001001111111000000000100101
+01000100110011101100000000010011
+11011001011000000000011000000000
+01111000001001101111110000000000
+00110100011100110000010000000000
+01111000010001101111110000000000
+00100100001011000011101001101101
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110011110100000000010011
+01111000001001101111110000000000
+00110111110000011000010000000000
+01111000010001101111110000000000
+00100100001011000011101001101101
+11011101001000000000001110111011
+00011101000000010101000111111100
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110011111100000000010011
+10011000000000000010001000000000
+00011100001000100111111000000000
+10011000010000001001011000000000
+00011001011000100111111000000000
+01100000000000100100000101101010
+00011010001000100111111000000000
+00100000011000000000000000000000
+00011111111000100000010000000000
+01111001001111111000000000100101
+01000100110100000100000000010100
+00011000010000100111111000000000
+00100000010000000111111010010001
+00011100001100000111111000000000
+01111001001000000111111000101100
+00100000010000000111111001111010
+01111001001111111111111000101100
+00100000010000000011101111011010
+00100000010000000111111001111010
+00100000011101000000000000000000
+00100000010000000111111010000100
+10011000000000000011011000000000
+00110111110000011000001000000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110100001100000000010100
+00100000001110000011101110010011
+00110101001100110000001000000000
+00011101000000100000010000000000
+00100000001000000011101110010110
+00100000001101110011101110010101
+00110100011100110000001000000000
+00011100010000100000010000000000
+00100000001101000011101110100011
+00101000010000000000011000000001
+00100100001000001011101110001101
+01111001001111111000000000100101
+01000100110100010100000000010100
+01101000000000001000000000110000
+11000100000000000000000000000000
+01101000000000100100000101101010
+10011000010001100111111000000000
+00100100011000010000000000000000
+00011111111001100111110011111111
+00100000001000010011101110001101
+00100000011000000000000000000000
+00101000010000000000011000000011
+00100100001000001011101110001101
+00100000001000000011101110011001
+01111001001111111000000000100101
+01000100110100011100000000010100
+11011001011000000000011000000000
+00100000001000000011101110001101
+01111000010101000111110000000000
+00100000001000000011101110100110
+01111000001101000111110000000000
+00100000001000000011101110100110
+01111001001111111000000000100101
+01000100110100100100000000010100
+00100000010000000011101101000001
+01111000010100001111110000000000
+01111000001100000111110000000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110100101100000000010100
+11011001011000000000111001000011
+00110100011100110000001000000000
+01111000001010110111110000000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110100110100000000010100
+11011001011000000000110100000000
+00110100011100110000001000000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110100111100000000010100
+11011001011000000000111001000011
+00110101001100110000001000000000
+01111000001010110111110000000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110101000100000000010101
+01010001001000000111111000000000
+01111000001011101111110000000000
+01111001001000000010101000000000
+00001000000000001000011001001000
+01111000010011101111110000000000
+00100000011000000000000000000000
+00011100101000100000010000000000
+00011000010000011000010001100000
+00011000010000100001110000000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110101001100000000010101
+01101000000000001100000100110000
+00011111111000001111111000000001
+11000000100000111011101111010111
+00011000000000000111111000000001
+01100000000000001100000100110000
+10011000000000000000100000000000
+00100000011000000000000000000000
+00011011001000100000010000000000
+00100000011101001000000000000000
+00011011010000100000010000000000
+00100000011000000000000000000000
+00011100010000100111111000000000
+00100000011101001000000000000000
+00011101000000100111111000000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110101010100000000010101
+01101000000010100000000001001101
+00100000010000000011101111011110
+10011000010001100001011000000000
+00011001011000100111111000000000
+01101000000010010000000001010001
+00011000010000111000010000000000
+10011000010001100111111000000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110101011100000000010101
+00100000010000000011101111011110
+01100000000000100000000001001101
+00100000011000000000000000000000
+00100000001000000011101111110001
+00100000001000000011101111110010
+00100000011110100000000000000000
+00011111111000110111111000000000
+00011111111000001111111111111101
+00011111111000001111111111111111
+00100100001000101011101111110110
+00011000000000000111111000000000
+00100000011000000000000000000000
+11011111001000000000000000010000
+11011000101000000000000000000000
+00100000010000000111111000111011
+11011000101000000000001111000000
+11011111001000000000000000001010
+00100000010000000111111000111011
+01110000000001111101111000000000
+01110000000010110111110100000000
+01110000000001000000110100000000
+01110000000000011000100100000000
+01110000000001000100110100000000
+01111001001111111000000000100101
+01000100110101100100000000010101
+01110000000000010111011100000000
+01110000000000010101001100000000
+01110000000000010101111000000000
+01011000100111101000101100110011
+01100000000000011100000101000111
+01011000000000000000000101010011
+01100000000000010000000010000011
+01110000000000001000010100011110
+01110000000000001000011000000001
+01110000000000001000100000000111
+01011000000100101110100100000100
+01100000000000011000000010000000
+01011000000000000000101000000100
+01100000000000011100011011111101
+01011000000000000001001011101001
+01100000000000010100011100000000
+01110000000000001000111101100000
+01110000010000010111000100000101
+01110000000000000001010000000010
+00100000010000000111010111001101
+01111001001111111000000000100101
+01000100110101101100000000010101
+00100000011101011000000000000000
+01011000000000000000000000000000
+01100000000000010000000010010001
+00011100010000110111111000000000
+01100000000000100100000100110100
+00100000011000000000000000000000
+01011000000000000000000010101010
+11011000101000000000000011010011
+00011000000000000111001000011110
+11100000101000001000000000000000
+11000010000000000011110000100110
+00100000011000000000000000000000
+01110000100010010000011100000010
+01110000100010010000100000011111
+01110000100010010000100100011111
+01110000100010010000101011100000
+01110000100010010000101101001110
+01110000100010010001001001000101
+01110000100010010101001100000000
+01110000100010010100110011111011
+01110000100010010100110111101111
+01110000100010010100111000001100
+01110000100010010110111110001000
+01110000100010010111001100110000
+01110000100010010101001100000000
+01110000100010010101011011001001
+01110000100010010101100001101100
+01110000100010010101100101010000
+00100000011000000000000000000000
+01110000100010010011000010101001
+01110000100010010010111110110001
+01110000100010010010111010111001
+01110000100010010010110110101101
+01110000100010010010110010110001
+01110000100010010010101110110101
+01110000100010010010101010111010
+01110000100010010010100110111110
+01110000100010010010100011000010
+01110000100010010010011111000110
+01110000100010010010011011001010
+01110000100010010010010111001110
+01110000100010010010010011010010
+01110000100010010010001111010110
+01110000100010010010001011011010
+01110000100010010010000111011110
+01110000100010010010000011100010
+01110000100010010001111111100110
+01110000100010010001111011101010
+01110000100010010001110111101110
+01110000100010010001110011110010
+01110000100010010001101111110110
+01110000100010010001101011111011
+01110000100010010100011111110101
+01110000100010010100011011100101
+01110000100010010100010111010101
+01110000100010010100010011011000
+01110000100010010100001111001001
+01110000100010010100001011001000
+01110000100010010100000110001001
+01110000100010010100000010001000
+01110000100010010011111110000111
+01110000100010010011111001001000
+01110000100010010011110100001001
+01110000100010010011110000001000
+01110000100010010011101111001001
+01110000100010010011101011001000
+01110000100010010011100111000111
+01110000100010010011100011000110
+01110000100010010011011111000101
+01110000100010010011011011000100
+01110000100010010011010111000011
+01110000100010010011010011000010
+01110000100010010011001111000001
+01110000100010010011001011000000
+01110000100010010011000110000000
+00100000011000000000000000000000
+01111000001110110111110000000000
+01011000100011101000100110111110
+00011111111011010111111000000000
+00011111111000011111111011010110
+10011000000000000001001000000000
+01110000100010010001010000000111
+01110000100010010000101010100000
+01110000100010010000110110001111
+01110000100010010001000100001111
+01110000100010010001001010000111
+00100000011000000000000000000000
+01011000000000001110111000100001
+01100000000100010000000001010000
+01101000000100001000000100111110
+11000011000000011110011100100101
+01111000001101011111110000000000
+11000011000000111011110001111111
+01111000010101011111110000000000
+00011100111000100111111000000000
+00100100001110100011110001111111
+11011000010111111111111111111111
+00100000001000000011110011101100
+01101000000100011000000100111100
+01100000000100011000000001001100
+11101000110000001000000000000000
+00011111111000011111111011101111
+11100000101000001000000000000000
+00100000010000000011110110110010
+01101000000100001000000001001111
+01111001001000000111111000000100
+01100000000100001000000001001111
+00100000010000000011110110110010
+00100000010101011011110010010000
+01101000000100001000000001001110
+01111001001111111111111000000011
+01100000000100001000000001001110
+00100000010000000011110110110010
+00100000011101011000000000000000
+00100000001000000110011100100101
+01101000000000001100001000111001
+01100000000100001000000010000110
+01101000000000011100001000101110
+01100000000100011000000010000000
+01101000000000100100001000100010
+01100000000100100000000001110100
+01101000000000100100001000011110
+01100000000100100000000001110000
+01101000000001000100001000100110
+01100000000101000000000001111000
+01101000000001000100001000110001
+10011000000000000000000000000000
+01101000000101000000000101000000
+01100000000001000000000010100011
+00100000010000000110011110000001
+00100000011000000000000000000000
+00011000000000100111111000000000
+01100000000001000100001000110001
+01101000000101000000000001110000
+01100000000001000100001000011110
+11101000110001000000000000000000
+11100000101001000000000000000000
+01101000000100011000000010000000
+01100000000000011100001000101110
+01101000000100001000000010000110
+01100000000000001100001000111001
+00100000001000000011110110111000
+01101000000100001000000010110100
+00100100001110100011110010110001
+01101000000000011100001000010000
+00100100011110100000000000000000
+01110000100000001011010011000000
+01110000100000000000011010000000
+01101000000100001000000100101101
+11000100000000001000000000000000
+01101000000100011000000101001001
+01100000000000011100001000010000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110101110100000000010101
+00011011010000100111111000000000
+00100000010000000111111001111000
+01101000000010100100001000000000
+00011000010001100111110011111111
+00100000011000010000000000000000
+00011111111011010111111000000000
+00011111111100100111111000000000
+10011000010001101111110000000000
+00100000010000000111111011111101
+00011000000001111111111000000000
+11011000010000000000000011001000
+00100000010000000111111100101110
+01100000000000001000000010011011
+00100100001101000011110011000111
+00011111111001100111111000000000
+01101000000010011100001000010000
+10011000010000001111111000000000
+01100000000000011100001000010000
+01011000000000000000000000000000
+01100000000000100100001000000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110101111100000000010101
+00100000010000000011110110111000
+01101000000100100000000100111000
+01111001001111111111111000001111
+01100000000100100000000001001100
+00100000010000000011110110110000
+11011000010111111111111111111111
+01101000000000001100000111111000
+01100000000000001100001000011101
+01101000000000001100001000011011
+01111001001000000111111000000111
+01100000000000001100001000011011
+01111001001111111000000000100101
+01000100110110000100000000010110
+01101000000000100100001000000000
+10011000010000001111111000000000
+01100000000000100100001000000000
+00100000010000000011110010100000
+01101000000000101100001000011001
+01100000000100100000000001001100
+00011111111011110010001000000000
+00110111110110011000001000000000
+00011011001000100111111000000000
+01100000000000110100001000000100
+01110000100000000000010100000010
+00110111110110011000001000000000
+00110111110110011000001000000000
+00011010001000100111111000000000
+01100000000100001000000001001111
+01110000100000000000010100000010
+00110111110110011000001000000000
+00110111110110011000001000000000
+01100000000110100000000001001100
+01110000100000000000010100010000
+00110111110111111000001000000000
+01111001001111111000000000100101
+01000100110110001100000000010110
+01011000000000000000000000000000
+00011100111000100111110000000000
+00100000001000101011110011111101
+01101000000100001000000100111100
+01101000000110001000000100111101
+10011000010001100111110000000000
+00100000001000010011110011111011
+00011000010000100111111000000000
+10011100111001100111111000000000
+00011111111000001111111000000001
+00011111111000001111111000001000
+00110111110110011000001000000000
+10011110001000001111111000000000
+01101000000010100100000111111100
+10011000010000001111111000000000
+01101000000010011100001000010000
+10011000010011111111111000000000
+00011111111011001111111000000000
+00011111111100011111111000000000
+00011111111000001111111001101110
+11011000010000000000111010100110
+10011000010001101111110000000000
+00100000010000000111111011111101
+00011000000001111111111000000000
+00011111111100000111111000000000
+00011000000001110000010000000000
+10011000010000011111111000000000
+01101000000010110100001000000100
+00100000010000000111111001101101
+00011000010000100011001000000000
+01101000000000110100000001001000
+00100000010000000011100111000000
+00011011010000100111111000000000
+01100000000000110000000101100001
+00011100111000100111111000000000
+11100000101000001000000000000000
+01101000000100001000000100011101
+00011111111000011111111011110000
+11100000101000001000000000000000
+00100000010000000111111101010010
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110110010100000000010110
+00100000010000000011110010101011
+01101000000000011100001000010000
+00100000011110100000000000000000
+01101000000000001100000100110001
+00100000011110100000000000000000
+00100000010000000011110111001010
+00100100011110100000000000000000
+01101000000000001100000001000000
+00101111111000000000111000000011
+00100100001000001011110101001101
+01101000000000010100000001000010
+00100000011110100000000000000000
+00100000011101011000000000000000
+01111001001111111000000000100101
+01000100110110011100000000010110
+01101000000010001000000010100010
+01101000000000010100000001000010
+10011000010011111111111000000000
+00011000010100011000010000000000
+00011000010010110000010000000000
+10011000010001100111111000000000
+01101000000010100100000001000100
+10011000010000001111111000000000
+01101000000010001100000111110111
+10011000010001100111111000000000
+00011111111100000110000000000000
+01111001001111111000000000100101
+01000100110110100100000000010110
+01101000000000010100000001001110
+00011111111000110111111000000000
+00100000010000000111111010010001
+00011110000000100111111000000000
+00100000010000000111111001111010
+00011011010000100000010000000000
+00100000010000000111111001111000
+00100000011101000000000000000000
+00100000010000000111111010001010
+01111001001111111000000000100101
+01000100110110101100000000010110
+01101000000000001100001000011001
+10011000010001100111110000000000
+00100000001000010011110011001010
+01100000000010100100000111111100
+00100000010000000011111010101001
+00100000010000000101001100001100
+01101000000010100100000111111100
+00100000001000000011110011011010
+01111001001111111000000000100101
+01000100110110110100000000010110
+01101000000000001100000001000000
+11000011100000000000000000000000
+11000011100000011000000000000000
+01101000000000001100011111011100
+00100000001110100011110101010110
+01101000000000001100011110010011
+00100000011110100000000000000000
+01101000000000001100001111011000
+00100100001110100011110101011010
+01101000000000001100000100110011
+00100000011110100000000000000000
+01101000000000010100000111110101
+00100000011110100000000000000000
+01101000000010001100000111110111
+10011000010001100111111000000000
+11011000010000000001110101001100
+10011000010011111111111000000000
+00100000001000000011110101000010
+01111001001111111000000000100101
+01000100110110111100000000010110
+01111000010101011111110000000000
+01101000000000001000000000110000
+11000100000000001000000000000000
+00100100001101101011110101111011
+00100000010000000011110101110110
+01101000000000010100000101100001
+01100000000000010000000000111110
+01101000000000001000000001000111
+11000010100000011011110110001010
+11000101100001101011110110001010
+00100000010000000101001001111110
+00100100001110100011110110001010
+01110000000000001010001000000000
+11000101100001101011110110001010
+01101000000000001100001000010101
+00100000001110100011110110001110
+00011111111000001111111111111111
+01100000000000001100001000010101
+00100000011000000000000000000000
+01110000010000011111101000000000
+01101000000000011100001000001010
+00011111111000001111111000000001
+01100000000000011100001000001010
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110111000100000000010111
+01101000000010010100000101100001
+00011000010000110000010000000000
+01101000000000010000000000111110
+10011000010000001111111000000000
+01100000000000010000000000111110
+01110000000000001010001000000000
+01101000000000011100001000001101
+00011111111000001111111000000001
+01100000000000011100001000001101
+01101000000000001100000111111010
+00011111111000001111111000000001
+01100000000000001100000111111010
+00100000011000000000000000000000
+01110000000000001010001000000000
+01101000000000001100001000010100
+01100000000000001100001000010101
+00100000011000000000000000000000
+01101000000010001100001000010011
+01100000000010001000000010100010
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110111001100000000010111
+01101000000000001100001000011001
+00100100011110100000000000000000
+01110000100000000100001000000110
+01011000000000000000111100001100
+00100000010000000011110110100111
+01011000000000110000110101000000
+00100000010000000011101111110011
+00110111110110011000001000000000
+00011110001000100110000000000000
+00100000010000000011101100110110
+01110000100000000100001000000100
+00100000000000000000000000001010
+00110111110110011000001000000000
+00011110001000100111111000000000
+10011110000001100111111000000000
+00011111111000001111111000110000
+11011000010000000000000011111111
+00100000010000000111111100101110
+01100000000000001100001000011001
+00100000011000000000000000000000
+11011000101000000000111111111111
+10011000101000010000101000000000
+01101000000000001100001000010110
+00011111111000010111111011110000
+00011111111011010111111000000000
+10011000101000011111111000000000
+01100000000100010000000001001100
+11101000110000010000000000000000
+11100000101000010000000000000000
+01011000000000000000000000000001
+00100000001000000011110110110011
+01011000000000000000000000000010
+00110111110110011000001000000000
+01100000000100001000000000000101
+00110111110110011000001000000000
+00110111110110011000001000000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110111010100000000010111
+01101000000000100000000010100011
+01100000000100100000000001001100
+01011000000000000000000000000100
+00100000010000000011110110110011
+01101000000000100000000010100111
+01100000000100100000000001001100
+01011000000000000000000000001000
+00100000001000000011110110110011
+01101000000000010100000111110011
+11111001001000000111111000000000
+01100000000000010100000111110011
+00100000011000000000000000000000
+01101000000000010100000111110011
+11111001001111111111111000000000
+01100000000000010100000111110011
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100110111011100000000010111
+00100000010000000011111010100111
+01101000000000010100000111110011
+00011111111000100010001000000000
+01101000000000001000000001001100
+00101111111011111111111000000110
+01111001001000001010001000001011
+01101000000000001000000001111000
+01101000000010001000000001111100
+10011000010000001111111000000000
+01101000000010001000000001001000
+10011000010000001111111000000000
+01111101001110100010001000001010
+01111001001111111000000000100101
+01000100110111100100000000010111
+01101000000000010000001011000100
+01101000000010010000001011000110
+10011000010000001111111000000000
+01111101001110100010001000001101
+01101000000000101100011111011111
+01111101001110100010001000001111
+01101000000000101100011111100100
+01111101001110100010001000001110
+01101000000000001100001001110010
+01111101001110100010001000001000
+01101000000000001100000100110010
+00101111111000011111111000001010
+00100000010000001011110111110101
+01111001001111111000000000100101
+01000100110111101100000000010111
+01101000000000001100000100110010
+11000000100000001011110111111010
+00100000010000000011110111110101
+01101000000000001100001001011110
+01111001001110100010001000000011
+01101000000000100100001010100101
+11011000010000000001011100010000
+10011000010000001000010000000000
+00011100010000100111111000000000
+10011000010001100111110000000000
+01111101001000010010001000000100
+00100000001000000011110111111100
+01101000000100010000000100010010
+01111101001110100010001000000110
+01101000000100010000000100001110
+01111101001110100010001000000101
+00100000011000000000000000000000
+01011111111111111111111111111000
+10011010001000010010001000000000
+00011010001000100111111000000000
+01100000000000010100000111110011
+00100000011110100000000000000000
+00100000011101101000000000000000
+01111000001101011111110000000000
+00100000011000000000000000000000
+01101000000100100000000100111000
+01111001001111111111111000011011
+01100000000100100000000001001100
+00100000010000000011110110110000
+00100000001000000011101111110001
+01101000000100100000000100111100
+01111001001000000111111000010100
+01100000000100100000000001001100
+00100000001000000011110110110010
+01101000000100100000000100111100
+01111001001111111111111000010100
+01100000000100100000000001001100
+00100000001000000011110110110010
+01111001001111111000000000100101
+01000100110111110100000000010111
+01101000000000001100000100110010
+11000001100000001000000000000000
+00100000010000000110101010001011
+00100000011000001000000000000000
+01101000000000100100100000000111
+00100100001110100011111000011010
+00011100010000100111111000000000
+01100000000000100100100000000111
+00100000001000000110101001101011
+01111001001111111000000000100101
+01000100110111111100000000010111
+00011100010000100111111000000000
+01101000000010100100100000000111
+10011000010001100111111000000000
+11011000010000000000000000100001
+10011000010001100111110000000000
+00100100011000010000000000000000
+01011000000000000000000000000000
+01100000000000100100100000000111
+00100000001000000100010110011001
+01101000000000010100000111110001
+11000010100000000011101111110001
+00100000011000000000000000000000
+01101000000000010100000111110001
+11000010100000001011101111110001
+00100000011000000000000000000000
+01101000000000010100000111110001
+11000010100000010011101111110001
+00100000011000000000000000000000
+01011000000000000011111000110111
+01100000000000010100001010001110
+01011000000000000011111000111101
+01100000000000010100001010010010
+01011000000000000011111000110111
+01100000000000010100001010010000
+00100000011101011000000000000000
+01110000010001111110100100000001
+00100000011000000000000000000000
+01101000000000001000000000110000
+11000011000000001101111010011111
+01111001001000000000000000001101
+01101000000000110100001000001010
+01100000000000110100011100000011
+00100000001000000111101111011110
+00011010011000100111111000000000
+11000001100010000000000000000000
+00100000010000000111101110110001
+01101000000000001100011111101011
+11000000000000001011111000111111
+00100000010000000111101111100010
+00100000001000000011110011001101
+00011000000000000000010000000010
+00011000010000001000010111111110
+00100000010000000011101001111010
+00100000010000000011101010010001
+01111000010000111111110000000000
+01111000001011101111110000000000
+01111001001000000010101000000000
+00100000010000000011101110101110
+01101000000000001000000000000000
+00001000000000001000011000001000
+00100000001000000011111001001100
+01111001001000000000000000100101
+01000100111001101100000000111001
+01101000000000001100000100110010
+00100000001110100011111001001111
+11000000000000110101101010100010
+11000000000000111100101100110011
+11000000000000100100001010010011
+11000000000000011100110000001001
+11000000000000001100010001100001
+11000000000001001111011000100100
+11000000000001010110001011101111
+11000000000001100100101111110011
+11000000000001101110101010001110
+11000000011111111011111000101110
+11000010100000110110010010000110
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100111001110100000000111001
+01110000000000010101001100000000
+01110000000000011000100100000000
+01110000000000011000101000000000
+01011000000000000000000000000000
+01100000000000101000011111011010
+01101000000000001100000100110010
+00100000001110100011111001011111
+11000000000001010110001100011111
+00100000011000000000000000000000
+00100000010000000111101110100001
+00100000010000000111110001000101
+00100000010000000011111001110011
+01101000000000010100001010010000
+00100000001000000111111101100110
+01101000000000010100001010001110
+00100000001000000111111101100110
+01101000000000010100001010001100
+00100000001000000111111101100110
+01111001001000000000000000100101
+01000100111001111100000000111001
+11011010001000000100011111011111
+00100000010000000111111110011111
+00100000011110100000000000000000
+00011111111000100010011000000000
+00100000010000000011111001111101
+00100000001000000011111010100101
+11011010011000000000000000000000
+00100000011000000000000000000000
+11000000000000001011111010010010
+11000000000010000011111011011001
+11000000000000101011111010110110
+11000000000010010011111010111101
+11000000000000110011111011010101
+11000000000000100011111011111110
+11000000000000010011111100000011
+11000000000010011011111011111110
+11000000000010100011111011001100
+11000000000010101011111011010000
+11000000000000011011111010101111
+11000000000001011011111011000001
+11000000000001100011111011001000
+11000000000010110011111011011101
+11000000000011000011111010101011
+11000000000101010011111010011011
+11000000000101011011111010011001
+00011111111000010000010000001111
+00011111111000010111111011110000
+11000000001010000011111011100001
+00100000011000000000000000000000
+01101000000000010100011111110100
+01111001001000000111111000000000
+01100000000000010100011111110100
+01101000000000010100001010100010
+01111001001111111111111000000000
+01100000000000010100001010100010
+00100000011000000000000000000000
+01110000000000100101100000000000
+00100000011000000000000000000000
+01101000000000001000001001011000
+00011111111000001111111000000001
+01100000000000001000001001011000
+00011111111001100111110000000001
+00100000001000010011111101101100
+01110000000000100101100000000000
+01101000000000010100001010100010
+01111001001000000111111000001001
+01100000000000010100001010100010
+00100000001000000011111101110111
+01101000000000010100001010010010
+00100000001000000111111101100110
+01101000000000010100001010000110
+00100000001000000111111101100110
+01101000000000010100001010001010
+00100000001000000111111101100110
+01101000000000010100001010100010
+01111001001000000111111000000001
+01100000000000010100001010100010
+00100000001000000011111110100010
+01101000000000010100011111110100
+01111001001000000111111000000111
+01100000000000010100011111110100
+01101000000000010100001010100010
+01111001001000000111111000000010
+01100000000000010100001010100010
+00100000011000000000000000000000
+01101000000000010100011111110100
+01111001001000000111111000000001
+01100000000000010100011111110100
+01101000000000010100001010100010
+01111001001000000111111000000100
+01100000000000010100001010100010
+00100000011000000000000000000000
+01101000000000010100011111110100
+01111001001000000111111000000011
+01100000000000010100011111110100
+00100000011000000000000000000000
+01101000000000010100011111110100
+01111001001000000111111000000101
+01100000000000010100011111110100
+01101000000000010100001010100010
+01111001001000000111111000000011
+01100000000000010100001010100010
+00100000011000000000000000000000
+01101000000000010100011111110100
+01111001001111111111111000000101
+01100000000000010100011111110100
+00100000011000000000000000000000
+01101000000000010100011111110100
+01111001001000000111111000001001
+01100000000000010100011111110100
+00100000011000000000000000000000
+01101000000000010100011111110100
+01111001001111111111111000001001
+01100000000000010100011111110100
+01110000010001101111100000000000
+00100000001000000011111110100110
+01101000000000010100011111110100
+01111001001000000111111000000010
+01100000000000010100011111110100
+00100000011000000000000000000000
+01101000000000010100001010100010
+01111001001000000111111000000000
+01100000000000010100001010100010
+00100000011000000000000000000000
+01101000000000010100001010100010
+01111001001000000111111000001000
+01100000000000010100001010100010
+00100000001000000011111101110111
+01111001001000000000000000100101
+01000100111010000100000000111010
+01100000000010001000001001011001
+01101000000000001000001001011001
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001000001001011001
+00100000010000000111101110110001
+00100000010000000011111101100000
+00100000010000000011111011101101
+00100000010000000011111011110101
+00100000001000000011111011100100
+01101000000000001100001010011101
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001100001010011101
+00100100011110100000000000000000
+00100000010000000011001011101110
+00100000001000101011111110011110
+00100000011000000000000000000000
+01101000000000010100011111110000
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000010100011111110000
+00100100011110100000000000000000
+00100000010000000011111101111110
+00100000010000000011111110011000
+01101000000000010100001010010100
+00100000001000000111111101100110
+00100000010000000011111100010101
+01101000000000010100011111110100
+01111001001111111111111000000111
+01100000000000010100011111110100
+00100000011000000000000000000000
+01110000010000101001110100000000
+01101000000000010100011111110100
+11000010100000111011111100001000
+00101111111011000000000000000001
+00100000010000001011111001111011
+01101000000000010100011111110100
+01111001001111111111111000000000
+01111001001111111111111000000001
+01111001001111111111111000000010
+01111001001111111111111000000011
+01111001001111111111111000000100
+01100000000000010100011111110100
+00100000001000000011111110100110
+00100000010000000011111100010010
+00100000001000000011111110011010
+01011000000000000000000000000000
+01100000000000010100001010100000
+00100000011000000000000000000000
+01011000000000000000000000000000
+01100000000000010100001010100010
+00100000011000000000000000000000
+01101000000000010100001010100010
+01100000000000010100001010100000
+01011000000000000000000000000000
+01100000000000010100001010100010
+00100000011000000000000000000000
+01101000000000010100001010100010
+01111001001000000111111000000111
+01100000000000010100001010100000
+01011000000000000000000000000000
+01100000000000010100001010100010
+00100000011000000000000000000000
+00100000010000000110100100011101
+01101000000000110100001001110100
+00100000011000000000000000000000
+01101000000000001100010010001011
+00100000001110100011111100101010
+00100000010000000011111110010110
+00100000001000000011111110000010
+00100000010000000011111110010100
+00100000001000000011111110001000
+01111001001000000000000000100101
+01000100111010001100000000111010
+11011010010000000000001001000100
+11011010011000000011111100110001
+00100000001000000011001100000001
+11011000010000000000000000000000
+11000011000000000011111100110101
+00011010001000001000110000010000
+11101000110010110000000000000000
+00011000010000100111111000000000
+00100100010110100011111100111010
+11100010010010110000000000000000
+00011010010000001010010000000110
+00100000001000000011001100000111
+01101000000000001100001010011010
+00011111111000001111111000000001
+01100000000000001100001010011010
+00100000011000000000000000000000
+01110000010000101001101000000000
+00100000001000000011111100101100
+01101000000000001100011111110100
+00101111111011111111111000000101
+00100000011000000000000000000000
+01011000000000000000000000000000
+00100000001000000011111101000110
+01011000000000001010101001010101
+01100000000000010000001010101000
+01111001001000000000000000100101
+01000100111010010100000000111010
+11011000010000000000000000000010
+11011010001000000000001010101000
+11011010010000000000000011000011
+00100000001000000110100000111110
+01111001001000000000000000100101
+01000100111010011100000000111010
+11011000010000000000000000000010
+11011010001000000000000101100001
+11011010010000000000000011000011
+00100000010000000110100000011101
+01101000000000010000000101100001
+11011000010000001010101001010101
+10011000010001100111110000000000
+00100000011000000000000000000000
+01101000000000001100011101000111
+01100000000000001100001010011101
+00100000011000000000000000000000
+11011000111000000000000000001001
+00100000001000000011110111000010
+11011000111000000000000000001001
+00100000001000000011110111000110
+01110000010000101001111000000101
+00100000001000000011111101011010
+01101000000000001100001010011110
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001100001010011110
+00100100011110100000000000000000
+00100000001000000011111101011100
+01110000010000111100110000000001
+00100000011000000000000000000000
+01110000010000111100110000000000
+00100000011000000000000000000000
+01110000000010110111110100001010
+00100000001000000111110000110011
+01110000000010110111110100011101
+00100000001000000111110000110011
+01111001001000000000000000100101
+01000100111010100100000000111010
+01101000000000001100001010011111
+01100000000000001000000101110111
+01110000000000100101011100000001
+01110000000010110111110100000011
+00100000001000000111110000110011
+01110000000010110111110100011110
+00100000001000000111110000110011
+01110000000010110111110100000100
+00100000001000000111110000110011
+01101000000000010100011111111110
+01100000000000010100011111110000
+00100000010000000011111110010100
+01110000000010110111110100000001
+00100000001000000111110000110011
+01011000000000000000000000000000
+01100000000000010100011111110000
+01110000000010110111110100000010
+00100000001000000111110000110011
+01110000000010110111110100001111
+00100000001000000111110000110011
+01110000000010110111110100010000
+00100000001000000111110000110011
+01110000000010110111110100001110
+00100000001000000111110000110011
+01110000000010110111110100001101
+00100000001000000111110000110011
+01110000000010110111110100010111
+00100000001000000111110000110011
+01110000000010110111110100011000
+00100000001000000111110000110011
+01110000000010110111110100010110
+00100000001000000111110000110011
+01110000000010110111110100010001
+00100000001000000111110000110011
+01110000000010110111110100011100
+00100000001000000111110000110011
+01110000000010110111110100010101
+00100000001000000111110000110011
+01110000000010110111110100010100
+00100000001000000111110000110011
+01110000000010110111110100010011
+00100000001000000111110000110011
+01110000000010110111110100011001
+00100000001000000111110000110011
+01110000000010110111110100000110
+00100000001000000111110000110011
+01110000000010110111110100000101
+00100000001000000111110000110011
+01110000000010110111110100011111
+00100000001000000111110000110011
+01110000000010110111110100100000
+00100000001000000111110000110011
+01111001001000000000000000001101
+00100000011000000000000000000000
+01111001001111111000000000001101
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100110010000100000000110010
+11011000010000000000000000100000
+11011010001000000100010000011001
+11011010010000000000000010100000
+00100000010000000110100000011101
+11011000010000000000000000100000
+11011010001000000100011100000010
+11011010010000000000000001111111
+00100000010000000110100000011101
+11011000010000000000000000000110
+11011010001000000100000101000000
+11011010010000000000000001100011
+00100000010000000110100000011101
+11011000010000000000000000000110
+11011010001000000100010011111001
+11011010010000000000000001101001
+00100000010000000110100000011101
+00100000010000000101101011011011
+11011000010000000000000000000010
+11011010001000000100001010101100
+11011010010000000000000011000000
+00100000010000000110100000011101
+00100000010000000110100100001001
+00100000001000000011111111000001
+11011000010000000000000000001110
+11011010001000000000010101001111
+11011010010000000000000001101111
+00100000001000000110100000011101
+01111001001000000000000000100101
+01000100110010001100000000110010
+00100000010000000011111101001101
+00100000001000101011111110101000
+00100000010000000011111111010010
+00100000010000000011111111010111
+00100000010000000101101011011011
+00100000010000000011111111011100
+00100000010000000011111111100000
+00100000010000000110001011101001
+00100000010000000011111111100100
+00100000010000000011111111101001
+00100000001000000011111101000101
+01101000000010001100011100000010
+00011000010000001000010000000001
+11011010001000000100011100000010
+11011010010000000000000001111111
+00100000001000000110100000111110
+01101000000010001100010000011001
+00011000010000001000010000000001
+11011010001000000100010000011001
+11011010010000000000000010100000
+00100000001000000110100000111110
+11011000010000000000000000000110
+11011010001000000100010011111001
+11011010010000000000000001101001
+00100000001000000110100000111110
+11011000010000000000000000000110
+11011010001000000100000101000000
+11011010010000000000000001100011
+00100000001000000110100000111110
+01101000000010001000010101001111
+00011000010000001000010000000001
+11011010001000000000010101001111
+11011010010000000000000001101111
+00100000001000000110100000111110
+01011000000000000000000110100000
+01100000000000010000001010101000
+11011000010000000000000000000010
+11011010001000000000001010101000
+11011010010000000000000011000000
+00100000001000000110100000111110
+01111001001000000000000000100101
+01000100110010010100000000110010
+01101000000000010100100000001110
+11011000010000000000000100101100
+10011000010001100111110000000000
+00100000001000010100001001111111
+00100000010000000011111000101011
+00100000010000000111111101101011
+00011000011000100010001000000000
+01101000000000010100100000001110
+00011111111000001111111111111110
+10011000011000001000011000000000
+11101000011000010000000000000000
+11011000010000000000101000001101
+10011000010001100111110000000000
+00100100011000101000000000000000
+00011010001000100000011000000000
+11011010010000000100100001010000
+11011111001000000000000000000011
+00100000010000000100001000110111
+00100100001000001100001001111111
+00100000001000000100000000000101
+01111001001000000000000000100101
+01000100110010011100000000110010
+00011000011000100010001000000000
+11011010010000000100100000100111
+00011000000000000111001000000100
+00100000010000000100001000110111
+00100000001000001100000001101101
+11011010010000000100100000100100
+00011000000000000111001000000111
+00100000010000000100001000110111
+00100000001000001100000001110100
+11011010010000000100100000101110
+00011000000000000111001000000100
+00100000010000000100001000110111
+00100000001000001100000001111011
+11011010010000000100100000101011
+00011000000000000111001000000111
+00100000010000000100001000110111
+00100000001000001100000010000001
+11011010010000000100100000110010
+00011000000000000111001000000100
+00100000010000000100001000110111
+00100000001000001100000010000111
+11011010010000000100100000100000
+00011000000000000111001000000100
+00100000010000000100001000110111
+00100000001000001100000010001100
+11011010010000000100100000011100
+00011000000000000111001000000100
+00100000010000000100001000110111
+00100000001000001100000010001111
+11011010010000000100100000110110
+00011000000000000111001000000101
+00100000010000000100001000110111
+00100000001000001100000010010101
+11011010010000000100100001010011
+00011000000000000111001000000100
+00100000010000000100001000110111
+00100000001000001100000010011011
+11011010010000000100100001010111
+00011000000000000111001000000100
+00100000010000000100001000110111
+00100000001000001100000010100001
+11011010010000000100100001011011
+00011000000000000111001000000101
+00100000010000000100001000110111
+00100000001000001100000010100101
+11011010010000000100100001100000
+00011000000000000111001000000100
+00100000010000000100001000110111
+00100000001000001100000010101011
+11011010010000000100100001100100
+00011000000000000111001000000100
+00100000010000000100001000110111
+00100000001000001100000010110000
+11011010010000000100100001101000
+00011000000000000111001000000100
+00100000010000000100001000110111
+00100000001000001100000010110111
+11011010010000000100100001101111
+00011000000000000111001000000100
+00100000010000000100001000110111
+00100000001000001100000011010110
+11011010010000000100100001101100
+00011000000000000111001000000111
+00100000010000000100001000110111
+00100000001000001100000011011101
+11011010010000000100100001110011
+00011000000000000111001000000101
+00100000010000000100001000110111
+00100000001000001100000011110010
+11011010010000000100100001111000
+00011000000000000111001000000100
+00100000010000000100001000110111
+00100000001000001100000011111000
+11011010010000000100100001111100
+00011000000000000111001000000111
+00100000010000000100001000110111
+00100000001000001100000011111011
+11011010010000000100100001000001
+00011000000000000111001000000110
+00100000010000000100001000110111
+00100000001000001100000100000000
+11011010010000000100100010000011
+00011000000000000111001000000110
+00100000010000000100001000110111
+00100000001000001100000100101100
+11011010010000000100100001001001
+00011000000000000111001000000011
+00100000010000000100001000110111
+00100000001000001100000100001110
+11011010010000000100100001001100
+00011000000000000111001000000100
+00100000010000000100001000110111
+00100000001000001100000100010111
+11011010010000000100100000111011
+00011000000000000111001000000110
+00100000010000000100001000110111
+00100000001000001100000100100111
+11011010010000000100100010001001
+00011000000000000111001000000011
+00100000010000000100001000110111
+00100000001000001100000100101001
+00100000001000000100001001111111
+11101000011000001000000000000000
+11000000000111111100000001110001
+11000000000111101100000100110001
+00100000001000000100001001111111
+00100000010000000111111101101110
+00100000010000000100000110010100
+00100000001000000100001010000110
+11101000011000001000000000000000
+11000000000111111100000001111000
+11000000000111101100000100110110
+00100000001000000100001001111111
+00100000010000000111111101101110
+00100000010000000100000110011011
+00100000001000000100001010000110
+11101000011000001000000000000000
+11000000000111111100000001111111
+11000000000111101100000100111100
+00100000001000000100001001111111
+00100000010000000100000110100010
+00100000001000000100001010000110
+11101000011000001000000000000000
+11000000000111111100000010000101
+11000000000111101100000101000000
+00100000001000000100001001111111
+00100000010000000100000110101000
+00100000001000000100001010000110
+11101000011000001000000000000000
+11000000000111111100000010001010
+00100000001000000100001001111111
+00100000010000000100000110101110
+00100000001000000100001010000110
+11101000011000001000000000000000
+11000000000111101100000101001001
+00100000001000000100001001111111
+11101000011000001000000000000000
+11000000000111111100000010010011
+11000000000111101100000101000100
+00100000001000000100001001111111
+00100000010000000100001000000100
+00100000001000000100001010000110
+11101000011000001000000000000000
+11000000000111111100000010011001
+11000000000111101100000101010111
+00100000001000000100001001111111
+00100000010000000100000110110100
+00100000001000000100001010000110
+11101000011000001000000000000000
+11000000000111111100000010011111
+11000000000111101100000101110010
+00100000001000000100001001111111
+00100000010000000100000110111010
+00100000001000000100001010000110
+11101000011000001000000000000000
+11000000000111111100000011100001
+11000000000111101100000101011010
+00100000001000000100001001111111
+11101000011000001000000000000000
+11000000000111111100000010101001
+11000000000111101100000101101011
+00100000001000000100001001111111
+00100000010000000100001000001011
+00100000001000000100001010000110
+11101000011000001000000000000000
+11000000000111111100000010101110
+00100000001000000100001001111111
+00100000010000000100000111000000
+00100000001000000100001010000110
+11101000011000001000000000000000
+11000000000111111100000010110011
+00100000001000000100001010000110
+00100000010000000011001011101110
+00100100001000101100001001111111
+00100000010000000100000111001101
+00100000001000000100001010000110
+11101000011000001000000000000000
+11000000000111111100000010111010
+00100000001000000100001001111111
+01101000000000001100000001000000
+11000011000000000100001001111111
+00100000010000000111111101101110
+01101000000000001100000001000001
+11000010100000000100000011000000
+00100000001000000100000011001011
+11011010001000000100100001101000
+11011111001000000000000000000100
+00100000010000000100001000110010
+00100000010000000100001001000111
+01011000000000000000000000110100
+11100001010000001000000000000000
+00100000010000000100001001001110
+11011010001000000000001111010000
+00100000010000000111111010011101
+00100000010000000110100011111010
+00100000001000000100001010000110
+11011010001000000100100001101000
+11011111001000000000000000000100
+00100000010000000100001000110010
+00100000010000000100001001000111
+01011000000000000000000000110011
+11100001010000001000000000000000
+00100000010000000100001001001110
+11011010001000000000000001000000
+00100000010000000111111010011101
+00100000010000000110100011111010
+00100000001000000100001010000110
+01111001001000000000000000100101
+01000100110010100100000000110010
+00100000010000000011111100111110
+01101000000000001100001010011010
+11000000100000000100001001111111
+00100000010000000100000111110000
+00100000001000000100001010000110
+01111001001000000000000000100101
+01000100110010101100000000110010
+00100000010000000100000111110110
+00100000001000000100001010000110
+11011010001000000100100001010111
+11011111001000000000000000000100
+00100000010000000100001000110010
+00100000010000000011001011101110
+00100100001000101100001001001010
+01101000000000001100000001000001
+11000010100000001100000011101011
+00100000010000000100000011101111
+00100000010000000110100011111010
+00100000001000000100001010000110
+01011000000000000000000001001101
+11100001010000001000000000000000
+00100000010000000110100011111010
+00100000001000000100001010000110
+01011000000000000000000001010011
+11100001010000001000000000000000
+00100000011000000000000000000000
+11101000011000001000000000000000
+11000000000111111100000011110110
+11000000000111101100000101111110
+00100000001000000100001001111111
+00100000010000000100000111011000
+00100000001000000100001010000110
+11101000011000001000000000000000
+11000000000111101100000101010001
+00100000001000000100001001111111
+11101000011000001000000000000000
+11000000000111111100000011111110
+00100000001000000100001001111111
+00100000010000000100000111011110
+00100000001000000100001010000110
+01101000000000001100001010011111
+01100000000000001000000101110111
+00100000010000000110100100011101
+00100000010000000011111100111110
+01101000000000001100001010011010
+11000000100000000100001001111111
+01101000000000001100001010101001
+11000000000110011100000100001100
+11000000000110100100000100001010
+00100000001000000100001001111111
+00100000010000000011111110000010
+00100000001000000100001010000110
+00100000010000000011111101101110
+00100000001000000100001010000110
+00100000010000000011111100111110
+01101000000000001100001010011010
+11000000100000001100001001111111
+01101000000000001100000001000001
+11000010100000000100000100010101
+00100000010000000011111101110111
+00100000001000000100001010000110
+00100000010000000011111110010000
+00100000001000000100001010000110
+11101000011000001000000000000000
+11000000000111101100000100011010
+00100000001000000100001001111111
+11101000011000001000000000000000
+11000000000110001100000100100010
+11000000000110000100000100011110
+00100000001000000100001001111111
+00100000010000000011111101000000
+00100000001000001100001010000110
+00100000010000000011111110011110
+00100000001000000100001010000110
+00100000010000000011111101000000
+00100100001000001100001010000110
+00100000010000000110001110101011
+00100000010000000110010000010100
+00100000001000000100001010000110
+00100000010000000011111101000011
+00100000001000000100001010000110
+11101000011000001000000000000000
+11000000000111101100000110000111
+00100000001000000100001001111111
+00100000010000000011111100111110
+01101000000000001100001010011010
+11000000100000000100001001111111
+00100000010000000110001110001010
+00100000001000000100001010000110
+11011010001000000100011100000011
+00100000010000000100001000101011
+01100000000010001100011100000010
+00100000010000000011111111010010
+00100000001000000100001010000110
+11011010001000000100010000011010
+00100000010000000100001000101011
+01100000000010001100010000011001
+00100000010000000011111111010111
+00100000010000000101101011011011
+00100000001000000100001010000110
+11011000101000000100000101000000
+00100000010000000111111010111111
+00100000010000000011111111100000
+00100000001000000100001010000110
+11011000101000000100010011111001
+00100000010000000111111010111111
+00100000010000000011111111011100
+00100000001000000100001010000110
+11011010001000000000010101010000
+00100000010000000100001000101011
+01100000000010001000010101001111
+00100000010000000011111111100100
+00100000001000000100001010000110
+00100000010000000111111010110000
+01011010110111000110110000000000
+10011000010001101111110000000000
+00100000010000000111111011111101
+00011000000001111111111000000000
+01100000000000010000001010101000
+00100000010000000011111111101011
+00100000001000000100001010000110
+11101000011000001000000000000000
+00011111111001100111110000110011
+00100100001000010100001001111111
+00011111111000010111111000000011
+01100000000000001100100000010010
+00100000001000000100001010000110
+11101000011000011000000000000000
+01100000000000011100000101001010
+00100000001000000100001010000110
+00100000010000000011001011101110
+00100100001000101100001001111111
+11101000011000001000000000000000
+11000000001010011100000101100000
+11000000001001101100000101100011
+00100000001000000100001001111111
+01101000000000001100000001000001
+11000010100000001100000101100110
+00100000001000000100001001111111
+01101000000000001100000001000001
+11000011000000001100000101100110
+00100000001000000100001001111111
+01101000000000001100100000010011
+01111001001000000111111000000100
+01100000000000001100100000010011
+01110000010000100111001000011000
+00100000001000000100001010001100
+11011000101000000100001010000000
+00100000010000000111111010111101
+11011000101000000100001010000010
+00100000010000000111111010111101
+11011000101000000100001010000100
+00100000010000000111111010111101
+00100000001000000100001010000110
+11101000011000001000000000000000
+11000000000110001100000101110110
+11000000000110010100000101111100
+00100000001000000100001001111111
+11101000011000001000000000000000
+11011000101000000000000110110100
+00100000010000000111111010111111
+00100000010000000110100100110001
+00100100011101000000000000000000
+00100000001000000100001010000110
+00100000010000000110100100111101
+00100000001000000100001010000110
+11101000011000001000000000000000
+01101000000010001100100000010010
+01111101001110100000010000000010
+01100000000010001100100000010010
+00100000001110100100001010000110
+11101000011000001000000000000000
+11011000101000000100100000010100
+00100000010000000111111010111111
+00100000001000000100001010000110
+01111001001000000000000000100101
+01000100110010110100000000110010
+11011111001000000000000000010100
+11011000101000000001000000000000
+00100000010000000100100101111100
+11011010001000000001000000000000
+01101000000000001001000000000000
+00101111111000011111111000010010
+00100000010000001110101100011001
+01101000000000001001000000000000
+00101111111000011111111000010011
+00100000010000001110101101000101
+00100000001000000100001010000110
+11011010001000000100100000100111
+11011111001000000000000000000100
+00100000010000000100001000110010
+01101000000000001100011100000010
+00011111111000100111001000000000
+11011000110000000100011100000011
+00100000001000000111111101110100
+11011010001000000100100000100100
+00011000000000000111001000000111
+00100000010000000100001000110010
+00100000010000000101101100001000
+11101000110000001000000000000000
+00011111111000100111001000000000
+00100000001000000111111101110100
+11011010001000000100100000101110
+11011111001000000000000000000100
+00100000010000000100001000110010
+11011010001000000100000101000000
+00100000010000000111111010011101
+00100000001000000110100011111010
+11011010001000000100100000101011
+11011111001000000000000000000111
+00100000010000000100001000110010
+11011010001000000100010011111001
+00100000010000000111111010011101
+00100000001000000110100011111010
+11011010001000000100100000110010
+11011111001000000000000000000100
+00100000010000000100001000110010
+11011111001000000000000000000110
+11011000110000000100100000000100
+00100000001000000111111101110100
+11011010001000000100100000110110
+11011111001000000000000000000101
+00100000010000000100001000110010
+11011111001000000000000000000011
+11011000110000000100000101001010
+00100000001000000111111101110100
+11011010001000000100100001010011
+11011111001000000000000000000100
+00100000010000000100001000110010
+00100000010000000110100110001000
+00100000010000000100001001010011
+00100000001000000110100011111010
+00100000010000000110100100101001
+11011010001000000100100001100000
+11011111001000000000000000000100
+00100000010000000100001000110010
+01101000000000001000000110110011
+11000000000110011100000111001000
+11000000000110100100000111001000
+00100000001000000110100011111010
+11100001010000001000000000000000
+00100000010000000100001001001110
+11011010001000000000000110110100
+00100000010000000111111010011101
+00100000001000000110100011111010
+01111001001000000000000000100101
+01000100110010111100000000110010
+11011010001000000100100001100100
+11011111001000000000000000000100
+00100000010000000100001000110010
+00100000010000000100000111010100
+00100000001000000110100011111010
+11011010001000000000000000011000
+11011111001000000000000000000001
+00100000001000000111111010011110
+00100000011000000000000000000000
+11011010001000000100100001110011
+11011111001000000000000000000101
+00100000010000000100001000110010
+11011010001000000100100000010100
+00100000010000000111111010011101
+00100000001000000110100011111010
+11011010001000000100100001111100
+11011111001000000000000000000111
+00100000010000000100001000110010
+01101000000000001100100000010010
+00011111111000100010001000000000
+01101000000000001100000001000000
+00101111111011111111111000000000
+01111001001000001010001000000011
+00101111111011111111111000000001
+01111001001000001010001000000101
+01101000000000001100000001000001
+00101111111011111111111000000001
+01111001001000001010001000000100
+00101111111011111111111000000000
+01111001001000001010001000000110
+00011010001000100111111000000000
+11100001010000001000000000000000
+00100000001000000110100011111010
+01011000100111101000101100110011
+01100000000000011100000101000111
+01101000000000001100001010100100
+01111001001000000111111000000000
+01100000000000001100001010100100
+00100000001000000100011000110110
+00100000010000000011111100111110
+01101000000000001100001010011010
+11000000100000000100001001111111
+00100000010000000011111110001010
+01101000000000001100001010100100
+01111001001000000111111000000001
+01100000000000001100001010100100
+01011000000000000000001000000000
+01100000000000010100100000011010
+11011010001000000100100001101100
+11011111001000000000000000000110
+00100000010000000100001000110010
+00100000010000000111111101110100
+00100000001000000100001010001100
+11011010001000000100100000011100
+11011111001000000000000000000100
+00100000010000000100001000110010
+01101000000000001000010101001111
+00011111111000100111001000000000
+11011000110000000000010101010000
+00100000001000000111111101110100
+11011010001000000100100001011011
+11011111001000000000000000000101
+00100000010000000100001000110010
+00100000010000000100001001000111
+01011000000000000000000001010100
+11100001010000001000000000000000
+00100000010000000100001001000100
+11011010001000000100001010000000
+00100000010000000111111010011011
+00100000010000000100001001000111
+01011000000000000000000001000001
+11100001010000001000000000000000
+00100000010000000100001001000100
+11011010001000000100001010000010
+00100000010000000111111010011011
+00100000010000000100001001000111
+01011000000000000000000001001111
+11100001010000001000000000000000
+00100000010000000100001001000100
+11011010001000000100001010000100
+00100000010000000111111010011011
+00100000001000000111111101110100
+00100000010000000111111101101110
+00100000010000000100001001000111
+11011010001000000000000110000010
+00100000010000000111111010011101
+00100000010000000100001001001110
+11011010001000000000000101111111
+00100000010000000111111010011001
+00100000010000000100001001001110
+00100000010000000100000111010100
+00100000001000000110100011111010
+00100000010000000100001000101101
+00100000001000000100100101111100
+00100000010000000100001001101001
+00011111111000100000010000000000
+00011111111000100111001000000000
+00011010001000100000101000000000
+00100000011000000000000000000000
+00100000010000000111111101101110
+00100000010000000100001001000001
+00011010001000100000110000000000
+00100000010000000100100101110110
+00100000001000000100001001000100
+11101000011000001000000000000000
+11101010010010001000000000000000
+10011000010001100111110000000000
+01111000010000001111110000000000
+00100100001000101100001001000000
+00011010010000001010010000000001
+11000010000000000100001000110111
+01111000001000001111110000000000
+00100000011000000000000000000000
+00100000001000000100001001010001
+01011000000000000000000000101011
+11100001010000001000000000000000
+00100000011000000000000000000000
+01011000000000000000000000111010
+11100001010000001000000000000000
+00100000011000000000000000000000
+01011000000000000000000000111110
+11100001010000001000000000000000
+00100000011000000000000000000000
+01011000000000000000000001001110
+11100001010000001000000000000000
+00100000010000000110100011111010
+00100000001000000100001010000110
+01011000000000000000000000101100
+11100001010000001000000000000000
+00100000011000000000000000000000
+00011010001000100000011000000000
+00100000011000000000000000000000
+11011010011000000000000110010101
+11011111001000000000000000000100
+00011111001000100111111000000000
+01100000000000001000000101100001
+11101010011000001000000000000000
+11000000000110011100001001011011
+11000000000110100100001001011011
+00100000001000000100001001100111
+00100000010000000100001001000111
+11101010011000001000000000000000
+11100001010000001000000000000000
+00011010011000001010011000000001
+00100000010000000100001001001110
+00011010011000100010001000000000
+00100000010000000111111010011101
+00011010011000001010011000000110
+01101000000000001000000101100001
+00011111111000100111001000000000
+11000010000000000100001001010101
+00100000011000000000000000000000
+00011010011000001010011000000001
+00100000001000000100001001100010
+01111001001000000000000000100101
+01000100110011000100000000110011
+01101000000100010000000001011000
+10011000011001100111111000000000
+00100000011000101000000000000000
+00100000001000010100001001110011
+01101000000010010100100000001110
+10011000010000001111111000000000
+00011111111000001111111111111110
+00100000011000000000000000000000
+00100000010000000100001001111000
+10011000011000001000010000000000
+01101000000100010000000001011000
+10011000010001100111111000000000
+00100000001000000100001001101111
+11011111111000000100111111111111
+00011111111000001111111000000001
+11011000010000000100101000000000
+10011000010001100111111000000000
+00100000011000000000000000000000
+01101000000010010100100000001110
+00100000001000000110100100000011
+01111001001000000000000000100101
+01000100110011001100000000110011
+00100000010000000111111101101110
+01011000010100100101001001000101
+11100001010000011000000000000000
+00100000010000000110100011111010
+00100000001000000100001010001100
+01111001001000000000000000100101
+01000100110011010100000000110011
+00100000010000000111111101101110
+01011000000000000100101101001111
+11100001010000010000000000000000
+00100000010000000110100011111010
+01111001001000000000000000100101
+01000100110011011100000000110011
+00100000010000000100001001111101
+01011000000000000000000000000000
+01100000000000010100100000001110
+01100000000000100100100000001010
+00100000011000000000000000000000
+00100000010000000111110110110010
+00100000010000000011111110010100
+01011000000000000100001010011111
+01100000000000010100001010001100
+01011000000000000100001010111110
+01100000000000010100001010010010
+01011000000000000111110011011011
+01100000000000010100001010010000
+01110000000000100101101000000101
+01110000000000100110111000000000
+01110000010000100111001000011011
+00100000011000000000000000000000
+01111000010000001111110000000000
+00100000010000000011111100111110
+01110000000001000001110000011011
+01101000000000001100001010011010
+00101111111000000000011000000010
+00100100011000001000000000000000
+01110000010000111101001000000000
+00100000011000000000000000000000
+01101000000000001000001101000000
+11000011000000000100001010110000
+01101000000000110000001101000010
+01101000000010110000001111010000
+10011000010001100111110000000000
+00100100011000101000000000000000
+01101000000000110000001111010000
+01100000000000110100010011100111
+00100000011000000000000000000000
+11011010001000000000000011111111
+00100000010000000101101101010010
+00100100011000101000000000000000
+11101000110000010000000000000000
+01101000000010010000001001110000
+10011000010001100111110000000000
+00100100011000101000000000000000
+01101000000000001000001001101110
+00011111111000001111111000000001
+01100000000000001000001001101110
+01101000000010001000001001101111
+10011000010001100111110000000000
+00100000001000010100001010101101
+00100000011000000000000000000000
+00011010011000100111111000000000
+11000000000010101100001011000101
+11000000000010100100001011010111
+00011111111000010000010000001111
+00011111111000010111111011110000
+11000000001010000100001011001101
+00100000011000000000000000000000
+01011000000000000000000000000000
+01100000000000110100010011100111
+01110000000000100110111000000000
+01011000000000000000000000000000
+01100000000000101000111111110001
+01110000000011111111000000000001
+00100000010000000111110011011011
+00100000001000000011111110001010
+00100000011000000000000000000000
+01101000000000001100001111010010
+00100000011110100000000000000000
+01101000000000001000001001011010
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001000001001011010
+00100100011110100000000000000000
+00100000010000000100001011011000
+00100000001000000011111110001110
+00100000001000000011111110001100
+01110000000000100101101000000101
+01101000000000001000001001100111
+11000000000000001100001011100001
+11000000000000010100001011011101
+00100000011000000000000000000000
+01101000000000110000001001011011
+01100000000000110000001001101000
+01110000000000100110011100000001
+00100000011000000000000000000000
+01101000000000110000001001100001
+01100000000000110000001001101000
+01110000000000100110011100000010
+00100000011000000000000000000000
+11101000011000010000000000000000
+00100000001110100100010010010000
+10011000000000000010011000000000
+11101000011000001000000000000000
+01100000000000001000001010010011
+10011000000000000010001000000000
+11000011000000110100001011101101
+00011010011000001010011111111110
+11101000011000010000000000000000
+00011111111100011111001000000000
+00011111111000010001000000001111
+10011010001000001010001000000000
+00011111111011001111111000000000
+10011010001000001010001000000000
+11101000011000001000000000000000
+10011010001000001111111000000000
+11000000111111111100001100011001
+00011010011000001111111111111100
+10011111001001100111110000000000
+00100100001000101100001100010110
+01101000000000001000001010010011
+00101111111011000000000000000111
+00100000001000001100001100000010
+01111001001111111000000000011011
+11000101000011011100001100000010
+00011111111000010111111000000111
+01101000000010001000001010001100
+10011000010001100111110000000000
+00100100001000101100001100010110
+01011000000000000000011001000000
+00011000000000000000111000000111
+00100000010000000111111001001100
+00011001000000100111111000000000
+00100000010000000100001100100000
+00100000011101000000000000000000
+01101000000000001000001010010011
+10011000000000000010001000000000
+00011111111010010000010000000000
+00011000010000010000010000000111
+01101000000000001000001010001011
+10011000010001100111111000000000
+00011111111001100111111000000000
+00011111111000010111111000000111
+11000000100000001100001100010110
+01100000000010001000001010001011
+01101000000000001000001001110010
+00011111111000001111111000000001
+01100000000000001000001001110010
+00100000001000000100001100011001
+01101000000000001000001001110011
+00011111111000001111111000000001
+01100000000000001000001001110011
+01101000000100010000000001011000
+10011000000000000000011000000000
+11101000011000010000000000000000
+10011000011000001000011000000000
+00011000011000100111111000000000
+01100000000100010000000001011000
+00100000011000000000000000000000
+01111000010101000111110000000000
+00100000011110100000000000000000
+11000000000000001100001100101000
+11000000000000010100001101000110
+11000000000000101100010100000111
+11000000000000110100010011011101
+11000000000001000100101001010110
+00100000011000000000000000000000
+01111001001111111000000000011000
+11101000011000001000000000000000
+11000000011011010100001100101111
+11000000010101100100001100110110
+11000000010101101100001100111010
+11000000011011110100001101000100
+00100000011000000000000000000000
+11000101000010111100001100110011
+00011000000000000000010011011010
+01011000111011011110110111011100
+00100000010000000100001100111100
+00011000000000000000010010101100
+01011000111011101110111110101111
+00100000001000000100001100111100
+01111001001000000000000000010111
+00011000000000000000010010101101
+01011000111011011010110011101111
+00100000001000000100001100111100
+00011000000000000000010011011110
+01011000110100001101000010101101
+00011111111011010111111000000000
+10011000010000011000010000000000
+00100000010000000100100101110010
+11100001010010100000000000000000
+00011000000000000000111000000001
+00011000000000000111001000000100
+01111001001111111000000000010011
+00100000001000000100001101111000
+00011000000000000110000000000000
+00100000001000000100100100110011
+00011111001000100110000000000000
+00100000010000000100001101110001
+00011000000000000010010000000000
+00100000010000000100100101110010
+00011110000000100111001000000000
+11101000011000001000000000000000
+01011000000000000000000000000001
+11100001010000001000000000000000
+01111001001111111000000000011010
+11101000011000001000000000000000
+00011010010000001010010000000001
+11000000000011100100001101011011
+00101010010000011111111000000100
+00100100001000001100001101011101
+01111001001110100000000000011010
+11000000100111010100001101011101
+01011000000000000000011111010000
+00011000000000000000111000000000
+00100000010000000111111001001100
+01111001001000000000000000011000
+00100000011000000000000000000000
+00101010010000011111111000000110
+00100000001000001100001101100110
+00101000000011111111111000011010
+00100000010000001100001101101000
+11100001010000001000000000000000
+11000010000000000100001101001111
+01111001001111111000000000011001
+00011110000000100111001000000000
+01111001001000000000000000010011
+00011000000000000000111000000010
+00100000001000000100001101111000
+01111001001000000000000000011001
+00100000001000000100001101011101
+11000110000011001000000000000000
+00101010010000011111111000001010
+00100000001000001100001101101111
+00101010010000011111111000001011
+00100100011000001000000000000000
+01011000000000000000000000010010
+00100000011000000000000000000000
+01011000000000000000000011101001
+00100000011000000000000000000000
+01101000000000001000001010010011
+00011111111000001111111000000001
+00011111111000010111111000000111
+01100000000000001000001010001100
+00011000000000000111001000000000
+00011000000000000000111000000000
+01111001001111111000000000010011
+00011111001000001010010000000100
+01101000000000001000001010001100
+00011111111010011010011000000000
+00101000000011000000000000010100
+01111101001000001010011000000110
+00100000001000001100001101111111
+00011010010000001010010000000010
+11000101100010011100001110001001
+01111001001000000010011000000111
+01101000000000001000001010010100
+10011010011000011010011000000000
+00011111111000001111111000000001
+00011111111000010111111000000111
+01100000000000001000001010010100
+01101000000000001000001001110100
+00011111111000001111111000000001
+01100000000000001000001001110100
+01101000000000010000001010001111
+10011000000000000001010000000000
+00011010010000100111111000000000
+00101000000011111111111000010011
+01111001001000001111111000001111
+11100001010000010000000000000000
+00011001010000100010001000000000
+00011010011000100111111000000000
+11100001010000001000000000000000
+00011111001100100111111000000000
+10011000111000011111111000000000
+10011010011000001010011000000000
+11100001010000010000000000000000
+00011111111011001111111000000000
+10011010011000001111111000000000
+00011111111001100111111011111111
+11100001010000001000000000000000
+11000101100010100100001110011111
+00011111001000001111001000000100
+00011010001000100001010000000000
+00100000010000000100100110000110
+11100001010000010000000000000000
+01101000000000010000001010001111
+10011010010000001001010000000000
+00011001010000001001010000000010
+00011001010000100111111000000000
+01100000000000010000001010001111
+01100000000100010000000001011110
+01101000000010010000001010001101
+00100000010000000100001111011000
+00100000010000000100001110101011
+01011000000000000000011001000000
+00011000000000000000111000000111
+00100000001000000111111001001100
+01011000000000000000000110010000
+00011000000000000000111000000001
+00100000010000000111111001001100
+01111001001000000000000000010101
+00100000011000000000000000000000
+11000110100010101000000000000000
+00011000000000000000111000000001
+00100000010000000111111001010011
+00100100011110100000000000000000
+01101000000000010000001010001101
+01100000000100010000000001100000
+00100000001000000100001110101011
+01101000000000010000001010001111
+01101000000010010000001010001101
+10011000010001100111110000000000
+00100000001000101100001111010110
+00011000010000100001010000000000
+11101001010000010000000000000000
+10011000000000000010001000000000
+10011110101000010111111000000000
+10011001010000001001010000000000
+01101000000100010000000100010000
+10011001010001100111111000000000
+10011110101000010010010000000000
+01101000000000010000001010001111
+10011001010001100111111000000000
+10011110101000010111111000000000
+10011010010001100111111000000000
+00100100011000010000000000000000
+00101010001011000000000000001111
+00100000001000001100001111010001
+01101000000000001000001001110010
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001000001001110010
+01101000000000001000001001110100
+00011111111000001111111111111111
+01100000000000001000001001110100
+00011001010000100000010000000000
+01100000000010010000001010001101
+01101000000000010000001010001111
+00100000010000000100001111011000
+00100000001000000100001110110111
+01111001001111111000000000010101
+00100000011000000000000000000000
+10011000010001100111111000000000
+10011110101000010111111000000000
+10011110101001100111111000000000
+00011111111001100111111000000000
+01100000000000010000001010010001
+00100000011000000000000000000000
+01101000000000010000001010001111
+10011001010000001001010000000000
+00100000011000000000000000000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100111101100100000000111101
+01101000000000001100001001110010
+00100100011110100000000000000000
+00100000010000000100001111101001
+00100100010101000100010000001110
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100111101101100000000111101
+00011000011000100010001000000000
+11011000010000000000000000000100
+11101000011000001000000000000000
+11000000000000001100001111110100
+00011000010000001000010000000001
+11000000000000010100001111110100
+00011000011000100111111000000000
+01100000000100010000000001011000
+00100000011000000000000000000000
+01101000000100010000000100010010
+10011000010001100111110000000000
+00100100001000010100001111110100
+01111000010101000111110000000000
+00011010001000100000011000000000
+00100000010000000100010000010111
+10011000010000001000010000000000
+01101000000100010000000100010010
+10011000010001100111110000000000
+00100100001000010100001111111011
+00011010001000100000011000000000
+11101000011000001000000000000000
+11000000000000001100010100000111
+11000000000000010100010000000011
+00100000001000000011101111110001
+01111001001000000000000000100101
+01000100111101110100000000111101
+00011000011000100010001000000000
+11101000011000010000000000000000
+00011010001000100000011000000000
+01101000000010001000000001000110
+10101000010000011111111000000000
+00100000001000001100010011011101
+00100000001110110101100011101010
+01111000001101000111110000000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100111101111100000000111101
+01101000000100010000000001011000
+10011000000000000000011000000000
+00100000010000000100010000010111
+10011000011000001000011000000000
+00011000011000100111111000000000
+01100000000100010000000001011000
+00100000011000000000000000000000
+11101000011000001000000000000000
+00011000011000001000011000000010
+11000000000000010100010000011100
+11101000011000001000000000000000
+00100000011000000000000000000000
+11101000011000010000000000000000
+00100000011000000000000000000000
+01101000000100010000000001011110
+00011001010000001001010111111011
+10011001010000001001010000000000
+00100000011000000000000000000000
+11011000010000000000000000000100
+00100000001000000100010000100101
+11011000010000000000000000000010
+01111001001000000000000000100101
+01000100111110000100000000111110
+00011111001000001111001000000001
+01101000000100010000000001011110
+00011111111000100001010000000000
+00011111001000100111111000000000
+11100001010010001000000000000000
+00011111111000001111111111111111
+10011001010000001001010000000000
+00011001010000100111111000000000
+01100000000000010000001010011101
+00011000010000100111111000000000
+11000001000000010000000000000000
+01101000000000010000001010011101
+01100000000100010000000001011110
+00100000001000000100010000111011
+01111001001000000000000000100101
+01000100111110001100000000111110
+01101000000000010000001010011101
+00100000001110100011101111110001
+01100000000100010000000001011110
+00100000001000000100010000111011
+01011000000000000000000000000000
+01100000000000010000001010011101
+00100000011000000000000000000000
+01101000000110010000000100010000
+01101000000100010000000001011110
+10011000010001100010001000000000
+00100100001000010100010001000111
+01101000000110010000000001011010
+01101000000100010000000001011100
+10011000010001100111111000000000
+10011010001001100000010000000000
+00100000011000000000000000000000
+00011010001001100000010111111111
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100111001101100000000011001
+01101000000000001100000100110010
+11000001100000001000000000000000
+00100000010000000100010010100011
+00100000010000000100010010010100
+00100000010000001100001110110000
+00100000010000000100010010010100
+00100000010000001100001110110111
+00100000001000000100010011100110
+11000110100011000000000000000000
+00011000000000000000111000000000
+00100000010000000111111001010011
+00100100011110100000000000000000
+00100000010000000100010001110010
+00100000010000000100010010010100
+00100100011000001000000000000000
+01111001001111111000000000010111
+00011000000000000000010011011010
+01011000111011011110110111011100
+00100000010000000100001100111100
+01011000000000000000011111010000
+00011000000000000000111000000000
+00100000001000000111111001001100
+01111001001111111000000000100101
+01000100111001110100000000011001
+00100000011101011000000000000000
+01011000000000000100101011101101
+01100000000000010100001010010000
+01011000000000000000000110100000
+01100000000000010100001010101100
+01111001001111111000000000100101
+01000100111001111100000000011001
+00100000010000000110101000001101
+01011000000000000001100000000000
+01100000000100010000000001010100
+01011000000000000001101111111111
+01100000000100010000000001010110
+01011000000000000001110000000000
+01100000000100010000000001011010
+00100000010000000100010010001001
+01111001001111111000000000100101
+01000100111010000100000000011010
+01110000100000000110001000000000
+01110000000000101000101100000000
+01110000000000101000110000000000
+01110000000000101001010000000000
+01011000000000000001110000000000
+01100000000000010000001010001111
+01100000000000010000001010001101
+01100000000100010000000001011110
+01100000000100010000000001100000
+01011000000000000001100000000000
+01100000000100010000000001011000
+01100000000000010000001010001001
+01111001001111111000000000100101
+01000100111010001100000000011010
+01101000000100010000000001010000
+01111001001111111111111000001111
+01100000000100010000000001010000
+00100000010000000110100100001001
+01110000100000000100001100000001
+01110000100000000110001010000001
+00100000001000000100010010010111
+01011000000000000001111111111111
+01100000000100010000000001011100
+01101000000100001000000010000001
+00011111111000011111111000000111
+01100000000100001000000010000001
+01110000000000101001111111111111
+00100000011000000000000000000000
+01101000000100010000000100010110
+01100000000100010000000001011000
+01111001001000000000000000011011
+00100000011000000000000000000000
+01101000000100001000000001100010
+00101111111011111111111000000011
+00100000011000000000000000000000
+01011000000000000100100000000011
+01100000000000010000001010010101
+01100000000000010000001010010111
+00011000000000000000010000000001
+10011000010000001111111000000000
+10011000010000001111111000000000
+00011111111000001111111000000010
+01100000000000010000001010011001
+01011000000000000000000000000000
+01100000000000001000001010011100
+01100000000000001000001010011011
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100111010010100000000011010
+01101000000100001000000100001100
+10011000000000000010010000000000
+11000011000000011100010010101101
+01101000000100010000000100010010
+10011000000000000010011000000000
+11011000010000000000010001001111
+10011000010001100111110000000000
+00100100011000101000000000000000
+01101000000100010000000001011000
+10011000000000000000011000000000
+00100000010000000100010010010100
+00100000001000001100001011100101
+00100000001000000100001111100010
+00100000010000000100010010010100
+00100000001000001100001101110001
+00100000011000000000000000000000
+01101000000110001000000100001100
+00101000010011111111111000000110
+00100000001000001100010010110101
+01100000000100001000000000010101
+00100000011000000000000000000000
+01101000000010010000001010011001
+01101000000000010000001010010101
+10011000000000000000101000000000
+00011000011000100111111000000000
+11100000101000010000000000000000
+00011000101000100111111000000000
+01100000000000010000001010010101
+10101000010000011111111000000000
+00100000010000001100010011000111
+01101000000000001000001010011011
+00011111111000001111111000000001
+01100000000000001000001010011011
+00100000011000000000000000000000
+01011000000000000100100000000011
+01100000000000010000001010010101
+00100000011000000000000000000000
+01101000000000001000001010011011
+00100000011110100000000000000000
+01101000000010010000001010011001
+01101000000000010000001010010111
+10011000000000000000110000000000
+11101000110000010000000000000000
+10011000000000000000011000000000
+00011000110000100111111000000000
+01100000000000010000001010010111
+10101000010000011111111000000000
+00100000010000001100010011011010
+01101000000000001000001010011011
+00011111111000001111111111111111
+01100000000000001000001010011011
+00011000000000000111111000000001
+00100000011000000000000000000000
+01011000000000000100100000000011
+01100000000000010000001010010111
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100111010011100000000011010
+01101000000000001000001010011011
+00011111111001100111110000000010
+00100000001000010100010011100100
+01111000001101000111110000000000
+00100000001000000100010011100110
+00100000010000000100010010110010
+00100000010000000100010010111010
+01111001001111111000000000100101
+01000100111010100100000000011010
+11000110000000010000000000000000
+00100000010000000100010011001010
+00100000011110100000000000000000
+11101000011010001000000000000000
+00100000010000000011001011110111
+00100100011000101000000000000000
+11101000011000001000000000000000
+00011111111100011111111000000000
+00011111111000010111111000000011
+00100100001110100100010011110011
+01111001001000000111111000000001
+01111001001000000111111000000010
+01100000000000001000000010010000
+11101000011000010000000000000000
+01100000000000010000000010010001
+00011000011000100111111000000000
+01100000000000010000000101111001
+01111001001000000000000000000010
+11000101100001001100010100000010
+01101000000000001000000001000110
+10011000010001100111110000000000
+00100100001000101100010100000010
+01101000000000001000000001001011
+01111001001000000111111000000110
+01100000000000001000000001001011
+00100000011000000000000000000000
+00011010001000001010001000011011
+11101010001000001000000000000000
+01111001001000000111111000000110
+11100010001000001000000000000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100111010101100000000011010
+01101000000000001100001001110010
+00100000001110100100010100001101
+01111000001101000111110000000000
+00100000011000000000000000000000
+00100000010000000100010010110010
+11101000011000010000000000000000
+10011000000000000110000000000000
+10011000000000000000111000000000
+11101000011000001000000000000000
+10011000000000000000010000000000
+00011110000010110111111000000000
+00011111111011001111111000000000
+11000000000000001100010100011110
+11000000000000010100010100111101
+11000000000000011100010101001111
+11000000000000100100010101101001
+11000000000000101100010101110010
+11000000000000110100010101111100
+11000000000111111100010110000101
+11000000000001000100010111100000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100111010110100000000011010
+00011000111000100111111000000000
+11000000000000001100011000110100
+11000000000000010100011001000011
+11000000000000011100100101001001
+11000000000000100100100101001001
+11000000000000101100011001000101
+11000000000000110100011001001111
+11000000000000111100100101001001
+11000000000001000100011001011101
+11000000000001001100011100111001
+11000000000001010100011100111111
+11000000000001011100011001100100
+11000000000001100100011001101010
+11000000000001101100011001101101
+11000000000001110100011001110101
+11000000000001111100011101000011
+11000000000010001100011010001000
+11000000000010011100011010001011
+11000000000010101100100101001001
+11000000000010111100100101001001
+11000000000011001100011010010000
+11000000000011011100011010011011
+11000000000011100100011010010110
+11000000000011101100011010100001
+11000000000011111100011010100111
+11000000000101000100011010101011
+11000000000101001100011010110110
+11000000000101011100011001111011
+00100000001000000100011101001101
+01111001001111111000000000100101
+01000100111010111100000000011010
+00011000111000100111111000000000
+11000000000001001100011011001100
+11000000000001101100011011010111
+11000000000000001100100101001001
+11000000000000011100011101001111
+11000000000000100100011101011010
+11000000000000101100100101001001
+11000000000000110100100101001001
+11000000000000111100100101001001
+11000000000001011100011101100000
+11000000000001100100100101001001
+11000000000001110100100101001001
+11000000000001111100100101001001
+11000000000010000100100101001001
+11000000000010001100011101011111
+00100000001000000100011101001101
+01111001001111111000000000100101
+01000100111011000100000000011011
+00011000111000100111111000000000
+11000000000000001100011100100101
+11000000000000011100100101001001
+11000000000010010100011011011010
+11000000000010011100011011000010
+11000000000010100100011010111000
+11000000000011000100011011011011
+11000000000011001100011100000101
+11000000000011010100011011011110
+11000000000011100100011011100001
+11000000000011110100011011100110
+11000000000100000100011011101100
+11000000000100010100011011101011
+11000000000100100100011011101111
+11000000000100110100100101001001
+11000000000110001100100101001001
+11000000000110011100100101001001
+11000000000110101100011000101110
+11000000001000011100100101001001
+11000000001000101100100101001001
+11000000001000111100100101001001
+11000000001010001100011011110010
+11000000001010110100011100000001
+00100000001000000100011101001101
+01111001001111111000000000100101
+01000100111011001100000000011011
+00011000111000100111111000000000
+11000000000000001100011100001010
+11000000000000011100011100001111
+11000000000000100100011100010100
+11000000000000101100011100011011
+11000000000001001100011100100000
+00100000001000000100011101001101
+01111001001111111000000000100101
+01000100111011010100000000011011
+00011000111000100111111000000000
+11000000000000001100100101001001
+11000000000000010100011100100110
+11000000000000011100011100100111
+11000000000000101100011100101101
+11000000000000110100011100110011
+11000000000000111100011100110110
+00100000001000000100011101001101
+01111001001111111000000000100101
+01000100111011011100000000011011
+00011000111000100111111000000000
+11000000000000001100100101001001
+11000000000000010100100101001001
+11000000000000011100100101001001
+11000000000000100100100101001001
+00100000001000000100011101001101
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100111011100100000000011011
+00011000111000100111111000000000
+11000000000000000100100101001001
+11000000000000001100010110011101
+11000000000000010100010110100010
+11000000000000011100010110100110
+11000000000000100100010110111001
+11000000000000101100100101001001
+11000000000000110100010111001010
+11000000000000111100010110010011
+11000000000010000100010111001101
+11000000000010001100010111010101
+00100000001000000100100101001001
+00100000010000000100100101001001
+00100000010000000111111101101000
+00100000010000000110101001101000
+00100000010000000011111101011100
+00100000010000000011111101100110
+00100000001000000110101001111101
+01110000010000101010111000000000
+00100000010000000011111101011010
+00100000010000000100010001101000
+00100000001000000011111101101000
+00100000010000000100100101101110
+01101000000100010000000000000000
+11100001010000010000000000000000
+00011000000000000111001000000110
+00100000001000000100100101001100
+11101000011000010000000000000000
+01100000000000010100001010101100
+01100000000100010000000001010010
+00100000011000000000000000000000
+11101000011000001000000000000000
+00011111111000100000010000000000
+01100000000100001000000000100100
+11101000011000001000000000000000
+10011000010000001000010000000000
+01111001001000000111111000000111
+01100000000100001000000000100011
+11101000011000001000000000000000
+10011000010000001000010000000000
+00011111111000100111001000000000
+11101000011000001000000000000000
+01100000000100001000000000100101
+10011000010000001000010000000000
+11000010000000000100010110110000
+00011000010000010000010011111111
+11101000011000001000000000000000
+10011000010001100111110000000000
+00100100001000101100010111001000
+00100000001000000100100101001001
+11011111001000000000000000100000
+11011000101000000100000000000000
+11011000010000000000000000000000
+11101000011000001000000000000000
+11100000101000001000000000000000
+10011000010000001000010000000000
+11000010000000000100010110111100
+00011000010000010000010011111111
+11101000011000001000000000000000
+10011000010001100111110000000000
+00100100001000101100010111001000
+01110000100000000010001100000000
+00100000010000000100100101001001
+00100000010000000100010000001110
+00100000001000000011000000000001
+01110000100000000010001100000000
+00100000001000000011000000000000
+11101000011000110000000000000000
+01100000000000110100000101000000
+00100000001000000100100101001001
+11101000011000001000000000000000
+01100000000000001000001011000001
+00011111111000100111001000000000
+11101000011000010000000000000000
+01100000000000010000001011000010
+00011111111000100000101000000000
+00100000010000000100100101111100
+00100000001000000100100101001001
+11101000011000001000000000000000
+01100000000000001000001011000001
+00011111111000100111001000000000
+11101000011000010000000000000000
+01100000000000010000001011000010
+11011000101000000001000000000000
+00100000010000000100100101111100
+01101000000010001000001011000001
+11011010001000000001000000000000
+01101000000000010000001011000010
+00100000001000000110100001000010
+01111001001111111000000000100101
+01000100111011101100000000011011
+00011000111000100111111000000000
+11000000000000001100100101001001
+11000000000000010100010111110011
+11000000000000011100010111111000
+11000000000000110100010111111111
+11000000000001000100011000000011
+11000000000001001100011000000111
+11000000000001010100011000001011
+11000000000001011100011000001110
+11000000000001100100011000010001
+11000000000001101100011000010100
+11000000000001110100011000100110
+11000000000010101100011000100111
+11000000000010110100100100110011
+11000000000010011100100101001001
+00100000001000000100011101001101
+00100000011000000000000000000000
+00100000010000000100100101101110
+01011000000000000000000000000000
+11100001010000011000000000000000
+00011000000000000111001000000111
+00100000001000000100100101001100
+00100000010000000100100101101110
+01011000000000000000000000000001
+11100001010000010000000000000000
+01011000000000000000000000000000
+11100001010000110000000000000000
+00011000000000000111001000001100
+00100000001000000100100101001100
+11011111001000000000000000001111
+11011000101000000100010011010111
+00100000010000000100100101111100
+00100000001000000100100101001001
+11011111001000000000000000100000
+11011000101000000100001111011001
+00100000010000000100100101111100
+00100000001000000100100101001001
+11011111001000000000000000100000
+11011000101000000100001111111001
+00100000010000000100100101111100
+00100000001000000100100101001001
+11101000011000001000000000000000
+01100000000000001100001111011000
+00100000001000000100100101001001
+11101000011000111000000000000000
+01100000000000111100010011110110
+00100000001000000100100101001001
+11101000011000001000000000000000
+01100000000000001100001111010010
+00100000001000000100100101001001
+11101000011000100000000000000000
+01100000000000100100001111010011
+11101000011000001000000000000000
+01100000000000001100010011111000
+11011111001000000000000000010100
+11011000101000000100010011100110
+00100000010000000100100101111100
+01110000010000111101001000000001
+01101000000000001100010011101101
+01100000000000001100010011110111
+01101000000000010100010011110000
+01100000000000010100001111010000
+01101000000000010100010011110010
+01100000000000010000001111101101
+01101000000000010100010011110100
+01100000000000010000001111101111
+01110000010000100111001000011011
+00100000001000000100100100110011
+00100000001000000100100101001001
+00100000010000000100100101101110
+11101000011000010000000000000000
+11100001010000010000000000000000
+01011000000111111111111111111111
+11100001010000101000000000000000
+00011000000000000111001000001011
+00100000001000000100100101001100
+11101000011000011000000000000000
+11101000011010011000000000000000
+01101000000000010100100000000000
+10011000010000001111111000000000
+01100000000000010100100000000000
+00100000011000000000000000000000
+11101000011000011000000000000000
+01100000000000011100000101000111
+01110000010000100111001000000001
+11101000011000001000000000000000
+11011000010000000000011001000000
+10011000010011111111111000000000
+11011000010000001111111111111111
+10011000010001100111110000000000
+00100100001000010100011000111110
+00011000010000100111111000000000
+00011000000000000000111000000010
+00100000010000000111111001001100
+01101000000000001100001010100100
+11000010100000000100001010001100
+00100000001000000100100100110011
+01110000010000100111001000000010
+00100000001000000100100101001001
+00100000010000000100011101100011
+11101000011000010000000000000000
+01100000000000010000001001110101
+11101000011000010000000000000000
+01100000000000001000000011110011
+00100000010000000100011101110110
+11101000011000001000000000000000
+01100000000000001100100000000010
+01110000010000100111001000000101
+00100000001000000100100100110011
+01110000010000100111001000000110
+11101000011000010000000000000000
+01100000000000001100001001110011
+11101000011000001000000000000000
+01100000000000001000010001000110
+01110000000000101100000000010110
+01101000000000001100001001110011
+01101000000010001000000010101101
+10011000010001100111110000000000
+00100100001000101100100100110011
+01110000010000100111001000010001
+01101000000000001000000010101100
+01100000000000001100001001110011
+00100000001000000100100100110011
+00100000010000000100100101101110
+00100000010000000100100101100101
+00011000000000000111001000001010
+00100000010000000100100101001100
+01110000010000100111001000011010
+00011000000000000000010000000010
+00100000001000000100100000100110
+00100000010000000100011101100011
+11011000101000000100001001100010
+00011000000000000111001000010000
+00100000010000000100100101111100
+01110000010000100111001000001011
+00100000001000000100011001110111
+00100000010000000100011101100011
+01110000010000100111001000001100
+00100000001000000100011001110111
+00100000010000000100011101100011
+11101000011000001000000000000000
+01100000000000001000010101001111
+10011000000000000111001000000000
+11011000101000000000010101010000
+00100000010000000100100101111100
+01110000010000100111001000001001
+00100000001000000100011001110111
+00100000010000000100011101100011
+01110000010000100111001000001010
+00100000010000000100100101101110
+00100000010000000100100101100101
+00011000000000000111001000001010
+00100000001000000100100101001100
+00011000011000001000011000000110
+11101000011000011000000000000000
+01100000000000011000011111100110
+01101000000000001000011111011011
+11000000000010011100011010000011
+11000000000000011100011010000011
+01110000010000100111001000010110
+00100000001000000100011010000100
+01110000000001111101110100000001
+00100000010000000100100101101110
+00100000010000000100100101100101
+00011000000000000111001000001010
+00100000001000000100100101001100
+00100000010000000100011101100110
+01110000010000100111001000001101
+00100000001000000100100100110011
+00100000010000000100011101100110
+11101000011000001000000000000000
+00011111111000001111111000001110
+01100000000000001100001001110010
+00100000001000000100100100110011
+00100000010000000100011101100011
+11101000011000010000000000000000
+01100000000000001000000011110011
+00100000010000000100011101110110
+01110000010000100111001000000011
+00100000001000000100100100110011
+11101000011000010000000000000000
+11101000011000001000000000000000
+01100000000000001000010001001001
+01110000010000100111001000010101
+00100000001000000100100100110011
+01101000000000001000000001000110
+00011000000000000010001000000010
+00100000001110100100100100111101
+00100000010000000100011101100110
+01110000010000100111001000000100
+00100000001000000100100100110011
+01101000000000001000000001000110
+00011000000000000010001000000010
+00100000001110100100100100111101
+00100000010000000100011101100110
+01110000010000100111001000010100
+00100000001000000100100100110011
+00100000010000000100011101101110
+00011000000000000000111000011100
+00011000000000000111001000000101
+00100000001000000100100101010010
+00100000010000000100011101100110
+00011000011000001000011000001010
+11101000011000010000000000000000
+01100000000000010000001010000001
+11101000011000001000000000000000
+01100000000000001000001010000011
+11101000011000010000000000000000
+01100000000000010000001010000100
+01110000000000001010101100000010
+01110000010000100111001000010000
+00100000001000000100100100110011
+01110000010000100111001000011100
+00100000001000000100100100110011
+00100000010000000100100101101110
+11011000110000000100011100000011
+00011000110001100111001011111111
+00100000010000000100100101110110
+00011000000000000111111000000000
+00011000110001100111001100000011
+00011111001000001111001011111000
+00100000010000000100100110000010
+00011000000000000111001011111100
+00100000001000000100100101001100
+11011000101000000100011100000011
+00011000101001100111001011111111
+11101000011000001000000000000000
+11100000101000001000000000000000
+00100000001110100100011011001000
+11000010000000000100011011000100
+00011000101001100111111100000011
+00011111111001100111111000000000
+01100000000000001100011100000010
+00100000001000000100100101001001
+00100000010000000100100101101110
+00100000010000000100100101101011
+00011000000000000111111000000000
+01111101001101001111111000000000
+11100001010000001000000000000000
+00011000000000000111001000000111
+11011110000000000000100000001001
+00100000010000000100100101001100
+00100000001000000100100110111100
+01110000010000100111001000010111
+00100000011000000000000000000000
+00100000010000000100011101101001
+00011000000000000111001000000110
+00100000001000000100100101001100
+00100000001000000100100101001001
+11101000011000010000000000000000
+01100000000000010100000101011001
+00100000001000000100100101001001
+11101000011000001000000000000000
+01100000000000001100000100110011
+00100000001000000100100101001001
+11101000011000010000000000000000
+01100000000000010100000101010011
+11101000011000010000000000000000
+01100000000000010100000101010001
+00100000001000000100100101001001
+11101000011000010000000000000000
+01100000000000010100000101001111
+11101000011000010000000000000000
+01100000000000010100000101001101
+00100000001000000100100101001001
+00100000001000000100100101001001
+11101000011000001000000000000000
+01100000000000001000010001010011
+00100000001000000100100101001001
+11101000011000011000000000000000
+01100000000000011100000101001010
+00100000001000000100100101001001
+00011000010000100111111000000000
+00100000001110100100100101001001
+00100000010000000100100101110000
+00011000000000000111111000000001
+11100001010000001000000000000000
+00011110000000100111111000000000
+11100001010000010000000000000000
+00011000000000000111111000010010
+11100001010000001000000000000000
+01011000000000000000000000000000
+00011111001000001111001011110001
+00100000010000000100100110000010
+00011000000000000000111000001110
+00011000000000000111001011110101
+00100000001000000100100101010010
+11101000011000001000000000000000
+00100100010110100110000000000011
+00100000010110100110000000001001
+00100000001000000100100101001001
+00100000010000000100100101101110
+01101000000000001100000100110011
+11100001010000001000000000000000
+00011000000000000111001000000101
+00100000001000000100100101001100
+00100000010000000100100101101110
+01101000000001000000000010000000
+11100001010001000000000000000000
+00011000000000000111001000001100
+00100000001000000100100101001100
+00100000010000000100100101101110
+01101000000001000100000100111000
+11100001010001000000000000000000
+00011000000000000111001000001100
+00100000001000000100100101001100
+00100000010000000100100101101110
+01011000000000000000000100000001
+11100001010000010000000000000000
+01011000000000000000000000000001
+11100001010001000000000000000000
+00011000000000000111001000001110
+00100000001000000100100101001100
+00100000010000000100100101101110
+01101000000000111000000010000011
+11100001010000111000000000000000
+00011000000000000111001000001011
+00100000001000000100100101001100
+00100000010000000100100101101110
+01101000000000110100000101000000
+11100001010000110000000000000000
+00011000000000000111001000001010
+00100000001000000100100101001100
+00100000001000000100100101001001
+00100000001000000100100101001001
+00100000010000000100100101101110
+00100000010000000100100101101011
+01011000000000000000000011111111
+11100001010000001000000000000000
+00011000000000000111001000000111
+00100000001000000100100101001100
+00100000010000000100100101101110
+00100000010000000100100101101011
+01011000000000000000000000000000
+11100001010000001000000000000000
+00011000000000000111001000000111
+00100000001000000100100101001100
+01111001001111111000000000100101
+01000100111011110100000000011011
+00100000001000000100100101001001
+01111001001111111000000000100101
+01000100111011111100000000011011
+00100000001000000100100101001001
+00100000010000000100011101100011
+01110000010000100111001000000111
+11101000011000001000000000000000
+11000000000000001100100100110011
+01110000010000100111001000011001
+00100000001000000100100100110011
+00100000001000000100011100111001
+00100000010000000100011101100011
+01110000010000100111001000001000
+00100000001000000100100101001001
+00100000010000000100100100110011
+00100000010000000100100101110000
+01011000000000000000000000000000
+11100001010000001000000000000000
+11101000011000100000000000000000
+11100001010000100000000000000000
+00011000000000000111001000001000
+11011000111000000000000000011101
+11011111001000000000000000000101
+00100000001000000100100101010010
+00011000000000000010001000000001
+00100000001000000100100100111101
+00100000010000000100011101100110
+11101000011000010000000000000000
+01100000000000010100001010000000
+11101000011000010000000000000000
+01100000000000010000001001111011
+11101000011000010000000000000000
+01100000000000010100001010000010
+11101000011000010000000000000000
+01100000000000010100001010000100
+01110000010000100111001000010010
+00100000001000000100100100110011
+00100000010000000100011101100110
+00100000010000000100011101011101
+00100000001000000100100100110011
+01110000010000100111001000010011
+00100000011000000000000000000000
+00100000001000000100100101001001
+00100000010000000100011101100011
+01110000010000100111001000011000
+00100000001000000100100100110011
+11101000011000110000000000000000
+01100000000000110100001001110100
+00100000011000000000000000000000
+11101000011000010000000000000000
+01100000000000001100001001110011
+00100000011000000000000000000000
+00100000010000000100011101100110
+00100000010000000100100101101110
+01101000000000001100001001110011
+11100001010000010000000000000000
+00100000011000000000000000000000
+00100000010000000100011101100110
+00100000010000000100100100110011
+00100000010000000100100101110000
+00011000000000000111111000000000
+11100001010000001000000000000000
+01101000000000001100001001110011
+11100001010000010000000000000000
+00100000011000000000000000000000
+11101000011000010000000000000000
+10011100010000001111111000000000
+00011111111000010111111111111100
+01100000000000100000000011110100
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100111100000100000000011100
+01101000000000001000001001110100
+00011111111001100111110000000010
+00100100011000010000000000000000
+01101000000010110000000110000010
+00100000010000000011001011111100
+00100000011000101000000000000000
+00100000010000000100100101110010
+01011000000000010000111100100010
+11100001010000011000000000000000
+01101000000000110000000110000010
+11100001010000110000000000000000
+01101000000000001000000101111101
+00011111111000100000010000000000
+00011111111010010111111000000000
+00011111111010010111111000000000
+11100001010000001000000000000000
+00011000010000100111111000000000
+00011111111000010111111000110000
+00011111111010010111111000000000
+00011111111000110111111000000000
+11100001010000001000000000000000
+01101000000000011000000101111111
+11100001010000011000000000000000
+01101000000000100000000101101111
+10011100010001100111111000000000
+11100001010000010000000000000000
+01011000000000000000000011001000
+11100001010000001000000000000000
+00011000000000000111001000001111
+00100000001000000100100101011001
+01111001001111111000000000100101
+01000100111100001100000000011100
+00011000000000000000010000011100
+01101000000000010000001010010001
+10011000010001100111110000000000
+00100100011000010000000000000000
+01101000000010011000001010000110
+01101000000000011000000110000101
+10011000010001100111110000000000
+00100000011000101000000000000000
+00100000011110100000000000000000
+01100000000000011000001010000110
+01101000000000001000001001110100
+00011111111001100111110000000010
+00100100011000010000000000000000
+01101000000010110000000110000010
+00100000010000000011001011111100
+00100000011000101000000000000000
+00100000010000000100011111001100
+00011000000000000000010000001111
+01101000000000001000010011011111
+11000000100001001100011111000101
+01101000000000001000010011011110
+00100000001110100100011111000101
+10011000000000000111001000000000
+11100001010000001000000000000000
+10011000010000001000010000000000
+00011000010000001000010000000001
+11011000110000000000010011011111
+11101000110000001000000000000000
+11100001010000001000000000000000
+11000010000000000100011110111000
+11101000110000001000000000000000
+00100000001110100100011111000101
+10011000000000000111001000000000
+11100001010000001000000000000000
+10011000010000001000010000000000
+00011000010000001000010000000001
+11101000110000001000000000000000
+11100001010000001000000000000000
+11000010000000000100011111000001
+00100000001000000100011110111011
+00011000010001100111111011111111
+10011000000000000111001000000000
+01011000000000000000000000000000
+11100001010000001000000000000000
+11000010000000000100011111000111
+00011000000000000111001011111111
+00100000001000000100100101011001
+01111001001111111000000000100101
+01000100111100010100000000011100
+00100000010000000100100101110010
+01011000000000011111111100101111
+11100001010000011000000000000000
+01101000000000110000000110000010
+11100001010000110000000000000000
+01101000000000001000000101111101
+00011111111000100000010000000000
+00011111111010010111111000000000
+00011111111010010111111000000000
+11100001010000001000000000000000
+00011000010000100111111000000000
+00011111111000010111111000110000
+00011111111010010111111000000000
+00011111111000110111111000000000
+11100001010000001000000000000000
+01101000000000011000000101111111
+11100001010000011000000000000000
+01101000000000100000000101101111
+10011100010001100111111000000000
+11100001010000010000000000000000
+01011000000000000000000011001000
+11100001010000001000000000000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100111100011100000000011100
+01101000000000001100000100110010
+11000001100000001000000000000000
+00100000010000000100100101101000
+11100001010011000000000000000000
+00011000000000000111001000001011
+00011000000000000000111000001011
+00100000001000000100100101010010
+01111001001111111000000000100101
+01000100111100100100000000011100
+01101000000000001100000100110010
+11000001100000001000000000000000
+00100000010000000100100101110000
+01101000000000110000000001000000
+11100001010000110000000000000000
+11100001010011000000000000000000
+00011000000000000111001000001110
+00011000000000000000111000111101
+00100000001000000100100101010010
+01111001001111111000000000100101
+01000100111100101100000000011100
+01101000000000001100000100110010
+11000001100000001000000000000000
+00100000010000000100100101101000
+01101000000000001000010001001001
+11100001010000001000000000000000
+01011000000000000000000000000001
+11100001010000001000000000000000
+11100001010011000000000000000000
+00011000000000000111001000001101
+00011000000000000000111000100011
+00100000001000000100100101010010
+01111001001111111000000000100101
+01000100111100110100000000011100
+01101000000000001100000100110010
+11000001100000001000000000000000
+00100000010000000100100101101000
+11100001010010101000000000000000
+00011000000000000111001000001000
+00011000000000000000111000001100
+00100000001000000100100101010010
+01111001001111111000000000100101
+01000100111100111100000000011100
+01101000000000001100000100110010
+11000001100000001000000000000000
+00100000010000000100100101110000
+01101000000000110000000001000000
+11100001010000110000000000000000
+01101000000000011000011111101001
+11100001010000011000000000000000
+00011000000000000111001000001001
+00011000000000000000111000110010
+00100000001000000100100101010010
+01111001001111111000000000100101
+01000100111101000100000000011101
+01101000000000001100000100110010
+11000001100000001000000000000000
+00100000010000000100100101110000
+01101000000000110000000001000000
+11100001010000110000000000000000
+00011000000000000111001000000110
+00011000000000000000111000110001
+00100000001000000100100101010010
+00011000000000000000010000000000
+01111001001111111000000000100101
+01000100111101001100000000011101
+01101000000000001100000100110010
+11000001100000001000000000000000
+00011000000000000000111000000011
+01110000010010000000000000000101
+00100000010000000100100101110000
+11100001010010001000000000000000
+00100000010000000100100101101011
+00100000010000000100100101100101
+00011000000000000111111000000001
+11100001010000001000000000000000
+00011000000000000111111000000000
+01101000000010001000000001001100
+00101000010011111111111000000010
+01111001001000001111111000000000
+11100001010000001000000000000000
+00011000000000000111001000001011
+00100000001000000100100101010010
+01111001001111111000000000100101
+01000100111101010100000000011101
+01101000000000001100000100110010
+11000001100000001000000000000000
+00011000000000000000111000000100
+00100000010000000100100101110000
+00100000010000000100100101100101
+01101000000000011000000101111111
+11100001010000011000000000000000
+11100001010010001000000000000000
+00011000000000000111001000001010
+00100000001000000100100101010010
+01111001001111111000000000100101
+01000100111101011100000000011101
+01101000000000001100000100110010
+11000001100000001000000000000000
+00100000010000000100100101101000
+00011000000000000111111000000000
+01101000000010001000000001001100
+00101000010011111111111000000010
+01111001001000001111111000000000
+11100001010000001000000000000000
+00011000000000000000111000001000
+00011000000000000111001000000100
+00100000001000000100100101010010
+01111001001111111000000000100101
+01000100111101100100000000011101
+01101000000000001100000100110010
+11000001100000001000000000000000
+00011000000000000000111000011000
+00100000010000000100100101110000
+00100000010000000100100101100101
+11011000110000000100001001100010
+00011000000000000111001000010000
+00100000010000000100100101110110
+00011000000000000111111000000101
+11100001010000001000000000000000
+00011000000000000111001000010111
+00100000001000000100100101010010
+01101000000000001100000100110010
+11000001100000001000000000000000
+00011000000000000000111000110011
+00100000010000000100100101110000
+00100000010000000100100101100101
+01101000000000100000011111101100
+11100001010000100000000000000000
+00011000000000000111001000001010
+00100000001000000100100101010010
+01101000000000001100000100110010
+11000001100000001000000000000000
+00011000000000000000111000110110
+00100000010000000100100101110000
+01011000000000000000000000000000
+11100001010000001000000000000000
+00100000010000000100100101100101
+00011000000000000111001000000111
+00100000001000000100100101010010
+01111001001111111000000000100101
+01000100111101101100000000011101
+00011000000000000000111000010111
+01101000000000001100000100110010
+11000001100000001000000000000000
+00100000010000000100100101110000
+00100000010000000100100101100101
+00011000000000000111001000000110
+00100000001000000100100101010010
+01101000000000001100000100110010
+11000001100000001000000000000000
+00011000000000000000111000010110
+00100000001000000100100001110101
+01101000000000001100000100110010
+11000001100000001000000000000000
+00011000000000000000111000010010
+00100000010000000100100101110000
+00011000000000000111111000000000
+11100001010000001000000000000000
+00100000010000000100100101100101
+11100001010010001000000000000000
+00011000000000000111001000001000
+00100000001000000100100101010010
+01101000000000001100000100110010
+11000001100000001000000000000000
+00011000000000000000010000000000
+00100100001101001100100010001110
+00011000000000000000010000000001
+01101000000000001100000100110010
+11000001100000001000000000000000
+00011000000000000000111000010010
+00100000010000000100100101110000
+00011000000000000111111000110101
+11100001010000001000000000000000
+00100000010000000100100101100101
+11100001010010001000000000000000
+00011000000000000111001000001000
+00100000001000000100100101010010
+01111001001111111000000000100101
+01000100111101110100000000011101
+01101000000000001100000100110010
+11000001100000001000000000000000
+00100000010000000100100101110010
+01011000000000001111111100000111
+11100001010000010000000000000000
+00011000111000100111111000000000
+11100001010000001000000000000000
+00100000010000000100100101100101
+11011000110000000000000100000011
+00011000000000000111001011111000
+11101000110000001000000000000000
+11100001010000001000000000000000
+11000010000000000100100010100100
+00011000000000000111001011111111
+00100000001000000100100101011001
+01111001001111111000000000100101
+01000100111101111100000000011101
+01101000000000001100000100110010
+11000001100000001000000000000000
+01101000000100001000000100001110
+00100100011110100000000000000000
+01101000000000001000000001001011
+11000100000000111000000000000000
+01111001001111111111111000000111
+01100000000000001000000001001011
+00100000010000000100100101110000
+00011000000000000111111000000001
+11100001010000001000000000000000
+00100000010000000100100101101011
+00011000000000000111111000000001
+11100001010000010000000000000000
+00011000000000000000111000010011
+00011000000000000111001000000101
+00100000001000000100100101010010
+01111001001111111000000000100101
+01000100111110000100000000011110
+01101000000000001100000100110010
+11000001100000001000000000000000
+00100000010000000100100101101000
+00011000000000000000111000000110
+00011000000000000111001000000011
+00100000001000000100100101010010
+01111001001111111000000000100101
+01000100111110001100000000011110
+01101000000000001100000100110010
+11000001100000001000000000000000
+00100000010000000100100101110000
+00011000000000000111111000000000
+11100001010000001000000000000000
+11100001010010010000000000000000
+01101000000000001000001011000000
+11100001010000001000000000000000
+00011000000000000000111000000101
+00011000000000000111001000000100
+00100000001000000100100101010010
+01111001001111111000000000100101
+01000100111110010100000000011110
+01101000000000001100000100110010
+11000001100000001000000000000000
+00100000010000000100100101110000
+01011000000000000000000100000010
+11100001010000010000000000000000
+01101000000010001000001101000000
+00011000010000010111111000001111
+11100001010000001000000000000000
+00011010001000100111111000000000
+11100001010000001000000000000000
+01101000000010001000001101000001
+00011000010000001000010111111010
+01101000000000110000001101000010
+11100001010000110000000000000000
+11100001010010001000000000000000
+00011000010000100111001000000000
+00100000010000000100100101110110
+01011000000000000000000001111111
+11100001010000001000000000000000
+00011000010000100111001000000000
+00011111001000001111001000001100
+00011000000000000000111000111110
+00100000001000000100100101010010
+01111001001111111000000000100101
+01000100111110011100000000011110
+01101000000000001100000100110010
+11000001100000001000000000000000
+00100000010000000100100101110000
+01011000000000000000000000000001
+11100001010000001000000000000000
+11100001010010001000000000000000
+01101000000000001000001111010110
+11100001010000010000000000000000
+01101000000000001000001111000001
+00011111111000110111111000000000
+01111001010000000111111000000000
+11100001010000001000000000000000
+01101000000000001100010011100110
+11100001010000001000000000000000
+01101000000000110000001111010000
+11100001010000110000000000000000
+01101000000000010100001111010000
+11100001010000010000000000000000
+01101000000000010000001111101101
+11100001010000010000000000000000
+01101000000000010000001111101111
+11100001010000010000000000000000
+01101000000000001000001111111000
+11100001010000001000000000000000
+00011000000000000000111000111110
+11011111001000000000000000010011
+00100000001000000100100101010010
+01111001001111111000000000100101
+01000100111110100100000000011110
+01101000000000001100000100110010
+11000001100000001000000000000000
+00100000010000000100100101110000
+00100000010000000100100101101000
+11100001010010001000000000000000
+01101000000000010000000000110010
+00011111111000110111111000000000
+11100001010000010000000000000000
+00011000000000000111001000000110
+00011000000000000000111000010100
+00100000001000000100100101010010
+01111001001111111000000000100101
+01000100111110101100000000011110
+01101000000000001100000100110010
+11000001100000001000000000000000
+01111001001111111000000000100101
+01000100111110110100000000011110
+00100000010000000100100101110000
+11100001010010001000000000000000
+01011000000000000000111000000000
+11100001010000010000000000000000
+00100000010000000100100101100101
+00011000000000000111111000000000
+11000101000000111100100100100100
+00011000000000000111111000000000
+11100001010000111000000000000000
+00100000001000000100100100101100
+01101000000000001100000100110010
+11000001100000001000000000000000
+01011000000000100000011000000010
+11100001010000011000000000000000
+01011000000000000000000000011110
+11100001010000010000000000000000
+01011000000000000000000000011110
+11100001010000010000000000000000
+01101000000000001100000100110010
+11000001100000001000000000000000
+01101000000000001000000010101011
+11100001010000001000000000000000
+00011000000000000000111000101100
+00011000000000000111001000010001
+00100000001000000100100101010010
+01111001001111111000000000100101
+01000100111110111100000000011110
+00100000010000000100100101110000
+01011000000000000000000100000000
+11100001010000010000000000000000
+00011110000000100111111000000000
+11100001010000010000000000000000
+00011000000000000111001000000100
+00011000000000000000111000001111
+00100000001000000100100101010010
+01111001001111111000000000100101
+01000100111111000100000000011111
+00100000010000000100100101110000
+00011010001000100111111000000000
+11100001010000001000000000000000
+01011000000000000000000000000001
+11100001010000001000000000000000
+00011110000000100111111000000000
+11100001010000010000000000000000
+00011000000000000111001000000100
+00011000000000000000111000001111
+00100000001000000100100101010010
+01111001001111111000000000100101
+01000100111111001100000000011111
+00011000000000000111001000000100
+00100000010000000100100101110000
+00011000000000000111111000000001
+11100001010000001000000000000000
+00011110000000100111111000000000
+11100001010000011000000000000000
+00011000000000000000111000001110
+01111001001111111000000000100101
+01000100111111010100000000011111
+00100000010000000100100101110010
+00011000111000100111111000000000
+11100001010000001000000000000000
+00011111001000100111111000000000
+11100001010000001000000000000000
+01111001001000000000000000010011
+00011000000000000000111000000101
+00011111001000001111001000000010
+00100000010000000100010010010100
+00100000001000001100001101111000
+00100000001000000100010000100010
+00011000000000000000111011111111
+00100000010000000100100101110000
+01011000000000000000000000000001
+11100001010000001000000000000000
+00011000000000000111001000000001
+00100000001000000100100101010010
+01101000000000110000000001000000
+11100001010000110000000000000000
+00100000011000000000000000000000
+00100000010000000100100101110000
+00011000000000000111111000000000
+11100001010000001000000000000000
+01101000000000001000000001000110
+11100001010000010000000000000000
+00100000011000000000000000000000
+00011000000000000001010000001100
+00100000001000000100100101110011
+00011000000000000001010000001000
+00100000001000000100100101110011
+00011000000000000001010000000110
+00100000010000000100010010010100
+00100000001000001100001111011110
+00100000001000000100010000011110
+00011111001000100111111000000000
+00100000011110100000000000000000
+11101000110000001000000000000000
+11100001010000001000000000000000
+11000010000000000100100101111000
+00100000011000000000000000000000
+00011111001000100111111000000000
+00100000011110100000000000000000
+11101000011000001000000000000000
+11100000101000001000000000000000
+11000010000000000100100101111110
+00100000011000000000000000000000
+11100001010000001000000000000000
+00011111111011001111111000000000
+11000010000000000100100110000010
+00100000011000000000000000000000
+01111000001001111111110000000000
+01111000001001001111110000000000
+11101001010000001000000000000000
+00001000000000001000000000001000
+11000010000000000100100110001000
+01111000001001000111110000000000
+00001000000000001000000000010000
+01111000010001000111110000000000
+01111000010001001111110000000000
+01111000010001111111110000000000
+00011111111100001111111000000000
+00100000011000000000000000000000
+00100000000000000000000000000001
+01110000100000100000001100000001
+00100000001000000100100110010010
+01111001001111111000000000100101
+01000100111111011100000000011111
+01101000000000001100001001110010
+00100000011110100000000000000000
+01101000000000001000000001111100
+00100100011110100000000000000000
+00100000010000000100100110111110
+00100100001000101100100110101010
+01101000000000001100001001110010
+11000000000000011100100111010100
+11000000000001001100100111011010
+11000000000001010100100111100110
+11000000000001011100100111101101
+11000000000001100100100111110111
+11000000000001000100101000110010
+11000000000011000100100111001100
+11000000000000111100100111000110
+11000000000011001100100111001010
+11000000000011010100101001010011
+11000000000010010100101000011001
+11000000000010011100101000101000
+01111001001111111000000000100101
+01000100111111100100000000011111
+00100000010000000100100111000010
+00100100011110100000000000000000
+01101000000000001100001001110010
+11000000000001101100101000000001
+11000000000001111100101000001011
+11000000000001110100101000001101
+11000000000010000100101000101010
+11000000000010001100101000110100
+11000000000011100100101000111000
+11000000000000100100101000001111
+11000000000010101100101000010100
+11000000000010100100101000010111
+11000000000010111100101001001000
+11000000000010110100101001010001
+11000001100000110000000000000000
+00100000010000000101111011010101
+01110000010000100111001000000000
+00100000011000000000000000000000
+01101000000000110100001001110100
+01101000000010110000000001000000
+10011000010001100111110000000000
+00100000011000000000000000000000
+01101000000000001100001001110011
+01101000000010001000000001000110
+10011000010001100111111000000000
+00100000011000000000000000000000
+01110000000000000111110000000011
+01110000000000000111110100110011
+00100000010000000110001000010010
+00100000001000000100100110111100
+00100000001101001100101000111000
+01111001001000000000000000000100
+01110000000000000111110000110100
+01111001001000000000000000000011
+00100100001101001100100110111100
+01110000000000000111110000010011
+01101000000000001000000101110111
+01111001001111111111111000000010
+01100000000000001000000101110111
+00100000001000000100100110111100
+01110000000000000111110000000001
+01110000000000000101001100000000
+00100000001000000100100110111100
+01110000000001111101110100000001
+01110000000001111101101100010010
+00100000001000000100100110111100
+01101000000000001000000001001011
+11000010100000010100100111011111
+00100000010000000110001000001001
+01110000000000000111110000001000
+00100000001000000100100110111100
+01111001001111111111111000000010
+01100000000000001000000001001011
+00100000010000000101111011010000
+01011000000000000000000000000000
+01111001001101001111111000000001
+01100000000000001000000001111111
+00100000001000000100100110111100
+01110000000001000100011000011000
+01110000000000000111110000000111
+01101000000000001000000000110000
+11000010100000000100100110111100
+00011000000000000000010000011000
+00100000010000000100100000100110
+00100000001000000100100110111100
+00100000010000000011001000011111
+01101000000000001000000001001011
+11000010100000001100101000001000
+11000010100000000100100111110011
+11000010100000010100100111011111
+00100000001000000100100110111100
+01111001001111111111111000000000
+01100000000000001000000001001011
+01110000000000000111110000001100
+00100000001000000100100110111100
+01101000000000001000000001001011
+11000010100000000100100111111011
+00100000010000000100100001111011
+00100000001000000100100110111100
+01111001001111111111111000000000
+01100000000000001000000001001011
+01110000000000000111110000000100
+01110000000000000111110100001011
+01110000000000000111111000000110
+00100000001000000100100110111100
+01101000000000001000000001001011
+01111001001000000111111000000001
+01100000000000001000000001001011
+01101000000000001000000000110000
+11000010100000111100101000001000
+00100000010000000100100001110010
+00100000001000000100100110111100
+00100000010000000110001000001001
+01110000000000000111110000001011
+00100000001000000100100110111100
+01110000000000000111110000001111
+00100000001000000100100110111100
+01110000000000000111110000001111
+00100000001000000100100110111100
+01111001001111111000000000100101
+01000100111111101100000000011111
+01110000000000000111110000100111
+01110000010000100111001001010000
+00100000011000000000000000000000
+01110000000000000111110010000011
+01110000010000100111001001010001
+00100000011000000000000000000000
+01110000000000000111110000100101
+00100000001000000100100110111100
+01110000000000000111110000010111
+11011000101000000000010001010101
+01011000000000000000000000000000
+00101101000011111111111000011011
+01111001001000001111111000000001
+11100000101000001000000000000000
+01011000000000000000000000000000
+11100000101000010000000000000000
+01101000000000010100001010000000
+11100000101000010000000000000000
+01101000000000001100001010000010
+11100000101000010000000000000000
+01101000000000001100001010000100
+11100000101000010000000000000000
+00100000001000000100100110111100
+01110000000000000111110000011000
+00100000001000000100100110111100
+00100000010000000011010100010010
+01100000000000001000000010101101
+01101000000000001000000001000110
+01100000000000001000000010101100
+01110000000000000111110000101011
+01111001001000000000000000000111
+01110000000000000111110010001100
+00100000001000000100100110111100
+00100000010000000101111011010101
+00100000001000000100100110111100
+01110000000000000111110000101100
+11000101100000111100100110111100
+01110000000000000111110010001101
+00100000001000000100100110111100
+00100000001101001100101001000001
+01110000000000000111110000000011
+01110000000000000111110100101011
+11000101100000111100100110111100
+01101000000000001000000010110000
+11000000100000111101110000000100
+01110000000000000111110010000001
+01110000000000000111110110001100
+00100000001000000100100110111100
+00100000010000000011010100010010
+01100000000000001000000010101101
+01101000000000001000000001000110
+01100000000000001000000010101100
+01110000000000000111110000101011
+11000101100000111100100110111100
+00100000001000000101110000000100
+00100000010000000100100101101110
+00100000010000000100100101101011
+00011000000000000111111000000000
+01111101001101001111111000000000
+11100001010000001000000000000000
+00011000000000000111001000000111
+11011110000000000000100000001001
+00100000010000000100100101001100
+00100000001000000100100110111100
+01110000000000000111110010011010
+00100000001000000100100110111100
+01110000000000000111110000000111
+01110000000001000100011000010011
+00100000001000000100100110111100
+01110000000000101011110000000000
+11101000011000001000000000000000
+01100000000000001000001010111011
+00100000010000000100101001101101
+00100000010000000111111000000000
+01101000000000001000001010111011
+00011111111000100000010000000000
+01101000000000001000001010011111
+00011111111000001111111000000001
+10101000010000011111111000000000
+00100100001000001100101001110111
+01100000000000001000001010011111
+00100000010000000111111000001110
+11101000011000001000000000000000
+11000000000000001100101011011000
+11000000000000010100101010101110
+11000000000000011100101011011111
+11000000000000101100101011000011
+11000000000000110100101010000000
+11000000000000111100101010010001
+11000000000001000100101010101000
+11000000000001001100101011100110
+00100000011000000000000000000000
+00011111111000100000010000000000
+00100000010000000111111000000000
+01101000000000001000001010111100
+10011000010000001111111000000000
+01100000000000001000001010111100
+00100000001000000111111000001110
+00011000000000000111111000000001
+00100000010000000100010010110101
+01101000000000001000001010011111
+00100000001000000100010010110101
+00100000010000000111111000001110
+00100000001000000100101001111100
+01101000000000001000001010011111
+00011111111000001111111111111111
+01100000000000001000001010011111
+00011000000000000111111000000000
+00100000010000000100010010110101
+01101000000000001000001010011111
+00100000001000000100010010110101
+00100000010000000100101001101101
+11101000011000001000000000000000
+01100000000000001000001010111101
+00100000010000000100101001101101
+11101000011000001000000000000000
+00011111111011010000101000000000
+00100000010000000100101001101101
+01101000000000001000001010111101
+10011000101000001000101000000000
+11101000011000001000000000000000
+11100000101000001000000000000000
+00100000010000000100101001101101
+11101000011000001000000000000000
+00100000010000000100101001101101
+01101000000000001000001010111100
+11000000111111111100101001111001
+00100000001000000100101001110011
+00100000010000000100101001101101
+11101000011000001000000000000000
+01100000000000001000001010111101
+00100000010000000100101001101101
+11101000011000001000000000000000
+01100000000000001000001010111110
+00100000010000000100101001101101
+11101000011000001000000000000000
+00100000010000000100101001101101
+01101000000000001000001010111100
+11000000111111111100101001111001
+01101000000000001000001010111110
+00011111111011010000010000000000
+01101000000000001000001010111101
+10011000010000001000011000000000
+11101000011000001000000000000000
+01100000000000001000001010111101
+00011000000000000111111000000001
+00100000010000000100010010110101
+01101000000000001000001010111101
+00100000010000000100010010110101
+01110000000000101001111111111111
+00100000011000000000000000000000
+00100000010000000100101001101101
+11101000011000001000000000000000
+00100000010000000100101001101101
+01101000000000001000001010111100
+11000000111111111100101001111001
+00100000001000000100101001110011
+00100000010000000100101001101101
+11101000011000001000000000000000
+01100000000100001000000000100100
+00100000010000000100101001101101
+11101000011000001000000000000000
+01111001001000000111111000000111
+01100000000100001000000000100011
+01111001001111111111111000000111
+00100000010000000100101001101101
+11101000011000001000000000000000
+00011111111000100111001000000000
+00100000010000000100101001101101
+11101000011000001000000000000000
+01100000000100001000000000100101
+00100000010000000100101001101101
+11000010000000000100101010111010
+11101000011000001000000000000000
+00100000010000000100101001101101
+01101000000000001000001010111100
+11000000111111111100101001111001
+00100000001000000100101001110011
+00100000010000000100101001101101
+11101000011000001000000000000000
+01100000000000001000001010111101
+00100000010000000100101001101101
+11101000011000001000000000000000
+00011111111011010000101000000000
+00100000010000000100101001101101
+01101000000000001000001010111101
+10011000101000001000101000000000
+11101000011000001000000000000000
+10011000000000000111001000000000
+00100000010000000100101001101101
+11101000011000001000000000000000
+11100000101000001000000000000000
+00100000010000000100101001101101
+11000010000000000100101011001111
+11101000011000001000000000000000
+00100000010000000100101001101101
+01101000000000001000001010111100
+11000000111111111100101001111001
+00100000001000000100101001110011
+00100000010000000100101001101101
+11101000011000001000000000000000
+00100000010000000100101001101101
+01101000000000001000001010111100
+11000000111111111100101001111001
+01110000100000000010001110000000
+00100000001000000100101001110011
+00100000010000000100101001101101
+11101000011000001000000000000000
+00100000010000000100101001101101
+01101000000000001000001010111100
+11000000111111111100101001111001
+01110000100000000010001100000000
+00100000001000000100101001110011
+00100000010000000100101001101101
+11101000011000001000000000000000
+00100000010000000100101001101101
+01101000000000001000001010111100
+11000000111111111100101001111001
+00100000010000000100101001110011
+00100000001000000011000000000001
+00100000010000000110101010001011
+00100000011000001000000000000000
+11011000010000000000000000000111
+00100000010000000110100111100101
+00100100001000001100101011110100
+01110000010000101010111000000001
+00100000011000000000000000000000
+01101000000000001100001010101110
+11000001100000001000000000000000
+00100000010000000100010110011001
+00100000001000000100100101011111
+01111001001000000000000000100101
+01000100110011100100000000110011
+01101000000000010000001011001011
+00011111111000100000110000000000
+11101000110000001000000000000000
+00011111111000010000010000001111
+00011111111100011111111000000000
+11000000000001001100101100011000
+11000000000000111100101100011000
+11000000000001010100101100100100
+11000000000000101100101100010001
+11000000000000001100101100000101
+00100000011000000000000000000000
+00011000010000100111111000000000
+11000000000000101100101100001001
+11000000000000011100101100010000
+00100000011000000000000000000000
+01110000000010110111110100100111
+00100000010000000111110000100111
+01101000000000001100000100110010
+11000001100000110000000000000000
+00011000010000100111111000000000
+11000000000000101110100101000110
+00100000011000000000000000000000
+00100000011000000000000000000000
+11011010001000000000000000000001
+00100000010000000100101100101100
+01101000000000010100001010110101
+11100000101000010000000000000000
+01011000000000000000000000000000
+11100000101000001000000000000000
+00100000011000000000000000000000
+11011010001000000000000000000001
+00100000010000000100101100101100
+01101000000000010100001010110101
+11100000101000010000000000000000
+01011000000000000000000000000000
+11100000101000001000000000000000
+01110000000010001010100000000001
+01101000000000001100001010111011
+01111001001000000111111000000110
+01100000000000001100001010111011
+01110000000010110111110100010010
+00100000001000000111110000100111
+11101000110000001000000000000000
+11000000000000001100101100100111
+00100000011000000000000000000000
+00011000110000100010001000000000
+01101000000000001100000100110010
+11000001100000011000000000000000
+00011010001000100000110000000000
+00100000001000000100110001001010
+00100000010000000101001001001000
+00011010001000100000010000000000
+01100000000010001000100010101000
+00011111111000100000101000000000
+00011010001000100111111000000000
+11100000101000010000000000000000
+00100000011000000000000000000000
+01011000000000000100101101011011
+01100000000000010100001010001100
+01011000000000000100101101000100
+01100000000000010100001010010110
+00100000010000000110100100011101
+00100000010000000101001101000111
+01110000100000001010001010011110
+01110000100000001000000100001000
+01110000100000000111010100000101
+01011111111111111111111111111111
+01111001001111111111111000000001
+01111001001111111111111000010101
+01100000000100100000000001110000
+01110000100000000111100000000010
+00100000011101011000000000000000
+01110000010000111101100000000001
+00100000011000000000000000000000
+11101010001000001000000000000000
+01100000000000001100100000000011
+11000000000000011100101101001111
+11000000000000100100101101010001
+11000000000000101100101101010011
+11000000000010100100101101100100
+11000000000010101100101101100111
+11000001100000010000000000000000
+11101000110000001000000000000000
+01100000000000001100100000000100
+00100000011000000000000000000000
+11011000101000000100100000000111
+00100000001000000100101101010101
+11011000101000000100100000100101
+00100000001000000100101101010101
+01101000000000010100100000000000
+10011000000000000000101000000000
+11011111001000000000000000010011
+00100000010000000111111001000101
+00011000101000100111111000000000
+01100000000000010100100000000000
+01110000010010000000001100000000
+00100000011000000000000000000000
+01101000000000001100100000000011
+11000000000000001100101101110001
+11000000000000010100101110001101
+11000000000001010100101101111010
+11000000000001011100101101111010
+11000000000001100100101101111010
+11000000000001000100101110001101
+11000000000001001100101101101010
+00100000011000000000000000000000
+01110000010000100001001100000000
+01110000010010000000001100000000
+00100000011000000000000000000000
+01110000010000100001001100011110
+01110000010010000000001100000000
+00100000011000000000000000000000
+01110000010010000000001100000000
+11011011011011111111111111111111
+00100000010000000100101110010001
+00100000011000000000000000000000
+01101000000010010000001111000010
+10011000010000001111111000000000
+01100000000000100000001111000100
+01101000000000100000001111000100
+10011101000001100111111000000000
+00100100001000010100101101101110
+00011111111000110011011000000000
+00100000010000000100101110010001
+00100000011110100000000000000000
+01110000010010000000001100001100
+11011000010000000001100000000000
+01100000000010010100100000000000
+00100000010000000101011000011100
+00100100011110100000000000000000
+01110000010001001100001000010100
+01110000000010110111110100011011
+00100000010000000101011000100000
+01101000000000010000010000011001
+10011000000000000000101000000000
+01101000000000010100100000000000
+10011000000000000000110000000000
+11011111001000000000000000010100
+00100000010000000111111001000101
+00011000110000100111111000000000
+01100000000000010100100000000000
+01101000000000010100100000000101
+00011111111000001111111111101100
+01100000000000010100100000000101
+00100000011000010000000000000000
+01110000010010000000001100000000
+00100000011000000000000000000000
+01101000000000001100100000000100
+00100000010000000100101111100010
+01110000010010000000001100000000
+00100000011000000000000000000000
+00100000010000000100101110010111
+01011000000000000001100000000000
+10011000101001100111111000000000
+00011111111001100111111000000000
+01100000000000010100100000000101
+00100000011000000000000000000000
+01111000010010000111110000000000
+11011000101000000001100000000000
+00100000011000011000000000000000
+01101000000100001000000100011110
+11000011000000101100101110011001
+00011011001000100000010000000000
+11011111001000000000000010000000
+00100000010000000111111000111011
+11011000101000000001100000000000
+11011010011000000000000000000000
+11011011011000000000000010110100
+00100000011000011000000000000000
+01101000000100001000000100011110
+10011010011000101111111000000000
+11000010100000101100101110100010
+00011011001000100111111000000000
+10011000000000000110000000000000
+00100000010000000111111001111000
+00011111111001100111110011111111
+00100000001000010100101110100010
+00101010011011000000000000000101
+01111001001000001111111000010111
+11100000101000011000000000000000
+00011000101011001111111000000000
+11000001000011100000000000000000
+00011110000000100000010000000000
+00011010011000101010011000100000
+00100000001000000100101110100001
+00100000001101000100101111000111
+00100000001101100100101111001010
+11011000010000000100100000100110
+01101000000000001100100000100101
+10011000010000001111111000000000
+10011010001001100111110000000000
+00100000001000101100101111011010
+11101010001000001000000000000000
+00011000110000100010001000000000
+11000011000000111100101111000001
+01111000001101100111110000000000
+00011111111000010010010001111111
+00011010001010011010001000000000
+00100000001000000100101111001010
+00011111111100011001000000000000
+00011111111000010111111000001111
+10011001000001100111110000000000
+00100000011000101000000000000000
+01111000001101000111110000000000
+00100000011000000000000000000000
+00011001000000100111111000000000
+01111000010101000111110000000000
+00100000011000000000000000000000
+00011010010000100111111000000000
+00100000001110100100101111010110
+00011010001000010000111000000111
+00011010001010010000110000000000
+11101000110000001000000000000000
+00011010001000001010001000000001
+00011010010000001010010111111111
+10101111111011000000000000000000
+01101000000000001100100000000111
+00100000001000001100101111000001
+01101000000000001100100000001000
+00100000001000000100101111000001
+01111000010101100111110000000000
+00011010001000001010001000000111
+00011010001010010010001000000000
+00100000001000000100101110110101
+01011000000000000000000011111111
+00100000011000000000000000000000
+00011111111000111000110000000000
+10011000110000001111111000000000
+11011000110000000100100000001001
+10011000110000001000110000000000
+11101000110000011000000000000000
+00100000011000000000000000000000
+01111000001010000111110000000000
+10011000000000000111001000000000
+01111000010101000111110000000000
+01111000010101100111110000000000
+11011010001000000100100000100110
+00100000010000000100101110110011
+11000000011111111100101111110001
+00100000010000000100101111011100
+11000011000010111100101111101101
+01111001001111111111111000010111
+01110000100000001010000010011110
+10011000000000000011011000000000
+00110111110000011000001000000000
+01110000100000001010000000000000
+00100000001000000100101111100111
+11000010000000000100101111100100
+00100000011000000000000000000000
+00100000010000000100110000100001
+01011000000000000100110100100001
+01100000000000010100001010010000
+01011000000000000100110001011001
+01100000000000010100001010001110
+01011000000000000100110100110111
+01100000000000010100001010010010
+01011000000000000100110101111110
+01100000000000010100001010001010
+01011000000000000100110101111011
+01100000000000010100001010010100
+01011000000000000100110101111110
+01100000000000010100001010001000
+01011000000000000100110100100010
+01100000000000010100001010000110
+00100000011101011000000000000000
+01101000000000010100011111110100
+11000010100001100011111101111001
+00100000010000000011111100100011
+00100000001110100100110101111001
+00100000010000000011111101111110
+00100000001000000011111101101110
+00100000010000000100110000100001
+01011000000000000100110100100001
+01100000000000010100001010010000
+01011000000000000100110001011001
+01100000000000010100001010001110
+01011000000000000100110100110111
+01100000000000010100001010010010
+01011000000000000100110101111110
+01100000000000010100001010001010
+01011000000000000100110101111011
+01100000000000010100001010010100
+01011000000000000100110101111110
+01100000000000010100001010001000
+01011000000000000100110100100010
+01100000000000010100001010000110
+00100000011101011000000000000000
+01110000000001111101110000000000
+01110000000001111101110100000000
+01101000000000010100011111110100
+11000010100001100011111101111001
+00100000010000000011111100100011
+00100000001110100100110101111001
+00100000010000000011111101111110
+00100000001000000011111101101110
+01111001001000000000000000100101
+01000100110110110100000000110110
+01101000000000001000000101000000
+00100000001110100011101111110001
+01110000100000000111000000000000
+01110000100000000111100011111111
+01110000100000000111000111111111
+01110000100000000111001011111111
+01101000000100001000000001110011
+00011111111000011111111000001111
+01100000000100001000000001110011
+01110000100000001000000000000000
+01110000100000001000000100000000
+01110000100000001000001111111111
+01110000100000001000010011111111
+01101000000100001000000010000101
+00011111111000011111111000000011
+01100000000100001000000010000101
+01110000100000000110111100000000
+01011000000000000000000000010011
+00011111111010011111111000000000
+00011111111000001111111000000111
+01100000000100001000000001100100
+01101000000100001000000001000011
+01111001001000000111111000000010
+01100000000100001000000001000011
+01101000000100001000000001010001
+01111001001111111111111000000001
+01100000000100001000000001010001
+01110000100000000110001100001101
+01110000100000000110011111010011
+01110000100000000110010100000000
+01110000100000000110011000110001
+00100000010000000011111000001011
+01101000000010001100100000001110
+00100000010000000110100111011010
+01101000000010001100100000001111
+00100000010000000110100111011010
+01101000000010001100100000010000
+00100000010000000110100111011010
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100110110111100000000110110
+11101000110000001000000000000000
+00011111111000100010001000000000
+01101000000010001100100000001111
+00101010001011111111111000000000
+00100000010000000110100111110000
+01101000000010001100100000001110
+00101010001011111111111000000001
+00100000010000000110100111110000
+01101000000010001100100000010000
+00101010001011111111111000000010
+00100000010000000110100111110000
+01110000010010000000100100000001
+00100000011000000000000000000000
+00100000010000000100110010011001
+00100100011101000000000000000000
+00100100011101100000000000000000
+01101000000000001000010001010000
+11000000000000001100110001101001
+01101000000000001100001010111100
+11000001100111111000000000000000
+11011010001000000000000000001010
+00100000010000000100101100101100
+01101000000000010100001010110111
+11100000101000010000000000000000
+01011000000000000000000110100001
+11100000101000010000000000000000
+01101000000001000100100000000000
+11100000101001000000000000000000
+00100000011000000000000000000000
+01101000000010001000010101001111
+01011000000000000000010101010000
+10011000010000001000101000000000
+01101000000000001100100000000010
+00100000001110100100110001110010
+11000000000101010100110001110100
+11000000100101000100110001111110
+01100000000010001000010101001111
+00100000001000000011111101101010
+01100000000010001000010101001111
+00100000011000000000000000000000
+01101000000000001000010101001111
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001000010101001111
+11011000101000000000010101010000
+10011000101000001000101000000000
+01011000000000000000000000000000
+11100000101000001000000000000000
+01111000001101100111110000000000
+00100000001000000100110010001101
+00011111111001100111110000011101
+00100000011000010000000000000000
+11011000010000000000000000110000
+00011111111001100111110000100111
+00100100011000010000000000000000
+00100000001000101100110010000111
+11011000010000000000000000011101
+10011000010001100000010000000000
+00011000010000011000010000110000
+11100000101010001000000000000000
+01101000000000001000010101001111
+00011111111000001111111000000001
+01100000000000001000010101001111
+01111000010101100111110000000000
+00100000001000000100110010001101
+01101000000000010100001010110111
+00100000011110100000000000000000
+11011010001000000000000000000011
+00100000010000000100101100101100
+01101000000000010100001010110111
+11100000101000010000000000000000
+01011000000000001111111110100001
+11100000101000010000000000000000
+01011000000000000000000000000000
+01111001001101100111111000000000
+11100000101000001000000000000000
+00100000011000000000000000000000
+01111000010101000111110000000000
+01111000010101100111110000000000
+01101000000100001000000100011001
+11000011100000000000000000000000
+01101000000100001000000100011011
+11000010100000000100110010100011
+01101000000100001000000100011001
+11000011000000110100110010100011
+01101000000100001000000100011010
+00100000001000000100110010011001
+01111000001101000111110000000000
+01111000001101100111110000000000
+01101000000100001000000100011011
+00101111111011000000000000000000
+01101000000100001000000100011010
+11011000110000000100100000010001
+10011000110000001000110000000000
+11101000110000001000000000000000
+11000010100000111100110011100100
+00100100001000001100110011001100
+01111000010101100111110000000000
+10011000000000000000010000000000
+01101000000000001100100000001000
+00011111111001100111110000000100
+00100100011000010000000000000000
+00011111111000100010001000000000
+11011111001000000000000000000011
+11011000110000000100100000000010
+11101000110000001000000000000000
+10011000010001100111110000000000
+00100000001000101100110010011001
+11000010000000000100110010110101
+00011010001000100111111000000000
+11011000101000000100100000000010
+10011000101000001000101000000000
+11100000101010001000000000000000
+00011111111000001111111000000001
+01100000000000001100100000001000
+01101000000100001000000100011011
+00011111111010010111111000000000
+00100100001110100100110011000011
+00100000001000000100110011001010
+00011111111000001111111111111111
+00100000001000101100110011001010
+01101000000100001000000100011011
+00011111111000010111111000000001
+11000000000000000100110010011001
+11000000000000001100110011001010
+00100000011000000000000000000000
+01111000001101100111110000000000
+00100000011000000000000000000000
+00011111111000010000010011111111
+01101000000000001100100000001000
+00100000011110100000000000000000
+10011000000000000111001000000000
+11011000110000000100100000000010
+11101000110000001000000000000000
+10011000010001100111110000000000
+00100000001000101100110011010110
+11000010000000000100110011010001
+00100000011000000000000000000000
+00011000110000001000101111111111
+00100000010000000111111001000101
+01101000000000001100100000001000
+00011111111000001111111111111111
+01100000000000001100100000001000
+01101000000100001000000100011011
+00011111111010010111111000000000
+00100100001110100100110011011111
+00100000011000000000000000000000
+01101000000100001000000100011011
+00011111111000010111111000000001
+11000000000000000100110011001010
+11000000000000001100110010011001
+00100000011000000000000000000000
+00011111111000010000111000000111
+01101000000000001100100000000000
+11111001001000001111111000000000
+01100000000000001100100000000000
+00100000011000000000000000000000
+01011000000000000000000000000000
+01100000000001000100100000000000
+01100000000000001100100000001000
+00100000011000000000000000000000
+01101000000100001000000100011011
+01101000000100001000000100011010
+01101000000100001000000100011001
+11000011000000000100110011101101
+01011000000000000000000011111111
+01111000001101000111110000000000
+00100000011000000000000000000000
+01101000000010010100010011000010
+00100000010000000101100001100110
+11000100000000000000000000000000
+01101000000000001100011011111000
+11000100000000000000000000000000
+00100000010000000101011000011100
+00100100011110100000000000000000
+00100000010000000100110010011001
+00100100011101000000000000000000
+00100100011101100000000000000000
+00100000010000000011111101011110
+01110000010000100001001100000010
+01101000000010010100010011000010
+00100000010000000101101010001000
+00011000110000001000101000000001
+01101000000001000100100000000000
+11100000101001000000000000000000
+01110000000010110111110100011011
+00100000010000000101011000100000
+01101000000000001000001111100100
+11000010100000011011101111110010
+00100000011000000000000000000000
+00011010011000100111111000000000
+11000000000010000100110100010101
+11000000000010100100110100010011
+11000000000101000100110100010001
+11000000000101001100110100010001
+11000000000101110011111101010111
+00100000011000000000000000000000
+00100000010000000011111110100100
+00100000001000000011111110010010
+00100000010000000100110011101101
+00100000001000000100110011101001
+00100000010000000101101100110000
+00100000010000000011111110010000
+00100000010000000011111110001000
+00100000001000000011111110010100
+01101000000000001100010000101110
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001100010000101110
+00100100011110100000000000000000
+01101000000000001100010011011011
+00100000011110100000000000000000
+00100000001000000011111110011000
+00100000001000000100110100101110
+01101000000100011000000100011100
+00011111111000100010010000000000
+01101000000100001000000100011111
+00011111111000010111111000001111
+00011111111100000111111000000000
+00011111111011010111111000000000
+10011010010000011111111000000000
+01101000000010100100100000001010
+10011000010001100111111000000000
+00100000011110100000000000000000
+11011010010000000000000010111011
+00100000001000000011111101011110
+01101000000000001100000100110011
+00100100011110100000000000000000
+01101000000000001100001001111111
+00100100011110100000000000000000
+01101000000000001100011111101010
+00100000011110100000000000000000
+01101000000000001100011111101011
+00100100011110100000000000000000
+00100000001000000011111110011010
+00011010011000100111111000000000
+11000000000000110100110110001011
+11000000000001010100110101111100
+11000000000000110100110110001111
+11000000000010000100110101101000
+11000000000101110011111101010111
+11000000000000001100110101110111
+11000000000000010100110101010001
+11000000000000100100110101001110
+11000000000010011100110101001110
+00011111111000010000010000001111
+00011111111000010111111011110000
+11000000001010000100110101000101
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100110111000100000000110111
+01100000000010001000001001011001
+01101000000000001000001001011001
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001000001001011001
+00100000010000000100110101100010
+00100000001000000100110101001000
+01101000000000010100011111110100
+11000010100001100100110101111001
+00100000001000000011111100010000
+01111001001000000000000000100101
+01000100110111001100000000110111
+00100000010000000100110101011001
+01101000000000010100001010100000
+11000010100000000011111100010010
+11000010100000001100110101011100
+11000010100000010100110101011111
+00100000001000000100110101111001
+01110000010000100101111000000000
+01110000010001001000101100000000
+00100000011000000000000000000000
+11000010100000101011111100010000
+11000010100000011011111100010000
+00100000001000000100110101111001
+01101000000000010100011111110100
+11000010100001100100110101111001
+00100000001000000011111100010000
+01101000000000001100011111110010
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001100011111110010
+00100100011110100000000000000000
+00100000001000000100110110001111
+00100000010000000100110101101010
+00100000001000000100110101111001
+01111001001000000000000000100101
+01000100110111010100000000110111
+01101000000000010100011111110100
+00101111111011111111111000000111
+00100000010000001011111101110101
+01101000000000010100011111111110
+01100000000000010100011111110000
+01101000000000010100001010100010
+01111001001000000111111000000000
+01100000000000010100001010100010
+01101000000000010100011111110100
+11000010100000000011111101110111
+00100000011000000000000000000000
+00100000010000000011111101111110
+00100000001000000011111110011000
+00100000010000000011111101111100
+00100000001000000011111110010100
+00100000001000000011111110011010
+01110000000001010100111100000000
+00100000011000000000000000000000
+01110000100000001000001100000000
+01110000100000001000010000000000
+01101000000100001000000010000101
+00011111111000010111111011110000
+01100000000100001000000010000101
+01011000000000000000000000000000
+01100000000000100000000010100111
+01011000000000000000000011111111
+01101000000010001100011111111101
+00011000010000100000111000000000
+11111001001000000111111000000000
+01100000000000100000000010100011
+00100000011000000000000000000000
+01011000000000000000000000000010
+01100000000000001100011111110010
+00100000010000000100110011101101
+00100000001000000100110011101001
+01111001001000000000000000100101
+01000100110111011100000000110111
+01110000010000100111111100000001
+00100000010000000011111110100100
+00100000010000000011111110100010
+01011000000000000000000000000000
+01100000000000010100011111110000
+01100000000000001100011111110010
+00100000001000000011111110011110
+00100000001101011100110110011101
+01011000000000000100001111001110
+11011000101000000100001010101111
+10011000101001100111001000000000
+00100000010000000111111000111111
+01111001001000000000000000100101
+01000100100010110100000000100010
+01011000000000000000010011011110
+11011000101000000000010010101001
+10011000101001100111001000000000
+00100000010000000111111000111111
+01011000000000000000001100110000
+11011000101000000000001011000100
+10011000101001100111001000000000
+00100000010000000111111000111111
+00100000001000000101001100101010
+01111001001000000000000000100101
+01000100100010111100000000100010
+00011000110000100000010000000000
+00011000010000100000110000000000
+11101000110000010000000000000000
+01100000000000010000001011001101
+11101000110000010000000000000000
+01100000000000010000001011001111
+00011000110000100111111000000000
+01100000000000010000001011001011
+01101000000000001100011111110011
+11000000000000000100110110110101
+00100000001000000101000011111010
+01111001001000000000000000100101
+01000100100011000100000000100011
+01101000000000010000001011001101
+00100000001110100100110111111100
+01101000000000001000001011001111
+11000000000000001100110111000000
+11000000001010000100110111100111
+11000000001010001100110111110100
+11000000001010010100110111110010
+11000000001010011100110111110010
+00100000001000000100110111111100
+00100000010000000101001001111010
+00100100011110100000000000000000
+01110000010000111100110100000000
+00100000010000000101001011000100
+00100000010000000100111000000001
+01101000000010010000001011010110
+00100000001110100100110111111011
+00100000010000000101001011001110
+01101000000000010000001011010110
+11100000101000010000000000000000
+00011000000000000111111000000001
+11100000101000010000000000000000
+00100000001000000100110111111100
+01101000000000001100000100110010
+11000001000000001000000000000000
+01101000000000001100001111001101
+00100000011110100000000000000000
+00011111111000100010001000000000
+01101000000000100000001100111100
+11011000010000000000000100000000
+10011000010000001000010000000000
+00011100010000100111111000000000
+10011000010001100111110000000000
+00100100011000010000000000000000
+01110000010000111100110100000000
+00011010001000100111111000000000
+11000000001010000100110111011100
+00100000001000000011101111110001
+00100000010000000101001011000100
+00100000010000000100111010000100
+00100000010000000101001011010000
+00100000010000000111111000011100
+00100000010000000100111010110111
+00100000010000000101001011001110
+01011000000000000000000000001100
+11100000101000010000000000000000
+00011000000000000111111000000001
+11100000101000010000000000000000
+00100000001000000100110111111100
+00100000010000000101001001111110
+00100100011110100000000000000000
+00100000010000000101001011010010
+00100000010000000110111101110010
+00100000010000000101001011011100
+01101000000000010000001011011100
+00100000001110100100110111111011
+11100000101000010000000000000000
+01101000000000010100001010110001
+11100000101000010000000000000000
+00100000001000000100110111111100
+00100000010000000100101011111000
+00100000001000000100110111111100
+01111001001000000000000000100101
+01000100100011001100000000100011
+01110000000000101110101100000000
+00100000010000000110101111011100
+01101000000000001000001011101011
+11000001000000001000000000000000
+00100000001000000100110111111100
+00100000010000000101001001101111
+01011000000000000000000000000000
+01100000000000010000001011001101
+01100000000000010000001011001111
+01110000000000101101000100000001
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100100011010100000000100011
+00100000010000000101001011010000
+00011000000000000010010000000000
+01101000000000010000001011001101
+00011111111000100010011000000000
+01101000000000010000001011001011
+10011000000000000000110000000000
+00100000010000000100111000010001
+00011010011000100111111000000000
+00011010011000001010011111111100
+00011111111000001111111111111100
+00100100001110100100111000001001
+00011010010000100111111000000000
+01100000000000010000001011010110
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100100011011100000000100011
+11101000110000001000000000000000
+11000000000000001100111001010100
+11000000000000010100111001011100
+11000000000000011100111011100000
+11000000000000100100111100001111
+11000000000000101100111110101101
+11000000000000110100111111010101
+11000000000000111101000000100100
+11000000000001000101000001011000
+11000000000001001101000001101000
+11000000000001010100111000100001
+11000000000001011101000001101001
+00100000010000000101000001101010
+00100000011000000000000000000000
+11101000110000001000000000000000
+00011111111000100000111000000000
+11101000110000010000000000000000
+00011111111000100010001000000000
+00011010011000100111111000000000
+10011010001001100010011000000000
+00011010001000100111111000000000
+10011000110000001000110000000000
+01011000000000000000000000001011
+11100000101000001000000000000000
+00011000111000100111111000000000
+11100000101000001000000000000000
+00011000000000000111111000001000
+11100000101000010000000000000000
+00011000000000000111111000000010
+11100000101000010000000000000000
+00011000000000000111111000000000
+11100000101000010000000000000000
+00011000000000000111111000000000
+11100000101000010000000000000000
+00011000000000000111111000000000
+11100000101000010000000000000000
+00011000000000000111111000001100
+10011010010000001010010000000000
+00100000001000000100111000100000
+11101000110000001000000000000000
+00011111111000100000111000000000
+11101000110000010000000000000000
+00011111111000100010001000000000
+00011010011000100111111000000000
+10011010001001100010011000000000
+00011010001000100111111000000000
+10011000110000001000110000000000
+00100000010000000101001011010000
+01011000000000000000000000001011
+11100000101000001000000000000000
+00011000111000100111111000000000
+11100000101000001000000000000000
+00011000000000000111111000001000
+11100000101000010000000000000000
+00011000000000000111111000000010
+11100000101000010000000000000000
+00011000000000000111111000000000
+11100000101000010000000000000000
+00011000000000000111111000000000
+11100000101000010000000000000000
+00011000000000000111111000000000
+11100000101000010000000000000000
+00011000000000000111111000001100
+10011010010000001010010000000000
+00100000001000000100111000100000
+11101000110000001000000000000000
+00011111111000100000111000000000
+11101000110000010000000000000000
+00011111111000100010001000000000
+10011000110000001000110000000000
+00011010011000100111111000000000
+10011010001001100010011000000000
+00100000001000000100111000100000
+00100000010000000111111000011100
+00100000010000000111111000100001
+11011001000000000000000000000000
+11101000110000001000000000000000
+00011111111000100000111000000000
+11101000110000010000000000000000
+00011111111000100010001000000000
+11101000110000010000000000000000
+00011111111000100000010000000000
+11101000110000010000000000000000
+00011111111000100001011000000000
+00011000010000100111111000000000
+11000000000000001100111001101110
+11000000000000011100111010010000
+11000000000010001100111010011100
+11000000000010011100111010100111
+00100000010000000101000001101010
+00100000001000000100111011011111
+00100000010000000111111000011100
+11011000010000000000000001010000
+01101000000000010100001010110001
+00100100001110100100111011011001
+00011001011000100111111000000000
+01100000000000010100001010110001
+00011100010000100111111000000000
+01100000000000100000001100111100
+00100000010000000100111001111000
+00100000001000000100111010110011
+01100000000010010000001100111010
+00011001011000100111111000000000
+01100000000000010000001100110000
+00011010001000100111111000000000
+01100000000000010000001100110010
+00011010010000100111111000000000
+01100000000000010000001100110100
+00011010011000100111111000000000
+01100000000000010000001100110110
+00011000111000100111111000000000
+01100000000000010000001100111000
+00100000011000000000000000000000
+01101000000010010000001100111010
+01101000000000010000001100110000
+00011111111000100001011000000000
+01101000000000010000001100110010
+00011111111000100010001000000000
+01101000000000010000001100110100
+00011111111000100010010000000000
+01101000000000010000001100110110
+00011111111000100010011000000000
+01101000000000010000001100111000
+00011111111000100000111000000000
+00100000011000000000000000000000
+00100000010000000111111000011100
+01011000000000000000000001010001
+11011000010000000000000001010001
+01101000000000010100001010110011
+00100100001110100100111011011001
+00011001011000100111111000000000
+01100000000000010100001010110011
+01101000000000001100001010111010
+01111001001000000111111000000000
+01111001001000000111111000000001
+01100000000000001100001010111010
+00100000001000000100111010111011
+00100000010000000111111000011100
+11011000010000000000000001010010
+01101000000000010100001010110101
+00100100001110100100111011011001
+00011001011000100111111000000000
+01100000000000010100001010110101
+01101000000000001100001010111011
+01111001001000000111111000000000
+01111001001000000111111000000001
+01100000000000001100001010111011
+00100000001000000100111010111011
+00100000010000000111111000011100
+00011011010000100111111000000000
+11011000010000000000000001010011
+01101000000000010100001010110111
+00100100001110100100111011011001
+00011001011000100111111000000000
+01100000000000010100001010110111
+01101000000000001100001010111100
+01111001001000000111111000000000
+01111001001000000111111000000001
+01100000000000001100001010111100
+00100000001000000100111010111011
+01011000000000000000000000000001
+01100000000000010000001011100100
+01110000010000111100110101010000
+00100000001000000100111010111101
+01101000000000001100001010111001
+01111001001000000111111000000000
+01111001001000000111111000000001
+01100000000000001100001010111001
+01011000000000000000000000000000
+01100000000000010000001011100100
+01111001001000000000000000100101
+01000100100011100100000000100011
+00100000010000000111111000100001
+01011000000000000000000000000011
+11100000101000001000000000000000
+00011000111000100111111000000000
+11100000101000001000000000000000
+01011000000000000000000000001000
+11100000101000010000000000000000
+00011000010000100111111000000000
+11100000101000010000000000000000
+00011001011000100111111000000000
+11100000101000010000000000000000
+01101000000000010000001011100100
+11000000000000001100111011010100
+00101001000011000000000000000000
+00100000001000001100111011001111
+01011000000000000000000000000100
+11100000101000010000000000000000
+00011000000000000111111000000000
+11100000101000010000000000000000
+01011000000000000000000000001100
+00100000001000000100111011011011
+11100000101000010000000000000000
+00011000000000000111111000000010
+11100000101000010000000000000000
+01011000000000000000000000001100
+00100000001000000100111011011011
+01111001001000000001000000000000
+00100000001000000100111010111011
+10011010010000001010010000000000
+00011010011000100111111000000000
+10011010001001100010011000000000
+00100000001000000100111011011111
+00100000001000000100111000100000
+11101000110000001000000000000000
+00011111111000100000111000000000
+11101000110000010000000000000000
+00011111111000100010001000000000
+00011010011000100111111000000000
+10011010001001100010011000000000
+11101000110000010000000000000000
+00011111111000100001011000000000
+11101000110000010000000000000000
+00011111111000100000010000000000
+01011000000000000000000001010000
+10011000010001100111110000000000
+00100000001000101100111011110111
+01011000000000000000000001010001
+10011000010001100111110000000000
+00100000001000101100111011111101
+01011000000000000000000001010010
+10011000010001100111110000000000
+00100000001000101100111100001001
+01011000000000000000000001010011
+10011000010001100111110000000000
+00100000001000101100111100000011
+00100000011000000000000000000000
+00011001011000100111111000000000
+01100000000000010100001010110001
+01101000000000001100001010111001
+01111001001000000111111000000001
+01100000000000001100001010111001
+00100000001000000100111000100000
+00011001011000100111111000000000
+01100000000000010100001010110011
+01101000000000001100001010111010
+01111001001000000111111000000001
+01100000000000001100001010111010
+00100000011000000000000000000000
+00011001011000100111111000000000
+01100000000000010100001010110101
+01101000000000001100001010111100
+01111001001000000111111000000001
+01100000000000001100001010111100
+00100000011000000000000000000000
+00011001011000100111111000000000
+01100000000000010100001010110111
+01101000000000001100001010111011
+01111001001000000111111000000001
+01100000000000001100001010111011
+00100000011000000000000000000000
+11101000110000001000000000000000
+00011111111000100000111000000000
+11101000110000010000000000000000
+00011111111000100010001000000000
+00011010011000100111111000000000
+10011010001001100010011000000000
+11101000110000010000000000000000
+00011111111000100000010000000000
+00011000010000100010001000000000
+01011000000000000000000001010000
+10011000010001100111110000000000
+00100000001000101100111100100101
+01011000000000000000000001010001
+10011000010001100111110000000000
+00100000001000101100111101000011
+01011000000000000000000001010010
+10011000010001100111110000000000
+00100000001000101100111100101111
+01011000000000000000000001010011
+10011000010001100111110000000000
+00100000001000101100111100111001
+00100000001000000101000001101010
+00011000101000100001011000000000
+01101000000000001100001010111001
+01111001001000000111111000000100
+01111001001000000111111000000011
+01100000000000001100001010111001
+00011001011000100000101000000000
+11011001011000000000000001010000
+01101000000000010100001010110001
+00011111111000100000010000000000
+00100000001000000100111101001100
+00011000101000100001011000000000
+01101000000000001100001010111011
+01111001001000000111111000000100
+01111001001000000111111000000011
+01100000000000001100001010111011
+00011001011000100000101000000000
+11011001011000000000000001010010
+01101000000000010100001010110101
+00011111111000100000010000000000
+00100000001000000100111101001100
+00011000101000100001011000000000
+01101000000000001100001010111100
+01111001001000000111111000000100
+01111001001000000111111000000011
+01100000000000001100001010111100
+00011001011000100000101000000000
+11011001011000000000000001010011
+01101000000000010100001010110111
+00011111111000100000010000000000
+00100000001000000100111101001100
+00011000101000100001011000000000
+01101000000000001100001010111010
+01111001001000000111111000000100
+01111001001000000111111000000011
+01100000000000001100001010111010
+00011001011000100000101000000000
+11011001011000000000000001010001
+01101000000000010100001010110011
+00011111111000100000010000000000
+01111001001000000000000000100101
+01000100100011101100000000100011
+01011000000000000000000000000101
+11100000101000001000000000000000
+00011000111000100111111000000000
+11100000101000001000000000000000
+01011000000000000000000000000110
+11100000101000010000000000000000
+00011000010000100111111000000000
+11100000101000010000000000000000
+00011000000000000111111000000000
+11100000101000010000000000000000
+00011000000000000111111000000000
+11100000101000010000000000000000
+00011000000000000111111000001010
+10011010010000001010010000000000
+01100000000010010000001011101001
+00011000111000100111111000000000
+01100000000000001000001011101000
+00011000000000000111111001010000
+10101001011000011111111000000000
+00100000001000001100111101100011
+00011111111000001111111000000001
+00100000011000000000000000000000
+01111000010101000111110000000000
+11000011100000010000000000000000
+11000100000000000000000000000000
+11000100000000001000000000000000
+01111001001000000111111000000010
+00011000110000100000101000000000
+00011000101000001000101111111111
+11100000101000001000000000000000
+01111000001101000111110000000000
+00100000011000000000000000000000
+01101000000000001100001010111001
+00100000010000000100111101100100
+00100100001101000100111101110101
+01110000000000101110011101010000
+01101000000000010100001010110001
+01100000000000010000001011101001
+00100000001000000100111110001001
+01101000000000001100001010111010
+00100000010000000100111101100100
+00100100001101000100111101111100
+01110000000000101110011101010001
+01101000000000010100001010110011
+01100000000000010000001011101001
+00100000001000000100111110001001
+01101000000000001100001010111011
+00100000010000000100111101100100
+00100100001101000100111110000011
+01110000000000101110011101010010
+01101000000000010100001010110101
+01100000000000010000001011101001
+00100000001000000100111110001001
+01101000000000001100001010111100
+00100000010000000100111101100100
+00100100011101000000000000000000
+01110000000000101110011101010011
+01101000000000010100001010110111
+01100000000000010000001011101001
+01111001001000000000000000100101
+01000100100011110100000000100011
+00100000010000000101001001000010
+00100000010000000101001011000100
+00011000000000000010010000000000
+00100000010000000101001011010000
+00011000000000000111111000000100
+11100000101000001000000000000000
+01101000000000001100001010111110
+11100000101000001000000000000000
+01011000000000000000000000001000
+11100000101000010000000000000000
+01101000000000010000001011101001
+11100000101000010000000000000000
+01011000000000000000000000000000
+11100000101000010000000000000000
+00011000000000000111111000000001
+11100000101000001000000000000000
+00011000000000000111111000000010
+11100000101000001000000000000000
+01101000000000001000001011100111
+11000000001010001100111110100010
+01011000000000000000000000110000
+11100000101000010000000000000000
+00100000001000000100111110100100
+01011000000000000000001111100011
+11100000101000010000000000000000
+11011000010000000000000000001100
+01100000000010010000001011010110
+00100000010000000101001011001110
+01101000000000010000001011010110
+11100000101000010000000000000000
+00011000000000000111111000000001
+11100000101000010000000000000000
+01110000000000101110011100000000
+00100000001000000100111000100000
+00011000110000001000110000000001
+11101000110000010000000000000000
+00011111111000100010001000000000
+00011010011000100111111000000000
+10011010001001100010011000000000
+11101000110000010000000000000000
+00011111111000100010001000000000
+01011000000000000000000001010000
+10011010001001100111110000000000
+00100000001000101100111111000100
+01011000000000000000000001010001
+10011010001001100111110000000000
+00100000001000101100111111001000
+01011000000000000000000001010010
+10011010001001100111110000000000
+00100000001000101100111111001100
+01011000000000000000000001010011
+10011010001001100111110000000000
+00100000001000101100111111010000
+00011000110000001000110000000010
+11101000110000010000000000000000
+10011000000000000111110000000000
+00100000001000000100111000100000
+01101000000000001100001010111001
+01111001001000000111111000000101
+01100000000000001100001010111001
+00100000001000000100111000100000
+01101000000000001100001010111010
+01111001001000000111111000000101
+01100000000000001100001010111010
+00100000001000000100111000100000
+01101000000000001100001010111011
+01111001001000000111111000000101
+01100000000000001100001010111011
+00100000001000000100111000100000
+01101000000000001100001010111100
+01111001001000000111111000000101
+01100000000000001100001010111100
+01110000000010110111110100000110
+00100000001000000111110000100111
+11101000110000001000000000000000
+00011111111000100000111000000000
+11101000110000010000000000000000
+00011111111000100010001000000000
+00011010011000100111111000000000
+10011010001001100010011000000000
+11101000110000010000000000000000
+00011111111000100010001000000000
+11101000110000010000000000000000
+00011111111000100001011000000000
+00011010001000100000010000000000
+00100000010000000111111000011100
+01011000000000000000000001010000
+10011000010001100111110000000000
+00100000001000101100111111111011
+01011000000000000000000001010001
+10011000010001100111110000000000
+00100000001000101101000000001011
+01011000000000000000000001010010
+10011000010001100111110000000000
+00100000001000101100111111101111
+01011000000000000000000001010011
+10011000010001100111110000000000
+00100000001000101100111111110101
+00100000010000000101000001101010
+00100000001000000101000000100000
+00011001011000100000010000000000
+01101000000000010100001010110101
+10011000010001100111110000000000
+00100000001000101101000000000001
+00100000010000000101000001101010
+00100000001000000101000000100000
+00011001011000100000010000000000
+01101000000000010100001010110111
+10011000010001100111110000000000
+00100000001000101101000000000011
+00100000010000000101000001101010
+00100000001000000101000000100000
+00011001011000100000010000000000
+01101000000000010100001010110001
+10011000010001100111110000000000
+00100000001000101101000000000111
+00100000010000000101000001101010
+00100000001000000101000000100000
+00100000010000000101000010000001
+00100000001000000101000000010011
+00100000010000000101000010000111
+01101000000000010100001010110101
+00100000001110100101000000010011
+00100000001000000101000000010011
+00100000010000000101000001111100
+01101000000000001000001011101111
+00100100001110100101000000010011
+00100000001000000101000000010011
+00011001011000100000010000000000
+01101000000000010100001010110011
+10011000010001100111110000000000
+00100000001000101101000000010001
+00100000010000000101000001101010
+00100000001000000101000000100000
+00100000010000000101000001110111
+00100000001000000101000000010011
+00100000010000000111111000100001
+01011000000000000000000000000111
+11100000101000001000000000000000
+00011000111000100111111000000000
+11100000101000001000000000000000
+01011000000000000000000000000100
+11100000101000010000000000000000
+00011010001000100111111000000000
+11100000101000010000000000000000
+00011001011000100111111000000000
+11100000101000010000000000000000
+00011000000000000111111000001000
+00100000001000000101000000100010
+00100000010000000111111000100001
+00100000001000000101000000100010
+10011010010000001010010000000000
+00100000001000000100111000100000
+11101000110000001000000000000000
+00011111111000100000111000000000
+11101000110000010000000000000000
+00011111111000100010001000000000
+00011010011000100111111000000000
+10011010001001100010011000000000
+11101000110000010000000000000000
+00011111111000100001011000000000
+11101000110000010000000000000000
+00011111111000100000010000000000
+00100000010000000111111000011100
+01011000000000000000000001010000
+10011000010001100111110000000000
+00100000001000101101000000111101
+01011000000000000000000001010001
+10011000010001100111110000000000
+00100000001000101101000001000011
+01011000000000000000000001010010
+10011000010001100111110000000000
+00100000001000101101000001001001
+01011000000000000000000001010011
+10011000010001100111110000000000
+00100000001000101101000001001111
+00100000010000000101000001101010
+00100000001000000101000001010111
+00011000010000100010001000000000
+00011001011000100000010000000000
+01101000000000010100001010110001
+10011000010001100111110000000000
+00100000010000101101000001111100
+00100000001000000101000001010101
+00011000010000100010001000000000
+00011001011000100000010000000000
+01101000000000010100001010110011
+10011000010001100111110000000000
+00100000010000101101000001110111
+00100000001000000101000001010101
+00011000010000100010001000000000
+00011001011000100000010000000000
+01101000000000010100001010110101
+10011000010001100111110000000000
+00100000010000101101000010000001
+00100000001000000101000001010101
+00011000010000100010001000000000
+00011001011000100000010000000000
+01101000000000010100001010110111
+10011000010001100111110000000000
+00100000010000101101000010000111
+00100000001000000101000001010101
+00100000010000000111111000100001
+00100000001000000100111000100000
+00100000001000000100111000100000
+11101000110000001000000000000000
+00011111111000100000111000000000
+11101000110000010000000000000000
+00011111111000100010001000000000
+10011000110000001000110000000000
+01011000000000000000000000001001
+11100000101000001000000000000000
+00011000111000100111111000000000
+11100000101000001000000000000000
+00011000000000000111111000000000
+11100000101000010000000000000000
+00011000000000000111111000000100
+10011010010000001010010000000000
+00011010011000100111111000000000
+10011010001001100010011000000000
+00100000001000000100111000100000
+00100000001000000100111000100000
+00100000001000000100111000100000
+00011000000000000010010000000000
+00100000010000000101001011010000
+01011000000000000000000000000001
+11100000101000001000000000000000
+00011000111000100111111000000000
+11100000101000001000000000000000
+01011000000000000000000000000010
+11100000101000010000000000000000
+01011000000000000000000000000000
+11100000101000010000000000000000
+00011010010000001010010000000110
+11011010011000000000000000000100
+00100000001000000100111000100000
+01011000000000000000000000000000
+01100000000000010000001011100010
+01100000000000010100001010110011
+01110000010000101011101000000000
+00100000011000000000000000000000
+01011000000000000000000000000000
+01100000000000010000001011011100
+01100000000000010100001010110001
+01110000010000101011100100000000
+00100000011000000000000000000000
+01011000000000000000000000000000
+01100000000000010100001010110101
+01110000010000101011101100000000
+01101000000000001100001010111100
+11000000000000000101000010001101
+00100000011000000000000000000000
+01011000000000000000000000000000
+01100000000000010100001010110111
+01110000010000101011110000000000
+01101000000000001100001010111011
+11000000000000000101000010001101
+00100000011000000000000000000000
+01110000000010110111110100000111
+00100000001000000111110000100111
+01101000000000001000001011100110
+01111001001111111111111000000000
+01100000000000001000001011100110
+01101000000000010100001010110111
+00100000011110100000000000000000
+00100000010000000101001011000100
+01101000000000010100001010110111
+00011111111000100010001000000000
+00011000000000000010010001010011
+00100000001000000101000010100010
+01101000000000001000001011100110
+01111001001111111111111000000111
+01100000000000001000001011100110
+01101000000000010100001010110101
+00100000011110100000000000000000
+00100000010000000101001011000100
+01101000000000010100001010110101
+00011111111000100010001000000000
+00011000000000000010010001010010
+00100000010000000101001001000010
+00100000010000000101001011010000
+00011000000000000111111000000110
+11100000101000001000000000000000
+01101000000000001100001010111110
+11100000101000001000000000000000
+01011000000000000000000000000100
+11100000101000010000000000000000
+00011010001000100111111000000000
+11100000101000010000000000000000
+00011010010000100111111000000000
+11100000101000010000000000000000
+00011000000000000000010000001000
+00100000001000000101000011101001
+01111001001000000000000000100101
+01000100100011111100000000100011
+00100000010000000101001001000010
+00100000010000000101001011010000
+01011000000000000000000000000010
+11100000101000001000000000000000
+01101000000000001100001010111110
+11100000101000001000000000000000
+01011000000000000000000000000100
+11100000101000010000000000000000
+00011000010000100111111000000000
+11100000101000010000000000000000
+00011001011000100111111000000000
+11100000101000010000000000000000
+11011000010000000000000000001000
+00100000001000000101000011101001
+01111001001000000000000000100101
+01000100100100000100000000100100
+00100000010000000101001001000010
+00100000010000000101001011010000
+01011000000000000000000000000100
+11100000101000001000000000000000
+01101000000000001100001010111110
+11100000101000001000000000000000
+01011000000000000000000000001000
+11100000101000010000000000000000
+00011000010000100111111000000000
+11100000101000010000000000000000
+01011000000000000000000000000000
+11100000101000010000000000000000
+01011000000000000000000000000001
+11100000101000001000000000000000
+01011000000000000000000000000010
+11100000101000001000000000000000
+01011000000000000000001111100011
+11100000101000010000000000000000
+11011000010000000000000000001100
+00100000001000000101000011101001
+01111001001000000000000000100101
+01000100100100001100000000100100
+00100000010000000101001001000010
+00100000010000000101001011010000
+01011000000000000000000000000110
+11100000101000001000000000000000
+01101000000000001100001010111110
+00011111111000001111111000000001
+00011000101000100010001000000000
+01100000000000001100001010111110
+00011010001000100000101000000000
+11100000101000001000000000000000
+01011000000000000000000000000100
+11100000101000010000000000000000
+00011000010000100111111000000000
+11100000101000010000000000000000
+00011001011000100111111000000000
+11100000101000010000000000000000
+11011000010000000000000000001000
+01100000000010010000001011010110
+00011000010000100111111000000000
+00100000001110100101001001101111
+00100000010000000101001011001110
+01101000000000010000001011010110
+11100000101000010000000000000000
+00011000000000000111111000000001
+11100000101000010000000000000000
+00100000011000000000000000000000
+01101000000000010000001011011100
+00100000001110100011101111110001
+00100000010000000101001011011100
+01101000000000010000001011011100
+11100000101000010000000000000000
+01101000000000010100001010110001
+11100000101000010000000000000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100100100010100000000100100
+01101000000000010000001011001101
+00100000001110100100110111111100
+01101000000000001000001011001111
+11000000000000001101000100000101
+11000000001010000100110111100111
+11000000001010001100110111110100
+11000000001010010100110111110010
+11000000001010011100110111110010
+00100000001000000100110111111100
+01111001001000000000000000100101
+01000100100100011100000000100100
+00100000010000000101001011000100
+00011000000000000010010000000000
+00100000010000000101001011010000
+00011111111000100000101000000000
+01101000000000010000001011001101
+00011111111000100010011000000000
+01101000000000010000001011001011
+10011000000000000000110000000000
+00100000010000000101000100010101
+00011010011000001010011111111100
+00100100001000101101000100001111
+00011010010000100000010000000000
+00100000010000000101000011101001
+00100000001000000100110111111100
+11101000110000001000000000000000
+11000000000000010101000100100000
+11000000000000001101000100100011
+11000000000000011101000100101101
+11000000000000101101000101101000
+11000000000000100101000110011001
+11000000000000111101001000011100
+11000000000000110101000111101011
+11000000000001000101000001011000
+11000000000001010100111000111010
+00100000001000000101001000110110
+00100000010000000111111000011100
+00100000010000000111111000100001
+00100000001000000100111001011100
+11101000110000001000000000000000
+00011111111000100000111000000000
+11101000110000010000000000000000
+00011111111000100010001000000000
+00011010011000100111111000000000
+10011010001001100010011000000000
+11101000110000001000000000000000
+00011010001000001010001111111111
+00100100001000101101000100101001
+00100000011000000000000000000000
+11101000110000001000000000000000
+00011111111000100000111000000000
+11101000110000010000000000000000
+00011111111000100010001000000000
+11101000110000010000000000000000
+00011111111000100001011000000000
+11101000110000010000000000000000
+00011111111000100000010000000000
+11101000110000010000000000000000
+00011111111001100111110000000000
+00100000001000101101000100111111
+11000000000000010101000100111011
+11000000000000100101000100111011
+00100000001000000101000100111101
+01110000000010110111110100010110
+00100000010000000111110000100111
+11101000110000010000000000000000
+00100000001000000101000101100101
+00100000010000000111111000011100
+01011000000000000000000001010000
+10011000010001100111110000000000
+00100000001000101101000101001101
+01011000000000000000000001010001
+10011000010001100111110000000000
+00100000001000101101000101010011
+01011000000000000000000001010011
+10011000010001100111110000000000
+00100000001000101101000101011111
+01011000000000000000000001010010
+10011000010001100111110000000000
+00100000001000101101000101011001
+00100000001000000101000101100101
+00011001011000100111111000000000
+01100000000000010100001010110001
+01101000000000001100001010111001
+01111001001000000111111000000001
+01100000000000001100001010111001
+00100000001000000101000101100100
+00011001011000100111111000000000
+01100000000000010100001010110011
+01101000000000001100001010111010
+01111001001000000111111000000001
+01100000000000001100001010111010
+00100000001000000101000101100100
+00011001011000100111111000000000
+01100000000000010100001010110101
+01101000000000001100001010111011
+01111001001000000111111000000001
+01100000000000001100001010111011
+00100000001000000101000101100100
+00011001011000100111111000000000
+01100000000000010100001010110111
+01101000000000001100001010111100
+01111001001000000111111000000001
+01100000000000001100001010111100
+00100000010000000111111000100001
+00011010011000100111111000000000
+10011010001001100010011000000000
+00100000011000000000000000000000
+11101000110000001000000000000000
+00011111111000100000111000000000
+11101000110000010000000000000000
+00011111111000100010001000000000
+00011010011000100111111000000000
+10011010001001100010011000000000
+11101000110000010000000000000000
+00011111111000100001011000000000
+11101000110000010000000000000000
+11101000110000010000000000000000
+00100100001110100101000110010011
+00100000010000000111111000011100
+00011001011000100000010000000000
+01011000000000000000000001010000
+10011000010001100111110000000000
+00100000001000101101000110000001
+01011000000000000000000001010001
+10011000010001100111110000000000
+00100000001000101101000110000101
+01011000000000000000000001010010
+10011000010001100111110000000000
+00100000001000101101000110001001
+01011000000000000000000001010011
+10011000010001100111110000000000
+00100000001000101101000110001101
+01101000000000001100001010111001
+01111001001000000111111000000101
+01100000000000001100001010111001
+00100000011000000000000000000000
+01101000000000001100001010111010
+01111001001000000111111000000101
+01100000000000001100001010111010
+00100000011000000000000000000000
+01101000000000001100001010111011
+01111001001000000111111000000101
+01100000000000001100001010111011
+00100000011000000000000000000000
+01101000000000001100001010111100
+01111001001000000111111000000101
+01100000000000001100001010111100
+01110000000010110111110100000110
+00100000001000000111110000100111
+00100000010000000111111000100001
+00011010001000001010001111111010
+00100000001000101101000110011000
+00011000110000001000110000000001
+00011010001000001010001111111111
+00100000001000000101000110010100
+00100000011000000000000000000000
+11101000110000001000000000000000
+00011111111000100000111000000000
+11101000110000010000000000000000
+00011111111000100010001000000000
+00011010011000100111111000000000
+10011010001001100010011000000000
+11101000110000010000000000000000
+00011000110000001000110000000010
+00011111111000100000010000000000
+01011000000000000000000000000101
+11100000101000001000000000000000
+00011000111000100111111000000000
+11100000101000001000000000000000
+00011010001000001010001000000010
+00011010001000100111111000000000
+11100000101000010000000000000000
+00100000010000000111111000011100
+01011000000000000000000001010000
+10011000010001100111110000000000
+00100000001000101101000110110111
+01011000000000000000000001010001
+10011000010001100111110000000000
+00100000001000101101000111001000
+01011000000000000000000001010010
+10011000010001100111110000000000
+00100000001000101101000111001110
+01011000000000000000000001010011
+10011000010001100111110000000000
+00100000001000101101000111010100
+00100000001000000101000111011001
+01101000000000001100001010111001
+01111001001000000111111000000100
+01111001001000000111111000000011
+01100000000000001100001010111001
+11000010100000010101000111000101
+01101000000010001000001011100110
+01111001001000000000010000000110
+01100000000010001000001011100110
+00011000111000100111111000000000
+00011111111000001111111000000001
+01100000000000001000001011101000
+01101000000000001100001010111001
+01111001001000000111111000000010
+01100000000000001100001010111001
+01101000000000010100001010110001
+01100000000000010000001011101001
+00100000001000000101000111011001
+01101000000000001100001010111010
+01111001001000000111111000000100
+01111001001000000111111000000011
+01100000000000001100001010111010
+01101000000000010100001010110011
+00100000001000000101000111011001
+01101000000000001100001010111011
+01111001001000000111111000000100
+01111001001000000111111000000011
+01100000000000001100001010111011
+01101000000000010100001010110101
+00100000001000000101000111011001
+01101000000000001100001010111100
+01111001001000000111111000000100
+01111001001000000111111000000011
+01100000000000001100001010111100
+01101000000000010100001010110111
+00011111111000100001011000000000
+00100000010000000111111000100001
+00011001011000100111111000000000
+11100000101000010000000000000000
+00011000000000000111111000000000
+11100000101000010000000000000000
+00011000000000000111111000000000
+11100000101000010000000000000000
+00011000000000000111111000001010
+10011010010000001010010000000000
+00011010001000001010001111111010
+00100000001000101101000111101010
+11101000110000001000000000000000
+11100000101000001000000000000000
+00011010010000001010010000000001
+00011010001000001010001111111111
+00100000001000000101000111100100
+00100000011000000000000000000000
+11101000110000001000000000000000
+00011111111000100000111000000000
+11101000110000010000000000000000
+00011111111000100010001000000000
+00011010011000100111111000000000
+10011010001001100010011000000000
+11101000110000010000000000000000
+00011111111000100010001000000000
+11101000110000010000000000000000
+00011111111000100001011000000000
+00100000010000000111111000011100
+01011000000000000000000001010000
+00011010001000100000010000000000
+10011000010001100111110000000000
+00100000001000101101001000000011
+01011000000000000000000001010010
+00011010001000100000010000000000
+10011000010001100111110000000000
+00100000001000101101001000001000
+01011000000000000000000001010011
+00011010001000100000010000000000
+10011000010001100111110000000000
+00100000001000101101001000001010
+00100000001000000101001000001100
+01011000000000000000000000000000
+01100000000000010000001011011100
+01100000000000010100001010110001
+01100000000000001100001010111001
+00100000001000000101001000001110
+00100000010000000101000010000001
+00100000001000000101001000001110
+00100000010000000101000010000111
+00100000001000000101001000001110
+01011000000000000000000000000000
+01100000000000010000001011100010
+00100000010000000111111000100001
+01011000000000000000000000000111
+11100000101000001000000000000000
+00011000111000100111111000000000
+11100000101000001000000000000000
+01011000000000000000000000000100
+11100000101000010000000000000000
+00011010001000100111111000000000
+11100000101000010000000000000000
+00011001011000100111111000000000
+11100000101000010000000000000000
+00011000000000000111111000001000
+10011010010000001010010000000000
+00100000011000000000000000000000
+11101000110000001000000000000000
+00011111111000100000111000000000
+11101000110000010000000000000000
+00011111111000100010001000000000
+11101000110000010000000000000000
+00011111111000100001011000000000
+11101000110000010000000000000000
+00011111111000100000010000000000
+00100000010000000111111000011100
+01101000000000001100001010111110
+10101000111000011111111000000000
+00100100001000001101001000110010
+01011000000000000000000001010000
+10011000010001100111110000000000
+00100000001000101101001000101111
+01011000000000000000000001010001
+10011000010001100111110000000000
+00100000001000101101001000110010
+00100000001000000101001000110010
+01110000010000101011000100000000
+01110000010000101011100100000000
+00100000001000000101001000110010
+00100000010000000111111000100001
+00011010011000100111111000000000
+10011010001001100010011000000000
+00100000011000000000000000000000
+01011000000000000000000000000001
+11100000101000001000000000000000
+11101000110000001000000000000000
+11100000101000001000000000000000
+01011000000000000000000000000010
+11100000101000010000000000000000
+01011000000000000000000000000000
+11100000101000010000000000000000
+01011000000000000000000000000110
+10011010010000001010010000000000
+00011000000000000010011000000100
+00100000011000000000000000000000
+01101000000000001100001010111110
+00011111111000001111111000000001
+11000000100000000101001001000110
+00011111111000001111111000000001
+01100000000000001100001010111110
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100100100100100000000100100
+11011010010000000000000000000000
+00100000010000000101001001111010
+00100100001110100011101111110001
+00100000010000000101001010000111
+11011010010000000001100000000000
+11011000111000000000000000000000
+01101000000010001100001010111111
+10101000010011111111111111111111
+00100000001000001101001001011000
+00100000010000000101001010101011
+00011001011001100111110000000000
+00100000001000010101001001011000
+00100000010000000101001010010010
+00100000001000000101001001011110
+00011010010000001010010010000000
+00011000111000001000111000000001
+01011000000000000000000000001000
+10011000111001100111110000000000
+00100000001000010101001001010000
+11011010010000000000000000000000
+00011010010000100111111000000000
+00100000001110100011101111110001
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100100100101100000000100100
+00100000010000000101001010000000
+00011000110000001000110000000001
+11101000110000010000000000000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100100100110100000000100100
+00100000010000000101001010000000
+00011000110000100000101000000000
+00011000110000100000010000000000
+01011000000000000000000000000000
+11100000101000011000000000000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100100100111100000000100100
+00100000010000000101001001111110
+00100000001110100011101111110001
+01101000000000011100001011000110
+01100000000000011100001011001001
+01101000000000011100001011000011
+01100000000000011100001011000110
+01101000000000011100001011000000
+01100000000000011100001011000011
+00100000011000000000000000000000
+01101000000000011100001011000000
+00100000011000000000000000000000
+01101000000000011100001011000011
+00100000011000000000000000000000
+01101000000000011100001011001001
+00100000011000000000000000000000
+00100000010000000101001001111110
+00100000001110100011101111110001
+11011000110000000100001011000000
+11101000110000011000000000000000
+00100000001110100101001010000011
+00011000110000001000110111111101
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100100101000100000000100101
+11011111001000000000000000000100
+11011000110000000100001011000000
+11011000010000000000000000000000
+11101000110000011000000000000000
+00011111111000010111111011111111
+10011000010000011000010000000000
+11000010000000000101001010001100
+01100000000010001100001010111111
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100100101001100000000100101
+00100000010000000101001001111010
+00100100001110100011101111110001
+00100000010000000101001001111110
+00100000001110100101001010100000
+01101000000000011100001011000011
+01100000000000011100001011000000
+11101000110000011000000000000000
+11100000101000011000000000000000
+11101000110000011000000000000000
+11100000101000011000000000000000
+01011000000000000000000000000000
+11100000101000011000000000000000
+11011000010000000000000000000000
+00011001011000100111111000000000
+10011000111000001111111000000000
+11111001001000000000010000000000
+00011000111000001000111000000001
+10011000111001100111110000000000
+00100100001000101101001010100011
+00011010010011010111111000000000
+10011000010000011111111000000000
+01100000000000011100001011001001
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100100101010100000000100101
+00100000010000000101001010000111
+00011000111000100010011000000000
+11011000010000000000000000000000
+11011001011000000000000000000000
+00011000111000100111111000000000
+11000000000001000101001010111100
+01101000000000001100001010111111
+10101111111011111111111111111111
+00100000001000001101001010111100
+00011000010000001000010010000000
+00011000111000001000111000000001
+00011010001000100111111000000000
+10011000010001100111110000000000
+00100000001000101101001010111100
+00100000001000010101001010110001
+00011000010000100111111000000000
+10011010001001100111110000000000
+00100100001000010101001011000010
+00011000111000100111111000000000
+00011010011000100000010000000000
+10011000010001100001011000000000
+00011010011000100000111000000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100100101011100000000100101
+11011010001000000000000001111111
+00100000010000000101001001001000
+01100000000000010000001011010010
+00011111111000001111111000000100
+01100000000000010000001011010100
+01011000000000000000000000000000
+01100000000000010000001011010110
+00100000011000000000000000000000
+01101000000000010000001011010010
+00100000001000000101001011110010
+01101000000000010000001011010100
+00100000001000000101001011110010
+01111001001000000000000000100101
+01000100100101100100000000100101
+11011010001000000000001011111111
+00100000010000000101001001001000
+01100000000000010000001011011000
+00011111111000001111111000000100
+01100000000000010000001011011010
+01011000000000000000000000000000
+01100000000000010000001011011100
+00100000011000000000000000000000
+01101000000000010000001011011000
+00100000001000000101001011110010
+01101000000000010000001011011010
+00100000001000000101001011110010
+01111001001000000000000000100101
+01000100100101101100000000100101
+00100000010000000111111000000000
+01110000000000101110101100000001
+00100000010000000101001001111010
+00100100011110100000000000000000
+11011010001000000000000001111111
+00100000010000000101001001001000
+01100000000000010000001011011110
+00011111111000001111111000000100
+01100000000000010000001011100000
+01011000000000000000000000000000
+01100000000000010000001011100010
+01110000000000101110101100000000
+00100000001000000111111000001110
+01101000000000010000001011011110
+00100000001000000101001011110010
+01101000000000010000001011100000
+00100000001110100011101111110001
+00011111111000100000101000000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100100101110100000000100101
+11011010010000000000000000000000
+11011010001000000100001011000000
+00011010001000001010001111111110
+00011010001000001010001000000010
+01011000000000000100001011001100
+10011010001001100111110000000000
+00100000001000101101001100000110
+11101010001000001000000000000000
+00011010001000001010001000000001
+00100000001110100101001011111010
+11101010001010010000000000000000
+11101000010000010000000000000000
+10011010010000001010010000000000
+00011010010000001010010000000100
+00100000001000000101001011111010
+00011010010000100111111000000000
+00100000011000000000000000000000
+11011000111000000000000000001100
+00100000001000000011110111000010
+11011000111000000000000000001100
+00100000001000000011110111000110
+01111001001000000000000000100101
+01000100100101111100000000100101
+00100000010000000101001010000111
+01101000000000001100001010111111
+00100000011110100000000000000000
+00100000010000000101001011110101
+11011000010000000000000100000000
+10011000010001100111110000000000
+00100000001000010101001100001000
+00100000010000000101001100001010
+11011000101000000100001011001100
+11011010001000000100001011000000
+01011000000000000100001011001100
+10011010001001100111110000000000
+00100000011000101000000000000000
+11101010001000001000000000000000
+00011010001000001010001000000001
+00100100001110100101001100100001
+11100000101000010000000000000000
+00011010001000001010001000000010
+00100000001000000101001100011000
+11101010001000010000000000000000
+00011010001000001010001000000010
+00011111111000100000110000000000
+11101000110000010000000000000000
+11100000101000010000000000000000
+00011111111000100111001000000000
+00011111001000001111001000000010
+00100000010000000111111001000101
+00100000001000000101001100011000
+01111001001000000000000000100101
+01000100100110000100000000100110
+00100000010000000101001010000111
+01101000000000001100001010111111
+00100000011110100000000000000000
+11011010001000000100001011000001
+00011010001000001010001111111101
+11011000110000000100001011001100
+00011010001000001010001000000011
+01011000000000000100001011001101
+10011010001001100111110000000000
+00100000011000101000000000000000
+11101000110000010000000000000000
+00100000001110100101001100110010
+00011111111000001111111000000100
+00011111111000100111001000000000
+00011000110000100010010000000000
+11101010001000010000000000000000
+00011111111000100000101000000000
+00011010010000100000110000000000
+00011000110000001000110111111110
+00100000010000000111111001000101
+00100000001000000101001100110010
+00100000011101011000000000000000
+01011000000000000000000000010000
+01100000000000010100001111010011
+01011000000000000000000000010000
+01100000000000010100001111010101
+00100000011000000000000000000000
+11011000010000000000000000010100
+00100000010000000101101010001000
+00011000110000001111111000000001
+01100000000000010000010000011001
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100100110010100000000100110
+01111000010101011111110000000000
+01110000010000100111111000000001
+01110000000000111101011000000001
+01110000000000111100000000000011
+01110000000000111101011100000001
+01011111111111111111111111111111
+01100000000000010000001111011010
+00011000000000000111111000000000
+01100000000000001000001111100011
+01100000000000001000001111011000
+01100000000000001000001111100100
+01100000000000011100001000001010
+01100000000000011100001000001101
+01100000000000101100010001100101
+01111001001000000111111000100111
+01100000000000101100010001101010
+00100000001000000101101000001011
+01111001001000000000000000100101
+01000100100110011100000000100110
+01111000001101001111110000000000
+01110000000000111100000100000011
+01110000000000111111101000000001
+01110000010001001011110000000001
+01011000000000001111111111111111
+01100000000000010100010010111110
+00011000000000000111111000000000
+01100000000000101100010001101010
+01111001001000000111111000100111
+01100000000000101100010001100101
+00100000001000000101001101001100
+01111001001000000000000000100101
+01000100100110100100000000100110
+01111000010101001111110000000000
+01110000000000111100000100000001
+01110000010000111101100000000000
+01110000000000001010001000000000
+00100000001000000101001101001100
+00100000010000000101001111010010
+00100000010000000101010111010011
+00100000010000000101101000001110
+00100000001000000101001111010111
+01111001001000000000000000100101
+01000100100110101100000000100110
+00100000010000000101001111010010
+00100000010000000011111001110001
+01101000000000001000001111000001
+11000000000000011101001101111110
+00100000001000000101001110010101
+01111001001000000000000000100101
+01000100100110110100000000100110
+01111000001101001111110000000000
+00100000010000000101101000000010
+00100000001000010101001110010010
+00100000010000000011111000101000
+00100000010000000101010000011100
+00100000010000000101011000100010
+01111000010101101111110000000000
+00100000010000000101010010110010
+00100100011101101000000000000000
+01111001001000000000000000100101
+01000100100110111100000000100110
+01101000000000001000000000000101
+00011111111000001111111000000001
+01100000000000001000000000000101
+00100000010000000101010110100010
+00100000010000000101101010011001
+01111000010101001111110000000000
+00100000011000000000000000000000
+00100000010000000101001110111010
+01111000010101001111110000000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100100111000100000000100111
+01111000010101110111110000000000
+00100000010000000101101000000010
+00100000001000010101001110111010
+00100000010000000011111000101000
+00100000010000000101010000011100
+00100000010000000101010001111000
+00100100001101101101001110101101
+01111001001000000000000000100101
+01000100100111001100000000100111
+00100000010000000101001111001000
+00100000010000000101010110100010
+00100000010000000101011000100010
+01101000000000001000001101000000
+11000010100000100101001110110100
+00100000010000000101011000011010
+00100100001110100101001110110100
+01111001001000000000000000100101
+01000100100111010100000000100111
+00100000010000000101010010111011
+00100000010000000111110001000101
+01101000000000001000001111100100
+11000010100000011101001110111010
+01111001001000000000000000100101
+01000100100111011100000000100111
+00100000010000000111111101000100
+00100000010000000101101100011001
+00100000010000000101010110010100
+00100000010000000101010101110110
+00100000001000000011100110101100
+01111001001000000000000000100101
+01000100100111100100000000100111
+01111000001101110111110000000000
+00100000010000000101010010110010
+00100000001101101101001110011110
+00100000001000000101001110101010
+01111001001000000000000000100101
+01000100100111101100000000100111
+00100000010000000101001111000000
+00100000010000000011111100011101
+01110000000010110111110100010101
+00100000001000000111110000100111
+01101000000010001000001111010110
+01110000000000101100000000001000
+00100000010000000100100011000100
+01110000000000111101011000000000
+01110000000000111100000100000000
+01110000000000111100000000000000
+01110000010000100111111000000000
+00100000011000000000000000000000
+01101000000000001000000000000101
+00011111111000001111111000000001
+01100000000000001000000000000101
+01101000000000001000001111000000
+11000011100000011000000000000000
+01111001001000000111111000000011
+01100000000000001000001111000000
+01011000000000000000000000000000
+01100000000000100100011011111001
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100100111110100000000100111
+01111000001110110111110000000000
+01110000100010010001010000000111
+00100000001000000011111000101000
+01111001001000000000000000100101
+01000100100111111100000000100111
+01111000010110110111110000000000
+01110000100010010001010000000011
+11011011011000000000000000000000
+00100000011000000000000000000000
+01111000010001001111110000000000
+01111000010000111111110000000000
+01101000000000011000001111101001
+10011000000000000001111000000000
+01101000000000001000000000010110
+00011111111011011000010000000000
+01111001001000000000010000000001
+00011000010000110001110000000000
+00100000011000000000000000000000
+00100000010000000101001111101110
+00100000010000000011101010000010
+01011000000000000000010100000000
+00100000010000000011101111110011
+00100000001000000011101010000111
+00100000001101101011101010011000
+00100000010000000101001111101110
+00100000001000000011101010010001
+01111001001000000000000000100101
+01000100101000000100000000101000
+00100000010000000011101001111010
+01101000000000001000010000001101
+00100100001110100101010000000010
+01101000000000001000000000010110
+00011111111001100111110000100100
+00100000001000010101001111111100
+00011000000000000000010000000000
+11000001000100101000000000000000
+00011000000000000000010000011000
+11000001000100110000000000000000
+00011000000000000000010001001110
+00100000011000000000000000000000
+00011111111001100111110000001010
+00100000001000010101001111111111
+00011111111000001111111000000001
+00011111111000111111111000000000
+00011111111000001000010000000010
+00100000011000000000000000000000
+01101000000000001000000000010110
+00011111111000111000010000000000
+00100000011000000000000000000000
+11011000010000000000000111110100
+00100000011110100000000000000000
+11011000010000000000000011111010
+11000001000000001000000000000000
+11011000010000000000000010010110
+11000001000000010000000000000000
+11011000010000000000000001100100
+11000001000000011000000000000000
+11011000010000000000000001001011
+11000001000000100000000000000000
+11011000010000000000000000110010
+11000001000000101000000000000000
+11011000010000000000000000101000
+11000001000000110000000000000000
+11011000010000000000000000010100
+00100000011000000000000000000000
+01011000100011101000100110111110
+00011111111011010111111000000000
+00011111111000011111111011010110
+10011000000000000001001000000000
+01011000010101010101010101010101
+01100000000000011000001111101001
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100101000001100000000101000
+01111000001010000111110000000000
+01101000000000100000001111100101
+10011000000000000001001000000000
+00100000010000000101010001010011
+01011000000000000000001000000000
+00100000001101001101010000100110
+01101000000000010000001111001110
+00011111111000110111111000000000
+11011000010000000000010100000000
+10011000010000001111111000000000
+00100000010000000011101101111101
+00011011010000100111111000000000
+01100000000000110000010000010010
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100101000010100000000101000
+01101000000000001000000000010110
+00011111111000001111111000000001
+01100000000000001000000000010110
+11000001100101000000000000000000
+01110000000000000001011000100101
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100101000011100000000101000
+00011010001000001000110000000001
+11101000110000001000000000000000
+11000100000000000000000000000000
+00011010001000001000101000011010
+11101000101000010000000000000000
+00011111111000001111111000000001
+11100000101000010000000000000000
+00011010001000001000110000011001
+11101000110000001000000000000000
+00011010001000001000101000011000
+11101000101010001000000000000000
+10011000010000001111111000000000
+00011111111001100111110000100100
+00100000001000010101010001000101
+00011111111000001111111111011011
+11100000101000001000000000000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100101000100100000000101000
+01101000000000101000001111110001
+00011000000000000000010000000000
+00011000000000000111001000100101
+11000011000000000101010001001110
+00011000010000001000010000000001
+00011111111000110111111000000000
+11000010000000000101010001001100
+00011000010000001111111111111111
+01100000000000001000001111100010
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100101000101100000000101000
+01101000000000001000001111011000
+10011000000000000000111000000000
+01101000000010101000001111110001
+10101000010011111111111111111111
+00100000001000001101010001101011
+01111001001000000000000000100101
+01000100101000110100000000101000
+01101000000000001000001111100010
+10011000111001100111111000000000
+00100000001000010101010001100001
+00011111111001100000111111111111
+00100000001000000101010001011010
+00011000111000100111001000000000
+00011000000000000000111000000000
+10101000010011111111111111111111
+00100000001000001101010001100110
+00011111001000001111001000000001
+00011111001000100111111000000000
+00100000001110100101010001101011
+00011000111000001000111000000001
+00011111001000001111001111111111
+00100000001000000101010001100011
+00011000111000100111111000000000
+01100000000000001000000000010110
+00100000011000000000000000000000
+00100000001101001101010001110001
+00110111110000011000001000000000
+00100000011000000000000000000000
+11011001011000000000111010100000
+00110100011100110000001000000000
+00100000011000000000000000000000
+01111000010010000111110000000000
+01101000000000010100001111010101
+00011111111000100001011000000000
+00100000001000000101010001111110
+01111001001000000000000000100101
+01000100101000111100000000101000
+01111000001010000111110000000000
+01101000000000010000001111001110
+01101000000010100100011011111001
+10011000010000001001011000000000
+00100000010000000101001111100110
+01111001001000000000000000100101
+01000100101001000100000000101001
+00100000010000000101001111011101
+01111000010101101111110000000000
+01111000001001101111110000000000
+01111000001100001111110000000000
+01111000010100000111110000000000
+00011001011000100011011000000000
+00110111110000011000010000000000
+00100000001101110101010010001011
+00011011010000100000010000000000
+01100000000010110000000010011100
+00100100001011000011011101011100
+00100000001101110101010010010010
+11011101001000000000000111100000
+00011100001000100101000000000000
+01101000000000001000001111000000
+11000011000000011101010010010010
+00100000010101011011110010110110
+01111001001000000000000000100101
+01000100101001001100000000101001
+00100000010000000011101011110011
+01111000001000111111110000000000
+01111000001001001111110000000000
+00001001100000000000000000001000
+00011001100010010111111000000000
+01100000000000001000001101000000
+00001001100000000000000000001000
+00011001100010010111111000000000
+11100000101000001000000000000000
+00011111111000010111001000111111
+00100000001000101101010010100011
+00001001100000000000000000001000
+00011001100010010111111000000000
+11100000101000001000000000000000
+11000010000000000101010010011111
+01111001001000000000000000100101
+01000100101001010100000000101001
+00001001100000000000000000011000
+01111000001010000111110000000000
+11011011011000000000011001100100
+00011111111011110111111000000000
+00011111111100010111111000000000
+11100000101000011000000000000000
+00100000001000110011011101011100
+01111000001101101111110000000000
+01101000000000001000000000010111
+00011111111000001010001000000010
+00100000010000000011101010110110
+01111000010001101111110000000000
+00100000001000000011101001111010
+01111001001000000000000000100101
+01000100101001011100000000101001
+00100000010000000101010010111101
+01101000000010001000000000010111
+00100000010000000011101010000010
+00100000010000000011101010000111
+01111000001010000111110000000000
+11011001011000000001001110001000
+00100000001000000101010001111111
+00100000010000000101010010111101
+00100000001000000011011101011100
+01111001001000000000000000100101
+01000100101001100100000000101001
+00100000010000000101001111011101
+00100000010000000101001111101011
+01111001001000000010101000000000
+01111000001011101111110000000000
+01111000001100000111110000000000
+01111000010100001111110000000000
+00100000010000000101010001101110
+00011001001100010111111000000000
+00011111111011001111111000000000
+00011111111100011111111000000000
+00001000000000001000011000101000
+01111000001000111111110000000000
+01111000001001001111110000000000
+01111001001000000000000000100101
+01000100101001101100000000101001
+01101000000000001100010000111110
+00001000000000001000011000001000
+11101000110000001000000000000000
+00011111111000010111001000111111
+00001000000000001000011000001000
+00100000001000101101010011010111
+11101000110000001000000000000000
+00001000000000001000011000001000
+11000010000000000101010011010100
+01111000001001000111110000000000
+00001000000000001000011000011000
+01111000010001000111110000000000
+00110111110100111000001000000000
+00100000000000000000000001100100
+01111000010011101111110000000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100101001110100000000101001
+01101000000000001100010011011011
+11000000000000001101010011101111
+01101000000000001100010011011100
+00011111111100100111111000000000
+00011111111010111111111000000000
+01100000000000001100010000111110
+01101000000010001100001111011001
+00011000010000001111111000000110
+01100000000000001100010000111111
+01101000000000110100010011111001
+01100000000000110100010001000000
+00011000010000100111001000000000
+11011000110000000100001111011010
+00100000010000000111111001000101
+00100000001000000101010011111111
+01101000000010010100010011000010
+00100000010000000101100001100110
+00011010001000100000101000000000
+01011000000000000000000000000001
+11100000101000001000000000000000
+01101000000000001100010011011101
+00011111111100100111111000000000
+00011111111010111111111000000000
+00011111111000001111111000000001
+01100000000000001100010000111110
+01011000000000000000000000001100
+01100000000000001100010000111111
+01101000000000110100010011111001
+01100000000000110100010001000000
+01101000000000110100001001110100
+11100000101000110000000000000000
+01111001001000000000000000100101
+01000100101001111100000000101001
+01101000000000001000000000000000
+00011111111000001111111000000001
+01100000000000001000000000000000
+11011011011000000000011100001000
+01111000010101101111110000000000
+00100000001000000101010010110010
+01111001001000000000000000100101
+01000100101010000100000000101010
+01101000000000001100010011110110
+11000001100000001000000000000000
+01101000000000001000000000000000
+00011111111000001111111000000001
+01100000000000001000000000000000
+11011000010000000000110000000011
+01101000000000001100010011110111
+01111101001110100000010000000110
+00011010001000100111111000000000
+01111101001110100000010000000111
+01100000000010010100010000111110
+01101000000000110100010011111001
+11100000101000110000000000000000
+01101000000000110000001111010000
+11100000101000110000000000000000
+00100000001000000101010010110010
+01111001001000000000000000100101
+01000100101010001100000000101010
+11011000010000000000000000000100
+01101000000000001100010011011100
+01111101001110100000010000000110
+01100000000010001100010000111110
+01101000000010001100001111111001
+00011000010000001111111000000110
+01100000000000001100010000111111
+01101000000000110100010011111001
+01100000000000110100010001000000
+11011000110000000100001111111010
+00011000010000100111001000000000
+00100000010000000111111001000101
+00100000001000000101010010111011
+01111001001000000000000000100101
+01000100101010010100000000101010
+00011000000000000111111111111111
+00111000000010000000000000000001
+01100000000000101000001111110001
+00100000010000000101010001000111
+00011000000000000111001000000100
+11011000101000000000001111100101
+00100000010000000110001000100111
+01101000000000010100010011110100
+01100000000000010000001111101111
+00011000000010100111111000000000
+00011111111000010111111000001111
+00011111111001100111110000000100
+00100000001000010101010100110011
+01100000000000001000001111011001
+01100000000000001000011010000010
+01111001001000000000000000100101
+01000100101010011100000000101010
+01101000000010010100001111010000
+01100000000010010000001111000010
+00011000010000100010011000000000
+00011100010000001111111000000111
+10011010011001101111110000000000
+00100000010000000111111011111101
+00011000000001110010001000000000
+10011010001001100111111000000000
+10011010011000001111111000000000
+01101000000010010100001111001110
+10011000010000001111111000000000
+01100000000000100000001111000100
+10011100010001100010001000000000
+00011010001000001010001111111010
+11011010010000000010001000000101
+01101000000000001100010011101101
+01111101001110100010010000000110
+01101000000000001100010011100110
+01111101001110100010010000000111
+00011010010000100111111000000000
+01100000000000010100010000111110
+01101000000000110100010011111001
+11100000101000110000000000000000
+01101000000000110000001111010000
+11100000101000110000000000000000
+01101000000000100000001111100101
+11100000101000100000000000000000
+00011000000010100111111000000000
+11100000101000010000000000000000
+00011000000010100111111000000000
+11100000101000001000000000000000
+00011000000000000111111000000010
+11100000101000001000000000000000
+00011010001010110111111000000000
+11100000101000010000000000000000
+00011010011010110111111000000000
+11100000101000010000000000000000
+01111001001000000000000000100101
+01000100101010100100000000101010
+01101000000000010100010011110010
+11100000101000010000000000000000
+01101000000000010100010011110100
+11100000101000010000000000000000
+01101000000000101000001111110001
+11100000101000101000000000000000
+01101000000000001000001111011001
+11011000010000000000000010100000
+10011000010000011111111000000000
+11100000101000001000000000000000
+00100000010000000101010010111011
+01011000000000000100010000111110
+00011111111000001000110000010010
+11101000110000011000000000000000
+01100000000000011000001111101001
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100101010101100000000101010
+01111000010101001111110000000000
+00100000001000000101010000010101
+01111001001000000000000000100101
+01000100101010110100000000101010
+01101000000000001000001111000000
+11000100000000101000000000000000
+01101000000000010000001111011010
+01101000000010010000001111100000
+10011000010001100111111000000000
+00100100011000010000000000000000
+01101000000000001000001111000000
+01111001001111111111111000000101
+01111001001111111111111000000011
+01100000000000001000001111000000
+01101000000000100000001111000100
+01101000000010010000001111000010
+10011000010001100010001000000000
+01111001001000000000000000100101
+01000100101010111100000000101010
+01101000000000001100010000110100
+01100000000000001000001111101100
+11101000110010010000000000000000
+11101000110000010000000000000000
+00011111111010111111111000000000
+01100000000000010000001111000010
+00011000010010111000010000000000
+10011000010000001111111000000000
+11101000110010100000000000000000
+01100000000010100000001111101101
+10011010001000001111111000000000
+01100000000000100000001111000100
+00100000001000000101101000101011
+01111001001000000000000000100101
+01000100101011000100000000101011
+01101000000000001000001111000000
+11000100000000110000000000000000
+01101000000000010000001111011010
+01101000000010010000001111100000
+10011000010001100111111000000000
+00100100011000010000000000000000
+01101000000000001000001111000000
+01111001001111111111111000000110
+01100000000000001000001111000000
+01101000000000101100010000101111
+01100000000000101000001111110001
+00100000001000000101010001000111
+01111001001000000000000000100101
+01000100101011001100000000101011
+00100000010000000101101000001011
+00100000010000000101010110110111
+01101000000000001000001101000000
+00011111111000110111111000000000
+10011000010000101111111000000000
+00101111111011111111111000000010
+01111001001000001000000000001111
+01101000000000001000001101000001
+00100000001110100101010110110010
+01101000000000001000001111000000
+11000011000000100101010110110010
+00100000010000000111010110011001
+00100000010000000111010100001110
+00100100011110100000000000000000
+11000110000001111000000000000000
+01101000000010001000001111010111
+01111001010000000000010000000010
+01100000000010001000001111010111
+00100000001000000101100010101100
+01111001001000000000000000100101
+01000100101011010100000000101011
+01101000000010001000001111010111
+00101000010011000000000000000101
+00100000011000001000000000000000
+01101000000000001000001101000000
+00011111111000111111111000000000
+10011000010000101111111000000000
+11000100000000011000000000000000
+01111001001111111000010000000101
+01111001010000000000010000000011
+01100000000010001000001111010111
+00101000010000000000011000000011
+00100100011000001000000000000000
+01101000000000001100010001000000
+11000001100000101000000000000000
+01101000000000001000001111000000
+01111001001000000111111000000100
+01100000000000001000001111000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100101011011100000000101011
+00100000010000000101010000101100
+00100000010000000101010001110100
+01101000000000001000000000000001
+00011111111000001111111000000001
+01100000000000001000000000000001
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100101011100100000000101011
+01101000000000001100001111010010
+11000001100000001000000000000000
+11011000111000000000000000000011
+00100000010000000111111001010011
+00100100011110100000000000000000
+01101000000000010100001111010011
+01101000000010010100001111010101
+10011000010001100111111000000000
+11011000111000000000000000000011
+00100000010000000111111001001100
+01111000010101001111110000000000
+00100000010000000101010101110010
+00100000010000000101010111001011
+00100100011101101000000000000000
+01111001001000000000000000100101
+01000100101011101100000000101011
+01101000000000110000001101000010
+01100000000000110000001111010000
+00100000010000000100001010100111
+00100000010000000101101100111001
+01101000000000001000000000000010
+00011111111000001111111000000001
+01100000000000001000000000000010
+00100000010000000101010111111001
+00100000011101001000000000000000
+00100000010000000100100011010001
+00100000010000000101010100000111
+00100100011101101000000000000000
+01111001001000000000000000100101
+01000100101011110100000000101011
+01101000000000001000000000000100
+00011111111000001111111000000001
+01100000000000001000000000000100
+01101000000001001000001101001000
+01100000000001001000000100000011
+00100000001000000100100011010001
+01111001001000000000000000100101
+01000100101011111100000000101011
+01101000000000001000010000011100
+11000001100011011000000000000000
+01101000000000110000001111010000
+01101000000010110100010011100111
+10011000010001100111110000000000
+00100100011000101000000000000000
+00100000010000000011001011010110
+00100100011000101000000000000000
+00100000010000000101010100101000
+00100000010000000101001101011111
+01111001001000000000000000100101
+01000100101100000100000000101100
+01110000010000100111001000000000
+01110000000000111111100000000000
+01101000000000001100000100110010
+11000000100000100101011000001100
+01110000000000111110001100100001
+11011000010000000000000000000000
+00100000010000000100100011101010
+01110000010000111101001000000000
+01110000000001000001110000000000
+01110000000010110111110100101100
+00100000010000000101011000100000
+00100000001000000011001010111101
+11011010001000000000000000000001
+01101000000000001000001101000000
+11000011100000110000000000000000
+11011010001000000000000000000000
+00100000011000000000000000000000
+11011000110000000100010011111111
+00100000001000000111111110110010
+11011010001000000100010011111111
+00100000001000000111111110101100
+11011010001000000100010011111111
+00100000001000000111111110101110
+11011010001000000100010011111111
+00100000001000000111111110110000
+11011010001000000100010011111111
+00100000001000000111111110010010
+01111001001000000000000000100101
+01000100101100001100000000101100
+01101000000000001000001111010111
+11000011100000101000000000000000
+11011010001000000100010011111111
+00100000010000000111111110011111
+00100100001110100101011000110000
+01101000000000001100000100110010
+11000000100000001101100010010000
+11011000001000000000000000000000
+00100000010000000100010010100011
+00011000001000100111111000000000
+00100100011110100000000000000000
+00100000001000000101100010010000
+00011111111000100000010000000000
+01111001001000000000000000100101
+01000100101100010100000000101100
+00011000010000100111111000000000
+11000011000000101101011001001011
+00011000000000000000001000000011
+01111001001111111111111000000101
+01100000000000001100010001000000
+01111001001000000000000000100101
+01000100101100011100000000101100
+01101000000000001100010001000000
+11000000000000000101011010001111
+11000000000000001101011010010001
+11000000000000010101011010010011
+11000000000000011101011010010101
+11000000000000100101011010100110
+11000000000000101101011010110111
+11000000000000110101011010111001
+11000000000000111101011010111111
+11000000000001000101011011000001
+11000000000001001101011011000001
+11000000000001010101011011000101
+11000000000001011101011011000111
+11000000000001100101011011001001
+11000000000001101101011011001111
+11000000000001111101011011010001
+00100000001000000011101111110001
+01110000010001000100001100000000
+00011000000000000000001000000010
+11000011000000110101011001100010
+11000000001010010101011001100010
+11000000011010010101011001100010
+01110000010001000100001000000110
+01111001001111111111111000000110
+01100000000000001100010001000100
+01111001001000000000000000100101
+01000100101100100100000000101100
+01101000000000001100010001000100
+11000000000000001101011011100101
+11000000000000010101011011101101
+11000000000000011101011011110101
+11000000000000100101011011111010
+11000000000000101101011011111111
+11000000000000110101011100000001
+11000000000000111101011100001011
+11000000000001000101011100010010
+11000000000001001101011100010111
+11000000000001010101011100011110
+11000000000001011101011100100001
+00100000001000000011101111110001
+01110000010001000100001000000100
+01100000000000001100010001000100
+01111001001000000000000000100101
+01000100101100101100000000101100
+01101000000000001100010001000100
+11000000000000001101011100101001
+11000000000000010101011100101111
+11000000000000011101011100101111
+11000000000000100101011100110010
+11000000000000101101011100110111
+11000000000000110101011101001000
+11000000000000111101011101010010
+11000000000001000101011110010011
+11000000000001001101011110011011
+11000000000001010101011110111110
+11000000000001011101011111000110
+11000000000001100101011111010001
+11000000000001101101011111010110
+11000000000001110101011111100101
+11000000000001111101011111101100
+11000000000010000101100000010010
+11000000000010001101100000011010
+11000000000010010101100000111110
+11000000000010011101100001000101
+11000000000010110101100001011110
+11000000000010111101100001100000
+11000000000011000101100001100010
+11000000000011001101100001100100
+11000000000011011101100001110011
+11000000000011101101100010000010
+11000000000011110101100010000100
+11000000001010010101100010000110
+11000000011010010101100010001000
+11000000010011110101011010000110
+11000000010011111101011010001000
+00100000001000000011101111110001
+01110000000010110111110100010000
+00100000010000000101011000100000
+01011000000000000000000000010001
+01100000000000010100010000111110
+01101000000000001000001111010111
+01111001001000000111111000000101
+01100000000000001000001111010111
+01110000000010110111110100010010
+00100000001000000101011000100000
+00011000000000000000010000001100
+00100000001000000101100010010010
+00011000000000000000010000001000
+00100000001000000101100010010010
+00011000000000000000010000000010
+00100000001000000101100010010010
+00011000000000000111111000000000
+11100000101001000000000000000000
+11100000101000010000000000000000
+00011000101000100000010000000000
+11011000101000000000001110000000
+00011000000000000111001000001000
+00100000010000000110001000100111
+01101000000001000000001110000000
+11100000010001000000000000000000
+00011000101000100000010000000000
+11011000101000000100010001110011
+00011000000000000111001000000100
+00100000010000000110001000100111
+01101000000000100100010001110011
+11100000010000100000000000000000
+00011000000000000000010000010111
+00100000001000000101100010010010
+00011000101000100000010000000000
+11011000101000000000001110001000
+00011000000000000111001000001000
+00100000010000000110001000100111
+01101000000001000000001110001000
+11100000010001000000000000000000
+00011000101000100000010000000000
+11011000101000000100010001110111
+00011000000000000111001000000100
+00100000010000000110001000100111
+01101000000000100100010001110111
+11100000010000100000000000000000
+00100000010000000111010010110110
+01110000000010110111110100100101
+00100000010000000101011000100000
+00011000000000000000010000001101
+00100000001000000101100010010010
+00011000000000000000010000000001
+00100000001000000101100010010010
+00011000000000000000010000000001
+00100000001101001101100010010010
+01110000000010110111110101000110
+00100000010000000101011000100000
+00011000000000000000010000000001
+00100000001000000101100010010010
+00011000000000000000010000000010
+00100000001000000101100010010010
+01011000000000000000000000000001
+11100000101001000000000000000000
+00011000000000000000010000001001
+00100000001000000101100010010010
+00011000000000000000010000000110
+00100000001000000101100010010010
+00011000000000000000010000000110
+00100000001000000101100010010010
+01011000000000000000101000000110
+11100000101000011000000000000000
+01011000000000000001110110000111
+11100000101000010000000000000000
+00011000000000000000010000000110
+00100000001000000101100010010010
+00011000000000000000010000000010
+00100000001000000101100010010010
+00011000101000001000101111111111
+01011000000000000000000000001100
+11100000101000010000000000000000
+01011000000000000000000000000101
+11100000101000010000000000000000
+01011000000000001011010000010010
+11100000101000010000000000000000
+01011000000000000000000000001000
+11100000101000010000000000000000
+01011000000000000000000000001000
+11100000101000010000000000000000
+01011000000000000000000000010000
+11100000101000010000000000000000
+01011000000000000000000000000000
+11100000101000010000000000000000
+01011000000000000000000100101100
+11100000101000010000000000000000
+00100000010000000101100010001010
+00011000000000000000001000000010
+00100000001000000101100010010010
+01011001000000000000010000000001
+01100000000000100100010010101110
+01011000000001110000011100010000
+11100000101000011000000000000000
+01101000000000110100010010101111
+01100000000000110100010001000101
+00011000000000000000010000001011
+00100000001000000101100010010010
+01011001000000000000001100000010
+01100000000000100100010010110101
+01011000000000010000010000010000
+11100000101000011000000000000000
+01101000000000110100010010110110
+01100000000000110100010001000101
+00011000000000000000010000001011
+00100000001000000101100010010010
+00100000010000000111010010110000
+11011000101000000100010001000101
+00100000010000000111010110100011
+00011000000000000000010000010101
+00100000001000000101100010010010
+01101000000001000000001110110000
+00100000001101001101011011111101
+01101000000001000100010010011100
+00100000010000000101011100100011
+00100000001000000101100010010010
+00011000000000000000010000000110
+00100000001000000101100010010010
+01110000000010110111110100101001
+00100000010000000111110000100111
+01110000000010110111110101000111
+00100000010000000101011000100000
+11011000101000000000001110100000
+00100000010000000110001000100110
+01101000000001000000001110100000
+01101000000001000100010001111011
+00100000010000000101011100100011
+00100000001000000101100010010010
+01110000000010110111110101001000
+00100000010000000101011000100000
+11011000101000000100010001000101
+00011000000000000111001000001000
+00100000010000000110001000100111
+00011000000000000000010000001111
+00100000001000000101100010010010
+01110000000010110111110101001001
+00100000010000000101011000100000
+11011000101000000100010001000101
+00100000010000000110001000100110
+00100000001000000101100010001010
+01110000000010110111110101001010
+00100000010000000101011000100000
+00011000000000000111111000000000
+01100000000000001100010001000101
+01101000000000110100010011111001
+11100000101000110000000000000000
+00100000001000000101100010001010
+11011000101000000100010001000101
+00100000010000000110001000100110
+00100000001000000101100010001010
+00011000000000000000010000000110
+00100000001000000101100010010010
+01100000000001000100010001000101
+11101000110001000000000000000000
+11100000101001000000000000000000
+00011000000000000000010000010101
+00100000011000000000000000000000
+01110000000000111111110000001010
+01110000010001000100010000000001
+01101000000000011000001111111001
+01100000000000011100010001000101
+01101000000000001000001111111100
+11100000101000001000000000000000
+00100000001000000101100010001010
+01011000000000000000000000010111
+11100000101000010000000000000000
+00100000001000000101100010001010
+01101000000000010100010010111100
+01100000000000010100010001000101
+01101000000000010100010010111110
+11100000101000010000000000000000
+00100000001000000101100010001010
+00011000000000000111111000000001
+01100000000000001100010001000101
+00100000010000000101101001110100
+00100000010000000101101001111101
+00100000001110100101011101000110
+00100100001000010101011101000100
+01111000010101000111110000000000
+11100000101000010000000000000000
+11101000110000010000000000000000
+11100000101000010000000000000000
+11101000110000001000000000000000
+10011000110000001000110000000000
+00100000001000000101011100111010
+00011000110000001000110000000010
+00100000001000000101011101000001
+00100000001101000101011100101000
+00100000001000000101100010001010
+01101000000000010100010010111100
+00100000001110100101011010001000
+01100000000000010100010001000101
+01101000000000010100010010111110
+11100000101000010000000000000000
+01101000000000010100010011000100
+11100000101000010000000000000000
+01101000000000010100010011000000
+11100000101000010000000000000000
+00100000001000000101100010001010
+00100000010000000101011101111011
+00100000011101000000000000000000
+01101000000010010100010011000100
+01011000000000000010100000000000
+10011000010001100111110000000000
+00100000001000101101011101100010
+01011000000000000010100000000001
+10011000010001100111110000000000
+00100000001000101101011100101000
+01011000000000000010100000000010
+10011000010001100111110000000000
+00100000001000101101011100101000
+01011000000000000010100000000011
+10011000010001100111110000000000
+00100000001000101101011100101000
+00100000001000000101011100101000
+01101000000010010100010011000000
+00011000110000001000110000000010
+11101000110000001000000000000000
+00011111111000100010011000000000
+00011010011000001010011000000001
+00011010011000001010011111111111
+00100000001000101101011100101000
+11101000110000010000000000000000
+10011000010001100111110000000000
+00100000001000101101011101101110
+00011000110000001000110000000100
+00100000001000000101011101100111
+11101000110000010000000000000000
+00011111111000100010001000000000
+11101000110000010000000000000000
+00011111111000100010010000000000
+00100000010000000101011110000101
+00100000011101000000000000000000
+01110000010001000100010000000111
+00011010001000100111111000000000
+01100000000000010100010001000101
+00011010010000100111111000000000
+11100000101000010000000000000000
+00011000000000000000010000001001
+00100000001000000101100010010010
+01111000010101000111110000000000
+01101000000010010100010010111100
+01101000000000010100010010111110
+10011000010001100111110000000000
+00100100001000010101011110000010
+00011000010000100111111000000000
+11000001100000000000000000000000
+01111000001101000111110000000000
+01110000000000111111110000000001
+00100000001000000101011100101001
+01111000010101000111110000000000
+01101000000010010100010010111100
+00011010001000100111111000000000
+10011000010001100111110000000000
+00100100001000010101011110010001
+01101000000000010100010010111110
+10011010010001100111110000000000
+00100100001000010101011110010001
+00011010010000100111111000000000
+10011010001001100111110000000000
+00100100001000010101011110010001
+00100000011000000000000000000000
+01111000001101000111110000000000
+00100000001000000101011100101000
+01101000000000010100010010111100
+11100000101000010000000000000000
+01101000000000010100010010111110
+11100000101000010000000000000000
+01101000000000010100010011000000
+11100000101000010000000000000000
+00011000000000000000010000001011
+00100000001000000101100010010010
+01101000000010010100010011000000
+01011000000000000010100000000011
+10011000010001100111110000000000
+01011000000000000000000000000111
+00100000001000101101011110100101
+01011000000000000010100000000000
+10011000010001100111110000000000
+01011000000000000000000000000110
+00100000001000101101011110100101
+00100000001000000101011100101000
+01100000000000001100010001000101
+00100000010000000101101001110100
+00011000000000000110000000000011
+00100000010000000101101001111101
+00100000001110100101011110111100
+00100100001000010101011110111000
+10011000000000000010001000000000
+11101000110000010000000000000000
+10011000010001100111110000000000
+00100100001000101101011110111001
+01111000010101000111110000000000
+00011010001000100111111000000000
+11100000101000010000000000000000
+11101000110000001000000000000000
+00011111111000001111001000000100
+00100000010000000111111001000101
+00011110000000001110000111111111
+00100000001000101101011110111100
+00100000001000000101011110111001
+00011000110000001000110000000010
+11101000110000001000000000000000
+10011000110000001000110000000000
+00100000001000000101011110101000
+00100000001101000101011100101000
+00100000001000000101100010001010
+01101000000000001100010000111101
+00011111111000001111111111111111
+01100000000000001100010000111101
+00011111111000111111111000000000
+10011000110000001000110000000000
+11101000110010010000000000000000
+01100000000010010100010001000101
+00100000001000000101100010001010
+01101000000010010000001111111010
+00100000010000000101101010001000
+00100000001110100101011100101000
+11101000110000001000000000000000
+00100000001110100101100010001010
+00011111111001100111110000010110
+00100000001000010101011111001110
+00011000000000000111111000010110
+00011111111000100111001000000000
+00100000010000000111111001000101
+00100000001000000101100010001010
+01011000000000000000000000000011
+01100000000000010100010001000101
+01011000000000000000000000001000
+11100000101000010000000000000000
+00100000001000000101100010001010
+01101000000000010100010011000000
+10011000000000000010001000000000
+01101000000010010000001111111010
+00100000010000000101101010001000
+00100000001110100101011100101000
+11101000110000001000000000000000
+10011010001001100111001000000000
+00100100001000010101011100101000
+00011111001001100111110000010110
+00100000001000010101011111100001
+00011000000000000111001000010110
+00011010001000100111111000000000
+10011000110000001000110000000000
+00100000010000000111111001000101
+00100000001000000101100010001010
+01011000000000000000000000000011
+11100000101000010000000000000000
+01011000000000000000000000000111
+11100000101000010000000000000000
+01011000000000000000000000001001
+11100000101000010000000000000000
+00100000001000000101100010001010
+01101000000000001100010000111101
+00011111111000100010011000000000
+11011010001000000000001101000111
+11011010010000000100010001000101
+11011001011000000000000000000000
+01111000010110001111110000000000
+00011010001000100000110000000000
+11101000110010010000000000000000
+00011000110000100010001000000000
+00100000010000000101101010001000
+00100000001110100101100000000101
+11101000110000001000000000000000
+00011111111000100111001000000000
+10011001011000001001011000000000
+00011001011001100111110000011000
+00100100001000010101100000001010
+00011010010000100000101000000000
+11101000110000001000000000000000
+11100000101000001000000000000000
+11000010000000000101011111111101
+00011000101000100010010000000000
+01111000001110001111110000000000
+00011010011000001010011111111111
+00100000001000101101100000000101
+00100000001000000101011111110010
+00100100001110001101100000010000
+01111000010110001111110000000000
+00011001011000100000010000000000
+00011000010000001000010000000101
+00100000001000000101100010010010
+00100100001110001101100000010000
+01111000010110001111110000000000
+00011001011000100111111000000000
+10011111001001100000010000000000
+00011000010000001000010000000101
+00100000001000000101100010010010
+01110000000000111111110000010000
+00100000001000000101011100101001
+01101000000000010000001111111010
+00100000001110100101011010001000
+11100000101000010000000000000000
+01011000000000001111111111111111
+11100000101000010000000000000000
+01011000000000000010100000000000
+11100000101000010000000000000000
+00100000001000000101100010001010
+01011000000000000000000000000110
+01100000000000001100010001000101
+01101000000000010100010011000000
+10011000000000000010001000000000
+00100000010000000101101001110100
+00011000000000000111001000000011
+00100000010000000101101001111101
+00100000001110100101100000110101
+00100100001000010101100000111010
+10011000000000000110000000000000
+11101000110000010000000000000000
+10011010001001100111110000000000
+00100100001000101101100000111011
+00011110000000100111111000000000
+00100000001101000101100000101111
+00011111111000001111111111111111
+11100000101000010000000000000000
+11100000101010010000000000000000
+00011111111000001111111000000001
+00011111001000001111001111111111
+00100000001000101101100010001010
+01111000010101000111110000000000
+11100000101000010000000000000000
+00011000110000001000110000000001
+11101000110010010000000000000000
+00011000110000001000110111111101
+00100000001000000101100000111011
+00100000001101000101011100101000
+00011000000000000111111111111111
+11100000101000010000000000000000
+11100000101010010000000000000000
+00100000001000000101100010001010
+00011000110000001000110000000010
+11101000110000001000000000000000
+10011000110000001000110000000000
+00100000001000000101100000100000
+01101000000000010100010011000010
+01100000000000010100010001000101
+01101000000000001100010011000110
+00011111111000100111001000000000
+11011000110000000100010011000111
+00100000010000000111111001000101
+00100000001000000101100010001010
+01101000000010010000001111111010
+00100000010000000101101010001000
+00100000001110100101100001011100
+00011000110000001000110111111110
+11101000110010010000000000000000
+01011000000000000010100100000010
+10011000010001100111110000000000
+00100100001000101101100001011100
+00011000110000001000110000000001
+11101000110010010000000000000000
+01011000000000000000000000000001
+10011000010001100111110000000000
+00100000001000101101100001010110
+01011000000000000000000000000000
+10011000010001100111110000000000
+00100100001000101101100001011100
+00100000001000000101100001011100
+00011000110000001000110111111001
+11101000110000010000000000000000
+00011111111000001111111111111111
+01100000000000010100010011000010
+01110000000010110111110100011011
+00100000010000000101011000100000
+00011000000000000000010000000101
+00100000001000000101100010010010
+00011000000000000000010000000110
+00100000001000000101100010010010
+00011000000000000000010000000110
+00100000001000000101100010010010
+00011000000000000000010000000110
+00100000001000000101100010010010
+00011000000000000000010000000110
+00100000001000000101100010010010
+01111001001000000000000000100101
+01000100101100110100000000101100
+00011000010000001000010000000001
+00100000010000000101101010001000
+00011000110000001000110111111110
+11101000110000010000000000000000
+11011000010000000010100100000010
+10011000010001100111110000000000
+00100100011000101000000000000000
+00011000110000001000110000000001
+00011000110000100010001000000000
+11101000110000001000000000000000
+00100000011000000000000000000000
+01110000000001000001101100000000
+01101000000000010100001010011000
+00100000010000000111111101100110
+11011000101000000100010001000100
+00011000101000001000101000000001
+01101000000010010100010011000010
+11100000101010010000000000000000
+00100000010000000101101010001000
+11101000110000001000000000000000
+00011111111000100111001000000000
+00100000010000000111111001000101
+01101000000010001000010000011011
+00011000010000001000010000000111
+00100000010000000101100010010010
+00100000001000000101101011001110
+00011000000000000000010000000110
+00100000001000000101100010010010
+00011000000000000000010000000110
+00100000001000000101100010010010
+00011000000000000000010000000110
+00100000001000000101100010010010
+00011000000000000000010000000110
+00100000001000000101100010010010
+01111001001000000000000000100101
+01000100101100111100000000101100
+01011000000000000100010001000000
+10011000101001100111111000000000
+00011111111001100000010000000000
+00100000001000000101100010010010
+00011000000000000000010000000000
+00011000000000000000001000000001
+01111001001000000000000000100101
+01000100101101000100000000101101
+01100000000010001100010000111111
+00101000001000000000011000000010
+00100100001000001101100010011001
+00011000010000001111111111111100
+01100000000000010100010001000000
+01101000000010001000001111010111
+00100000010000000101011000011010
+01111101001110100000010000000100
+01111001001000000000010000000101
+00011000010000010111111011111100
+10011000001000011111111000000000
+01100000000000001000001111010111
+00011111111000010111111000011111
+01100000000000001100010000111110
+01111001001000000000000000100101
+01000100101101001100000000101101
+01101000000000001100010000111110
+00101000001000000000011000000001
+00100000011000001000000000000000
+01101000000000111100010000111111
+01101000000000001000001111000000
+11000100000000100000000000000000
+00100000010000000111010110011001
+00100000001000000111010011110111
+01111001001000000000000000100101
+01000100101101010100000000101101
+00100000010000000101011000011100
+00100100001110100011101111110001
+00100100011110100000000000000000
+01101000000000001000001101000001
+00100000011110100000000000000000
+01101000000000001000001101000000
+00101111111000000000011000000001
+00100000001000001101100011001111
+01101000000000111000001101000001
+01101000000000001000001101000000
+00101111111000000000011000000010
+00100000001000001101100011001111
+01101000000000001000001101000010
+01100000000000001000010000011000
+00011111111000100010011000000000
+01111001001000000000000000100101
+01000100101101011100000000101101
+00011010011000100111111000000000
+11000000000000000101100100100100
+11000000000000001101100100101100
+11000000000000010101100100110100
+11000000000000011101100100111000
+11000000000000100101100100111111
+11000000000000101101100101000100
+11000000000000110101100101001001
+11000000000000111101100101001100
+11000000000001000101100101001101
+11000000000001001101100101001111
+11000000000001010101100101010000
+11000000000001011101100101010001
+11000000000001100101100101010010
+11000000000001101101100101010101
+00100000001000000011101111110001
+01101000000000001000001101000001
+00011111111000010111111000011111
+00100000011110100000000000000000
+01101000000000001100000100110010
+11000000000000001101100011011000
+01101000000000010000001101000100
+11000000000000100101100100000011
+11000000000000110101100011110100
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100101101100100000000101101
+00100000010000000100100101110010
+01101000000000001000001111010110
+01101000000010001000001101000000
+00011000010000010000010000000011
+00011000010011010000010000000000
+00011000010100100000010000000000
+10011000010000011111111000000000
+11100001010000010000000000000000
+01101000000010001000001101000001
+00011000010000010000010000011111
+11100001010010010000000000000000
+00011000010000100111001000000000
+00100000010000000100100101110110
+00011000010000001111001000000100
+00100000010000000100010000100100
+00100000001000000100010000110101
+01111001001000000000000000100101
+01000100101101101100000000101101
+11011000001000000000000000000010
+11101000011000010000000000000000
+11101000011000010000000000000000
+00100000001110100011101111110001
+00011111111000100111001000000000
+11011000101000000100010001000000
+00100000010000000100100101111100
+00100000001000000101100010001010
+01111001001000000000000000100101
+01000100101101110100000000101101
+11101000110000001000000000000000
+11000000000000001101100101010110
+11000000000000010101100101011011
+11000000000000011101100101100000
+11000000000000100101100101100110
+11000000000000101101100101101111
+11000000000000110101100101110000
+11000000000000111101100101110010
+11000000000001000101100101110011
+11000000000001001101100101110100
+11000000000001010101100101110101
+11000000000001011101100101110110
+00100000001000000011101111110001
+01111001001000000000000000100101
+01000100101101111100000000101101
+11101000110000011000000000000000
+01100000000000011000001111111001
+11000000000000001101100101110111
+11000000000000010101100110001110
+11000000000000011101100110010000
+11000000000000100101100110010001
+11000000000000101101100110010111
+11000000000000110101100110011010
+11000000000000111101100110100100
+11000000000001000101100110100101
+11000000000001001101100110101101
+11000000000001010101100110101110
+11000000000001011101100110110010
+11000000000001100101100110110101
+11000000000001101101100110111001
+11000000000001110101100110111010
+11000000000001111101100111000000
+11000000000010000101100111000001
+11000000000010001101100111001001
+11000000000010010101100111001010
+11000000000010011101100111011010
+11000000000010110101100111011100
+11000000000010111101100111011101
+11000000000011000101100111011110
+11000000000011001101100111011111
+11000000000011011101100111100000
+11000000000011101101100111101011
+11000000000011110101100111101100
+11000000001010010101100111101101
+11000000011010010101101000000001
+00100000001000000011101111110001
+11101000110001001000000000000000
+01100000000001001100010000110100
+11101000110000010000000000000000
+01100000000000010000001111100000
+01101000000000001000001111000000
+01111001001000000111111000000101
+01100000000000001000001111000000
+00100000011000000000000000000000
+11101000110000101000000000000000
+01100000000000101100010000101111
+11101000110000010000000000000000
+01100000000000010000001111100000
+01101000000000001000001111000000
+01111001001000000111111000000110
+01100000000000001000001111000000
+00100000011000000000000000000000
+01101000000000001000001111100100
+01111001001000000111111000000011
+01100000000000001000001111100100
+00100000011000000000000000000000
+00011000110000001000110000001010
+11101000110001000000000000000000
+01100000000001000000001110000000
+11101000110000100000000000000000
+01100000000000100100010001110011
+01110000000010110111110100100100
+00100000001000000101011000100000
+11101000110001000000000000000000
+01100000000001000000001110001000
+11101000110000100000000000000000
+01100000000000100100010001110111
+00100000001000000111010010110110
+01101000000000001000001111000000
+01111001001000000111111000000100
+01100000000000001000001111000000
+01110000000010110111110100100110
+00100000001000000101011000100000
+00100000011101001000000000000000
+01110000000010110111110100100110
+00100000001000000101011000100000
+00100000011000000000000000000000
+01110000000010110111110100101001
+00100000001000000101011000100000
+00100000011000000000000000000000
+00100000011000000000000000000000
+00100000011000000000000000000000
+00100000011101001000000000000000
+01110000000010110111110100101100
+00100000001000000101011000100000
+00100000011000000000000000000000
+01100000000000001100010010101110
+11101000110000110000000000000000
+11100000101000110000000000000000
+01110000000010110111110101000010
+00100000001000000101011000100000
+01100000000000001100010010110101
+11101000110000110000000000000000
+11100000101000110000000000000000
+01110000000010110111110101000011
+00100000001000000101011000100000
+11011000101000000100010010001100
+00100000010000000111111000110101
+01110000000010110111110101000100
+00100000001101001101011000100000
+01110000000010110111110101000011
+00100000001000000101011000100000
+00100000010000000111010010101000
+00100000001000101101100101101010
+01110000000010110111110101000101
+00100000001000000101011000100000
+00100000010000000111010010100101
+01110000000010110111110100100011
+00100000001101001101011000100000
+01110000000010110111110101000100
+00100000001000000101011000100000
+00100000011000000000000000000000
+11011000101000000000001110010000
+00100000001000000111111000110101
+00100000011000000000000000000000
+00100000011000000000000000000000
+00100000011000000000000000000000
+00100000011000000000000000000000
+00100000011000000000000000000000
+00011000110000001000110111111110
+11101000110010001000000000000000
+01011000000000000000000000000110
+10011000010001100111110000000000
+00100000001000101101100110001001
+01011000000000000000000000000100
+10011000010001100111110000000000
+00100000001000101101100110001010
+01011000000000000000000000001000
+10011000010001100111110000000000
+00100000001000101101100110001011
+01011000000000000000000000001100
+10011000010001100111110000000000
+00100000001000101101100110001100
+01011000000000000000000000001110
+10011000010001100111110000000000
+00100000001000101101100110001101
+00100000011000000000000000000000
+00100000011000000000000000000000
+00100000011000000000000000000000
+00100000011000000000000000000000
+00100000011000000000000000000000
+00100000011000000000000000000000
+01110000000010110111110100000011
+00100000001000000101011000100000
+00100000011000000000000000000000
+00011111111011001111111000000000
+01100000000000010100010010111100
+11101000110000010000000000000000
+01100000000000010100010010111110
+01110000000010110111110100000101
+00100000001000000101011000100000
+00100000011000000000000000000000
+00100000011000000000000000000000
+00100000011000000000000000000000
+00011111111011001111111000000000
+01100000000000010100010010111100
+11101000110000010000000000000000
+01100000000000010100010010111110
+11101000110000010000000000000000
+01100000000000010100010011000100
+11101000110000010000000000000000
+01100000000000010100010011000000
+01110000000010110111110100000111
+00100000001000000101011000100000
+00100000011000000000000000000000
+00011111111011001111111000000000
+01100000000000010100010010111100
+11101000110000010000000000000000
+01100000000000010100010010111110
+11101000110000010000000000000000
+01100000000000010100010011000000
+01110000000010110111110100001001
+00100000001000000101011000100000
+00100000011000000000000000000000
+01101000000000010000001101000111
+01100000000000010000001111111010
+01110000000010110111110100001011
+00100000001000000101011000100000
+00100000011000000000000000000000
+00100000011000000000000000000000
+00100000011000000000000000000000
+11101000110000010000000000000000
+01100000000000010100010011000000
+01110000000010110111110100001101
+00100000001000000101011000100000
+00100000011000000000000000000000
+01101000000000001000001101000001
+00011111111000001111111111111011
+00011111111000110111111000000000
+01100000000000001100010000111101
+01110000000010110111110100001111
+00100000001000000101011000100000
+00100000011000000000000000000000
+00011111111011001111111000000000
+01100000000000010100010010111100
+11101000110000010000000000000000
+01100000000000010100010010111110
+11101000110000010000000000000000
+01100000000000010100010011000000
+01110000000010110111110100010001
+00100000001000000101011000100000
+00100000011000000000000000000000
+01101000000000001000001101000001
+00011111111000001111111111111001
+00011111111000100111001000000000
+01101000000010010000001111111010
+00100000010000000101101010001000
+00100000001110100101100111011000
+11101000110000001000000000000000
+10011111001001100111110000000000
+00100100001000010101100111011000
+00011000110000100000101000000000
+11011000110000000000001101001001
+00100000010000000111111001000101
+01110000000010110111110100101000
+00100000010000000111110000100111
+01110000000010110111110100010011
+00100000001000000101011000100000
+01101000000000001000001111100011
+00100000011000000000000000000000
+00100000011000000000000000000000
+00100000011000000000000000000000
+00100000011000000000000000000000
+00100000011000000000000000000000
+11101000110000101000000000000000
+01100000000000101000111111110001
+01110000000011111111000000000001
+00100000010000000111110011011011
+00100000011000000000000000000000
+00011010001000100000110000000000
+11101000110001000000000000000000
+01100000000001000000111111110001
+01110000000011111111000000000010
+00100000010000000111110011011011
+00100000011000000000000000000000
+00100000011000000000000000000000
+00100000011000000000000000000000
+01101000000000001000001101000001
+00011111111000001111111111111001
+00011111111000100111001000000000
+01101000000010010000001111111010
+00100000010000000101101010001000
+00100000001110100101100111111101
+11101000110000001000000000000000
+10011111001001100111110000000000
+00100100001000010101100111111101
+00011000110000100000101000000000
+00011000110000100010001000000000
+00011111001000100010010000000000
+11011000110000000000001101001001
+00100000010000000111111001000101
+01110000000001001000000100000001
+00100000010000000101100111111110
+00100000011000000000000000000000
+01101000000000010100001010010110
+00100000011110100000000000000000
+10011000000000000111101000000000
+00100000011000000000000000000000
+01101000000010100000001111011100
+00100000010000000011101111011110
+10011000010001100001011000000000
+00011001011000100111111000000000
+01101000000010010000001111101111
+00011000010100100000010000000000
+00011000010000111000010000000000
+10011000010001100111111000000000
+00100000011000000000000000000000
+00100000010000000011101111011110
+01100000000000100000001111011100
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100101110000100000000101110
+01101000000000001100001111011000
+00100000011110100000000000000000
+11011000111000000000000000000001
+00100000010000000111111001010011
+00100100011110100000000000000000
+01111000010101001111110000000000
+01111000001010000111110000000000
+00100000010000000101010101110010
+00100000010000000101010000101100
+00100000010000000101010011011110
+00100100001101101101101000100100
+01111001001000000000000000100101
+01000100101110001100000000101110
+01101000000000001000000000000011
+00011111111000001111111000000001
+01100000000000001000000000000011
+01101000000000001000001101000000
+00011111111000010111111000001111
+11000000000000011101010100011001
+11000000000000101101101001000001
+00100000000000000010011100010000
+01101000000000001000000000010110
+11000000100100111101101000001110
+00100000010000000101101011011000
+11011000111000000000000000000001
+01101000000000010100010011011001
+00100000001000000111111001001100
+01111001001000000000000000100101
+01000100101110010100000000101110
+01101000000000001000001111111000
+00100000010000000101010000000101
+01101000000000010000001111000010
+10011000010011111111111000000000
+11011000010000000000000101110111
+10011000010011111111111000000000
+11011000010000011000011010100000
+10011000010001101111110000000000
+01101000000000001000001111101100
+11011000010000000100111000100000
+10011000010011111111111000000000
+01100000000000100100011011111001
+01111001001000000000000000100101
+01000100101110011100000000101110
+01101000000000010100000101100001
+00100000010000000111111011111101
+00011000000001111000010000000000
+10011000010000001111111000000000
+01100000000000010000001111001110
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100101110100100000000101110
+01101000000000110000001101001000
+01101000000010110100010011111001
+10011000010001100111110000000000
+00100100011000101000000000000000
+00100000010000000101011000010011
+00011010001000100111111000000000
+01100000000000001100010011100110
+01101000000000111000001101010101
+01100000000000111000000100000011
+11101000110001000000000000000000
+11100000101001000000000000000000
+01101000000000110000001101000010
+01100000000000110000001111010000
+01111001001000000000000000100101
+01000100101110101100000000101110
+00011000110000001000110000000110
+11101000110001000000000000000000
+01100000000001000000001111100101
+11101000110010010000000000000000
+00011000010010111000010000000000
+11101000110000010000000000000000
+00011111111010111111111000000000
+01100000000000010000001111000010
+01100000000000100000001111000100
+10011000010001100111111000000000
+00011111111000001101000111111110
+11101000110001001000000000000000
+01100000000001001000001111101101
+01111001001000000000000000100101
+01000100101110110100000000101110
+11101000110000001000000000000000
+00011111111100011000010000000000
+00011000010000110000010000000000
+01100000000010001000001111111000
+00011111111000010111111000011111
+01100000000000001000001111011001
+00100000010000000101101000101011
+00100000010000000101010001000111
+00100000010000000101001101101100
+00100000010000000011001011010110
+00100100011000101000000000000000
+01111001001000000000000000100101
+01000100101110111100000000101110
+11011000010000000000000000000000
+00100000010000000100100011101010
+00100000010000000011100110101100
+01110000000010110111110100010100
+00100000010000000111110000100111
+00100000001000000011001010111101
+01111001001000000000000000100101
+01000100101111000100000000101111
+01101000000000010100010010111100
+10011000000000000010010000000000
+01101000000000010100010010111110
+10011000000000000010011000000000
+11011000110000000100010100000100
+01111000001101000111110000000000
+00100000011000000000000000000000
+11101000110000010000000000000000
+00100000011110100000000000000000
+10011010010001100111110000000000
+00100100011000010000000000000000
+10011010011001100111110000000000
+00100000011000101000000000000000
+00100000001000010101101010000110
+00011000000000000111110000000001
+00100000011000000000000000000000
+00011000000000000111111000000000
+00100000011000000000000000000000
+11011000110000000100010100000100
+11101000110000010000000000000000
+00100000011110100000000000000000
+00011000110000001000110000000010
+10011000010001100111110000000000
+00100000011000101000000000000000
+11101000110000001000000000000000
+10011000110000001000110000000000
+00100000001000000101101010001001
+01110000010001001100011000000010
+01011000000000000000000000000001
+01100000000000010100010011000111
+01110000000000111110001100100101
+01110000000010110111110100010010
+00100000001000000101011000100000
+00100000011000000000000000000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100101111001100000000101111
+01101000000000001100000100110010
+11000001100000100000000000000000
+01101000000000001000001111100011
+11000000000100001101101010010001
+11000000000100101101101010010111
+11000000000100110101101010011000
+00100000011000000000000000000000
+01011000000000000101101010101110
+01100000000000010100001010001100
+01110000100000000110001010000001
+01011000000000000000000110100000
+01100000000100010000000001010010
+01110000100000000100001100000001
+01110000100000001000000100000100
+01011000000000000101101011000110
+01100000000000010100001010010110
+00100000010000000101001101000111
+00100000011101011000000000000000
+00100000001000000110100100011101
+01101000000000001000001111000001
+00101111111000011111111000000001
+01011000000000000000000000000101
+00100000010000001110101000000100
+00100100010000001110100111111111
+00100000010000000110100011111101
+00100000001110100101101010111110
+01101000000000010000010000011001
+10011000000000000000101000000000
+00011111001001100111110000010100
+00100000001000010101101010111010
+00011000000000000111001000010100
+11101000011000001000000000000000
+11100000101000001000000000000000
+11000010000000000101101010111010
+00100000010000000110100100000110
+01110000010001001100001000010100
+01101000000010010000010000011001
+11101000010000001000000000000000
+00100000011110100000000000000000
+00100000010000000101011000011100
+00100100011110100000000000000000
+01110000000010110111110100011011
+00100000001000000101011000100000
+00011010010000100000010000000000
+00100000010000000110100011110111
+00011010001000100000110000000000
+00011010010000100111001000000000
+11101000110000001000000000000000
+11100001010000001000000000000000
+11000010000000000101101011001010
+00100000001000000110100011111010
+01101000000000001100000100110010
+11000001100000110000000000000000
+01101000000000010100010011000010
+11000001100010100000000000000000
+01101000000010010000010000011001
+01011000000000000000000000000000
+11100000010001001000000000000000
+11100000101001001000000000000000
+11100000101000010000000000000000
+00100000011000000000000000000000
+01101000000010001100001111010111
+01111001010000000000010000000111
+00100000001000000110100111110011
+01111001001000000000000000100101
+01000100101111010100000000101111
+00100000010000000101101011011111
+00100000001000000101101011101101
+01101000000000001100010000011001
+00011111111000100111001000000000
+11011000010000000010101000000000
+00100000010000000101101100001100
+00011000110000001000110000000001
+00011000110000100000101000000000
+11011000110000000100010000011010
+00100000010000000111111001000101
+01101000000000001100010000011001
+00011111111001100111001000010100
+00011111001000100000010000000000
+00011111001000100111111000000000
+00100100010110100101101100010101
+00100000011000000000000000000000
+01101000000000001100001111011001
+01101000000010001100001111011010
+10011000010001100111111000000000
+00011111111000100111001000000000
+00011111111000100010001000000000
+01101000000000001100001111011010
+00011111111000001111111000000001
+11011000110000000100001111011010
+10011000110000001000110000000000
+11011000101000000000010000011101
+00100000010000000111111001000101
+01111001001000000000000000100101
+01000100101111011100000000101111
+01101000000000001100010000011001
+00011111111000100111001000000000
+00011111111000001111111000000001
+01100000000000001100001111011010
+11011000101000000100001111011100
+11011000110000000100010000011010
+00100000010000000111111001000101
+00011010001000100111001000000000
+11011000110000000000010000011101
+00100000010000000111111001000101
+01101000000000001100001111011010
+10011010001000001111111000000000
+01100000000000001100001111011001
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100101111100100000000101111
+11011000010000000010101000000000
+00100000001000000101101100001100
+11011000110000000100010100000100
+11101000110000010000000000000000
+00100000001110100011101111110001
+11101000110000010000000000000000
+10011000010001100111110000000000
+00100000011000101000000000000000
+11101000110000001000000000000000
+10011000110000001000110000000000
+00100000001000000101101100001101
+01011000000000000000000000100000
+11100000101000001000000000000000
+11000010000000000101101100010101
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100101111101100000000101111
+01111000010101011111110000000000
+00100000001101110101101100011110
+00100100001101101101101100101010
+00100000010000000011110101110110
+01101000000000010100000101100001
+01100000000000010000001111001110
+01101000000000001000001101000000
+00101111111000000000011000000001
+00100100001000001011110110001010
+01101000000000001100010000111110
+00101111111000000000011000000001
+00100100001000001011110110001010
+01101000000000001000001111000000
+11000010100000101011110110001010
+00100000001000000011110101101111
+01101000000010010100000101100001
+00011000010000110000010000000000
+01101000000000010000001111001110
+10011000010000001111111000000000
+01100000000000010000001111001110
+00100000001000000011110110000010
+01111001001000000000000000100101
+01000100101111110100000000101111
+01110000010001101111100000000000
+01101000000010010100010011000010
+00100000010000000101100001100110
+00011010001000100000101000000000
+01011000000000000000000000000000
+11100000101000001000000000000000
+00100000011000000000000000000000
+01101000000000001100000100110010
+11000001100001010000000000000000
+00100000010000000111111101101110
+11011010001000000000001111010000
+00100000010000000111111010011101
+01011000000000000000000000101100
+11100001010000001000000000000000
+00100000010000000100000111010100
+00100000001000000110100011111010
+11011000010000000000000000010100
+00100000010000000101100001100110
+11000100000000000000000000000000
+00100000010000000101011000011100
+00100100011110100000000000000000
+11011000010000000000000000010100
+01100000000010010100010011000010
+00100000010000000101101010001000
+00100000001110100011101111110001
+00011000110000001000101000000001
+11011111001000000000000000010100
+11011000110000000000010001101101
+00100000010000000111111001000101
+01110000000010110111110100011011
+00100000001000000101011000100000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100101111111100000000101111
+01101000000000001000001101000001
+11011000110000000000001101001000
+10011000110000001111001000000000
+11101000110010001000000000000000
+11101000110000001000000000000000
+10011010001001100111110000000000
+00100000011000101000000000000000
+00011000010000001111111111111111
+10011000110000001000110000000000
+00011111001000100111111000000000
+10011000110001100111110000000000
+00100000001000010101101101010111
+00011000000000000111110000000001
+00100000011000000000000000000000
+00100000011101011000000000000000
+01011000000000000000000000000000
+01100000000000001000000001001000
+01100000000000001000000001010101
+01100000000000001000000001111000
+01100000000000001000000001111100
+01100000000000001100000111111001
+01100000000000001000010001010011
+01100000000000001000000101110111
+01100000000000001000011111100001
+01110000010001110100100000000000
+01110000000000100101100000000000
+01110000000001000101010000000000
+01111001001000000000000000100101
+01000100111100000100000000111100
+01110000000001111110000100000000
+01110000000001111110000000000000
+01110000000001000100110100000000
+01101000000000001100000100110010
+11000001100000001000000000000000
+01110000010000100101111000000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100111100001100000000111100
+00100000010101001110001000011001
+00100100010101001110001000011101
+01101000000000001000000001111100
+00100100010110100110000111011001
+01101000000000001000000001111100
+00100100011110100000000000000000
+01101000000000001000000001001100
+11000100000000110000000000000000
+01111001001111111111111000000110
+01111001001111111000000000000001
+01100000000000001000000001001100
+01101000000000001000010011011110
+01101000000010001000000001001100
+00101111111011111111111000000000
+01111001001000001000010000000001
+01100000000010001000000001001100
+00011000010000010000010000000010
+01100000000010001000000001111111
+01101000000010001000000001001100
+00011111111000110111111000000000
+01100000000000001000000001111101
+01111001001000000000000000100101
+01000100111100010100000000111100
+01101000000000001000000001111101
+11000000001111111101101111011100
+11000000000000011101110001010110
+11000000000000100101110001100111
+11000000000111100101101111001111
+11000000000000101101101111001011
+11000000000001111101111001001000
+11000000000010000101110011100001
+11000000000100011101110011111111
+11000000000111001101111001100111
+11000000000111000101111001100010
+11000000000110001101110011100100
+11000000000110111101110101110010
+11000000000100111101110101101110
+11000000000110011101110101101000
+11000000000100101101110101110000
+11000000000100110101110011111011
+11000000000000111101110011110011
+11000000000101101101110011101010
+11000000000101110101110011101011
+11000000000000001101110101100100
+11000000000000010101110101001111
+11000000000101000101111001010011
+11000000000001001101110101000101
+11000000000001011101110100011010
+11000000000001000101110100000000
+11000000000001100101110100101100
+11000000000011111101110011110111
+11000000000100000101110011111001
+11000000000100001101110110001101
+11000000000100010101110110001110
+11000000000110101101110110001111
+11000000000110110101110110010000
+11000000000100100101110110010001
+11000000000101100101110110010010
+11000000000101011101110110010101
+11000000000110100101110110011111
+11000000000010111101110110100010
+11000000000010001101110110110111
+11000000000010010101110110111011
+11000000000010011101110110111101
+11000000000001101101110111001111
+11000000000001110101110111010000
+11000000000101111101110101101100
+11000000000110000101110111010001
+11000000000001010101110111010010
+11000000000011000101110111010011
+11000000000110010101110111011010
+11000000000111101101110111011011
+11000000000111110101110111111111
+11000000000111111101110111111001
+11000000001000000101111000100010
+11000000001000001101111000110100
+11000000000000110101111001000111
+11000000000111010101101111001101
+01110000000000000111111000011001
+01110000000000000111110000000100
+00100000011000000000000000000000
+01110000000000000111110000000110
+00100000011000000000000000000000
+01110000000000000111110000111011
+00100000011000000000000000000000
+01101000000000100000010011011111
+00011111111000111111111000000000
+01100000000000100100000101110011
+01101000000000001000010011100011
+01100000000000001100000101111010
+01101000000000101000010011100100
+01100000000000101100000110001000
+01101000000000101000010011101001
+11100000101000101000000000000000
+01101000000000001000000000110001
+01111001001000000111111000000011
+01100000000000001000000000110001
+00100000011000000000000000000000
+01101000000000001000010011011111
+01111001001000000111111000000111
+01100000000000001000000001111101
+11000000010000001101110000100110
+11000000010000010101110000101110
+11000000010010101101110101110011
+11000000010010110101110110001100
+11000000010001011101110110000001
+11000000010000011101110001001001
+11000000010000100101110001001011
+11000000010010000101101111110001
+11000000010010111101110001000010
+11000000010011000101110001000111
+11000000010011001101110000010100
+11000000010011010101110000011001
+11000000010001101101110000010001
+11000000010001100101101111110100
+11000001010000100000000000000000
+01110000000000000111110010000010
+01110000000000000111111000011001
+00100000011000000000000000000000
+01110000000000000111110010000010
+01110000000000000111111000101110
+00100000011000000000000000000000
+01101000000000001000010011100000
+01100000000000001000000010101101
+01101000000000001000010011100001
+01100000000000001100000111111001
+01101000000000001000010011100011
+01100000000000001000000010101111
+01101000000000001000010011100111
+01100000000000001000000010110000
+01101000000000001000010011101100
+01100000000000001000000010101011
+11000101000000111101110000000111
+01111001001000000000000000000111
+00100000010000000101110100010110
+01100000000000001000010001010010
+00011000000000000000010000000000
+00100000001000000100100000111001
+01110000000000000111110010001100
+01110000000000001011000100000001
+00100000001000000100100110111100
+01101000000000001000000010110000
+11000000100000111101110000001011
+01110000000000000111110010000001
+00100000001000000101110000001111
+01111001001111111000000000000111
+01110000000000000111110010000010
+00011000000000000000010000000001
+00100000010000000100100100010100
+01110000000000000111110110001100
+00100000011000000000000000000000
+01110000000000000111110010000001
+01110000000000000111110110001101
+00100000001000000011100001101001
+00100000010000000101110000011101
+01101000000000001100000100110010
+11000000000000001101110000100001
+01110000000000000111110010011010
+00100000011000000000000000000000
+00100000010000000101110000011101
+01101000000000001100000100110010
+11000000000000001101110000100001
+00100000001000000101110000100010
+11011000101000000000011111101001
+01101000000000011000010011100000
+11100000101000011000000000000000
+00100000011000000000000000000000
+00100000010000000100100000001111
+00100000010000000110001000010110
+00100100010000001100100000011011
+00100000001000001111100000001111
+00100000011000000000000000000000
+01101000000000001000010011100001
+01111001001000000111111000000111
+01100000000000001000010001000101
+11000000010001011101110000110110
+11000000010001100011100001001010
+11000000010001101101110000101101
+00100000011000000000000000000000
+00100000001000000011100001101001
+01101000000000001000010011100001
+01111001001000000111111000000111
+01100000000000001000010001000101
+11000000010001011101110000111010
+11000000010001100101110000110100
+00100000011000000000000000000000
+01111001001111111000000000000111
+00100000011000000000000000000000
+01101000000000001100000111111011
+01101000000010001000000001001100
+01111101001110100000010000000101
+01100000000010001000000001001100
+01101000000000001000000000110000
+11000100000000101000000000000000
+01111001001111111111111000000101
+01100000000000001000000000110000
+01101000000000001000010001010011
+00100100001110100100100001110010
+01110000000000000111110000110001
+00100000011000000000000000000000
+00100100001101001101110001000101
+01110000000000000111110000010010
+00100000001000000110001000000101
+01110000000000000111110010010111
+00100000011000000000000000000000
+00100000010000000110001000000101
+00100000001000000101111011001101
+01110000000000000111110010000100
+00100000011000000000000000000000
+01101000000010001000010011100010
+00011000010000010000010000000001
+01100000000010001000010001001100
+01101000000000001100001001110010
+11000000101010001101110001010010
+01110000010000100111001000000000
+00100000010000000100011111111001
+01101000000000001000000001010101
+11000001100010101000000000000000
+01110000000000000101010100000100
+00100000001000000110001000110101
+01101000000000001000010011011111
+01100000000000001000010001000101
+11000000000110011101110001111101
+11000000000001000101110010010000
+11000000000001111101110010010111
+11000000000010000101110010011101
+11000000000010001101110010011110
+11000000000010010101110010100110
+11000000000011000101110011001100
+11000000000010111101110011010001
+11000000000101011011100001001010
+11000000000010011101110001110100
+11000000000111101101110111101001
+11000000000111110101111000011000
+11000000001000000101110111101011
+11000000001000001101110111101111
+00100000011000000000000000000000
+01101000000000001000010011011111
+01100000000000001000010001000101
+11000000000000001101110011000011
+11000000000110011101110010000111
+11000000000001011101110010100111
+11000000000101011101110010001110
+11000000000001000101110010111010
+11000000000010011101110001110111
+11000000001000000101110011000100
+11000000001000001101110011000111
+11000000000011000101110011001010
+11000000000010111101110011011111
+00100000011000000000000000000000
+01110000000010110111110100100000
+00100000010000000111110000100111
+00100000001000000011001001000101
+01110000000010110111110100011001
+00100000010000000111110000100111
+01110000010001110100100000000010
+01011000000000000000000001010000
+11011000111000000000000000001010
+00100000001000000111111001001100
+01101000000000001000010001001101
+01111001001000000111111000000000
+01100000000000001000010001001101
+01110000000010110111110100000001
+00100000010000000111110000100111
+01110000000000000111110010001011
+01101000000000001000000001010101
+11000000100000101101101101110111
+01110000000000000101010100000110
+00100000011000000000000000000000
+01110000000001000100011000001011
+01110000000000000111110000000111
+00011000000000000000010000010000
+00100000010000000100100000100110
+01110000000000000101010100000000
+00100000001000001101101101110111
+00100000011000000000000000000000
+01110000000000000111110000101011
+00100000011000000000000000000000
+01101000000000001100001001011110
+00100100011110100000000000000000
+00100000010000000011010100000111
+00100000010000000101111011001011
+00100000011101001000000000000000
+01111001001000000000000000100001
+00100000011000000000000000000000
+00100100011101001000000000000000
+01110000000000000111110000010000
+01101000000000001000000001001100
+11000100000000010000000000000000
+01110000000000000111110000010010
+00100000011000000000000000000000
+00100000001000000101111011001101
+00100000010000000101111100101101
+01101000000000001000000000110000
+11000011100000100000000000000000
+01110000000000000111110000110001
+01101000000000001000000001010101
+11000001100001010000000000000000
+01110000000000000101010100001011
+00100000011000000000000000000000
+00100000011000000000000000000000
+01101000000000001100000100110010
+11000000100000001101110010110111
+01101000000000001100001001011110
+00100000011110100000000000000000
+01101000000010001000000001010101
+01110000000000000101010100000000
+01110000010000100101111000000000
+01101000000000001000010011100000
+11000001100000110000000000000000
+01100000000010001000000001010101
+01110000000001111110000000000001
+01101000000000010000010001001010
+01101000000010001000010001001100
+10011000010000010111111000000000
+00100000001110100100100111011010
+00100000001000000100100111010111
+01110000000000000111110000000111
+01110000000001000100011000010011
+00100000011000000000000000000000
+01101000000000001000010011100000
+11000000000000110101110011000000
+11000001100011000000000000000000
+01110000000001000100011000011000
+01110000000000000111110000000111
+00100000011000000000000000000000
+01110000000001000100011000000110
+01110000000000000111110000000111
+00100000011000000000000000000000
+00100000011000000000000000000000
+01110000000001111101101000000000
+01110000000000000111110000000111
+00100000001000000101101101110111
+01110000000001111101101000000000
+01110000000000000111110000000111
+00100000001000000101101101110111
+01110000000010110111110100100100
+00100000001000000111110000100111
+01110000000010110111110100100011
+00100000010000000111110000100111
+00100000010000000011100000000110
+00011000000000000000010000000000
+00100000001000000100100100000111
+01110000000010110111110100100010
+00100000010000000111110000100111
+00011000000000000000010000000010
+00100000010000000100100100000111
+01011000000000000000000000000000
+01100000000000010000000001110101
+01101000000000010100001010000000
+00011111111000111111111000000000
+01100000000000010000000000110010
+01101000000000001100001010000010
+01100000000000001000000001110011
+01101000000000001100001010000100
+01100000000000001000000001110100
+00100000001000000011011111100001
+01110000000010110111110100100001
+00100000001000000111110000100111
+01101000000010001000010011011111
+01100000000010001000000001010100
+00100000001000000101110011110101
+01101000000000001000010001001101
+01111001001000000111111000000010
+01100000000000001000010001001101
+11000011100000011000000000000000
+01110000000000000111110000110001
+00100000001000000101101101110111
+00100000011000000000000000000000
+01101000000000001100000101110001
+01101000000010001000010011011111
+10011000010001100111110000000000
+00100000001000010101110011110101
+01110000000000000111110000000100
+01110000000000000111111000011111
+01110000000000000111110100101110
+00100000011000000000000000000000
+00100000010000000110000001011010
+00100000001000000101110011110101
+01110000000000000111110000000011
+00100000011000000000000000000000
+01110000000000000111110000100001
+00100000011000000000000000000000
+01110000000000000111110000100010
+00100000011000000000000000000000
+01101000000000001000000001010101
+11000001000010011000000000000000
+01110000000000000101010100000010
+00100000011000000000000000000000
+00100000011000000000000000000000
+00100000010000000101111011001000
+01110000000001000101000000000001
+01101000000000001100000100110010
+11000000000000001101110100000110
+01110000000010110111110100001010
+00100000010000000111110000100111
+00100000010000000100100001111011
+00100000010000000110001000001101
+00100100001000001101111011010000
+00100100001101001101110100001110
+01110000000000000111110000000100
+01110000000000000111110100001000
+01110000000000000111111000100011
+00100000011000000000000000000000
+01101000000000001000000001001011
+01111001001000000111111000000010
+01100000000000001000000001001011
+00100000011000000000000000000000
+01101000000010001000000001001100
+01111101001110100000010000000001
+01100000000010001000000001001100
+00100000011000000000000000000000
+01101000000000001000000001111111
+00011111111000110111111000000000
+00011111111000010111111000000001
+00100000011000000000000000000000
+00100000010000000101110100010110
+01100000000000001000010001010001
+00100000010000000101111011001000
+01110000000000000111110000001100
+01101000000000001100001001011110
+00100100011110100000000000000000
+01101000000000001000000000110000
+11000011100000110000000000000000
+01110000000000000111111000000110
+01101000000000001100000100110010
+11000000100000001101101111001001
+01101000000000001000010001010011
+00100100001110100101101111001001
+01110000000000000111110000000000
+01101000000000001000000001001011
+01111001001000000111111000000000
+01100000000000001000000001001011
+00100000001000000100100001110010
+11011010001000000000000001000000
+00100000010000000111001110011101
+01101000000000100000010011011111
+01101000000010100000010100011111
+10011000010001100111110000000000
+00100000001000101101110100110101
+01110000000000000111110000000111
+01110000000001000100011000000101
+00100000011000000000000000000000
+00100000010000000111010010011011
+00100000010000000011001000010001
+01101000000000001000000001001011
+00101111111011111111111000000001
+01111001001111111111111000000001
+01100000000000001000000001001011
+00100000010000001100100010111100
+01101000000000001000000001010101
+11000000000011001101110101000000
+11000000000011000101110101000000
+00100000011000000000000000000000
+01101000000000001000011111100001
+11000001100000000000000000000000
+01101000000000001000000001001100
+11000011100000010000000000000000
+00100000001000000110001011001111
+11011010001000000000010011011111
+11011010010000000000010100001111
+11011000101000000000010011101111
+00100000010000000111010001100111
+11011010001000000000000001000000
+00100000010000000110001000101011
+01110000000000000111110000001011
+01101000000000001000000000110000
+11000011000000110101111011001011
+00100000011000000000000000000000
+01101000000000010000000101101001
+00011111111000001111001111111101
+01101000000010001000010011011111
+01011000000000000000000100000011
+10011000010000001000101000000000
+11011000110000000000010011100001
+00100000010000000111111001000101
+01101000000010001000000001010011
+01101000000000001000010011100000
+10011000010001100111111000000000
+00011111111001100111110000001110
+00100000001000010101110101011111
+00011000010000001111111000001110
+01100000000000001000000001010011
+01110000000000000111110000000001
+00100000011000000000000000000000
+01101000000000001000000001001100
+01111001001000000111111000000011
+01100000000000001000000001001100
+11000010100000100101111011010101
+00100000011000000000000000000000
+01101000000000001000010011011111
+01100000000000001000000001111101
+01110000000000000111110000000010
+00100000011000000000000000000000
+01101000000000001100000100110010
+11000000100000001101110011110101
+00011000000000000000010000000001
+00100000001000000100100000111001
+01110000000000000111110000110000
+00100000011000000000000000000000
+01110000000000000111110000101000
+00100000011000000000000000000000
+01110000000000000111110000100110
+00100000011000000000000000000000
+00100000011000000000000000000000
+01101000000000010000000000110010
+10011000000000000000010000000000
+01101000000000001000010011100000
+01100000000000001000000010010111
+10011000010011111000010000000000
+01101000000000010000010011100001
+00011111111000111111111000000000
+01100000000000010000000010011000
+01101000000000100000010011100011
+00011111111000111111111000000000
+01100000000000100000000010010011
+00011000010000100111111000000000
+01100000000000010000000010011010
+00100000011000000000000000000000
+01101000000010001100000111111011
+01101000000000001000010011100000
+10011000010000101111110000000000
+00100100001000101101101111101110
+00101111111011111111111000000000
+01101000000000001000000001001100
+01111001001000001111111000000101
+01100000000000001000000001001100
+01110000000000000111110010000001
+01110000000000000111110110001011
+00100000011000000000000000000000
+00100000011000000000000000000000
+00100000011000000000000000000000
+00100000011000000000000000000000
+00100000001000000101110011110101
+00100000001000000101110011110101
+00100000011000000000000000000000
+00100000010000000011100001011110
+01110000000000000111110100101100
+00100000001000000101110011110101
+01101000000000001000010011011111
+01100000000000001000000010101101
+01101000000000001000010011100001
+01100000000000001000000010101111
+01101000000000001000010011100100
+01100000000000001000000010101011
+00100000010000000101110100010110
+01100000000000001000010001010010
+00011000000000000000010000000000
+00100000001000000100100000111001
+01101000000000010000010011011111
+01100000000000010000000101111011
+00100000011000000000000000000000
+01101000000000001000000000110000
+11000010100000001101110110110101
+01101000000000010000010011100000
+00011111111000111111111000000000
+01100000000000010000000001110101
+01101000000000010000010011100010
+00011111111000111111111000000000
+01100000000000010000000000110010
+01101000000000010000010011100100
+01100000000000001000000001110011
+10011000000000000000010000000000
+01101000000000010000010011100110
+01100000000000001000000001110100
+10011000010001100111110000000000
+00100100001000010101110110110010
+01100000000000001000000001110011
+01110000000000000111110000000011
+01110000000000000111110100010111
+00100000011000000000000000000000
+01110000000000000111111000100100
+00100000001000000101101111001001
+00100000010000000101110011110101
+00100000010000000101111011001000
+00100000010000000111001110100000
+00100000001000000011011111010000
+00100000010000000101110011110101
+00100000001000000011011111011010
+01101000000000100000010011011111
+00011111111000111111111000000000
+00100000001101001101110111001001
+01101000000010001100001001011110
+00100100001110100101110111000110
+01110000000000000111110000000100
+01110000000000000111110100010011
+01110000000000000111111000100100
+00100000011000000000000000000000
+01110000000000000111110000110100
+01110000000000000101010100000000
+00100000001000000011001001000001
+00100000010000000011001001000001
+01111001001000000000000000100010
+01101000000000001000000101110111
+01111001001111111111111000000010
+01100000000000001000000101110111
+00100000001000000101110011110101
+00100000011000000000000000000000
+00100000011000000000000000000000
+00100000011000000000000000000000
+00100000011000000000000000000000
+01110000000000000111110000000011
+01110000000000000111110100011000
+01110000000010110111110100101110
+00100000010000000111110000100111
+00011000000000000000010000000000
+00100000010000000100100100000111
+00100000001000000011100000000110
+00100000011000000000000000000000
+01101000000000001000010011011111
+11000000100000001101110111100111
+01101000000000001000010011100000
+11000000100000001101110111100111
+01101000000000001000010011100001
+11000000100110000101110111100111
+00100000010000000110001000010110
+00100000001000001101110111100100
+01110000000001111101101000000001
+01110000000000000111110000000011
+01110000000000000111110100111101
+00100000001000000101101101110111
+01110000000000000111111000100100
+00100000001000000101101111001001
+01110000000000000111110000111110
+00100000011000000000000000000000
+00100000010000000110001000010110
+00100000011000001000000000000000
+01110000000001111101101000001000
+00100000011000000000000000000000
+00100000010000000110001000010110
+00100100010000001111101010011101
+00100000010000001111101010101011
+00100000010000000100100001100000
+00100000010000000100100001101001
+00100000010000000110001000010110
+00100000011000001000000000000000
+01110000000001111101101000001100
+01110000000001111101110000000001
+00100000011000000000000000000000
+11011000101000000000100010001000
+01101000000001000000010011011111
+11100000101001000000000000000000
+01101000000001000000010011100111
+11100000101001000000000000000000
+00100000001000000111100000001111
+01101000000000001000011111011011
+11000000000000111101111000000011
+01101000000000001000011111011010
+11000000100000001101111000010110
+01101000000000001000011111100011
+00011111111001100000101000100000
+00100100001000010101111000010110
+11011000101000000000011111110000
+10011000101000001000101000000000
+01101000000001000000010011011111
+11100000101001000000000000000000
+01101000000001000000010011100111
+11100000101001000000000000000000
+01101000000000001000011111100011
+00011111111000001111111000010000
+01100000000000001000011111100011
+11000000100110000101110011110101
+00100000010000000110001000010110
+00100000001000001101110011110101
+01110000000001111110010000000001
+01110000000001111101101000000010
+01110000000001111101110000000001
+00100000001000000101110011110101
+01110000000000000111111000100100
+00100000001000000101101111001001
+01101000000000001000011111100010
+11000000000110000101111000011100
+01110000000000000111110000111110
+00100000001000000101101101110111
+00100000010000000110001000010110
+00100000001000001101111000100001
+01110000000001111101110000000001
+01110000000001111101101000000100
+00100000001000000101101101110111
+00100000001000000101101101110111
+01101000000000001000011111011011
+11000000000000111101111000100110
+01101000000000001000011111011010
+11000000100000110101111000110010
+11011000101000000000100001001000
+01101000000001000000010011011111
+11100000101001000000000000000000
+01101000000001000000010011100111
+11100000101001000000000000000000
+00100000010000000110001000010110
+00100000001000001101111000110000
+01110000000001111101101000000111
+01110000000001111101110000000001
+00100000001000000101110011110101
+01110000000001111101101100000100
+00100000001000000111100000001111
+01110000000000000111111000100100
+00100000001000000101101111001001
+01101000000000001000011111011011
+11000000000001011101111000111000
+01101000000000001000011111011010
+11000000100001000101111001000101
+11011000101000000000100001111000
+01101000000001000000010011011111
+11100000101001000000000000000000
+01101000000001000000010011100111
+11100000101001000000000000000000
+00100000010000000110001000010110
+00100000001000001101111001000010
+01110000000001111101101000001001
+01110000000001111101110000000001
+00100000001000000101101101110111
+01110000000001111101101100001001
+01110000000001111101110100000001
+00100000001000000101101101110111
+01110000000000000111111000100100
+00100000001000000101101111001001
+00100000001000000101101101110111
+01101000000000001000000101110111
+01111001001111111111111000000001
+01100000000000001000000101110111
+00100000010000000101110011110101
+00100100011101001000000000000000
+01101000000000001000010011011111
+01101000000010001000000001001011
+01111001001110100000010000000100
+01111101001110100000010000000101
+01100000000010001000000001001011
+00100000011000000000000000000000
+01101000000011000000010011011111
+01101000000000001100001001110010
+11000000101010000101111001011000
+01110000010000100111001000000000
+00100000010000000100011111100101
+01101000000000001000000001010101
+11000001100000011000000000000000
+01101000000000001100000100110010
+11000000000000001101111001011110
+01101000000000001000000101110111
+11000011000000100101111001100000
+01110000000000000101010100010100
+00100000011000000000000000000000
+01110000000000000101010100000100
+00100000011000000000000000000000
+01101000000000001000000110001001
+01100000000000001000000101011101
+01110000000000000111110000000011
+01110000000000000111110100111000
+00100000011000000000000000000000
+01110000000000000111110000000011
+01110000000000000111110100111001
+00011000000000000111001000001001
+11011000110000000000010011011111
+11011000101000000000000101010100
+11101000110000001000000000000000
+00011111111000101111111001010101
+11100000101000001000000000000000
+11000010000000000101111001101100
+01101000000000001000000101010100
+01101000000010001000000101010011
+01111001001111111000010000000111
+01111001001111111000010000000100
+11000000011111111101111010000000
+11000000000000000101111010011001
+11000000000000101101111010001101
+11000000000000111101111010001100
+11000000000000110101111010001101
+11000000000001000101111010001100
+11000000000000001101111010000101
+11000000000000010101111010000101
+11000000000000011101111010000101
+11000000000001001101111010000101
+11000000000000100101111010000101
+00100000011000000000000000000000
+01101000000000001000000101010011
+01111001001000000111111000000011
+01111001001000000111111000000010
+01100000000000001000000101010011
+00100000011000000000000000000000
+01111001001000000000010000000100
+01110000000000011000101000000101
+01101000000000010000000101011011
+10011000000000000111001000000000
+01100000000000010000000101101001
+11011000101000000000010011011110
+00100000010000000111111011011000
+01111001001000000000010000000111
+01111001001000000000010000000010
+00011000000000000111111000000000
+01100000000000001000000000001011
+01100000000000010000000011111100
+01100000000000010000000011111110
+01100000000000010000000011111010
+01100000000000010000000011111000
+01101000000000001000000101010101
+00101111111000011111111000000000
+01111001001000001000010000000110
+01100000000010001000000101010011
+00100000011000000000000000000000
+01111001001111111000000000010001
+01110000000000010101001100000000
+01101000000000001000000110001001
+01111001001111111111111000000110
+01100000000000001000000110001001
+00100000011000000000000000000000
+01101000000000001000000101010011
+11000100000000010000000000000000
+01101000000000001000000101011110
+00011111111000001111111000000001
+01100000000000001000000101011110
+11000001100000101000000000000000
+01110000000000010101111000000000
+01101000000000001000000101010011
+01111001001111111111111000000010
+01100000000000001000000101010011
+11000010100000011101111011000000
+00101111111011111111111000000111
+00100000010000001111111110000110
+00100100010000001111111110001010
+01101000000000001000000101011010
+00101111111000000110000000100000
+01101000000000001000000001001100
+01111001001000001111111000000101
+01100000000000001000000001001100
+01101000000000001000000101010011
+01101000000010001000000110001001
+00101111111011111111111000000100
+01111001001000001000010000000110
+00101111111011111111111000000110
+01111001001000001000010000000100
+01111001001000001000010000000101
+01100000000010001000000110001001
+01101000000000001000000101010110
+01100000000000001000010001000111
+01101000000000001000000101010111
+01100000000000001000010001001000
+01111001001000000000000000010001
+00100000011000000000000000000000
+01111001001111111000000000010001
+01110000000000010101001100000000
+01101000000000001000000101011101
+01100000000000001000000110001001
+01101000000100001000000001000011
+00011111111000010111111011111011
+01100000000100001000000001000011
+00100000011000000000000000000000
+11011000110000000000010011011111
+11011000101000000000010011101111
+00100000001000000111111000110101
+01110000000000000111110000001001
+00100000011000000000000000000000
+00100100011101001000000000000000
+01110000000000000111110000010001
+00100000011000000000000000000000
+11011010001000000100000101000000
+00100000010000000111001101101010
+01110000000000000111110000000011
+01110000000000000111110100001000
+00100000011000000000000000000000
+01110000000000000111001000001010
+01110000000000000111110000000111
+01110000000001000100011000010110
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100111100011100000000111100
+01111000010101000111110000000000
+00100000010000000110000111011001
+01101000000000001000000001001000
+00100000011110100000000000000000
+11000010100000111101111100010000
+11000000000000001110000001110010
+11000000000000010101111110011011
+11000000000000011101111100011101
+11000000000000100101111100110110
+11000000000100111110000011110010
+11000000000101000101111110111111
+11000000000110000101111110101011
+11000000000100101110000011101101
+11000000000100110101111110111010
+11000000000110001110000011011100
+11000000000110111110000001101101
+11000000000110011110000001011111
+11000000000001000110000101110100
+11000000000001001110000101101010
+11000000000001011110000101111111
+11000000000001100110000110001000
+11000000000001111110000001100101
+11000000000010000110000110101111
+11000000000010001110000110100101
+11000000000000111110000001010101
+11000000000101010110000010000001
+11000000000001010110000010000010
+11000000000101011110000010110101
+11000000000000110101111110110000
+11000000000100001110000001100010
+11000000000101101110000011010010
+11000000000101110110000011010111
+11000000000100010110000001100010
+11000000000101100110000011001011
+11000000000110100110000010000011
+11000000000010011110000010011000
+11000000000010111110000010100111
+11000000000010010110000110101100
+11000000000101111110000010101101
+11000000000011000110000010110010
+11000000000111101110000100011001
+11000000000111110110000100100101
+11000000000111111110000100110111
+11000000001000000110000101000010
+11000000001000001110000101010111
+11000000000100011110000101100110
+11000000000111011110000101100001
+11000000000000101110000101100111
+11000000000101001110000101101000
+11000000000111000110000101101001
+11000000000111001110000001111000
+00100000001000000011101111110001
+00100000011000000000000000000000
+11000000010001100101111111000100
+11000000010001101101111111100011
+11000000010000001101111101000011
+11000000010000100101111101110110
+11000000010000010101111101010000
+11000000010000011101111111101100
+11000000010001011101111111110111
+11000000010010111110000001010001
+11000000010011001101111110001100
+11000000010011010101111110000001
+11000000010010101101111110010001
+11000000010010110101111110010010
+00100000001000000011101111110001
+00011000000000000111111000000010
+00100000010000000110000110110101
+01101000000000001000000001001001
+11100000101000001000000000000000
+11000000000101011101111101011010
+00100000010000000110000111000100
+01101000000000001000000001001001
+11000000000001000101111101011101
+11000000000001111101111101100001
+11000000000010000101111101101100
+11000000000010111101111100110011
+11000000000110011101111101101111
+11000000000101100101111101110100
+11000000001000001101111101110101
+11000000000010001101111100101101
+00100000011000000000000000000000
+01101000000000001000000001010101
+00100000011110100000000000000000
+01110000000000000101010100011011
+01011000000000000000000000001100
+11011000111000000000000000001011
+00100000001000000111111001001100
+00011000000000000000010000000010
+00100000010000000100100100000111
+00100000001000000011011111100001
+00011000000000000111111000000011
+00100000010000000110000110110101
+01101000000000001000000001001001
+11000000000001011101111100111110
+11100000101000001000000000000000
+01101000000000001000000001001010
+11100000101000001000000000000000
+00100000001000000110000111000100
+11100000101000001000000000000000
+01101000000000001000000001001010
+11100000101000001000000000000000
+11011000010000000000010001010001
+00100000001000000110000111111011
+00011000000000000000111000000100
+00100000010000000110000110111101
+01011000000000000000000001111111
+11100000101000001000000000000000
+01101000000000001000000001001001
+01111001001111111111111000000111
+11100000101000001000000000000000
+01101000000000001000000001001001
+11000000010001100101111101011010
+00100000010000000110000111000100
+01101000000000001000000001001001
+11000000010001101101111101110100
+00100000011000000000000000000000
+00011000000000000000111000000101
+00100000010000000110000110111101
+01011000000000000000000001111111
+11100000101000001000000000000000
+01101000000000001000000001001001
+01111001001111111111111000000111
+11100000101000001000000000000000
+01101000000000001000000001001010
+11100000101000001000000000000000
+00100000001000000110000111000100
+00100000010000000011100001001010
+11011000010000000000010001010010
+00100000001000000110000111111011
+00100000010000000011010100000111
+00100000010000000110001000001101
+00100000011000001000000000000000
+00100000001000000101111011001011
+01101000000000001000000001001011
+11000010100000101101111101101000
+11000100000000100000000000000000
+01110000000000000111110000010010
+01111001001111111111111000000100
+00100000010000000110001000000101
+00100000001000000101111101101010
+01110000000000000111110000010000
+01111001001111111111111000000101
+01100000000000001000000001001011
+00100000011000000000000000000000
+00100000010000000110001000010110
+00100000001000001101111011001101
+00100000011000000000000000000000
+01101000000000001000010001001101
+01111001001000000111111000000000
+01100000000000001000010001001101
+01110000000010110111110100000001
+00100000001000000111110000100111
+00100000011000000000000000000000
+00100000011000000000000000000000
+00011000000000000000111000001100
+00100000010000000110000110111101
+01011000000000000000000000000001
+11100000101000001000000000000000
+01101000000000010000010001001010
+11100000101000010000000000000000
+01011000000000000000000000000000
+11100000101000011000000000000000
+01011000000000000000000000000000
+11100000101000100000000000000000
+00100000001000000110000111001101
+00011000000000000000111000000101
+00100000010000000110000110111101
+01101000000000001100000100110010
+11000000000000001101111110001001
+01011000000001000000000000000011
+11100000101000011000000000000000
+01100000000000011000011111100110
+00100000001000000110000111001101
+01101000000000011000011111100110
+11100000101000011000000000000000
+00100000001000000110000111001101
+00011000000000000000111000000101
+00100000010000000110000110111101
+01101000000000011000011111100110
+11100000101000011000000000000000
+00100000001000000110000111001111
+00100000011000000000000000000000
+00011000000000000000111000001001
+00100000010000000110000110111101
+01101000000000001000000010010111
+11100000101000001000000000000000
+01101000000000010000000010011000
+11100000101000010000000000000000
+01101000000000100000000010010011
+11100000101000100000000000000000
+00100000001000000110000111001101
+00011000000000000111111000010001
+00100000010000000110000110110101
+01101000000000001000000001001001
+00011111111000100000010000000000
+11000000000000000101111110100011
+11000000000001110101111110100011
+11000000000011100101111110100011
+00100000011000000000000000000000
+11100000101000001000000000000000
+01101000000000001100011100000010
+11100000101000001000000000000000
+00011111111000100111001000000000
+01011000000000000100011100000011
+10011000010000001000110000000000
+00100000010000000111111001000101
+00100000001000000110000111001101
+00011000000000000111111000000011
+00100000010000000110000110110101
+01011000000000000000000100010100
+11100000101000010000000000000000
+00100000001000000110000111001101
+00011000000000000111111000000011
+00100000010000000110000110110101
+01101000000000100000000101101111
+10011100010001100111111000000000
+00100000001101001101111110110110
+00011111111001100111111000000000
+00011111111010110111111000000000
+01111001001111111111111000001111
+11100000101000010000000000000000
+00100000001000000110000111001101
+00011000000000000111111000000110
+00100000010000000110000110110101
+01101000000000101100011011111101
+11100000101000101000000000000000
+00100000001000000110000111001101
+00011000000000000111111000001001
+00100000010000000110000110110101
+01101000000001000100000100111000
+11100000101001000000000000000000
+00100000001000000110000111001101
+00100000001101001101111111000110
+00100000001000000101111111000111
+01110000010000011111100100000111
+01110000000000001010111100000000
+00011000000000000000111000010000
+00100000010000000110000110111101
+01101000000000001000000010101101
+11100000101000001000000000000000
+01101000000000001100000111111001
+11100000101000001000000000000000
+01011000000000000000000000000000
+11100000101000001000000000000000
+01101000000000001000000010101111
+11100000101000001000000000000000
+01011000000000000000000000000110
+11100000101000001000000000000000
+01011000000000000000000000000010
+11100000101000001000000000000000
+01011000000000000000000000000111
+11100000101000001000000000000000
+11100000101000001000000000000000
+01011000000000000000000000011110
+11100000101000010000000000000000
+11100000101000010000000000000000
+01101000000000001000000010101011
+11100000101000001000000000000000
+01101000000000001000000010110001
+11100000101000001000000000000000
+00100100001110100110000111001101
+00100000001101001110000111001101
+00100000001000000110000111001111
+00011000000000000000111000000100
+00100000010000000110000110111101
+01101000000000001000000010101101
+11100000101000001000000000000000
+01101000000000001000010001000110
+11100000101000001000000000000000
+01101000000000001000000010110100
+01100000000000001000000001000111
+00100000001000000110000111001111
+00011000000000000000111000001100
+00100000010000000110000110111101
+01011000000000000000000000000001
+11100000101000001000000000000000
+01101000000000010000010001001010
+11100000101000010000000000000000
+01011000000000000000000000000000
+11100000101000011000000000000000
+01011000000000000000000000000000
+11100000101000100000000000000000
+00100000001000000110000111001111
+00011000000000000000111000000011
+00100000010000000110000110111101
+01101000000000001100000111111011
+11100000101000001000000000000000
+01111000010101000111110000000000
+00100000010000000110000111001111
+00100100011101000000000000000000
+00100100011101001000000000000000
+01101000000000001100000101111001
+11000100000000000000000000000000
+00100000010000000110000000001111
+00100000001000000110000000011001
+01101000000000001100000100111110
+01111001001000000111111000000011
+01100000000000001100000100111110
+01011000000000000000000100000001
+01100000000000010000010001001010
+00100000011000000000000000000000
+01101000000000001100000100111110
+01111001001111111111111000000011
+01100000000000001100000100111110
+01011000000000000000000000000000
+01100000000000010000010001001010
+00100000011000000000000000000000
+01110000010000010111100100000011
+01011000000000000000000000000000
+01100000000000100100000111100011
+11011000101000000100000101111011
+00100000010000000110000000100011
+11011000101000000100000110001000
+00100000010000000110000000100011
+11011000101000000100000111100111
+00100000010000000110000000100011
+00100000001000000110000000101010
+11011000101000000100000110001000
+00100000010000000110000000100011
+00100000010000000110000000101010
+00100000001000000110000000101101
+01101000000000101100000111100111
+01100000000000101100000110001000
+11101000110000101000000000000000
+11100000101000101000000000000000
+00100000010000000110000000101010
+00100000001000000110000000101101
+01011000111111111111111111111111
+11100000101000011000000000000000
+11100000101000011000000000000000
+11100000101000011000000000000000
+01011000000000000000000001111111
+11100000101000001000000000000000
+00100000011000000000000000000000
+01011000000000000000000000000000
+01100000000000010100000101110111
+00100000011000000000000000000000
+01101000000000001100000101111001
+01111001001000000111111000000010
+01100000000000001100000101111001
+00100000011000000000000000000000
+00100100011101001000000000000000
+00011000000000000111111000010000
+00100000010000000110000110110101
+00011100010000100111111000000000
+11011000010000000000000111011100
+10011000010000001111111000000000
+00011111111000110111111000000000
+00011111111000001111111000000001
+01111001001111111111111000000000
+11100000101000100000000000000000
+00011111111000100000010000000000
+01011000000000000000000000000001
+11100000101000001000000000000000
+01101000000000101100000110001000
+11100000101000101000000000000000
+11101000110000101000000000000000
+11100000101000101000000000000000
+00011000010000111000010000000000
+01100000000010100100000101110011
+00100000010000000110000111001111
+01101000000000001000000000110001
+01111001001000000111111000000011
+01100000000000001000000000110001
+01110000010000010111101000000001
+01101000000000100100000101110011
+11011000010000101110111000000000
+10011000010000001111111000000000
+01100000000000100100000111100011
+01101000000000001100000101111001
+11000011100000100000000000000000
+01110000000000000111110010010000
+00100000011000000000000000000000
+00011000000000000000111000000010
+00100000010000000110000110111101
+00100100001101001110000111001101
+00100000001000000110000111001111
+00011000000000000111111000000010
+00100000010000000110000110110101
+01101000000000001000010001000110
+11100000101000001000000000000000
+00100000010000000110000111001111
+01101000000000001000000001001011
+01111001001000000111111000000011
+01100000000000001000000001001011
+01110000000000000111001000110010
+00100000011000000000000000000000
+00011000000000000111111000000001
+00100000010000000110000110110101
+00100000001000000110000111001111
+00011000000000000111111000000001
+00100000010000000110000110110101
+00100000001000000110000111001101
+00011000000000000111111000000010
+00100000010000000110000110110101
+01101000000000001000000001001100
+00101111111011000000000000000010
+01111001001000001111111000000000
+00011111111000010111111000000001
+11100000101000001000000000000000
+00100000001000000110000111001111
+00011000000000000111111000000011
+00100000010000000110000110110101
+01101000000000010000000001010001
+11100000101000010000000000000000
+00100000001000000110000111001111
+01110000000000000111001011111010
+00011000000000000111111000000010
+00100000010000000110000110110101
+01101000000000001000000001010011
+11100000101000001000000000000000
+00100000001000000110000111001111
+00011000000000000111111000001010
+00100000010000000110000110110101
+11011000110000000000000101010100
+00011000000000000111001000001001
+11101000110000001000000000000000
+00011111111000101111111001010101
+11100000101000001000000000000000
+11000010000000000110000001111100
+00100000001000000110000111001111
+00100000001000000110000111001111
+00100000001000000110000111001111
+00100000011101001000000000000000
+00100000010000000011100110010111
+00011000000000000111111000001001
+00100000010000000110000110110101
+01101000000000010000000101111011
+11100000101000010000000000000000
+01101000000000011100000101000000
+11100000101000011000000000000000
+01101000000000001100000101000011
+11100000101000001000000000000000
+01101000000000010100000101000100
+11100000101000010000000000000000
+11000101100000011110000010010100
+01111001001111111000000000000011
+00100000010000000110000111001111
+01110000000000000111110000010011
+00100000011000000000000000000000
+00100000010000000110000111001101
+01110000000000000111110000000011
+01110000000000000111110100010011
+00100000011000000000000000000000
+11011000010000000000001000000000
+00100000001101001110000010011100
+00011101000000100111111000000000
+00100000001000000110000010011101
+00011100010000100111111000000000
+00011100001000100111111000000000
+10011000010000001111111000000000
+00011111111000010111111111111100
+01100000000000100000000000110100
+00011000000000000111111000000101
+00100000010000000110000110110101
+01101000000000100000000000110100
+00011111111000110111111000000000
+11100000101000100000000000000000
+00100000001000000110000111001111
+00011000000000000111111000001010
+00100000010000000110000110110101
+11011000110000000000010001010101
+11101000110001001000000000000000
+11100000101001001000000000000000
+00100000001000000110000111001111
+00011000000000000111111000000011
+00100000010000000110000110110101
+01011000000000000000000100010100
+11100000101000010000000000000000
+00100000001000000110000111001111
+00011000000000000111111000000001
+00100000010000000110000110110101
+00100000001000000110000111001111
+00100000001101001110000010111010
+01110000000000001010110100000000
+01101000000000001000000000110001
+01111001001000000111111000000100
+01100000000000001000000000110001
+01110000000000001010111100000000
+00011000000000000111111000000111
+00100000010000000110000110110101
+01101000000000001000000010101101
+11100000101000001000000000000000
+01011000000000000000000000000000
+11100000101000001000000000000000
+01101000000000001000000010101111
+11100000101000001000000000000000
+01011000000000000000000000000110
+11100000101000001000000000000000
+01011000000000000000000000000010
+11100000101000001000000000000000
+01101000000000001000000010101011
+11100000101000001000000000000000
+00100000001101001110000111001101
+00100000001000000110000111001010
+00011000000000000111111000000011
+00100000010000000110000110110101
+01101000000000001000000010101101
+11100000101000001000000000000000
+00011000000000000111111000010011
+11100000101000001000000000000000
+00100000001000000110000111001111
+00011000000000000111111000000010
+00100000010000000110000110110101
+01101000000000001100000101110001
+11100000101000001000000000000000
+00100000001000000110000111001111
+00011000000000000111111000000010
+00100000010000000110000110110101
+01011000000000000000000000000101
+11100000101000001000000000000000
+00100000001000000110000111001111
+01101000000000001000000000110000
+01111001001000000111111000000100
+01100000000000001000000000110000
+00011100010000100111111000000000
+01100000000000100000010001100101
+01101000000000001000010001001101
+11000010100000011110000011101011
+01111001001000000111111000000011
+01100000000000001000010001001101
+01110000000010110111110100000101
+00100000010000000111110000100111
+00100000010000000100100000100101
+00011000000000000111111000000001
+00100000010000000110000110110101
+00100000001000000110000111001111
+01110000000000000100100000000000
+00100000011000000000000000000000
+00011000000000000111111000000110
+00100000010000000110000110110101
+01101000000000101100011011111101
+11100000101000101000000000000000
+00100000001000000110000111001111
+00011000000000000111111000001001
+00100000010000000110000110110101
+01101000000001000100000100111000
+11100000101001000000000000000000
+00100000001000000110000111001111
+00100000010000000100100000011011
+01101000000000001100000100110010
+11000000000000001110000011111101
+01110000000001111101110100000001
+01101000000000001100011110010011
+11000001100000001000000000000000
+01110000000001111101101100010011
+00100000011000000000000000000000
+00100000010000000110001000001001
+01110000000000000111110010011001
+01110000000001111101101100000011
+00100000011000000000000000000000
+00100000010000000110001000001001
+01110000000000000111110000111101
+01110000000001111101101100000111
+00100000011000000000000000000000
+11011010001000000000100001101000
+11011010010000000000100010001000
+11011111001000000000000000010000
+00100000010000000111111100100101
+00100000001000101110000100010001
+01110000000001111101101100000000
+00100000010000000111100000010001
+01110000000000000111111000100100
+01110000000000000111110101000000
+00100000001000000101101111001001
+01110000000001111101101100001010
+00100000010000000111100000001111
+01110000000000000111110101000000
+00100000001000000101110011110101
+01110000000000000111110001000000
+00100000011000000000000000000000
+01110000000000000111110000111101
+00100000011000000000000000000000
+01110000000001111110001000000000
+00011000000000000111111000000100
+00100000010000000110000110110101
+00011000000000000111111000000001
+11100000101000001000000000000000
+00011000000000000111111000000001
+11100000101000001000000000000000
+00011000000000000111111000110000
+11100000101000001000000000000000
+00100000010000000110001000010110
+00100000001000001110000111001111
+00100000001000000110000111001101
+00011000000000000111111000010001
+00100000010000000110000110110101
+01101000000000001000011111100010
+11011000110000000100011110101100
+10011000110000001000110000000000
+11101000110001000000000000000000
+11100000101001000000000000000000
+11101000110001000000000000000000
+11100000101001000000000000000000
+01101000000000001000011111100010
+00011111111000001111111000010000
+01100000000000001000011111100010
+00100000010000000110001000010110
+00100000001000001110000111001111
+00100000001000000110000111001101
+01110000000001111101101000000110
+01110000000000000111110000111111
+00100000011000000000000000000000
+00011000000000000111111000010001
+00100000010000000110000110110101
+11011000110000000000100001101000
+11101000110001000000000000000000
+11100000101001000000000000000000
+11101000110001000000000000000000
+11100000101001000000000000000000
+00100000001000000110000111001101
+00100000010000000110000111011001
+01110000000000000111110001000000
+00100000011000000000000000000000
+00100000010000000110001000010110
+00100000010000001111011101001101
+00011000000000000111111000010001
+00100000010000000110000110110101
+11011000110000000000100000111000
+11101000110001000000000000000000
+11100000101001000000000000000000
+11101000110001000000000000000000
+11100000101001000000000000000000
+00100000010000000110001000010110
+00100100001000001110000111001101
+00100000001000001110000111001111
+01110000000001111101101100001111
+00100000010000000110001000001001
+01110000000000000111110000001011
+00100000010000000110001000100001
+00100000001000001111011110000101
+00100000001000000111011110001111
+00100000010000000110001000000101
+01110000000000000111110001000001
+00100000011000000000000000000000
+00011000000000000111111000010001
+00100000010000000110000110110101
+11011000110000000000100001101000
+11101000110001000000000000000000
+11100000101001000000000000000000
+11101000110001000000000000000000
+11100000101001000000000000000000
+00100000010000000110001000010110
+00100100001000001110000111001101
+00100000001000001110000111001111
+00011000000000000111111000000011
+00100000010000000110000110110101
+01011000000000001111111111111110
+11100000101000010000000000000000
+00100000001000000110000111001101
+00100000001000000110000111001111
+00100000001000000110000111001111
+00100000001000000110000111001111
+00100000001000000110000111001111
+00100000010000000110001000100101
+11011010001000000100000101000000
+00100000010000000110001000101011
+00011000000000000111111000010001
+00100000010000000110000110110101
+11011010001000000000010100001111
+11011010010000000000010011101111
+00100000010000000111010001100111
+00100100001101001110000111000100
+00100000001000000110000111001010
+00100000010000000110001000100101
+11011010001000000000000001000000
+00100000010000000111001101101010
+00011000000000000111111000010001
+00100000010000000110000110110101
+11011000110000000000010011101111
+00100000010000000111111000110101
+01101000000000001000000001010101
+11000000000011001110000111001111
+11000000000011000110000111001111
+00100000001000000110000111001010
+01101000000000001000011111100001
+00100000001110100110000110000101
+00100000010000000110001000010110
+00100000010000001110001000001001
+00100100010000001110001000000101
+00100000001000000110000110000110
+00100000010000000110001000001001
+00100000010000000110001000100101
+00100000001000000110000101110111
+11011010001000000100000101000000
+00100000010000000111001110011101
+00011000000000000111111000000101
+00100000010000000110000110110101
+01101000000000100000010100011111
+11100000101000100000000000000000
+11011000010000000000010001010001
+00100000010000000110000111111011
+00100000010000000111010010011011
+00100000010000000110001000010110
+00100000001000001110000110010111
+01110000000001000101010000000001
+01101000000000001000011111100001
+00100000011110100000000000000000
+01110000000000000111110000001011
+01101000000000001100001001011110
+00100000011110100000000000000000
+00100000010000000110001000010110
+00100000010000001100100001010010
+00100000010000000110001000010110
+00100100001000001110000110100001
+01101000000000001000010001010011
+00100000011110100000000000000000
+01110000000000000111110000001111
+00100000011000000000000000000000
+11000110100100001000000000000000
+01111001001111111000000000100001
+01110000000000000111110000001111
+00100000011000000000000000000000
+00100000010000000110001000100101
+00100000010000000111001110100000
+00011000000000000111111000010001
+00100000010000000110000110110101
+11011000110000000000010011101111
+00100000010000000111111000110101
+00100000001000000110000111001010
+00011000000000000111111000000001
+00100000010000000110000110110101
+00100000001000000110000111001010
+00011000000000000111111000000010
+00100000010000000110000110110101
+00011000000000000111111000010000
+11100000101000001000000000000000
+01100000000000001000000001010100
+00100000001000000110000111001010
+00011111111010011111111000000000
+00011111111000011111111000000111
+01100000000000001000010000110010
+11011111001000000000000000010001
+11011000101000000000010000110100
+00100000010000000111111000111111
+11011000101000000000010000110100
+00100000011000000000000000000000
+00011111111000010010001001111111
+01110000000000000100100001111111
+00011000111000100111111000000000
+00100000010000000110000110110101
+00011010001000100111111000000000
+11100000101000001000000000000000
+00100000011000000000000000000000
+01101000000000001000000001001000
+00011111111000111111111000000000
+01101000000010001000000001001100
+00101000010011111111111000000001
+01111001001000001111111000000000
+00100000001000000110000111010100
+01101000000010001000000001001100
+00011000010000010000010000000001
+00100000001000000110000111010000
+00011000000000000000010000000000
+00100000001000000110000111010000
+00011000000000000000010000000001
+01101000000000001000000001001000
+00011111111000111111111000000000
+01111001001101001111111000000000
+10011000010000101111111000000000
+01100000000000001000010000110011
+01110000000000000100100000000000
+00100000010000000110000111100000
+01111000001101000111110000000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100111100100100000000111100
+01101000000000001000000001001000
+00100000001110100110000111100000
+01101000000000001000000001111000
+00100100011110100000000000000000
+00100000001000000110000111101010
+01101000000000001000000001111000
+00100000001110100110000111110000
+01101000000000011000000001111000
+01100000000000011000000001001000
+01101000000010001000000001111011
+01101000000000001000000001001100
+01111001001111111111111000000001
+10011000010000011111111000000000
+01100000000000001000000001001100
+01110000000000000111100000000000
+01101000000000001000000001111100
+00100000011110100000000000000000
+01101000000000100000000001111100
+01100000000000100000000001111000
+01110000000000000111110000000000
+00100000011000000000000000000000
+01101000000000001000000001111100
+00100000011110100000000000000000
+01101000000000011000000001111100
+01100000000000011000000001001000
+01101000000010001000000001111111
+01101000000000001000000001001100
+01111001001111111111111000000001
+10011000010000011111111000000000
+01100000000000001000000001001100
+01110000000000000111110000000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100111100101100000000111100
+01101000000000001000000001001100
+00011111111000100010011000000000
+11101000010000001000000000000000
+00100000010000000101110100010010
+00100000010000000110000111000100
+00011010011000100111111000000000
+01100000000000001000000001001100
+00100000011000000000000000000000
+01101000000010001000000001001100
+01111001001111111000010000000000
+01100000000010001000000001001100
+00100000011000000000000000000000
+01101000000010001000000001001100
+01111001001000000000010000000000
+01100000000010001000000001001100
+00100000011000000000000000000000
+01111101001101001111111000000001
+01101000000010001000000001001100
+10011000010000101111111000000000
+00101111111011111111111000000001
+00100000011000000000000000000000
+01101000000000001000000001001100
+01111001001101001111111000000001
+01100000000000001000000001001100
+00100000011000000000000000000000
+01101000000000001000011111100000
+00101111111000001111111000000001
+00100000011000000000000000000000
+01101000000000001000011111100000
+01111001001000000111111000000111
+01100000000000001000011111100000
+00100000011000000000000000000000
+01101000000000001000011111100000
+01111001001111111111111000000111
+01100000000000001000011111100000
+00100000011000000000000000000000
+01101000000000001000011111100000
+00101111111011111111111000000111
+01100000000000001000011111100000
+00100000011000000000000000000000
+11011000101000000000010011101111
+00011000000000000111001000010000
+00011000000010100111111000000000
+11100000101000001000000000000000
+11000010000000000110001000100111
+00100000011000000000000000000000
+00100000010000000111001101101110
+11011010001000000100001001100010
+11011010010000000000010100011111
+11101010001001000000000000000000
+01101000000010001000000000110000
+01111101001110100000010000000110
+01100000000010001000000000110000
+00011010001000100000101000000000
+00100000010000000111010001100111
+00100000001000000011001000101001
+01111001001000000000000000100101
+01000100111100110100000000111100
+01101000000000001000000001111100
+00100000001110100110001000111100
+00100000010000000110000111011001
+01101000000000001000000001111100
+00100100011110100000000000000000
+01101000000000001000000001010101
+00100000011110100000000000000000
+11000000000000100110001010001101
+11000000000000101110001010010010
+11000000000000010110001010000100
+11000000000000011110001010011010
+11000000000001110110001010000111
+11000000000000110110001010110110
+11000000000000111110001011001110
+11000000000001001110001011001111
+11000000000001010110001011011000
+11000000000001011110001011011100
+11000000000001100110001010100100
+11000000000001101110001010100111
+11000000000001111110001010101101
+11000000000010010110001001110111
+11000000000010011110001010011010
+11000000000010000110001001111010
+11000000000010100110001001110100
+11000000000010101110001010011010
+11000000000010110110001001101110
+11000000000011000110001001110011
+11000000000010111110001001100111
+11000000000011001110001001101101
+11000000000011010110001001011000
+11000000000011011110001001100010
+01110000000000000101010100000000
+00100000011000000000000000000000
+01101000000000001000010001001101
+11000100000000010000000000000000
+11000100000000011000000000000000
+01110000000000000101010100000000
+00100000010000000110001001011110
+00100000001000000110111001000001
+01101000000000001000000101110111
+11000100000000001000000000000000
+01110000000000000101010100001010
+00100000011000000000000000000000
+11011000111000000000000000001011
+00100000010000000111111001010011
+00100100011110100000000000000000
+01110000000000000101010100011010
+00100000011000000000000000000000
+01101000000000001000000101110111
+01111001001111111111111000000000
+01100000000000001000000101110111
+01110000000000000101010100011001
+01110000000000000111110000001011
+00100000011000000000000000000000
+00100000011000000000000000000000
+01101000000000001000010001010000
+11000001100000010000000000000000
+00100000010000000110001011011110
+01110000000000000101010100011000
+00100000011000000000000000000000
+00100000011000000000000000000000
+01110000000000000101010100010101
+01110000000000000111110010000011
+00100000011000000000000000000000
+01110000000000000101010100010011
+01110000000000000111110000100101
+00100000011000000000000000000000
+01101000000000001100011101001000
+11000001000000000000000000000000
+11000000000000001110001010000010
+11011000111000000000000000001010
+00100000010000000111111001010011
+00100100011110100000000000000000
+01110000010001110100100000000000
+00100000001000000110001010011011
+00100000011101001000000000000000
+00100000001000000110001010110110
+01110000000000000101010100000011
+01110000000000000111110000100111
+00100000011000000000000000000000
+01110000000000000111110000010011
+01111001001000000000000000000011
+01110000000000000101010100000101
+01011000000000000000000111111111
+01100000000000010000010001001110
+00100000011000000000000000000000
+01110000000000000101010100000101
+01110000000001000100111011111111
+01111001001111111000000000100010
+01110000000000000111110000110011
+00100000001000000101101101101111
+11000110000100010000000000000000
+01101000000000010000010001001110
+00011111111001100111111000000001
+00100000001000101110001010011000
+01100000000000010000010001001110
+00100000011000000000000000000000
+01110000000000000101010100001110
+00100000011000000000000000000000
+00100000011000000000000000000000
+01101000000000001000010001001101
+11000100000000011000000000000000
+11000100000000010000000000000000
+01101000000000001000000101110111
+01111001001111111111111000000010
+01100000000000001000000101110111
+01110000000000000111110000010011
+01110000000000000101010100010000
+00100000011000000000000000000000
+01110000000000000101010100001101
+01110000000000000111110000110001
+00100000011000000000000000000000
+01101000000000001000010001001101
+11000100000000010000000000000000
+01110000000000000101010100000000
+00100000011000000000000000000000
+01110000000000000101010100000110
+00100000011000000000000000000000
+01101000000000001000010001001110
+00011111111000001111111111111111
+00100000001110100110001010110010
+01100000000000001000010001001110
+00100000011000000000000000000000
+01110000000000000111110000000111
+01110000000001000100011000010110
+01110000000000000101010100000000
+00100000011000000000000000000000
+01101000000000001000000101110111
+11000010100000010110001010011011
+11000010100000000110001010111011
+01110000000000000101010100011010
+00100000011000000000000000000000
+01101000000000001100001001011110
+00100000001110100110001011000111
+01101000000000001000010001001101
+11000100000000011000000000000000
+11000100000000010000000000000000
+01101000000000100000010001100101
+11011000010000000000000001100100
+10011000010000001000010000000000
+00011100010000100111111000000000
+10011000010001100111110000000000
+00100100011000010000000000000000
+00100000001000000110001001100111
+01110000000000000101010100010110
+01110000000001010100111100000100
+01011000000000000011000000110000
+01100000000000010000010101010000
+11100000101000010000000000000000
+01110000000001000101000000000010
+00100000001000000110001001101110
+00100000011000000000000000000000
+01101000000000001000000101110111
+11000010100000001110001011010011
+01110000000000000101010100011010
+00100000011000000000000000000000
+01101000000000001000000101110111
+01111001001111111111111000000001
+01100000000000001000000101110111
+01110000000000000111110000001111
+00100000011000000000000000000000
+01101000000000001000010001010100
+00100000011110100000000000000000
+01110000000000000101010100000000
+00100000001000000110001011010011
+01110000000000000101010100001100
+00100000011000000000000000000000
+01101000000000001000000001001011
+11000010100000010110001011100011
+00100000010000000110001000001001
+01110000000000000111110000001000
+00100000001000000100100110111100
+01101000000000001000000001001011
+01111001001111111111111000000010
+01100000000000001000000001001011
+00100000010000000101111011010000
+00100000010000000110001000010010
+00100000001000000100100110111100
+01011000000000000000000000000100
+01100000000000001000010101001111
+01011000000000000011000000110000
+11100000101000010000000000000000
+11100000101000010000000000000000
+00100000011000000000000000000000
+00100000011101011000000000000000
+01110000010010000001001100000000
+00100000010000000110001100100001
+00100000010000000110010000111000
+01011000000000000110001100101110
+01100000000000010100001010010000
+01011000000000000110001100101111
+01100000000000010100001010001110
+01011000000000000110001100110111
+01100000000000010100001010010010
+01011000000000000110001110110110
+01100000000000010100001010010110
+01011000000000000110001100101111
+01100000000000010100001010001100
+01111001001000000000000000100101
+01000100110000000100000000110000
+01011000000000000110001100101010
+01100000000000010100001010000110
+01011000000000000110001110111110
+01100000000000010100001010011000
+01011000000000000000000000000000
+01100000000000100100100000001010
+01100000000000010100100000010000
+00100000010000000110001100001010
+00100000010000000011111111000101
+00100000010000000011111000101011
+00100000001000000110100100011101
+00100000011101011000000000000000
+01011000000000000000000110100000
+01100000000000010100001010101100
+00100000010000000110101000001101
+01011000000000000100101000000000
+01100000000100010000000001010100
+01011000000000000100111111111111
+01100000000100010000000001010110
+01011000000000000001110000000000
+01100000000100010000000001011010
+01011000000000000001111111111111
+01100000000100010000000001011100
+01110000100000001000000100000100
+01110000000000101001111111111111
+01110000100000000110001000000000
+01011000000000000001110000000000
+01100000000100010000000001011110
+01100000000100010000000001100000
+01011000000000000100101000000000
+01100000000100010000000001011000
+00100000001000000100010010000000
+00100000010000000110001100001101
+00100000001000000110001100100001
+00100000010000000111101111011001
+00100000010000000011111110010100
+01101000000010001100100000000011
+00100000010000000110100111011010
+00100000010000000110001110011110
+01101000000010001100100000000001
+00100000010000000110100111010001
+01101000000010001100100000000000
+00100000001000000110100111010010
+01101000000010001100100000000001
+00100000010000000110100111100101
+00100100001000001011111101011100
+00100000001000000011111101011010
+00100000001000000110001100110000
+00100000001000000110001100110000
+01111001001000000000000000100101
+01000100110000001100000000110000
+00100000010000000110010000011100
+00100000010000000110010000100001
+00100000010000000101001001111010
+00100100011110100000000000000000
+00100000001000000110001110100000
+00011010011000100111111000000000
+11000000000001010110001101101000
+11000000000000100110001110000011
+11000000000010011110001110000111
+11000000000000010110001101001100
+11000000000011001110001101101010
+11000000000100000110001101101111
+11000000000100010110001101110100
+11000000000100001110001101110101
+11000000000100011110001101110110
+11000000000100100110001101111001
+11000000000010100110001101111010
+11000000000000001110001110000010
+11000000000010101110001101100100
+11000000000000101110001101011101
+11000000000001011110001101010010
+11000000000001100011111110100110
+00011111111000010000010000001111
+00011111111000010111111011110000
+11000000001010000110001111101100
+00100000011000000000000000000000
+00100000010000000110001110001010
+01101000000000010100001010100000
+11000100000000100000000000000000
+11011111001000000000000000000011
+11011000110000000100100001001001
+00100000001000000111111101110001
+01101000000000010100000001000010
+00011111111000110111111000000000
+01101000000010010100001010000000
+10011000010001100111110000000000
+00100100001000101110001101011000
+00100000001000000011111110100100
+01101000000000001100100000010011
+11000011100000000000000000000000
+01101000000100010000000100010010
+00100100010110100110010000001100
+00100000001000000011111110011100
+00100000010000000110001110010101
+00100000010000000110010000101110
+00100000001000101110001101100001
+00100000001000000011111101110111
+11011111001000000000000000000100
+11011000110000000100100010001110
+00100000001000000111111101110001
+00100000010000000110001110001010
+11011111001000000000000000000101
+11011000110000000100100001000111
+00100000001000000111111101110001
+00100000010000000011111111000001
+00100000001000000011111101101010
+01101000000000001100100000010011
+11000100000000100000000000000000
+01111001001111111111111000000100
+01100000000000001100100000010011
+00100000001000000100001001111111
+01101000000000001100100000010011
+11000100000000100000000000000000
+01111001001111111111111000000100
+01100000000000001100100000010011
+00100000001000000100001010000110
+00100000011000000000000000000000
+00100000011000000000000000000000
+01101000000000001100100000010011
+11000011000000000011111110011110
+00100000001000000110010000010000
+00100000011000000000000000000000
+00100000010000000110001110010101
+11011010010000000000001111010000
+00100000010000000110010000101110
+00100000001000101110001101111111
+00100000001000000011111110010000
+11011111001000000000000000000110
+11011000110000000100100010001100
+00100000001000000111111101110001
+00100000011000000000000000000000
+11011111001000000000000000000111
+11011000110000000100100010011001
+00100000010000000111111101110001
+00100000001000000110001110001010
+11011111001000000000000000000111
+11011000110000000100100010010010
+00100000010000000111111101110001
+00100000010000000110001110001100
+00100000001000000110001110010011
+01101000000000001100100000010010
+00101111111011111111111000000000
+00100000010000001011111101111100
+01101000000000001100100000010010
+00101111111011111111111000000001
+00100000010000001011111110001000
+00100000011000000000000000000000
+01101000000010001100100000000011
+00100000001000000110100111101111
+00100000010000000110001110010111
+00100000001000000110001110011110
+01101000000000001100100000010010
+00101111111011111111111000000000
+00100000010000001011111101111110
+01101000000000001100100000010010
+00101111111011111111111000000001
+00100000010000001011111110000110
+00100000011000000000000000000000
+01101000000010001100100000000011
+00100000001000000110100111101101
+01101000000000001100000100110010
+11000001100001010000000000000000
+01101000000100010000000100010010
+00100000011110100000000000000000
+01100000000000010100100000001110
+00100000010000000110001110101001
+00100000001000001011111111101111
+00100000010000000110010000000000
+00100000001000000110001110101111
+01101000000010001100100000000000
+00100000001000000110100111100101
+01101000000000001100100000010011
+11000011100000000000000000000000
+00100000010000000110010000001100
+00100000001000000011111110011100
+01101000000000001100000001000000
+11000011000000000100001010001100
+01101000000000001100000001000001
+11000010100000000110001111010101
+00100000010000000011111101000000
+00100000001000001110001110101011
+00100000001000000110110110010111
+00100000010000000101101010001000
+11101000110000001000000000000000
+00011000110000100010001000000000
+00100000010000000111111101101110
+00011010010000100111001000000000
+00011010001000100000110000000000
+00100000010000000100100101110110
+00100000001000000110100011111010
+01101000000000010100100000010000
+00100000011110100000000000000000
+11011000010000000000000000010100
+00100000010000000111111110111001
+01100000000000010000010001101001
+00011111111000100000010000000000
+01101000000000010100100000010000
+10011000010001100111111000000000
+01100000000000010100100000010000
+00100100001000010011101111110001
+11011000010000000000000000010100
+01100000000010010100010011000010
+00100000010000000101101010001000
+00100000001110100011101111110001
+00011000110000001000101000000001
+01101000000000010000010001101001
+00011111111000100111001000000000
+00100000010000000111111101101011
+00100000010000000100100101111100
+01101000000000010000010001101001
+01100000000000010100100000001110
+01100000000000010000010000011011
+00100000001000000100001010001100
+11000110100001001000000000000000
+00100000010000000110001111011000
+00100000010000000110001111011000
+00100000010000000101011000011110
+00100100011110100000000000000000
+01101000000100010000000100010010
+00100000011110100000000000000000
+01101000000010010100100000010000
+10011000010001100111111000000000
+00100100001000010011101111110001
+01100000000000010100100000001110
+00100000011110100000000000000000
+00100000010000000110010000000111
+01101000000000010100100000010000
+01101000000010010100100000001110
+10011000010000001111111000000000
+01100000000000010100100000010000
+01101000000010010100100000010000
+01101000000100010000000100010010
+10011000010001100010001000000000
+00100100001000010011101111110001
+01110000000010110111110100011011
+00100000001000000101011000100000
+01100000000010001000001001011001
+01101000000000001000001001011001
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001000001001011001
+00100000010000000110001111110011
+00100000001000000110001111101101
+01101000000000010100100000011010
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000010100100000011010
+00100100011110100000000000000000
+01101000000000001100001010100100
+01110000010000101010010000000000
+11000010100000001110001111111101
+11000010100000000110001111111110
+00100000001000000011101111110001
+00100000001000000011111110001100
+01110000010000100111001000000010
+00100000011000000000000000000000
+01101000000000001100000001000001
+11000010100000000110010000000111
+01101000000000010100100000001110
+11011000010000000000000001101110
+00100000010000000111111110111001
+01100000000000010100100000001110
+00100000011000000000000000000000
+01101000000000010100100000001110
+11011000010000000000000000010100
+00100000010000000111111110111001
+01100000000000010100100000001110
+00100000011000000000000000000000
+01101000000000001100100000010011
+01111001001000000111111000000000
+01100000000000001100100000010011
+00100000011000000000000000000000
+01101000000000001100100000010011
+01111001001111111111111000000000
+01100000000000001100100000010011
+00100000011000000000000000000000
+01101000000000001100100000010011
+01111001001000000111111000000111
+01100000000000001100100000010011
+00100000011000000000000000000000
+01101000000000001100100000010011
+01111001001111111111111000000111
+01100000000000001100100000010011
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100110000010100000000110000
+00100000010000000111111110001110
+00100000001000010011111101100110
+00100000001000000011111101101000
+00100000010000000110001110101001
+00100000001000001110010000101000
+01101000000110010000000001010010
+01101000000000010100001010101100
+10011000010001100111110000000000
+00100000011000101000000000000000
+00100000001000000110100100001001
+01101000000110010000000001010010
+01011000000000000000000110100000
+10011000010001100111110000000000
+00100000011000101000000000000000
+01100000000100010000000001010010
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100110000011100000000110000
+01101000000000001100100000010010
+00101111111011000000000000000010
+00100000001000001110010000110110
+11011010001000000100100000010100
+11011111001000000000000000000110
+00100000001000000111111100100101
+00011000000000000111110000000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100110000100100000000110000
+11011000101000000100100000011100
+00111000000000110101001101010000
+00111000000001010101000100010101
+00111000000010010010010000010101
+00111000000011010000100101010001
+11100000101001001000000000000000
+00111000000000100100010101001100
+00111000000001110101000001010011
+00111000000010000010010001010100
+00111000000011010001010100110001
+11100000101001001000000000000000
+00111000000000110100010001000001
+00111000000001011001010011010100
+00111000000010010010010001010101
+00111000000011010000110101001101
+11100000101001001000000000000000
+00111000000000110100000101001100
+00111000000001001101010011010100
+00111000000010010010010011000100
+00111000000011010011000100011001
+11100000101001001000000000000000
+00111000000000010101001001000111
+00111000000001111101000011010001
+00111000000010001110010011100100
+00111000000011010001010100110001
+11100000101001001000000000000000
+00111000000000110100100101000100
+00111000000001010001010011010100
+00111000000010001110010100110101
+00111000000011010101000100000101
+11100000101001001000000000000000
+00111000000000010100110000101011
+00111000000001010001010011010010
+00111000000010001111010100100101
+00111000000011010001010100110001
+11100000101001001000000000000000
+00111000000000010100111001010011
+00111000000001011001000110010010
+00111000000010000100010011000100
+00111000000011010101100100010101
+11100000101001001000000000000000
+00111000000000110101001101010010
+00111000000001001101001001010100
+00111000000010000101010001000100
+00111000000011010000100101011001
+11100000101001001000000000000000
+00111000000000010100010101001100
+00111000000001000101001110010010
+00111000000010000011010100100101
+00111000000011010011110100110101
+11100000101001001000000000000000
+00111000000000010100010101000100
+00111000000001010001001111010011
+00111000000010000100010001010100
+00111000000011010100110100110101
+11100000101001001000000000000000
+00111000000000000100000101010100
+00111000000001010001000101010101
+00111000000010010011010010010100
+00111000000011010011110100001101
+11100000101001001000000000000000
+00111000000000000100111101010110
+00111000000001110001000001010101
+00111000000010000011010001010100
+00111000000011010011100100111101
+11100000101001001000000000000000
+00111000000000010101000001001110
+00111000000001010101000111010000
+00111000000010010101010011110100
+00111000000011010100100101010001
+11100000101001001000000000000000
+00111000000000100100001101000101
+00111000000001100101000001010001
+00111000000010000000010011000100
+11100000101000110000000000000000
+00100000011000000000000000000000
+01011000000000000110010111010111
+01100000000000010100001010001100
+01011000000000000110010100101110
+01100000000000010100001010001110
+01011000000000000110010011100011
+01100000000000010100001010001010
+01011000000000000110010111110011
+01100000000000010100001010010010
+01011000000000000110010010101001
+01100000000000010100001010010000
+01011000000000000110010101100001
+01100000000000010100001010011000
+01110000000001111101110000000000
+01110000000001111101110100000000
+01111001001111111000000000100101
+01000100111000000100000000011000
+00100000010000000110010011000100
+00100000011101011000000000000000
+00100000010000000110010010011111
+00100000010000000110010010100111
+01011000000000000110010011100000
+01100000000000010100001010001000
+01101000000000010100011111110100
+11000010100001100110011010010111
+00100000001000000110011010010011
+00100000010000000011111101001101
+00100000001000101110010010100100
+00100000010000000110100101100011
+00100000010000000110011010111010
+00100000001000000011111101000101
+00100000010000000110100100011101
+00100000010000000110100101100111
+00100000001000000110011011000000
+01110000010010000001110000000001
+00100000001000000110010010111011
+00100000010000000111110011010111
+00100000010000000110010010101100
+00100000001000000110010011110110
+01101000000010001100100000100101
+00100000010000000110100111100101
+00100100001000001110010010110011
+01101000000000001100100000011100
+11000001000000000000000000000000
+01110000010010000001110000000000
+00100000011000000000000000000000
+01101000000000001100100000011100
+11000001000000001000000000000000
+01110000010010000001110000000001
+01101000000000001100100000011011
+00011111111000001111111000000001
+00011111111000010111111000000011
+01100000000000001100100000011011
+00100000001000000110010010111011
+01011000000000000000000000000110
+00100000010000000110011011011000
+00011111111000010000010011111100
+01101000000000001100100000011011
+10011000010000001111111000000000
+00011111111011010111111000000000
+00011111111000001111111000000110
+00100000010000000110011011010111
+00100000001000000110011010111010
+00100000010000000110010111000101
+00100000010000000110010011001010
+01101000000100010000000001010000
+01111001001111111111111000001011
+01100000000100010000000001010000
+00100000011000000000000000000000
+00100000010000000011111000001011
+01101000000010001100100000100111
+00100000010000000110100111010001
+01101000000010001100100000101000
+00100000010000000110100111010001
+01101000000010001100100000100010
+00100000010000000110100111010001
+01101000000010001100100000100011
+00100000010000000110100111010001
+01101000000010001100100000100100
+00100000010000000110100111010001
+01101000000010001100100000100110
+00100000010000000110100111010001
+01101000000010001100100000100101
+00100000010000000110100111010001
+01101000000100001000000001111011
+00011111111000011111111000011000
+01100000000100001000000001111011
+01101000000100001000000001111111
+00011111111000010111111011100111
+01100000000100001000000001111111
+00100000011000000000000000000000
+01011000000000001011110000000101
+00100000010000000110011011010111
+01110000000000001010001000000001
+00100000010000000110010011110110
+11011000010000000000000000011001
+00100000010000000110100111011010
+01110000100000001000000100000000
+01101000000010001100100000100111
+00100000010000000110100110110100
+01101000000010001100100000101000
+00100000010000000110100110110100
+01101000000010001100100000100010
+00100000010000000110100110110100
+01101000000010001100100000100011
+00100000010000000110100110110100
+01101000000010001100100000100100
+00100000010000000110100110110100
+01101000000010001100100000100110
+00100000010000000110100110111001
+01101000000000001000000010100010
+00100100011110100000000000000000
+00100000001000000110100111000100
+01111001001111111000000000100101
+01000100111000001100000000011000
+11011010001000000000000000000000
+01101000000010001100100000100111
+00100000010000000110100111100101
+01111001001000001010001000000000
+01101000000010001100100000101000
+00100000010000000110100111100101
+01111001001000001010001000000001
+00011010001000100111111000000000
+00011111111000010111111000000011
+01101000000010001100100000001000
+01100000000000001100100000001000
+10011000010001100111110000000000
+00100000001000101110010100010100
+01101000000000001100100000000111
+01100000000000001100100000000110
+01100000000010001100100000000111
+01101000000000001100100000001000
+00011111111100100111111000000000
+01101000000010001100100000000111
+00011000010010111000010000000000
+10011000010000001111111000000000
+01101000000010001100100000000110
+10011000010000001111111000000000
+11000000000111000110010100010101
+11000000000110100110010100011001
+11000000000001011110010100011001
+11000000000000111110010100010101
+00100000011000000000000000000000
+00100000011000000000000000000000
+01101000000000001100100000001001
+00011111111000001111111000000001
+01100000000000001100100000001001
+00100000011000000000000000000000
+01101000000000001100100000001001
+00011111111000001111111111111111
+01100000000000001100100000001001
+00100000011000000000000000000000
+00100000011000000000000000000000
+01011000000000001011100000000101
+00100000001000000110011011010111
+00100000011000000000000000000000
+00100000010000000011111110100000
+01110000010010000010000000000010
+00100000010000000011111110100100
+00100000001000000011111110010010
+01101000000000010100100000011110
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000010100100000011110
+00100100011110100000000000000000
+00100000001000000011111110011010
+01011000000000000000000000000010
+01100000000000001100011111110010
+00100000011000000000000000000000
+01101000000000001100001001111111
+00100000011110100000000000000000
+00100000010000000101001001111100
+00100100011110100000000000000000
+00100000010000000110010101111000
+00100100011101000000000000000000
+00100000010000000110010101011110
+00100000010000000110010101011010
+11011010001000000000000000001000
+00100000010000000100101100101100
+01101000000000010100001010110111
+11100000101000010000000000000000
+01011000000000000000001010100001
+11100000101000010000000000000000
+01101000000000001100100000000101
+11100000101000001000000000000000
+01101000000000010100100000000000
+11011000010000000000111111111111
+10011000010000010111111000000000
+01101000000010010100100000000010
+00011000010100100000010000000000
+00011000010011010000010000000000
+10011000010000011111111000000000
+11100000101000011000000000000000
+01101000000000001100100000000100
+11100000101000001000000000000000
+01011000000000000000000000000000
+11100000101000001000000000000000
+01110000000010001010100000001000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100111000010100000000011000
+01101000000000001100100000011010
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001100100000011010
+00100100011110100000000000000000
+00100000010000000101001001111110
+00100100011110100000000000000000
+01011000000000000000000000000000
+01100000000000101100100000000000
+00100000010000000110010100110110
+01110000010010000001101001010000
+00100000011000000000000000000000
+01101000000000010100100000010000
+01100000000000010100100000011000
+01110000010010000001101001010000
+00100000011000000000000000000000
+01101000000000010100100000001110
+01100000000000010100100000010110
+00100000011000000000000000000000
+01101000000010010100010011000010
+00100000010000000101101010001000
+11101000110000001000000000000000
+01100000000000001000010000011011
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100111000011100000000011000
+01101000000010010100010011000010
+00100000010000000101101010001000
+00011000110000001000101000000001
+01101000000000001100100000000101
+11100000101000001000000000000000
+01101000000000010100100000000000
+11011000010000000000111111111111
+10011000010000010111111000000000
+01101000000010010100100000000010
+00011000010100100000010000000000
+00011000010011010000010000000000
+10011000010000011111111000000000
+11100000101000011000000000000000
+01101000000000001100100000000100
+11100000101000001000000000000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100111000100100000000011000
+01111000010101000111110000000000
+01011000000000000000000000000000
+01100000000000101100100000000000
+00100000010000000110010110000001
+00100000010000000110010110110100
+00100000010000000110010110011100
+00100000001000000110010110100010
+01101000000000001100100000100001
+11000001100000010000000000000000
+01101000000000001100100000001010
+00100000010110100110010110111010
+01110000010010000000101000000001
+01111000010101000111110000000000
+01101000000010001100100000100110
+00100000010000000110100111100101
+00100100011000001000000000000000
+01011000000000000000000000000000
+00100000010000000110011011011000
+11000000100110000110011011000110
+01011000000000000000000000000010
+00100000010000000110011011011000
+11000100000000111000000000000000
+01011000000000000000000000000011
+00100000010000000110011011011000
+00100000010000000110010111010011
+01100000000000010100100000000000
+01011000000000000000000000000100
+00100000010000000110011011011000
+00100000010000000110010111010011
+00011111111001100111111000000000
+01100000000000010100100000000010
+01101000000000100100100000000000
+01111000001101000111110000000000
+00100000011000000000000000000000
+01101000000000001100100000001001
+00100000011110100000000000000000
+01100000000000001100100000000100
+01110000010010000000100100000000
+01111000001101000111110000000000
+00100000011000000000000000000000
+11011010001000000000000000000000
+01101000000010001100100000100010
+00100000010000000110100111100101
+01111001001000001010001000000000
+01101000000010001100100000100011
+00100000010000000110100111100101
+01111001001000001010001000000001
+01101000000010001100100000100100
+00100000010000000110100111100101
+01111001001000001010001000000010
+00011010001000100111111000000000
+01101000000010001100100000000101
+01100000000000001100100000000101
+10011000010000101111111000000000
+00011111111001100111110000000000
+00100000011000101000000000000000
+01111000001101000111110000000000
+00100000011000000000000000000000
+11011000010000000000000000011010
+00100000010000000110100111100101
+00100000011000001000000000000000
+01011000000000000000000000000000
+00100000010000000110011011011000
+00100000001000000110010110110100
+11011111001000000000000000000000
+01011000000000000000000000000010
+00100000010000000110011011011000
+00100000000000000000000001100100
+00011111001000001111001000000001
+01101000000010001100100000100110
+00100000010000000110100111100101
+00100000001000001110010110111011
+00011111001000100111111000000000
+01100000000000010000010001101011
+00100000011000000000000000000000
+00100000010000000110011110001110
+00100000011101011000000000000000
+01011000000000000000000000000000
+00100000010000000110011011011000
+01100000000000001000001001010110
+11000000000110000110010111001110
+00100000010000000110011011000110
+00100000000000000010011100010000
+00100000001000000110010111000111
+01011000000000001000000000000110
+00100000010000000110011011010111
+00100000000000000000001111101000
+01110000010010000010000100000010
+00100000011000000000000000000000
+11000100000000111000000000000000
+11011000010000001111111100000000
+10011000010000011111111000000000
+00100000011000000000000000000000
+00100000010000000101011000011110
+00100100011110100000000000000000
+01101000000010010100010011000010
+00100000010000000101100001100110
+11000100000000000000000000000000
+01101000000000001100011011111000
+11000100000000000000000000000000
+00100000010000000110010101111000
+00100100011101000000000000000000
+00100000010000000110010101011110
+01110000000010110111110100011011
+00100000010000000101011000100000
+00100000001000000110010101100110
+00100000011101000000000000000000
+01101000000000001100100000011101
+00011111111000001111111000000001
+01100000000000001100100000011101
+11011000010000000000000000000001
+11000011000000111110010111101011
+11011000010000001111111111111111
+01100000000010101100100000000000
+01111000001101000111110000000000
+00100000011000000000000000000000
+01111000010101000111110000000000
+01101000000000001100100000100000
+11000001000000010000000000000000
+01111000001101000111110000000000
+00100000011000000000000000000000
+00011010011000100111111000000000
+11000000000010100110011000000110
+11000000000000001110011010100110
+11000000000010101110011000010111
+11000000000000010110011000010111
+11000000000000101110011000010110
+11000000000010000110011001101010
+11000000000010010110011010001010
+11000000000000110110011000010100
+11000000000101000110010100100001
+11000000000101001110010100100100
+11000000000000100110011000010001
+11000000000010011110011000010001
+11000000000001010110011000001111
+11000000000101110011111101010111
+00011111111000010000010000001111
+00011111111000010111111011110000
+11000000001010000110011000110100
+00100000011000000000000000000000
+01101000000000010100001010100010
+01111001001111111111111000000000
+01100000000000010100001010100010
+01011000000000000000000000000000
+01100000000000010100100000010100
+01101000000000001100100000101001
+00011111111000001111111000000001
+01100000000000001100100000101001
+00100000001000000110011010100110
+00100000010000000110001011101001
+00100000001000000011111101101010
+01101000000000010100011111110100
+11000010100001100110011010010111
+00100000001000000011111100010000
+00100000010000000110010100101011
+00100000011000000000000000000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100111000101100000000011000
+00100000010000000110011000100001
+01101000000000010100001010100000
+11000010100000111110011000110000
+11000010100000000011111100010010
+11000010100000001110011000101010
+11000010100000010110011000101101
+11000010100000011110011000101101
+00100000001000000110011010010111
+01011000000000000000000000000000
+01100000000000100100100000000110
+01110000010010000001101000000000
+01110000010010000000101000000000
+01110000010000100111111100000000
+01110000010001001000101100000000
+01110000010010000010000000000000
+01110000010010000000101100000000
+00100000011000000000000000000000
+11000010100000101110011000101101
+11000010100000011110011000101101
+00100000001000000110011010010111
+01101000000000010100011111110100
+11000010100001100110011010010111
+00100000001000000011111100010000
+00100000010000000101101100110000
+01101000000000010100001010100000
+11000010100000000011111100010010
+00100000001000000011111100010000
+01111001001111111000000000100101
+01000100111000110100000000011000
+01100000000010001000001001011001
+01101000000000001000001001011001
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001000001001011001
+00100000010000000110011001001001
+00100000010000000110011001001111
+00100000010000000110011001010110
+00100000010000000110011001100100
+01101000000000001100100000100000
+00101111111000011111111000000010
+00100000010000001110011001001000
+01101000000000001100100000100000
+00101111111000011111111000000001
+00100000010000001110011001000110
+00100000001000000110011000110111
+00100000010000000110011001011101
+00100000001000000110010101001100
+00100000011000000000000000000000
+01101000000000001100011111110010
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001100011111110010
+00100100011110100000000000000000
+00100000001000000110011010001010
+01101000000000010100100000010010
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000010100100000010010
+00100100011110100000000000000000
+00100000010000000110011010100110
+00100000001000000011111110011010
+01101000000000010100100000010100
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000010100100000010100
+00100100011110100000000000000000
+00100000010000000011111110000100
+00100000001000000011111110011010
+01101000000000010100100000011000
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000010100100000011000
+00100100011110100000000000000000
+01110000010010000001101000000000
+00100000011000000000000000000000
+01101000000000010100100000010110
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000010100100000010110
+00100100011110100000000000000000
+00100000001000000110011010110001
+01111001001111111000000000100101
+01000100111000111100000000011000
+01110000010010000001101000000000
+01110000010010000000101100000001
+01011000000000000000000000000000
+01100000000000010100100000010100
+00100000010000000110011010110001
+01101000000000001100000100110010
+00101111111011111111111000000001
+00100000010000001110011010001000
+01101000000000001100000100110010
+00101111111011111111111000000000
+00100000010000001110011010000100
+00100000010000000011111110100110
+00100000001000000110011010010111
+01101000000000110100001001110100
+00100000001110100011111101111001
+00100000001000000011111101101110
+01101000000000110100001001110100
+00100000001110100110011010000010
+01101000000000010100100000001100
+01100000000000010100100000010100
+00100000010000000011111110100100
+00100000001000000011111110000010
+00100000010000000011111110010100
+00100000001000000011111110001000
+01101000000000010100011111110100
+00101111111011111111111000000111
+00100000010000001011111101110101
+00100000011000000000000000000000
+00100000010000000101101100110000
+00100000011000000000000000000000
+01110000010000100111111100000001
+00100000010000000011111110100100
+00100000010000000011111110100010
+01110000010010000010000000000001
+01011000000000000000000000000000
+01100000000000010100011111110000
+01100000000000001100011111110010
+00100000010000000011111110011110
+00100000001000000110010101011010
+01101000000000001100001010101001
+11000000000110011110011001111001
+11000000000110100110011001111100
+00100000001000000110011010010111
+01111001001111111000000000100101
+01000100111001000100000000011001
+01101000000000001100010011111001
+00011111111000001111111000000001
+01100000000000001100010011111001
+00100000010000000011111110100110
+01101000000000010100011111111110
+01100000000000010100100000010010
+01101000000000001100000100110010
+00101111111011111111111000000001
+00100000010000001011111110001000
+01101000000000001100000100110010
+00101111111011111111111000000000
+00100000010000001011111101111100
+00100000001000000011111110010100
+01111001001111111000000000100101
+01000100111001001100000000011001
+01011000000000000000000000000000
+01100000000000010100100000010010
+01101000000000001100000100110010
+00101111111011111111111000000001
+00100000010000001011111110000110
+01101000000000001100000100110010
+00101111111011111111111000000000
+00100000010000001011111101111110
+00100000001000000011111110011000
+01111001001111111000000000100101
+01000100111001010100000000011001
+01011000000000000000000000000000
+01100000000000010100100000010110
+01101000000000010100011111110100
+11000010100001001011111110010000
+01101000000000010100011111110100
+11000010100000000011111101110111
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100111001011100000000011001
+11011000010000000000000000000001
+11011010001000000100100000011011
+11011010010000000000000011000110
+00100000001000000110100000111110
+01111001001111111000000000100101
+01000100111001100100000000011001
+11011000010000000000000000000001
+11011010001000000100100000011011
+11011010010000000000000011000110
+00100000001000000110100000011101
+01111001001111111000000000100101
+01000100111111110100000000011111
+01101000000100001000000001110011
+11011000010000000000000000000110
+10011000010000011111111000000000
+01100000000100001000000001110011
+01101000000100001000000001110111
+10011000010000011111111000000000
+01100000000100001000000001110111
+01110000100000001000000100000000
+01101000000100001000000001110111
+01111001001111111111111000000001
+01111001001111111111111000000010
+01100000000100001000000001110111
+00100000000000000000000000011110
+01110000100000001000000100000001
+00100000011000000000000000000000
+00100000001000000110011110100001
+00100000001000000110011110101001
+00100100001101000110011011011101
+01101000000100001000000010000101
+00011111111000011111111000100000
+01100000000100001000000010000101
+00011000010000100111110000000000
+00100000001000101110011011100000
+00011010011000100111101000000000
+00101111110011000000000000000000
+00100000001000000110011101100011
+00011000000000000000010000000100
+11011010001000000000001000101100
+01101000000100001000000010000101
+00011111111000010111111011011111
+01100000000100001000000010000101
+00100000010000000110011011011101
+11011010001000000101010110101010
+01101000000000010000001000101100
+11101000110010010000000000000000
+10011010001001100111110000000000
+00100000011000000000000000000000
+11011000010000000000000000000010
+11011010001000000000001000110010
+00100000010000000110011011011101
+01101000000000010000001000110010
+01100000000000010000001000100101
+00100000010101000110011011110100
+00100000011000000000000000000000
+11011000010000000000000000010000
+11011010001000000000001000110100
+01101000000100001000000010000101
+00011111111000010111111011011111
+01100000000100001000000010000101
+00100000010000000110011011011101
+11011000110000000000001000110100
+11011111001000000000000000010000
+00100000010000000111010110000100
+00100000010000000111010100111101
+00100000010000000111010110011101
+00100000001000000111010100110100
+01111000010101101111110000000000
+00100000010000000110011011100010
+00100100011000101000000000000000
+01111000001101101111110000000000
+01110000100000000010001110000000
+01110000100000000010001000000000
+01110000100000000010010000000000
+11011010001000001000000000100101
+00100000010000000110011011011001
+01110000100000000010001100000000
+00100000010000000110011011100010
+00100100011000101000000000000000
+00011000000000000111111000000000
+01100000000100010000001010001000
+11011010001000001000001010001010
+00100000010000000110011011011001
+11011000010000000000000000000110
+00100000010000000110011011100011
+00100100011000101000000000000000
+11101000110000010000000000000000
+10011000000000000010001000000000
+00100000010000000110011011011101
+00100000001000000110011100010000
+00100000010000000111111100110110
+01011000000000000001000000000000
+01100000000000010000001000100101
+11011010011000000110100000100011
+11011111001000000000000000000010
+00100000010000000110011011100010
+00100100011000101000000000000000
+01101000000000010000001000100101
+00011111111100001111111000000000
+10011000010000001111111000000000
+00011111111100001111111000000000
+01100000000000010000001000100101
+11000010000000000110011100011100
+00100000001000000110011100010000
+01110000100000000101000000100101
+01110000100000101000000000000101
+00100000010000000111111100110110
+01111000010101000111110000000000
+00100000010000000110100010001010
+01011000000000000000000000000000
+11011010001000000000001000100001
+11011000010000000000000000000010
+00100000010000000110100011010011
+01101000000000010000001000100001
+11000011000000111110011100111000
+01011000000000000000011111110000
+11011010001000000000001000110100
+11011000010000000000000000010000
+00100000010000000110100011010011
+01110000100000000000011000001000
+11011000110000000000001000110100
+00100000010000000111010110010000
+01111000001101000111110000000000
+01101000000000010000001000100001
+00011111111100001111111000000000
+11011000010000000000011111111111
+10011000010000010111111000000000
+00100000001000101110011101000100
+00100000010000000110100010001111
+11011010011000000110100011011000
+00100000010101000110011011110100
+00100000010000000110011100000000
+01101000000000001000001000100000
+00101111111000000000011000000011
+00100100001000001110011100111000
+00100000010000000110100010001101
+01101000000000001000001000100001
+11000010100000101110011101010001
+01011000000000000000000000000000
+01100000000000011000001000100100
+00100000010000000110011110111001
+11011010011000000110011111011011
+00100000010000000110011011101101
+00100000010000000110011100000000
+00100100001101101110011101010001
+01101000000000001000001000100000
+00101111111000000000011000000011
+00100100001000001110011101000100
+01101000000000001000001000100001
+11000010100000110110011101011101
+01011000000000000000000000000000
+01100000000000010000001000100101
+11011010011000000110100000100011
+00100000010000000110100000000101
+00100000010000000110011011101101
+00100000010000000110011100000000
+00100100001101101110011101011101
+01101000000000001000001000100000
+00101111111000000000011000000011
+00100100001000001110011101010001
+01110000100000000101000000100001
+01101000000000001000001000100001
+11000100000000100000000000000000
+00100000010000000100010001100001
+00100000010000000100010010100011
+00100000001000000110011101100001
+01101000000000001000001000100000
+00011111111000111111111000000000
+01111001001000001111111000000000
+00101010001011000000000000001111
+00100000011000001000000000000000
+01100000000000001000001000100000
+00100000011000000000000000000000
+01101000000100001000000010000101
+11000100000000101000000000000000
+00100000001000000110011101110000
+01101000000100001000000100101100
+10101111111011111111111111111111
+00100000011000001000000000000000
+01101000000100001000000100001000
+11000011000000001110011101101101
+00100000010000000111010100110100
+00100000001000000110011101101101
+00011111001000100000010000000000
+01100000000010010100001000111100
+01110000100000000010001110000000
+01110000100000000010001000000000
+01110000100000000010010000000000
+01100000000000010100001000111010
+10011000000000000000101000000000
+00011111001010111111001000000000
+01101000000100001000000000100101
+11100000101000001000000000000000
+11000010000000000110011101111100
+01110000100000000010001100000000
+00100000011000000000000000000000
+01101000000000010100001000111010
+00100000011110100000000000000000
+01110000100000000010001110000000
+01110000100000000010001000000000
+01110000100000000010010000000000
+01101000000010010100001000111100
+00011000010010111111001000000000
+10011000000000000000110000000000
+11101000110000001000000000000000
+01100000000100001000000000100101
+11000010000000000110011110001001
+01110000100000000010001100000000
+00100000011000000000000000000000
+01111001001111111000000000100101
+01000100111111111100000000011111
+01110000100000001000011001110101
+01110000100000001000011100001010
+01011000000000000000001000100011
+01100000000100010000000010001010
+01011000000000000000001000101000
+01100000000100010000000010001100
+01101000000100001000000010000001
+01111001001000000111111000000000
+01111001001111111111111000000001
+01100000000100001000000010000001
+00100000011000000000000000000000
+01101000000100001000000010000110
+01111001001000000111111000000111
+01100000000100001000000010000110
+01111001001111111111111000000111
+01100000000100001000000010000110
+00100000011000000000000000000000
+01111001001000000111111000000111
+01100000000000010000001000100011
+01111001001000000000000000100101
+01000100100000000100000000100000
+01110000100000001000100000000010
+01110000100000001000111000000000
+01110000100000000000011000000010
+00100000001000000110011110110011
+00011000000000000000010000000001
+01100000000000001000001000100011
+01111001001000000000000000100101
+01000100100000001100000000100000
+01110000100000001000100000000001
+01100000000110010000000010001110
+01110000100000000000011000000010
+00100000010000000110011110110011
+01101000000000001000001000101000
+00100000011000000000000000000000
+01101000000000010100000101110111
+00011111111000001111111000000001
+01100000000000010100000101110111
+01101000000100001000000100101100
+11000011000000011110011110110011
+00100000011000000000000000000000
+01110000100000001000011001000000
+01110000100000001000011100000000
+01101000000100001000000010000001
+01111001001111111111111000000000
+01111001001000000111111000000001
+01100000000100001000000010000001
+01011000000000000000000000000000
+01100000000000100000001000100011
+00100000011000000000000000000000
+01011000000000000000000000000000
+01100000000100010000000010001110
+01011000000000000000000000000001
+01100000000100001000000010001000
+01011000000000000000001000100011
+01100000000100010000000010001010
+01110000000000100010001100000110
+01110000100000000000011000000010
+00100000001000000110011110110011
+00011000010000001000010000000100
+01100000000110010000000010001000
+00011010001000001010001111111100
+11011000010000000000000000000010
+11100010001010001000000000000000
+00011111111100010000010000000000
+11100000101010001000000000000000
+00011111111011001000010000000000
+11100000101010001000000000000000
+11100000101000001000000000000000
+00011010001000100111111000000000
+01100000000100010000000010001010
+01011000000000000000000000000000
+01100000000100010000000010001110
+01110000100000000000011000000010
+00100000001000000110011110110011
+01100000000110010000000010001110
+01011000000000000000000000000100
+01100000000100010000000010001000
+01110000000000100010001100000011
+01011000000000000000001000100011
+01100000000100010000000010001010
+00011010001000100111111000000000
+01100000000100010000000010001100
+01101000000100001000000010000110
+00101010001011000000000000001111
+01111001001000001111111000000110
+01100000000100001000000010000110
+01110000100000000000011000000010
+01101000000100001000000100101100
+11000010100000111110011111101000
+11011000111000000000000000000011
+00100000010000000110011101101010
+00100000010000000110011110110011
+00101111111011111111111000000010
+00100000010000000110011101100011
+01101000000000001000001000100100
+00011111111100000010010000000000
+01101000000000001000001000100101
+00011111111011010111111000000000
+10011010010000011010010000000000
+01101000000000001000001000100110
+10011010010000011111111000000000
+10011000010000001111111000000000
+01100000000000001000001000100110
+00011111111011001111111000000000
+01100000000000001000001000100101
+00011111111011001111111000000000
+01100000000000001000001000100100
+00100000011000000000000000000000
+01110000100000000100001000001010
+01110000100000001001000100000010
+01110000100000001001001000000011
+01110000100000001001001100000011
+01110000100000001001010000000011
+01110000100000001001010100000011
+01110000100000001001011000000010
+00100000011000000000000000000000
+01110000100000001001000100000101
+01110000100000001001001000000111
+01110000100000001001001100000111
+01110000100000001001010000000111
+01110000100000001001010100000111
+01110000100000001001011000000101
+00100000011000000000000000000000
+01101000000100001000000100101100
+11000011000000101110100000001100
+00100000011000000000000000000000
+01100000000000001000001000100100
+01011000000000000000001000100100
+01100000000100010000000010011010
+01011000000000000000000000000001
+01100000000100010000000010011000
+01100000000110010000000010011110
+00011010001000100111111000000000
+01100000000100010000000010011100
+01110000100000001001000000000001
+01110000100000000000011000000100
+00100000001000000110100000001100
+00011111111100001111111000000000
+01100000000000010000001000100101
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100100000010100000000100000
+01101000000000010100001010011011
+10011010010000001111111000000000
+00011111111100001111111000000000
+01100000000000010000001000100101
+01111001001000000000000000100101
+01000100100000011100000000100000
+01011000000000000000000000000100
+01100000000100010000000010011000
+01110000000000100010010010100000
+01110000000000100010011110100001
+01011000000000000000001000100100
+01100000000100010000000010011010
+01100000000110010000000010011110
+00011010001000100111111000000000
+01100000000100010000000010011100
+01011000000000000000000000000010
+00101010001011000000000000001111
+01111001001000001111111000000000
+01100000000100001000000010010000
+01110000100000000000011000000100
+11011000111000000000000000000101
+00100000010000000110011101101010
+00100000010000000110100000001100
+00101111111011111111111000000100
+00100000010000000110011101100011
+01101000000000010000001000100101
+00011111111100001111111000000000
+10011000010000001111111000000000
+00011111111100001111111000000000
+01100000000000010000001000100101
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100100000100100000000100000
+01101000000000010100001010011011
+10011010010000001111111000000000
+01100000000000010000000101100001
+01111001001000000000000000100101
+01000100100000101100000000100000
+01100000000010010000001010100000
+00011010001000100111111000000000
+01100000000000010000001010110111
+00100000010000000110100001011000
+01101000000010010000001010110000
+01101000000000010000001010110111
+00011111111000100010001000000000
+01101000000000010000000101100001
+00100000010000000110100001110000
+01101000000000010000001010110000
+01101000000010010000001010110111
+10011000010000001000010000000000
+01100000000010010000001010110111
+01101000000010010000000101100001
+10011000010000001000010000000000
+01100000000010010000000101100001
+01101000000000010000001010100000
+00100100001110100110100001001000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100100000110100000000100000
+01101000000000010100001010101010
+00011111111000001111111111111111
+01101000000010010000000101100001
+10011000010000011111111000000000
+00011111111000001111111000000001
+01100000000000011000001010110100
+01101000000000010000001010100000
+10011000010000001111111000000000
+01101000000010011000001010110100
+10011000010001100111111000000000
+00100100001000010110100001101011
+01100000000000010000001010100000
+01101000000000011000001010110100
+01101000000010010000000101100001
+10011000010001100111111000000000
+01100000000000010000001010110000
+00100000011000000000000000000000
+01101000000000010000001010100000
+01100000000000010000001010110000
+01011000000000000000000000000000
+01100000000000010000001010100000
+00100000011000000000000000000000
+00011111111000100010010000000000
+01111001001000000000000000100101
+01000100100000111100000000100000
+00011010010000100111111000000000
+00011000010000001000010000000011
+01100000000110010000000010011000
+00011010001000001010001111111101
+11101010001010011000000000000000
+00011000010000100010010000000000
+11011000010000000000000010100000
+11100010001010001000000000000000
+00011111111100001111111000000000
+11100000101000010000000000000000
+00011010001000100111111000000000
+01100000000100010000000010011010
+01011000000000000000000000000000
+01100000000100010000000010011110
+01110000100000001001000000000001
+01110000100000000000011000000100
+00100000010000000110100000001100
+00011010010000100111111000000000
+11100010001000011000000000000000
+00100000000000000010011100010000
+00100000000000000010011100010000
+00100000000000000010011100010000
+00100000011000000000000000000000
+01110000100010010111001101110000
+00100000000000000000101110111000
+00100000011000000000000000000000
+01110000100010010111001100110000
+00100000011000000000000000000000
+00011111111010011111111000000000
+01100000000100010000000001000101
+01110000100000000100101100000000
+00100000011000000000000000000000
+00100000010000000110100010001111
+00100000010000000110100011000000
+11101010001010001000000000000000
+00011010001000001010001000000001
+00011000000000000000111000000000
+10101000010011000000000000000000
+00100000001000001110100010110111
+01101000000100001000000001000110
+01111001001000000111111000000110
+01111001001000000111111000000111
+01100000000100001000000001000110
+01110000100000000100011100000010
+01110000100000000100011110000010
+01111001001111111111111000000111
+01100000000100001000000001000110
+01110000100000000100011110001010
+00100000000000000000000000001011
+01110000100000000100011111001010
+00100000000000000000000000100001
+01110000100000000100011101001010
+00100000000000000000000000101100
+01110000100000000100011111001010
+00100000000000000000000000010110
+01110000100000000100011110001010
+00100000000000000000000000100001
+01110000100000000100011110000010
+00100000000000000000000000000001
+01110000100000000100011110010010
+00100000000000000000000000001010
+01110000100000000100011110110010
+01101000000100001000000000000111
+01110000100000000100011110010010
+00100000000000000000000000000001
+01110000100000000100011110000010
+10101111111011000000000000000000
+00100000001000001110100010011000
+01101000000100010000000001000101
+00011111111000001111111000000001
+01100000000100010000000001000101
+00011000111000001000111000000001
+00101000111000000001111000001000
+00100100001000001110100010011000
+11000010000000000110100010010101
+01110000100000000100011110000011
+00100000011000000000000000000000
+01110000100000000100011110000010
+00100000000000000000000000001100
+01110000100000000100011110000000
+01110000100000000100011110000010
+00100000000000000000000010010110
+00100000011000000000000000000000
+00100000010000000110100011000000
+01110000100000000100011110100010
+00011010001000100111111000000000
+01100000000100010000000001001000
+01111001001000000000010000001011
+00101111111011000000000000001111
+01111001001000001000010000001111
+01100000000110010000000001001010
+01110000100000000000011000000001
+00100000011000000000000000000000
+01101000000100001000000100101100
+11000011000000001110100011010000
+00100000011000000000000000000000
+00100000010000000110100010001111
+00100000010000000110100011000110
+00100000010000000110100011010000
+01110000100000000100011110000011
+00100000011000000000000000000000
+01101000000100010000000100100100
+01100000000100010000000001000101
+00100000010000000110100011000110
+11011000111000000000000000000001
+00100000010000000110011101101010
+00100000010000000110100011010000
+00101111111011111111111000000000
+00100000010000000110011101100011
+01110000100000000100011110000011
+00100000011000000000000000000000
+01110000010000100111101000000001
+00011000000000000000111000001110
+01101000000000010100001001111100
+00100000001000000111111001001100
+01101000000100010000000100010010
+00100000011110100000000000000000
+01101000000010001100001001111011
+10011000010001100111110000000000
+00100000001000010110100011110010
+01101000000000001100001001111010
+00100000001110100110100011100010
+11011000111000000000000000001110
+00100000010000000111111001010011
+00100000001110100110100011110010
+01011000000000000000000000000000
+00100000011000000000000000000000
+00011000000000000000111000001110
+00100000010000000111111001001011
+01110000010000100111101000000000
+01101000000100010000000100010010
+00100000011000000000000000000000
+01101000000100010000000001011110
+10011000000000000001010000000000
+00100000011000000000000000000000
+00011001010000100111111000000000
+01100000000100010000000001011110
+00100000011000000000000000000000
+01101000000100010000000100010010
+00100000011110100000000000000000
+10011000000000000111001000000000
+01101000000100010000000001011000
+10011000000000000000011000000000
+00100000011000000000000000000000
+01101000000100010000000001011000
+10011000010000001111111000000000
+00011111111000100000011000000000
+00011000011000100111111000000000
+01100000000100010000000001011000
+00100000011000000000000000000000
+01101000000000010100001010101100
+01100000000100010000000001010010
+00100000011000000000000000000000
+01101000000000110000001111010000
+01100000000000110000000110110100
+01110000000000011011001100110100
+00100000001000000110100100010011
+01101000000000110000000001000000
+01100000000000110000000110110100
+01110000000000011011001100110011
+01111001001000000000000000100101
+01000100100001000100000000100001
+00100000010000000110100101010100
+00100000010000000110100101010000
+01101000000000001000000110110011
+11000000000110100110100100011011
+11000000000110011110100101111100
+00100000011000000000000000000000
+00100000010000000110100101111010
+00100000001000000110100101100011
+01111001001000000000000000100101
+01000100100001001100000000100001
+00100000010000000110100100101001
+01101000000000001000000110110010
+11000001011111111000000000000000
+01101000000000110000000110110100
+01100000000000110100001001110100
+01101000000000001000000110110011
+01100000000000001100001010101001
+11000000000110011110100100101101
+11000000000110100110100100101111
+00100000011000000000000000000000
+00100000010000000110100101001100
+01101000000000001000000110110010
+11000001011111111000000000000000
+00100000001000000110100101101011
+00100000010000000110100110000011
+00100000001000000110100110100010
+00100000010000000110100110000001
+00100000001000000110100110101000
+00100000010000000110100110001000
+01111000010101000111110000000000
+00100000010000000110100110001100
+00100100001101000100001001111111
+01101000000010010000000110111010
+00011000010000001000010111111111
+01011000000000000000000000000000
+11100000010000111000000000000000
+11011000010000000000000000011100
+11011010001000000000000110010101
+11011010010000000000000000000000
+00100000001000000110100000111110
+01111001001000000000000000100101
+01000100100001010100000000100001
+11011000101000000000000110001110
+00011000000000000111001000000100
+00100000010000000111111000111011
+11011000010000000000000000011100
+11011010001000000000000110001110
+11011010010000000000000000000000
+00100000001000000110100000111110
+01111001001000000000000000100101
+01000100100001011100000000100001
+01011000000000000000000000000000
+01100000000000011000000001000000
+11100000101000011000000000000000
+00100000001000000110100101010100
+11011000010000000000000000000001
+11011010001000000000000110110010
+11011010010000000000000000011100
+00100000001000000110100000011101
+11011000010000000000000000000001
+11011010001000000000000110110010
+11011010010000000000000000011100
+00100000001000000110100000111110
+01111001001000000000000000100101
+01000100100001100100000000100001
+00100000010000000110100110001000
+01111000010101000111110000000000
+00100000010000000110100110001100
+00100000011101000000000000000000
+01110000000000011011001000000000
+01101000000000110000000110110100
+01100000000000110000000110001111
+01101000000000001000000110110011
+01100000000000001000000110001110
+11011000010000000000000000011100
+11011010001000000000000110001110
+11011010010000000000000000000000
+00100000001000000110100000111110
+11011000010000000000000000000110
+11011010001000000100010011111001
+11011010010000000000000000011101
+00100000001000000110100000111110
+11011000010000000000000000000110
+11011010001000000100010011111001
+11011010010000000000000000011101
+00100000001000000110100000011101
+01111001001000000000000000100101
+01000100100001101100000000100001
+11011000010000000000000000000111
+11011010001000000000000110110011
+11011010010000000000000000000000
+01101000000000001000000110110010
+00011111111011111111111000000111
+10011010010000001010010000000000
+00100000001000000110100000011101
+11011000010000000000000000010000
+11011010010000000000000000100011
+01101000000000001000000110110010
+00011111111100100111111000000000
+10011010010000001010010000000000
+00100000011000000000000000000000
+11011010001000000100010001111011
+00100000001000000110100101111101
+11011010001000000100001001100010
+01111001001000000000000000100101
+01000100100001110100000000100001
+00100000010000000110100101110100
+00100000001000000110100000111110
+11011010001000000100010001111011
+00100000001000000110100110000100
+11011010001000000100001001100010
+01111001001000000000000000100101
+01000100100001111100000000100001
+00100000010000000110100101110100
+00100000001000000110100000011101
+11011000010000000000000000011100
+11011010001000000000000110010101
+11011010010000000000000000000000
+00100000001000000110100000011101
+01111001001000000000000000100101
+01000100100010000100000000100010
+01011000000000000000000110010101
+01100000000000010000000110111010
+01110000000000011011001000000000
+11011111001000000000000000000100
+00011111001000100111111000000000
+01100000000000001000000101100001
+01101000000000010000000110111010
+00011111111000100010001000000000
+00100000010000000110100110101100
+00100000011101000000000000000000
+01101000000000010000000110111010
+00011111111000001111111000000111
+01100000000000010000000110111010
+01101000000000001000000110110010
+00011111111000001111111000000001
+01100000000000001000000110110010
+01101000000000001000000101100001
+00011111111000100111001000000000
+11000010000000000110100110010010
+00100000011000000000000000000000
+01101000000001000100001001100010
+01101000000011000100001001101010
+10011000010000011111111000000000
+00100000011110100000000000000000
+01110000010000100101111000000001
+00100000011000000000000000000000
+01101000000000110100001001110100
+00100000011110100000000000000000
+01110000010001001000101100000001
+00100000011000000000000000000000
+11011010010000000000000110110011
+11011111001000000000000000000111
+00100000010000000111111100100101
+00100000001000101110100110110001
+00100000011000000000000000000000
+01111000001101000111110000000000
+00100000011000000000000000000000
+00100000001000000011101111110001
+01111001001000000000000000100101
+01000100100010001100000000100010
+01111001001000000000010000000111
+00100000010000000110100111100101
+01111101001000001000010000000111
+01111001001000000000000000100101
+01000100100010010100000000100010
+00101000010011000000000000000111
+00011000010000010000111000011111
+01101000000000100000000010100011
+11111001001000001111111000000000
+01100000000000100000000010100011
+01101000000000100000000010100111
+11111101001000001111111000000000
+01100000000000100000000010100111
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100100010011100000000100010
+00101000010011000000000000000111
+00011000010000010000111000011111
+01101000000000100000000010100011
+11111001001111111111111000000000
+01100000000000100000000010100011
+01101000000000100000000010100111
+11111001001111111111111000000000
+01100000000000100000000010100111
+00100000011000000000000000000000
+00100000010000000110100111000100
+00100000001000000110100111010010
+00100100010101011110100110111001
+11011000101000001000000001111100
+00100000010000000110100111110100
+01111001010000000000010000000111
+11011000101000001000000001111000
+00100000010000000110100111110100
+01111001001111111000010000000111
+11011000101000001000000001110000
+00100000001000000110100111110100
+01111001010000000000010000000111
+00100000010000000110100111110011
+01111001001000000000010000000111
+11011000101000001000000001110000
+00100000001000000110100111110100
+00011000010000010000111000000111
+00011000010010010111111000000000
+00011111111000010111111000000011
+10011000101000001000101000000000
+11101000101000001000000000000000
+00100000011000000000000000000000
+11011000101000001000000100011100
+00100000010000000110100111011111
+00101000010011111111111000000111
+00100000001000001110100111101011
+10101111111011000000000000000000
+00100000011000000000000000000000
+10101111111011111111111111111111
+00100000011000000000000000000000
+00101111110011111111111000000111
+00100000001000000110100111110000
+00101111110011000000000000000111
+01011000000000000000000000000000
+01111101001000001111111000000111
+10011000010000101000010000000000
+11011000101000001000000001110100
+00100000010000000110100111011111
+00101000010011111111111000000111
+11111001001000001111111000000000
+11100000101000001000000000000000
+00100000011000000000000000000000
+01101000000000001100000101101110
+11000001001111111000000000000000
+01110000100000000111011100000000
+00100000000000000000000000011110
+01110000100000000111011100001000
+00100000011000000000000000000000
+00011111111011010111111000000000
+00011111111100100111111000000000
+01100000000100010000000010100010
+01100000000100010000000010100000
+00100000011000000000000000000000
+01011000000000000000000000000000
+01100000000100010000000010100010
+01011000000000000000000000000001
+01100000000100010000000010100000
+00100000011000000000000000000000
+01011000000000000000000000000000
+01100000000100010000000010100010
+01100000000100010000000010100000
+00100000011000000000000000000000
+11011000101000001000100000000000
+11011111001000000000000000100000
+00100000010000000111111000111011
+01011000000000000000010011111001
+01100000000100010000100001001000
+01100000000100010000100001001010
+01100000000100010000100001001100
+01100000000100010000100001101100
+01100000000100010000100010001100
+01100000000100010000100010101100
+01011000000000000000001000000100
+01100000000100010000100010101110
+01011000000000000000010100000110
+01100000000100010000100010110000
+01011000000000000000010100000100
+01100000000100010000100010110010
+01011000000000000000001000000000
+01100000000100010000100010110100
+01011000000000001111111011111011
+01100000000100010000100010110110
+01011000000000001111101011111001
+01100000000100010000100010111000
+01011000000000001111101011111011
+01100000000100010000100010111010
+01011000000000001111110100000000
+01100000000100010000100010111100
+01011000000000000000010000001000
+01100000000100010000100010111110
+01011000000000000000101000001100
+01100000000100010000100011000000
+01011000000000000000101100001001
+01100000000100010000100011000010
+01011000000000000000010100000000
+01100000000100010000100011000100
+01011000000000001111100011110001
+01100000000100010000100011000110
+01011000000000001110110011101000
+01100000000100010000100011001000
+01011000000000001110100111101011
+01100000000100010000100011001010
+01011000000000001111010100000000
+01100000000100010000100011001100
+01011000000000000001001000100011
+01100000000100010000100011001110
+01011000000000000011011101001011
+01100000000100010000100011010000
+01011000000000000101111001110001
+01100000000100010000100011010010
+01011000000000000111100001111111
+01100000000100010000100011010100
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100100010100100000000100010
+01101000000100010000000001010000
+01111001001111111111111000001110
+01100000000100010000000001010000
+01110000100000001011000000010001
+01110000100000001011000100000001
+01110000100000001011001000000001
+01110000100000001011001100010001
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100100010101100000000100010
+01101000000100010000000001010000
+01111001001000000111111000001110
+01100000000100010000000001010000
+01110000100000001011000000000100
+01110000100000001011001100000100
+01110000100000001011000100000000
+01110000100000001011001000000000
+00100000011000000000000000000000
+01101000000000001000000000110000
+11000100000000010000000000000000
+11011000101000000000000010110101
+11011111001000000000000000011110
+01101000000100001000000100110100
+11100000101000001000000000000000
+11000010000000000110101001011000
+00100000011000000000000000000000
+01101000000000001000000000110000
+11000100000000010000000000000000
+11011000110000000000000011010011
+00011000000000000111001000011110
+11101000110000001000000000000000
+01100000000100001000000000001001
+11000010000000000110101001100000
+00100000011000000000000000000000
+00100000011000000000000000000000
+00100000010000000110101010000111
+11011000010000000000000000000110
+00100000001000000110100111011010
+00100000010000000110101001100101
+11011000010000000000000000000110
+00100000001000000110100111101101
+00100000010000000110101001100101
+11011000010000000000000000000110
+00100000001000000110100111101111
+00100000010000000110101010000111
+11011000010000000000000000000111
+00100000001000000110100111011010
+00100000010000000110101001101110
+11011000010000000000000000000111
+00100000001000000110100111101101
+00100000010000000110101001101110
+11011000010000000000000000000111
+00100000001000000110100111101111
+00100000010000000110101010000111
+01101000000100001000000001111000
+01111001001000000111111000000110
+01100000000100001000000001111000
+11011000010000000000000000000110
+00100000001000000110100111010001
+00100000010000000110101010000111
+01101000000100001000000001111000
+01111001001000000111111000000111
+01100000000100001000000001111000
+11011000010000000000000000000111
+00100000001000000110100111010001
+01101000000100001000000010000001
+00011111111000011111111000000100
+01100000000100001000000010000001
+00100000011000000000000000000000
+01101000000100001000000010000001
+00011111111000010111111011111011
+01100000000100001000000010000001
+00100000011000000000000000000000
+01101000000100001000000010000001
+00101111111011111111111000000010
+00100000011000000000000000000000
+01011000000000000110101010010001
+01100000000000010100001010010110
+00100000011000000000000000000000
+00100000010000000110101100010100
+01101000000000001000010010000001
+11000000000000001110101010010110
+11000000000000010110101010011100
+00100000001000000011101111110001
+11011000010000000000000000010111
+01100000000010010100010011000010
+00100000010000000101101010001000
+11101000110000001000000000000000
+00100000010000000110101010011110
+00100000001000000101101101000010
+00100000010000000110101010011110
+00100000001000000101101101010001
+00011000110000100010001000000000
+01111001001000000000000000100101
+01000100100110001100000000100110
+11101000110000001000000000000000
+11000000000000000110101010110111
+11000000000000001110101010111100
+11000000000000010110101010111101
+11000000000000011110101010111110
+11000000000000100110101101010000
+11000000000000101110101011111111
+11000000000000110110101101010001
+11000000000000111110101101010010
+11000000000001000110101010111111
+11000000000001001110101011000000
+11000000000001010110101011000001
+11000000000001011110101011000010
+11000000000001100110101011000011
+11000000000001101110101011010101
+11000000000001110110101011100011
+11000000000001111110101011110000
+11000000000010000110101011110001
+11000000000010001110101011111000
+11000000000010010110101100011001
+11000000000010011110101101000101
+00100000011000000000000000000000
+00011010001000100000110000000000
+11101000110000001000000000000000
+00011111111011010111111000000000
+01100000000000011000010001101101
+00100000011000000000000000000000
+00100000011000000000000000000000
+00100000011000000000000000000000
+00100000011000000000000000000000
+00100000011000000000000000000000
+00100000011000000000000000000000
+00100000011000000000000000000000
+00100000011000000000000000000000
+11101000110000100000000000000000
+01100000000100001000000010000010
+00011111111011001111111000000000
+01101000000110001000000010000001
+00011000010000010000010001111111
+10011000010000011000010000000000
+01100000000110001000000010000001
+00011111111011001111111000000000
+01101000000110001000000001010001
+00011000010000010000010011011111
+10011000010000011000010000000000
+01100000000110001000000001010001
+00011111111011001111111000000000
+01101000000110001000000001000010
+00011000010000010000010000111111
+10011000010000011000010000000000
+01100000000110001000000001000010
+00100000001000000110101010110111
+11101000110001001000000000000000
+01101000000110001000000010000101
+00011000010000010000010000111111
+10011000010000011000010000000000
+01100000000110001000000010000101
+00011111111011001111111000000000
+01100000000100010000000010100000
+00011111111100010111111000000000
+01100000000100010000000010100010
+00011111111100010111111000000000
+01100000000100010000000010100100
+00011111111100010111111000000000
+01100000000100010000000010100110
+00100000001000000110101010110111
+11101000110000100000000000000000
+01100000000100100000000001110000
+11101000110000100000000000000000
+01100000000100100000000001111000
+11101000110000100000000000000000
+01100000000100100000000001111100
+11101000110000001000000000000000
+01100000000100001000000010000000
+11101000110000001000000000000000
+01100000000100001000000010000001
+11101000110000001000000000000000
+01100000000100001000000010000010
+00100000001000000110101010110111
+00100000001000000110101011110001
+01110000000001000110110100010000
+11011000101000000000010001101110
+01101000000100100000000001110100
+11100000101000100000000000000000
+01101000000100100000000100011100
+11100000101000100000000000000000
+00100000011000000000000000000000
+11101000110010001000000000000000
+11101000110000001000000000000000
+00011111111010011111111000000000
+00011111111100100111111000000000
+10011000010000011000010000000000
+00100000010000000110100111110011
+00100000001000000110101010110111
+11101000110010001000000000000000
+01100000000110001000001100000001
+11101000110000001000000000000000
+00101111111000011111111000000001
+11101000110000001000000000000000
+01100000000100001000001100000111
+00100000001000001110101100001000
+11101000110000001000000000000000
+01100000000100001000001100000111
+11101000110000001000000000000000
+00011111111000100111001000000000
+00011111111000001111111111111111
+00011111111000011111111010010000
+01100000000100001000001100000010
+01110000100000110000001100000010
+00100000000000000000000000000001
+11011000101000000000010001101101
+01101000000100001000001100000111
+11100000101000001000000000000000
+11000010000000000110101100010000
+00100000011000000000000000000000
+01011000000000000000000000000000
+01100000000000100000010001101101
+11100000101001000000000000000000
+11100000101001000000000000000000
+00100000011000000000000000000000
+00011010001000100111111000000000
+00011111111000001111111000000001
+01100000000000010000010010000011
+01101000000000010100011101001001
+11000000000000000110101100101000
+01101000000000010100011101001001
+01101000000010010000010010000011
+11101000010010010000000000000000
+10011000010000001111111000000000
+01101000000010010000010010000011
+00011000010000001000010000000010
+00011000010000100000110000000000
+11101000110010001000000000000000
+00011000110000100010001000000000
+00100000001000000110100001000010
+01011000000000000000000000000010
+00011111111100001111111000000000
+01100000000000010000001000100101
+11011010011000000110100000100011
+11011111001000000000000000000010
+00100000010000000110011011100010
+00100100001000101110101100110110
+01101000000000010000001000100101
+00011111111100001111111000000000
+10011000010000001111111000000000
+01100000000000010100011101001001
+00011111111100001111111000000000
+01100000000000010000001000100101
+11000010000000000110101100101101
+01101000000000010100011101001001
+00011111111100001111111000000000
+01100000000000010000001000100101
+11011010011000000110100000100011
+11011111001000001111111111111111
+00100000010000000110011011100010
+00100100001000101110101100011110
+01101000000000010000001000100101
+00011111111100001111111000000000
+10011000010000001111111000000000
+00011111111000001111111000000010
+01100000000000010100011101001001
+00011111111100001111111000000000
+01100000000000010000001000100101
+11000010000000000110101100111011
+01101000000000010100011101001001
+00011111111000001111111000000010
+00011111111100001111111000000000
+01100000000000010100011101001001
+11011010001000000100011101001001
+11011000010000000000000000000010
+11011111111000000000000000000000
+00100000010000000110100001000010
+01011000000000000000000000000000
+01100000000000010100011101001001
+00100000011000000000000000000000
+00100000011000000000000000000000
+00100000011000000000000000000000
+00100000011000000000000000000000
+00100000011101011000000000000000
+01110000010001110101010100000000
+01110000000001001000010100000011
+01110000000001001000011000000011
+01110000000001001000101000010001
+01110000000001001000101100010011
+01011000000000000000000000000000
+01100000000000011000010010000111
+01100000000000001100001010111101
+01110000010001111111001100000000
+01111001001000000000000000100101
+01000100110111111100000000110111
+01011000000000000000000000000000
+01100000000000001100001010111101
+01100000000000001100011101010010
+01100000000000001100011101001011
+01110000010001110101011101010000
+00100000011000000000000000000000
+00011000010000011000010000000010
+00100000011000000000000000000000
+00011000010000100111111000000000
+00011111111011011111111000000000
+01100000000000001100011101010000
+00011000000000000111111000111111
+00011111111011011111111000000000
+01100000000000001100011101001111
+00011000000000000111111000000001
+00011111111011011111111000000000
+01100000000000001100011101001110
+00100000010000000110101110011101
+00011000010000100111111000000000
+00100000011000000000000000000000
+00011111111011011111111000000000
+01100000000000001100011101010000
+00011000000000000111111001110011
+00011111111011011111111000000000
+01100000000000001100011101001111
+00011000000000000111111000000001
+00011111111011011111111000000000
+01100000000000001100011101001110
+00100000001000000110101110011101
+01101000000000001100011101010001
+00100000001110100110101110000000
+01011000000000000000000001110000
+00100000011000000000000000000000
+01011000000000000000000010101010
+00100000011000000000000000000000
+00011111111011011111111000000000
+01100000000000001100011101010000
+00011000000000000111111011101111
+00100000010000000110101110010001
+01101000000010010000010010001111
+00011000010000100000101000000000
+11100000101000001000000000000000
+00011000101000100000010000000000
+01100000000010010000010010001111
+00011000000000000111111011111111
+00100000010000000110101110010001
+01101000000010010000010010001111
+00011000010000100000101000000000
+11100000101000001000000000000000
+00100000011000000000000000000000
+00011111111011011111111000000000
+01100000000000001100011101001111
+01101000000000010100011101001111
+00011111111011010111111000000000
+01100000000000011000010010001100
+11011010001000000000000100000111
+11011010010000000000000000001111
+00100000010000000110101110101010
+00011111111000101111111011010111
+00011111111001000111111000000000
+00011111111011011111111000000000
+00100000011000000000000000000000
+01101000000000011100011101001110
+01100000000000011000010010001100
+11011010001000000000000100000111
+11011010010000000000000000001111
+00100000010000000110101110101010
+00011111111011010111111000000000
+11011010010000000000000000000111
+00100000010000000110101110101010
+00011111111000101111111000101011
+00011111111001000111111000000000
+00011111111011011111111000000000
+00011111111000100000010000000000
+00100000011000000000000000000000
+11011010011000000000000000000000
+00011010010000100111001000000000
+00100000010000000111110111111011
+00011111111000100000010000000000
+00011000010000100111111000000000
+00011010011000111010011000000000
+11000011000001000110101110110011
+10011010001000101000010000000000
+00011010011000001010011000000001
+00011000010000111000010000000000
+01101000000000011000010010001100
+00011010010000001010010111111111
+00101010010000011111111011111111
+00100000001000001110101110111101
+00011010010000100111001000000000
+00100000010000000111110111111011
+00101111111011111111111000000000
+01111001001000001000010000000000
+00100000001000000110101110101110
+00011000010000110111111000000000
+00100000011000000000000000000000
+01101000000010001100011101001011
+00011000010010111000010000000000
+01111001001000000000010000000000
+01101000000000001100011101010001
+00100100010110100110101101100101
+01100000000010001000010010100101
+00100000011000000000000000000000
+00011000010010111000010000000000
+01111001001000000000010000000000
+01101000000000001100011101010001
+00100000010110100110101101100101
+00100000011000000000000000000000
+00011000010000111000010000000000
+01101000000000001100011101010001
+01111001001110100000010000000000
+00100000011000000000000000000000
+01101000000010001000010010010100
+01110000000001001001011011010111
+00100000010000000110110011110110
+01101000000000001100001010111010
+01111001001000000111111000000110
+01111001001000000111111000000111
+01100000000000001100001010111010
+01110000010001110101000100000000
+00100000001000000110110011010111
+01101000000000001100001010111010
+01111001001000000111111000000111
+01100000000000001100001010111010
+00100000001000000110110011010111
+01111001001000000000000000100101
+01000100111000000100000000111000
+01101000000000001100011111110011
+11000000000000000110101111100001
+00100000001000000110110010001011
+01101000000000010000001011001011
+00011111111000100000110000000000
+00100000010000000110110000001111
+01101000000000001000010010010100
+11000000000000000110101111100111
+00100000001000000110110001010111
+01111001001000000000000000100101
+01000100111000001100000000111000
+01101000000000001000010010010101
+11000000000111111110101111001111
+11000000001110011110101111011000
+11000000011101111110101111101111
+11000001001010011000000000000000
+00100000001000000011101111110001
+01101000000000010000010010011001
+00011111111000100000110000000000
+00100000010000000110110000011010
+01101000000000001000010010011011
+11000000001000001110101111111000
+11000000001000000110110000000100
+11000000001110001110110000111111
+11000000001110000110110001001110
+00100000001000000110110011010111
+00100000010000000110110000000110
+01101000000000001100011101001011
+00011111111000110111111000000000
+00011111111001100111110000000001
+00100000001000101110101111111110
+00100000001000000011101111110001
+01101000000000001100001010111101
+01111001001000000111111000000000
+01111001001000000111111000000001
+01100000000000001100001010111101
+00100000010000000110110100100010
+00100000001000000110110011010111
+00100000010000000110110000000110
+00100000001000000110110011010111
+00100000010000000110110000100010
+00100000001000000110110000110000
+00100000010000000110110000100010
+11101000110000001000000000000000
+00011111111010010111111000000000
+01100000000000001100011101011000
+11101000110000001000000000000000
+01100000000000001000010010100000
+00100000011000000000000000000000
+11101000110000001000000000000000
+01100000000000001000010010010011
+00011111111010010111111000000000
+01100000000000001000010010010100
+11101000110000001000000000000000
+01100000000000001000010010010101
+00100000010000000110110000100111
+01100000000010010000010010010111
+00011000110000100111111000000000
+01100000000000010000010010011001
+00100000011000000000000000000000
+11101000110000001000000000000000
+00011111111000110111111000000000
+01100000000000001000010010011011
+00100000010000000110110000100111
+01100000000010010000010010011100
+00011000110000100111111000000000
+01100000000000010000010010011110
+00100000011000000000000000000000
+01101000000000010000010010011110
+00011111111000100000110000000000
+00100000011000000000000000000000
+01101000000000010000010010011110
+00011111111000100000110000000000
+11101000110000001000000000000000
+00011111111000100000010000000000
+00011000010000110000010000000000
+11000011100000000000000000000000
+11101000110000001000000000000000
+00011111111010011111111000000000
+00011111111100100111111000000000
+10011000010000001000010000000000
+00100000011000000000000000000000
+11101000110000001000000000000000
+01100000000000001100011101001011
+11101000110000001000000000000000
+01100000000000001000010010100001
+11101000110000001000000000000000
+01100000000000001000010010100010
+11101000110000001000000000000000
+01100000000000001000010010100011
+11101000110000010000000000000000
+01100000000000010100011101001100
+11101000110000001000000000000000
+01100000000000001000010010100100
+11101000110000001000000000000000
+01100000000000001100011101010110
+00100000011000000000000000000000
+00100000010000000110110000001000
+01101000000000001100011101011000
+00011111111001100111110000000001
+00100000001000101110110001000100
+00100000001000000011101111110001
+01101000000000001100001010111101
+01111001001000000111111000000101
+01111001001000000111111000000110
+01100000000000001100001010111101
+01101000000010001100011101001011
+00011000010010111000010000000000
+00011000010000011000010000000011
+00100000010000000110110101010101
+01110000010001110101010100000011
+00100000001000000110110011010111
+00100000010000000110110000001000
+01101000000000001100011101011000
+00011111111001100111110000000001
+00100000001000101110110001010011
+00100000001000000011101111110001
+01101000000000001100001010111101
+01111001001000000111111000000111
+01100000000000001100001010111101
+00100000001000000110110011010111
+01101000000000001000010010010100
+00011111111001100111110000000001
+00100000001000101110110001011011
+00100000001000000011101111110001
+01101000000000001000010010010101
+11000000001110011110110001100010
+11000000000111111110110001100110
+11000000011101111110110010000000
+11000000011111111110110001111000
+11000000001010011110110010000101
+00100000001000000011101111110001
+01101000000000001100001010111101
+01111001001000000111111000000011
+01100000000000001100001010111101
+00100000001000000110110011010111
+01101000000000001100001010111101
+01111001001000000111111000000011
+01111001001000000111111000000010
+01100000000000001100001010111101
+01101000000000001000010010010011
+00100000010000000110101101110011
+01100000000000001000010010010110
+00100000010000000110110011110110
+01101000000000001000010010010011
+00011111111010110111111000000000
+01100000000000001100011101001011
+00011111111010111111111000000000
+01111001001111111111111000000001
+01111001001000000111111000000000
+11011000010000000100011101010011
+01100000000010010000010010001111
+00100000010000000110101110000010
+00100000001000000110110011010111
+01101000000000010000010010011001
+00011111111000100000110000000000
+00011111111000001111111000000001
+01100000000000010000010010011001
+11101000110000001000000000000000
+01101000000010001100011101010110
+10011000010000001111111000000000
+01100000000000001100011101010110
+00100000010000000110110110001000
+00100000010000000110101110111111
+00100000010000000110110101101101
+00100000010000000110110110001110
+00100000001000000110110011010111
+00100000010000000110101101011101
+01101000000000001000010010010011
+00100000010000000110101101110011
+01100000000000001000010010010110
+00100000010000000110110011110110
+00100000001000000110110011010111
+01101000000000010000001011001011
+00011111111000100000110000000000
+00100000010000000110110000001111
+01101000000000001000010010010100
+11000000000000000110110010010001
+00100000001000000110110011000110
+01111001001000000000000000100101
+01000100111000010100000000111000
+01101000000000001000010010010101
+11000000000111111110101111001111
+11000000001110011110101111011000
+11000000011101111110110010011000
+00100000001000000110110011010111
+01101000000000010000010010011001
+00011111111000100000110000000000
+00100000010000000110110000011010
+01101000000000001000010010011011
+11000000001000001110110010100001
+11000000001000000110110010100001
+11000000001110001110110010101100
+11000000001110000110110010111100
+00100000001000000110110011010111
+00100000010000000110110000000110
+01101000000000001100011101001011
+00011111111000110111111000000000
+01101000000010001100011101010010
+10011000010001100111110000000000
+00100000001000101110110010101000
+00100000001000000011101111110001
+01101000000000001100001010111101
+01111001001000000111111000000001
+01100000000000001100001010111101
+00100000001000000110110011010111
+00100000010000000110110000001000
+01101000000000001100011101011000
+01101000000010001100011101010010
+10011000010001100111110000000000
+00100000001000101110110010110011
+00100000001000000011101111110001
+00100000001000000110110011010111
+01101000000000001100001010111101
+01111001001000000111111000000101
+01111001001000000111111000000110
+01100000000000001100001010111101
+01101000000010001100011101001011
+00011000010010111000010000000000
+00011000010000011000010000000011
+00100000010000000110110101010101
+00100000001000000110110011010111
+00100000010000000110110000001000
+01101000000000001100011101011000
+01101000000010001100011101010010
+10011000010001100111110000000000
+00100000001000101110110011000010
+00100000001000000011101111110001
+01101000000000001100001010111101
+01111001001000000111111000000111
+01100000000000001100001010111101
+00100000001000000110110011010111
+01101000000000001000010010010100
+01101000000010001100011101010010
+10011000010001100111110000000000
+00100000001000101110110011001100
+00100000001000000011101111110001
+00100000001000000110110011010111
+01101000000000001000010010010101
+11000000001110011110110011010001
+11000000011101111110110010000000
+11000000011111111110110001111000
+11000000001010011110110011010110
+01101000000000001100001010111101
+01111001001000000111111000000011
+01100000000000001100001010111101
+00100000001000000110110011010111
+00100000001000000110110011010101
+00100000001000000110110010000101
+00100000011000000000000000000000
+01101000000000001100011101010101
+00100000011110100000000000000000
+11000000000000011110110011011100
+00100000001000000011101111110001
+01110000010001110101010100000000
+00100000010000000101001011100000
+11011000010000000000000000000001
+00011000010010011000010000000000
+00011000010000011000010000000011
+11011010001000000000000010101010
+00100000010000000110110100111111
+00100000010000000101001011101111
+00011000101000100000110000000000
+11101000110000010000000000000000
+00100000001110100011101111110001
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100111000011100000000111000
+00100000010000000101001011101111
+01011000000000000000000000000100
+11100000101000010000000000000000
+01101000000000010100001010110011
+11100000101000010000000000000000
+01101000000000001000010010010011
+11100000101000001000000000000000
+01011000000000000000000100111111
+11100000101000010000000000000000
+01101000000000001000010010010110
+11100000101000001000000000000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100111000100100000000111000
+00100000010000000101001011100000
+00100000010000000101001011101111
+01011000000000000000000000000100
+11100000101000010000000000000000
+01101000000000010100001010110011
+11100000101000010000000000000000
+01101000000000001000010010010011
+11100000101000001000000000000000
+01011000000000000000000101110011
+11100000101000010000000000000000
+01101000000000001000010010010110
+11100000101000001000000000000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100111000101100000000111000
+00100000010000000101001011101111
+01011000000000000000000000001110
+11100000101000010000000000000000
+01101000000000010100001010110011
+11100000101000010000000000000000
+01101000000000001100011101010001
+00011111111000111111111000000000
+01111001001000000111111000000000
+11100000101000001000000000000000
+01011000000000000001010111101111
+11100000101000010000000000000000
+01011000000000000001000110000011
+11100000101000010000000000000000
+00011000010000100111111000000000
+11100000101000001000000000000000
+01011000000000000000000011110000
+11100000101000011000000000000000
+01011000000000000000000001111111
+11100000101000010000000000000000
+01011000000000000000000000000000
+11100000101000001000000000000000
+01011000000000000000000000000001
+11100000101000001000000000000000
+00100000010000000110101101111100
+11100000101000001000000000000000
+01110000010001110101011100010000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100111000110100000000111000
+00100000010000000101001011100000
+00100000010000000101001011101111
+01011000000000000000000000001110
+11100000101000010000000000000000
+01101000000000010100001010110011
+11100000101000010000000000000000
+01101000000000001100011101010001
+00011111111000111111111000000000
+01111001001000000111111000000000
+11100000101000001000000000000000
+01011000000000000001010111101111
+11100000101000010000000000000000
+01011000000000000001000110000001
+11100000101000010000000000000000
+01101000000000001100011101001011
+11100000101000001000000000000000
+01011000000000000000000011100000
+11100000101000011000000000000000
+01011000000000000000000001111111
+11100000101000010000000000000000
+01011000000000000000000000000000
+11100000101000001000000000000000
+01011000000000000000000000000111
+11100000101000001000000000000000
+00100000010000000110101101111100
+11100000101000001000000000000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100111000111100000000111000
+00100000010000000101001011101111
+01011000000000000000000000001000
+11100000101000010000000000000000
+01101000000000010100001010110011
+11100000101000010000000000000000
+01101000000000001100011101010001
+00011111111000111111111000000000
+01111001001000000111111000000000
+11100000101000001000000000000000
+01011000000000000000100111101111
+11100000101000010000000000000000
+01011000000000000000010111100011
+11100000101000010000000000000000
+00011000010000100111111000000000
+11100000101000001000000000000000
+01011000000000000000000010001101
+11100000101000001000000000000000
+00100000010000000110101101111100
+11100000101000001000000000000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100111001000100000000111001
+00100000010000000101001011100000
+00100000010000000101001011101111
+01011000000000000000000000001000
+11100000101000010000000000000000
+01101000000000010100001010110011
+11100000101000010000000000000000
+00011000010000100001011000000000
+01101000000000001100011101010001
+00011111111000111111111000000000
+01111001001000000111111000000000
+11100000101000001000000000000000
+01011000000000000000100111101111
+11100000101000010000000000000000
+01011000000000000000010111100001
+11100000101000010000000000000000
+00011001011000100111111000000000
+11100000101000001000000000000000
+01011000000000000000000010001101
+11100000101000001000000000000000
+00100000010000000110101101111100
+11100000101000001000000000000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100111001001100000000111001
+01101000000000001100011101010111
+00100000011110100000000000000000
+01101000000100010000000100010010
+00100100011110100000000000000000
+00011010001000100111111000000000
+01100000000000001000000101100010
+01100000000010001000000101100001
+00100000010000000101001001111010
+00100100011110100000000000000000
+00100000010000000101001011100000
+00100000010000000101001011101111
+01011000000000000000000000000101
+11100000101000010000000000000000
+01101000000000010100001010110011
+11100000101000010000000000000000
+01101000000000001000010010100101
+11100000101000001000000000000000
+01011000000000000000000111111111
+11100000101000010000000000000000
+01101000000000001100011101010111
+11100000101000001000000000000000
+01101000000000001100011101010100
+11100000101000001000000000000000
+01110000010001110101011100000000
+00100000011000000000000000000000
+01101000000000010000010010010111
+00100000011110100000000000000000
+01101000000000001100011101010111
+00011111111000001111111000000001
+01100000000000001100011101010111
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100111001010100000000111001
+01101000000000010000010010010111
+00011111111000100111001000000000
+00100000010000000110100011110111
+01101000000000010000010010011001
+00011111111000100000110000000000
+00100000010000000100100101110110
+00100000001000000110100011111010
+01111001001000000000000000100101
+01000100111001011100000000111001
+01101000000000001100011101010110
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001100011101010110
+01101000000000010100011101001100
+01101000000010010100100000001110
+10011000010001100111110000000000
+00100000001000010110110110100010
+01100000000000010100100000001110
+01101000000000001100011101010111
+00100000001110100110110110101010
+01110000000001001010100000000001
+01101000000000001100011101010100
+01100000000000001000010010100111
+01011000000000000000000011111111
+01100000000000001000010010100110
+00100000001000000110110110101111
+01110000000001001010100000000000
+01101000000000001100011101010011
+01100000000000001000010010100111
+01011000000000000000000011101111
+01100000000000001000010010100110
+01111001001000000000000000100101
+01000100111001100100000000111001
+01101000000000001100100000001110
+00011111111001100111110001111111
+00100000001000010110110110110111
+01101000000000001000010010101000
+00011111111000001111111000000001
+01100000000000001000010010101000
+00100000010000000110101110111111
+01101000000000010100100000001110
+00011111111000001111111000001000
+01101000000010001000010010101000
+10011000010000001010001000000000
+00100000010000000101001001001000
+01100000000000010000001011011110
+00011111111000001111111000000100
+01100000000000010000001011100000
+00011111111000100000101000000000
+01101000000000001000010010100101
+11100000101000001000000000000000
+01101000000000001000010010100110
+11100000101000001000000000000000
+00100000010000000110110111011000
+00100000010000000110110111101000
+00100000010000000111111101101011
+01101000000000001100100000001110
+00011111111000100111001000000000
+00100000010000000100100101111100
+01101000000000001000010010100111
+11100000101000001000000000000000
+01101000000000010000001011011110
+00011111111000100000101000000000
+01101000000000010100100000001110
+01101000000010001000010010101000
+10011000010000001111111000000000
+00011111111000001111111000000100
+11100000101000010000000000000000
+01101000000000010100001010110011
+11100000101000010000000000000000
+01110000010001110101011100000000
+00100000001000000100001010001100
+01101000000000010100100000001110
+00011111111001100111110001111111
+00100100001000010110110111011111
+00011111111000111111111000000000
+01111001001000000111111000000000
+11100000101000001000000000000000
+00100000011000000000000000000000
+01101000000000010100100000001110
+00011111111010010111111000000000
+00011111111100011000010000000000
+00011111111000010111111001111111
+00011111111000111111111000000000
+01111001001111111111111000000000
+11100000101000001000000000000000
+11100000101010001000000000000000
+00100000011000000000000000000000
+01101000000000001100011101010111
+00100000011110100000000000000000
+11100000101000001000000000000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100110011101100000000110011
+00100000010000000111110001000101
+00100000010000000011111001110011
+00100000010000000110001000110101
+01111001001000000000000000100101
+01000100110011110100000000110011
+00100000010000000111100000010011
+00100000010000000111011111101110
+00100000010000000111011111111110
+01111001001000000000000000100101
+01000100110011111100000000110011
+01101000000000001100000100110010
+11000001000000001000000000000000
+00100000010000000101001001111010
+00100100011110100000000000000000
+00100000010000000100110111001101
+00100000010000000101001001111010
+00100100011110100000000000000000
+01111001001000000000000000100101
+01000100110100000100000000110100
+00100000010000000110111001000111
+00100000010000000100111101101110
+00100000010000000110110011011000
+00100000010000000110111000001010
+01111001001000000000000000100101
+01000100110100001100000000110100
+00100000010000000101001001111010
+00100100011110100000000000000000
+00100000001000000011111001101111
+01111001001000000000000000100101
+01000100110100010100000000110100
+01101000000000001000001011100110
+11000010100000000101000010001111
+11000010100000111101000010011001
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100110100011100000000110100
+00100000010000000101001001111110
+00100000011110100000000000000000
+01101000000000001000000001001011
+11000011100000110000000000000000
+00100000010000000101001001100001
+01100000000000010000000101111001
+00011111111000100000110000000000
+11101000110000010000000000000000
+00011111111000001111111000000100
+01100000000000010000000010010001
+01110000000000001001000000000110
+01111001001000000000000000100101
+01000100110100100100000000110100
+01101000000000010100001010101111
+00100000001110100110111000101101
+01101000000000001000000001001011
+11000100000000111000000000000000
+01111001001111111111111000000111
+01100000000000001000000001001011
+01110000000000001001000000000101
+01101000000010010100001010101111
+01101000000000010000000101111001
+10011000010000001111111000000000
+01100000000000010000000101111001
+01101000000000010000000010010001
+10011000010001100111111000000000
+01100000000000010000000010010001
+01111001001000000000000000100101
+01000100110100101100000000110100
+01101000000000010000000010010001
+00100000001110100011101111110001
+11011000010000000000000100000100
+10011000010001100111111000000000
+00100100001000010110111000111011
+01111001001000000000000000100101
+01000100110100110100000000110100
+01100000000010010000000010010001
+01101000000000010100001010101111
+10011000010000001111111000000000
+01100000000000010100001010101111
+00100000001000000110111000111101
+01011000000000000000000000000000
+01100000000000010100001010101111
+01101000000000001000000001001011
+01111001001000000111111000000110
+01100000000000001000000001001011
+00100000011000000000000000000000
+01101000000000001100011111110110
+11000010100000000110111001000101
+01110000000000101110111000000001
+00100000011000000000000000000000
+01110000000000101110111000001111
+00100000011000000000000000000000
+01101000000000001100011111110011
+00100100001110100110111001001101
+01101000000000001000001011101101
+00100000011110100000000000000000
+01110000000000101110110100000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100110100111100000000110100
+01101000000000001000001011101110
+00100000011110100000000000000000
+11000000000000001110111001101110
+11000000000000010110111011000111
+11000000000000011110111001110100
+11000000000000100110111011001011
+11000000000111011110111001111110
+11000000000111100110111011001110
+11000000000001101110111010000011
+11000000000001110110111011010011
+11000000000001111110111010000110
+11000000000010000110111011011001
+11000000000010001110111010001100
+11000000000010010110111011011101
+11000000000010011110111010010010
+11000000000010100110111011100001
+11000000000010101110111010011000
+11000000000010110110111011100101
+11000000000010111110111010011110
+11000000000011000110111011101010
+11000000000011001110111010100100
+11000000000011010110111011101110
+11000000000011011110111010101010
+11000000000011100110111011110010
+11000000000011101110111010110000
+11000000000011110110111011110111
+11000000000011111110111010110110
+11000000000100000110111011111011
+11000000000100001110111011000001
+11000000000100010110111011111111
+00100000011000000000000000000000
+00100000010000000110111100001010
+01110000000000101110111000000010
+01101000000000001100001010111001
+01111001001000000111111000000000
+01100000000000001100001010111001
+00100000011000000000000000000000
+01110000000000101110111000000100
+01101000000000001100001010111001
+11000011100000010000000000000000
+01110000000000101110111000000011
+00100000010000000110111100010010
+01110000000000101110111000000100
+01101000000000001100001010111001
+01111001001000000111111000000010
+01100000000000001100001010111001
+00100000011000000000000000000000
+00100000010000000101001001111110
+00100100011110100000000000000000
+00100000010000000110111100100011
+01110000000000101110111000111100
+00100000011000000000000000000000
+00100000010000000110111100011000
+01110000000000101110111000001110
+00100000011000000000000000000000
+00100000010000000110111100110110
+01110000000000101110111000010000
+01101000000000001100001010111011
+01111001001000000111111000000000
+01100000000000001100001010111011
+00100000011000000000000000000000
+00100000010000000110111100111110
+01110000000000101110111000010010
+01101000000000001100001010111011
+01111001001000000111111000000010
+01100000000000001100001010111011
+00100000011000000000000000000000
+00100000010000000110111101000100
+01110000000000101110111000010100
+01101000000000001100001010111100
+01111001001000000111111000000000
+01100000000000001100001010111100
+00100000011000000000000000000000
+00100000010000000110111101001100
+01110000000000101110111000010110
+01101000000000001100001010111100
+01111001001000000111111000000010
+01100000000000001100001010111100
+00100000011000000000000000000000
+00100000010000000110111100101000
+01110000000000101110111000011000
+01101000000000001100001010111010
+01111001001000000111111000000000
+01100000000000001100001010111010
+00100000011000000000000000000000
+00100000010000000110111100110000
+01110000000000101110111000011010
+01101000000000001100001010111010
+01111001001000000111111000000010
+01100000000000001100001010111010
+00100000011000000000000000000000
+00100000010000000110111101010010
+01110000000000101110111000011100
+01101000000000001100001010111010
+01111001001000000111111000000110
+01100000000000001100001010111010
+00100000011000000000000000000000
+00100000010000000110111101011010
+01101000000000001100001010111101
+01111001001000000111111000000000
+01100000000000001100001010111101
+01110000000000101110111000011110
+00100000011000000000000000000000
+00100000010000000110111101100001
+01101000000000001100001010111101
+01111001001000000111111000000010
+01100000000000001100001010111101
+01110000000000101110111000100000
+01101000000000001100011101010010
+00011111111010011111111000000000
+00011111111000011111111000000011
+11011000010000000100011101010011
+01100000000010010000010010001111
+00100000001000000110101110000010
+00100000010000000110111101101100
+01101000000000001100001010111101
+01111001001000000111111000000100
+01100000000000001100001010111101
+01110000000000101110111000100010
+00100000011000000000000000000000
+01101000000000001100001010111001
+11000100000000001000000000000000
+01110000000000101110111000000011
+00100000001000000110111001001101
+01101000000000001100001010111001
+11000001100111111000000000000000
+01110000000000101110111000111011
+01101000000000001000001011101100
+11000001100010111000000000000000
+01110000000000101110110000000000
+01110000000000101110111000001101
+00100000001000000110111001001101
+01101000000000001100001010111001
+00100100011110100000000000000000
+01101000000000001100011111110110
+11000010100000000110111100000010
+11000010100000110110111100000100
+00100000001000000110111100001000
+01101000000000001100001010111011
+11000100000000001000000000000000
+01110000000000101110111000010001
+00100000001000000110111001001101
+01101000000000001100001010111011
+11000001100111111000000000000000
+01110000000000101110111000010011
+00100000001000000110111001001101
+01101000000000001100001010111100
+11000100000000001000000000000000
+01110000000000101110111000010101
+00100000001000000110111001001101
+01101000000000001100001010111100
+11000001100111111000000000000000
+01101000000000001100011111110110
+11000010100000110110111100000100
+00100000001000000110111100001000
+01101000000000001100001010111010
+11000100000000001000000000000000
+01110000000000101110111000011001
+00100000001000000110111001001101
+01101000000000001100001010111010
+11000001100111111000000000000000
+01110000000000101110111000011011
+00100000001000000110111001001101
+01101000000000001100001010111010
+11000001111111111000000000000000
+01101000000000001100011111110110
+11000010100000110110111100000110
+00100000001000000110111100001000
+01101000000000001100001010111101
+11000100000000001000000000000000
+01110000000000101110111000011111
+00100000001000000110111001001101
+01101000000000001100001010111101
+11000100000000011000000000000000
+01110000000000101110111000100001
+00100000001000000110111001001101
+01101000000000001100001010111101
+11000001111111111000000000000000
+00100000001000000110111100001000
+01110000000000101110111000001111
+00100000001000000110111001001101
+01110000000000101110111000010111
+00100000001000000110111001001101
+01110000000000101110111000011101
+00100000001000000110111001001101
+01110000000000101110111000000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100110101000100000000110101
+00100000010000000101001011000100
+01011000000000000000000000000001
+00011111111000100000010000000000
+01011000000000000000000001010000
+00011111111000100001011000000000
+00100000001000000101000010110000
+01111001001000000000000000100101
+01000100110101001100000000110101
+00100000010000000101001011000100
+01101000000000010100001010110001
+00011111111000100000010000000000
+00100000001000000101000011000000
+01111001001000000000000000100101
+01000100110101010100000000110101
+00100000010000000101001011000100
+01101000000000010100001010110001
+00011111111000100000010000000000
+11011001011000000000000001010000
+00100000010000000101000011010110
+01101000000000001100001010111001
+01111001001111111111111000000101
+01100000000000001100001010111001
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100110101011100000000110101
+00100000010000000101001011010010
+00100000010000000111000110110000
+00100000001000000101000011110010
+01111001001000000000000000100101
+01000100110101100100000000110101
+00100000010000000101001011000100
+01011000000000000000000000000011
+00011111111000100000010000000000
+01011000000000000000000001010001
+00011111111000100001011000000000
+00100000001000000101000010110000
+01111001001000000000000000100101
+01000100110101101100000000110101
+00100000010000000101001011000100
+01101000000000010100001010110011
+00011111111000100000010000000000
+00100000001000000101000011000000
+01111001001000000000000000100101
+01000100110101110100000000110101
+00100000010000000101001011000100
+01011000000000000000000000010001
+00011111111000100000010000000000
+01011000000000000000000001010010
+00011111111000100001011000000000
+00100000001000000101000010110000
+01111001001000000000000000100101
+01000100110101111100000000110101
+00100000010000000101001011000100
+01101000000000010100001010110101
+00011111111000100000010000000000
+00100000001000000101000011000000
+01111001001000000000000000100101
+01000100110110000100000000110110
+00100000010000000101001011000100
+01011000000000000000000000010011
+00011111111000100000010000000000
+01011000000000000000000001010011
+00011111111000100001011000000000
+00100000001000000101000010110000
+01111001001000000000000000100101
+01000100110110001100000000110110
+00100000010000000101001011000100
+01101000000000010100001010110111
+00011111111000100000010000000000
+00100000001000000101000011000000
+01111001001000000000000000100101
+01000100110110010100000000110110
+00100000010000000101001011100000
+01110000000001001001001100000011
+01110000000001001001011000011100
+00100000010000000110110011101000
+01110000010001110101000100000001
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100110110011100000000110110
+00100000010000000101001011100000
+01101000000010001100011101010010
+00100000010000000110101111001011
+01100000000010001100011101001011
+00100000001000000110110100000101
+01111001001000000000000000100101
+01000100110110100100000000110110
+00100000010000000101001011100000
+01101000000010001100011101001011
+00100000010000000110101111000000
+00100000010000000110101101100111
+01100000000000001000010010010110
+01101000000010001100011101001011
+00100000010000000110101111000000
+01100000000010001000010010010011
+00100000001000000110110011101000
+01111001001000000000000000100101
+01000100110110101100000000110110
+00100000010000000101001011100000
+01101000000010001100011101001011
+00100000010000000110101111000000
+00100000001000000110110100111111
+01111001001000000000000000100101
+01000100111100111100000000111100
+01101000000000010000001011001011
+10011000000000000000110000000000
+11101000110000001000000000000000
+00011111111000100010010000000000
+01100000000000001000010010101111
+11101000110000010000000000000000
+01100000000000010000010010110000
+11101000110000001000000000000000
+00011111111011010001011000000000
+11101000110000001000000000000000
+10011001011000001001011000000000
+01111001001000000000000000100101
+01000100111101000100000000111101
+00011010010000100111111000000000
+11000000000000010110111110000111
+11000000000000100110111110110000
+11000000000000110111000010001011
+11000000000000111111000111000111
+00100000001000000111001000111110
+00100000010000000111001001001101
+00101000010000011111111000000001
+00100000001000001111001010111011
+00101000010000011111111011111111
+00100000001000001111001001000001
+11101000110000010000000000000000
+01100000000000010000010010110100
+00011001011000001001011111111110
+00011001011000001001011111111111
+00100100001000101111001000111011
+11011001011000000000010010101001
+11101001011000010000000000000000
+00100000011110100000000000000000
+00011001011000001001011000000010
+00100000010000000111001100000111
+00100000010000000101001011011110
+00011000000000000111111000000011
+11100000101000001000000000000000
+01101000000000010000010010110000
+11100000101000010000000000000000
+00011000111010111111111000000000
+00011111111000001111111000000101
+00011111111000001010011000000101
+00011111111100001111111000000000
+11100000101000010000000000000000
+00011000111000100111111000000000
+00011111111100001111111000000000
+11100000101000010000000000000000
+11100000101000010000000000000000
+11011000110000000000010011000101
+00011000111000100111001000000000
+00100000001000101110111110101010
+11101000110000100000000000000000
+11100000101000100000000000000000
+11000010000000000110111110100111
+00011000000000000111111000000000
+11100000101000001000000000000000
+00011010011000100111111000000000
+01100000000000001000001011011100
+00100000001110100011101111110001
+00100000011000000000000000000000
+11101000110000100000000000000000
+01100000000000100000010010111110
+00011001011000001001011111111100
+10011000000000000000010000000000
+11101000110000010000000000000000
+00011111111100001111111000000000
+00011111111000001111111111101110
+01100000000000010000010010110010
+00011001011000001001011111111110
+00100000010000000111001010100100
+00100000001000101111001001000001
+00101010001000011111111000000101
+00100000001000001110111111000000
+11011000101000000000010010010001
+00011000000000000000111000000000
+00100000001000000110111111010000
+11101000110000001000000000000000
+11000000100001010111001001000001
+11101000110000010000000000000000
+00100100001110100110111111001110
+11101000110000001000000000000000
+11000000111111111110111111001100
+11101000110000001000000000000000
+11000000111111111110111111001010
+00011000110000001000110111111011
+00100000001000000111000000100010
+00011000110000001000110111111011
+00100000001000000110111110111101
+00011000110000001000110111111100
+00100000001000000110111110111101
+00011000110000001000110111111101
+00100000001000000110111110111101
+11101000110000001000000000000000
+11000000000001001110111111100101
+11000000000001010110111111010011
+11101000110000010000000000000000
+11100000101000010000000000000000
+00011000111000001000111000000001
+00011111111100001010010000000000
+11101000110000010000000000000000
+00011111111100001111111000000000
+00011010010000001010010000000001
+10011010010001100111110000000000
+00100100001000010110111111100010
+00011111111000100010011000000000
+00011010010100001111111000000000
+11100000101000010000000000000000
+00011000111000001000111000000001
+00011010011000100111111000000000
+00100000001000000110111111011001
+00011001011000001001011111111011
+00011010001000001010001111111011
+00100000001000000110111111101010
+11101000110000010000000000000000
+11100000101000010000000000000000
+00011000111000001000111000000001
+00011001011000001001011111111101
+00011010001000001010001111111101
+00100100001000010111001001000001
+00100100001000101110111111010000
+00011001011000001001011111111111
+00100100001000101111001001000001
+00100000010000000101001011011110
+00011000101000001000101000001010
+11011010001000000000010010010001
+00011000111000100111111000000000
+00100000001110100111000000000100
+11101010001000010000000000000000
+00100000001110100111000000000100
+10011000000000000010010000000000
+01101000000000100000010010111110
+10011000000000000000010000000000
+00100000010000000111001101001110
+00100000001110100111000000000001
+00011000110000001000110111111101
+11101000110000011000000000000000
+11100000101000011000000000000000
+00100000010000000111000110011001
+00100000001110100111000000000001
+10011000000000000111001000000000
+00100000010000000111111001000101
+00011010001000001010001000000010
+00011000111000001000111111111111
+00100000001000000110111111110001
+00011000000000000111111000000000
+11100000101000001000000000000000
+00011000101000001000101111111111
+01101000000010010000001011011010
+00011000010000001111111000001010
+10011000101001100111111000000000
+00011111111001100010001000000000
+00011010001100001111111000000000
+00011000010000001010010000001000
+11100010010000010000000000000000
+00011010001000001010001000000011
+00011010001100001111111000000000
+00011000010000001010010000000101
+11100010010000010000000000000000
+00011010001000001010001000000011
+00011010001100001111111000000000
+00011000010000001010010000000011
+11100010010000010000000000000000
+00011010001000001010001000000101
+00011010001000100111111000000000
+01100000000000010000001011011100
+01011000000000000000000000110110
+00011000010000001010010000000111
+11100010010000001000000000000000
+01011000000000000000000000000101
+11100000010000001000000000000000
+01101000000000010000010010110000
+00011000010000001010010000000001
+11100010010000010000000000000000
+00100000011000000000000000000000
+11101000110000001000000000000000
+11000000100001010111001001000001
+11101000110000010000000000000000
+00100100001110100111001001000001
+11101000110000001000000000000000
+11000000111111111111001001000001
+11101000110000001000000000000000
+11000000111111111111001001000001
+00011001011000001001011111111011
+11101000110000001000000000000000
+11000000000000000111000000101111
+11000000000000001111000000110010
+11000000000000010111000000110110
+01100000000000010000010010101101
+00011001011000001001011111111111
+00100000001000000111000000111010
+11101000110000001000000000000000
+01100000000000010000010010101101
+00011001011000001001011111111110
+00100000001000000111000000111010
+11101000110000010000000000000000
+00011111111100001111111000000000
+01100000000000010000010010101101
+00011001011000001001011111111101
+00100100001000101111001000111011
+00100000010000000111001100011110
+00100100001000101111001000111000
+00011000110000100010001000000000
+00100000010000000101001011011110
+00011010001000100000110000000000
+00011000101000001000101000000011
+00011000110000100001011000000000
+00100000010000000111001011101000
+00011111111000100010001000000000
+01101000000000010000010010101101
+00011111111000100010010000000000
+00011010001000100111111000000000
+10011010010001100010010000000000
+01101000000000010000010010110010
+10011010010001100111110000000000
+00100100001000010111000001100110
+01111000010101000111110000000000
+01101000000000010000010010101101
+00100000001110100111000001011001
+10011001011000001000110000000000
+00011010010000001010010000000011
+00011010010000100111001000000000
+00011111001000100111111000000000
+00011111111000001111111000000011
+00011111111100001111111000000000
+11100000101000010000000000000000
+00011111001000100111111000000000
+00011111111100001111111000000000
+11100000101000010000000000000000
+00100000001000000111000001110100
+00011010001000001111001000000110
+00100000001101000111000001011101
+00011111001100001111111000000000
+00100000001000000111000001100000
+00011111001000100111111000000000
+00011111111000001111111000000010
+00011111111100001111111000000000
+11100000101000010000000000000000
+00011111001000001111001111111101
+00011111001100001111111000000000
+11100000101000010000000000000000
+00011001011000100000110000000000
+00100000001000000111000001110100
+01111000001101000111110000000000
+01101000000000010000010010110010
+00011111111000100010001000000000
+00011111111000100111001000000000
+01101000000000010000010010101101
+00100000001110100111000001011001
+10011001011000001000110000000000
+00011010001000100111111000000000
+00011111111000001111111000000101
+00011111111100001111111000000000
+11100000101000010000000000000000
+00011010001000100111111000000000
+00011111111100001111111000000000
+11100000101000010000000000000000
+11101000110000001000000000000000
+11100000101000001000000000000000
+11000010000000000111000001110100
+00100100001101000111000001111111
+00011000000000000111111000000010
+11100000101000001000000000000000
+00011000110000100111111000000000
+10011001011001100111111000000000
+00011111111100001111111000000000
+11100000101000010000000000000000
+00100000001000000111000010000001
+00011000000000000111111000000000
+11100000101000001000000000000000
+01101000000000010000001011011010
+10011000101001100111111000000000
+00011111111001100111111000000000
+01100000000000010000001011011100
+00100000010000000101001011011110
+01011000000000000000000000000101
+11100000101000001000000000000000
+01101000000000010000010010110000
+11100000101000010000000000000000
+00100000011000000000000000000000
+00100000010000000111001001001101
+00101000010000011111111011111111
+00100000001000001111000010110100
+11101000110000010000000000000000
+01100000000000010000010010110010
+00011001011000001001011111111110
+00100000010000000111001010100100
+11011000101000000000010010010001
+00011000000000000000111000000000
+11101000110000011000000000000000
+11000000100001001111000010110100
+00011111111011001111111000000000
+11100000101000010000000000000000
+00011000111000001000111000000001
+00011001011000001001011111111101
+00011010001000001010001111111101
+00100100001000010111001001000001
+00100100001000101111000010010100
+00011001011000001001011111111111
+00100100001000101111001001000001
+00100000010000000101001011011110
+00011000101000001000101000001101
+01101000000000010000010010101001
+10011000000000000010011000000000
+11011010001000000000010010010001
+11101010001000100000000000000000
+00100000001110100111000011000100
+11101010001000010000000000000000
+10011000000000000010010000000000
+00100000010000000111001100101010
+00100000001110100111000010110010
+00011000110000001000110111111101
+11101000110000011000000000000000
+11100000101000011000000000000000
+00100000010000000111000110011001
+10011000000000000111001000000000
+11101000110000001000000000000000
+11100000101000001000000000000000
+11000010000000000111000010101111
+00011010001000001010001000000010
+00100000001000000111000010100100
+11101000110000001000000000000000
+11101000110000001000000000000000
+00011001011000001001011111111011
+00011010001000001010001111111011
+00100100001000010111001001000001
+11011001011000000000010010101001
+11101001011000010000000000000000
+00011001011000001001011000000010
+00100000010000000111001100000111
+00011000111000100111111000000000
+01100000000000001000010011011101
+00100000001110100111001010111110
+11011000111000000000000000000000
+00100000010000000101001011011110
+00011000101000001000101000001010
+00100000001000000111000100001000
+00011000000000000111111000000000
+11100000101000001000000000000000
+00011000101000001000101111111111
+01101000000010010000001011011010
+00011000010000001111111000001101
+10011000101001100111111000000000
+00100000001000101111000011101000
+00011111111001100111111000000000
+00011000010000001010010000001100
+11100010010000001000000000000000
+00011111111000001111111000000011
+00011000010000001010010000001001
+11100010010000001000000000000000
+00011111111000001111111000000011
+00011111111100001111111000000000
+00011000010000001010010000000101
+11100010010000010000000000000000
+00011111111011001111111000000000
+00011111111000001111111000000011
+00011111111100001111111000000000
+00011000010000001010010000000011
+11100010010000010000000000000000
+00011111111011001111111000000000
+00011111111000001111111000000101
+01100000000000001000001011011100
+01101000000000010000010010110000
+00011000010000001010010000000001
+11100010010000010000000000000000
+01011000000000000000000000000111
+11100000010000001000000000000000
+01011000000000000000000000110110
+00011000010000001010010000000111
+11100010010000010000000000000000
+00011000010000001010010000001010
+11100010010000010000000000000000
+00100000011000000000000000000000
+01110000000000101101110000001010
+00100000010000000101001011011110
+01011000000000000000000000000111
+11100000101000001000000000000000
+01101000000000010000010010110000
+11100000101000010000000000000000
+01011000000000000000010100000000
+11100000101000010000000000000000
+01011000000000000000001000000000
+11100000101000010000000000000000
+01011000000000000000000000110101
+11100000101000011000000000000000
+00100000011000000000000000000000
+11101000110000001000000000000000
+11100000101000001000000000000000
+00011010010000001010010000000001
+00011010001000001010001111111111
+00100000001000101111000011111011
+11000010000000000111000011110101
+00011000101000100001011000000000
+00011010010000100111111000000000
+01100000000000010000010010101101
+00011010001000100111111000000000
+01100000000000010000010010110010
+00100000001110100111000100010111
+00100000001101000111000101010010
+00011001011000100000101000000000
+00011000111000001000111000000001
+01101000000000001000010011011101
+10011000111001100111110000000000
+00100100001000101111000100001000
+00100000001000000111000101110001
+11011000110000000000010011000101
+00011000111010111111111000000000
+10011000110000001000110000000000
+11101000110000100000000000000000
+10011000000000000000010000000000
+00100000010000000111001100011110
+00011000110000100001011000000000
+00100000010000000111001011101000
+00011111111000001111001000000011
+01101000000000010000010010110010
+00011111111000100010001000000000
+01101000000000010000010010101101
+00011111111000100010010000000000
+00011001011000100000110000000000
+00100000001000000111000011110101
+11011000111000000000000000000000
+11011010010000000000000000000000
+11011000110000000000010011000101
+00011000111010111111111000000000
+10011000110000001000110000000000
+11101000110000100000000000000000
+10011000000000000000010000000000
+00100000010000000111001100011110
+00100000010000000111001011101000
+00011111111000001111111000000011
+10011010010000001010010000000000
+00011000111000001000111000000001
+01101000000000001000010011011101
+10011000111001100111110000000000
+00100100001000101111000100011001
+00011001011000100000101000000000
+00011000000000000111111000000010
+11100000101000001000000000000000
+01101000000000010000010010101101
+00011111111100001111111000000000
+11100000101000010000000000000000
+00011000101000001000101111111101
+01101000000010010000001011011010
+00011000010000001111111000001010
+10011000101001100111111000000000
+00011111111001100111111000000000
+10011000000000000010001000000000
+00011010010000100111111000000000
+00011000010000001010010000001001
+11100010010000001000000000000000
+00011111111011001111111000000000
+00011000010000001010010000001000
+11100010010000001000000000000000
+00011010001000001010001000000011
+00011010001000100111111000000000
+00011000010000001010010000000110
+11100010010000001000000000000000
+00011111111011001111111000000000
+00011000010000001010010000000101
+11100010010000001000000000000000
+00011010001000001010001000000101
+00011010001000100111111000000000
+00011000010000001010010000000100
+11100010010000001000000000000000
+00011111111011001111111000000000
+00011000010000001010010000000011
+11100010010000001000000000000000
+00011010001000001010001000000101
+00011010001000100111111000000000
+01100000000000010000001011011100
+01011000000000000000000000000111
+11100000010000001000000000000000
+01011000000000000000000000110110
+00011000010000001010010000000111
+11100010010000001000000000000000
+00011000010000001010010000000001
+01101000000000010000010010110000
+11100010010000010000000000000000
+00100000011000000000000000000000
+00011001011000100000101000000000
+00011000000000000111111000000000
+11100000101000001000000000000000
+00011000101000001000101111111111
+01101000000010010000001011011010
+00011000010000001111111000000111
+10011000101001100111111000000000
+00011111111001100111111000000000
+10011000000000000010001000000000
+00011010001000100111111000000000
+00011000010000001010010000000110
+11100010010000001000000000000000
+00011111111011001111111000000000
+00011000010000001010010000000101
+11100010010000001000000000000000
+00011010001000001010001000000011
+00011010001000100111111000000000
+00011000010000001010010000000100
+11100010010000001000000000000000
+00011111111011001111111000000000
+00011000010000001010010000000011
+11100010010000001000000000000000
+00011010001000001010001000000101
+00011010001000100111111000000000
+01100000000000010000001011011100
+01011000000000000000000000000111
+11100000010000001000000000000000
+01101000000000010000010010110000
+00011000010000001010010000000001
+11100010010000010000000000000000
+00100000011000000000000000000000
+00011000000000000111111000000000
+11100000101000001000000000000000
+00011000101000001000101111111111
+01101000000010010000001011011010
+00011000010000001111111000001010
+10011000101001100111111000000000
+00011111111001100111111000000000
+10011000000000000010001000000000
+00011010001000100111111000000000
+00011000010000001010010000001001
+11100010010000001000000000000000
+00011111111011001111111000000000
+00011000010000001010010000001000
+11100010010000001000000000000000
+00011010001000001010001000000011
+00011010001000100111111000000000
+00011000010000001010010000000110
+11100010010000001000000000000000
+00011111111011001111111000000000
+00011000010000001010010000000101
+11100010010000001000000000000000
+00011010001000001010001000000011
+00011010001000100111111000000000
+00011000010000001010010000000100
+11100010010000001000000000000000
+00011111111011001111111000000000
+00011000010000001010010000000011
+11100010010000001000000000000000
+00011010001000001010001000000101
+00011010001000100111111000000000
+01100000000000010000001011011100
+01011000000000000000000000110110
+00011000010000001010010000000111
+11100010010000001000000000000000
+01011000000000000000000000000111
+11100000010000001000000000000000
+01101000000000010000010010110000
+00011000010000001010010000000001
+11100010010000010000000000000000
+00100000011000000000000000000000
+00011000110000100001011000000000
+11101000110000001000000000000000
+00011111111000010111001000000111
+00011111111010010111111000000000
+11000000000000110111000110100010
+11000000000000001111001011100000
+11000000000000100111001011100101
+11000000000000101111001011100011
+00100000001000000111001011011110
+00100000010000000111000110100100
+00100000001000000111001011011110
+00011111001000100111111000000000
+11000000000000101111000110101001
+11000000000000110111000110101100
+00011000000000000111001000000011
+00100000001000000111001011101111
+11101000110000001000000000000000
+00011111111000001111111000000010
+00100000011000000000000000000000
+11101000110000010000000000000000
+00011111111100001111111000000000
+00011111111000001111111000000011
+00100000011000000000000000000000
+00100000010000000101001011011110
+00011111111000100000101000000000
+01011000000000000000000000000110
+11100000101000001000000000000000
+01011000000000000000000001101110
+11100000101000010000000000000000
+01011000000000000000111100000000
+11100000101000010000000000000000
+01011000000110100000010100110101
+11100000101000011000000000000000
+01011000000000000000000100010001
+00011111111100000111111000000000
+11100000101000100000000000000000
+01011000000000000010011000000000
+11100000101000010000000000000000
+01011000000000000000001100110101
+11100000101000010000000000000000
+01011000000000000000000000001001
+11100000101000010000000000000000
+01011000000000000000000000000100
+11100000101000010000000000000000
+01110000000000101101110000010100
+00100000011000000000000000000000
+00011000110000100000010000000000
+01101000000000010000010010110000
+11000000001101110111000111001011
+00100000001000000111000111010100
+00011000010000100000110000000000
+00011001011000001001011111111101
+00011001011000100111111000000000
+11000000000000010111000111010100
+00100000010000000111000111010101
+00100000011101000000000000000000
+01100000000000001100011101010010
+01110000000000101110110000010111
+00100000011000000000000000000000
+00100000011000000000000000000000
+01111000001101000111110000000000
+00011111111000100111001000000000
+11011000010000000000010000000000
+11101000110000010000000000000000
+10011000010001100111110000000000
+00100000001000101111000111011110
+00011000110000001000110111111111
+11000010000000000111000111011000
+00100000011000000000000000000000
+11011000010000000000001100000000
+11101000110000010000000000000000
+10011000010001100111110000000000
+00100000001000101111000111100101
+00011000110000001000110111111111
+11000010000000000111000111011111
+00100000011000000000000000000000
+11101000110000001000000000000000
+11101000110000001000000000000000
+01111000010101000111110000000000
+00100000011000000000000000000000
+00100000010000000111001010100100
+00100000001000101111001000110110
+00011000000000000010010000000000
+11101000110000001000000000000000
+00011010001000001010001111111111
+00011001011000001001011111111111
+00101111111000011111000000011000
+00100100001000001111001000110000
+00101111111000000000111000000100
+00100100001000001111000111111000
+00011000000000000010010000000001
+00011000110000001000110000000010
+00011010001000001010001111111110
+00011001011000001001011111111110
+00100000001000000111000111111101
+00101111111000000000111000000010
+00100100001000001111000111111011
+00100000001000000111000111110100
+00101111111000000000111000000001
+00100100001000001111001000110000
+11101000110000001000000000000000
+00011010001000001010001111111111
+00011001011000001001011111111111
+11000000100000001111001000000111
+11101000110000001000000000000000
+00011010001000001010001111111111
+00011001011000001001011111111111
+11000000100000000111001000110000
+01110000000001001100001111111111
+00100000001000000111001000110000
+11000000100000000111001000110000
+11101000110000001000000000000000
+00011010001000001010001111111111
+00011001011000001001011111111111
+11000000100000011111001000110000
+00011010010000100111110000000000
+00100000001000101111001000010000
+00011000110000001000110111110100
+00011001011000001001011111110100
+00011000000000000111111011111111
+01100000000000001000010011000100
+11101000110000001000000000000000
+00011010001000001010001111111111
+00011001011000001001011111111111
+00101111111000011111000000001000
+00100100001000001111001000110000
+00101111111000000000111000000000
+00100000001000001111001000101101
+00101111111000000000111000000001
+00100000001000001111001000101010
+00101111111000000000111000000010
+00100000001000001111001000100111
+00101111111000000000111000000011
+00100000001000001111001000100100
+00101111111000000000111000000100
+00100100001000001111001000110000
+00011000110000001000110000001000
+00011010001000001010001111111000
+00011001011000001001011111111000
+00011000110000001000110000000100
+00011010001000001010001111111100
+00011001011000001001011111111100
+00011000110000001000110000000010
+00011010001000001010001111111110
+00011001011000001001011111111110
+00011000110000001000110000000001
+00011010001000001010001111111111
+00011001011000001001011111111111
+11101000110000001000000000000000
+00011010001000001010001111111111
+00011001011000001001011111111111
+00011001011000001001011111111111
+00011010001000001010001111111111
+00100000001000010111001000110000
+00011001011000001001011000000001
+00011000000000000111111000000001
+00100000011000000000000000000000
+00011000000000000111111000000000
+00100000011000000000000000000000
+01011000000000000000001000000000
+01100000000000010000010010110110
+00100000001000000111001001000011
+01011000000000000000010000000000
+01100000000000010000010010110110
+00100000001000000111001001000011
+01011000000000000000011000000000
+01100000000000010000010010110110
+00100000001000000111001001000011
+01011000000000000000001100000000
+01100000000000010000010010110110
+00100000010000000101001011011110
+11100000101000001000000000000000
+01101000000000010000010010110000
+11100000101000010000000000000000
+01011000000000000000001000000000
+11100000101000010000000000000000
+01101000000000010000010010110110
+11100000101000010000000000000000
+01110000000000101101110000000111
+00100000011000000000000000000000
+00011000000000000000010000000000
+11011000101000000000010010101001
+00100000010000000111001010100100
+00100000001000101111001010100010
+11101000110000001000000000000000
+00011010001000001010001111111111
+00011001011000001001011111111111
+00101111111000011111000000011000
+00100100001000001111001010100010
+00101111111000000000111000000100
+00100100001000001111001001101110
+00011000000000000000010000000001
+11101000110000001000000000000000
+00011010001000001010001111111111
+00011001011000001001011111111111
+11000000100000000111001001100010
+11101000110000001000000000000000
+00011010001000001010001111111111
+00011001011000001001011111111111
+11000000000000000111001001110011
+00100000001000000111001001100101
+00011000110000001000110000000001
+00011010001000001010001111111111
+00011001011000001001011111111111
+00011000110000001000110000000010
+00011010001000001010001111111110
+00011001011000001001011111111110
+00101000010000011111111000000000
+00100000001000001111001010011101
+00011000110000001000110000001100
+00011010001000001010001111110100
+00011001011000001001011111110100
+00100000001000000111001010011101
+00101111111000000000111000000010
+00100100001000001111001001110001
+00100000001000000111001001011001
+00101111111000000000111000000001
+00100100001000001111001010100010
+11101000110000010000000000000000
+00011010001000001010001111111110
+00011001011000001001011111111110
+11100000101000010000000000000000
+00101000010000011111111000000000
+00100000001000001111001010011101
+00011000110000100000010000000000
+11101000110000001000000000000000
+11000000100000000111001010010010
+11101000110000001000000000000000
+11000000100000000111001010010010
+11101000110000001000000000000000
+11000000100010000111001010010010
+11101000110000001000000000000000
+11000000100000000111001010010010
+11101000110000001000000000000000
+11000000110000000111001010010010
+11101000110000001000000000000000
+11000000100000000111001010010010
+11101000110000001000000000000000
+11000000100000000111001010010010
+11101000110000001000000000000000
+11000000110000000111001010010010
+11101000110000001000000000000000
+11000000101011111111001010010010
+11101000110000001000000000000000
+11000000110011011111001010010010
+11101000110000001000000000000000
+11000000100110100111001010010010
+11101000110000001000000000000000
+11000000011111011111001010011011
+00011000010000100000110000000000
+00011000110000001000110000001100
+00011000000000000000111000000000
+00011000000000000000010000000000
+00100000001000000111001010011011
+11101000110000001000000000000000
+00011010001000001010001111111111
+00011001011000001001011111111111
+00100000001000000111001001110111
+00011001011000001001011111110100
+00011010001000001010001111110100
+00101010001000011111111000000000
+00100100001000001111001001010001
+00011000000000000111111000000000
+11100000101000010000000000000000
+00100000011000000000000000000000
+11011000010000000000000011111111
+00100000011000000000000000000000
+11101000110000001000000000000000
+00011001011000001001011111111111
+00101111111000011111000000110000
+00100100001000001111001010111001
+00101111111000000000111000000111
+00100000001000001111001010110010
+00101111111000000000111000000110
+00100000001000001111001010110100
+00101111111000000000111000000101
+00100100001000001111001010111001
+11101000110000001000000000000000
+00011111111000100010001000000000
+00011001011000001001011111111111
+00100000001000000111001010110111
+00011000110000001000110000000010
+00011001011000001001011111111110
+11101000110000010000000000000000
+00011111111100001010001000000000
+00011001011000001001011111111110
+00011000000000000111111000000001
+00100000011000000000000000000000
+00011000000000000111111000000000
+00100000011000000000000000000000
+01011000000000000000000000000011
+01100000000000001000010010101111
+00100000001000000111001011000000
+01011000000000000000000000000111
+01100000000000001000010010101111
+00100000010000000101001011011110
+01101000000000001000010010101111
+11100000101000001000000000000000
+00011111111000100010010000000000
+01101000000000010000010010110000
+11100000101000010000000000000000
+01011000000000000000010100000000
+11100000101000010000000000000000
+00101010010000011111111000000101
+00100000001000001111001011010000
+00101010010000011111111000000111
+00100000001000001111001011010000
+01011000000000000000000000000000
+11100000101000011000000000000000
+11100000101000010000000000000000
+00100000001000000111001011010100
+01011000001101010000001000000000
+11100000101000011000000000000000
+01011000000000000000000000000000
+11100000101000010000000000000000
+01110000000000101101110000001010
+00100000011000000000000000000000
+00011000110000100001011000000000
+11101000110000001000000000000000
+00011111111000010111001000000111
+00011111111010010111111000000000
+11000000000000110111001011100101
+11000000000000001111001011100000
+11000000000000100111001011100101
+11000000000000101111001011100011
+00011001011000100000110000000000
+00100000011000000000000000000000
+00100000010000000111001100000001
+00011111111000001111111000000001
+00100000001000000111001011011110
+00011000000000000111111000000010
+00100000001000000111001011011110
+00100000010000000111001011110111
+00011111111000001111111000000010
+00100000001000000111001011011110
+11101000110000001000000000000000
+00011111111000010111001000000111
+00011111111010010111111000000000
+11000000000000110111001011110111
+11000000000000001111001011101111
+11000000000000101111001011111100
+00100000011000000000000000000000
+00100000010000000111001100000001
+10011000000000000111001000000000
+00011000000000000000010000000000
+00011000010011010000010000000000
+11101000110000001000000000000000
+10011000010000011000010000000000
+11000010000000000111001011110010
+00100000011000000000000000000000
+00011111001000100111111000000000
+11000000000000101111001011111100
+11000000000000110111001011111110
+00011000000000000111001000000011
+00100000001000000111001011101111
+11101000110000001000000000000000
+00100000011000000000000000000000
+11101000110000010000000000000000
+00011111111100001111111000000000
+00100000011000000000000000000000
+00011000000000000111111000000001
+00011111001000100111110000000000
+00100000011000101000000000000000
+00011111111000111111111000000000
+11000010000000000111001100000100
+00100000011000000000000000000000
+10011000000000000010011000000000
+01111001001000000000000000100101
+01000100111101001100000000111101
+00011000000000000000111000000000
+01101000000000010100011101011001
+10011000000000000000110000000000
+11011000101000000000010011000101
+01111000010101000111110000000000
+11101000110000001000000000000000
+00100000011110100000000000000000
+10011000000000000111001000000000
+11101000110000010000000000000000
+10011010011001100111110000000000
+00100100001000101111001100010110
+01111000001101000111110000000000
+11000010000000000111001100010010
+11101000110000100000000000000000
+00100100001101000111001100011011
+11100000101000100000000000000000
+00011000111000001000111000000001
+00100000010000000111001011101000
+10011000110000001000110000000000
+00100000001000000111001100001110
+01101000000000010100011101011001
+10011000000000000000110000000000
+11101000110000001000000000000000
+00100000011110100000000000000000
+00011111111000111111111000000000
+10011000110000001000110000000000
+11101000110000100000000000000000
+10011000010001100111110000000000
+00100000011000101000000000000000
+00100000010000000111001011101000
+10011000110000001000110000000000
+00100000001000000111001100100000
+01111001001000000000000000100101
+01000100111101010100000000111101
+01101000000000010100011101011001
+10011000000000000000110000000000
+11101000110000001000000000000000
+00100000001110100111001101001011
+10011000000000000111001000000000
+11101000110000010000000000000000
+10011010011001100111110000000000
+00100000001000101111001100111001
+11000010000000000111001100110001
+00011000110000001000110000000100
+00100000010000000111001011101000
+10011000110000001000110000000000
+00100000001000000111001100101110
+00011111001000001111001111111111
+00011111001000111111111000000000
+10011000110000001000110000000000
+00011000110000001000110000000100
+00100000010000000111001011101000
+10011000110000001000010000000000
+00011000110000001000110000000001
+11101000110000010000000000000000
+10011010010001100001011000000000
+01111001001000101111111000000000
+00011001011000100001011000000000
+00100000011000101000000000000000
+00100000010000000111001011010110
+10011000110000001000110000000000
+00011000010000100111111000000000
+10011000110001100111110000000000
+00100000001000101111001101001011
+00100000001000000111001100111111
+00011000000000000000110000000000
+00011000000000000111111000000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100111101011100000000111101
+01101000000000010100011101011001
+10011000000000000000110000000000
+11101000110000001000000000000000
+00100000001110100111001101101000
+00011111111000111111111000000000
+10011000110000001000110000000000
+11101000110000100000000000000000
+10011000010001100111110000000000
+00100000001000101111001101011100
+00100000010000000111001011101000
+10011000110000001000110000000000
+00100000001000000111001101010010
+00100000010000000111001011101000
+10011000110000001000010000000000
+00011000110000001000110000000001
+11101000110000010000000000000000
+10011010010001100111110000000000
+00100000011000101000000000000000
+00100000010000000111001011010110
+10011000110000001000110000000000
+00011000010000100111111000000000
+10011000110001100111110000000000
+00100000001000101111001101101000
+00100000001000000111001101011110
+00011000000000000000110000000000
+00100000011000000000000000000000
+00100000010000000111001101111101
+11011000110000000000010100011111
+11011000101000000000010100001111
+00100000001000000111111000110101
+01111000010101000111110000000000
+00100000010000000111010001110100
+11011000110000000000010011101111
+11011000101000000000010100101111
+00011000000000000111001000001111
+00100000010000000111111001000101
+11101000110000001000000000000000
+00011111111000101111111000000110
+11100000101000001000000000000000
+01011000000000000000010100111111
+01100000000000010000010101110100
+01011000000000000000010100101111
+01100000000000010000010101110010
+01111001001000000000000000010010
+00100000001000000111001110111101
+01101000000010001000010101001111
+00011000000000000010010000010000
+00011000010000001010011000000110
+00011010011001100111110000010000
+00100000001000010111001110000011
+00011000000000000010011000010000
+11011000101000000000010100101111
+11011000110000000000010101010000
+00011000010000100111001000000000
+01111000010101000111110000000000
+11101000110000001000000000000000
+11100000101000001000000000000000
+00011010010000001010010111111111
+00100000001000101111001110010001
+11000010000000000111001110000111
+00100000001101000111001110000100
+01111000001101000111110000000000
+00011000000000000111001000000110
+00011010001000100000110000000000
+00100000001000000111001110000111
+11011000110000000000010011101111
+11011000101000000000010100111111
+00100000010000000111111000110101
+01101000000000001000010101001110
+10011010011000101111111000000000
+01100000000000001000010101001110
+01011000000000000000010100111111
+01100000000000010000010101110100
+01011000000000000000010100101111
+01100000000000010000010101110010
+01111001001000000000000000010010
+00100000001000000111001110111101
+01111000010101000111110000000000
+00100000010000000111010001110100
+00100000001000000111001110100111
+11011010001000000000000001010110
+01111000001101000111110000000000
+00100000010000000111010001110100
+00100000010000000111001110100111
+11011000110000000000010100011111
+11011000101000000000000001100010
+00100000001000000111111000110101
+01011000000000000000010011101111
+01100000000000010000010101110100
+01011000000000000100001001100010
+01100000000000010000010101110010
+01111001001111111000000000010010
+00100000010000000111001110111101
+11011010001000000000010100011111
+11011010010000000000010011101111
+11011000101000000000010100101111
+00100000010000000111010001100111
+11011010001000000000010100101111
+11011010010000000000010100111111
+00011010010000100000101000000000
+01111000001101000111110000000000
+00100000010000000111010001100101
+00100000010000000111010001111111
+01011000000000000000010100111111
+01100000000000010000010101110100
+01011000000000000000010100101111
+01100000000000010000010101110010
+01111001001000000000000000010010
+00100000001000000111001110111101
+01110000000001010111011000000000
+01101000000000010000010101110010
+10011000000000000000110000000000
+11011000101000000000010101100000
+00100000010000000111111000110101
+01101000000000010000010101110100
+10011000000000000000110000000000
+11011000101000000000010100011111
+00100000010000000111111000110101
+00100000010000000111001111100100
+01111000010101000111110000000000
+11000101100010010111001111001110
+01101000000000001000010101110110
+11000000100000100111001111001110
+01101000000000010000010101110100
+10011000000000000010010000000000
+00100000010000000111010000010110
+00100000010000000111010000010101
+00100000010000000111010000101000
+01101000000000001000010101110110
+00011111111000001111111000000001
+01100000000000001000010101110110
+00100000010000000111001111100100
+01111000001101000111110000000000
+00100000010000000111010000010101
+00100000010000000111010000110111
+00100000010000000111010001000110
+00100000010000000111010000110111
+00100000010000000111010001000110
+00100000010000000111010000110111
+00100000010000000111010001000110
+00100000010000000111010000110111
+01101000000000001000010101110110
+00011111111000001111111000000001
+01100000000000001000010101110110
+11000000100010000111001111000110
+00100000010000000111001111100100
+01111000010101000111110000000000
+00100000001000000111010000010101
+01101000000000001000010101110110
+11011000110000000000010101100000
+00100000001110100111010000001011
+10011000000000000010010000000000
+00011000000000000111001000010001
+00011000110000100000101000000000
+11101000110000001000000000000000
+00011111111010011000010000000000
+00011111111010110111111000000000
+00011111111010010111111000000000
+10011000010000011111111000000000
+11100000101000001000000000000000
+11000010000000000111001111101010
+01011000000000000000010101100000
+10011010010000001000110000000000
+00011000000000000111001000010000
+11011000101000000000010011111111
+11101000110000001000000000000000
+11100000101000001000000000000000
+00101000110000011111111101110001
+00100100001000001111001111111010
+00011000110000001000110111101111
+11000010000000000111001111110101
+00011000000000000010001000000000
+00011010010000001010011111111111
+00011010011010111010011000000000
+00011010011010111010011000000000
+00100000010000000111010111000101
+01011000000000001000010000000000
+10011010011000001010011000000000
+11011000101000000000010011111111
+00011000000000000111001000010000
+11101010011010001000000000000000
+11101000101000001000000000000000
+10011000010000001111111000000000
+11100000101000001000000000000000
+00011010011000001010011000000001
+11000010000000000111010000000100
+00100000001000000111010111001001
+00011000000000000111001000010000
+00011000000000000000010000000000
+11101000110000001000000000000000
+10011000010000101000010000000000
+11000010000000000111010000001101
+00011000010000100111111000000000
+11100000110000001000000000000000
+11011000110000000000010101100000
+11011000101000000000010011111111
+00100000001000000111111000110101
+11011010010000000000010011111111
+00011000000000000111001000010000
+11011010001000000000010100011111
+00011010001000100000101000000000
+11101010001010001000000000000000
+11101010010000001000000000000000
+10011000010000101110000000000000
+00011111001000010010011000000011
+00100100001101000111010000011111
+00011010011000101010011000000011
+00011010011001100010011000000001
+00100000001000010111010000100010
+10011000010000001110000000000000
+00011110000000100111111000000000
+11100000101000001000000000000000
+00011010001000001010001000000001
+00011010010000001010010000000001
+11000010000000000111010000011001
+00100000011000000000000000000000
+00100000010000000111010111000101
+00011000000000000111001000010000
+11011010001000000000010100011111
+11101010001000001000000000000000
+11011000110000001000010100000000
+00011111001000010010011000000011
+00011010011001100111110000000001
+00100000001000010111010000110001
+11011000110000001000011000000000
+10011000110000001000110000000000
+11101000110000001000000000000000
+11100010001000001000000000000000
+00011010001000001010001000000001
+11000010000000000111010000101011
+00100000001000000111010111001001
+00011000000000000111001000001000
+11011000110000000000010100011111
+00011000110000100000101000000000
+11101000110000001000000000000000
+10011000000000000010001000000000
+11101000110000001000000000000000
+10011000000000000010010000000000
+00011010001000111111111000000000
+10011010010000001111111000000000
+11100000101000001000000000000000
+00011010001000100111111000000000
+10011010010000001111111000000000
+11100000101000001000000000000000
+11000010000000000111010000111010
+00100000011000000000000000000000
+01011000100010101110010000101100
+10011000000000000000010000000000
+00011000000000000111001000000111
+00100000010000000111010001010101
+01011000000011010111010100011011
+10011000000000000000010000000000
+00011000000000000111001000000101
+00100000010000000111010001010101
+01101000000000001000010100101110
+10011000000000000010001000000000
+01101000000000001000010100100010
+01100000000000001000010100101110
+00011010001000100111111000000000
+01100000000000001000010100100010
+00100000011000000000000000000000
+00011000010000010010010000001111
+00011000010000010111111000001111
+11011000101000000000010100011111
+10011000101000001000101000000000
+11101000101000001000000000000000
+10011000000000000010011000000000
+00011010001000100111111000000000
+11100000101000001000000000000000
+00011010011000100010001000000000
+00011000010100011000010000000000
+11000010000000000111010001010110
+01011000000000000000010100011111
+10011010010000001000101000000000
+00011010001000100111111000000000
+11100000101000001000000000000000
+00100000011000000000000000000000
+01111000001101000111110000000000
+00100000001000000111010001101000
+01111000010101000111110000000000
+00011000000000000111001000010000
+11101010001010001000000000000000
+11101010010000001000000000000000
+00100000001101000111010001101110
+10011000010000101111111000000000
+00100000001000000111010001101111
+10011000010000001111111000000000
+11100000101000001000000000000000
+00011010001000001010001000000001
+00011010010000001010010000000001
+11000010000000000111010001101001
+00100000011000000000000000000000
+11011000101000000000010100111111
+11101010001000110000000000000000
+11100000101000110000000000000000
+00100000001101000111010001111010
+11101010001000110000000000000000
+00100000001000000111010001111011
+11101000110000110000000000000000
+11100000101000110000000000000000
+11101010001000100000000000000000
+11100000101000100000000000000000
+00100000011000000000000000000000
+11011000110000000100001001100010
+11011000101000000000010100101111
+11011000010000000000000000000000
+01011000100000111001010110100111
+00100000010000000111010010100000
+01011000101100111100000111011111
+00100000010000000111010010100000
+01011000000000001110010111101001
+00100000010000000111010010100001
+00011000010000100010100000000000
+01111000010101000111110000000000
+00100000010000000111010010001110
+00011010100000100000010000000000
+01111000001101000111110000000000
+00100000001000000111010010001110
+00011000000000000111001000001000
+11101000110000001000000000000000
+00101111001000000000001000000001
+00100000001101000111010010010101
+00100000001000001111010010010110
+10011000010000001111111000000000
+00100000001000000111010010010111
+00100000001000001111010010010011
+10011000010000101111111000000000
+11100000101000001000000000000000
+00011000010011001000010000000000
+11000010000000000111010010001111
+00100000011000000000000000000000
+01101000000000110000010100100011
+01100000000000110000000001010110
+11101000110000110000000000000000
+11100000101000110000000000000000
+00100000011000000000000000000000
+00011000010011010000010000000000
+00011000010100000000010000000000
+10011000010000011000010000000000
+00100000011000000000000000000000
+00100000001000000111010010100100
+00100000010000000111010101000000
+11011000101000000100010001111011
+00100000001000000111010110100011
+11011000101000000100010010011100
+00100000001101001111010010101011
+11011000101000000000001110110000
+00011000110000100010001000000000
+00100000010000000111111000110101
+00100000010000000111010101010001
+11011000110000000100010010001100
+00100000001000000111010110111100
+11011010001000000000001110110000
+00100000001101001111010010110011
+11011010001000000100010010011100
+00011010001000100000101000000000
+00100000010000000110001000100110
+00100000001000000111010101010001
+11011000110000000000001110000000
+00100000010000000111010110010010
+11011000110000000100010001111011
+00100000010000000111010110010011
+00011000000000000110110000111000
+00011000000000000110110000000000
+00100000010000000111010100101111
+11011000101000000000001111111101
+00100000001000000111010110100011
+00011000000000000111111001001001
+00100000001000000111010011000010
+00011000000000000111111000000001
+00011000000000000111000000000000
+00011000010011010101111000000000
+10011101111000011101111000000000
+00011111000000001111000000000001
+00011000010011001101111000000000
+00011101111100010101111000000000
+01101000000000010100010001110011
+00011111111100000111111000000000
+10011101111000011101111000000000
+00011111000000001111000000000001
+11101000110000100000000000000000
+10011000000000000101111000000000
+00011111000000001111000000000001
+11101000110000010000000000000000
+00011010001100001101111000000000
+00011101111100000101111000000000
+10011101111000011101111000000000
+00011111000000001111000000000001
+00100000011000000000000000000000
+00011010011000001000110000000001
+11101000110000001000000000000000
+10011000000000000010001000000000
+00100000010000000111010010111111
+00100000010000000111010100110001
+00011000000000000111000000000000
+11101010011000001000000000000000
+00011111111000010111111000000011
+00011111111100000101111000000000
+01111001001000000101111000001000
+00100000010000000111010110011011
+00100000010000000111010100110100
+00011010001000100111001000000000
+00011010011000001000110000000010
+00100000010000000111010101111010
+00100000010000000111010110000100
+00100000010000000111010100110100
+00011111001000100111111000000000
+00100000001110100111010011101001
+00100000001000000111010011100100
+00011000000000000111000000001100
+00011101111000100111111000000000
+01100000000000100000001101111000
+00100000011000000000000000000000
+00011010001000001010001000000001
+00100000010000000111010011000001
+00011010011000100000110000000000
+00100000010000000111010110001110
+00100000010000000111010100110111
+00100000010000000111010110101010
+00011010011000001010011000010000
+00011010010000001010010111110000
+00100000001000010111010011101101
+00100000011000000000000000000000
+11011010011000000100010000111110
+01101000000010101100010001100101
+00100000010000000111010011010101
+00011000000000000111000000001000
+10011000000000000101111000000000
+00011000000000000010001000000000
+00100000010000000111010011000001
+00100000010000000111010100110111
+11011010011000000100010001000000
+01101000000000001100010000111111
+00011111111000001010010111111111
+10011010011000001000101000000000
+00011000000000000111000000001100
+00011101111000100111111000000000
+11100000101000100000000000000000
+00100000010000000111010011101101
+01101000000000001100010000111111
+00011111111000001111111000000100
+01100000000000001100010000111111
+01101000000010101100010001100101
+00011000010000001000010000000001
+01100000000010101100010001100101
+00100000011000000000000000000000
+01101000000000001000001101000001
+00011111111001100111110000010100
+00100000001000010111010100010001
+11011010011000000000001101000010
+00011111111000001010010111111111
+00011111111000001111111111111100
+01100000000000001000001101000001
+10011010011000001000110000000000
+11101000110000100000000000000000
+00011000000000000111000000001000
+10011000000000000101111000000000
+00011000000000000010001000000000
+01101000000010101100010001101010
+00100000010000000111010011000001
+00100000010000000111010100110111
+00011000000000000111000000001100
+00011101111000100111111000000000
+01100000000000100000001101111100
+00100000010000000111010011101101
+11011010011000000000001101000000
+00100000010000000111010011010101
+01101000000010100000001101111100
+10011000010001100111111000000000
+00100100011110100000000000000000
+01101000000000100100010001101111
+10011000010001100111111000000000
+00100000011110100000000000000000
+01100000000010100100010001101111
+01101000000000101100010001101010
+00011111111000001111111000000001
+01100000000000101100010001101010
+00011000000000000111111000000000
+00100000011000000000000000000000
+00100100001110111111010100101111
+00100000011000000000000000000000
+00011000000000000110110000110000
+00011000000000000110110000000000
+00100000001000000111010100101111
+00011000000000000110110000110010
+00011000000000000110110000000010
+00100000001000000111010100101111
+00011000000000000110110000110100
+00011000000000000110110000000100
+00100000001000000111010100101111
+00011000000000000110110000110110
+00011000000000000110110000000110
+00100000001000000111010100101111
+00011000000000000110110000000001
+00011000000000000110110000000000
+00100000011000000000000000000000
+00011000000000000111000000000000
+01101000000000100000001110110000
+10011000000000000101111000000000
+00011111000000001111000000000001
+11101000110000100000000000000000
+10011000000000000101111000000000
+00011111000000001111000000000001
+01101000000000100100010010011100
+10011000000000000101111000000000
+00011111000000001111000000000001
+11101000110000100000000000000000
+10011000000000000101111000000000
+00011111000000001111000000000001
+00100000010000000111010110011110
+00011000000000000110110000111000
+00011000000000000110110000001000
+00100000001000000111010100101111
+01101000000000110100010011111001
+01101000000010110000001111010000
+00100000001101001111010101010110
+01101000000000110000001111010000
+01101000000010110100010011111001
+00011000000000000111000000001000
+00011000010000100101111000000000
+00011111000000001111000000000001
+00011000010011110101111000000000
+00011111111100000111111000000000
+10011101111000011101111000000000
+00011111000000001111000000000001
+00011111111011110101111000000000
+00011111000000001111000000000001
+00011000000000000101111000000000
+00011000000000000111111000000000
+01101000000000001100010011100110
+01101000000010001100010011011100
+00100100001101001111010101100110
+01101000000000001100010011101101
+01101000000010001100010011100110
+01100000000000001100010010101100
+01100000000010001100010010101101
+00011000000000000111000000000000
+11011010010000000100010010101100
+00011000000000000111001000000100
+11101010001000100000000000000000
+11101010010010100000000000000000
+10011000010000101101111000000000
+00011111000000001111000000000001
+00011010001000001010001000000100
+00011010010000001010010000000100
+11000010000000000111010101101011
+00100000010000000111010110011110
+00011000000000000110110000111000
+00011000000000000110110000001100
+00100000010000000111010100101111
+00100000010000000111010110011101
+00011000000000000110110000111010
+00011000000000000110110000001000
+00100000001000000111010100101111
+00101111001000000000011000000000
+00100000011000001000000000000000
+00011000110000100111111000000000
+10011111001000001000101000000000
+00011000000000000111111000000000
+11100000101000001000000000000000
+00011111001000001111001000000001
+00101111001000000000011000000000
+00100000011000001000000000000000
+00100000001000000111010101111111
+00011000000000000111000000000000
+00011111001000100111111000000000
+00100000001110100111010110001001
+11101000110000100000000000000000
+00011111001000001111001111111100
+10011000000000000101111000000000
+00011111000000001111000000000001
+00101111000000000001111000000100
+00100000011000001000000000000000
+00100000001000000111010110000101
+00011000000000000111000000001000
+00100000001000000111010110010011
+00011000000000000111000000000100
+00100000001000000111010110010011
+00011000000000000111000000000000
+00011000000000000111001000000100
+11101000110000100000000000000000
+10011000000000000101111000000000
+00011111000000001111000000000001
+11000010000000000111010110010100
+00100000011000000000000000000000
+11011000110000000000001111111101
+00100000001000000111010110010000
+00011000000000000111001000000100
+00100000001000000111010110100000
+00011000000000000111000000000000
+00011000000000000111001000000100
+00011000000000000101111000000000
+00011111000000001111000000000001
+11000010000000000111010110011111
+00100000011000000000000000000000
+00011000000000000111000000001100
+00011000000000000111001000000100
+00011101111000100111111000000000
+11100000101000100000000000000000
+00011111000000001111000000000001
+11000010000000000111010110100101
+00100000011000000000000000000000
+00011000000000000111000000001100
+00011010011000100000101000000000
+00011010010000001111001000000001
+00011111001001100111110000001111
+00100000001000010111010110110000
+00011000000000000111001000010000
+00011101111000100111111000000000
+00011111001001100111110000000011
+00100000001000010111010110111000
+11100000101000100000000000000000
+00011111001000001111001111111100
+00100000011000101000000000000000
+00011111000000001111000000000001
+00100000001000000111010110110000
+11100000101000001000000000000000
+00011111111011001111111000000000
+11000010000000000111010110111000
+00100000011000000000000000000000
+00011000000000000111000000001100
+00011000000000000111001000000100
+11101000110000100000000000000000
+10011101111001100111110000000000
+00100100011000101000000000000000
+00011111000000001111000000000001
+11000010000000000111010110111110
+00011000000000000111110000000000
+00100000011000000000000000000000
+01101000000100001000000001010000
+01111001001111111111111000000000
+01100000000100001000000001010000
+00100000011000000000000000000000
+01101000000100001000000001010000
+01111001001000000111111000000000
+01100000000100001000000001010000
+00100000011000000000000000000000
+11011000101000000000011101000010
+00111000000000111111111111111111
+00111000000001111111111111111111
+00111000000010111111111111111111
+00111000000011111111101111111111
+11100000101001001000000000000000
+00111000000000111111111111111111
+00111000000001111111111111111111
+00111000000010111111111111111111
+00111000000011111111111111111111
+11100000101001001000000000000000
+00111000000000111111111111111111
+00111000000001111111111111111111
+00111000000010111100111111111111
+00111000000011111111111111111111
+11100000101001001000000000000000
+00111000000000111111111111111111
+00111000000001111111111111111111
+00111000000010111111111111101111
+00111000000011111111111111111111
+11100000101001001000000000000000
+00111000000000111111111111111111
+00111000000001111111111111111111
+00111000000010111111111111111111
+00111000000011111111111111111111
+11100000101001001000000000000000
+00111000000000111111111111111111
+00111000000001100110110001111111
+00111000000010000001010001101011
+00111000000011110111101110110011
+11100000101001001000000000000000
+00111000000000011111111010111000
+00111000000001010000110000010010
+00111000000010101011011100100010
+00111000000011101001111110100110
+11100000101001001000000000000000
+00111000000000001110011100001111
+00111000000001010110011100100000
+00111000000010000101000110011110
+00111000000011011001000010000100
+11100000101001001000000000000000
+00111000000000110001000000010010
+00111000000001110110000010111111
+00111000000010111111000010101111
+00111000000011000000001111010011
+11100000101001001000000000000000
+00111000000000111010000110001000
+00111000000001000011101011010000
+00111000000010111100101111110010
+00111000000011100100001111011001
+11100000101001001000000000000000
+00111000000000101011000000110000
+00111000000001110110101000000011
+00111000000010010001000110001000
+00111000000011011110010100100000
+11100000101001001000000000000000
+00111000000000111010000100011110
+00111000000001001111111001011101
+00111000000010001101110101010111
+00111000000011011010110010010011
+11100000101001001000000000000000
+00111000000000000001000111101101
+00111000000001100001100011000100
+00111000000010001000110110100111
+00111000000011100101011111111111
+11100000101001001000000000000000
+00111000000000110001100100101011
+00111000000001110100011001000001
+00111000000010011011111000001100
+00111000000011110110011010101101
+11100000101001001000000000000000
+00111000000000000001111110000011
+00111000000001010101101000100011
+00111000000010111111100110110000
+00111000000011000011100101001001
+11100000101001001000000000000000
+00111000000000010011101001010001
+00111000000001010101001111111101
+00111000000010110011011100101010
+00111000000011001111000110111011
+11100000101001001000000000000000
+00111000000000111010111010000101
+00111000000001011110111011011001
+00111000000010001001111001100110
+00111000000011000000000110101000
+11100000101001000000000000000000
+00100000011000000000000000000000
+01011000000000000111011001001100
+01100000000000010100001010001110
+01011000000000000111011100001111
+01100000000000010100001010010000
+01011000000000000111011010101100
+01100000000000010100001010010010
+01011000000000000111011100010000
+01100000000000010100001010001010
+01011000000000000111011100011000
+01100000000000010100001010010100
+01111001001000000000000000100101
+01000100111111001100000000111111
+00100000011101011000000000000000
+01110000100000001000000100000000
+00100000010000000111011000111111
+01011000000000000111011100010111
+01100000000000010100001010001000
+01110000010010000000111000000000
+01110000010010000000101000000000
+01110000010010000000101100000000
+01011000000000000000000000000000
+01100000000000100100100000000000
+00100000010000000011111100100011
+00100000001110100011111101111001
+00100000010000000011111110010110
+00100000010000000011111101111110
+00100000001000000011111101101110
+01101000000010001100100000001111
+00100000010000000110100111010001
+01101000000010001100100000010000
+00100000001000000110100111010001
+01111001001000000000000000100101
+01000100111111010100000000111111
+01101000000010100100100000000110
+00011100010000100111111000000000
+01100000000000100100100000000110
+10011000010001100111111000000000
+00100100011000010000000000000000
+00011111111001100111111011001000
+00100000011000000000000000000000
+01101000000000001100001010111100
+11000001100111111000000000000000
+01111001001000000000000000100101
+01000100111111011100000000111111
+01101000000000001100000100110010
+11000001100001001000000000000000
+01111000010101000111110000000000
+00100000010000000111011010011011
+00100100011101000000000000000000
+01111000010101000111110000000000
+01101000000000001100000100110011
+11000000000000011111011100000110
+01101000000000001100100000001011
+11000000000000001111011001100011
+11000000000000010111011001111101
+00100000010000000111011001000011
+00100000001000010111011001100000
+01101000000000001100100000001010
+11000010100000000111011001110100
+11000010100000001111011010000010
+01110000010010000000101000000000
+01110000010010000000101100000000
+00100000011000000000000000000000
+01110000010010000000101100000000
+00100000010000000111101111011110
+01101000000000001100100000010001
+11000000000000001111011001101010
+01110000010010000000010100000101
+01110000010010000000000000000011
+00100000001000000111011010001000
+01110000010010000000111000000000
+00100000001000000111011001101100
+01110000010010000000111000000010
+00100000001000000111011010000100
+01110000010010000000111000000011
+00100000001000000111011001111111
+01110000010010000000111000000100
+00100000001000000111011001111000
+01110000010010000000111000000000
+00100000001000000111011001100111
+01110000010010000000101100000001
+00100000010000000111101111100111
+01101000000000001100100000010001
+11000000000000001111011001111100
+01110000010010000000010100000101
+01011000000000100000000000000011
+01100000000000011100100000000000
+00100000001000000111011010001000
+00100000011000000000000000000000
+01110000010010000000101100000000
+00100000010000000111101111011110
+01110000010010000000010100001010
+01110000010010000000000000000001
+00100000001000000111011010001000
+01110000010010000000101100000010
+00100000010000000111101111100111
+01110000010010000000010100001010
+01110000010010000000000000000001
+01011000001010000000000000000000
+01100000000000011100100000000001
+01111001001000000000000000100101
+01000100111111100100000000111111
+01101000000000001100100000000101
+00011111111000100010001000000000
+00100000010000000100101100101100
+01101000000000010100001010110111
+11100000101000010000000000000000
+01011000000000000000000010100001
+11100000101000001000000000000000
+01101000000010100100100000000000
+11100000101011000000000000000000
+01011000000000000000000000000000
+11100000101000001000000000000000
+01100000000000100100100000000000
+01101000000000001100100000001110
+11000000000000010111011001101110
+11000000000000011111011001110000
+11000000000000100111011001110010
+00100000011000000000000000000000
+01101000000010001100100000001111
+00100000010000000110100111100101
+01011000000000000000000000000000
+01111001001000001111111000000000
+01100000000000001100100000000100
+01101000000010001100100000010000
+00100000010000000110100111100101
+01011000000000000000000000000000
+01111001001000001111111000000001
+01101000000010001100100000000100
+10011000010000011111111000000000
+01101000000010001100100000001010
+01100000000000001100100000001010
+10011000010000101111110000000000
+00100000011000101000000000000000
+01111000001101000111110000000000
+00100000011000000000000000000000
+00011010011000100111111000000000
+11000000000000101111011011011000
+11000000000000110111011011011010
+11000000000000111111011011011101
+11000000000100111111011011100001
+11000000000000010111011011001001
+11000000000000100111011011010000
+11000000000010011111011011010000
+11000000000000001111011011000110
+11000000000010010111011011000000
+11000000000101110011111101010111
+00011111111000010000010000001111
+00011111111000010111111011110000
+11000000001010000111011011100100
+00100000011000000000000000000000
+01101000000000001100011111110010
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001100011111110010
+00100100011110100000000000000000
+01110000010000100111111100000001
+00100000010000000011111110100100
+00100000010000000011111110100010
+00100000010000000011111101111110
+00100000010000000011111110011000
+00100000001000000011111110011110
+01110000010010000000110100000000
+01110000010010000000110000000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100111111101100000000111111
+01110000010000101001110100000000
+01110000010010000000110000000000
+01110000010010000000110100000000
+01101000000000010100001010100000
+11000011000000011111011011010100
+01101000000000010100011111111110
+01100000000000010100011111110000
+00100000010000000011111100010010
+00100000001000000011111101111011
+11000011000000001111011011010110
+00100000001000000111011011010000
+11000011000000010111011011010010
+00100000001000000111011011010000
+00100000010000000011111101111110
+00100000001000000011111110011000
+01011000000000000000000000000010
+01100000000000001100011111110010
+00100000011000000000000000000000
+01110000010010000000110000000000
+01011000000000000000000000000001
+01100000000000001100100000001101
+00100000011000000000000000000000
+01011000000000000000000000000101
+01100000000000001100100000001100
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100111111110100000000111111
+01100000000010001000001001011001
+01101000000000001000001001011001
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001000001001011001
+00100000010000000111011011101111
+00100000010000000111011010111011
+00100000010000000111011011111010
+00100000001000000111011011100111
+01101000000000001100100000001100
+00100000011110100000000000000000
+01101000000000001100100000001100
+00011111111000001111111111111111
+01100000000000001100100000001100
+00100100011110100000000000000000
+01101000000000001000001011100110
+01111001001000000111111000000000
+01111001001000000111111000000111
+01100000000000001000001011100110
+00100000011000000000000000000000
+01101000000000001100100000001101
+00100000011110100000000000000000
+01101000000000001100100000001101
+00011111111000001111111111111111
+01100000000000001100100000001101
+00100100011110100000000000000000
+00100000001000000011111101110111
+01111001001000000000000000100101
+01000100111111111100000000111111
+01101000000000001100000100110011
+11000001100000011000000000000000
+00100000001000000111011001001110
+00100000010000000111011001000011
+00100000011000010000000000000000
+01101000000000001100100000001010
+00100000011110100000000000000000
+00100000010000000011111100100011
+00100000001110100011111101111001
+00100000010000000011111110010110
+00100000010000000011111101111110
+00100000001000000011111101101110
+00100000001000000111011100000001
+01101000000010001100100000001111
+00100000010000000110100110110100
+01101000000000001100100000010001
+11000000100000001111011100010101
+00100000011000000000000000000000
+01101000000010001100100000010000
+00100000001000000110100110110100
+00100000001000000111011000111111
+00100000001000000011111110011010
+01111001001000000000000000100101
+01000100111110010100000000111110
+01101000000000001100011111011100
+00100000001110100110000000001001
+00100000010000000110000000000011
+01011000000000000000000000000000
+01100000000001000000011111011010
+01100000000000100000011111100010
+11011000101000000000011111101001
+11100000101000111000000000000000
+01110000000001111110000000000000
+00100000001000000111011110100100
+01110000000001111101110000000001
+00100000001000000111011100101010
+01101000000000001100011110010011
+11000000000000001111011111000010
+00100000001000000011101111110001
+01101000000000001100011110010011
+11000000000000001111011100101101
+00100000001000000111011110100100
+00100000010000000111011111000010
+01101000000000001000011111011011
+00100100011110100000000000000000
+01110000000001111101101000000011
+00100000011000000000000000000000
+01101000000000001000011111011110
+11000000100000000111011101010000
+00100000010000000111011101001101
+11011000101000000000100010011000
+01011000000000000000100001001000
+11100000101000010000000000000000
+01011000000000000100011111000100
+11100000101000010000000000000000
+01011000000000000000100000001000
+11100000101000010000000000000000
+00100000001000000111011101000100
+11011000101000000000100010011000
+01011000000000000000100001011000
+11100000101000010000000000000000
+01011000000000000000100000001000
+11100000101000010000000000000000
+01011000000000000100011111000100
+11100000101000010000000000000000
+00100000010000000111101011010010
+01101000000000001000011111011011
+11000000000000100111011101001010
+01110000000001111101110000000001
+01110000000001111101101000000101
+00100000011000000000000000000000
+01110000000001111101101100010100
+00100000010000000111011100100111
+00100000001000000111100000001111
+11011000101000000000100000111000
+00011000000000000000111000001000
+00100000001000000111011111011011
+01110000000001111101110000000001
+00100000011000000000000000000000
+11011000101000000000011011000011
+01101000000000110100000101000000
+11100000101000110000000000000000
+01101000000000110000000001000000
+11100000101000110000000000000000
+01101000000000011000011111101001
+11100000101000011000000000000000
+00100000010000000111101100111100
+11011010001000000000100001101000
+11011010010000000000100001111000
+00011000000000000000111000000100
+00100000010000000111011111100000
+00100100001000001111011101101000
+01101000000000001000011111011011
+11000000000001001111011101100101
+01110000000001111101101000001010
+01110000000001111101110000000001
+01110000000000000111110000000011
+00100000011000000000000000000000
+01110000000000000111110000000011
+01110000000001111101101100010101
+00100000001000000111100000001111
+01101000000000001000011111011011
+11000000000001001111011101101110
+01110000000001111101101000000000
+01110000000000000111110000000100
+01110000000000000111111000000101
+00100000011000000000000000000000
+01110000000000000111110000000100
+01110000000001111101101100000000
+00100000011000000000000000000000
+01101000000000001000011111011111
+11000000000000001111011101110101
+01110000000001111101101100001010
+00100000001000000111100000001111
+11011000101000000000011011000011
+01101000000000110000000001000000
+11100000101000110000000000000000
+01101000000000110100000101000000
+11100000101000110000000000000000
+01101000000000011000011111100110
+11100000101000011000000000000000
+00100000010000000111101101001010
+01101000000000001000011111011011
+11000000000001010111011110000010
+01110000000001111101101000001011
+01110000000001111101110000000001
+00100000011000000000000000000000
+01110000000001111101101100001011
+01110000000001111101110100000001
+00100000011000000000000000000000
+11011000101000000000100010011000
+01101000000000110000000001000000
+11100000101000110000000000000000
+01101000000000110100000101000000
+11100000101000110000000000000000
+01011000000000000000100001001000
+11100000101000010000000000000000
+01011000000000000000100001011000
+11100000101000010000000000000000
+00100000001000000111011110011001
+01110000000001111101101000001111
+11011000101000000000100010011000
+01101000000000110100000101000000
+11100000101000110000000000000000
+01101000000000110000000001000000
+11100000101000110000000000000000
+01011000000000000000100001011000
+11100000101000010000000000000000
+01011000000000000000100001001000
+11100000101000010000000000000000
+11011000101000000000011011000011
+01101000000000110000100010011000
+11100000101000110000000000000000
+01101000000000110000100010011110
+11100000101000110000000000000000
+00100000010000000111101100000110
+01110000010000100101111000000001
+11011000101000000100001001100010
+11011000110000000000100001101000
+00100000010000000111111000110101
+00100000001000000011001000101001
+01111001001000000000000000100101
+01000100111110011100000000111110
+01101000000000001100011110010011
+11000001100000000000000000000000
+01101000000000001000011111011110
+11000001100000000000000000000000
+11011000101000000100011110010100
+00011000000000000000111000001011
+00100000010000000111011111011011
+00011000000010100111111000000000
+00011111111000110111111000000000
+11100000101000010000000000000000
+11011000101000000000011001011010
+11011000110000000100011110010100
+00100000010000000111111000110011
+11011000101000000000010110000010
+11011000110000000000011110001010
+00100000010000000111111000101101
+11011000101000000000010110110010
+00100000010000000111111000111010
+01110000000001011011001000000001
+00100000010000000111101101111111
+01110000000001111101111000000001
+00100000011000000000000000000000
+11011000101000000100011110101100
+11011000110000000000010111001010
+00100000010000000111111000101101
+01110000010001111001001100000001
+01110000000001111101111000000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100111110100100000000111110
+01101000000000001000011111100101
+11000001100000000000000000000000
+01101000000000001000011111011110
+11000001100000000000000000000000
+11011000101000000000011001011010
+11011000110000000100011110010100
+00100000010000000111111000110011
+11011000101000000000010110000010
+11011000110000000000011111110000
+00100000010000000111111000101101
+11011000101000000000010110110010
+00100000010000000111111000111010
+01110000000001011011001000000001
+00100000010000000111101101111111
+01110000000001111101111000000010
+00100000011000000000000000000000
+01110000000001111101111100000001
+11011000101000000000100000100000
+11011000110000000000010111001010
+00100000010000000111111000110011
+01110000000001111110010100000001
+01110000000001111101111000000000
+00100000011000000000000000000000
+00011000111000001000111111111111
+00100100011000010000000000000000
+00011000000010100111111000000000
+11100000101000010000000000000000
+00100000001000000111011111011011
+00011000111000001000111111111111
+00100100001000010111011111101100
+11101010001000100000000000000000
+00011111111000100000010000000000
+11101010010000100000000000000000
+10011000010000101111111000000000
+00100100001000101111011111101010
+00011010001000001010001000000100
+00011010010000001010010000000100
+00100000001000000111011111100000
+01111000010000001111110000000000
+00100000011000000000000000000000
+01111000001000001111110000000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100111110101100000000111110
+01101000000000001000011111011100
+00100000011110100000000000000000
+01110000000001111101110000000000
+01101000000000001000011111011010
+11000000000000011110000100010111
+11000000000000101110000100110100
+11000000000000111110000100111111
+11000000000001011110000101010101
+11000000000000010111011100100101
+11000000000000100111011100110010
+11000000000001001111011101010010
+11000000000001010111011101110001
+11000000000001100111011110001111
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100111110110100000000111110
+01101000000000001000011111011101
+00100000011110100000000000000000
+01110000000001111101110100000000
+01101000000000001000011111011011
+11000000000010010110000011110111
+11000000000010011110000011111111
+11000000000000011110000100000011
+11000000000000100111011100111101
+11000000000010100110000100000111
+11000000000000111110000100010101
+11000000000001010111011101110001
+11000000000001011110000101010100
+11000000000001001111011101010010
+11000000000010101110000101001110
+00100000011000000000000000000000
+01110000000001111101110100000001
+00100000011000000000000000000000
+01110000000001111101110100000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100111110111100000000111110
+01101000000000001000011111011110
+00100000011110100000000000000000
+00011111111000001111111010000000
+01100000000000001000011111011110
+11000011100000111000000000000000
+01101000000000001000010110000001
+00100000001110100111100000011101
+00100000001000000111101110001010
+00100000010000000111101000001100
+01101000000000001000011111011110
+11000000000000001111011110111100
+11000000000000010111011111010100
+00100000011000000000000000000000
+00011111111000010000111000000111
+00011111111010010111111000000000
+10011000110000001000110000000000
+11101000110000001000000000000000
+10101111111011000000000000000000
+00100000011000000000000000000000
+00100000010000000111111000110011
+00100000010000000111111000110011
+00100000001000000111111000110011
+11101000110001000000000000000000
+00100100011110100000000000000000
+11101000110001000000000000000000
+00100100011110100000000000000000
+11101000110001000000000000000000
+00100000011000000000000000000000
+00011000000000000111001000000110
+11101010001000100000000000000000
+10011000000000000000010000000000
+11101010010000100000000000000000
+10011000010001100111110000000000
+00100100011000101000000000000000
+00011010001000001010001000000100
+00011010010000001010010000000100
+11000010000000000111100000110010
+00100000011000000000000000000000
+00011000000000000111001000000110
+00011010001000001010001000010100
+00011010010000001010010000010100
+11101010010000100000000000000000
+10011000000000000000010000000000
+11101010001000100000000000000000
+10011000010001100111111000000000
+00100100011000010000000000000000
+00100100011110100000000000000000
+00011010001000001010001111111100
+00011010010000001010010111111100
+11000010000000000111100000111110
+00100000011000000000000000000000
+00011000000000000111001000000110
+00011000000000000010011000000000
+11101010001000100000000000000000
+10011000000000000000010000000000
+11101010010000100000000000000000
+10011000010000001111111000000000
+10011010011000001111111000000000
+11100000101000100000000000000000
+00101111111011111111111000100000
+01111001001000001010011000000000
+00011010001000001010001000000100
+00011010010000001010010000000100
+11000010000000000111100001001010
+00100000011000000000000000000000
+00011000000000000111001000000110
+00011000000000000010011000000000
+11101010010000100000000000000000
+10011000000000000000010000000000
+11101010001000100000000000000000
+10011000010001100111111000000000
+10011010011001100111111000000000
+11100000101000100000000000000000
+00101111111011111111111000100000
+01111001001000001010011000000000
+00011010001000001010001000000100
+00011010010000001010010000000100
+11000010000000000111100001011000
+00100000011000000000000000000000
+00011000000000000111001000000110
+00011010001000001010001000010100
+00011000000000000010011000000000
+11101010001000100000000000000000
+00101111111011111111111000000000
+01111001001000001010011000000001
+00011111111000110111111000000000
+00101010011011111111111000000000
+01111001001000001111111000011111
+11100010001000100000000000000000
+00011010001000001010001111111100
+00011010011000110010011000000000
+11000010000000000111100001100111
+00100000011000000000000000000000
+00011000000000000111001000000110
+00011000000000000010011000000000
+11101010001000100000000000000000
+00101111111011111111111000011111
+01111001001000001010011000000001
+00011111111000111111111000000000
+00101010011011111111111000000000
+01111001001000001111111000000000
+11100010001000100000000000000000
+00011010001000001010001000000100
+00011010011000110010011000000000
+11000010000000000111100001110100
+00100000011000000000000000000000
+00100000010000000111100001110010
+00101010011011111111111000000000
+00100000001000001111100010001000
+11011010010000000000011101000010
+00011010001000100010011000000000
+00011010001000001010001111101000
+00100000010000000111100000111011
+00100100011000010000000000000000
+00011010011000100010001000000000
+00011010001000001010001111101000
+11011010010000000000011101000010
+00011010001000100000101000000000
+00100000001000000111100001010110
+00100000010000000111100001001000
+00011000101000100010001000000000
+00100000001000000111100010000000
+00100000010000000111100001010110
+00101010011011000000000000000000
+00100000011000001000000000000000
+11011010010000000000011101000010
+00011000101000001010001111101000
+00011010001000100000101000000000
+00100000001000000111100001001000
+00011000101000100001011000000000
+00011010001000100110000000000000
+11011010010000000000011010110010
+00011010010000100000101000000000
+00011010001000001000110000011000
+11101000110001000000000000000000
+11100000101001000000000000000000
+11100000101001000000000000000000
+00011000000000000111111000000000
+11100000101001000000000000000000
+00011001011000100000101000000000
+00100000010000000111100010001100
+11011010010000000000011010110010
+00011010010000100000101000000000
+00011000000000000111111000000000
+11100000101001000000000000000000
+00011110000000001000110000100000
+11101000110001000000000000000000
+11100000101001000000000000000000
+11100000101001000000000000000000
+00011001011000100010001000000000
+00011010001000100000101000000000
+00100000010000000111100010001100
+11011010010000000000011010110010
+00011010010000100000101000000000
+00011110000000001000110000101000
+11101000110001000000000000000000
+11100000101001000000000000000000
+11100000101001000000000000000000
+11100000101001000000000000000000
+00011001011000100010001000000000
+00011010001000100000101000000000
+00100000001000000111100010001100
+00011000000000000111001000000110
+11101000110000100000000000000000
+10011000000000000101111000000000
+00011111000000001111000000000001
+11000010000000000111100010111000
+00100000011000000000000000000000
+00011000101000100001011000000000
+11011000101000000000011010000010
+00100000010000000111111000111010
+11011000101000000000011010000010
+00011010001000100000110000000000
+00011000000000000111000000000000
+00100000010000000111100010110111
+00011010010000100000110000000000
+00100000010000000111100010110111
+00011000000000000010010000000000
+00011000000000000000010000000000
+00011000000000000010011000000110
+11101000101000100000000000000000
+10011000000000000010001000000000
+00011010010000100111000000000000
+00011101111000100111111000000000
+00011010011000100111000000000000
+10011101111011111111111000000000
+10011010001000001111111000000000
+10011000010000001111111000000000
+11100000101000100000000000000000
+00011111111011110000010000000000
+00011010011000001010011000000001
+00101010011000011111111000001100
+00100100001000001111100011001001
+00011000010000100111111000000000
+11100000101000100000000000000000
+00011000101000001000101111101000
+00011010010000001010010000000001
+00101010010000011111111000000110
+00100100001000001111100011000111
+11011010001000000000011010000010
+00011001011000100000101000000000
+00100000001000000111100010010110
+00011010001000100010010000000000
+00100000001000000111100010111101
+00011010001000100110000000000000
+00011110000000100010001000000000
+11101010001000001000000000000000
+00101111111011111111111000000000
+00100000011000001000000000000000
+00100000010000000111100001100100
+11101010010000001000000000000000
+00101111111011000000000000000000
+00100000001000001111100011110001
+11011010001000000000011101000010
+00011010010000100000101000000000
+00100000010000000111100001001000
+11101010010000001000000000000000
+10011010011000001111111000000000
+11100010010000001000000000000000
+00011010010000001010010111101000
+00011010010000001010001000011000
+00011000000000000111001000000111
+00100000010000000111100001100110
+00100000001000000111100011100010
+00011000101000100001011000000000
+11011000101000000000011011100010
+00100000010000000111111000111010
+00011000000000000111111000000000
+01100000000000100000011010011010
+01100000000000100000011011111010
+01110000000001101110001000000001
+11011000101000000000011010000010
+00100000010000000111111000111010
+11011000110000000000011101000010
+11011000101000000000011010110010
+00100000010000000111111000110011
+00011010001000100000110000000000
+11011000101000000000011011001010
+00100000010000000111111000110011
+11011000110000000000011011001010
+00100000010000000111100000101011
+00100000001110100111100100101101
+11011010001000000000011011001010
+11011010010000000000011011100010
+00100000010000000111100011100001
+11011010001000000000011010110010
+11011010010000000000011010000010
+00100000010000000111100011100001
+11011010001000000000011011001010
+11011010010000000000011010110010
+00100000010000000111100000111011
+00100000001000010111100100011111
+11011010001000000000011010110010
+11011010010000000000011011001010
+00011010001000100000101000000000
+00100000010000000111100001010110
+11011010001000000000011011100010
+11011010010000000000011010000010
+00011010010000100000101000000000
+00100000010000000111100001001000
+11101010001000001000000000000000
+10011010011000001010011000000000
+11101010010000001000000000000000
+10011010011000001111111000000000
+11100010010000001000000000000000
+00100000001000000111100100000100
+11011010001000000000011011001010
+11011010010000000000011010110010
+00011010001000100000101000000000
+00100000010000000111100001010110
+11011010001000000000011010000010
+11011010010000000000011011100010
+00011010010000100000101000000000
+00100000010000000111100001001000
+11101010001000001000000000000000
+10011010011000001010011000000000
+11101010010000001000000000000000
+10011010011000001111111000000000
+11100010010000001000000000000000
+00100000001000000111100100000100
+11011000101000000000011011100010
+00100000010000000111111000111010
+01101000000000001000011010011010
+01100000000000001000011011100010
+01100000000000001000011011101010
+11011010001000000000011011100010
+11011010010000000000011010000010
+00011010010000100000101000000000
+00100000010000000111100010001100
+11011010001000000000011101000010
+11011010010000000000011010000010
+00011001011000100000101000000000
+00100000001000000111100010001111
+11011010001000000000011001000010
+11011000101000000000011011111010
+00100000010000000111100011011111
+11011010001000000000011011111010
+11011000101000000000011100010010
+00100000010000000111100011011111
+11011010001000000000011101011010
+11011010010000000000011100010010
+11011000101000000000011100010010
+00100000010000000111100010111101
+11011010001000000000011000010010
+11011000101000000000011011111010
+00100000010000000111100011011111
+11011000110000000000011011111010
+11011000101000000000011011001010
+00100000010000000111111000110011
+11011010001000000000011011001010
+00100000010000000111100001111111
+11011010001000000000011011111010
+11011010010000000000011011001010
+11011000101000000000011011111010
+00100000010000000111100010001100
+11011010001000000000011011111010
+11011010010000000000011100010010
+11011000101000000000011011111010
+00100000010000000111100010001100
+11011000110000000000011000010010
+11011000101000000000011011001010
+00100000010000000111111000110011
+11011010001000000000011000101010
+11011000101000000000011100010010
+00100000010000000111100011011111
+11011010001000000000011011001010
+00100000010000000111100001111111
+11011010001000000000011011001010
+00100000010000000111100001111111
+11011010001000000000011011001010
+11011010010000000000011100010010
+11011000101000000000011011001010
+00100000010000000111100010111101
+11011010001000000000011100010010
+11011000101000000000011011100010
+00100000010000000111100011011111
+11011010001000000000011011100010
+00100000010000000111100001111111
+11011010001000000000011011100010
+00100000010000000111100001111111
+11011010001000000000011011100010
+00100000010000000111100001111111
+11011000110000000000011000101010
+11011000101000000000011100010010
+00100000010000000111111000110011
+11011010001000000000011100010010
+00100000010000000111100001111111
+11011010001000000000011100010010
+11011010010000000000011001000010
+11011000101000000000011001000010
+00100000010000000111100010111101
+11011010001000000000011011111010
+11011000101000000000011100010010
+00100000010000000111100011011111
+11011010001000000000011100010010
+11011010010000000000011011001010
+11011000101000000000011100010010
+00100000010000000111100010001111
+11011010001000000000011100010010
+11011010010000000000011011001010
+11011000101000000000011000010010
+00100000010000000111100010001111
+11011010001000000000011011001010
+11011010010000000000011000010010
+11011000101000000000011100010010
+00100000010000000111100010001111
+11011010001000000000011100010010
+11011010010000000000011011111010
+11011000101000000000011100010010
+00100000010000000111100010111101
+11011010001000000000011100010010
+11011010010000000000011011100010
+11011000101000000000011000101010
+00100000001000000111100010001111
+11011010001000000000010110110010
+11011000101000000000011100101010
+00100000010000000111100011011111
+11011010001000000000011000010010
+11011010010000000000011100101010
+11011000101000000000011011100010
+00100000010000000111100010111101
+11011010001000000000010110110010
+11011010010000000000011100101010
+11011000101000000000011100101010
+00100000010000000111100010111101
+11011010001000000000011000101010
+11011010010000000000011100101010
+11011000101000000000011011001010
+00100000010000000111100010111101
+11011010001000000000011001000010
+11011000101000000000011100101010
+00100000010000000111100011011111
+11011010001000000000010110000010
+11011010010000000000011100101010
+11011000101000000000011011111010
+00100000010000000111100010111101
+11011010001000000000011001000010
+11011010010000000000011100101010
+11011000101000000000011100101010
+00100000010000000111100010111101
+11011010001000000000010110011010
+11011010010000000000011100101010
+11011000101000000000011100010010
+00100000010000000111100010111101
+11011010001000000000011011100010
+11011010010000000000011011111010
+11011000101000000000011100101010
+00100000010000000111100010001111
+11011010001000000000011011100010
+11011010010000000000011011111010
+11011000101000000000011011100010
+00100000010000000111100010001100
+11011010001000000000011011001010
+11011010010000000000011100010010
+11011000101000000000011011111010
+00100000010000000111100010001111
+11011010001000000000011011001010
+11011010010000000000011100010010
+11011000101000000000011011001010
+00100000010000000111100010001100
+11011010001000000000011011001010
+11011010010000000000011100101010
+11011000101000000000011011001010
+00100000010000000111100010111101
+11011010001000000000011001000010
+11011010010000000000010110110010
+11011000101000000000011100010010
+00100000010000000111100010111101
+11011010001000000000011100010010
+11011010010000000000011100101010
+11011000101000000000011001000010
+00100000010000000111100010111101
+11011010001000000000011100101010
+11011000101000000000011100101010
+00100000010000000111100011011111
+11011010001000000000011100101010
+11011010010000000000011011100010
+11011000101000000000011100010010
+00100000010000000111100010111101
+11011010001000000000011100101010
+11011010010000000000011011001010
+11011000101000000000011011001010
+00100000010000000111100010111101
+11011010001000000000011011111010
+11011000101000000000011000010010
+00100000010000000111100011011111
+11011010001000000000011000010010
+11011010010000000000011100010010
+11011000101000000000011000010010
+00100000010000000111100010001111
+11011000110000000000011000010010
+11011000101000000000011100101010
+00100000010000000111111000110011
+11011010001000000000011100101010
+00100000010000000111100001111111
+11011010001000000000011100010010
+11011010010000000000011100101010
+11011000101000000000011100010010
+00100000010000000111100010001111
+11011010001000000000011100010010
+11011010010000000000011011111010
+11011000101000000000011011111010
+00100000010000000111100010111101
+11011010001000000000011011111010
+11011010010000000000011011001010
+11011000101000000000011000101010
+00100000010000000111100010001111
+11011010001000000000011000101010
+11011010010000000000011101000010
+11011000101000000000011000101010
+00011000000000000010011000000000
+01101000000000001000011000101010
+00101111111011111111111000000000
+00100000010000001111100001001000
+00011010011000100110000000000000
+11011010001000000000011000101010
+00100000010000000111100001100100
+01101000000000001000011001000001
+00101110000011111111111000000000
+01111001001000001111111000000111
+01100000000000001000011001000001
+00100000011000000000000000000000
+01110000000001011000000111000000
+01110000000001011000000000000001
+01101000000000001000010110000001
+00011111111000001111111111111111
+00100100011000010000000000000000
+01100000000000001000010110000001
+01101000000000001000010110000000
+00100000010110100111100100111010
+01101000000000001000010110000001
+11011000110000000000011001011010
+00100000010000000111100000100010
+00100000001000001111100111111001
+01101000000000001000010110000000
+00100100001110100111101000000111
+00100000010000000111100110001011
+00100000001000000111100111111001
+01110000000001011000000000000000
+11011000110000000000010110000010
+11011000101000000000011000010010
+00100000010000000111100000101000
+00100000001000000111100111111001
+11011010001000000000011001000010
+11011000101000000000011100010010
+00100000010000000111100011110101
+11011010001000000000011100010010
+11011000101000000000011011001010
+00100000010000000111100011011111
+11011010001000000000011000010010
+11011010010000000000011011001010
+11011000101000000000010111001010
+00100000010000000111100010111101
+11011010001000000000011100010010
+11011010010000000000011011001010
+11011000101000000000011011111010
+00100000010000000111100010111101
+11011010001000000000011000101010
+11011010010000000000011011111010
+11011000101000000000010111100010
+00100000001000000111100010111101
+00011000000000000111001000010000
+11101000110000100000000000000000
+00011000000000000010001000000100
+00011000101000001000101000000011
+11100000101000001000000000000000
+00011111111011001111111000000000
+00011000101000001000101111111110
+00011010001000001010001111111111
+00100100001000101111101000100010
+00011000101000001000101000000101
+11000010000000000111101000011111
+00100000011000000000000000000000
+00011000111010111111111000000000
+10011001011000001000110000000000
+11101000110000100000000000000000
+00100000011000000000000000000000
+00011000000000000110000000010000
+11011001011000000000010110000010
+00011110000000001000111111111001
+00100000010000000111101000101010
+10011000000000000000010000000000
+00011110000000001000111111110000
+00100000010000000111101000101010
+10011000010000001000010000000000
+00011110000000001000111111111110
+00100000010000000111101000101010
+00011111111011100111111000000001
+10011000010000001000010000000000
+00011110000000001000111111110001
+00100000010000000111101000101010
+00011111111011100111111000000000
+10011000010000001000010000000000
+00011110000010111111111000000000
+10011001011000001000101000000000
+11100000101010100000000000000000
+00011110000000001110000000000001
+00101110000000011111111001000000
+00100100001000001111101000110000
+00100000011000000000000000000000
+11011000110000000000011110111010
+00011000000000000111000000000111
+11101000110000100000000000000000
+10011000000000000101111000000000
+00011111000000001111000111111111
+00100000001000010111101001000111
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100111111000100000000111111
+00100000010000000111101000101110
+11011000101000000000011010000010
+00011000000000000111000000000000
+00011101111000100111111000000000
+11100000101000100000000000000000
+00011111000000001111000000000001
+00101111000000011111111000001000
+00100100001000001111101001010001
+00100000010000000111010111000101
+11011001011000001000011100000000
+11011110000000000000010110000010
+00011000000000000111001001000000
+11101110000010100000000000000000
+11101001011000100000000000000000
+00011001011000001001011000000100
+00011110000000001110000000000100
+10011000010000001111111000000000
+00011000000000000111000000000111
+10011101111000001000010000000000
+00011000000000000111000000000100
+00011101111011100111111000000011
+10011000010000001000010000000000
+00011000000000000111000000000101
+00011101111000100111111000000000
+00011000000000000111000000000110
+10011101111000101111111000000000
+00011000000000000111000000000100
+10011101111000010111111000000000
+00011000000000000111000000000110
+10011101111000101111111000000000
+10011000010000001000010000000000
+00011000000000000111000000000111
+00011000010000100101111000000000
+00011000000000000111000000000011
+00011101111000100111111000000000
+10011000010000001101111000000000
+00011000000000000111000000000000
+00011101111000100111111000000000
+00011000000000000111000000000001
+10011101111000010000010000000000
+10011101111000011111111000000000
+00011000000000000111000000000010
+10011101111000010111111000000000
+10011000010000011000010000000000
+00011000000000000111000000000000
+00011101111011100111111000000010
+10011000010000001111111000000000
+00011000000000000111000000000111
+10011101111000001101111000000000
+10011000000011101111110000000000
+11000010000000000111101001011010
+11011000110000000000011010000010
+00011000000000000111000000000000
+11101000110000100000000000000000
+10011101111000001101111000000000
+00011111000000001111000000000001
+00101111000000011111111000001000
+00100100001000001111101010000011
+00100000001000000111010111001001
+11011000101000000000100001011000
+00011000000000000111000000000111
+00011101111000100111111000000000
+11100000101000100000000000000000
+00011111000000001111000111111111
+00100000001000010111101010001011
+00100000011000000000000000000000
+11011000101000000000010110000010
+00011000110000001000110111111100
+00011111001001100010001000010000
+11101000110000100000000000000000
+10011000010000101111111000000000
+11100000101000100000000000000000
+00011000110000001000110111111000
+11000010000000000111101010010011
+00011010001000100111001000000000
+00011000010000100111111000000000
+11100000101000100000000000000000
+11000010000000000111101010011010
+00100000011000000000000000000000
+11011000110000000000100000001000
+11011000101000000000010110000010
+00011000000000000111001000000110
+00100000010000000111101110010111
+11011000110000000100011111000100
+00011000000000000111001000000110
+00100000010000000111101110010111
+11011000110000000000100001011000
+00100000010000000111101110010110
+00100000010000000111101001000101
+00100000010000000111101001001100
+11011000110000000000100001001000
+11011000101000000000010110000010
+00100000001000000111101010111000
+11011000110000000100011111000100
+11011000101000000000010110000010
+00011000000000000111001000000110
+00100000010000000111101110010111
+11011000110000000000100000001000
+00011000000000000111001000000110
+00100000010000000111101110010111
+11011000110000000000100001001000
+00100000010000000111101110010110
+00100000010000000111101001000101
+00100000010000000111101001001100
+11011000110000000000100001011000
+11011000101000000000010110000010
+00100000010000000111101110010110
+01011000100000000000000000000000
+00011111111011010111111000000000
+11100000101000100000000000000000
+00011000000000000111001000000101
+00100000010000000111111000111011
+01011000000000000000001010000000
+11100000101000100000000000000000
+00100000010000000111101001001100
+01101000000000100000100001011000
+11011010001000000000001111101000
+10011010001001101111110000000000
+00100000010000000111111011111101
+00011000000001110111111000000000
+01100000000000100000011111101100
+00011000000001111111111000000000
+11011010001000000000001111101000
+10011010001001101111110000000000
+00100000010000000111111011111101
+00011000000001110111111000000000
+11011010001000000000001111101000
+10011010001011111111111000000000
+01101000000010100000011111101100
+10011000010000001111111000000000
+01100000000000100000011111101100
+00100000011000000000000000000000
+01011000001101100011011000110110
+00011111111011010000010000000000
+00011000010000011000010000110110
+01101000000000010000100010011000
+00011111111000100000110000000000
+00011000000000000111001000000100
+00100000010000000111101010010000
+00100000010000000111101001000101
+00100000010000000111101001001100
+01101000000000010000100010011010
+00011111111000100000110000000000
+11011000101000000000010110000010
+00011000000000000111001000000110
+00100000010000000111101110010111
+01101000000000010000100010011100
+00011111111000100000110000000000
+00011000000000000111001000000110
+00100000010000000111101110010111
+01011000100000000000000000000000
+11100000101000011000000000000000
+00011000000000000111111000000000
+11100000101000001000000000000000
+00011000000000000111111000000000
+11100000101001000000000000000000
+01011000000000000000001110001000
+11100000101000100000000000000000
+00100000010000000111101001001100
+00100000010000000111101010001001
+11011000110000000000100001011000
+11011000101000000000011010100010
+00100000010000000111111000110001
+01011000010111000101110001011100
+00011111111011010000010000000000
+00011000010000011000010001011100
+01101000000000010000100010011000
+00011111111000100000110000000000
+00011000000000000111001000000100
+00100000010000000111101010010000
+00100000010000000111101001000101
+00100000010000000111101001001100
+11011000110000000000011011000010
+11011000101000000000010110000010
+00011000000000000111001000001000
+00100000010000000111101110010111
+01011000100000000000000000000000
+00011111111011010111111000000000
+11100000101000100000000000000000
+00100000010000000111111000111010
+01011000000000000000001100000000
+11100000101000100000000000000000
+00100000010000000111101001001100
+00100000001000000111101010001001
+01011000001101100011011000110110
+00011111111011010000010000000000
+00011000010000011000010000110110
+11011000110000000000100000111000
+00011000000000000111001000000110
+00100000010000000111101010010000
+00100000010000000111101001000101
+00100000010000000111101001001100
+01101000000000010000100010100100
+00011111111000100000110000000000
+11011000101000000000010110000010
+00100000010000000111101110010110
+01101000000000010000100010100110
+00011111111000100000110000000000
+00100000010000000111101110010110
+01011000011000100111010001101100
+00011111111011010111111000000000
+00011111111000011111111001101011
+11100000101000100000000000000000
+11011000110000000000011011001111
+00011000000000000111001000000011
+00100000010000000111101110010111
+01011000100000000000000000000000
+00011111111011010111111000000000
+11100000101000100000000000000000
+00011000000000000111111000000000
+11100000101001000000000000000000
+01011000000000000000001110000000
+11100000101000100000000000000000
+00100000010000000111101001001100
+00100000010000000111101010001001
+11011000110000000000100001011000
+11011000101000000000011010100010
+00100000010000000111111000110001
+01011000010111000101110001011100
+00011111111011010000010000000000
+00011000010000011000010001011100
+11011000110000000000100000111000
+00011000000000000111001000000110
+00100000010000000111101010010000
+00100000010000000111101001000101
+00100000010000000111101001001100
+11011000110000000000011011000010
+11011000101000000000010110000010
+00011000000000000111001000001000
+00100000010000000111101110010111
+01011000100000000000000000000000
+00011111111011010111111000000000
+11100000101000100000000000000000
+00100000010000000111111000111010
+01011000000000000000001100000000
+11100000101000100000000000000000
+00100000010000000111101001001100
+00100000001000000111101010001001
+01011000001101100011011000110110
+00011111111011010000010000000000
+00011000010000011000010000110110
+11011000110000000000100000111000
+00011000000000000111001000000110
+00100000010000000111101010010000
+00100000010000000111101001000101
+00100000010000000111101001001100
+11011000110000000000100001011000
+11011000101000000000010110000010
+00100000010000000111101110010110
+11011000110000000000100001001000
+00100000010000000111101110010110
+00100000001000000111101101010111
+01011000001101100011011000110110
+00011111111011010000010000000000
+00011000010000011000010000110110
+11011000110000000000100000111000
+00011000000000000111001000000110
+00100000010000000111101010010000
+00100000010000000111101001000101
+00100000010000000111101001001100
+11011000110000000000100001001000
+11011000101000000000010110000010
+00100000010000000111101110010110
+11011000110000000000100001011000
+00100000010000000111101110010110
+01011000000000000000000000000000
+11100000101001000000000000000000
+11100000101001000000000000000000
+00011000101000100000010000000000
+01110000000001101100001010000000
+00011000010000100000101000000000
+11011000110000000000011011010010
+00100000010000000111101110010110
+00100000010000000111101001001100
+11011000101000000000010110000010
+00011000000000000111001000000111
+00100000010000000111111000111011
+11100000101000100000000000000000
+01011000000000000000001111111000
+11100000101000100000000000000000
+00100000010000000111101001001100
+00100000010000000111101010001001
+11011000110000000000100001011000
+11011000101000000000011010100010
+00100000010000000111111000110001
+01011000010111000101110001011100
+00011111111011010000010000000000
+00011000010000011000010001011100
+11011000110000000000100000111000
+00011000000000000111001000000110
+00100000010000000111101010010000
+00100000010000000111101001000101
+00100000010000000111101001001100
+11011000110000000000011011000010
+11011000101000000000010110000010
+00011000000000000111001000001000
+00100000010000000111101110010111
+01011000100000000000000000000000
+00011111111011010111111000000000
+11100000101000100000000000000000
+00100000010000000111111000111010
+01011000000000000000001100000000
+11100000101000100000000000000000
+00100000010000000111101001001100
+00100000001000000111101010001001
+01110000000001011000000111000000
+01101000000000001000010110000001
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001000010110000001
+11011000110000000000011001011010
+00100000010000000111100000100010
+00100000001000001111101110000000
+11011000110000000000010110000010
+11011000101000000000011000010010
+00100000001000000111100000101000
+00100000010000000111100100111010
+01101000000000001000010110000001
+00011111111000001111111111111111
+01100000000000001000010110000001
+11011000110000000000011001011010
+00100000010000000111100000100010
+00100000011000001000000000000000
+00100000001000000111100110001011
+01110000000001011000000000000000
+11011000110000000000010110000010
+11011000101000000000011000010010
+00100000001000000111100000101000
+00011000000000000111001000000100
+00011000110000001000110111111100
+11101000110000100000000000000000
+11100000101000100000000000000000
+00011000110000001000110111111000
+11000010000000000111101110011000
+00100000011000000000000000000000
+00100000011101011000000000000000
+00100000010000000111101110100101
+00100000010000000111110000010011
+00100000001000000111101111011001
+01101000000000001100000100110010
+11000001000000001000000000000000
+00100000010000000111101111110010
+00100000001000000111110000000100
+01101000000000001100011111111101
+11000001011111111000000000000000
+10011000000000000000010000000000
+00100000010000000110100111011010
+01101000000010001100011111111101
+00100000010000000110100111101101
+00100000000000000000000001100100
+01101000000010001100011111111101
+00100000010000000110100111010001
+00100000001000000111101110110001
+01110000010001111111110111111111
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100110000101100000000110000
+01101000000000001100011111111101
+11000001011111111000000000000000
+00011111111000100000010000000000
+00100000010000000110100111100101
+00100100001000001111101111000100
+00100000010000000111101111001110
+01101000000000010100011111110100
+01111001001000000111111000001100
+01100000000000010100011111110100
+01101000000000001100011111101011
+11000001000000000000000000000000
+01110000010001111110101100000000
+01101000000000001100011111111100
+01100000000000001100011111101010
+00100000010000000111101111010101
+01110000000010110111110100101100
+00100000001000000111110000100111
+01101000000000010100011111110100
+01111001001111111111111000001100
+01100000000000010100011111110100
+01101000000000001100011111101011
+11000001000000001000000000000000
+01110000010001111110101100000001
+01110000010001111110101000000000
+00100000010000000111101111010111
+01110000000010110111110100101101
+00100000001000000111110000100111
+01101000000000001100011111101010
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000001100011111101010
+00100100011110100000000000000000
+01110000000010110111110100010000
+00100000001000000111110000100111
+11011000111000000000000000000111
+00100000001000000011110111000010
+11011000111000000000000000000111
+00100000001000000011110111000110
+01101000000000001100011111110111
+11000001011111111000000000000000
+10011000000000000000010000000000
+00100000010000000110100111011010
+00100000001000000111101111100010
+01101000000000010100011111110100
+01111001001111111111111000001101
+01100000000000010100011111110100
+01110000010001111110100100000000
+01101000000000010100011111110100
+01111001001111111111111000001110
+01100000000000010100011111110100
+01101000000010001100011111110111
+00100000001000000110100111101101
+01101000000000010100011111110100
+01111001001000000111111000001110
+01100000000000010100011111110100
+01110000010001111110100100000000
+01101000000010001100011111110111
+00100000001000000110100111101111
+01101000000000010100011111110100
+01111001001000000111111000001101
+01100000000000010100011111110100
+01110000010001111110100100000001
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100110000110100000000110000
+01101000000000001100011111101001
+11000001000000000000000000000000
+11011000111000000000000000001001
+00100000010000000111111001010011
+00100100011110100000000000000000
+01101000000000001100011111101001
+11000000000000010111101111111111
+00100000010000000111101111100111
+01110000010001111110100100000010
+01101000000000010100011111111010
+00100000001000000111110000000010
+00100000010000000111101111100010
+01110000010001111110100100000011
+01101000000000010100011111111000
+11011000111000000000000000001001
+00100000001000000111111001001100
+01111001001000000000000000100101
+01000100110000111100000000110000
+11011010001000000000000000000000
+01101000000010100100011111101100
+00011100010000100010010000000000
+00011010010000100111111000000000
+00011000010000001000010010100000
+00011000010000001000010010100000
+10011000010001100111110000000000
+00100100001000010111110000010110
+00011010001000001010001000000001
+00011010001000010111111000001111
+00100100001110100111110000001001
+11011010001000000000000000000000
+00100000010000000111110000011101
+00011100010000100111111000000000
+01100000000000100100011111101100
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100110001000100000000110001
+00011010001000100111111000000000
+00100000011110100000000000000000
+00011000010000001000010101100000
+00011000010000001000010101100000
+01100000000010100100011111101100
+00011111111000001111111001010000
+01100000000000001000101101111101
+00100000001000000111110000100111
+01110000010001111101110100000001
+01101000000000001100011111011110
+00100100001110100111110000100001
+00100000011000000000000000000000
+01110000010001111101110100000000
+00100000011000000000000000000000
+00100000001000000111111110011111
+01111001001000000000000000100101
+01000100110001001100000000110001
+01101000000000001100000100110010
+11000001000000001000000000000000
+00100000010000000111110000100000
+00011010001000100111111000000000
+01100000000000100000100010101011
+11011010001000000100011111011111
+00100000010000000111111110010010
+01101000000000100000100010101011
+00011111111000100010001000000000
+00100000001000000111110000100100
+01111001001000000000000000100101
+01000100110001010100000000110001
+01101000000000001100000100110010
+11000001000000001000000000000000
+00100000010000000111110000100000
+00011010001000100111111000000000
+01100000000000100000100010101011
+11011010001000000100011111100100
+00100000010000000111111110010010
+01101000000000100000100010101011
+00011111111000100010001000000000
+00100000001000000111110000100100
+01111001001000000000000000100101
+01000100110001011100000000110001
+01011000000000000000000000000000
+01100000000000101100011111100100
+01100000000000101100011111011111
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100110001100100000000110001
+01101000000000001100001001110010
+00100100011110100000000000000000
+11011010001000000100011111100100
+00100000010000000111111110101100
+00100000011110100000000000000000
+01110000000010001010101000000000
+00100000010000000111110001010001
+01101000000000001000100010101010
+00100000001110100111110001000101
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100110001101100000000110001
+00100000010000000111110000100000
+11011010001000000100011111100100
+00100000010000000111111110011111
+00011111111000100000010000000000
+00100000010000000111110000100100
+00011000010000100111111000000000
+00100000011110100000000000000000
+11000000000000001111110010010111
+11000000000000010111110010011100
+11000000000000011111110010100010
+11000000000000111111110010100111
+11000000000001000111110010101000
+11000000000001001111110010101001
+11000000000001011111110010101100
+11000000000001100111110010101101
+11000000000001101111110010101110
+11000000000001110111110010110001
+11000000000001111111110010110011
+11000000000010000111110010110110
+11000000000010010111110010111011
+11000000000010101111101111101101
+11000000000010100111101111100111
+11000000000010011111101111011110
+11000000000010110111110010111100
+11000000000010111111110011000001
+11000000000011000111110011000011
+11000000000011001111110011001000
+11000000000011011111110011000110
+11000000000011100111110011010011
+11000000000011110111110011010101
+01100000000000001000101101111101
+01111001001000000000000000100101
+01000100110001110100000000110001
+01101000000000001000000001111100
+00100000001110100111110001111001
+00100000010000000110000111011001
+01101000000000001000000001111100
+00100100001110100111110010001100
+01101000000000001000101101111101
+11000101100001001111110010000111
+11000000000000101100101000011001
+11000000000000110100101000101000
+11000000000001010111110010101010
+11000000000000100111110010100100
+11000000000010001111110010111000
+11000000000011101111110010001110
+11000000000011111110100100001100
+11000000000100000110100100010000
+11000000000010010111110010000101
+00100000011000000000000000000000
+01110000000010110111110100101111
+00100000001000000101011000100000
+01100000000000001000101101111101
+00100000010000000011001011101110
+00100000001000101111110010001100
+00100000010000000011001011111001
+00100100011000101000000000000000
+01110000000010001010101000000001
+00100000001000000111110000110011
+01110000000000000111110000110100
+01111001001000000000000000000011
+00100100011101001000000000000000
+01110000010001110100100000000000
+01110000000000000111110000010011
+01101000000000001000000101110111
+01111001001111111111111000000010
+01100000000000001000000101110111
+00100000011000000000000000000000
+01101000000000010100011111110100
+01111001001000000111111000000110
+01100000000000010100011111110100
+01110000010000010011001100000011
+00100000011000000000000000000000
+01110000010001111111001000000000
+01110000010000010011001100000000
+01101000000000010100011111110100
+01111001001111111111111000000110
+01100000000000010100011111110100
+00100000011000000000000000000000
+01110000010000100111001000000101
+00100000011000000000000000000000
+01110000000000000111110000000111
+01110000000001000100011000010011
+00100000011000000000000000000000
+00100000011000000000000000000000
+00100000011000000000000000000000
+00100000011000000000000000000000
+01110000000001000101000000000010
+00100000001000000100100111011010
+00100000011000000000000000000000
+00100000011000000000000000000000
+01110000010000111101100000000001
+01110000010001001101101100000000
+00100000011000000000000000000000
+01110000010000111101100000000000
+00100000011000000000000000000000
+01110000010000111101100000000001
+01110000010001001101101100000001
+00100000011000000000000000000000
+01110000010000111101100000000000
+00100000011000000000000000000000
+01011000000000000000000000000001
+01100000000000010000001111101111
+00100000011000000000000000000000
+00100000011000000000000000000000
+01110000010000111101001000000001
+01110000010000100111001000011011
+01101000000000110000001001101000
+01100000000000110100010011100111
+00100000011000000000000000000000
+01110000010000111101001000000001
+00100000011000000000000000000000
+01110000010000111101001000000000
+01110000010000100111001000000000
+00100000011000000000000000000000
+01110000000010110111110101001011
+00100000001000000101011000100000
+01111001001000000000000000100101
+01000100110001111100000000110001
+01101000000000010100001010001000
+00100000010000000111111101100110
+01101000000000001100011111111101
+11000000011111111111110011010000
+00011111111000100000010000000000
+00100000010000000110100111010001
+00100000010000000111101111100010
+00100000010000000111110000111111
+00100000001000000011110011001101
+01110000010001101111100000000001
+00100000011000000000000000000000
+00011000000000000000111000000100
+00100000001000000111111001001011
+01101000000000001100011111110100
+11000100000001100000000000000000
+11000100000000111000000000000000
+00100000001000000111110011010101
+01111001001000000000000000100101
+01000100111010101100000000111010
+00100000010000000111110111110011
+01101000000100001000110000100110
+01100000000000001000100010101111
+01101000000100001000110000100111
+01100000000000001000100010110000
+01110000100011000010011011100000
+01101000000000001000100010110000
+00101111111000000000001000000001
+00100000010000001111110100111010
+01111001001000000000000000100101
+01000100111010110100000000111010
+01101000000000001000100010101111
+00101111111000000000001000000001
+00100000010000001111110011111000
+01101000000000001000100011111000
+11000000100000010111110111000010
+01101000000000010000100011111001
+00011111111000001111111000000001
+01100000000000010000100011111001
+01101000000010010000100011111011
+10011000010001100111110000000000
+00100000001000010111110110110010
+01101000000000001000100010101111
+11000011000000110111110111000010
+01011000000000000000000000000000
+01100000000000010000100011111001
+00100000001000000111110111000010
+01111001001000000000000000100101
+01000100111010111100000000111010
+01110000100011000010011000010001
+01101000000100001000110000100000
+01100000000000001000100010110001
+00011111111000100111001000000000
+00100000001110100111110100011000
+11011000101000000000100011111111
+00100000010000000111110100110110
+01101000000000001000100010110001
+00011111111001100111110000000111
+00100000011000010000000000000000
+01111001001000000000000000100101
+01000100111011000100000000111011
+01101000000000001000100011111111
+11000000000100000111110100010110
+11000000000100001111110100100010
+11000000000000000111110100010000
+01101000000000001000100100000000
+11000000000000101111110110011011
+11000000000000110111110100111101
+11000000000001001111110110011000
+11000000000001011111110110100010
+00100000001000000111110100110010
+01101000000000001000100100000000
+11000000000000001111110110101111
+11000000000000011111110110101011
+11000000000001001111110100110100
+11000000000000101111110110011011
+00100000001000000111110100110010
+00100000010000000111110100110100
+00100000011000000000000000000000
+01101000000000001000100010101111
+11000010100000100111110100000100
+00100000011000000000000000000000
+01101000000000001000100011110110
+00011111111000001111111000000001
+01100000000000001000100011110110
+00101111111000011111111000000010
+00100100001000001111110100110100
+01110000000010001111011100000001
+00100000001000000111110100110100
+01101000000000001000100100000000
+11000000000001010111110100100111
+11000000000001001111110100101110
+11000000000001011111110100011011
+00100000001000000111110100110010
+01101000000000001000100011111000
+11000000000000101111110100101100
+11000000100000100111110100110100
+01110000000010001111100000000101
+00100000001000000111110100110100
+01110000000010001111100000000010
+00100000001000000111110100110100
+01110000000010001111011100000001
+11011010001000000000100011110111
+11011010010000000000000000000001
+00100000001000000111110101100101
+01110000100011000001000100000001
+00100000011000000000000000000000
+01110000100011000001001001000000
+00100000011000000000000000000000
+01101000000100001000110000011000
+11100000101000001000000000000000
+11000010000000000111110100110110
+00100000011000000000000000000000
+01110000100011000010011100000001
+00100000010000000111110101111100
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100111011001100000000111011
+01111001001111111000000000100011
+01101000000000001000100100000010
+11000000000000001111110101000111
+11000000000000010111110101001001
+11000000000000011111110101001011
+11000000000100001111110101010111
+11000000000100010111110101011011
+00100000011000000000000000000000
+11011010001000000000100100010010
+00100000001000000111110101100010
+11011010001000000000101010110110
+00100000001000000111110101100010
+01101000000000001000100100000001
+00011111111000010111111000000011
+11011010001000000000101100011010
+11000000000000000111110101100010
+01111001001000000000000000100011
+11011010001000000000101100011111
+11000000000000001111110101100010
+11011010001000000000101100111101
+11000000000000010111110101100010
+11011010001000000000101101011011
+11000000000000011111110101100010
+00100000001000000011101111110001
+11011010001000000000101011001000
+01101000000000001000101011001000
+00011111111000100010010000000000
+00100000001000000111110101100101
+01101000000000010000100100000011
+11000000000000001111110101011111
+11011010001000000000100100100110
+00100000001000000111110101100010
+01110000000010001111100000000001
+11011010001000000000100111101110
+00100000001000000111110101100010
+11101010001000001000000000000000
+10011000000000000010010000000000
+00011010001000001010001000000001
+01111001001000000000000000100101
+01000100111011010100000000111011
+11000101100100011111110101110001
+00011010010000001111111000000001
+00011111111000111111111000000000
+01100000000100001000110000011000
+01110000100011000001100000000011
+01101000000000001000100100000101
+00011111111000001111111111111110
+00011111111000110111111000000000
+01100000000000001000100100000101
+11000000000000000111110101111010
+01101000000000001000100100000101
+10011010010001100111110000000000
+00100000001000010111110101110101
+00011111111000100010010000000000
+00011010001000100111111000000000
+01100000000000010000100100001111
+00011010010000100111111000000000
+01100000000000001000100100010001
+00100000001000000111110101111100
+11011000111000000000000000000000
+00100000001000000111110111010101
+01111001001000000000000000100101
+01000100111011011100000000111011
+01101000000000001000100100010001
+00100000011110100000000000000000
+00011111111000100111001000000000
+00011111111001100111110001000000
+00100000001000010111110110000100
+11011111001000000000000001000000
+01101000000000001000100100010001
+10011111001001100111111000000000
+01100000000000001000100100010001
+01101000000000010000100100001111
+00011111111000100000110000000000
+11101000110000001000000000000000
+01100000000100001000110000011000
+11000101100100011111110110001101
+01110000100011000001100000000000
+11000010000000000111110110001001
+00011000110000100111111000000000
+01100000000000010000100100001111
+11011000111000000000000000000000
+00100000010000000111110111010101
+01101000000000001000100100010001
+00100100011110100000000000000000
+01101000000000001000100011111000
+11000001100000001000000000000000
+01110000000010001111100000000010
+00100000011000000000000000000000
+01101000000000001000100100000001
+00011111111001100111110000000001
+00100100001000010111110100110010
+01101000000000001000100011111111
+11000000100000000111110100110010
+01101000000000010000100100000011
+11000000100000000111110100110010
+01101000000000001000100100000101
+11000000100000000111110100110010
+00100000001000000111110100110100
+01101000000000001000100011111111
+11000000100000001111110100110010
+01101000000000001000100100000001
+11000000100000000111110100110010
+01101000000000001000100100000010
+11000000100000000111110100110010
+01101000000000001000100100000101
+11000000100000000111110100110010
+00100000001000000111110100110100
+01101000000000001000100100000001
+11000000100000001111110100110010
+01110000000010001111100000000011
+00100000001000000111110100110100
+01101000000000001000100100000001
+11000000100000001111110100110010
+00100000001000000111110100110100
+01111001001000000000000000100101
+01000100111011100100000000111011
+01110000100011000000000000000000
+00100000000000000010011100010000
+01110000100011000001000011000000
+01101000000100010000000001010000
+01111001001111111111111000001010
+01100000000100010000000001010000
+01110000100011000000000000111100
+01110000100011000010011011111111
+01110000100011000010011111111111
+01110000000011111111000000000000
+01110000000010001111100000000000
+01011000000000000000000000000000
+01100000000000010000100011111001
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100111011101100000000111011
+01101000000000001000111111110000
+00100000011110100000000000000000
+01101000000000001000100011111000
+11000000000000011111110111101100
+11000001100000010000000000000000
+01101000000000001000111111110000
+01110000000011111111000000000000
+11011111001000000000000000000110
+11011000110000000000111111110001
+11000000000000010111110111010000
+11000000000000001111110111101001
+00100000001000000011101111110001
+11011010001000001000110000011001
+11011000111000000000000000000001
+11101000110000001000000000000000
+11100010001000001000000000000000
+11000010000000000111110111010010
+01111001001000000000000000100101
+01000100111011110100000000111011
+01111000010010000111110000000000
+01101000000000010000100011111101
+10011000000000000011011000000000
+01110000100011000010011001000000
+01101000000100001000110000100110
+00100000001000011111110110110010
+11000011000000110111110111011011
+01101000000000010000100011111101
+10011000000000000011011000000000
+11011000010000000000000000000000
+11111001001000000000010000000000
+01100000000110001000110000100111
+00100000001000011111110110110010
+01100000000110001000110000010000
+01101000000100001000110000100111
+10101111111011000000000000000000
+00100000001000001111110111100011
+00100000011000000000000000000000
+11011000111000000000000000000010
+11011010001000001000110000011010
+00100000001000000111110111010010
+01111001001000000000000000100101
+01000100111011111100000000111011
+01110000100011000000000011111100
+00100000000000000010011100010000
+01110000100011000000000000111100
+01110000000010001111100000000100
+00100000011000000000000000000000
+01101000000000001000111111110000
+00100100011110100000000000000000
+01101000000000010000100011110010
+00100000011110100000000000000000
+00011111111000001111111111111111
+01100000000000010000100011110010
+01110000000011111111000000000001
+00100000011000000000000000000000
+00011111001001100111110000000000
+00100000011000101000000000000000
+00011111111000110111111000000000
+11000010000000000111110111111101
+00100000011000000000000000000000
+00011000101000100111111000000000
+01100000000000010000001010111001
+01100000000011000000001010100000
+00011001011000100111111000000000
+01100000000000100000001010101000
+00011010001000100111111000000000
+01100000000000100000001010101100
+00011010010000100111111000000000
+01100000000000100000001010110000
+00011010011000100111111000000000
+01100000000000011000001010110100
+00011000110000100111111000000000
+01100000000000010000001010110111
+00100000011000000000000000000000
+01101000000011000000001010100000
+01101000000000100000001010101000
+10011000000000000001011000000000
+01101000000000100000001010101100
+10011000000000000010001000000000
+01101000000000100000001010110000
+10011000000000000010010000000000
+01101000000000011000001010110100
+10011000000000000010011000000000
+01101000000000010000001010111001
+10011000000000000000101000000000
+01101000000000010000001010110111
+10011000000000000000110000000000
+00100000011000000000000000000000
+00011000101000100111111000000000
+01100000000000010000101101111011
+00011000110000100111111000000000
+01100000000000010000101101111001
+00100000011000000000000000000000
+01101000000000010000101101111011
+00011111111000100000101000000000
+01101000000000010000101101111001
+00011111111000100000110000000000
+00100000011000000000000000000000
+00011100010000100111111000000000
+00011111111000001111111000010000
+00011111111000001111111000010000
+00011100010000100000010000000000
+10011000010001100111110000000000
+00100000001000010111111000101001
+00100000011000000000000000000000
+11101000110001000000000000000000
+11100000101001000000000000000000
+11101000110001000000000000000000
+11100000101001000000000000000000
+11101000110001000000000000000000
+11100000101001000000000000000000
+11101000110001000000000000000000
+11100000101001000000000000000000
+11101000110001000000000000000000
+11100000101001000000000000000000
+11101000110001000000000000000000
+11100000101001000000000000000000
+00100000011000000000000000000000
+00011000000000000111001000000011
+00011000000000000111111000000000
+11100000101001000000000000000000
+11000010000000000111111000111100
+00100000011000000000000000000000
+00011111001000100111111000000000
+00100000011110100000000000000000
+01011000000000000000000000000000
+11100000101000001000000000000000
+11000010000000000111111001000010
+00100000011000000000000000000000
+00011111001000100111111000000000
+00100000011110100000000000000000
+11101000110000001000000000000000
+11100000101000001000000000000000
+11000010000000000111111001000111
+00100000011000000000000000000000
+01011000000000000000000000000000
+11011000101000000100001000111110
+10011000000000000000010000000000
+00011000111000111111111000000000
+10011000101000001000101000000000
+11100000101010010000000000000000
+00100000011000000000000000000000
+11011000111000000000000000000000
+01111001001000000000000000100101
+01000100110111100100000000110111
+01101000000010100100000100110100
+00011100010000110111111000000000
+01100000000000100100000100110100
+10011000010001100001011000000000
+00011001011000100000010000000000
+11011000110000000100001000111110
+00011000110000100000101000000000
+11011111001000000000000000010000
+11101000110000010000000000000000
+10011000010001100111111000000000
+00100000001000010111111001100001
+00011000000000000111111000000000
+11100000101000010000000000000000
+11000010000000000111111001011101
+11011000110000000100001000111110
+00011000111000111111111000000000
+10011000110000001000110000000000
+11101000110000010000000000000000
+00100000011000000000000000000000
+00011000111000001000111000000001
+00011000111000001000111111111111
+00100000011000101000000000000000
+00011111111011010111111000000000
+00100000001000000111111001101001
+10011000010000001000010000000000
+00011000010000100111001000000000
+01011000000000000000111010100110
+10011111001001100111111000000000
+00100000011000010000000000000000
+00011111111001100111111000000000
+00011000010100010000010000000000
+00011000010000001000010000000001
+00011000010100000000010000000000
+10011000010000011000010000000000
+00100000011000000000000000000000
+00100000010000000111111001111010
+00100000001000000111111010000100
+01111000010101000111110000000000
+10011000010001100111111000000000
+00100000001000010111111001111111
+01111000001101000111110000000000
+00011111111001100111111000000000
+11000100000001111000000000000000
+11011000010111110000111010100110
+10011000010000001111111000000000
+01111001001111111111111001000000
+00100000011000000000000000000000
+10011000000000000000110000000000
+00011111111100010111111000000000
+11011000010000000000111010100110
+10011000010011111111111000000000
+10011000110000001111111000000000
+00100000011000000000000000000000
+00011111111011010111111000000000
+00011111111100100111111000000000
+01101000000010011100001000010000
+10011000010001101111110000000000
+00100000010000000111111011111101
+00011000000001111000010000000000
+00100000011000000000000000000000
+11011000010000000000111010100110
+10011000010001101111110000000000
+00100000010000000111111011111101
+00011000000001111111111000000000
+00011111111100000111111000000000
+00011000000001110000010000000000
+10011000010000011000010000000000
+00100000011000000000000000000000
+11011111001000000000000000000011
+00100000001000000111111010011110
+11011111001000000000000000000010
+00100000001000000111111010011110
+11011111001000000000000000000110
+11101010001000001000000000000000
+00011111111000100000010000000000
+00011111111100011111111000000000
+00100000010000000111111010101010
+11100001010000001000000000000000
+00011000010000100111111000000000
+00011111111000010111111000001111
+00100000010000000111111010101010
+11100001010000001000000000000000
+00011010001000001010001000000001
+11000010000000000111111010011110
+00100000011000000000000000000000
+00011111111001100111110000001001
+00100000001000010111111010101110
+00011111111000001111111001010111
+00100000011000000000000000000000
+00011111111000001111111000110000
+00100000011000000000000000000000
+11011000010000000000000000000000
+00011000010000100010011000000000
+11101000011000001000000000000000
+00011111111001100111110000101100
+00100000011000101000000000000000
+00100000010000000111111011001001
+00011010011000100000010000000000
+00100000010000000111111100110010
+11011010010000000000000000001010
+10011010010011111111111000000000
+10011000010000001111111000000000
+00011111111000100000010000000000
+00100000001000000111111010110001
+11011111001000000000000000000010
+00100000001000000111111011000000
+11011111001000000000000000000110
+11101000011000001000000000000000
+00100000010000000111111011001001
+00011111111100100010011000000000
+11101000011000001000000000000000
+00100000010000000111111011001001
+10011010011000001111111000000000
+11100000101000001000000000000000
+11000010000000000111111011000000
+00100000011000000000000000000000
+11011000010000000000000000111010
+10011000010001100111110000000000
+00100100001000010111111011010010
+11011000010000000000000001100001
+10011000010001100111110000000000
+00100000001000010111111011010101
+11011000010000000000000000110111
+10011000010001100111111000000000
+00100000011000000000000000000000
+11011000010000000000000000110000
+10011000010001100111111000000000
+00100000011000000000000000000000
+11011000010000000000000001010111
+10011000010001100111111000000000
+00100000011000000000000000000000
+00011000010000100110000000000000
+01011000000000000000000111111111
+00011000000000000010010000000000
+00011111111010010010001000000000
+00011010001000110010001000000000
+10011010001000101010001000000000
+00101010001011111111111000000000
+01111001001000001111111000001001
+00011000010000110000010000000000
+00101111111011111111111000000000
+01111001001000001000010000000111
+00011111111000110111111000000000
+00011010010000001010010000000001
+00101010010000000000111000000000
+00100100001000001111111011011011
+11100000101010001000000000000000
+11000010000000000111111011011011
+00011110000000100000010000000000
+00100000011000000000000000000000
+00011111111001101111110000001010
+00100000010000000111111011111101
+00011000000001111111111000000000
+00011111111010111010001000000000
+00011010001010111010001000000000
+00011000000001110111111000000000
+10011010001000011111111000000000
+00100000011000000000000000000000
+00101010001011111111111000000000
+00100000001000001111111011110111
+10011000000000000010010000000000
+00100000011000000000000000000000
+00011111111010111111111000000000
+00011111111010111111111000000000
+10011010010000011111111000000000
+11100000101000001000000000000000
+00011000101000001000101111111110
+00100000011000000000000000000000
+00100000011110101000000000000000
+00100000001000000111111011111101
+01100000000001000000000101100001
+00011000000000000111111000100000
+00011000000000000111001000001000
+11011000101000000000000000101000
+11100000101000001000000000000000
+11000010000000000111111100000011
+11011000101000000000000000101000
+00011000101000001000101000000111
+01101000000001000000000101100001
+00011111111001101111110000001010
+00100000010000000111111011111101
+00011000000001110111111000000000
+00011111111000011111111000110000
+11100000101000001000000000000000
+00011000101000001000101111111110
+00011000000001111111111000000000
+00100000011110100000000000000000
+00100000001000000111111100001000
+01100000000001000000000101100001
+00011000000000000111111000000000
+01100000000001000000000000101000
+11011000101000000000000000101000
+00011000101000001000101000000111
+01101000000001000000000101100001
+00011000000000000010001000000000
+00011111111001101111110000001010
+00100000010000000111111011111101
+00011000000001110111111000000000
+00100000010000000111111011110011
+00011010001000001010001000000001
+00011000000001111111111000000000
+00011111111001100111110000001001
+00100100001000010111111100011000
+00100000010000000111111011110011
+00101010001011111111111000000000
+00100000011000001000000000000000
+11100000101000001000000000000000
+00100000011000000000000000000000
+11101010001000001000000000000000
+11101010010010001000000000000000
+10011000010001100111110000000000
+00100100011000101000000000000000
+00011010001000001010001000000001
+00011010010000001010010000000001
+11000010000000000111111100100101
+00011000000000000111110000000000
+00100000011000000000000000000000
+10011000010001100111110000000000
+00100100011000010000000000000000
+00011000010000100111111000000000
+00100000011000000000000000000000
+10011000010000001111111000000000
+10011000010001100000010000000000
+10011000010001100111111000000000
+00100000011000000000000000000000
+11011111001000000000001000000000
+11011000101000000100000000000000
+00100000001000000111111000111011
+01101000000000101000000010011100
+01100000000000101000000101100001
+01101000000000010100001000010000
+11100000101000010000000000000000
+01011000000000000000000000000000
+01111001001101101111111000000111
+01111001001101011111111000000110
+01111001001011000111111000000101
+01111001001101110111111000000100
+11100000101000001000000000000000
+00100000001000000111111101010010
+01101000000000101000000010011100
+01100000000000101000000101100001
+01101000000000001000000000010110
+11100000101000001000000000000000
+01101000000000010000001111011010
+11011000110000000000111111111111
+10011000110000010111111000000000
+01111001001101101111111000001111
+01111001001101011111111000001110
+01111001001011000111111000001101
+01111001001101110111111000001100
+11100000101000010000000000000000
+00100000001000000111111101010010
+01100000000001000000000101100001
+01101000000000001100000101101110
+11000001001111111000000000000000
+00011111111000010111111001111111
+00011111111010011111111000000000
+11011000101000000100110000000000
+10011000101000001000101000000000
+01101000000001000000000101100001
+11100000101001000000000000000000
+01101000000000001100000101101110
+00101111111011111111111000000111
+00011111111000001111111000000001
+00011111111000010111111001111111
+01111001001000001111111000000111
+01100000000000001100000101101110
+01101000000001000000000101100001
+00100000011000000000000000000000
+11011111001000000000100000000000
+11011000101000000000000000000000
+01011001000000010000000100000001
+00100000001000000111111000111100
+00100000011110100000000000000000
+00011111111000100111101000000000
+01101000000100010000000100001110
+00100100001110100111111101101000
+00100000011000000000000000000000
+01101000000100010000000001011000
+00011111111000100000011000000000
+00100000011000000000000000000000
+01101000000100010000000001011110
+00011111111000100001010000000000
+00100000011000000000000000000000
+00011000110000100010001000000000
+00100000010000000111111101101110
+00011010001000100000110000000000
+00100000010000000100100101110110
+00100000010000000110100011111010
+00100000001000000111111101101000
+01110000100000100000001100000001
+00100000011000000000000000000000
+01100000000100010000001000000101
+01101000000100001000001000000011
+01111001001000000111111000000100
+01100000000100001000001000000011
+00100000011000000000000000000000
+01100000000100010000001000000111
+01101000000100001000001000000011
+01111001001000000111111000000110
+01100000000100001000001000000011
+00100000011000000000000000000000
+01100000000100010000001000000101
+01110000100000100000001100110000
+00100000011000000000000000000000
+01101000000100001000000001000011
+01111001001000000111111000000100
+01100000000100001000000001000011
+00100000011000000000000000000000
+01101000000100001000000001000011
+01111001001111111111111000000100
+01100000000100001000000001000011
+00100000011000000000000000000000
+01101000000100010000000100001110
+11011000010000000000001000000000
+10011000010001100111110000000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100110111101100000000110111
+11101010001010101000000000000000
+00011000010000010111111011111111
+00100100001110100111111110011001
+00011000010011001111111000000000
+11100010001000101000000000000000
+00011010001000001010001000000100
+11101010001000001000000000000000
+00100100001110100011101111110001
+01101000000000001000101101111101
+11100010001000001000000000000000
+00100000011000000000000000000000
+01111001001000000000000000100101
+01000100110111110100000000110111
+11011111001000000000000000000101
+11101010001000101000000000000000
+00100000011110100000000000000000
+11101010001000001000000000000000
+00100100001110100111111110101001
+00011010001000001010001000000001
+11000010000000000111111110100100
+00100000001000000011101111110001
+11011000010000000000000000000000
+11100010001010001000000000000000
+00100000011000000000000000000000
+11101010001000101000000000000000
+00100000011000000000000000000000
+11101010001000001000000000000000
+00100000011000000000000000000000
+11101010001000010000000000000000
+00100000011000000000000000000000
+11011000010000000000000000000000
+01101000000000001000000000000110
+11000010000000000111111110110011
+00011000010000001000010000000001
+11000010000000000111111110110011
+00011000010000100111111000000000
+00100000011000000000000000000000
+10011000010001100111110000000000
+00100100011000010000000000000000
+00011000010000100111111000000000
+00100000011000000000000000000000
Index: btkb/output/eeprom.dat
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/btkb/output/eeprom.dat	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/btkb/output/eeprom.dat	(working copy)
@@ -0,0 +1,10040 @@
+00
+02
+aa
+55
+32
+1f
+c5
+12
+80
+1a
+c0
+00
+00
+45
+c0
+01
+80
+49
+c0
+02
+80
+55
+c0
+03
+03
+00
+c0
+05
+03
+21
+c0
+13
+83
+25
+c0
+14
+03
+37
+c0
+15
+83
+3d
+c0
+21
+03
+48
+c0
+21
+83
+4c
+c0
+28
+03
+54
+c0
+2a
+03
+63
+c0
+18
+80
+41
+c0
+19
+80
+3e
+c0
+48
+02
+0e
+c0
+49
+01
+d8
+c0
+4a
+01
+de
+c0
+4a
+81
+c8
+c0
+58
+02
+fe
+c0
+58
+81
+8c
+c0
+59
+01
+a0
+c0
+59
+81
+ba
+c0
+5b
+01
+c3
+c0
+5c
+81
+94
+20
+20
+3b
+f1
+c0
+0c
+03
+6f
+c0
+0d
+83
+77
+c0
+11
+83
+96
+c0
+12
+03
+b2
+c0
+19
+04
+30
+c0
+1d
+d3
+b0
+c0
+1f
+02
+73
+c0
+1f
+82
+77
+c0
+25
+04
+7c
+c0
+25
+84
+29
+c0
+26
+04
+33
+c0
+27
+04
+39
+c0
+2b
+04
+40
+c0
+30
+84
+47
+c0
+31
+84
+4c
+c0
+32
+04
+70
+c0
+32
+84
+a6
+c0
+34
+86
+02
+c0
+35
+05
+ed
+c0
+35
+85
+ef
+c0
+37
+06
+0d
+c0
+37
+84
+87
+c0
+43
+81
+27
+c0
+46
+82
+92
+c0
+47
+02
+ab
+c0
+47
+82
+7b
+c0
+5e
+82
+89
+c0
+66
+82
+1b
+c0
+67
+81
+33
+c0
+68
+01
+48
+c0
+4e
+03
+b6
+c0
+4f
+83
+cc
+c0
+71
+03
+d9
+c0
+71
+83
+eb
+c0
+73
+04
+03
+20
+20
+3b
+f1
+da
+20
+40
+40
+18
+00
+72
+01
+20
+20
+33
+05
+d8
+a0
+40
+40
+df
+20
+00
+0a
+20
+40
+7e
+3b
+20
+20
+32
+d8
+68
+10
+81
+3b
+60
+00
+8b
+81
+70
+80
+06
+08
+20
+20
+30
+03
+20
+40
+00
+d7
+20
+40
+00
+c9
+20
+40
+00
+5a
+20
+40
+00
+4e
+20
+20
+30
+15
+68
+09
+47
+f4
+68
+00
+c3
+d8
+7d
+3a
+04
+0b
+68
+00
+c1
+33
+7d
+3a
+04
+06
+60
+09
+47
+f4
+20
+60
+00
+00
+20
+40
+33
+92
+20
+40
+34
+07
+20
+40
+30
+24
+20
+40
+06
+2e
+20
+20
+30
+22
+68
+00
+c7
+dc
+20
+3a
+00
+5e
+68
+00
+c7
+93
+20
+7a
+00
+00
+20
+40
+01
+22
+20
+74
+00
+00
+1f
+f0
+fe
+00
+1f
+e2
+0c
+00
+20
+40
+01
+03
+60
+00
+cb
+a7
+c0
+00
+80
+73
+c0
+03
+00
+7d
+1f
+e2
+04
+00
+18
+c2
+22
+00
+68
+00
+c0
+40
+c3
+00
+00
+70
+1a
+22
+0c
+00
+c6
+84
+80
+00
+18
+42
+7e
+00
+c0
+01
+80
+7f
+c0
+02
+80
+9d
+20
+20
+3b
+f1
+1a
+22
+0c
+00
+d8
+a0
+00
+f8
+20
+20
+00
+fb
+20
+40
+01
+03
+20
+40
+01
+03
+60
+00
+8b
+7d
+20
+40
+00
+78
+20
+20
+7c
+33
+20
+40
+01
+06
+18
+c2
+04
+00
+18
+50
+84
+00
+60
+09
+4b
+9a
+20
+60
+00
+00
+d8
+a0
+4d
+34
+20
+20
+00
+fb
+20
+40
+01
+03
+1f
+e2
+22
+00
+18
+c2
+7e
+00
+60
+01
+02
+b7
+20
+40
+52
+7c
+24
+3a
+00
+88
+1a
+20
+a2
+01
+20
+40
+4b
+2c
+20
+20
+00
+8d
+d8
+a0
+4b
+ad
+1a
+22
+72
+00
+68
+01
+02
+b7
+1f
+e2
+0c
+00
+20
+20
+00
+fd
+18
+a0
+a5
+fe
+68
+01
+42
+b7
+e0
+a1
+00
+00
+58
+00
+00
+a1
+e0
+a0
+80
+00
+1a
+20
+f3
+ff
+68
+01
+02
+b7
+1f
+e2
+0c
+00
+20
+40
+00
+fd
+1a
+42
+0c
+00
+e8
+c1
+00
+00
+60
+01
+4c
+7b
+1f
+e0
+f2
+02
+20
+40
+7e
+45
+70
+4c
+7a
+64
+20
+60
+00
+00
+18
+c2
+22
+00
+68
+00
+cb
+a9
+1f
+e0
+84
+01
+18
+41
+04
+03
+60
+08
+cb
+a9
+1f
+ef
+fe
+07
+d8
+a0
+4b
+ad
+98
+a0
+8a
+00
+1a
+22
+0c
+00
+20
+40
+01
+03
+18
+c2
+22
+00
+1f
+e0
+ff
+ff
+1f
+e2
+72
+00
+1f
+e0
+fe
+07
+60
+00
+cc
+62
+1a
+22
+0c
+00
+20
+40
+01
+03
+18
+c2
+22
+00
+c0
+00
+80
+b5
+c0
+01
+00
+bd
+c0
+01
+80
+bf
+c0
+02
+00
+c5
+c0
+03
+00
+c1
+c0
+04
+00
+c3
+68
+01
+4c
+91
+e0
+a1
+00
+00
+1a
+22
+0c
+00
+20
+40
+00
+fd
+20
+40
+56
+1e
+24
+7a
+00
+00
+70
+0b
+7d
+1b
+20
+20
+56
+20
+68
+01
+4c
+93
+20
+20
+00
+b6
+68
+01
+4c
+95
+20
+20
+00
+b6
+68
+01
+4c
+99
+20
+20
+00
+b6
+68
+01
+4c
+99
+20
+20
+00
+b6
+68
+01
+4c
+97
+e0
+a1
+00
+00
+1a
+22
+0c
+00
+20
+20
+00
+fd
+68
+0a
+4d
+28
+1c
+42
+7e
+00
+98
+46
+7e
+00
+68
+09
+4d
+2c
+98
+46
+fc
+00
+20
+40
+7e
+fd
+18
+07
+fe
+00
+20
+7a
+00
+00
+1c
+42
+04
+00
+60
+0a
+4d
+28
+68
+00
+cd
+2e
+1f
+e0
+fe
+01
+60
+00
+cd
+2e
+20
+60
+00
+00
+68
+0a
+4c
+3a
+1c
+42
+7e
+00
+98
+46
+7e
+00
+d8
+40
+06
+40
+98
+46
+fc
+00
+20
+40
+7e
+fd
+18
+07
+fe
+00
+20
+7a
+00
+00
+1c
+42
+04
+00
+60
+0a
+4c
+3a
+68
+09
+4b
+a5
+18
+50
+84
+00
+98
+40
+fe
+00
+1f
+f0
+fe
+00
+60
+01
+4b
+a5
+1f
+f0
+fe
+00
+1f
+e1
+7e
+03
+c1
+80
+00
+00
+70
+89
+71
+af
+68
+10
+80
+53
+79
+20
+7e
+07
+60
+10
+80
+53
+68
+10
+89
+73
+1f
+e1
+fe
+30
+60
+10
+89
+73
+70
+89
+06
+74
+70
+89
+06
+7c
+70
+89
+72
+aa
+20
+00
+13
+88
+68
+19
+01
+50
+68
+10
+80
+53
+79
+3f
+fe
+07
+60
+10
+80
+53
+18
+50
+84
+00
+60
+09
+4c
+75
+20
+60
+00
+00
+20
+40
+01
+03
+1f
+e2
+72
+00
+20
+40
+00
+ff
+20
+20
+00
+78
+20
+40
+01
+03
+e0
+a0
+80
+00
+c2
+00
+00
+ff
+20
+60
+00
+00
+20
+40
+01
+06
+e8
+c0
+80
+00
+20
+60
+00
+00
+58
+00
+4b
+36
+98
+c6
+7c
+00
+24
+62
+80
+00
+d8
+c0
+4a
+a0
+20
+60
+00
+00
+df
+20
+00
+03
+d8
+c0
+4b
+a2
+18
+c2
+22
+00
+68
+01
+4b
+a0
+1f
+f0
+fe
+00
+1f
+e2
+0a
+00
+1a
+22
+0c
+00
+e8
+c0
+80
+00
+e0
+a0
+80
+00
+20
+40
+01
+1a
+c2
+00
+01
+12
+18
+a2
+7e
+00
+1f
+f0
+fe
+00
+60
+01
+4b
+a0
+20
+60
+00
+00
+58
+00
+4b
+9a
+98
+a6
+7c
+00
+24
+62
+80
+00
+d8
+a0
+4b
+36
+20
+60
+00
+00
+68
+01
+4b
+9e
+68
+09
+4b
+a0
+20
+20
+01
+24
+68
+01
+4b
+9a
+68
+09
+4b
+9c
+98
+46
+7c
+00
+20
+22
+e9
+b1
+20
+20
+32
+0b
+1c
+42
+7e
+00
+60
+02
+4d
+24
+68
+08
+c7
+ef
+68
+00
+cd
+27
+98
+46
+7c
+00
+24
+41
+01
+2e
+20
+20
+7c
+06
+68
+0a
+4d
+24
+60
+0a
+47
+ec
+60
+0a
+4c
+3a
+60
+0a
+4d
+28
+20
+60
+00
+00
+da
+20
+47
+df
+20
+40
+7f
+9f
+20
+7a
+00
+00
+1f
+e2
+26
+00
+20
+40
+01
+39
+20
+20
+3e
+a5
+c1
+0c
+00
+00
+c0
+0a
+06
+1f
+c0
+0a
+86
+24
+c0
+03
+66
+14
+c0
+01
+01
+3f
+20
+20
+3e
+7d
+70
+42
+9d
+00
+68
+01
+47
+f4
+c2
+83
+bf
+08
+2f
+ec
+00
+01
+20
+40
+81
+45
+20
+20
+3f
+08
+68
+00
+84
+50
+c1
+01
+00
+00
+20
+20
+3e
+7b
+60
+08
+82
+59
+68
+00
+cc
+6d
+1f
+e0
+fe
+01
+60
+00
+cc
+6d
+68
+00
+82
+59
+20
+7a
+00
+00
+1f
+e0
+ff
+ff
+60
+00
+82
+59
+20
+40
+01
+68
+20
+40
+01
+6f
+20
+40
+01
+54
+20
+20
+01
+4c
+68
+00
+cc
+9d
+24
+7a
+00
+00
+68
+00
+cc
+7a
+20
+7a
+00
+00
+1f
+e0
+ff
+ff
+60
+00
+cc
+7a
+c1
+80
+80
+00
+70
+4c
+7a
+64
+68
+01
+47
+f4
+c4
+02
+80
+00
+68
+01
+4c
+7b
+20
+7a
+00
+00
+20
+40
+52
+7e
+24
+7a
+00
+00
+68
+01
+4c
+7b
+1f
+e2
+22
+00
+20
+40
+4b
+2c
+1a
+20
+f2
+02
+d8
+c0
+4c
+7d
+20
+20
+7e
+45
+68
+00
+c7
+f2
+20
+7a
+00
+00
+1f
+e0
+ff
+ff
+60
+00
+c7
+f2
+24
+7a
+00
+00
+20
+40
+3e
+bd
+20
+20
+4b
+22
+68
+00
+cc
+0b
+20
+7a
+00
+00
+1f
+e0
+ff
+ff
+60
+00
+cc
+0b
+20
+60
+00
+00
+1a
+62
+7e
+00
+1f
+e1
+7e
+f0
+c1
+28
+00
+00
+20
+40
+01
+7c
+1a
+62
+7e
+00
+20
+7a
+00
+00
+60
+00
+cb
+a4
+20
+20
+01
+0b
+1a
+62
+7e
+00
+c0
+05
+81
+80
+c0
+01
+01
+88
+20
+60
+00
+00
+70
+4c
+7a
+28
+58
+00
+00
+0a
+60
+01
+4c
+7b
+68
+01
+42
+b7
+e0
+a1
+00
+00
+58
+00
+01
+a1
+e0
+a1
+00
+00
+20
+60
+00
+00
+70
+4c
+7a
+00
+df
+20
+00
+14
+d8
+a0
+4c
+7b
+20
+20
+7e
+3f
+70
+41
+6e
+7f
+20
+40
+3c
+f3
+68
+00
+cc
+77
+20
+7a
+00
+00
+70
+4c
+77
+00
+1c
+42
+7e
+00
+60
+02
+4c
+3a
+20
+60
+00
+00
+68
+00
+c2
+19
+24
+7a
+00
+00
+70
+80
+42
+06
+58
+00
+0f
+0c
+20
+40
+3d
+a7
+58
+03
+0d
+40
+20
+40
+3b
+f3
+37
+d9
+82
+00
+1e
+22
+60
+00
+20
+40
+3b
+36
+20
+00
+13
+88
+20
+20
+3d
+9d
+c6
+11
+80
+00
+68
+01
+47
+f4
+c2
+84
+bd
+1e
+20
+40
+3c
+ab
+68
+01
+c2
+10
+20
+7a
+00
+00
+68
+00
+c1
+31
+20
+7a
+00
+00
+20
+40
+52
+7e
+24
+7a
+00
+00
+20
+40
+3d
+ca
+24
+7a
+00
+00
+20
+40
+3b
+36
+68
+00
+c7
+dc
+20
+3a
+3d
+25
+68
+00
+c7
+93
+20
+7a
+00
+00
+20
+20
+3d
+25
+20
+40
+01
+22
+24
+74
+00
+00
+20
+40
+01
+1f
+24
+74
+00
+00
+70
+0b
+7f
+01
+70
+0b
+7e
+01
+20
+40
+01
+bf
+20
+20
+01
+22
+20
+40
+01
+b2
+24
+74
+00
+00
+68
+00
+8b
+7f
+24
+7a
+00
+00
+20
+20
+3d
+2d
+68
+00
+8b
+7e
+20
+00
+00
+0a
+c0
+80
+01
+bf
+20
+60
+00
+00
+20
+40
+01
+b2
+24
+74
+00
+00
+68
+00
+8b
+7f
+24
+7a
+00
+00
+20
+20
+3d
+4f
+20
+40
+01
+ca
+20
+20
+3a
+af
+68
+00
+c2
+19
+24
+3a
+01
+d0
+20
+40
+3d
+91
+20
+00
+75
+30
+20
+00
+75
+30
+20
+00
+75
+30
+20
+40
+3b
+0a
+70
+80
+42
+04
+68
+10
+89
+6b
+1f
+e1
+7e
+cf
+60
+10
+89
+6b
+1f
+e1
+fe
+30
+60
+10
+89
+6b
+20
+60
+00
+00
+60
+08
+80
+17
+18
+40
+a2
+04
+20
+20
+3a
+86
+60
+08
+80
+17
+18
+40
+a2
+00
+20
+20
+3a
+b6
+20
+40
+01
+db
+58
+00
+05
+00
+20
+40
+3b
+f3
+70
+89
+06
+01
+70
+89
+00
+3c
+70
+89
+01
+e0
+70
+89
+6d
+12
+20
+00
+00
+0a
+70
+89
+02
+01
+70
+89
+02
+3d
+20
+00
+00
+0a
+70
+89
+03
+b7
+20
+00
+00
+0a
+70
+89
+02
+7d
+68
+00
+cb
+ef
+c0
+ff
+81
+f6
+68
+02
+ca
+91
+e0
+a2
+80
+00
+e8
+c2
+80
+00
+e0
+a2
+80
+00
+70
+89
+56
+df
+20
+40
+01
+fd
+70
+89
+55
+df
+20
+60
+00
+00
+68
+02
+ca
+87
+e0
+a2
+80
+00
+e8
+c2
+80
+00
+e0
+a2
+80
+00
+70
+89
+56
+c2
+70
+89
+55
+d0
+20
+60
+00
+00
+20
+00
+00
+04
+70
+89
+55
+d1
+20
+00
+00
+04
+70
+89
+55
+d2
+20
+00
+00
+04
+70
+89
+55
+d4
+20
+00
+00
+04
+20
+60
+00
+00
+70
+89
+55
+d4
+20
+00
+00
+04
+70
+89
+55
+d2
+20
+00
+00
+04
+70
+89
+55
+d1
+20
+00
+00
+04
+70
+89
+55
+d0
+70
+89
+56
+c0
+20
+60
+00
+00
+20
+30
+ba
+6f
+20
+40
+02
+05
+20
+20
+3a
+6f
+20
+40
+52
+7c
+24
+7a
+00
+00
+20
+20
+00
+5a
+78
+34
+7c
+00
+68
+12
+01
+38
+79
+34
+7e
+1a
+60
+12
+00
+4c
+20
+40
+3d
+b0
+70
+00
+a2
+01
+20
+60
+00
+00
+68
+00
+c4
+19
+1f
+e0
+fe
+02
+60
+00
+c3
+f9
+70
+0b
+7e
+00
+70
+01
+77
+06
+20
+40
+3f
+a4
+58
+00
+02
+11
+60
+01
+42
+8e
+58
+00
+02
+1a
+60
+01
+42
+8a
+58
+00
+01
+74
+60
+01
+42
+92
+58
+00
+02
+7a
+60
+01
+42
+90
+58
+00
+00
+5a
+60
+01
+42
+8c
+58
+00
+02
+14
+60
+01
+42
+88
+58
+00
+4a
+a0
+1f
+f0
+fe
+00
+60
+01
+4b
+9a
+60
+01
+4b
+9c
+20
+40
+3e
+0b
+58
+00
+4b
+36
+1f
+f0
+fe
+00
+60
+01
+4b
+9e
+60
+01
+4b
+a0
+68
+00
+cc
+77
+c0
+2d
+02
+4e
+20
+35
+82
+4c
+68
+01
+4c
+71
+1f
+f0
+fe
+00
+60
+01
+4c
+71
+68
+01
+4c
+73
+1f
+f0
+fe
+00
+60
+01
+4c
+73
+20
+40
+02
+59
+68
+04
+02
+a0
+24
+3a
+02
+46
+68
+01
+4a
+d4
+1f
+f0
+fe
+00
+20
+3a
+02
+46
+60
+01
+4c
+73
+20
+40
+06
+2b
+70
+4b
+a4
+2f
+20
+40
+01
+0b
+70
+4c
+77
+00
+70
+82
+80
+03
+20
+60
+00
+00
+70
+4b
+a4
+30
+20
+20
+02
+48
+1c
+e2
+7e
+00
+20
+3a
+02
+81
+20
+40
+5b
+63
+20
+40
+4d
+99
+58
+00
+00
+00
+60
+04
+40
+40
+60
+01
+47
+f4
+1c
+42
+7e
+00
+60
+02
+4c
+3a
+70
+4b
+a4
+33
+20
+20
+02
+48
+20
+40
+68
+8a
+58
+00
+07
+e0
+da
+20
+02
+a0
+d8
+40
+00
+0e
+20
+40
+68
+d3
+20
+40
+68
+8d
+68
+00
+82
+a0
+c2
+80
+3b
+f1
+68
+04
+02
+a2
+20
+7a
+00
+00
+68
+09
+02
+a4
+68
+01
+02
+aa
+18
+42
+24
+00
+1f
+e2
+22
+00
+98
+46
+26
+00
+1a
+6b
+26
+00
+1a
+42
+7e
+00
+9a
+66
+7e
+00
+1f
+f0
+fe
+00
+60
+01
+4c
+71
+1a
+63
+a6
+00
+1a
+22
+7e
+00
+9a
+66
+7e
+00
+1f
+f0
+fe
+00
+60
+01
+4c
+73
+20
+60
+00
+00
+70
+00
+16
+27
+70
+89
+0f
+36
+70
+89
+0b
+5f
+20
+20
+53
+d4
+70
+89
+0f
+2e
+70
+89
+0b
+ff
+20
+20
+53
+d9
+20
+60
+00
+00
+68
+01
+4b
+a0
+60
+01
+4b
+9e
+68
+01
+4b
+9c
+60
+01
+4b
+9a
+70
+0b
+7e
+03
+20
+40
+01
+bf
+70
+4c
+77
+5a
+20
+40
+3d
+b8
+68
+12
+01
+38
+79
+3f
+fe
+0f
+60
+12
+00
+4c
+20
+40
+3d
+b0
+d8
+5f
+ff
+ff
+20
+20
+3c
+da
+ea
+2a
+80
+00
+18
+41
+7e
+ff
+24
+3a
+02
+8e
+18
+4c
+fe
+00
+e2
+22
+80
+00
+1a
+20
+a2
+04
+ea
+20
+80
+00
+24
+7a
+00
+00
+20
+20
+7f
+9c
+20
+40
+7c
+20
+da
+20
+47
+e4
+20
+40
+7f
+9f
+1f
+e2
+04
+00
+20
+40
+7c
+24
+18
+42
+7e
+00
+20
+7a
+00
+00
+c0
+10
+82
+a4
+c0
+11
+02
+a6
+c0
+11
+86
+c1
+c0
+00
+82
+e6
+c0
+06
+82
+c1
+c0
+16
+02
+c0
+c0
+15
+82
+cc
+c0
+01
+82
+e9
+c0
+15
+02
+f2
+c0
+09
+7c
+85
+20
+20
+7c
+5a
+70
+4b
+ef
+ff
+20
+20
+06
+f4
+79
+3f
+80
+23
+70
+4b
+ef
+ff
+20
+20
+06
+ac
+70
+0b
+7d
+22
+20
+20
+56
+20
+68
+00
+80
+7c
+20
+3a
+02
+b0
+20
+40
+61
+d9
+68
+00
+80
+7c
+24
+3a
+7c
+8c
+68
+00
+8b
+7d
+c5
+84
+fc
+87
+c0
+02
+02
+b6
+c0
+08
+82
+a9
+c0
+14
+02
+bc
+20
+20
+7c
+7b
+68
+01
+47
+f4
+c3
+01
+82
+b9
+20
+20
+7c
+a4
+58
+00
+00
+0a
+60
+02
+00
+51
+20
+20
+7c
+a4
+70
+00
+7c
+37
+68
+01
+4c
+78
+60
+01
+00
+51
+20
+60
+00
+00
+20
+40
+02
+e6
+20
+40
+3e
+ff
+20
+40
+7c
+d5
+70
+41
+31
+00
+18
+0a
+7e
+00
+60
+00
+c4
+f9
+70
+43
+dc
+05
+58
+18
+12
+03
+60
+01
+c3
+e2
+d8
+40
+00
+07
+20
+40
+02
+d2
+20
+20
+7c
+ae
+70
+43
+dc
+04
+58
+00
+00
+ff
+60
+01
+c3
+e2
+d8
+40
+00
+00
+20
+40
+02
+d2
+20
+20
+7c
+ae
+68
+00
+c3
+f9
+98
+40
+fe
+00
+1f
+e0
+fe
+0b
+1f
+e6
+7c
+1f
+24
+21
+02
+e2
+60
+00
+c3
+d9
+d8
+a0
+43
+e5
+18
+42
+7e
+00
+24
+5a
+02
+df
+68
+00
+c3
+f9
+1f
+e2
+72
+00
+d8
+c0
+43
+fa
+20
+20
+7e
+45
+1f
+e2
+72
+00
+d8
+c0
+4d
+48
+20
+20
+7e
+45
+68
+00
+c3
+f9
+1f
+e0
+fe
+0b
+60
+00
+c3
+d9
+20
+60
+00
+00
+20
+40
+3e
+ff
+70
+01
+77
+06
+20
+20
+7c
+97
+20
+40
+3b
+fa
+20
+40
+4d
+98
+20
+40
+5b
+62
+70
+01
+77
+06
+68
+00
+c7
+dc
+c0
+00
+02
+f0
+70
+01
+77
+17
+70
+42
+5e
+01
+20
+20
+7c
+a2
+68
+01
+47
+f4
+c2
+84
+bf
+90
+c2
+80
+02
+fb
+c2
+83
+fc
+d5
+c5
+11
+86
+ac
+70
+43
+d8
+00
+20
+40
+3f
+7e
+70
+0b
+7d
+37
+20
+20
+7c
+27
+20
+40
+3e
+ff
+20
+40
+7c
+d5
+20
+20
+3f
+77
+20
+40
+3b
+36
+20
+20
+3c
+dc
+20
+40
+03
+02
+20
+20
+30
+2c
+da
+60
+03
+04
+20
+20
+33
+01
+c3
+00
+b3
+07
+20
+40
+33
+3d
+20
+40
+03
+11
+98
+46
+7e
+00
+1f
+e0
+fe
+01
+20
+21
+03
+0b
+20
+20
+33
+25
+98
+00
+24
+00
+1a
+20
+8c
+02
+e8
+c1
+00
+00
+20
+3a
+33
+27
+20
+40
+33
+49
+20
+20
+03
+05
+1f
+f1
+16
+00
+19
+6c
+96
+00
+20
+22
+83
+1b
+29
+60
+1e
+0f
+24
+60
+80
+00
+18
+51
+16
+00
+19
+6c
+96
+00
+24
+62
+80
+00
+79
+20
+04
+1c
+20
+60
+00
+00
+18
+51
+16
+00
+19
+6c
+96
+00
+29
+60
+1e
+0f
+24
+60
+80
+00
+79
+20
+7e
+1c
+20
+60
+00
+00
+60
+0c
+02
+a0
+20
+40
+7e
+53
+68
+0c
+02
+a0
+20
+20
+30
+7c
+78
+54
+7c
+00
+68
+01
+00
+32
+d8
+40
+ff
+ff
+98
+46
+7c
+00
+24
+62
+80
+00
+68
+02
+00
+34
+20
+38
+03
+2e
+9d
+06
+7e
+00
+20
+20
+03
+2f
+9c
+46
+7e
+00
+1f
+e6
+7c
+04
+24
+61
+00
+00
+18
+00
+7e
+00
+60
+01
+00
+32
+20
+20
+34
+df
+70
+0b
+7d
+20
+20
+40
+7c
+27
+20
+20
+03
+38
+60
+0a
+00
+34
+70
+47
+48
+01
+58
+00
+ff
+ff
+60
+01
+00
+32
+70
+00
+73
+01
+20
+60
+00
+00
+20
+40
+3b
+aa
+20
+40
+03
+40
+20
+20
+32
+67
+1c
+40
+c2
+01
+20
+40
+3a
+54
+18
+00
+48
+03
+20
+40
+3a
+42
+20
+40
+3b
+ae
+20
+40
+3b
+b4
+20
+40
+3b
+c5
+20
+20
+37
+5c
+20
+40
+3e
+25
+20
+40
+6d
+ec
+20
+40
+35
+d6
+20
+20
+34
+80
+20
+40
+3d
+61
+20
+40
+3b
+e2
+20
+21
+34
+98
+20
+40
+32
+04
+24
+34
+34
+98
+20
+40
+38
+12
+24
+3a
+03
+49
+20
+60
+00
+00
+20
+40
+32
+df
+24
+22
+b5
+68
+68
+00
+80
+47
+c3
+01
+b5
+71
+68
+00
+c1
+65
+c0
+09
+b5
+62
+68
+01
+4c
+24
+1f
+e6
+7c
+14
+24
+21
+35
+62
+60
+01
+00
+91
+68
+00
+cc
+23
+60
+00
+80
+90
+58
+00
+4c
+26
+60
+01
+01
+79
+20
+20
+35
+62
+68
+01
+00
+91
+60
+01
+4c
+24
+1f
+e6
+7c
+14
+24
+21
+35
+8f
+98
+00
+72
+00
+68
+00
+80
+90
+60
+00
+cc
+23
+68
+01
+01
+79
+98
+00
+0c
+00
+d8
+a0
+4c
+26
+20
+40
+7e
+45
+20
+20
+35
+8f
+68
+01
+02
+cd
+20
+3a
+4d
+fc
+68
+00
+82
+cf
+c0
+00
+83
+74
+20
+20
+4d
+bb
+20
+40
+52
+7a
+24
+7a
+00
+00
+20
+20
+4d
+c3
+e8
+c0
+80
+00
+c0
+05
+03
+7a
+20
+20
+4e
+14
+e8
+c0
+80
+00
+1f
+e2
+0e
+00
+e8
+c1
+00
+00
+1f
+e2
+22
+00
+1a
+62
+7e
+00
+9a
+26
+26
+00
+58
+00
+00
+0b
+e0
+a0
+80
+00
+18
+e2
+7e
+00
+e0
+a0
+80
+00
+e8
+c1
+00
+00
+c0
+01
+03
+88
+c0
+01
+83
+8f
+20
+20
+3b
+f1
+58
+02
+00
+08
+e0
+a3
+00
+00
+58
+00
+02
+00
+e0
+a2
+00
+00
+18
+00
+7e
+0c
+9a
+40
+a4
+00
+20
+20
+4e
+20
+58
+03
+00
+0c
+e0
+a3
+00
+00
+58
+00
+00
+06
+e0
+a4
+00
+00
+18
+00
+7e
+10
+9a
+40
+a4
+00
+20
+20
+4e
+20
+20
+40
+52
+c4
+18
+00
+24
+00
+20
+40
+52
+d0
+1f
+e2
+0a
+00
+68
+01
+02
+cd
+1f
+e2
+26
+00
+68
+01
+02
+cb
+98
+00
+0c
+00
+20
+40
+03
+a0
+20
+20
+51
+10
+e8
+c0
+80
+00
+c0
+05
+03
+a3
+20
+20
+51
+16
+e8
+c0
+80
+00
+1f
+e2
+0e
+00
+e8
+c1
+00
+00
+1f
+e2
+22
+00
+e8
+c1
+00
+00
+60
+01
+02
+a0
+1a
+62
+7e
+00
+9a
+26
+26
+00
+20
+40
+52
+d0
+58
+00
+00
+0b
+e0
+a0
+80
+00
+18
+e2
+7e
+00
+e0
+a0
+80
+00
+68
+01
+02
+a0
+20
+20
+03
+85
+da
+40
+00
+00
+20
+40
+52
+7a
+24
+7a
+00
+00
+20
+20
+52
+4d
+68
+01
+02
+cb
+1f
+e2
+0c
+00
+e8
+c0
+80
+00
+1f
+e1
+04
+0f
+1f
+f1
+fe
+00
+c0
+05
+03
+c9
+c0
+02
+83
+c7
+c0
+00
+83
+c0
+c0
+02
+4b
+18
+20
+20
+4a
+ff
+18
+42
+7e
+00
+c0
+02
+cb
+09
+70
+4c
+9d
+01
+c0
+01
+cb
+18
+70
+4c
+9d
+00
+c0
+02
+4b
+18
+20
+60
+00
+00
+20
+40
+03
+c9
+20
+20
+4b
+11
+e8
+c0
+80
+00
+c0
+00
+84
+26
+20
+60
+00
+00
+20
+40
+52
+7a
+24
+7a
+00
+00
+20
+40
+03
+d0
+20
+20
+6d
+fd
+68
+00
+c1
+32
+c1
+00
+80
+00
+68
+00
+c3
+cd
+20
+7a
+00
+00
+1f
+e2
+22
+00
+70
+43
+cd
+00
+1a
+22
+7e
+00
+c0
+28
+4d
+dc
+20
+60
+00
+00
+68
+00
+80
+7d
+c0
+01
+83
+dd
+c0
+03
+83
+e8
+20
+20
+5b
+92
+68
+00
+84
+df
+60
+00
+84
+45
+c0
+09
+83
+34
+c0
+19
+83
+e2
+20
+20
+5c
+58
+68
+00
+84
+4d
+79
+20
+7e
+00
+60
+00
+84
+4d
+70
+0b
+7d
+01
+20
+40
+7c
+27
+20
+20
+5c
+83
+68
+00
+84
+df
+60
+00
+84
+46
+20
+20
+5c
+f3
+78
+54
+7c
+00
+20
+40
+61
+d9
+68
+00
+80
+48
+20
+7a
+00
+00
+c2
+83
+df
+10
+c0
+01
+03
+f3
+c0
+03
+84
+00
+20
+20
+5e
+e0
+18
+00
+7e
+11
+20
+40
+61
+b5
+68
+00
+80
+49
+1f
+e2
+04
+00
+c0
+00
+03
+fb
+c0
+07
+03
+fb
+c0
+0e
+03
+fb
+20
+60
+00
+00
+e0
+a0
+80
+00
+68
+00
+c7
+02
+e0
+a0
+80
+00
+58
+00
+00
+0e
+20
+20
+5f
+a6
+20
+40
+60
+55
+70
+00
+72
+64
+20
+60
+00
+00
+68
+00
+80
+7c
+20
+3a
+04
+08
+20
+40
+61
+d9
+68
+00
+80
+7c
+24
+7a
+00
+00
+68
+00
+80
+55
+20
+7a
+00
+00
+c0
+03
+04
+17
+c0
+08
+04
+0d
+20
+20
+62
+3e
+68
+00
+c7
+48
+c1
+00
+00
+00
+c0
+00
+84
+15
+d8
+e0
+00
+0a
+20
+40
+7e
+53
+24
+7a
+00
+00
+70
+47
+48
+00
+20
+20
+62
+9b
+20
+74
+80
+00
+20
+20
+04
+17
+68
+00
+81
+77
+c2
+81
+62
+9b
+c2
+80
+04
+1a
+68
+00
+c2
+5e
+20
+3a
+62
+c7
+68
+00
+84
+4d
+c4
+01
+80
+00
+c4
+01
+00
+00
+68
+02
+04
+65
+d8
+40
+03
+20
+98
+40
+84
+00
+1c
+42
+7e
+00
+98
+46
+7c
+00
+24
+61
+00
+00
+20
+20
+62
+67
+e8
+c0
+80
+00
+60
+00
+cc
+90
+20
+60
+00
+00
+20
+40
+54
+bd
+68
+08
+80
+17
+20
+40
+3a
+82
+20
+40
+3a
+87
+78
+28
+7c
+00
+d9
+60
+15
+7c
+20
+20
+54
+7f
+70
+44
+3e
+01
+70
+44
+3f
+00
+20
+20
+53
+4e
+20
+40
+53
+dd
+20
+40
+04
+36
+20
+20
+54
+c1
+20
+36
+81
+e1
+20
+40
+53
+ee
+20
+20
+3a
+91
+68
+00
+cc
+40
+60
+02
+46
+f9
+68
+00
+c4
+db
+c0
+00
+84
+3e
+20
+20
+54
+e0
+70
+44
+db
+00
+20
+20
+54
+ef
+68
+00
+83
+c0
+c4
+02
+80
+00
+68
+01
+03
+da
+68
+09
+03
+e0
+98
+46
+7e
+00
+24
+61
+00
+00
+20
+20
+55
+7e
+68
+00
+83
+d7
+c3
+82
+80
+00
+68
+00
+83
+41
+20
+3a
+56
+26
+20
+20
+58
+90
+68
+00
+c4
+40
+c0
+03
+84
+65
+c0
+07
+84
+69
+c0
+03
+04
+58
+c0
+01
+04
+55
+c0
+09
+84
+53
+20
+20
+56
+3a
+18
+00
+04
+01
+20
+20
+58
+92
+58
+00
+00
+0a
+60
+01
+03
+ef
+20
+20
+56
+93
+70
+0b
+7d
+12
+20
+40
+7c
+33
+18
+00
+04
+01
+20
+34
+d8
+92
+70
+0b
+7d
+34
+20
+40
+7c
+27
+68
+00
+cc
+49
+c0
+01
+04
+61
+20
+20
+04
+63
+70
+0b
+7d
+46
+20
+40
+56
+20
+18
+00
+04
+01
+20
+20
+58
+92
+68
+00
+cc
+48
+e0
+a0
+80
+00
+18
+00
+04
+02
+20
+20
+58
+92
+18
+a0
+8b
+ff
+68
+04
+4c
+4c
+e0
+a4
+00
+00
+e8
+c4
+00
+00
+e0
+a4
+00
+00
+18
+00
+02
+02
+20
+20
+58
+8a
+68
+00
+c4
+44
+c0
+04
+d7
+19
+c0
+01
+04
+75
+c0
+03
+d7
+0d
+20
+20
+56
+56
+59
+00
+03
+02
+60
+01
+c4
+b5
+58
+00
+00
+01
+e0
+a0
+80
+00
+58
+01
+00
+10
+e0
+a1
+80
+00
+20
+20
+56
+f1
+09
+80
+00
+18
+78
+28
+7c
+00
+db
+60
+06
+64
+1f
+ef
+7e
+00
+1f
+f1
+7e
+00
+e0
+a1
+80
+00
+20
+23
+37
+5c
+78
+36
+fc
+00
+68
+00
+80
+17
+1f
+e0
+a2
+00
+20
+20
+54
+af
+e8
+c1
+80
+00
+60
+01
+83
+f9
+c0
+29
+04
+8d
+c0
+01
+04
+a4
+c0
+09
+04
+93
+20
+20
+59
+07
+70
+4d
+17
+01
+68
+01
+03
+fa
+c0
+10
+84
+91
+20
+20
+59
+ed
+d8
+c0
+03
+49
+20
+20
+04
+26
+68
+01
+03
+fa
+1f
+e6
+7c
+21
+20
+42
+84
+91
+68
+01
+03
+fa
+1f
+e6
+7c
+31
+20
+42
+84
+a2
+68
+01
+03
+fa
+68
+09
+4c
+99
+18
+40
+84
+01
+98
+46
+7c
+00
+20
+22
+84
+9f
+20
+20
+59
+ca
+70
+0b
+7d
+34
+20
+40
+7c
+27
+20
+20
+59
+ca
+70
+41
+31
+01
+20
+60
+00
+00
+70
+0b
+7d
+03
+20
+20
+56
+20
+68
+00
+c4
+44
+c0
+0d
+85
+df
+c0
+0e
+85
+df
+c0
+08
+85
+73
+c0
+04
+85
+25
+c0
+02
+85
+13
+c0
+03
+84
+c7
+c0
+09
+d8
+5c
+c0
+01
+84
+b7
+c0
+05
+84
+ba
+c0
+06
+84
+b2
+20
+20
+56
+66
+68
+01
+03
+fa
+c0
+03
+84
+b5
+20
+20
+57
+d6
+70
+03
+fc
+07
+20
+20
+57
+29
+68
+01
+4c
+4a
+e0
+a1
+00
+00
+20
+20
+58
+8a
+68
+01
+03
+fa
+c0
+18
+57
+28
+c0
+07
+04
+be
+20
+20
+57
+c6
+68
+00
+cc
+49
+c0
+80
+57
+c6
+68
+00
+cc
+5c
+c0
+01
+d7
+c6
+18
+a2
+04
+00
+70
+4c
+49
+01
+18
+42
+0a
+00
+70
+03
+fc
+05
+20
+20
+57
+29
+20
+40
+57
+7b
+20
+74
+00
+00
+68
+09
+44
+c0
+58
+00
+18
+12
+98
+46
+7c
+00
+20
+22
+84
+e0
+58
+00
+18
+0f
+98
+46
+7c
+00
+20
+22
+84
+e2
+58
+00
+18
+0a
+98
+46
+7c
+00
+20
+22
+84
+e6
+58
+00
+18
+01
+98
+46
+7c
+00
+20
+22
+84
+e4
+20
+20
+57
+54
+68
+00
+cc
+5f
+d8
+40
+00
+00
+f9
+20
+04
+00
+98
+41
+7e
+00
+c0
+80
+57
+28
+68
+00
+cc
+5f
+f9
+20
+7e
+00
+60
+00
+cc
+5f
+20
+20
+04
+e8
+d8
+e0
+00
+00
+20
+20
+04
+d7
+d8
+e0
+00
+01
+20
+20
+04
+d7
+d8
+e0
+00
+03
+20
+20
+04
+d7
+d8
+e0
+00
+02
+20
+20
+04
+d7
+68
+01
+44
+c0
+1f
+e2
+22
+00
+68
+09
+44
+c4
+18
+42
+24
+00
+20
+40
+04
+ef
+20
+22
+84
+fa
+20
+20
+57
+28
+d8
+c0
+45
+04
+e8
+c1
+00
+00
+20
+7a
+00
+00
+e8
+c1
+80
+00
+e8
+c1
+00
+00
+9a
+26
+7c
+00
+20
+62
+80
+00
+18
+c0
+8d
+fd
+e8
+c0
+80
+00
+98
+c0
+8c
+00
+20
+20
+04
+f0
+18
+c0
+8d
+f9
+e8
+c1
+00
+00
+60
+01
+4c
+41
+20
+40
+05
+08
+20
+3a
+57
+28
+18
+c0
+8d
+fc
+e8
+c1
+00
+00
+1f
+e0
+ff
+ff
+60
+01
+4c
+43
+70
+44
+44
+07
+68
+02
+4c
+41
+60
+02
+44
+45
+18
+00
+04
+09
+20
+20
+58
+92
+e8
+c1
+00
+00
+e8
+c0
+80
+00
+98
+c0
+8c
+00
+e8
+c1
+00
+00
+20
+7a
+00
+00
+e8
+c1
+00
+00
+9a
+46
+7c
+00
+20
+62
+80
+00
+e8
+c0
+80
+00
+98
+c0
+8c
+00
+20
+20
+05
+0b
+d9
+60
+00
+03
+18
+00
+7e
+01
+60
+00
+c4
+45
+20
+40
+5a
+74
+20
+40
+5a
+7d
+20
+3a
+57
+46
+24
+21
+05
+23
+78
+54
+7c
+00
+e0
+a1
+00
+00
+e8
+c1
+00
+00
+e0
+a1
+00
+00
+19
+60
+97
+ff
+20
+22
+d7
+46
+e8
+c0
+80
+00
+98
+c0
+8c
+00
+20
+20
+05
+17
+18
+c0
+8c
+02
+20
+20
+05
+20
+68
+09
+44
+c0
+58
+00
+2a
+00
+98
+46
+7c
+00
+20
+22
+85
+65
+58
+00
+2a
+50
+98
+46
+7c
+00
+20
+22
+85
+70
+58
+00
+28
+03
+98
+46
+7c
+00
+24
+22
+d7
+28
+68
+01
+44
+bc
+60
+01
+02
+a0
+78
+34
+7c
+00
+20
+40
+05
+b7
+24
+21
+05
+41
+68
+09
+02
+a0
+20
+40
+05
+bf
+c0
+00
+85
+41
+20
+40
+05
+bb
+24
+22
+85
+3f
+78
+54
+7c
+00
+20
+40
+05
+43
+20
+40
+05
+a5
+20
+40
+05
+bf
+20
+40
+05
+4b
+20
+20
+05
+41
+20
+40
+05
+a5
+20
+20
+05
+32
+20
+34
+57
+28
+20
+20
+05
+dd
+68
+01
+02
+a0
+60
+01
+44
+46
+68
+00
+cc
+47
+1f
+e2
+72
+00
+20
+40
+05
+d4
+d8
+a0
+44
+48
+20
+40
+7e
+45
+20
+20
+05
+d7
+68
+09
+4c
+45
+18
+4c
+fe
+00
+c0
+82
+85
+5d
+20
+40
+05
+d1
+68
+01
+02
+a0
+e0
+a1
+00
+00
+20
+40
+05
+d7
+58
+00
+45
+04
+98
+40
+8c
+00
+e8
+c0
+80
+00
+18
+c2
+04
+00
+1f
+e2
+72
+00
+1f
+e0
+fe
+05
+60
+00
+c4
+45
+20
+40
+05
+d1
+18
+42
+0c
+00
+20
+40
+7e
+45
+20
+20
+05
+d7
+20
+40
+05
+d1
+68
+01
+02
+a0
+e0
+a1
+00
+00
+68
+01
+4c
+45
+e0
+a1
+00
+00
+20
+40
+05
+d7
+70
+44
+45
+07
+20
+60
+00
+00
+20
+40
+5b
+08
+e8
+c0
+80
+00
+1f
+e2
+72
+00
+1f
+e0
+fe
+02
+60
+00
+c4
+45
+18
+c0
+8d
+fb
+e8
+c1
+00
+00
+e0
+a1
+00
+00
+18
+c0
+8c
+03
+20
+40
+7e
+45
+20
+20
+58
+8a
+d8
+40
+2a
+50
+20
+40
+5b
+0c
+20
+20
+05
+66
+d9
+60
+00
+02
+68
+01
+44
+bc
+60
+01
+02
+a0
+70
+0d
+5c
+00
+78
+34
+7c
+00
+20
+40
+05
+b7
+24
+21
+05
+9b
+68
+09
+02
+a0
+20
+40
+05
+bf
+c0
+00
+85
+9e
+20
+40
+05
+bb
+24
+22
+85
+97
+68
+00
+8d
+5c
+c0
+00
+85
+9e
+24
+34
+05
+88
+78
+54
+7c
+00
+68
+00
+cc
+47
+1f
+e0
+fe
+04
+60
+00
+c4
+45
+20
+40
+05
+d7
+20
+20
+05
+92
+68
+00
+cc
+47
+1f
+e6
+7c
+10
+20
+22
+85
+9e
+68
+00
+c4
+45
+1f
+e6
+7c
+10
+20
+22
+85
+9e
+68
+01
+02
+a0
+1f
+e0
+ff
+ff
+60
+01
+0d
+5a
+20
+40
+05
+ae
+68
+01
+02
+a0
+60
+01
+0d
+58
+20
+40
+05
+a9
+19
+60
+97
+ff
+20
+22
+85
+99
+20
+40
+05
+a5
+20
+20
+05
+78
+70
+0d
+5c
+01
+20
+20
+05
+97
+68
+01
+02
+a0
+60
+01
+0d
+5a
+20
+20
+05
+a2
+68
+01
+02
+a0
+1f
+e0
+ff
+ff
+60
+01
+0d
+5a
+20
+20
+05
+a2
+20
+34
+57
+28
+20
+40
+05
+ae
+20
+20
+05
+dd
+68
+09
+02
+a0
+18
+40
+84
+01
+60
+09
+02
+a0
+20
+60
+00
+00
+68
+00
+cc
+47
+60
+00
+81
+03
+1f
+e2
+72
+00
+20
+40
+05
+d4
+20
+20
+7e
+45
+20
+40
+05
+d1
+68
+01
+0d
+58
+e0
+a1
+00
+00
+68
+01
+0d
+5a
+e0
+a1
+00
+00
+68
+00
+81
+03
+1f
+e2
+72
+00
+20
+40
+7e
+45
+20
+20
+05
+d7
+68
+09
+02
+a0
+68
+01
+44
+be
+98
+46
+7c
+00
+20
+60
+00
+00
+68
+01
+44
+c0
+68
+09
+4c
+45
+98
+46
+7c
+00
+20
+60
+00
+00
+d8
+c0
+45
+04
+18
+42
+22
+00
+e8
+c1
+00
+00
+20
+3a
+05
+ca
+e8
+c9
+00
+00
+60
+09
+4c
+45
+9a
+26
+7c
+00
+20
+22
+85
+cc
+e8
+c0
+80
+00
+98
+c0
+8c
+00
+20
+20
+05
+c1
+58
+00
+00
+01
+20
+60
+00
+00
+e8
+c0
+80
+00
+60
+00
+cc
+47
+20
+40
+05
+da
+58
+00
+00
+00
+20
+60
+00
+00
+68
+01
+02
+b9
+1f
+e2
+0a
+00
+20
+60
+00
+00
+68
+01
+02
+b7
+1f
+e2
+0c
+00
+20
+60
+00
+00
+18
+a2
+7e
+00
+60
+01
+02
+b9
+20
+60
+00
+00
+18
+c2
+7e
+00
+60
+01
+02
+b7
+20
+60
+00
+00
+20
+40
+05
+d1
+20
+20
+58
+8a
+68
+00
+cb
+ab
+1f
+e0
+84
+01
+18
+41
+04
+03
+60
+08
+cb
+ab
+1f
+ef
+fe
+07
+d8
+c0
+4b
+ad
+98
+c0
+8c
+00
+68
+00
+cc
+62
+1f
+e0
+ff
+fb
+1f
+e2
+72
+00
+d8
+a0
+44
+45
+20
+40
+7e
+45
+68
+08
+cc
+62
+20
+20
+58
+92
+20
+40
+56
+1c
+20
+20
+58
+b0
+1a
+62
+7e
+00
+c0
+01
+85
+f9
+c0
+05
+05
+fd
+c0
+09
+05
+fb
+c0
+01
+05
+ff
+1f
+e6
+7c
+0d
+20
+21
+58
+c0
+60
+00
+cc
+48
+70
+0b
+7d
+27
+20
+20
+56
+20
+70
+4c
+5c
+00
+20
+20
+59
+38
+70
+0b
+7d
+33
+20
+20
+56
+20
+70
+0b
+7d
+2b
+20
+20
+56
+20
+58
+00
+00
+14
+60
+01
+03
+ef
+20
+60
+00
+00
+68
+00
+c4
+3e
+28
+20
+06
+01
+20
+20
+86
+06
+20
+20
+58
+a7
+68
+00
+c4
+3f
+20
+3a
+06
+09
+20
+20
+58
+a7
+68
+00
+c4
+3e
+79
+3f
+fe
+04
+60
+00
+c4
+3e
+20
+60
+00
+00
+e8
+c0
+80
+00
+c0
+00
+86
+14
+c0
+02
+06
+1a
+c0
+04
+86
+12
+20
+20
+58
+f8
+70
+4c
+49
+03
+20
+20
+59
+74
+70
+4d
+1c
+01
+60
+00
+c4
+ae
+e8
+c3
+00
+00
+e0
+a3
+00
+00
+70
+0b
+7d
+42
+20
+20
+56
+20
+20
+40
+74
+a8
+20
+22
+86
+1d
+20
+20
+59
+68
+70
+4c
+49
+02
+20
+20
+59
+6a
+70
+4c
+5d
+00
+20
+40
+3f
+86
+20
+40
+3f
+7e
+20
+40
+3f
+a4
+20
+20
+3e
+cc
+70
+42
+13
+00
+70
+44
+8b
+00
+70
+4c
+5c
+00
+70
+4c
+49
+00
+70
+4c
+5f
+00
+70
+4c
+5d
+00
+20
+20
+3e
+d0
+58
+00
+00
+00
+60
+02
+4b
+a9
+20
+60
+00
+00
+c6
+91
+80
+00
+68
+02
+4d
+1d
+60
+02
+4d
+4f
+20
+40
+06
+53
+24
+34
+06
+46
+70
+4c
+0b
+0a
+20
+40
+06
+79
+68
+00
+cb
+ef
+c1
+ff
+80
+00
+68
+00
+cd
+22
+24
+7a
+00
+00
+20
+40
+01
+b2
+24
+74
+00
+00
+68
+00
+8b
+7f
+24
+7a
+00
+00
+20
+40
+3c
+ab
+68
+01
+c2
+10
+20
+7a
+00
+00
+68
+00
+c1
+31
+20
+7a
+00
+00
+68
+01
+cd
+57
+20
+40
+7e
+8a
+60
+0a
+41
+fc
+20
+20
+3c
+da
+20
+40
+01
+b2
+24
+74
+00
+00
+68
+00
+8b
+7f
+24
+7a
+00
+00
+20
+40
+3c
+ab
+68
+01
+c2
+10
+20
+7a
+00
+00
+68
+00
+c1
+31
+20
+7a
+00
+00
+68
+00
+cc
+0b
+24
+3a
+06
+42
+68
+02
+4d
+4f
+20
+20
+06
+43
+68
+00
+cb
+ef
+c0
+ff
+86
+ca
+20
+40
+06
+5a
+20
+54
+06
+75
+20
+54
+07
+34
+70
+4b
+e6
+01
+20
+60
+00
+00
+78
+54
+7c
+00
+70
+4b
+e2
+02
+68
+00
+cd
+34
+c0
+02
+06
+65
+c0
+02
+86
+6b
+c0
+03
+06
+71
+c0
+03
+86
+6e
+c0
+04
+06
+68
+68
+00
+cd
+22
+24
+5a
+34
+df
+20
+60
+00
+00
+70
+4d
+34
+00
+70
+4b
+e1
+0a
+20
+20
+06
+73
+70
+4d
+34
+08
+70
+4b
+e1
+10
+20
+20
+06
+73
+70
+4d
+34
+03
+70
+4b
+e1
+04
+20
+20
+06
+73
+70
+4d
+34
+02
+70
+4b
+e1
+03
+20
+20
+06
+73
+70
+4b
+e2
+01
+70
+4b
+e1
+08
+70
+4b
+e7
+00
+20
+20
+34
+df
+d8
+a0
+0c
+d5
+d8
+c0
+4d
+34
+df
+20
+00
+14
+20
+20
+7e
+45
+70
+4b
+e8
+00
+d9
+60
+0d
+00
+34
+73
+02
+00
+20
+40
+06
+a0
+24
+37
+86
+89
+20
+40
+06
+af
+68
+00
+cb
+e0
+1f
+e0
+fe
+01
+60
+00
+cb
+e0
+70
+4d
+22
+00
+68
+00
+cb
+ef
+c0
+ff
+86
+9f
+20
+40
+06
+9b
+70
+4b
+e7
+00
+70
+4b
+e6
+00
+20
+60
+00
+00
+70
+4d
+22
+01
+68
+00
+cb
+e7
+1f
+e0
+fe
+01
+60
+00
+cb
+e7
+68
+00
+cb
+ef
+c0
+ff
+86
+ab
+68
+00
+cb
+e7
+c0
+7f
+86
+ac
+68
+00
+cb
+e7
+d8
+40
+00
+10
+98
+46
+7c
+00
+20
+21
+07
+53
+68
+00
+cb
+e8
+1f
+e0
+fe
+01
+60
+00
+cb
+e8
+20
+00
+00
+0a
+c0
+83
+86
+7a
+20
+20
+07
+53
+58
+00
+00
+00
+60
+02
+0c
+d5
+60
+02
+4d
+34
+20
+60
+00
+00
+20
+20
+06
+e4
+78
+57
+fc
+00
+20
+40
+07
+ab
+18
+00
+2a
+00
+68
+02
+4c
+00
+98
+00
+12
+00
+68
+08
+80
+17
+20
+40
+3a
+82
+20
+40
+3a
+87
+20
+40
+07
+6b
+20
+57
+87
+a5
+20
+60
+00
+00
+20
+60
+00
+00
+70
+4d
+22
+00
+70
+0b
+7d
+32
+20
+20
+7c
+27
+20
+40
+07
+19
+68
+00
+8c
+b3
+c1
+81
+00
+00
+68
+00
+cb
+df
+20
+7a
+00
+00
+98
+00
+72
+00
+d8
+c0
+0c
+b5
+d8
+a0
+0d
+17
+20
+40
+7e
+45
+68
+00
+8c
+b4
+2f
+e1
+f0
+08
+24
+60
+80
+00
+68
+00
+8c
+b5
+c0
+7f
+86
+bf
+60
+00
+cc
+90
+20
+60
+00
+00
+70
+4d
+5a
+01
+20
+60
+00
+00
+79
+20
+00
+23
+20
+40
+06
+c6
+20
+40
+06
+85
+70
+4b
+ef
+01
+20
+60
+00
+00
+70
+4b
+e0
+00
+70
+4b
+e9
+4e
+68
+02
+4b
+eb
+20
+20
+07
+26
+20
+40
+06
+c6
+68
+00
+cb
+e6
+c0
+00
+b4
+df
+68
+00
+cb
+ef
+c0
+00
+86
+d2
+c0
+01
+06
+d5
+c0
+01
+86
+d8
+20
+20
+3b
+f1
+70
+4b
+ef
+11
+70
+0d
+37
+aa
+20
+20
+06
+da
+70
+4b
+ef
+12
+70
+0d
+37
+55
+20
+20
+06
+da
+70
+4b
+ef
+13
+70
+0d
+37
+22
+70
+0d
+38
+02
+68
+02
+4c
+06
+60
+02
+0d
+39
+70
+0d
+3d
+00
+da
+20
+0d
+37
+d8
+40
+00
+07
+20
+40
+07
+14
+20
+40
+07
+34
+20
+40
+06
+58
+20
+20
+34
+df
+68
+00
+cb
+ef
+c1
+7f
+80
+00
+c0
+08
+86
+ea
+c0
+09
+06
+ec
+c0
+09
+86
+ee
+20
+60
+00
+00
+70
+4b
+ef
+02
+20
+20
+06
+85
+70
+4b
+ef
+03
+20
+20
+06
+85
+70
+4b
+ef
+ff
+70
+0b
+7d
+31
+20
+40
+7c
+27
+68
+02
+0d
+19
+20
+40
+07
+26
+20
+20
+06
+85
+79
+20
+00
+23
+20
+40
+07
+27
+20
+40
+07
+53
+68
+00
+cb
+ef
+c1
+ff
+80
+00
+20
+40
+07
+06
+58
+00
+00
+00
+60
+01
+4c
+04
+20
+40
+3c
+ab
+20
+00
+07
+d0
+68
+00
+cc
+04
+c0
+7f
+86
+ac
+20
+40
+06
+a0
+24
+37
+87
+0f
+20
+40
+06
+9b
+79
+20
+00
+23
+70
+0b
+7d
+3c
+20
+20
+7c
+27
+70
+0d
+37
+ff
+68
+00
+cb
+e2
+60
+00
+8d
+38
+68
+02
+4c
+06
+60
+02
+0d
+39
+d8
+40
+00
+06
+da
+20
+0d
+37
+20
+40
+07
+14
+20
+20
+07
+34
+68
+01
+4c
+04
+1f
+e0
+fe
+01
+60
+01
+4c
+04
+20
+40
+07
+53
+20
+20
+06
+fc
+60
+08
+cb
+e1
+18
+42
+72
+00
+d8
+a0
+0c
+d5
+1a
+22
+0c
+00
+20
+20
+7e
+45
+68
+00
+8c
+b4
+1f
+e9
+7e
+00
+60
+00
+cb
+df
+20
+60
+00
+00
+68
+08
+cc
+22
+58
+00
+4c
+11
+98
+40
+8a
+00
+1a
+22
+7e
+00
+e0
+a0
+80
+00
+18
+40
+84
+01
+18
+41
+04
+07
+60
+08
+cc
+22
+20
+60
+00
+00
+60
+02
+4c
+00
+da
+20
+00
+00
+df
+20
+00
+04
+d8
+c0
+4c
+00
+e8
+c0
+80
+00
+9a
+20
+a2
+00
+c2
+00
+07
+2a
+1a
+22
+7e
+00
+60
+01
+4c
+0c
+68
+00
+cc
+0c
+68
+08
+cc
+0d
+98
+40
+fe
+00
+60
+00
+cc
+0e
+20
+60
+00
+00
+68
+00
+cb
+e1
+1f
+e0
+fe
+02
+60
+00
+cb
+e3
+68
+00
+cb
+e2
+60
+00
+8c
+f5
+68
+00
+cb
+e1
+1f
+e9
+fe
+00
+68
+08
+cb
+e0
+18
+41
+04
+03
+18
+43
+84
+00
+98
+41
+fe
+00
+68
+08
+cc
+0a
+98
+40
+fe
+00
+e0
+a0
+80
+00
+68
+00
+cb
+ef
+c0
+ff
+87
+46
+68
+00
+cb
+e2
+e0
+a0
+80
+00
+68
+00
+cb
+e1
+98
+00
+72
+00
+68
+00
+cb
+e2
+c0
+00
+87
+51
+d8
+c0
+0c
+d5
+20
+40
+7e
+45
+68
+00
+8c
+d5
+c0
+01
+87
+4f
+20
+60
+00
+00
+70
+0c
+d5
+02
+20
+60
+00
+00
+d8
+c0
+0c
+d6
+20
+20
+7e
+45
+68
+08
+cb
+ea
+20
+40
+07
+59
+18
+40
+84
+01
+18
+41
+04
+03
+60
+08
+cb
+ea
+20
+60
+00
+00
+68
+00
+cc
+00
+1f
+e1
+7e
+03
+1f
+ef
+a2
+04
+58
+00
+4b
+f0
+9a
+20
+fe
+00
+98
+40
+8c
+00
+e8
+c0
+80
+00
+60
+00
+cb
+e9
+20
+60
+00
+00
+78
+44
+fc
+00
+78
+43
+fc
+00
+58
+55
+55
+55
+98
+00
+1e
+00
+68
+00
+cb
+e9
+1f
+ed
+84
+00
+79
+20
+04
+01
+18
+43
+1c
+00
+20
+60
+00
+00
+20
+40
+07
+62
+78
+26
+fc
+00
+78
+30
+fc
+00
+78
+50
+7c
+00
+78
+28
+7c
+00
+68
+01
+4b
+e4
+98
+00
+36
+00
+37
+c1
+84
+00
+24
+2c
+07
+a5
+78
+46
+fc
+00
+78
+25
+fc
+00
+78
+23
+fc
+00
+78
+24
+fc
+00
+09
+80
+00
+08
+19
+89
+7e
+00
+60
+00
+cc
+0f
+68
+08
+cc
+0e
+98
+46
+7c
+00
+24
+22
+87
+a5
+09
+80
+00
+08
+19
+89
+7e
+00
+60
+00
+8c
+b3
+68
+00
+8c
+b3
+68
+08
+cb
+e2
+a8
+40
+0e
+00
+24
+20
+87
+a5
+09
+80
+00
+08
+19
+89
+7e
+00
+e0
+a0
+80
+00
+1f
+e9
+7e
+00
+1f
+e1
+72
+1f
+20
+22
+87
+8f
+09
+80
+00
+08
+19
+89
+7e
+00
+e0
+a0
+80
+00
+c2
+00
+07
+8b
+18
+a2
+22
+00
+09
+80
+00
+08
+19
+89
+7e
+00
+60
+00
+cc
+10
+1a
+22
+0a
+00
+09
+80
+00
+18
+78
+28
+7c
+00
+db
+60
+06
+64
+1f
+ef
+7e
+00
+1f
+f1
+7e
+00
+e0
+a1
+80
+00
+78
+45
+fc
+00
+20
+23
+07
+a5
+78
+37
+fc
+00
+68
+00
+80
+17
+1f
+e0
+a2
+00
+20
+40
+3a
+b6
+78
+46
+fc
+00
+20
+40
+3a
+7a
+68
+00
+cc
+10
+1f
+e2
+22
+00
+20
+20
+07
+1d
+78
+4d
+fc
+00
+78
+45
+fc
+00
+20
+20
+37
+5c
+20
+40
+3a
+7a
+68
+08
+cb
+e9
+20
+20
+3a
+91
+20
+40
+53
+d2
+68
+02
+4c
+00
+98
+00
+12
+00
+20
+40
+07
+62
+20
+40
+07
+a8
+79
+20
+2a
+00
+78
+2e
+fc
+00
+78
+30
+7c
+00
+78
+50
+fc
+00
+19
+31
+7e
+00
+1f
+ec
+fe
+00
+1f
+f1
+fe
+00
+08
+00
+86
+28
+78
+4e
+fc
+00
+78
+2d
+fc
+00
+78
+23
+fc
+00
+78
+24
+fc
+00
+68
+00
+cc
+0e
+08
+00
+86
+08
+68
+00
+cb
+e3
+98
+00
+72
+00
+d8
+c0
+0c
+f5
+e8
+c0
+80
+00
+08
+00
+86
+08
+c2
+00
+07
+c1
+78
+24
+7c
+00
+08
+00
+86
+18
+78
+44
+7c
+00
+37
+d3
+82
+00
+20
+00
+00
+64
+78
+4e
+fc
+00
+78
+4d
+fc
+00
+20
+20
+3a
+7a
+d3
+15
+aa
+55
+40
+00
+00
+40
+69
+04
+00
+00
+80
+09
+0a
+00
+0c
+00
+11
+00
+00
+00
+00
+00
+00
+00
+35
+00
+00
+00
+4f
+02
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+09
+18
+00
+04
+c8
+00
+5c
+40
+00
+3a
+ce
+00
+00
+80
+e0
+00
+90
+00
+00
+00
+20
+00
+a0
+01
+00
+4c
+00
+00
+00
+aa
+55
+02
+00
+2c
+4d
+50
+00
+aa
+55
+01
+00
+31
+41
+01
+aa
+55
+02
+00
+13
+42
+40
+03
+aa
+55
+01
+00
+f7
+41
+0a
+aa
+55
+02
+00
+f5
+41
+10
+00
+aa
+55
+01
+00
+33
+41
+00
+aa
+55
+03
+00
+4a
+41
+40
+25
+00
+aa
+55
+06
+00
+40
+41
+36
+28
+52
+08
+66
+2a
+aa
+55
+0f
+00
+02
+47
+0e
+42
+54
+33
+2e
+30
+20
+4b
+65
+79
+62
+6f
+61
+72
+64
+aa
+55
+03
+00
+80
+42
+0e
+00
+01
+aa
+55
+01
+00
+84
+42
+01
+aa
+55
+01
+00
+47
+47
+0a
+aa
+55
+01
+00
+dc
+47
+01
+aa
+55
+01
+00
+f6
+47
+01
+aa
+55
+01
+00
+72
+41
+01
+aa
+55
+0e
+00
+5b
+47
+06
+03
+11
+00
+00
+01
+02
+10
+24
+11
+00
+12
+01
+00
+aa
+55
+01
+00
+71
+47
+00
+aa
+55
+62
+02
+11
+48
+04
+00
+11
+01
+00
+10
+02
+11
+24
+00
+01
+00
+00
+36
+01
+a2
+09
+00
+00
+0a
+00
+01
+00
+00
+09
+00
+01
+35
+03
+19
+11
+24
+09
+00
+04
+35
+0d
+35
+06
+19
+01
+00
+09
+00
+11
+35
+03
+19
+00
+11
+09
+00
+05
+35
+03
+19
+10
+02
+09
+00
+06
+35
+09
+09
+65
+6e
+09
+00
+6a
+09
+01
+00
+09
+00
+09
+35
+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
+01
+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
+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
+00
+09
+02
+01
+09
+01
+11
+09
+02
+02
+08
+40
+09
+02
+03
+08
+21
+09
+02
+04
+28
+01
+09
+02
+05
+28
+01
+09
+02
+06
+35
+91
+35
+8f
+08
+22
+25
+8b
+05
+01
+09
+06
+a1
+01
+85
+01
+75
+01
+95
+08
+05
+07
+19
+e0
+29
+e7
+15
+00
+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
+26
+ff
+00
+05
+07
+19
+00
+29
+ff
+81
+00
+c0
+05
+01
+09
+06
+a1
+01
+85
+08
+95
+70
+75
+01
+15
+00
+25
+01
+05
+07
+19
+00
+29
+ff
+81
+02
+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
+80
+a1
+01
+85
+03
+19
+81
+29
+88
+15
+00
+25
+01
+95
+08
+75
+01
+81
+06
+c0
+09
+02
+07
+35
+08
+35
+06
+09
+04
+09
+09
+01
+00
+09
+02
+0b
+09
+01
+00
+09
+02
+0c
+09
+1f
+40
+09
+02
+0d
+28
+00
+09
+02
+0e
+28
+01
+09
+02
+0f
+09
+00
+12
+09
+02
+10
+09
+00
+00
+03
+10
+02
+12
+00
+00
+01
+00
+01
+00
+01
+36
+00
+a1
+09
+00
+00
+0a
+00
+01
+00
+01
+09
+00
+01
+35
+03
+19
+12
+00
+09
+00
+04
+35
+0d
+35
+06
+19
+01
+00
+09
+00
+01
+35
+03
+19
+00
+01
+09
+00
+06
+35
+09
+09
+65
+6e
+09
+00
+6a
+09
+01
+00
+09
+00
+09
+35
+08
+35
+06
+19
+12
+00
+09
+01
+00
+09
+01
+00
+25
+2f
+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
+4b
+65
+79
+62
+6f
+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
+09
+02
+01
+09
+04
+e8
+09
+02
+02
+09
+70
+21
+09
+02
+03
+09
+00
+01
+09
+02
+04
+28
+01
+09
+02
+05
+09
+00
+02
+00
+aa
+55
+02
+00
+59
+47
+11
+48
+aa
+55
+01
+00
+32
+41
+43
+aa
+55
+01
+00
+fb
+41
+00
+aa
+55
+08
+00
+38
+41
+ff
+ff
+8f
+f8
+83
+9d
+59
+82
+aa
+55
+01
+00
+dc
+07
+00
+aa
+55
+01
+00
+a2
+00
+00
+aa
+55
+01
+00
+dd
+07
+00
+aa
+55
+01
+00
+16
+00
+27
+aa
+55
+01
+00
+fd
+47
+ff
+aa
+55
+01
+00
+f7
+47
+ff
+aa
+55
+01
+00
+6e
+41
+80
+aa
+55
+02
+00
+a2
+4b
+02
+01
+aa
+55
+f6
+01
+04
+45
+01
+00
+00
+28
+02
+01
+18
+02
+00
+03
+28
+01
+20
+03
+00
+05
+2a
+01
+00
+04
+00
+02
+29
+02
+00
+00
+05
+00
+00
+28
+02
+00
+18
+06
+00
+03
+28
+01
+02
+07
+00
+00
+2a
+08
+42
+54
+35
+2e
+30
+20
+4b
+42
+08
+00
+03
+28
+01
+02
+09
+00
+01
+2a
+02
+c1
+03
+0a
+00
+03
+28
+01
+02
+0b
+00
+04
+2a
+08
+06
+00
+06
+00
+64
+00
+2c
+01
+0c
+00
+00
+28
+02
+0a
+18
+0d
+00
+03
+28
+01
+02
+0e
+00
+29
+2a
+06
+59
+69
+43
+68
+69
+70
+0f
+00
+03
+28
+01
+02
+10
+00
+50
+2a
+07
+02
+e8
+04
+21
+70
+01
+00
+11
+00
+00
+28
+02
+12
+18
+12
+00
+03
+28
+01
+06
+13
+00
+4e
+2a
+01
+01
+14
+00
+03
+28
+01
+12
+15
+00
+4d
+2a
+08
+00
+00
+00
+00
+00
+00
+00
+00
+16
+00
+02
+29
+02
+00
+00
+17
+00
+08
+29
+02
+01
+01
+18
+00
+03
+28
+01
+12
+19
+00
+4d
+2a
+02
+00
+00
+1a
+00
+02
+29
+02
+00
+00
+1b
+00
+08
+29
+02
+03
+01
+1c
+00
+03
+28
+01
+12
+1d
+00
+4d
+2a
+02
+00
+00
+1e
+00
+02
+29
+02
+00
+00
+1f
+00
+08
+29
+02
+02
+01
+20
+00
+03
+28
+01
+0e
+21
+00
+4d
+2a
+02
+00
+00
+22
+00
+02
+29
+02
+00
+00
+23
+00
+08
+29
+02
+01
+02
+24
+00
+03
+28
+01
+12
+25
+00
+4d
+2a
+0d
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+26
+00
+02
+29
+02
+00
+00
+27
+00
+08
+29
+02
+08
+01
+28
+00
+03
+28
+01
+0a
+29
+00
+4b
+2a
+8b
+05
+01
+09
+06
+a1
+01
+85
+01
+75
+01
+95
+08
+05
+07
+19
+e0
+29
+e7
+15
+00
+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
+26
+ff
+00
+05
+07
+19
+00
+29
+ff
+81
+00
+c0
+05
+01
+09
+06
+a1
+01
+85
+08
+95
+70
+75
+01
+15
+00
+25
+01
+05
+07
+19
+00
+29
+ff
+81
+02
+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
+80
+a1
+01
+85
+03
+19
+81
+29
+88
+15
+00
+25
+01
+95
+08
+75
+01
+81
+06
+c0
+2a
+00
+03
+28
+01
+02
+2b
+00
+4a
+2a
+04
+11
+01
+00
+01
+2c
+00
+03
+28
+01
+04
+2d
+00
+4c
+2a
+01
+00
+2e
+00
+00
+28
+02
+0f
+18
+2f
+00
+03
+28
+01
+12
+30
+00
+19
+2a
+01
+64
+31
+00
+02
+29
+02
+00
+00
+00
+00
+aa
+55
+01
+00
+4a
+4c
+17
+aa
+55
+01
+00
+f9
+46
+50
+aa
+55
+01
+00
+c2
+44
+14
+aa
+55
+06
+00
+f9
+44
+11
+46
+34
+54
+77
+dd
+aa
+55
+01
+00
+5e
+4c
+00
+aa
+55
+02
+00
+91
+4c
+15
+00
+aa
+55
+02
+00
+95
+4c
+19
+00
+aa
+55
+02
+00
+93
+4c
+1d
+00
+aa
+55
+02
+00
+99
+4c
+25
+00
+aa
+55
+02
+00
+97
+4c
+30
+00
+aa
+55
+01
+00
+40
+4c
+50
+aa
+55
+10
+00
+4c
+4c
+0c
+00
+05
+00
+12
+b4
+08
+00
+08
+00
+08
+00
+00
+00
+2c
+01
+aa
+55
+09
+00
+19
+44
+08
+42
+54
+35
+2e
+30
+20
+4b
+42
+aa
+55
+01
+00
+e4
+44
+07
+aa
+55
+01
+00
+dd
+44
+01
+aa
+55
+0c
+00
+d9
+43
+1f
+02
+01
+05
+03
+19
+c1
+03
+03
+03
+12
+18
+aa
+55
+07
+00
+48
+4d
+06
+ff
+06
+00
+03
+00
+80
+aa
+55
+0b
+00
+f9
+43
+1f
+09
+09
+42
+54
+35
+2e
+30
+20
+4b
+42
+aa
+55
+05
+00
+30
+4d
+20
+22
+03
+02
+20
+aa
+55
+04
+00
+71
+4c
+9f
+3e
+cd
+4d
+aa
+55
+01
+00
+6f
+4c
+02
+aa
+55
+01
+00
+e2
+4b
+02
+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
+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
+04
+00
+1d
+4d
+00
+48
+5d
+00
+aa
+55
+07
+00
+53
+4d
+ff
+ff
+ff
+ff
+e8
+fd
+00
+aa
+55
+08
+00
+16
+42
+8f
+10
+ce
+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
+78
+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
+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
+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
+55
+aa
+aa
+55
+1a
+a1
+ec
+97
Index: btkb/output/memmap.format
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/btkb/output/memmap.format	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/btkb/output/memmap.format	(working copy)
@@ -0,0 +1,1101 @@
+0x0000 mem_le_adv_transmit
+0x0001 mem_le_adv_waitcnt
+0x0002 mem_le_adv_rcv
+0x0003 mem_le_req_rcv
+0x0004 mem_le_scanrsp_rcv
+0x0005 mem_le_conn_rcv
+0x0006 mem_inquiryscan_waitcnt
+0x0007 mem_inquiryscan_rcvcnt
+0x0008 mem_pagescan_waitcnt
+0x0009 mem_pagescan_rcvcnt
+0x000a mem_pagescan_rcvfhscnt
+0x000b mem_slave_rcvcnt
+0x000c mem_page_transmit
+0x000d mem_page_rcv
+0x000e mem_page_rcv_fhs
+0x000f mem_master_rcvcnt
+0x0010 mem_fhs_wait_counter
+0x0011 mem_newconnto_counter
+0x0012 mem_inquiry_transmit
+0x0013 mem_inquiry_rcv
+0x0014 mem_fw_ver
+0x0015 mem_current_context
+0x0016 mem_le_ch_mapped
+0x0017 mem_last_freq
+0x0018 mem_rssi
+0x0019 mem_rx_type
+0x001a mem_rx_hec_err
+0x001c mem_rx_crc_err
+0x001e mem_context_ptr
+0x0020 mem_display
+0x0028 mem_bcd
+0x0030 mem_state
+0x0031 mem_mode
+0x0032 mem_tsniff
+0x0034 mem_sniff_anchor
+0x0038 mem_clk_offset
+0x003e mem_rx_window
+0x0040 mem_plap
+0x0043 mem_puap
+0x0044 mem_pnap
+0x0046 mem_conn_handle
+0x0047 mem_arq
+0x0048 mem_lmp_to_send
+0x0049 mem_lmi_opcode
+0x004a mem_lmo_reason
+0x004b mem_op
+0x004c mem_state_map
+0x004d mem_supervision_timer
+0x0051 mem_supervision_to
+0x0053 mem_name_offset
+0x0054 mem_key_size
+0x0055 mem_conn_sm
+0x0056 mem_aco
+0x0062 mem_kc
+0x0072 mem_conn_timer
+0x0073 mem_sniff_attempt
+0x0074 mem_sniff_timeout
+0x0075 mem_dsniff
+0x0077 mem_amaddr
+0x0078 mem_lmo_opcode1
+0x0079 mem_lmi_opcode1
+0x007a mem_lmo_reason1
+0x007b mem_lmo_tid1
+0x007c mem_lmo_opcode2
+0x007d mem_lmi_opcode2
+0x007e mem_lmo_reason2
+0x007f mem_lmo_tid2
+0x0080 mem_hci_version
+0x0083 mem_acl_pktlen
+0x0085 mem_sco_pktlen
+0x0086 mem_acl_pktcnt
+0x0088 mem_sco_pktcnt
+0x008a mem_current_sniff_attempt
+0x008b mem_current_sniff_timeout
+0x008c mem_nfreq_index_inq
+0x008d mem_nfreq_index_page
+0x008e mem_ninqy_index
+0x008f mem_fhs_misc
+0x0090 mem_tx_lch
+0x0091 mem_tx_len
+0x0093 mem_subsniff_instant
+0x0097 mem_subsniff_rate
+0x0098 mem_subsniff_tcmax
+0x009a mem_subsniff_tsniff
+0x009b mem_lpm_adjust
+0x009c mem_sync_clke
+0x00a2 mem_lpm_current_mult
+0x00a3 mem_gpio_wakeup_low
+0x00a7 mem_gpio_wakeup_high
+0x00ab mem_air_mode
+0x00ac mem_sco_asso_handle
+0x00ad mem_sco_handle
+0x00af mem_esco_desco
+0x00b0 mem_esco_type
+0x00b1 mem_neogotiation_state
+0x00b2 mem_saved_amaddr
+0x00b3 mem_esco_arq
+0x00b4 mem_esco_saved_arq
+0x00b5 mem_sco_obuf
+0x00d3 mem_sco_ibuf
+0x00f1 mem_sco_poll
+0x00f2 mem_npage_index
+0x00f3 mem_page_mode
+0x00f4 mem_page_clk
+0x00f8 mem_tst_pktcnt_sync
+0x00fa mem_tst_pktcnt_hec
+0x00fc mem_tst_pktcnt_crc
+0x00fe mem_tst_pktcnt_dmh
+0x0100 mem_tmp_buffer_head
+0x0103 mem_tmp_buffer
+0x0153 mem_tester_emulate
+0x0154 mem_temp_payload
+0x0154 test_mode_scenario
+0x0155 test_mode_hopping_mode
+0x0156 test_mode_tx_freq
+0x0157 test_mode_rx_freq
+0x0158 test_mode_power_mode
+0x0159 test_mode_poll_period
+0x015a test_mode_packet_type
+0x015b test_mode_data_length
+0x015d mem_test_mode_old_debug_config
+0x015e mem_tester_cnt
+0x015f mem_temp_am_addr
+0x0160 mem_temp_arq
+0x0161 mem_pdatatemp
+0x0169 mem_len
+0x016b mem_clkn_bt
+0x016f mem_clke_bt
+0x0173 mem_dpll_clkn
+0x0177 mem_connection_options
+0x0178 mem_nameres_cnt
+0x0179 mem_txptr
+0x017b mem_slot_offset
+0x017d extm_fhs_misc
+0x017e extm_newconn_am_addr
+0x017f extm_class
+0x0182 extm_lap
+0x0185 extm_uap
+0x0186 extm_nap
+0x0189 mem_debug_config
+0x018a mem_lch_code
+0x018b mem_fhs_am_addr
+0x018c mem_dpll_error
+0x018e mem_bdaddr_list_buff
+0x01b2 mem_select_list_item
+0x01b3 mem_temp_reconn_record
+0x01b3 mem_record_bt_mode
+0x01b4 mem_temp_lap
+0x01ba mem_list_item_ptr
+0x01bc mem_eir
+0x0220 mem_ucode_status
+0x0221 mem_otp_ucode_flag
+0x0223 mem_spid_tbuf/* spid buf: 03 addr[23:16] addr[15:8] addr[7:0] */
+0x0224 mem_iicd_tbuf/* iicd buf: iic_adr addr[15:8] addr[7:0] iic_adr */
+0x0224 mem_addr_hi
+0x0225 mem_addr_mi
+0x0226 mem_addr_lo
+0x0227 mem_iicd_addr
+0x0228 mem_spid_rbuf
+0x022c mem_ucode_buf
+0x022e mem_ucode_len
+0x0230 mem_sched_addr
+0x0232 mem_ucode_ptr
+0x0234 mem_ucode_keybuf
+0x0244 mem_check_plap_temp
+0x0256 mem_sensor_id
+0x0257 mem_reconnect_flag
+0x0258 mem_switch_fail_master_count
+0x0259 mem_app_evt_timer_count
+0x025a mem_dongle_count
+0x025b mem_le_addr_slave1
+0x0261 mem_le_addr_slave2
+0x0267 mem_le_peer_state
+0x0268 mem_app_peer_addr
+0x026e mem_dongle_peers
+0x026f mem_dongle_pairing_cnt
+0x0270 mem_dongle_signature
+0x0272 mem_h5rx_ackcnt
+0x0273 mem_check_err_acl_cont
+0x0274 mem_rp_packets
+0x0275 mem_packet_type
+0x0277 mem_hci_sniff_conn_handle
+0x0279 mem_hci_sniff_max_interval
+0x027b mem_hci_sniff_min_interval
+0x027d mem_hci_sniff_attempt
+0x027f mem_hci_sniff_timeout
+0x0281 mem_voice_setting
+0x0283 mem_retransmission_effort
+0x0284 mem_sco_ptype
+0x0286 mem_extm_uap_restore
+0x0289 mem_h5rx_rptr
+0x028b mem_h5rx_ack
+0x028c mem_h5tx_ack
+0x028d mem_h5tx_rptr
+0x028f mem_h5tx_wptr
+0x0291 mem_h5tx_free
+0x0293 mem_h5rx_tmp
+0x0294 mem_h5tx_seq
+0x0295 mem_hci_acl_queue_wptr
+0x0297 mem_hci_acl_queue_rptr
+0x0299 mem_hci_acl_queue_end
+0x029b mem_hci_acl_queue_wcnt
+0x029c mem_hci_acl_cnt
+0x029d mem_hci_acl_tx_trigger_wptr//tx via uart
+0x029f mem_ucode_id_local
+0x02a0 mem_temp//8 bytes
+0x02a8 mem_timeup// 4 bytes
+0x02ac mem_rega//4 bytes
+0x02b0 mem_regb//4 bytes
+0x02b4 mem_regc//3 bytes
+0x02b7 mem_contr//2 bytes
+0x02b9 mem_contw//2 bytes
+0x02bb mem_ucode_id_remote
+0x02bc mem_check_sum
+0x02bd mem_ucode_temp
+0x02be mem_ucode_temp1
+0x02bf mem_lock_in_enc//boolean
+0x02c0 mem_hci_disconn_reason
+0x02c1 mem_hci_curr_len
+0x02c2 mem_hci_curr_target
+0x02c4 mem_l2cap_mem_start
+0x02c4 mem_l2cap_rxbuff1_len
+0x02c6 mem_l2cap_rxbuff2_len
+0x02c8 mem_l2cap_rxbuff_new
+0x02ca mem_l2cap_rxbuff_inuse
+0x02cb mem_l2cap_payload_ptr
+0x02cd mem_l2cap_rx_pkt_length
+0x02cf mem_l2cap_rx_cid
+0x02d1 mem_l2cap_rx_done
+0x02d2 mem_l2cap_signal_tx_buff_ptr
+0x02d4 mem_l2cap_signal_tx_payload_ptr
+0x02d6 mem_l2cap_signal_tx_length
+0x02d8 mem_sdp_tx_buff_ptr
+0x02da mem_sdp_tx_payload_ptr
+0x02dc mem_sdp_tx_pkt_length
+0x02de mem_rfcomm_tx_buff_ptr
+0x02e0 mem_rfcomm_tx_payload_ptr
+0x02e2 mem_rfcomm_tx_pkt_length
+0x02e4 memL2CAP_T1
+0x02e6 mem_CONTROL_tasks
+0x02e7 mem_send_config_req
+0x02e8 mem_config_identifier
+0x02e9 mem_config_req_dest_CID
+0x02eb mem_rfcomm_malloc_fail_flag
+0x02ec mem_message_to_uppersm
+0x02ed mem_upper_sm_remote_page
+0x02ee mem_upper_sm_reconn
+0x02ef mem_upper_sm_ss
+0x02f0 mem_tx_malloc_log
+0x0330 mem_l2cap_mem_end
+0x0330 mem_scid
+0x0332 mem_cmd_length
+0x0334 mem_tt2
+0x0336 mem_tt3
+0x0338 mem_id
+0x033a mem_psm
+0x033c mem_l2cap_sdpres_delay_time
+0x0340 mem_le_rxbuf
+0x0378 mem_le_mic
+0x037c mem_le_peer_mic
+0x0380 mem_le_skdm
+0x0388 mem_le_skds
+0x0390 mem_le_peer_ltk
+0x03a0 mem_le_my_ltk
+0x03b0 mem_le_mrand
+0x03c0 mem_le_state
+0x03c1 mem_le_mode
+0x03c2 mem_le_tsniff
+0x03c4 mem_le_anchor
+0x03c8 mem_le_clk_offset
+0x03ce mem_le_receive_window
+0x03d0 mem_le_plap
+0x03d6 mem_le_conn_handle
+0x03d7 mem_le_arq
+0x03d8 mem_le_ch
+0x03d9 mem_le_hop
+0x03da mem_le_event_count
+0x03dc mem_le_supervision_timer
+0x03e0 mem_le_instant
+0x03e2 mem_le_channels
+0x03e3 mem_le_conn_sm
+0x03e4 mem_le_op
+0x03e5 mem_le_access
+0x03e9 mem_le_crcinit
+0x03ec mem_le_window_size
+0x03ed mem_le_slave_latency
+0x03ef mem_le_superto
+0x03f1 mem_le_channel_map
+0x03f6 mem_le_no_using
+0x03f8 mem_le_peer_sca
+0x03f9 mem_le_att_opcode
+0x03fa mem_le_att_handle
+0x03fc mem_le_err_code
+0x03fd mem_le_sk
+0x040d mem_le_testtype
+0x040e mem_le_test_sync
+0x0410 mem_le_test_pcnt
+0x0412 mem_le_rxon_ts
+0x0418 mem_le_rx_ll_opcode
+0x0419 mem_le_notify_attr_start
+0x041b mem_le_notify_len
+0x041c mem_cmd_le_create_conn
+0x041d mem_le_adv_temp
+0x0431 mem_24g_id
+0x0432 mem_lmo_header_length
+0x0433 mem_lmo_header_opcode
+0x0434 mem_lmo_payload
+0x0445 mem_lmi_accepted_opcode
+0x0446 mem_disconn_reason_send
+0x0447 mem_tx_fixed_freq
+0x0448 mem_rx_fixed_freq
+0x0449 mem_ext_features_page
+0x044a mem_lmpext_ssp_enable
+0x044c mem_remote_sppcap
+0x044d mem_lmp_conn_state
+0x044e mem_soft_timer
+0x0450 mem_pincode_state
+0x0451 mem_sres_tid
+0x0452 mem_accptsco_tid
+0x0453 mem_auth_enable
+0x0454 mem_wait_encryption
+0x0455 mem_sniff_payload
+0x0465 mem_aurand_send_delay_time
+0x0469 mem_module_temp_len
+0x046b mem_init_cnt
+0x046d mem_prcp_data
+0x0481 mem_prcp
+0x0482 mem_prcp_tx_len
+0x0483 rx_buf_data_ptr
+0x0485 memRemoteRPNBitRate
+0x0486 memRemotePRNDataBits
+0x0487 memRemotePRNStopBit
+0x0488 memRemotePRNParity
+0x0489 memRemotePRNFlowControl
+0x048a memRemotePRNXon
+0x048b memRemotePRNXoff
+0x048c mem_mod2div_temp
+0x048f mem_contw_temp
+0x0491 mem_attrib_list
+0x0493 mem_current_adss
+0x0494 mem_current_channel
+0x0495 mem_current_frame_type
+0x0496 mem_current_fcs
+0x0497 mem_current_length
+0x0499 mem_rfcomm_uih_payload_ptr
+0x049b mem_uih_cmd_type
+0x049c mem_uih_length
+0x049e mem_param_payload_ptr
+0x04a0 mem_ms_param
+0x04a1 mem_pn_credit_flow_type_info
+0x04a2 mem_pn_priority
+0x04a3 mem_pn_acknowledg_timer
+0x04a4 mem_pn_max_retrans
+0x04a5 mem_rfcomm_send_adss
+0x04a6 mem_rfcomm_send_frame_type
+0x04a7 mem_rfcomm_send_fcs
+0x04a8 mem_rfcomm_send_offset
+0x04a9 mem_sdp_mem_start
+0x04a9 mem_uuid_search_pat
+0x04ad mem_sdp_continue_byte
+0x04af mem_sdp_pduid
+0x04b0 mem_sdp_transactionid
+0x04b2 mem_sdp_attribute_maxbyte
+0x04b4 mem_sdp_record_maxcnt
+0x04b6 mem_sdp_error_code
+0x04be mem_sdp_record_handle
+0x04c2 mem_sdp_search_failed
+0x04c3 mem_sdp_LACAP_found
+0x04c4 mem_sdp_RFCOMM_found
+0x04c5 mem_handle_list
+0x04dd mem_handle_humber
+0x04de mem_sdp_mem_end
+0x04de mem_rxbuf
+0x04ef mem_random_number
+0x04ff mem_round_key
+0x050f mem_kinit
+0x051f mem_input_store
+0x052f mem_x
+0x053f mem_y
+0x054e mem_y15
+0x054f mem_pin_length
+0x0550 mem_pin
+0x0560 mem_key_store
+0x0571 mem_key_store_end
+0x0572 memp_ar_key
+0x0574 memp_ar_input
+0x0576 mem_ar_hround
+0x0580 mem_ec_infinite
+0x0581 mem_ec_loopc
+0x0582 memdat
+0x0582 mem_ax
+0x059a mem_ay
+0x05b2 mem_az
+0x05ca mem_bx
+0x05e2 mem_by
+0x05fa mem_bz
+0x0612 mem_cx
+0x062a mem_cy
+0x0641 mem_cy5
+0x0642 mem_cz
+0x065a mem_k
+0x0672 mem_align
+0x0682 mem_tmp1
+0x0682 memahbak
+0x069a mem_tmp5
+0x06a2 memahsave
+0x06b2 mem_tmp2
+0x06c2 memahsave_end
+0x06c2 mem_addr_padding
+0x06c3 mem_addr_value/* 12 bytes     */ 
+0x06ca mem_tmp3
+0x06ca mem_t1
+0x06cf mem_addr_value_end
+0x06d2 mem_addr_iocap_end
+0x06e2 mem_tmp0
+0x06e2 mem_t0
+0x06ea mem_tmp0a
+0x06fa mem_t2
+0x0712 mem_t3
+0x072a mem_t7
+0x0742 mem_p
+0x075a mem_a
+0x0772 mem_b
+0x078a mem_gx
+0x07a2 mem_gy
+0x07ba memh0
+0x07da mem_sp_state_start
+0x07da mem_sp_state
+0x07db mem_master_sp_state
+0x07dc mem_sp_flag
+0x07dd mem_master_sp_flag
+0x07de mem_sp_calc
+0x07df mem_sp_dh_ready
+0x07e0 mem_sp_localsm
+0x07e1 mem_pairing_auth
+0x07e2 mem_sp_flag_start
+0x07e2 mem_sp_local_key_send_count
+0x07e3 mem_sp_remote_key_recv_count
+0x07e4 mem_sp_remote_key_invalid
+0x07e5 mem_sp_dhkey_invalid
+0x07e6 mem_sp_iocap_local
+0x07e9 mem_sp_iocap_remote
+0x07ec mem_sp_gkey
+0x07f0 mem_sp_pubkey_remote
+0x07f0 mem_sp_pubkey_remote_x
+0x0808 mem_sp_pubkey_remote_x_end
+0x0808 mem_sp_pubkey_remote_y
+0x0820 mem_sp_dhkey
+0x0838 mem_sp_dhkey_end
+0x0838 mem_sp_random_local
+0x0848 mem_sp_random_local_end
+0x0848 mem_sp_random_remote
+0x0858 mem_sp_random_remote_end
+0x0858 memresult
+0x0858 mem_sp_calc_result
+0x0858 memh
+0x085c memg
+0x0860 memf
+0x0864 meme
+0x0868 mem_sp_calc_result_high
+0x0868 memd
+0x086c memc
+0x0870 memb
+0x0874 mema
+0x0878 mem_sp_check_result
+0x0888 mem_sp_confirm_remote
+0x0898 mem_sp_prarm_stack
+0x08a8 mem_UI_data_txbuff_length
+0x08aa mem_ipc_skip_continue_proc
+0x08ab mem_ui_timer_temp//length 4
+0x08ab mem_ipc_rega_temp
+0x08af mem_usb_status
+0x08b0 mem_usb_fifo_empty
+0x08b1 mem_usb_read_len
+0x08b2 mem_usb_rxbuf
+0x08f2 mem_usb_cnt
+0x08f4 mem_usb_tx_enable
+0x08f5 mem_usb_tx_count
+0x08f6 mem_usb_set_protocol_count
+0x08f7 mem_usb_desc
+0x08f8 mem_usb_state
+0x08f9 mem_usb_idle_cnt
+0x08fb mem_usb_idle_timeout
+0x08fd mem_usb_trig_timeout
+0x08ff mem_usb_setup
+0x08ff mem_usb_setup_bmRequestType
+0x0900 mem_usb_setup_bRequest
+0x0901 mem_usb_setup_bValue
+0x0902 mem_usb_setup_bValueH
+0x0903 mem_usb_setup_wIndex
+0x0905 mem_usb_setup_bLength
+0x0906 mem_usb_setup_bLengthH
+0x0907 mem_usb0_setup
+0x090f mem_bufptr
+0x0911 mem_remain
+0x0912 mem_devicedesc
+0x0926 mem_hidreportdesc_kb
+0x09ee mem_hidreportdesc_m
+0x0ab6 mem_confdesc
+0x0b1a mem_string0
+0x0b1f mem_string1
+0x0b3d mem_string2
+0x0b5b mem_string3
+0x0b79 mem_hold_contr
+0x0b7b mem_hold_contw
+0x0b7d mem_fifo_temp
+0x0b7e mem_c51_flag
+0x0b7f mem_c51_lpm_lock
+0x0b80 mem_c51_wait_lpm
+0x0b81 mem_wakup_from_power_flag
+0x0b82 mem_lmp_bb_disconnect_reason
+0x0b83 mem_c51_eeprom_buf
+0x0be7 mem_c51_ipc_txbuf
+0x0c4b mem_c51_ipc_rxbuf
+0x0caf mem_c51_iicd_buf
+0x0cb3 mem_24g_rxbuf
+0x0cd5 mem_24g_txbuf
+0x0cf5 mem_24g_txpayload
+0x0d17 mem_24g_rxpayload
+0x0d37 mem_24g_common_temp
+0x0d57 mem_packet_length_temp
+0x0d58 mem_le_cur_handle_start
+0x0d5a mem_le_cur_handle_end
+0x0d5c mem_le_search_res
+0x4000 mem_patch00
+0x4001 mem_patch01
+0x4002 mem_patch02
+0x4003 mem_patch03
+0x4004 mem_patch04
+0x4005 mem_patch05
+0x4006 mem_patch06
+0x4007 mem_patch07
+0x4008 mem_patch08
+0x4009 mem_patch09
+0x400a mem_patch0a
+0x400b mem_patch0b
+0x400c mem_patch0c
+0x400d mem_patch0d
+0x400e mem_patch0e
+0x400f mem_patch0f
+0x4010 mem_patch10
+0x4011 mem_patch11
+0x4012 mem_patch12
+0x4013 mem_patch13
+0x4014 mem_patch14
+0x4015 mem_patch15
+0x4016 mem_patch16
+0x4017 mem_patch17
+0x4018 mem_patch18
+0x4019 mem_patch19
+0x401a mem_patch1a
+0x401b mem_patch1b
+0x401c mem_patch1c
+0x401d mem_patch1d
+0x401e mem_patch1e
+0x401f mem_patch1f
+0x4020 mem_patch20
+0x4021 mem_patch21
+0x4022 mem_patch22
+0x4023 mem_patch23
+0x4024 mem_patch24
+0x4025 mem_patch25
+0x4026 mem_patch26
+0x4027 mem_patch27
+0x4028 mem_patch28
+0x4029 mem_patch29
+0x402a mem_patch2a
+0x402b mem_patch2b
+0x402c mem_patch2c
+0x402d mem_patch2d
+0x402e mem_patch2e
+0x402f mem_patch2f
+0x4030 mem_patch30
+0x4031 mem_patch31
+0x4032 mem_patch32
+0x4033 mem_patch33
+0x4034 mem_patch34
+0x4035 mem_patch35
+0x4036 mem_patch36
+0x4037 mem_patch37
+0x4038 mem_patch38
+0x4039 mem_patch39
+0x403a mem_patch3a
+0x403b mem_patch3b
+0x403c mem_patch3c
+0x403d mem_patch3d
+0x403e mem_patch3e
+0x403f mem_patch3f
+0x4040 mem_context
+0x4130 mem_current_amaddr
+0x4131 mem_lpm_mode
+0x4132 mem_device_option
+0x4133 mem_scan_mode
+0x4134 mem_last_clkn
+0x4138 mem_features
+0x4140 mem_lap
+0x4143 mem_uap
+0x4144 mem_nap
+0x4146 mem_npage
+0x4147 mem_glap
+0x414a mem_class
+0x414d mem_iscan_window
+0x414f mem_iscan_interval
+0x4151 mem_pscan_window
+0x4153 mem_pscan_interval
+0x4155 mem_page_interval
+0x4157 mem_page_window
+0x4159 mem_page_to
+0x415b mem_inq_window
+0x415d mem_fcomp_mul
+0x415e mem_fcomp_div
+0x415f mem_rx_window_init
+0x4161 mem_rx_window_sniff
+0x4163 mem_rf_init_ptr
+0x4165 mem_last_type
+0x4166 mem_last_type_esco
+0x4167 mem_last_type_saved
+0x4168 mem_retransmission_cnt
+0x416a mem_next_btclk
+0x416e mem_seqi
+0x416f mem_rf_rccal
+0x4170 mem_handle_num
+0x4171 mem_max_slot
+0x4172 mem_eir_enable
+0x4173 mem_afh_instant
+0x4177 mem_afh_error_total
+0x4179 mem_afh_cfg
+0x417a mem_afh_new_mod
+0x417b mem_afh_map_lo
+0x4180 mem_afh_map_hi
+0x4185 mem_afh_used
+0x4186 mem_afh_index
+0x4188 mem_afh_map_new
+0x4193 mem_afh_map
+0x41e3 mem_afh_timer
+0x41e7 mem_afh_classify_channel_map
+0x41f1 mem_chip_functions
+0x41f3 mem_lpm_wake_lock
+0x41f5 mem_lpm_interval
+0x41f7 mem_lpm_overhead
+0x41f8 mem_lpm_hibernate_switch
+0x41f9 mem_esco_addr
+0x41fa mem_sniff_unint_lost
+0x41fb mem_ptt
+0x41fc mem_sleep_counter//should be 0x41fc in REVC
+0x4200 mem_sleep_counter_all
+0x4204 mem_sleep_clkn
+0x420a mem_sniff_rcv
+0x420d mem_sniff_lost
+0x4210 mem_clks_per_lpo
+0x4213 mem_lpm_mult
+0x4214 mem_lpm_mult_timeout
+0x4215 mem_lpm_mult_cnt
+0x4216 mem_lpm_config
+0x4219 mem_lpm_xtalcnt
+0x421a mem_lpm_buckcnt
+0x421b mem_lpm_ldocnt
+0x421c mem_lpm_isogate
+0x421d mem_lpm_isogate_final
+0x421e mem_saved_gpio// should be 0x421e in REVC
+0x422e mem_saved_gsel
+0x4231 mem_saved_mark
+0x4239 mem_saved_spidctrl
+0x423a mem_patch_ptr
+0x423c mem_patch_len
+0x423e mem_timers
+0x425e mem_link_key_exists
+0x425f mem_link_key_eeprom_head
+0x4262 mem_link_key
+0x4272 mem_hci_cmd
+0x4273 mem_hci_conn_handle
+0x4274 mem_hci_plap
+0x4277 mem_hci_puap
+0x4278 mem_hci_pnap
+0x427a mem_uartd_rxitems_got_data
+0x427b mem_uartd_rxitems_threshold
+0x427c mem_uartd_rx_timeout
+0x427e mem_app_state
+0x427f mem_app_handshake_flag
+0x4280 mem_sniff_param_interval
+0x4282 mem_sniff_param_attempt
+0x4284 mem_sniff_param_timeout
+0x4286 mem_cb_check_wakelock
+0x4288 mem_cb_before_hibernate
+0x428a mem_cb_before_lpm
+0x428c mem_cb_le_process
+0x428e mem_cb_bt_process
+0x4290 mem_cb_idle_process
+0x4292 mem_cb_bb_event_process
+0x4294 mem_cb_discovry_timeout
+0x4296 mem_cb_att_write
+0x4298 mem_cb_update_notify_value
+0x429a mem_device_nums
+0x429b mem_eeprom_base
+0x429d mem_unsniff2sniff_timer_count
+0x429e mem_wake_up_delay_timer
+0x429f mem_app_connection_options
+0x42a0 mem_app_disconn_reason
+0x42a2 mem_app_disconn_reason_flag
+0x42a4 mem_at_using_flag
+0x42a5 mem_lpm_delay_after_sniff
+0x42a9 mem_xrecord_mode
+0x42aa mem_eeprom_block_size
+0x42ac mem_baud
+0x42ae mem_hci_lt_rx_state
+0x42af mem_l2cap_xmem_start
+0x42af mem_l2cap_tx_multi_offset//0 means single packet
+0x42b1 mem_sdp_remote_cid
+0x42b3 mem_rfcomm_remote_cid
+0x42b5 mem_hid_ctrl_remote_cid
+0x42b7 mem_hid_int_remote_cid
+0x42b9 mem_sdp_state
+0x42ba mem_rfcomm_state
+0x42bb mem_hid_control_state
+0x42bc mem_hid_interrupt_state
+0x42bd mem_spp_state
+0x42be mem_ML2CAP_comm_id
+0x42bf mem_used_map
+0x42c0 mem_tx_fifo0
+0x42c0 mem_tx_fifo0_map
+0x42c1 mem_tx_fifo0_ptr
+0x42c3 mem_tx_fifo1
+0x42c3 mem_tx_fifo1_map
+0x42c4 mem_tx_fifo1_ptr
+0x42c6 mem_tx_fifo2
+0x42c6 mem_tx_fifo2_map
+0x42c7 mem_tx_fifo2_ptr
+0x42c9 mem_tx_fifo3
+0x42c9 mem_tx_fifo3_map
+0x42ca mem_tx_fifo3_ptr
+0x42cc mem_tx_fifo_end
+0x42cc mem_l2cap_lpm_txbuf
+0x43cc mem_l2cap_flow_ctrl_flag
+0x43cd mem_l2cap_pending_item
+0x43ce mem_l2cap_xmem_end
+0x43ce mem_le_dsniff
+0x43d0 mem_le_conn_interval
+0x43d2 mem_le_scan_enable
+0x43d3 mem_le_scan_interval
+0x43d5 mem_le_scan_window
+0x43d7 mem_le_adv_led
+0x43d8 mem_le_adv_enable
+0x43d9 mem_le_adv_data_len
+0x43da mem_le_adv_data
+0x43f9 mem_le_scan_data_len
+0x43fa mem_le_scan_data
+0x4419 mem_le_name_len
+0x441a mem_le_name
+0x442e mem_le_led_on_time
+0x442f mem_le_new_map
+0x4434 mem_le_new_param
+0x4434 mem_le_new_window
+0x4435 mem_le_new_offset
+0x4437 mem_le_new_interval
+0x4439 mem_le_new_latency
+0x443b mem_le_new_timeout
+0x443d mem_le_temp
+0x443e mem_le_txheader
+0x443f mem_le_txlen
+0x4440 mem_le_txpayload
+0x4442 mem_le_txcid
+0x4444 mem_le_l2cap
+0x4445 mem_le_l2cap_response
+0x4446 mem_le_txbdy
+0x4465 mem_le_pcnt_tx
+0x446a mem_le_pcnt_rx
+0x446f mem_le_last_mic
+0x4473 mem_le_ivm
+0x4477 mem_le_ivs
+0x447b mem_le_ltk
+0x448b mem_ltk_exists
+0x448c mem_le_rconfirm
+0x449c mem_le_srand
+0x44ac mem_le_iat
+0x44ad mem_le_rat
+0x44ae mem_le_preq
+0x44b5 mem_le_pres
+0x44bc mem_le_search_handle_start
+0x44be mem_le_search_handle_end
+0x44c0 mem_le_att_offset
+0x44c0 mem_le_search_att_type
+0x44c2 mem_le_notify_handle
+0x44c4 mem_le_uuid
+0x44c6 mem_le_handle_data_len
+0x44c7 mem_le_handle_data
+0x44d7 mem_le_adv_param
+0x44d7 mem_le_adv_interval_min
+0x44d9 mem_le_adv_interval_max
+0x44db mem_le_adv_type
+0x44dc mem_le_adv_own_addr_type
+0x44dd mem_le_adv_direct_addr_type
+0x44de mem_le_adv_direct_addr
+0x44e4 mem_le_adv_channel_map
+0x44e5 mem_le_adv_filter_policy
+0x44e6 mem_le_conn_param
+0x44e6 mem_le_conn_peer_addr_type
+0x44e7 mem_le_conn_peer_addr
+0x44ed mem_le_conn_own_addr_type
+0x44ee mem_le_conn_interval_min
+0x44f0 mem_le_conn_interval_max
+0x44f2 mem_le_conn_latency
+0x44f4 mem_le_conn_superto
+0x44f6 mem_le_scan_params
+0x44f6 mem_le_scan_type
+0x44f7 mem_le_scan_own_addr_type
+0x44f8 mem_le_scan_filter_policy
+0x44f9 mem_le_lap
+0x44fc mem_le_uap
+0x44fd mem_le_nap
+0x44ff mem_le_xtype_fifo
+0x4504 mem_le_att_list
+0x46f8 mem_le_switch_send_data
+0x46f9 mem_le_transmit_window
+0x46fd mem_lmp_version
+0x4700 mem_lmp_subversion
+0x4702 mem_local_name_length
+0x4703 mem_local_name
+0x4706 mem_local_name2
+0x4746 mem_local_name_end
+0x4747 mem_unsniff2sniff_timer
+0x4748 mem_switch_flag
+0x4749 mem_eeprom_ota_base_addr/*the start- writing addr in eeprom  */
+0x474b mem_pn_dlci
+0x474c mem_pn_max_frame_size
+0x474e memFCStemp1
+0x474f memFCStemp2
+0x4750 memFCStemp3
+0x4751 mem_rfcomm_initiator
+0x4752 mem_remote_spp_channel
+0x4753 mem_HIUfcs_SPP
+0x4754 mem_HIUfcs_SPP_WCredits
+0x4755 mem_rfcomm_send_more_pkt
+0x4756 mem_remote_credits
+0x4757 mem_credit_given
+0x4758 mem_ms_channel
+0x4759 memui_uuid_table
+0x475b mem_all_uuid_16bits
+0x4771 mem_all_uuid_128bits
+0x4793 mem_sp_local_key_invalid
+0x4794 mem_sp_private_key
+0x47ac mem_sp_pubkey_local
+0x47ac mem_sp_pubkey_local_x
+0x47c4 mem_sp_pubkey_local_x_end
+0x47c4 mem_sp_pubkey_local_y
+0x47dc mem_ssp_enable
+0x47dd mem_ipc_lock_bt
+0x47de mem_ipc_lock_c51
+0x47df mem_ipc_fifo_bt2c51
+0x47e4 mem_ipc_fifo_c512bt
+0x47e9 mem_led_switch
+0x47ea mem_ui_button_timer
+0x47eb mem_ui_button_last_state
+0x47ec mem_ui_timer_last_btclk
+0x47f0 mem_discovery_timeout_timer_count
+0x47f2 mem_hid_handshake_timer_count
+0x47f3 memui_reconnect_mode
+0x47f4 mem_ui_state_map
+0x47f6 mem_ui_profile_supported
+0x47f7 mem_led_gpio
+0x47f8 mem_led_dark_time
+0x47fa mem_led_light_time
+0x47fc mem_ui_button_timeout
+0x47fd mem_ui_button_gpio
+0x47fe mem_discovery_timeout
+0x4800 mem_ir_ptr
+0x4802 mem_ir_type
+0x4803 mem_ir_cmd
+0x4804 mem_ir_play_count
+0x4805 mem_ir_report_len
+0x4807 mem_ir_pulse_zero
+0x4808 mem_ir_pulse_one
+0x4809 mem_ir_pulses
+0x4825 mem_ir_sequence_len
+0x4826 mem_ir_sequence
+0x4800 mem_acl_credits
+0x4802 mem_allow_switch
+0x4803 mem_hci_acl_queue_start/*param_acl_pktcnt+2 byte*/
+0x4807 mem_hci_wake_clk
+0x4800 mem_kb_state
+0x4802 mem_kb_report_data
+0x4808 mem_kb_keys
+0x4809 mem_kb_rcv_led_data
+0x480a mem_kb_fast_wake_last
+0x480e mem_led_cap_gpio
+0x480f mem_led_num_gpio
+0x4810 mem_led_scl_gpio
+0x4811 mem_kb_map
+0x4811 mem_kb_uuid_list
+0x4a87 mem_24g_paring_tx_power_param
+0x4a91 mem_5db_tx_power_param
+0x4a9b mem_current_event
+0x4a9c mem_ipc_lock_rx_data_bt
+0x4a9d mem_ipc_lock_rx_data_c51
+0x4a9e mem_ipc_lock_tx_data_bt
+0x4a9f mem_ipc_lock_tx_data_c51
+0x4aa0 mem_ipc_2bt_fifo_head
+0x4b36 mem_ipc_2bt_fifo_end
+0x4b36 mem_ipc_2C51_fifo_head
+0x4b9a mem_ipc_2C51_fifo_end
+0x4b9a mem_ipc_2bt_read_index
+0x4b9c mem_ipc_2bt_write_index
+0x4b9e mem_ipc_2C51_read_index
+0x4ba0 mem_ipc_2C51_write_index
+0x4ba2 mem_ipc_tx_evt_buff
+0x4ba4 mem_ipc_tx_evt
+0x4ba5 mem_ipc_bt_timer
+0x4ba7 mem_ipc_rx_type
+0x4ba8 mem_queue_ele_num
+0x4ba9 mem_queue_write
+0x4bab mem_queue_read
+0x4bad mem_queue_start
+0x4bad mem_uart_packet
+0x4bb9 mem_data_ele0
+0x4bc5 mem_data_ele1
+0x4bd1 mem_data_ele2
+0x4bdd mem_queue_end
+0x4bdd mem_queue_temp
+0x4bdf mem_24g_rxdata_length
+0x4be0 mem_24g_pid
+0x4be1 mem_24g_datalen
+0x4be2 mem_24g_data_type
+0x4be3 mem_24g_txlen
+0x4be4 mem_24g_rx_window
+0x4be6 mem_24g_ensure
+0x4be7 mem_24g_get_ack_fail
+0x4be8 mem_24g_retry
+0x4be9 mem_24g_ch
+0x4bea mem_24g_current_ch_number
+0x4beb mem_24g_paring_addr
+0x4bef mem_24g_pairing_sm
+0x4bf0 mem_24g_ch_map1
+0x4bf4 mem_24g_ch_map2
+0x4bf8 mem_24g_ch_map3
+0x4bfc mem_24g_ch_map4
+0x4c00 mem_24g_addr
+0x4c04 mem_24g_check_dongle_times
+0x4c06 mem_24g_device_addr
+0x4c0a mem_24g_no_ack
+0x4c0b mem_24g_enter_lpm_timer
+0x4c0c mem_24g_syncword
+0x4c0e mem_24g_syncword_crc8
+0x4c0f mem_24g_get_syncword_crc8
+0x4c10 mem_rssi_hex_received
+0x4c11 mem_rssi_signal_buf
+0x4c19 mem_rssi_noise_buf
+0x4c21 mem_rssi_noise_index
+0x4c22 mem_rssi_signal_index
+0x4c23 mem_last_txlch
+0x4c24 mem_last_txlen
+0x4c26 mem_last_txdata
+0x4c3a mem_ipc_last_check_timer
+0x4c3e mem_ipc_c51_timer
+0x4c40 mem_le_rx_window
+0x4c41 mem_le_find_type_value_start_handle
+0x4c43 mem_le_find_type_value_end_handle
+0x4c45 mem_le_cur_att_type
+0x4c47 mem_le_search_len
+0x4c48 mem_le_ll_unknown_type
+0x4c49 mem_le_pairing_state
+0x4c4a mem_le_local_mtu
+0x4c4c mem_le_connection_updata_param
+0x4c5c mem_ltk_states
+0x4c5d mem_pair_state
+0x4c5e mem_empty_count
+0x4c5f mem_shutter_find_type_value_flag
+0x4c60 mem_le51_payload_len
+0x4c61 mem_le51_cmd
+0x4c62 mem_le51_tx_length
+0x4c63 mem_le51_txbuff_inuse
+0x4c64 mem_le51_txbuf
+0x4c6d mem_ipc_bt_100ms_timer
+0x4c6e mem_ipc_c51_100ms_timer
+0x4c6f mem_adc_config_flag
+0x4c70 mem_adc_channel
+0x4c71 mem_adc_0v
+0x4c73 mem_adc_3v
+0x4c75 mem_adc_current_value
+0x4c77 mem_hibernate_flag
+0x4c78 mem_new_supervision_to
+0x4c7a mem_kb_wake_timer
+0x4c7b mem_kb_last_data
+0x4c8f mem_power_on_flag
+0x4c90 mem_caps_num_lock
+0x4c91 mem_att_report_standard_key
+0x4c93 mem_att_report_media_key
+0x4c95 mem_att_report_system_ctrl
+0x4c97 mem_att_report_battery
+0x4c99 mem_att_report_game
+0x4c9b mem_att_report_mouse
+0x4c9d mem_suspend_flag
+0x4c9e mem_32asm_data_end
+0x4d16 mem_store_ltk_timer
+0x4d17 mem_reconnect_continue
+0x4d18 mem_le_pin_code
+0x4d1c mem_le_send_security_request_flag
+0x4d1d mem_24g_enter_hibernate
+0x4d21 mem_24g_txfail_cnt
+0x4d22 mem_mouse_retry_flag
+0x4d23 mem_24g_led_flag
+0x4d24 mem_ui_timer_last_btclk_temp
+0x4d28 mem_ui_check_timer_setup
+0x4d2c mem_customize_timer_setup
+0x4d2e mem_customize_timer
+0x4d2f mem_ios_mode_flag
+0x4d30 mem_version_yy_mm_dd
+0x4d34 mem_24g_txbuf_new
+0x4d48 mem_le_adv_swift_pair
+0x4d4f mem_24g_enter_hibernate_setup
+0x4d53 mem_24g_enter_hibernate_max
+0x4d57 mem_24g_short_sleep_counter
+0x4d5a mem_pc_sleep_flag
+0x4800 mem_at_gpio
+0x4801 mem_module_wake_up_gpio
+0x4802 mem_module_state_gpio
+0x4803 mem_module_connect_state_gpio
+0x4804 mem_module_version
+0x480a mem_last_uart_clock
+0x480e mem_current_packet_length
+0x4810 mem_module_prepare_tx_len
+0x4812 mem_module_state
+0x4813 mem_module_task
+0x4814 mem_cmode_addr
+0x481a mem_at_scan_time
+0x481c mem_prarm_pswd
+0x4820 mem_prarm_uart
+0x4824 mem_prarm_blename
+0x4827 mem_prarm_name
+0x482b mem_prarm_bleadss
+0x482e mem_prarm_adss
+0x4832 mem_prarm_vers
+0x4836 mem_prarm_class
+0x483b mem_prarm_clrflg
+0x4841 mem_prarm_reconn
+0x4847 mem_prarm_bledis
+0x4849 mem_prarm_dis
+0x484c mem_prarm_stsn
+0x4850 mem_prarm_atp
+0x4853 mem_prarm_list
+0x4857 mem_prarm_role
+0x485b mem_prarm_sniff
+0x4860 mem_prarm_ldev
+0x4864 mem_prarm_rssi
+0x4868 mem_prarm_cdev
+0x486c mem_prarm_bleinqr
+0x486f mem_prarm_inqr
+0x4873 mem_prarm_cmode
+0x4878 mem_prarm_mode
+0x487c mem_prarm_dmstate
+0x4883 mem_prarm_discov
+0x4889 mem_prarm_ota
+0x488c mem_prarm_bleconn
+0x488e mem_prarm_conn
+0x4892 mem_prarm_pageout
+0x4899 mem_prarm_recfail
+0x48a0 mem_module_uuid_list
+0x4800 mem_mouse_x
+0x4802 mem_mouse_y
+0x4804 mem_mouse_z
+0x4805 mem_mouse_key
+0x4806 mem_mouse_z_last
+0x4807 mem_mouse_z_before
+0x4808 mem_mouse_z_now
+0x4809 mem_mouse_z_data
+0x480a mem_mouse_move_flag
+0x480b mem_reconnect_timeout
+0x480c mem_mouse_direct_timeout
+0x480e mem_mouse_no_data_timeout
+0x4810 mem_mouse_blank_data_timeout
+0x4812 mem_mouse_discovery_timer
+0x4814 mem_mouse_direct_timer
+0x4816 mem_mouse_no_data_timer
+0x4818 mem_mouse_blank_data_timer
+0x481a mem_mouse_send_blank_timer
+0x481b mem_mouse_dpi
+0x481c mem_mouse_dpi_button_state
+0x481d mem_mouse_test_cnt
+0x481e mem_le_hibernate_timer
+0x4820 mem_mouse_mode_state
+0x4821 mem_sensor_type
+0x4822 mem_lbutton_gpio
+0x4823 mem_rbutton_gpio
+0x4824 mem_mbutton_gpio
+0x4825 mem_dpi_button_gpio
+0x4826 mem_sensor_data_gpio
+0x4827 mem_whee_a_data_gpio
+0x4828 mem_whee_b_data_gpio
+0x4829 mem_conn_cnt
+0x482a mem_mouse_uuid_list
+0x4800 mem_shutter_send_data
+0x4804 mem_shutter_key_temp
+0x4805 mem_shutter_send_length
+0x4806 mem_shutter_clkn_bt_last
+0x480a mem_shutter_key
+0x480b mem_shutter_flag
+0x480c mem_shutter_cable_unplug_conut
+0x480d mem_shutter_hid_disconn_count
+0x480e mem_shutter_1key_send_sm
+0x480f mem_shutter_iphonekey_gpio
+0x4810 mem_shutter_androidkey_gpio
+0x4811 mem_shutter_key_number
+0x4812 mem_shutter_uuid_list
Index: btkb/output/otp.dat
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/btkb/output/otp.dat	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/btkb/output/otp.dat	(working copy)
@@ -0,0 +1,8 @@
+00
+02
+aa
+55
+00
+00
+b3
+23
Index: btkb/output/program.lis
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/btkb/output/program.lis	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/btkb/output/program.lis	(working copy)
@@ -0,0 +1,29031 @@
+              include "bt_format "
+              org 0x0000
+0000 c512801a bmark1 mark_ext_patch ,patch_ext 
+0001 c0000045 beq patch00_0 ,p_soft_reset 
+0002 c0018049 beq patch00_3 ,p_main_loop 
+0003 c0028055 beq patch00_5 ,p_main_loop_end 
+0004 c0030300 beq patch00_6 ,p_connection_incontext 
+0005 c0050321 beq patch01_2 ,p_idle_page_mode_r0 
+0006 c0138325 beq patch04_7 ,p_role_switch_check 
+0007 c0140337 beq patch05_0 ,p_role_switch_prepare0_0 
+0008 c015833d beq patch05_3 ,p_roles_replyto_fhs 
+0009 c0210348 beq patch08_2 ,p_slave_loop 
+000a c021834c beq patch08_3 ,p_slave_notmatch 
+000b c0280354 beq patch0a_0 ,p_prepare_tx_not_sco 
+000c c02a0363 beq patch0a_4 ,p_tx_l2cap_type 
+000d c0188041 beq patch06_1 ,p_context_new 
+000e c019803e beq patch06_3 ,p_context_search 
+000f c048020e beq patch12_0 ,p_shutdown_radio 
+0010 c04901d8 beq patch12_2 ,p_set_freq_rx 
+0011 c04a01de beq patch12_4 ,p_set_freq_tx 
+0012 c04a81c8 beq patch12_5 ,p_initialize_radio_cont 
+0013 c05802fe beq patch16_0 ,p_lpm_sleep 
+0014 c058818c beq patch16_1 ,p_lpm_recover_clk 
+0015 c05901a0 beq patch16_2 ,p_lpm_dispatch 
+0016 c05981ba beq patch16_3 ,p_lpm_dispatch_next 
+0017 c05b01c3 beq patch16_6 ,p_lpm_dispatch_unconn 
+0018 c05c8194 beq patch17_1 ,p_lpm_cal_xtal_startup 
+0019 20203bf1 branch assert 
+
+patch_ext:
+001a c00c036f beq patch23_0 ,p_l2cap_rx_multiplexing 
+001b c00d8377 beq patch23_3 ,p_l2cap_process_one_signal 
+001c c0118396 beq patch24_3 ,p_ml2cap_call_proc_signal 
+001d c01203b2 beq patch24_4 ,p_l2cap_malloc 
+001e c0190430 beq patch26_2 ,p_le_init_conn 
+001f c01dd3b0 beq patch27_3 ,le_slave_unsync + 3 
+0020 c01f0273 beq patch27_6 ,p_le_enable 
+0021 c01f8277 beq patch27_7 ,p_le_disable 
+0022 c025047c beq patch29_2 ,p_lerx_nopayload 
+0023 c0258429 beq patch29_3 ,p_le_transmit_receive_sifs 
+0024 c0260433 beq patch29_4 ,p_le_transmit 
+0025 c0270439 beq patch29_6 ,p_le_send_adv_ind 
+0026 c02b0440 beq patch2a_6 ,p_le_update_param 
+0027 c0308447 beq patch2c_1 ,p_le_prepare_tx 
+0028 c031844c beq patch2c_3 ,p_le_prepare_tx_cmd 
+0029 c0320470 beq patch2c_4 ,p_le_prepare_smp 
+002a c03284a6 beq patch2c_5 ,p_le_prepare_att 
+002b c0348602 beq patch2d_1 ,p_le_send_non_l2cap 
+002c c03505ed beq patch2d_2 ,p_le_parse 
+002d c03585ef beq patch2d_3 ,p_le_parse_ll 
+002e c037060d beq patch2d_6 ,p_le_parse_smp 
+002f c0378487 beq patch2d_7 ,p_le_parse_att 
+0030 c0438127 beq patch30_7 ,p_ui_timer_check 
+0031 c0468292 beq patch31_5 ,p_check_51cmd_once 
+0032 c04702ab beq patch31_6 ,p_check_51cmd_once_continue 
+0033 c047827b beq patch31_7 ,p_check_enter_hibernate 
+0034 c05e8289 beq patch37_5 ,p_fifo_in 
+0035 c066821b beq patch39_5 ,p_kb_init 
+0036 c0678133 beq patch39_7 ,p_app_process_bb_event 
+0037 c0680148 beq patch3a_0 ,p_kb_bb_event_timer 
+0038 c04e03b6 beq patch33_4 ,p_hid_rx_process 
+0039 c04f83cc beq patch33_7 ,p_scheduler_process_sdp_succ 
+003a c07103d9 beq patch3c_2 ,p_parse_lmp 
+003b c07183eb beq patch3c_3 ,p_send_lmp 
+003c c0730403 beq patch3c_6 ,p_process_conn_sm 
+003d 20203bf1 branch assert 
+
+p_context_search:
+003e da204040 arg mem_context ,rega 
+003f 18007201 force 1 ,loopcnt 
+0040 20203305 branch context_search_loop 
+
+p_context_new:
+0041 d8a04040 arg mem_context ,contw 
+0042 df20000a arg 10 ,loopcnt 
+0043 20407e3b call memset0 
+0044 202032d8 branch context_new + 2 
+
+p_soft_reset:
+0045 6810813b hfetch 1 ,0x813b 
+0046 60008b81 store 1 ,mem_wakup_from_power_flag 
+0047 70800608 hjam lock_otp ,core_misc_ctrl 
+0048 20203003 branch soft_reset + 2 
+
+p_main_loop:
+0049 204000d7 call p_ipc_timer_check 
+004a 204000c9 call p_ui_check_timer_setup 
+004b 2040005a call p_ipc_rx 
+004c 2040004e call p_bt_status_handle 
+004d 20203015 branch main_loop + 2 
+
+p_bt_status_handle:
+004e 680947f4 fetcht 2 ,mem_ui_state_map 
+004f 6800c3d8 fetch 1 ,mem_le_adv_enable 
+0050 7d3a040b nsetflag blank ,ui_state_ble_adv ,temp 
+0051 6800c133 fetch 1 ,mem_scan_mode 
+0052 7d3a0406 nsetflag blank ,ui_state_bt_discovery ,temp 
+0053 600947f4 storet 2 ,mem_ui_state_map 
+0054 20600000 rtn 
+
+p_main_loop_end:
+0055 20403392 call inquiry_scan_dispatch 
+0056 20403407 call page_scan_dispatch 
+0057 20403024 call connection_dispatch 
+0058 2040062e call p_g24_dispatch 
+0059 20203022 branch main_loop + 15 
+
+p_ipc_rx:
+005a 6800c7dc fetch 1 ,mem_ssp_enable 
+005b 203a005e branch p_ipc_rx0 ,blank 
+005c 6800c793 fetch 1 ,mem_sp_local_key_invalid 
+005d 207a0000 rtn blank 
+
+p_ipc_rx0:
+005e 20400122 call p_check_ipc_2bt 
+005f 20740000 rtn user 
+0060 1ff0fe00 byteswap pdata ,pdata 
+0061 1fe20c00 copy pdata ,contr 
+0062 20400103 call p_ipc_rx_byte 
+0063 6000cba7 store 1 ,mem_ipc_rx_type 
+0064 c0008073 beq ipc_type_cmd ,p_ipc_rx_cmd 
+0065 c003007d beq ipc_type_24g ,p_ipc_rx_24g 
+0066 1fe20400 copy pdata ,temp 
+0067 18c22200 copy contr ,rega 
+0068 6800c040 fetch 1 ,mem_context 
+0069 c3000070 bbit0 state_inconn ,p_ipc_abondon_rx_data 
+006a 1a220c00 copy rega ,contr 
+006b c6848000 rtnmark0 mark_context 
+006c 18427e00 copy temp ,pdata 
+006d c001807f beq ipc_type_hid ,p_ipc_rx_hid 
+006e c002809d beq ipc_type_ble ,p_ipc_rx_ble 
+006f 20203bf1 branch assert 
+
+p_ipc_abondon_rx_data:
+0070 1a220c00 copy rega ,contr 
+0071 d8a000f8 arg mem_tst_pktcnt_sync ,contw 
+0072 202000fb branch p_ipc_rx_cpy 
+
+p_ipc_rx_cmd:
+0073 20400103 call p_ipc_rx_byte 
+0074 20400103 call p_ipc_rx_byte 
+0075 60008b7d store 1 ,mem_fifo_temp 
+0076 20400078 call p_ipc_next_rx 
+0077 20207c33 branch ui_ipc_send_cmd 
+
+p_ipc_next_rx:
+0078 20400106 call p_ipc_rx_updata_contr 
+0079 18c20400 copy contr ,temp 
+007a 18508400 byteswap temp ,temp 
+007b 60094b9a storet 2 ,mem_ipc_2bt_read_index 
+007c 20600000 rtn 
+
+p_ipc_rx_24g:
+007d d8a04d34 arg mem_24g_txbuf_new ,contw 
+007e 202000fb branch p_ipc_rx_cpy 
+
+p_ipc_rx_hid:
+007f 20400103 call p_ipc_rx_byte 
+0080 1fe22200 copy pdata ,rega 
+0081 18c27e00 copy contr ,pdata 
+0082 600102b7 store 2 ,mem_contr 
+0083 2040527c call l2cap_malloc_is_fifo_nearly_full 
+0084 243a0088 nbranch p_ipc_rx_hid0 ,blank 
+0085 1a20a201 increase 1 ,rega 
+0086 20404b2c call hid_malloc_tx_buff 
+0087 2020008d branch p_ipc_rx_hid1 
+
+p_ipc_rx_hid0:
+0088 d8a04bad arg mem_uart_packet ,contw 
+0089 1a227200 copy rega ,loopcnt 
+008a 680102b7 fetch 2 ,mem_contr 
+008b 1fe20c00 copy pdata ,contr 
+008c 202000fd branch p_ipc_copy 
+
+p_ipc_rx_hid1:
+008d 18a0a5fe add contw ,-2 ,regb 
+008e 680142b7 fetch 2 ,mem_hid_int_remote_cid 
+008f e0a10000 istore 2 ,contw 
+0090 580000a1 setarg 0xa1 
+0091 e0a08000 istore 1 ,contw 
+0092 1a20f3ff add rega ,-1 ,loopcnt 
+0093 680102b7 fetch 2 ,mem_contr 
+0094 1fe20c00 copy pdata ,contr 
+0095 204000fd call p_ipc_copy 
+0096 1a420c00 copy regb ,contr 
+0097 e8c10000 ifetch 2 ,contr 
+0098 60014c7b store 2 ,mem_kb_last_data 
+0099 1fe0f202 add pdata ,2 ,loopcnt 
+009a 20407e45 call memcpy 
+009b 704c7a64 jam 100 ,mem_kb_wake_timer 
+009c 20600000 rtn 
+
+p_ipc_rx_ble:
+009d 18c22200 copy contr ,rega 
+
+p_ipc_rx_ble_read_fifo:
+009e 6800cba9 fetch 1 ,mem_queue_write 
+009f 1fe08401 add pdata ,1 ,temp 
+00a0 18410403 and temp ,0x03 ,temp 
+00a1 6008cba9 storet 1 ,mem_queue_write 
+00a2 1feffe07 mul32 pdata ,7 ,pdata 
+00a3 d8a04bad arg mem_uart_packet ,contw 
+00a4 98a08a00 iadd contw ,contw 
+00a5 1a220c00 copy rega ,contr 
+00a6 20400103 call p_ipc_rx_byte 
+00a7 18c22200 copy contr ,rega 
+00a8 1fe0ffff increase -1 ,pdata 
+00a9 1fe27200 copy pdata ,loopcnt 
+00aa 1fe0fe07 increase 7 ,pdata 
+00ab 6000cc62 store 1 ,mem_le51_tx_length 
+00ac 1a220c00 copy rega ,contr 
+00ad 20400103 call p_ipc_rx_byte 
+00ae 18c22200 copy contr ,rega 
+00af c00080b5 beq 01 ,p_report1 
+00b0 c00100bd beq 02 ,p_report2 
+00b1 c00180bf beq 03 ,p_report3 
+00b2 c00200c5 beq 04 ,p_report4 
+00b3 c00300c1 beq 06 ,p_report6 
+00b4 c00400c3 beq 08 ,p_report8 
+
+p_report1:
+00b5 68014c91 fetch 2 ,mem_att_report_standard_key 
+
+p_set_report:
+00b6 e0a10000 istore 2 ,contw 
+00b7 1a220c00 copy rega ,contr 
+00b8 204000fd call p_ipc_copy 
+00b9 2040561e call le_xtype_fifo_is_near_full 
+00ba 247a0000 nrtn blank 
+00bb 700b7d1b jam attop_handle_value_notification ,mem_fifo_temp 
+00bc 20205620 branch le_xtype_fifo_in 
+
+p_report2:
+00bd 68014c93 fetch 2 ,mem_att_report_media_key 
+00be 202000b6 branch p_set_report 
+
+p_report3:
+00bf 68014c95 fetch 2 ,mem_att_report_system_ctrl 
+00c0 202000b6 branch p_set_report 
+
+p_report6:
+00c1 68014c99 fetch 2 ,mem_att_report_game 
+00c2 202000b6 branch p_set_report 
+
+p_report8:
+00c3 68014c99 fetch 2 ,mem_att_report_game 
+00c4 202000b6 branch p_set_report 
+
+p_report4:
+00c5 68014c97 fetch 2 ,mem_att_report_battery 
+00c6 e0a10000 istore 2 ,contw 
+00c7 1a220c00 copy rega ,contr 
+00c8 202000fd branch p_ipc_copy 
+
+p_ui_check_timer_setup:
+00c9 680a4d28 fetcht 4 ,mem_ui_check_timer_setup 
+00ca 1c427e00 copy clkn_bt ,pdata 
+00cb 98467e00 isub temp ,pdata 
+00cc 68094d2c fetcht 2 ,mem_customize_timer_setup 
+00cd 9846fc00 idiv temp 
+00ce 20407efd call wait_div_end 
+00cf 1807fe00 quotient pdata 
+00d0 207a0000 rtn blank 
+00d1 1c420400 copy clkn_bt ,temp 
+00d2 600a4d28 storet 4 ,mem_ui_check_timer_setup 
+00d3 6800cd2e fetch 1 ,mem_customize_timer 
+00d4 1fe0fe01 increase 1 ,pdata 
+00d5 6000cd2e store 1 ,mem_customize_timer 
+00d6 20600000 rtn 
+
+p_ipc_timer_check:
+00d7 680a4c3a fetcht 4 ,mem_ipc_last_check_timer 
+00d8 1c427e00 copy clkn_bt ,pdata 
+00d9 98467e00 isub temp ,pdata 
+00da d8400640 arg 1600 ,temp 
+00db 9846fc00 idiv temp 
+00dc 20407efd call wait_div_end 
+00dd 1807fe00 quotient pdata 
+00de 207a0000 rtn blank 
+00df 1c420400 copy clkn_bt ,temp 
+00e0 600a4c3a storet 4 ,mem_ipc_last_check_timer 
+00e1 68094ba5 fetcht 2 ,mem_ipc_bt_timer 
+00e2 18508400 byteswap temp ,temp 
+00e3 9840fe00 iadd temp ,pdata 
+00e4 1ff0fe00 byteswap pdata ,pdata 
+00e5 60014ba5 store 2 ,mem_ipc_bt_timer 
+00e6 1ff0fe00 byteswap pdata ,pdata 
+00e7 1fe17e03 and pdata ,0x3 ,pdata 
+00e8 c1800000 rtnne 0 
+
+p_adc_check_hvin:
+00e9 708971af hjam 0xaf ,rf_adc_mode 
+
+p_read_adc:
+00ea 68108053 hfetch 1 ,core_uart_baud + 1 
+00eb 79207e07 set1 7 ,pdata 
+00ec 60108053 hstore 1 ,core_uart_baud + 1 
+00ed 68108973 hfetch 1 ,rf_adc_ch 
+00ee 1fe1fe30 or_into 0x30 ,pdata 
+00ef 60108973 hstore 1 ,rf_adc_ch 
+00f0 70890674 hjam 0x74 ,rfen_adc 
+00f1 7089067c hjam 0x7c ,rfen_adc 
+00f2 708972aa hjam 0xaa ,rf_adc_gc 
+00f3 20001388 nop 5000 
+00f4 68190150 hfetcht 2 ,core_adc_sum 
+00f5 68108053 hfetch 1 ,core_uart_baud + 1 
+00f6 793ffe07 set0 7 ,pdata 
+00f7 60108053 hstore 1 ,core_uart_baud + 1 
+00f8 18508400 byteswap temp ,temp 
+00f9 60094c75 storet 2 ,mem_adc_current_value 
+00fa 20600000 rtn 
+
+p_ipc_rx_cpy:
+00fb 20400103 call p_ipc_rx_byte 
+00fc 1fe27200 copy pdata ,loopcnt 
+
+p_ipc_copy:
+00fd 204000ff call p_ipc_cpy_loop 
+00fe 20200078 branch p_ipc_next_rx 
+
+p_ipc_cpy_loop:
+00ff 20400103 call p_ipc_rx_byte 
+0100 e0a08000 istore 1 ,contw 
+0101 c20000ff loop p_ipc_cpy_loop 
+0102 20600000 rtn 
+
+p_ipc_rx_byte:
+0103 20400106 call p_ipc_rx_updata_contr 
+0104 e8c08000 ifetch 1 ,contr 
+0105 20600000 rtn 
+
+p_ipc_rx_updata_contr:
+0106 58004b36 setarg mem_ipc_2bt_fifo_end 
+0107 98c67c00 isub contr ,null 
+0108 24628000 nrtn zero 
+0109 d8c04aa0 arg mem_ipc_2bt_fifo_head ,contr 
+010a 20600000 rtn 
+
+p_ipc_tx_evt:
+010b df200003 arg 3 ,loopcnt 
+010c d8c04ba2 arg mem_ipc_tx_evt_buff ,contr 
+
+p_ipc_tx_cpy:
+010d 18c22200 copy contr ,rega 
+010e 68014ba0 fetch 2 ,mem_ipc_2c51_write_index 
+010f 1ff0fe00 byteswap pdata ,pdata 
+0110 1fe20a00 copy pdata ,contw 
+0111 1a220c00 copy rega ,contr 
+
+p_ipc_tx_loop:
+0112 e8c08000 ifetch 1 ,contr 
+0113 e0a08000 istore 1 ,contw 
+0114 2040011a call p_ipc_tx_updata_contw 
+0115 c2000112 loop p_ipc_tx_loop 
+0116 18a27e00 copy contw ,pdata 
+0117 1ff0fe00 byteswap pdata ,pdata 
+0118 60014ba0 store 2 ,mem_ipc_2c51_write_index 
+0119 20600000 rtn 
+
+p_ipc_tx_updata_contw:
+011a 58004b9a setarg mem_ipc_2c51_fifo_end 
+011b 98a67c00 isub contw ,null 
+011c 24628000 nrtn zero 
+011d d8a04b36 arg mem_ipc_2c51_fifo_head ,contw 
+011e 20600000 rtn 
+
+p_check_ipc_2c51:
+011f 68014b9e fetch 2 ,mem_ipc_2c51_read_index 
+0120 68094ba0 fetcht 2 ,mem_ipc_2c51_write_index 
+0121 20200124 branch p_check_ipc_common 
+
+p_check_ipc_2bt:
+0122 68014b9a fetch 2 ,mem_ipc_2bt_read_index 
+0123 68094b9c fetcht 2 ,mem_ipc_2bt_write_index 
+
+p_check_ipc_common:
+0124 98467c00 isub temp ,null 
+0125 2022e9b1 branch enable_usr ,zero 
+0126 2020320b branch disable_usr 
+
+p_ui_timer_check:
+0127 1c427e00 copy clkn_bt ,pdata 
+0128 60024d24 store 4 ,mem_ui_timer_last_btclk_temp 
+0129 6808c7ef fetcht 1 ,mem_ui_timer_last_btclk + 3 
+012a 6800cd27 fetch 1 ,mem_ui_timer_last_btclk_temp + 3 
+012b 98467c00 isub temp ,null 
+012c 2441012e ncall p_ui_timer_reinit ,positive 
+012d 20207c06 branch ui_timer_check + 2 
+
+p_ui_timer_reinit:
+012e 680a4d24 fetcht 4 ,mem_ui_timer_last_btclk_temp 
+012f 600a47ec storet 4 ,mem_ui_timer_last_btclk 
+0130 600a4c3a storet 4 ,mem_ipc_last_check_timer 
+0131 600a4d28 storet 4 ,mem_ui_check_timer_setup 
+0132 20600000 rtn 
+
+p_app_process_bb_event:
+0133 da2047df arg mem_ipc_fifo_bt2c51 ,rega 
+0134 20407f9f call fifo_out 
+0135 207a0000 rtn blank 
+0136 1fe22600 copy pdata ,regc 
+0137 20400139 call p_app_event_normal_process 
+0138 20203ea5 branch app_process_bb_event_priority 
+
+p_app_event_normal_process:
+0139 c10c0000 rtneq bt_evt_linkkey_generate 
+013a c00a061f beq bt_evt_le_connected ,scale_process_le_conn 
+013b c00a8624 beq bt_evt_le_disconnected ,scale_process_le_discon 
+013c c0036614 beq bt_evt_hid_connected ,mouse_bt_hid_connected 
+013d c001013f beq bt_evt_bb_disconnected ,p_app_bb_event_bb_disconn 
+013e 20203e7d branch app_event_normal_process 
+
+p_app_bb_event_bb_disconn:
+013f 70429d00 jam 0 ,mem_unsniff2sniff_timer_count 
+0140 680147f4 fetch 2 ,mem_ui_state_map 
+0141 c283bf08 bbit1 ui_state_bt_reconnect ,app_bb_event_bb_reconn_disconn 
+0142 2fec0001 isolate0 ui_state_bt_setup_complete ,pdata 
+0143 20408145 call p_app_discard_event ,true 
+0144 20203f08 branch app_bb_event_bb_reconn_disconn 
+
+p_app_discard_event:
+0145 68008450 fetch 1 ,mem_pincode_state 
+0146 c1010000 rtneq pincode_state_pincode_ready 
+0147 20203e7b branch app_discard_event 
+
+p_kb_bb_event_timer:
+0148 60088259 storet 1 ,mem_app_evt_timer_count 
+0149 6800cc6d fetch 1 ,mem_ipc_bt_100ms_timer 
+014a 1fe0fe01 increase 1 ,pdata 
+014b 6000cc6d store 1 ,mem_ipc_bt_100ms_timer 
+
+p_kb_bb_event_100ms_loop:
+014c 68008259 fetch 1 ,mem_app_evt_timer_count 
+014d 207a0000 rtn blank 
+014e 1fe0ffff increase -1 ,pdata 
+014f 60008259 store 1 ,mem_app_evt_timer_count 
+0150 20400168 call p_kb_check_hid_handshake_timer 
+0151 2040016f call p_kb_long_sleep_timer 
+0152 20400154 call p_kb_wake_remote_dev 
+0153 2020014c branch p_kb_bb_event_100ms_loop 
+
+p_kb_wake_remote_dev:
+0154 6800cc9d fetch 1 ,mem_suspend_flag 
+0155 247a0000 nrtn blank 
+0156 6800cc7a fetch 1 ,mem_kb_wake_timer 
+0157 207a0000 rtn blank 
+0158 1fe0ffff increase -1 ,pdata 
+0159 6000cc7a store 1 ,mem_kb_wake_timer 
+015a c1808000 rtnne 1 
+015b 704c7a64 jam 100 ,mem_kb_wake_timer 
+015c 680147f4 fetch 2 ,mem_ui_state_map 
+015d c4028000 rtnbit0 ui_state_bt_sniff 
+015e 68014c7b fetch 2 ,mem_kb_last_data 
+015f 207a0000 rtn blank 
+0160 2040527e call l2cap_malloc_is_fifo_empty 
+0161 247a0000 nrtn blank 
+0162 68014c7b fetch 2 ,mem_kb_last_data 
+0163 1fe22200 copy pdata ,rega 
+0164 20404b2c call hid_malloc_tx_buff 
+0165 1a20f202 add rega ,2 ,loopcnt 
+0166 d8c04c7d arg mem_kb_last_data + 2 ,contr 
+0167 20207e45 branch memcpy 
+
+p_kb_check_hid_handshake_timer:
+0168 6800c7f2 fetch 1 ,mem_hid_handshake_timer_count 
+0169 207a0000 rtn blank 
+016a 1fe0ffff increase -1 ,pdata 
+016b 6000c7f2 store 1 ,mem_hid_handshake_timer_count 
+016c 247a0000 nrtn blank 
+016d 20403ebd call app_evt_hid_handshake 
+016e 20204b22 branch hid_handshake_event 
+
+p_kb_long_sleep_timer:
+016f 6800cc0b fetch 1 ,mem_24g_enter_lpm_timer 
+0170 207a0000 rtn blank 
+0171 1fe0ffff increase -1 ,pdata 
+0172 6000cc0b store 1 ,mem_24g_enter_lpm_timer 
+0173 20600000 rtn 
+
+p_c51_user_event:
+0174 1a627e00 copy regc ,pdata 
+0175 1fe17ef0 and_into bt_evt_timer_mask ,pdata 
+0176 c1280000 rtneq bt_evt_timer_init 
+0177 2040017c call p_c51_ext_evt 
+0178 1a627e00 copy regc ,pdata 
+0179 207a0000 rtn blank 
+017a 6000cba4 store 1 ,mem_ipc_tx_evt 
+017b 2020010b branch p_ipc_tx_evt 
+
+p_c51_ext_evt:
+017c 1a627e00 copy regc ,pdata 
+017d c0058180 beq bt_evt_enter_sniff ,p_kb_wake_enable 
+017e c0010188 beq bt_evt_bb_disconnected ,p_bk_wake_disable 
+017f 20600000 rtn 
+
+p_kb_wake_enable:
+0180 704c7a28 jam 40 ,mem_kb_wake_timer 
+0181 5800000a setarg 0x0a 
+0182 60014c7b store 2 ,mem_kb_last_data 
+0183 680142b7 fetch 2 ,mem_hid_int_remote_cid 
+0184 e0a10000 istore 2 ,contw 
+0185 580001a1 setarg 0x01a1 
+0186 e0a10000 istore 2 ,contw 
+0187 20600000 rtn 
+
+p_bk_wake_disable:
+0188 704c7a00 jam 0 ,mem_kb_wake_timer 
+0189 df200014 arg 20 ,loopcnt 
+018a d8a04c7b arg mem_kb_last_data ,contw 
+018b 20207e3f branch clear_mem 
+
+p_lpm_recover_clk:
+018c 70416e7f jam 0x7f ,mem_seqi 
+018d 20403cf3 call lpm_recover_clk + 2 
+018e 6800cc77 fetch 1 ,mem_hibernate_flag 
+018f 207a0000 rtn blank 
+0190 704c7700 jam 0 ,mem_hibernate_flag 
+0191 1c427e00 copy clkn_bt ,pdata 
+0192 60024c3a store 4 ,mem_ipc_last_check_timer 
+0193 20600000 rtn 
+
+p_lpm_cal_xtal_startup:
+0194 6800c219 fetch 1 ,mem_lpm_xtalcnt 
+0195 247a0000 nrtn blank 
+0196 70804206 hjam clksel_rc ,core_clksel 
+0197 58000f0c setarg 0xf0c 
+0198 20403da7 call lpm_write_config 
+0199 58030d40 setarg 200000 
+019a 20403bf3 call sleep 
+019b 37d98200 until null ,lpo_edge 
+019c 1e226000 copy lpo_time ,alarm 
+019d 20403b36 call xtal_fast_wake 
+019e 20001388 nop 5000 
+019f 20203d9d branch lpm_cal_xtal_startup + 12 
+
+p_lpm_dispatch:
+01a0 c6118000 rtnmark1 mark_24g 
+01a1 680147f4 fetch 2 ,mem_ui_state_map 
+01a2 c284bd1e bbit1 ui_state_ble_connected ,lpm_dispatch + 2 
+01a3 20403cab call lpo_calibration 
+01a4 6801c210 fetch 3 ,mem_clks_per_lpo 
+01a5 207a0000 rtn blank 
+01a6 6800c131 fetch 1 ,mem_lpm_mode 
+01a7 207a0000 rtn blank 
+01a8 2040527e call l2cap_malloc_is_fifo_empty 
+01a9 247a0000 nrtn blank 
+01aa 20403dca call lpm_check_wake_lock 
+01ab 247a0000 nrtn blank 
+01ac 20403b36 call xtal_fast_wake 
+01ad 6800c7dc fetch 1 ,mem_ssp_enable 
+01ae 203a3d25 branch lpm_dispatch0 ,blank 
+01af 6800c793 fetch 1 ,mem_sp_local_key_invalid 
+01b0 207a0000 rtn blank 
+01b1 20203d25 branch lpm_dispatch0 
+
+p_check_ipc_for_lpm:
+01b2 20400122 call p_check_ipc_2bt 
+01b3 24740000 nrtn user 
+01b4 2040011f call p_check_ipc_2c51 
+01b5 24740000 nrtn user 
+01b6 700b7f01 jam 1 ,mem_c51_lpm_lock 
+01b7 700b7e01 jam syc_task_lpm ,mem_c51_flag 
+01b8 204001bf call p_c51_wait 
+01b9 20200122 branch p_check_ipc_2bt 
+
+p_lpm_dispatch_next:
+01ba 204001b2 call p_check_ipc_for_lpm 
+01bb 24740000 nrtn user 
+01bc 68008b7f fetch 1 ,mem_c51_lpm_lock 
+01bd 247a0000 nrtn blank 
+01be 20203d2d branch lpm_dispatch1 
+
+p_c51_wait:
+01bf 68008b7e fetch 1 ,mem_c51_flag 
+01c0 2000000a nop 10 
+01c1 c08001bf bne 0 ,p_c51_wait 
+01c2 20600000 rtn 
+
+p_lpm_dispatch_unconn:
+01c3 204001b2 call p_check_ipc_for_lpm 
+01c4 24740000 nrtn user 
+01c5 68008b7f fetch 1 ,mem_c51_lpm_lock 
+01c6 247a0000 nrtn blank 
+01c7 20203d4f branch lpm_dispatch_unconn + 2 
+
+p_initialize_radio_cont:
+01c8 204001ca call p_switchto_dpllclk 
+01c9 20203aaf branch initialize_radio_cont + 4 
+
+p_switchto_dpllclk:
+01ca 6800c219 fetch 1 ,mem_lpm_xtalcnt 
+01cb 243a01d0 nbranch p_switchdpll_nocal ,blank 
+01cc 20403d91 call lpm_cal_xtal_startup 
+01cd 20007530 nop 30000 
+01ce 20007530 nop 30000 
+01cf 20007530 nop 30000 
+
+p_switchdpll_nocal:
+01d0 20403b0a call switchto_dpllclk 
+01d1 70804204 hjam clksel_xtal ,core_clksel 
+01d2 6810896b hfetch 1 ,rf_clkpll_frac + 2 
+01d3 1fe17ecf and_into 0xcf ,pdata 
+01d4 6010896b hstore 1 ,rf_clkpll_frac + 2 
+01d5 1fe1fe30 or_into 0x30 ,pdata 
+01d6 6010896b hstore 1 ,rf_clkpll_frac + 2 
+01d7 20600000 rtn 
+
+p_set_freq_rx:
+01d8 60088017 storet 1 ,mem_last_freq 
+01d9 1840a204 add temp ,rx_freq_offset ,rega 
+01da 20203a86 branch set_freq_rx + 4 
+
+p_set_freq_tx_common:
+01db 60088017 storet 1 ,mem_last_freq 
+01dc 1840a200 add temp ,0 ,rega 
+01dd 20203ab6 branch rf_write_freq 
+
+p_set_freq_tx:
+01de 204001db call p_set_freq_tx_common 
+01df 58000500 setarg param_pll_setup 
+01e0 20403bf3 call sleep 
+
+p_txon:
+01e1 70890601 hjam 0x1 ,rfen_adc 
+01e2 7089003c hjam 0x3c ,rfen_rx 
+01e3 708901e0 hjam 0xe0 ,rfen_tx 
+01e4 70896d12 hjam 0x12 ,0x96d 
+01e5 2000000a nop 10 
+01e6 70890201 hjam 0x01 ,rfen_mdm 
+01e7 7089023d hjam 0x3d ,rfen_mdm 
+01e8 2000000a nop 10 
+01e9 708903b7 hjam 0xb7 ,rfen_sn 
+01ea 2000000a nop 10 
+01eb 7089027d hjam 0x7d ,rfen_mdm 
+01ec 6800cbef fetch 1 ,mem_24g_pairing_sm 
+01ed c0ff81f6 bne state_24g_pairing_success ,p_txpower_0dbm 
+01ee 6802ca91 fetch 5 ,mem_5db_tx_power_param 
+01ef e0a28000 istore 5 ,contw 
+01f0 e8c28000 ifetch 5 ,contr 
+01f1 e0a28000 istore 5 ,contw 
+01f2 708956df hjam 0xdf ,0x956 
+01f3 204001fd call p_set_tx_step_power 
+01f4 708955df hjam 0xdf ,0x955 
+01f5 20600000 rtn 
+
+p_txpower_0dbm:
+01f6 6802ca87 fetch 5 ,mem_24g_paring_tx_power_param 
+01f7 e0a28000 istore 5 ,contw 
+01f8 e8c28000 ifetch 5 ,contr 
+01f9 e0a28000 istore 5 ,contw 
+01fa 708956c2 hjam 0xc2 ,0x956 
+01fb 708955d0 hjam 0xd0 ,0x955 
+01fc 20600000 rtn 
+
+p_set_tx_step_power:
+01fd 20000004 nop 4 
+01fe 708955d1 hjam 0xd1 ,0x955 
+01ff 20000004 nop 4 
+0200 708955d2 hjam 0xd2 ,0x955 
+0201 20000004 nop 4 
+0202 708955d4 hjam 0xd4 ,0x955 
+0203 20000004 nop 4 
+0204 20600000 rtn 
+
+p_tx_ramp_down_common:
+0205 708955d4 hjam 0xd4 ,0x955 
+0206 20000004 nop 4 
+0207 708955d2 hjam 0xd2 ,0x955 
+0208 20000004 nop 4 
+0209 708955d1 hjam 0xd1 ,0x955 
+020a 20000004 nop 4 
+020b 708955d0 hjam 0xd0 ,0x955 
+020c 708956c0 hjam 0xc0 ,0x956 
+020d 20600000 rtn 
+
+p_shutdown_radio:
+020e 2030ba6f branch shutdown_radio + 2 ,is_rx 
+020f 20400205 call p_tx_ramp_down_common 
+0210 20203a6f branch shutdown_radio + 2 
+
+p_kb_send_process:
+0211 2040527c call l2cap_malloc_is_fifo_nearly_full 
+0212 247a0000 nrtn blank 
+0213 2020005a branch p_ipc_rx 
+
+p_kb_before_hibernate:
+0214 78347c00 enable user 
+0215 68120138 hfetch 4 ,0x8138 
+0216 79347e1a setflag user ,26 ,pdata 
+0217 6012004c hstore 4 ,core_lpm_reg 
+0218 20403db0 call lpm_write_ctrl 
+0219 7000a201 jam 1 ,mem_lpm_current_mult 
+
+p_kb_bt_lpm_before:
+021a 20600000 rtn 
+
+p_kb_init:
+021b 6800c419 fetch 1 ,mem_le_name_len 
+021c 1fe0fe02 increase 2 ,pdata 
+021d 6000c3f9 store 1 ,mem_le_scan_data_len 
+021e 700b7e00 jam 0 ,mem_c51_flag 
+021f 70017706 jam 6 ,mem_connection_options 
+0220 20403fa4 call app_lpm_mult_enable 
+0221 58000211 setarg p_kb_send_process 
+0222 6001428e store 2 ,mem_cb_bt_process 
+0223 5800021a setarg p_kb_bt_lpm_before 
+0224 6001428a store 2 ,mem_cb_before_lpm 
+0225 58000174 setarg p_c51_user_event 
+0226 60014292 store 2 ,mem_cb_bb_event_process 
+0227 5800027a setarg p_mouse_idle 
+0228 60014290 store 2 ,mem_cb_idle_process 
+0229 5800005a setarg p_ipc_rx 
+022a 6001428c store 2 ,mem_cb_le_process 
+022b 58000214 setarg p_kb_before_hibernate 
+022c 60014288 store 2 ,mem_cb_before_hibernate 
+022d 58004aa0 setarg mem_ipc_2bt_fifo_head 
+022e 1ff0fe00 byteswap pdata ,pdata 
+022f 60014b9a store 2 ,mem_ipc_2bt_read_index 
+0230 60014b9c store 2 ,mem_ipc_2bt_write_index 
+0231 20403e0b call lpm_disable_exen_output 
+0232 58004b36 setarg mem_ipc_2c51_fifo_head 
+0233 1ff0fe00 byteswap pdata ,pdata 
+0234 60014b9e store 2 ,mem_ipc_2c51_read_index 
+0235 60014ba0 store 2 ,mem_ipc_2c51_write_index 
+0236 6800cc77 fetch 1 ,mem_hibernate_flag 
+0237 c02d024e beq 0x5a ,p_device_init_init_hibwake 
+0238 2035824c branch p_deveice_init_wake ,wake 
+0239 68014c71 fetch 2 ,mem_adc_0v 
+023a 1ff0fe00 byteswap pdata ,pdata 
+023b 60014c71 store 2 ,mem_adc_0v 
+023c 68014c73 fetch 2 ,mem_adc_3v 
+023d 1ff0fe00 byteswap pdata ,pdata 
+023e 60014c73 store 2 ,mem_adc_3v 
+023f 20400259 call p_init_adc_from_otp 
+0240 680402a0 fetch 8 ,mem_temp 
+0241 243a0246 nbranch p_deveice_init_reset ,blank 
+0242 68014ad4 fetch 2 ,0x4ad4 
+0243 1ff0fe00 byteswap pdata ,pdata 
+0244 203a0246 branch p_deveice_init_reset ,blank 
+0245 60014c73 store 2 ,mem_adc_3v 
+
+p_deveice_init_reset:
+0246 2040062b call p_le_queue_init 
+0247 704ba42f jam bt_evt_reset ,mem_ipc_tx_evt 
+
+p_device_init_common:
+0248 2040010b call p_ipc_tx_evt 
+0249 704c7700 jam 0 ,mem_hibernate_flag 
+024a 70828003 hjam start_c51_core ,core_docd_ctrl 
+024b 20600000 rtn 
+
+p_deveice_init_wake:
+024c 704ba430 jam bt_evt_wakeup ,mem_ipc_tx_evt 
+024d 20200248 branch p_device_init_common 
+
+p_device_init_init_hibwake:
+024e 1ce27e00 copy auxcnt ,pdata 
+024f 203a0281 branch p_enter_hibernate_continue ,blank 
+0250 20405b63 call init_lmp_work 
+0251 20404d99 call l2cap_init_work 
+0252 58000000 setarg 0 
+0253 60044040 store 8 ,mem_context 
+0254 600147f4 store 2 ,mem_ui_state_map 
+0255 1c427e00 copy clkn_bt ,pdata 
+0256 60024c3a store 4 ,mem_ipc_last_check_timer 
+0257 704ba433 jam bt_evt_hibernate_wake ,mem_ipc_tx_evt 
+0258 20200248 branch p_device_init_common 
+
+p_init_adc_from_otp:
+0259 2040688a call otp_enable_chgpump 
+025a 580007e0 setarg 0x7e0 
+025b da2002a0 arg mem_temp ,rega 
+025c d840000e arg 14 ,temp 
+025d 204068d3 call otpd_read_data 
+025e 2040688d call otp_disable_chgpump 
+025f 680082a0 fetch 1 ,mem_temp 
+0260 c2803bf1 bbit1 0 ,assert 
+0261 680402a2 fetch 8 ,mem_temp + 2 
+0262 207a0000 rtn blank 
+
+p_calc_adc_base_hvin:
+0263 680902a4 fetcht 2 ,mem_temp + 4 
+0264 680102aa fetch 2 ,mem_temp + 10 
+0265 18422400 copy temp ,regb 
+0266 1fe22200 copy pdata ,rega 
+0267 98462600 isub temp ,regc 
+0268 1a6b2600 rshift2 regc ,regc 
+0269 1a427e00 copy regb ,pdata 
+026a 9a667e00 isub regc ,pdata 
+026b 1ff0fe00 byteswap pdata ,pdata 
+026c 60014c71 store 2 ,mem_adc_0v 
+026d 1a63a600 lshift regc ,regc 
+026e 1a227e00 copy rega ,pdata 
+026f 9a667e00 isub regc ,pdata 
+0270 1ff0fe00 byteswap pdata ,pdata 
+0271 60014c73 store 2 ,mem_adc_3v 
+0272 20600000 rtn 
+
+p_le_enable:
+0273 70001627 jam 39 ,mem_le_ch_mapped 
+0274 70890f36 hjam 0x36 ,0x90f 
+0275 70890b5f hjam 0x5f ,0x90b 
+0276 202053d4 branch le_enable + 2 
+
+p_le_disable:
+0277 70890f2e hjam 0x2e ,0x90f 
+0278 70890bff hjam 0xff ,0x90b 
+0279 202053d9 branch le_disable + 2 
+
+p_mouse_idle:
+027a 20600000 rtn 
+
+p_check_enter_hibernate:
+027b 68014ba0 fetch 2 ,mem_ipc_2c51_write_index 
+027c 60014b9e store 2 ,mem_ipc_2c51_read_index 
+027d 68014b9c fetch 2 ,mem_ipc_2bt_write_index 
+027e 60014b9a store 2 ,mem_ipc_2bt_read_index 
+027f 700b7e03 jam syc_task_hibernate ,mem_c51_flag 
+0280 204001bf call p_c51_wait 
+
+p_enter_hibernate_continue:
+0281 704c775a jam 0x5a ,mem_hibernate_flag 
+0282 20403db8 call lpm_write_gpio_wakeup 
+0283 68120138 hfetch 4 ,core_lpm_ctrl 
+0284 793ffe0f set0 15 ,pdata 
+0285 6012004c hstore 4 ,core_lpm_reg 
+0286 20403db0 call lpm_write_ctrl 
+0287 d85fffff arg param_hibernate_clks ,temp 
+0288 20203cda branch lpm_sleep 
+
+p_fifo_in:
+0289 ea2a8000 ifetcht util_fifo_len ,rega 
+028a 18417eff and temp ,0xff ,pdata 
+028b 243a028e nbranch p_fifo_in_push ,blank 
+028c 184cfe00 rshift8 temp ,pdata 
+028d e2228000 istore util_fifo_len ,rega 
+
+p_fifo_in_push:
+028e 1a20a204 increase util_fifo_len + util_fifo_offset ,rega 
+028f ea208000 ifetch 1 ,rega 
+0290 247a0000 nrtn ,blank 
+0291 20207f9c branch fifo_in_push + 3 
+
+p_check_51cmd_once:
+0292 20407c20 call ui_ipc_get_lock 
+0293 da2047e4 arg mem_ipc_fifo_c512bt ,rega 
+0294 20407f9f call fifo_out 
+0295 1fe20400 copy pdata ,temp 
+0296 20407c24 call ui_ipc_put_lock 
+0297 18427e00 copy temp ,pdata 
+0298 207a0000 rtn blank 
+0299 c01082a4 beq bt_cmd_start_24g ,p_check_51cmd_start24g 
+029a c01102a6 beq bt_cmd_stop_24g ,p_check_51cmd_stop24g 
+029b c01186c1 beq bt_cmd_pair_24g ,p_g24_start_pairing_sm1 
+029c c00082e6 beq bt_cmd_start_discovery ,p_check_51cmd_start_discovery 
+029d c00682c1 beq bt_cmd_start_adv ,p_check_51cmd_start_adv 
+029e c01602c0 beq bt_cmd_start_adv_discovery ,p_check_51cmd_start_adv_discovery 
+029f c01582cc beq bt_cmd_start_adv_rec ,p_handle_adv_1 
+02a0 c00182e9 beq bt_cmd_reconnect ,p_check_51cmd_reconnect 
+02a1 c01502f2 beq bt_cmd_set_reconnect_init ,p_disconnect_connected_device 
+02a2 c0097c85 beq bt_cmd_le_update_conn ,bt_cmd_le_update_conn_1 
+02a3 20207c5a branch check_51cmd_once + 9 
+
+p_check_51cmd_start24g:
+02a4 704befff jam state_24g_pairing_success ,mem_24g_pairing_sm 
+02a5 202006f4 branch p_g24_start_24g_mode 
+
+p_check_51cmd_stop24g:
+02a6 793f8023 set0 mark_24g ,mark 
+02a7 704befff jam state_24g_pairing_success ,mem_24g_pairing_sm 
+02a8 202006ac branch p_g24_stop_g24_mode 
+
+p_slave_ble_disconnect:
+02a9 700b7d22 jam xt_ll_terminate_ind ,mem_fifo_temp 
+02aa 20205620 branch le_xtype_fifo_in 
+
+p_check_51cmd_once_continue:
+02ab 6800807c fetch 1 ,mem_lmo_opcode2 
+02ac 203a02b0 branch p_check_51cmd_once_continue0 ,blank 
+02ad 204061d9 call lmo_fifo_process 
+02ae 6800807c fetch 1 ,mem_lmo_opcode2 
+02af 243a7c8c nbranch check_51cmd_restore ,blank 
+
+p_check_51cmd_once_continue0:
+02b0 68008b7d fetch 1 ,mem_fifo_temp 
+02b1 c584fc87 bmark0 mark_context ,check_51cmd_check_idle 
+02b2 c00202b6 beq bt_cmd_disconnect ,p_check_51cmd_disconnect 
+02b3 c00882a9 beq bt_cmd_le_disconnect ,p_slave_ble_disconnect 
+02b4 c01402bc beq bt_cmd_update_supervision_to ,p_check_51cmd_update_supervision_to 
+02b5 20207c7b branch check_51cmd_once_continue0 
+
+p_check_51cmd_disconnect:
+02b6 680147f4 fetch 2 ,mem_ui_state_map 
+02b7 c30182b9 bbit0 ui_state_bt_hid_handshake ,p_check_51cmd_quick_disconnect 
+02b8 20207ca4 branch check_51cmd_disconnect 
+
+p_check_51cmd_quick_disconnect:
+02b9 5800000a setarg 10 
+02ba 60020051 store 4 ,mem_supervision_to 
+02bb 20207ca4 branch check_51cmd_disconnect 
+
+p_check_51cmd_update_supervision_to:
+02bc 70007c37 jam lmp_supervision_timeout ,mem_lmo_opcode2 
+02bd 68014c78 fetch 2 ,mem_new_supervision_to 
+02be 60010051 store 2 ,mem_supervision_to 
+02bf 20600000 rtn 
+
+p_check_51cmd_start_adv_discovery:
+02c0 204002e6 call p_check_51cmd_start_discovery 
+
+p_check_51cmd_start_adv:
+02c1 20403eff call app_clear_reconnect_flag 
+02c2 20407cd5 call check_51cmd_bb_reconn_cancel 
+02c3 70413100 jam 0 ,mem_lpm_mode 
+02c4 180a7e00 random pdata 
+02c5 6000c4f9 store 1 ,mem_le_lap 
+
+p_handle_adv_0:
+02c6 7043dc05 jam 5 ,mem_le_adv_data + 2 
+02c7 58181203 setarg 0x181203 
+02c8 6001c3e2 store 3 ,mem_le_adv_data + 8 
+02c9 d8400007 arg 7 ,temp 
+02ca 204002d2 call p_le_adv_data_update 
+02cb 20207cae branch check_51cmd_adv 
+
+p_handle_adv_1:
+02cc 7043dc04 jam 4 ,mem_le_adv_data + 2 
+02cd 580000ff setarg 0x0000ff 
+02ce 6001c3e2 store 3 ,mem_le_adv_data + 8 
+02cf d8400000 arg 0 ,temp 
+02d0 204002d2 call p_le_adv_data_update 
+02d1 20207cae branch check_51cmd_adv 
+
+p_le_adv_data_update:
+02d2 6800c3f9 fetch 1 ,mem_le_scan_data_len 
+02d3 9840fe00 iadd temp ,pdata 
+02d4 1fe0fe0b add pdata ,11 ,pdata 
+02d5 1fe67c1f sub pdata ,0x1f ,null 
+02d6 242102e2 nbranch p_le_adv_data_overflow ,positive 
+02d7 6000c3d9 store 1 ,mem_le_adv_data_len 
+02d8 d8a043e5 arg mem_le_adv_data + 11 ,contw 
+02d9 18427e00 copy temp ,pdata 
+02da 245a02df ncall p_handle_adv_swift_pair ,blank 
+02db 6800c3f9 fetch 1 ,mem_le_scan_data_len 
+02dc 1fe27200 copy pdata ,loopcnt 
+02dd d8c043fa arg mem_le_scan_data ,contr 
+02de 20207e45 branch memcpy 
+
+p_handle_adv_swift_pair:
+02df 1fe27200 copy pdata ,loopcnt 
+02e0 d8c04d48 arg mem_le_adv_swift_pair ,contr 
+02e1 20207e45 branch memcpy 
+
+p_le_adv_data_overflow:
+02e2 6800c3f9 fetch 1 ,mem_le_scan_data_len 
+02e3 1fe0fe0b add pdata ,11 ,pdata 
+02e4 6000c3d9 store 1 ,mem_le_adv_data_len 
+02e5 20600000 rtn 
+
+p_check_51cmd_start_discovery:
+02e6 20403eff call app_clear_reconnect_flag 
+02e7 70017706 jam 6 ,mem_connection_options 
+02e8 20207c97 branch check_51cmd_start_discovery 
+
+p_check_51cmd_reconnect:
+02e9 20403bfa call init_param 
+02ea 20404d98 call l2cap_init 
+02eb 20405b62 call init_lmp 
+02ec 70017706 jam 6 ,mem_connection_options 
+02ed 6800c7dc fetch 1 ,mem_ssp_enable 
+02ee c00002f0 beq 0 ,p_check_51cmd_reconnect_common 
+02ef 70017717 jam 0x17 ,mem_connection_options 
+
+p_check_51cmd_reconnect_common:
+02f0 70425e01 jam 1 ,mem_link_key_exists 
+02f1 20207ca2 branch check_51cmd_reconnect 
+
+p_disconnect_connected_device:
+02f2 680147f4 fetch 2 ,mem_ui_state_map 
+02f3 c284bf90 bbit1 ui_state_ble_connected ,app_ble_disconnect 
+02f4 c28002fb bbit1 ui_state_bt_connected ,p_disconnect_bt 
+02f5 c283fcd5 bbit1 ui_state_bt_reconnect ,check_51cmd_bb_reconn_cancel 
+02f6 c51186ac bmark1 mark_24g ,p_g24_stop_g24_mode 
+02f7 7043d800 jam off ,mem_le_adv_enable 
+02f8 20403f7e call app_bt_stop_discovery 
+02f9 700b7d37 jam bt_evt_reconnect_standy ,mem_fifo_temp 
+02fa 20207c27 branch ui_ipc_send_event 
+
+p_disconnect_bt:
+02fb 20403eff call app_clear_reconnect_flag 
+02fc 20407cd5 call check_51cmd_bb_reconn_cancel 
+02fd 20203f77 branch app_bt_disconnect 
+
+p_lpm_sleep:
+02fe 20403b36 call xtal_fast_wake 
+02ff 20203cdc branch lpm_sleep + 2 
+
+p_connection_incontext:
+0300 20400302 call p_context_search_insniff 
+0301 2020302c branch connection_incontext + 3 
+
+p_context_search_insniff:
+0302 da600304 arg p_context_search_sniff ,regc 
+0303 20203301 branch context_search 
+
+p_context_search_sniff:
+0304 c300b307 bbit0 state_insniff ,context_search_next 
+
+p_context_search_sniff_loop:
+0305 2040333d call context_get_anchor 
+0306 20400311 call sign_pdata_temp 
+0307 98467e00 isub temp ,pdata 
+0308 1fe0fe01 increase 1 ,pdata 
+0309 2021030b branch p_context_search_sniff_miss ,positive 
+030a 20203325 branch context_search_sniff_cont + 3 
+
+p_context_search_sniff_miss:
+030b 98002400 iforce regb 
+030c 1a208c02 add rega ,coffset_tsniff ,contr 
+030d e8c10000 ifetch 2 ,contr 
+030e 203a3327 branch context_search_meet ,blank 
+030f 20403349 call context_next_anchor 
+0310 20200305 branch p_context_search_sniff_loop 
+
+sign_pdata_temp:
+0311 1ff11600 rshift16 pdata ,timeup 
+0312 196c9600 rshift8 timeup ,timeup 
+0313 2022831b branch sign_pdata_temp_p0 ,zero 
+0314 29601e0f compare 0xf ,timeup ,0xf 
+0315 24608000 nrtn true 
+0316 18511600 rshift16 temp ,timeup 
+0317 196c9600 rshift8 timeup ,timeup 
+0318 24628000 nrtn zero 
+0319 7920041c set1 28 ,temp 
+031a 20600000 rtn 
+
+sign_pdata_temp_p0:
+031b 18511600 rshift16 temp ,timeup 
+031c 196c9600 rshift8 timeup ,timeup 
+031d 29601e0f compare 0xf ,timeup ,0xf 
+031e 24608000 nrtn true 
+031f 79207e1c set1 28 ,pdata 
+0320 20600000 rtn 
+
+p_idle_page_mode_r0:
+0321 600c02a0 storet 8 ,mem_temp 
+0322 20407e53 call timer_check 
+0323 680c02a0 fetcht 8 ,mem_temp 
+0324 2020307c branch idle_page_mode_r0 + 13 
+
+p_role_switch_check:
+0325 78547c00 disable user 
+0326 68010032 fetch 2 ,mem_tsniff 
+0327 d840ffff arg 0xffff ,temp 
+0328 98467c00 isub temp ,null 
+0329 24628000 nrtn zero 
+032a 68020034 fetch 4 ,mem_sniff_anchor 
+032b 2038032e branch p_role_switch_clkn ,clknt 
+032c 9d067e00 isub clke_bt ,pdata 
+032d 2020032f branch p_role_switch_clke 
+
+p_role_switch_clkn:
+032e 9c467e00 isub clkn_bt ,pdata 
+
+p_role_switch_clke:
+032f 1fe67c04 sub pdata ,4 ,null 
+0330 24610000 nrtn positive 
+0331 18007e00 force 0 ,pdata 
+0332 60010032 store 2 ,mem_tsniff 
+0333 202034df branch enable_user 
+
+p_parse_lmp_accepted_switch:
+0334 700b7d20 jam bt_evt_switch_accept ,mem_fifo_temp 
+0335 20407c27 call ui_ipc_send_event 
+0336 20200338 branch p_role_switch_prepare0 
+
+p_role_switch_prepare0_0:
+0337 600a0034 storet 4 ,mem_sniff_anchor 
+
+p_role_switch_prepare0:
+0338 70474801 jam switch_flag_accept ,mem_switch_flag 
+0339 5800ffff setarg 0xffff 
+033a 60010032 store 2 ,mem_tsniff 
+033b 70007301 jam 1 ,mem_sniff_attempt 
+033c 20600000 rtn 
+
+p_roles_replyto_fhs:
+033d 20403baa call rf_setup_time_slave_slot 
+033e 20400340 call p_master_send_packet 
+033f 20203267 branch roles_replyto_fhs + 4 
+
+p_master_send_packet:
+0340 1c40c201 add clkn_bt ,1 ,bt_clk 
+0341 20403a54 call fetch_self_bt_adr 
+0342 18004803 force 0x03 ,freq_mode 
+0343 20403a42 call tx_radio_freq 
+0344 20403bae call start_transmitter 
+0345 20403bb4 call start_tx_native 
+0346 20403bc5 call send_access_word 
+0347 2020375c branch end_of_packet 
+
+p_slave_loop:
+0348 20403e25 call check_bt_disabled 
+0349 20406dec call scheduler_process 
+034a 204035d6 call slave_conn_recv_packet 
+034b 20203480 branch slave_loop + 6 
+
+p_slave_notmatch:
+034c 20403d61 call lpm_set_mult 
+034d 20403be2 call supervision_update 
+034e 20213498 branch slave_disconnect ,positive 
+034f 20403204 call check_disconnect_timeout 
+0350 24343498 nbranch slave_disconnect ,user 
+0351 20403812 call check_attempt 
+0352 243a0349 nbranch p_slave_loop + 1 ,blank 
+0353 20600000 rtn 
+
+p_prepare_tx_not_sco:
+0354 204032df call context_check_all_wack 
+0355 2422b568 nbranch prepare_tx_no_retransmit ,zero 
+0356 68008047 fetch 1 ,mem_arq 
+0357 c301b571 bbit0 wack ,prepare_tx_pollnull 
+0358 6800c165 fetch 1 ,mem_last_type 
+0359 c009b562 beq type_lmp ,prepare_tx_retransmit + 7 
+035a 68014c24 fetch 2 ,mem_last_txlen 
+035b 1fe67c14 sub pdata ,20 ,null 
+035c 24213562 nbranch prepare_tx_retransmit + 7 ,positive 
+035d 60010091 store 2 ,mem_tx_len 
+035e 6800cc23 fetch 1 ,mem_last_txlch 
+035f 60008090 store 1 ,mem_tx_lch 
+0360 58004c26 setarg mem_last_txdata 
+0361 60010179 store 2 ,mem_txptr 
+0362 20203562 branch prepare_tx_retransmit + 7 
+
+p_tx_l2cap_type:
+0363 68010091 fetch 2 ,mem_tx_len 
+0364 60014c24 store 2 ,mem_last_txlen 
+0365 1fe67c14 sub pdata ,20 ,null 
+0366 2421358f nbranch tx_l2cap_type + 2 ,positive 
+0367 98007200 iforce loopcnt 
+0368 68008090 fetch 1 ,mem_tx_lch 
+0369 6000cc23 store 1 ,mem_last_txlch 
+036a 68010179 fetch 2 ,mem_txptr 
+036b 98000c00 iforce contr 
+036c d8a04c26 arg mem_last_txdata ,contw 
+036d 20407e45 call memcpy 
+036e 2020358f branch tx_l2cap_type + 2 
+
+p_l2cap_rx_multiplexing:
+036f 680102cd fetch 2 ,mem_l2cap_rx_pkt_length 
+0370 203a4dfc branch l2cap_rx_reset_state ,blank 
+0371 680082cf fetch 1 ,mem_l2cap_rx_cid 
+0372 c0008374 beq l2cap_signal_channel ,p_l2cap_call_proc_signal 
+0373 20204dbb branch l2cap_rx_multiplexing0 
+
+p_l2cap_call_proc_signal:
+0374 2040527a call l2cap_malloc_is_fifo_full 
+0375 247a0000 nrtn blank 
+0376 20204dc3 branch l2cap_call_proc_signal0 
+
+p_l2cap_process_one_signal:
+0377 e8c08000 ifetch 1 ,contr 
+0378 c005037a beq signal_info_req ,p_l2cap_proc_signal_info_req 
+0379 20204e14 branch l2cap_process_one_signal + 3 
+
+p_l2cap_proc_signal_info_req:
+037a e8c08000 ifetch 1 ,contr 
+037b 1fe20e00 copy pdata ,queue 
+037c e8c10000 ifetch 2 ,contr 
+037d 1fe22200 copy pdata ,rega 
+037e 1a627e00 copy regc ,pdata 
+037f 9a262600 isub rega ,regc 
+0380 5800000b setarg signal_info_rsp 
+0381 e0a08000 istore 1 ,contw 
+0382 18e27e00 copy queue ,pdata 
+0383 e0a08000 istore 1 ,contw 
+0384 e8c10000 ifetch 2 ,contr 
+
+p_l2cap_proc_signal_info_req_reply:
+0385 c0010388 beq l2cap_sig_ext_featrue ,p_l2cap_proc_signal_info_req_ext 
+0386 c001838f beq l2cap_sig_fix_featrue ,p_l2cap_proc_signal_info_req_fix 
+0387 20203bf1 branch assert 
+
+p_l2cap_proc_signal_info_req_ext:
+0388 58020008 setarg 0x020008 
+0389 e0a30000 istore 6 ,contw 
+038a 58000200 setarg 0x0200 
+038b e0a20000 istore 4 ,contw 
+038c 18007e0c force 12 ,pdata 
+038d 9a40a400 iadd regb ,regb 
+038e 20204e20 branch l2cap_process_one_signal_rtn 
+
+p_l2cap_proc_signal_info_req_fix:
+038f 5803000c setarg 0x3000c 
+0390 e0a30000 istore 6 ,contw 
+0391 58000006 setarg 0x0006 
+0392 e0a40000 istore 8 ,contw 
+0393 18007e10 force 16 ,pdata 
+0394 9a40a400 iadd regb ,regb 
+0395 20204e20 branch l2cap_process_one_signal_rtn 
+
+p_ml2cap_call_proc_signal:
+0396 204052c4 call l2cap_malloc_signal_channel 
+0397 18002400 force 0 ,regb 
+0398 204052d0 call l2cap_get_signal_tx_payload 
+0399 1fe20a00 copy pdata ,contw 
+039a 680102cd fetch 2 ,mem_l2cap_rx_pkt_length 
+039b 1fe22600 copy pdata ,regc 
+039c 680102cb fetch 2 ,mem_l2cap_payload_ptr 
+039d 98000c00 iforce contr 
+039e 204003a0 call p_ml2cap_proc_one_comm 
+039f 20205110 branch ml2cap_proc_one_comm_loop + 1 
+
+p_ml2cap_proc_one_comm:
+03a0 e8c08000 ifetch 1 ,contr 
+03a1 c00503a3 beq signal_info_req ,p_ml2cap_proc_signal_info_req 
+03a2 20205116 branch ml2cap_proc_one_comm + 1 
+
+p_ml2cap_proc_signal_info_req:
+03a3 e8c08000 ifetch 1 ,contr 
+03a4 1fe20e00 copy pdata ,queue 
+03a5 e8c10000 ifetch 2 ,contr 
+03a6 1fe22200 copy pdata ,rega 
+03a7 e8c10000 ifetch 2 ,contr 
+03a8 600102a0 store 2 ,mem_temp 
+03a9 1a627e00 copy regc ,pdata 
+03aa 9a262600 isub rega ,regc 
+03ab 204052d0 call l2cap_get_signal_tx_payload 
+03ac 5800000b setarg signal_info_rsp 
+03ad e0a08000 istore 1 ,contw 
+03ae 18e27e00 copy queue ,pdata 
+03af e0a08000 istore 1 ,contw 
+03b0 680102a0 fetch 2 ,mem_temp 
+03b1 20200385 branch p_l2cap_proc_signal_info_req_reply 
+
+p_l2cap_malloc:
+03b2 da400000 arg 0 ,regb 
+03b3 2040527a call l2cap_malloc_is_fifo_full 
+03b4 247a0000 nrtn blank 
+03b5 2020524d branch l2cap_malloc + 5 
+
+p_hid_rx_process:
+03b6 680102cb fetch 2 ,mem_l2cap_payload_ptr 
+03b7 1fe20c00 copy pdata ,contr 
+03b8 e8c08000 ifetch 1 ,contr 
+03b9 1fe1040f and pdata ,0x0f ,temp 
+03ba 1ff1fe00 rshift4 pdata ,pdata 
+03bb c00503c9 beq hid_type_data ,p_hid_rx_process_data 
+03bc c00283c7 beq hid_type_set_report ,p_hid_rx_process_set_report 
+03bd c00083c0 beq hid_type_control ,p_hid_rx_process_hid_control 
+03be c0024b18 beq hid_type_get_report ,hid_rx_process_handshake 
+03bf 20204aff branch hid_rx_process + 7 
+
+p_hid_rx_process_hid_control:
+03c0 18427e00 copy temp ,pdata 
+03c1 c002cb09 beq hid_control_p_virtualcableunplug ,hid_rx_process_virtual_cable_unplug 
+03c2 704c9d01 jam 1 ,mem_suspend_flag 
+03c3 c001cb18 beq hid_control_p_suspend ,hid_rx_process_handshake 
+03c4 704c9d00 jam 0 ,mem_suspend_flag 
+03c5 c0024b18 beq hid_control_p_exitsuspend ,hid_rx_process_handshake 
+03c6 20600000 rtn 
+
+p_hid_rx_process_set_report:
+03c7 204003c9 call p_hid_rx_process_data 
+03c8 20204b11 branch hid_rx_process_set_report 
+
+p_hid_rx_process_data:
+03c9 e8c08000 ifetch 1 ,contr 
+03ca c0008426 beq hid_report_id_kb ,p_hid_rx_process_data_hid_kb 
+03cb 20600000 rtn 
+
+p_scheduler_process_sdp_succ:
+03cc 2040527a call l2cap_malloc_is_fifo_full 
+03cd 247a0000 nrtn blank 
+03ce 204003d0 call p_l2cap_call_proc_sigal_pending 
+03cf 20206dfd branch scheduler_process1 
+
+p_l2cap_call_proc_sigal_pending:
+03d0 6800c132 fetch 1 ,mem_device_option 
+03d1 c1008000 rtneq dvc_op_hci 
+03d2 6800c3cd fetch 1 ,mem_l2cap_pending_item 
+03d3 207a0000 rtn blank 
+03d4 1fe22200 copy pdata ,rega 
+03d5 7043cd00 jam 0 ,mem_l2cap_pending_item 
+03d6 1a227e00 copy rega ,pdata 
+03d7 c0284ddc beq l2cap_sdp_channel ,l2cap_sdp_conn_succ 
+03d8 20600000 rtn 
+
+p_parse_lmp:
+03d9 6800807d fetch 1 ,mem_lmi_opcode2 
+03da c00183dd beq lmp_accepted ,p_parse_lmp_accepted 
+03db c00383e8 beq lmp_detach ,p_parse_lmp_detach 
+03dc 20205b92 branch parse_lmp + 26 
+
+p_parse_lmp_accepted:
+03dd 680084df fetch 1 ,mem_rxbuf + 1 
+03de 60008445 store 1 ,mem_lmi_accepted_opcode 
+03df c0098334 beq lmp_switch_req ,p_parse_lmp_accepted_switch 
+03e0 c01983e2 beq lmp_host_connection_req ,p_parse_lmp_accepted_hostconn 
+03e1 20205c58 branch parse_lmp_accepted + 2 
+
+p_parse_lmp_accepted_hostconn:
+03e2 6800844d fetch 1 ,mem_lmp_conn_state 
+03e3 79207e00 set1 received_conn_req ,pdata 
+03e4 6000844d store 1 ,mem_lmp_conn_state 
+03e5 700b7d01 jam bt_evt_bb_connected ,mem_fifo_temp 
+03e6 20407c27 call ui_ipc_send_event 
+03e7 20205c83 branch parse_lmp_accepted_hostconn_ctn 
+
+p_parse_lmp_detach:
+03e8 680084df fetch 1 ,mem_rxbuf + 1 
+03e9 60008446 store 1 ,mem_disconn_reason_send 
+03ea 20205cf3 branch parse_lmp_detach 
+
+p_send_lmp:
+03eb 78547c00 disable user 
+03ec 204061d9 call lmo_fifo_process 
+03ed 68008048 fetch 1 ,mem_lmp_to_send 
+03ee 207a0000 rtn blank 
+03ef c283df10 bbit1 7 ,send_lmp_escape 
+03f0 c00103f3 beq lmp_name_res ,p_send_lmp_name_res 
+03f1 c0038400 beq lmp_detach ,p_send_lmp_detach 
+03f2 20205ee0 branch send_lmp + 7 
+
+p_send_lmp_name_res:
+03f3 18007e11 force 17 ,pdata 
+03f4 204061b5 call msg_send_lmp 
+03f5 68008049 fetch 1 ,mem_lmi_opcode 
+03f6 1fe20400 copy pdata ,temp 
+03f7 c00003fb beq 0x00 ,p_send_lmp_name_res_offset_ok 
+03f8 c00703fb beq 0x0e ,p_send_lmp_name_res_offset_ok 
+03f9 c00e03fb beq 0x1c ,p_send_lmp_name_res_offset_ok 
+03fa 20600000 rtn 
+
+p_send_lmp_name_res_offset_ok:
+03fb e0a08000 istore 1 ,contw 
+03fc 6800c702 fetch 1 ,mem_local_name_length 
+03fd e0a08000 istore 1 ,contw 
+03fe 5800000e setarg 14 
+03ff 20205fa6 branch send_lmp_name_res_offset_ok + 3 
+
+p_send_lmp_detach:
+0400 20406055 call send_lmp_detach 
+0401 70007264 jam 100 ,mem_conn_timer 
+0402 20600000 rtn 
+
+p_process_conn_sm:
+0403 6800807c fetch 1 ,mem_lmo_opcode2 
+0404 203a0408 branch p_process_conn_sm_continue ,blank 
+0405 204061d9 call lmo_fifo_process 
+0406 6800807c fetch 1 ,mem_lmo_opcode2 
+0407 247a0000 nrtn blank 
+
+p_process_conn_sm_continue:
+0408 68008055 fetch 1 ,mem_conn_sm 
+0409 207a0000 rtn blank 
+040a c0030417 beq conn_sm_auth_pair ,p_host_create_conn_auth_pair 
+040b c008040d beq conn_sm_wait_switch_after_host_connection ,p_host_creat_conn_wait_switch 
+040c 2020623e branch process_conn_sm_continue + 2 
+
+p_host_creat_conn_wait_switch:
+040d 6800c748 fetch 1 ,mem_switch_flag 
+040e c1000000 rtneq switch_flag_init 
+040f c0008415 beq switch_flag_accept ,p_host_create_conn_switch_accept 
+0410 d8e0000a arg switch_wait_timer ,queue 
+0411 20407e53 call timer_check 
+0412 247a0000 nrtn blank 
+0413 70474800 jam switch_flag_init ,mem_switch_flag 
+0414 2020629b branch host_create_conn_switch 
+
+p_host_create_conn_switch_accept:
+0415 20748000 rtn master 
+0416 20200417 branch p_host_create_conn_auth_pair 
+
+p_host_create_conn_auth_pair:
+0417 68008177 fetch 1 ,mem_connection_options 
+0418 c281629b bbit1 connection_switch ,host_create_conn_switch 
+0419 c280041a bbit1 connection_auth ,p_host_create_conn_auth_pair_true 
+
+p_host_create_conn_auth_pair_true:
+041a 6800c25e fetch 1 ,mem_link_key_exists 
+041b 203a62c7 branch host_create_conn_auth_pair_nokey ,blank 
+041c 6800844d fetch 1 ,mem_lmp_conn_state 
+041d c4018000 rtnbit0 sent_setup_complete 
+041e c4010000 rtnbit0 received_setup_complete 
+041f 68020465 fetch 4 ,mem_aurand_send_delay_time 
+0420 d8400320 arg 800 ,temp 
+0421 98408400 iadd temp ,temp 
+0422 1c427e00 copy clkn_bt ,pdata 
+0423 98467c00 isub temp ,null 
+0424 24610000 nrtn positive 
+0425 20206267 branch host_create_conn_auth 
+
+p_hid_rx_process_data_hid_kb:
+0426 e8c08000 ifetch 1 ,contr 
+0427 6000cc90 store 1 ,mem_caps_num_lock 
+0428 20600000 rtn 
+
+p_le_transmit_receive_sifs:
+0429 204054bd call le_transmit 
+042a 68088017 fetcht 1 ,mem_last_freq 
+042b 20403a82 call set_freq_rx 
+042c 20403a87 call rf_rx_enable 
+042d 78287c00 enable swfine 
+042e d960157c arg 5500 ,timeup 
+042f 2020547f branch le_receive_rxon 
+
+p_le_init_conn:
+0430 70443e01 jam 0x01 ,mem_le_txheader 
+0431 70443f00 jam 0 ,mem_le_txlen 
+0432 2020534e branch le_init_conn + 2 
+
+p_le_transmit:
+0433 204053dd call le_prep 
+0434 20400436 call p_letx_setfreq 
+0435 202054c1 branch le_transmit + 4 
+
+p_letx_setfreq:
+0436 203681e1 branch p_txon ,match 
+0437 204053ee call le_setfreq 
+0438 20203a91 branch set_freq_tx 
+
+p_le_send_adv_ind:
+0439 6800cc40 fetch 1 ,mem_le_rx_window 
+043a 600246f9 store 4 ,mem_le_transmit_window 
+043b 6800c4db fetch 1 ,mem_le_adv_type 
+043c c000843e beq adv_direct_ind ,p_le_send_adv_direct_ind 
+043d 202054e0 branch le_send_adv_ind + 2 
+
+p_le_send_adv_direct_ind:
+043e 7044db00 jam 0 ,mem_le_adv_type 
+043f 202054ef branch le_send_adv_direct_ind 
+
+p_le_update_param:
+0440 680083c0 fetch 1 ,mem_le_state 
+0441 c4028000 rtnbit0 lestate_update_param 
+0442 680103da fetch 2 ,mem_le_event_count 
+0443 680903e0 fetcht 2 ,mem_le_instant 
+0444 98467e00 isub temp ,pdata 
+0445 24610000 nrtn positive 
+0446 2020557e branch le_update_param + 8 
+
+p_le_prepare_tx:
+0447 680083d7 fetch 1 ,mem_le_arq 
+0448 c3828000 rtnbit1 wak 
+0449 68008341 fetch 1 ,mem_le_rxbuf + 1 
+044a 203a5626 branch le_prepare_tx + 4 ,blank 
+044b 20205890 branch le_send_empty 
+
+p_le_prepare_tx_cmd:
+044c 6800c440 fetch 1 ,mem_le_txpayload 
+044d c0038465 beq ll_unknown_rsp ,p_le_send_unknown_rsp 
+044e c0078469 beq ll_connection_param_req ,p_le_send_conn_param_req 
+044f c0030458 beq ll_start_enc_rsp ,p_le_send_start_enc_rsp 
+0450 c0010455 beq ll_terminate_ind ,p_le_send_terminate_ind 
+0451 c0098453 beq ll_ping_rsp ,p_le_send_ping_rsp 
+0452 2020563a branch le_prepare_tx_cmd + 10 
+
+p_le_send_ping_rsp:
+0453 18000401 force 1 ,temp 
+0454 20205892 branch le_send_packet 
+
+p_le_send_terminate_ind:
+0455 5800000a setarg 10 
+0456 600103ef store 2 ,mem_le_superto 
+0457 20205693 branch le_send_terminate_ind 
+
+p_le_send_start_enc_rsp:
+0458 700b7d12 jam bt_cmd_le_update_conn ,mem_fifo_temp 
+0459 20407c33 call ui_ipc_send_cmd 
+045a 18000401 force 1 ,temp 
+045b 2034d892 branch le_send_packet ,master 
+045c 700b7d34 jam bt_evt_le_protocol_connected ,mem_fifo_temp 
+045d 20407c27 call ui_ipc_send_event 
+045e 6800cc49 fetch 1 ,mem_le_pairing_state 
+045f c0010461 beq flag_le_pairing_after_auth ,p_le_send_start_enc_rsp0 
+0460 20200463 branch p_le_send_start_enc_rsp_end 
+
+p_le_send_start_enc_rsp0:
+0461 700b7d46 jam xt_smp_encryption_information ,mem_fifo_temp 
+0462 20405620 call le_xtype_fifo_in 
+
+p_le_send_start_enc_rsp_end:
+0463 18000401 force 1 ,temp 
+0464 20205892 branch le_send_packet 
+
+p_le_send_unknown_rsp:
+0465 6800cc48 fetch 1 ,mem_le_ll_unknown_type 
+0466 e0a08000 istore 1 ,contw 
+0467 18000402 force 2 ,temp 
+0468 20205892 branch le_send_packet 
+
+p_le_send_conn_param_req:
+0469 18a08bff increase -1 ,contw 
+046a 68044c4c fetch 8 ,mem_le_connection_updata_param 
+046b e0a40000 istore 8 ,contw 
+046c e8c40000 ifetch 8 ,contr 
+046d e0a40000 istore 8 ,contw 
+046e 18000202 force 2 ,type 
+046f 2020588a branch le_send_autolen 
+
+p_le_prepare_smp:
+0470 6800c444 fetch 1 ,mem_le_l2cap 
+0471 c004d719 beq smp_identity_address_information ,le_send_smp_identity_address_information + 2 
+0472 c0010475 beq smp_pairing_response ,p_le_send_smp_pairing_response 
+0473 c003d70d beq smp_master_identification ,le_send_smp_master_identification + 2 
+0474 20205656 branch le_prepare_smp0 
+
+p_le_send_smp_pairing_response:
+0475 59000302 setarg param_smp_paring_response 
+0476 6001c4b5 store 3 ,mem_le_pres 
+0477 58000001 setarg 0x01 
+0478 e0a08000 istore 1 ,contw 
+0479 58010010 setarg param_smp_key_dist0 
+047a e0a18000 istore 3 ,contw 
+047b 202056f1 branch le_send_smp_pairing_response + 4 
+
+p_lerx_nopayload:
+047c 09800018 parse 3 ,0 ,24 
+047d 78287c00 enable swfine 
+047e db600664 arg param_sifs ,27 
+047f 1fef7e00 rshift32 pdata ,pdata 
+0480 1ff17e00 rshift16 pdata ,pdata 
+0481 e0a18000 istore 3 ,contw 
+0482 2023375c branch end_of_packet ,6 
+0483 7836fc00 enable match 
+0484 68008017 fetch 1 ,mem_last_freq 
+0485 1fe0a200 add pdata ,0 ,rega 
+0486 202054af branch lerx_nopayload + 12 
+
+p_le_parse_att:
+0487 e8c18000 ifetch 3 ,contr 
+0488 600183f9 store 3 ,mem_le_att_opcode 
+0489 c029048d beq attop_write_command ,p_le_parse_att_write_command 
+048a c00104a4 beq attop_exchange_mtu_request ,p_le_parse_att_exchange_mtu_request 
+048b c0090493 beq attop_write_request ,p_le_parse_att_write_request 
+048c 20205907 branch le_parse_att_p 
+
+p_le_parse_att_write_command:
+048d 704d1701 jam 1 ,mem_reconnect_continue 
+048e 680103fa fetch 2 ,mem_le_att_handle 
+048f c0108491 beq handle_uuid_chrctr_report_id1_output ,p_handle_num 
+0490 202059ed branch le_parse_att_write_command 
+
+p_handle_num:
+0491 d8c00349 arg mem_le_rxbuf + 9 ,contr 
+0492 20200426 branch p_hid_rx_process_data_hid_kb 
+
+p_le_parse_att_write_request:
+0493 680103fa fetch 2 ,mem_le_att_handle 
+0494 1fe67c21 sub pdata ,handle_uuid_chrctr_report_id1_output ,null 
+0495 20428491 call p_handle_num ,zero 
+0496 680103fa fetch 2 ,mem_le_att_handle 
+0497 1fe67c31 sub pdata ,handle_uuid_end ,null 
+0498 204284a2 call p_set_lpm_mode ,zero 
+0499 680103fa fetch 2 ,mem_le_att_handle 
+049a 68094c99 fetcht 2 ,mem_att_report_game 
+049b 18408401 increase 1 ,temp 
+049c 98467c00 isub temp ,null 
+049d 2022849f branch p_key_data_send ,zero 
+049e 202059ca branch le_parse_att_write_request 
+
+p_key_data_send:
+049f 700b7d34 jam bt_evt_le_protocol_connected ,mem_fifo_temp 
+04a0 20407c27 call ui_ipc_send_event 
+04a1 202059ca branch le_parse_att_write_request 
+
+p_set_lpm_mode:
+04a2 70413101 jam 1 ,mem_lpm_mode 
+04a3 20600000 rtn 
+
+p_le_parse_att_exchange_mtu_request:
+04a4 700b7d03 jam attop_exchange_mtu_response ,mem_fifo_temp 
+04a5 20205620 branch le_xtype_fifo_in 
+
+p_le_prepare_att:
+04a6 6800c444 fetch 1 ,mem_le_l2cap 
+04a7 c00d85df beq attop_handle_value_notification ,p_le_send_att_handle_value_notification 
+04a8 c00e85df beq attop_handle_value_indication ,p_le_send_att_handle_value_indication 
+04a9 c0088573 beq attop_read_by_group_type_response ,p_le_send_att_read_by_group_type_response 
+04aa c0048525 beq attop_read_by_type_response ,p_le_send_att_read_by_type_response 
+04ab c0028513 beq attop_find_information_response ,p_le_send_att_find_information_response 
+04ac c00384c7 beq attop_find_by_type_value_response ,p_le_send_att_find_by_type_value_response 
+04ad c009d85c beq attop_write_response ,le_send_att_write_response_go 
+04ae c00184b7 beq attop_exchange_mtu_response ,p_le_send_att_exchange_mtu_rsp 
+04af c00584ba beq attop_read_response ,p_le_send_att_read_response 
+04b0 c00684b2 beq attop_read_blob_response ,p_le_send_att_read_blob_response 
+04b1 20205666 branch le_prepare_att0 
+
+p_le_send_att_read_blob_response:
+04b2 680103fa fetch 2 ,mem_le_att_handle 
+04b3 c00384b5 beq handle_uuid_chrctr_device_name ,p_le_send_att_read_blob_response_error 
+04b4 202057d6 branch le_send_att_read_blob_response 
+
+p_le_send_att_read_blob_response_error:
+04b5 7003fc07 jam att_err_invalid_offset ,mem_le_err_code 
+04b6 20205729 branch le_send_att_error_response 
+
+p_le_send_att_exchange_mtu_rsp:
+
+p_le_send_att_exchange_mtu_req:
+04b7 68014c4a fetch 2 ,mem_le_local_mtu 
+04b8 e0a10000 istore 2 ,contw 
+04b9 2020588a branch le_send_autolen 
+
+p_le_send_att_read_response:
+04ba 680103fa fetch 2 ,mem_le_att_handle 
+04bb c0185728 beq handle_uuid_battery_level ,le_send_att_error_response_notfound 
+04bc c00704be beq handle_uuid_chrctr_manufacturer_name ,p_le_send_att_read_response_error 
+04bd 202057c6 branch le_send_att_read_response 
+
+p_le_send_att_read_response_error:
+04be 6800cc49 fetch 1 ,mem_le_pairing_state 
+04bf c08057c6 bne flag_le_pairing_null ,le_send_att_read_response 
+04c0 6800cc5c fetch 1 ,mem_ltk_states 
+04c1 c001d7c6 beq ltk_not_lost ,le_send_att_read_response 
+04c2 18a20400 copy contw ,temp 
+04c3 704c4901 jam flag_le_pairing_start ,mem_le_pairing_state 
+04c4 18420a00 copy temp ,contw 
+04c5 7003fc05 jam att_err_insufficient_authentication ,mem_le_err_code 
+04c6 20205729 branch le_send_att_error_response 
+
+p_le_send_att_find_by_type_value_response:
+04c7 2040577b call le_start_end_handle_check_1 
+04c8 20740000 rtn user 
+04c9 680944c0 fetcht 2 ,mem_le_search_att_type 
+04ca 58001812 setarg uuid_service_hids 
+04cb 98467c00 isub temp ,null 
+04cc 202284e0 branch p_le_send_att_find_value_by_type_hid ,zero 
+04cd 5800180f setarg uuid_service_battery 
+04ce 98467c00 isub temp ,null 
+04cf 202284e2 branch p_le_send_att_find_value_by_type_battery ,zero 
+04d0 5800180a setarg uuid_service_device_info 
+04d1 98467c00 isub temp ,null 
+04d2 202284e6 branch p_le_send_att_find_value_by_type_device_info ,zero 
+04d3 58001801 setarg uuid_service_generic_att 
+04d4 98467c00 isub temp ,null 
+04d5 202284e4 branch p_le_send_att_find_value_by_type_gatt ,zero 
+04d6 20205754 branch le_send_att_find_by_type_value_response + 2 
+
+p_le_send_find_value_by_type:
+04d7 6800cc5f fetch 1 ,mem_shutter_find_type_value_flag 
+04d8 d8400000 arg 0 ,temp 
+04d9 f9200400 qset1 temp 
+04da 98417e00 iand temp ,pdata 
+04db c0805728 bne 0 ,le_send_att_error_response_notfound 
+04dc 6800cc5f fetch 1 ,mem_shutter_find_type_value_flag 
+04dd f9207e00 qset1 pdata 
+04de 6000cc5f store 1 ,mem_shutter_find_type_value_flag 
+04df 202004e8 branch p_le_send_att_find_value_by_type_command 
+
+p_le_send_att_find_value_by_type_hid:
+04e0 d8e00000 arg le_find_type_value_hid_bit ,queue 
+04e1 202004d7 branch p_le_send_find_value_by_type 
+
+p_le_send_att_find_value_by_type_battery:
+04e2 d8e00001 arg le_find_type_value_battery_bit ,queue 
+04e3 202004d7 branch p_le_send_find_value_by_type 
+
+p_le_send_att_find_value_by_type_gatt:
+04e4 d8e00003 arg le_find_type_value_gatt_bit ,queue 
+04e5 202004d7 branch p_le_send_find_value_by_type 
+
+p_le_send_att_find_value_by_type_device_info:
+04e6 d8e00002 arg le_find_type_value_device_info_bit ,queue 
+04e7 202004d7 branch p_le_send_find_value_by_type 
+
+p_le_send_att_find_value_by_type_command:
+04e8 680144c0 fetch 2 ,mem_le_search_att_type 
+04e9 1fe22200 copy pdata ,rega 
+04ea 680944c4 fetcht 2 ,mem_le_uuid 
+04eb 18422400 copy temp ,regb 
+04ec 204004ef call p_find_type_value_start_handle 
+04ed 202284fa branch p_le_save_find_value_handle ,zero 
+04ee 20205728 branch le_send_att_error_response_notfound 
+
+p_find_type_value_start_handle:
+04ef d8c04504 arg mem_le_att_list ,contr 
+
+p_find_type_value_start_handle_loop:
+04f0 e8c10000 ifetch 2 ,contr 
+04f1 207a0000 rtn blank 
+04f2 e8c18000 ifetch 3 ,contr 
+04f3 e8c10000 ifetch 2 ,contr 
+04f4 9a267c00 isub rega ,null 
+04f5 20628000 rtn zero 
+04f6 18c08dfd increase -3 ,contr 
+04f7 e8c08000 ifetch 1 ,contr 
+04f8 98c08c00 iadd contr ,contr 
+04f9 202004f0 branch p_find_type_value_start_handle_loop 
+
+p_le_save_find_value_handle:
+04fa 18c08df9 increase -7 ,contr 
+04fb e8c10000 ifetch 2 ,contr 
+04fc 60014c41 store 2 ,mem_le_find_type_value_start_handle 
+04fd 20400508 call p_find_type_value_end_handle 
+04fe 203a5728 branch le_send_att_error_response_notfound ,blank 
+04ff 18c08dfc increase -4 ,contr 
+0500 e8c10000 ifetch 2 ,contr 
+0501 1fe0ffff increase -1 ,pdata 
+0502 60014c43 store 2 ,mem_le_find_type_value_end_handle 
+0503 70444407 jam attop_find_by_type_value_response ,mem_le_l2cap 
+0504 68024c41 fetch 4 ,mem_le_find_type_value_start_handle 
+0505 60024445 store 4 ,mem_le_l2cap_response 
+0506 18000409 force 9 ,temp 
+0507 20205892 branch le_send_packet 
+
+p_find_type_value_end_handle:
+0508 e8c10000 ifetch 2 ,contr 
+0509 e8c08000 ifetch 1 ,contr 
+050a 98c08c00 iadd contr ,contr 
+
+p_find_type_value_end_handle_loop:
+050b e8c10000 ifetch 2 ,contr 
+050c 207a0000 rtn blank 
+050d e8c10000 ifetch 2 ,contr 
+050e 9a467c00 isub regb ,null 
+050f 20628000 rtn zero 
+0510 e8c08000 ifetch 1 ,contr 
+0511 98c08c00 iadd contr ,contr 
+0512 2020050b branch p_find_type_value_end_handle_loop 
+
+p_le_send_att_find_information_response:
+0513 d9600003 arg 3 ,timeup 
+0514 18007e01 force 1 ,pdata 
+0515 6000c445 store 1 ,mem_le_l2cap_response 
+0516 20405a74 call le_init_attlist_search 
+
+p_le_send_att_find_information_res_loop:
+0517 20405a7d call le_att_handle_inrange 
+0518 203a5746 branch le_send_att_find_information_res_end ,blank 
+0519 24210523 nbranch p_le_send_att_find_information_res_next ,positive 
+051a 78547c00 disable user 
+051b e0a10000 istore 2 ,contw 
+051c e8c10000 ifetch 2 ,contr 
+051d e0a10000 istore 2 ,contw 
+051e 196097ff increase -1 ,timeup 
+051f 2022d746 branch le_send_att_find_information_res_end ,zero 
+
+p_le_send_att_find_information_res_cont:
+0520 e8c08000 ifetch 1 ,contr 
+0521 98c08c00 iadd contr ,contr 
+0522 20200517 branch p_le_send_att_find_information_res_loop 
+
+p_le_send_att_find_information_res_next:
+0523 18c08c02 increase 2 ,contr 
+0524 20200520 branch p_le_send_att_find_information_res_cont 
+
+p_le_send_att_read_by_type_response:
+0525 680944c0 fetcht 2 ,mem_le_search_att_type 
+0526 58002a00 setarg uuid_chrctr_device_name 
+0527 98467c00 isub temp ,null 
+0528 20228565 branch p_le_send_att_read_by_type_res_device_name ,zero 
+0529 58002a50 setarg uuid_pnp_id 
+052a 98467c00 isub temp ,null 
+052b 20228570 branch p_le_send_att_read_by_type_res_pnp_id ,zero 
+052c 58002803 setarg uuid_gatt_characteristic 
+052d 98467c00 isub temp ,null 
+052e 2422d728 nbranch le_send_att_error_response_notfound ,zero 
+052f 680144bc fetch 2 ,mem_le_search_handle_start 
+0530 600102a0 store 2 ,mem_temp 
+0531 78347c00 enable user 
+
+p_le_send_att_read_by_type_response_loop:
+0532 204005b7 call p_le_att_handle_inrange 
+0533 24210541 nbranch p_le_send_att_read_by_type_response_end ,positive 
+0534 680902a0 fetcht 2 ,mem_temp 
+0535 204005bf call p_le_att_get_handle_info 
+0536 c0008541 beq 1 ,p_le_send_att_read_by_type_response_end 
+0537 204005bb call p_le_att_same_type 
+0538 2422853f nbranch p_le_send_att_read_by_type_response_next_handle ,zero 
+0539 78547c00 disable user 
+053a 20400543 call p_le_send_att_read_by_type_write_properties 
+053b 204005a5 call p_le_att_next_handle 
+053c 204005bf call p_le_att_get_handle_info 
+053d 2040054b call p_le_send_att_read_by_type_write_uuid 
+053e 20200541 branch p_le_send_att_read_by_type_response_end 
+
+p_le_send_att_read_by_type_response_next_handle:
+053f 204005a5 call p_le_att_next_handle 
+0540 20200532 branch p_le_send_att_read_by_type_response_loop 
+
+p_le_send_att_read_by_type_response_end:
+0541 20345728 branch le_send_att_error_response_notfound ,user 
+0542 202005dd branch p_le_send_auto_len_by_mem 
+
+p_le_send_att_read_by_type_write_properties:
+0543 680102a0 fetch 2 ,mem_temp 
+0544 60014446 store 2 ,mem_le_l2cap_response + 1 
+0545 6800cc47 fetch 1 ,mem_le_search_len 
+0546 1fe27200 copy pdata ,loopcnt 
+0547 204005d4 call p_get_contr 
+0548 d8a04448 arg mem_le_l2cap_response + 3 ,contw 
+0549 20407e45 call memcpy 
+054a 202005d7 branch p_store_contw 
+
+p_le_send_att_read_by_type_write_uuid:
+054b 68094c45 fetcht 2 ,mem_le_cur_att_type 
+054c 184cfe00 rshift8 temp ,pdata 
+054d c082855d bne 0x05 ,p_le_send_att_read_by_type_write_short_uuid 
+054e 204005d1 call p_get_contw 
+054f 680102a0 fetch 2 ,mem_temp 
+0550 e0a10000 istore 2 ,contw 
+0551 204005d7 call p_store_contw 
+0552 58004504 setarg mem_le_att_list 
+0553 98408c00 iadd temp ,contr 
+0554 e8c08000 ifetch 1 ,contr 
+0555 18c20400 copy contr ,temp 
+0556 1fe27200 copy pdata ,loopcnt 
+0557 1fe0fe05 increase 5 ,pdata 
+0558 6000c445 store 1 ,mem_le_l2cap_response 
+0559 204005d1 call p_get_contw 
+055a 18420c00 copy temp ,contr 
+055b 20407e45 call memcpy 
+055c 202005d7 branch p_store_contw 
+
+p_le_send_att_read_by_type_write_short_uuid:
+055d 204005d1 call p_get_contw 
+055e 680102a0 fetch 2 ,mem_temp 
+055f e0a10000 istore 2 ,contw 
+0560 68014c45 fetch 2 ,mem_le_cur_att_type 
+0561 e0a10000 istore 2 ,contw 
+0562 204005d7 call p_store_contw 
+0563 70444507 jam 7 ,mem_le_l2cap_response 
+0564 20600000 rtn 
+
+p_le_send_att_read_by_type_res_device_name:
+0565 20405b08 call le_get_device_name 
+
+p_le_send_att_read_by_type_res_packet:
+0566 e8c08000 ifetch 1 ,contr 
+0567 1fe27200 copy pdata ,loopcnt 
+0568 1fe0fe02 increase 2 ,pdata 
+0569 6000c445 store 1 ,mem_le_l2cap_response 
+056a 18c08dfb increase -5 ,contr 
+056b e8c10000 ifetch 2 ,contr 
+056c e0a10000 istore 2 ,contw 
+056d 18c08c03 increase 3 ,contr 
+056e 20407e45 call memcpy 
+056f 2020588a branch le_send_autolen 
+
+p_le_send_att_read_by_type_res_pnp_id:
+0570 d8402a50 arg uuid_pnp_id ,temp 
+0571 20405b0c call le_att_get_uuid_ptr 
+0572 20200566 branch p_le_send_att_read_by_type_res_packet 
+
+p_le_send_att_read_by_group_type_response:
+0573 d9600002 arg 2 ,timeup 
+0574 680144bc fetch 2 ,mem_le_search_handle_start 
+0575 600102a0 store 2 ,mem_temp 
+0576 700d5c00 jam 0 ,mem_le_search_res 
+0577 78347c00 enable user 
+
+p_le_send_att_read_by_group_type_response_loop:
+0578 204005b7 call p_le_att_handle_inrange 
+0579 2421059b nbranch p_le_send_att_read_by_group_type_end0 ,positive 
+057a 680902a0 fetcht 2 ,mem_temp 
+057b 204005bf call p_le_att_get_handle_info 
+057c c000859e beq 1 ,p_le_send_att_read_by_group_type_end1 
+057d 204005bb call p_le_att_same_type 
+057e 24228597 nbranch p_le_send_att_read_by_group_type_next_handle ,zero 
+057f 68008d5c fetch 1 ,mem_le_search_res 
+0580 c000859e beq 1 ,p_le_send_att_read_by_group_type_end1 
+0581 24340588 nbranch p_le_send_att_read_by_group_type_store_write_record ,user 
+0582 78547c00 disable user 
+0583 6800cc47 fetch 1 ,mem_le_search_len 
+0584 1fe0fe04 increase 4 ,pdata 
+0585 6000c445 store 1 ,mem_le_l2cap_response 
+0586 204005d7 call p_store_contw 
+0587 20200592 branch p_le_send_att_read_by_group_type_store_record 
+
+p_le_send_att_read_by_group_type_store_write_record:
+0588 6800cc47 fetch 1 ,mem_le_search_len 
+0589 1fe67c10 sub pdata ,0x10 ,null 
+058a 2022859e branch p_le_send_att_read_by_group_type_end1 ,zero 
+058b 6800c445 fetch 1 ,mem_le_l2cap_response 
+058c 1fe67c10 sub pdata ,0x10 ,null 
+058d 2022859e branch p_le_send_att_read_by_group_type_end1 ,zero 
+058e 680102a0 fetch 2 ,mem_temp 
+058f 1fe0ffff increase -1 ,pdata 
+0590 60010d5a store 2 ,mem_le_cur_handle_end 
+0591 204005ae call p_le_write_att_record 
+
+p_le_send_att_read_by_group_type_store_record:
+0592 680102a0 fetch 2 ,mem_temp 
+0593 60010d58 store 2 ,mem_le_cur_handle_start 
+0594 204005a9 call p_le_store_att_record 
+0595 196097ff increase -1 ,timeup 
+0596 20228599 branch p_le_send_att_read_by_group_type_last_find ,zero 
+
+p_le_send_att_read_by_group_type_next_handle:
+0597 204005a5 call p_le_att_next_handle 
+0598 20200578 branch p_le_send_att_read_by_group_type_response_loop 
+
+p_le_send_att_read_by_group_type_last_find:
+0599 700d5c01 jam 1 ,mem_le_search_res 
+059a 20200597 branch p_le_send_att_read_by_group_type_next_handle 
+
+p_le_send_att_read_by_group_type_end0:
+059b 680102a0 fetch 2 ,mem_temp 
+059c 60010d5a store 2 ,mem_le_cur_handle_end 
+059d 202005a2 branch p_le_send_att_read_by_group_type_end_common 
+
+p_le_send_att_read_by_group_type_end1:
+059e 680102a0 fetch 2 ,mem_temp 
+059f 1fe0ffff increase -1 ,pdata 
+05a0 60010d5a store 2 ,mem_le_cur_handle_end 
+05a1 202005a2 branch p_le_send_att_read_by_group_type_end_common 
+
+p_le_send_att_read_by_group_type_end_common:
+05a2 20345728 branch le_send_att_error_response_notfound ,user 
+05a3 204005ae call p_le_write_att_record 
+05a4 202005dd branch p_le_send_auto_len_by_mem 
+
+p_le_att_next_handle:
+05a5 680902a0 fetcht 2 ,mem_temp 
+05a6 18408401 increase 1 ,temp 
+05a7 600902a0 storet 2 ,mem_temp 
+05a8 20600000 rtn 
+
+p_le_store_att_record:
+05a9 6800cc47 fetch 1 ,mem_le_search_len 
+05aa 60008103 store 1 ,mem_tmp_buffer 
+05ab 1fe27200 copy pdata ,loopcnt 
+05ac 204005d4 call p_get_contr 
+05ad 20207e45 branch memcpy 
+
+p_le_write_att_record:
+05ae 204005d1 call p_get_contw 
+05af 68010d58 fetch 2 ,mem_le_cur_handle_start 
+05b0 e0a10000 istore 2 ,contw 
+05b1 68010d5a fetch 2 ,mem_le_cur_handle_end 
+05b2 e0a10000 istore 2 ,contw 
+05b3 68008103 fetch 1 ,mem_tmp_buffer 
+05b4 1fe27200 copy pdata ,loopcnt 
+05b5 20407e45 call memcpy 
+05b6 202005d7 branch p_store_contw 
+
+p_le_att_handle_inrange:
+05b7 680902a0 fetcht 2 ,mem_temp 
+05b8 680144be fetch 2 ,mem_le_search_handle_end 
+05b9 98467c00 isub temp ,null 
+05ba 20600000 rtn 
+
+p_le_att_same_type:
+05bb 680144c0 fetch 2 ,mem_le_search_att_type 
+05bc 68094c45 fetcht 2 ,mem_le_cur_att_type 
+05bd 98467c00 isub temp ,null 
+05be 20600000 rtn 
+
+p_le_att_get_handle_info:
+05bf d8c04504 arg mem_le_att_list ,contr 
+05c0 18422200 copy temp ,rega 
+
+p_le_att_get_handle_loop:
+05c1 e8c10000 ifetch 2 ,contr 
+05c2 203a05ca branch p_le_att_unfind_handle ,blank 
+05c3 e8c90000 ifetcht 2 ,contr 
+05c4 60094c45 storet 2 ,mem_le_cur_att_type 
+05c5 9a267c00 isub rega ,null 
+05c6 202285cc branch p_le_att_finded_handle ,zero 
+05c7 e8c08000 ifetch 1 ,contr 
+05c8 98c08c00 iadd contr ,contr 
+05c9 202005c1 branch p_le_att_get_handle_loop 
+
+p_le_att_unfind_handle:
+05ca 58000001 setarg 1 
+05cb 20600000 rtn 
+
+p_le_att_finded_handle:
+05cc e8c08000 ifetch 1 ,contr 
+05cd 6000cc47 store 1 ,mem_le_search_len 
+05ce 204005da call p_store_contr 
+05cf 58000000 setarg 0 
+05d0 20600000 rtn 
+
+p_get_contw:
+05d1 680102b9 fetch 2 ,mem_contw 
+05d2 1fe20a00 copy pdata ,contw 
+05d3 20600000 rtn 
+
+p_get_contr:
+05d4 680102b7 fetch 2 ,mem_contr 
+05d5 1fe20c00 copy pdata ,contr 
+05d6 20600000 rtn 
+
+p_store_contw:
+05d7 18a27e00 copy contw ,pdata 
+05d8 600102b9 store 2 ,mem_contw 
+05d9 20600000 rtn 
+
+p_store_contr:
+05da 18c27e00 copy contr ,pdata 
+05db 600102b7 store 2 ,mem_contr 
+05dc 20600000 rtn 
+
+p_le_send_auto_len_by_mem:
+05dd 204005d1 call p_get_contw 
+05de 2020588a branch le_send_autolen 
+
+p_le_send_att_handle_value_indication:
+
+p_le_send_att_handle_value_notification:
+05df 6800cbab fetch 1 ,mem_queue_read 
+05e0 1fe08401 add pdata ,1 ,temp 
+05e1 18410403 and temp ,0x03 ,temp 
+05e2 6008cbab storet 1 ,mem_queue_read 
+05e3 1feffe07 mul32 pdata ,7 ,pdata 
+05e4 d8c04bad arg mem_uart_packet ,contr 
+05e5 98c08c00 iadd contr ,contr 
+05e6 6800cc62 fetch 1 ,mem_le51_tx_length 
+05e7 1fe0fffb increase -5 ,pdata 
+05e8 1fe27200 copy pdata ,loopcnt 
+05e9 d8a04445 arg mem_le_l2cap + 1 ,contw 
+05ea 20407e45 call memcpy 
+05eb 6808cc62 fetcht 1 ,mem_le51_tx_length 
+05ec 20205892 branch le_send_packet 
+
+p_le_parse:
+05ed 2040561c call le_xtype_fifo_is_full 
+05ee 202058b0 branch le_parse + 4 
+
+p_le_parse_ll:
+05ef 1a627e00 copy regc ,pdata 
+05f0 c00185f9 beq ll_enc_req ,p_le_parse_enc_req 
+05f1 c00505fd beq ll_pause_enc_req ,p_le_parse_pause_enc_rsq 
+05f2 c00905fb beq ll_ping_req ,p_le_parse_ping_req 
+05f3 c00105ff beq ll_terminate_ind ,p_le_parse_terminate_ind 
+05f4 1fe67c0d sub pdata ,0x0d ,null 
+05f5 202158c0 branch le_parse + 20 ,positive 
+05f6 6000cc48 store 1 ,mem_le_ll_unknown_type 
+05f7 700b7d27 jam xt_ll_unknown_rsp ,mem_fifo_temp 
+05f8 20205620 branch le_xtype_fifo_in 
+
+p_le_parse_enc_req:
+05f9 704c5c00 jam default_states ,mem_ltk_states 
+05fa 20205938 branch le_parse_enc_req 
+
+p_le_parse_ping_req:
+05fb 700b7d33 jam xt_ll_ping_rsp ,mem_fifo_temp 
+05fc 20205620 branch le_xtype_fifo_in 
+
+p_le_parse_pause_enc_rsq:
+05fd 700b7d2b jam xt_ll_pause_enc_rsp ,mem_fifo_temp 
+05fe 20205620 branch le_xtype_fifo_in 
+
+p_le_parse_terminate_ind:
+05ff 58000014 setarg 20 
+0600 600103ef store 2 ,mem_le_superto 
+0601 20600000 rtn 
+
+p_le_send_non_l2cap:
+0602 6800c43e fetch 1 ,mem_le_txheader 
+0603 28200601 compare 1 ,type ,3 
+0604 20208606 branch p_le_send_non_l2cap1 ,true 
+0605 202058a7 branch le_send_non_l2cap + 14 
+
+p_le_send_non_l2cap1:
+0606 6800c43f fetch 1 ,mem_le_txlen 
+0607 203a0609 branch p_le_send_empty_clear_md ,blank 
+0608 202058a7 branch le_send_non_l2cap + 14 
+
+p_le_send_empty_clear_md:
+0609 6800c43e fetch 1 ,mem_le_txheader 
+060a 793ffe04 set0 md ,pdata 
+060b 6000c43e store 1 ,mem_le_txheader 
+060c 20600000 rtn 
+
+p_le_parse_smp:
+060d e8c08000 ifetch 1 ,contr 
+060e c0008614 beq smp_pairing_request ,p_le_parse_smp_pairing_request 
+060f c002061a beq smp_pairing_random ,p_le_parse_smp_pairing_random 
+0610 c0048612 beq smp_identity_address_information ,p_le_parse_smp_identity_address_information 
+0611 202058f8 branch le_parse_smp + 4 
+
+p_le_parse_smp_identity_address_information:
+0612 704c4903 jam flag_le_pairing_end ,mem_le_pairing_state 
+0613 20205974 branch le_parse_smp_identity_address_information 
+
+p_le_parse_smp_pairing_request:
+0614 704d1c01 jam 1 ,mem_le_send_security_request_flag 
+0615 6000c4ae store 1 ,mem_le_preq 
+0616 e8c30000 ifetch 6 ,contr 
+0617 e0a30000 istore 6 ,contw 
+0618 700b7d42 jam xt_smp_pairing_response ,mem_fifo_temp 
+0619 20205620 branch le_xtype_fifo_in 
+
+p_le_parse_smp_pairing_random:
+061a 204074a8 call authenticate_rconfirm 
+061b 2022861d branch p_le_parse_smp_pairing_random_success ,zero 
+061c 20205968 branch le_parse_smp_pairing_random + 2 
+
+p_le_parse_smp_pairing_random_success:
+061d 704c4902 jam flag_le_pairing_after_auth ,mem_le_pairing_state 
+061e 2020596a branch le_parse_smp_pairing_random_success 
+
+scale_process_le_conn:
+061f 704c5d00 jam pair_unknown ,mem_pair_state 
+0620 20403f86 call app_ble_stop_adv 
+0621 20403f7e call app_bt_stop_discovery 
+0622 20403fa4 call app_lpm_mult_enable 
+0623 20203ecc branch app_le_event_bb_connected 
+
+scale_process_le_discon:
+0624 70421300 jam 0 ,mem_lpm_mult 
+0625 70448b00 jam 0 ,mem_ltk_exists 
+0626 704c5c00 jam default_states ,mem_ltk_states 
+0627 704c4900 jam flag_le_pairing_null ,mem_le_pairing_state 
+0628 704c5f00 jam 0 ,mem_shutter_find_type_value_flag 
+0629 704c5d00 jam pair_unknown ,mem_pair_state 
+062a 20203ed0 branch app_le_event_bb_disconn 
+
+p_le_queue_init:
+062b 58000000 setarg 0 
+062c 60024ba9 store 4 ,mem_queue_write 
+062d 20600000 rtn 
+
+p_g24_dispatch:
+062e c6918000 rtnmark0 mark_24g 
+062f 68024d1d fetch 4 ,mem_24g_enter_hibernate 
+0630 60024d4f store 4 ,mem_24g_enter_hibernate_setup 
+0631 20400653 call p_g24_txdata_prep 
+0632 24340646 nbranch p_g24_long_sleep ,user 
+0633 704c0b0a jam 10 ,mem_24g_enter_lpm_timer 
+0634 20400679 call p_g24_transmit_packet 
+0635 6800cbef fetch 1 ,mem_24g_pairing_sm 
+0636 c1ff8000 rtnne state_24g_pairing_success 
+
+p_g24_short_sleep:
+0637 6800cd22 fetch 1 ,mem_mouse_retry_flag 
+0638 247a0000 nrtn blank 
+0639 204001b2 call p_check_ipc_for_lpm 
+063a 24740000 nrtn user 
+063b 68008b7f fetch 1 ,mem_c51_lpm_lock 
+063c 247a0000 nrtn blank 
+063d 20403cab call lpo_calibration 
+063e 6801c210 fetch 3 ,mem_clks_per_lpo 
+063f 207a0000 rtn blank 
+0640 6800c131 fetch 1 ,mem_lpm_mode 
+0641 207a0000 rtn blank 
+
+p_g24_short_sleep_1:
+0642 6801cd57 fetch 3 ,mem_24g_short_sleep_counter 
+
+p_g24_short_sleep_2:
+0643 20407e8a call clk2lpo 
+0644 600a41fc storet 4 ,mem_sleep_counter 
+0645 20203cda branch lpm_sleep 
+
+p_g24_long_sleep:
+0646 204001b2 call p_check_ipc_for_lpm 
+0647 24740000 nrtn user 
+0648 68008b7f fetch 1 ,mem_c51_lpm_lock 
+0649 247a0000 nrtn blank 
+064a 20403cab call lpo_calibration 
+064b 6801c210 fetch 3 ,mem_clks_per_lpo 
+064c 207a0000 rtn blank 
+064d 6800c131 fetch 1 ,mem_lpm_mode 
+064e 207a0000 rtn blank 
+064f 6800cc0b fetch 1 ,mem_24g_enter_lpm_timer 
+0650 243a0642 nbranch p_g24_short_sleep_1 ,blank 
+0651 68024d4f fetch 4 ,mem_24g_enter_hibernate_setup 
+0652 20200643 branch p_g24_short_sleep_2 
+
+p_g24_txdata_prep:
+0653 6800cbef fetch 1 ,mem_24g_pairing_sm 
+0654 c0ff86ca bne state_24g_pairing_success ,p_g24_pairing_sm 
+0655 2040065a call p_g24_package_data 
+0656 20540675 call p_g24_get_package_data ,user 
+0657 20540734 call p_g24_transmit_prep ,user 
+
+p_g24_txdata_enable_tx:
+0658 704be601 jam ensure_on_24g ,mem_24g_ensure 
+0659 20600000 rtn 
+
+p_g24_package_data:
+065a 78547c00 disable user 
+065b 704be202 jam 2 ,mem_24g_data_type 
+065c 6800cd34 fetch 1 ,mem_24g_txbuf_new 
+065d c0020665 beq 0x04 ,p_g24_dataready 
+065e c002866b beq 0x05 ,p_g24_dataready_mk 
+065f c0030671 beq 0x06 ,p_g24_dataready_ms 
+0660 c003866e beq 0x07 ,p_g24_dataready_sys 
+0661 c0040668 beq 0x08 ,p_g24_dataready_game 
+0662 6800cd22 fetch 1 ,mem_mouse_retry_flag 
+0663 245a34df ncall enable_user ,blank 
+0664 20600000 rtn 
+
+p_g24_dataready:
+0665 704d3400 jam 0x00 ,mem_24g_txbuf_new 
+0666 704be10a jam 10 ,mem_24g_datalen 
+0667 20200673 branch p_g24_package_data_rtn 
+
+p_g24_dataready_game:
+0668 704d3408 jam 0x08 ,mem_24g_txbuf_new 
+0669 704be110 jam 16 ,mem_24g_datalen 
+066a 20200673 branch p_g24_package_data_rtn 
+
+p_g24_dataready_mk:
+066b 704d3403 jam 0x03 ,mem_24g_txbuf_new 
+066c 704be104 jam 4 ,mem_24g_datalen 
+066d 20200673 branch p_g24_package_data_rtn 
+
+p_g24_dataready_sys:
+066e 704d3402 jam 0x02 ,mem_24g_txbuf_new 
+066f 704be103 jam 3 ,mem_24g_datalen 
+0670 20200673 branch p_g24_package_data_rtn 
+
+p_g24_dataready_ms:
+0671 704be201 jam 1 ,mem_24g_data_type 
+0672 704be108 jam 8 ,mem_24g_datalen 
+
+p_g24_package_data_rtn:
+0673 704be700 jam 0 ,mem_24g_get_ack_fail 
+0674 202034df branch enable_user 
+
+p_g24_get_package_data:
+0675 d8a00cd5 arg mem_24g_txbuf ,contw 
+0676 d8c04d34 arg mem_24g_txbuf_new ,contr 
+0677 df200014 arg 20 ,loopcnt 
+0678 20207e45 branch memcpy 
+
+p_g24_transmit_packet:
+0679 704be800 jam 0 ,mem_24g_retry 
+
+p_g24_transmit_loop:
+067a d9600d00 arg param_rx_setup ,timeup 
+067b 34730200 until clkn_rt ,meet 
+067c 204006a0 call p_g24_transmit_receive_ack 
+067d 24378689 nbranch p_g24_retransmit ,user3 
+067e 204006af call p_g24_ackpayload_parse 
+067f 6800cbe0 fetch 1 ,mem_24g_pid 
+0680 1fe0fe01 increase 1 ,pdata 
+0681 6000cbe0 store 1 ,mem_24g_pid 
+0682 704d2200 jam 0 ,mem_mouse_retry_flag 
+0683 6800cbef fetch 1 ,mem_24g_pairing_sm 
+0684 c0ff869f bne state_24g_pairing_success ,p_g24_paring_mode_start 
+
+p_g24_transmit_abandon:
+0685 2040069b call p_g24_clear_txbuf 
+0686 704be700 jam 0 ,mem_24g_get_ack_fail 
+0687 704be600 jam ensure_off_24g ,mem_24g_ensure 
+0688 20600000 rtn 
+
+p_g24_retransmit:
+0689 704d2201 jam 1 ,mem_mouse_retry_flag 
+068a 6800cbe7 fetch 1 ,mem_24g_get_ack_fail 
+068b 1fe0fe01 increase 1 ,pdata 
+068c 6000cbe7 store 1 ,mem_24g_get_ack_fail 
+068d 6800cbef fetch 1 ,mem_24g_pairing_sm 
+068e c0ff86ab bne state_24g_pairing_success ,p_g24_tx_paring_retry 
+068f 6800cbe7 fetch 1 ,mem_24g_get_ack_fail 
+0690 c07f86ac beq 0xff ,p_g24_stop_g24_mode 
+0691 6800cbe7 fetch 1 ,mem_24g_get_ack_fail 
+0692 d8400010 arg 16 ,temp 
+0693 98467c00 isub temp ,null 
+0694 20210753 branch p_g24_ch ,positive 
+0695 6800cbe8 fetch 1 ,mem_24g_retry 
+0696 1fe0fe01 increase 1 ,pdata 
+0697 6000cbe8 store 1 ,mem_24g_retry 
+0698 2000000a nop 10 
+0699 c083867a bne retry_24g ,p_g24_transmit_loop 
+069a 20200753 branch p_g24_ch 
+
+p_g24_clear_txbuf:
+069b 58000000 setarg 0 
+069c 60020cd5 store 20 ,mem_24g_txbuf 
+069d 60024d34 store 20 ,mem_24g_txbuf_new 
+069e 20600000 rtn 
+
+p_g24_paring_mode_start:
+069f 202006e4 branch p_g24_paring_mode 
+
+p_g24_transmit_receive_ack:
+06a0 7857fc00 disable user3 
+06a1 204007ab call p_g24_transmit 
+06a2 18002a00 force 0 ,radio_ctrl 
+06a3 68024c00 fetch 4 ,mem_24g_addr 
+06a4 98001200 iforce access 
+06a5 68088017 fetcht 1 ,mem_last_freq 
+06a6 20403a82 call set_freq_rx 
+06a7 20403a87 call rf_rx_enable 
+06a8 2040076b call p_g24_receive_rxon 
+06a9 205787a5 call p_g24_end_of_packet ,user3 
+06aa 20600000 rtn 
+
+p_g24_tx_paring_retry:
+06ab 20600000 rtn 
+
+p_g24_stop_g24_mode:
+06ac 704d2200 jam 0 ,mem_mouse_retry_flag 
+06ad 700b7d32 jam bt_evt_24g_attempt_fail ,mem_fifo_temp 
+06ae 20207c27 branch ui_ipc_send_event 
+
+p_g24_ackpayload_parse:
+06af 20400719 call p_g24_read_len_pid_crc 
+06b0 68008cb3 fetch 1 ,mem_24g_rxbuf 
+06b1 c1810000 rtnne 0x02 
+06b2 6800cbdf fetch 1 ,mem_24g_rxdata_length 
+06b3 207a0000 rtn blank 
+06b4 98007200 iforce loopcnt 
+06b5 d8c00cb5 arg mem_24g_rxbuf + 2 ,contr 
+06b6 d8a00d17 arg mem_24g_rxpayload ,contw 
+06b7 20407e45 call memcpy 
+06b8 68008cb4 fetch 1 ,mem_24g_rxbuf + 1 
+06b9 2fe1f008 compare 0x08 ,pdata ,0xf8 
+06ba 24608000 nrtn true 
+06bb 68008cb5 fetch 1 ,mem_24g_rxbuf + 2 
+06bc c07f86bf beq 0xff ,p_pc_sleep_mode 
+06bd 6000cc90 store 1 ,mem_caps_num_lock 
+06be 20600000 rtn 
+
+p_pc_sleep_mode:
+06bf 704d5a01 jam 1 ,mem_pc_sleep_flag 
+06c0 20600000 rtn 
+
+p_g24_start_pairing_sm1:
+06c1 79200023 set1 mark_24g ,mark 
+06c2 204006c6 call p_g24_pair_init 
+06c3 20400685 call p_g24_transmit_abandon 
+06c4 704bef01 jam state_24g_pairing_1 ,mem_24g_pairing_sm 
+06c5 20600000 rtn 
+
+p_g24_pair_init:
+06c6 704be000 jam 0 ,mem_24g_pid 
+06c7 704be94e jam g24_pair_ch ,mem_24g_ch 
+06c8 68024beb fetch 4 ,mem_24g_paring_addr 
+06c9 20200726 branch p_g24_update_addr_and_synccrc8 
+
+p_g24_pairing_sm:
+06ca 204006c6 call p_g24_pair_init 
+06cb 6800cbe6 fetch 1 ,mem_24g_ensure 
+06cc c000b4df beq ensure_on_24g ,enable_user 
+06cd 6800cbef fetch 1 ,mem_24g_pairing_sm 
+06ce c00086d2 beq state_24g_pairing_1 ,p_g24_pairing_sm_1 
+06cf c00106d5 beq state_24g_pairing_2 ,p_g24_pairing_sm_2 
+06d0 c00186d8 beq state_24g_pairing_3 ,p_g24_pairing_sm_3 
+06d1 20203bf1 branch assert 
+
+p_g24_pairing_sm_1:
+06d2 704bef11 jam state_24g_pairing_1_waiting_ack ,mem_24g_pairing_sm 
+06d3 700d37aa jam 0xaa ,mem_24g_common_temp 
+06d4 202006da branch p_g24_pairing_sm_common 
+
+p_g24_pairing_sm_2:
+06d5 704bef12 jam state_24g_pairing_2_waiting_ack ,mem_24g_pairing_sm 
+06d6 700d3755 jam 0x55 ,mem_24g_common_temp 
+06d7 202006da branch p_g24_pairing_sm_common 
+
+p_g24_pairing_sm_3:
+06d8 704bef13 jam state_24g_pairing_3_waiting_ack ,mem_24g_pairing_sm 
+06d9 700d3722 jam 0x22 ,mem_24g_common_temp 
+
+p_g24_pairing_sm_common:
+06da 700d3802 jam 0x02 ,mem_24g_common_temp + 1 
+06db 68024c06 fetch 4 ,mem_24g_device_addr 
+06dc 60020d39 store 4 ,mem_24g_common_temp + 2 
+06dd 700d3d00 jam 0 ,mem_24g_common_temp + 6 
+06de da200d37 arg mem_24g_common_temp ,rega 
+06df d8400007 arg 7 ,temp 
+06e0 20400714 call p_g24_put_data_in_buff 
+06e1 20400734 call p_g24_transmit_prep 
+06e2 20400658 call p_g24_txdata_enable_tx 
+06e3 202034df branch enable_user 
+
+p_g24_paring_mode:
+06e4 6800cbef fetch 1 ,mem_24g_pairing_sm 
+06e5 c17f8000 rtneq state_24g_pairing_success 
+06e6 c00886ea beq state_24g_pairing_1_waiting_ack ,p_g24_pairing_sm_1_waiting_ack 
+06e7 c00906ec beq state_24g_pairing_2_waiting_ack ,p_g24_pairing_sm_2_waiting_ack 
+06e8 c00986ee beq state_24g_pairing_3_waiting_ack ,p_g24_pairing_sm_3_waiting_ack 
+06e9 20600000 rtn 
+
+p_g24_pairing_sm_1_waiting_ack:
+06ea 704bef02 jam state_24g_pairing_2 ,mem_24g_pairing_sm 
+06eb 20200685 branch p_g24_transmit_abandon 
+
+p_g24_pairing_sm_2_waiting_ack:
+06ec 704bef03 jam state_24g_pairing_3 ,mem_24g_pairing_sm 
+06ed 20200685 branch p_g24_transmit_abandon 
+
+p_g24_pairing_sm_3_waiting_ack:
+06ee 704befff jam state_24g_pairing_success ,mem_24g_pairing_sm 
+06ef 700b7d31 jam bt_evt_24g_pairing_complete ,mem_fifo_temp 
+06f0 20407c27 call ui_ipc_send_event 
+06f1 68020d19 fetch 4 ,mem_24g_rxpayload + 2 
+06f2 20400726 call p_g24_update_addr_and_synccrc8 
+06f3 20200685 branch p_g24_transmit_abandon 
+
+p_g24_start_24g_mode:
+06f4 79200023 set1 mark_24g ,mark 
+06f5 20400727 call p_g24_syncword_crc8 
+06f6 20400753 call p_g24_ch 
+06f7 6800cbef fetch 1 ,mem_24g_pairing_sm 
+06f8 c1ff8000 rtnne state_24g_pairing_success 
+06f9 20400706 call p_g24_tx_attemp_data_prep 
+06fa 58000000 setarg 0 
+06fb 60014c04 store 2 ,mem_24g_check_dongle_times 
+
+p_g24_tx_attemp_dongle_loop:
+06fc 20403cab call lpo_calibration 
+06fd 200007d0 nop 2000 
+06fe 6800cc04 fetch 1 ,mem_24g_check_dongle_times 
+06ff c07f86ac beq 0xff ,p_g24_stop_g24_mode 
+0700 204006a0 call p_g24_transmit_receive_ack 
+0701 2437870f nbranch p_g24_attemp_txdata_retry ,user3 
+
+p_g24_tx_attemp_dongle_succ:
+0702 2040069b call p_g24_clear_txbuf 
+0703 79200023 set1 mark_24g ,mark 
+0704 700b7d3c jam bt_evt_24g_attempt_success ,mem_fifo_temp 
+0705 20207c27 branch ui_ipc_send_event 
+
+p_g24_tx_attemp_data_prep:
+0706 700d37ff jam 0xff ,mem_24g_common_temp 
+0707 6800cbe2 fetch 1 ,mem_24g_data_type 
+0708 60008d38 store 1 ,mem_24g_common_temp + 1 
+0709 68024c06 fetch 4 ,mem_24g_device_addr 
+070a 60020d39 store 4 ,mem_24g_common_temp + 2 
+070b d8400006 arg 6 ,temp 
+070c da200d37 arg mem_24g_common_temp ,rega 
+070d 20400714 call p_g24_put_data_in_buff 
+070e 20200734 branch p_g24_transmit_prep 
+
+p_g24_attemp_txdata_retry:
+070f 68014c04 fetch 2 ,mem_24g_check_dongle_times 
+0710 1fe0fe01 increase 1 ,pdata 
+0711 60014c04 store 2 ,mem_24g_check_dongle_times 
+0712 20400753 call p_g24_ch 
+0713 202006fc branch p_g24_tx_attemp_dongle_loop 
+
+p_g24_put_data_in_buff:
+0714 6008cbe1 storet 1 ,mem_24g_datalen 
+0715 18427200 copy temp ,loopcnt 
+0716 d8a00cd5 arg mem_24g_txbuf ,contw 
+0717 1a220c00 copy rega ,contr 
+0718 20207e45 branch memcpy 
+
+p_g24_read_len_pid_crc:
+0719 68008cb4 fetch 1 ,mem_24g_rxbuf + 1 
+071a 1fe97e00 rshift3 pdata ,pdata 
+071b 6000cbdf store 1 ,mem_24g_rxdata_length 
+071c 20600000 rtn 
+
+p_rssi_signal:
+071d 6808cc22 fetcht 1 ,mem_rssi_signal_index 
+071e 58004c11 setarg mem_rssi_signal_buf 
+071f 98408a00 iadd temp ,contw 
+0720 1a227e00 copy rega ,pdata 
+0721 e0a08000 istore 1 ,contw 
+0722 18408401 increase 1 ,temp 
+0723 18410407 and_into rssi_buf_len_signal ,temp 
+0724 6008cc22 storet 1 ,mem_rssi_signal_index 
+0725 20600000 rtn 
+
+p_g24_update_addr_and_synccrc8:
+0726 60024c00 store 4 ,mem_24g_addr 
+
+p_g24_syncword_crc8:
+0727 da200000 arg 0 ,rega 
+0728 df200004 arg 4 ,loopcnt 
+0729 d8c04c00 arg mem_24g_addr ,contr 
+
+p_g24_syncword_crc8_loop:
+072a e8c08000 ifetch 1 ,contr 
+072b 9a20a200 iadd rega ,rega 
+072c c200072a loop p_g24_syncword_crc8_loop 
+072d 1a227e00 copy rega ,pdata 
+072e 60014c0c store 2 ,mem_24g_syncword 
+072f 6800cc0c fetch 1 ,mem_24g_syncword 
+0730 6808cc0d fetcht 1 ,mem_24g_syncword + 1 
+0731 9840fe00 iadd temp ,pdata 
+0732 6000cc0e store 1 ,mem_24g_syncword_crc8 
+0733 20600000 rtn 
+
+p_g24_transmit_prep:
+0734 6800cbe1 fetch 1 ,mem_24g_datalen 
+0735 1fe0fe02 increase 2 ,pdata 
+0736 6000cbe3 store 1 ,mem_24g_txlen 
+0737 6800cbe2 fetch 1 ,mem_24g_data_type 
+0738 60008cf5 store 1 ,mem_24g_txpayload 
+0739 6800cbe1 fetch 1 ,mem_24g_datalen 
+073a 1fe9fe00 lshift3 pdata ,pdata 
+073b 6808cbe0 fetcht 1 ,mem_24g_pid 
+073c 18410403 and temp ,0x03 ,temp 
+073d 18438400 lshift temp ,temp 
+073e 9841fe00 ior temp ,pdata 
+073f 6808cc0a fetcht 1 ,mem_24g_no_ack 
+0740 9840fe00 iadd temp ,pdata 
+0741 e0a08000 istore 1 ,contw 
+0742 6800cbef fetch 1 ,mem_24g_pairing_sm 
+0743 c0ff8746 bne state_24g_pairing_success ,p_g24_transmit_prep_pair 
+0744 6800cbe2 fetch 1 ,mem_24g_data_type 
+0745 e0a08000 istore 1 ,contw 
+
+p_g24_transmit_prep_pair:
+0746 6800cbe1 fetch 1 ,mem_24g_datalen 
+0747 98007200 iforce loopcnt 
+0748 6800cbe2 fetch 1 ,mem_24g_data_type 
+0749 c0008751 beq 1 ,p_g24_transmit_prep_mouse 
+074a d8c00cd5 arg mem_24g_txbuf ,contr 
+074b 20407e45 call memcpy 
+074c 68008cd5 fetch 1 ,mem_24g_txbuf 
+074d c001874f beq 0x03 ,p_g24_multi_key_setup 
+074e 20600000 rtn 
+
+p_g24_multi_key_setup:
+074f 700cd502 jam 0x02 ,mem_24g_txbuf 
+0750 20600000 rtn 
+
+p_g24_transmit_prep_mouse:
+0751 d8c00cd6 arg mem_24g_txbuf + 1 ,contr 
+0752 20207e45 branch memcpy 
+
+p_g24_ch:
+0753 6808cbea fetcht 1 ,mem_24g_current_ch_number 
+0754 20400759 call p_g24_ch_calc 
+0755 18408401 increase 1 ,temp 
+0756 18410403 and_into 3 ,temp 
+0757 6008cbea storet 1 ,mem_24g_current_ch_number 
+0758 20600000 rtn 
+
+p_g24_ch_calc:
+0759 6800cc00 fetch 1 ,mem_24g_addr 
+075a 1fe17e03 and_into 0x03 ,pdata 
+075b 1fefa204 mul32 pdata ,4 ,rega 
+075c 58004bf0 setarg mem_24g_ch_map1 
+075d 9a20fe00 iadd rega ,pdata 
+075e 98408c00 iadd temp ,contr 
+075f e8c08000 ifetch 1 ,contr 
+0760 6000cbe9 store 1 ,mem_24g_ch 
+0761 20600000 rtn 
+
+p_g24_prep:
+0762 7844fc00 disable enable_crc 
+0763 7843fc00 disable enable_white 
+0764 58555555 setarg 0x555555 
+0765 98001e00 iforce crc24_init 
+0766 6800cbe9 fetch 1 ,mem_24g_ch 
+0767 1fed8400 reverse pdata ,temp 
+0768 79200401 set1 1 ,temp 
+0769 18431c00 rshift temp ,white_init 
+076a 20600000 rtn 
+
+p_g24_receive_rxon:
+076b 20400762 call p_g24_prep 
+076c 7826fc00 enable decode_fec0 
+076d 7830fc00 enable is_rx 
+076e 78507c00 disable is_tx 
+076f 78287c00 enable swfine 
+0770 68014be4 fetch 2 ,mem_24g_rx_window 
+0771 98003600 iforce stop_watch 
+0772 37c18400 correlate null ,timeout 
+0773 242c07a5 nbranch p_g24_sync_timeout ,sync 
+0774 7846fc00 disable decode_fec0 
+0775 7825fc00 enable decode_fec1 
+0776 7823fc00 enable enable_white 
+0777 7824fc00 enable enable_crc 
+0778 09800008 parse demod ,bucket ,8 
+0779 19897e00 rshift3 pwindow ,pdata 
+077a 6000cc0f store 1 ,mem_24g_get_syncword_crc8 
+077b 6808cc0e fetcht 1 ,mem_24g_syncword_crc8 
+077c 98467c00 isub temp ,null 
+077d 242287a5 nbranch p_g24_end_of_packet ,zero 
+077e 09800008 parse demod ,bucket ,8 
+077f 19897e00 rshift3 pwindow ,pdata 
+0780 60008cb3 store 1 ,mem_24g_rxbuf 
+0781 68008cb3 fetch 1 ,mem_24g_rxbuf 
+0782 6808cbe2 fetcht 1 ,mem_24g_data_type 
+0783 a8400e00 icompare bits_data ,temp 
+0784 242087a5 nbranch p_g24_end_of_packet ,true 
+
+p_g24_receive_skip:
+0785 09800008 parse demod ,bucket ,8 
+0786 19897e00 rshift3 pwindow ,pdata 
+0787 e0a08000 istore 1 ,contw 
+0788 1fe97e00 rshift3 pdata ,pdata 
+0789 1fe1721f and pdata ,0x1f ,loopcnt 
+078a 2022878f branch p_g24rx_nopayload ,zero 
+
+p_g24rx_loop:
+078b 09800008 parse demod ,bucket ,8 
+078c 19897e00 rshift3 pwindow ,pdata 
+078d e0a08000 istore 1 ,contw 
+078e c200078b loop p_g24rx_loop 
+
+p_g24rx_nopayload:
+078f 18a22200 copy contw ,rega 
+0790 09800008 parse demod ,bucket ,8 
+0791 19897e00 rshift3 pwindow ,pdata 
+0792 6000cc10 store 1 ,mem_rssi_hex_received 
+0793 1a220a00 copy rega ,contw 
+0794 09800018 parse demod ,bucket ,24 
+0795 78287c00 enable swfine 
+0796 db600664 arg param_sifs ,stop_watch 
+0797 1fef7e00 rshift32 pdata ,pdata 
+0798 1ff17e00 rshift16 pdata ,pdata 
+0799 e0a18000 istore 3 ,contw 
+079a 7845fc00 disable decode_fec1 
+079b 202307a5 branch p_g24_end_of_packet ,crc_failed 
+079c 7837fc00 enable user3 
+079d 68008017 fetch 1 ,mem_last_freq 
+079e 1fe0a200 add pdata ,0 ,rega 
+079f 20403ab6 call rf_write_freq 
+07a0 7846fc00 disable decode_fec0 
+07a1 20403a7a call set_sync_on 
+07a2 6800cc10 fetch 1 ,mem_rssi_hex_received 
+07a3 1fe22200 copy pdata ,rega 
+07a4 2020071d branch p_rssi_signal 
+
+p_g24_sync_timeout:
+
+p_g24_end_of_packet:
+07a5 784dfc00 disable encode_fec1 
+07a6 7845fc00 disable decode_fec1 
+07a7 2020375c branch end_of_packet 
+
+p_g24_set_freq_tx:
+07a8 20403a7a call set_sync_on 
+07a9 6808cbe9 fetcht 1 ,mem_24g_ch 
+07aa 20203a91 branch set_freq_tx 
+
+p_g24_transmit:
+07ab 204053d2 call le_enable 
+07ac 68024c00 fetch 4 ,mem_24g_addr 
+07ad 98001200 iforce access 
+07ae 20400762 call p_g24_prep 
+07af 204007a8 call p_g24_set_freq_tx 
+07b0 79202a00 set1 txgfsk ,radio_ctrl 
+07b1 782efc00 enable encode_fec0 
+07b2 78307c00 enable is_tx 
+07b3 7850fc00 disable is_rx 
+07b4 19317e00 rshift16 access ,pdata 
+07b5 1fecfe00 rshift8 pdata ,pdata 
+07b6 1ff1fe00 rshift4 pdata ,pdata 
+07b7 08008628 inject mod ,40 
+07b8 784efc00 disable encode_fec0 
+07b9 782dfc00 enable encode_fec1 
+07ba 7823fc00 enable enable_white 
+07bb 7824fc00 enable enable_crc 
+07bc 6800cc0e fetch 1 ,mem_24g_syncword_crc8 
+07bd 08008608 inject mod ,8 
+07be 6800cbe3 fetch 1 ,mem_24g_txlen 
+07bf 98007200 iforce loopcnt 
+07c0 d8c00cf5 arg mem_24g_txpayload ,contr 
+
+p_g24tr_loop:
+07c1 e8c08000 ifetch 1 ,contr 
+07c2 08008608 inject mod ,8 
+07c3 c20007c1 loop p_g24tr_loop 
+07c4 78247c00 enable enable_parity 
+07c5 08008618 inject mod ,24 
+07c6 78447c00 disable enable_parity 
+07c7 37d38200 until null ,tx_clear 
+07c8 20000064 nop 100 
+07c9 784efc00 disable encode_fec0 
+07ca 784dfc00 disable encode_fec1 
+07cb 20203a7a branch set_sync_on 
+              org 0x3000
+
+start:
+3000 20403c74 call lpmstate 
+
+soft_reset:
+3001 793f8025 set0 mark_ext_patch ,mark 
+3002 44804000 bpatch patch00_0 ,mem_patch00 
+3003 20800000 clear_stack 
+3004 20403a9e call initialize_radio 
+3005 20406805 call iicd_init_12m 
+3006 20403bfa call init_param 
+3007 20404d98 call l2cap_init 
+3008 793f8025 set0 mark_ext_patch ,mark 
+3009 4480c000 bpatch patch00_1 ,mem_patch00 
+300a 20406b53 call rfcomm_init 
+300b 20405b62 call init_lmp 
+300c 20407b9d call ui_init 
+300d 20403e4f call app_init 
+300e 793f8025 set0 mark_ext_patch ,mark 
+300f 44814000 bpatch patch00_2 ,mem_patch00 
+3010 2055be5f call app_lpm_init ,wake 
+3011 20407719 call sp_initialize 
+3012 2055bcf1 call lpm_recover_clk ,wake 
+
+main_loop:
+3013 793f8025 set0 mark_ext_patch ,mark 
+3014 4481c000 bpatch patch00_3 ,mem_patch00 
+3015 20407813 call sp_calc_sequence 
+3016 20405373 call le_dispatch 
+3017 20404449 call hci_dispatch 
+3018 793f8025 set0 mark_ext_patch ,mark 
+3019 44824000 bpatch patch00_4 ,mem_patch00 
+301a 2040303e call idle_dispatch 
+301b 20403e6a call app_process_idle 
+301c 204030a1 call inquiry_dispatch 
+301d 793f8025 set0 mark_ext_patch ,mark 
+301e 4482c000 bpatch patch00_5 ,mem_patch00 
+301f 20403392 call inquiry_scan_dispatch 
+3020 20403407 call page_scan_dispatch 
+3021 20403024 call connection_dispatch 
+3022 20403d1c call lpm_dispatch 
+3023 20203013 branch main_loop 
+
+connection_dispatch:
+3024 20403029 call connection_incontext 
+3025 c6848000 rtnmark0 mark_context 
+3026 793f8009 set0 mark_context ,mark 
+3027 204032bd call context_save 
+3028 202053d7 branch le_disable 
+
+connection_incontext:
+3029 793f8025 set0 mark_ext_patch ,mark 
+302a 44834000 bpatch patch00_6 ,mem_patch00 
+302b 204032fe call context_search_insniff 
+302c 2422b033 nbranch connection_nosniff ,zero 
+302d 204032a3 call context_load 
+302e 1a208c01 add rega ,coffset_mode ,contr 
+302f e8c08000 ifetch 1 ,contr 
+3030 c2805377 bbit1 mode_le ,le_conn_dispatch 
+3031 c280b1a7 bbit1 mode_master ,master_dispatch 
+3032 20203473 branch slave_dispatch 
+
+connection_nosniff:
+3033 793f8025 set0 mark_ext_patch ,mark 
+3034 4483c000 bpatch patch00_7 ,mem_patch00 
+3035 204032c6 call context_get_next 
+3036 1f227c00 copy loopcnt ,null 
+3037 20628000 rtn zero 
+3038 204032a3 call context_load 
+3039 68008030 fetch 1 ,mem_state 
+303a c281b103 bbit1 state_inpage ,master_page 
+303b 68008031 fetch 1 ,mem_mode 
+303c c280b1a7 bbit1 mode_master ,master_dispatch 
+303d 20203473 branch slave_dispatch 
+
+idle_dispatch:
+303e 6800c272 fetch 1 ,mem_hci_cmd 
+303f 207a0000 rtn blank 
+3040 c000b04e beq hci_cmd_inquiry ,idle_inquiry 
+3041 c0013053 beq hci_cmd_inquiry_cancel ,idle_inquiry_cancel 
+3042 c001b056 beq hci_cmd_remote_name_req ,idle_remote_name_req 
+3043 c002b05b beq hci_cmd_create_conn ,idle_create_conn 
+3044 c00db04b beq hci_cmd_le_create_conn ,idle_le_create_conn 
+3045 204032f6 call context_search_conn_handle 
+3046 20628000 rtn zero 
+3047 204032f9 call context_search_plap 
+3048 20628000 rtn zero 
+
+idle_exit:
+3049 70427200 jam 0 ,mem_hci_cmd 
+304a 20600000 rtn 
+
+idle_le_create_conn:
+304b 70041c1b jam hci_cmd_le_create_conn ,mem_cmd_le_create_conn 
+304c 70427200 jam 0 ,mem_hci_cmd 
+304d 20600000 rtn 
+
+idle_inquiry:
+304e 7920001c set1 mark_inquiry_on ,mark 
+304f 793f801e set0 mark_inquiry_trainb ,mark 
+3050 70008eff jam param_ninquiry ,mem_ninqy_index 
+3051 70008c1f jam 31 ,mem_nfreq_index_inq 
+3052 20203049 branch idle_exit 
+
+idle_inquiry_cancel:
+3053 793f801c set0 mark_inquiry_on ,mark 
+3054 18003600 force 0 ,stop_watch 
+3055 20203049 branch idle_exit 
+
+idle_remote_name_req:
+3056 204032f9 call context_search_plap 
+3057 20628000 rtn zero 
+3058 18000401 force lmp_name_req ,temp 
+3059 70017805 jam 5 ,mem_nameres_cnt 
+305a 20203068 branch idle_start_page 
+
+idle_create_conn:
+305b 793f8025 set0 mark_ext_patch ,mark 
+305c 44844001 bpatch patch01_0 ,mem_patch01 
+305d 6800c132 fetch 1 ,mem_device_option 
+305e c000b064 beq dvc_op_hci ,idle_create_conn_hci 
+
+idle_create_conn_device:
+305f 68034274 fetch 6 ,mem_hci_plap 
+3060 203a3049 branch idle_exit ,blank 
+3061 7047f301 jam reconnect_hid ,memui_reconnect_mode 
+3062 70005503 jam conn_sm_wait_features_res ,mem_conn_sm 
+3063 20203067 branch idle_create_conn_cont 
+
+idle_create_conn_hci:
+3064 68034274 fetch 6 ,mem_hci_plap 
+3065 203a3049 branch idle_exit ,blank 
+3066 60030040 store 6 ,mem_plap 
+
+idle_create_conn_cont:
+3067 18000425 force lmp_version_req ,temp 
+
+idle_start_page:
+3068 793f8025 set0 mark_ext_patch ,mark 
+3069 4484c001 bpatch patch01_1 ,mem_patch01 
+306a 680080f3 fetch 1 ,mem_page_mode 
+306b 203a306f branch idle_page_mode_r0 ,blank 
+306c 1fe9fe00 lshift3 pdata ,pdata 
+306d 1ff27e00 lshift4 pdata ,pdata 
+306e 1fe0ffff increase -1 ,pdata 
+
+idle_page_mode_r0:
+306f 6000c146 store 1 ,mem_npage 
+3070 600080f2 store 1 ,mem_npage_index 
+3071 70008d1f jam 31 ,mem_nfreq_index_page 
+3072 793f800c set0 mark_page_trainb ,mark 
+3073 204032d6 call context_new 
+3074 2422b090 nbranch idle_page_fail ,zero 
+3075 20403bd1 call get_free_amaddr 
+3076 60008077 store 1 ,mem_amaddr 
+3077 6008807c storet 1 ,mem_lmo_opcode2 
+3078 68034274 fetch 6 ,mem_hci_plap 
+3079 60030040 store 6 ,mem_plap 
+307a 793f8025 set0 mark_ext_patch ,mark 
+307b 44854001 bpatch patch01_2 ,mem_patch01 
+307c 18007e00 force 0 ,pdata 
+307d 2841fe01 compare lmp_name_req ,temp ,0xff 
+307e 7d20fe05 nsetflag true ,state_init_seq ,pdata 
+307f 79207e03 set1 state_inpage ,pdata 
+3080 60008030 store 1 ,mem_state 
+3081 700b7d03 jam bt_evt_reconn_started ,mem_fifo_temp 
+3082 20407c27 call ui_ipc_send_event 
+3083 18007e00 force 0 ,pdata 
+3084 7920fe04 setflag true ,smap_name_req ,pdata 
+3085 6000804c store 1 ,mem_state_map 
+3086 58000000 setarg 0 
+3087 79207e01 set1 mode_master ,pdata 
+3088 60008031 store 1 ,mem_mode 
+3089 7834fc00 enable master 
+308a 204032bd call context_save 
+308b 7854fc00 disable master 
+308c 18000e04 force page_length_timer ,queue 
+308d 68014159 fetch 2 ,mem_page_to 
+308e 20407e4c call timer_init 
+308f 20203049 branch idle_exit 
+
+idle_page_fail:
+3090 793f8025 set0 mark_ext_patch ,mark 
+3091 4485c001 bpatch patch01_3 ,mem_patch01 
+3092 68034274 fetch 6 ,mem_hci_plap 
+3093 60030040 store 6 ,mem_plap 
+3094 2841fe01 compare lmp_name_req ,temp ,0xff 
+3095 2020b099 branch idle_name_fail ,true 
+3096 18000407 force hci_error_memory_full ,temp 
+3097 20404826 call hci_send_connection_error 
+3098 20203049 branch idle_exit 
+
+idle_name_fail:
+3099 d8a00103 arg mem_tmp_buffer ,contw 
+309a df200008 arg 8 ,loopcnt 
+309b 20407e3b call memset0 
+309c 18000e07 force hci_error_memory_full ,queue 
+309d 20404898 call hci_send_name 
+309e 700b7d04 jam bt_evt_reconn_failed ,mem_fifo_temp 
+309f 20407c27 call ui_ipc_send_event 
+30a0 20203049 branch idle_exit 
+
+inquiry_dispatch:
+30a1 c68e0000 rtnmark0 mark_inquiry_on 
+30a2 18000e02 force inquiry_length_timer ,queue 
+30a3 20407e53 call timer_check 
+30a4 7d3a001c nsetflag blank ,mark_inquiry_on ,mark 
+30a5 243a30a7 nbranch inquiry_start ,blank 
+30a6 20600000 rtn 
+
+inquiry_start:
+30a7 793f8025 set0 mark_ext_patch ,mark 
+30a8 44864001 bpatch patch01_4 ,mem_patch01 
+30a9 6809415b fetcht 2 ,mem_inq_window 
+30aa 18000e04 force 4 ,queue 
+30ab 2040383d call sniff_check_window 
+30ac 20740000 rtn user 
+30ad 20403a12 call afh_clear 
+30ae 18004800 force 0 ,freq_mode 
+
+inquiry_restart:
+30af 20618000 rtn timeout 
+30b0 793f800b set0 mark_fhs_already_good ,mark 
+30b1 793f8000 set0 mark_fhs_eir ,mark 
+
+inquiry_rx_restart:
+30b2 1c40c201 add clkn_bt ,1 ,bt_clk 
+30b3 280ffe1e isolate1 mark_inquiry_trainb ,mark 
+30b4 7920c802 setflag true ,2 ,freq_mode 
+30b5 2c200400 compare 0x00 ,bt_clk ,0x02 
+30b6 2420b0d3 nbranch inquiry_receive ,true 
+
+inquiry_transmit:
+30b7 793f8025 set0 mark_ext_patch ,mark 
+30b8 4486c001 bpatch patch01_5 ,mem_patch01 
+30b9 68008012 fetch 1 ,mem_inquiry_transmit 
+30ba 1fe0fe01 increase 1 ,pdata 
+30bb 60008012 store 1 ,mem_inquiry_transmit 
+30bc 20403a49 call fetch_giac 
+30bd 20403a42 call tx_radio_freq 
+30be 20403a66 call fetch_diac 
+30bf 20403bae call start_transmitter 
+30c0 20403bb4 call start_tx_native 
+30c1 20403bc5 call send_access_word 
+30c2 2040375c call end_of_packet 
+30c3 204030c5 call inquiry_check_train 
+30c4 202030af branch inquiry_restart 
+
+inquiry_check_train:
+30c5 793f8025 set0 mark_ext_patch ,mark 
+30c6 44874001 bpatch patch01_6 ,mem_patch01 
+30c7 6800808c fetch 1 ,mem_nfreq_index_inq 
+30c8 1fe0ffff increase -1 ,pdata 
+30c9 6000808c store 1 ,mem_nfreq_index_inq 
+30ca 20610000 rtn positive 
+30cb 70008c1f jam 31 ,mem_nfreq_index_inq 
+30cc 6800808e fetch 1 ,mem_ninqy_index 
+30cd 1fe0ffff increase -1 ,pdata 
+30ce 6000808e store 1 ,mem_ninqy_index 
+30cf 20610000 rtn positive 
+30d0 7940001e setflip mark_inquiry_trainb ,mark 
+30d1 70008eff jam param_ninquiry ,mem_ninqy_index 
+30d2 20600000 rtn 
+
+inquiry_receive:
+30d3 793f8025 set0 mark_ext_patch ,mark 
+30d4 4487c001 bpatch patch01_7 ,mem_patch01 
+30d5 20403a49 call fetch_giac 
+30d6 20403a3b call rx_radio_freq 
+30d7 20403a66 call fetch_diac 
+30d8 20403bba call start_rx_native 
+30d9 20403b3a call start_receiver 
+30da 20403b63 call wait_access_clkn_rt 
+30db 202c30de branch inquiry_sync ,sync 
+30dc 204030c5 call inquiry_check_train 
+30dd 202030b2 branch inquiry_rx_restart 
+
+inquiry_sync:
+30de 793f8025 set0 mark_ext_patch ,mark 
+30df 44884002 bpatch patch02_0 ,mem_patch02 
+30e0 20403af3 call save_rssi 
+30e1 20403bcd call scan_mode_whiten 
+30e2 204035e1 call receive_packet_whitened 
+30e3 793f8001 set0 mark_rxbuf_inuse ,mark 
+30e4 c6858000 rtnmark0 mark_fhs_already_good 
+
+inquiry_receive_rtn:
+30e5 793f8025 set0 mark_ext_patch ,mark 
+30e6 4488c002 bpatch patch02_1 ,mem_patch02 
+30e7 6800c2a4 fetch 1 ,mem_at_using_flag 
+30e8 c2804221 bbit1 at_flag_inq ,at_inquiry_reply 
+30e9 2040477b call hci_inquiry_reply 
+
+inquiry_receive_eir_rtn:
+30ea 68008013 fetch 1 ,mem_inquiry_rcv 
+30eb 1fe0fe01 increase 1 ,pdata 
+30ec 60008013 store 1 ,mem_inquiry_rcv 
+30ed 20600000 rtn 
+
+inquiry_receive_eir:
+30ee 793f800b set0 mark_fhs_already_good ,mark 
+30ef 204030fe call rf_setup_time_slave_slot_eir 
+30f0 20403a49 call fetch_giac 
+30f1 20403a3b call rx_radio_freq 
+30f2 204034e1 call init_rx_packet_flags 
+30f3 20403bba call start_rx_native 
+30f4 20403b3a call start_receiver 
+30f5 20403b63 call wait_access_clkn_rt 
+30f6 202c30f8 branch inquiry_receive_eir_packet ,sync 
+30f7 20600000 rtn 
+
+inquiry_receive_eir_packet:
+30f8 20403bcd call scan_mode_whiten 
+30f9 204035e1 call receive_packet_whitened 
+30fa 793f8001 set0 mark_rxbuf_inuse ,mark 
+30fb 202330e5 branch inquiry_receive_rtn ,crc_failed 
+30fc 2040479b call hci_inquiry_reply_eir 
+30fd 202030ea branch inquiry_receive_eir_rtn 
+
+rf_setup_time_slave_slot_eir:
+30fe d9600600 arg param_rf_setup ,timeup 
+
+rf_setup_time_eir:
+30ff 34730200 until clkn_rt ,meet 
+3100 1c417e03 and clkn_bt ,3 ,pdata 
+3101 c080b0ff bne 1 ,rf_setup_time_eir 
+3102 20600000 rtn 
+
+master_page:
+3103 793f8025 set0 mark_ext_patch ,mark 
+3104 44894002 bpatch patch02_2 ,mem_patch02 
+3105 7834fc00 enable master 
+3106 78387c00 enable clknt 
+3107 68014155 fetch 2 ,mem_page_interval 
+3108 203a310c branch master_page_no_interval ,blank 
+3109 18000e0d force page_interval_timer ,queue 
+310a 20407e53 call timer_check 
+310b 247a0000 nrtn blank 
+
+master_page_no_interval:
+310c 793f8025 set0 mark_ext_patch ,mark 
+310d 4489c002 bpatch patch02_3 ,mem_patch02 
+310e 68094157 fetcht 2 ,mem_page_window 
+310f 18000e28 force 40 ,queue 
+3110 2040383d call sniff_check_window 
+3111 2034314e branch page_exit ,user 
+3112 18000e04 force page_length_timer ,queue 
+3113 20407e53 call timer_check 
+3114 243a3127 nbranch page_start ,blank 
+3115 6800804c fetch 1 ,mem_state_map 
+3116 c282311a bbit1 smap_name_req ,master_npage_timeout 
+3117 18000404 force hci_error_page_timeout ,temp 
+3118 20404826 call hci_send_connection_error 
+3119 2020311f branch master_page_timeout 
+
+master_npage_timeout:
+311a d8a00103 arg mem_tmp_buffer ,contw 
+311b df200008 arg 8 ,loopcnt 
+311c 20407e3b call memset0 
+311d 18000e04 force hci_error_page_timeout ,queue 
+311e 20404898 call hci_send_name 
+
+master_page_timeout:
+311f 793f8025 set0 mark_ext_patch ,mark 
+3120 448a4002 bpatch patch02_4 ,mem_patch02 
+3121 70003000 jam 0 ,mem_state 
+3122 20405b63 call init_lmp_work 
+3123 7047f300 jam 0 ,memui_reconnect_mode 
+3124 700b7d13 jam bt_evt_reconn_page_timeout ,mem_fifo_temp 
+3125 20407c27 call ui_ipc_send_event 
+3126 2020314e branch page_exit 
+
+page_start:
+3127 793f8025 set0 mark_ext_patch ,mark 
+3128 448ac002 bpatch patch02_5 ,mem_patch02 
+3129 18001600 force 0 ,timeup 
+312a 34730200 until clkn_rt ,meet 
+312b 680080f4 fetch 1 ,mem_page_clk 
+312c 1fe0ffff increase -1 ,pdata 
+312d 9c42fe00 ixor clkn_bt ,pdata 
+312e 2fe00600 compare 0 ,pdata ,3 
+312f 2420b127 nbranch page_start ,true 
+3130 18827e00 deposit am_addr 
+3131 6000818b store 1 ,mem_fhs_am_addr 
+3132 18004c00 force 0 ,n_tx_slot 
+3133 18004800 force 0 ,freq_mode 
+
+page_restart:
+3134 793f8025 set0 mark_ext_patch ,mark 
+3135 448b4002 bpatch patch02_6 ,mem_patch02 
+3136 2021b14e branch page_exit ,timeout 
+3137 20403a4d call fetch_page_bt_adr 
+3138 d9600600 arg param_rf_setup ,timeup 
+3139 34730200 until clkn_rt ,meet 
+
+page_rx_restart:
+313a 793f8025 set0 mark_ext_patch ,mark 
+313b 448bc002 bpatch patch02_7 ,mem_patch02 
+313c 680200f4 fetch 4 ,mem_page_clk 
+313d 98004200 iforce bt_clk 
+313e 1fe0fe01 increase 1 ,pdata 
+313f 600200f4 store 4 ,mem_page_clk 
+3140 280ffe0c isolate1 mark_page_trainb ,mark 
+3141 7920c802 setflag true ,2 ,freq_mode 
+3142 2c200400 compare 0x00 ,bt_clk ,0x02 
+3143 2420b164 nbranch page_receive ,true 
+3144 6800800c fetch 1 ,mem_page_transmit 
+3145 1fe0fe01 increase 1 ,pdata 
+3146 6000800c store 1 ,mem_page_transmit 
+3147 20403a42 call tx_radio_freq 
+3148 20403bae call start_transmitter 
+3149 20403bb4 call start_tx_native 
+314a 20403bc5 call send_access_word 
+314b 2040375c call end_of_packet 
+314c 20403155 call page_check_train 
+314d 20203134 branch page_restart 
+
+master_dispatch_exit:
+
+page_exit:
+314e 793f8025 set0 mark_ext_patch ,mark 
+314f 448c4003 bpatch patch03_0 ,mem_patch03 
+3150 7854fc00 disable master 
+3151 68014155 fetch 2 ,mem_page_interval 
+3152 207a0000 rtn blank 
+3153 18000e0d force page_interval_timer ,queue 
+3154 20207e4c branch timer_init 
+
+page_check_train:
+3155 793f8025 set0 mark_ext_patch ,mark 
+3156 448cc003 bpatch patch03_1 ,mem_patch03 
+3157 6800808d fetch 1 ,mem_nfreq_index_page 
+3158 1fe0ffff increase -1 ,pdata 
+3159 6000808d store 1 ,mem_nfreq_index_page 
+315a 20610000 rtn positive 
+315b 70008d1f jam 31 ,mem_nfreq_index_page 
+315c 680080f2 fetch 1 ,mem_npage_index 
+315d 1fe0ffff increase -1 ,pdata 
+315e 600080f2 store 1 ,mem_npage_index 
+315f 20610000 rtn positive 
+3160 7940000c setflip mark_page_trainb ,mark 
+3161 6800c146 fetch 1 ,mem_npage 
+3162 600080f2 store 1 ,mem_npage_index 
+3163 20600000 rtn 
+
+page_receive:
+3164 793f8025 set0 mark_ext_patch ,mark 
+3165 448d4003 bpatch patch03_2 ,mem_patch03 
+3166 20403a3b call rx_radio_freq 
+3167 20403bba call start_rx_native 
+3168 20403b3a call start_receiver 
+3169 20403b63 call wait_access_clkn_rt 
+316a 202c316d branch page_sync ,sync 
+316b 20403155 call page_check_train 
+316c 2020313a branch page_rx_restart 
+
+page_sync:
+316d 2040375c call end_of_packet 
+316e 6800800d fetch 1 ,mem_page_rcv 
+316f 1fe0fe01 increase 1 ,pdata 
+3170 6000800d store 1 ,mem_page_rcv 
+3171 18003600 force 0 ,stop_watch 
+3172 680200f4 fetch 4 ,mem_page_clk 
+
+page_send_fhs:
+3173 793f8025 set0 mark_ext_patch ,mark 
+3174 448dc003 bpatch patch03_3 ,mem_patch03 
+3175 20403bac call rf_setup_time_master_slot 
+3176 20403a4d call fetch_page_bt_adr 
+3177 1cc0cc01 increase 1 ,n_tx_slot 
+
+page_send_fhs_continue:
+3178 1c2143fd and_into 0x1fd ,bt_clk 
+3179 1c8149fc and_into 0x1fc ,freq_mode 
+317a 20403a42 call tx_radio_freq 
+317b 20403bae call start_transmitter 
+317c 20403bb4 call start_tx_native 
+317d 20403bc5 call send_access_word 
+317e 1c427e00 deposit clkn_bt 
+317f 6002016b store 4 ,mem_clkn_bt 
+3180 18000800 force 0 ,am_addr 
+3181 18000202 force type_fhs ,type 
+3182 20403bcd call scan_mode_whiten 
+3183 204038c1 call transmit_packet_whitened 
+
+page_wait_fhs_reply:
+3184 793f8025 set0 mark_ext_patch ,mark 
+3185 448e4003 bpatch patch03_4 ,mem_patch03 
+3186 20403baa call rf_setup_time_slave_slot 
+3187 1c21c202 or_into 0x02 ,bt_clk 
+3188 1c8149fc and_into 0x1fc ,freq_mode 
+3189 20403a3b call rx_radio_freq 
+318a 20403bba call start_rx_native 
+318b 20403b3a call start_receiver 
+318c 20403b63 call wait_access_clkn_rt 
+318d 204c375c call end_of_packet ,sync 
+318e 202c3194 branch page_wait_fhs_reply_ok ,sync 
+318f 68008010 fetch 1 ,mem_fhs_wait_counter 
+3190 203a3134 branch page_restart ,blank 
+3191 1fe0ffff increase -1 ,pdata 
+3192 60008010 store 1 ,mem_fhs_wait_counter 
+3193 20203173 branch page_send_fhs 
+
+page_wait_fhs_reply_ok:
+3194 793f8025 set0 mark_ext_patch ,mark 
+3195 448ec003 bpatch patch03_5 ,mem_patch03 
+3196 6800800e fetch 1 ,mem_page_rcv_fhs 
+3197 1fe0fe01 increase 1 ,pdata 
+3198 6000800e store 1 ,mem_page_rcv_fhs 
+3199 204034ed call prepare_newconn 
+
+master_newconn_loop:
+319a 2040338b call master_newconn_once 
+319b 202c319f branch newconn_poll_responded ,sync 
+319c 2040350e call new_conn_timeout 
+319d 243a319a nbranch master_newconn_loop ,blank 
+319e 20203134 branch page_restart 
+
+newconn_poll_responded:
+319f 793f8025 set0 mark_ext_patch ,mark 
+31a0 448f4003 bpatch patch03_6 ,mem_patch03 
+31a1 68008030 fetch 1 ,mem_state 
+31a2 793ffe03 set0 state_inpage ,pdata 
+31a3 60008030 store 1 ,mem_state 
+31a4 204034f9 call newconn_init 
+31a5 7854fc00 disable master 
+31a6 20600000 rtn 
+
+master_dispatch:
+31a7 793f8025 set0 mark_ext_patch ,mark 
+31a8 448fc003 bpatch patch03_7 ,mem_patch03 
+31a9 7834fc00 enable master 
+31aa 78387c00 enable clknt 
+31ab 2040324e call role_switch_master 
+31ac 20740000 rtn user 
+31ad 20403e25 call check_bt_disabled 
+31ae 20403bac call rf_setup_time_master_slot 
+31af 1c40c201 add clkn_bt ,1 ,bt_clk 
+31b0 20403a54 call fetch_self_bt_adr 
+31b1 18004803 force 0x03 ,freq_mode 
+31b2 2040327c call load_esco 
+31b3 20406a54 call get_sco_data 
+31b4 20406e10 call scheduler_tx_l2cap_pkt 
+31b5 20403547 call prepare_tx 
+31b6 20403a42 call tx_radio_freq 
+31b7 20403bae call start_transmitter 
+31b8 20403bb4 call start_tx_native 
+31b9 20403bc5 call send_access_word 
+31ba 204038bf call transmit_packet 
+
+master_loop:
+31bb 793f8025 set0 mark_ext_patch ,mark 
+31bc 44904004 bpatch patch04_0 ,mem_patch04 
+31bd 20405b78 call parse_lmp 
+31be 20404995 call process_cmd 
+31bf 204048a9 call hci_send_num_complete_packets 
+31c0 2040337c call master_conn_recv_packet 
+31c1 2436b1c7 nbranch master_notmatch ,match 
+31c2 20403bec call supervision_flush 
+31c3 20403870 call parse_l2cap 
+31c4 6800800f fetch 1 ,mem_master_rcvcnt 
+31c5 1fe0fe01 increase 1 ,pdata 
+31c6 6000800f store 1 ,mem_master_rcvcnt 
+
+master_notmatch:
+31c7 793f8025 set0 mark_ext_patch ,mark 
+31c8 4490c004 bpatch patch04_1 ,mem_patch04 
+31c9 20406dec call scheduler_process 
+31ca 204031d5 call check_master_disconnect 
+31cb 24748000 nrtn master 
+31cc 20403812 call check_attempt 
+31cd 243a31d2 nbranch master_attempt ,blank 
+
+master_exit:
+31ce 20406a5c call process_sco_data 
+31cf 20403290 call restore_esco 
+31d0 7854fc00 disable master 
+31d1 20600000 rtn 
+
+master_attempt:
+31d2 20403547 call prepare_tx 
+31d3 20403371 call master_conn_send_packet 
+31d4 202031bb branch master_loop 
+
+check_master_disconnect:
+31d5 2036b1d8 branch check_master_match ,match 
+31d6 20403be2 call supervision_update 
+31d7 202131e6 branch master_disconnect ,positive 
+
+check_master_match:
+31d8 20403204 call check_disconnect_timeout 
+31d9 243431e6 nbranch master_disconnect ,user 
+31da 6800804c fetch 1 ,mem_state_map 
+31db c4020000 rtnbit0 smap_name_req 
+31dc c3818000 rtnbit1 smap_name_res 
+31dd 6800804b fetch 1 ,mem_op 
+31de c3818000 rtnbit1 op_disconn 
+31df 2040320d call conn_timer_expired 
+31e0 247a0000 nrtn blank 
+31e1 68008178 fetch 1 ,mem_nameres_cnt 
+31e2 1fe0ffff increase -1 ,pdata 
+31e3 60008178 store 1 ,mem_nameres_cnt 
+31e4 247a0000 nrtn blank 
+31e5 20205ed5 branch lmp_disconnect 
+
+master_disconnect:
+31e6 793f8025 set0 mark_ext_patch ,mark 
+31e7 44914004 bpatch patch04_2 ,mem_patch04 
+31e8 20403516 call quit_connection 
+31e9 7854fc00 disable master 
+31ea 6800804c fetch 1 ,mem_state_map 
+31eb c28231f2 bbit1 smap_name_req ,master_name_disconnect 
+31ec 68008030 fetch 1 ,mem_state 
+31ed c30231f0 bbit0 state_conn_comp ,master_disconnect_quiet 
+31ee 68088046 fetcht 1 ,mem_conn_handle 
+31ef 202048c4 branch hci_send_disconn_complete 
+
+master_disconnect_quiet:
+31f0 18000408 force hci_error_connection_timeout ,temp 
+31f1 20204826 branch hci_send_connection_error 
+
+master_name_disconnect:
+31f2 18000e00 force hci_success ,queue 
+31f3 6800804c fetch 1 ,mem_state_map 
+31f4 c281c898 bbit1 smap_name_res ,hci_send_name 
+
+master_name_error:
+31f5 18000e04 force hci_error_page_timeout ,queue 
+31f6 d8a00103 arg mem_tmp_buffer ,contw 
+31f7 df200008 arg 8 ,loopcnt 
+31f8 20407e3b call memset0 
+31f9 20204898 branch hci_send_name 
+
+disconnect_stop_sco:
+31fa 793f8025 set0 mark_ext_patch ,mark 
+31fb 4491c004 bpatch patch04_3 ,mem_patch04 
+31fc 68008030 fetch 1 ,mem_state 
+31fd c4010000 rtnbit0 state_insco 
+31fe 68088046 fetcht 1 ,mem_conn_handle 
+31ff 680080ac fetch 1 ,mem_sco_asso_handle 
+3200 98467c00 isub temp ,null 
+3201 24628000 nrtn zero 
+3202 20403869 call stop_esco 
+3203 20203293 branch restore_esco_check_no_mark 
+
+check_disconnect_timeout:
+3204 793f8025 set0 mark_ext_patch ,mark 
+3205 44924004 bpatch patch04_4 ,mem_patch04 
+3206 78347c00 enable user 
+3207 6800804b fetch 1 ,mem_op 
+3208 c4018000 rtnbit0 op_disconn 
+3209 2040320d call conn_timer_expired 
+320a 247a0000 nrtn blank 
+
+disable_usr:
+320b 78547c00 disable user 
+320c 20600000 rtn 
+
+conn_timer_expired:
+320d 68008072 fetch 1 ,mem_conn_timer 
+320e 1fe0ffff increase -1 ,pdata 
+320f 60008072 store 1 ,mem_conn_timer 
+3210 20600000 rtn 
+
+linkkey_ready:
+3211 793f8025 set0 mark_ext_patch ,mark 
+3212 4492c004 bpatch patch04_5 ,mem_patch04 
+3213 68008030 fetch 1 ,mem_state 
+3214 c283b21f bbit1 state_linkkey ,linkkey_set 
+3215 6800c132 fetch 1 ,mem_device_option 
+3216 c000b21d beq dvc_op_hci ,linkkey_send_hci 
+3217 680087e1 fetch 1 ,mem_pairing_auth 
+3218 203a321f branch linkkey_set ,blank 
+3219 7007e100 jam defalt_pairing_auth ,mem_pairing_auth 
+321a 700b7d18 jam bt_evt_linkkey_generate ,mem_fifo_temp 
+321b 20407c27 call ui_ipc_send_event 
+321c 2020321f branch linkkey_set 
+
+linkkey_send_hci:
+321d 20406216 call check_localsm 
+321e 2440c852 ncall hci_send_linkkey_notification ,true 
+
+linkkey_set:
+321f 793f8025 set0 mark_ext_patch ,mark 
+3220 44934004 bpatch patch04_6 ,mem_patch04 
+3221 204032f0 call context_traverse_linkkey 
+3222 68008030 fetch 1 ,mem_state 
+3223 79207e07 set1 state_linkkey ,pdata 
+3224 60008030 store 1 ,mem_state 
+3225 70425e01 jam 1 ,mem_link_key_exists 
+3226 68008055 fetch 1 ,mem_conn_sm 
+3227 c08b3228 bne conn_sm_pairing ,linkkey_set_continue 
+
+linkkey_set_continue:
+3228 20600000 rtn 
+
+generate_linkkey_continue:
+3229 7007e101 jam pairing_auth ,mem_pairing_auth 
+
+clear_linkstate:
+322a 68008030 fetch 1 ,mem_state 
+322b 793ffe07 set0 state_linkkey ,pdata 
+322c 60008030 store 1 ,mem_state 
+322d 20600000 rtn 
+
+role_switch_check:
+322e 793f8025 set0 mark_ext_patch ,mark 
+322f 4493c004 bpatch patch04_7 ,mem_patch04 
+3230 78547c00 disable user 
+3231 68008030 fetch 1 ,mem_state 
+3232 c4008000 rtnbit0 state_insniff 
+3233 68010032 fetch 2 ,mem_tsniff 
+3234 247a0000 nrtn blank 
+3235 68020034 fetch 4 ,mem_sniff_anchor 
+3236 20383239 branch role_switch_clkn ,clknt 
+3237 9d067e00 isub clke_bt ,pdata 
+3238 2020323a branch role_switch_clke 
+
+role_switch_clkn:
+3239 9c467e00 isub clkn_bt ,pdata 
+
+role_switch_clke:
+323a 1fe67c04 sub pdata ,4 ,null 
+323b 24610000 nrtn positive 
+323c 68008030 fetch 1 ,mem_state 
+323d 793ffe01 set0 state_insniff ,pdata 
+323e 60008030 store 1 ,mem_state 
+323f 78347c00 enable user 
+3240 20600000 rtn 
+
+role_switch_prepare:
+3241 1fe20400 copy pdata ,temp 
+3242 793f8025 set0 mark_ext_patch ,mark 
+3243 44944005 bpatch patch05_0 ,mem_patch05 
+3244 60020034 store 4 ,mem_sniff_anchor 
+
+role_switch_prepare0:
+3245 70474801 jam switch_flag_accept ,mem_switch_flag 
+3246 68008030 fetch 1 ,mem_state 
+3247 79207e01 set1 state_insniff ,pdata 
+3248 60008030 store 1 ,mem_state 
+3249 18007e00 force 0 ,pdata 
+324a 60010032 store 2 ,mem_tsniff 
+324b 70008a0a jam 10 ,mem_current_sniff_attempt 
+324c 70007301 jam 1 ,mem_sniff_attempt 
+324d 20600000 rtn 
+
+role_switch_master:
+324e 793f8025 set0 mark_ext_patch ,mark 
+324f 4494c005 bpatch patch05_1 ,mem_patch05 
+3250 2040322e call role_switch_check 
+3251 24740000 nrtn user 
+3252 78547c00 disable user 
+3253 70001120 jam param_newconnto ,mem_newconnto_counter 
+3254 793f800b set0 mark_fhs_already_good ,mark 
+
+roles_waitfhs_loop:
+3255 20403bac call rf_setup_time_master_slot 
+3256 2040337f call master_recv_packet 
+3257 c505b263 bmark1 mark_fhs_already_good ,roles_replyto_fhs 
+3258 2040350e call new_conn_timeout 
+3259 243a3255 nbranch roles_waitfhs_loop ,blank 
+
+role_switch_fail_master:
+325a 793f8025 set0 mark_ext_patch ,mark 
+325b 44954005 bpatch patch05_2 ,mem_patch05 
+325c 78547c00 disable user 
+325d 1c427e00 deposit clkn_bt 
+325e 6002416a store 4 ,mem_next_btclk 
+325f 78387c00 enable clknt 
+3260 7834fc00 enable master 
+3261 700b7d2a jam bt_evt_switch_fail_master ,mem_fifo_temp 
+3262 20207c27 branch ui_ipc_send_event 
+
+roles_replyto_fhs:
+3263 793f8025 set0 mark_ext_patch ,mark 
+3264 4495c005 bpatch patch05_3 ,mem_patch05 
+3265 20403baa call rf_setup_time_slave_slot 
+3266 20403374 call master_send_packet 
+3267 78587c00 disable clknt 
+3268 7854fc00 disable master 
+3269 20403982 call apply_switch_clke 
+326a 204034ed call prepare_newconn 
+
+roles_newconns_loop:
+326b 793f8025 set0 mark_ext_patch ,mark 
+326c 44964005 bpatch patch05_4 ,mem_patch05 
+326d 20403539 call slave_newconn_once 
+326e 2036b272 branch roles_newconns_responded ,match 
+326f 2040350e call new_conn_timeout 
+3270 243a326b nbranch roles_newconns_loop ,blank 
+3271 2020325a branch role_switch_fail_master 
+
+roles_newconns_responded:
+3272 18000401 force 1 ,temp 
+3273 2040487f call hci_send_role_change 
+3274 68008031 fetch 1 ,mem_mode 
+3275 793ffe01 set0 mode_master ,pdata 
+3276 60008031 store 1 ,mem_mode 
+3277 20403bec call supervision_flush 
+3278 204039ac call calc_clke_offset 
+3279 78347c00 enable user 
+327a 700b7d2b jam bt_evt_switch_success_master ,mem_fifo_temp 
+327b 20207c27 branch ui_ipc_send_event 
+
+load_esco:
+327c 793f8025 set0 mark_ext_patch ,mark 
+327d 4496c005 bpatch patch05_5 ,mem_patch05 
+327e c6838000 rtnmark0 mark_esco 
+327f 68008030 fetch 1 ,mem_state 
+3280 c4010000 rtnbit0 state_insco 
+
+load_esco_do:
+3281 20403c23 call init_esco_ibuff 
+3282 680080b3 fetch 1 ,mem_esco_arq 
+3283 68088047 fetcht 1 ,mem_arq 
+3284 600880b4 storet 1 ,mem_esco_saved_arq 
+3285 60008047 store 1 ,mem_arq 
+3286 18827e00 deposit am_addr 
+3287 600080b2 store 1 ,mem_saved_amaddr 
+3288 6800c1f9 fetch 1 ,mem_esco_addr 
+3289 98000800 iforce am_addr 
+328a 793f8008 set0 mark_esco_rxok ,mark 
+328b 6800c165 fetch 1 ,mem_last_type 
+328c 6000c167 store 1 ,mem_last_type_saved 
+328d 6800c166 fetch 1 ,mem_last_type_esco 
+328e 6000c165 store 1 ,mem_last_type 
+328f 20600000 rtn 
+
+restore_esco:
+3290 793f8025 set0 mark_ext_patch ,mark 
+3291 44974005 bpatch patch05_6 ,mem_patch05 
+3292 c6838000 rtnmark0 mark_esco 
+
+restore_esco_check_no_mark:
+3293 20403847 call check_esco_amaddr 
+3294 24608000 nrtn true 
+
+restore_esco_do:
+3295 20403799 call clear_got_tx 
+3296 680080b4 fetch 1 ,mem_esco_saved_arq 
+3297 68088047 fetcht 1 ,mem_arq 
+3298 60008047 store 1 ,mem_arq 
+3299 600880b3 storet 1 ,mem_esco_arq 
+329a 680080b2 fetch 1 ,mem_saved_amaddr 
+329b 98000800 iforce am_addr 
+329c 6800c165 fetch 1 ,mem_last_type 
+329d 6000c166 store 1 ,mem_last_type_esco 
+329e 6800c167 fetch 1 ,mem_last_type_saved 
+329f 6000c165 store 1 ,mem_last_type 
+32a0 5800ffff setarg 0xffff 
+32a1 60014168 store 2 ,mem_retransmission_cnt 
+32a2 20600000 rtn 
+
+context_load:
+32a3 793f8025 set0 mark_ext_patch ,mark 
+32a4 4497c005 bpatch patch05_7 ,mem_patch05 
+32a5 79200009 set1 mark_context ,mark 
+32a6 1a227e00 deposit rega 
+32a7 6001001e store 2 ,mem_context_ptr 
+32a8 18007250 force context_size ,loopcnt 
+32a9 d8a003c0 arg mem_le_state ,contw 
+32aa 1a208c01 add rega ,coffset_mode ,contr 
+32ab e8c08000 ifetch 1 ,contr 
+32ac 1a220c00 copy rega ,contr 
+32ad c2807e45 bbit1 mode_le ,memcpy 
+32ae d8a00030 arg mem_state ,contw 
+32af 20407e45 call memcpy 
+32b0 78577c00 disable attempt 
+32b1 68008077 fetch 1 ,mem_amaddr 
+32b2 98000800 iforce am_addr 
+32b3 70008a01 jam 1 ,mem_current_sniff_attempt 
+32b4 2034b2b6 branch context_load_master ,master 
+32b5 70008a01 jam 1 ,mem_current_sniff_attempt 
+
+context_load_master:
+32b6 68008030 fetch 1 ,mem_state 
+32b7 c4008000 rtnbit0 state_insniff 
+32b8 68008073 fetch 1 ,mem_sniff_attempt 
+32b9 6000808a store 1 ,mem_current_sniff_attempt 
+32ba 68008074 fetch 1 ,mem_sniff_timeout 
+32bb 6000808b store 1 ,mem_current_sniff_timeout 
+32bc 20600000 rtn 
+
+context_save:
+32bd 793f8025 set0 mark_ext_patch ,mark 
+32be 44984006 bpatch patch06_0 ,mem_patch06 
+32bf 6801001e fetch 2 ,mem_context_ptr 
+32c0 98000a00 iforce contw 
+32c1 18007250 force context_size ,loopcnt 
+32c2 d8c003c0 arg mem_le_state ,contr 
+32c3 203b7e45 branch memcpy ,le 
+32c4 d8c00030 arg mem_state ,contr 
+32c5 20207e45 branch memcpy 
+
+context_get_next:
+32c6 68088015 fetcht 1 ,mem_current_context 
+32c7 df200003 arg context_num ,loopcnt 
+
+context_get_next_loop:
+32c8 18408401 increase 1 ,temp 
+32c9 2841fe03 compare context_num ,temp ,0xff 
+32ca 2420b2cc nbranch context_get_next_cont ,true 
+32cb d8400000 arg 0 ,temp 
+
+context_get_next_cont:
+32cc 60088015 storet 1 ,mem_current_context 
+32cd 184ffe50 mul32 temp ,context_size ,pdata 
+32ce da204040 arg mem_context ,rega 
+32cf 9a20a200 iadd rega ,rega 
+32d0 ea208000 ifetch 1 ,rega 
+32d1 c280b2d4 bbit1 state_insniff ,context_get_next_sniff 
+32d2 c3800000 rtnbit1 state_inconn 
+32d3 c3818000 rtnbit1 state_inpage 
+
+context_get_next_sniff:
+32d4 c20032c8 loop context_get_next_loop 
+32d5 20600000 rtn 
+
+context_new:
+32d6 793f8025 set0 mark_ext_patch ,mark 
+32d7 4498c006 bpatch patch06_1 ,mem_patch06 
+32d8 da60330b arg context_search_empty ,regc 
+32d9 20403301 call context_search 
+32da 24628000 nrtn zero 
+32db 1a227e00 deposit rega 
+32dc 6001001e store 2 ,mem_context_ptr 
+32dd 18007c00 force 0 ,null 
+32de 20600000 rtn 
+
+context_check_all_wack:
+32df 20403847 call check_esco_amaddr 
+32e0 2020b2e7 branch context_check_esco_wack ,true 
+32e1 6801001e fetch 2 ,mem_context_ptr 
+32e2 1fe08a17 add pdata ,coffset_arq ,contw 
+32e3 68008047 fetch 1 ,mem_arq 
+32e4 e0a08000 istore 1 ,contw 
+32e5 da603334 arg context_check_a_wack ,regc 
+32e6 20203301 branch context_search 
+
+context_check_esco_wack:
+32e7 68008047 fetch 1 ,mem_arq 
+32e8 2feffe03 isolate1 wack ,pdata 
+32e9 2020b2ec branch context_esco_wack ,true 
+32ea 18007c01 force 1 ,null 
+32eb 20600000 rtn 
+
+context_esco_wack:
+32ec 18007c00 force 0 ,null 
+32ed 20600000 rtn 
+
+context_check_idle:
+32ee da603331 arg context_check_inconn ,regc 
+32ef 20203301 branch context_search 
+
+context_traverse_linkkey:
+32f0 6809001e fetcht 2 ,mem_context_ptr 
+32f1 da603366 arg context_traverse_clearkey ,regc 
+32f2 20203301 branch context_search 
+
+context_traverse_max_slot:
+32f3 6809001e fetcht 2 ,mem_context_ptr 
+32f4 da603359 arg context_traverse_mslot ,regc 
+32f5 20203301 branch context_search 
+
+context_search_conn_handle:
+32f6 6808c273 fetcht 1 ,mem_hci_conn_handle 
+
+context_search_conn_handle2:
+32f7 da603316 arg context_search_handle ,regc 
+32f8 20203301 branch context_search 
+
+context_search_plap:
+32f9 793f8025 set0 mark_ext_patch ,mark 
+32fa 44994006 bpatch patch06_2 ,mem_patch06 
+32fb 680b4274 fetcht 6 ,mem_hci_plap 
+
+context_search_plap2:
+32fc da60330f arg context_search_lap ,regc 
+32fd 20203301 branch context_search 
+
+context_search_insniff:
+32fe da60331c arg context_search_sniff ,regc 
+32ff 20203301 branch context_search 
+
+context_search_sniff_window:
+3300 da603350 arg context_search_window ,regc 
+
+context_search:
+3301 793f8025 set0 mark_ext_patch ,mark 
+3302 4499c006 bpatch patch06_3 ,mem_patch06 
+3303 da204040 arg mem_context ,rega 
+3304 18007203 force context_num ,loopcnt 
+
+context_search_loop:
+3305 ea208000 ifetch 1 ,rega 
+3306 1a627a00 copy regc ,pc 
+
+context_search_next:
+3307 1a20a250 increase context_size ,rega 
+3308 c2003305 loop context_search_loop 
+3309 18007c01 force 1 ,null 
+330a 20600000 rtn 
+
+context_search_empty:
+330b c2803307 bbit1 state_inconn ,context_search_next 
+330c c281b307 bbit1 state_inpage ,context_search_next 
+330d 18007c00 force 0 ,null 
+330e 20600000 rtn 
+
+context_search_lap:
+330f c281b311 bbit1 state_inpage ,context_search_lap_cont 
+3310 c3003307 bbit0 state_inconn ,context_search_next 
+
+context_search_lap_cont:
+3311 1a208c10 add rega ,coffset_plap ,contr 
+3312 e8c30000 ifetch 6 ,contr 
+3313 98467c00 isub temp ,null 
+3314 20628000 rtn zero 
+3315 20203307 branch context_search_next 
+
+context_search_handle:
+3316 c3003307 bbit0 state_inconn ,context_search_next 
+3317 1a208c16 add rega ,coffset_conn_handle ,contr 
+3318 e8c08000 ifetch 1 ,contr 
+3319 98467c00 isub temp ,null 
+331a 20628000 rtn zero 
+331b 20203307 branch context_search_next 
+
+context_search_sniff:
+331c c300b307 bbit0 state_insniff ,context_search_next 
+
+context_search_sniff_loop:
+331d 2040333d call context_get_anchor 
+331e c28db322 bbit1 27 ,context_search_sniff_cont 
+331f 284c001b isolate0 27 ,temp 
+3320 2020b322 branch context_search_sniff_cont ,true 
+3321 79207e1c set1 28 ,pdata 
+
+context_search_sniff_cont:
+3322 98467e00 isub temp ,pdata 
+3323 1fe0fe01 increase 1 ,pdata 
+3324 2021332b branch context_search_sniff_miss ,positive 
+3325 1fe0fe05 increase 5 ,pdata 
+3326 24213307 nbranch context_search_next ,positive 
+
+context_search_meet:
+3327 18424200 copy temp ,bt_clk 
+3328 20403349 call context_next_anchor 
+3329 18007c00 force 0 ,null 
+332a 20600000 rtn 
+
+context_search_sniff_miss:
+332b 98002400 iforce regb 
+332c 1a208c02 add rega ,coffset_tsniff ,contr 
+332d e8c10000 ifetch 2 ,contr 
+332e 203a3327 branch context_search_meet ,blank 
+332f 20403349 call context_next_anchor 
+3330 2020331d branch context_search_sniff_loop 
+
+context_check_inconn:
+3331 c3003307 bbit0 state_inconn ,context_search_next 
+3332 18007c00 force 0 ,null 
+3333 20600000 rtn 
+
+context_check_a_wack:
+3334 c3003307 bbit0 state_inconn ,context_search_next 
+3335 1a208c01 add rega ,coffset_mode ,contr 
+3336 e8c08000 ifetch 1 ,contr 
+3337 c2803307 bbit1 mode_le ,context_search_next 
+3338 1a208c17 add rega ,coffset_arq ,contr 
+3339 e8c08000 ifetch 1 ,contr 
+333a c301b307 bbit0 wack ,context_search_next 
+333b 18007c00 force 0 ,null 
+333c 20600000 rtn 
+
+context_get_anchor:
+333d 1a208c01 add rega ,coffset_mode ,contr 
+333e e8c88000 ifetcht 1 ,contr 
+333f 1c427e00 deposit clkn_bt 
+3340 284ffe01 isolate1 mode_master ,temp 
+3341 1a208c04 add rega ,coffset_sniff_anchor ,contr 
+3342 e8ca0000 ifetcht 4 ,contr 
+3343 20608000 rtn true 
+3344 1a208c08 add rega ,coffset_clk_offset ,contr 
+3345 e8c30000 ifetch 6 ,contr 
+3346 204039c0 call calc_clke2 
+3347 1d027e00 deposit clke_bt 
+3348 20600000 rtn 
+
+context_next_anchor:
+3349 1a208c02 add rega ,coffset_tsniff ,contr 
+334a 1a208a04 add rega ,coffset_sniff_anchor ,contw 
+334b e8c10000 ifetch 2 ,contr 
+334c 98409600 iadd temp ,timeup 
+334d 19627e00 deposit timeup 
+334e e0a20000 istore 4 ,contw 
+334f 20205434 branch le_context_nexthop 
+
+context_search_window:
+3350 c300b307 bbit0 state_insniff ,context_search_next 
+3351 2040333d call context_get_anchor 
+3352 9b60fe00 iadd stop_watch ,pdata 
+3353 9b60fe00 iadd stop_watch ,pdata 
+3354 98e0fe00 iadd queue ,pdata 
+3355 98467c00 isub temp ,null 
+3356 24213307 nbranch context_search_next ,positive 
+3357 18007c00 force 0 ,null 
+3358 20600000 rtn 
+
+context_traverse_mslot:
+3359 c3003307 bbit0 state_inconn ,context_search_next 
+335a 18427e00 deposit temp 
+335b 9a267c00 isub rega ,null 
+335c 203f3307 branch context_search_next ,null 
+335d 1a208c01 add rega ,coffset_mode ,contr 
+335e e8c08000 ifetch 1 ,contr 
+335f c2803307 bbit1 mode_le ,context_search_next 
+3360 1a208a18 add rega ,coffset_lmp_to_send ,contw 
+3361 e8a08000 ifetch 1 ,contw 
+3362 243a3307 nbranch context_search_next ,blank 
+3363 18007e2d force lmp_max_slot ,pdata 
+3364 e0a08000 istore 1 ,contw 
+3365 20203307 branch context_search_next 
+
+context_traverse_clearkey:
+3366 c3003307 bbit0 state_inconn ,context_search_next 
+3367 18427e00 deposit temp 
+3368 9a267c00 isub rega ,null 
+3369 203f3307 branch context_search_next ,null 
+336a 1a208c01 add rega ,coffset_mode ,contr 
+336b e8c08000 ifetch 1 ,contr 
+336c c2803307 bbit1 mode_le ,context_search_next 
+336d ea208000 ifetch 1 ,rega 
+336e 793ffe07 set0 state_linkkey ,pdata 
+336f e2208000 istore 1 ,rega 
+3370 20203307 branch context_search_next 
+
+master_conn_send_packet:
+3371 793f8025 set0 mark_ext_patch ,mark 
+3372 449a4006 bpatch patch06_4 ,mem_patch06 
+3373 20403bac call rf_setup_time_master_slot 
+
+master_send_packet:
+3374 1c40c201 add clkn_bt ,1 ,bt_clk 
+3375 20403a54 call fetch_self_bt_adr 
+3376 18004803 force 0x03 ,freq_mode 
+3377 20403a42 call tx_radio_freq 
+3378 20403bae call start_transmitter 
+3379 20403bb4 call start_tx_native 
+337a 20403bc5 call send_access_word 
+337b 202038bf branch transmit_packet 
+
+master_conn_recv_packet:
+337c 793f8025 set0 mark_ext_patch ,mark 
+337d 449ac006 bpatch patch06_5 ,mem_patch06 
+337e 20403baa call rf_setup_time_slave_slot 
+
+master_recv_packet:
+337f 1c40c201 add clkn_bt ,1 ,bt_clk 
+3380 20403a54 call fetch_self_bt_adr 
+3381 18004803 force 0x03 ,freq_mode 
+3382 20403a3b call rx_radio_freq 
+3383 204034e1 call init_rx_packet_flags 
+3384 20403b41 call prep_crypt 
+3385 20403bba call start_rx_native 
+3386 20403b3a call start_receiver 
+
+master_rx_conn_finish_packet:
+3387 20403b63 call wait_access_clkn_rt 
+3388 246c0000 nrtn sync 
+3389 20403af3 call save_rssi 
+338a 202035df branch receive_packet 
+
+master_newconn_once:
+338b 793f8025 set0 mark_ext_patch ,mark 
+338c 449b4006 bpatch patch06_6 ,mem_patch06 
+338d 6800818b fetch 1 ,mem_fhs_am_addr 
+338e 98000800 iforce am_addr 
+338f 18000201 force type_poll ,type 
+3390 20403371 call master_conn_send_packet 
+3391 2020337c branch master_conn_recv_packet 
+
+inquiry_scan_dispatch:
+3392 6800c133 fetch 1 ,mem_scan_mode 
+3393 c4000000 rtnbit0 inq_scan_mode 
+3394 18000e05 force iscan_interval_timer ,queue 
+3395 20407e53 call timer_check 
+3396 247a0000 nrtn blank 
+3397 6809414d fetcht 2 ,mem_iscan_window 
+3398 18000e04 force 4 ,queue 
+3399 2040383d call sniff_check_window 
+339a 20740000 rtn user 
+339b 204033a2 call inquiry_scan_start 
+339c 18000e05 force iscan_interval_timer ,queue 
+339d 6801414f fetch 2 ,mem_iscan_interval 
+339e 242c7e4c nbranch timer_init ,sync 
+339f 180a7e00 random pdata 
+33a0 9ea17e00 iand mask3ff ,pdata 
+33a1 20207e4c branch timer_init 
+
+inquiry_scan_start:
+33a2 793f8025 set0 mark_ext_patch ,mark 
+33a3 449bc006 bpatch patch06_7 ,mem_patch06 
+33a4 70018b00 jam 0 ,mem_fhs_am_addr 
+33a5 78587c00 disable clknt 
+33a6 78577c00 disable attempt 
+33a7 20403a12 call afh_clear 
+33a8 1c4143fc and clkn_bt ,0x1fc ,bt_clk 
+33a9 18004801 force 0x01 ,freq_mode 
+33aa 20403a49 call fetch_giac 
+33ab 20403a3b call rx_radio_freq 
+33ac 7940001d setflip mark_inquiry_state ,mark 
+33ad 68008006 fetch 1 ,mem_inquiryscan_waitcnt 
+33ae 1fe0fe01 increase 1 ,pdata 
+33af 60008006 store 1 ,mem_inquiryscan_waitcnt 
+33b0 20403a66 call fetch_diac 
+33b1 20403b3a call start_receiver 
+33b2 20403b6b call wait_access_forever 
+33b3 246c0000 nrtn sync 
+33b4 793f8025 set0 mark_ext_patch ,mark 
+33b5 449c4007 bpatch patch07_0 ,mem_patch07 
+33b6 18003600 force 0 ,stop_watch 
+33b7 20403a6d call shutdown_radio 
+33b8 68008007 fetch 1 ,mem_inquiryscan_rcvcnt 
+33b9 1fe0fe01 increase 1 ,pdata 
+33ba 60008007 store 1 ,mem_inquiryscan_rcvcnt 
+33bb 20403a49 call fetch_giac 
+33bc 20403baa call rf_setup_time_slave_slot 
+33bd 1c21c202 or_into 0x002 ,bt_clk 
+33be 18004801 force 0x01 ,freq_mode 
+33bf 20403a42 call tx_radio_freq 
+33c0 20403a66 call fetch_diac 
+33c1 20403bae call start_transmitter 
+33c2 20403bbf call start_tx_external 
+33c3 1c427e00 deposit clkn_bt 
+33c4 6002016b store 4 ,mem_clkn_bt 
+33c5 20403bc5 call send_access_word 
+33c6 18000202 force type_fhs ,type 
+33c7 18000800 force 0 ,am_addr 
+33c8 20403bcd call scan_mode_whiten 
+33c9 204038c1 call transmit_packet_whitened 
+33ca 204033ce call send_eir 
+33cb 1c2143fd and_into 0x1fd ,bt_clk 
+33cc 1cc0cc01 increase 1 ,n_tx_slot 
+33cd 20600000 rtn 
+
+send_eir:
+33ce 793f8025 set0 mark_ext_patch ,mark 
+33cf 449cc007 bpatch patch07_1 ,mem_patch07 
+33d0 6800c172 fetch 1 ,mem_eir_enable 
+33d1 207a0000 rtn blank 
+33d2 d8a001bc arg mem_eir ,contw 
+33d3 6800c702 fetch 1 ,mem_local_name_length 
+33d4 1fe27200 copy pdata ,loopcnt 
+33d5 1fe0fe01 increase 1 ,pdata 
+33d6 e0a08000 istore 1 ,contw 
+33d7 18a20400 copy contw ,temp 
+33d8 1fe0fe01 increase 1 ,pdata 
+33d9 60010091 store 2 ,mem_tx_len 
+33da 18420a00 copy temp ,contw 
+33db 58000009 setarg 0x09 
+33dc e0a08000 istore 1 ,contw 
+33dd d8c04703 arg mem_local_name ,contr 
+33de 20407e45 call memcpy 
+33df da604771 arg mem_all_uuid_128bits ,regc 
+33e0 df200004 arg 4 ,loopcnt 
+33e1 204033f1 call get_all_uuid 
+33e2 da60475b arg mem_all_uuid_16bits ,regc 
+33e3 df200001 arg 1 ,loopcnt 
+33e4 204033f1 call get_all_uuid 
+33e5 1800020a force type_dm3 ,type 
+33e6 70009002 jam 2 ,mem_tx_lch 
+33e7 580001bc setarg mem_eir 
+33e8 60010179 store 2 ,mem_txptr 
+33e9 20403baa call rf_setup_time_slave_slot 
+33ea 20403a42 call tx_radio_freq 
+33eb 20403bae call start_transmitter 
+33ec 20403bbf call start_tx_external 
+33ed 20403bc5 call send_access_word 
+33ee 20403bcd call scan_mode_whiten 
+33ef 204038c1 call transmit_packet_whitened 
+33f0 20600000 rtn 
+
+get_all_uuid:
+33f1 18a20400 copy contw ,temp 
+33f2 1a620c00 copy regc ,contr 
+33f3 e8c08000 ifetch 1 ,contr 
+33f4 207a0000 rtn blank 
+
+lshift_loop:
+33f5 1fe3fe00 lshift pdata ,pdata 
+33f6 c20033f5 loop lshift_loop 
+33f7 1fe22200 copy pdata ,rega 
+33f8 1fe0fe02 increase 2 ,pdata 
+33f9 1fe20e00 copy pdata ,queue 
+33fa 68010091 fetch 2 ,mem_tx_len 
+33fb 98e0fe00 iadd queue ,pdata 
+33fc 60010091 store 2 ,mem_tx_len 
+33fd 18420a00 copy temp ,contw 
+33fe 1a227e00 copy rega ,pdata 
+33ff 1fe0fe01 increase 1 ,pdata 
+3400 e0a08000 istore 1 ,contw 
+3401 1a620c00 copy regc ,contr 
+3402 e8c08000 ifetch 1 ,contr 
+3403 e8c08000 ifetch 1 ,contr 
+3404 e0a08000 istore 1 ,contw 
+3405 1a227200 copy rega ,loopcnt 
+3406 20207e45 branch memcpy 
+
+page_scan_dispatch:
+3407 6800c133 fetch 1 ,mem_scan_mode 
+3408 c4008000 rtnbit0 page_scan_mode 
+3409 18000e06 force pscan_interval_timer ,queue 
+340a 20407e53 call timer_check 
+340b 247a0000 nrtn blank 
+340c 68094151 fetcht 2 ,mem_pscan_window 
+340d 18000e28 force 40 ,queue 
+340e 2040383d call sniff_check_window 
+340f 20740000 rtn user 
+3410 18000800 force 0 ,am_addr 
+3411 70001008 jam param_pagerespto ,mem_fhs_wait_counter 
+3412 793f800b set0 mark_fhs_already_good ,mark 
+3413 20403417 call page_scan_start 
+3414 18000e06 force pscan_interval_timer ,queue 
+3415 68014153 fetch 2 ,mem_pscan_interval 
+3416 20207e4c branch timer_init 
+
+page_scan_start:
+3417 793f8025 set0 mark_ext_patch ,mark 
+3418 449d4007 bpatch patch07_2 ,mem_patch07 
+3419 78587c00 disable clknt 
+341a 20403a12 call afh_clear 
+341b 68008008 fetch 1 ,mem_pagescan_waitcnt 
+341c 1fe0fe01 increase 1 ,pdata 
+341d 60008008 store 1 ,mem_pagescan_waitcnt 
+341e 18004c00 force 0 ,n_tx_slot 
+341f 20403a54 call fetch_self_bt_adr 
+3420 1c40c201 add clkn_bt ,1 ,bt_clk 
+3421 18004802 force 0x02 ,freq_mode 
+3422 793f8025 set0 mark_ext_patch ,mark 
+3423 449dc007 bpatch patch07_3 ,mem_patch07 
+3424 20403a3b call rx_radio_freq 
+3425 20403b3a call start_receiver 
+3426 20403b6b call wait_access_forever 
+3427 246c0000 nrtn sync 
+3428 20403a6d call shutdown_radio 
+3429 68008009 fetch 1 ,mem_pagescan_rcvcnt 
+342a 1fe0fe01 increase 1 ,pdata 
+342b 60008009 store 1 ,mem_pagescan_rcvcnt 
+342c 18003600 force 0 ,stop_watch 
+342d 20403baa call rf_setup_time_slave_slot 
+342e 1c21c202 or_into 0x002 ,bt_clk 
+342f 18004801 force 0x01 ,freq_mode 
+3430 20403a42 call tx_radio_freq 
+3431 20403bae call start_transmitter 
+3432 20403bbf call start_tx_external 
+3433 20403bc5 call send_access_word 
+3434 2040375c call end_of_packet 
+3435 18000800 force 0 ,am_addr 
+3436 d9600600 arg param_rf_setup ,timeup 
+3437 35330200 until clke_rt ,meet 
+3438 1d01d003 or_into 0x03 ,clke_bt 
+3439 1c2143fd and_into 0x1fd ,bt_clk 
+
+page_scan_wait_fhs_restart:
+343a 793f8025 set0 mark_ext_patch ,mark 
+343b 449e4007 bpatch patch07_4 ,mem_patch07 
+343c 1cc0cc01 increase 1 ,n_tx_slot 
+343d 20403a3b call rx_radio_freq 
+343e 20403b3a call start_receiver 
+343f 20403b5d call wait_access_mhalfbnd 
+3440 242c3444 nbranch page_scan_wait_fhs_again ,sync 
+3441 20403bcd call scan_mode_whiten 
+3442 204035e1 call receive_packet_whitened 
+3443 c505b44c bmark1 mark_fhs_already_good ,page_scan_reply_to_fhs 
+
+page_scan_wait_fhs_again:
+3444 793f8025 set0 mark_ext_patch ,mark 
+3445 449ec007 bpatch patch07_5 ,mem_patch07 
+3446 68008010 fetch 1 ,mem_fhs_wait_counter 
+3447 207a0000 rtn blank 
+3448 1fe0ffff increase -1 ,pdata 
+3449 60008010 store 1 ,mem_fhs_wait_counter 
+344a 20403bac call rf_setup_time_master_slot 
+344b 2020343a branch page_scan_wait_fhs_restart 
+
+page_scan_reply_to_fhs:
+344c 793f8025 set0 mark_ext_patch ,mark 
+344d 449f4007 bpatch patch07_6 ,mem_patch07 
+344e 793fd001 set0 1 ,clke_bt 
+344f 79205000 set1 0 ,clke_bt 
+3450 6800800a fetch 1 ,mem_pagescan_rcvfhscnt 
+3451 1fe0fe01 increase 1 ,pdata 
+3452 6000800a store 1 ,mem_pagescan_rcvfhscnt 
+3453 20403baa call rf_setup_time_slave_slot 
+3454 1c21c202 or_into 0x02 ,bt_clk 
+3455 20403a42 call tx_radio_freq 
+3456 20403bae call start_transmitter 
+3457 20403bbf call start_tx_external 
+3458 20403bc5 call send_access_word 
+3459 2040375c call end_of_packet 
+
+slave_apply_clke_bt:
+345a 2d000603 compare 0x03 ,clke_bt ,0x03 
+345b 2020b45e branch slave_apply_clke_bt_now ,true 
+345c 37cb8200 until null ,mhalfbnd 
+345d 2020345a branch slave_apply_clke_bt 
+
+slave_apply_clke_bt_now:
+345e 6802016f fetch 4 ,mem_clke_bt 
+345f 1fe1fe03 or_into 0x03 ,pdata 
+3460 1fe25000 icopy clke_bt 
+
+start_slave_connection:
+3461 793f8025 set0 mark_ext_patch ,mark 
+3462 449fc007 bpatch patch07_7 ,mem_patch07 
+3463 68030182 fetch 6 ,extm_lap 
+3464 60030040 store 6 ,mem_plap 
+3465 204034ed call prepare_newconn 
+
+slave_newconn_loop:
+3466 20403539 call slave_newconn_once 
+3467 2036b46b branch sconn_successful ,match 
+3468 2040350e call new_conn_timeout 
+3469 243a3466 nbranch slave_newconn_loop ,blank 
+346a 20600000 rtn 
+
+sconn_successful:
+346b 793f8025 set0 mark_ext_patch ,mark 
+346c 44a04008 bpatch patch08_0 ,mem_patch08 
+346d 204034f9 call newconn_init 
+346e 204032d6 call context_new 
+346f 24628000 nrtn zero 
+3470 70003100 jam 0 ,mem_mode 
+3471 204039ac call calc_clke_offset 
+3472 202032bd branch context_save 
+
+slave_dispatch:
+3473 793f8025 set0 mark_ext_patch ,mark 
+3474 44a0c008 bpatch patch08_1 ,mem_patch08 
+3475 204039bc call calc_clke 
+3476 204034a5 call role_switch_slave 
+3477 20740000 rtn user 
+3478 2040327c call load_esco 
+3479 20406a54 call get_sco_data 
+
+slave_loop:
+347a 793f8025 set0 mark_ext_patch ,mark 
+347b 44a14008 bpatch patch08_2 ,mem_patch08 
+347c 20403e25 call check_bt_disabled 
+347d 20406dec call scheduler_process 
+347e 204035d6 call slave_conn_recv_packet 
+347f 20407f39 call slave_savelist 
+3480 2436b48d nbranch slave_notmatch ,match 
+3481 20403bec call supervision_flush 
+3482 20403870 call parse_l2cap 
+3483 20406e10 call scheduler_tx_l2cap_pkt 
+3484 20403547 call prepare_tx 
+3485 204038b1 call slave_conn_send_packet 
+3486 20405b78 call parse_lmp 
+3487 20404995 call process_cmd 
+3488 204048a9 call hci_send_num_complete_packets 
+3489 6800800b fetch 1 ,mem_slave_rcvcnt 
+348a 1fe0fe01 increase 1 ,pdata 
+348b 6000800b store 1 ,mem_slave_rcvcnt 
+348c 204039ac call calc_clke_offset 
+
+slave_notmatch:
+348d 793f8025 set0 mark_ext_patch ,mark 
+348e 44a1c008 bpatch patch08_3 ,mem_patch08 
+348f 20403d61 call lpm_set_mult 
+3490 20403be2 call supervision_update 
+3491 20213498 branch slave_disconnect ,positive 
+3492 20403204 call check_disconnect_timeout 
+3493 24343498 nbranch slave_disconnect ,user 
+3494 20403812 call check_attempt 
+3495 243a347a nbranch slave_loop ,blank 
+3496 20406a5c call process_sco_data 
+3497 20203290 branch restore_esco 
+
+slave_disconnect:
+3498 793f8025 set0 mark_ext_patch ,mark 
+3499 44a24008 bpatch patch08_4 ,mem_patch08 
+349a 70015300 jam 0 ,mem_tester_emulate 
+349b 70018900 jam 0 ,mem_debug_config 
+349c 20403516 call quit_connection 
+349d 793f8011 set0 mark_testmode ,mark 
+349e 20407f8a call test_enable_white 
+349f 68008030 fetch 1 ,mem_state 
+34a0 c30234a3 bbit0 state_conn_comp ,slave_connection_fail 
+34a1 68088046 fetcht 1 ,mem_conn_handle 
+34a2 202048c4 branch hci_send_disconn_complete 
+
+slave_connection_fail:
+34a3 18000406 force hci_error_key_missing ,temp 
+34a4 20204826 branch hci_send_connection_error 
+
+role_switch_slave:
+34a5 793f8025 set0 mark_ext_patch ,mark 
+34a6 44a2c008 bpatch patch08_5 ,mem_patch08 
+34a7 2040322e call role_switch_check 
+34a8 24740000 nrtn user 
+34a9 18820400 copy am_addr ,temp 
+34aa 20403bd1 call get_free_amaddr 
+34ab 6000818b store 1 ,mem_fhs_am_addr 
+34ac 18420800 copy temp ,am_addr 
+34ad 70001120 jam param_newconnto ,mem_newconnto_counter 
+
+roles_sendfhs_loop:
+34ae 793f8025 set0 mark_ext_patch ,mark 
+34af 44a34008 bpatch patch08_6 ,mem_patch08 
+34b0 20403bac call rf_setup_time_master_slot 
+34b1 18000202 force type_fhs ,type 
+34b2 204038a8 call slave_send_access 
+34b3 1c427e00 deposit clkn_bt 
+34b4 6002016b store 4 ,mem_clkn_bt 
+34b5 204038bf call transmit_packet 
+34b6 20403baa call rf_setup_time_slave_slot 
+34b7 7837fc00 enable user3 
+34b8 204035b7 call slave_receive_access 
+34b9 202c34c1 branch roles_got_fhs_reply ,sync 
+34ba 20403a6d call shutdown_radio 
+34bb 2040350e call new_conn_timeout 
+34bc 243a34ae nbranch roles_sendfhs_loop ,blank 
+34bd c6820000 rtnmark0 mark_accept_switch 
+34be 70007c34 jam lmp_slot_offset ,mem_lmo_opcode2 
+34bf 79200003 set1 mark_switch_initiated ,mark 
+34c0 20600000 rtn 
+
+roles_got_fhs_reply:
+34c1 78387c00 enable clknt 
+34c2 204034ed call prepare_newconn 
+34c3 20403a12 call afh_clear 
+
+roles_newconn_loop:
+34c4 793f8025 set0 mark_ext_patch ,mark 
+34c5 44a3c008 bpatch patch08_7 ,mem_patch08 
+34c6 2040338b call master_newconn_once 
+34c7 202c34ce branch roles_newconn_responded ,sync 
+34c8 2040350e call new_conn_timeout 
+34c9 243a34c4 nbranch roles_newconn_loop ,blank 
+34ca 78587c00 disable clknt 
+34cb 1d027e00 deposit clke_bt 
+34cc 6002416a store 4 ,mem_next_btclk 
+34cd 20600000 rtn 
+
+roles_newconn_responded:
+34ce 18000400 force 0 ,temp 
+34cf 2040487f call hci_send_role_change 
+34d0 7834fc00 enable master 
+34d1 c58234d6 bmark0 mark_accept_switch ,roles_newconn_nolmp 
+34d2 793f8004 set0 mark_accept_switch ,mark 
+34d3 70007c03 jam lmp_accepted ,mem_lmo_opcode2 
+34d4 70007d33 jam lmp_host_connection_req ,mem_lmi_opcode2 
+34d5 20406212 call tid_set_reply 
+
+roles_newconn_nolmp:
+34d6 18827e00 deposit am_addr 
+34d7 60008077 store 1 ,mem_amaddr 
+34d8 18007e00 force 0 ,pdata 
+34d9 60030038 store 6 ,mem_clk_offset 
+34da 68008031 fetch 1 ,mem_mode 
+34db 79207e01 set1 mode_master ,pdata 
+34dc 60008031 store 1 ,mem_mode 
+34dd 20403bec call supervision_flush 
+34de 7854fc00 disable master 
+
+enable_user:
+34df 78347c00 enable user 
+34e0 20600000 rtn 
+
+init_rx_packet_flags:
+34e1 793f8025 set0 mark_ext_patch ,mark 
+34e2 44a44009 bpatch patch09_0 ,mem_patch09 
+34e3 7856fc00 disable match 
+34e4 793f8005 set0 mark_loopback ,mark 
+34e5 793f800a set0 mark_am_addr_broadcast ,mark 
+34e6 793f8010 set0 mark_longpacket ,mark 
+34e7 793f800f set0 mark_old_packet ,mark 
+34e8 68008047 fetch 1 ,mem_arq 
+34e9 793ffe05 set0 arqnx ,pdata 
+34ea 79207e04 set1 flowx ,pdata 
+34eb 60008047 store 1 ,mem_arq 
+34ec 20600000 rtn 
+
+prepare_newconn:
+34ed 793f8025 set0 mark_ext_patch ,mark 
+34ee 44a4c009 bpatch patch09_1 ,mem_patch09 
+34ef 70001120 jam param_newconnto ,mem_newconnto_counter 
+34f0 70004750 jam param_newconn_arq ,mem_arq 
+34f1 6801415f fetch 2 ,mem_rx_window_init 
+34f2 6001003e store 2 ,mem_rx_window 
+34f3 1c427e00 deposit clkn_bt 
+34f4 6002416a store 4 ,mem_next_btclk 
+34f5 20780000 rtn clknt 
+34f6 1d027e00 deposit clke_bt 
+34f7 6002416a store 4 ,mem_next_btclk 
+34f8 20600000 rtn 
+
+newconn_init:
+34f9 793f8025 set0 mark_ext_patch ,mark 
+34fa 44a54009 bpatch patch09_2 ,mem_patch09 
+34fb 20405b6f call init_lmp_reinit 
+34fc 20403512 call new_conn_handle 
+34fd 60008046 store 1 ,mem_conn_handle 
+34fe 58001c80 setarg param_supervision_to 
+34ff 60010051 store 2 ,mem_supervision_to 
+3500 68008030 fetch 1 ,mem_state 
+3501 79207e00 set1 state_inconn ,pdata 
+3502 60008030 store 1 ,mem_state 
+3503 70004b00 jam 0 ,mem_op 
+3504 70004c00 jam 0 ,mem_state_map 
+3505 7000a200 jam 0 ,mem_lpm_current_mult 
+3506 20203bec branch supervision_flush 
+
+clear_linkkey:
+3507 793f8025 set0 mark_ext_patch ,mark 
+3508 44a5c009 bpatch patch09_3 ,mem_patch09 
+3509 18007e00 force 0 ,pdata 
+350a 60044262 store 8 ,mem_link_key 
+350b e0a40000 istore 8 ,contw 
+350c 2040322a call clear_linkstate 
+350d 202032f0 branch context_traverse_linkkey 
+
+new_conn_timeout:
+350e 68008011 fetch 1 ,mem_newconnto_counter 
+350f 1fe0ffff increase -1 ,pdata 
+3510 60008011 store 1 ,mem_newconnto_counter 
+3511 20600000 rtn 
+
+new_conn_handle:
+3512 6800c170 fetch 1 ,mem_handle_num 
+3513 1fe0fe01 increase 1 ,pdata 
+3514 6000c170 store 1 ,mem_handle_num 
+3515 20600000 rtn 
+
+quit_connection:
+3516 793f8025 set0 mark_ext_patch ,mark 
+3517 44a64009 bpatch patch09_4 ,mem_patch09 
+3518 204031fa call disconnect_stop_sco 
+3519 6800c272 fetch 1 ,mem_hci_cmd 
+351a c001b51d beq hci_cmd_remote_name_req ,quit_connection_name 
+351b 68008048 fetch 1 ,mem_lmp_to_send 
+351c c080b521 bne lmp_name_req ,quit_connection_cont 
+
+quit_connection_name:
+351d 204049be call cmd_check_plap 
+351e 2422b521 nbranch quit_connection_cont ,zero 
+351f 204031f5 call master_name_error 
+3520 70427200 jam 0 ,mem_hci_cmd 
+
+quit_connection_cont:
+3521 793f8025 set0 mark_ext_patch ,mark 
+3522 44a6c009 bpatch patch09_5 ,mem_patch09 
+3523 20403f18 call app_disconn_reason_collect_bt 
+3524 20404995 call process_cmd 
+3525 20403806 call sniff_exit 
+3526 700b7d02 jam bt_evt_bb_disconnected ,mem_fifo_temp 
+3527 20407c27 call ui_ipc_send_event 
+3528 20405b63 call init_lmp_work 
+3529 20404d99 call l2cap_init_work 
+352a 20407719 call sp_initialize 
+352b 68008030 fetch 1 ,mem_state 
+352c 793ffe00 set0 state_inconn 
+352d 60008030 store 1 ,mem_state 
+352e 7047f300 jam 0 ,memui_reconnect_mode 
+352f 6800804c fetch 1 ,mem_state_map 
+3530 2fe18000 compare 0x0 ,pdata ,0xc0 
+3531 2020b533 branch quit_connection_not_clear_mark ,true 
+3532 793f8001 set0 mark_rxbuf_inuse ,mark 
+
+quit_connection_not_clear_mark:
+3533 68008047 fetch 1 ,mem_arq 
+3534 c301b535 bbit0 wack ,quit_connection_not_clear_tx 
+
+quit_connection_not_clear_tx:
+3535 6800804b fetch 1 ,mem_op 
+3536 c4030000 rtnbit0 op_txl2cap 
+3537 793f8002 set0 mark_tx_l2cap ,mark 
+3538 20600000 rtn 
+
+slave_newconn_once:
+3539 793f8025 set0 mark_ext_patch ,mark 
+353a 44a74009 bpatch patch09_6 ,mem_patch09 
+353b 6800817e fetch 1 ,extm_newconn_am_addr 
+353c 207a0000 rtn blank 
+353d 1fe20800 icopy am_addr 
+353e 204035d6 call slave_conn_recv_packet 
+353f 24768000 nrtn match 
+3540 18000200 force type_null ,type 
+3541 204038b1 call slave_conn_send_packet 
+3542 18827e00 deposit am_addr 
+3543 60008077 store 1 ,mem_amaddr 
+3544 18007e00 force 0 ,pdata 
+3545 6000817e store 1 ,extm_newconn_am_addr 
+3546 20600000 rtn 
+
+prepare_tx:
+3547 793f8025 set0 mark_ext_patch ,mark 
+3548 44a7c009 bpatch patch09_7 ,mem_patch09 
+3549 68008030 fetch 1 ,mem_state 
+354a c3013555 bbit0 state_insco ,prepare_tx_not_sco 
+354b 18000207 force type_hv3 ,type 
+354c c583b554 bmark0 mark_esco ,prepare_tx_not_esco 
+354d 20403847 call check_esco_amaddr 
+354e 2420b555 nbranch prepare_tx_not_sco ,true 
+354f 20373555 branch prepare_tx_not_sco ,attempt 
+3550 20403583 call set_wait_ack 
+3551 58000002 setarg 2 
+3552 60014168 store 2 ,mem_retransmission_cnt 
+3553 20600000 rtn 
+
+prepare_tx_not_esco:
+3554 24770000 nrtn attempt 
+
+prepare_tx_not_sco:
+3555 793f8025 set0 mark_ext_patch ,mark 
+3556 44a8400a bpatch patch0a_0 ,mem_patch0a 
+3557 204032df call context_check_all_wack 
+3558 2422b568 nbranch prepare_tx_no_retransmit ,zero 
+3559 68008047 fetch 1 ,mem_arq 
+355a c301b571 bbit0 wack ,prepare_tx_pollnull 
+
+prepare_tx_retransmit:
+355b c502b575 bmark1 mark_loopback ,prepare_tx_loopback 
+355c 68008189 fetch 1 ,mem_debug_config 
+355d c283357c bbit1 debug_tx_pattern ,prepare_tx_txpat 
+355e 68014168 fetch 2 ,mem_retransmission_cnt 
+355f 1fe0ffff increase -1 ,pdata 
+3560 60014168 store 2 ,mem_retransmission_cnt 
+3561 203a3565 branch prepare_tx_nomore_retransmit ,blank 
+3562 6800c165 fetch 1 ,mem_last_type 
+3563 98000200 iforce type 
+3564 20600000 rtn 
+
+prepare_tx_nomore_retransmit:
+3565 793f8025 set0 mark_ext_patch ,mark 
+3566 44a8c00a bpatch patch0a_1 ,mem_patch0a 
+3567 20403799 call clear_got_tx 
+
+prepare_tx_no_retransmit:
+3568 20403847 call check_esco_amaddr 
+3569 2020b571 branch prepare_tx_pollnull ,true 
+356a 20405ed9 call send_lmp 
+356b 20343580 branch prepare_tx_sendlmp ,user 
+356c 6800804b fetch 1 ,mem_op 
+356d c2833582 bbit1 op_txl2cap ,prepare_tx_sendl2cap 
+356e c502b575 bmark1 mark_loopback ,prepare_tx_loopback 
+356f 68008189 fetch 1 ,mem_debug_config 
+3570 c283357c bbit1 debug_tx_pattern ,prepare_tx_txpat 
+
+prepare_tx_pollnull:
+3571 18000201 force type_poll ,type 
+3572 20748000 rtn master 
+3573 18000200 force type_null ,type 
+3574 20600000 rtn 
+
+prepare_tx_loopback:
+3575 793f8025 set0 mark_ext_patch ,mark 
+3576 44a9400a bpatch patch0a_2 ,mem_patch0a 
+3577 68008019 fetch 1 ,mem_rx_type 
+3578 98000200 iforce type 
+3579 c1808000 rtnne 1 
+357a 18000200 force type_null ,type 
+357b 20600000 rtn 
+
+prepare_tx_txpat:
+357c 6800815a fetch 1 ,test_mode_packet_type 
+357d 1fe1020f and pdata ,0xf ,type 
+357e 79200005 set1 mark_loopback ,mark 
+357f 20600000 rtn 
+
+prepare_tx_sendlmp:
+3580 18000213 force type_lmp ,type 
+3581 20203583 branch set_wait_ack 
+
+prepare_tx_sendl2cap:
+3582 2040358d call tx_l2cap_type 
+
+set_wait_ack:
+3583 793f8025 set0 mark_ext_patch ,mark 
+3584 44a9c00a bpatch patch0a_3 ,mem_patch0a 
+3585 68088047 fetcht 1 ,mem_arq 
+3586 79200403 set1 wack ,temp 
+3587 60088047 storet 1 ,mem_arq 
+3588 18227e00 deposit type 
+3589 6000c165 store 1 ,mem_last_type 
+358a 5800ffff setarg 0xffff 
+358b 60014168 store 2 ,mem_retransmission_cnt 
+358c 20600000 rtn 
+
+tx_l2cap_type:
+358d 793f8025 set0 mark_ext_patch ,mark 
+358e 44aa400a bpatch patch0a_4 ,mem_patch0a 
+358f 6800804c fetch 1 ,mem_state_map 
+3590 2feffe05 isolate1 smap_edr ,pdata 
+3591 68010091 fetch 2 ,mem_tx_len 
+3592 2020b5a1 branch tx_l2cap_type_edr ,true 
+3593 18000203 force type_dm1 ,type 
+3594 1fe67c11 sub pdata ,17 ,null 
+3595 20610000 rtn positive 
+3596 18000204 force type_dh1 ,type 
+3597 1fe67c1b sub pdata ,27 ,null 
+3598 20610000 rtn positive 
+3599 1800020a force type_dm3 ,type 
+359a 1fe67c79 sub pdata ,121 ,null 
+359b 20610000 rtn positive 
+359c 1800020e force type_dm5 ,type 
+359d 1fe67ce0 sub pdata ,224 ,null 
+359e 20610000 rtn positive 
+359f 1800020f force type_dh5 ,type 
+35a0 20600000 rtn 
+
+tx_l2cap_type_edr:
+35a1 18000203 force type_dm1 ,type 
+35a2 1fe67c11 sub pdata ,17 ,null 
+35a3 20610000 rtn positive 
+35a4 18000204 force type_dh1 ,type 
+35a5 1fe67c36 sub pdata ,54 ,null 
+35a6 20610000 rtn positive 
+35a7 1800020a force type_dm3 ,type 
+35a8 d840016f arg 367 ,temp 
+35a9 98467c00 isub temp ,null 
+35aa 24610000 nrtn positive 
+35ab 1800020e force type_dm5 ,type 
+35ac d84002a7 arg 679 ,temp 
+35ad 98467c00 isub temp ,null 
+35ae 24610000 nrtn positive 
+35af 1800020f force type_dh5 ,type 
+35b0 20600000 rtn 
+
+slave_receive_master_slot:
+35b1 68008030 fetch 1 ,mem_state 
+35b2 c300b5b6 bbit0 state_insniff ,slave_receive_notsniff 
+35b3 68010032 fetch 2 ,mem_tsniff 
+35b4 203a35b6 branch slave_receive_notsniff ,blank 
+35b5 243735b8 nbranch slave_receive_sniff ,attempt 
+
+slave_receive_notsniff:
+35b6 20403bac call rf_setup_time_master_slot 
+
+slave_receive_access:
+35b7 1d00c201 add clke_bt ,1 ,bt_clk 
+
+slave_receive_sniff:
+35b8 78287c00 enable swfine 
+35b9 6801003e fetch 2 ,mem_rx_window 
+35ba 1fe37e00 rshift pdata ,pdata 
+35bb d8400500 arg param_pll_setup ,temp 
+35bc 9840fe00 iadd temp ,pdata 
+35bd 20403b7d call ahead_window 
+35be 20403a5d call fetch_extm_bt_adr 
+35bf 18004803 force 0x03 ,freq_mode 
+35c0 20403a3b call rx_radio_freq 
+35c1 204034e1 call init_rx_packet_flags 
+35c2 20403b41 call prep_crypt 
+35c3 793f8025 set0 mark_ext_patch ,mark 
+35c4 44aac00a bpatch patch0a_5 ,mem_patch0a 
+35c5 6801003e fetch 2 ,mem_rx_window 
+35c6 1fe37e00 rshift pdata ,pdata 
+35c7 20403b7d call ahead_window 
+35c8 20403b3a call start_receiver 
+35c9 7826fc00 enable decode_fec0 
+35ca 6801003e fetch 2 ,mem_rx_window 
+35cb d84003bb arg param_clke_cal ,temp 
+35cc 9840b600 iadd temp ,stop_watch 
+35cd 37c18400 correlate null ,timeout 
+35ce 1b420400 copy clke ,temp 
+35cf 600b009c storet 6 ,mem_sync_clke 
+35d0 7846fc00 disable decode_fec0 
+35d1 246c0000 nrtn sync 
+35d2 dd2003bb arg param_clke_cal ,clke_rt 
+35d3 1c225000 copy bt_clk ,clke_bt 
+35d4 2035bcb6 branch lpm_adjust_clk ,wake 
+35d5 20600000 rtn 
+
+slave_conn_recv_packet:
+35d6 793f8025 set0 mark_ext_patch ,mark 
+35d7 44ab400a bpatch patch0a_6 ,mem_patch0a 
+35d8 204035b1 call slave_receive_master_slot 
+35d9 242c3a6d nbranch shutdown_radio ,sync 
+35da 20403af3 call save_rssi 
+35db c588b5df bmark0 mark_testmode ,receive_packet 
+35dc 680100f8 fetch 2 ,mem_tst_pktcnt_sync 
+35dd 1fe0fe01 increase 1 ,pdata 
+35de 600100f8 store 2 ,mem_tst_pktcnt_sync 
+
+receive_packet:
+35df 1c230400 rshift bt_clk ,temp 
+35e0 18419c40 or temp ,0x40 ,white_init 
+
+receive_packet_whitened:
+35e1 793f8025 set0 mark_ext_patch ,mark 
+35e2 44abc00a bpatch patch0a_7 ,mem_patch0a 
+35e3 7823fc00 enable enable_white 
+35e4 78257c00 enable enable_hec 
+35e5 7825fc00 enable decode_fec1 
+35e6 09800003 parse demod ,bucket ,3 
+35e7 198cfe00 rshift8 pwindow ,pdata 
+35e8 6000815f store 1 ,mem_temp_am_addr 
+35e9 09800004 parse demod ,bucket ,4 
+35ea 08008007 inject bucket ,7 
+35eb 19827e00 copy pwindow ,pdata 
+35ec 60008019 store 1 ,mem_rx_type 
+35ed 09800003 parse demod ,bucket ,3 
+35ee 198cfe00 rshift8 pwindow ,pdata 
+35ef 60008160 store 1 ,mem_temp_arq 
+35f0 68008019 fetch 1 ,mem_rx_type 
+35f1 1fe67c03 sub pdata ,3 ,null 
+35f2 202135f7 branch receive_packet_noedr ,positive 
+35f3 c003b5f7 beq 7 ,receive_packet_noedr 
+35f4 6800804c fetch 1 ,mem_state_map 
+35f5 2feffe05 isolate1 smap_edr ,pdata 
+35f6 7920aa01 setflag true ,psk ,radio_ctrl 
+
+receive_packet_noedr:
+35f7 793f8025 set0 mark_ext_patch ,mark 
+35f8 44ac400b bpatch patch0b_0 ,mem_patch0b 
+35f9 09800008 parse demod ,bucket ,8 
+35fa 7845fc00 disable decode_fec1 
+35fb 78457c00 disable enable_hec 
+35fc 2023373e branch error_header ,crc_failed 
+35fd c588b601 bmark0 mark_testmode ,receive_packet_amchk 
+35fe 680100fa fetch 2 ,mem_tst_pktcnt_hec 
+35ff 1fe0fe01 increase 1 ,pdata 
+3600 600100fa store 2 ,mem_tst_pktcnt_hec 
+
+receive_packet_amchk:
+3601 793f8025 set0 mark_ext_patch ,mark 
+3602 44acc00b bpatch patch0b_1 ,mem_patch0b 
+3603 6800815f fetch 1 ,mem_temp_am_addr 
+3604 2fe00e00 compare 0 ,pdata ,0x07 
+3605 7920800a setflag true ,mark_am_addr_broadcast ,mark 
+3606 2020b613 branch am_addr_ok ,true 
+3607 a8800e00 icompare 0x07 ,am_addr 
+3608 2020b612 branch am_addr_match ,true 
+3609 c583b75c bmark0 mark_esco ,end_of_packet 
+360a 680880b2 fetcht 1 ,mem_saved_amaddr 
+360b a8400e00 icompare 0x7 ,temp 
+360c 2420b75c nbranch end_of_packet ,true 
+360d 20403290 call restore_esco 
+360e 68008047 fetch 1 ,mem_arq 
+360f 793ffe05 set0 arqnx ,pdata 
+3610 79207e04 set1 flowx ,pdata 
+3611 60008047 store 1 ,mem_arq 
+
+am_addr_match:
+3612 7836fc00 enable match 
+
+am_addr_ok:
+3613 793f8025 set0 mark_ext_patch ,mark 
+3614 44ad400b bpatch patch0b_2 ,mem_patch0b 
+3615 68008019 fetch 1 ,mem_rx_type 
+3616 1fe20200 icopy type 
+3617 c5053623 bmark1 mark_am_addr_broadcast ,arqn_bypass 
+3618 68088160 fetcht 1 ,mem_temp_arq 
+3619 68008047 fetch 1 ,mem_arq 
+361a 793ffe00 set0 flow ,pdata 
+361b 284ffe00 isolate1 flow ,temp 
+361c 7920fe00 setflag true ,flow ,pdata 
+361d 284ffe01 isolate1 arqn ,temp 
+361e 7920fe01 setflag true ,arqn ,pdata 
+361f 60008047 store 1 ,mem_arq 
+3620 284c0001 isolate0 arqn ,temp 
+3621 2020b623 branch arqn_bypass ,true 
+3622 20403799 call clear_got_tx 
+
+arqn_bypass:
+3623 793f8025 set0 mark_ext_patch ,mark 
+3624 44adc00b bpatch patch0b_3 ,mem_patch0b 
+3625 d8400000 arg 0 ,temp 
+3626 20403b74 call reserve_slot 
+3627 18217e0f and type ,0xf ,pdata 
+3628 c000b656 beq type_poll ,process_poll 
+3629 c000375c beq type_null ,end_of_packet 
+362a c0013769 beq type_fhs ,process_fhs 
+362b 68088160 fetcht 1 ,mem_temp_arq 
+362c 68008047 fetch 1 ,mem_arq 
+362d a8400800 icompare 0x04 ,temp 
+362e 2420b632 nbranch rx_type_dispatch ,true 
+362f c5853631 bmark0 mark_am_addr_broadcast ,failed_seqn 
+3630 c303b632 bbit0 bcast1 ,rx_type_dispatch 
+
+failed_seqn:
+3631 7920000f set1 mark_old_packet ,mark 
+
+rx_type_dispatch:
+3632 793f8025 set0 mark_ext_patch ,mark 
+3633 44ae400b bpatch patch0b_4 ,mem_patch0b 
+3634 18227e00 deposit type 
+3635 c001b658 beq type_dm1 ,process_dm1 
+3636 c002365c beq type_dh1 ,process_dh1 
+3637 c003b642 beq type_hv3 ,process_hev 
+3638 c004365b beq type_3dh1 ,process_3dh1 
+3639 d8400004 arg 4 ,temp 
+363a 20403b74 call reserve_slot 
+363b c0053657 beq type_dm3 ,process_dm3 
+363c c005b65a beq type_dh3 ,process_dh3 
+363d d8400008 arg 8 ,temp 
+363e 20403b74 call reserve_slot 
+363f c0073657 beq type_dm5 ,process_dm5 
+3640 c007b65a beq type_dh5 ,process_dh5 
+3641 20600000 rtn 
+
+process_hev:
+3642 793f8025 set0 mark_ext_patch ,mark 
+3643 44aec00b bpatch patch0b_5 ,mem_patch0b 
+3644 7826fc00 enable decode_fec0 
+3645 7824fc00 enable enable_crc 
+3646 78277c00 enable encrypt 
+3647 d8a000d3 arg mem_sco_ibuf ,contw 
+3648 1800721e force 30 ,loopcnt 
+
+process_hev_loop:
+3649 09800008 parse demod ,bucket ,8 
+364a 19897e00 rshift3 pwindow ,pdata 
+364b e0a08000 istore 1 ,contw 
+364c c2003649 loop process_hev_loop 
+364d c583b75c bmark0 mark_esco ,end_of_packet 
+364e 09800010 parse demod ,bucket ,16 
+364f 7d230008 nsetflag crc_failed ,mark_esco_rxok ,mark 
+3650 20433653 call test_esco ,crc_failed 
+3651 2023374b branch error_payload ,crc_failed 
+3652 2020372c branch ack_payload 
+
+test_esco:
+3653 1b427e00 deposit clke 
+3654 60030020 store 6 ,mem_display 
+3655 20600000 rtn 
+
+process_poll:
+3656 2020375c branch end_of_packet 
+
+process_dm3:
+
+process_dm5:
+3657 79200010 set1 mark_longpacket ,mark 
+
+process_dm1:
+3658 78267c00 enable decode_fec2 
+3659 2020365d branch process_dmh 
+
+process_dh3:
+
+process_dh5:
+365a 79200010 set1 mark_longpacket ,mark 
+
+process_3dh1:
+365b 79202a02 set1 psk3m ,radio_ctrl 
+
+process_dh1:
+365c 7826fc00 enable decode_fec0 
+
+process_dmh:
+365d 793f8025 set0 mark_ext_patch ,mark 
+365e 44af400b bpatch patch0b_6 ,mem_patch0b 
+365f c500b75c bmark1 mark_rxbuf_inuse ,end_of_packet 
+3660 2aac0001 isolate0 psk ,radio_ctrl 
+3661 2020b66a branch process_dmh_noedr ,true 
+3662 7843fc00 disable enable_white 
+3663 7826fc00 enable decode_fec0 
+3664 78467c00 disable decode_fec2 
+3665 1c409602 add clkn_bt ,2 ,timeup 
+3666 34530400 correlate clkn_bt ,meet 
+3667 242c374b nbranch error_payload ,sync 
+3668 79200010 set1 mark_longpacket ,mark 
+3669 7823fc00 enable enable_white 
+
+process_dmh_noedr:
+366a 793f8025 set0 mark_ext_patch ,mark 
+366b 44afc00b bpatch patch0b_7 ,mem_patch0b 
+366c 78277c00 enable encrypt 
+366d 7824fc00 enable enable_crc 
+366e 09800003 parse demod ,bucket ,3 
+366f 198cfe00 rshift8 pwindow ,pdata 
+3670 6000818a store 1 ,mem_lch_code 
+3671 09800005 parse demod ,bucket ,5 
+3672 c5083676 bmark1 mark_longpacket ,process_dmh_long 
+3673 19897200 rshift3 pwindow ,loopcnt 
+3674 1f297200 rshift3 loopcnt ,loopcnt 
+3675 20203679 branch process_dmh_common 
+
+process_dmh_long:
+3676 09800005 parse demod ,bucket ,5 
+3677 19837200 rshift pwindow ,loopcnt 
+3678 09800003 parse demod ,bucket ,3 
+
+process_dmh_common:
+3679 793f8025 set0 mark_ext_patch ,mark 
+367a 44b0400c bpatch patch0c_0 ,mem_patch0c 
+367b 1f227e00 deposit loopcnt 
+367c 60010169 store 2 ,mem_len 
+367d 203a36ee branch process_dmh_data_end ,blank 
+367e 9ea67c00 isub mask3ff ,null 
+367f 2021374b branch error_payload ,positive 
+3680 793f8025 set0 mark_ext_patch ,mark 
+3681 44b0c00c bpatch patch0c_1 ,mem_patch0c 
+3682 793f8000 set0 mark_fhs_eir ,mark 
+3683 6800818a fetch 1 ,mem_lch_code 
+3684 1fe17e03 and_into 0x03 ,pdata 
+3685 d8a004de arg mem_rxbuf ,contw 
+3686 c001b68f beq llid_lmp ,process_lmp 
+3687 c508b6ea bmark1 mark_testmode ,process_dmh_data 
+3688 6800c132 fetch 1 ,mem_device_option 
+3689 c000b694 beq dvc_op_hci ,process_dmh_acl 
+368a 6800818a fetch 1 ,mem_lch_code 
+368b 1fe17e03 and_into 0x03 ,pdata 
+368c c00136c3 beq llid_l2cap_start ,process_dmh_data_l2cap_start_pkt 
+368d c000b6d8 beq llid_l2cap_cont ,process_dmh_data_l2cap_continue_pkt 
+368e 2020374b branch error_payload 
+
+process_lmp:
+368f 68010169 fetch 2 ,mem_len 
+3690 1fe67c70 sub pdata ,0x70 ,null 
+3691 2421374b nbranch error_payload ,positive 
+3692 c507b72c bmark1 mark_old_packet ,ack_payload 
+3693 202036ea branch process_dmh_data 
+
+process_dmh_acl:
+3694 793f8025 set0 mark_ext_patch ,mark 
+3695 44b1400c bpatch patch0c_2 ,mem_patch0c 
+3696 c507b72c bmark1 mark_old_packet ,ack_payload 
+3697 68010169 fetch 2 ,mem_len 
+3698 203a374b branch error_payload ,blank 
+3699 20404494 call hci_check_bcsp_protocol 
+369a 2420b6a1 nbranch process_dmh_acl_check_h4_buff ,true 
+
+process_dmh_acl_bcsp:
+369b 68090291 fetcht 2 ,mem_h5tx_free 
+369c 1fe0fe0a increase 10 ,pdata 
+369d 98467c00 isub temp ,null 
+369e 242136a7 nbranch process_dmh_acl_packet ,positive 
+369f 20404449 call hci_dispatch 
+36a0 2020369b branch process_dmh_acl_bcsp 
+
+process_dmh_acl_check_h4_buff:
+36a1 6811010e hfetch 2 ,core_uart_txitems 
+36a2 d840012c arg 300 ,temp 
+36a3 98467c00 isub temp ,null 
+36a4 2021374b branch error_payload ,positive 
+36a5 68014800 fetch 2 ,mem_acl_credits 
+36a6 203a374b branch error_payload ,blank 
+
+process_dmh_acl_packet:
+36a7 793f8025 set0 mark_ext_patch ,mark 
+36a8 44b1c00c bpatch patch0c_3 ,mem_patch0c 
+36a9 20404972 call hci_get_packet_ptr 
+36aa 68008046 fetch 1 ,mem_conn_handle 
+36ab 6808818a fetcht 1 ,mem_lch_code 
+36ac 18410403 and_into 3 ,temp 
+36ad 184d0400 lshift8 temp ,temp 
+36ae 18520400 lshift4 temp ,temp 
+36af 9841fe00 ior temp ,pdata 
+36b0 e1410000 istore 2 ,contwu 
+36b1 68090169 fetcht 2 ,mem_len 
+36b2 18427200 copy temp ,loopcnt 
+36b3 e1490000 istoret 2 ,contwu 
+
+process_dmh_acl_copy:
+36b4 793f8025 set0 mark_ext_patch ,mark 
+36b5 44b2400c bpatch patch0c_4 ,mem_patch0c 
+36b6 09800008 parse demod ,bucket ,8 
+36b7 19897e00 rshift3 pwindow ,pdata 
+36b8 e1408000 istore 1 ,contwu 
+36b9 c20036b4 loop process_dmh_acl_copy 
+36ba 1840f204 add temp ,4 ,loopcnt 
+36bb 20404494 call hci_check_bcsp_protocol 
+36bc 2420b6c1 nbranch process_dmh_acl_send_h4 ,true 
+36bd 79200013 set1 mark_h5tx_rp ,mark 
+36be 18000e06 force 6 ,queue 
+36bf 20404378 call bcsp_send_packet 
+36c0 202036ee branch process_dmh_data_end 
+
+process_dmh_acl_send_h4:
+36c1 20404424 call h4_send_packet_acl 
+36c2 202036ee branch process_dmh_data_end 
+
+process_dmh_data_l2cap_start_pkt:
+36c3 793f8025 set0 mark_ext_patch ,mark 
+36c4 44b2c00c bpatch patch0c_5 ,mem_patch0c 
+36c5 c507b72c bmark1 mark_old_packet ,ack_payload 
+36c6 68010169 fetch 2 ,mem_len 
+36c7 d84002e0 arg 0x2e0 ,temp 
+36c8 98467c00 isub temp ,null 
+36c9 2021374b branch error_payload ,positive 
+36ca 680082ca fetch 1 ,mem_l2cap_rxbuff_inuse 
+36cb c30036ce bbit0 l2cap_inuse_buff1 ,process_dmh_data_into_buff1 
+36cc c300b6d3 bbit0 l2cap_inuse_buff2 ,process_dmh_data_into_buff2 
+36cd 2020375c branch end_of_packet 
+
+process_dmh_data_into_buff1:
+36ce 7002c801 jam 1 ,mem_l2cap_rxbuff_new 
+36cf 680102c4 fetch 2 ,mem_l2cap_rxbuff1_len 
+36d0 c080375c bne 0 ,end_of_packet 
+36d1 d8a01000 arg mem_l2cap_rxbuff1 ,contw 
+36d2 202036ea branch process_dmh_data 
+
+process_dmh_data_into_buff2:
+36d3 7002c802 jam 2 ,mem_l2cap_rxbuff_new 
+36d4 680102c6 fetch 2 ,mem_l2cap_rxbuff2_len 
+36d5 c080375c bne 0 ,end_of_packet 
+36d6 d8a01400 arg mem_l2cap_rxbuff2 ,contw 
+36d7 202036ea branch process_dmh_data 
+
+process_dmh_data_l2cap_continue_pkt:
+36d8 793f8025 set0 mark_ext_patch ,mark 
+36d9 44b3400c bpatch patch0c_6 ,mem_patch0c 
+36da c507b72c bmark1 mark_old_packet ,ack_payload 
+36db 68010169 fetch 2 ,mem_len 
+36dc d84002e0 arg 0x2e0 ,temp 
+36dd 98467c00 isub temp ,null 
+36de 2021374b branch error_payload ,positive 
+36df 680082c8 fetch 1 ,mem_l2cap_rxbuff_new 
+36e0 c000b6e3 beq 1 ,process_dmh_data_l2cap_continue_pkt1 
+36e1 c00136e7 beq 2 ,process_dmh_data_l2cap_continue_pkt2 
+36e2 2020375c branch end_of_packet 
+
+process_dmh_data_l2cap_continue_pkt1:
+36e3 d8a01000 arg mem_l2cap_rxbuff1 ,contw 
+36e4 680102c4 fetch 2 ,mem_l2cap_rxbuff1_len 
+36e5 98a08a00 iadd contw ,contw 
+36e6 202036ea branch process_dmh_data 
+
+process_dmh_data_l2cap_continue_pkt2:
+36e7 d8a01400 arg mem_l2cap_rxbuff2 ,contw 
+36e8 680102c6 fetch 2 ,mem_l2cap_rxbuff2_len 
+36e9 98a08a00 iadd contw ,contw 
+
+process_dmh_data:
+36ea 09800008 parse demod ,bucket ,8 
+36eb 19897e00 rshift3 pwindow ,pdata 
+36ec e0a08000 istore 1 ,contw 
+36ed c20036ea loop process_dmh_data 
+
+process_dmh_data_end:
+36ee 793f8025 set0 mark_ext_patch ,mark 
+36ef 44b3c00c bpatch patch0c_7 ,mem_patch0c 
+36f0 09800010 parse demod ,bucket ,16 
+36f1 20233745 branch error_payload_crc ,crc_failed 
+36f2 20403e0f call lpm_hci_wake_dispatch 
+36f3 6800c3cc fetch 1 ,mem_l2cap_flow_ctrl_flag 
+36f4 c000b75c beq l2cap_flow_ctrl_enable ,end_of_packet 
+36f5 c508b718 bmark1 mark_testmode ,process_dmh_cont 
+36f6 c507b759 bmark1 mark_old_packet ,redundant_payload 
+36f7 6800818a fetch 1 ,mem_lch_code 
+36f8 2fe00603 compare 3 ,pdata ,3 
+36f9 2020b718 branch process_dmh_cont ,true 
+36fa 68010169 fetch 2 ,mem_len 
+36fb 203a3718 branch process_dmh_cont ,blank 
+36fc 6800c132 fetch 1 ,mem_device_option 
+36fd c000b718 beq dvc_op_hci ,process_dmh_cont 
+36fe 793f8025 set0 mark_ext_patch ,mark 
+36ff 44b4400d bpatch patch0d_0 ,mem_patch0d 
+3700 680082c8 fetch 1 ,mem_l2cap_rxbuff_new 
+3701 c000b704 beq 1 ,process_l2cap_pass_crc_buff1 
+3702 c001370e beq 2 ,process_l2cap_pass_crc_buff2 
+3703 20203bf1 branch assert 
+
+process_l2cap_pass_crc_buff1:
+3704 680102c4 fetch 2 ,mem_l2cap_rxbuff1_len 
+3705 68090169 fetcht 2 ,mem_len 
+3706 9840fe00 iadd temp ,pdata 
+3707 600102c4 store 2 ,mem_l2cap_rxbuff1_len 
+3708 c0003bf1 beq 0 ,assert 
+3709 68091000 fetcht 2 ,mem_l2cap_rxbuff1 
+370a 18408404 increase 4 ,temp 
+370b 98467c00 isub temp ,null 
+370c 2042b8a0 call l2cap_buff1_inuse ,zero 
+370d 20203718 branch process_dmh_cont 
+
+process_l2cap_pass_crc_buff2:
+370e 680102c6 fetch 2 ,mem_l2cap_rxbuff2_len 
+370f 68090169 fetcht 2 ,mem_len 
+3710 9840fe00 iadd temp ,pdata 
+3711 600102c6 store 2 ,mem_l2cap_rxbuff2_len 
+3712 c0003bf1 beq 0 ,assert 
+3713 68091400 fetcht 2 ,mem_l2cap_rxbuff2 
+3714 18408404 add temp ,4 ,temp 
+3715 98467c00 isub temp ,null 
+3716 2042b8a4 call l2cap_buff2_inuse ,zero 
+3717 20203718 branch process_dmh_cont 
+
+process_dmh_cont:
+3718 793f8025 set0 mark_ext_patch ,mark 
+3719 44b4c00d bpatch patch0d_1 ,mem_patch0d 
+371a 6808804c fetcht 1 ,mem_state_map 
+371b 6800818a fetch 1 ,mem_lch_code 
+371c 2fe00603 compare 3 ,pdata ,0x03 
+371d 79208406 setflag true ,smap_rxlmp ,temp 
+371e 7d208407 nsetflag true ,smap_rxl2cap ,temp 
+371f 6008804c storet 1 ,mem_state_map 
+3720 2420b722 nbranch process_dmh_cont_rxbuf_not_use ,true 
+3721 79200001 set1 mark_rxbuf_inuse ,mark 
+
+process_dmh_cont_rxbuf_not_use:
+3722 c588b72c bmark0 mark_testmode ,ack_payload 
+3723 284ffe06 isolate1 smap_rxlmp ,temp 
+3724 2020b72c branch ack_payload ,true 
+3725 680100fc fetch 2 ,mem_tst_pktcnt_crc 
+3726 1fe0fe01 increase 1 ,pdata 
+3727 600100fc store 2 ,mem_tst_pktcnt_crc 
+3728 79200005 set1 mark_loopback ,mark 
+3729 793f8407 set0 smap_rxl2cap ,temp 
+372a 793f8001 set0 mark_rxbuf_inuse ,mark 
+372b 6008804c storet 1 ,mem_state_map 
+
+ack_payload:
+372c 793f8025 set0 mark_ext_patch ,mark 
+372d 44b5400d bpatch patch0d_2 ,mem_patch0d 
+372e 68088160 fetcht 1 ,mem_temp_arq 
+372f 68008047 fetch 1 ,mem_arq 
+3730 79207e05 set1 arqnx ,pdata 
+3731 284ffe02 isolate1 seqn ,temp 
+3732 7920fe02 setflag true ,seqn ,pdata 
+3733 280ffe0a isolate1 mark_am_addr_broadcast ,mark 
+3734 7920fe07 setflag true ,bcast1 ,pdata 
+3735 60008047 store 1 ,mem_arq 
+3736 68010169 fetch 2 ,mem_len 
+3737 243a375c nbranch end_of_packet ,blank 
+3738 6800804c fetch 1 ,mem_state_map 
+3739 793ffe07 set0 smap_rxl2cap ,pdata 
+373a 6000804c store 1 ,mem_state_map 
+373b 6800818a fetch 1 ,mem_lch_code 
+373c 2fe00e01 compare 0x01 ,pdata ,0x07 
+373d 2020375c branch end_of_packet 
+
+error_header:
+373e 793f8025 set0 mark_ext_patch ,mark 
+373f 44b5c00d bpatch patch0d_3 ,mem_patch0d 
+3740 7856fc00 disable match 
+3741 6801001a fetch 2 ,mem_rx_hec_err 
+3742 1fe0fe01 increase 1 ,pdata 
+3743 6001001a store 2 ,mem_rx_hec_err 
+3744 2020375c branch end_of_packet 
+
+error_payload_crc:
+3745 6801001c fetch 2 ,mem_rx_crc_err 
+3746 1fe0fe01 increase 1 ,pdata 
+3747 6001001c store 2 ,mem_rx_crc_err 
+3748 2040374c call discard_pkt 
+3749 c588b74b bmark0 mark_testmode ,error_payload 
+374a 79200005 set1 mark_loopback ,mark 
+
+error_payload:
+374b 2020375c branch end_of_packet 
+
+discard_pkt:
+374c 793f8025 set0 mark_ext_patch ,mark 
+374d 44b6400d bpatch patch0d_4 ,mem_patch0d 
+374e 6800818a fetch 1 ,mem_lch_code 
+374f 2fe00603 compare 3 ,pdata ,0x03 
+3750 2420b755 nbranch discard_pkt_l2cap ,true 
+
+discard_pkt_lmp:
+3751 6808804c fetcht 1 ,mem_state_map 
+3752 793f8406 set0 smap_rxlmp ,temp 
+3753 6008804c storet 1 ,mem_state_map 
+3754 20600000 rtn 
+
+discard_pkt_l2cap:
+3755 6808804c fetcht 1 ,mem_state_map 
+3756 793f8407 set0 smap_rxl2cap ,temp 
+3757 6008804c storet 1 ,mem_state_map 
+3758 2020443b branch h4_send_acl_trigger_clear 
+
+redundant_payload:
+3759 68008047 fetch 1 ,mem_arq 
+375a 79207e05 set1 arqnx ,pdata 
+375b 60008047 store 1 ,mem_arq 
+
+end_of_packet:
+375c 793f8025 set0 mark_ext_patch ,mark 
+375d 44b6c00d bpatch patch0d_5 ,mem_patch0d 
+375e 784efc00 disable encode_fec0 
+375f 784e7c00 disable encode_fec2 
+3760 7846fc00 disable decode_fec0 
+3761 78467c00 disable decode_fec2 
+3762 7844fc00 disable enable_crc 
+3763 78477c00 disable encrypt 
+3764 7843fc00 disable enable_white 
+3765 2030ba6d branch shutdown_radio ,is_rx 
+3766 37d38200 until null ,tx_clear 
+3767 20000064 nop 100 
+3768 20203a6d branch shutdown_radio 
+
+process_fhs:
+3769 793f8025 set0 mark_ext_patch ,mark 
+376a 44b7400d bpatch patch0d_6 ,mem_patch0d 
+376b 7824fc00 enable enable_crc 
+376c 78267c00 enable decode_fec2 
+376d 09800048 parse demod ,bucket ,72 
+376e 2feffe3a isolate1 58 ,pdata 
+376f 79208000 setflag true ,mark_fhs_eir ,mark 
+3770 1c020400 copy bt_adr ,temp 
+3771 57e04000 ialigned bt_adr 
+3772 57e03c00 ialigned fhs0 
+3773 782afc00 pulse recalc 
+3774 380bffff setsect 2 ,0xfffff 
+3775 380cffff setsect 3 ,0x0ffff 
+3776 20000020 nop 32 
+3777 29a80000 iverify fhs_parity 
+3778 1d827e00 deposit lap 
+3779 60018182 store 3 ,extm_lap 
+377a 1da27e00 deposit uap 
+377b 60008185 store 1 ,extm_uap 
+377c 18424000 copy temp ,bt_adr 
+377d 2020b77f branch fhs_parity_ok ,true 
+377e 2020374b branch error_payload 
+
+fhs_parity_ok:
+377f 793f8025 set0 mark_ext_patch ,mark 
+3780 44b7c00d bpatch patch0d_7 ,mem_patch0d 
+3781 09800048 parse demod ,bucket ,72 
+3782 57e03e00 ialigned fhs1 
+3783 57e00800 ialigned am_addr 
+3784 57e05c00 ialigned nap 
+3785 57e02400 ialigned regb 
+3786 18007e00 force 0 ,pdata 
+3787 09800010 parse demod ,bucket ,16 
+3788 2023374b branch error_payload ,crc_failed 
+3789 5ffffffc setarg 0x0ffffffc 
+378a 9a417e00 iand regb ,pdata 
+378b 6002016f store 4 ,mem_clke_bt 
+378c 1ba27e00 deposit fhs_class 
+378d 6001817f store 3 ,extm_class 
+378e 1b827e00 deposit fhs_misc 
+378f 6000817d store 1 ,extm_fhs_misc 
+3790 18827e00 deposit am_addr 
+3791 6000817e store 1 ,extm_newconn_am_addr 
+3792 1dc27e00 deposit nap 
+3793 60010186 store 2 ,extm_nap 
+3794 1c227e00 deposit bt_clk 
+3795 08008220 inject rxf ,32 
+3796 28201e02 compare type_fhs ,type ,0x0f 
+3797 7920800b setflag true ,mark_fhs_already_good ,mark 
+3798 2020375c branch end_of_packet 
+
+clear_got_tx:
+3799 793f8025 set0 mark_ext_patch ,mark 
+379a 44b8400e bpatch patch0e_0 ,mem_patch0e 
+379b 68008047 fetch 1 ,mem_arq 
+379c c4018000 rtnbit0 wack 
+379d 793ffe03 set0 wack ,pdata 
+379e 79407e06 setflip seqnx ,pdata 
+379f 60008047 store 1 ,mem_arq 
+37a0 6800c165 fetch 1 ,mem_last_type 
+37a1 c009b7b1 beq type_lmp ,clear_got_txlmp 
+37a2 c1038000 rtneq type_hv3 
+37a3 6800804b fetch 1 ,mem_op 
+37a4 c4030000 rtnbit0 op_txl2cap ,pdata 
+37a5 793ffe06 set0 op_txl2cap ,pdata 
+37a6 79207e07 set1 op_pkt_comp ,pdata 
+37a7 6000804b store 1 ,mem_op 
+37a8 793f8002 set0 mark_tx_l2cap ,mark 
+37a9 6800c132 fetch 1 ,mem_device_option 
+37aa c1008000 rtneq dvc_op_hci 
+37ab 680142af fetch 2 ,mem_l2cap_tx_multi_offset 
+37ac 247a0000 nrtn blank 
+37ad 6800804b fetch 1 ,mem_op 
+37ae 793ffe07 set0 op_pkt_comp ,pdata 
+37af 6000804b store 1 ,mem_op 
+37b0 20205267 branch l2cap_malloc_free 
+
+clear_got_txlmp:
+37b1 793f8025 set0 mark_ext_patch ,mark 
+37b2 44b8c00e bpatch patch0e_1 ,mem_patch0e 
+37b3 68008433 fetch 1 ,mem_lmo_header_opcode 
+37b4 1fe37e00 rshift pdata ,pdata 
+37b5 c008b7d0 beq lmp_start_encryption_req ,start_encryption 
+37b6 c00937da beq lmp_stop_encryption_req ,stop_encryption 
+37b7 c00c3806 beq lmp_unsniff_req ,sniff_exit 
+37b8 c03fb7bf beq lmp_escape ,clear_lmp_escape 
+37b9 c016385e beq lmp_remove_sco_link_req ,stop_sco 
+37ba c1818000 rtnne lmp_accepted 
+37bb 68008434 fetch 1 ,mem_lmo_payload 
+37bc c015b7c8 beq lmp_sco_link_req ,sco_link_req_by_slave 
+37bd c008b7c3 beq lmp_start_encryption_req ,clear_send_setup_complete 
+37be 20600000 rtn 
+
+clear_lmp_escape:
+37bf 68008434 fetch 1 ,mem_lmo_payload 
+37c0 79207e07 set1 7 ,pdata 
+37c1 c046b85e beq lmp_ext_remove_esco_req ,stop_sco 
+37c2 20600000 rtn 
+
+clear_send_setup_complete:
+37c3 20748000 rtn master 
+37c4 68008030 fetch 1 ,mem_state 
+37c5 c3820000 rtnbit1 state_conn_comp 
+37c6 70007c31 jam lmp_setup_complete ,mem_lmo_opcode2 
+37c7 20600000 rtn 
+
+sco_link_req_by_slave:
+37c8 20748000 rtn master 
+37c9 68008031 fetch 1 ,mem_mode 
+37ca 2feffe04 isolate1 send_sco_when_slave ,pdata 
+37cb 2020b7cd branch clean_mem_mode ,true 
+37cc 20600000 rtn 
+
+clean_mem_mode:
+37cd 793ffe04 set0 send_sco_when_slave ,pdata 
+37ce 60008031 store 1 ,mem_mode 
+37cf 20600000 rtn 
+
+start_encryption:
+37d0 793f8025 set0 mark_ext_patch ,mark 
+37d1 44b9400e bpatch patch0e_2 ,mem_patch0e 
+37d2 6800804c fetch 1 ,mem_state_map 
+37d3 79207e02 set1 smap_encryption ,pdata 
+37d4 6000804c store 1 ,mem_state_map 
+37d5 70801101 hjam 1 ,core_encrypt 
+37d6 68008030 fetch 1 ,mem_state 
+37d7 2feffe04 isolate1 state_conn_comp ,pdata 
+37d8 2020c845 branch hci_send_encryption_change ,true 
+37d9 20600000 rtn 
+
+stop_encryption:
+37da 793f8025 set0 mark_ext_patch ,mark 
+37db 44b9c00e bpatch patch0e_3 ,mem_patch0e 
+37dc 6800804c fetch 1 ,mem_state_map 
+37dd 793ffe02 set0 smap_encryption ,pdata 
+37de 6000804c store 1 ,mem_state_map 
+37df 70801100 hjam 0 ,core_encrypt 
+37e0 20600000 rtn 
+
+sniff_init:
+37e1 793f8025 set0 mark_ext_patch ,mark 
+37e2 44ba400e bpatch patch0e_4 ,mem_patch0e 
+37e3 1c427e00 copy clkn_bt ,pdata 
+37e4 600242a5 store 4 ,mem_lpm_delay_after_sniff 
+37e5 1c40a203 add clkn_bt ,3 ,rega 
+37e6 2034b7e8 branch sniff_init_master ,master 
+37e7 1d00a203 add clke_bt ,3 ,rega 
+
+sniff_init_master:
+37e8 68090032 fetcht 2 ,mem_tsniff 
+37e9 1a227e00 deposit rega 
+37ea 793ffe1b set0 27 ,pdata 
+37eb 9846fc00 idiv temp 
+37ec 68010075 fetch 2 ,mem_dsniff 
+37ed 20407efd call wait_div_end 
+37ee 18072600 remainder regc 
+37ef 9a667e00 isub regc ,pdata 
+37f0 202137f2 branch sniff_init_nowrap ,positive 
+37f1 9840fe00 iadd temp ,pdata 
+
+sniff_init_nowrap:
+37f2 9a20fe00 iadd rega ,pdata 
+37f3 60020034 store 4 ,mem_sniff_anchor 
+37f4 70474800 jam switch_flag_init ,mem_switch_flag 
+37f5 68008030 fetch 1 ,mem_state 
+37f6 79207e01 set1 state_insniff ,pdata 
+37f7 60008030 store 1 ,mem_state 
+37f8 68008073 fetch 1 ,mem_sniff_attempt 
+37f9 6000808a store 1 ,mem_current_sniff_attempt 
+37fa 70416e80 jam 0x80 ,mem_seqi 
+37fb 58000000 setarg 0 
+37fc 6001c20a store 3 ,mem_sniff_rcv 
+37fd 6001c20d store 3 ,mem_sniff_lost 
+37fe 6000c1fa store 1 ,mem_sniff_unint_lost 
+37ff 700b7d0b jam bt_evt_enter_sniff ,mem_fifo_temp 
+3800 20407c27 call ui_ipc_send_event 
+3801 68014161 fetch 2 ,mem_rx_window_sniff 
+3802 6001003e store 2 ,mem_rx_window 
+3803 24748000 nrtn master 
+3804 18808fff add am_addr ,-1 ,queue 
+3805 20600000 rtn 
+
+sniff_exit:
+3806 793f8025 set0 mark_ext_patch ,mark 
+3807 44bac00e bpatch patch0e_5 ,mem_patch0e 
+3808 68008030 fetch 1 ,mem_state 
+3809 c4008000 rtnbit0 state_insniff 
+380a 793ffe01 set0 state_insniff ,pdata 
+380b 60008030 store 1 ,mem_state 
+380c 70416e7f jam 0x7f ,mem_seqi 
+380d 6801415f fetch 2 ,mem_rx_window_init 
+380e 6001003e store 2 ,mem_rx_window 
+380f 7855fc00 disable wake 
+3810 700b7d0c jam bt_evt_exit_sniff ,mem_fifo_temp 
+3811 20207c27 branch ui_ipc_send_event 
+
+check_attempt:
+3812 793f8025 set0 mark_ext_patch ,mark 
+3813 44bb400e bpatch patch0e_6 ,mem_patch0e 
+3814 78377c00 enable attempt 
+3815 68008030 fetch 1 ,mem_state 
+3816 c280b820 bbit1 state_insniff ,check_attempt_sniff 
+3817 c6088000 rtnmark1 mark_testmode 
+3818 68008047 fetch 1 ,mem_arq 
+3819 c3818000 rtnbit1 wack 
+381a 68008048 fetch 1 ,mem_lmp_to_send 
+381b 247a0000 nrtn blank 
+381c 6800804b fetch 1 ,mem_op 
+381d c3830000 rtnbit1 op_txl2cap 
+
+check_attempt_nomore:
+381e 18007e00 force 0 ,pdata 
+381f 20600000 rtn 
+
+check_attempt_sniff:
+3820 c3013830 bbit0 state_insco ,check_attempt_not_sco 
+3821 6800808a fetch 1 ,mem_current_sniff_attempt 
+3822 c0013826 beq 2 ,check_attempt_sniff_restore_sco 
+3823 68008047 fetch 1 ,mem_arq 
+3824 c281b839 bbit1 wack ,check_attempt_notimeout 
+3825 c5843839 bmark0 mark_esco_rxok ,check_attempt_notimeout 
+
+check_attempt_sniff_restore_sco:
+3826 20403290 call restore_esco 
+3827 2434b839 nbranch check_attempt_notimeout ,master 
+3828 68008048 fetch 1 ,mem_lmp_to_send 
+3829 243a3839 nbranch check_attempt_notimeout ,blank 
+
+check_attempt_sco_master:
+382a 680080f1 fetch 1 ,mem_sco_poll 
+382b 1fe0ffff increase -1 ,pdata 
+382c 600080f1 store 1 ,mem_sco_poll 
+382d 243a381e nbranch check_attempt_nomore ,blank 
+382e 7000f110 jam param_sco_poll ,mem_sco_poll 
+382f 20203839 branch check_attempt_notimeout 
+
+check_attempt_not_sco:
+3830 6800808a fetch 1 ,mem_current_sniff_attempt 
+3831 c080b839 bne 1 ,check_attempt_notimeout 
+3832 6800808b fetch 1 ,mem_current_sniff_timeout 
+3833 203a3839 branch check_attempt_notimeout ,blank 
+3834 1fe0ffff increase -1 ,pdata 
+3835 6000808b store 1 ,mem_current_sniff_timeout 
+3836 68008047 fetch 1 ,mem_arq 
+3837 c3818000 rtnbit1 wack 
+3838 24768000 nrtn match 
+
+check_attempt_notimeout:
+3839 6800808a fetch 1 ,mem_current_sniff_attempt 
+383a 1fe0ffff increase -1 ,pdata 
+383b 6000808a store 1 ,mem_current_sniff_attempt 
+383c 20600000 rtn 
+
+sniff_check_window:
+383d 793f8025 set0 mark_ext_patch ,mark 
+383e 44bbc00e bpatch patch0e_7 ,mem_patch0e 
+383f 78487c00 disable swfine 
+3840 18423600 copy temp ,stop_watch 
+3841 20403300 call context_search_sniff_window 
+3842 78547c00 disable user 
+3843 24628000 nrtn zero 
+3844 18003600 force 0 ,stop_watch 
+3845 78347c00 enable user 
+3846 20600000 rtn 
+
+check_esco_amaddr:
+3847 6800c1f9 fetch 1 ,mem_esco_addr 
+3848 a881fe00 icompare 0xff ,am_addr 
+3849 20600000 rtn 
+
+play_sco:
+384a 793f8025 set0 mark_ext_patch ,mark 
+384b 44bc400f bpatch patch0f_0 ,mem_patch0f 
+384c 70417101 jam 1 ,mem_max_slot 
+384d 20406a40 call enable_pcm 
+384e 18007e0c force 12 ,pdata 
+384f 60010032 store 2 ,mem_tsniff 
+3850 680080af fetch 1 ,mem_esco_desco 
+3851 1fe3fe00 lshift pdata ,pdata 
+3852 60010075 store 2 ,mem_dsniff 
+3853 68008030 fetch 1 ,mem_state 
+3854 79207e02 set1 state_insco ,pdata 
+3855 60008030 store 1 ,mem_state 
+3856 70007303 jam 3 ,mem_sniff_attempt 
+3857 70008a03 jam 3 ,mem_current_sniff_attempt 
+3858 204037e1 call sniff_init 
+3859 18000400 force 0 ,temp 
+385a 20404914 call hci_send_sco_complete 
+385b 7000b350 jam 0x50 ,mem_esco_arq 
+385c 7000f110 jam param_sco_poll ,mem_sco_poll 
+385d 20600000 rtn 
+
+stop_sco:
+385e 793f8025 set0 mark_ext_patch ,mark 
+385f 44bcc00f bpatch patch0f_1 ,mem_patch0f 
+3860 20403806 call sniff_exit 
+3861 70417105 jam 5 ,mem_max_slot 
+3862 20406a4a call disable_pcm 
+3863 68008030 fetch 1 ,mem_state 
+3864 793ffe02 set0 state_insco ,pdata 
+3865 60008030 store 1 ,mem_state 
+
+stop_sco_hci:
+3866 d8400e00 arg 0xe00 ,temp 
+3867 7002c013 jam hci_error_remote_user_ended_connection ,mem_hci_disconn_reason 
+3868 202048c4 branch hci_send_disconn_complete 
+
+stop_esco:
+3869 793f8025 set0 mark_ext_patch ,mark 
+386a 44bd400f bpatch patch0f_2 ,mem_patch0f 
+386b 7000b100 jam default_neogotiation_state ,mem_neogotiation_state 
+386c 2040385e call stop_sco 
+386d 20403290 call restore_esco 
+386e 793f8007 set0 mark_esco ,mark 
+386f 20600000 rtn 
+
+parse_l2cap:
+3870 793f8025 set0 mark_ext_patch ,mark 
+3871 44bdc00f bpatch patch0f_3 ,mem_patch0f 
+3872 6800c132 fetch 1 ,mem_device_option 
+3873 c000b898 beq dvc_op_hci ,parse_l2cap_hci 
+3874 793f8001 set0 mark_rxbuf_inuse ,mark 
+
+parse_l2cap_cont:
+3875 7002d100 jam l2cap_rx_clear ,mem_l2cap_rx_done 
+3876 680082ca fetch 1 ,mem_l2cap_rxbuff_inuse 
+3877 207a0000 rtn blank 
+3878 2feffe00 isolate1 l2cap_inuse_buff1 ,pdata 
+3879 d8c01000 arg mem_l2cap_rxbuff1 ,contr 
+387a 2040cda8 call process_rx_l2cap_pkt ,true 
+387b 793f8025 set0 mark_ext_patch ,mark 
+387c 44be400f bpatch patch0f_4 ,mem_patch0f 
+387d 680082d1 fetch 1 ,mem_l2cap_rx_done 
+387e c000b88c beq l2cap_rx_done ,parse_l2cap_release_buff1 
+387f 7002d100 jam l2cap_rx_clear ,mem_l2cap_rx_done 
+3880 680082ca fetch 1 ,mem_l2cap_rxbuff_inuse 
+3881 c4008000 rtnbit0 l2cap_inuse_buff2 
+3882 d8c01400 arg mem_l2cap_rxbuff2 ,contr 
+3883 20404da8 call process_rx_l2cap_pkt 
+3884 680082d1 fetch 1 ,mem_l2cap_rx_done 
+3885 c000b892 beq l2cap_rx_done ,parse_l2cap_release_buff2 
+3886 20600000 rtn 
+
+parse_l2cap_exit:
+3887 6800804c fetch 1 ,mem_state_map 
+3888 793ffe07 set0 smap_rxl2cap ,pdata 
+3889 6000804c store 1 ,mem_state_map 
+388a 793f8001 set0 mark_rxbuf_inuse ,mark 
+388b 2020443b branch h4_send_acl_trigger_clear 
+
+parse_l2cap_release_buff1:
+388c 680082ca fetch 1 ,mem_l2cap_rxbuff_inuse 
+388d 793ffe00 set0 l2cap_inuse_buff1 ,pdata 
+388e 600082ca store 1 ,mem_l2cap_rxbuff_inuse 
+388f 58000000 setarg 0 
+3890 600102c4 store 2 ,mem_l2cap_rxbuff1_len 
+3891 20600000 rtn 
+
+parse_l2cap_release_buff2:
+3892 680082ca fetch 1 ,mem_l2cap_rxbuff_inuse 
+3893 793ffe01 set0 l2cap_inuse_buff2 ,pdata 
+3894 600082ca store 1 ,mem_l2cap_rxbuff_inuse 
+3895 58000000 setarg 0 
+3896 600102c6 store 2 ,mem_l2cap_rxbuff2_len 
+3897 20600000 rtn 
+
+parse_l2cap_hci:
+3898 6800804c fetch 1 ,mem_state_map 
+3899 c4038000 rtnbit0 smap_rxl2cap ,pdata 
+389a 20404435 call h4_send_acl_trigger 
+389b 68014800 fetch 2 ,mem_acl_credits 
+389c 203a3bf1 branch assert ,blank 
+389d 1fe0ffff increase -1 ,pdata 
+389e 60014800 store 2 ,mem_acl_credits 
+389f 20203887 branch parse_l2cap_exit 
+
+l2cap_buff1_inuse:
+38a0 680082ca fetch 1 ,mem_l2cap_rxbuff_inuse 
+38a1 79207e00 set1 l2cap_inuse_buff1 ,pdata 
+38a2 600082ca store 1 ,mem_l2cap_rxbuff_inuse 
+38a3 20600000 rtn 
+
+l2cap_buff2_inuse:
+38a4 680082ca fetch 1 ,mem_l2cap_rxbuff_inuse 
+38a5 79207e01 set1 l2cap_inuse_buff2 ,pdata 
+38a6 600082ca store 1 ,mem_l2cap_rxbuff_inuse 
+38a7 20600000 rtn 
+
+slave_send_access:
+38a8 793f8025 set0 mark_ext_patch ,mark 
+38a9 44bec00f bpatch patch0f_5 ,mem_patch0f 
+38aa 1d00c201 add clke_bt ,1 ,bt_clk 
+38ab 20403a5d call fetch_extm_bt_adr 
+38ac 18004803 force 0x03 ,freq_mode 
+38ad 20403a42 call tx_radio_freq 
+38ae 20403bae call start_transmitter 
+38af 20403bbf call start_tx_external 
+38b0 20203bc5 branch send_access_word 
+
+slave_conn_send_packet:
+38b1 793f8025 set0 mark_ext_patch ,mark 
+38b2 44bf400f bpatch patch0f_6 ,mem_patch0f 
+38b3 20403baa call rf_setup_time_slave_slot 
+38b4 1d027e00 deposit clke_bt 
+38b5 680a416a fetcht 4 ,mem_next_btclk 
+38b6 98467e00 isub temp ,pdata 
+38b7 c1808000 rtnne 1 
+38b8 28203e00 compare type_null ,type ,0x1f 
+38b9 2420b8bc nbranch slave_conn_send_access ,true 
+38ba 68008019 fetch 1 ,mem_rx_type 
+38bb 207a0000 rtn blank 
+
+slave_conn_send_access:
+38bc 204038a8 call slave_send_access 
+38bd 28203e10 compare type_id ,type ,0x1f 
+38be 2020b75c branch end_of_packet ,true 
+
+transmit_packet:
+38bf 1c230400 rshift bt_clk ,temp 
+38c0 18419c40 or temp ,0x40 ,white_init 
+
+transmit_packet_whitened:
+38c1 793f8025 set0 mark_ext_patch ,mark 
+38c2 44bfc00f bpatch patch0f_7 ,mem_patch0f 
+38c3 7823fc00 enable enable_white 
+38c4 78257c00 enable enable_hec 
+38c5 782dfc00 enable encode_fec1 
+38c6 793f8010 set0 mark_longpacket ,mark 
+38c7 18827e00 deposit am_addr 
+38c8 08008603 inject mod ,3 
+38c9 18227e00 deposit type 
+38ca 08008604 inject mod ,4 
+38cb 68008047 fetch 1 ,mem_arq 
+38cc 08008004 inject bucket ,4 
+38cd 08008603 inject mod ,3 
+38ce 78247c00 enable enable_parity 
+38cf 08008608 inject mod ,8 
+38d0 784dfc00 disable encode_fec1 
+38d1 78447c00 disable enable_parity 
+38d2 78457c00 disable enable_hec 
+38d3 793faa02 set0 psk3m ,radio_ctrl 
+38d4 d8400000 arg 0 ,temp 
+38d5 20403b74 call reserve_slot 
+38d6 793f8025 set0 mark_ext_patch ,mark 
+38d7 44c04010 bpatch patch10_0 ,mem_patch10 
+38d8 18217e1f and type ,0x1f ,pdata 
+38d9 c009b913 beq type_lmp ,transmit_lmp 
+38da c000375c beq type_null ,end_of_packet 
+38db c000b75c beq type_poll ,end_of_packet 
+38dc c00138f5 beq type_fhs ,transmit_fhs 
+38dd c001b925 beq type_dm1 ,transmit_dm1 
+38de c002392b beq type_dh1 ,transmit_dh1 
+38df c003b8e9 beq type_hv3 ,transmit_hev 
+38e0 c004392a beq type_3dh1 ,transmit_3dh1 
+38e1 d8400004 arg 4 ,temp 
+38e2 20403b74 call reserve_slot 
+38e3 c0053927 beq type_dm3 ,transmit_dm3 
+38e4 c005b92d beq type_dh3 ,transmit_dh3 
+38e5 d8400008 arg 8 ,temp 
+38e6 20403b74 call reserve_slot 
+38e7 c007b92d beq type_dh5 ,transmit_dh5 
+38e8 20203927 branch transmit_dm5 
+
+transmit_hev:
+38e9 793f8025 set0 mark_ext_patch ,mark 
+38ea 44c0c010 bpatch patch10_1 ,mem_patch10 
+38eb 782efc00 enable encode_fec0 
+38ec 7824fc00 enable enable_crc 
+38ed 78277c00 enable encrypt 
+38ee 1800721e force 30 ,loopcnt 
+38ef d8c000b5 arg mem_sco_obuf ,contr 
+
+transmit_ev_loop:
+38f0 e8c08000 ifetch 1 ,contr 
+38f1 08008608 inject mod ,8 
+38f2 c20038f0 loop transmit_ev_loop 
+38f3 c503b960 bmark1 mark_esco ,transmit_end 
+38f4 2020375c branch end_of_packet 
+
+transmit_fhs:
+38f5 793f8025 set0 mark_ext_patch ,mark 
+38f6 44c14010 bpatch patch10_2 ,mem_patch10 
+38f7 6800818b fetch 1 ,mem_fhs_am_addr 
+38f8 1fe20800 icopy am_addr 
+38f9 6800808f fetch 1 ,mem_fhs_misc 
+38fa 1fe23800 icopy fhs_misc 
+38fb 6801c14a fetch 3 ,mem_class 
+38fc 1fe23a00 icopy fhs_class 
+38fd 68014144 fetch 2 ,mem_nap 
+38fe 1fe25c00 icopy nap 
+38ff 7824fc00 enable enable_crc 
+3900 782e7c00 enable encode_fec2 
+3901 1c022200 copy bt_adr ,rega 
+3902 20403a54 call fetch_self_bt_adr 
+3903 782afc00 pulse recalc 
+3904 20000020 nop 32 
+3905 1c221600 copy bt_clk ,timeup 
+3906 6802016b fetch 4 ,mem_clkn_bt 
+3907 1fe24200 icopy bt_clk 
+3908 53c07e00 preload fhs0 
+3909 79207e3a set1 58 ,pdata 
+390a 08008648 inject mod ,72 
+390b 53e07e00 preload fhs1 
+390c 08008648 inject mod ,72 
+390d 19624200 copy timeup ,bt_clk 
+390e 1a224000 copy rega ,bt_adr 
+390f 78247c00 enable enable_parity 
+3910 08008610 inject mod ,16 
+3911 78447c00 disable enable_parity 
+3912 2020375c branch end_of_packet 
+
+transmit_lmp:
+3913 793f8025 set0 mark_ext_patch ,mark 
+3914 44c1c010 bpatch patch10_3 ,mem_patch10 
+3915 78277c00 enable encrypt 
+3916 7824fc00 enable enable_crc 
+3917 782e7c00 enable encode_fec2 
+3918 68008432 fetch 1 ,mem_lmo_header_length 
+3919 1fe105f8 and pdata ,0x1f8 ,temp 
+391a d8c00432 arg mem_lmo_header_length ,contr 
+391b 18408408 increase 8 ,temp 
+
+transmit_lmp_loop:
+391c 1840a7b8 add temp ,-72 ,regc 
+391d 24213922 nbranch transmit_lmp_finish ,positive 
+391e e8c48000 ifetch 9 ,contr 
+391f 08008648 inject mod ,72 
+3920 1a620400 copy regc ,temp 
+3921 2020391c branch transmit_lmp_loop 
+
+transmit_lmp_finish:
+3922 e8c48000 ifetch 9 ,contr 
+3923 08418600 iinject mod ,temp 
+3924 20203960 branch transmit_end 
+
+transmit_dm1:
+3925 782e7c00 enable encode_fec2 
+3926 20203930 branch transmit_dmh 
+
+transmit_dm3:
+
+transmit_dm5:
+3927 782e7c00 enable encode_fec2 
+3928 79200010 set1 mark_longpacket ,mark 
+3929 20203930 branch transmit_dmh 
+
+transmit_3dh1:
+392a 79202a02 set1 psk3m ,radio_ctrl 
+
+transmit_dh1:
+392b 782efc00 enable encode_fec0 
+392c 20203930 branch transmit_dmh 
+
+transmit_dh3:
+
+transmit_dh5:
+392d 79202a02 set1 psk3m ,radio_ctrl 
+392e 782efc00 enable encode_fec0 
+392f 79200010 set1 mark_longpacket ,mark 
+
+transmit_dmh:
+3930 793f8025 set0 mark_ext_patch ,mark 
+3931 44c24010 bpatch patch10_4 ,mem_patch10 
+3932 6800804c fetch 1 ,mem_state_map 
+3933 c302b946 bbit0 smap_edr ,transmit_noedr 
+3934 18267c03 sub type ,3 ,null 
+3935 20213946 branch transmit_noedr ,positive 
+3936 78477c00 disable encrypt 
+3937 784e7c00 disable encode_fec2 
+3938 782efc00 enable encode_fec0 
+3939 7843fc00 disable enable_white 
+393a 79202a01 set1 psk ,radio_ctrl 
+393b 2aaffe02 isolate1 psk3m ,radio_ctrl 
+393c 2020b940 branch transmit_edr3m ,true 
+393d 580abeee setarg 0xabeee 
+393e 08008614 inject mod ,20 
+393f 20203944 branch transmit_edr_sync_end 
+
+transmit_edr3m:
+3940 585faeba setarg 0x5faeba 
+3941 08008618 inject mod ,24 
+3942 58000012 setarg 0x12 
+3943 08008606 inject mod ,6 
+
+transmit_edr_sync_end:
+3944 7823fc00 enable enable_white 
+3945 79200010 set1 mark_longpacket ,mark 
+
+transmit_noedr:
+3946 78277c00 enable encrypt 
+3947 7824fc00 enable enable_crc 
+3948 c502b969 bmark1 mark_loopback ,transmit_loopback 
+3949 68008090 fetch 1 ,mem_tx_lch 
+394a 08008603 inject mod ,3 
+394b 68010091 fetch 2 ,mem_tx_len 
+394c 98007200 iforce loopcnt 
+394d c5083950 bmark1 mark_longpacket ,transmit_long 
+394e 08008605 inject mod ,5 
+394f 20203951 branch transmit_stuff 
+
+transmit_long:
+3950 0800860d inject mod ,13 
+
+transmit_stuff:
+3951 6800c132 fetch 1 ,mem_device_option 
+3952 c000b95b beq dvc_op_hci ,transmit_stuff_hci 
+3953 1f227e00 deposit loopcnt 
+3954 203a3960 branch transmit_end ,blank 
+3955 68010179 fetch 2 ,mem_txptr 
+3956 98000c00 iforce contr 
+
+transmit_stuff_loop:
+3957 e8c08000 ifetch 1 ,contr 
+3958 08008608 inject mod ,8 
+3959 c2003957 loop transmit_stuff_loop 
+395a 20203960 branch transmit_end 
+
+transmit_stuff_hci:
+395b 68010179 fetch 2 ,mem_txptr 
+395c 98000600 iforce contru 
+
+transmit_stuff_hci_loop:
+395d e8608000 ifetch 1 ,contru 
+395e 08008608 inject mod ,8 
+395f c200395d loop transmit_stuff_hci_loop 
+
+transmit_end:
+3960 78247c00 enable enable_parity 
+3961 08008610 inject mod ,16 
+3962 78447c00 disable enable_parity 
+3963 20403583 call set_wait_ack 
+3964 6800804c fetch 1 ,mem_state_map 
+3965 c302b75c bbit0 smap_edr ,end_of_packet 
+3966 18007e00 force 0 ,pdata 
+3967 08008606 inject mod ,6 
+3968 2020375c branch end_of_packet 
+
+transmit_loopback:
+3969 793f8025 set0 mark_ext_patch ,mark 
+396a 44c2c010 bpatch patch10_5 ,mem_patch10 
+396b c5083972 bmark1 mark_longpacket ,transmit_loopback_long 
+
+transmit_loopback_short:
+396c 6800818a fetch 1 ,mem_lch_code 
+396d 08008603 inject mod ,3 
+396e 68008169 fetch 1 ,mem_len 
+396f 98002600 iforce regc 
+3970 08008605 inject mod ,5 
+3971 20203977 branch transmit_loopback_cont 
+
+transmit_loopback_long:
+3972 6800818a fetch 1 ,mem_lch_code 
+3973 08008603 inject mod ,3 
+3974 68010169 fetch 2 ,mem_len 
+3975 98002600 iforce regc 
+3976 0800860d inject mod ,13 
+
+transmit_loopback_cont:
+3977 d8c004de arg mem_rxbuf ,contr 
+
+transmit_loopback_loop:
+3978 1a627c00 copy regc ,null 
+3979 2022b97e branch transmit_loopback_end ,zero 
+397a e8c08000 ifetch 1 ,contr 
+397b 08008608 inject mod ,8 
+397c 1a60a7ff increase -1 ,regc 
+397d 20203978 branch transmit_loopback_loop 
+
+transmit_loopback_end:
+397e 680100fe fetch 2 ,mem_tst_pktcnt_dmh 
+397f 1fe0fe01 increase 1 ,pdata 
+3980 600100fe store 2 ,mem_tst_pktcnt_dmh 
+3981 20203960 branch transmit_end 
+
+apply_switch_clke:
+3982 6802016f fetch 4 ,mem_clke_bt 
+3983 1fe0a207 add pdata ,7 ,rega 
+3984 6801017b fetch 2 ,mem_slot_offset 
+3985 243a3988 nbranch apply_switch_nozero ,blank 
+3986 1a20a3fd increase -3 ,rega 
+3987 20203990 branch apply_switch_wait_loop 
+
+apply_switch_nozero:
+3988 1feffe0c mul32 pdata ,12 ,pdata 
+3989 68190040 hfetcht 2 ,core_halfslot 
+398a 18408401 increase 1 ,temp 
+
+apply_switch_loop:
+398b 98467e00 isub temp ,pdata 
+398c 2421398f nbranch apply_switch_bt ,positive 
+398d 1a20a3ff increase -1 ,rega 
+398e 2020398b branch apply_switch_loop 
+
+apply_switch_bt:
+398f 1fe67e00 sub pdata ,0 ,pdata 
+
+apply_switch_wait_loop:
+3990 37d18200 until null ,oneslot 
+3991 2c400600 compare 0 ,clkn_bt ,3 
+3992 2420b990 nbranch apply_switch_wait_loop ,true 
+3993 98005200 iforce clke_rt 
+3994 1a225000 copy rega ,clke_bt 
+3995 98005200 iforce clke_rt 
+3996 20600000 rtn 
+
+calc_slot_offset:
+3997 793f8025 set0 mark_ext_patch ,mark 
+3998 44c34010 bpatch patch10_6 ,mem_patch10 
+3999 37d10200 until null ,halfslot 
+399a 1b427e00 deposit clke 
+399b 98000c00 iforce contr 
+399c 1ff17e00 rshift16 ,pdata ,pdata 
+399d 9c467200 isub clkn_bt ,loopcnt 
+399e 1f217203 and_into 3 ,loopcnt 
+399f 2422b9a2 nbranch calc_bt_portion ,zero 
+39a0 18007e00 force 0 ,pdata 
+39a1 202039a6 branch calc_skip_bt 
+
+calc_bt_portion:
+39a2 d8400ea6 arg 3750 ,temp 
+39a3 18007e00 force 0 ,pdata 
+
+calc_slot_offset_loop:
+39a4 9840fe00 iadd temp ,pdata 
+39a5 c20039a4 loop calc_slot_offset_loop 
+
+calc_skip_bt:
+39a6 98c0fe00 iadd contr ,pdata 
+39a7 1fe6fc0c div pdata ,12 
+39a8 20407efd call wait_div_end 
+39a9 1807fe00 quotient pdata 
+39aa 6001017b store 2 ,mem_slot_offset 
+39ab 20600000 rtn 
+
+calc_clke_offset:
+39ac 793f8025 set0 mark_ext_patch ,mark 
+39ad 44c3c010 bpatch patch10_7 ,mem_patch10 
+39ae 1b427e00 deposit clke 
+39af 1b220400 copy clkn ,temp 
+39b0 98467c00 isub temp ,null 
+39b1 7d217e2c nsetflag positive ,44 ,pdata 
+39b2 98460400 isub temp ,temp 
+39b3 58000ea6 setarg 3750 
+39b4 284c000f isolate0 15 ,temp 
+39b5 2020b9b8 branch calc_clke_pos ,true 
+39b6 5fff0ea6 setarg -61786 
+39b7 98408400 iadd temp ,temp 
+
+calc_clke_pos:
+39b8 600b03c8 storet 6 ,mem_le_clk_offset 
+39b9 207b0000 rtn le 
+39ba 600b0038 storet 6 ,mem_clk_offset 
+39bb 20600000 rtn 
+
+calc_clke:
+39bc 78587c00 disable clknt 
+39bd 680303c8 fetch 6 ,mem_le_clk_offset 
+39be 203b39c0 branch calc_clke2 ,le 
+39bf 68030038 fetch 6 ,mem_clk_offset 
+
+calc_clke2:
+39c0 9b20e000 iadd clkn ,alarm 
+39c1 1e00e00a increase 10 ,alarm 
+39c2 58000ea6 setarg 3750 
+39c3 9e067e00 isub alarm ,pdata 
+39c4 2fec000f isolate0 15 ,pdata 
+39c5 2020b9ca branch calc_clke_pos_adj ,true 
+39c6 5800f15a setarg 0xf15a 
+39c7 9e00e000 iadd alarm ,alarm 
+
+calc_clke_pos2:
+39c8 1e023400 copy alarm ,clke 
+39c9 20600000 rtn 
+
+calc_clke_pos_adj:
+39ca 18007c00 force 0 ,null 
+39cb 202039c8 branch calc_clke_pos2 
+
+calc_radio_freq:
+39cc 793f8025 set0 mark_ext_patch ,mark 
+39cd 44c44011 bpatch patch11_0 ,mem_patch11 
+39ce 20403a7a call set_sync_on 
+39cf 1c227e00 copy bt_clk ,pdata 
+39d0 1fe17f80 and_into 0x180 ,pdata 
+39d1 2c800e03 compare 3 ,freq_mode ,0x07 
+39d2 2420b9d6 nbranch freq_not_connection ,true 
+39d3 1fe97e00 rshift3 pdata ,pdata 
+39d4 9ae0fe00 iadd freq_index ,pdata 
+39d5 202039d7 branch do_hop_mod_now 
+
+freq_not_connection:
+39d6 1ae27e00 copy freq_index ,pdata 
+
+do_hop_mod_now:
+39d7 1fe6fc4f div pdata ,79 
+39d8 782afc00 pulse recalc 
+39d9 20407efd call wait_div_end 
+39da 18072200 remainder rega 
+39db 1a2085d8 add rega ,-40 ,temp 
+39dc 202139df branch odd_half ,positive 
+39dd 1a238400 lshift rega ,temp 
+39de 202039e1 branch freq_result 
+
+odd_half:
+39df 18438400 lshift temp ,temp 
+39e0 18408401 increase 1 ,temp 
+
+freq_result:
+39e1 793f8025 set0 mark_ext_patch ,mark 
+39e2 44c4c011 bpatch patch11_1 ,mem_patch11 
+39e3 68008031 fetch 1 ,mem_mode 
+39e4 c301b9f3 bbit0 afh_change ,afh_process_con 
+
+afh_process_0:
+39e5 68024173 fetch 4 ,mem_afh_instant 
+39e6 9c267c00 isub bt_clk ,null 
+39e7 202139f3 branch afh_process_con ,positive 
+39e8 20403a12 call afh_clear 
+39e9 6800c17a fetch 1 ,mem_afh_new_mod 
+39ea 207a0000 rtn blank 
+39eb 68008031 fetch 1 ,mem_mode 
+39ec 79207e02 set1 afh_enable ,pdata 
+39ed 60008031 store 1 ,mem_mode 
+39ee 6802c188 fetch 5 ,mem_afh_map_new 
+39ef 6002c17b store 5 ,mem_afh_map_lo 
+39f0 e8c28000 ifetch 5 ,contr 
+39f1 6002c180 store 5 ,mem_afh_map_hi 
+39f2 20403a17 call afh_process_freq_map 
+
+afh_process_con:
+39f3 68008031 fetch 1 ,mem_mode 
+39f4 c4010000 rtnbit0 afh_enable 
+39f5 2c2ffe01 isolate1 1 ,bt_clk 
+39f6 2020ba0f branch afh_same_channel ,true 
+39f7 18492200 rshift3 temp ,rega 
+39f8 18410e07 and temp ,7 ,queue 
+39f9 5800417b setarg mem_afh_map_lo 
+39fa 9a20a200 iadd rega ,rega 
+39fb ea208000 ifetch 1 ,rega 
+39fc afec0000 qisolate0 pdata 
+39fd 2020ba00 branch afh_process_1 ,true 
+39fe 18427e00 deposit temp 
+39ff 20203a0c branch afh_process_end 
+
+afh_process_1:
+3a00 6800c185 fetch 1 ,mem_afh_used 
+3a01 98002400 iforce regb 
+3a02 1c227e00 deposit bt_clk 
+3a03 1fe17f80 and_into 0x180 ,pdata 
+3a04 1fe97e00 rshift3 pdata ,pdata 
+3a05 9ae0fe00 iadd freq_index ,pdata 
+3a06 9a46fc00 idiv regb 
+3a07 58004193 setarg mem_afh_map 
+3a08 20407efd call wait_div_end 
+3a09 18072200 remainder rega 
+3a0a 9a208c00 iadd rega ,contr 
+3a0b e8c08000 ifetch 1 ,contr 
+
+afh_process_end:
+3a0c 6000c186 store 1 ,mem_afh_index 
+3a0d 98000400 iforce temp 
+3a0e 20600000 rtn 
+
+afh_same_channel:
+3a0f 6800c186 fetch 1 ,mem_afh_index 
+3a10 98000400 iforce temp 
+3a11 20600000 rtn 
+
+afh_clear:
+3a12 68008031 fetch 1 ,mem_mode 
+3a13 793ffe02 set0 afh_enable ,pdata 
+3a14 793ffe03 set0 afh_change ,pdata 
+3a15 60008031 store 1 ,mem_mode 
+3a16 20600000 rtn 
+
+afh_process_freq_map:
+3a17 793f8025 set0 mark_ext_patch ,mark 
+3a18 44c54011 bpatch patch11_2 ,mem_patch11 
+3a19 d8a04193 arg mem_afh_map ,contw 
+3a1a 1800720a force 10 ,loopcnt 
+3a1b 20407e3b call memset0 
+3a1c d8a04193 arg mem_afh_map ,contw 
+3a1d 18002600 force 0 ,regc 
+3a1e 18000e02 force 2 ,queue 
+
+process_freq_3:
+3a1f 6802c17b fetch 5 ,mem_afh_map_lo 
+3a20 98000400 iforce temp 
+3a21 28e1fe02 compare 2 ,queue ,0xff 
+3a22 2020ba24 branch process_freq_1 ,true 
+3a23 18430400 rshift temp ,temp 
+
+process_freq_1:
+3a24 284c0000 isolate0 0 ,temp 
+3a25 2020ba28 branch process_freq_0 ,true 
+3a26 1a627e00 deposit regc 
+3a27 e0a08000 istore 1 ,contw 
+
+process_freq_0:
+3a28 184b0400 rshift2 temp ,temp 
+3a29 1a60a602 increase 2 ,regc 
+3a2a 2a61fc28 compare 40 ,regc ,0xfe 
+3a2b 2420ba31 nbranch process_freq_2 ,true 
+3a2c 6802c180 fetch 5 ,mem_afh_map_hi 
+3a2d 98000400 iforce temp 
+3a2e 28e1fe02 compare 2 ,queue ,0xff 
+3a2f 2020ba31 branch process_freq_2 ,true 
+3a30 18430400 rshift temp ,temp 
+
+process_freq_2:
+3a31 1a667c4e sub regc ,78 ,null 
+3a32 20213a24 branch process_freq_1 ,positive 
+3a33 18002601 force 1 ,regc 
+3a34 18e08fff increase -1 ,queue 
+3a35 2422ba1f nbranch process_freq_3 ,zero 
+3a36 da204193 arg mem_afh_map ,rega 
+3a37 18a27e00 deposit contw 
+3a38 9a267e00 isub rega ,pdata 
+3a39 6000c185 store 1 ,mem_afh_used 
+3a3a 20600000 rtn 
+
+rx_radio_freq:
+3a3b 793f8025 set0 mark_ext_patch ,mark 
+3a3c 44c5c011 bpatch patch11_3 ,mem_patch11 
+3a3d 204039cc call calc_radio_freq 
+3a3e 68008189 fetch 1 ,mem_debug_config 
+3a3f c302ba41 bbit0 debug_rx_fixed_freq ,rx_radio_freq_now 
+3a40 68088448 fetcht 1 ,mem_rx_fixed_freq 
+
+rx_radio_freq_now:
+3a41 20203a82 branch set_freq_rx 
+
+tx_radio_freq:
+3a42 793f8025 set0 mark_ext_patch ,mark 
+3a43 44c64011 bpatch patch11_4 ,mem_patch11 
+3a44 204039cc call calc_radio_freq 
+3a45 68008189 fetch 1 ,mem_debug_config 
+3a46 c3023a48 bbit0 debug_tx_fixed_freq ,tx_radio_freq_now 
+3a47 68088447 fetcht 1 ,mem_tx_fixed_freq 
+
+tx_radio_freq_now:
+3a48 20203a91 branch set_freq_tx 
+
+fetch_giac:
+3a49 18005a00 force 0 ,uap 
+3a4a 6801c147 fetch 3 ,mem_glap 
+3a4b 98005800 iforce lap 
+3a4c 20600000 rtn 
+
+fetch_page_bt_adr:
+3a4d 793f8025 set0 mark_ext_patch ,mark 
+3a4e 44c6c011 bpatch patch11_5 ,mem_patch11 
+3a4f 6800c277 fetch 1 ,mem_hci_puap 
+3a50 1fe25a00 icopy uap 
+3a51 6801c274 fetch 3 ,mem_hci_plap 
+3a52 1fe25800 icopy lap 
+3a53 20600000 rtn 
+
+fetch_self_bt_adr:
+3a54 793f8025 set0 mark_ext_patch ,mark 
+3a55 44c74011 bpatch patch11_6 ,mem_patch11 
+3a56 68014144 fetch 2 ,mem_nap 
+3a57 1fe25c00 icopy nap 
+3a58 6800c143 fetch 1 ,mem_uap 
+3a59 1fe25a00 icopy uap 
+3a5a 6801c140 fetch 3 ,mem_lap 
+3a5b 1fe25800 icopy lap 
+3a5c 20600000 rtn 
+
+fetch_extm_bt_adr:
+3a5d 793f8025 set0 mark_ext_patch ,mark 
+3a5e 44c7c011 bpatch patch11_7 ,mem_patch11 
+3a5f 68010044 fetch 2 ,mem_pnap 
+3a60 1fe25c00 icopy nap 
+3a61 68008043 fetch 1 ,mem_puap 
+3a62 1fe25a00 icopy uap 
+3a63 68018040 fetch 3 ,mem_plap 
+3a64 1fe25800 icopy lap 
+3a65 20600000 rtn 
+
+fetch_diac:
+3a66 c5103a69 bmark1 mark_all_diac ,fetch_diac_do 
+3a67 c68e8000 rtnmark0 mark_inquiry_state 
+3a68 c68f8000 rtnmark0 mark_periodical_diac 
+
+fetch_diac_do:
+3a69 1d815900 and_into -256 ,lap 
+3a6a 782afc00 pulse recalc 
+3a6b 20000020 nop 32 
+3a6c 20600000 rtn 
+
+shutdown_radio:
+3a6d 793f8025 set0 mark_ext_patch ,mark 
+3a6e 44c84012 bpatch patch12_0 ,mem_patch12 
+3a6f 18002a00 force 0 ,radio_ctrl 
+3a70 7850fc00 disable is_rx 
+3a71 78507c00 disable is_tx 
+3a72 782f7c00 pulse packet_end 
+3a73 70890200 hjam 0x0 ,rfen_mdm 
+3a74 70890100 hjam 0x0 ,rfen_tx 
+3a75 70890000 hjam 0x0 ,rfen_rx 
+3a76 70890300 hjam 0 ,rfen_sn 
+3a77 70890470 hjam 0x70 ,rfen_msc 
+3a78 70890600 hjam 0x0 ,rfen_adc 
+3a79 20600000 rtn 
+
+set_sync_on:
+3a7a 793f8025 set0 mark_ext_patch ,mark 
+3a7b 44c8c012 bpatch patch12_1 ,mem_patch12 
+3a7c 70890200 hjam 0x0 ,rfen_mdm 
+3a7d 70890100 hjam 0x0 ,rfen_tx 
+3a7e 70890018 hjam 0x18 ,rfen_rx 
+3a7f 708903a7 hjam 0xa7 ,rfen_sn 
+3a80 7089047f hjam 0x7f ,rfen_msc 
+3a81 20600000 rtn 
+
+set_freq_rx:
+3a82 793f8025 set0 mark_ext_patch ,mark 
+3a83 44c94012 bpatch patch12_2 ,mem_patch12 
+3a84 60088017 storet 1 ,mem_last_freq 
+3a85 1840a204 add temp ,rx_freq_offset ,rega 
+3a86 20203ab6 branch rf_write_freq 
+
+rf_rx_enable:
+3a87 793f8025 set0 mark_ext_patch ,mark 
+3a88 44c9c012 bpatch patch12_3 ,mem_patch12 
+3a89 708901cf hjam 0xcf ,rfen_tx 
+3a8a 2000000a nop 10 
+3a8b 708900ff hjam 0xff ,rfen_rx 
+3a8c 708903af hjam 0xaf ,rfen_sn 
+3a8d 708904ff hjam 0xff ,rfen_msc 
+3a8e 2000000a nop 10 
+3a8f 708902a0 hjam 0xa0 ,rfen_mdm 
+3a90 20600000 rtn 
+
+set_freq_tx:
+3a91 793f8025 set0 mark_ext_patch ,mark 
+3a92 44ca4012 bpatch patch12_4 ,mem_patch12 
+3a93 60088017 storet 1 ,mem_last_freq 
+3a94 1840a202 add temp ,tx_freq_offset ,rega 
+3a95 20403ab6 call rf_write_freq 
+3a96 58000500 setarg param_pll_setup 
+3a97 20403bf3 call sleep 
+
+txon:
+3a98 70890601 hjam 0x1 ,rfen_adc 
+3a99 7089003c hjam 0x3c ,rfen_rx 
+3a9a 708901e0 hjam 0xe0 ,rfen_tx 
+3a9b 708903b7 hjam 0xb7 ,rfen_sn 
+3a9c 7089027f hjam 0x7f ,rfen_mdm 
+3a9d 20600000 rtn 
+
+initialize_radio:
+3a9e 70804206 hjam clksel_rc ,core_clksel 
+3a9f 20403c29 call init_rf_regs 
+3aa0 20403c3a call init_agc_table 
+
+initialize_radio_wait:
+3aa1 68014163 fetch 2 ,mem_rf_init_ptr 
+3aa2 c3073aa1 bbit0 14 ,initialize_radio_wait 
+3aa3 98000c00 iforce contr 
+3aa4 d8408900 arg 0x8900 ,temp 
+
+initialize_radio_loop:
+3aa5 e8c08000 ifetch 1 ,contr 
+3aa6 c07fbaab beq 0xff ,initialize_radio_cont 
+3aa7 98418a00 ior temp ,contw 
+3aa8 e8c08000 ifetch 1 ,contr 
+3aa9 e0a08000 istore 1 ,contw 
+3aaa 20203aa5 branch initialize_radio_loop 
+
+initialize_radio_cont:
+3aab 793f8025 set0 mark_ext_patch ,mark 
+3aac 44cac012 bpatch patch12_5 ,mem_patch12 
+3aad 20403d91 call lpm_cal_xtal_startup 
+3aae 20403b0a call switchto_dpllclk 
+3aaf 580007d0 setarg param_dpll_start_delay 
+3ab0 9c40fe00 iadd clkn_bt ,pdata 
+3ab1 60020173 store 4 ,mem_dpll_clkn 
+3ab2 79202a03 set1 reset ,radio_ctrl 
+3ab3 18002a00 force 0 ,radio_ctrl 
+3ab4 2455bace ncall do_rccal ,wake 
+3ab5 20203ae2 branch set_rccal 
+
+rf_write_freq:
+3ab6 793f8025 set0 mark_ext_patch ,mark 
+3ab7 44cb4012 bpatch patch12_6 ,mem_patch12 
+3ab8 58000960 setarg 2400 
+3ab9 9a208400 iadd rega ,temp 
+3aba 6800c15d fetch 1 ,mem_fcomp_mul 
+3abb 70895f04 hjam 0x04 ,rf_pll_rstn 
+3abc 984ffe00 imul32 temp ,pdata 
+3abd 6808c15e fetcht 1 ,mem_fcomp_div 
+3abe 9846fc00 idiv temp 
+3abf 20407efd call wait_div_end 
+3ac0 1807a200 quotient rega 
+3ac1 18077e00 remainder pdata 
+3ac2 1ff07e00 lshift16 pdata ,pdata 
+3ac3 1ff27e00 lshift4 pdata ,pdata 
+3ac4 9846fc00 idiv temp 
+3ac5 20407efd call wait_div_end 
+3ac6 1807fe00 quotient pdata 
+3ac7 1fed7e00 lshift8 pdata ,pdata 
+3ac8 1fe3fe00 lshift pdata ,pdata 
+3ac9 9a21fe00 ior rega ,pdata 
+3aca 60120960 hstore 4 ,rf_pll_intg 
+3acb 70895f44 hjam 0x44 ,rf_pll_rstn 
+3acc 70895fc4 hjam 0xc4 ,rf_pll_rstn 
+3acd 20600000 rtn 
+
+do_rccal:
+3ace 793f8025 set0 mark_ext_patch ,mark 
+3acf 44cbc012 bpatch patch12_7 ,mem_patch12 
+3ad0 70890602 hjam 0x02 ,rfen_adc 
+3ad1 5803d090 setarg 250000 
+3ad2 20403bf3 call sleep 
+3ad3 7089007f hjam 0x7f ,rfen_rx 
+3ad4 20000082 nop 130 
+3ad5 70895230 hjam 0x30 ,rf_rccal_ctrl 
+3ad6 708901d0 hjam 0xd0 ,rfen_tx 
+3ad7 70895270 hjam 0x70 ,rf_rccal_ctrl 
+3ad8 708952f0 hjam 0xf0 ,rf_rccal_ctrl 
+3ad9 18007232 force 50 ,loopcnt 
+
+do_rccal_loop:
+3ada 68108980 hfetch 1 ,rf_rccal_result 
+3adb c282badd bbit1 5 ,do_rccal_end 
+3adc c2003ada loop do_rccal_loop 
+
+do_rccal_end:
+3add 6000c16f store 1 ,mem_rf_rccal 
+3ade 70890100 hjam 0 ,rfen_tx 
+3adf 70890000 hjam 0 ,rfen_rx 
+3ae0 70890600 hjam 0x00 ,rfen_adc 
+3ae1 20600000 rtn 
+
+set_rccal:
+3ae2 793f8025 set0 mark_ext_patch ,mark 
+3ae3 44cc4013 bpatch patch13_0 ,mem_patch13 
+3ae4 6800c16f fetch 1 ,mem_rf_rccal 
+3ae5 79207e05 set1 5 ,pdata 
+3ae6 60108952 hstore 1 ,rf_rccal_ctrl 
+3ae7 68188950 hfetcht 1 ,rf_bpf_ctrim 
+3ae8 18410407 and_into 7 ,temp 
+3ae9 1fe9fe00 lshift3 pdata ,pdata 
+3aea 9841fe00 ior temp ,pdata 
+3aeb 60108950 hstore 1 ,rf_bpf_ctrim 
+3aec 68108951 hfetch 1 ,rf_bpf_ib 
+3aed 793ffe00 set0 bpf_rccal ,pdata 
+3aee 60108951 hstore 1 ,rf_bpf_ib 
+3aef 68108952 hfetch 1 ,rf_adc_rccal 
+3af0 793ffe05 set0 adc_rccal ,pdata 
+3af1 60108952 hstore 1 ,rf_adc_rccal 
+3af2 20600000 rtn 
+
+save_rssi:
+3af3 793f8025 set0 mark_ext_patch ,mark 
+3af4 44ccc013 bpatch patch13_1 ,mem_patch13 
+3af5 68110981 hfetch 2 ,rf_afc_d2a 
+3af6 1ff1fe00 rshift4 pdata ,pdata 
+3af7 1fe97e00 rshift3 pdata ,pdata 
+3af8 1fe67e00 sub pdata ,0 ,pdata 
+3af9 1fe17eff and_into 0xff ,pdata 
+3afa 1fe6fc0a div pdata ,10 
+3afb 20407efd call wait_div_end 
+3afc 1807fe00 quotient pdata 
+3afd 1ff27e00 lshift4 pdata ,pdata 
+3afe 18070400 remainder temp 
+3aff 9841fe00 ior temp ,pdata 
+3b00 60008018 store 1 ,mem_rssi 
+3b01 20600000 rtn 
+
+switchto_rcclk:
+3b02 7080420a hjam 0xa ,core_clksel 
+3b03 70890500 hjam 0 ,rfen_ck 
+3b04 68118138 hfetch 3 ,core_lpm_ctrl 
+3b05 6011804c hstore 3 ,core_lpm_reg 
+3b06 70804cfc hjam 0xfc ,core_lpm_reg 
+3b07 20403db0 call lpm_write_ctrl 
+3b08 200003e8 nop 1000 
+3b09 20600000 rtn 
+
+switchto_dpllclk:
+3b0a 70804206 hjam clksel_rc ,core_clksel 
+3b0b 6810896b hfetch 1 ,rf_clkpll_frac + 2 
+3b0c 793ffe04 set0 4 ,pdata 
+3b0d 793ffe05 set0 5 ,pdata 
+3b0e 6010896b hstore 1 ,rf_clkpll_frac + 2 
+3b0f 70890500 hjam 0x00 ,rfen_ck 
+3b10 70890400 hjam 0x00 ,rfen_msc 
+3b11 70890470 hjam 0x70 ,rfen_msc 
+3b12 708905ff hjam 0xff ,rfen_ck 
+3b13 6810896b hfetch 1 ,rf_clkpll_frac + 2 
+3b14 79207e04 set1 4 ,pdata 
+3b15 79207e05 set1 5 ,pdata 
+3b16 6010896b hstore 1 ,rf_clkpll_frac + 2 
+3b17 20403b38 call init_lpm_ctrl 
+3b18 68108968 hfetch 1 ,rf_clkpll_int 
+3b19 79207e07 set1 7 ,pdata 
+3b1a 60108968 hstore 1 ,rf_clkpll_int 
+3b1b 793ffe07 set0 7 ,pdata 
+3b1c 60108968 hstore 1 ,rf_clkpll_int 
+3b1d 79207e07 set1 7 ,pdata 
+3b1e 60108968 hstore 1 ,rf_clkpll_int 
+3b1f 70804205 hjam clksel_dpll ,core_clksel 
+3b20 20600000 rtn 
+
+check_dpll:
+3b21 200003e8 nop 1000 
+3b22 70804204 hjam clksel_xtal ,core_clksel 
+3b23 2000000a nop 10 
+3b24 7080b400 hjam 0x00 ,core_bist_ctrl 
+3b25 70800680 hjam ccnt_start ,core_misc_ctrl 
+
+check_dpll_loop:
+3b26 6810812d hfetch 1 ,core_perf_status 
+3b27 c300bb26 bbit0 1 ,check_dpll_loop 
+3b28 68198149 hfetcht 3 ,core_clk_counter 
+3b29 70804205 hjam clksel_dpll ,core_clksel 
+3b2a 2000000a nop 10 
+3b2b 70800680 hjam ccnt_start ,core_misc_ctrl 
+
+check_dpll_loop2:
+3b2c 6810812d hfetch 1 ,core_perf_status 
+3b2d c300bb2c bbit0 1 ,check_dpll_loop2 
+3b2e 68118149 hfetch 3 ,core_clk_counter 
+3b2f 98467e00 isub temp ,pdata 
+3b30 20213b32 branch check_dpll_pos ,positive 
+3b31 1fe67e00 sub pdata ,0 ,pdata 
+
+check_dpll_pos:
+3b32 6001018c store 2 ,mem_dpll_error 
+3b33 1fe67c46 sub pdata ,70 ,null 
+
+check_dpll_assert:
+3b34 24213b34 nbranch check_dpll_assert ,positive 
+3b35 20600000 rtn 
+
+xtal_fast_wake:
+3b36 58000f0f setarg 0xf0f 
+3b37 20203da7 branch lpm_write_config 
+
+init_lpm_ctrl:
+3b38 5800080f setarg 0x80f 
+3b39 20203da7 branch lpm_write_config 
+
+start_receiver:
+3b3a 793f8025 set0 mark_ext_patch ,mark 
+3b3b 44cd4013 bpatch patch13_2 ,mem_patch13 
+3b3c 20403a87 call rf_rx_enable 
+3b3d 78507c00 disable is_tx 
+3b3e 7830fc00 enable is_rx 
+3b3f 782b7c00 pulse init_encrypt 
+3b40 20600000 rtn 
+
+prep_crypt:
+3b41 793f8025 set0 mark_ext_patch ,mark 
+3b42 44cdc013 bpatch patch13_3 ,mem_patch13 
+3b43 6800804c fetch 1 ,mem_state_map 
+3b44 2feffe02 isolate1 smap_encryption ,pdata 
+3b45 7920fe00 setflag true ,0 ,pdata 
+3b46 60108011 hstore 1 ,core_encrypt 
+3b47 d8c00062 arg mem_kc ,contr 
+3b48 e8c48000 ifetch 9 ,contr 
+3b49 98006400 iforce kc_ls 
+3b4a e8c38000 ifetch 7 ,contr 
+3b4b 98006600 iforce kc_ms 
+3b4c 68008054 fetch 1 ,mem_key_size 
+3b4d 1fe0e9ff add pdata ,-1 ,g1l 
+3b4e 782d7c00 pulse kc_p_activate 
+3b4f 20600000 rtn 
+
+wait_access_clke_rt:
+3b50 793f8025 set0 mark_ext_patch ,mark 
+3b51 44ce4013 bpatch patch13_4 ,mem_patch13 
+3b52 7826fc00 enable decode_fec0 
+3b53 d9600600 arg param_conn_access ,timeup 
+3b54 35330400 correlate clke_rt ,meet 
+
+wait_access_end:
+3b55 1b427e00 deposit clke 
+3b56 6003009c store 6 ,mem_sync_clke 
+3b57 7846fc00 disable decode_fec0 
+3b58 242c3a6d nbranch shutdown_radio ,sync 
+3b59 dd2003bb arg param_clke_cal ,clke_rt 
+3b5a 1d00d001 increase 1 ,clke_bt 
+3b5b 1d0151fc and_into 0x1fc ,clke_bt 
+3b5c 20600000 rtn 
+
+wait_access_mhalfbnd:
+3b5d 7826fc00 enable decode_fec0 
+
+wait_access_mhalfbnd_correlate:
+3b5e 37cb8400 correlate null ,mhalfbnd 
+3b5f 202c3b55 branch wait_access_end ,sync 
+3b60 2d000402 compare 0x02 ,clke_bt ,0x02 
+3b61 2420bb5e nbranch wait_access_mhalfbnd_correlate ,true 
+3b62 20203b55 branch wait_access_end 
+
+wait_access_clkn_rt:
+3b63 793f8025 set0 mark_ext_patch ,mark 
+3b64 44cec013 bpatch patch13_5 ,mem_patch13 
+3b65 d9600600 arg param_conn_access ,timeup 
+3b66 7826fc00 enable decode_fec0 
+3b67 34730400 correlate clkn_rt ,meet 
+3b68 7846fc00 disable decode_fec0 
+3b69 242c3a6d nbranch shutdown_radio ,sync 
+3b6a 20600000 rtn 
+
+wait_access_forever:
+3b6b 793f8025 set0 mark_ext_patch ,mark 
+3b6c 44cf4013 bpatch patch13_6 ,mem_patch13 
+3b6d 7826fc00 enable decode_fec0 
+3b6e 37c18400 correlate null ,timeout 
+3b6f 7846fc00 disable decode_fec0 
+3b70 242c3a6d nbranch shutdown_radio ,sync 
+3b71 dd2003bb arg param_clke_cal ,clke_rt 
+3b72 1d0151fc and_into 0x1fc ,clke_bt 
+3b73 20600000 rtn 
+
+reserve_slot:
+3b74 793f8025 set0 mark_ext_patch ,mark 
+3b75 44cfc013 bpatch patch13_7 ,mem_patch13 
+3b76 98002200 iforce rega 
+3b77 1c227e00 deposit bt_clk 
+3b78 98409600 iadd temp ,timeup 
+3b79 19627e00 copy timeup ,pdata 
+3b7a 6002416a store 4 ,mem_next_btclk 
+3b7b 1a227e00 deposit rega 
+3b7c 20600000 rtn 
+
+ahead_window:
+3b7d 1fe20400 copy pdata ,temp 
+3b7e 793f8025 set0 mark_ext_patch ,mark 
+3b7f 44d04014 bpatch patch14_0 ,mem_patch14 
+3b80 18427e00 copy temp ,pdata 
+3b81 20407e91 call clk2bt 
+3b82 1c307e00 lshift16 bt_clk ,pdata 
+3b83 79207e2c set1 44 ,pdata 
+3b84 20407e7a call clk_diff 
+3b85 793ffe2c set0 44 ,pdata 
+3b86 20403bda call get_clk 
+3b87 20407e7a call clk_diff 
+3b88 20740000 rtn user 
+3b89 20407e84 call clk2rt 
+3b8a 98003600 iforce stop_watch 
+3b8b 37c18200 until null ,timeout 
+3b8c 20600000 rtn 
+
+setup_clk:
+3b8d 793f8025 set0 mark_ext_patch ,mark 
+3b8e 44d0c014 bpatch patch14_1 ,mem_patch14 
+3b8f 20383b93 branch setup_clkn ,clknt 
+3b90 35330200 until clke_rt ,meet 
+
+skip_setup_clke:
+3b91 1d020400 copy clke_bt ,temp 
+3b92 20203b96 branch setup_clknbt 
+
+setup_clkn:
+3b93 20373b95 branch skip_setup_clkn ,attempt 
+3b94 34730200 until clkn_rt ,meet 
+
+skip_setup_clkn:
+3b95 1c420400 copy clkn_bt ,temp 
+
+setup_clknbt:
+3b96 20343ba3 branch setup_clk11 ,user 
+3b97 28400601 compare 1 ,temp ,3 
+3b98 2420bb8d nbranch setup_clk ,true 
+
+setup_complete:
+3b99 793f8025 set0 mark_ext_patch ,mark 
+3b9a 44d14014 bpatch patch14_2 ,mem_patch14 
+3b9b 68008030 fetch 1 ,mem_state 
+3b9c c4000000 rtnbit0 state_inconn 
+3b9d 6802416a fetch 4 ,mem_next_btclk 
+3b9e 98467e00 isub temp ,pdata 
+3b9f 24610000 nrtn positive 
+3ba0 1fe67cff sub pdata ,0xff ,null 
+3ba1 20213b8d branch setup_clk ,positive 
+3ba2 20600000 rtn 
+
+setup_clk11:
+3ba3 28400603 compare 3 ,temp ,3 
+3ba4 2420bb8d nbranch setup_clk ,true 
+3ba5 20203b99 branch setup_complete 
+
+rf_setup_time:
+3ba6 793f8025 set0 mark_ext_patch ,mark 
+3ba7 44d1c014 bpatch patch14_3 ,mem_patch14 
+3ba8 d9600600 arg param_rf_setup ,timeup 
+3ba9 20203b8d branch setup_clk 
+
+rf_setup_time_slave_slot:
+3baa 78547c00 disable user 
+3bab 20203ba6 branch rf_setup_time 
+
+rf_setup_time_master_slot:
+3bac 78347c00 enable user 
+3bad 20203ba6 branch rf_setup_time 
+
+start_transmitter:
+3bae 793f8025 set0 mark_ext_patch ,mark 
+3baf 44d24014 bpatch patch14_4 ,mem_patch14 
+3bb0 20403b41 call prep_crypt 
+3bb1 7850fc00 disable is_rx 
+3bb2 78307c00 enable is_tx 
+3bb3 20600000 rtn 
+
+start_tx_native:
+3bb4 793f8025 set0 mark_ext_patch ,mark 
+3bb5 44d2c014 bpatch patch14_5 ,mem_patch14 
+3bb6 d9600e43 arg param_tx_setup ,timeup 
+3bb7 34730200 until clkn_rt ,meet 
+3bb8 782b7c00 pulse init_encrypt 
+3bb9 20600000 rtn 
+
+start_rx_native:
+3bba 793f8025 set0 mark_ext_patch ,mark 
+3bbb 44d34014 bpatch patch14_6 ,mem_patch14 
+3bbc d9600d00 arg param_rx_setup ,timeup 
+3bbd 34730200 until clkn_rt ,meet 
+3bbe 20600000 rtn 
+
+start_tx_external:
+3bbf 793f8025 set0 mark_ext_patch ,mark 
+3bc0 44d3c014 bpatch patch14_7 ,mem_patch14 
+3bc1 d9600e43 arg param_tx_setup ,timeup 
+3bc2 35330200 until clke_rt ,meet 
+3bc3 782b7c00 pulse init_encrypt 
+3bc4 20600000 rtn 
+
+send_access_word:
+3bc5 793f8025 set0 mark_ext_patch ,mark 
+3bc6 44d44015 bpatch patch15_0 ,mem_patch15 
+3bc7 51207e00 preload access 
+3bc8 782efc00 enable encode_fec0 
+3bc9 79202a00 set1 txgfsk ,radio_ctrl 
+3bca 08008648 inject mod ,72 
+3bcb 784efc00 disable encode_fec0 
+3bcc 20600000 rtn 
+
+scan_mode_whiten:
+3bcd 1ca20400 copy xin ,temp 
+3bce 18418460 or_into 0x60 ,temp 
+3bcf 18421c00 copy temp ,white_init 
+3bd0 20600000 rtn 
+
+get_free_amaddr:
+3bd1 793f8025 set0 mark_ext_patch ,mark 
+3bd2 44d4c015 bpatch patch15_1 ,mem_patch15 
+3bd3 6800c130 fetch 1 ,mem_current_amaddr 
+3bd4 1fe0fe01 increase 1 ,pdata 
+3bd5 c083bbd7 bne param_esco_addr ,get_free_amaddr_cont 
+3bd6 18007e01 force 1 ,pdata 
+
+get_free_amaddr_cont:
+3bd7 6000c130 store 1 ,mem_current_amaddr 
+3bd8 98000800 iforce am_addr 
+3bd9 20600000 rtn 
+
+get_clk:
+3bda 1b220400 copy clkn ,temp 
+3bdb 20748000 rtn master 
+3bdc 1b420400 copy clke ,temp 
+3bdd 20600000 rtn 
+
+get_clkbt:
+3bde 1c427e00 deposit clkn_bt 
+3bdf 20748000 rtn master 
+3be0 1d027e00 deposit clke_bt 
+3be1 20600000 rtn 
+
+supervision_update:
+3be2 793f8025 set0 mark_ext_patch ,mark 
+3be3 44d54015 bpatch patch15_2 ,mem_patch15 
+3be4 680a004d fetcht 4 ,mem_supervision_timer 
+3be5 20403bde call get_clkbt 
+3be6 98461600 isub temp ,timeup 
+3be7 19627e00 deposit timeup 
+3be8 68090051 fetcht 2 ,mem_supervision_to 
+3be9 18438400 lshift temp ,temp 
+3bea 98467e00 isub temp ,pdata 
+3beb 20600000 rtn 
+
+supervision_flush:
+3bec 793f8025 set0 mark_ext_patch ,mark 
+3bed 44d5c015 bpatch patch15_3 ,mem_patch15 
+3bee 20403bde call get_clkbt 
+3bef 6002004d store 4 ,mem_supervision_timer 
+3bf0 20600000 rtn 
+
+assert:
+3bf1 20203bf1 branch assert 
+
+loop:
+3bf2 20203bf2 branch loop 
+
+sleep:
+3bf3 207a0000 rtn blank 
+3bf4 1fe37e00 rshift pdata ,pdata 
+3bf5 1fe0fffd increase -3 ,pdata 
+
+sleep_loop:
+3bf6 1fe0ffff increase -1 ,pdata 
+3bf7 2422bbf6 nbranch sleep_loop ,zero 
+3bf8 18007e00 force 0 ,pdata 
+3bf9 20600000 rtn 
+
+init_param:
+3bfa df200010 arg 0x10 ,loopcnt 
+3bfb d8a00000 arg 0 ,contw 
+3bfc 20407e3b call memset0 
+3bfd d8a003c0 arg mem_le_state ,contw 
+3bfe df20000a arg 10 ,loopcnt 
+3bff 20407e3b call memset0 
+3c00 7007de00 jam 0 ,mem_sp_calc 
+3c01 700b7d00 jam 0 ,mem_fifo_temp 
+3c02 70040d00 jam 0 ,mem_le_testtype 
+3c03 70018900 jam 0 ,mem_debug_config 
+3c04 70044d00 jam 0 ,mem_lmp_conn_state 
+3c05 793f8025 set0 mark_ext_patch ,mark 
+3c06 44d64015 bpatch patch15_4 ,mem_patch15 
+3c07 70017700 jam 0 ,mem_connection_options 
+3c08 70015300 jam 0 ,mem_tester_emulate 
+3c09 70015e00 jam 0 ,mem_tester_cnt 
+3c0a 589e8b33 setarg param_glap 
+3c0b 6001c147 store 3 ,mem_glap 
+3c0c 58000153 setarg param_acl_pktlen 
+3c0d 60010083 store 2 ,mem_acl_pktlen 
+3c0e 7000851e jam param_sco_pktlen ,mem_sco_pktlen 
+3c0f 70008601 jam param_acl_pktcnt ,mem_acl_pktcnt 
+3c10 70008807 jam param_sco_pktcnt ,mem_sco_pktcnt 
+3c11 5812e904 setarg param_hci_version 
+3c12 60018080 store 3 ,mem_hci_version 
+3c13 58000a04 setarg param_lmp_version 
+3c14 6001c6fd store 3 ,mem_lmp_version 
+3c15 580012e9 setarg param_lmp_subversion 
+3c16 60014700 store 2 ,mem_lmp_subversion 
+3c17 70008f60 jam 0x60 ,mem_fhs_misc 
+3c18 70417105 jam param_max_slot ,mem_max_slot 
+3c19 70001402 jam 0x02 ,mem_fw_ver 
+3c1a 204075cd call init_memp 
+3c1b 793f8025 set0 mark_ext_patch ,mark 
+3c1c 44d6c015 bpatch patch15_5 ,mem_patch15 
+3c1d 20758000 rtn wake 
+3c1e 58000000 setarg 0 
+3c1f 60010091 store 2 ,mem_tx_len 
+3c20 1c437e00 rshift clkn_bt ,pdata 
+3c21 60024134 store 4 ,mem_last_clkn 
+3c22 20600000 rtn 
+
+init_esco_ibuff:
+3c23 580000aa setarg 0xaa ,pdata 
+3c24 d8a000d3 arg mem_sco_ibuf ,contw 
+3c25 1800721e force 30 ,loopcnt 
+
+init_esco_ibuff_loop:
+3c26 e0a08000 istore 1 ,contw 
+3c27 c2003c26 loop init_esco_ibuff_loop 
+3c28 20600000 rtn 
+
+init_rf_regs:
+3c29 70890702 hjam 0x02 ,0x907 
+3c2a 7089081f hjam 0x1f ,0x908 
+3c2b 7089091f hjam 0x1f ,0x909 
+3c2c 70890ae0 hjam 0xe0 ,0x90a 
+3c2d 70890b4e hjam 0x4e ,0x90b 
+3c2e 70891245 hjam 0x45 ,rf_agc_ctrl 
+3c2f 70895300 hjam 0x00 ,0x953 
+3c30 70894cfb hjam 0xfb ,0x94c 
+3c31 70894def hjam 0xef ,0x94d 
+3c32 70894e0c hjam 0x0c ,0x94e 
+3c33 70896f88 hjam 0x88 ,0x96f 
+3c34 70897330 hjam 0x30 ,0x973 
+3c35 70895300 hjam 0x00 ,0x953 
+3c36 708956c9 hjam 0xc9 ,0x956 
+3c37 7089586c hjam 0x6c ,0x958 
+3c38 70895950 hjam 0x50 ,0x959 
+3c39 20600000 rtn 
+
+init_agc_table:
+3c3a 708930a9 hjam 0xa9 ,0x930 
+3c3b 70892fb1 hjam 0xb1 ,0x92f 
+3c3c 70892eb9 hjam 0xb9 ,0x92e 
+3c3d 70892dad hjam 0xAD ,0x92d 
+3c3e 70892cb1 hjam 0xB1 ,0x92c 
+3c3f 70892bb5 hjam 0xB5 ,0x92b 
+3c40 70892aba hjam 0xBA ,0x92a 
+3c41 708929be hjam 0xBE ,0x929 
+3c42 708928c2 hjam 0xC2 ,0x928 
+3c43 708927c6 hjam 0xC6 ,0x927 
+3c44 708926ca hjam 0xCA ,0x926 
+3c45 708925ce hjam 0xCE ,0x925 
+3c46 708924d2 hjam 0xD2 ,0x924 
+3c47 708923d6 hjam 0xD6 ,0x923 
+3c48 708922da hjam 0xDA ,0x922 
+3c49 708921de hjam 0xDE ,0x921 
+3c4a 708920e2 hjam 0xE2 ,0x920 
+3c4b 70891fe6 hjam 0xE6 ,0x91f 
+3c4c 70891eea hjam 0xEA ,0x91e 
+3c4d 70891dee hjam 0xEE ,0x91d 
+3c4e 70891cf2 hjam 0xF2 ,0x91c 
+3c4f 70891bf6 hjam 0xF6 ,0x91b 
+3c50 70891afb hjam 0xFB ,0x91a 
+3c51 708947f5 hjam 0xf5 ,0x947 
+3c52 708946e5 hjam 0xe5 ,0x946 
+3c53 708945d5 hjam 0xd5 ,0x945 
+3c54 708944d8 hjam 0xD8 ,0x944 
+3c55 708943c9 hjam 0xC9 ,0x943 
+3c56 708942c8 hjam 0xC8 ,0x942 
+3c57 70894189 hjam 0x89 ,0x941 
+3c58 70894088 hjam 0x88 ,0x940 
+3c59 70893f87 hjam 0x87 ,0x93f 
+3c5a 70893e48 hjam 0x48 ,0x93e 
+3c5b 70893d09 hjam 0x09 ,0x93d 
+3c5c 70893c08 hjam 0x08 ,0x93c 
+3c5d 70893bc9 hjam 0xC9 ,0x93b 
+3c5e 70893ac8 hjam 0xC8 ,0x93a 
+3c5f 708939c7 hjam 0xC7 ,0x939 
+3c60 708938c6 hjam 0xC6 ,0x938 
+3c61 708937c5 hjam 0xC5 ,0x937 
+3c62 708936c4 hjam 0xC4 ,0x936 
+3c63 708935c3 hjam 0xC3 ,0x935 
+3c64 708934c2 hjam 0xC2 ,0x934 
+3c65 708933c1 hjam 0xC1 ,0x933 
+3c66 708932c0 hjam 0xC0 ,0x932 
+3c67 70893180 hjam 0x80 ,0x931 
+3c68 20600000 rtn 
+
+init_250k:
+3c69 783b7c00 enable le 
+3c6a 588e89be setarg 0x8e89be 
+3c6b 1fed7e00 lshift8 pdata ,pdata 
+3c6c 1fe1fed6 or_into 0xd6 ,pdata 
+3c6d 98001200 iforce access 
+3c6e 70891407 hjam 7 ,0x914 
+3c6f 70890aa0 hjam 0xa0 ,0x90a 
+3c70 70890d8f hjam 0x8f ,0x90d 
+3c71 7089110f hjam 0x0f ,0x911 
+3c72 70891287 hjam 0x87 ,0x912 
+3c73 20600000 rtn 
+
+lpmstate:
+3c74 5800ee21 setarg 0xee21 
+3c75 60110050 hstore 2 ,core_clkoff 
+3c76 6810813e hfetch 1 ,core_lpm_ldocnt 
+3c77 c301e725 bbit0 gpio_latch ,loadcode 
+3c78 7835fc00 enable wake 
+3c79 c303bc7f bbit0 cold_wake ,lpmwake 
+3c7a 7855fc00 disable wake 
+3c7b 1ce27e00 deposit auxcnt 
+3c7c 243a3c7f nbranch lpmwake ,blank 
+3c7d d85fffff arg param_hibernate_clks ,temp 
+3c7e 20203cec branch lpm_enter_sleep 
+
+lpmwake:
+3c7f 6811813c hfetch 3 ,core_lpm_xtalcnt 
+3c80 6011804c hstore 3 ,core_lpm_reg 
+3c81 e8c08000 ifetch 1 ,contr 
+3c82 1fe1feef or_into isogate_mask ,pdata 
+3c83 e0a08000 istore 1 ,contw 
+3c84 20403db2 call lpm_write_ctrl2 
+3c85 6810804f hfetch 1 ,core_lpm_isogate 
+3c86 79207e04 set1 enable_retmem ,pdata 
+3c87 6010804f hstore 1 ,core_lpm_isogate 
+3c88 20403db2 call lpm_write_ctrl2 
+3c89 2055bc90 call lpm_load_context ,wake 
+3c8a 6810804e hfetch 1 ,core_lpm_reg + 2 
+3c8b 793ffe03 set0 gpio_latch ,pdata 
+3c8c 6010804e hstore 1 ,core_lpm_reg + 2 
+3c8d 20403db2 call lpm_write_ctrl2 
+3c8e 20758000 rtn wake 
+3c8f 20206725 branch loadcode 
+
+lpm_load_context:
+3c90 6800c239 fetch 1 ,mem_saved_spidctrl 
+3c91 60108086 hstore 1 ,core_spid_ctrl 
+3c92 6801c22e fetch 3 ,mem_saved_gsel 
+3c93 60118080 hstore 3 ,core_gpio_sel 
+3c94 68024222 fetch 4 ,mem_saved_gpio + 4 
+3c95 60120074 hstore 4 ,core_gpio_out0 
+3c96 6802421e fetch 4 ,mem_saved_gpio 
+3c97 60120070 hstore 4 ,core_gpio_oe0 
+3c98 68044226 fetch 8 ,mem_saved_gpio + 8 
+3c99 60140078 hstore 8 ,core_gpio_pu0 
+3c9a 68044231 fetch 8 ,mem_saved_mark 
+3c9b 98000000 iforce mark 
+3c9c 68140140 hfetch 8 ,core_gpio_wakeup_low 
+3c9d 600400a3 store 8 ,mem_gpio_wakeup_low 
+3c9e 20406781 call load_ucode 
+3c9f 20600000 rtn 
+
+lpm_save_context:
+3ca0 18027e00 deposit mark 
+3ca1 60044231 store 8 ,mem_saved_mark 
+3ca2 68140070 hfetch 8 ,core_gpio_oe0 
+3ca3 6004421e store 8 ,mem_saved_gpio 
+3ca4 e8c40000 ifetch 8 ,contr 
+3ca5 e0a40000 istore 8 ,contw 
+3ca6 68118080 hfetch 3 ,core_gpio_sel 
+3ca7 6001c22e store 3 ,mem_saved_gsel 
+3ca8 68108086 hfetch 1 ,core_spid_ctrl 
+3ca9 6000c239 store 1 ,mem_saved_spidctrl 
+3caa 20203db8 branch lpm_write_gpio_wakeup 
+
+lpo_calibration:
+3cab 681080b4 hfetch 1 ,core_bist_ctrl 
+3cac 243a3cb1 nbranch lpo_cal_inited ,blank 
+3cad 6801c210 fetch 3 ,mem_clks_per_lpo 
+3cae 247a0000 nrtn blank 
+3caf 7080b4c0 hjam 0xc0 ,core_bist_ctrl 
+3cb0 70800680 hjam ccnt_start ,core_misc_ctrl 
+
+lpo_cal_inited:
+3cb1 6810812d hfetch 1 ,core_perf_status 
+3cb2 c4008000 rtnbit0 1 
+3cb3 68118149 hfetch 3 ,core_clk_counter 
+3cb4 6001c210 store 3 ,mem_clks_per_lpo 
+3cb5 20600000 rtn 
+
+lpm_adjust_clk:
+3cb6 793f8025 set0 mark_ext_patch ,mark 
+3cb7 44d74015 bpatch patch15_6 ,mem_patch15 
+3cb8 1b427e00 deposit clke 
+3cb9 20407e78 call clk_diff_rt 
+3cba 680a4200 fetcht 4 ,mem_sleep_counter_all 
+3cbb 18467cff sub temp ,0xff ,null 
+3cbc 20610000 rtn positive 
+3cbd 1fed7e00 lshift8 pdata ,pdata 
+3cbe 1ff27e00 lshift4 pdata ,pdata 
+3cbf 9846fc00 idiv temp 
+3cc0 20407efd call wait_div_end 
+3cc1 1807fe00 quotient pdata 
+3cc2 d84000c8 arg param_lpm_adjmax ,temp 
+3cc3 20407f2e call ceiling 
+3cc4 6000809b store 1 ,mem_lpm_adjust 
+3cc5 24343cc7 nbranch lpm_adjust_positive ,user 
+3cc6 1fe67e00 sub pdata ,0 ,pdata 
+
+lpm_adjust_positive:
+3cc7 6809c210 fetcht 3 ,mem_clks_per_lpo 
+3cc8 9840fe00 iadd temp ,pdata 
+3cc9 6001c210 store 3 ,mem_clks_per_lpo 
+
+lpm_clear_counter:
+3cca 58000000 setarg 0 
+3ccb 60024200 store 4 ,mem_sleep_counter_all 
+3ccc 20600000 rtn 
+
+lpm_hibernate:
+3ccd 793f8025 set0 mark_ext_patch ,mark 
+3cce 44d7c015 bpatch patch15_7 ,mem_patch15 
+3ccf 20403db8 call lpm_write_gpio_wakeup 
+3cd0 68120138 hfetch 4 ,core_lpm_ctrl 
+3cd1 793ffe0f set0 15 ,pdata 
+3cd2 6012004c hstore 4 ,core_lpm_reg 
+3cd3 20403db0 call lpm_write_ctrl 
+
+lpm_hibernate_normal:
+3cd4 d85fffff arg param_hibernate_clks ,temp 
+3cd5 6800c1f8 fetch 1 ,mem_lpm_hibernate_switch 
+3cd6 6000c21d store 1 ,mem_lpm_xtalcnt + 4 
+3cd7 6800c21b fetch 1 ,mem_lpm_xtalcnt + 2 
+3cd8 79207e07 set1 cold_wake ,pdata 
+3cd9 6000c21b store 1 ,mem_lpm_xtalcnt + 2 
+
+lpm_sleep:
+3cda 793f8025 set0 mark_ext_patch ,mark 
+3cdb 44d84016 bpatch patch16_0 ,mem_patch16 
+3cdc 68024200 fetch 4 ,mem_sleep_counter_all 
+3cdd 9840fe00 iadd temp ,pdata 
+3cde 60024200 store 4 ,mem_sleep_counter_all 
+3cdf 20403ca0 call lpm_save_context 
+3ce0 6802c219 fetch 5 ,mem_lpm_xtalcnt 
+3ce1 6012004c hstore 4 ,core_lpm_reg 
+3ce2 1fef2200 rshift32 pdata ,rega 
+3ce3 37d98200 until null ,lpo_edge 
+3ce4 1b227e00 deposit clkn 
+3ce5 60034204 store 6 ,mem_sleep_clkn 
+3ce6 70800502 hjam lpmreg_sel_ctrl2 ,core_lpm_wr 
+3ce7 37d98200 until null ,lpo_edge 
+3ce8 37d98200 until null ,lpo_edge 
+3ce9 1a227e00 deposit rega 
+3cea 6010804f hstore 1 ,core_lpm_isogate 
+3ceb 70800502 hjam lpmreg_sel_ctrl2 ,core_lpm_wr 
+
+lpm_enter_sleep:
+3cec 37d98200 until null ,lpo_edge 
+3ced 37d98200 until null ,lpo_edge 
+3cee 601a004c hstoret 4 ,core_lpm_reg 
+3cef 70800510 hjam lpmreg_sel_counter ,core_lpm_wr 
+3cf0 37df8200 until null ,never 
+
+lpm_recover_clk:
+3cf1 793f8025 set0 mark_ext_patch ,mark 
+3cf2 44d8c016 bpatch patch16_1 ,mem_patch16 
+3cf3 58000000 setarg 0 
+3cf4 1ce27c00 copy auxcnt ,null 
+3cf5 2022bcfd branch lpm_recover_timeout ,zero 
+3cf6 6810813c hfetch 1 ,core_lpm_xtalcnt 
+3cf7 6818813d hfetcht 1 ,core_lpm_buckcnt 
+3cf8 98467c00 isub temp ,null 
+3cf9 20213cfb branch lpm_recover_xtal ,positive 
+3cfa 18427e00 deposit temp 
+
+lpm_recover_xtal:
+3cfb 9ce67e00 isub auxcnt ,pdata 
+3cfc 1fe0fe01 increase 1 ,pdata 
+
+lpm_recover_timeout:
+3cfd 1fe0fe08 increase 8 ,pdata 
+3cfe 37d98200 until null ,lpo_edge 
+3cff 9e20fe00 iadd lpo_time ,pdata 
+3d00 680a41fc fetcht 4 ,mem_sleep_counter 
+3d01 9840fe00 iadd temp ,pdata 
+3d02 6809c210 fetcht 3 ,mem_clks_per_lpo 
+3d03 984ffe00 imul32 temp ,pdata 
+3d04 1fecfe00 rshift8 pdata ,pdata 
+3d05 1ff1fe00 rshift4 pdata ,pdata 
+3d06 1fe0fe6e increase param_lpm_fix ,pdata 
+3d07 d8400ea6 arg 3750 ,temp 
+3d08 9846fc00 idiv temp 
+3d09 20407efd call wait_div_end 
+3d0a 1807fe00 quotient pdata 
+3d0b 1ff07e00 lshift16 pdata ,pdata 
+3d0c 18070400 remainder temp 
+3d0d 9841fe00 ior temp ,pdata 
+3d0e 680b4204 fetcht 6 ,mem_sleep_clkn 
+3d0f 20407e6d call clk_add 
+3d10 18423200 copy temp ,clkn 
+3d11 68034048 fetch 6 ,mem_context + coffset_clk_offset 
+3d12 204039c0 call calc_clke2 
+3d13 1b427e00 deposit clke 
+3d14 60030161 store 6 ,mem_pdatatemp 
+3d15 1ce27e00 deposit auxcnt 
+3d16 e0a08000 istore 1 ,contw 
+3d17 6810811d hfetch 1 ,core_gpio_in1 
+3d18 1fe1fef0 or_into 0xf0 ,pdata 
+3d19 e0a08000 istore 1 ,contw 
+3d1a 20407f52 call savelist_2 
+3d1b 20600000 rtn 
+
+lpm_dispatch:
+3d1c 793f8025 set0 mark_ext_patch ,mark 
+3d1d 44d94016 bpatch patch16_2 ,mem_patch16 
+3d1e 20403cab call lpo_calibration 
+3d1f 6801c210 fetch 3 ,mem_clks_per_lpo 
+3d20 207a0000 rtn blank 
+3d21 6800c131 fetch 1 ,mem_lpm_mode 
+3d22 207a0000 rtn blank 
+3d23 20403dca call lpm_check_wake_lock 
+3d24 247a0000 nrtn blank 
+
+lpm_dispatch0:
+3d25 6800c040 fetch 1 ,mem_context 
+3d26 2fe00e03 compare 3 ,pdata ,0x7 
+3d27 2420bd4d nbranch lpm_dispatch_unconn ,true 
+3d28 68014042 fetch 2 ,mem_context + coffset_tsniff 
+3d29 207a0000 rtn blank 
+3d2a 20758000 rtn wake 
+3d2b 793f8025 set0 mark_ext_patch ,mark 
+3d2c 44d9c016 bpatch patch16_3 ,mem_patch16 
+
+lpm_dispatch1:
+3d2d 680880a2 fetcht 1 ,mem_lpm_current_mult 
+3d2e 68014042 fetch 2 ,mem_context + coffset_tsniff 
+3d2f 984ffe00 imul32 temp ,pdata 
+3d30 18518400 rshift4 temp ,temp 
+3d31 184b0400 rshift2 temp ,temp 
+3d32 98467e00 isub temp ,pdata 
+3d33 680a4044 fetcht 4 ,mem_context + coffset_sniff_anchor 
+3d34 9840fe00 iadd temp ,pdata 
+3d35 6808c1f7 fetcht 1 ,mem_lpm_overhead 
+3d36 98467e00 isub temp ,pdata 
+3d37 1ff06000 lshift16 pdata ,alarm 
+3d38 793f8025 set0 mark_ext_patch ,mark 
+3d39 44da4016 bpatch patch16_4 ,mem_patch16 
+3d3a 6801404e fetch 2 ,mem_context + coffset_rx_window 
+3d3b 1fe37e00 rshift pdata ,pdata 
+3d3c 20407e91 call clk2bt 
+3d3d 1e027e00 deposit alarm 
+3d3e 20407e7a call clk_diff 
+3d3f 1b420400 copy clke ,temp 
+3d40 20407e78 call clk_diff_rt 
+3d41 20740000 rtn user 
+
+lpm_dispatch_sleep:
+3d42 20407e8a call clk2lpo 
+
+lpm_dispatch_lpo:
+3d43 793f8025 set0 mark_ext_patch ,mark 
+3d44 44dac016 bpatch patch16_5 ,mem_patch16 
+3d45 6800c219 fetch 1 ,mem_lpm_xtalcnt 
+3d46 98467c00 isub temp ,null 
+3d47 20213cca branch lpm_clear_counter ,positive 
+3d48 600a41fc storet 4 ,mem_sleep_counter 
+3d49 20403ea9 call app_will_enter_lpm 
+3d4a 2040530c call l2cap_lpm_save_txbuf 
+3d4b 680a41fc fetcht 4 ,mem_sleep_counter 
+3d4c 20203cda branch lpm_sleep 
+
+lpm_dispatch_unconn:
+3d4d 793f8025 set0 mark_ext_patch ,mark 
+3d4e 44db4016 bpatch patch16_6 ,mem_patch16 
+3d4f 6800c040 fetch 1 ,mem_context 
+3d50 c3800000 rtnbit1 state_inconn 
+3d51 c3818000 rtnbit1 state_inpage 
+3d52 6800c7dc fetch 1 ,mem_ssp_enable 
+3d53 203a3d56 branch lpm_unconn_nossp ,blank 
+3d54 6800c793 fetch 1 ,mem_sp_local_key_invalid 
+3d55 207a0000 rtn blank 
+
+lpm_unconn_nossp:
+3d56 6800c3d8 fetch 1 ,mem_le_adv_enable 
+3d57 243a3d5a nbranch lpm_unconn_cont ,blank 
+3d58 6800c133 fetch 1 ,mem_scan_mode 
+3d59 207a0000 rtn blank 
+
+lpm_unconn_cont:
+3d5a 680141f5 fetch 2 ,mem_lpm_interval 
+3d5b 207a0000 rtn blank 
+
+lpm_sleep_btclk:
+3d5c 6808c1f7 fetcht 1 ,mem_lpm_overhead 
+3d5d 98467e00 isub temp ,pdata 
+3d5e d8401d4c arg 7500 ,temp 
+3d5f 984ffe00 imul32 temp ,pdata 
+3d60 20203d42 branch lpm_dispatch_sleep 
+
+lpm_set_mult:
+3d61 793f8025 set0 mark_ext_patch ,mark 
+3d62 44dbc016 bpatch patch16_7 ,mem_patch16 
+3d63 7855fc00 disable wake 
+3d64 68008030 fetch 1 ,mem_state 
+3d65 c4008000 rtnbit0 state_insniff 
+3d66 2436bd7b nbranch lpm_not_match ,match 
+3d67 20403d76 call lpm_match 
+3d68 68014161 fetch 2 ,mem_rx_window_sniff 
+3d69 6001003e store 2 ,mem_rx_window 
+3d6a 68008047 fetch 1 ,mem_arq 
+3d6b c281bd8a bbit1 wack ,lpm_mult_short 
+3d6c c586bd8a bmark0 mark_lpm_mult_enable ,lpm_mult_short 
+3d6d 2040527e call l2cap_malloc_is_fifo_empty 
+3d6e 243a3d8a nbranch lpm_mult_short ,blank 
+
+lpm_mult_wait_timeout:
+3d6f 7000a200 jam 0 ,mem_lpm_current_mult 
+3d70 c586bd8a bmark0 mark_lpm_mult_enable ,lpm_mult_short 
+3d71 6800c215 fetch 1 ,mem_lpm_mult_cnt 
+3d72 203a3d8e branch lpm_mult_long ,blank 
+3d73 1fe0ffff increase -1 ,pdata 
+3d74 6000c215 store 1 ,mem_lpm_mult_cnt 
+3d75 20600000 rtn 
+
+lpm_match:
+3d76 7041fa00 jam 0 ,mem_sniff_unint_lost 
+3d77 6801c20a fetch 3 ,mem_sniff_rcv 
+3d78 1fe0fe01 increase 1 ,pdata 
+3d79 6001c20a store 3 ,mem_sniff_rcv 
+3d7a 20600000 rtn 
+
+lpm_not_match:
+3d7b 793f8025 set0 mark_ext_patch ,mark 
+3d7c 44dc4017 bpatch patch17_0 ,mem_patch17 
+3d7d 68094161 fetcht 2 ,mem_rx_window_sniff 
+3d7e 18430400 rshift temp ,temp 
+3d7f 6801003e fetch 2 ,mem_rx_window 
+3d80 9840fe00 iadd temp ,pdata 
+3d81 6001003e store 2 ,mem_rx_window 
+
+lpm_lost:
+3d82 7000a200 jam 0 ,mem_lpm_current_mult 
+3d83 6801c20d fetch 3 ,mem_sniff_lost 
+3d84 1fe0fe01 increase 1 ,pdata 
+3d85 6001c20d store 3 ,mem_sniff_lost 
+3d86 6800c1fa fetch 1 ,mem_sniff_unint_lost 
+3d87 1fe0fe01 increase 1 ,pdata 
+3d88 6000c1fa store 1 ,mem_sniff_unint_lost 
+3d89 20600000 rtn 
+
+lpm_mult_short:
+3d8a 7000a200 jam 0 ,mem_lpm_current_mult 
+3d8b 6800c214 fetch 1 ,mem_lpm_mult_timeout 
+3d8c 6000c215 store 1 ,mem_lpm_mult_cnt 
+3d8d 20600000 rtn 
+
+lpm_mult_long:
+3d8e 6808c213 fetcht 1 ,mem_lpm_mult 
+3d8f 600880a2 storet 1 ,mem_lpm_current_mult 
+3d90 20600000 rtn 
+
+lpm_cal_xtal_startup:
+3d91 793f8025 set0 mark_ext_patch ,mark 
+3d92 44dcc017 bpatch patch17_1 ,mem_patch17 
+3d93 6800c219 fetch 1 ,mem_lpm_xtalcnt 
+3d94 247a0000 nrtn blank 
+3d95 70804206 hjam clksel_rc ,core_clksel 
+3d96 58000f0c setarg 0xf0c 
+3d97 20403da7 call lpm_write_config 
+3d98 58030d40 setarg 200000 
+3d99 20403bf3 call sleep 
+3d9a 37d98200 until null ,lpo_edge 
+3d9b 1e226000 copy lpo_time ,alarm 
+3d9c 20403b36 call xtal_fast_wake 
+3d9d 70804204 hjam clksel_xtal ,core_clksel 
+3d9e 2000000a nop 10 
+3d9f 37d98200 until null ,lpo_edge 
+3da0 1e227e00 deposit lpo_time 
+3da1 9e067e00 isub alarm ,pdata 
+3da2 1fe0fe30 increase 0x30 ,pdata 
+3da3 d84000ff arg 0xff ,temp 
+3da4 20407f2e call ceiling 
+3da5 6000c219 store 1 ,mem_lpm_xtalcnt 
+3da6 20600000 rtn 
+
+lpm_write_config:
+3da7 d8a00fff arg 0xfff ,contw 
+3da8 98a10a00 iand contw ,contw 
+3da9 6800c216 fetch 1 ,mem_lpm_config 
+3daa 1fe17ef0 and_into 0xf0 ,pdata 
+3dab 1fed7e00 lshift8 pdata ,pdata 
+3dac 98a1fe00 ior contw ,pdata 
+3dad 6011004c hstore 2 ,core_lpm_reg 
+3dae e8c10000 ifetch 2 ,contr 
+3daf e0a10000 istore 2 ,contw 
+
+lpm_write_ctrl:
+3db0 58000001 setarg lpmreg_sel_ctrl 
+3db1 20203db3 branch lpm_write 
+
+lpm_write_ctrl2:
+3db2 58000002 setarg lpmreg_sel_ctrl2 
+
+lpm_write:
+3db3 37d98200 until null ,lpo_edge 
+3db4 60108005 hstore 1 ,core_lpm_wr 
+3db5 37d98200 until null ,lpo_edge 
+3db6 37d98200 until null ,lpo_edge 
+3db7 20600000 rtn 
+
+lpm_write_gpio_wakeup:
+3db8 793f8025 set0 mark_ext_patch ,mark 
+3db9 44dd4017 bpatch patch17_2 ,mem_patch17 
+3dba 680200a3 fetch 4 ,mem_gpio_wakeup_low 
+3dbb 6012004c hstore 4 ,core_lpm_reg 
+3dbc 58000004 setarg lpmreg_sel_gpiolow 
+3dbd 20403db3 call lpm_write 
+3dbe 680200a7 fetch 4 ,mem_gpio_wakeup_high 
+3dbf 6012004c hstore 4 ,core_lpm_reg 
+3dc0 58000008 setarg lpmreg_sel_gpiohigh 
+3dc1 20203db3 branch lpm_write 
+
+lpm_get_wake_lock:
+3dc2 680141f3 fetch 2 ,mem_lpm_wake_lock 
+3dc3 f9207e00 qset1 pdata 
+3dc4 600141f3 store 2 ,mem_lpm_wake_lock 
+3dc5 20600000 rtn 
+
+lpm_put_wake_lock:
+3dc6 680141f3 fetch 2 ,mem_lpm_wake_lock 
+3dc7 f93ffe00 qset0 pdata 
+3dc8 600141f3 store 2 ,mem_lpm_wake_lock 
+3dc9 20600000 rtn 
+
+lpm_check_wake_lock:
+3dca 793f8025 set0 mark_ext_patch ,mark 
+3dcb 44ddc017 bpatch patch17_3 ,mem_patch17 
+3dcc 20403ea7 call app_check_wake_lock 
+3dcd 680141f3 fetch 2 ,mem_lpm_wake_lock 
+3dce 1fe22200 copy pdata ,rega 
+3dcf 6800804c fetch 1 ,mem_state_map 
+3dd0 2feffe06 isolate1 smap_rxlmp ,pdata 
+3dd1 7920a20b setflag true ,wake_lock_lmp_rx ,rega 
+3dd2 68008078 fetch 1 ,mem_lmo_opcode1 
+3dd3 6808807c fetcht 1 ,mem_lmo_opcode2 
+3dd4 9840fe00 iadd temp ,pdata 
+3dd5 68088048 fetcht 1 ,mem_lmp_to_send 
+3dd6 9840fe00 iadd temp ,pdata 
+3dd7 7d3a220a nsetflag blank ,wake_lock_lmp_tx ,rega 
+3dd8 793f8025 set0 mark_ext_patch ,mark 
+3dd9 44de4017 bpatch patch17_4 ,mem_patch17 
+3dda 680102c4 fetch 2 ,mem_l2cap_rxbuff1_len 
+3ddb 680902c6 fetcht 2 ,mem_l2cap_rxbuff2_len 
+3ddc 9840fe00 iadd temp ,pdata 
+3ddd 7d3a220d nsetflag blank ,wake_lock_l2cap_rx ,rega 
+3dde 6802c7df fetch 5 ,mem_ipc_fifo_bt2c51 
+3ddf 7d3a220f nsetflag blank ,wake_lock_ipc_bt2c51 ,rega 
+3de0 6802c7e4 fetch 5 ,mem_ipc_fifo_c512bt 
+3de1 7d3a220e nsetflag blank ,wake_lock_ipc_c512bt ,rega 
+3de2 6800c272 fetch 1 ,mem_hci_cmd 
+3de3 7d3a2208 nsetflag blank ,wake_lock_cmd ,rega 
+3de4 6800c132 fetch 1 ,mem_device_option 
+3de5 2fe1fe0a compare dvc_op_module ,pdata ,0xff 
+3de6 2040bdf5 call lpm_uart_wake_lock ,true 
+3de7 793f8025 set0 mark_ext_patch ,mark 
+3de8 44dec017 bpatch patch17_5 ,mem_patch17 
+3de9 6800c132 fetch 1 ,mem_device_option 
+3dea c080bdfa bne dvc_op_hci ,lpm_check_wake_lock_nothci 
+3deb 20403df5 call lpm_uart_wake_lock 
+3dec 6800c25e fetch 1 ,mem_link_key_exists 
+3ded 793a2203 setflag blank ,wake_link_key_exists ,rega 
+3dee 680242a5 fetch 4 ,mem_lpm_delay_after_sniff 
+3def d8401710 arg 0x1710 ,temp 
+3df0 98408400 iadd temp ,temp 
+3df1 1c427e00 copy clkn_bt ,pdata 
+3df2 98467c00 isub temp ,null 
+3df3 7d212204 nsetflag positive ,wake_lock_delay ,rega 
+3df4 20203dfc branch lpm_check_wake_lock_end 
+
+lpm_uart_wake_lock:
+3df5 68110112 hfetch 2 ,core_uart_rxitems 
+3df6 7d3a2206 nsetflag blank ,wake_lock_uart_rx ,rega 
+3df7 6811010e hfetch 2 ,core_uart_txitems 
+3df8 7d3a2205 nsetflag blank ,wake_lock_uart_tx ,rega 
+3df9 20600000 rtn 
+
+lpm_check_wake_lock_nothci:
+3dfa 5ffffff8 setarg -8 
+3dfb 9a212200 iand rega ,rega 
+
+lpm_check_wake_lock_end:
+3dfc 1a227e00 copy rega ,pdata 
+3dfd 600141f3 store 2 ,mem_lpm_wake_lock 
+3dfe 207a0000 rtn blank 
+3dff 20768000 rtn match 
+3e00 7835fc00 enable wake 
+3e01 20600000 rtn 
+
+lpm_shut_down:
+3e02 68120138 hfetch 4 ,core_lpm_ctrl 
+3e03 793ffe1b set0 27 ,pdata 
+3e04 6012004c hstore 4 ,core_lpm_reg 
+3e05 20403db0 call lpm_write_ctrl 
+3e06 20203bf1 branch assert 
+
+lpm_enable_exen_output:
+3e07 6812013c hfetch 4 ,core_lpm_xtalcnt 
+3e08 79207e14 set1 20 ,pdata 
+3e09 6012004c hstore 4 ,core_lpm_reg 
+3e0a 20203db2 branch lpm_write_ctrl2 
+
+lpm_disable_exen_output:
+3e0b 6812013c hfetch 4 ,core_lpm_xtalcnt 
+3e0c 793ffe14 set0 20 ,pdata 
+3e0d 6012004c hstore 4 ,core_lpm_reg 
+3e0e 20203db2 branch lpm_write_ctrl2 
+
+lpm_hci_wake_dispatch:
+3e0f 793f8025 set0 mark_ext_patch ,mark 
+3e10 44df4017 bpatch patch17_6 ,mem_patch17 
+3e11 6800c132 fetch 1 ,mem_device_option 
+3e12 c1808000 rtnne dvc_op_hci 
+3e13 20406a8b call gpio_check_uart_state 
+3e14 20608000 rtn true 
+3e15 68024807 fetch 4 ,mem_hci_wake_clk 
+3e16 243a3e1a nbranch lpm_hci_check_wake_time ,blank 
+3e17 1c427e00 copy clkn_bt ,pdata 
+3e18 60024807 store 4 ,mem_hci_wake_clk 
+3e19 20206a6b branch gpio_pd_uart_tx 
+
+lpm_hci_check_wake_time:
+3e1a 793f8025 set0 mark_ext_patch ,mark 
+3e1b 44dfc017 bpatch patch17_7 ,mem_patch17 
+3e1c 1c427e00 copy clkn_bt ,pdata 
+3e1d 680a4807 fetcht 4 ,mem_hci_wake_clk 
+3e1e 98467e00 isub temp ,pdata 
+3e1f d8400021 arg host_wake_time ,temp 
+3e20 98467c00 isub temp ,null 
+3e21 24610000 nrtn positive 
+3e22 58000000 setarg 0 
+3e23 60024807 store 4 ,mem_hci_wake_clk 
+3e24 20204599 branch hci_exit_lpm 
+
+check_bt_disabled:
+3e25 680141f1 fetch 2 ,mem_chip_functions 
+3e26 c2803bf1 bbit1 bt_disabled ,assert 
+3e27 20600000 rtn 
+
+check_ble_disabled:
+3e28 680141f1 fetch 2 ,mem_chip_functions 
+3e29 c280bbf1 bbit1 ble_disabled ,assert 
+3e2a 20600000 rtn 
+
+check_module_disabled:
+3e2b 680141f1 fetch 2 ,mem_chip_functions 
+3e2c c2813bf1 bbit1 module_disable ,assert 
+3e2d 20600000 rtn 
+
+test_init:
+3e2e 58003e37 setarg test_proc 
+3e2f 6001428e store 2 ,mem_cb_bt_process 
+3e30 58003e3d setarg test_sleep 
+3e31 60014292 store 2 ,mem_cb_bb_event_process 
+3e32 58003e37 setarg test_proc 
+3e33 60014290 store 2 ,mem_cb_idle_process 
+3e34 20758000 rtn wake 
+3e35 7047e901 jam ui_led_start ,mem_led_switch 
+3e36 20600000 rtn 
+
+test_proc:
+3e37 68008030 fetch 1 ,mem_state 
+3e38 c300de9f bbit0 state_insniff ,check_test_cond 
+3e39 7920000d set1 mark_lpm_mult_enable ,mark 
+3e3a 6803420a fetch 6 ,mem_sniff_rcv 
+3e3b 60034703 store 6 ,mem_local_name 
+3e3c 20207bde branch ui_led_blink_stop 
+
+test_sleep:
+3e3d 1a627e00 deposit regc 
+3e3e c1880000 rtnne bt_evt_button_long_pressed 
+
+test_sleep_loop:
+3e3f 20407bb1 call ui_button_polling 
+3e40 6800c7eb fetch 1 ,mem_ui_button_last_state 
+3e41 c000be3f beq 1 ,test_sleep_loop 
+3e42 20407be2 call ui_led_off 
+3e43 20203ccd branch lpm_hibernate 
+
+test_tx:
+3e44 18000402 force 2 ,temp 
+3e45 184085fe increase -2 ,temp 
+3e46 20403a7a call set_sync_on 
+3e47 20403a91 call set_freq_tx 
+3e48 7843fc00 disable enable_white 
+3e49 782efc00 enable encode_fec0 
+3e4a 79202a00 set1 txgfsk ,radio_ctrl 
+3e4b 20403bae call start_transmitter 
+
+test_tx_loop:
+3e4c 68008000 fetch 1 ,0 
+3e4d 08008608 inject mod ,8 
+3e4e 20203e4c branch test_tx_loop 
+
+app_init:
+3e4f 79200025 set1 mark_ext_patch ,mark 
+3e50 44e6c039 bpatch patch39_5 ,mem_patch39 
+3e51 6800c132 fetch 1 ,mem_device_option 
+3e52 203a3e4f branch app_init ,blank 
+3e53 c0035aa2 beq dvc_op_ukey ,le_ukey_init 
+3e54 c003cb33 beq dvc_op_ir ,le_ir_init 
+3e55 c0024293 beq dvc_op_dongle ,le_dongle_init 
+3e56 c001cc09 beq dvc_op_kb ,kb_init 
+3e57 c000c461 beq dvc_op_hci ,hci_init 
+3e58 c004f624 beq dvc_op_shutter ,shutter_init 
+3e59 c00562ef beq dvc_op_module ,module_init 
+3e5a c0064bf3 beq dvc_op_ble_kb ,le_kb_init 
+3e5b c006ea8e beq dvc_op_ble_prcp ,prcp_init 
+3e5c c07fbe2e beq dvc_op_test ,test_init 
+3e5d c2836486 bbit1 dvc_op_mouse ,mouse_init 
+3e5e 20600000 rtn 
+
+app_lpm_init:
+3e5f 79200025 set1 mark_ext_patch ,mark 
+3e60 44e74039 bpatch patch39_6 ,mem_patch39 
+3e61 70015300 jam 0 ,mem_tester_emulate 
+3e62 70018900 jam 0 ,mem_debug_config 
+3e63 70018a00 jam 0 ,mem_lch_code 
+3e64 58000000 setarg 0 
+3e65 600287da store 5 ,mem_sp_state_start 
+3e66 6800c132 fetch 1 ,mem_device_option 
+3e67 203a3e5f branch app_lpm_init ,blank 
+3e68 c005631f beq dvc_op_module ,module_lpm_init 
+3e69 20600000 rtn 
+
+app_process_idle:
+3e6a 20407ba1 call ui_dispatch 
+3e6b 20407c45 call check_51cmd 
+3e6c 20403e73 call app_process_bb_event 
+3e6d 68014290 fetch 2 ,mem_cb_idle_process 
+3e6e 20207f66 branch callback_func 
+
+app_process_bt:
+3e6f 6801428e fetch 2 ,mem_cb_bt_process 
+3e70 20207f66 branch callback_func 
+
+app_process_ble:
+3e71 6801428c fetch 2 ,mem_cb_le_process 
+3e72 20207f66 branch callback_func 
+
+app_process_bb_event:
+3e73 79200025 set1 mark_ext_patch ,mark 
+3e74 44e7c039 bpatch patch39_7 ,mem_patch39 
+3e75 da2047df arg mem_ipc_fifo_bt2c51 ,rega 
+3e76 20407f9f call fifo_out 
+3e77 207a0000 rtn blank 
+3e78 1fe22600 copy pdata ,regc 
+3e79 20403e7d call app_event_normal_process 
+3e7a 20203ea5 branch app_process_bb_event_priority 
+
+app_discard_event:
+3e7b da600000 arg 0 ,regc 
+3e7c 20600000 rtn 
+
+app_event_normal_process:
+3e7d c000be92 beq bt_evt_bb_connected ,app_evt_bt_conn 
+3e7e c0083ed9 beq bt_evt_button_long_pressed ,app_evt_button_long_pressed 
+3e7f c002beb6 beq bt_evt_setup_complete ,app_evt_setup_complete 
+3e80 c0093ebd beq bt_evt_hid_handshake ,app_evt_hid_handshake 
+3e81 c0033ed5 beq bt_evt_hid_connected ,app_bb_event_hid_connected 
+3e82 c0023efe beq bt_evt_reconn_failed ,app_bb_event_reconn_failed 
+3e83 c0013f03 beq bt_evt_bb_disconnected ,app_bb_event_bb_disconn 
+3e84 c009befe beq bt_evt_reconn_page_timeout ,app_bb_event_reconn_failed 
+3e85 c00a3ecc beq bt_evt_le_connected ,app_le_event_bb_connected 
+3e86 c00abed0 beq bt_evt_le_disconnected ,app_le_event_bb_disconn 
+3e87 c001beaf beq bt_evt_reconn_started ,app_event_reconn_start 
+3e88 c005bec1 beq bt_evt_enter_sniff ,app_event_enter_sniff 
+3e89 c0063ec8 beq bt_evt_exit_sniff ,app_event_exit_sniff 
+3e8a c00b3edd beq bt_evt_ml2cap_conn_refused ,app_event_ml2cap_conn_refused 
+3e8b c00c3eab beq bt_evt_linkkey_generate ,app_event_linkkey_generate 
+3e8c c0153e9b beq bt_evt_switch_fail_master ,app_event_switch_fail_master 
+3e8d c015be99 beq bt_evt_switch_success_master ,app_event_switch_success 
+3e8e 1fe1040f and pdata ,0x0f ,temp 
+3e8f 1fe17ef0 and_into bt_evt_timer_mask ,pdata 
+3e90 c0283ee1 beq bt_evt_timer_init ,app_evt_timer 
+3e91 20600000 rtn 
+
+app_evt_bt_conn:
+3e92 680147f4 fetch 2 ,mem_ui_state_map 
+3e93 79207e00 set1 ui_state_bt_connected ,pdata 
+3e94 600147f4 store 2 ,mem_ui_state_map 
+3e95 680142a2 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+3e96 793ffe00 set0 app_disc_by_button ,pdata 
+3e97 600142a2 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+3e98 20600000 rtn 
+
+app_event_switch_success:
+3e99 70025800 jam 0 ,mem_switch_fail_master_count 
+3e9a 20600000 rtn 
+
+app_event_switch_fail_master:
+3e9b 68008258 fetch 1 ,mem_switch_fail_master_count 
+3e9c 1fe0fe01 increase 1 ,pdata 
+3e9d 60008258 store 1 ,mem_switch_fail_master_count 
+3e9e 1fe67c01 sub pdata ,1 ,null 
+3e9f 20213f6c branch app_bt_role_switch ,positive 
+3ea0 70025800 jam 0 ,mem_switch_fail_master_count 
+3ea1 680142a2 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+3ea2 79207e09 set1 app_disc_switch_fail ,pdata 
+3ea3 600142a2 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+3ea4 20203f77 branch app_bt_disconnect 
+
+app_process_bb_event_priority:
+3ea5 68014292 fetch 2 ,mem_cb_bb_event_process 
+3ea6 20207f66 branch callback_func 
+
+app_check_wake_lock:
+3ea7 68014286 fetch 2 ,mem_cb_check_wakelock 
+3ea8 20207f66 branch callback_func 
+
+app_will_enter_lpm:
+3ea9 6801428a fetch 2 ,mem_cb_before_lpm 
+3eaa 20207f66 branch callback_func 
+
+app_event_linkkey_generate:
+3eab 680142a2 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+3eac 79207e01 set1 app_disc_after_pairing ,pdata 
+3ead 600142a2 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+3eae 20203fa2 branch app_bt_store_reconn_info 
+
+app_event_reconn_start:
+3eaf 680147f4 fetch 2 ,mem_ui_state_map 
+3eb0 79207e07 set1 ui_state_bt_reconnect ,pdata 
+3eb1 600147f4 store 2 ,mem_ui_state_map 
+3eb2 680142a2 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+3eb3 79207e02 set1 app_disc_after_reconn ,pdata 
+3eb4 600142a2 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+3eb5 20600000 rtn 
+
+app_evt_setup_complete:
+3eb6 680147f4 fetch 2 ,mem_ui_state_map 
+3eb7 79207e01 set1 ui_state_bt_setup_complete ,pdata 
+3eb8 600147f4 store 2 ,mem_ui_state_map 
+3eb9 680142a2 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+3eba 79207e04 set1 app_disc_after_setup_done ,pdata 
+3ebb 600142a2 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+3ebc 20600000 rtn 
+
+app_evt_hid_handshake:
+3ebd 680147f4 fetch 2 ,mem_ui_state_map 
+3ebe 79207e03 set1 ui_state_bt_hid_handshake ,pdata 
+3ebf 600147f4 store 2 ,mem_ui_state_map 
+3ec0 20600000 rtn 
+
+app_event_enter_sniff:
+3ec1 680147f4 fetch 2 ,mem_ui_state_map 
+3ec2 79207e05 set1 ui_state_bt_sniff ,pdata 
+3ec3 600147f4 store 2 ,mem_ui_state_map 
+3ec4 680142a2 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+3ec5 79207e03 set1 app_disc_after_sniff ,pdata 
+3ec6 600142a2 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+3ec7 20600000 rtn 
+
+app_event_exit_sniff:
+3ec8 680147f4 fetch 2 ,mem_ui_state_map 
+3ec9 793ffe05 set0 ui_state_bt_sniff ,pdata 
+3eca 600147f4 store 2 ,mem_ui_state_map 
+3ecb 20600000 rtn 
+
+app_le_event_bb_connected:
+3ecc 680147f4 fetch 2 ,mem_ui_state_map 
+3ecd 79207e09 set1 ui_state_ble_connected ,pdata 
+3ece 600147f4 store 2 ,mem_ui_state_map 
+3ecf 20600000 rtn 
+
+app_le_event_bb_disconn:
+3ed0 680147f4 fetch 2 ,mem_ui_state_map 
+3ed1 793ffe09 set0 ui_state_ble_connected ,pdata 
+3ed2 600147f4 store 2 ,mem_ui_state_map 
+3ed3 7046f800 jam 0 ,mem_le_switch_send_data 
+3ed4 20203fa6 branch app_lpm_mult_disable 
+
+app_bb_event_hid_connected:
+3ed5 680147f4 fetch 2 ,mem_ui_state_map 
+3ed6 79207e02 set1 ui_state_bt_hid_conn ,pdata 
+3ed7 600147f4 store 2 ,mem_ui_state_map 
+3ed8 20600000 rtn 
+
+app_evt_button_long_pressed:
+3ed9 680142a2 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+3eda 79207e00 set1 app_disc_by_button ,pdata 
+3edb 600142a2 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+3edc 20600000 rtn 
+
+app_event_ml2cap_conn_refused:
+3edd 680142a2 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+3ede 79207e08 set1 app_disc_l2cap_refused ,pdata 
+3edf 600142a2 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+3ee0 20203f77 branch app_bt_disconnect 
+
+app_evt_timer:
+3ee1 79200025 set1 mark_ext_patch ,mark 
+3ee2 44e8403a bpatch patch3a_0 ,mem_patch3a 
+3ee3 60088259 storet 1 ,mem_app_evt_timer_count 
+
+app_evt_100ms_loop:
+3ee4 68008259 fetch 1 ,mem_app_evt_timer_count 
+3ee5 207a0000 rtn blank 
+3ee6 1fe0ffff increase -1 ,pdata 
+3ee7 60008259 store 1 ,mem_app_evt_timer_count 
+3ee8 20407bb1 call ui_button_polling 
+3ee9 20403f60 call app_lpm_wake_auto_lock_timer 
+3eea 20403eed call app_unsniff_delay_timer 
+3eeb 20403ef5 call app_discovery_timer 
+3eec 20203ee4 branch app_evt_100ms_loop 
+
+app_unsniff_delay_timer:
+3eed 6800c29d fetch 1 ,mem_unsniff2sniff_timer_count 
+3eee 207a0000 rtn blank 
+3eef 1fe0ffff increase -1 ,pdata 
+3ef0 6000c29d store 1 ,mem_unsniff2sniff_timer_count 
+3ef1 247a0000 nrtn blank 
+3ef2 204032ee call context_check_idle 
+3ef3 2022bf9e branch app_bt_enter_sniff ,zero 
+3ef4 20600000 rtn 
+
+app_discovery_timer:
+3ef5 680147f0 fetch 2 ,mem_discovery_timeout_timer_count 
+3ef6 207a0000 rtn blank 
+3ef7 1fe0ffff increase -1 ,pdata 
+3ef8 600147f0 store 2 ,mem_discovery_timeout_timer_count 
+3ef9 247a0000 nrtn blank 
+3efa 20403f7e call app_bt_stop_discovery 
+3efb 20403f98 call app_led_off 
+3efc 68014294 fetch 2 ,mem_cb_discovry_timeout 
+3efd 20207f66 branch callback_func 
+
+app_bb_event_reconn_failed:
+3efe 20403f15 call app_disconn_reason_flag_clear 
+
+app_clear_reconnect_flag:
+3eff 680147f4 fetch 2 ,mem_ui_state_map 
+3f00 793ffe07 set0 ui_state_bt_reconnect ,pdata 
+3f01 600147f4 store 2 ,mem_ui_state_map 
+3f02 20600000 rtn 
+
+app_bb_event_bb_disconn:
+3f03 70429d00 jam 0 ,mem_unsniff2sniff_timer_count 
+3f04 680147f4 fetch 2 ,mem_ui_state_map 
+3f05 c283bf08 bbit1 ui_state_bt_reconnect ,app_bb_event_bb_reconn_disconn 
+3f06 2fec0001 isolate0 ui_state_bt_setup_complete ,pdata 
+3f07 2040be7b call app_discard_event ,true 
+
+app_bb_event_bb_reconn_disconn:
+3f08 680147f4 fetch 2 ,mem_ui_state_map 
+3f09 793ffe00 set0 ui_state_bt_connected ,pdata 
+3f0a 793ffe01 set0 ui_state_bt_setup_complete ,pdata 
+3f0b 793ffe02 set0 ui_state_bt_hid_conn ,pdata 
+3f0c 793ffe03 set0 ui_state_bt_hid_handshake ,pdata 
+3f0d 793ffe04 set0 ui_state_bt_spp_conn ,pdata 
+3f0e 600147f4 store 2 ,mem_ui_state_map 
+3f0f 20203fa6 branch app_lpm_mult_disable 
+
+app_bb_hibernate:
+3f10 20403f12 call app_disconn_reason_clear 
+3f11 20203f9a branch app_enter_hibernate 
+
+app_event_do_nothing:
+
+app_disconn_reason_clear:
+3f12 58000000 setarg 0 
+3f13 600142a0 store app_disc_rsn_size ,mem_app_disconn_reason 
+3f14 20600000 rtn 
+
+app_disconn_reason_flag_clear:
+3f15 58000000 setarg 0 
+3f16 600142a2 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+3f17 20600000 rtn 
+
+app_disconn_reason_collect_bt:
+3f18 680142a2 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+3f19 600142a0 store app_disc_rsn_size ,mem_app_disconn_reason 
+3f1a 58000000 setarg 0 
+3f1b 600142a2 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+3f1c 20600000 rtn 
+
+app_disconn_reason_collect_ble:
+3f1d 680142a2 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+3f1e 79207e07 set1 app_disc_ble ,pdata 
+3f1f 600142a0 store app_disc_rsn_size ,mem_app_disconn_reason 
+3f20 58000000 setarg 0 
+3f21 600142a2 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+3f22 20600000 rtn 
+
+app_check_reconn_target:
+3f23 2040691d call eeprom_load_reconn_info 
+3f24 68034274 fetch 6 ,mem_hci_plap 
+3f25 20600000 rtn 
+
+app_le_check_reconn_target:
+3f26 6800c48b fetch 1 ,mem_ltk_exists 
+3f27 203a3f2a branch app_le_check_reconn_target_none ,blank 
+3f28 20403f96 call app_led_on 
+3f29 20203f82 branch app_ble_start_direct_adv 
+
+app_le_check_reconn_target_none:
+3f2a 20403f94 call app_led_start_blink 
+3f2b 20203f88 branch app_ble_start_adv 
+
+app_check_plap:
+3f2c 79200025 set1 mark_ext_patch ,mark 
+3f2d 44e8c03a bpatch patch3a_1 ,mem_patch3a 
+3f2e da400244 arg mem_check_plap_temp ,regb 
+3f2f da603f31 arg app_check_one_plap ,regc 
+3f30 20203301 branch context_search 
+
+app_check_one_plap:
+3f31 d8400000 arg 0 ,temp 
+3f32 c3003f35 bbit0 state_inconn ,app_check_one_plap_next 
+3f33 1a208c10 add rega ,coffset_plap ,contr 
+3f34 e8cb0000 ifetcht 6 ,contr 
+
+app_check_one_plap_next:
+3f35 18427e00 copy temp ,pdata 
+3f36 245a3f3a ncall app_check_one_plap_device_exist ,blank 
+3f37 e24b0000 istoret 6 ,regb 
+3f38 1a40a406 increase 6 ,regb 
+3f39 20203307 branch context_search_next 
+
+app_check_one_plap_device_exist:
+3f3a 6800c29a fetch 1 ,mem_device_nums 
+3f3b 1fe0fe01 increase 1 ,pdata 
+3f3c 6000c29a store 1 ,mem_device_nums 
+3f3d 20600000 rtn 
+
+app_check_conn_device_nums_addr:
+3f3e 70429a00 jam 0 ,mem_device_nums 
+3f3f 20203f2c branch app_check_plap 
+
+app_check_sniff:
+3f40 6800c7f4 fetch 1 ,mem_ui_state_map 
+3f41 2feffe05 isolate1 ui_state_bt_sniff ,pdata 
+3f42 20600000 rtn 
+
+app_clearflag_store:
+3f43 58000000 setarg 0 
+3f44 20203f46 branch app_flag_store 
+
+app_initflag_store:
+3f45 5800aa55 setarg eeprom_init_flag 
+
+app_flag_store:
+3f46 600102a8 store 2 ,mem_timeup 
+3f47 79200025 set1 mark_ext_patch ,mark 
+3f48 44e9403a bpatch patch3a_2 ,mem_patch3a 
+3f49 d8400002 arg 2 ,temp 
+3f4a da2002a8 arg mem_timeup ,rega 
+3f4b da4000c3 arg eeprom_module_init_flag ,regb 
+3f4c 2020683e branch iicd_write_eep_data 
+
+app_initflag_check:
+3f4d 79200025 set1 mark_ext_patch ,mark 
+3f4e 44e9c03a bpatch patch3a_3 ,mem_patch3a 
+3f4f d8400002 arg 2 ,temp 
+3f50 da200161 arg mem_pdatatemp ,rega 
+3f51 da4000c3 arg eeprom_module_init_flag ,regb 
+3f52 2040681d call iicd_read_eep_data 
+3f53 68010161 fetch 2 ,mem_pdatatemp 
+3f54 d840aa55 arg eeprom_init_flag ,temp 
+3f55 98467c00 isub temp ,null 
+3f56 20600000 rtn 
+
+app_start_auto_sniff:
+3f57 6800c747 fetch 1 ,mem_unsniff2sniff_timer 
+3f58 6000c29d store 1 ,mem_unsniff2sniff_timer_count 
+3f59 20600000 rtn 
+
+app_get_lpm_wake_lock:
+3f5a d8e00009 arg wake_lock_app ,queue 
+3f5b 20203dc2 branch lpm_get_wake_lock 
+
+app_put_lpm_wake_lock:
+3f5c d8e00009 arg wake_lock_app ,queue 
+3f5d 20203dc6 branch lpm_put_wake_lock 
+
+app_lpm_wake_auto_lock:
+3f5e 70429e05 jam lpm_wake_up_delay_timer ,mem_wake_up_delay_timer 
+3f5f 20203f5a branch app_get_lpm_wake_lock 
+
+app_lpm_wake_auto_lock_timer:
+3f60 6800c29e fetch 1 ,mem_wake_up_delay_timer 
+3f61 207a0000 rtn blank 
+3f62 1fe0ffff increase -1 ,pdata 
+3f63 6000c29e store 1 ,mem_wake_up_delay_timer 
+3f64 247a0000 nrtn blank 
+3f65 20203f5c branch app_put_lpm_wake_lock 
+
+app_l2cap_flow_control_enable:
+3f66 7043cc01 jam l2cap_flow_ctrl_enable ,mem_l2cap_flow_ctrl_flag 
+3f67 20600000 rtn 
+
+app_l2cap_flow_control_disable:
+3f68 7043cc00 jam l2cap_flow_ctrl_disable ,mem_l2cap_flow_ctrl_flag 
+3f69 20600000 rtn 
+
+app_bt_set_pincode:
+3f6a 700b7d0a jam bt_cmd_set_pin_code ,mem_fifo_temp 
+3f6b 20207c33 branch ui_ipc_send_cmd 
+
+app_bt_role_switch:
+3f6c 700b7d1d jam bt_cmd_role_switch ,mem_fifo_temp 
+3f6d 20207c33 branch ui_ipc_send_cmd 
+
+app_bt_start_reconnect:
+3f6e 79200025 set1 mark_ext_patch ,mark 
+3f6f 44ea403a bpatch patch3a_4 ,mem_patch3a 
+3f70 6800c29f fetch 1 ,mem_app_connection_options 
+3f71 60008177 store 1 ,mem_connection_options 
+3f72 70025701 jam app_flag_reconnect ,mem_reconnect_flag 
+3f73 700b7d03 jam bt_cmd_reconnect ,mem_fifo_temp 
+3f74 20207c33 branch ui_ipc_send_cmd 
+
+app_bt_reconnect_cancel:
+3f75 700b7d1e jam bt_cmd_bb_reconn_cancel ,mem_fifo_temp 
+3f76 20207c33 branch ui_ipc_send_cmd 
+
+app_bt_disconnect:
+3f77 700b7d04 jam bt_cmd_disconnect ,mem_fifo_temp 
+3f78 20207c33 branch ui_ipc_send_cmd 
+
+app_bt_start_discovery_short:
+3f79 680147fe fetch 2 ,mem_discovery_timeout 
+3f7a 600147f0 store 2 ,mem_discovery_timeout_timer_count 
+
+app_bt_start_discovery_led_blink:
+3f7b 20403f94 call app_led_start_blink 
+
+app_bt_start_discovery:
+3f7c 700b7d01 jam bt_cmd_start_discovery ,mem_fifo_temp 
+3f7d 20207c33 branch ui_ipc_send_cmd 
+
+app_bt_stop_discovery:
+3f7e 58000000 setarg 0 
+3f7f 600147f0 store 2 ,mem_discovery_timeout_timer_count 
+3f80 700b7d02 jam bt_cmd_stop_discovery ,mem_fifo_temp 
+3f81 20207c33 branch ui_ipc_send_cmd 
+
+app_ble_start_direct_adv:
+3f82 700b7d0f jam bt_cmd_start_direct_adv ,mem_fifo_temp 
+3f83 20207c33 branch ui_ipc_send_cmd 
+
+app_ble_stop_direct_adv:
+3f84 700b7d10 jam bt_cmd_stop_direct_adv ,mem_fifo_temp 
+3f85 20207c33 branch ui_ipc_send_cmd 
+
+app_ble_stop_adv:
+3f86 700b7d0e jam bt_cmd_stop_adv ,mem_fifo_temp 
+3f87 20207c33 branch ui_ipc_send_cmd 
+
+app_ble_start_adv:
+3f88 700b7d0d jam bt_cmd_start_adv ,mem_fifo_temp 
+3f89 20207c33 branch ui_ipc_send_cmd 
+
+app_ble_start_scan:
+3f8a 700b7d17 jam bt_cmd_le_start_scan ,mem_fifo_temp 
+3f8b 20207c33 branch ui_ipc_send_cmd 
+
+app_ble_stop_scan:
+3f8c 700b7d18 jam bt_cmd_le_stop_scan ,mem_fifo_temp 
+3f8d 20207c33 branch ui_ipc_send_cmd 
+
+app_ble_start_conn:
+3f8e 700b7d16 jam bt_cmd_le_start_conn ,mem_fifo_temp 
+3f8f 20207c33 branch ui_ipc_send_cmd 
+
+app_ble_disconnect:
+3f90 700b7d11 jam bt_cmd_le_disconnect ,mem_fifo_temp 
+3f91 20207c33 branch ui_ipc_send_cmd 
+
+app_ble_start_write:
+3f92 700b7d1c jam bt_cmd_le_start_write ,mem_fifo_temp 
+3f93 20207c33 branch ui_ipc_send_cmd 
+
+app_led_start_blink:
+3f94 700b7d15 jam bt_cmd_led_blink ,mem_fifo_temp 
+3f95 20207c33 branch ui_ipc_send_cmd 
+
+app_led_on:
+3f96 700b7d14 jam bt_cmd_led_on ,mem_fifo_temp 
+3f97 20207c33 branch ui_ipc_send_cmd 
+
+app_led_stop_blink:
+
+app_led_off:
+3f98 700b7d13 jam bt_cmd_led_off ,mem_fifo_temp 
+3f99 20207c33 branch ui_ipc_send_cmd 
+
+app_enter_hibernate:
+3f9a 700b7d19 jam bt_cmd_enter_hibernate ,mem_fifo_temp 
+3f9b 20207c33 branch ui_ipc_send_cmd 
+
+app_bt_sniff_exit:
+3f9c 700b7d06 jam bt_cmd_exit_sniff ,mem_fifo_temp 
+3f9d 20207c33 branch ui_ipc_send_cmd 
+
+app_bt_enter_sniff:
+3f9e 700b7d05 jam bt_cmd_enter_sniff ,mem_fifo_temp 
+3f9f 20207c33 branch ui_ipc_send_cmd 
+
+app_ble_store_reconn_info:
+3fa0 700b7d1f jam bt_cmd_store_reconn_info_le ,mem_fifo_temp 
+3fa1 20207c33 branch ui_ipc_send_cmd 
+
+app_bt_store_reconn_info:
+3fa2 700b7d20 jam bt_cmd_store_reconn_info_bt ,mem_fifo_temp 
+3fa3 20207c33 branch ui_ipc_send_cmd 
+
+app_lpm_mult_enable:
+3fa4 7920000d set1 mark_lpm_mult_enable ,mark 
+3fa5 20600000 rtn 
+
+app_lpm_mult_disable:
+3fa6 793f800d set0 mark_lpm_mult_enable ,mark 
+3fa7 20600000 rtn 
+
+at_restore_param:
+3fa8 79200025 set1 mark_ext_patch ,mark 
+3fa9 44c84032 bpatch patch32_0 ,mem_patch32 
+3faa d8400020 arg 32 ,temp 
+3fab da204419 arg mem_le_name_len ,rega 
+3fac da4000a0 arg eeprom_module_ble_name_length ,regb 
+3fad 2040681d call iicd_read_eep_data 
+3fae d8400020 arg 32 ,temp 
+3faf da204702 arg mem_local_name_length ,rega 
+3fb0 da40007f arg eeprom_module_bt_name_length ,regb 
+3fb1 2040681d call iicd_read_eep_data 
+3fb2 d8400006 arg 6 ,temp 
+3fb3 da204140 arg mem_lap ,rega 
+3fb4 da400063 arg eeprom_module_bt_adss ,regb 
+3fb5 2040681d call iicd_read_eep_data 
+3fb6 d8400006 arg 6 ,temp 
+3fb7 da2044f9 arg mem_le_lap ,rega 
+3fb8 da400069 arg eeprom_module_le_adss ,regb 
+3fb9 2040681d call iicd_read_eep_data 
+3fba 20405adb call le_modified_name 
+3fbb d8400002 arg 2 ,temp 
+3fbc da2042ac arg mem_baud ,rega 
+3fbd da4000c0 arg eeprom_module_trans_baud ,regb 
+3fbe 2040681d call iicd_read_eep_data 
+3fbf 20406909 call uart_set_baud_by_mem 
+3fc0 20203fc1 branch at_restore_pin_code 
+
+at_restore_pin_code:
+3fc1 d840000e arg 14 ,temp 
+3fc2 da20054f arg mem_pin_length ,rega 
+3fc3 da40006f arg eeprom_module_pincode_length ,regb 
+3fc4 2020681d branch iicd_read_eep_data 
+
+init_module_environment:
+3fc5 79200025 set1 mark_ext_patch ,mark 
+3fc6 44c8c032 bpatch patch32_1 ,mem_patch32 
+3fc7 20403f4d call app_initflag_check 
+3fc8 2022bfa8 branch at_restore_param ,zero 
+
+init_module_eeprom:
+3fc9 20403fd2 call at_store_bt_name 
+3fca 20403fd7 call at_store_le_name 
+3fcb 20405adb call le_modified_name 
+3fcc 20403fdc call at_store_le_adss 
+3fcd 20403fe0 call at_store_bt_adss 
+3fce 204062e9 call pincode_reinit 
+3fcf 20403fe4 call at_store_bt_pincode 
+3fd0 20403fe9 call at_store_throughput_uart_baud115200 
+3fd1 20203f45 branch app_initflag_store 
+
+at_store_bt_name:
+3fd2 6808c702 fetcht 1 ,mem_local_name_length 
+3fd3 18408401 increase 1 ,temp 
+3fd4 da204702 arg mem_local_name_length ,rega 
+3fd5 da40007f arg eeprom_module_bt_name_length ,regb 
+3fd6 2020683e branch iicd_write_eep_data 
+
+at_store_le_name:
+3fd7 6808c419 fetcht 1 ,mem_le_name_len 
+3fd8 18408401 increase 1 ,temp 
+3fd9 da204419 arg mem_le_name_len ,rega 
+3fda da4000a0 arg eeprom_module_ble_name_length ,regb 
+3fdb 2020683e branch iicd_write_eep_data 
+
+at_store_le_adss:
+3fdc d8400006 arg 6 ,temp 
+3fdd da2044f9 arg mem_le_lap ,rega 
+3fde da400069 arg eeprom_module_le_adss ,regb 
+3fdf 2020683e branch iicd_write_eep_data 
+
+at_store_bt_adss:
+3fe0 d8400006 arg 6 ,temp 
+3fe1 da204140 arg mem_lap ,rega 
+3fe2 da400063 arg eeprom_module_bt_adss ,regb 
+3fe3 2020683e branch iicd_write_eep_data 
+
+at_store_bt_pincode:
+3fe4 6808854f fetcht 1 ,mem_pin_length 
+3fe5 18408401 increase 1 ,temp 
+3fe6 da20054f arg mem_pin_length ,rega 
+3fe7 da40006f arg eeprom_module_pincode_length ,regb 
+3fe8 2020683e branch iicd_write_eep_data 
+
+at_store_throughput_uart_baud115200:
+3fe9 580001a0 setarg at_baud_115200 
+3fea 600102a8 store 2 ,mem_timeup 
+
+at_store_throughput_uart_baud:
+3feb d8400002 arg 2 ,temp 
+3fec da2002a8 arg mem_timeup ,rega 
+3fed da4000c0 arg eeprom_module_trans_baud ,regb 
+3fee 2020683e branch iicd_write_eep_data 
+
+at_process:
+3fef 79200025 set1 mark_ext_patch ,mark 
+3ff0 44c94032 bpatch patch32_2 ,mem_patch32 
+3ff1 6801480e fetch 2 ,mem_current_packet_length 
+3ff2 d840012c arg 300 ,temp 
+3ff3 98467c00 isub temp ,null 
+3ff4 2021427f branch at_error_rev_end ,positive 
+3ff5 20403e2b call check_module_disabled 
+3ff6 20407f6b call get_uart_rrptr 
+3ff7 18622200 copy contru ,rega 
+3ff8 6801480e fetch 2 ,mem_current_packet_length 
+3ff9 1fe0fffe increase -2 ,pdata 
+3ffa 98608600 iadd contru ,contru 
+3ffb e8610000 ifetch 2 ,contru 
+3ffc d8400a0d arg at_cmd_end ,temp 
+3ffd 98467c00 isub temp ,null 
+3ffe 24628000 nrtn zero 
+3fff 1a220600 copy rega ,contru 
+4000 da404850 arg mem_prarm_atp ,regb 
+4001 df200003 arg 3 ,loopcnt 
+4002 20404237 call string_compare_uart_follow 
+4003 2420c27f nbranch at_error_rev_end ,true 
+4004 20204005 branch at_dispatch 
+
+at_dispatch:
+4005 79200025 set1 mark_ext_patch ,mark 
+4006 44c9c032 bpatch patch32_3 ,mem_patch32 
+4007 18622200 copy contru ,rega 
+4008 da404827 arg mem_prarm_name ,regb 
+4009 18007204 force 4 ,loopcnt 
+400a 20404237 call string_compare_uart_follow 
+400b 2020c06d branch at_rev_name ,true 
+400c da404824 arg mem_prarm_blename ,regb 
+400d 18007207 force 7 ,loopcnt 
+400e 20404237 call string_compare_uart_follow 
+400f 2020c074 branch at_rev_le_name ,true 
+4010 da40482e arg mem_prarm_adss ,regb 
+4011 18007204 force 4 ,loopcnt 
+4012 20404237 call string_compare_uart_follow 
+4013 2020c07b branch at_rev_adss ,true 
+4014 da40482b arg mem_prarm_bleadss ,regb 
+4015 18007207 force 7 ,loopcnt 
+4016 20404237 call string_compare_uart_follow 
+4017 2020c081 branch at_rev_leadss ,true 
+4018 da404832 arg mem_prarm_vers ,regb 
+4019 18007204 force 4 ,loopcnt 
+401a 20404237 call string_compare_uart_follow 
+401b 2020c087 branch at_rev_vers ,true 
+401c da404820 arg mem_prarm_uart ,regb 
+401d 18007204 force 4 ,loopcnt 
+401e 20404237 call string_compare_uart_follow 
+401f 2020c08c branch at_rev_uart ,true 
+4020 da40481c arg mem_prarm_pswd ,regb 
+4021 18007204 force 4 ,loopcnt 
+4022 20404237 call string_compare_uart_follow 
+4023 2020c08f branch at_rev_pswd ,true 
+4024 da404836 arg mem_prarm_class ,regb 
+4025 18007205 force 5 ,loopcnt 
+4026 20404237 call string_compare_uart_follow 
+4027 2020c095 branch at_rev_class ,true 
+4028 da404853 arg mem_prarm_list ,regb 
+4029 18007204 force 4 ,loopcnt 
+402a 20404237 call string_compare_uart_follow 
+402b 2020c09b branch at_rev_list ,true 
+402c da404857 arg mem_prarm_role ,regb 
+402d 18007204 force 4 ,loopcnt 
+402e 20404237 call string_compare_uart_follow 
+402f 2020c0a1 branch at_rev_role ,true 
+4030 da40485b arg mem_prarm_sniff ,regb 
+4031 18007205 force 5 ,loopcnt 
+4032 20404237 call string_compare_uart_follow 
+4033 2020c0a5 branch at_rev_sniff ,true 
+4034 da404860 arg mem_prarm_ldev ,regb 
+4035 18007204 force 4 ,loopcnt 
+4036 20404237 call string_compare_uart_follow 
+4037 2020c0ab branch at_rev_ldev ,true 
+4038 da404864 arg mem_prarm_rssi ,regb 
+4039 18007204 force 4 ,loopcnt 
+403a 20404237 call string_compare_uart_follow 
+403b 2020c0b0 branch at_rev_rssi ,true 
+403c da404868 arg mem_prarm_cdev ,regb 
+403d 18007204 force 4 ,loopcnt 
+403e 20404237 call string_compare_uart_follow 
+403f 2020c0b7 branch at_rev_cdev ,true 
+4040 da40486f arg mem_prarm_inqr ,regb 
+4041 18007204 force 4 ,loopcnt 
+4042 20404237 call string_compare_uart_follow 
+4043 2020c0d6 branch at_rev_inqr ,true 
+4044 da40486c arg mem_prarm_bleinqr ,regb 
+4045 18007207 force 7 ,loopcnt 
+4046 20404237 call string_compare_uart_follow 
+4047 2020c0dd branch at_rev_leinqr ,true 
+4048 da404873 arg mem_prarm_cmode ,regb 
+4049 18007205 force 5 ,loopcnt 
+404a 20404237 call string_compare_uart_follow 
+404b 2020c0f2 branch at_rev_cmode ,true 
+404c da404878 arg mem_prarm_mode ,regb 
+404d 18007204 force 4 ,loopcnt 
+404e 20404237 call string_compare_uart_follow 
+404f 2020c0f8 branch at_rev_mode ,true 
+4050 da40487c arg mem_prarm_dmstate ,regb 
+4051 18007207 force 7 ,loopcnt 
+4052 20404237 call string_compare_uart_follow 
+4053 2020c0fb branch at_rev_dmstate ,true 
+4054 da404841 arg mem_prarm_reconn ,regb 
+4055 18007206 force 6 ,loopcnt 
+4056 20404237 call string_compare_uart_follow 
+4057 2020c100 branch at_rev_reconn ,true 
+4058 da404883 arg mem_prarm_discov ,regb 
+4059 18007206 force 6 ,loopcnt 
+405a 20404237 call string_compare_uart_follow 
+405b 2020c12c branch at_rev_discov ,true 
+405c da404849 arg mem_prarm_dis ,regb 
+405d 18007203 force 3 ,loopcnt 
+405e 20404237 call string_compare_uart_follow 
+405f 2020c10e branch at_rev_dis ,true 
+4060 da40484c arg mem_prarm_stsn ,regb 
+4061 18007204 force 4 ,loopcnt 
+4062 20404237 call string_compare_uart_follow 
+4063 2020c117 branch at_rev_stsn ,true 
+4064 da40483b arg mem_prarm_clrflg ,regb 
+4065 18007206 force 6 ,loopcnt 
+4066 20404237 call string_compare_uart_follow 
+4067 2020c127 branch at_rev_clrflg ,true 
+4068 da404889 arg mem_prarm_ota ,regb 
+4069 18007203 force 3 ,loopcnt 
+406a 20404237 call string_compare_uart_follow 
+406b 2020c129 branch at_rev_ota ,true 
+406c 2020427f branch at_error_rev_end 
+
+at_rev_name:
+406d e8608000 ifetch 1 ,contru 
+406e c01fc071 beq at_ques ,at_rev_name_inquiry 
+406f c01ec131 beq at_equ ,at_rev_name_set 
+4070 2020427f branch at_error_rev_end 
+
+at_rev_name_inquiry:
+4071 20407f6e call get_uart_twptr 
+4072 20404194 call at_group_name_inquiry 
+4073 20204286 branch at_nomal_rev_end 
+
+at_rev_le_name:
+4074 e8608000 ifetch 1 ,contru 
+4075 c01fc078 beq at_ques ,at_rev_le_name_inquiry 
+4076 c01ec136 beq at_equ ,at_rev_le_name_set 
+4077 2020427f branch at_error_rev_end 
+
+at_rev_le_name_inquiry:
+4078 20407f6e call get_uart_twptr 
+4079 2040419b call at_group_le_name_inquiry 
+407a 20204286 branch at_nomal_rev_end 
+
+at_rev_adss:
+407b e8608000 ifetch 1 ,contru 
+407c c01fc07f beq at_ques ,at_rev_adss_inquiry 
+407d c01ec13c beq at_equ ,at_rev_adss_set 
+407e 2020427f branch at_error_rev_end 
+
+at_rev_adss_inquiry:
+407f 204041a2 call at_group_adss_inquiry 
+4080 20204286 branch at_nomal_rev_end 
+
+at_rev_leadss:
+4081 e8608000 ifetch 1 ,contru 
+4082 c01fc085 beq at_ques ,at_rev_leadss_inquiry 
+4083 c01ec140 beq at_equ ,at_rev_leadss_set 
+4084 2020427f branch at_error_rev_end 
+
+at_rev_leadss_inquiry:
+4085 204041a8 call at_group_leadss_inquiry 
+4086 20204286 branch at_nomal_rev_end 
+
+at_rev_vers:
+4087 e8608000 ifetch 1 ,contru 
+4088 c01fc08a beq at_ques ,at_rev_vers_inquiry 
+4089 2020427f branch at_error_rev_end 
+
+at_rev_vers_inquiry:
+408a 204041ae call at_group_version_inquiry 
+408b 20204286 branch at_nomal_rev_end 
+
+at_rev_uart:
+408c e8608000 ifetch 1 ,contru 
+408d c01ec149 beq at_equ ,at_rev_uart_set 
+408e 2020427f branch at_error_rev_end 
+
+at_rev_pswd:
+408f e8608000 ifetch 1 ,contru 
+4090 c01fc093 beq at_ques ,at_rev_pswd_inquiry 
+4091 c01ec144 beq at_equ ,at_rev_pswd_set 
+4092 2020427f branch at_error_rev_end 
+
+at_rev_pswd_inquiry:
+4093 20404204 call at_group_pswd_inquiry 
+4094 20204286 branch at_nomal_rev_end 
+
+at_rev_class:
+4095 e8608000 ifetch 1 ,contru 
+4096 c01fc099 beq at_ques ,at_rev_class_inquiry 
+4097 c01ec157 beq at_equ ,at_rev_class_set 
+4098 2020427f branch at_error_rev_end 
+
+at_rev_class_inquiry:
+4099 204041b4 call at_group_class_inquiry 
+409a 20204286 branch at_nomal_rev_end 
+
+at_rev_list:
+409b e8608000 ifetch 1 ,contru 
+409c c01fc09f beq at_ques ,at_rev_list_inquiry 
+409d c01ec172 beq at_equ ,at_rev_list_set 
+409e 2020427f branch at_error_rev_end 
+
+at_rev_list_inquiry:
+409f 204041ba call at_group_list_inquiry 
+40a0 20204286 branch at_nomal_rev_end 
+
+at_rev_role:
+40a1 e8608000 ifetch 1 ,contru 
+40a2 c01fc0e1 beq at_ques ,at_rev_role_inquiry 
+40a3 c01ec15a beq at_equ ,at_rev_role_set 
+40a4 2020427f branch at_error_rev_end 
+
+at_rev_sniff:
+40a5 e8608000 ifetch 1 ,contru 
+40a6 c01fc0a9 beq at_ques ,at_rev_sniff_inquiry 
+40a7 c01ec16b beq at_equ ,at_rev_sniff_set 
+40a8 2020427f branch at_error_rev_end 
+
+at_rev_sniff_inquiry:
+40a9 2040420b call at_group_sniff_inquiry 
+40aa 20204286 branch at_nomal_rev_end 
+
+at_rev_ldev:
+40ab e8608000 ifetch 1 ,contru 
+40ac c01fc0ae beq at_ques ,at_rev_ldev_inquiry 
+40ad 2020427f branch at_error_rev_end 
+
+at_rev_ldev_inquiry:
+40ae 204041c0 call at_group_ldev_inquiry 
+40af 20204286 branch at_nomal_rev_end 
+
+at_rev_rssi:
+40b0 e8608000 ifetch 1 ,contru 
+40b1 c01fc0b3 beq at_ques ,at_rev_rssi_inquiry 
+40b2 20204286 branch at_nomal_rev_end 
+
+at_rev_rssi_inquiry:
+40b3 204032ee call context_check_idle 
+40b4 2422c27f nbranch at_error_rev_end ,zero 
+40b5 204041cd call at_group_rssi_inquiry 
+40b6 20204286 branch at_nomal_rev_end 
+
+at_rev_cdev:
+40b7 e8608000 ifetch 1 ,contru 
+40b8 c01fc0ba beq at_ques ,at_rev_cdev_inquiry 
+40b9 2020427f branch at_error_rev_end 
+
+at_rev_cdev_inquiry:
+40ba 6800c040 fetch 1 ,mem_context 
+40bb c300427f bbit0 state_inconn ,at_error_rev_end 
+40bc 20407f6e call get_uart_twptr 
+40bd 6800c041 fetch 1 ,mem_context + coffset_mode 
+40be c28040c0 bbit1 mode_le ,le_cdev_inquiry 
+40bf 202040cb branch at_cdev_unle_inq 
+
+le_cdev_inquiry:
+40c0 da204868 arg mem_prarm_cdev ,rega 
+40c1 df200004 arg 4 ,loopcnt 
+40c2 20404232 call at_group_inquiryhead_common 
+40c3 20404247 call at_rev_uart_write_62 
+40c4 58000034 setarg 0x34 
+40c5 e1408000 istore 1 ,contwu 
+40c6 2040424e call at_rev_uart_write_44 
+40c7 da2003d0 arg mem_le_plap ,rega 
+40c8 20407e9d call adss_hex2string_to_uart 
+40c9 204068fa call uartd_send 
+40ca 20204286 branch at_nomal_rev_end 
+
+at_cdev_unle_inq:
+40cb da204868 arg mem_prarm_cdev ,rega 
+40cc df200004 arg 4 ,loopcnt 
+40cd 20404232 call at_group_inquiryhead_common 
+40ce 20404247 call at_rev_uart_write_62 
+40cf 58000033 setarg 0x33 
+40d0 e1408000 istore 1 ,contwu 
+40d1 2040424e call at_rev_uart_write_44 
+40d2 da200040 arg mem_plap ,rega 
+40d3 20407e9d call adss_hex2string_to_uart 
+40d4 204068fa call uartd_send 
+40d5 20204286 branch at_nomal_rev_end 
+
+at_rev_inqr:
+40d6 79200025 set1 mark_ext_patch ,mark 
+40d7 44ca4032 bpatch patch32_4 ,mem_patch32 
+40d8 20403f3e call app_check_conn_device_nums_addr 
+40d9 6800c29a fetch 1 ,mem_device_nums 
+40da c080427f bne 0 ,at_error_rev_end 
+40db 204041f0 call do_at_inquiry 
+40dc 20204286 branch at_nomal_rev_end 
+
+at_rev_leinqr:
+40dd 79200025 set1 mark_ext_patch ,mark 
+40de 44cac032 bpatch patch32_5 ,mem_patch32 
+40df 204041f6 call do_at_leinquiry 
+40e0 20204286 branch at_nomal_rev_end 
+
+at_rev_role_inquiry:
+40e1 da204857 arg mem_prarm_role ,rega 
+40e2 df200004 arg 4 ,loopcnt 
+40e3 20404232 call at_group_inquiryhead_common 
+40e4 204032ee call context_check_idle 
+40e5 2422c24a nbranch at_rev_uart_write_n ,zero 
+40e6 6800c041 fetch 1 ,mem_context + coffset_mode 
+40e7 c280c0eb bbit1 mode_master ,at_rev_uart_write_m 
+40e8 204040ef call at_rev_uart_write_s 
+40e9 204068fa call uartd_send 
+40ea 20204286 branch at_nomal_rev_end 
+
+at_rev_uart_write_m:
+40eb 5800004d setarg 0x4d 
+40ec e1408000 istore 1 ,contwu 
+40ed 204068fa call uartd_send 
+40ee 20204286 branch at_nomal_rev_end 
+
+at_rev_uart_write_s:
+40ef 58000053 setarg 0x53 
+40f0 e1408000 istore 1 ,contwu 
+40f1 20600000 rtn 
+
+at_rev_cmode:
+40f2 e8608000 ifetch 1 ,contru 
+40f3 c01fc0f6 beq at_ques ,at_rev_cmode_inquiry 
+40f4 c01ec17e beq at_equ ,at_rev_cmode_set 
+40f5 2020427f branch at_error_rev_end 
+
+at_rev_cmode_inquiry:
+40f6 204041d8 call at_group_cmode_inquiry 
+40f7 20204286 branch at_nomal_rev_end 
+
+at_rev_mode:
+40f8 e8608000 ifetch 1 ,contru 
+40f9 c01ec151 beq at_equ ,at_rev_mode_set 
+40fa 2020427f branch at_error_rev_end 
+
+at_rev_dmstate:
+40fb e8608000 ifetch 1 ,contru 
+40fc c01fc0fe beq at_ques ,at_rev_dmstate_inquiry 
+40fd 2020427f branch at_error_rev_end 
+
+at_rev_dmstate_inquiry:
+40fe 204041de call at_group_dmstate_inquiry 
+40ff 20204286 branch at_nomal_rev_end 
+
+at_rev_reconn:
+4100 6800c29f fetch 1 ,mem_app_connection_options 
+4101 60008177 store 1 ,mem_connection_options 
+4102 2040691d call eeprom_load_reconn_info 
+4103 20403f3e call app_check_conn_device_nums_addr 
+4104 6800c29a fetch 1 ,mem_device_nums 
+4105 c080427f bne 0 ,at_error_rev_end 
+4106 6800c2a9 fetch 1 ,mem_xrecord_mode 
+4107 c019c10c beq rec_3_mode ,at_rev_unle_reconn 
+4108 c01a410a beq rec_4_mode ,at_rev_lereconn 
+4109 2020427f branch at_error_rev_end 
+
+at_rev_lereconn:
+410a 20403f82 call app_ble_start_direct_adv 
+410b 20204286 branch at_nomal_rev_end 
+
+at_rev_unle_reconn:
+410c 20403f6e call app_bt_start_reconnect 
+410d 20204286 branch at_nomal_rev_end 
+
+at_rev_dis:
+410e 20403f3e call app_check_conn_device_nums_addr 
+410f 6800c29a fetch 1 ,mem_device_nums 
+4110 c080c27f bne 1 ,at_error_rev_end 
+4111 6800c041 fetch 1 ,mem_context + coffset_mode 
+4112 c2804115 bbit1 mode_le ,at_rev_ledis 
+4113 20403f77 call app_bt_disconnect 
+4114 20204286 branch at_nomal_rev_end 
+
+at_rev_ledis:
+4115 20403f90 call app_ble_disconnect 
+4116 20204286 branch at_nomal_rev_end 
+
+at_rev_stsn:
+4117 e8608000 ifetch 1 ,contru 
+4118 c01ec11a beq at_equ ,at_rev_stsn_set 
+4119 2020427f branch at_error_rev_end 
+
+at_rev_stsn_set:
+411a e8608000 ifetch 1 ,contru 
+411b c018c122 beq 0x31 ,at_exit_sniff 
+411c c018411e beq 0x30 ,at_enter_sniff 
+411d 2020427f branch at_error_rev_end 
+
+at_enter_sniff:
+411e 20403f40 call app_check_sniff 
+411f 2020c286 branch at_nomal_rev_end ,true 
+4120 20403f9e call app_bt_enter_sniff 
+4121 20204286 branch at_nomal_rev_end 
+
+at_exit_sniff:
+4122 20403f40 call app_check_sniff 
+4123 2420c286 nbranch at_nomal_rev_end ,true 
+4124 204063ab call module_exit_sniff 
+4125 20406414 call at_set_cmd_task_flag 
+4126 20204286 branch at_nomal_rev_end 
+
+at_rev_clrflg:
+4127 20403f43 call app_clearflag_store 
+4128 20204286 branch at_nomal_rev_end 
+
+at_rev_ota:
+4129 e8608000 ifetch 1 ,contru 
+412a c01ec187 beq at_equ ,at_rev_ota_process 
+412b 2020427f branch at_error_rev_end 
+
+at_rev_discov:
+412c 20403f3e call app_check_conn_device_nums_addr 
+412d 6800c29a fetch 1 ,mem_device_nums 
+412e c080427f bne 0 ,at_error_rev_end 
+412f 2040638a call module_disconn_start 
+4130 20204286 branch at_nomal_rev_end 
+
+at_rev_name_set:
+4131 da204703 arg mem_local_name ,rega 
+4132 2040422b call at_set_common 
+4133 6008c702 storet 1 ,mem_local_name_length 
+4134 20403fd2 call at_store_bt_name 
+4135 20204286 branch at_nomal_rev_end 
+
+at_rev_le_name_set:
+4136 da20441a arg mem_le_name ,rega 
+4137 2040422b call at_set_common 
+4138 6008c419 storet 1 ,mem_le_name_len 
+4139 20403fd7 call at_store_le_name 
+413a 20405adb call le_modified_name 
+413b 20204286 branch at_nomal_rev_end 
+
+at_rev_adss_set:
+413c d8a04140 arg mem_lap ,contw 
+413d 20407ebf call adss_string2hex_from_uart 
+413e 20403fe0 call at_store_bt_adss 
+413f 20204286 branch at_nomal_rev_end 
+
+at_rev_leadss_set:
+4140 d8a044f9 arg mem_le_lap ,contw 
+4141 20407ebf call adss_string2hex_from_uart 
+4142 20403fdc call at_store_le_adss 
+4143 20204286 branch at_nomal_rev_end 
+
+at_rev_pswd_set:
+4144 da200550 arg mem_pin ,rega 
+4145 2040422b call at_set_common 
+4146 6008854f storet 1 ,mem_pin_length 
+4147 20403fe4 call at_store_bt_pincode 
+4148 20204286 branch at_nomal_rev_end 
+
+at_rev_uart_set:
+4149 20407eb0 call string2dec_from_uart 
+414a 5adc6c00 setarg uart_clk 
+414b 9846fc00 idiv temp 
+414c 20407efd call wait_div_end 
+414d 1807fe00 quotient pdata 
+414e 600102a8 store 2 ,mem_timeup 
+414f 20403feb call at_store_throughput_uart_baud 
+4150 20204286 branch at_nomal_rev_end 
+
+at_rev_mode_set:
+4151 e8608000 ifetch 1 ,contru 
+4152 1fe67c33 sub pdata ,0x33 ,null 
+4153 2421427f nbranch at_error_rev_end ,positive 
+4154 1fe17e03 and pdata ,0x3 ,pdata 
+4155 6000c812 store 1 ,mem_module_state 
+4156 20204286 branch at_nomal_rev_end 
+
+at_rev_class_set:
+4157 e8618000 ifetch 3 ,contru 
+4158 6001c14a store 3 ,mem_class 
+4159 20204286 branch at_nomal_rev_end 
+
+at_rev_role_set:
+415a 204032ee call context_check_idle 
+415b 2422c27f nbranch at_error_rev_end ,zero 
+415c e8608000 ifetch 1 ,contru 
+415d c029c160 beq 0x53 ,at_role_slave 
+415e c026c163 beq 0x4D ,at_role_master 
+415f 2020427f branch at_error_rev_end 
+
+at_role_slave:
+4160 6800c041 fetch 1 ,mem_context + coffset_mode 
+4161 c280c166 bbit1 mode_master ,at_switch_role 
+4162 2020427f branch at_error_rev_end 
+
+at_role_master:
+4163 6800c041 fetch 1 ,mem_context + coffset_mode 
+4164 c300c166 bbit0 mode_master ,at_switch_role 
+4165 2020427f branch at_error_rev_end 
+
+at_switch_role:
+4166 6800c813 fetch 1 ,mem_module_task 
+4167 79207e04 set1 at_task_switch ,pdata 
+4168 6000c813 store 1 ,mem_module_task 
+4169 70427218 jam hci_cmd_role_switch ,mem_hci_cmd 
+416a 2020428c branch at_rev_end 
+
+at_rev_sniff_set:
+416b d8a04280 arg mem_sniff_param_interval ,contw 
+416c 20407ebd call mem2_string2hex_from_uart 
+416d d8a04282 arg mem_sniff_param_attempt ,contw 
+416e 20407ebd call mem2_string2hex_from_uart 
+416f d8a04284 arg mem_sniff_param_timeout ,contw 
+4170 20407ebd call mem2_string2hex_from_uart 
+4171 20204286 branch at_nomal_rev_end 
+
+at_rev_list_set:
+4172 e8608000 ifetch 1 ,contru 
+4173 c018c176 beq 0x31 ,at_rev_list_set_1 
+4174 c019417c beq 0x32 ,at_rev_list_set_2 
+4175 2020427f branch at_error_rev_end 
+
+at_rev_list_set_1:
+4176 e8608000 ifetch 1 ,contru 
+4177 d8a001b4 arg mem_temp_lap ,contw 
+4178 20407ebf call adss_string2hex_from_uart 
+4179 20406931 call eeprom_clear_bd_reconn_info 
+417a 24740000 nrtn user 
+417b 20204286 branch at_nomal_rev_end 
+
+at_rev_list_set_2:
+417c 2040693d call eeprom_clear_all_reconn_info 
+417d 20204286 branch at_nomal_rev_end 
+
+at_rev_cmode_set:
+417e e8608000 ifetch 1 ,contru 
+417f 6808c812 fetcht 1 ,mem_module_state 
+4180 7d3a0402 nsetflag blank ,at_state_cmode ,temp 
+4181 6008c812 storet 1 ,mem_module_state 
+4182 203a4286 branch at_nomal_rev_end ,blank 
+4183 e8608000 ifetch 1 ,contru 
+4184 d8a04814 arg mem_cmode_addr ,contw 
+4185 20407ebf call adss_string2hex_from_uart 
+4186 20204286 branch at_nomal_rev_end 
+
+at_rev_ota_process:
+4187 79200025 set1 mark_ext_patch ,mark 
+4188 44cb4032 bpatch patch32_6 ,mem_patch32 
+4189 df200014 arg 20 ,loopcnt 
+418a d8a01000 arg mem_l2cap_rxbuff1 ,contw 
+418b 2040497c call uart_copy_rx_bytes 
+418c da201000 arg mem_l2cap_rxbuff1 ,rega 
+418d 68009000 fetch 1 ,mem_l2cap_rxbuff1 
+418e 2fe1fe12 compare ota_write_req ,pdata ,0xff 
+418f 2040eb19 call prcp_parse_ota_write_req ,true 
+4190 68009000 fetch 1 ,mem_l2cap_rxbuff1 
+4191 2fe1fe13 compare ota_end_cmd ,pdata ,0xff 
+4192 2040eb45 call prcp_parse_ota_end_cmd ,true 
+4193 20204286 branch at_nomal_rev_end 
+
+at_group_name_inquiry:
+4194 da204827 arg mem_prarm_name ,rega 
+4195 df200004 arg 4 ,loopcnt 
+4196 20404232 call at_group_inquiryhead_common 
+4197 6800c702 fetch 1 ,mem_local_name_length 
+4198 1fe27200 copy pdata ,loopcnt 
+4199 d8c04703 arg mem_local_name ,contr 
+419a 20207f74 branch send_mem_to_uart0 
+
+at_group_le_name_inquiry:
+419b da204824 arg mem_prarm_blename ,rega 
+419c 18007207 force 7 ,loopcnt 
+419d 20404232 call at_group_inquiryhead_common 
+419e 20405b08 call le_get_device_name 
+419f e8c08000 ifetch 1 ,contr 
+41a0 1fe27200 copy pdata ,loopcnt 
+41a1 20207f74 branch send_mem_to_uart0 
+
+at_group_adss_inquiry:
+41a2 da20482e arg mem_prarm_adss ,rega 
+41a3 df200004 arg 4 ,loopcnt 
+41a4 20404232 call at_group_inquiryhead_common 
+41a5 da204140 arg mem_lap ,rega 
+41a6 20407e9d call adss_hex2string_to_uart 
+41a7 202068fa branch uartd_send 
+
+at_group_leadss_inquiry:
+41a8 da20482b arg mem_prarm_bleadss ,rega 
+41a9 df200007 arg 7 ,loopcnt 
+41aa 20404232 call at_group_inquiryhead_common 
+41ab da2044f9 arg mem_le_lap ,rega 
+41ac 20407e9d call adss_hex2string_to_uart 
+41ad 202068fa branch uartd_send 
+
+at_group_version_inquiry:
+41ae da204832 arg mem_prarm_vers ,rega 
+41af df200004 arg 4 ,loopcnt 
+41b0 20404232 call at_group_inquiryhead_common 
+41b1 df200006 arg 6 ,loopcnt 
+41b2 d8c04804 arg mem_module_version ,contr 
+41b3 20207f74 branch send_mem_to_uart0 
+
+at_group_class_inquiry:
+41b4 da204836 arg mem_prarm_class ,rega 
+41b5 df200005 arg 5 ,loopcnt 
+41b6 20404232 call at_group_inquiryhead_common 
+41b7 df200003 arg 3 ,loopcnt 
+41b8 d8c0414a arg mem_class ,contr 
+41b9 20207f74 branch send_mem_to_uart0 
+
+at_group_list_inquiry:
+41ba da204853 arg mem_prarm_list ,rega 
+41bb df200004 arg 4 ,loopcnt 
+41bc 20404232 call at_group_inquiryhead_common 
+41bd 20406988 call eeprom_load_bdaddr_list 
+41be 20404253 call at_group_list_reply 
+41bf 202068fa branch uartd_send 
+
+at_group_ldev_inquiry:
+41c0 20406929 call eeprom_load_reconn_bdaddr 
+41c1 da204860 arg mem_prarm_ldev ,rega 
+41c2 df200004 arg 4 ,loopcnt 
+41c3 20404232 call at_group_inquiryhead_common 
+41c4 680081b3 fetch 1 ,mem_record_bt_mode 
+41c5 c019c1c8 beq rec_3_mode ,at_group_ldev_inquiry0 
+41c6 c01a41c8 beq rec_4_mode ,at_group_ldev_inquiry0 
+41c7 202068fa branch uartd_send 
+
+at_group_ldev_inquiry0:
+41c8 e1408000 istore 1 ,contwu 
+41c9 2040424e call at_rev_uart_write_44 
+41ca da2001b4 arg mem_temp_lap ,rega 
+41cb 20407e9d call adss_hex2string_to_uart 
+41cc 202068fa branch uartd_send 
+
+at_group_rssi_inquiry:
+41cd 79200025 set1 mark_ext_patch ,mark 
+41ce 44cbc032 bpatch patch32_7 ,mem_patch32 
+41cf da204864 arg mem_prarm_rssi ,rega 
+41d0 df200004 arg 4 ,loopcnt 
+41d1 20404232 call at_group_inquiryhead_common 
+41d2 204041d4 call at_rssi_result 
+41d3 202068fa branch uartd_send 
+
+at_rssi_result:
+41d4 da200018 arg mem_rssi ,rega 
+41d5 df200001 arg 1 ,loopcnt 
+41d6 20207e9e branch hex2string_to_uart0 
+
+at_group_cdev_inquiry:
+41d7 20600000 rtn 
+
+at_group_cmode_inquiry:
+41d8 da204873 arg mem_prarm_cmode ,rega 
+41d9 df200005 arg 5 ,loopcnt 
+41da 20404232 call at_group_inquiryhead_common 
+41db da204814 arg mem_cmode_addr ,rega 
+41dc 20407e9d call adss_hex2string_to_uart 
+41dd 202068fa branch uartd_send 
+
+at_group_dmstate_inquiry:
+41de da20487c arg mem_prarm_dmstate ,rega 
+41df df200007 arg 7 ,loopcnt 
+41e0 20404232 call at_group_inquiryhead_common 
+41e1 6800c812 fetch 1 ,mem_module_state 
+41e2 1fe22200 copy pdata ,rega 
+41e3 6800c040 fetch 1 ,mem_context 
+41e4 2feffe00 isolate1 state_inconn ,pdata 
+41e5 7920a203 setflag true ,at_state_isconn ,rega 
+41e6 2feffe01 isolate1 state_insniff ,pdata 
+41e7 7920a205 setflag true ,at_state_sniff ,rega 
+41e8 6800c041 fetch 1 ,mem_context + coffset_mode 
+41e9 2feffe01 isolate1 mode_master ,pdata 
+41ea 7920a204 setflag true ,at_state_role ,rega 
+41eb 2feffe00 isolate1 mode_le ,pdata 
+41ec 7920a206 setflag true ,at_state_le ,rega 
+41ed 1a227e00 copy rega ,pdata 
+41ee e1408000 istore 1 ,contwu 
+41ef 202068fa branch uartd_send 
+
+do_at_inquiry:
+41f0 589e8b33 setarg param_glap 
+41f1 6001c147 store 3 ,mem_glap 
+41f2 6800c2a4 fetch 1 ,mem_at_using_flag 
+41f3 79207e00 set1 at_flag_inq ,pdata 
+41f4 6000c2a4 store 1 ,mem_at_using_flag 
+41f5 20204636 branch do_at_inquiry0 
+
+do_at_leinquiry:
+41f6 20403f3e call app_check_conn_device_nums_addr 
+41f7 6800c29a fetch 1 ,mem_device_nums 
+41f8 c080427f bne 0 ,at_error_rev_end 
+41f9 20403f8a call app_ble_start_scan 
+41fa 6800c2a4 fetch 1 ,mem_at_using_flag 
+41fb 79207e01 set1 at_flag_leinq ,pdata 
+41fc 6000c2a4 store 1 ,mem_at_using_flag 
+41fd 58000200 setarg 0x200 
+41fe 6001481a store 2 ,mem_at_scan_time 
+41ff da20486c arg mem_prarm_bleinqr ,rega 
+4200 df200006 arg 6 ,loopcnt 
+4201 20404232 call at_group_inquiryhead_common 
+4202 20407f74 call send_mem_to_uart0 
+4203 2020428c branch at_rev_end 
+
+at_group_pswd_inquiry:
+4204 da20481c arg mem_prarm_pswd ,rega 
+4205 df200004 arg 4 ,loopcnt 
+4206 20404232 call at_group_inquiryhead_common 
+4207 6800854f fetch 1 ,mem_pin_length 
+4208 1fe27200 copy pdata ,loopcnt 
+4209 d8c00550 arg mem_pin ,contr 
+420a 20207f74 branch send_mem_to_uart0 
+
+at_group_sniff_inquiry:
+420b da20485b arg mem_prarm_sniff ,rega 
+420c df200005 arg 5 ,loopcnt 
+420d 20404232 call at_group_inquiryhead_common 
+420e 20404247 call at_rev_uart_write_62 
+420f 58000054 setarg 84 
+4210 e1408000 istore 1 ,contwu 
+4211 20404244 call at_rev_uart_write_colon 
+4212 da204280 arg mem_sniff_param_interval ,rega 
+4213 20407e9b call mem2_hex2string_to_uart 
+4214 20404247 call at_rev_uart_write_62 
+4215 58000041 setarg 65 
+4216 e1408000 istore 1 ,contwu 
+4217 20404244 call at_rev_uart_write_colon 
+4218 da204282 arg mem_sniff_param_attempt ,rega 
+4219 20407e9b call mem2_hex2string_to_uart 
+421a 20404247 call at_rev_uart_write_62 
+421b 5800004f setarg 79 
+421c e1408000 istore 1 ,contwu 
+421d 20404244 call at_rev_uart_write_colon 
+421e da204284 arg mem_sniff_param_timeout ,rega 
+421f 20407e9b call mem2_hex2string_to_uart 
+4220 20207f74 branch send_mem_to_uart0 
+
+at_inquiry_reply:
+4221 20407f6e call get_uart_twptr 
+4222 20404247 call at_rev_uart_write_62 
+4223 da200182 arg extm_lap ,rega 
+4224 20407e9d call adss_hex2string_to_uart 
+4225 2040424e call at_rev_uart_write_44 
+4226 da20017f arg extm_class ,rega 
+4227 20407e99 call mem3_hex2string_to_uart 
+4228 2040424e call at_rev_uart_write_44 
+4229 204041d4 call at_rssi_result 
+422a 202068fa branch uartd_send 
+
+at_set_common:
+422b 2040422d call at_set_setprarm 
+422c 2020497c branch uart_copy_rx_bytes 
+
+at_set_setprarm:
+422d 20404269 call uart_get_remain_length 
+422e 1fe20400 copy pdata ,temp 
+422f 1fe27200 copy pdata ,loopcnt 
+4230 1a220a00 copy rega ,contw 
+4231 20600000 rtn 
+
+at_group_inquiryhead_common:
+4232 20407f6e call get_uart_twptr 
+4233 20404241 call at_rev_uart_write_plus 
+
+at_group_inquiryhead_common0:
+4234 1a220c00 copy rega ,contr 
+4235 20404976 call uart_copy_tx_bytes 
+4236 20204244 branch at_rev_uart_write_colon 
+
+string_compare_uart_follow:
+4237 e8608000 ifetch 1 ,contru 
+4238 ea488000 ifetcht 1 ,regb 
+4239 98467c00 isub temp ,null 
+423a 7840fc00 disable true 
+423b 2422c240 nbranch string_compare_uart_follow_diff ,zero 
+423c 1a40a401 increase 1 ,regb 
+423d c2004237 loop string_compare_uart_follow 
+423e 7820fc00 enable true 
+423f 20600000 rtn 
+
+string_compare_uart_follow_diff:
+4240 20204251 branch restore_contru 
+
+at_rev_uart_write_plus:
+4241 5800002b setarg ui_plus 
+4242 e1408000 istore 1 ,contwu 
+4243 20600000 rtn 
+
+at_rev_uart_write_colon:
+4244 5800003a setarg ui_colon 
+4245 e1408000 istore 1 ,contwu 
+4246 20600000 rtn 
+
+at_rev_uart_write_62:
+4247 5800003e setarg 62 
+4248 e1408000 istore 1 ,contwu 
+4249 20600000 rtn 
+
+at_rev_uart_write_n:
+424a 5800004e setarg 78 
+424b e1408000 istore 1 ,contwu 
+424c 204068fa call uartd_send 
+424d 20204286 branch at_nomal_rev_end 
+
+at_rev_uart_write_44:
+424e 5800002c setarg at_comma 
+424f e1408000 istore 1 ,contwu 
+4250 20600000 rtn 
+
+restore_contru:
+4251 1a220600 copy rega ,contru 
+4252 20600000 rtn 
+
+at_group_list_reply:
+4253 da600195 arg mem_bdaddr_list_buff + 7 ,regc 
+4254 df200004 arg 4 ,loopcnt 
+
+at_group_list_reply_loop:
+4255 1f227e00 copy loopcnt ,pdata 
+4256 60008161 store 1 ,mem_pdatatemp 
+4257 ea608000 ifetch 1 ,regc 
+4258 c019c25b beq rec_3_mode ,at_group_list_isrecord 
+4259 c01a425b beq rec_4_mode ,at_group_list_isrecord 
+425a 20204267 branch at_group_list_notrecord 
+
+at_group_list_isrecord:
+425b 20404247 call at_rev_uart_write_62 
+425c ea608000 ifetch 1 ,regc 
+425d e1408000 istore 1 ,contwu 
+425e 1a60a601 increase 1 ,regc 
+425f 2040424e call at_rev_uart_write_44 
+4260 1a622200 copy regc ,rega 
+4261 20407e9d call adss_hex2string_to_uart 
+
+at_group_list_notrecord0:
+4262 1a60a606 increase 6 ,regc 
+4263 68008161 fetch 1 ,mem_pdatatemp 
+4264 1fe27200 copy pdata ,loopcnt 
+4265 c2004255 loop at_group_list_reply_loop 
+4266 20600000 rtn 
+
+at_group_list_notrecord:
+4267 1a60a601 increase 1 ,regc 
+4268 20204262 branch at_group_list_notrecord0 
+
+uart_get_remain_length:
+4269 79200025 set1 mark_ext_patch ,mark 
+426a 44cc4033 bpatch patch33_0 ,mem_patch33 
+426b 68110058 hfetch 2 ,core_uart_rrptr 
+426c 98667e00 isub contru ,pdata 
+426d 20628000 rtn zero 
+426e 20214273 branch uart_get_remain_length0 ,positive 
+
+uart_get_remain_length_common:
+426f 6809480e fetcht 2 ,mem_current_packet_length 
+4270 9840fe00 iadd temp ,pdata 
+4271 1fe0fffe increase -2 ,pdata 
+4272 20600000 rtn 
+
+uart_get_remain_length0:
+4273 20404278 call uart_get_rx_buff_length 
+4274 98608400 iadd contru ,temp 
+4275 68110058 hfetch 2 ,core_uart_rrptr 
+4276 98467e00 isub temp ,pdata 
+4277 2020426f branch uart_get_remain_length_common 
+
+uart_get_rx_buff_length:
+4278 dfe04fff arg mem_module_rx_buf_end ,pdata 
+4279 1fe0fe01 increase 1 ,pdata 
+427a d8404a00 arg mem_module_rx_buf ,temp 
+427b 98467e00 isub temp ,pdata 
+427c 20600000 rtn 
+
+release_packet:
+427d 6809480e fetcht 2 ,mem_current_packet_length 
+427e 20206903 branch uartd_rxdone_by_len 
+
+at_error_rev_end:
+427f 79200025 set1 mark_ext_patch ,mark 
+4280 44ccc033 bpatch patch33_1 ,mem_patch33 
+4281 20407f6e call get_uart_twptr 
+4282 58525245 setarg 0x525245 
+4283 e1418000 istore 3 ,contwu 
+4284 204068fa call uartd_send 
+4285 2020428c branch at_rev_end 
+
+at_nomal_rev_end:
+4286 79200025 set1 mark_ext_patch ,mark 
+4287 44cd4033 bpatch patch33_2 ,mem_patch33 
+4288 20407f6e call get_uart_twptr 
+4289 58004b4f setarg 0x4b4f 
+428a e1410000 istore 2 ,contwu 
+428b 204068fa call uartd_send 
+
+spp_send_end:
+
+at_rev_end:
+428c 79200025 set1 mark_ext_patch ,mark 
+428d 44cdc033 bpatch patch33_3 ,mem_patch33 
+428e 2040427d call release_packet 
+
+spp_ipc_end:
+428f 58000000 setarg 0 
+4290 6001480e store 2 ,mem_current_packet_length 
+4291 6002480a store 4 ,mem_last_uart_clock 
+4292 20600000 rtn 
+
+le_dongle_init:
+4293 20407db2 call usb_init 
+4294 20403f94 call app_led_start_blink 
+4295 5800429f setarg le_dongle 
+4296 6001428c store 2 ,mem_cb_le_process 
+4297 580042be setarg dongle_process_bb_event 
+4298 60014292 store 2 ,mem_cb_bb_event_process 
+4299 58007cdb setarg usb_isr 
+429a 60014290 store 2 ,mem_cb_idle_process 
+429b 70025a05 jam 5 ,mem_dongle_count 
+429c 70026e00 jam 0 ,mem_dongle_peers 
+429d 7042721b jam hci_cmd_le_create_conn ,mem_hci_cmd 
+429e 20600000 rtn 
+
+le_dongle:
+429f 7840fc00 disable true 
+42a0 20403f3e call app_check_conn_device_nums_addr 
+42a1 70041c1b jam 0x1b ,mem_cmd_le_create_conn 
+42a2 6800c29a fetch 1 ,mem_device_nums 
+42a3 2fe00602 compare 2 ,pdata ,0x3 
+42a4 24608000 nrtn true 
+42a5 7043d200 jam 0 ,mem_le_scan_enable 
+42a6 20600000 rtn 
+
+le_scan_dongle:
+42a7 68008340 fetch 1 ,mem_le_rxbuf 
+42a8 c30042b0 bbit0 0 ,dongle_add_peer 
+42a9 68030342 fetch 6 ,mem_le_rxbuf + 2 
+42aa 680b03d0 fetcht 6 ,mem_le_plap 
+42ab 98467c00 isub temp ,null 
+42ac 24628000 nrtn zero 
+
+dongle_peer_paired:
+42ad 680303d0 fetch 6 ,mem_le_plap 
+42ae 600344e7 store 6 ,mem_le_conn_peer_addr 
+42af 20600000 rtn 
+
+dongle_add_peer:
+42b0 da2000ff arg 0xff ,rega 
+42b1 20405b52 call le_search_adtype 
+42b2 24628000 nrtn zero 
+42b3 e8c10000 ifetch 2 ,contr 
+42b4 68090270 fetcht 2 ,mem_dongle_signature 
+42b5 98467c00 isub temp ,null 
+42b6 24628000 nrtn zero 
+42b7 6800826e fetch 1 ,mem_dongle_peers 
+42b8 1fe0fe01 increase 1 ,pdata 
+42b9 6000826e store 1 ,mem_dongle_peers 
+42ba 6808826f fetcht 1 ,mem_dongle_pairing_cnt 
+42bb 98467c00 isub temp ,null 
+42bc 202142ad branch dongle_peer_paired ,positive 
+42bd 20600000 rtn 
+
+dongle_process_bb_event:
+42be 1a627e00 copy regc ,pdata 
+42bf c00ac2c5 beq bt_evt_le_disconnected ,dongle_le_event_bb_disconnected 
+42c0 c00a42d7 beq bt_evt_le_connected ,dongle_bb_event_connected 
+42c1 1fe1040f and pdata ,0x0f ,temp 
+42c2 1fe17ef0 and_into bt_evt_timer_mask ,pdata 
+42c3 c02842cd beq bt_evt_timer_init ,dongle_bb_event_100ms 
+42c4 20600000 rtn 
+
+dongle_le_event_bb_disconnected:
+42c5 58000000 setarg 0 
+42c6 600344e7 store 6 ,mem_le_conn_peer_addr 
+42c7 70026e00 jam 0 ,mem_dongle_peers 
+42c8 58000000 setarg 0 
+42c9 60028ff1 store 5 ,mem_mouse_data 
+42ca 700ff001 jam send_mouse_data_cmd ,mem_mcmd 
+42cb 20407cdb call usb_isr 
+42cc 20203f8a branch app_ble_start_scan 
+
+dongle_bb_event_100ms:
+42cd 20600000 rtn 
+42ce 6800c3d2 fetch 1 ,mem_le_scan_enable 
+42cf 207a0000 rtn blank 
+42d0 6800825a fetch 1 ,mem_dongle_count 
+42d1 207a0000 rtn blank 
+42d2 1fe0ffff increase -1 ,pdata 
+42d3 6000825a store 1 ,mem_dongle_count 
+42d4 247a0000 nrtn blank 
+42d5 204042d8 call le_change_peer_addr 
+42d6 20203f8e branch app_ble_start_conn 
+
+dongle_bb_event_connected:
+42d7 20203f8c branch app_ble_stop_scan 
+
+le_change_peer_addr:
+42d8 70025a05 jam 5 ,mem_dongle_count 
+42d9 68008267 fetch 1 ,mem_le_peer_state 
+42da c000c2e1 beq le_context_state_kb ,addr_slave2 
+42db c00142dd beq le_context_state_mouse ,addr_slave1 
+42dc 20600000 rtn 
+
+addr_slave1:
+42dd 6803025b fetch 6 ,mem_le_addr_slave1 
+42de 60030268 store 6 ,mem_app_peer_addr 
+42df 70026701 jam le_context_state_kb ,mem_le_peer_state 
+42e0 20600000 rtn 
+
+addr_slave2:
+42e1 68030261 fetch 6 ,mem_le_addr_slave2 
+42e2 60030268 store 6 ,mem_app_peer_addr 
+42e3 70026702 jam le_context_state_mouse ,mem_le_peer_state 
+42e4 20600000 rtn 
+
+hci_rx_bcsp:
+42e5 e8610000 ifetch 2 ,contru 
+42e6 203a4490 branch hci_reset_uart ,blank 
+42e7 98002600 iforce regc 
+42e8 e8608000 ifetch 1 ,contru 
+42e9 60008293 store 1 ,mem_h5rx_tmp 
+42ea 98002200 iforce rega 
+42eb c30342ed bbit0 6 ,hci_rx_bcsp_nocrc 
+42ec 1a60a7fe increase -2 ,regc 
+
+hci_rx_bcsp_nocrc:
+42ed e8610000 ifetch 2 ,contru 
+42ee 1ff1f200 rshift4 pdata ,loopcnt 
+42ef 1fe1100f and pdata ,0xf ,debug 
+42f0 9a20a200 iadd rega ,rega 
+42f1 1fecfe00 rshift8 pdata ,pdata 
+42f2 9a20a200 iadd rega ,rega 
+42f3 e8608000 ifetch 1 ,contru 
+42f4 9a20fe00 iadd rega ,pdata 
+42f5 c0ffc319 bne 0xff ,hci_rx_bcsp_discard_packet 
+42f6 1a60fffc add regc ,-4 ,pdata 
+42f7 9f267c00 isub loopcnt ,null 
+42f8 2422c316 nbranch hci_rx_bcsp_discard_packet_err ,zero 
+42f9 68008293 fetch 1 ,mem_h5rx_tmp 
+42fa 2fec0007 isolate0 7 ,pdata 
+42fb 2020c302 branch hci_rx_bcsp_check_ack_skip ,true 
+42fc 793f801b set0 mark_h5_reset ,mark 
+42fd c50dc302 bmark1 mark_h5_reset ,hci_rx_bcsp_check_ack_skip 
+42fe 1fe17e07 and_into 7 ,pdata 
+42ff 6808828c fetcht 1 ,mem_h5tx_ack 
+4300 98467c00 isub temp ,null 
+4301 2422c316 nbranch hci_rx_bcsp_discard_packet_err ,zero 
+
+hci_rx_bcsp_check_ack_skip:
+4302 58000640 setarg 1600 
+4303 18000e07 force lpo_delay_timer ,queue 
+4304 20407e4c call timer_init 
+4305 19027e00 deposit debug 
+4306 20404320 call hci_bcsp_parse_packet 
+4307 20740000 rtn user 
+4308 68008293 fetch 1 ,mem_h5rx_tmp 
+4309 98002200 iforce rega 
+430a 1fe90400 rshift3 pdata ,temp 
+430b 18410407 and_into 7 ,temp 
+430c 6800828b fetch 1 ,mem_h5rx_ack 
+430d 98467e00 isub temp ,pdata 
+430e 1fe67e00 sub pdata ,0 ,pdata 
+430f 1fe17e07 and_into 7 ,pdata 
+4310 c080c316 bne 1 ,hci_rx_bcsp_discard_packet_err 
+4311 6008828b storet 1 ,mem_h5rx_ack 
+4312 68008272 fetch 1 ,mem_h5rx_ackcnt 
+4313 1fe0fe01 increase 1 ,pdata 
+4314 60008272 store 1 ,mem_h5rx_ackcnt 
+4315 20204319 branch hci_rx_bcsp_discard_packet 
+
+hci_rx_bcsp_discard_packet_err:
+4316 68008273 fetch 1 ,mem_check_err_acl_cont 
+4317 1fe0fe01 increase 1 ,pdata 
+4318 60008273 store 1 ,mem_check_err_acl_cont 
+
+hci_rx_bcsp_discard_packet:
+4319 68110058 hfetch 2 ,core_uart_rrptr 
+431a 98000600 iforce contru 
+431b e8610000 ifetch 2 ,contru 
+431c 98608600 iadd contru ,contru 
+431d 18627e00 deposit contru 
+431e 60110058 hstore 2 ,core_uart_rrptr 
+431f 20600000 rtn 
+
+hci_bcsp_parse_packet:
+4320 78547c00 disable user 
+4321 207a0000 rtn blank 
+4322 c000c328 beq 1 ,parse_bcsp_link_establish 
+4323 c0014346 beq 2 ,parse_bcsp_bccmd 
+4324 c002c507 beq 5 ,process_hci_cmd 
+4325 c00344dd beq 6 ,process_acl 
+4326 c0044a56 beq 8 ,process_hci_patch 
+4327 20600000 rtn 
+
+parse_bcsp_link_establish:
+4328 793f8018 set0 mark_h5_reinit ,mark 
+4329 e8608000 ifetch 1 ,contru 
+432a c06d432f beq 0xda ,parse_bcsp_link_establish_sync 
+432b c0564336 beq 0xac ,parse_bcsp_link_establish_syncrsp 
+432c c056c33a beq 0xad ,parse_bcsp_link_establish_conf 
+432d c06f4344 beq 0xde ,parse_bcsp_link_establish_confrsp 
+432e 20600000 rtn 
+
+parse_bcsp_link_establish_sync:
+432f c50bc333 bmark1 mark_h5_sync ,parse_bcsp_link_establish_send_syncrsp 
+4330 180004da force 0xda ,temp 
+4331 58ededdc setarg 0xededdc 
+4332 2040433c call parse_bcsp_link_establish_send 
+
+parse_bcsp_link_establish_send_syncrsp:
+4333 180004ac force 0xac ,temp 
+4334 58eeefaf setarg 0xeeefaf 
+4335 2020433c branch parse_bcsp_link_establish_send 
+
+parse_bcsp_link_establish_syncrsp:
+4336 79200017 set1 mark_h5_sync ,mark 
+4337 180004ad force 0xad ,temp 
+4338 58edacef setarg 0xedacef 
+4339 2020433c branch parse_bcsp_link_establish_send 
+
+parse_bcsp_link_establish_conf:
+433a 180004de force 0xde ,temp 
+433b 58d0d0ad setarg 0xd0d0ad 
+
+parse_bcsp_link_establish_send:
+433c 1fed7e00 lshift8 pdata ,pdata 
+433d 98418400 ior temp ,temp 
+433e 20404972 call hci_get_packet_ptr 
+433f e14a0000 istoret 4 ,contwu 
+4340 18000e01 force 1 ,queue 
+4341 18007204 force 4 ,loopcnt 
+4342 793f8013 set0 mark_h5tx_rp ,mark 
+4343 20204378 branch bcsp_send_packet 
+
+parse_bcsp_link_establish_confrsp:
+4344 18006000 force 0 ,alarm 
+4345 20204933 branch hci_command_status 
+
+parse_bcsp_bccmd:
+4346 1f226000 copy loopcnt ,alarm 
+4347 20404371 call bcsp_send_ack 
+4348 18002400 force 0 ,regb 
+4349 20404972 call hci_get_packet_ptr 
+434a 1e027200 copy alarm ,loopcnt 
+434b e8608000 ifetch 1 ,contru 
+434c 58000001 setarg 1 
+434d e1408000 istore 1 ,contwu 
+434e 793f801a set0 mark_temp ,mark 
+
+parse_bcsp_bccmd_loop:
+434f e8608000 ifetch 1 ,contru 
+4350 1a40a401 increase 1 ,regb 
+4351 c00e435b beq 0x1c ,parse_bcsp_bccmd_sco_link 
+4352 2a41fe04 compare 4 ,regb ,0xff 
+4353 2420c35d nbranch parse_bcsp_bccmd_next ,true 
+4354 793a001a setflag blank ,mark_temp ,mark 
+4355 c09d435d bne 0x3a ,parse_bcsp_bccmd_next 
+4356 580007d0 setarg 2000 
+4357 18000e00 force h5_reinit_timer ,queue 
+4358 20407e4c call timer_init 
+4359 79200018 set1 mark_h5_reinit ,mark 
+435a 20600000 rtn 
+
+parse_bcsp_bccmd_sco_link:
+435b 2a41fe06 compare 6 ,regb ,0xff 
+435c 2020c366 branch parse_bcsp_bccmd_next_ok ,true 
+
+parse_bcsp_bccmd_next:
+435d 280ffe1a isolate1 mark_temp ,mark 
+435e 2040c368 call parse_bcsp_bccmd_replace ,true 
+435f e1408000 istore 1 ,contwu 
+4360 c200434f loop parse_bcsp_bccmd_loop 
+4361 793f8019 set0 mark_bccmd_patch ,mark 
+4362 1e027200 copy alarm ,loopcnt 
+4363 79200013 set1 mark_h5tx_rp ,mark 
+4364 18000e02 force 2 ,queue 
+4365 20204378 branch bcsp_send_packet 
+
+parse_bcsp_bccmd_next_ok:
+4366 79200019 set1 mark_bccmd_patch ,mark 
+4367 2020435d branch parse_bcsp_bccmd_next 
+
+parse_bcsp_bccmd_replace:
+4368 c60c8000 rtnmark1 mark_bccmd_patch 
+4369 2a41fe0a compare 10 ,regb ,0xff 
+436a 2020c36f branch parse_bcsp_bccmd_replace1 ,true 
+436b 2a41fe0b compare 11 ,regb ,0xff 
+436c 24608000 nrtn true 
+436d 58000012 setarg 0x12 
+436e 20600000 rtn 
+
+parse_bcsp_bccmd_replace1:
+436f 580000e9 setarg 0xe9 
+4370 20600000 rtn 
+
+bcsp_send_ack:
+4371 68008293 fetch 1 ,mem_h5rx_tmp 
+4372 1fe0fe01 increase 1 ,pdata 
+4373 1fe17e07 and_into 7 ,pdata 
+4374 6000828c store 1 ,mem_h5tx_ack 
+4375 18007200 force 0 ,loopcnt 
+4376 18000e00 force 0 ,queue 
+4377 793f8013 set0 mark_h5tx_rp ,mark 
+
+bcsp_send_packet:
+4378 1f20a404 add loopcnt ,4 ,regb 
+4379 6800828c fetch 1 ,mem_h5tx_ack 
+437a 1fe9a600 lshift3 pdata ,regc 
+437b 280c0014 isolate0 mark_h5tx_crc ,mark 
+437c 7d20a606 nsetflag true ,6 ,regc 
+437d 2020c37f branch bcsp_send_packet_nocrc ,true 
+437e 1a40a402 increase 2 ,regb 
+
+bcsp_send_packet_nocrc:
+437f c589c389 bmark0 mark_h5tx_rp ,bcsp_send_packet_form_nonrp 
+4380 79202607 set1 7 ,regc 
+4381 68008294 fetch 1 ,mem_h5tx_seq 
+4382 9a61a600 ior regc ,regc 
+4383 1fe0fe01 increase 1 ,pdata 
+4384 1fe17e07 and_into 7 ,pdata 
+4385 60008294 store 1 ,mem_h5tx_seq 
+4386 68008274 fetch 1 ,mem_rp_packets 
+4387 1fe0fe01 increase 1 ,pdata 
+4388 60008274 store 1 ,mem_rp_packets 
+
+bcsp_send_packet_form_nonrp:
+4389 6801028f fetch 2 ,mem_h5tx_wptr 
+438a 98001400 iforce contwu 
+438b 1a427e00 deposit regb 
+438c 280ffe13 isolate1 mark_h5tx_rp ,mark 
+438d 7920fe0f setflag true ,hci_flag_rp ,pdata 
+438e e1410000 istore 2 ,contwu 
+438f 19422200 copy contwu ,rega 
+4390 1a627e00 deposit regc 
+4391 e1408000 istore 1 ,contwu 
+4392 1f327e00 lshift4 loopcnt ,pdata 
+4393 98e1fe00 ior queue ,pdata 
+4394 9a60a600 iadd regc ,regc 
+4395 e1410000 istore 2 ,contwu 
+4396 1fecfe00 rshift8 pdata ,pdata 
+4397 9a60fe00 iadd regc ,pdata 
+4398 1fe67eff sub pdata ,0xff ,pdata 
+4399 e1408000 istore 1 ,contwu 
+439a c58a439f bmark0 mark_h5tx_crc ,bcsp_send_packet_form_nocrc 
+439b 1f20f204 increase 4 ,loopcnt 
+439c 1a221400 copy rega ,contwu 
+439d 20404986 call calc_tx_crc16 
+439e e1410000 istore 2 ,contwu 
+
+bcsp_send_packet_form_nocrc:
+439f 6801028f fetch 2 ,mem_h5tx_wptr 
+43a0 9a409400 iadd regb ,contwu 
+43a1 19409402 increase 2 ,contwu 
+43a2 19427e00 deposit contwu 
+43a3 6001028f store 2 ,mem_h5tx_wptr 
+43a4 6011005e hstore 2 ,core_uart_twptr 
+43a5 6809028d fetcht 2 ,mem_h5tx_rptr 
+43a6 204043d8 call bcsp_update_free 
+43a7 204043ab call bcsp_init_retransmit 
+43a8 58000640 setarg 1600 
+43a9 18000e07 force lpo_delay_timer ,queue 
+43aa 20207e4c branch timer_init 
+
+bcsp_init_retransmit:
+43ab 58000190 setarg 400 
+43ac 18000e01 force hci_retransmit_timer ,queue 
+43ad 20407e4c call timer_init 
+43ae 79200015 set1 mark_h5tx_retransmit ,mark 
+43af 20600000 rtn 
+
+bcsp_retransmit:
+43b0 c68a8000 rtnmark0 mark_h5tx_retransmit 
+43b1 18000e01 force hci_retransmit_timer ,queue 
+43b2 20407e53 call timer_check 
+43b3 247a0000 nrtn blank 
+43b4 6801028d fetch 2 ,mem_h5tx_rptr 
+43b5 60110060 hstore 2 ,core_uart_trptrp 
+43b6 202043ab branch bcsp_init_retransmit 
+
+bcsp_freepacket:
+43b7 6801028f fetch 2 ,mem_h5tx_wptr 
+43b8 6809028d fetcht 2 ,mem_h5tx_rptr 
+43b9 98467c00 isub temp ,null 
+43ba 2022c3d6 branch bcsp_noretransmit ,zero 
+43bb 18421400 copy temp ,contwu 
+43bc e9410000 ifetch 2 ,contwu 
+43bd 98002200 iforce rega 
+43be 9ea17e00 iand mask3ff ,pdata 
+43bf 99409400 iadd contwu ,contwu 
+43c0 68110110 hfetch 2 ,core_uart_trptr 
+43c1 99467e00 isub contwu ,pdata 
+43c2 9ea12400 iand mask3ff ,regb 
+43c3 6801028f fetch 2 ,mem_h5tx_wptr 
+43c4 99467e00 isub contwu ,pdata 
+43c5 9ea17e00 iand mask3ff ,pdata 
+43c6 9a467e00 isub regb ,pdata 
+43c7 24610000 nrtn positive 
+43c8 2a2c000f isolate0 hci_flag_rp ,rega 
+43c9 2020c3d1 branch bcsp_discardnrp ,true 
+43ca 68008272 fetch 1 ,mem_h5rx_ackcnt 
+43cb 207a0000 rtn blank 
+43cc 1fe0ffff increase -1 ,pdata 
+43cd 60008272 store 1 ,mem_h5rx_ackcnt 
+43ce 68008274 fetch 1 ,mem_rp_packets 
+43cf 1fe0ffff increase -1 ,pdata 
+43d0 60008274 store 1 ,mem_rp_packets 
+
+bcsp_discardnrp:
+43d1 19420400 copy contwu ,temp 
+43d2 6009028d storet 2 ,mem_h5tx_rptr 
+43d3 6801028f fetch 2 ,mem_h5tx_wptr 
+43d4 204043d8 call bcsp_update_free 
+43d5 202043b7 branch bcsp_freepacket 
+
+bcsp_noretransmit:
+43d6 793f8015 set0 mark_h5tx_retransmit ,mark 
+43d7 20600000 rtn 
+
+bcsp_update_free:
+43d8 98467e00 isub temp ,pdata 
+43d9 9ea17e00 iand mask3ff ,pdata 
+43da 9ea67e00 isub mask3ff ,pdata 
+43db 1fe67e00 sub pdata ,0 ,pdata 
+43dc 60010291 store 2 ,mem_h5tx_free 
+43dd 20600000 rtn 
+
+bcsp_get_tx_ptr:
+43de 6801028f fetch 2 ,mem_h5tx_wptr 
+43df 99409400 iadd contwu ,contwu 
+43e0 20600000 rtn 
+
+hci_log:
+43e1 20600000 rtn 
+
+hci_rx_h4:
+43e2 79200025 set1 mark_ext_patch ,mark 
+43e3 44f6403d bpatch patch3d_4 ,mem_patch3d 
+43e4 6800c272 fetch 1 ,mem_hci_cmd 
+43e5 247a0000 nrtn blank 
+
+hci_rx_h4_1:
+43e6 204043e9 call hci_h4_parse_packet 
+43e7 2454440e ncall h4_rx_discard_packet ,user 
+43e8 20600000 rtn 
+
+hci_h4_parse_packet:
+43e9 79200025 set1 mark_ext_patch ,mark 
+43ea 44f6c03d bpatch patch3d_5 ,mem_patch3d 
+43eb 18622200 copy contru ,rega 
+43ec d8400004 arg 4 ,temp 
+43ed e8608000 ifetch 1 ,contru 
+43ee c000c3f4 beq hci_h4_type_cmd ,hci_h4_parse_packet_wait_len 
+43ef 18408401 increase 1 ,temp 
+43f0 c00143f4 beq hci_h4_type_acl ,hci_h4_parse_packet_wait_len 
+43f1 18627e00 copy contru ,pdata 
+43f2 60110058 hstore 2 ,core_uart_rrptr 
+43f3 20600000 rtn 
+
+hci_h4_parse_packet_wait_len:
+43f4 68110112 hfetch 2 ,core_uart_rxitems 
+43f5 98467c00 isub temp ,null 
+43f6 242143f4 nbranch hci_h4_parse_packet_wait_len ,positive 
+43f7 78547c00 disable user 
+43f8 1a220600 copy rega ,contru 
+43f9 20404417 call h4_get_rx_payload_len 
+43fa 98408400 iadd temp ,temp 
+
+hci_h4_parse_packet_wait:
+43fb 68110112 hfetch 2 ,core_uart_rxitems 
+43fc 98467c00 isub temp ,null 
+43fd 242143fb nbranch hci_h4_parse_packet_wait ,positive 
+43fe 1a220600 copy rega ,contru 
+43ff e8608000 ifetch 1 ,contru 
+4400 c000c507 beq hci_h4_type_cmd ,process_hci_cmd 
+4401 c0014403 beq hci_h4_type_acl ,hci_h4_parse_packet_acl 
+4402 20203bf1 branch assert 
+
+hci_h4_parse_packet_acl:
+4403 79200025 set1 mark_ext_patch ,mark 
+4404 44f7403d bpatch patch3d_6 ,mem_patch3d 
+4405 18622200 copy contru ,rega 
+4406 e8610000 ifetch 2 ,contru 
+4407 1a220600 copy rega ,contru 
+4408 68088046 fetcht 1 ,mem_conn_handle 
+4409 a841fe00 icompare 0xff ,temp 
+440a 2020c4dd branch process_acl ,true 
+440b 203b58ea branch le_acl_downgoing ,le 
+440c 78347c00 enable user 
+440d 20600000 rtn 
+
+h4_rx_discard_packet:
+440e 79200025 set1 mark_ext_patch ,mark 
+440f 44f7c03d bpatch patch3d_7 ,mem_patch3d 
+4410 68110058 hfetch 2 ,core_uart_rrptr 
+4411 98000600 iforce contru 
+4412 20404417 call h4_get_rx_payload_len 
+4413 98608600 iadd contru ,contru 
+4414 18627e00 deposit contru 
+4415 60110058 hstore 2 ,core_uart_rrptr 
+4416 20600000 rtn 
+
+h4_get_rx_payload_len:
+4417 e8608000 ifetch 1 ,contru 
+4418 18608602 increase 2 ,contru 
+4419 c001441c beq hci_h4_type_acl ,h4_get_rx_payload_len_acl 
+441a e8608000 ifetch 1 ,contru 
+441b 20600000 rtn 
+
+h4_get_rx_payload_len_acl:
+441c e8610000 ifetch 2 ,contru 
+441d 20600000 rtn 
+
+h4_get_tx_ptr:
+441e 6811005e hfetch 2 ,core_uart_twptr 
+441f 194095fb increase -5 ,contwu 
+4420 99409400 iadd contwu ,contwu 
+4421 20600000 rtn 
+
+h4_send_packet_event:
+4422 d8400004 arg hci_h4_type_event ,temp 
+4423 20204425 branch h4_send_packet 
+
+h4_send_packet_acl:
+4424 d8400002 arg hci_h4_type_acl ,temp 
+
+h4_send_packet:
+4425 79200025 set1 mark_ext_patch ,mark 
+4426 44f8403e bpatch patch3e_0 ,mem_patch3e 
+4427 1f20f201 increase 1 ,loopcnt 
+4428 6811005e hfetch 2 ,core_uart_twptr 
+4429 1fe21400 copy pdata ,contwu 
+442a 1f227e00 copy loopcnt ,pdata 
+442b e1488000 istoret 1 ,contwu 
+442c 1fe0ffff increase -1 ,pdata 
+442d 99409400 iadd contwu ,contwu 
+442e 19427e00 copy contwu ,pdata 
+442f 6001029d store 2 ,mem_hci_acl_tx_trigger_wptr 
+4430 18427e00 copy temp ,pdata 
+4431 c1010000 rtneq hci_h4_type_acl 
+4432 6801029d fetch 2 ,mem_hci_acl_tx_trigger_wptr 
+4433 6011005e hstore 2 ,core_uart_twptr 
+4434 2020443b branch h4_send_acl_trigger_clear 
+
+h4_send_acl_trigger:
+4435 79200025 set1 mark_ext_patch ,mark 
+4436 44f8c03e bpatch patch3e_1 ,mem_patch3e 
+4437 6801029d fetch 2 ,mem_hci_acl_tx_trigger_wptr 
+4438 203a3bf1 branch assert ,blank 
+4439 6011005e hstore 2 ,core_uart_twptr 
+443a 2020443b branch h4_send_acl_trigger_clear 
+
+h4_send_acl_trigger_clear:
+443b 58000000 setarg 0 
+443c 6001029d store 2 ,mem_hci_acl_tx_trigger_wptr 
+443d 20600000 rtn 
+
+h4_tx_buffer_remain:
+443e 68190110 hfetcht 2 ,core_uart_trptr 
+443f 6811005e hfetch 2 ,core_uart_twptr 
+4440 98462200 isub temp ,rega 
+4441 24214447 nbranch h4_tx_buffer_remain_negative ,positive 
+4442 6819005a hfetcht 2 ,core_uart_tsaddr 
+4443 6811005c hfetch 2 ,core_uart_teaddr 
+4444 98467e00 isub temp ,pdata 
+4445 9a260400 isub rega ,temp 
+4446 20600000 rtn 
+
+h4_tx_buffer_remain_negative:
+4447 1a2605ff sub rega ,-1 ,temp 
+4448 20600000 rtn 
+
+hci_dispatch:
+4449 793f8025 set0 mark_ext_patch ,mark 
+444a 44e6c019 bpatch patch19_5 ,mem_patch19 
+444b 6800c132 fetch 1 ,mem_device_option 
+444c c1808000 rtnne dvc_op_hci 
+444d 204044a3 call hci_rx_packet 
+444e 20404494 call hci_check_bcsp_protocol 
+444f 2040c3b0 call bcsp_retransmit ,true 
+4450 20404494 call hci_check_bcsp_protocol 
+4451 2040c3b7 call bcsp_freepacket ,true 
+4452 202044e6 branch process_send_acl 
+4453 c68c0000 rtnmark0 mark_h5_reinit 
+4454 18000e00 force h5_reinit_timer ,queue 
+4455 20407e53 call timer_check 
+4456 247a0000 nrtn blank 
+4457 20404472 call hci_reinit 
+4458 20404494 call hci_check_bcsp_protocol 
+4459 24608000 nrtn true 
+445a 793f8017 set0 mark_h5_sync ,mark 
+445b 180004da force 0xda ,temp 
+445c 58ededdc setarg 0xededdc 
+445d 2040433c call parse_bcsp_link_establish_send 
+445e 580007d0 setarg 2000 
+445f 18000e00 force h5_reinit_timer ,queue 
+4460 20207e4c branch timer_init 
+
+hci_init:
+4461 793f8025 set0 mark_ext_patch ,mark 
+4462 44e74019 bpatch patch19_6 ,mem_patch19 
+4463 20758000 rtn wake 
+4464 58004aed setarg hci_idle_dispatch 
+4465 60014290 store 2 ,mem_cb_idle_process 
+4466 580001a0 setarg uart_baud_115200 
+4467 600142ac store uart_baud_len ,mem_baud 
+
+hci_lpm_init:
+4468 793f8025 set0 mark_ext_patch ,mark 
+4469 44e7c019 bpatch patch19_7 ,mem_patch19 
+446a 20406a0d call init_filter_ram 
+446b 58001800 setarg mem_h5rx_buf 
+446c 60110054 hstore 2 ,core_uart_rsaddr 
+446d 58001bff setarg mem_h5rx_buf_end 
+446e 60110056 hstore 2 ,core_uart_readdr 
+446f 58001c00 setarg mem_h5tx_buf 
+4470 6011005a hstore 2 ,core_uart_tsaddr 
+4471 20404489 call hci_sel_init 
+
+hci_reinit:
+4472 793f8025 set0 mark_ext_patch ,mark 
+4473 44e8401a bpatch patch1a_0 ,mem_patch1a 
+4474 70806200 hjam 0x0 ,core_uart_ctrl 
+4475 70028b00 jam 0 ,mem_h5rx_ack 
+4476 70028c00 jam 0 ,mem_h5tx_ack 
+4477 70029400 jam 0 ,mem_h5tx_seq 
+4478 58001c00 setarg mem_h5tx_buf 
+4479 6001028f store 2 ,mem_h5tx_wptr 
+447a 6001028d store 2 ,mem_h5tx_rptr 
+447b 6011005e hstore 2 ,core_uart_twptr 
+447c 60110060 hstore 2 ,core_uart_trptrp 
+447d 58001800 setarg mem_h5rx_buf 
+447e 60110058 hstore 2 ,core_uart_rrptr 
+447f 60010289 store 2 ,mem_h5rx_rptr 
+
+hci_init_common:
+4480 793f8025 set0 mark_ext_patch ,mark 
+4481 44e8c01a bpatch patch1a_1 ,mem_patch1a 
+4482 68110050 hfetch 2 ,core_clkoff 
+4483 793ffe0f set0 clock_off_uart ,pdata 
+4484 60110050 hstore 2 ,core_clkoff 
+4485 20406909 call uart_set_baud_by_mem 
+4486 70804301 hjam uartclk_dpll ,core_uart_clksel 
+4487 70806281 hjam uart_ctrl_h4 ,core_uart_ctrl 
+4488 20204497 branch hci_init_queue_ack 
+
+hci_sel_init:
+4489 58001fff setarg mem_h5tx_buf_end 
+448a 6011005c hstore 2 ,core_uart_teaddr 
+448b 68108081 hfetch 1 ,core_gpio_sel1 
+448c 1fe1fe07 or_into 0x07 ,pdata 
+448d 60108081 hstore 1 ,core_gpio_sel1 
+448e 70029fff jam 0xff ,mem_ucode_id_local 
+448f 20600000 rtn 
+
+hci_reset_uart:
+4490 68110116 hfetch 2 ,core_uart_rwptr 
+4491 60110058 hstore 2 ,core_uart_rrptr 
+4492 7920001b set1 mark_h5_reset ,mark 
+4493 20600000 rtn 
+
+hci_check_bcsp_protocol:
+4494 68108062 hfetch 1 ,core_uart_ctrl 
+4495 2feffe03 isolate1 uart_ctrl_bit_slip_protocol ,pdata 
+4496 20600000 rtn 
+
+hci_init_queue_ack:
+4497 58004803 setarg mem_hci_acl_queue_start 
+4498 60010295 store 2 ,mem_hci_acl_queue_wptr 
+4499 60010297 store 2 ,mem_hci_acl_queue_rptr 
+449a 18000401 force param_acl_pktcnt ,temp 
+449b 9840fe00 iadd temp ,pdata 
+449c 9840fe00 iadd temp ,pdata 
+449d 1fe0fe02 increase 2 ,pdata 
+449e 60010299 store 2 ,mem_hci_acl_queue_end 
+449f 58000000 setarg 0x00 
+44a0 6000829c store 1 ,mem_hci_acl_cnt 
+44a1 6000829b store 1 ,mem_hci_acl_queue_wcnt 
+44a2 20600000 rtn 
+
+hci_rx_packet:
+44a3 793f8025 set0 mark_ext_patch ,mark 
+44a4 44e9401a bpatch patch1a_2 ,mem_patch1a 
+44a5 6810810c hfetch 1 ,core_uart_status 
+44a6 98002400 iforce regb 
+44a7 c301c4ad bbit0 uart_status_rx_fifo_empty ,hci_rx_packet_cont 
+44a8 68110112 hfetch 2 ,core_uart_rxitems 
+44a9 98002600 iforce regc 
+44aa d840044f arg 0x44f ,temp 
+44ab 98467c00 isub temp ,null 
+44ac 24628000 nrtn zero 
+
+hci_rx_packet_cont:
+44ad 68110058 hfetch 2 ,core_uart_rrptr 
+44ae 98000600 iforce contru 
+44af 20404494 call hci_check_bcsp_protocol 
+44b0 2020c2e5 branch hci_rx_bcsp ,true 
+44b1 202043e2 branch hci_rx_h4 
+
+hci_send_ack:
+44b2 20404494 call hci_check_bcsp_protocol 
+44b3 2020c371 branch bcsp_send_ack ,true 
+44b4 20600000 rtn 
+
+uart_send_byte:
+44b5 6818810c hfetcht 1 ,core_uart_status 
+44b6 284ffe06 isolate1 6 ,temp 
+44b7 2020c4b5 branch uart_send_byte ,true 
+44b8 60108015 hstore 1 ,core_uart_txd 
+44b9 20600000 rtn 
+
+process_acl_into_queue:
+44ba 68090299 fetcht 2 ,mem_hci_acl_queue_end 
+44bb 68010295 fetch 2 ,mem_hci_acl_queue_wptr 
+44bc 98000a00 iforce contw 
+44bd 18627e00 deposit contru 
+44be e0a10000 istore 2 ,contw 
+44bf 18a27e00 deposit contw 
+44c0 60010295 store 2 ,mem_hci_acl_queue_wptr 
+44c1 a841fe00 icompare 0xff ,temp 
+44c2 2040c4c7 call process_acl_into_queue_loop ,true 
+44c3 6800829b fetch 1 ,mem_hci_acl_queue_wcnt 
+44c4 1fe0fe01 increase 1 ,pdata 
+44c5 6000829b store 1 ,mem_hci_acl_queue_wcnt 
+44c6 20600000 rtn 
+
+process_acl_into_queue_loop:
+44c7 58004803 setarg mem_hci_acl_queue_start 
+44c8 60010295 store 2 ,mem_hci_acl_queue_wptr 
+44c9 20600000 rtn 
+
+process_acl_dequeue:
+44ca 6800829b fetch 1 ,mem_hci_acl_queue_wcnt 
+44cb 207a0000 rtn blank 
+44cc 68090299 fetcht 2 ,mem_hci_acl_queue_end 
+44cd 68010297 fetch 2 ,mem_hci_acl_queue_rptr 
+44ce 98000c00 iforce contr 
+44cf e8c10000 ifetch 2 ,contr 
+44d0 98000600 iforce contru 
+44d1 18c27e00 deposit contr 
+44d2 60010297 store 2 ,mem_hci_acl_queue_rptr 
+44d3 a841fe00 icompare 0xff ,temp 
+44d4 2040c4da call process_acl_dequeue_loop ,true 
+44d5 6800829b fetch 1 ,mem_hci_acl_queue_wcnt 
+44d6 1fe0ffff increase -1 ,pdata 
+44d7 6000829b store 1 ,mem_hci_acl_queue_wcnt 
+44d8 18007e01 force 1 ,pdata 
+44d9 20600000 rtn 
+
+process_acl_dequeue_loop:
+44da 58004803 setarg mem_hci_acl_queue_start 
+44db 60010297 store 2 ,mem_hci_acl_queue_rptr 
+44dc 20600000 rtn 
+
+process_acl:
+44dd 793f8025 set0 mark_ext_patch ,mark 
+44de 44e9c01a bpatch patch1a_3 ,mem_patch1a 
+44df 6800829b fetch 1 ,mem_hci_acl_queue_wcnt 
+44e0 1fe67c02 sub pdata ,2 ,null 
+44e1 202144e4 branch process_acl_queue_check_ok ,positive 
+44e2 78347c00 enable user 
+44e3 202044e6 branch process_send_acl 
+
+process_acl_queue_check_ok:
+44e4 204044b2 call hci_send_ack 
+44e5 204044ba call process_acl_into_queue 
+
+process_send_acl:
+44e6 793f8025 set0 mark_ext_patch ,mark 
+44e7 44ea401a bpatch patch1a_4 ,mem_patch1a 
+44e8 c6010000 rtnmark1 mark_tx_l2cap 
+44e9 204044ca call process_acl_dequeue 
+44ea 207a0000 rtn blank 
+44eb e8688000 ifetcht 1 ,contru 
+44ec 204032f7 call context_search_conn_handle2 
+44ed 24628000 nrtn zero 
+44ee e8608000 ifetch 1 ,contru 
+44ef 1ff1fe00 rshift4 pdata ,pdata 
+44f0 1fe17e03 and pdata ,0x3 ,pdata 
+44f1 243a44f3 nbranch process_send_acl_good_lch ,blank 
+44f2 79207e01 set1 1 ,pdata 
+
+process_send_acl_good_lch:
+44f3 79207e02 set1 2 ,pdata 
+44f4 60008090 store 1 ,mem_tx_lch 
+44f5 e8610000 ifetch 2 ,contru 
+44f6 60010091 store 2 ,mem_tx_len 
+44f7 18627e00 deposit contru 
+44f8 60010179 store 2 ,mem_txptr 
+44f9 79200002 set1 mark_tx_l2cap ,mark 
+44fa c584c502 bmark0 mark_context ,process_acl_ncontext 
+44fb 68008046 fetch 1 ,mem_conn_handle 
+44fc 98467c00 isub temp ,null 
+44fd 2422c502 nbranch process_acl_ncontext ,zero 
+44fe 6800804b fetch 1 ,mem_op 
+44ff 79207e06 set1 op_txl2cap ,pdata 
+4500 6000804b store 1 ,mem_op 
+4501 20600000 rtn 
+
+process_acl_ncontext:
+4502 1a20a21b increase coffset_op ,rega 
+4503 ea208000 ifetch 1 ,rega 
+4504 79207e06 set1 op_txl2cap ,pdata 
+4505 e2208000 istore 1 ,rega 
+4506 20600000 rtn 
+
+process_hci_cmd:
+4507 793f8025 set0 mark_ext_patch ,mark 
+4508 44eac01a bpatch patch1a_5 ,mem_patch1a 
+4509 6800c272 fetch 1 ,mem_hci_cmd 
+450a 203a450d branch process_hci_cmd_cont ,blank 
+450b 78347c00 enable user 
+450c 20600000 rtn 
+
+process_hci_cmd_cont:
+450d 204044b2 call hci_send_ack 
+450e e8610000 ifetch 2 ,contru 
+450f 98006000 iforce alarm 
+4510 98000e00 iforce queue 
+4511 e8608000 ifetch 1 ,contru 
+4512 98000400 iforce temp 
+4513 1e0b7e00 rshift2 alarm ,pdata 
+4514 1fecfe00 rshift8 pdata ,pdata 
+4515 c000c51e beq hci_ogf_link_control ,phci_grp_link_control 
+4516 c001453d beq hci_ogf_link_policy ,phci_grp_link_policy 
+4517 c001c54f beq hci_ogf_baseband ,phci_grp_baseband 
+4518 c0024569 beq hci_ogf_info ,phci_grp_info 
+4519 c002c572 beq hci_ogf_status ,phci_grp_status 
+451a c003457c beq hci_ogf_test ,phci_grp_test 
+451b c01fc585 beq hci_ogf_vendor_specific ,phci_grp_vendor_specific 
+451c c00445e0 beq hci_ogf_low_energy ,phci_grp_low_energy 
+451d 20600000 rtn 
+
+phci_grp_link_control:
+451e 793f8025 set0 mark_ext_patch ,mark 
+451f 44eb401a bpatch patch1a_6 ,mem_patch1a 
+4520 18e27e00 deposit queue 
+4521 c000c634 beq hci_inquiry ,phci_inquiry 
+4522 c0014643 beq hci_inquiry_cancel ,phci_inquiry_cancel 
+4523 c001c949 beq hci_periodic_inquiry_mode ,hci_normal_reply 
+4524 c0024949 beq hci_exit_periodic_inquiry_mode ,hci_normal_reply 
+4525 c002c645 beq hci_create_connection ,phci_create_connection 
+4526 c003464f beq hci_disconnect ,phci_disconnect 
+4527 c003c949 beq hci_add_sco_connection ,hci_normal_reply 
+4528 c004465d beq hci_create_connection_cancel ,phci_create_connection_cancel 
+4529 c004c739 beq hci_accept_connection ,phci_accept_connection 
+452a c005473f beq hci_reject_connection ,phci_reject_connection 
+452b c005c664 beq hci_link_key_request_reply ,phci_link_key_request_reply 
+452c c006466a beq hci_link_key_request_negative_reply ,phci_link_key_request_negative_reply 
+452d c006c66d beq hci_pin_code_request_reply ,phci_pin_code_request_reply 
+452e c0074675 beq hci_pin_code_request_negative_reply ,phci_pin_code_request_negative_reply 
+452f c007c743 beq hci_change_connection_packet_type ,phci_change_connection_packet_type 
+4530 c008c688 beq hci_authentication_requested ,phci_authentication_requested 
+4531 c009c68b beq hci_set_connection_encryption ,phci_set_connection_encryption 
+4532 c00ac949 beq hci_change_connection_link_key ,hci_normal_reply 
+4533 c00bc949 beq hci_master_link_key ,hci_normal_reply 
+4534 c00cc690 beq hci_remote_name_request ,phci_remote_name_request 
+4535 c00dc69b beq hci_read_remote_supported_features ,phci_read_remote_supported_features 
+4536 c00e4696 beq hci_read_remote_ext_features ,phci_read_remote_ext_features 
+4537 c00ec6a1 beq hci_read_remote_version_information ,phci_read_remote_version_information 
+4538 c00fc6a7 beq hci_read_clock_offset ,phci_read_clock_offset 
+4539 c01446ab beq hci_setup_sco_connection ,phci_setup_sco_connection 
+453a c014c6b6 beq hci_accept_sco_connection ,phci_accept_sco_connection 
+453b c015c67b beq hci_io_cap_request_reply ,phci_io_cap_request_reply 
+453c 2020474d branch phci_unknown_command 
+
+phci_grp_link_policy:
+453d 793f8025 set0 mark_ext_patch ,mark 
+453e 44ebc01a bpatch patch1a_7 ,mem_patch1a 
+453f 18e27e00 deposit queue 
+4540 c004c6cc beq hci_role_discovery ,phci_role_discovery 
+4541 c006c6d7 beq hci_write_link_policy_settings ,phci_write_link_policy_settings 
+4542 c000c949 beq hci_hold_mode ,hci_normal_reply 
+4543 c001c74f beq hci_sniff_mode ,phci_sniff_mode 
+4544 c002475a beq hci_exit_sniff_mode ,phci_exit_sniff_mode 
+4545 c002c949 beq hci_park_mode ,hci_normal_reply 
+4546 c0034949 beq hci_exit_park_mode ,hci_normal_reply 
+4547 c003c949 beq hci_qos_setup ,hci_normal_reply 
+4548 c005c760 beq hci_switch_role ,phci_switch_role 
+4549 c0064949 beq hci_read_link_policy_settings ,hci_normal_reply 
+454a c0074949 beq hci_read_default_link_policy_settings ,hci_normal_reply 
+454b c007c949 beq hci_write_default_link_policy_settings ,hci_normal_reply 
+454c c0084949 beq hci_flow_specification ,hci_normal_reply 
+454d c008c75f beq hci_sniff_subrating ,phci_sniff_subrating 
+454e 2020474d branch phci_unknown_command 
+
+phci_grp_baseband:
+454f 793f8025 set0 mark_ext_patch ,mark 
+4550 44ec401b bpatch patch1b_0 ,mem_patch1b 
+4551 18e27e00 deposit queue 
+4552 c000c725 beq hci_set_event_mask ,phci_set_event_mask 
+4553 c001c949 beq hci_reset ,hci_normal_reply 
+4554 c00946da beq hci_delete_stored_link_key ,phci_delete_stored_link_key 
+4555 c009c6c2 beq hci_write_local_name ,phci_change_local_name 
+4556 c00a46b8 beq hci_read_local_name ,phci_read_local_name 
+4557 c00c46db beq hci_write_page_timeout ,phci_write_page_timeout 
+4558 c00cc705 beq hci_read_scan_enable ,phci_read_scan_enable 
+4559 c00d46de beq hci_write_scan_enable ,phci_write_scan_enable 
+455a c00e46e1 beq hci_write_page_scan_activity ,phci_write_page_scan_activity 
+455b c00f46e6 beq hci_write_inquiry_scan_activity ,phci_write_inquiry_scan_activity 
+455c c01046ec beq hci_write_authentication_enable ,phci_write_authentication_enable 
+455d c01146eb beq hci_write_encryption_mode ,phci_write_encryption_mode 
+455e c01246ef beq hci_write_class_of_device ,phci_write_class_of_device 
+455f c0134949 beq hci_write_voice_setting ,hci_normal_reply 
+4560 c018c949 beq hci_set_controller_to_host_flow_control ,hci_normal_reply 
+4561 c019c949 beq hci_host_buffer_size ,hci_normal_reply 
+4562 c01ac62e beq hci_host_num_completed_packets ,phci_host_num_completed 
+4563 c021c949 beq hci_write_inquiry_scan_type ,hci_normal_reply 
+4564 c022c949 beq hci_write_inquiry_mode ,hci_normal_reply 
+4565 c023c949 beq hci_write_page_scan_type ,hci_normal_reply 
+4566 c028c6f2 beq hci_read_extended_inquiry_response ,phci_read_ext_inquiry_response 
+4567 c02b4701 beq hci_write_simple_pairing_mode ,phci_write_ssp_mode 
+4568 2020474d branch phci_unknown_command 
+
+phci_grp_info:
+4569 793f8025 set0 mark_ext_patch ,mark 
+456a 44ecc01b bpatch patch1b_1 ,mem_patch1b 
+456b 18e27e00 deposit queue 
+456c c000c70a beq hci_read_local_version_information ,phci_read_local_version_information 
+456d c001c70f beq hci_read_local_supported_features ,phci_read_local_supported_features 
+456e c0024714 beq hci_read_local_ext_features ,phci_read_local_ext_features 
+456f c002c71b beq hci_read_buffer_size ,phci_read_buffer_size 
+4570 c004c720 beq hci_read_bd_addr ,phci_read_bd_addr 
+4571 2020474d branch phci_unknown_command 
+
+phci_grp_status:
+4572 793f8025 set0 mark_ext_patch ,mark 
+4573 44ed401b bpatch patch1b_2 ,mem_patch1b 
+4574 18e27e00 deposit queue 
+4575 c000c949 beq hci_read_failed_contact_counter ,hci_normal_reply 
+4576 c0014726 beq hci_reset_failed_contact_counter ,phci_reset_failed_contact_counter 
+4577 c001c727 beq hci_get_link_quality ,phci_get_link_quality 
+4578 c002c72d beq hci_read_rssi ,phci_read_rssi 
+4579 c0034733 beq hci_read_afh_channel_map ,phci_read_afh_channel_map 
+457a c003c736 beq hci_read_bd_clock ,phci_read_bd_clock 
+457b 2020474d branch phci_unknown_command 
+
+phci_grp_test:
+457c 793f8025 set0 mark_ext_patch ,mark 
+457d 44edc01b bpatch patch1b_3 ,mem_patch1b 
+457e 18e27e00 deposit queue 
+457f c000c949 beq hci_read_loopback_mode ,hci_normal_reply 
+4580 c0014949 beq hci_write_loopback_mode ,hci_normal_reply 
+4581 c001c949 beq hci_enable_device_under_test_mode ,hci_normal_reply 
+4582 c0024949 beq hci_write_simple_pairing_debug_mode ,hci_normal_reply 
+4583 2020474d branch phci_unknown_command 
+4584 20600000 rtn 
+
+phci_grp_vendor_specific:
+4585 793f8025 set0 mark_ext_patch ,mark 
+4586 44ee401b bpatch patch1b_4 ,mem_patch1b 
+4587 18e27e00 deposit queue 
+4588 c0004949 beq hci_vendor_cmd_reset ,hci_normal_reply 
+4589 c000c59d beq hci_vendor_cmd_chipid ,phci_grp_vendor_chipid 
+458a c00145a2 beq hci_vendor_cmd_baud ,phci_grp_vendor_baud 
+458b c001c5a6 beq hci_vendor_cmd_patch ,phci_grp_vendor_patch 
+458c c00245b9 beq hci_vendor_cmd_patch_done ,phci_grp_vendor_done 
+458d c002c949 beq hci_vendor_cmd_echo ,hci_normal_reply 
+458e c00345ca beq hci_vendor_cmd_bdaddr ,phci_grp_vendor_bdaddr 
+458f c003c593 beq hci_vendor_cmd_enter_lpm ,phci_grp_vendor_enter_lpm 
+4590 c00845cd beq hci_vendor_cmd_mem ,phci_grp_vendor_mem 
+4591 c008c5d5 beq hci_vendor_cmd_eep ,phci_grp_vendor_eep 
+4592 20204949 branch hci_normal_reply 
+
+phci_grp_vendor_enter_lpm:
+4593 20404949 call hci_normal_reply 
+4594 20407f68 call wait_uarttx 
+4595 20406a68 call gpio_pu_uart_tx 
+
+hci_enter_lpm:
+4596 20403f5c call app_put_lpm_wake_lock 
+4597 20403f66 call app_l2cap_flow_control_enable 
+4598 20206a7d branch gpio_rx_config_input_with_pu 
+
+hci_exit_lpm:
+4599 7042ae00 jam hci_rx_ready ,mem_hci_lt_rx_state 
+459a 20403f5a call app_get_lpm_wake_lock 
+459b 20404468 call hci_lpm_init 
+459c 20203f68 branch app_l2cap_flow_control_disable 
+
+phci_grp_vendor_chipid:
+459d 2040496e call hci_get_cmd_complete_ptr 
+459e 68110000 hfetch 2 ,core_chipid 
+459f e1410000 istore 2 ,contwu 
+45a0 18007206 force 6 ,loopcnt 
+45a1 2020494c branch hci_command_complete 
+
+phci_grp_vendor_baud:
+45a2 e8610000 ifetch 2 ,contru 
+45a3 600142ac store 2 ,mem_baud 
+45a4 60110052 hstore 2 ,core_uart_baud 
+45a5 20600000 rtn 
+
+phci_grp_vendor_patch:
+45a6 e8608000 ifetch 1 ,contru 
+45a7 1fe20400 copy pdata ,temp 
+45a8 60108024 hstore 1 ,core_ucode_low 
+45a9 e8608000 ifetch 1 ,contru 
+45aa 98408400 iadd temp ,temp 
+45ab 79207e07 set1 7 ,pdata 
+45ac 60108023 hstore 1 ,core_ucode_ctrl 
+45ad e8608000 ifetch 1 ,contru 
+45ae 98408400 iadd temp ,temp 
+45af 1fe27200 copy pdata ,loopcnt 
+
+phci_grp_vendor_patch_loop:
+45b0 e8608000 ifetch 1 ,contru 
+45b1 60108025 hstore 1 ,core_ucode_data 
+45b2 98408400 iadd temp ,temp 
+45b3 c20045b0 loop phci_grp_vendor_patch_loop 
+45b4 184104ff and temp ,0xff ,temp 
+45b5 e8608000 ifetch 1 ,contru 
+45b6 98467c00 isub temp ,null 
+45b7 2422c5c8 nbranch phci_grp_vendor_patch_bad ,zero 
+45b8 20204949 branch hci_normal_reply 
+
+phci_grp_vendor_done:
+45b9 df200020 arg 0x20 ,loopcnt 
+45ba d8a04000 arg mem_patch00 ,contw 
+45bb d8400000 arg 0 ,temp 
+
+phci_grp_vendor_done_loop:
+45bc e8608000 ifetch 1 ,contru 
+45bd e0a08000 istore 1 ,contw 
+45be 98408400 iadd temp ,temp 
+45bf c20045bc loop phci_grp_vendor_done_loop 
+45c0 184104ff and temp ,0xff ,temp 
+45c1 e8608000 ifetch 1 ,contru 
+45c2 98467c00 isub temp ,null 
+45c3 2422c5c8 nbranch phci_grp_vendor_patch_bad ,zero 
+45c4 70802300 hjam 0 ,core_ucode_ctrl 
+45c5 20404949 call hci_normal_reply 
+45c6 2040440e call h4_rx_discard_packet 
+45c7 20203001 branch soft_reset 
+
+phci_grp_vendor_patch_bad:
+45c8 70802300 hjam 0 ,core_ucode_ctrl 
+45c9 20203000 branch start 
+
+phci_grp_vendor_bdaddr:
+45ca e8630000 ifetch 6 ,contru 
+45cb 60034140 store 6 ,mem_lap 
+45cc 20204949 branch hci_normal_reply 
+
+phci_grp_vendor_mem:
+45cd e8608000 ifetch 1 ,contru 
+45ce 600082c1 store 1 ,mem_hci_curr_len 
+45cf 1fe27200 copy pdata ,loopcnt 
+45d0 e8610000 ifetch 2 ,contru 
+45d1 600102c2 store 2 ,mem_hci_curr_target 
+45d2 1fe20a00 copy pdata ,contw 
+45d3 2040497c call uart_copy_rx_bytes 
+45d4 20204949 branch hci_normal_reply 
+
+phci_grp_vendor_eep:
+45d5 e8608000 ifetch 1 ,contru 
+45d6 600082c1 store 1 ,mem_hci_curr_len 
+45d7 1fe27200 copy pdata ,loopcnt 
+45d8 e8610000 ifetch 2 ,contru 
+45d9 600102c2 store 2 ,mem_hci_curr_target 
+45da d8a01000 arg mem_l2cap_rxbuff1 ,contw 
+45db 2040497c call uart_copy_rx_bytes 
+45dc 680882c1 fetcht 1 ,mem_hci_curr_len 
+45dd da201000 arg mem_l2cap_rxbuff1 ,rega 
+45de 680102c2 fetch 2 ,mem_hci_curr_target 
+45df 20206842 branch iicd_write_ota_data 
+
+phci_grp_low_energy:
+45e0 793f8025 set0 mark_ext_patch ,mark 
+45e1 44eec01b bpatch patch1b_5 ,mem_patch1b 
+45e2 18e27e00 deposit queue 
+45e3 c000c949 beq hci_le_set_event_mask ,hci_normal_reply 
+45e4 c00145f3 beq hci_le_read_buffer_size ,phci_le_read_buffer_size 
+45e5 c001c5f8 beq hci_le_read_local_supported_features ,phci_le_read_local_supported_features 
+45e6 c00345ff beq hci_le_set_advertising_parameters ,phci_le_set_adv_param 
+45e7 c0044603 beq hci_le_set_advertising_data ,phci_le_set_adv_data 
+45e8 c004c607 beq hci_le_set_scan_response_data ,phci_le_set_scan_response_data 
+45e9 c005460b beq hci_le_set_advertise_enable ,phci_le_set_adv_enable 
+45ea c005c60e beq hci_le_set_scan_parameters ,phci_le_set_scan_param 
+45eb c0064611 beq hci_le_set_scan_enable ,phci_le_set_scan_enable 
+45ec c006c614 beq hci_le_create_connection ,phci_le_create_conn 
+45ed c0074626 beq hci_le_create_connection_cancel ,phci_le_create_conn_cancel 
+45ee c00ac627 beq hci_le_read_channel_map ,phci_le_read_channel_map 
+45ef c00b4933 beq hci_le_read_remote_used_features ,hci_command_status 
+45f0 c009c949 beq hci_le_connection_update ,hci_normal_reply 
+45f1 2020474d branch phci_unknown_command 
+45f2 20600000 rtn 
+
+phci_le_read_buffer_size:
+45f3 2040496e call hci_get_cmd_complete_ptr 
+45f4 58000000 setarg 0 
+45f5 e1418000 istore 3 ,contwu 
+45f6 18007207 force 0x07 ,loopcnt 
+45f7 2020494c branch hci_command_complete 
+
+phci_le_read_local_supported_features:
+45f8 2040496e call hci_get_cmd_complete_ptr 
+45f9 58000001 setarg 1 
+45fa e1410000 istore 2 ,contwu 
+45fb 58000000 setarg 0 
+45fc e1430000 istore 6 ,contwu 
+45fd 1800720c force 0x0c ,loopcnt 
+45fe 2020494c branch hci_command_complete 
+
+phci_le_set_adv_param:
+45ff df20000f arg 15 ,loopcnt 
+4600 d8a044d7 arg mem_le_adv_param ,contw 
+4601 2040497c call uart_copy_rx_bytes 
+4602 20204949 branch hci_normal_reply 
+
+phci_le_set_adv_data:
+4603 df200020 arg 32 ,loopcnt 
+4604 d8a043d9 arg mem_le_adv_data_len ,contw 
+4605 2040497c call uart_copy_rx_bytes 
+4606 20204949 branch hci_normal_reply 
+
+phci_le_set_scan_response_data:
+4607 df200020 arg 32 ,loopcnt 
+4608 d8a043f9 arg mem_le_scan_data_len ,contw 
+4609 2040497c call uart_copy_rx_bytes 
+460a 20204949 branch hci_normal_reply 
+
+phci_le_set_adv_enable:
+460b e8608000 ifetch 1 ,contru 
+460c 6000c3d8 store 1 ,mem_le_adv_enable 
+460d 20204949 branch hci_normal_reply 
+
+phci_le_set_scan_param:
+460e e8638000 ifetch 7 ,contru 
+460f 6003c4f6 store 7 ,mem_le_scan_params 
+4610 20204949 branch hci_normal_reply 
+
+phci_le_set_scan_enable:
+4611 e8608000 ifetch 1 ,contru 
+4612 6000c3d2 store 1 ,mem_le_scan_enable 
+4613 20204949 branch hci_normal_reply 
+
+phci_le_create_conn:
+4614 e8620000 ifetch 4 ,contru 
+4615 600243d3 store 4 ,mem_le_scan_interval 
+4616 e8608000 ifetch 1 ,contru 
+4617 6000c4f8 store 1 ,mem_le_scan_filter_policy 
+4618 df200014 arg 20 ,loopcnt 
+4619 d8a044e6 arg mem_le_conn_param ,contw 
+461a 2040497c call uart_copy_rx_bytes 
+461b 7043d201 jam 1 ,mem_le_scan_enable 
+461c 6800c4ed fetch 1 ,mem_le_conn_own_addr_type 
+461d 6000c4f7 store 1 ,mem_le_scan_own_addr_type 
+461e 680144f0 fetch 2 ,mem_le_conn_interval_max 
+461f 600143d0 store 2 ,mem_le_conn_interval 
+4620 680144f2 fetch 2 ,mem_le_conn_latency 
+4621 600103ed store 2 ,mem_le_slave_latency 
+4622 680144f4 fetch 2 ,mem_le_conn_superto 
+4623 600103ef store 2 ,mem_le_superto 
+4624 7042721b jam hci_cmd_le_create_conn ,mem_hci_cmd 
+4625 20204933 branch hci_command_status 
+
+phci_le_create_conn_cancel:
+4626 20204949 branch hci_normal_reply 
+
+phci_le_read_channel_map:
+4627 2040496e call hci_get_cmd_complete_ptr 
+4628 e8610000 ifetch 2 ,contru 
+4629 e1410000 istore 2 ,contwu 
+462a 581fffff setarg 0x1fffff 
+462b e1428000 istore 5 ,contwu 
+462c 1800720b force 0x0b ,loopcnt 
+462d 2020494c branch hci_command_complete 
+
+phci_host_num_completed:
+462e e8618000 ifetch 3 ,contru 
+462f e8698000 ifetcht 3 ,contru 
+4630 68014800 fetch 2 ,mem_acl_credits 
+4631 9840fe00 iadd temp ,pdata 
+4632 60014800 store 2 ,mem_acl_credits 
+4633 20600000 rtn 
+
+phci_inquiry:
+4634 e8618000 ifetch 3 ,contru 
+4635 6001c147 store 3 ,mem_glap 
+
+do_at_inquiry0:
+4636 70427201 jam hci_cmd_inquiry ,mem_hci_cmd 
+4637 e8608000 ifetch 1 ,contru 
+4638 d8400640 arg 1600 ,temp 
+4639 984ffe00 imul32 temp ,pdata 
+463a d840ffff arg 0xffff ,temp 
+463b 98467c00 isub temp ,null 
+463c 2421463e nbranch phci_inquiry_nowrap ,positive 
+463d 18427e00 deposit temp 
+
+phci_inquiry_nowrap:
+463e 18000e02 force inquiry_length_timer ,queue 
+463f 20407e4c call timer_init 
+4640 6800c2a4 fetch 1 ,mem_at_using_flag 
+4641 c280428c bbit1 at_flag_inq ,at_rev_end 
+4642 20204933 branch hci_command_status 
+
+phci_inquiry_cancel:
+4643 70427202 jam hci_cmd_inquiry_cancel ,mem_hci_cmd 
+4644 20204949 branch hci_normal_reply 
+
+phci_create_connection:
+4645 20404763 call phci_read_plap 
+4646 e8610000 ifetch 2 ,contru 
+4647 60010275 store 2 ,mem_packet_type 
+4648 e8610000 ifetch 2 ,contru 
+4649 600080f3 store 1 ,mem_page_mode 
+464a 20404776 call phci_read_clock 
+464b e8608000 ifetch 1 ,contru 
+464c 6000c802 store 1 ,mem_allow_switch 
+464d 70427205 jam hci_cmd_create_conn ,mem_hci_cmd 
+464e 20204933 branch hci_command_status 
+
+phci_disconnect:
+464f 70427206 jam hci_cmd_disconn ,mem_hci_cmd 
+4650 e8610000 ifetch 2 ,contru 
+4651 6000c273 store 1 ,mem_hci_conn_handle 
+4652 e8608000 ifetch 1 ,contru 
+4653 60008446 store 1 ,mem_disconn_reason_send 
+4654 7002c016 jam hci_error_connection_terminated_by_local_host ,mem_hci_disconn_reason 
+4655 6800c273 fetch 1 ,mem_hci_conn_handle 
+4656 680880ad fetcht 1 ,mem_sco_handle 
+4657 98467c00 isub temp ,null 
+4658 2422c933 nbranch hci_command_status ,zero 
+4659 70427211 jam hci_cmd_disconn_sco ,mem_hci_cmd 
+465a 680080ac fetch 1 ,mem_sco_asso_handle 
+465b 6000c273 store 1 ,mem_hci_conn_handle 
+465c 20204933 branch hci_command_status 
+
+phci_create_connection_cancel:
+465d 2040496e call hci_get_cmd_complete_ptr 
+465e 20404965 call hci_write_plap 
+465f 1800720a force 10 ,loopcnt 
+4660 2040494c call hci_command_complete 
+4661 7042721a jam hci_cmd_detach ,mem_hci_cmd 
+4662 18000402 force hci_error_no_connection ,temp 
+4663 20204826 branch hci_send_connection_error 
+
+phci_link_key_request_reply:
+4664 20404763 call phci_read_plap 
+4665 d8a04262 arg mem_link_key ,contw 
+4666 18007210 force 16 ,loopcnt 
+4667 2040497c call uart_copy_rx_bytes 
+4668 7042720b jam hci_cmd_linkkey ,mem_hci_cmd 
+4669 20204677 branch phci_pin_code_reply 
+
+phci_link_key_request_negative_reply:
+466a 20404763 call phci_read_plap 
+466b 7042720c jam hci_cmd_nokey ,mem_hci_cmd 
+466c 20204677 branch phci_pin_code_reply 
+
+phci_pin_code_request_reply:
+466d 20404763 call phci_read_plap 
+466e e8608000 ifetch 1 ,contru 
+466f 6000854f store 1 ,mem_pin_length 
+4670 98007200 iforce loopcnt 
+4671 d8a00550 arg mem_pin ,contw 
+4672 2040497c call uart_copy_rx_bytes 
+4673 70427209 jam hci_cmd_pair ,mem_hci_cmd 
+4674 20204677 branch phci_pin_code_reply 
+
+phci_pin_code_request_negative_reply:
+4675 20404763 call phci_read_plap 
+4676 7042720a jam hci_cmd_nopair ,mem_hci_cmd 
+
+phci_pin_code_reply:
+4677 2040496e call hci_get_cmd_complete_ptr 
+4678 20404965 call hci_write_plap 
+4679 1800720a force 10 ,loopcnt 
+467a 2020494c branch hci_command_complete 
+
+phci_io_cap_request_reply:
+467b 18608606 increase 6 ,contru 
+467c e8618000 ifetch 3 ,contru 
+467d 600187e6 store 3 ,mem_sp_iocap_local 
+467e 680087db fetch 1 ,mem_master_sp_state 
+467f c009c683 beq sp_master_stat_start_done ,phci_io_cap_request_reply_master 
+4680 c001c683 beq sp_stat_key_send ,phci_io_cap_request_reply_master 
+4681 70427216 jam hci_cmd_io_cap ,mem_hci_cmd 
+4682 20204684 branch phci_io_cap_request_reply_commom 
+
+phci_io_cap_request_reply_master:
+4683 7007dd01 jam sp_flag_commit ,mem_master_sp_flag 
+
+phci_io_cap_request_reply_commom:
+4684 2040496e call hci_get_cmd_complete_ptr 
+4685 20404965 call hci_write_plap 
+4686 1800720a force 10 ,loopcnt 
+4687 2020494c branch hci_command_complete 
+
+phci_authentication_requested:
+4688 20404766 call phci_read_handle 
+4689 7042720d jam hci_cmd_auth ,mem_hci_cmd 
+468a 20204933 branch hci_command_status 
+
+phci_set_connection_encryption:
+468b 20404766 call phci_read_handle 
+468c e8608000 ifetch 1 ,contru 
+468d 1fe0fe0e increase hci_cmd_stopencrypt ,pdata 
+468e 6000c272 store 1 ,mem_hci_cmd 
+468f 20204933 branch hci_command_status 
+
+phci_remote_name_request:
+4690 20404763 call phci_read_plap 
+4691 e8610000 ifetch 2 ,contru 
+4692 600080f3 store 1 ,mem_page_mode 
+4693 20404776 call phci_read_clock 
+4694 70427203 jam hci_cmd_remote_name_req ,mem_hci_cmd 
+4695 20204933 branch hci_command_status 
+
+phci_read_remote_ext_features:
+4696 e8610000 ifetch 2 ,contru 
+4697 e8608000 ifetch 1 ,contru 
+4698 60008449 store 1 ,mem_ext_features_page 
+4699 70427215 jam hci_cmd_remote_ext_features_req ,mem_hci_cmd 
+469a 20204933 branch hci_command_status 
+
+phci_read_remote_supported_features:
+469b 68008046 fetch 1 ,mem_conn_handle 
+469c 18002202 force hci_error_no_connection ,rega 
+469d 203a493d branch hci_command_status_err ,blank 
+469e 20404766 call phci_read_handle 
+469f 70427204 jam hci_cmd_remote_feature_req ,mem_hci_cmd 
+46a0 20204933 branch hci_command_status 
+
+phci_read_remote_version_information:
+46a1 68008046 fetch 1 ,mem_conn_handle 
+46a2 18002202 force hci_error_no_connection ,rega 
+46a3 203a493d branch hci_command_status_err ,blank 
+46a4 20404766 call phci_read_handle 
+46a5 70427214 jam hci_cmd_remote_version_req ,mem_hci_cmd 
+46a6 20204933 branch hci_command_status 
+
+phci_read_clock_offset:
+46a7 2040476e call phci_status_reply_temp 
+46a8 18000e1c force hci_event_read_clock_offset_complete ,queue 
+46a9 18007205 force 5 ,loopcnt 
+46aa 20204952 branch hci_send_event 
+
+phci_setup_sco_connection:
+46ab 20404766 call phci_read_handle 
+46ac 1860860a increase 10 ,contru 
+46ad e8610000 ifetch 2 ,contru 
+46ae 60010281 store 2 ,mem_voice_setting 
+46af e8608000 ifetch 1 ,contru 
+46b0 60008283 store 1 ,mem_retransmission_effort 
+46b1 e8610000 ifetch 2 ,contru 
+46b2 60010284 store 2 ,mem_sco_ptype 
+46b3 7000ab02 jam 2 ,mem_air_mode 
+46b4 70427210 jam hci_cmd_setup_sco ,mem_hci_cmd 
+46b5 20204933 branch hci_command_status 
+
+phci_accept_sco_connection:
+46b6 7042721c jam hci_cmd_accept_sco_conn ,mem_hci_cmd 
+46b7 20204933 branch hci_command_status 
+
+phci_read_local_name:
+46b8 2040496e call hci_get_cmd_complete_ptr 
+46b9 d8c04703 arg mem_local_name ,contr 
+46ba 18c672ff sub contr ,0xff ,loopcnt 
+46bb 20404976 call uart_copy_tx_bytes 
+46bc 18007e00 force 0 ,pdata 
+46bd 18c67303 sub contr ,mem_local_name ,loopcnt 
+46be 1f20f2f8 increase 0xf8 ,loopcnt 
+46bf 20404982 call uart_write_bytes 
+46c0 180072fc force 0xfc ,loopcnt 
+46c1 2020494c branch hci_command_complete 
+
+phci_change_local_name:
+46c2 d8a04703 arg mem_local_name ,contw 
+46c3 18a672ff sub contw ,0xff ,loopcnt 
+
+phci_change_local_name_loop:
+46c4 e8608000 ifetch 1 ,contru 
+46c5 e0a08000 istore 1 ,contw 
+46c6 203a46c8 branch phci_write_local_name_end ,blank 
+46c7 c20046c4 loop phci_change_local_name_loop 
+
+phci_write_local_name_end:
+46c8 18a67f03 sub contw ,mem_local_name ,pdata 
+46c9 1fe67e00 sub pdata ,0 ,pdata 
+46ca 6000c702 store 1 ,mem_local_name_length 
+46cb 20204949 branch hci_normal_reply 
+
+phci_role_discovery:
+46cc 2040496e call hci_get_cmd_complete_ptr 
+46cd 2040496b call hci_write_handle 
+46ce 18007e00 force 0 ,pdata 
+46cf 7d34fe00 nsetflag master ,0 ,pdata 
+46d0 e1408000 istore 1 ,contwu 
+46d1 18007207 force 7 ,loopcnt 
+46d2 de000809 arg 0x809 ,alarm 
+46d3 2040494c call hci_command_complete 
+46d4 202049bc branch cmd_exit 
+46d5 70427217 jam hci_cmd_role_discovery ,mem_hci_cmd 
+46d6 20600000 rtn 
+
+phci_write_link_policy_settings:
+46d7 20404769 call phci_copy_handle 
+46d8 18007206 force 6 ,loopcnt 
+46d9 2020494c branch hci_command_complete 
+
+phci_delete_stored_link_key:
+46da 20204949 branch hci_normal_reply 
+
+phci_write_page_timeout:
+46db e8610000 ifetch 2 ,contru 
+46dc 60014159 store 2 ,mem_page_to 
+46dd 20204949 branch hci_normal_reply 
+
+phci_write_scan_enable:
+46de e8608000 ifetch 1 ,contru 
+46df 6000c133 store 1 ,mem_scan_mode 
+46e0 20204949 branch hci_normal_reply 
+
+phci_write_page_scan_activity:
+46e1 e8610000 ifetch 2 ,contru 
+46e2 60014153 store 2 ,mem_pscan_interval 
+46e3 e8610000 ifetch 2 ,contru 
+46e4 60014151 store 2 ,mem_pscan_window 
+46e5 20204949 branch hci_normal_reply 
+
+phci_write_inquiry_scan_activity:
+46e6 e8610000 ifetch 2 ,contru 
+46e7 6001414f store 2 ,mem_iscan_interval 
+46e8 e8610000 ifetch 2 ,contru 
+46e9 6001414d store 2 ,mem_iscan_window 
+46ea 20204949 branch hci_normal_reply 
+
+phci_write_encryption_mode:
+46eb 20204949 branch hci_normal_reply 
+
+phci_write_authentication_enable:
+46ec e8608000 ifetch 1 ,contru 
+46ed 60008453 store 1 ,mem_auth_enable 
+46ee 20204949 branch hci_normal_reply 
+
+phci_write_class_of_device:
+46ef e8618000 ifetch 3 ,contru 
+46f0 6001c14a store 3 ,mem_class 
+46f1 20204949 branch hci_normal_reply 
+
+phci_read_ext_inquiry_response:
+46f2 18427e00 deposit temp 
+46f3 203a4949 branch hci_normal_reply ,blank 
+46f4 20404970 call hci_get_payload_ptr 
+46f5 18007e01 force 0x1 ,pdata 
+46f6 e1408000 istore 1 ,contwu 
+46f7 1e027e00 deposit alarm 
+46f8 e1410000 istore 2 ,contwu 
+46f9 18007e12 force hci_error_invalid_hci_command_parameters ,pdata 
+46fa e1408000 istore 1 ,contwu 
+46fb 58000000 setarg 0 
+46fc 1f20f2f1 increase 0xf1 ,loopcnt 
+46fd 20404982 call uart_write_bytes 
+46fe 18000e0e force hci_event_command_complete ,queue 
+46ff 180072f5 force 0xf5 ,loopcnt 
+4700 20204952 branch hci_send_event 
+
+phci_write_ssp_mode:
+4701 e8608000 ifetch 1 ,contru 
+4702 245a6003 ncall ssp_enable ,blank 
+4703 205a6009 call ssp_disable ,blank 
+4704 20204949 branch hci_normal_reply 
+
+phci_read_scan_enable:
+4705 2040496e call hci_get_cmd_complete_ptr 
+4706 6800c133 fetch 1 ,mem_scan_mode 
+4707 e1408000 istore 1 ,contwu 
+4708 18007205 force 5 ,loopcnt 
+4709 2020494c branch hci_command_complete 
+
+phci_read_local_version_information:
+470a 2040496e call hci_get_cmd_complete_ptr 
+470b 68040080 fetch 8 ,mem_hci_version 
+470c e1440000 istore 8 ,contwu 
+470d 1800720c force 12 ,loopcnt 
+470e 2020494c branch hci_command_complete 
+
+phci_read_local_supported_features:
+470f 2040496e call hci_get_cmd_complete_ptr 
+4710 68044138 fetch 8 ,mem_features 
+4711 e1440000 istore 8 ,contwu 
+4712 1800720c force 12 ,loopcnt 
+4713 2020494c branch hci_command_complete 
+
+phci_read_local_ext_features:
+4714 2040496e call hci_get_cmd_complete_ptr 
+4715 58000101 setarg 0x0101 
+4716 e1410000 istore 2 ,contwu 
+4717 58000001 setarg 0x01 
+4718 e1440000 istore 8 ,contwu 
+4719 1800720e force 14 ,loopcnt 
+471a 2020494c branch hci_command_complete 
+
+phci_read_buffer_size:
+471b 2040496e call hci_get_cmd_complete_ptr 
+471c 68038083 fetch 7 ,mem_acl_pktlen 
+471d e1438000 istore 7 ,contwu 
+471e 1800720b force 11 ,loopcnt 
+471f 2020494c branch hci_command_complete 
+
+phci_read_bd_addr:
+4720 2040496e call hci_get_cmd_complete_ptr 
+4721 68034140 fetch 6 ,mem_lap 
+4722 e1430000 istore 6 ,contwu 
+4723 1800720a force 10 ,loopcnt 
+4724 2020494c branch hci_command_complete 
+
+phci_set_event_mask:
+4725 20204949 branch hci_normal_reply 
+
+phci_reset_failed_contact_counter:
+4726 20204949 branch hci_normal_reply 
+
+phci_get_link_quality:
+4727 2040496e call hci_get_cmd_complete_ptr 
+4728 2040496b call hci_write_handle 
+4729 580000ff setarg 0xff 
+472a e1408000 istore 1 ,contwu 
+472b 18007207 force 7 ,loopcnt 
+472c 2020494c branch hci_command_complete 
+
+phci_read_rssi:
+472d 2040496e call hci_get_cmd_complete_ptr 
+472e 2040496b call hci_write_handle 
+472f 58000000 setarg 0x00 
+4730 e1408000 istore 1 ,contwu 
+4731 18007207 force 7 ,loopcnt 
+4732 2020494c branch hci_command_complete 
+
+phci_read_afh_channel_map:
+4733 793f8025 set0 mark_ext_patch ,mark 
+4734 44ef401b bpatch patch1b_6 ,mem_patch1b 
+4735 20204949 branch hci_normal_reply 
+
+phci_read_bd_clock:
+4736 793f8025 set0 mark_ext_patch ,mark 
+4737 44efc01b bpatch patch1b_7 ,mem_patch1b 
+4738 20204949 branch hci_normal_reply 
+
+phci_accept_connection:
+4739 20404763 call phci_read_plap 
+473a 70427207 jam hci_cmd_accept_conn ,mem_hci_cmd 
+473b e8608000 ifetch 1 ,contru 
+473c c000c933 beq 1 ,hci_command_status 
+473d 70427219 jam hci_cmd_accept_with_switch ,mem_hci_cmd 
+473e 20204933 branch hci_command_status 
+
+phci_reject_connection:
+473f 20204739 branch phci_accept_connection 
+4740 20404763 call phci_read_plap 
+4741 70427208 jam hci_cmd_reject_conn ,mem_hci_cmd 
+4742 20204949 branch hci_normal_reply 
+
+phci_change_connection_packet_type:
+4743 20404933 call hci_command_status 
+4744 20404970 call hci_get_payload_ptr 
+4745 58000000 setarg 0 
+4746 e1408000 istore 1 ,contwu 
+4747 e8620000 ifetch 4 ,contru 
+4748 e1420000 istore 4 ,contwu 
+4749 18007208 force 8 ,loopcnt 
+474a d8e0001d arg hci_event_connection_packet_type_changed ,queue 
+474b df200005 arg 5 ,loopcnt 
+474c 20204952 branch hci_send_event 
+
+phci_unknown_command:
+474d 18002201 force hci_error_unknown_hci_command ,rega 
+474e 2020493d branch hci_command_status_err 
+
+phci_sniff_mode:
+474f 20404766 call phci_read_handle 
+4750 e8610000 ifetch 2 ,contru 
+4751 60014280 store 2 ,mem_sniff_param_interval 
+4752 e8610000 ifetch 2 ,contru 
+4753 6001027b store 2 ,mem_hci_sniff_min_interval 
+4754 e8610000 ifetch 2 ,contru 
+4755 60014282 store 2 ,mem_sniff_param_attempt 
+4756 e8610000 ifetch 2 ,contru 
+4757 60014284 store 2 ,mem_sniff_param_timeout 
+4758 70427212 jam hci_cmd_in_sniff ,mem_hci_cmd 
+4759 20204933 branch hci_command_status 
+
+phci_exit_sniff_mode:
+475a 20404766 call phci_read_handle 
+475b 2040475d call exit_sniff 
+475c 20204933 branch hci_command_status 
+
+exit_sniff:
+475d 70427213 jam hci_cmd_exit_sniff ,mem_hci_cmd 
+475e 20600000 rtn 
+
+phci_sniff_subrating:
+475f 20204949 branch hci_normal_reply 
+
+phci_switch_role:
+4760 20404763 call phci_read_plap 
+4761 70427218 jam hci_cmd_role_switch ,mem_hci_cmd 
+4762 20204933 branch hci_command_status 
+
+phci_read_plap:
+4763 e8630000 ifetch 6 ,contru 
+4764 60034274 store 6 ,mem_hci_plap 
+4765 20600000 rtn 
+
+phci_read_handle:
+4766 e8610000 ifetch 2 ,contru 
+4767 6000c273 store 1 ,mem_hci_conn_handle 
+4768 20600000 rtn 
+
+phci_copy_handle:
+4769 20404766 call phci_read_handle 
+476a 2040496e call hci_get_cmd_complete_ptr 
+476b 6800c273 fetch 1 ,mem_hci_conn_handle 
+476c e1410000 istore 2 ,contwu 
+476d 20600000 rtn 
+
+phci_status_reply_temp:
+476e 20404766 call phci_read_handle 
+476f 20404933 call hci_command_status 
+4770 20404970 call hci_get_payload_ptr 
+4771 18007e00 force 0 ,pdata 
+4772 e1408000 istore 1 ,contwu 
+4773 6800c273 fetch 1 ,mem_hci_conn_handle 
+4774 e1410000 istore 2 ,contwu 
+4775 20600000 rtn 
+
+phci_read_clock:
+4776 e8610000 ifetch 2 ,contru 
+4777 9c40fe00 iadd clkn_bt ,pdata 
+4778 1fe17ffc and_into 0x1fc ,pdata 
+4779 600200f4 store 4 ,mem_page_clk 
+477a 20600000 rtn 
+
+hci_inquiry_reply:
+477b 793f8025 set0 mark_ext_patch ,mark 
+477c 44f0401c bpatch patch1c_0 ,mem_patch1c 
+477d 68008274 fetch 1 ,mem_rp_packets 
+477e 1fe67c02 sub pdata ,2 ,null 
+477f 24610000 nrtn positive 
+4780 680b0182 fetcht 6 ,extm_lap 
+4781 204032fc call context_search_plap2 
+4782 20628000 rtn zero 
+4783 20404972 call hci_get_packet_ptr 
+4784 58010f22 setarg 0x10f22 
+4785 e1418000 istore 3 ,contwu 
+4786 68030182 fetch 6 ,extm_lap 
+4787 e1430000 istore 6 ,contwu 
+4788 6800817d fetch 1 ,extm_fhs_misc 
+4789 1fe20400 copy pdata ,temp 
+478a 1fe97e00 rshift3 pdata ,pdata 
+478b 1fe97e00 rshift3 pdata ,pdata 
+478c e1408000 istore 1 ,contwu 
+478d 18427e00 copy temp ,pdata 
+478e 1fe17e30 and pdata ,0x30 ,pdata 
+478f 1fe97e00 rshift3 pdata ,pdata 
+4790 1fe37e00 rshift pdata ,pdata 
+4791 e1408000 istore 1 ,contwu 
+4792 6801817f fetch 3 ,extm_class 
+4793 e1418000 istore 3 ,contwu 
+4794 6802016f fetch 4 ,mem_clke_bt 
+4795 9c467e00 isub clkn_bt ,pdata 
+4796 e1410000 istore 2 ,contwu 
+4797 580000c8 setarg 0xc8 
+4798 e1408000 istore 1 ,contwu 
+4799 1800720f force 15 ,loopcnt 
+479a 20204959 branch hci_send_event_raw 
+
+hci_inquiry_reply_eir:
+479b 793f8025 set0 mark_ext_patch ,mark 
+479c 44f0c01c bpatch patch1c_1 ,mem_patch1c 
+479d 1800041c force 540 ,temp 
+479e 68010291 fetch 2 ,mem_h5tx_free 
+479f 98467c00 isub temp ,null 
+47a0 24610000 nrtn positive 
+47a1 68098286 fetcht 3 ,mem_extm_uap_restore 
+47a2 68018185 fetch 3 ,extm_uap 
+47a3 98467c00 isub temp ,null 
+47a4 20628000 rtn zero 
+47a5 207a0000 rtn blank 
+47a6 60018286 store 3 ,mem_extm_uap_restore 
+47a7 68008274 fetch 1 ,mem_rp_packets 
+47a8 1fe67c02 sub pdata ,2 ,null 
+47a9 24610000 nrtn positive 
+47aa 680b0182 fetcht 6 ,extm_lap 
+47ab 204032fc call context_search_plap2 
+47ac 20628000 rtn zero 
+47ad 204047cc call hci_eir_reply 
+47ae 1800040f force 15 ,temp 
+47af 680084df fetch 1 ,mem_rxbuf + 1 
+47b0 c084c7c5 bne 0x09 ,hci_inquiry_reply_eir_end 
+47b1 680084de fetch 1 ,mem_rxbuf 
+47b2 203a47c5 branch hci_inquiry_reply_eir_end ,blank 
+47b3 98007200 iforce loopcnt 
+47b4 e1408000 istore 1 ,contwu 
+47b5 98408400 iadd temp ,temp 
+47b6 18408401 increase 1 ,temp 
+47b7 d8c004df arg mem_rxbuf + 1 ,contr 
+
+hci_inquiry_name_loop:
+47b8 e8c08000 ifetch 1 ,contr 
+47b9 e1408000 istore 1 ,contwu 
+47ba c20047b8 loop hci_inquiry_name_loop 
+
+hci_inquiry_other_rtn_loop:
+47bb e8c08000 ifetch 1 ,contr 
+47bc 203a47c5 branch hci_inquiry_reply_eir_end ,blank 
+47bd 98007200 iforce loopcnt 
+47be e1408000 istore 1 ,contwu 
+47bf 98408400 iadd temp ,temp 
+47c0 18408401 increase 1 ,temp 
+
+hci_inquiry_other_loop:
+47c1 e8c08000 ifetch 1 ,contr 
+47c2 e1408000 istore 1 ,contwu 
+47c3 c20047c1 loop hci_inquiry_other_loop 
+47c4 202047bb branch hci_inquiry_other_rtn_loop 
+
+hci_inquiry_reply_eir_end:
+47c5 18467eff sub temp ,0xff ,pdata 
+47c6 98007200 iforce loopcnt 
+
+hci_inquiry_fill_zero:
+47c7 58000000 setarg 0x00 
+47c8 e1408000 istore 1 ,contwu 
+47c9 c20047c7 loop hci_inquiry_fill_zero 
+47ca 180072ff force 0xff ,loopcnt 
+47cb 20204959 branch hci_send_event_raw 
+
+hci_eir_reply:
+47cc 793f8025 set0 mark_ext_patch ,mark 
+47cd 44f1401c bpatch patch1c_2 ,mem_patch1c 
+47ce 20404972 call hci_get_packet_ptr 
+47cf 5801ff2f setarg 0x1ff2f 
+47d0 e1418000 istore 3 ,contwu 
+47d1 68030182 fetch 6 ,extm_lap 
+47d2 e1430000 istore 6 ,contwu 
+47d3 6800817d fetch 1 ,extm_fhs_misc 
+47d4 1fe20400 copy pdata ,temp 
+47d5 1fe97e00 rshift3 pdata ,pdata 
+47d6 1fe97e00 rshift3 pdata ,pdata 
+47d7 e1408000 istore 1 ,contwu 
+47d8 18427e00 copy temp ,pdata 
+47d9 1fe17e30 and pdata ,0x30 ,pdata 
+47da 1fe97e00 rshift3 pdata ,pdata 
+47db 1fe37e00 rshift pdata ,pdata 
+47dc e1408000 istore 1 ,contwu 
+47dd 6801817f fetch 3 ,extm_class 
+47de e1418000 istore 3 ,contwu 
+47df 6802016f fetch 4 ,mem_clke_bt 
+47e0 9c467e00 isub clkn_bt ,pdata 
+47e1 e1410000 istore 2 ,contwu 
+47e2 580000c8 setarg 0xc8 
+47e3 e1408000 istore 1 ,contwu 
+47e4 20600000 rtn 
+
+hci_send_remote_features:
+47e5 793f8025 set0 mark_ext_patch ,mark 
+47e6 44f1c01c bpatch patch1c_3 ,mem_patch1c 
+47e7 6800c132 fetch 1 ,mem_device_option 
+47e8 c1808000 rtnne dvc_op_hci 
+47e9 20404968 call hci_write_handle3 
+47ea e14c0000 istoret 8 ,contwu 
+47eb 1800720b force 11 ,loopcnt 
+47ec 18000e0b force hci_event_read_remote_features_complete ,queue 
+47ed 20204952 branch hci_send_event 
+
+hci_send_remote_ext_features_notification:
+47ee 793f8025 set0 mark_ext_patch ,mark 
+47ef 44f2401c bpatch patch1c_4 ,mem_patch1c 
+47f0 6800c132 fetch 1 ,mem_device_option 
+47f1 c1808000 rtnne dvc_op_hci 
+47f2 20404970 call hci_get_payload_ptr 
+47f3 68030040 fetch 6 ,mem_plap 
+47f4 e1430000 istore 6 ,contwu 
+47f5 e14c0000 istoret 8 ,contwu 
+47f6 1800720e force 14 ,loopcnt 
+47f7 18000e3d force hci_event_remote_host_supported_features_notification ,queue 
+47f8 20204952 branch hci_send_event 
+
+hci_send_remote_ext_features_event:
+47f9 793f8025 set0 mark_ext_patch ,mark 
+47fa 44f2c01c bpatch patch1c_5 ,mem_patch1c 
+47fb 6800c132 fetch 1 ,mem_device_option 
+47fc c1808000 rtnne dvc_op_hci 
+47fd 20404968 call hci_write_handle3 
+47fe 68008449 fetch 1 ,mem_ext_features_page 
+47ff e1408000 istore 1 ,contwu 
+4800 58000001 setarg 1 
+4801 e1408000 istore 1 ,contwu 
+4802 e14c0000 istoret 8 ,contwu 
+4803 1800720d force 13 ,loopcnt 
+4804 18000e23 force hci_event_read_remote_ext_features_complete ,queue 
+4805 20204952 branch hci_send_event 
+
+hci_send_version_information:
+4806 793f8025 set0 mark_ext_patch ,mark 
+4807 44f3401c bpatch patch1c_6 ,mem_patch1c 
+4808 6800c132 fetch 1 ,mem_device_option 
+4809 c1808000 rtnne dvc_op_hci 
+480a 20404968 call hci_write_handle3 
+480b e14a8000 istoret 5 ,contwu 
+480c 18007208 force 8 ,loopcnt 
+480d 18000e0c force hci_event_read_remote_version_information_complete ,queue 
+480e 20204952 branch hci_send_event 
+
+hci_send_io_cap_response_event:
+480f 793f8025 set0 mark_ext_patch ,mark 
+4810 44f3c01c bpatch patch1c_7 ,mem_patch1c 
+4811 6800c132 fetch 1 ,mem_device_option 
+4812 c1808000 rtnne dvc_op_hci 
+4813 20404970 call hci_get_payload_ptr 
+4814 68030040 fetch 6 ,mem_plap 
+4815 e1430000 istore 6 ,contwu 
+4816 680187e9 fetch 3 ,mem_sp_iocap_remote 
+4817 e1418000 istore 3 ,contwu 
+4818 18007209 force 9 ,loopcnt 
+4819 18000e32 force hci_event_io_cap_response ,queue 
+481a 20204952 branch hci_send_event 
+
+hci_send_io_cap_req_event:
+481b 793f8025 set0 mark_ext_patch ,mark 
+481c 44f4401d bpatch patch1d_0 ,mem_patch1d 
+481d 6800c132 fetch 1 ,mem_device_option 
+481e c1808000 rtnne dvc_op_hci 
+481f 20404970 call hci_get_payload_ptr 
+4820 68030040 fetch 6 ,mem_plap 
+4821 e1430000 istore 6 ,contwu 
+4822 18007206 force 6 ,loopcnt 
+4823 18000e31 force hci_event_io_cap_req ,queue 
+4824 20204952 branch hci_send_event 
+
+hci_send_connection_complete:
+4825 18000400 force 0 ,temp 
+
+hci_send_connection_error:
+4826 793f8025 set0 mark_ext_patch ,mark 
+4827 44f4c01d bpatch patch1d_1 ,mem_patch1d 
+4828 6800c132 fetch 1 ,mem_device_option 
+4829 c1808000 rtnne dvc_op_hci 
+482a 18000e03 force hci_event_connection_complete ,queue 
+482b 70480005 jam 5 ,mem_acl_credits 
+482c 20404970 call hci_get_payload_ptr 
+482d e1488000 istoret 1 ,contwu 
+482e 2040496b call hci_write_handle 
+482f 20404965 call hci_write_plap 
+4830 18007e01 force 1 ,pdata 
+4831 e1408000 istore 1 ,contwu 
+4832 18007e00 force 0 ,pdata 
+4833 6808804c fetcht 1 ,mem_state_map 
+4834 284ffe02 isolate1 smap_encryption ,temp 
+4835 7920fe00 setflag true ,0 ,pdata 
+4836 e1408000 istore 1 ,contwu 
+4837 1800720b force 11 ,loopcnt 
+4838 20204952 branch hci_send_event 
+
+hci_send_conn_req_event:
+4839 793f8025 set0 mark_ext_patch ,mark 
+483a 44f5401d bpatch patch1d_2 ,mem_patch1d 
+483b 6800c132 fetch 1 ,mem_device_option 
+483c c1808000 rtnne dvc_op_hci 
+483d 18000e04 force hci_event_connection_request ,queue 
+483e 20404970 call hci_get_payload_ptr 
+483f 20404965 call hci_write_plap 
+4840 6801817f fetch 3 ,extm_class 
+4841 e1418000 istore 3 ,contwu 
+4842 e1488000 istoret 1 ,contwu 
+4843 1800720a force 10 ,loopcnt 
+4844 20204952 branch hci_send_event 
+
+hci_send_encryption_change:
+4845 793f8025 set0 mark_ext_patch ,mark 
+4846 44f5c01d bpatch patch1d_3 ,mem_patch1d 
+4847 6800c132 fetch 1 ,mem_device_option 
+4848 c1808000 rtnne dvc_op_hci 
+4849 20404968 call hci_write_handle3 
+484a 18007e00 force 0 ,pdata 
+484b 6808804c fetcht 1 ,mem_state_map 
+484c 284ffe02 isolate1 smap_encryption ,temp 
+484d 7920fe00 setflag true ,0 ,pdata 
+484e e1408000 istore 1 ,contwu 
+484f 18000e08 force hci_event_encryption_change_complete ,queue 
+4850 18007204 force 4 ,loopcnt 
+4851 20204952 branch hci_send_event 
+
+hci_send_linkkey_notification:
+4852 793f8025 set0 mark_ext_patch ,mark 
+4853 44f6401d bpatch patch1d_4 ,mem_patch1d 
+4854 6800c132 fetch 1 ,mem_device_option 
+4855 c1808000 rtnne dvc_op_hci 
+4856 18000e18 force hci_event_link_key_notification ,queue 
+4857 20404970 call hci_get_payload_ptr 
+4858 20404965 call hci_write_plap 
+4859 d8c04262 arg mem_link_key ,contr 
+485a 18007210 force 16 ,loopcnt 
+485b 20404976 call uart_copy_tx_bytes 
+485c 18007e05 force 0x05 ,pdata 
+485d e1408000 istore 1 ,contwu 
+485e 18007217 force 0x17 ,loopcnt 
+485f 20204952 branch hci_send_event 
+
+hci_send_user_confirmation_req:
+4860 6800c132 fetch 1 ,mem_device_option 
+4861 c1808000 rtnne dvc_op_hci 
+4862 18000e33 force hci_event_user_confirmation_request ,queue 
+4863 20404970 call hci_get_payload_ptr 
+4864 20404965 call hci_write_plap 
+4865 680207ec fetch 4 ,mem_sp_gkey 
+4866 e1420000 istore 4 ,contwu 
+4867 1800720a force 0xa ,loopcnt 
+4868 20204952 branch hci_send_event 
+
+hci_send_ssp_complete:
+4869 6800c132 fetch 1 ,mem_device_option 
+486a c1808000 rtnne dvc_op_hci 
+486b 18000e36 force hci_event_simple_pairing_complete ,queue 
+486c 20404970 call hci_get_payload_ptr 
+486d 58000000 setarg 0 
+486e e1408000 istore 1 ,contwu 
+486f 20404965 call hci_write_plap 
+4870 18007207 force 0x7 ,loopcnt 
+4871 20204952 branch hci_send_event 
+
+hci_send_linkkey_req:
+4872 793f8025 set0 mark_ext_patch ,mark 
+4873 44f6c01d bpatch patch1d_5 ,mem_patch1d 
+4874 18000e17 force hci_event_link_key_request ,queue 
+
+hci_send_sec_req:
+4875 6800c132 fetch 1 ,mem_device_option 
+4876 c1808000 rtnne dvc_op_hci 
+4877 20404970 call hci_get_payload_ptr 
+4878 20404965 call hci_write_plap 
+4879 18007206 force 6 ,loopcnt 
+487a 20204952 branch hci_send_event 
+
+hci_send_pincode_req:
+487b 6800c132 fetch 1 ,mem_device_option 
+487c c1808000 rtnne dvc_op_hci 
+487d 18000e16 force hci_event_pin_code_request ,queue 
+487e 20204875 branch hci_send_sec_req 
+
+hci_send_role_change:
+487f 6800c132 fetch 1 ,mem_device_option 
+4880 c1808000 rtnne dvc_op_hci 
+4881 18000e12 force hci_event_role_change ,queue 
+4882 20404970 call hci_get_payload_ptr 
+4883 18007e00 force 0 ,pdata 
+4884 e1408000 istore 1 ,contwu 
+4885 20404965 call hci_write_plap 
+4886 e1488000 istoret 1 ,contwu 
+4887 18007208 force 8 ,loopcnt 
+4888 20204952 branch hci_send_event 
+
+hci_send_role_change_err:
+4889 6800c132 fetch 1 ,mem_device_option 
+488a c1808000 rtnne dvc_op_hci 
+488b 18000400 force 0 ,temp 
+488c 2434c88e nbranch hci_send_role_change_err_slave ,master 
+488d 18000401 force 1 ,temp 
+
+hci_send_role_change_err_slave:
+488e 6800c132 fetch 1 ,mem_device_option 
+488f c1808000 rtnne dvc_op_hci 
+4890 18000e12 force hci_event_role_change ,queue 
+4891 20404970 call hci_get_payload_ptr 
+4892 18007e35 force 0x35 ,pdata 
+4893 e1408000 istore 1 ,contwu 
+4894 20404965 call hci_write_plap 
+4895 e1488000 istoret 1 ,contwu 
+4896 18007208 force 8 ,loopcnt 
+4897 20204952 branch hci_send_event 
+
+hci_send_name:
+4898 793f8025 set0 mark_ext_patch ,mark 
+4899 44f7401d bpatch patch1d_6 ,mem_patch1d 
+489a 6800c132 fetch 1 ,mem_device_option 
+489b c1808000 rtnne dvc_op_hci 
+489c 20404972 call hci_get_packet_ptr 
+489d 5800ff07 setarg 0xff07 
+489e e1410000 istore 2 ,contwu 
+489f 18e27e00 deposit queue 
+48a0 e1408000 istore 1 ,contwu 
+48a1 20404965 call hci_write_plap 
+48a2 d8c00103 arg mem_tmp_buffer ,contr 
+48a3 180072f8 force 248 ,loopcnt 
+
+hci_read_remote_name_loop:
+48a4 e8c08000 ifetch 1 ,contr 
+48a5 e1408000 istore 1 ,contwu 
+48a6 c20048a4 loop hci_read_remote_name_loop 
+48a7 180072ff force 0xff ,loopcnt 
+48a8 20204959 branch hci_send_event_raw 
+
+hci_send_num_complete_packets:
+48a9 793f8025 set0 mark_ext_patch ,mark 
+48aa 44f7c01d bpatch patch1d_7 ,mem_patch1d 
+48ab 6800c132 fetch 1 ,mem_device_option 
+48ac c1808000 rtnne dvc_op_hci 
+48ad 6810810e hfetch 1 ,core_uart_txitems 
+48ae 247a0000 nrtn blank 
+48af 6800804b fetch 1 ,mem_op 
+48b0 c4038000 rtnbit0 op_pkt_comp 
+48b1 793ffe07 set0 op_pkt_comp ,pdata 
+48b2 6000804b store 1 ,mem_op 
+48b3 20404970 call hci_get_payload_ptr 
+48b4 18007e01 force 1 ,pdata 
+48b5 e1408000 istore 1 ,contwu 
+48b6 2040496b call hci_write_handle 
+48b7 18007e01 force 1 ,pdata 
+48b8 e1410000 istore 2 ,contwu 
+48b9 18000e13 force hci_event_num_completed_packets ,queue 
+48ba 18007205 force 5 ,loopcnt 
+48bb 20204952 branch hci_send_event 
+
+hci_send_auth_complete:
+48bc 793f8025 set0 mark_ext_patch ,mark 
+48bd 44f8401e bpatch patch1e_0 ,mem_patch1e 
+48be 6800c132 fetch 1 ,mem_device_option 
+48bf c1808000 rtnne dvc_op_hci 
+48c0 20404968 call hci_write_handle3 
+48c1 18000e06 force hci_event_authentication_complete ,queue 
+48c2 18007203 force 3 ,loopcnt 
+48c3 20204952 branch hci_send_event 
+
+hci_send_disconn_complete:
+48c4 793f8025 set0 mark_ext_patch ,mark 
+48c5 44f8c01e bpatch patch1e_1 ,mem_patch1e 
+48c6 6800c132 fetch 1 ,mem_device_option 
+48c7 c1808000 rtnne dvc_op_hci 
+48c8 20404970 call hci_get_payload_ptr 
+48c9 18007e00 force 0 ,pdata 
+48ca e1408000 istore 1 ,contwu 
+48cb e1490000 istoret 2 ,contwu 
+48cc 680082c0 fetch 1 ,mem_hci_disconn_reason 
+48cd e1408000 istore 1 ,contwu 
+48ce 18000e05 force hci_event_disconnection_complete ,queue 
+48cf 18007204 force 4 ,loopcnt 
+48d0 20204952 branch hci_send_event 
+
+hci_send_le_adv_report_event:
+48d1 793f8025 set0 mark_ext_patch ,mark 
+48d2 44f9401e bpatch patch1e_2 ,mem_patch1e 
+48d3 6800c132 fetch 1 ,mem_device_option 
+48d4 c1808000 rtnne dvc_op_hci ,pdata 
+48d5 20404970 call hci_get_payload_ptr 
+48d6 58000102 setarg 0x0102 
+48d7 e1410000 istore 2 ,contwu 
+48d8 68088340 fetcht 1 ,mem_le_rxbuf 
+48d9 18417e0f and temp ,0xf ,pdata 
+48da e1408000 istore 1 ,contwu 
+48db 1a227e00 copy rega ,pdata 
+48dc e1408000 istore 1 ,contwu 
+48dd 68088341 fetcht 1 ,mem_le_rxbuf + 1 
+48de 184085fa increase -6 ,temp 
+48df 68030342 fetch 6 ,mem_le_rxbuf + 2 
+48e0 e1430000 istore 6 ,contwu 
+48e1 e1488000 istoret 1 ,contwu 
+48e2 18427200 copy temp ,loopcnt 
+48e3 20404976 call uart_copy_tx_bytes 
+48e4 5800007f setarg 127 
+48e5 e1408000 istore 1 ,contwu 
+48e6 18427200 copy temp ,loopcnt 
+48e7 1f20f20c add loopcnt ,12 ,loopcnt 
+48e8 18000e3e force hci_event_le_meta_event ,queue 
+48e9 20204952 branch hci_send_event 
+
+hci_send_le_conn_complete:
+48ea 793f8025 set0 mark_ext_patch ,mark 
+48eb 44f9c01e bpatch patch1e_3 ,mem_patch1e 
+48ec 6800c132 fetch 1 ,mem_device_option 
+48ed c1808000 rtnne dvc_op_hci ,pdata 
+48ee 20404970 call hci_get_payload_ptr 
+48ef 58000001 setarg hci_le_subevent_conn_complete 
+48f0 e1408000 istore 1 ,contwu 
+48f1 e1488000 istoret 1 ,contwu 
+48f2 680083d6 fetch 1 ,mem_le_conn_handle 
+48f3 e1410000 istore 2 ,contwu 
+48f4 680083c1 fetch 1 ,mem_le_mode 
+48f5 1fe37e00 rshift pdata ,pdata 
+48f6 79407e00 setflip 0 ,pdata 
+48f7 e1408000 istore 1 ,contwu 
+48f8 6800c4e6 fetch 1 ,mem_le_conn_peer_addr_type 
+48f9 e1408000 istore 1 ,contwu 
+48fa 680303d0 fetch 6 ,mem_le_plap 
+48fb e1430000 istore 6 ,contwu 
+48fc 680143d0 fetch 2 ,mem_le_conn_interval 
+48fd e1410000 istore 2 ,contwu 
+48fe 680103ed fetch 2 ,mem_le_slave_latency 
+48ff e1410000 istore 2 ,contwu 
+4900 680103ef fetch 2 ,mem_le_superto 
+4901 e1410000 istore 2 ,contwu 
+4902 680083f8 fetch 1 ,mem_le_peer_sca 
+4903 e1408000 istore 1 ,contwu 
+4904 18000e3e force hci_event_le_meta_event ,queue 
+4905 df200013 arg 19 ,loopcnt 
+4906 20204952 branch hci_send_event 
+
+hci_send_mode_change:
+4907 793f8025 set0 mark_ext_patch ,mark 
+4908 44fa401e bpatch patch1e_4 ,mem_patch1e 
+4909 6800c132 fetch 1 ,mem_device_option 
+490a c1808000 rtnne dvc_op_hci 
+490b 20404970 call hci_get_payload_ptr 
+490c 20404968 call hci_write_handle3 
+490d e1488000 istoret 1 ,contwu 
+490e 68010032 fetch 2 ,mem_tsniff 
+490f 1fe37e00 rshift pdata ,pdata 
+4910 e1410000 istore 2 ,contwu 
+4911 18007206 force 6 ,loopcnt 
+4912 18000e14 force hci_event_mode_change ,queue 
+4913 20204952 branch hci_send_event 
+
+hci_send_sco_complete:
+4914 793f8025 set0 mark_ext_patch ,mark 
+4915 44fac01e bpatch patch1e_5 ,mem_patch1e 
+4916 6800c132 fetch 1 ,mem_device_option 
+4917 c1808000 rtnne dvc_op_hci 
+4918 793f8025 set0 mark_ext_patch ,mark 
+4919 44fb401e bpatch patch1e_6 ,mem_patch1e 
+491a 20404970 call hci_get_payload_ptr 
+491b e1488000 istoret 1 ,contwu 
+491c 58000e00 setarg 0xe00 
+491d e1410000 istore 2 ,contwu 
+491e 20404965 call hci_write_plap 
+491f 18007e00 force 0 ,pdata 
+4920 c503c924 bmark1 mark_esco ,hci_send_esco 
+4921 18007e00 force 0 ,pdata 
+4922 e1438000 istore 7 ,contwu 
+4923 2020492c branch hci_send_sco_cont 
+
+hci_send_esco:
+4924 6800c132 fetch 1 ,mem_device_option 
+4925 c1808000 rtnne dvc_op_hci 
+4926 58020602 setarg 0x020602 
+4927 e1418000 istore 3 ,contwu 
+4928 5800001e setarg 30 
+4929 e1410000 istore 2 ,contwu 
+492a 5800001e setarg 30 
+492b e1410000 istore 2 ,contwu 
+
+hci_send_sco_cont:
+492c 6800c132 fetch 1 ,mem_device_option 
+492d c1808000 rtnne dvc_op_hci 
+492e 680080ab fetch 1 ,mem_air_mode 
+492f e1408000 istore 1 ,contwu 
+4930 18000e2c force hci_event_sco_connection_complete ,queue 
+4931 18007211 force 17 ,loopcnt 
+4932 20204952 branch hci_send_event 
+
+hci_command_status:
+4933 793f8025 set0 mark_ext_patch ,mark 
+4934 44fbc01e bpatch patch1e_7 ,mem_patch1e 
+4935 20404970 call hci_get_payload_ptr 
+4936 58000100 setarg 0x100 
+4937 e1410000 istore 2 ,contwu 
+4938 1e027e00 deposit alarm 
+4939 e1410000 istore 2 ,contwu 
+493a 18007204 force 4 ,loopcnt 
+493b 18000e0f force hci_event_command_status ,queue 
+493c 20204952 branch hci_send_event 
+
+hci_command_status_err:
+493d 793f8025 set0 mark_ext_patch ,mark 
+493e 44fc401f bpatch patch1f_0 ,mem_patch1f 
+493f 20404970 call hci_get_payload_ptr 
+4940 1a227e00 deposit rega 
+4941 e1408000 istore 1 ,contwu 
+4942 58000001 setarg 0x01 
+4943 e1408000 istore 1 ,contwu 
+4944 1e027e00 deposit alarm 
+4945 e1410000 istore 2 ,contwu 
+4946 18007204 force 4 ,loopcnt 
+4947 18000e0f force hci_event_command_status ,queue 
+4948 20204952 branch hci_send_event 
+
+hci_normal_reply:
+4949 793f8025 set0 mark_ext_patch ,mark 
+494a 44fcc01f bpatch patch1f_1 ,mem_patch1f 
+494b 18007204 force 4 ,loopcnt 
+
+hci_command_complete:
+494c 20404970 call hci_get_payload_ptr 
+494d 18007e01 force 0x1 ,pdata 
+494e e1408000 istore 1 ,contwu 
+494f 1e027e00 deposit alarm 
+4950 e1418000 istore 3 ,contwu 
+4951 18000e0e force hci_event_command_complete ,queue 
+
+hci_send_event:
+4952 793f8025 set0 mark_ext_patch ,mark 
+4953 44fd401f bpatch patch1f_2 ,mem_patch1f 
+4954 20404972 call hci_get_packet_ptr 
+4955 18e27e00 deposit queue 
+4956 e1408000 istore 1 ,contwu 
+4957 1f227e00 deposit loopcnt 
+4958 e1408000 istore 1 ,contwu 
+
+hci_send_event_raw:
+4959 79200013 set1 mark_h5tx_rp ,mark 
+495a 18000e05 force 5 ,queue 
+495b 1f20f202 increase 2 ,loopcnt 
+
+hci_send_packet:
+495c 20404494 call hci_check_bcsp_protocol 
+495d 2020c378 branch bcsp_send_packet ,true 
+495e 20204422 branch h4_send_packet_event 
+
+hci_send_commu_ready_event:
+495f 18000eff force hci_event_vendor_specific ,queue 
+4960 20404970 call hci_get_payload_ptr 
+4961 58000001 setarg hci_vendor_event_commu_ready 
+4962 e1408000 istore 1 ,contwu 
+4963 18007201 force 1 ,loopcnt 
+4964 20204952 branch hci_send_event 
+
+hci_write_plap:
+4965 68030040 fetch 6 ,mem_plap 
+4966 e1430000 istore 6 ,contwu 
+4967 20600000 rtn 
+
+hci_write_handle3:
+4968 20404970 call hci_get_payload_ptr 
+4969 18007e00 force 0 ,pdata 
+496a e1408000 istore 1 ,contwu 
+
+hci_write_handle:
+496b 68008046 fetch 1 ,mem_conn_handle 
+496c e1410000 istore 2 ,contwu 
+496d 20600000 rtn 
+
+hci_get_cmd_complete_ptr:
+496e 1800140c force 12 ,contwu 
+496f 20204973 branch hci_get_tx_ptr 
+
+hci_get_payload_ptr:
+4970 18001408 force 8 ,contwu 
+4971 20204973 branch hci_get_tx_ptr 
+
+hci_get_packet_ptr:
+4972 18001406 force 6 ,contwu 
+
+hci_get_tx_ptr:
+4973 20404494 call hci_check_bcsp_protocol 
+4974 2020c3de branch bcsp_get_tx_ptr ,true 
+4975 2020441e branch h4_get_tx_ptr 
+
+uart_copy_tx_bytes:
+4976 1f227e00 deposit loopcnt 
+4977 207a0000 rtn blank 
+
+uart_copy_tx_bytes_loop:
+4978 e8c08000 ifetch 1 ,contr 
+4979 e1408000 istore 1 ,contwu 
+497a c2004978 loop uart_copy_tx_bytes_loop 
+497b 20600000 rtn 
+
+uart_copy_rx_bytes:
+497c 1f227e00 deposit loopcnt 
+497d 207a0000 rtn blank 
+
+uart_copy_rx_bytes_loop:
+497e e8608000 ifetch 1 ,contru 
+497f e0a08000 istore 1 ,contw 
+4980 c200497e loop uart_copy_rx_bytes_loop 
+4981 20600000 rtn 
+
+uart_write_bytes:
+4982 e1408000 istore 1 ,contwu 
+4983 1fecfe00 rshift8 pdata ,pdata 
+4984 c2004982 loop uart_write_bytes 
+4985 20600000 rtn 
+
+calc_tx_crc16:
+4986 7827fc00 pulse crc16 
+4987 7824fc00 enable enable_crc 
+
+crcloop:
+4988 e9408000 ifetch 1 ,contwu 
+4989 08008008 inject bucket ,8 
+498a c2004988 loop crcloop 
+498b 78247c00 enable enable_parity 
+498c 08008010 inject bucket ,16 
+498d 78447c00 disable enable_parity 
+498e 7844fc00 disable enable_crc 
+498f 7847fc00 disable crc16 
+4990 1ff0fe00 byteswap pdata ,pdata 
+4991 20600000 rtn 
+
+stop_loop:
+4992 20000001 nop 1 
+4993 70820301 hjam 1 ,0x8203 
+4994 20204992 branch stop_loop 
+
+process_cmd:
+4995 793f8025 set0 mark_ext_patch ,mark 
+4996 44fdc01f bpatch patch1f_3 ,mem_patch1f 
+4997 6800c272 fetch 1 ,mem_hci_cmd 
+4998 207a0000 rtn blank 
+4999 6800807c fetch 1 ,mem_lmo_opcode2 
+499a 247a0000 nrtn blank 
+499b 204049be call cmd_check_plap 
+499c 2422c9aa nbranch process_cmd_conn_handle ,zero 
+499d 6800c272 fetch 1 ,mem_hci_cmd 
+499e c001c9d4 beq hci_cmd_remote_name_req ,cmd_namereq 
+499f c004c9da beq hci_cmd_pair ,cmd_pair 
+49a0 c00549e6 beq hci_cmd_nopair ,cmd_nopair 
+49a1 c005c9ed beq hci_cmd_linkkey ,cmd_has_key 
+49a2 c00649f7 beq hci_cmd_nokey ,cmd_no_key 
+49a3 c0044a32 beq hci_cmd_reject_conn ,cmd_disconn 
+49a4 c00c49cc beq hci_cmd_role_switch ,cmd_role_switch 
+49a5 c003c9c6 beq hci_cmd_accept_conn ,cmd_accept_conn 
+49a6 c00cc9ca beq hci_cmd_accept_with_switch ,cmd_accept_with_switch 
+49a7 c00d4a53 beq hci_cmd_detach ,cmd_detach 
+49a8 c0094a19 beq hci_cmd_in_sniff ,cmd_in_sniff 
+49a9 c009ca28 beq hci_cmd_exit_sniff ,cmd_exit_sniff 
+
+process_cmd_conn_handle:
+49aa 793f8025 set0 mark_ext_patch ,mark 
+49ab 44fe401f bpatch patch1f_4 ,mem_patch1f 
+49ac 204049c2 call cmd_check_handle 
+49ad 247a0000 nrtn blank 
+49ae 6800c272 fetch 1 ,mem_hci_cmd 
+49af c006ca01 beq hci_cmd_auth ,cmd_auth 
+49b0 c007ca0b beq hci_cmd_startencrypt ,cmd_start_encrypt 
+49b1 c0074a0d beq hci_cmd_stopencrypt ,cmd_stop_encrypt 
+49b2 c0084a2a beq hci_cmd_setup_sco ,cmd_setup_sco 
+49b3 c008ca34 beq hci_cmd_disconn_sco ,cmd_disconn_sco 
+49b4 c00e4a38 beq hci_cmd_accept_sco_conn ,cmd_accept_sco_conn 
+49b5 c0024a0f beq hci_cmd_remote_feature_req ,cmd_feature_req 
+49b6 c00aca14 beq hci_cmd_remote_ext_features_req ,cmd_ext_feature_req 
+49b7 c00a4a17 beq hci_cmd_remote_version_req ,cmd_version_req 
+49b8 c00bca48 beq hci_cmd_role_discovery ,cmd_role_discovery 
+49b9 c00b4a51 beq hci_cmd_io_cap ,cmd_io_cap 
+49ba c1830000 rtnne hci_cmd_disconn 
+49bb 20405ed5 call lmp_disconnect 
+
+cmd_exit:
+49bc 70427200 jam 0 ,mem_hci_cmd 
+49bd 20600000 rtn 
+
+cmd_check_plap:
+49be 68034274 fetch 6 ,mem_hci_plap 
+49bf 680b0040 fetcht 6 ,mem_plap 
+49c0 98467c00 isub temp ,null 
+49c1 20600000 rtn 
+
+cmd_check_handle:
+49c2 6800c273 fetch 1 ,mem_hci_conn_handle 
+49c3 68088046 fetcht 1 ,mem_conn_handle 
+49c4 98467e00 isub temp ,pdata 
+49c5 20600000 rtn 
+
+cmd_accept_conn:
+49c6 70007c03 jam lmp_accepted ,mem_lmo_opcode2 
+49c7 70007d33 jam lmp_host_connection_req ,mem_lmi_opcode2 
+49c8 20406212 call tid_set_reply 
+49c9 202049bc branch cmd_exit 
+
+cmd_accept_with_switch:
+49ca 2034ca38 branch cmd_accept_sco_conn ,master 
+49cb 79200004 set1 mark_accept_switch ,mark 
+
+cmd_role_switch:
+49cc 70007c34 jam lmp_slot_offset ,mem_lmo_opcode2 
+49cd 79200003 set1 mark_switch_initiated ,mark 
+49ce 2434c9bc nbranch cmd_exit ,master 
+49cf 70007c13 jam lmp_switch_req ,mem_lmo_opcode2 
+49d0 68008177 fetch 1 ,mem_connection_options 
+49d1 793ffe02 set0 connection_switch ,pdata 
+49d2 60008177 store 1 ,mem_connection_options 
+49d3 202049bc branch cmd_exit 
+
+cmd_namereq:
+49d4 70007c01 jam lmp_name_req ,mem_lmo_opcode2 
+49d5 70005300 jam 0 ,mem_name_offset 
+49d6 202049bc branch cmd_exit 
+
+cmd_ssp:
+49d7 7007dd01 jam sp_flag_commit ,mem_master_sp_flag 
+49d8 7007db12 jam sp_master_stat_start_skip ,mem_master_sp_state 
+49d9 202049bc branch cmd_exit 
+
+cmd_pair:
+49da 6800804b fetch 1 ,mem_op 
+49db c28149df bbit1 op_inrand_req ,cmd_pair_passive 
+49dc 20406209 call tid_initiate 
+49dd 70007c08 jam lmp_in_rand ,mem_lmo_opcode2 
+49de 202049bc branch cmd_exit 
+
+cmd_pair_passive:
+49df 793ffe02 set0 op_inrand_req ,pdata 
+49e0 6000804b store 1 ,mem_op 
+49e1 20405ed0 call lmp_accept_inrand 
+49e2 58000000 setarg 0 
+49e3 7934fe01 setflag master ,smap_lmptid ,pdata 
+49e4 6000807f store 1 ,mem_lmo_tid2 
+49e5 202049bc branch cmd_exit 
+
+cmd_nopair:
+49e6 70044618 jam pairing_not_allowed ,mem_disconn_reason_send 
+49e7 70007c07 jam lmp_detach ,mem_lmo_opcode2 
+49e8 68008030 fetch 1 ,mem_state 
+49e9 c28049bc bbit1 state_inconn ,cmd_exit 
+49ea 18000418 force hci_error_pairing_not_allowed ,temp 
+49eb 20404826 call hci_send_connection_error 
+49ec 202049bc branch cmd_exit 
+
+cmd_has_key:
+49ed 2040321f call linkkey_set 
+49ee 6800804b fetch 1 ,mem_op 
+49ef c280ca08 bbit1 op_auth_req ,cmd_send_aurand 
+49f0 c28049f3 bbit1 op_send_sres ,cmd_send_sres 
+49f1 c28149df bbit1 op_inrand_req ,cmd_pair_passive 
+49f2 202049bc branch cmd_exit 
+
+cmd_send_sres:
+49f3 793ffe00 set0 op_send_sres ,pdata 
+49f4 6000804b store 1 ,mem_op 
+49f5 70007c0c jam lmp_sres ,mem_lmo_opcode2 
+49f6 202049bc branch cmd_exit 
+
+cmd_no_key:
+49f7 6800804b fetch 1 ,mem_op 
+49f8 c28049fb bbit1 op_send_sres ,cmd_no_key_reject 
+49f9 2040487b call hci_send_pincode_req 
+49fa 202049bc branch cmd_exit 
+
+cmd_no_key_reject:
+49fb 793ffe00 set0 op_send_sres ,pdata 
+49fc 6000804b store 1 ,mem_op 
+49fd 70007c04 jam lmp_not_accepted ,mem_lmo_opcode2 
+49fe 70007d0b jam lmp_au_rand ,mem_lmi_opcode2 
+49ff 70007e06 jam key_missing ,mem_lmo_reason2 
+4a00 202049bc branch cmd_exit 
+
+cmd_auth:
+4a01 6800804b fetch 1 ,mem_op 
+4a02 79207e01 set1 op_auth_req ,pdata 
+4a03 6000804b store 1 ,mem_op 
+4a04 68008030 fetch 1 ,mem_state 
+4a05 c283ca08 bbit1 state_linkkey ,cmd_auth_sendaurand 
+4a06 20404872 call hci_send_linkkey_req 
+4a07 202049bc branch cmd_exit 
+
+cmd_send_aurand:
+
+cmd_auth_sendaurand:
+4a08 20406209 call tid_initiate 
+4a09 70007c0b jam lmp_au_rand ,mem_lmo_opcode2 
+4a0a 202049bc branch cmd_exit 
+
+cmd_start_encrypt:
+4a0b 70007c0f jam lmp_encryption_mode_req ,mem_lmo_opcode2 
+4a0c 202049bc branch cmd_exit 
+
+cmd_stop_encrypt:
+4a0d 70007c0f jam lmp_encryption_mode_req ,mem_lmo_opcode2 
+4a0e 202049bc branch cmd_exit 
+
+cmd_feature_req:
+4a0f 793f8025 set0 mark_ext_patch ,mark 
+4a10 44fec01f bpatch patch1f_5 ,mem_patch1f 
+4a11 70007c27 jam lmp_features_req ,mem_lmo_opcode2 
+4a12 70427250 jam hci_cmd_wait_remote_feature ,mem_hci_cmd 
+4a13 20600000 rtn 
+
+cmd_ext_feature_req:
+4a14 70007c83 jam lmp_ext_features_req ,mem_lmo_opcode2 
+4a15 70427251 jam hci_cmd_wait_remote_ext_feature ,mem_hci_cmd 
+4a16 20600000 rtn 
+
+cmd_version_req:
+4a17 70007c25 jam lmp_version_req ,mem_lmo_opcode2 
+4a18 202049bc branch cmd_exit 
+
+cmd_in_sniff:
+4a19 70007c17 jam lmp_sniff_req ,mem_lmo_opcode2 
+4a1a d8a00455 arg mem_sniff_payload ,contw 
+4a1b 58000000 setarg 0 
+4a1c 2d0ffe1b isolate1 27 ,clke_bt 
+4a1d 7920fe01 setflag true ,1 ,pdata 
+4a1e e0a08000 istore 1 ,contw 
+4a1f 58000000 setarg 0 
+4a20 e0a10000 istore 2 ,contw 
+4a21 68014280 fetch 2 ,mem_sniff_param_interval 
+4a22 e0a10000 istore 2 ,contw 
+4a23 6800c282 fetch 1 ,mem_sniff_param_attempt 
+4a24 e0a10000 istore 2 ,contw 
+4a25 6800c284 fetch 1 ,mem_sniff_param_timeout 
+4a26 e0a10000 istore 2 ,contw 
+4a27 202049bc branch cmd_exit 
+
+cmd_exit_sniff:
+4a28 70007c18 jam lmp_unsniff_req ,mem_lmo_opcode2 
+4a29 202049bc branch cmd_exit 
+
+cmd_setup_sco:
+4a2a 20403512 call new_conn_handle 
+4a2b 600080ad store 1 ,mem_sco_handle 
+4a2c 68008046 fetch 1 ,mem_conn_handle 
+4a2d 600080ac store 1 ,mem_sco_asso_handle 
+4a2e 70007c2b jam lmp_sco_link_req ,mem_lmo_opcode2 
+4a2f 79200007 set1 mark_esco ,mark 
+4a30 70007c8c jam lmp_ext_esco_link_req ,mem_lmo_opcode2 
+4a31 202049bc branch cmd_exit 
+
+cmd_disconn:
+4a32 20405ed5 call lmp_disconnect 
+4a33 202049bc branch cmd_exit 
+
+cmd_disconn_sco:
+4a34 70007c2c jam lmp_remove_sco_link_req ,mem_lmo_opcode2 
+4a35 c583c9bc bmark0 mark_esco ,cmd_exit 
+4a36 70007c8d jam lmp_ext_remove_esco_req ,mem_lmo_opcode2 
+4a37 202049bc branch cmd_exit 
+
+cmd_accept_sco_conn:
+4a38 2034ca41 branch cmd_accept_sco_conn_master ,master 
+4a39 70007c03 jam lmp_accepted ,mem_lmo_opcode2 
+4a3a 70007d2b jam lmp_sco_link_req ,mem_lmi_opcode2 
+4a3b c583c9bc bmark0 mark_esco ,cmd_exit 
+4a3c 680080b0 fetch 1 ,mem_esco_type 
+4a3d c083dc04 bne type_hv3 ,parse_lmpext_esco_link_req_change_param 
+4a3e 70007c81 jam lmp_ext_accepted ,mem_lmo_opcode2 
+4a3f 70007d8c jam lmp_ext_esco_link_req ,mem_lmi_opcode2 
+4a40 202049bc branch cmd_exit 
+
+cmd_accept_sco_conn_master:
+4a41 20403512 call new_conn_handle 
+4a42 600080ad store 1 ,mem_sco_handle 
+4a43 68008046 fetch 1 ,mem_conn_handle 
+4a44 600080ac store 1 ,mem_sco_asso_handle 
+4a45 70007c2b jam lmp_sco_link_req ,mem_lmo_opcode2 
+4a46 c583c9bc bmark0 mark_esco ,cmd_exit 
+4a47 20205c04 branch parse_lmpext_esco_link_req_change_param 
+
+cmd_role_discovery:
+4a48 2040496e call hci_get_cmd_complete_ptr 
+4a49 2040496b call hci_write_handle 
+4a4a 18007e00 force 0 ,pdata 
+4a4b 7d34fe00 nsetflag master ,0 ,pdata 
+4a4c e1408000 istore 1 ,contwu 
+4a4d 18007207 force 7 ,loopcnt 
+4a4e de000809 arg 0x809 ,alarm 
+4a4f 2040494c call hci_command_complete 
+4a50 202049bc branch cmd_exit 
+
+cmd_io_cap:
+4a51 70007c9a jam lmp_io_cap_res ,mem_lmo_opcode2 
+4a52 202049bc branch cmd_exit 
+
+cmd_detach:
+4a53 70007c07 jam lmp_detach ,mem_lmo_opcode2 
+4a54 70044613 jam other_end_terminated ,mem_disconn_reason_send 
+4a55 202049bc branch cmd_exit 
+
+process_hci_patch:
+4a56 7002bc00 jam 0 ,mem_check_sum 
+4a57 e8608000 ifetch 1 ,contru 
+4a58 600082bb store 1 ,mem_ucode_id_remote 
+4a59 20404a6d call hci_ucode_checksum_add 
+4a5a 20407e00 call push_stack 
+4a5b 680082bb fetch 1 ,mem_ucode_id_remote 
+4a5c 1fe20400 copy pdata ,temp 
+4a5d 6800829f fetch 1 ,mem_ucode_id_local 
+4a5e 1fe0fe01 increase 1 ,pdata 
+4a5f a841fe00 icompare 0xff ,temp 
+4a60 2420ca77 nbranch hci_nak_ucode_with_stack ,true 
+4a61 6000829f store 1 ,mem_ucode_id_local 
+4a62 20407e0e call pop_stack 
+4a63 e8608000 ifetch 1 ,contru 
+4a64 c000cad8 beq 0x01 ,hci_enable_ucode_load 
+4a65 c0014aae beq 0x02 ,process_hci_ucode 
+4a66 c001cadf beq 0x03 ,hci_disable_ucode_load 
+4a67 c002cac3 beq 0x05 ,process_hci_n_sched_data 
+4a68 c0034a80 beq 0x06 ,hci_write_register 
+4a69 c003ca91 beq 0x07 ,hci_read_register 
+4a6a c0044aa8 beq 0x08 ,hci_enable_ucode 
+4a6b c004cae6 beq 0x09 ,hci_soft_branch 
+4a6c 20600000 rtn 
+
+hci_ucode_checksum_add:
+4a6d 1fe20400 copy pdata ,temp 
+4a6e 20407e00 call push_stack 
+4a6f 680082bc fetch 1 ,mem_check_sum 
+4a70 9840fe00 iadd temp ,pdata 
+4a71 600082bc store 1 ,mem_check_sum 
+4a72 20207e0e branch pop_stack 
+
+hci_ack_ucode:
+4a73 18007e01 force 1 ,pdata 
+4a74 204044b5 call uart_send_byte 
+4a75 6800829f fetch 1 ,mem_ucode_id_local 
+4a76 202044b5 branch uart_send_byte 
+
+hci_nak_ucode_with_stack:
+4a77 20407e0e call pop_stack 
+4a78 20204a7c branch hci_nak_ucode_ucode_id 
+
+hci_nak_ucode:
+4a79 6800829f fetch 1 ,mem_ucode_id_local 
+4a7a 1fe0ffff increase -1 ,pdata 
+4a7b 6000829f store 1 ,mem_ucode_id_local 
+
+hci_nak_ucode_ucode_id:
+4a7c 18007e00 force 0 ,pdata 
+4a7d 204044b5 call uart_send_byte 
+4a7e 6800829f fetch 1 ,mem_ucode_id_local 
+4a7f 202044b5 branch uart_send_byte 
+
+hci_write_register:
+4a80 20404a6d call hci_ucode_checksum_add 
+4a81 e8608000 ifetch 1 ,contru 
+4a82 600082bd store 1 ,mem_ucode_temp 
+4a83 20404a6d call hci_ucode_checksum_add 
+4a84 e8608000 ifetch 1 ,contru 
+4a85 1fed0a00 lshift8 pdata ,contw 
+4a86 20404a6d call hci_ucode_checksum_add 
+4a87 680082bd fetch 1 ,mem_ucode_temp 
+4a88 98a08a00 iadd contw ,contw 
+4a89 e8608000 ifetch 1 ,contru 
+4a8a e0a08000 istore 1 ,contw 
+4a8b 20404a6d call hci_ucode_checksum_add 
+4a8c e8608000 ifetch 1 ,contru 
+4a8d 20404a6d call hci_ucode_checksum_add 
+4a8e 680082bc fetch 1 ,mem_check_sum 
+4a8f c0ffca79 bne 0xff ,hci_nak_ucode 
+4a90 20204a73 branch hci_ack_ucode 
+
+hci_read_register:
+4a91 20404a6d call hci_ucode_checksum_add 
+4a92 e8608000 ifetch 1 ,contru 
+4a93 600082bd store 1 ,mem_ucode_temp 
+4a94 20404a6d call hci_ucode_checksum_add 
+4a95 e8608000 ifetch 1 ,contru 
+4a96 600082be store 1 ,mem_ucode_temp1 
+4a97 20404a6d call hci_ucode_checksum_add 
+4a98 e8608000 ifetch 1 ,contru 
+4a99 20404a6d call hci_ucode_checksum_add 
+4a9a 680082bc fetch 1 ,mem_check_sum 
+4a9b c0ffca79 bne 0xff ,hci_nak_ucode 
+4a9c 680082be fetch 1 ,mem_ucode_temp1 
+4a9d 1fed0400 lshift8 pdata ,temp 
+4a9e 680082bd fetch 1 ,mem_ucode_temp 
+4a9f 98408600 iadd temp ,contru 
+4aa0 e8608000 ifetch 1 ,contru 
+4aa1 600082bd store 1 ,mem_ucode_temp 
+
+hci_read_register_ack:
+4aa2 18007e01 force 1 ,pdata 
+4aa3 204044b5 call uart_send_byte 
+4aa4 680082bd fetch 1 ,mem_ucode_temp 
+4aa5 204044b5 call uart_send_byte 
+4aa6 70029fff jam 0xff ,mem_ucode_id_local 
+4aa7 20600000 rtn 
+
+hci_enable_ucode:
+4aa8 20404a6d call hci_ucode_checksum_add 
+4aa9 e8608000 ifetch 1 ,contru 
+4aaa 20404a6d call hci_ucode_checksum_add 
+4aab 680082bc fetch 1 ,mem_check_sum 
+4aac c0ffca79 bne 0xff ,hci_nak_ucode 
+4aad 20204a73 branch hci_ack_ucode 
+
+process_hci_ucode:
+4aae 20404a6d call hci_ucode_checksum_add 
+4aaf e8608000 ifetch 1 ,contru 
+4ab0 60108024 hstore 1 ,core_ucode_low 
+4ab1 20404a6d call hci_ucode_checksum_add 
+4ab2 e8608000 ifetch 1 ,contru 
+4ab3 79207e07 set1 7 ,pdata 
+4ab4 60108023 hstore 1 ,core_ucode_ctrl 
+4ab5 793ffe07 set0 7 ,pdata 
+4ab6 20404a6d call hci_ucode_checksum_add 
+4ab7 e8608000 ifetch 1 ,contru 
+4ab8 1fe27200 copy pdata ,loopcnt 
+4ab9 20404a6d call hci_ucode_checksum_add 
+
+write_ucode_loop:
+4aba e8608000 ifetch 1 ,contru 
+4abb 60108025 hstore 1 ,core_ucode_data 
+4abc 20404a6d call hci_ucode_checksum_add 
+4abd c2004aba loop write_ucode_loop 
+4abe e8608000 ifetch 1 ,contru 
+4abf 20404a6d call hci_ucode_checksum_add 
+4ac0 680082bc fetch 1 ,mem_check_sum 
+4ac1 c0ffca79 bne 0xff ,hci_nak_ucode 
+4ac2 20204a73 branch hci_ack_ucode 
+
+process_hci_n_sched_data:
+4ac3 20404a6d call hci_ucode_checksum_add 
+4ac4 e8608000 ifetch 1 ,contru 
+4ac5 600082bd store 1 ,mem_ucode_temp 
+4ac6 20404a6d call hci_ucode_checksum_add 
+4ac7 e8608000 ifetch 1 ,contru 
+4ac8 1fed0a00 lshift8 pdata ,contw 
+4ac9 20404a6d call hci_ucode_checksum_add 
+4aca 680082bd fetch 1 ,mem_ucode_temp 
+4acb 98a08a00 iadd contw ,contw 
+4acc e8608000 ifetch 1 ,contru 
+4acd 98007200 iforce loopcnt 
+4ace 20404a6d call hci_ucode_checksum_add 
+
+process_hci_n_sched_loop:
+4acf e8608000 ifetch 1 ,contru 
+4ad0 e0a08000 istore 1 ,contw 
+4ad1 20404a6d call hci_ucode_checksum_add 
+4ad2 c2004acf loop process_hci_n_sched_loop 
+4ad3 e8608000 ifetch 1 ,contru 
+4ad4 20404a6d call hci_ucode_checksum_add 
+4ad5 680082bc fetch 1 ,mem_check_sum 
+4ad6 c0ffca79 bne 0xff ,hci_nak_ucode 
+4ad7 20204a73 branch hci_ack_ucode 
+
+hci_enable_ucode_load:
+4ad8 20404a6d call hci_ucode_checksum_add 
+4ad9 e8608000 ifetch 1 ,contru 
+4ada 20404a6d call hci_ucode_checksum_add 
+4adb 680082bc fetch 1 ,mem_check_sum 
+4adc c0ffca79 bne 0xff ,hci_nak_ucode 
+4add 70802380 hjam 0x80 ,core_ucode_ctrl 
+4ade 20204a73 branch hci_ack_ucode 
+
+hci_disable_ucode_load:
+4adf 20404a6d call hci_ucode_checksum_add 
+4ae0 e8608000 ifetch 1 ,contru 
+4ae1 20404a6d call hci_ucode_checksum_add 
+4ae2 680082bc fetch 1 ,mem_check_sum 
+4ae3 c0ffca79 bne 0xff ,hci_nak_ucode 
+4ae4 70802300 hjam 0 ,core_ucode_ctrl 
+4ae5 20204a73 branch hci_ack_ucode 
+
+hci_soft_branch:
+4ae6 20404a6d call hci_ucode_checksum_add 
+4ae7 e8608000 ifetch 1 ,contru 
+4ae8 20404a6d call hci_ucode_checksum_add 
+4ae9 680082bc fetch 1 ,mem_check_sum 
+4aea c0ffca79 bne 0xff ,hci_nak_ucode 
+4aeb 20404a73 call hci_ack_ucode 
+4aec 20203001 branch soft_reset 
+
+hci_idle_dispatch:
+4aed 20406a8b call gpio_check_uart_state 
+4aee 20608000 rtn true 
+4aef d8400007 arg uart_wakeup_rx ,temp 
+4af0 204069e5 call gpio_get_bit 
+4af1 2420caf4 nbranch uart_wake_up ,true 
+4af2 7042ae01 jam hci_rx_wake ,mem_hci_lt_rx_state 
+4af3 20600000 rtn 
+
+uart_wake_up:
+4af4 6800c2ae fetch 1 ,mem_hci_lt_rx_state 
+4af5 c1808000 rtnne hci_rx_wake 
+4af6 20404599 call hci_exit_lpm 
+4af7 2020495f branch hci_send_commu_ready_event 
+
+hid_rx_process:
+4af8 79200025 set1 mark_ext_patch ,mark 
+4af9 44ce4033 bpatch patch33_4 ,mem_patch33 
+4afa 680102cb fetch 2 ,mem_l2cap_payload_ptr 
+4afb 1fe20c00 copy pdata ,contr 
+4afc e8c08000 ifetch 1 ,contr 
+4afd 1fe1040f and pdata ,0x0f ,temp 
+4afe 1ff1fe00 rshift4 pdata ,pdata 
+4aff c004cb18 beq hid_type_set_idle ,hid_rx_process_handshake 
+4b00 c003cb18 beq hid_type_set_protocol ,hid_rx_process_handshake 
+4b01 c0054b24 beq hid_type_data ,hid_rx_process_data 
+4b02 c002cb11 beq hid_type_set_report ,hid_rx_process_set_report 
+4b03 c000cb05 beq hid_type_control ,hid_rx_process_hid_control 
+4b04 20600000 rtn 
+
+hid_rx_process_hid_control:
+4b05 18427e00 copy temp ,pdata 
+4b06 c002cb09 beq hid_control_p_virtualcableunplug ,hid_rx_process_virtual_cable_unplug 
+4b07 c001cb10 beq hid_control_p_suspend ,hid_rx_process_suspend 
+4b08 20600000 rtn 
+
+hid_rx_process_virtual_cable_unplug:
+4b09 700b7d27 jam bt_evt_virtual_cable_unplug ,mem_fifo_temp 
+4b0a 20407c27 call ui_ipc_send_event 
+4b0b 6800c132 fetch 1 ,mem_device_option 
+4b0c c1830000 rtnne dvc_op_mouse ,pdata 
+4b0d 18427e00 copy temp ,pdata 
+4b0e c002e946 beq hid_control_p_virtualcableunplug ,eeprom_erase_reconn_info 
+4b0f 20600000 rtn 
+
+hid_rx_process_suspend:
+4b10 20600000 rtn 
+
+hid_rx_process_set_report:
+4b11 da200001 arg 0x01 ,rega 
+4b12 20404b2c call hid_malloc_tx_buff 
+4b13 680142b5 fetch 2 ,mem_hid_ctrl_remote_cid 
+4b14 e0a10000 istore 2 ,contw 
+4b15 58000000 setarg 0x00 
+4b16 e0a08000 istore 1 ,contw 
+4b17 20600000 rtn 
+
+hid_rx_process_handshake:
+4b18 da200001 arg 1 ,rega 
+4b19 20404b2c call hid_malloc_tx_buff 
+4b1a 680142b5 fetch 2 ,mem_hid_ctrl_remote_cid 
+4b1b e0a10000 istore 2 ,contw 
+4b1c 58000000 setarg 0 
+4b1d e0a08000 istore 1 ,contw 
+4b1e 7008a801 jam 1 ,mem_ui_data_txbuff_length 
+4b1f 6800c2bb fetch 1 ,mem_hid_control_state 
+4b20 79207e06 set1 l2cap_channel_hid_handshake_done 
+4b21 6000c2bb store 1 ,mem_hid_control_state 
+
+hid_handshake_event:
+4b22 700b7d12 jam bt_evt_hid_handshake ,mem_fifo_temp 
+4b23 20207c27 branch ui_ipc_send_event 
+
+hid_rx_process_data:
+4b24 e8c08000 ifetch 1 ,contr 
+4b25 c000cb27 beq hid_report_id_kb ,hid_rx_process_data_hid_kb 
+4b26 20600000 rtn 
+
+hid_rx_process_data_hid_kb:
+4b27 18c22200 copy contr ,rega 
+4b28 6800c132 fetch 1 ,mem_device_option 
+4b29 c1818000 rtnne dvc_op_kb ,pdata 
+4b2a 1a220c00 copy rega ,contr 
+4b2b 20204c4a branch kb_process_kb_report 
+
+hid_malloc_tx_buff:
+4b2c 20405248 call l2cap_malloc 
+4b2d 1a220400 copy rega ,temp 
+4b2e 600888a8 storet 1 ,mem_ui_data_txbuff_length 
+4b2f 1fe20a00 copy pdata ,contw 
+4b30 1a227e00 copy rega ,pdata 
+4b31 e0a10000 istore 2 ,contw 
+4b32 20600000 rtn 
+
+le_ir_init:
+4b33 58004b5b setarg le_ir 
+4b34 6001428c store 2 ,mem_cb_le_process 
+4b35 58004b44 setarg le_ir_wcb 
+4b36 60014296 store 2 ,mem_cb_att_write 
+4b37 2040691d call eeprom_load_reconn_info 
+4b38 20405347 call le_init_att 
+4b39 7080a29e hjam 158 ,core_pwm_ncnt0 
+4b3a 70808108 hjam 8 ,core_gpio_sel1 
+4b3b 70807505 hjam 5 ,core_gpio_out1 
+4b3c 5fffffff setarg -1 
+4b3d 793ffe01 set0 1 ,pdata 
+4b3e 793ffe15 set0 21 ,pdata 
+4b3f 60120070 hstore 4 ,core_gpio_oe0 
+4b40 70807802 hjam 2 ,core_gpio_pu0 
+4b41 20758000 rtn wake 
+4b42 7043d801 jam 1 ,mem_le_adv_enable 
+4b43 20600000 rtn 
+
+le_ir_wcb:
+4b44 ea208000 ifetch 1 ,rega 
+4b45 6000c803 store 1 ,mem_ir_cmd 
+4b46 c001cb4f beq ircmd_write_pulse ,le_ir_write_pulse 
+4b47 c0024b51 beq ircmd_write_seq ,le_ir_write_seq 
+4b48 c002cb53 beq ircmd_write_next ,le_ir_write_next 
+4b49 c00a4b64 beq ircmd_screen_on ,le_ir_screen_on 
+4b4a c00acb67 beq ircmd_screen_off ,le_ir_screen_off 
+4b4b c1810000 rtnne ircmd_play 
+4b4c e8c08000 ifetch 1 ,contr 
+4b4d 6000c804 store 1 ,mem_ir_play_count 
+4b4e 20600000 rtn 
+
+le_ir_write_pulse:
+4b4f d8a04807 arg mem_ir_pulse_zero ,contw 
+4b50 20204b55 branch le_ir_write 
+
+le_ir_write_seq:
+4b51 d8a04825 arg mem_ir_sequence_len ,contw 
+4b52 20204b55 branch le_ir_write 
+
+le_ir_write_next:
+4b53 68014800 fetch 2 ,mem_ir_ptr 
+4b54 98000a00 iforce contw 
+
+le_ir_write:
+4b55 df200013 arg 19 ,loopcnt 
+4b56 20407e45 call memcpy 
+4b57 18a27e00 deposit contw 
+4b58 60014800 store 2 ,mem_ir_ptr 
+4b59 70480300 jam 0 ,mem_ir_cmd 
+4b5a 20600000 rtn 
+
+le_ir:
+4b5b 6800c803 fetch 1 ,mem_ir_cmd 
+4b5c c000cb71 beq ircmd_record ,le_ir_start_record 
+4b5d c0014b8d beq ircmd_play ,le_ir_play 
+4b5e c0054b7a beq ircmd_report_pulse ,le_ir_report 
+4b5f c005cb7a beq ircmd_report_seq ,le_ir_report 
+4b60 c0064b7a beq ircmd_report_raw ,le_ir_report 
+4b61 c0044b8d beq ircmd_test_play ,le_ir_play 
+4b62 c004cb6a beq ircmd_test_rec ,le_ir_rec 
+4b63 20600000 rtn 
+
+le_ir_screen_on:
+4b64 70421300 jam 0 ,mem_lpm_mult 
+4b65 70480300 jam 0 ,mem_ir_cmd 
+4b66 20600000 rtn 
+
+le_ir_screen_off:
+4b67 7042131e jam 30 ,mem_lpm_mult 
+4b68 70480300 jam 0 ,mem_ir_cmd 
+4b69 20600000 rtn 
+
+le_ir_rec:
+4b6a 70480300 jam 0 ,mem_ir_cmd 
+4b6b db6fffff arg 0xfffff ,stop_watch 
+4b6c 20404b91 call ir_record 
+4b6d 20600000 rtn 
+
+le_ir_next_anchor:
+4b6e 680903c2 fetcht 2 ,mem_le_tsniff 
+4b6f 9840fe00 iadd temp ,pdata 
+4b70 600203c4 store 4 ,mem_le_anchor 
+
+le_ir_start_record:
+4b71 680203c4 fetch 4 ,mem_le_anchor 
+4b72 9d067e00 isub clke_bt ,pdata 
+4b73 24214b6e nbranch le_ir_next_anchor ,positive 
+4b74 1fe33600 rshift pdata ,stop_watch 
+4b75 20404b91 call ir_record 
+4b76 207a0000 rtn blank 
+4b77 7048030c jam ircmd_report_raw ,mem_ir_cmd 
+4b78 d8401800 arg mem_ir_record ,temp 
+4b79 60094800 storet 2 ,mem_ir_ptr 
+
+le_ir_report:
+4b7a 2040561c call le_xtype_fifo_is_full 
+4b7b 247a0000 nrtn blank 
+4b7c 7044c214 jam notify_handle ,mem_le_notify_handle 
+4b7d 700b7d1b jam attop_handle_value_notification ,mem_fifo_temp 
+4b7e 20405620 call le_xtype_fifo_in 
+4b7f 68010419 fetch 2 ,mem_le_notify_attr_start 
+4b80 98000a00 iforce contw 
+4b81 68014800 fetch 2 ,mem_ir_ptr 
+4b82 98000c00 iforce contr 
+4b83 df200014 arg 20 ,loopcnt 
+4b84 20407e45 call memcpy 
+4b85 18c27e00 deposit contr 
+4b86 60014800 store 2 ,mem_ir_ptr 
+4b87 68014805 fetch 2 ,mem_ir_report_len 
+4b88 1fe0ffec increase -20 ,pdata 
+4b89 60014805 store 2 ,mem_ir_report_len 
+4b8a 20610000 rtn positive 
+4b8b 70480300 jam 0 ,mem_ir_cmd 
+4b8c 20600000 rtn 
+
+le_ir_play:
+4b8d 6800c804 fetch 1 ,mem_ir_play_count 
+4b8e 20404be2 call ir_play 
+4b8f 70480300 jam 0 ,mem_ir_cmd 
+4b90 20600000 rtn 
+
+ir_record:
+4b91 20404b97 call ir_receive 
+4b92 58001800 setarg mem_ir_record 
+4b93 98a67e00 isub contw ,pdata 
+4b94 1fe67e00 sub pdata ,0 ,pdata 
+4b95 60014805 store 2 ,mem_ir_report_len 
+4b96 20600000 rtn 
+
+ir_receive:
+4b97 78487c00 disable swfine 
+4b98 d8a01800 arg mem_ir_record ,contw 
+
+ir_receive_waitsync:
+4b99 20618000 rtn timeout 
+4b9a 6810811e hfetch 1 ,core_gpio_in + 2 
+4b9b c302cb99 bbit0 5 ,ir_receive_waitsync 
+4b9c 1b220400 copy clkn ,temp 
+4b9d df200080 arg 0x80 ,loopcnt 
+4b9e 20407e3b call memset0 
+4b9f d8a01800 arg mem_ir_record ,contw 
+4ba0 da600000 arg 0x0 ,regc 
+
+ir_receive_loop:
+4ba1 db6000b4 arg 180 ,stop_watch 
+
+ir_receive_waitedge:
+4ba2 20618000 rtn timeout 
+4ba3 6810811e hfetch 1 ,core_gpio_in + 2 
+4ba4 9a62fe00 ixor regc ,pdata 
+4ba5 c282cba2 bbit1 5 ,ir_receive_waitedge 
+4ba6 1b227e00 copy clkn ,pdata 
+4ba7 98006000 iforce alarm 
+4ba8 20407e78 call clk_diff_rt 
+4ba9 1fe67cff sub pdata ,0xff ,null 
+4baa 20214ba2 branch ir_receive_waitedge ,positive 
+4bab 2a6c0005 isolate0 5 ,regc 
+4bac 7920fe17 setflag true ,23 ,pdata 
+4bad e0a18000 istore 3 ,contw 
+4bae 18acfe00 rshift8 contw ,pdata 
+4baf c10e0000 rtneq mem_ir_record_max 
+4bb0 1e020400 copy alarm ,temp 
+4bb1 1a62a620 xor_into 0x20 ,regc 
+4bb2 20204ba1 branch ir_receive_loop 
+
+ir_get_next_seq:
+4bb3 20344bc7 branch ir_get_next_seq_saved ,user 
+4bb4 20364bca branch ir_get_next_encoded ,user2 
+
+ir_get_next_seq_fetch:
+4bb5 d8404826 arg mem_ir_sequence ,temp 
+4bb6 6800c825 fetch 1 ,mem_ir_sequence_len 
+4bb7 9840fe00 iadd temp ,pdata 
+4bb8 9a267c00 isub rega ,null 
+4bb9 2022cbda branch ir_get_next_seq_exit ,zero 
+4bba ea208000 ifetch 1 ,rega 
+4bbb 18c22200 copy contr ,rega 
+4bbc c303cbc1 bbit0 7 ,ir_get_next_cont 
+4bbd 78367c00 enable user2 
+4bbe 1fe1247f and pdata ,0x7f ,regb 
+4bbf 1a29a200 lshift3 rega ,rega 
+4bc0 20204bca branch ir_get_next_encoded 
+
+ir_get_next_cont:
+4bc1 1ff19000 rshift4 pdata ,debug 
+4bc2 1fe17e0f and_into 0xf ,pdata 
+4bc3 99067c00 isub debug ,null 
+4bc4 20628000 rtn zero 
+4bc5 78347c00 enable user 
+4bc6 20600000 rtn 
+
+ir_get_next_seq_saved:
+4bc7 19027e00 deposit debug 
+4bc8 78547c00 disable user 
+4bc9 20600000 rtn 
+
+ir_get_next_encoded:
+4bca 1a427e00 deposit regb 
+4bcb 203a4bd6 branch ir_get_next_encoded_end ,blank 
+4bcc 1a210e07 and rega ,0x7 ,queue 
+4bcd 1a290c00 rshift3 rega ,contr 
+4bce e8c08000 ifetch 1 ,contr 
+4bcf 1a20a201 increase 1 ,rega 
+4bd0 1a40a5ff increase -1 ,regb 
+4bd1 afec0000 qisolate0 pdata 
+4bd2 6800c807 fetch 1 ,mem_ir_pulse_zero 
+4bd3 2020cbc1 branch ir_get_next_cont ,true 
+4bd4 6800c808 fetch 1 ,mem_ir_pulse_one 
+4bd5 20204bc1 branch ir_get_next_cont 
+
+ir_get_next_encoded_end:
+4bd6 78567c00 disable user2 
+4bd7 1a20a207 increase 7 ,rega 
+4bd8 1a292200 rshift3 rega ,rega 
+4bd9 20204bb5 branch ir_get_next_seq_fetch 
+
+ir_get_next_seq_exit:
+4bda 580000ff setarg 0xff 
+4bdb 20600000 rtn 
+
+ir_get_pulse:
+4bdc 1fe38c00 lshift pdata ,contr 
+4bdd 98c0fe00 iadd contr ,pdata 
+4bde d8c04809 arg mem_ir_pulses ,contr 
+4bdf 98c08c00 iadd contr ,contr 
+4be0 e8c18000 ifetch 3 ,contr 
+4be1 20600000 rtn 
+
+ir_play:
+4be2 78287c00 enable swfine 
+4be3 98007200 iforce loopcnt 
+
+ir_play_nloop:
+4be4 78547c00 disable user 
+4be5 78567c00 disable user2 
+4be6 da204826 arg mem_ir_sequence ,rega 
+
+ir_play_loop:
+4be7 20404bb3 call ir_get_next_seq 
+4be8 c07fcbf1 beq 0xff ,ir_play_end 
+4be9 20404bdc call ir_get_pulse 
+4bea c30bcbed bbit0 23 ,ir_play_silence 
+4beb 793ffe17 set0 23 ,pdata 
+4bec 7080a09e hjam 158 ,core_pwm_pcnt0 
+
+ir_play_silence:
+4bed 98003600 iforce stop_watch 
+4bee 37c18200 until null ,timeout 
+4bef 7080a000 hjam 0 ,core_pwm_pcnt0 
+4bf0 20204be7 branch ir_play_loop 
+
+ir_play_end:
+4bf1 c2004be4 loop ir_play_nloop 
+4bf2 20600000 rtn 
+
+le_kb_init:
+4bf3 20404c21 call kb_init_common 
+4bf4 58004d21 setarg kb_process_idle 
+4bf5 60014290 store 2 ,mem_cb_idle_process 
+4bf6 58004c59 setarg kb_send_process 
+4bf7 6001428e store 2 ,mem_cb_bt_process 
+4bf8 58004d37 setarg kb_process_bb_event 
+4bf9 60014292 store 2 ,mem_cb_bb_event_process 
+4bfa 58004d7e setarg kb_process_lpm_before 
+4bfb 6001428a store 2 ,mem_cb_before_lpm 
+4bfc 58004d7b setarg kb_discovery_timeout_sleep 
+4bfd 60014294 store 2 ,mem_cb_discovry_timeout 
+4bfe 58004d7e setarg kb_before_hibernate 
+4bff 60014288 store 2 ,mem_cb_before_hibernate 
+4c00 58004d22 setarg kb_wakeup_check 
+4c01 60014286 store 2 ,mem_cb_check_wakelock 
+4c02 20758000 rtn wake 
+4c03 680147f4 fetch 2 ,mem_ui_state_map 
+4c04 c2863f79 bbit1 ui_state_btn_down ,app_bt_start_discovery_short 
+4c05 20403f23 call app_check_reconn_target 
+4c06 203a4d79 branch kb_start_discovery ,blank 
+4c07 20403f7e call app_bt_stop_discovery 
+4c08 20203f6e branch app_bt_start_reconnect 
+
+kb_init:
+4c09 20404c21 call kb_init_common 
+4c0a 58004d21 setarg kb_process_idle 
+4c0b 60014290 store 2 ,mem_cb_idle_process 
+4c0c 58004c59 setarg kb_send_process 
+4c0d 6001428e store 2 ,mem_cb_bt_process 
+4c0e 58004d37 setarg kb_process_bb_event 
+4c0f 60014292 store 2 ,mem_cb_bb_event_process 
+4c10 58004d7e setarg kb_process_lpm_before 
+4c11 6001428a store 2 ,mem_cb_before_lpm 
+4c12 58004d7b setarg kb_discovery_timeout_sleep 
+4c13 60014294 store 2 ,mem_cb_discovry_timeout 
+4c14 58004d7e setarg kb_before_hibernate 
+4c15 60014288 store 2 ,mem_cb_before_hibernate 
+4c16 58004d22 setarg kb_wakeup_check 
+4c17 60014286 store 2 ,mem_cb_check_wakelock 
+4c18 20758000 rtn wake 
+4c19 7007dc00 jam 0 ,mem_sp_flag 
+4c1a 7007dd00 jam 0 ,mem_master_sp_flag 
+4c1b 680147f4 fetch 2 ,mem_ui_state_map 
+4c1c c2863f79 bbit1 ui_state_btn_down ,app_bt_start_discovery_short 
+4c1d 20403f23 call app_check_reconn_target 
+4c1e 203a4d79 branch kb_start_discovery ,blank 
+4c1f 20403f7e call app_bt_stop_discovery 
+4c20 20203f6e branch app_bt_start_reconnect 
+
+kb_init_common:
+4c21 79200025 set1 mark_ext_patch ,mark 
+4c22 44db4036 bpatch patch36_6 ,mem_patch36 
+4c23 68008140 fetch 1 ,0x8140 
+4c24 203a3bf1 branch assert ,blank 
+4c25 70807000 hjam 0 ,core_gpio_oe0 
+4c26 708078ff hjam 0xff ,core_gpio_pu0 
+4c27 708071ff hjam 0xff ,core_gpio_oe1 
+4c28 708072ff hjam 0xff ,core_gpio_oe2 
+4c29 68108073 hfetch 1 ,core_gpio_oe3 
+4c2a 1fe1fe0f or_into 0x0f ,pdata 
+4c2b 60108073 hstore 1 ,core_gpio_oe3 
+4c2c 70808000 hjam 0x00 ,core_gpio_sel 
+4c2d 70808100 hjam 0x00 ,core_gpio_sel1 
+4c2e 708083ff hjam 0xff ,core_gpio_key0 
+4c2f 708084ff hjam 0xFf ,core_gpio_key1 
+4c30 68108085 hfetch 1 ,core_gpio_key2 
+4c31 1fe1fe03 or_into 0x03 ,pdata 
+4c32 60108085 hstore 1 ,core_gpio_key2 
+4c33 70806f00 hjam 0x00 ,core_kscn_rowmask 
+4c34 58000013 setarg kb_kscan_col_1 
+4c35 1fe9fe00 lshift3 pdata ,pdata 
+4c36 1fe0fe07 add pdata ,kb_kscan_row_1 ,pdata 
+4c37 60108064 hstore 1 ,core_kscn_rctc 
+4c38 68108043 hfetch 1 ,core_config 
+4c39 79207e02 set1 2 ,pdata 
+4c3a 60108043 hstore 1 ,core_config 
+4c3b 68108051 hfetch 1 ,core_clkoff + 1 
+4c3c 793ffe01 set0 1 ,pdata 
+4c3d 60108051 hstore 1 ,core_clkoff + 1 
+4c3e 7080630d hjam 0xd ,core_kscn_ksctrl 
+4c3f 708067d3 hjam 0xd3 ,core_kscn_m_debounce 
+4c40 70806500 hjam 0 ,core_kscn_scancycle_timer_l 
+4c41 70806631 hjam 0x31 ,core_kscn_scancycle_timer_h 
+4c42 20403e0b call lpm_disable_exen_output 
+4c43 6808c80e fetcht 1 ,mem_led_cap_gpio 
+4c44 204069da call gpio_config_output 
+4c45 6808c80f fetcht 1 ,mem_led_num_gpio 
+4c46 204069da call gpio_config_output 
+4c47 6808c810 fetcht 1 ,mem_led_scl_gpio 
+4c48 204069da call gpio_config_output 
+4c49 20600000 rtn 
+
+kb_process_kb_report:
+4c4a 79200025 set1 mark_ext_patch ,mark 
+4c4b 44dbc036 bpatch patch36_7 ,mem_patch36 
+4c4c e8c08000 ifetch 1 ,contr 
+4c4d 1fe22200 copy pdata ,rega 
+4c4e 6808c80f fetcht 1 ,mem_led_num_gpio 
+4c4f 2a2ffe00 isolate1 kb_num_lock_selected ,rega 
+4c50 204069f0 call gpio_out_flag 
+4c51 6808c80e fetcht 1 ,mem_led_cap_gpio 
+4c52 2a2ffe01 isolate1 kb_caps_lock_selected ,rega 
+4c53 204069f0 call gpio_out_flag 
+4c54 6808c810 fetcht 1 ,mem_led_scl_gpio 
+4c55 2a2ffe02 isolate1 kb_scroll_lock_selected ,rega 
+4c56 204069f0 call gpio_out_flag 
+4c57 70480901 jam 1 ,mem_kb_rcv_led_data 
+4c58 20600000 rtn 
+
+kb_send_process:
+4c59 20404c99 call kb_kscan_check_if_empty 
+4c5a 24740000 nrtn user 
+4c5b 24760000 nrtn user2 
+4c5c 68008450 fetch 1 ,mem_pincode_state 
+4c5d c000cc69 beq pincode_state_wait_pincode ,kb_pincode 
+4c5e 6800c2bc fetch 1 ,mem_hid_interrupt_state 
+4c5f c19f8000 rtnne 0x3f 
+4c60 da20000a arg 10 ,rega 
+4c61 20404b2c call hid_malloc_tx_buff 
+4c62 680142b7 fetch 2 ,mem_hid_int_remote_cid 
+4c63 e0a10000 istore 2 ,contw 
+4c64 580001a1 setarg 0x01a1 
+4c65 e0a10000 istore 2 ,contw 
+4c66 68044800 fetch 8 ,mem_kb_state 
+4c67 e0a40000 istore 8 ,contw 
+4c68 20600000 rtn 
+
+kb_pincode:
+4c69 6808854f fetcht 1 ,mem_pin_length 
+4c6a 58000550 setarg mem_pin 
+4c6b 98408a00 iadd temp ,contw 
+4c6c 6800c802 fetch 1 ,mem_kb_report_data 
+4c6d 203a4c72 branch kb_pincode_rtn ,blank 
+4c6e c0154c74 beq kb_kcode_bksp ,kb_pincode_bksp 
+4c6f c0944c7e bne kb_kcode_enter ,kb_pincode_data 
+4c70 6008854f storet 1 ,mem_pin_length 
+4c71 20203f6a branch app_bt_set_pincode 
+
+kb_pincode_rtn:
+4c72 6008854f storet 1 ,mem_pin_length 
+4c73 20600000 rtn 
+
+kb_pincode_bksp:
+4c74 6800854f fetch 1 ,mem_pin_length 
+4c75 207a0000 rtn blank 
+4c76 1fe0ffff increase -1 ,pdata 
+4c77 6000854f store 1 ,mem_pin_length 
+4c78 d8a00550 arg mem_pin ,contw 
+4c79 98a08a00 iadd contw ,contw 
+4c7a 58000000 setarg 0 
+4c7b e0a08000 istore 1 ,contw 
+4c7c 78367c00 enable user2 
+4c7d 20204c8d branch kb_send_pin 
+
+kb_pincode_data:
+4c7e 1fe67c1d sub pdata ,kb_kcode_1_m1 ,null 
+4c7f 20610000 rtn positive 
+4c80 d8400030 arg 0x30 ,temp 
+4c81 1fe67c27 sub pdata ,kb_kcode_0 ,null 
+4c82 24610000 nrtn positive 
+4c83 2022cc87 branch kb_pincode_0 ,zero 
+4c84 d840001d arg kb_kcode_1_m1 ,temp 
+4c85 98460400 isub temp ,temp 
+4c86 18418430 or_into 0x30 ,temp 
+
+kb_pincode_0:
+4c87 e0a88000 istoret 1 ,contw 
+4c88 6800854f fetch 1 ,mem_pin_length 
+4c89 1fe0fe01 increase 1 ,pdata 
+4c8a 6000854f store 1 ,mem_pin_length 
+4c8b 78567c00 disable user2 
+4c8c 20204c8d branch kb_send_pin 
+
+kb_send_pin:
+4c8d 680142b7 fetch 2 ,mem_hid_int_remote_cid 
+4c8e 207a0000 rtn blank 
+4c8f da200003 arg 3 ,rega 
+4c90 20404b2c call hid_malloc_tx_buff 
+4c91 680142b7 fetch 2 ,mem_hid_int_remote_cid 
+4c92 e0a10000 istore 2 ,contw 
+4c93 5800ffa1 setarg 0xffa1 
+4c94 e0a10000 istore 2 ,contw 
+4c95 58000000 setarg 0 
+4c96 79367e00 setflag user2 ,0 ,pdata 
+4c97 e0a08000 istore 1 ,contw 
+4c98 20600000 rtn 
+
+kb_kscan_check_if_empty:
+4c99 78547c00 disable user 
+4c9a 78567c00 disable user2 
+4c9b 68108119 hfetch 1 ,core_kscn_kstat 
+4c9c c3800000 rtnbit1 kb_kscan_stat_empty 
+
+kb_kscan_check_ghost:
+4c9d 6810811b hfetch 1 ,core_kscn_event_num 
+4c9e c2804ca3 bbit1 kb_kscan_key_event_stat ,kb_kscan_process_event 
+4c9f 68108119 hfetch 1 ,core_kscn_kstat 
+4ca0 c3034ca3 bbit0 kb_kscan_stat_ghost ,kb_kscan_process_event 
+4ca1 6810811a hfetch 1 ,core_kscn_event 
+4ca2 20204c99 branch kb_kscan_check_if_empty 
+
+kb_kscan_process_event:
+4ca3 78347c00 enable user 
+4ca4 78367c00 enable user2 
+4ca5 6810811b hfetch 1 ,core_kscn_event_num 
+4ca6 2fec0000 isolate0 kb_kscan_key_event_stat ,pdata 
+4ca7 6810811a hfetch 1 ,core_kscn_event 
+4ca8 d8c04811 arg mem_kb_map ,contr 
+4ca9 98c08c00 iadd contr ,contr 
+4caa e8c08000 ifetch 1 ,contr 
+4cab c283cce4 bbit1 7 ,kb_kscan_read_statekey 
+4cac 2420cccc nbranch kb_kscan_release_a_key_data ,true 
+4cad 78567c00 disable user2 
+4cae 98000400 iforce temp 
+4caf 6800c808 fetch 1 ,mem_kb_keys 
+4cb0 1fe67c04 sub pdata ,4 ,null 
+4cb1 24610000 nrtn positive 
+4cb2 1fe22200 copy pdata ,rega 
+4cb3 df200003 arg 3 ,loopcnt 
+4cb4 d8c04802 arg mem_kb_report_data ,contr 
+
+kb_kscan_check_report_data:
+4cb5 e8c08000 ifetch 1 ,contr 
+4cb6 98467c00 isub temp ,null 
+4cb7 2022cc99 branch kb_kscan_check_if_empty ,zero 
+4cb8 c2004cb5 loop kb_kscan_check_report_data 
+
+kb_kscan_store_a_key_data:
+4cb9 1a227e00 copy rega ,pdata 
+4cba d8a04802 arg mem_kb_report_data ,contw 
+4cbb 98a08a00 iadd contw ,contw 
+4cbc e0a88000 istoret 1 ,contw 
+4cbd 1fe0fe01 increase 1 ,pdata 
+4cbe 6000c808 store 1 ,mem_kb_keys 
+4cbf 6810811b hfetch 1 ,core_kscn_event_num 
+4cc0 1fe97e00 rshift3 pdata ,pdata 
+4cc1 243a4cc3 nbranch kb_kscan_check_nextevent ,blank 
+4cc2 20204cca branch kb_kscan_prepare_send 
+
+kb_kscan_check_nextevent:
+4cc3 1fe0ffff increase -1 ,pdata 
+4cc4 2022ccca branch kb_kscan_prepare_send ,zero 
+4cc5 6810811b hfetch 1 ,core_kscn_event_num 
+4cc6 1fe17e01 and_into 0x01 ,pdata 
+4cc7 c0004c99 beq kb_kscan_key_press ,kb_kscan_check_if_empty 
+4cc8 c000ccca beq kb_kscan_key_release ,kb_kscan_prepare_send 
+4cc9 20600000 rtn 
+
+kb_kscan_prepare_send:
+4cca 78367c00 enable user2 
+4ccb 20600000 rtn 
+
+kb_kscan_release_a_key_data:
+4ccc 1fe104ff and pdata ,0xff ,temp 
+4ccd 6800c808 fetch 1 ,mem_kb_keys 
+4cce 207a0000 rtn blank 
+4ccf 98007200 iforce loopcnt 
+4cd0 d8c04802 arg mem_kb_report_data ,contr 
+
+kb_kscan_find_same_key_data:
+4cd1 e8c08000 ifetch 1 ,contr 
+4cd2 98467c00 isub temp ,null 
+4cd3 2022ccd6 branch kb_kscan_release_foundkey ,zero 
+4cd4 c2004cd1 loop kb_kscan_find_same_key_data 
+4cd5 20600000 rtn 
+
+kb_kscan_release_foundkey:
+4cd6 18c08bff add contr ,-1 ,contw 
+4cd7 20407e45 call memcpy 
+4cd8 6800c808 fetch 1 ,mem_kb_keys 
+4cd9 1fe0ffff increase -1 ,pdata 
+4cda 6000c808 store 1 ,mem_kb_keys 
+4cdb 6810811b hfetch 1 ,core_kscn_event_num 
+4cdc 1fe97e00 rshift3 pdata ,pdata 
+4cdd 243a4cdf nbranch kb_kscan_check_nextevent2 ,blank 
+4cde 20600000 rtn 
+
+kb_kscan_check_nextevent2:
+4cdf 6810811b hfetch 1 ,core_kscn_event_num 
+4ce0 1fe17e01 and_into 0x01 ,pdata 
+4ce1 c0004cca beq kb_kscan_key_press ,kb_kscan_prepare_send 
+4ce2 c000cc99 beq kb_kscan_key_release ,kb_kscan_check_if_empty 
+4ce3 20600000 rtn 
+
+kb_kscan_read_statekey:
+4ce4 1fe10e07 and pdata ,7 ,queue 
+4ce5 6800c800 fetch 1 ,mem_kb_state 
+4ce6 f920fe00 qsetflag true ,pdata 
+4ce7 6000c800 store 1 ,mem_kb_state 
+4ce8 20600000 rtn 
+
+kb_clear_keys:
+4ce9 58000000 setarg 0 
+4cea 60044800 store 8 ,mem_kb_state 
+4ceb 6000c808 store 1 ,mem_kb_keys 
+4cec 20600000 rtn 
+
+kb_clean_kscan_fifo:
+4ced 6810811b hfetch 1 ,core_kscn_event_num 
+4cee 6810811a hfetch 1 ,core_kscn_event 
+4cef 68108119 hfetch 1 ,core_kscn_kstat 
+4cf0 c3004ced bbit0 kb_kscan_stat_empty ,kb_clean_kscan_fifo 
+4cf1 580000ff setarg 0xff 
+4cf2 78347c00 enable user 
+4cf3 20600000 rtn 
+
+le_keyboard:
+4cf4 680944c2 fetcht 2 ,mem_le_notify_handle 
+4cf5 20405866 call le_att_check_notification_enable 
+4cf6 c4000000 rtnbit0 0 
+4cf7 6800c6f8 fetch 1 ,mem_le_switch_send_data 
+4cf8 c4000000 rtnbit0 0 
+4cf9 2040561c call le_xtype_fifo_is_full 
+4cfa 247a0000 nrtn blank 
+4cfb 20404c99 call kb_kscan_check_if_empty 
+4cfc 24740000 nrtn user 
+4cfd 24760000 nrtn user2 
+
+le_slave_keyboard_send_data:
+4cfe 20403f5e call app_lpm_wake_auto_lock 
+4cff 70421302 jam 2 ,mem_lpm_mult 
+4d00 680944c2 fetcht 2 ,mem_le_notify_handle 
+4d01 20405a88 call le_att_get_handle_ptr 
+4d02 18c08a01 add contr ,1 ,contw 
+4d03 68044800 fetch 8 ,mem_kb_state 
+4d04 e0a40000 istore 8 ,contw 
+4d05 700b7d1b jam attop_handle_value_notification ,mem_fifo_temp 
+4d06 20405620 call le_xtype_fifo_in 
+4d07 680083e4 fetch 1 ,mem_le_op 
+4d08 c281bbf2 bbit1 op_disconn ,loop 
+4d09 20600000 rtn 
+
+le_keyboard_process_bb_event:
+4d0a 1a627e00 copy regc ,pdata 
+4d0b c0084d15 beq bt_evt_button_long_pressed ,le_keyboard_bb_event_discovery_btn 
+4d0c c00a4d13 beq bt_evt_le_connected ,le_kb_connected 
+4d0d c0144d11 beq bt_evt_le_write_request ,le_kb_bb_event_write_request 
+4d0e c014cd11 beq bt_evt_le_enc_info ,le_kb_bb_event_enc_info 
+4d0f c0173f57 beq bt_evt_remote_unsniff ,app_start_auto_sniff 
+4d10 20600000 rtn 
+
+le_kb_bb_event_enc_info:
+
+le_kb_bb_event_write_request:
+4d11 20403fa4 call app_lpm_mult_enable 
+4d12 20203f92 branch app_ble_start_write 
+
+le_kb_connected:
+4d13 20404ced call kb_clean_kscan_fifo 
+4d14 20204ce9 branch kb_clear_keys 
+
+le_keyboard_bb_event_discovery_btn:
+4d15 20405b30 call le_clean_att_list_handle_enable 
+4d16 20403f90 call app_ble_disconnect 
+4d17 20403f88 call app_ble_start_adv 
+4d18 20203f94 branch app_led_start_blink 
+
+le_keyboard_bb_event_hud_ms:
+4d19 6800c42e fetch 1 ,mem_le_led_on_time 
+4d1a 207a0000 rtn blank 
+4d1b 1fe0ffff increase -1 ,pdata 
+4d1c 6000c42e store 1 ,mem_le_led_on_time 
+4d1d 247a0000 nrtn blank 
+4d1e 6800c4db fetch 1 ,mem_le_adv_type 
+4d1f 207a0000 rtn blank 
+4d20 20203f98 branch app_led_off 
+
+kb_process_idle:
+4d21 20204d2e branch kb_pairing_button_check 
+
+kb_wakeup_check:
+4d22 6811811c hfetch 3 ,core_gpio_in 
+4d23 1fe22400 copy pdata ,regb 
+4d24 6810811f hfetch 1 ,core_gpio_in + 3 
+4d25 1fe17e0f and_into 0x0f ,pdata 
+4d26 1ff07e00 lshift16 pdata ,pdata 
+4d27 1fed7e00 lshift8 pdata ,pdata 
+4d28 9a41fe00 ior regb ,pdata 
+4d29 680a480a fetcht 4 ,mem_kb_fast_wake_last 
+4d2a 98467e00 isub temp ,pdata 
+4d2b 207a0000 rtn blank 
+4d2c da4000bb arg 0xbb ,regb 
+4d2d 20203f5e branch app_lpm_wake_auto_lock 
+
+kb_pairing_button_check:
+4d2e 6800c133 fetch 1 ,mem_scan_mode 
+4d2f 247a0000 nrtn blank 
+4d30 6800c27f fetch 1 ,mem_app_handshake_flag 
+4d31 247a0000 nrtn blank 
+4d32 6800c7ea fetch 1 ,mem_ui_button_timer 
+4d33 207a0000 rtn blank 
+4d34 6800c7eb fetch 1 ,mem_ui_button_last_state 
+4d35 247a0000 nrtn blank 
+4d36 20203f9a branch app_enter_hibernate 
+
+kb_process_bb_event:
+4d37 1a627e00 copy regc ,pdata 
+4d38 c0034d8b beq bt_evt_hid_connected ,kb_hid_connected 
+4d39 c0054d7c beq bt_evt_pincode_req ,kb_process_pincode 
+4d3a c0034d8f beq bt_evt_hid_connected ,kb_bt_hid_handshake 
+4d3b c0084d68 beq bt_evt_button_long_pressed ,kb_bb_event_discovery_btn 
+4d3c c0173f57 beq bt_evt_remote_unsniff ,app_start_auto_sniff 
+4d3d c000cd77 beq bt_evt_bb_connected ,kb_stop_discovery 
+4d3e c0014d51 beq bt_evt_bb_disconnected ,kb_bb_disconnected 
+4d3f c0024d4e beq bt_evt_reconn_failed ,kb_bb_event_reconn_failed 
+4d40 c009cd4e beq bt_evt_reconn_page_timeout ,kb_bb_event_reconn_failed 
+4d41 1fe1040f and pdata ,0x0f ,temp 
+4d42 1fe17ef0 and_into bt_evt_timer_mask ,pdata 
+4d43 c0284d45 beq bt_evt_timer_init ,kb_bb_event_timer 
+4d44 20600000 rtn 
+
+kb_bb_event_timer:
+4d45 79200025 set1 mark_ext_patch ,mark 
+4d46 44dc4037 bpatch patch37_0 ,mem_patch37 
+4d47 60088259 storet 1 ,mem_app_evt_timer_count 
+
+kb_bb_event_100ms_loop:
+4d48 68008259 fetch 1 ,mem_app_evt_timer_count 
+4d49 207a0000 rtn blank 
+4d4a 1fe0ffff increase -1 ,pdata 
+4d4b 60008259 store 1 ,mem_app_evt_timer_count 
+4d4c 20404d62 call kb_check_hid_handshake_timer 
+4d4d 20204d48 branch kb_bb_event_100ms_loop 
+
+kb_bb_event_reconn_failed:
+4d4e 680147f4 fetch 2 ,mem_ui_state_map 
+4d4f c2864d79 bbit1 ui_state_btn_down ,kb_start_discovery 
+4d50 20203f10 branch app_bb_hibernate 
+
+kb_bb_disconnected:
+4d51 79200025 set1 mark_ext_patch ,mark 
+4d52 44dcc037 bpatch patch37_1 ,mem_patch37 
+4d53 20404d59 call kb_bb_discon_clear_stack 
+4d54 680142a0 fetch app_disc_rsn_size ,mem_app_disconn_reason 
+4d55 c2803f12 bbit1 app_disc_by_button ,app_disconn_reason_clear 
+4d56 c280cd5c bbit1 app_disc_after_pairing ,kb_event_light_state_pairing 
+4d57 c2814d5f bbit1 app_disc_after_reconn ,kb_event_light_state_reconn 
+4d58 20204d79 branch kb_start_discovery 
+
+kb_bb_discon_clear_stack:
+4d59 70425e00 jam 0 ,mem_link_key_exists 
+4d5a 70448b00 jam 0 ,mem_ltk_exists 
+4d5b 20600000 rtn 
+
+kb_event_light_state_pairing:
+4d5c c282bf10 bbit1 app_disc_after_handshake ,app_bb_hibernate 
+4d5d c281bf10 bbit1 app_disc_after_sniff ,app_bb_hibernate 
+4d5e 20204d79 branch kb_start_discovery 
+
+kb_event_light_state_reconn:
+4d5f 680147f4 fetch 2 ,mem_ui_state_map 
+4d60 c2864d79 bbit1 ui_state_btn_down ,kb_start_discovery 
+4d61 20203f10 branch app_bb_hibernate 
+
+kb_check_hid_handshake_timer:
+4d62 6800c7f2 fetch 1 ,mem_hid_handshake_timer_count 
+4d63 207a0000 rtn blank 
+4d64 1fe0ffff increase -1 ,pdata 
+4d65 6000c7f2 store 1 ,mem_hid_handshake_timer_count 
+4d66 247a0000 nrtn blank 
+4d67 20204d8f branch kb_bt_hid_handshake 
+
+kb_bb_event_discovery_btn:
+4d68 20404d6a call kb_3_0_bb_event_discovery_btn 
+4d69 20204d79 branch kb_start_discovery 
+
+kb_3_0_bb_event_discovery_btn:
+4d6a 79200025 set1 mark_ext_patch ,mark 
+4d6b 44dd4037 bpatch patch37_2 ,mem_patch37 
+4d6c 680147f4 fetch 2 ,mem_ui_state_map 
+4d6d 2feffe07 isolate1 ui_state_bt_reconnect ,pdata 
+4d6e 2040bf75 call app_bt_reconnect_cancel ,true 
+4d6f 680147fe fetch 2 ,mem_discovery_timeout 
+4d70 600147f0 store 2 ,mem_discovery_timeout_timer_count 
+4d71 680142a2 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+4d72 79207e00 set1 app_disc_by_button ,pdata 
+4d73 600142a2 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+4d74 680147f4 fetch 2 ,mem_ui_state_map 
+4d75 c2803f77 bbit1 ui_state_bt_connected ,app_bt_disconnect 
+4d76 20600000 rtn 
+
+kb_stop_discovery:
+4d77 20403f7e call app_bt_stop_discovery 
+4d78 20203f98 branch app_led_stop_blink 
+
+kb_start_discovery:
+4d79 20403f7c call app_bt_start_discovery 
+4d7a 20203f94 branch app_led_start_blink 
+
+kb_discovery_timeout_sleep:
+4d7b 20203f9a branch app_enter_hibernate 
+
+kb_process_pincode:
+4d7c 70054f00 jam 0 ,mem_pin_length 
+4d7d 20600000 rtn 
+
+kb_before_hibernate:
+
+kb_process_lpm_before:
+4d7e 70808300 hjam 0x00 ,core_gpio_key0 
+4d7f 70808400 hjam 0x00 ,core_gpio_key1 
+4d80 68108085 hfetch 1 ,core_gpio_key2 
+4d81 1fe17ef0 and_into 0xf0 ,pdata 
+4d82 60108085 hstore 1 ,core_gpio_key2 
+4d83 58000000 setarg 0x00 
+4d84 600200a7 store 4 ,mem_gpio_wakeup_high 
+4d85 580000ff setarg 0xff 
+4d86 6808c7fd fetcht 1 ,mem_ui_button_gpio 
+4d87 18420e00 copy temp ,queue 
+4d88 f9207e00 qset1 pdata 
+4d89 600200a3 store 4 ,mem_gpio_wakeup_low 
+4d8a 20600000 rtn 
+
+kb_hid_connected:
+4d8b 58000002 setarg hid_handshake_timeout 
+4d8c 6000c7f2 store 1 ,mem_hid_handshake_timer_count 
+4d8d 20404ced call kb_clean_kscan_fifo 
+4d8e 20204ce9 branch kb_clear_keys 
+
+kb_bt_hid_handshake:
+4d8f 79200025 set1 mark_ext_patch ,mark 
+4d90 44ddc037 bpatch patch37_3 ,mem_patch37 
+4d91 70427f01 jam app_handshake_done ,mem_app_handshake_flag 
+4d92 20403fa4 call app_lpm_mult_enable 
+4d93 20403fa2 call app_bt_store_reconn_info 
+4d94 58000000 setarg 0 
+4d95 600147f0 store 2 ,mem_discovery_timeout_timer_count 
+4d96 6000c7f2 store 1 ,mem_hid_handshake_timer_count 
+4d97 20203f9e branch app_bt_enter_sniff 
+
+l2cap_init:
+4d98 2035cd9d branch l2cap_init_wake ,wake 
+
+l2cap_init_work:
+4d99 580043ce setarg mem_l2cap_xmem_end 
+4d9a d8a042af arg mem_l2cap_xmem_start ,contw 
+4d9b 98a67200 isub contw ,loopcnt 
+4d9c 20407e3f call clear_mem 
+
+l2cap_init_wake:
+4d9d 79200025 set1 mark_ext_patch ,mark 
+4d9e 448b4022 bpatch patch22_6 ,mem_patch22 
+4d9f 580004de setarg mem_sdp_mem_end 
+4da0 d8a004a9 arg mem_sdp_mem_start ,contw 
+4da1 98a67200 isub contw ,loopcnt 
+4da2 20407e3f call clear_mem 
+4da3 58000330 setarg mem_l2cap_mem_end 
+4da4 d8a002c4 arg mem_l2cap_mem_start ,contw 
+4da5 98a67200 isub contw ,loopcnt 
+4da6 20407e3f call clear_mem 
+4da7 2020532a branch l2cap_lpm_load_txbuf 
+
+process_rx_l2cap_pkt:
+4da8 79200025 set1 mark_ext_patch ,mark 
+4da9 448bc022 bpatch patch22_7 ,mem_patch22 
+4daa 18c20400 copy contr ,temp 
+4dab 18420c00 copy temp ,contr 
+4dac e8c10000 ifetch 2 ,contr 
+4dad 600102cd store 2 ,mem_l2cap_rx_pkt_length 
+4dae e8c10000 ifetch 2 ,contr 
+4daf 600102cf store 2 ,mem_l2cap_rx_cid 
+4db0 18c27e00 deposit contr 
+4db1 600102cb store 2 ,mem_l2cap_payload_ptr 
+4db2 6800c7f3 fetch 1 ,memui_reconnect_mode 
+4db3 c0004db5 beq no_reconnection ,l2cap_rx_multiplexing 
+4db4 202050fa branch ml2cap_rx_multiplexing 
+
+l2cap_rx_multiplexing:
+4db5 79200025 set1 mark_ext_patch ,mark 
+4db6 448c4023 bpatch patch23_0 ,mem_patch23 
+4db7 680102cd fetch 2 ,mem_l2cap_rx_pkt_length 
+4db8 203a4dfc branch l2cap_rx_reset_state ,blank 
+4db9 680082cf fetch 1 ,mem_l2cap_rx_cid 
+4dba c000cdc0 beq l2cap_signal_channel ,l2cap_call_proc_signal 
+
+l2cap_rx_multiplexing0:
+4dbb c0284de7 beq l2cap_sdp_channel ,l2cap_call_proc_sdp 
+4dbc c028cdf4 beq l2cap_rfcomm_channel ,l2cap_call_proc_rfcomm 
+4dbd c0294df2 beq l2cap_hid_control_channel ,l2cap_call_proc_hid 
+4dbe c029cdf2 beq l2cap_hid_interrupt_channel ,l2cap_call_proc_hid 
+4dbf 20204dfc branch l2cap_rx_reset_state 
+
+l2cap_call_proc_signal:
+4dc0 2040527a call l2cap_malloc_is_fifo_full 
+4dc1 247a0000 nrtn blank 
+4dc2 7043cd00 jam 0 ,mem_l2cap_pending_item 
+
+l2cap_call_proc_signal0:
+4dc3 204052c4 call l2cap_malloc_signal_channel 
+4dc4 20404e01 call l2cap_process_signal_pkt 
+4dc5 680902d6 fetcht 2 ,mem_l2cap_signal_tx_length 
+4dc6 203a4dfb branch l2cap_call_proc_no_reply ,blank 
+4dc7 204052ce call l2cap_get_signal_tx_buff 
+4dc8 680102d6 fetch 2 ,mem_l2cap_signal_tx_length 
+4dc9 e0a10000 istore 2 ,contw 
+4dca 18007e01 force l2cap_signal_channel ,pdata 
+4dcb e0a10000 istore 2 ,contw 
+4dcc 20204dfc branch l2cap_rx_reset_state 
+
+l2cap_call_proc_sigal_pending:
+4dcd 6800c132 fetch 1 ,mem_device_option 
+4dce c1008000 rtneq dvc_op_hci 
+4dcf 6800c3cd fetch 1 ,mem_l2cap_pending_item 
+4dd0 207a0000 rtn blank 
+4dd1 1fe22200 copy pdata ,rega 
+4dd2 6802033c fetch 4 ,mem_l2cap_sdpres_delay_time 
+4dd3 d8400100 arg 0x100 ,temp 
+4dd4 98408400 iadd temp ,temp 
+4dd5 1c427e00 copy clkn_bt ,pdata 
+4dd6 98467c00 isub temp ,null 
+4dd7 24610000 nrtn positive 
+4dd8 7043cd00 jam 0 ,mem_l2cap_pending_item 
+4dd9 1a227e00 copy rega ,pdata 
+4dda c0284ddc beq l2cap_sdp_channel ,l2cap_sdp_conn_succ 
+4ddb 20203bf1 branch assert 
+
+l2cap_sdp_conn_succ:
+4ddc 204052c4 call l2cap_malloc_signal_channel 
+4ddd 20404e84 call restore_l2cap_req_param 
+4dde 204052d0 call l2cap_get_signal_tx_payload 
+4ddf 20407e1c call save_cont_pointers 
+4de0 20404eb7 call send_connection_sdp_res 
+4de1 204052ce call l2cap_get_signal_tx_buff 
+4de2 5800000c setarg 0x000c 
+4de3 e0a10000 istore 2 ,contw 
+4de4 18007e01 force l2cap_signal_channel ,pdata 
+4de5 e0a10000 istore 2 ,contw 
+4de6 20204dfc branch l2cap_rx_reset_state 
+
+l2cap_call_proc_sdp:
+4de7 2040527e call l2cap_malloc_is_fifo_empty 
+4de8 247a0000 nrtn blank 
+4de9 204052d2 call l2cap_malloc_sdp_channel 
+4dea 20406f72 call sdp_process 
+4deb 204052dc call l2cap_get_sdp_tx_buff 
+4dec 680102dc fetch 2 ,mem_sdp_tx_pkt_length 
+4ded 203a4dfb branch l2cap_call_proc_no_reply ,blank 
+4dee e0a10000 istore 2 ,contw 
+4def 680142b1 fetch 2 ,mem_sdp_remote_cid 
+4df0 e0a10000 istore 2 ,contw 
+4df1 20204dfc branch l2cap_rx_reset_state 
+
+l2cap_call_proc_hid:
+4df2 20404af8 call hid_rx_process 
+4df3 20204dfc branch l2cap_rx_reset_state 
+
+l2cap_call_proc_rfcomm:
+4df4 79200025 set1 mark_ext_patch ,mark 
+4df5 448cc023 bpatch patch23_1 ,mem_patch23 
+4df6 7002eb00 jam rfcomm_malloc_succeed ,mem_rfcomm_malloc_fail_flag 
+4df7 20406bdc call rfcomm_rx_process 
+4df8 680082eb fetch 1 ,mem_rfcomm_malloc_fail_flag 
+4df9 c1008000 rtneq rfcomm_malloc_fail 
+4dfa 20204dfc branch l2cap_rx_reset_state 
+
+l2cap_call_proc_no_reply:
+4dfb 2040526f call l2cap_malloc_discard 
+
+l2cap_rx_reset_state:
+4dfc 58000000 setarg 0 
+4dfd 600102cd store 2 ,mem_l2cap_rx_pkt_length 
+4dfe 600102cf store 2 ,mem_l2cap_rx_cid 
+4dff 7002d101 jam l2cap_rx_done ,mem_l2cap_rx_done 
+4e00 20600000 rtn 
+
+l2cap_process_signal_pkt:
+4e01 79200025 set1 mark_ext_patch ,mark 
+4e02 448d4023 bpatch patch23_2 ,mem_patch23 
+4e03 204052d0 call l2cap_get_signal_tx_payload 
+4e04 18002400 force 0 ,regb 
+4e05 680102cd fetch 2 ,mem_l2cap_rx_pkt_length 
+4e06 1fe22600 copy pdata ,regc 
+4e07 680102cb fetch 2 ,mem_l2cap_payload_ptr 
+4e08 98000c00 iforce contr 
+
+l2cap_process_signal_pkt_loop:
+4e09 20404e11 call l2cap_process_one_signal 
+4e0a 1a627e00 deposit regc 
+4e0b 1a60a7fc increase -4 ,regc 
+4e0c 1fe0fffc increase -4 ,pdata 
+4e0d 243a4e09 nbranch l2cap_process_signal_pkt_loop ,blank 
+4e0e 1a427e00 copy regb ,pdata 
+4e0f 600102d6 store 2 ,mem_l2cap_signal_tx_length 
+4e10 20600000 rtn 
+
+l2cap_process_one_signal:
+4e11 79200025 set1 mark_ext_patch ,mark 
+4e12 448dc023 bpatch patch23_3 ,mem_patch23 
+4e13 e8c08000 ifetch 1 ,contr 
+4e14 c000ce54 beq signal_cmd_reject ,l2cap_proc_signal_cmd_reject 
+4e15 c0014e5c beq signal_connect_req ,l2cap_proc_signal_connect_req 
+4e16 c001cee0 beq signal_connect_rsp ,l2cap_proc_signal_connect_rsp 
+4e17 c0024f0f beq signal_config_req ,l2cap_proc_signal_config_req 
+4e18 c002cfad beq signal_config_rsp ,l2cap_proc_signal_config_rsp 
+4e19 c0034fd5 beq signal_disconnect_req ,l2cap_proc_signal_disconnect_req 
+4e1a c003d024 beq signal_disconnect_rsp ,l2cap_proc_signal_disconnect_rsp 
+4e1b c0045058 beq signal_echo_req ,l2cap_proc_signal_echo_req 
+4e1c c004d068 beq signal_echo_rsp ,l2cap_proc_signal_echo_rsp 
+4e1d c0054e21 beq signal_info_req ,l2cap_proc_signal_info_req 
+4e1e c005d069 beq signal_info_rsp ,l2cap_proc_signal_info_rsp 
+4e1f 2040506a call l2cap_reject_command 
+
+l2cap_process_one_signal_rtn:
+4e20 20600000 rtn 
+
+l2cap_proc_signal_info_req:
+4e21 e8c08000 ifetch 1 ,contr 
+4e22 1fe20e00 copy pdata ,queue 
+4e23 e8c10000 ifetch 2 ,contr 
+4e24 1fe22200 copy pdata ,rega 
+4e25 1a627e00 copy regc ,pdata 
+4e26 9a262600 isub rega ,regc 
+4e27 1a227e00 copy rega ,pdata 
+4e28 98c08c00 iadd contr ,contr 
+4e29 5800000b setarg 0x0b 
+4e2a e0a08000 istore 1 ,contw 
+4e2b 18e27e00 copy queue ,pdata 
+4e2c e0a08000 istore 1 ,contw 
+4e2d 18007e08 force 0x0008 ,pdata 
+4e2e e0a10000 istore 2 ,contw 
+4e2f 18007e02 force 0x0002 ,pdata 
+4e30 e0a10000 istore 2 ,contw 
+4e31 18007e00 force 0x0000 ,pdata 
+4e32 e0a10000 istore 2 ,contw 
+4e33 18007e00 force 0x0400 ,pdata 
+4e34 e0a10000 istore 2 ,contw 
+4e35 18007e00 force 0x0000 ,pdata 
+4e36 e0a10000 istore 2 ,contw 
+4e37 18007e0c force 12 ,pdata 
+4e38 9a40a400 iadd regb ,regb 
+4e39 20204e20 branch l2cap_process_one_signal_rtn 
+
+ml2cap_proc_signal_info_req:
+4e3a e8c08000 ifetch 1 ,contr 
+4e3b 1fe20e00 copy pdata ,queue 
+4e3c e8c10000 ifetch 2 ,contr 
+4e3d 1fe22200 copy pdata ,rega 
+4e3e 1a627e00 copy regc ,pdata 
+4e3f 9a262600 isub rega ,regc 
+4e40 1a227e00 copy rega ,pdata 
+4e41 98c08c00 iadd contr ,contr 
+4e42 204052d0 call l2cap_get_signal_tx_payload 
+4e43 5800000b setarg 0x0b 
+4e44 e0a08000 istore 1 ,contw 
+4e45 18e27e00 copy queue ,pdata 
+4e46 e0a08000 istore 1 ,contw 
+4e47 18007e08 force 0x0008 ,pdata 
+4e48 e0a10000 istore 2 ,contw 
+4e49 18007e02 force 0x0002 ,pdata 
+4e4a e0a10000 istore 2 ,contw 
+4e4b 18007e00 force 0x0000 ,pdata 
+4e4c e0a10000 istore 2 ,contw 
+4e4d 18007e00 force 0x0400 ,pdata 
+4e4e e0a10000 istore 2 ,contw 
+4e4f 18007e00 force 0x0000 ,pdata 
+4e50 e0a10000 istore 2 ,contw 
+4e51 18007e0c force 12 ,pdata 
+4e52 9a40a400 iadd regb ,regb 
+4e53 20204e20 branch l2cap_process_one_signal_rtn 
+
+l2cap_proc_signal_cmd_reject:
+4e54 e8c08000 ifetch 1 ,contr 
+4e55 1fe20e00 copy pdata ,queue 
+4e56 e8c10000 ifetch 2 ,contr 
+4e57 1fe22200 copy pdata ,rega 
+4e58 98c08c00 iadd contr ,contr 
+4e59 1a627e00 copy regc ,pdata 
+4e5a 9a262600 isub rega ,regc 
+
+l2cap_proc_signal_cmd_reject_rtn:
+4e5b 20204e20 branch l2cap_process_one_signal_rtn 
+
+l2cap_proc_signal_connect_req:
+4e5c 20407e1c call save_cont_pointers 
+4e5d 20407e21 call load_cont_pointers 
+4e5e d9000000 arg 0 ,debug 
+4e5f e8c08000 ifetch 1 ,contr 
+4e60 1fe20e00 copy pdata ,queue 
+4e61 e8c10000 ifetch 2 ,contr 
+4e62 1fe22200 copy pdata ,rega 
+4e63 e8c10000 ifetch 2 ,contr 
+4e64 1fe20400 copy pdata ,temp 
+4e65 e8c10000 ifetch 2 ,contr 
+4e66 1fe21600 copy pdata ,timeup 
+4e67 18427e00 copy temp ,pdata 
+4e68 c000ce6e beq psm_sdp ,l2cap_proc_signal_connect_req_sdp 
+4e69 c001ce90 beq psm_rfcomm ,l2cap_proc_signal_connect_req_rfcomm 
+4e6a c008ce9c beq psm_hid_control ,l2cap_proc_signal_connect_req_hid_ctrl 
+4e6b c009cea7 beq psm_hid_interrupt ,l2cap_proc_signal_connect_req_hid_int 
+4e6c 2040506a call l2cap_reject_command 
+4e6d 20204edf branch l2cap_proc_signal_connect_req_rtn 
+
+l2cap_proc_signal_connect_req_sdp:
+4e6e 20407e1c call save_cont_pointers 
+4e6f d8400050 arg l2cap_sdp_channel ,temp 
+4e70 680142b1 fetch 2 ,mem_sdp_remote_cid 
+4e71 243a4ed9 nbranch already_connected ,blank 
+4e72 19627e00 copy timeup ,pdata 
+4e73 600142b1 store 2 ,mem_sdp_remote_cid 
+4e74 1c427e00 copy clkn_bt ,pdata 
+4e75 6002033c store 4 ,mem_l2cap_sdpres_delay_time 
+4e76 20404e78 call store_l2cap_req_param 
+4e77 20204eb3 branch send_connection_pending 
+
+store_l2cap_req_param:
+4e78 6009033a storet 2 ,mem_psm 
+4e79 19627e00 deposit timeup 
+4e7a 60010330 store 2 ,mem_scid 
+4e7b 1a227e00 deposit rega 
+4e7c 60010332 store 2 ,mem_cmd_length 
+4e7d 1a427e00 deposit regb 
+4e7e 60010334 store 2 ,mem_tt2 
+4e7f 1a627e00 deposit regc 
+4e80 60010336 store 2 ,mem_tt3 
+4e81 18e27e00 deposit queue 
+4e82 60010338 store 2 ,mem_id 
+4e83 20600000 rtn 
+
+restore_l2cap_req_param:
+4e84 6809033a fetcht 2 ,mem_psm 
+4e85 68010330 fetch 2 ,mem_scid 
+4e86 1fe21600 copy pdata ,timeup 
+4e87 68010332 fetch 2 ,mem_cmd_length 
+4e88 1fe22200 copy pdata ,rega 
+4e89 68010334 fetch 2 ,mem_tt2 
+4e8a 1fe22400 copy pdata ,regb 
+4e8b 68010336 fetch 2 ,mem_tt3 
+4e8c 1fe22600 copy pdata ,regc 
+4e8d 68010338 fetch 2 ,mem_id 
+4e8e 1fe20e00 copy pdata ,queue 
+4e8f 20600000 rtn 
+
+l2cap_proc_signal_connect_req_rfcomm:
+4e90 20407e1c call save_cont_pointers 
+4e91 58000051 setarg l2cap_rfcomm_channel 
+4e92 d8400051 arg l2cap_rfcomm_channel ,temp 
+4e93 680142b3 fetch 2 ,mem_rfcomm_remote_cid 
+4e94 243a4ed9 nbranch already_connected ,blank 
+4e95 19627e00 copy timeup ,pdata 
+4e96 600142b3 store 2 ,mem_rfcomm_remote_cid 
+4e97 6800c2ba fetch 1 ,mem_rfcomm_state 
+4e98 79207e00 set1 l2cap_channel_state_conn_req ,pdata 
+4e99 79207e01 set1 l2cap_channel_state_conn_res ,pdata 
+4e9a 6000c2ba store 1 ,mem_rfcomm_state 
+4e9b 20204ebb branch send_connection_res 
+
+l2cap_proc_signal_connect_req_hid_ctrl:
+4e9c 20407e1c call save_cont_pointers 
+4e9d d8400052 arg l2cap_hid_control_channel ,temp 
+4e9e 680142b5 fetch 2 ,mem_hid_ctrl_remote_cid 
+4e9f 243a4ed9 nbranch already_connected ,blank 
+4ea0 19627e00 copy timeup ,pdata 
+4ea1 600142b5 store 2 ,mem_hid_ctrl_remote_cid 
+4ea2 6800c2bb fetch 1 ,mem_hid_control_state 
+4ea3 79207e00 set1 l2cap_channel_state_conn_req ,pdata 
+4ea4 79207e01 set1 l2cap_channel_state_conn_res ,pdata 
+4ea5 6000c2bb store 1 ,mem_hid_control_state 
+4ea6 20204ebb branch send_connection_res 
+
+l2cap_proc_signal_connect_req_hid_int:
+4ea7 20407e1c call save_cont_pointers 
+4ea8 1b427e00 deposit clke 
+4ea9 d8400053 arg l2cap_hid_interrupt_channel ,temp 
+4eaa 680142b7 fetch 2 ,mem_hid_int_remote_cid 
+4eab 243a4ed9 nbranch already_connected ,blank 
+4eac 19627e00 copy timeup ,pdata 
+4ead 600142b7 store 2 ,mem_hid_int_remote_cid 
+4eae 6800c2bc fetch 1 ,mem_hid_interrupt_state 
+4eaf 79207e00 set1 l2cap_channel_state_conn_req ,pdata 
+4eb0 79207e01 set1 l2cap_channel_state_conn_res ,pdata 
+4eb1 6000c2bc store 1 ,mem_hid_interrupt_state 
+4eb2 20204ebb branch send_connection_res 
+
+send_connection_pending:
+4eb3 58000001 setarg l2cap_connect_pending 
+4eb4 600102e4 store 2 ,meml2cap_t1 
+4eb5 7043cd50 jam l2cap_sdp_channel ,mem_l2cap_pending_item 
+4eb6 20204ebd branch send_connection_res0 
+
+send_connection_sdp_res:
+4eb7 6800c2b9 fetch 1 ,mem_sdp_state 
+4eb8 79207e00 set1 l2cap_channel_state_conn_req ,pdata 
+4eb9 79207e01 set1 l2cap_channel_state_conn_res ,pdata 
+4eba 6000c2b9 store 1 ,mem_sdp_state 
+
+send_connection_res:
+4ebb 58000000 setarg l2cap_connect_successful 
+4ebc 600102e4 store 2 ,meml2cap_t1 
+
+send_connection_res0:
+4ebd 79200025 set1 mark_ext_patch ,mark 
+4ebe 448e4023 bpatch patch23_4 ,mem_patch23 
+4ebf 20407e21 call load_cont_pointers 
+4ec0 58000003 setarg signal_connect_rsp 
+4ec1 e0a08000 istore 1 ,contw 
+4ec2 18e27e00 copy queue ,pdata 
+4ec3 e0a08000 istore 1 ,contw 
+4ec4 58000008 setarg 0x0008 
+4ec5 e0a10000 istore 2 ,contw 
+4ec6 18427e00 copy temp ,pdata 
+4ec7 e0a10000 istore 2 ,contw 
+4ec8 19627e00 copy timeup ,pdata 
+4ec9 e0a10000 istore 2 ,contw 
+4eca 680102e4 fetch 2 ,meml2cap_t1 
+4ecb c000ced4 beq l2cap_connect_pending ,connect_pending 
+4ecc 290c0000 isolate0 0 ,debug 
+4ecd 2020cecf branch connect_suc ,true 
+4ece 58000004 setarg l2cap_connect_refused_no_resources 
+
+connect_suc:
+4ecf e0a10000 istore 2 ,contw 
+4ed0 18007e00 force 0x0000 ,pdata 
+4ed1 e0a10000 istore 2 ,contw 
+4ed2 5800000c setarg 12 
+4ed3 20204edb branch connect_req_update_byte_counts 
+
+connect_pending:
+4ed4 e0a10000 istore 2 ,contw 
+4ed5 18007e02 force 0x0002 ,pdata 
+4ed6 e0a10000 istore 2 ,contw 
+4ed7 5800000c setarg 12 
+4ed8 20204edb branch connect_req_update_byte_counts 
+
+already_connected:
+4ed9 79201000 set1 0 ,debug 
+4eda 20204ebb branch send_connection_res 
+
+connect_req_update_byte_counts:
+4edb 9a40a400 iadd regb ,regb 
+4edc 1a627e00 copy regc ,pdata 
+4edd 9a262600 isub rega ,regc 
+4ede 20204edf branch l2cap_proc_signal_connect_req_rtn 
+
+l2cap_proc_signal_connect_req_rtn:
+4edf 20204e20 branch l2cap_process_one_signal_rtn 
+
+l2cap_proc_signal_connect_rsp:
+4ee0 e8c08000 ifetch 1 ,contr 
+4ee1 1fe20e00 copy pdata ,queue 
+4ee2 e8c10000 ifetch 2 ,contr 
+4ee3 1fe22200 copy pdata ,rega 
+4ee4 1a627e00 copy regc ,pdata 
+4ee5 9a262600 isub rega ,regc 
+4ee6 e8c10000 ifetch 2 ,contr 
+4ee7 1fe21600 copy pdata ,timeup 
+4ee8 e8c10000 ifetch 2 ,contr 
+4ee9 1fe20400 copy pdata ,temp 
+4eea 58000050 setarg l2cap_sdp_channel 
+4eeb 98467c00 isub temp ,null 
+4eec 2022cef7 branch l2cap_proc_signal_connect_rsp_sdp ,zero 
+4eed 58000051 setarg l2cap_rfcomm_channel 
+4eee 98467c00 isub temp ,null 
+4eef 2022cefd branch l2cap_proc_signal_connect_rsp_rfcomm ,zero 
+4ef0 58000052 setarg l2cap_hid_control_channel 
+4ef1 98467c00 isub temp ,null 
+4ef2 2022cf09 branch l2cap_proc_signal_connect_rsp_hid_ctrl ,zero 
+4ef3 58000053 setarg l2cap_hid_interrupt_channel 
+4ef4 98467c00 isub temp ,null 
+4ef5 2022cf03 branch l2cap_proc_signal_connect_rsp_hid_int ,zero 
+4ef6 20600000 rtn 
+
+l2cap_proc_signal_connect_rsp_sdp:
+4ef7 19627e00 copy timeup ,pdata 
+4ef8 600142b1 store 2 ,mem_sdp_remote_cid 
+4ef9 6800c2b9 fetch 1 ,mem_sdp_state 
+4efa 79207e01 set1 l2cap_channel_state_conn_res ,pdata 
+4efb 6000c2b9 store 1 ,mem_sdp_state 
+4efc 20204e20 branch l2cap_process_one_signal_rtn 
+
+l2cap_proc_signal_connect_rsp_rfcomm:
+4efd 19627e00 copy timeup ,pdata 
+4efe 600142b3 store 2 ,mem_rfcomm_remote_cid 
+4eff 6800c2ba fetch 1 ,mem_rfcomm_state 
+4f00 79207e01 set1 l2cap_channel_state_conn_res ,pdata 
+4f01 6000c2ba store 1 ,mem_rfcomm_state 
+4f02 20600000 rtn 
+
+l2cap_proc_signal_connect_rsp_hid_int:
+4f03 19627e00 copy timeup ,pdata 
+4f04 600142b5 store 2 ,mem_hid_ctrl_remote_cid 
+4f05 6800c2bc fetch 1 ,mem_hid_interrupt_state 
+4f06 79207e01 set1 l2cap_channel_state_conn_res ,pdata 
+4f07 6000c2bc store 1 ,mem_hid_interrupt_state 
+4f08 20600000 rtn 
+
+l2cap_proc_signal_connect_rsp_hid_ctrl:
+4f09 19627e00 copy timeup ,pdata 
+4f0a 600142b7 store 2 ,mem_hid_int_remote_cid 
+4f0b 6800c2bb fetch 1 ,mem_hid_control_state 
+4f0c 79207e01 set1 l2cap_channel_state_conn_res ,pdata 
+4f0d 6000c2bb store 1 ,mem_hid_control_state 
+4f0e 20600000 rtn 
+
+l2cap_proc_signal_config_req:
+4f0f e8c08000 ifetch 1 ,contr 
+4f10 1fe20e00 copy pdata ,queue 
+4f11 e8c10000 ifetch 2 ,contr 
+4f12 1fe22200 copy pdata ,rega 
+4f13 1a627e00 copy regc ,pdata 
+4f14 9a262600 isub rega ,regc 
+4f15 e8c10000 ifetch 2 ,contr 
+4f16 1fe20400 copy pdata ,temp 
+4f17 18422200 copy temp ,rega 
+4f18 58000050 setarg l2cap_sdp_channel 
+4f19 98467c00 isub temp ,null 
+4f1a 2022cf25 branch l2cap_proc_signal_config_req_sdp ,zero 
+4f1b 58000051 setarg l2cap_rfcomm_channel 
+4f1c 98467c00 isub temp ,null 
+4f1d 2022cf43 branch l2cap_proc_signal_config_req_rfcomm ,zero 
+4f1e 58000052 setarg l2cap_hid_control_channel 
+4f1f 98467c00 isub temp ,null 
+4f20 2022cf2f branch l2cap_proc_signal_config_req_hid_ctrl ,zero 
+4f21 58000053 setarg l2cap_hid_interrupt_channel 
+4f22 98467c00 isub temp ,null 
+4f23 2022cf39 branch l2cap_proc_signal_config_req_hid_int ,zero 
+4f24 2020506a branch l2cap_reject_command 
+
+l2cap_proc_signal_config_req_sdp:
+4f25 18a21600 copy contw ,timeup 
+4f26 6800c2b9 fetch 1 ,mem_sdp_state 
+4f27 79207e04 set1 l2cap_channel_state_rcv_cfg_req ,pdata 
+4f28 79207e03 set1 l2cap_channel_state_snd_cfg_res ,pdata 
+4f29 6000c2b9 store 1 ,mem_sdp_state 
+4f2a 19620a00 copy timeup ,contw 
+4f2b d9600050 arg l2cap_sdp_channel ,timeup 
+4f2c 680142b1 fetch 2 ,mem_sdp_remote_cid 
+4f2d 1fe20400 copy pdata ,temp 
+4f2e 20204f4c branch l2cap_send_config_rsp 
+
+l2cap_proc_signal_config_req_hid_ctrl:
+4f2f 18a21600 copy contw ,timeup 
+4f30 6800c2bb fetch 1 ,mem_hid_control_state 
+4f31 79207e04 set1 l2cap_channel_state_rcv_cfg_req ,pdata 
+4f32 79207e03 set1 l2cap_channel_state_snd_cfg_res ,pdata 
+4f33 6000c2bb store 1 ,mem_hid_control_state 
+4f34 19620a00 copy timeup ,contw 
+4f35 d9600052 arg l2cap_hid_control_channel ,timeup 
+4f36 680142b5 fetch 2 ,mem_hid_ctrl_remote_cid 
+4f37 1fe20400 copy pdata ,temp 
+4f38 20204f4c branch l2cap_send_config_rsp 
+
+l2cap_proc_signal_config_req_hid_int:
+4f39 18a21600 copy contw ,timeup 
+4f3a 6800c2bc fetch 1 ,mem_hid_interrupt_state 
+4f3b 79207e04 set1 l2cap_channel_state_rcv_cfg_req ,pdata 
+4f3c 79207e03 set1 l2cap_channel_state_snd_cfg_res ,pdata 
+4f3d 6000c2bc store 1 ,mem_hid_interrupt_state 
+4f3e 19620a00 copy timeup ,contw 
+4f3f d9600053 arg l2cap_hid_interrupt_channel ,timeup 
+4f40 680142b7 fetch 2 ,mem_hid_int_remote_cid 
+4f41 1fe20400 copy pdata ,temp 
+4f42 20204f4c branch l2cap_send_config_rsp 
+
+l2cap_proc_signal_config_req_rfcomm:
+4f43 18a21600 copy contw ,timeup 
+4f44 6800c2ba fetch 1 ,mem_rfcomm_state 
+4f45 79207e04 set1 l2cap_channel_state_rcv_cfg_req ,pdata 
+4f46 79207e03 set1 l2cap_channel_state_snd_cfg_res ,pdata 
+4f47 6000c2ba store 1 ,mem_rfcomm_state 
+4f48 19620a00 copy timeup ,contw 
+4f49 d9600051 arg l2cap_rfcomm_channel ,timeup 
+4f4a 680142b3 fetch 2 ,mem_rfcomm_remote_cid 
+4f4b 1fe20400 copy pdata ,temp 
+
+l2cap_send_config_rsp:
+4f4c 79200025 set1 mark_ext_patch ,mark 
+4f4d 448ec023 bpatch patch23_5 ,mem_patch23 
+4f4e 58000005 setarg signal_config_rsp 
+4f4f e0a08000 istore 1 ,contw 
+4f50 18e27e00 copy queue ,pdata 
+4f51 e0a08000 istore 1 ,contw 
+4f52 58000006 setarg 0x0006 
+4f53 e0a10000 istore 2 ,contw 
+4f54 18427e00 copy temp ,pdata 
+4f55 e0a10000 istore 2 ,contw 
+4f56 18007e00 force 0x00 ,pdata 
+4f57 e0a10000 istore 2 ,contw 
+4f58 18007e00 force l2cap_config_success ,pdata 
+4f59 e0a10000 istore 2 ,contw 
+4f5a 18007e0a force 10 ,pdata 
+4f5b 9a40a400 iadd regb ,regb 
+4f5c 600902e9 storet 2 ,mem_config_req_dest_cid 
+4f5d 18e27e00 copy queue ,pdata 
+4f5e 600082e8 store 1 ,mem_config_identifier 
+4f5f 18007e50 force l2cap_sdp_channel ,pdata 
+4f60 a961fe00 icompare 0xff ,timeup 
+4f61 2020cf63 branch l2cap_send_config_rsp_is_sdp ,true 
+4f62 1fe0fe01 increase 1 ,pdata 
+
+l2cap_send_config_rsp_is_sdp:
+4f63 20600000 rtn 
+
+l2cap_check_channel_state:
+4f64 78547c00 disable user 
+4f65 c3810000 rtnbit1 l2cap_channel_state_snd_cfg_req ,pdata 
+4f66 c4000000 rtnbit0 l2cap_channel_state_conn_req ,pdata 
+4f67 c4008000 rtnbit0 l2cap_channel_state_conn_res ,pdata 
+4f68 79207e02 set1 l2cap_channel_state_snd_cfg_req ,pdata 
+4f69 18c20a00 copy contr ,contw 
+4f6a 18a08bff increase -1 ,contw 
+4f6b e0a08000 istore 1 ,contw 
+4f6c 78347c00 enable user 
+4f6d 20600000 rtn 
+
+l2cap_send_config_req:
+
+l2cap_send_config_req_sdp:
+4f6e 6800c2b9 fetch 1 ,mem_sdp_state 
+4f6f 20404f64 call l2cap_check_channel_state 
+4f70 24344f75 nbranch l2cap_send_config_req_rfcomm ,user 
+4f71 7002e750 jam l2cap_sdp_channel ,mem_send_config_req 
+4f72 680142b1 fetch 2 ,mem_sdp_remote_cid 
+4f73 600102e9 store 2 ,mem_config_req_dest_cid 
+4f74 20204f89 branch l2cap_generate_config_req 
+
+l2cap_send_config_req_rfcomm:
+4f75 6800c2ba fetch 1 ,mem_rfcomm_state 
+4f76 20404f64 call l2cap_check_channel_state 
+4f77 24344f7c nbranch l2cap_send_config_req_hid_ctrl ,user 
+4f78 7002e751 jam l2cap_rfcomm_channel ,mem_send_config_req 
+4f79 680142b3 fetch 2 ,mem_rfcomm_remote_cid 
+4f7a 600102e9 store 2 ,mem_config_req_dest_cid 
+4f7b 20204f89 branch l2cap_generate_config_req 
+
+l2cap_send_config_req_hid_ctrl:
+4f7c 6800c2bb fetch 1 ,mem_hid_control_state 
+4f7d 20404f64 call l2cap_check_channel_state 
+4f7e 24344f83 nbranch l2cap_send_config_req_hid_int ,user 
+4f7f 7002e752 jam l2cap_hid_control_channel ,mem_send_config_req 
+4f80 680142b5 fetch 2 ,mem_hid_ctrl_remote_cid 
+4f81 600102e9 store 2 ,mem_config_req_dest_cid 
+4f82 20204f89 branch l2cap_generate_config_req 
+
+l2cap_send_config_req_hid_int:
+4f83 6800c2bc fetch 1 ,mem_hid_interrupt_state 
+4f84 20404f64 call l2cap_check_channel_state 
+4f85 24740000 nrtn user 
+4f86 7002e753 jam l2cap_hid_interrupt_channel ,mem_send_config_req 
+4f87 680142b7 fetch 2 ,mem_hid_int_remote_cid 
+4f88 600102e9 store 2 ,mem_config_req_dest_cid 
+
+l2cap_generate_config_req:
+4f89 79200025 set1 mark_ext_patch ,mark 
+4f8a 448f4023 bpatch patch23_6 ,mem_patch23 
+4f8b 20405242 call l2cap_get_req_id 
+4f8c 204052c4 call l2cap_malloc_signal_channel 
+4f8d 18002400 force 0 ,regb 
+4f8e 204052d0 call l2cap_get_signal_tx_payload 
+4f8f 18007e04 force signal_config_req ,pdata 
+4f90 e0a08000 istore 1 ,contw 
+4f91 6800c2be fetch 1 ,mem_ml2cap_comm_id 
+4f92 e0a08000 istore 1 ,contw 
+4f93 58000008 setarg 0x0008 
+4f94 e0a10000 istore 2 ,contw 
+4f95 680102e9 fetch 2 ,mem_config_req_dest_cid 
+4f96 e0a10000 istore 2 ,contw 
+4f97 58000000 setarg 0x0000 
+4f98 e0a10000 istore 2 ,contw 
+4f99 18007e01 force 1 ,pdata 
+4f9a e0a08000 istore 1 ,contw 
+4f9b 18007e02 force 2 ,pdata 
+4f9c e0a08000 istore 1 ,contw 
+4f9d 680082e7 fetch 1 ,mem_send_config_req 
+4f9e c028cfa2 beq l2cap_rfcomm_channel ,l2cap_generate_config_req_rfcomm 
+4f9f 58000030 setarg l2cap_config_mtu_sdp 
+4fa0 e0a10000 istore 2 ,contw 
+4fa1 20204fa4 branch l2cap_generate_config_req_done 
+
+l2cap_generate_config_req_rfcomm:
+4fa2 580003e3 setarg l2cap_config_mtu_rfcomm 
+4fa3 e0a10000 istore 2 ,contw 
+
+l2cap_generate_config_req_done:
+4fa4 d840000c arg 0x0c ,temp 
+4fa5 600902d6 storet 2 ,mem_l2cap_signal_tx_length 
+4fa6 204052ce call l2cap_get_signal_tx_buff 
+4fa7 680102d6 fetch 2 ,mem_l2cap_signal_tx_length 
+4fa8 e0a10000 istore 2 ,contw 
+4fa9 18007e01 force l2cap_signal_channel ,pdata 
+4faa e0a10000 istore 2 ,contw 
+4fab 7002e700 jam 0 ,mem_send_config_req 
+
+l2cap_proc_signal_config_req_rtn:
+4fac 20204e20 branch l2cap_process_one_signal_rtn 
+
+l2cap_proc_signal_config_rsp:
+4fad 18c08c01 increase 1 ,contr 
+4fae e8c10000 ifetch 2 ,contr 
+4faf 1fe22200 copy pdata ,rega 
+4fb0 1a627e00 copy regc ,pdata 
+4fb1 9a262600 isub rega ,regc 
+4fb2 e8c10000 ifetch 2 ,contr 
+4fb3 1fe22200 copy pdata ,rega 
+4fb4 58000050 setarg l2cap_sdp_channel 
+4fb5 9a267c00 isub rega ,null 
+4fb6 2022cfc4 branch l2cap_proc_signal_config_rsp_sdp ,zero 
+4fb7 58000051 setarg l2cap_rfcomm_channel 
+4fb8 9a267c00 isub rega ,null 
+4fb9 2022cfc8 branch l2cap_proc_signal_config_rsp_rfcomm ,zero 
+4fba 58000052 setarg l2cap_hid_control_channel 
+4fbb 9a267c00 isub rega ,null 
+4fbc 2022cfcc branch l2cap_proc_signal_config_rsp_hid_ctrl ,zero 
+4fbd 58000053 setarg l2cap_hid_interrupt_channel 
+4fbe 9a267c00 isub rega ,null 
+4fbf 2022cfd0 branch l2cap_proc_signal_config_rsp_hid_int ,zero 
+4fc0 18c08c02 increase 2 ,contr 
+4fc1 e8c10000 ifetch 2 ,contr 
+4fc2 98007c00 iforce null 
+4fc3 20204e20 branch l2cap_process_one_signal_rtn 
+
+l2cap_proc_signal_config_rsp_sdp:
+4fc4 6800c2b9 fetch 1 ,mem_sdp_state 
+4fc5 79207e05 set1 l2cap_channel_state_rcv_cfg_res ,pdata 
+4fc6 6000c2b9 store 1 ,mem_sdp_state 
+4fc7 20204e20 branch l2cap_process_one_signal_rtn 
+
+l2cap_proc_signal_config_rsp_rfcomm:
+4fc8 6800c2ba fetch 1 ,mem_rfcomm_state 
+4fc9 79207e05 set1 l2cap_channel_state_rcv_cfg_res ,pdata 
+4fca 6000c2ba store 1 ,mem_rfcomm_state 
+4fcb 20204e20 branch l2cap_process_one_signal_rtn 
+
+l2cap_proc_signal_config_rsp_hid_ctrl:
+4fcc 6800c2bb fetch 1 ,mem_hid_control_state 
+4fcd 79207e05 set1 l2cap_channel_state_rcv_cfg_res ,pdata 
+4fce 6000c2bb store 1 ,mem_hid_control_state 
+4fcf 20204e20 branch l2cap_process_one_signal_rtn 
+
+l2cap_proc_signal_config_rsp_hid_int:
+4fd0 6800c2bc fetch 1 ,mem_hid_interrupt_state 
+4fd1 79207e05 set1 l2cap_channel_state_rcv_cfg_res ,pdata 
+4fd2 6000c2bc store 1 ,mem_hid_interrupt_state 
+4fd3 700b7d06 jam bt_evt_hid_connected ,mem_fifo_temp 
+4fd4 20207c27 branch ui_ipc_send_event 
+
+l2cap_proc_signal_disconnect_req:
+4fd5 e8c08000 ifetch 1 ,contr 
+4fd6 1fe20e00 copy pdata ,queue 
+4fd7 e8c10000 ifetch 2 ,contr 
+4fd8 1fe22200 copy pdata ,rega 
+4fd9 1a627e00 copy regc ,pdata 
+4fda 9a262600 isub rega ,regc 
+4fdb e8c10000 ifetch 2 ,contr 
+4fdc 1fe22200 copy pdata ,rega 
+4fdd e8c10000 ifetch 2 ,contr 
+4fde 1fe21600 copy pdata ,timeup 
+4fdf 1a220400 copy rega ,temp 
+4fe0 20407e1c call save_cont_pointers 
+4fe1 58000050 setarg l2cap_sdp_channel 
+4fe2 98467c00 isub temp ,null 
+4fe3 2022cffb branch l2cap_proc_signal_disconnect_req_sdp ,zero 
+4fe4 58000051 setarg l2cap_rfcomm_channel 
+4fe5 98467c00 isub temp ,null 
+4fe6 2022d00b branch l2cap_proc_signal_disconnect_req_rfcomm ,zero 
+4fe7 58000052 setarg l2cap_hid_control_channel 
+4fe8 98467c00 isub temp ,null 
+4fe9 2022cfef branch l2cap_proc_signal_disconnect_req_hid_ctrl ,zero 
+4fea 58000053 setarg l2cap_hid_interrupt_channel 
+4feb 98467c00 isub temp ,null 
+4fec 2022cff5 branch l2cap_proc_signal_disconnect_req_hid_int ,zero 
+4fed 2040506a call l2cap_reject_command 
+4fee 20205020 branch l2cap_proc_signal_disconnect_req_err_rtn 
+
+l2cap_proc_signal_disconnect_req_hid_ctrl:
+4fef 19620400 copy timeup ,temp 
+4ff0 680142b5 fetch 2 ,mem_hid_ctrl_remote_cid 
+4ff1 98467c00 isub temp ,null 
+4ff2 2022d001 branch l2cap_disconnect_hid_control_now ,zero 
+4ff3 2040506a call l2cap_reject_command 
+4ff4 20205020 branch l2cap_proc_signal_disconnect_req_err_rtn 
+
+l2cap_proc_signal_disconnect_req_hid_int:
+4ff5 19620400 copy timeup ,temp 
+4ff6 680142b7 fetch 2 ,mem_hid_int_remote_cid 
+4ff7 98467c00 isub temp ,null 
+4ff8 2022d003 branch l2cap_disconnect_hid_interrupt_now ,zero 
+4ff9 2040506a call l2cap_reject_command 
+4ffa 20205020 branch l2cap_proc_signal_disconnect_req_err_rtn 
+
+l2cap_proc_signal_disconnect_req_sdp:
+4ffb 19620400 copy timeup ,temp 
+4ffc 680142b1 fetch 2 ,mem_sdp_remote_cid 
+4ffd 98467c00 isub temp ,null 
+4ffe 2022d007 branch l2cap_disconnect_sdp_now ,zero 
+4fff 2040506a call l2cap_reject_command 
+5000 20205020 branch l2cap_proc_signal_disconnect_req_err_rtn 
+
+l2cap_disconnect_hid_control_now:
+5001 20405081 call l2cap_reset_hid_ctrl_state 
+5002 20205013 branch l2cap_send_disconnect_rsp_pkt 
+
+l2cap_disconnect_hid_interrupt_now:
+5003 20405087 call l2cap_reset_hid_int_state 
+5004 680142b5 fetch 2 ,mem_hid_ctrl_remote_cid 
+5005 203a5013 branch l2cap_send_disconnect_rsp_pkt ,blank 
+5006 20205013 branch l2cap_send_disconnect_rsp_pkt 
+
+l2cap_disconnect_sdp_now:
+5007 2040507c call l2cap_reset_sdp_channel_state 
+5008 680082ef fetch 1 ,mem_upper_sm_ss 
+5009 243a5013 nbranch l2cap_send_disconnect_rsp_pkt ,blank 
+500a 20205013 branch l2cap_send_disconnect_rsp_pkt 
+
+l2cap_proc_signal_disconnect_req_rfcomm:
+500b 19620400 copy timeup ,temp 
+500c 680142b3 fetch 2 ,mem_rfcomm_remote_cid 
+500d 98467c00 isub temp ,null 
+500e 2022d011 branch l2cap_disconnect_rfcomm_now ,zero 
+500f 2040506a call l2cap_reject_command 
+5010 20205020 branch l2cap_proc_signal_disconnect_req_err_rtn 
+
+l2cap_disconnect_rfcomm_now:
+5011 20405077 call l2cap_reset_rfcomm_channel_state 
+5012 20205013 branch l2cap_send_disconnect_rsp_pkt 
+
+l2cap_send_disconnect_rsp_pkt:
+5013 20407e21 call load_cont_pointers 
+5014 58000007 setarg signal_disconnect_rsp 
+5015 e0a08000 istore 1 ,contw 
+5016 18e27e00 copy queue ,pdata 
+5017 e0a08000 istore 1 ,contw 
+5018 58000004 setarg 0x0004 
+5019 e0a10000 istore 2 ,contw 
+501a 1a227e00 copy rega ,pdata 
+501b e0a10000 istore 2 ,contw 
+501c 19627e00 copy timeup ,pdata 
+501d e0a10000 istore 2 ,contw 
+501e 18007e08 force 8 ,pdata 
+501f 20205022 branch l2cap_proc_signal_disconnect_req_rtn 
+
+l2cap_proc_signal_disconnect_req_err_rtn:
+5020 20407e21 call load_cont_pointers 
+5021 20205022 branch l2cap_proc_signal_disconnect_req_rtn 
+
+l2cap_proc_signal_disconnect_req_rtn:
+5022 9a40a400 iadd regb ,regb 
+5023 20204e20 branch l2cap_process_one_signal_rtn 
+
+l2cap_proc_signal_disconnect_rsp:
+5024 e8c08000 ifetch 1 ,contr 
+5025 1fe20e00 copy pdata ,queue 
+5026 e8c10000 ifetch 2 ,contr 
+5027 1fe22200 copy pdata ,rega 
+5028 1a627e00 copy regc ,pdata 
+5029 9a262600 isub rega ,regc 
+502a e8c10000 ifetch 2 ,contr 
+502b 1fe21600 copy pdata ,timeup 
+502c e8c10000 ifetch 2 ,contr 
+502d 1fe20400 copy pdata ,temp 
+502e 20407e1c call save_cont_pointers 
+502f 58000050 setarg l2cap_sdp_channel 
+5030 98467c00 isub temp ,null 
+5031 2022d03d branch l2cap_proc_signal_disconnect_rsp_sdp ,zero 
+5032 58000051 setarg l2cap_rfcomm_channel 
+5033 98467c00 isub temp ,null 
+5034 2022d043 branch l2cap_proc_signal_disconnect_rsp_rfcomm ,zero 
+5035 58000052 setarg l2cap_hid_control_channel 
+5036 98467c00 isub temp ,null 
+5037 2022d049 branch l2cap_proc_signal_disconnect_rsp_hid_ctrl ,zero 
+5038 58000053 setarg l2cap_hid_interrupt_channel 
+5039 98467c00 isub temp ,null 
+503a 2022d04f branch l2cap_proc_signal_disconnect_rsp_hid_int ,zero 
+503b 2040506a call l2cap_reject_command 
+503c 20205057 branch l2cap_proc_signal_disconnect_rsp_err_rtn 
+
+l2cap_proc_signal_disconnect_rsp_sdp:
+503d 18422200 copy temp ,rega 
+503e 19620400 copy timeup ,temp 
+503f 680142b1 fetch 2 ,mem_sdp_remote_cid 
+5040 98467c00 isub temp ,null 
+5041 2042d07c call l2cap_reset_sdp_channel_state ,zero 
+5042 20205055 branch l2cap_proc_signal_disconnect_rsp_rtn 
+
+l2cap_proc_signal_disconnect_rsp_rfcomm:
+5043 18422200 copy temp ,rega 
+5044 19620400 copy timeup ,temp 
+5045 680142b3 fetch 2 ,mem_rfcomm_remote_cid 
+5046 98467c00 isub temp ,null 
+5047 2042d077 call l2cap_reset_rfcomm_channel_state ,zero 
+5048 20205055 branch l2cap_proc_signal_disconnect_rsp_rtn 
+
+l2cap_proc_signal_disconnect_rsp_hid_ctrl:
+5049 18422200 copy temp ,rega 
+504a 19620400 copy timeup ,temp 
+504b 680142b5 fetch 2 ,mem_hid_ctrl_remote_cid 
+504c 98467c00 isub temp ,null 
+504d 2042d081 call l2cap_reset_hid_ctrl_state ,zero 
+504e 20205055 branch l2cap_proc_signal_disconnect_rsp_rtn 
+
+l2cap_proc_signal_disconnect_rsp_hid_int:
+504f 18422200 copy temp ,rega 
+5050 19620400 copy timeup ,temp 
+5051 680142b7 fetch 2 ,mem_hid_int_remote_cid 
+5052 98467c00 isub temp ,null 
+5053 2042d087 call l2cap_reset_hid_int_state ,zero 
+5054 20205055 branch l2cap_proc_signal_disconnect_rsp_rtn 
+
+l2cap_proc_signal_disconnect_rsp_rtn:
+5055 20407e21 call load_cont_pointers 
+5056 20204e20 branch l2cap_process_one_signal_rtn 
+
+l2cap_proc_signal_disconnect_rsp_err_rtn:
+5057 20204e20 branch l2cap_process_one_signal_rtn 
+
+l2cap_proc_signal_echo_req:
+5058 e8c08000 ifetch 1 ,contr 
+5059 1fe20e00 copy pdata ,queue 
+505a e8c10000 ifetch 2 ,contr 
+505b 1fe22200 copy pdata ,rega 
+505c 98c08c00 iadd contr ,contr 
+505d 58000009 setarg 9 
+505e e0a08000 istore 1 ,contw 
+505f 18e27e00 copy queue ,pdata 
+5060 e0a08000 istore 1 ,contw 
+5061 18007e00 force 0x0000 ,pdata 
+5062 e0a10000 istore 2 ,contw 
+5063 18007e04 force 4 ,pdata 
+5064 9a40a400 iadd regb ,regb 
+5065 1a627e00 copy regc ,pdata 
+5066 9a262600 isub rega ,regc 
+5067 20204e20 branch l2cap_process_one_signal_rtn 
+
+l2cap_proc_signal_echo_rsp:
+5068 20204e20 branch l2cap_process_one_signal_rtn 
+
+l2cap_proc_signal_info_rsp:
+5069 20204e20 branch l2cap_process_one_signal_rtn 
+
+l2cap_reject_command:
+506a 18002400 force 0 ,regb 
+506b 204052d0 call l2cap_get_signal_tx_payload 
+506c 58000001 setarg signal_cmd_reject 
+506d e0a08000 istore 1 ,contw 
+506e 18e27e00 copy queue ,pdata 
+506f e0a08000 istore 1 ,contw 
+5070 58000002 setarg 2 
+5071 e0a10000 istore 2 ,contw 
+5072 58000000 setarg cmd_not_understood 
+5073 e0a10000 istore 2 ,contw 
+5074 1a40a406 increase 6 ,regb 
+5075 da600004 arg 4 ,regc 
+5076 20204e20 branch l2cap_process_one_signal_rtn 
+
+l2cap_reset_rfcomm_channel_state:
+5077 58000000 setarg 0 
+5078 600102e2 store 2 ,mem_rfcomm_tx_pkt_length 
+5079 600142b3 store 2 ,mem_rfcomm_remote_cid 
+507a 7042ba00 jam 0 ,mem_rfcomm_state 
+507b 20600000 rtn 
+
+l2cap_reset_sdp_channel_state:
+507c 58000000 setarg 0 
+507d 600102dc store 2 ,mem_sdp_tx_pkt_length 
+507e 600142b1 store 2 ,mem_sdp_remote_cid 
+507f 7042b900 jam 0 ,mem_sdp_state 
+5080 20600000 rtn 
+
+l2cap_reset_hid_ctrl_state:
+5081 58000000 setarg 0 
+5082 600142b5 store 2 ,mem_hid_ctrl_remote_cid 
+5083 7042bb00 jam 0 ,mem_hid_control_state 
+5084 6800c2bc fetch 1 ,mem_hid_interrupt_state 
+5085 c000508d beq 0 ,l2cap_reset_hid_disconnected 
+5086 20600000 rtn 
+
+l2cap_reset_hid_int_state:
+5087 58000000 setarg 0 
+5088 600142b7 store 2 ,mem_hid_int_remote_cid 
+5089 7042bc00 jam 0 ,mem_hid_interrupt_state 
+508a 6800c2bb fetch 1 ,mem_hid_control_state 
+508b c000508d beq 0 ,l2cap_reset_hid_disconnected 
+508c 20600000 rtn 
+
+l2cap_reset_hid_disconnected:
+508d 700b7d07 jam bt_evt_hid_disconnected ,mem_fifo_temp 
+508e 20207c27 branch ui_ipc_send_event 
+
+l2cap_disconnect_interrupt_req:
+508f 680082e6 fetch 1 ,mem_control_tasks 
+5090 793ffe00 set0 l2cap_disconnect_interrupt ,pdata 
+5091 600082e6 store 1 ,mem_control_tasks 
+5092 680142b7 fetch 2 ,mem_hid_int_remote_cid 
+5093 207a0000 rtn blank 
+5094 204052c4 call l2cap_malloc_signal_channel 
+5095 680142b7 fetch 2 ,mem_hid_int_remote_cid 
+5096 1fe22200 copy pdata ,rega 
+5097 18002453 force l2cap_hid_interrupt_channel ,regb 
+5098 202050a2 branch l2cap_generate_disconnect_req 
+
+l2cap_disconnect_control_req:
+5099 680082e6 fetch 1 ,mem_control_tasks 
+509a 793ffe07 set0 l2cap_disconnect_control ,pdata 
+509b 600082e6 store 1 ,mem_control_tasks 
+509c 680142b5 fetch 2 ,mem_hid_ctrl_remote_cid 
+509d 207a0000 rtn blank 
+509e 204052c4 call l2cap_malloc_signal_channel 
+509f 680142b5 fetch 2 ,mem_hid_ctrl_remote_cid 
+50a0 1fe22200 copy pdata ,rega 
+50a1 18002452 force l2cap_hid_control_channel ,regb 
+
+l2cap_generate_disconnect_req:
+50a2 20405242 call l2cap_get_req_id 
+50a3 204052d0 call l2cap_get_signal_tx_payload 
+50a4 18007e06 force signal_disconnect_req ,pdata 
+50a5 e0a08000 istore 1 ,contw 
+50a6 6800c2be fetch 1 ,mem_ml2cap_comm_id 
+50a7 e0a08000 istore 1 ,contw 
+50a8 58000004 setarg 0x0004 
+50a9 e0a10000 istore 2 ,contw 
+50aa 1a227e00 copy rega ,pdata 
+50ab e0a10000 istore 2 ,contw 
+50ac 1a427e00 copy regb ,pdata 
+50ad e0a10000 istore 2 ,contw 
+50ae 18000408 force 0x08 ,temp 
+50af 202050e9 branch ml2cap_send_signal 
+
+ml2cap_send_signal_connect_req:
+50b0 79200025 set1 mark_ext_patch ,mark 
+50b1 448fc023 bpatch patch23_7 ,mem_patch23 
+50b2 20405242 call l2cap_get_req_id 
+50b3 204052d0 call l2cap_get_signal_tx_payload 
+50b4 58000002 setarg signal_connect_req 
+50b5 e0a08000 istore 1 ,contw 
+50b6 6800c2be fetch 1 ,mem_ml2cap_comm_id 
+50b7 e0a08000 istore 1 ,contw 
+50b8 58000004 setarg 0x0004 
+50b9 e0a10000 istore 2 ,contw 
+50ba 18427e00 copy temp ,pdata 
+50bb e0a10000 istore 2 ,contw 
+50bc 19627e00 copy timeup ,pdata 
+50bd e0a10000 istore 2 ,contw 
+50be d8400008 arg 8 ,temp 
+50bf 202050e9 branch ml2cap_send_signal 
+
+ml2cap_send_signal_config_req:
+50c0 79200025 set1 mark_ext_patch ,mark 
+50c1 44904024 bpatch patch24_0 ,mem_patch24 
+50c2 20405242 call l2cap_get_req_id 
+50c3 204052d0 call l2cap_get_signal_tx_payload 
+50c4 58000004 setarg signal_config_req 
+50c5 e0a08000 istore 1 ,contw 
+50c6 6800c2be fetch 1 ,mem_ml2cap_comm_id 
+50c7 e0a08000 istore 1 ,contw 
+50c8 58000008 setarg 0x0008 
+50c9 e0a10000 istore 2 ,contw 
+50ca 18427e00 copy temp ,pdata 
+50cb e0a10000 istore 2 ,contw 
+50cc 58000000 setarg 0x0000 
+50cd e0a10000 istore 2 ,contw 
+50ce 58000001 setarg 0x01 
+50cf e0a08000 istore 1 ,contw 
+50d0 58000002 setarg 0x02 
+50d1 e0a08000 istore 1 ,contw 
+50d2 580003e3 setarg l2cap_config_mtu_rfcomm 
+50d3 e0a10000 istore 2 ,contw 
+50d4 d840000c arg 0xc ,temp 
+50d5 202050e9 branch ml2cap_send_signal 
+
+ml2cap_send_signal_disconn_req:
+50d6 79200025 set1 mark_ext_patch ,mark 
+50d7 4490c024 bpatch patch24_1 ,mem_patch24 
+50d8 20405242 call l2cap_get_req_id 
+50d9 204052d0 call l2cap_get_signal_tx_payload 
+50da 58000006 setarg signal_disconnect_req 
+50db e0a08000 istore 1 ,contw 
+50dc 6800c2be fetch 1 ,mem_ml2cap_comm_id 
+50dd 1fe0fe01 increase 1 ,pdata 
+50de 18a22200 copy contw ,rega 
+50df 6000c2be store 1 ,mem_ml2cap_comm_id 
+50e0 1a220a00 copy rega ,contw 
+50e1 e0a08000 istore 1 ,contw 
+50e2 58000004 setarg 0x0004 
+50e3 e0a10000 istore 2 ,contw 
+50e4 18427e00 copy temp ,pdata 
+50e5 e0a10000 istore 2 ,contw 
+50e6 19627e00 copy timeup ,pdata 
+50e7 e0a10000 istore 2 ,contw 
+50e8 d8400008 arg 0x8 ,temp 
+
+ml2cap_send_signal:
+50e9 600902d6 storet 2 ,mem_l2cap_signal_tx_length 
+50ea 18427e00 copy temp ,pdata 
+50eb 203a526f branch l2cap_malloc_discard ,blank 
+50ec 204052ce call l2cap_get_signal_tx_buff 
+50ed 680102d6 fetch 2 ,mem_l2cap_signal_tx_length 
+50ee e0a10000 istore 2 ,contw 
+50ef 18007e01 force l2cap_signal_channel ,pdata 
+50f0 e0a10000 istore 2 ,contw 
+50f1 20600000 rtn 
+
+msdp_send_req_done:
+50f2 680102dc fetch 2 ,mem_sdp_tx_pkt_length 
+50f3 203a3bf1 branch assert ,blank 
+50f4 204052dc call l2cap_get_sdp_tx_buff 
+50f5 680102dc fetch 2 ,mem_sdp_tx_pkt_length 
+50f6 e0a10000 istore 2 ,contw 
+50f7 680142b1 fetch 2 ,mem_sdp_remote_cid 
+50f8 e0a10000 istore 2 ,contw 
+50f9 20600000 rtn 
+
+ml2cap_rx_multiplexing:
+50fa 79200025 set1 mark_ext_patch ,mark 
+50fb 44914024 bpatch patch24_2 ,mem_patch24 
+50fc 680102cd fetch 2 ,mem_l2cap_rx_pkt_length 
+50fd 203a4dfc branch l2cap_rx_reset_state ,blank 
+50fe 680082cf fetch 1 ,mem_l2cap_rx_cid 
+50ff c000d105 beq l2cap_signal_channel ,ml2cap_call_proc_signal 
+5100 c0284de7 beq l2cap_sdp_channel ,l2cap_call_proc_sdp 
+5101 c028cdf4 beq l2cap_rfcomm_channel ,l2cap_call_proc_rfcomm 
+5102 c0294df2 beq l2cap_hid_control_channel ,l2cap_call_proc_hid 
+5103 c029cdf2 beq l2cap_hid_interrupt_channel ,l2cap_call_proc_hid 
+5104 20204dfc branch l2cap_rx_reset_state 
+
+ml2cap_call_proc_signal:
+5105 79200025 set1 mark_ext_patch ,mark 
+5106 4491c024 bpatch patch24_3 ,mem_patch24 
+5107 204052c4 call l2cap_malloc_signal_channel 
+5108 18002400 force 0 ,regb 
+5109 204052d0 call l2cap_get_signal_tx_payload 
+510a 1fe20a00 copy pdata ,contw 
+510b 680102cd fetch 2 ,mem_l2cap_rx_pkt_length 
+510c 1fe22600 copy pdata ,regc 
+510d 680102cb fetch 2 ,mem_l2cap_payload_ptr 
+510e 98000c00 iforce contr 
+
+ml2cap_proc_one_comm_loop:
+510f 20405115 call ml2cap_proc_one_comm 
+5110 1a60a7fc increase -4 ,regc 
+5111 2422d10f nbranch ml2cap_proc_one_comm_loop ,zero 
+5112 1a420400 copy regb ,temp 
+5113 204050e9 call ml2cap_send_signal 
+5114 20204dfc branch l2cap_rx_reset_state 
+
+ml2cap_proc_one_comm:
+5115 e8c08000 ifetch 1 ,contr 
+5116 c0015120 beq signal_connect_req ,ml2cap_proc_signal_connect_req 
+5117 c000d123 beq signal_cmd_reject ,ml2cap_proc_signal_cmd_reject 
+5118 c001d12d beq signal_connect_rsp ,ml2cap_proc_signal_connect_rsp 
+5119 c002d168 beq signal_config_rsp ,ml2cap_proc_signal_config_rsp 
+511a c0025199 beq signal_config_req ,ml2cap_proc_signal_config_req 
+511b c003d21c beq signal_disconnect_rsp ,ml2cap_proc_signal_disconn_rsp 
+511c c00351eb beq signal_disconnect_req ,ml2cap_proc_signal_disconn_req 
+511d c0045058 beq signal_echo_req ,l2cap_proc_signal_echo_req 
+511e c0054e3a beq signal_info_req ,ml2cap_proc_signal_info_req 
+511f 20205236 branch ml2cap_proc_send_reject 
+
+ml2cap_proc_signal_connect_req:
+5120 20407e1c call save_cont_pointers 
+5121 20407e21 call load_cont_pointers 
+5122 20204e5c branch l2cap_proc_signal_connect_req 
+
+ml2cap_proc_signal_cmd_reject:
+5123 e8c08000 ifetch 1 ,contr 
+5124 1fe20e00 copy pdata ,queue 
+5125 e8c10000 ifetch 2 ,contr 
+5126 1fe22200 copy pdata ,rega 
+5127 1a627e00 copy regc ,pdata 
+5128 9a262600 isub rega ,regc 
+
+mvptr:
+5129 e8c08000 ifetch 1 ,contr 
+512a 1a20a3ff increase -1 ,rega 
+512b 2422d129 nbranch mvptr ,zero 
+512c 20600000 rtn 
+
+ml2cap_proc_signal_connect_rsp:
+512d e8c08000 ifetch 1 ,contr 
+512e 1fe20e00 copy pdata ,queue 
+512f e8c10000 ifetch 2 ,contr 
+5130 1fe22200 copy pdata ,rega 
+5131 e8c10000 ifetch 2 ,contr 
+5132 1fe21600 copy pdata ,timeup 
+5133 e8c10000 ifetch 2 ,contr 
+5134 1fe20400 copy pdata ,temp 
+5135 e8c10000 ifetch 2 ,contr 
+5136 1fe67c00 sub pdata ,0 ,null 
+5137 2022d13f branch ml2cap_proc_signal_connect_rsp_sucessful ,zero 
+5138 c001513b beq l2cap_connect_refused_psm_unsupported ,ml2cap_proc_signal_connect_refused_result 
+5139 c002513b beq l2cap_connect_refused_no_resources ,ml2cap_proc_signal_connect_refused_result 
+513a 2020513d branch ml2cap_proc_signal_connect_rsp_mnosucc 
+
+ml2cap_proc_signal_connect_refused_result:
+513b 700b7d16 jam bt_evt_ml2cap_conn_refused ,mem_fifo_temp 
+513c 20407c27 call ui_ipc_send_event 
+
+ml2cap_proc_signal_connect_rsp_mnosucc:
+513d e8c10000 ifetch 2 ,contr 
+513e 20205165 branch mnosucc 
+
+ml2cap_proc_signal_connect_rsp_sucessful:
+513f 20407e1c call save_cont_pointers 
+5140 58000050 setarg l2cap_sdp_channel 
+5141 98467c00 isub temp ,null 
+5142 2022d14d branch ml2cap_proc_signal_connect_rsp_sdp ,zero 
+5143 58000051 setarg l2cap_rfcomm_channel 
+5144 98467c00 isub temp ,null 
+5145 2022d153 branch ml2cap_proc_signal_connect_rsp_rfcomm ,zero 
+5146 58000053 setarg l2cap_hid_interrupt_channel 
+5147 98467c00 isub temp ,null 
+5148 2022d15f branch ml2cap_proc_signal_connect_rsp_hid_int ,zero 
+5149 58000052 setarg l2cap_hid_control_channel 
+514a 98467c00 isub temp ,null 
+514b 2022d159 branch ml2cap_proc_signal_connect_rsp_hid_ctrl ,zero 
+514c 20205165 branch mnosucc 
+
+ml2cap_proc_signal_connect_rsp_sdp:
+514d 19627e00 copy timeup ,pdata 
+514e 600142b1 store 2 ,mem_sdp_remote_cid 
+514f 6800c2b9 fetch 1 ,mem_sdp_state 
+5150 79207e01 set1 l2cap_channel_state_conn_res 
+5151 6000c2b9 store 1 ,mem_sdp_state 
+5152 20205164 branch mnosucc1 
+
+ml2cap_proc_signal_connect_rsp_rfcomm:
+5153 19627e00 copy timeup ,pdata 
+5154 600142b3 store 2 ,mem_rfcomm_remote_cid 
+5155 6800c2ba fetch 1 ,mem_rfcomm_state 
+5156 79207e01 set1 l2cap_channel_state_conn_res 
+5157 6000c2ba store 1 ,mem_rfcomm_state 
+5158 20205164 branch mnosucc1 
+
+ml2cap_proc_signal_connect_rsp_hid_ctrl:
+5159 19627e00 copy timeup ,pdata 
+515a 600142b5 store 2 ,mem_hid_ctrl_remote_cid 
+515b 6800c2bb fetch 1 ,mem_hid_control_state 
+515c 79207e01 set1 l2cap_channel_state_conn_res 
+515d 6000c2bb store 1 ,mem_hid_control_state 
+515e 20205164 branch mnosucc1 
+
+ml2cap_proc_signal_connect_rsp_hid_int:
+515f 19627e00 copy timeup ,pdata 
+5160 600142b7 store 2 ,mem_hid_int_remote_cid 
+5161 6800c2bc fetch 1 ,mem_hid_interrupt_state 
+5162 79207e01 set1 l2cap_channel_state_conn_res 
+5163 6000c2bc store 1 ,mem_hid_interrupt_state 
+
+mnosucc1:
+5164 20407e21 call load_cont_pointers 
+
+mnosucc:
+5165 1a627e00 copy regc ,pdata 
+5166 9a262600 isub rega ,regc 
+5167 20600000 rtn 
+
+ml2cap_proc_signal_config_rsp:
+5168 e8c08000 ifetch 1 ,contr 
+5169 1fe20e00 copy pdata ,queue 
+516a e8c10000 ifetch 2 ,contr 
+516b 1fe22200 copy pdata ,rega 
+516c 1a627e00 copy regc ,pdata 
+516d 9a262600 isub rega ,regc 
+516e e8c10000 ifetch 2 ,contr 
+516f 1fe21600 copy pdata ,timeup 
+5170 e8c10000 ifetch 2 ,contr 
+5171 e8c10000 ifetch 2 ,contr 
+5172 243a5193 nbranch mcrsdone1 ,blank 
+5173 20407e1c call save_cont_pointers 
+5174 19620400 copy timeup ,temp 
+5175 58000050 setarg l2cap_sdp_channel 
+5176 98467c00 isub temp ,null 
+5177 2022d181 branch ml2cap_proc_signal_config_rsp_sdp ,zero 
+5178 58000051 setarg l2cap_rfcomm_channel 
+5179 98467c00 isub temp ,null 
+517a 2022d185 branch ml2cap_proc_signal_config_rsp_rfcomm ,zero 
+517b 58000052 setarg l2cap_hid_control_channel 
+517c 98467c00 isub temp ,null 
+517d 2022d189 branch ml2cap_proc_signal_config_rsp_hid_ctrl ,zero 
+517e 58000053 setarg l2cap_hid_interrupt_channel 
+517f 98467c00 isub temp ,null 
+5180 2022d18d branch ml2cap_proc_signal_config_rsp_hid_int ,zero 
+
+ml2cap_proc_signal_config_rsp_sdp:
+5181 6800c2b9 fetch 1 ,mem_sdp_state 
+5182 79207e05 set1 l2cap_channel_state_rcv_cfg_res 
+5183 6000c2b9 store 1 ,mem_sdp_state 
+5184 20600000 rtn 
+
+ml2cap_proc_signal_config_rsp_rfcomm:
+5185 6800c2ba fetch 1 ,mem_rfcomm_state 
+5186 79207e05 set1 l2cap_channel_state_rcv_cfg_res 
+5187 6000c2ba store 1 ,mem_rfcomm_state 
+5188 20600000 rtn 
+
+ml2cap_proc_signal_config_rsp_hid_ctrl:
+5189 6800c2bb fetch 1 ,mem_hid_control_state 
+518a 79207e05 set1 l2cap_channel_state_rcv_cfg_res 
+518b 6000c2bb store 1 ,mem_hid_control_state 
+518c 20600000 rtn 
+
+ml2cap_proc_signal_config_rsp_hid_int:
+518d 6800c2bc fetch 1 ,mem_hid_interrupt_state 
+518e 79207e05 set1 l2cap_channel_state_rcv_cfg_res 
+518f 6000c2bc store 1 ,mem_hid_interrupt_state 
+5190 700b7d06 jam bt_evt_hid_connected ,mem_fifo_temp 
+5191 20207c27 branch ui_ipc_send_event 
+
+mcfrsdone:
+5192 20407e21 call load_cont_pointers 
+
+mcrsdone1:
+5193 1a20a3fa increase -6 ,rega 
+
+mloop2:
+5194 2022d198 branch mcrsdone ,zero 
+5195 18c08c01 increase 1 ,contr 
+5196 1a20a3ff increase -1 ,rega 
+5197 20205194 branch mloop2 
+
+mcrsdone:
+5198 20600000 rtn 
+
+ml2cap_proc_signal_config_req:
+5199 e8c08000 ifetch 1 ,contr 
+519a 1fe20e00 copy pdata ,queue 
+519b e8c10000 ifetch 2 ,contr 
+519c 1fe22200 copy pdata ,rega 
+519d 1a627e00 copy regc ,pdata 
+519e 9a262600 isub rega ,regc 
+519f e8c10000 ifetch 2 ,contr 
+51a0 18c08c02 increase 2 ,contr 
+51a1 1fe20400 copy pdata ,temp 
+51a2 58000005 setarg signal_config_rsp 
+51a3 e0a08000 istore 1 ,contw 
+51a4 18e27e00 copy queue ,pdata 
+51a5 e0a08000 istore 1 ,contw 
+51a6 1a20a202 increase 2 ,rega 
+51a7 1a227e00 copy rega ,pdata 
+51a8 e0a10000 istore 2 ,contw 
+51a9 20407e1c call save_cont_pointers 
+51aa 58000050 setarg l2cap_sdp_channel 
+51ab 98467c00 isub temp ,null 
+51ac 2022d1b7 branch ml2cap_proc_signal_config_req_sdp ,zero 
+51ad 58000051 setarg l2cap_rfcomm_channel 
+51ae 98467c00 isub temp ,null 
+51af 2022d1c8 branch ml2cap_proc_signal_config_req_rfcomm ,zero 
+51b0 58000052 setarg l2cap_hid_control_channel 
+51b1 98467c00 isub temp ,null 
+51b2 2022d1ce branch ml2cap_proc_signal_config_req_hid_ctrl ,zero 
+51b3 58000053 setarg l2cap_hid_interrupt_channel 
+51b4 98467c00 isub temp ,null 
+51b5 2022d1d4 branch ml2cap_proc_signal_config_req_hid_int ,zero 
+51b6 202051d9 branch mcfgrq_done 
+
+ml2cap_proc_signal_config_req_sdp:
+51b7 6800c2b9 fetch 1 ,mem_sdp_state 
+51b8 79207e04 set1 l2cap_channel_state_rcv_cfg_req ,pdata 
+51b9 79207e03 set1 l2cap_channel_state_snd_cfg_res ,pdata 
+51ba 6000c2b9 store 1 ,mem_sdp_state 
+51bb c28151c5 bbit1 l2cap_channel_state_snd_cfg_req ,ml2cap_proc_signal_config_req_sdp_nsndreq 
+51bc 680882e6 fetcht 1 ,mem_control_tasks 
+51bd 79200406 set1 l2cap_init_config_req ,temp 
+51be 600882e6 storet 1 ,mem_control_tasks 
+51bf 18e27e00 copy queue ,pdata 
+51c0 1fe0fe01 increase 1 ,pdata 
+51c1 600082e8 store 1 ,mem_config_identifier 
+51c2 6800c2b9 fetch 1 ,mem_sdp_state 
+51c3 79207e02 set1 l2cap_channel_state_snd_cfg_req ,pdata 
+51c4 6000c2b9 store 1 ,mem_sdp_state 
+
+ml2cap_proc_signal_config_req_sdp_nsndreq:
+51c5 680142b1 fetch 2 ,mem_sdp_remote_cid 
+51c6 600102e9 store 2 ,mem_config_req_dest_cid 
+51c7 202051d9 branch mcfgrq_done 
+
+ml2cap_proc_signal_config_req_rfcomm:
+51c8 6800c2ba fetch 1 ,mem_rfcomm_state 
+51c9 79207e04 set1 l2cap_channel_state_rcv_cfg_req ,pdata 
+51ca 79207e03 set1 l2cap_channel_state_snd_cfg_res ,pdata 
+51cb 6000c2ba store 1 ,mem_rfcomm_state 
+51cc 680142b3 fetch 2 ,mem_rfcomm_remote_cid 
+51cd 202051d9 branch mcfgrq_done 
+
+ml2cap_proc_signal_config_req_hid_ctrl:
+51ce 6800c2bb fetch 1 ,mem_hid_control_state 
+51cf 79207e04 set1 l2cap_channel_state_rcv_cfg_req ,pdata 
+51d0 79207e03 set1 l2cap_channel_state_snd_cfg_res ,pdata 
+51d1 6000c2bb store 1 ,mem_hid_control_state 
+51d2 680142b5 fetch 2 ,mem_hid_ctrl_remote_cid 
+51d3 202051d9 branch mcfgrq_done 
+
+ml2cap_proc_signal_config_req_hid_int:
+51d4 6800c2bc fetch 1 ,mem_hid_interrupt_state 
+51d5 79207e04 set1 l2cap_channel_state_rcv_cfg_req ,pdata 
+51d6 79207e03 set1 l2cap_channel_state_snd_cfg_res ,pdata 
+51d7 6000c2bc store 1 ,mem_hid_interrupt_state 
+51d8 680142b7 fetch 2 ,mem_hid_int_remote_cid 
+
+mcfgrq_done:
+51d9 1fe21600 copy pdata ,timeup 
+51da 20407e21 call load_cont_pointers 
+51db 19627e00 copy timeup ,pdata 
+51dc e0a10000 istore 2 ,contw 
+51dd 18007e00 force 0x0000 ,pdata 
+51de e0a10000 istore 2 ,contw 
+51df 18007e00 force 0x0000 ,pdata 
+51e0 e0a10000 istore 2 ,contw 
+51e1 18007e0a force 10 ,pdata 
+51e2 9a40a400 iadd regb ,regb 
+51e3 1a20a3fa increase -6 ,rega 
+
+mloop1:
+51e4 2022d1ea branch mcrqdone ,zero 
+51e5 e8c08000 ifetch 1 ,contr 
+51e6 e0a08000 istore 1 ,contw 
+51e7 1a40a401 increase 1 ,regb 
+51e8 1a20a3ff increase -1 ,rega 
+51e9 202051e4 branch mloop1 
+
+mcrqdone:
+51ea 20600000 rtn 
+
+ml2cap_proc_signal_disconn_req:
+51eb e8c08000 ifetch 1 ,contr 
+51ec 1fe20e00 copy pdata ,queue 
+51ed e8c10000 ifetch 2 ,contr 
+51ee 1fe22200 copy pdata ,rega 
+51ef 1a627e00 copy regc ,pdata 
+51f0 9a262600 isub rega ,regc 
+51f1 e8c10000 ifetch 2 ,contr 
+51f2 1fe22200 copy pdata ,rega 
+51f3 e8c10000 ifetch 2 ,contr 
+51f4 1fe21600 copy pdata ,timeup 
+51f5 20407e1c call save_cont_pointers 
+51f6 58000050 setarg l2cap_sdp_channel 
+51f7 1a220400 copy rega ,temp 
+51f8 98467c00 isub temp ,null 
+51f9 2022d203 branch ml2cap_proc_signal_disconn_sdp ,zero 
+51fa 58000052 setarg l2cap_hid_control_channel 
+51fb 1a220400 copy rega ,temp 
+51fc 98467c00 isub temp ,null 
+51fd 2022d208 branch ml2cap_proc_signal_disconn_hid_ctrl ,zero 
+51fe 58000053 setarg l2cap_hid_interrupt_channel 
+51ff 1a220400 copy rega ,temp 
+5200 98467c00 isub temp ,null 
+5201 2022d20a branch ml2cap_proc_signal_disconn_hid_int ,zero 
+5202 2020520c branch mclsrfc 
+
+ml2cap_proc_signal_disconn_sdp:
+5203 58000000 setarg 0x0000 
+5204 600102dc store 2 ,mem_sdp_tx_pkt_length 
+5205 600142b1 store 2 ,mem_sdp_remote_cid 
+5206 6000c2b9 store 1 ,mem_sdp_state 
+5207 2020520e branch mclssdp 
+
+ml2cap_proc_signal_disconn_hid_ctrl:
+5208 20405081 call l2cap_reset_hid_ctrl_state 
+5209 2020520e branch mclssdp 
+
+ml2cap_proc_signal_disconn_hid_int:
+520a 20405087 call l2cap_reset_hid_int_state 
+520b 2020520e branch mclssdp 
+
+mclsrfc:
+520c 58000000 setarg 0x0000 
+520d 600102e2 store 2 ,mem_rfcomm_tx_pkt_length 
+
+mclssdp:
+520e 20407e21 call load_cont_pointers 
+520f 58000007 setarg signal_disconnect_rsp 
+5210 e0a08000 istore 1 ,contw 
+5211 18e27e00 copy queue ,pdata 
+5212 e0a08000 istore 1 ,contw 
+5213 58000004 setarg 0x0004 
+5214 e0a10000 istore 2 ,contw 
+5215 1a227e00 copy rega ,pdata 
+5216 e0a10000 istore 2 ,contw 
+5217 19627e00 copy timeup ,pdata 
+5218 e0a10000 istore 2 ,contw 
+5219 18007e08 force 8 ,pdata 
+521a 9a40a400 iadd regb ,regb 
+521b 20600000 rtn 
+
+ml2cap_proc_signal_disconn_rsp:
+521c e8c08000 ifetch 1 ,contr 
+521d 1fe20e00 copy pdata ,queue 
+521e e8c10000 ifetch 2 ,contr 
+521f 1fe22200 copy pdata ,rega 
+5220 e8c10000 ifetch 2 ,contr 
+5221 1fe21600 copy pdata ,timeup 
+5222 e8c10000 ifetch 2 ,contr 
+5223 1fe20400 copy pdata ,temp 
+5224 20407e1c call save_cont_pointers 
+5225 6800c2be fetch 1 ,mem_ml2cap_comm_id 
+5226 a8e1fe00 icompare 0xff ,queue 
+5227 2420d232 nbranch mdisdone ,true 
+5228 58000050 setarg l2cap_sdp_channel 
+5229 98467c00 isub temp ,null 
+522a 2022d22f branch ml2cap_proc_signal_disconn_rsp_sdp ,zero 
+522b 58000051 setarg l2cap_rfcomm_channel 
+522c 98467c00 isub temp ,null 
+522d 2022d232 branch ml2cap_proc_signal_disconn_rsp_rfcomm ,zero 
+522e 20205232 branch mdisdone 
+
+ml2cap_proc_signal_disconn_rsp_sdp:
+522f 7042b100 jam 0 ,mem_sdp_remote_cid 
+5230 7042b900 jam 0 ,mem_sdp_state 
+5231 20205232 branch mdisdone 
+
+ml2cap_proc_signal_disconn_rsp_rfcomm:
+
+mdisdone:
+5232 20407e21 call load_cont_pointers 
+5233 1a627e00 copy regc ,pdata 
+5234 9a262600 isub rega ,regc 
+5235 20600000 rtn 
+
+ml2cap_proc_send_reject:
+5236 58000001 setarg signal_cmd_reject 
+5237 e0a08000 istore 1 ,contw 
+5238 e8c08000 ifetch 1 ,contr 
+5239 e0a08000 istore 1 ,contw 
+523a 58000002 setarg 0x0002 
+523b e0a10000 istore 2 ,contw 
+523c 58000000 setarg 0x0000 
+523d e0a10000 istore 2 ,contw 
+523e 58000006 setarg 0x0006 
+523f 9a40a400 iadd regb ,regb 
+5240 18002604 force 4 ,regc 
+5241 20600000 rtn 
+
+l2cap_get_req_id:
+5242 6800c2be fetch 1 ,mem_ml2cap_comm_id 
+5243 1fe0fe01 increase 1 ,pdata 
+5244 c0805246 bne 0 ,l2cap_get_req_id_ok 
+5245 1fe0fe01 increase 1 ,pdata 
+
+l2cap_get_req_id_ok:
+5246 6000c2be store 1 ,mem_ml2cap_comm_id 
+5247 20600000 rtn 
+
+l2cap_malloc:
+5248 79200025 set1 mark_ext_patch ,mark 
+5249 44924024 bpatch patch24_4 ,mem_patch24 
+524a da400000 arg 0 ,regb 
+524b 2040527a call l2cap_malloc_is_fifo_full 
+524c 243a3bf1 nbranch assert ,blank 
+524d 20405287 call l2cap_malloc_get_full_map 
+524e da401800 arg mem_tx_buff0 ,regb 
+524f d8e00000 arg 0 ,queue 
+
+l2cap_malloc_loop:
+5250 6808c2bf fetcht 1 ,mem_used_map 
+5251 a84fffff qisolate1 temp 
+5252 2020d258 branch l2cap_malloc_next ,true 
+5253 204052ab call l2cap_malloc_enough 
+5254 19667c00 sub timeup ,0 ,null 
+5255 20215258 branch l2cap_malloc_next ,positive 
+5256 20405292 call l2cap_malloc_into_fifo 
+5257 2020525e branch l2cap_malloc_rtn 
+
+l2cap_malloc_next:
+5258 1a40a480 increase 128 ,regb 
+5259 18e08e01 increase 1 ,queue 
+525a 58000008 setarg 8 
+525b 98e67c00 isub queue ,null 
+525c 20215250 branch l2cap_malloc_loop ,positive 
+525d da400000 arg 0 ,regb 
+
+l2cap_malloc_rtn:
+525e 1a427e00 copy regb ,pdata 
+525f 203a3bf1 branch assert ,blank 
+5260 20600000 rtn 
+
+l2cap_malloc_fifo_out:
+5261 79200025 set1 mark_ext_patch ,mark 
+5262 4492c024 bpatch patch24_5 ,mem_patch24 
+5263 20405280 call l2cap_malloc_fifo_get_first_ptr 
+5264 18c08c01 increase 1 ,contr 
+5265 e8c10000 ifetch 2 ,contr 
+5266 20600000 rtn 
+
+l2cap_malloc_free:
+5267 79200025 set1 mark_ext_patch ,mark 
+5268 44934024 bpatch patch24_6 ,mem_patch24 
+5269 20405280 call l2cap_malloc_fifo_get_first_ptr 
+526a 18c20a00 copy contr ,contw 
+526b 18c20400 copy contr ,temp 
+526c 58000000 setarg 0 
+526d e0a18000 istore 3 ,contw 
+526e 20600000 rtn 
+
+l2cap_malloc_discard:
+526f 79200025 set1 mark_ext_patch ,mark 
+5270 4493c024 bpatch patch24_7 ,mem_patch24 
+5271 2040527e call l2cap_malloc_is_fifo_empty 
+5272 203a3bf1 branch assert ,blank 
+5273 6801c2c6 fetch 3 ,mem_tx_fifo2 
+5274 6001c2c9 store 3 ,mem_tx_fifo3 
+5275 6801c2c3 fetch 3 ,mem_tx_fifo1 
+5276 6001c2c6 store 3 ,mem_tx_fifo2 
+5277 6801c2c0 fetch 3 ,mem_tx_fifo0 
+5278 6001c2c3 store 3 ,mem_tx_fifo1 
+5279 20600000 rtn 
+
+l2cap_malloc_is_fifo_full:
+527a 6801c2c0 fetch 3 ,mem_tx_fifo0 
+527b 20600000 rtn 
+
+l2cap_malloc_is_fifo_nearly_full:
+527c 6801c2c3 fetch 3 ,mem_tx_fifo1 
+527d 20600000 rtn 
+
+l2cap_malloc_is_fifo_empty:
+527e 6801c2c9 fetch 3 ,mem_tx_fifo3 
+527f 20600000 rtn 
+
+l2cap_malloc_fifo_get_first_ptr:
+5280 2040527e call l2cap_malloc_is_fifo_empty 
+5281 203a3bf1 branch assert ,blank 
+5282 d8c042c0 arg mem_tx_fifo0 ,contr 
+
+l2cap_malloc_free_loop:
+5283 e8c18000 ifetch 3 ,contr 
+5284 203a5283 branch l2cap_malloc_free_loop ,blank 
+5285 18c08dfd increase -3 ,contr 
+5286 20600000 rtn 
+
+l2cap_malloc_get_full_map:
+5287 79200025 set1 mark_ext_patch ,mark 
+5288 44944025 bpatch patch25_0 ,mem_patch25 
+5289 df200004 arg 4 ,loopcnt 
+528a d8c042c0 arg mem_tx_fifo0_map ,contr 
+528b d8400000 arg 0 ,temp 
+
+l2cap_malloc_get_full_map_loop:
+528c e8c18000 ifetch 3 ,contr 
+528d 1fe17eff and pdata ,0xff ,pdata 
+528e 98418400 ior temp ,temp 
+528f c200528c loop l2cap_malloc_get_full_map_loop 
+5290 6008c2bf storet 1 ,mem_used_map 
+5291 20600000 rtn 
+
+l2cap_malloc_into_fifo:
+5292 79200025 set1 mark_ext_patch ,mark 
+5293 4494c025 bpatch patch25_1 ,mem_patch25 
+5294 2040527a call l2cap_malloc_is_fifo_full 
+5295 243a3bf1 nbranch assert ,blank 
+5296 2040527e call l2cap_malloc_is_fifo_empty 
+5297 203a52a0 branch l2cap_malloc_into_fifo_no_push ,blank 
+5298 6801c2c3 fetch 3 ,mem_tx_fifo1 
+5299 6001c2c0 store 3 ,mem_tx_fifo0 
+529a e8c18000 ifetch 3 ,contr 
+529b e0a18000 istore 3 ,contw 
+529c e8c18000 ifetch 3 ,contr 
+529d e0a18000 istore 3 ,contw 
+529e 58000000 setarg 0 
+529f e0a18000 istore 3 ,contw 
+
+l2cap_malloc_into_fifo_no_push:
+52a0 d8400000 arg 0 ,temp 
+52a1 19627e00 copy timeup ,pdata 
+52a2 98e0fe00 iadd queue ,pdata 
+
+l2cap_malloc_into_fifo_loop:
+52a3 f9200400 qset1 temp 
+52a4 18e08e01 increase 1 ,queue 
+52a5 98e67c00 isub queue ,null 
+52a6 2422d2a3 nbranch l2cap_malloc_into_fifo_loop ,zero 
+52a7 1a4d7e00 lshift8 regb ,pdata 
+52a8 9841fe00 ior temp ,pdata 
+52a9 6001c2c9 store 3 ,mem_tx_fifo3 
+52aa 20600000 rtn 
+
+l2cap_malloc_enough:
+52ab 79200025 set1 mark_ext_patch ,mark 
+52ac 44954025 bpatch patch25_2 ,mem_patch25 
+52ad 20405287 call l2cap_malloc_get_full_map 
+52ae 18e22600 copy queue ,regc 
+52af d8400000 arg 0 ,temp 
+52b0 d9600000 arg 0 ,timeup 
+
+l2cap_malloc_enough_loop:
+52b1 18e27e00 copy queue ,pdata 
+52b2 c00452bc beq 8 ,l2cap_malloc_enough_end 
+52b3 6800c2bf fetch 1 ,mem_used_map 
+52b4 afefffff qisolate1 pdata 
+52b5 2020d2bc branch l2cap_malloc_enough_end ,true 
+52b6 18408480 increase 128 ,temp 
+52b7 18e08e01 increase 1 ,queue 
+52b8 1a227e00 copy rega ,pdata 
+52b9 98467c00 isub temp ,null 
+52ba 2022d2bc branch l2cap_malloc_enough_end ,zero 
+52bb 202152b1 branch l2cap_malloc_enough_loop ,positive 
+
+l2cap_malloc_enough_end:
+52bc 18427e00 copy temp ,pdata 
+52bd 9a267c00 isub rega ,null 
+52be 242152c2 nbranch l2cap_malloc_enough_rtn ,positive 
+52bf 18e27e00 copy queue ,pdata 
+52c0 1a620400 copy regc ,temp 
+52c1 98461600 isub temp ,timeup 
+
+l2cap_malloc_enough_rtn:
+52c2 1a620e00 copy regc ,queue 
+52c3 20600000 rtn 
+
+l2cap_malloc_signal_channel:
+52c4 79200025 set1 mark_ext_patch ,mark 
+52c5 4495c025 bpatch patch25_3 ,mem_patch25 
+52c6 da20007f arg l2cap_signal_malloc_size ,rega 
+52c7 20405248 call l2cap_malloc 
+52c8 600102d2 store 2 ,mem_l2cap_signal_tx_buff_ptr 
+52c9 1fe0fe04 increase 4 ,pdata 
+52ca 600102d4 store 2 ,mem_l2cap_signal_tx_payload_ptr 
+52cb 58000000 setarg 0 
+52cc 600102d6 store 2 ,mem_l2cap_signal_tx_length 
+52cd 20600000 rtn 
+
+l2cap_get_signal_tx_buff:
+52ce 680102d2 fetch 2 ,mem_l2cap_signal_tx_buff_ptr 
+52cf 202052f2 branch l2cap_util_pdata_to_contw 
+
+l2cap_get_signal_tx_payload:
+52d0 680102d4 fetch 2 ,mem_l2cap_signal_tx_payload_ptr 
+52d1 202052f2 branch l2cap_util_pdata_to_contw 
+
+l2cap_malloc_sdp_channel:
+52d2 79200025 set1 mark_ext_patch ,mark 
+52d3 44964025 bpatch patch25_4 ,mem_patch25 
+52d4 da2002ff arg sdp_malloc_size ,rega 
+52d5 20405248 call l2cap_malloc 
+52d6 600102d8 store 2 ,mem_sdp_tx_buff_ptr 
+52d7 1fe0fe04 increase 4 ,pdata 
+52d8 600102da store 2 ,mem_sdp_tx_payload_ptr 
+52d9 58000000 setarg 0 
+52da 600102dc store 2 ,mem_sdp_tx_pkt_length 
+52db 20600000 rtn 
+
+l2cap_get_sdp_tx_buff:
+52dc 680102d8 fetch 2 ,mem_sdp_tx_buff_ptr 
+52dd 202052f2 branch l2cap_util_pdata_to_contw 
+
+l2cap_get_sdp_tx_payload:
+52de 680102da fetch 2 ,mem_sdp_tx_payload_ptr 
+52df 202052f2 branch l2cap_util_pdata_to_contw 
+
+l2cap_malloc_rfcomm_channel:
+52e0 79200025 set1 mark_ext_patch ,mark 
+52e1 4496c025 bpatch patch25_5 ,mem_patch25 
+52e2 20407e00 call push_stack 
+52e3 7002eb01 jam rfcomm_malloc_fail ,mem_rfcomm_malloc_fail_flag 
+52e4 2040527a call l2cap_malloc_is_fifo_full 
+52e5 247a0000 nrtn blank 
+52e6 da20007f arg rfcomm_malloc_size ,rega 
+52e7 20405248 call l2cap_malloc 
+52e8 600102de store 2 ,mem_rfcomm_tx_buff_ptr 
+52e9 1fe0fe04 increase 4 ,pdata 
+52ea 600102e0 store 2 ,mem_rfcomm_tx_payload_ptr 
+52eb 58000000 setarg 0 
+52ec 600102e2 store 2 ,mem_rfcomm_tx_pkt_length 
+52ed 7002eb00 jam rfcomm_malloc_succeed ,mem_rfcomm_malloc_fail_flag 
+52ee 20207e0e branch pop_stack 
+
+l2cap_get_rfcomm_tx_buff:
+52ef 680102de fetch 2 ,mem_rfcomm_tx_buff_ptr 
+52f0 202052f2 branch l2cap_util_pdata_to_contw 
+
+l2cap_get_rfcomm_tx_payload:
+52f1 680102e0 fetch 2 ,mem_rfcomm_tx_payload_ptr 
+
+l2cap_util_pdata_to_contw:
+52f2 203a3bf1 branch assert ,blank 
+52f3 1fe20a00 copy pdata ,contw 
+52f4 20600000 rtn 
+
+l2cap_lpm_save_calc_len:
+52f5 79200025 set1 mark_ext_patch ,mark 
+52f6 44974025 bpatch patch25_6 ,mem_patch25 
+52f7 da400000 arg 0 ,regb 
+52f8 da2042c0 arg mem_tx_fifo0_map ,rega 
+52f9 1a20a3fe increase -2 ,rega 
+
+l2cap_lpm_save_calc_len_loop:
+52fa 1a20a202 increase 2 ,rega 
+52fb 580042cc setarg mem_tx_fifo_end 
+52fc 9a267c00 isub rega ,null 
+52fd 2022d306 branch l2cap_lpm_save_calc_len_end ,zero 
+52fe ea208000 ifetch 1 ,rega 
+52ff 1a20a201 increase 1 ,rega 
+5300 203a52fa branch l2cap_lpm_save_calc_len_loop ,blank 
+5301 ea290000 ifetcht 2 ,rega 
+5302 e8410000 ifetch 2 ,temp 
+5303 9a40a400 iadd regb ,regb 
+5304 1a40a404 increase 4 ,regb 
+5305 202052fa branch l2cap_lpm_save_calc_len_loop 
+
+l2cap_lpm_save_calc_len_end:
+5306 1a427e00 copy regb ,pdata 
+5307 20600000 rtn 
+
+l2cap_lpm_get_wake_lock:
+5308 d8e0000c arg wake_lock_l2cap_tx ,queue 
+5309 20203dc2 branch lpm_get_wake_lock 
+
+l2cap_lpm_put_wake_lock:
+530a d8e0000c arg wake_lock_l2cap_tx ,queue 
+530b 20203dc6 branch lpm_put_wake_lock 
+
+l2cap_lpm_save_txbuf:
+530c 79200025 set1 mark_ext_patch ,mark 
+530d 4497c025 bpatch patch25_7 ,mem_patch25 
+530e 20405287 call l2cap_malloc_get_full_map 
+530f 6800c2bf fetch 1 ,mem_used_map 
+5310 207a0000 rtn blank 
+5311 204052f5 call l2cap_lpm_save_calc_len 
+5312 d8400100 arg l2cap_lpm_txbuf_len ,temp 
+5313 98467c00 isub temp ,null 
+5314 20215308 branch l2cap_lpm_get_wake_lock ,positive 
+5315 2040530a call l2cap_lpm_put_wake_lock 
+5316 d8a042cc arg mem_l2cap_lpm_txbuf ,contw 
+5317 da2042c0 arg mem_tx_fifo0 ,rega 
+
+l2cap_lpm_save_txbuf_loop:
+5318 580042cc setarg mem_tx_fifo_end 
+5319 9a267c00 isub rega ,null 
+531a 20628000 rtn zero 
+531b ea208000 ifetch 1 ,rega 
+531c 1a20a201 increase 1 ,rega 
+531d 243a5321 nbranch l2cap_lpm_save_txbuf_nempty ,blank 
+531e e0a10000 istore 2 ,contw 
+531f 1a20a202 increase 2 ,rega 
+5320 20205318 branch l2cap_lpm_save_txbuf_loop 
+
+l2cap_lpm_save_txbuf_nempty:
+5321 ea210000 ifetch 2 ,rega 
+5322 1a20a202 increase 2 ,rega 
+5323 1fe20c00 copy pdata ,contr 
+5324 e8c10000 ifetch 2 ,contr 
+5325 e0a10000 istore 2 ,contw 
+5326 1fe27200 copy pdata ,loopcnt 
+5327 1f20f202 increase 2 ,loopcnt 
+5328 20407e45 call memcpy 
+5329 20205318 branch l2cap_lpm_save_txbuf_loop 
+
+l2cap_lpm_load_txbuf:
+532a 79200025 set1 mark_ext_patch ,mark 
+532b 44984026 bpatch patch26_0 ,mem_patch26 
+532c 20405287 call l2cap_malloc_get_full_map 
+532d 6800c2bf fetch 1 ,mem_used_map 
+532e 207a0000 rtn blank 
+532f da2042c1 arg mem_tx_fifo0_ptr ,rega 
+5330 1a20a3fd increase -3 ,rega 
+5331 d8c042cc arg mem_l2cap_lpm_txbuf ,contr 
+
+l2cap_lpm_load_txbuf_loop:
+5332 1a20a203 increase 3 ,rega 
+5333 580042cd setarg mem_tx_fifo_end + 1 
+5334 9a267c00 isub rega ,null 
+5335 20628000 rtn zero 
+5336 e8c10000 ifetch 2 ,contr 
+5337 203a5332 branch l2cap_lpm_load_txbuf_loop ,blank 
+5338 1fe0fe04 increase 4 ,pdata 
+5339 1fe27200 copy pdata ,loopcnt 
+533a 18c22400 copy contr ,regb 
+533b ea210000 ifetch 2 ,rega 
+533c 1fe20a00 copy pdata ,contw 
+533d 1a420c00 copy regb ,contr 
+533e 18c08dfe increase -2 ,contr 
+533f 20407e45 call memcpy 
+5340 20205332 branch l2cap_lpm_load_txbuf_loop 
+
+le_init_param:
+5341 20758000 rtn wake 
+5342 58000010 setarg param_le_scan_interval 
+5343 600143d3 store 2 ,mem_le_scan_interval 
+5344 58000010 setarg param_le_scan_window 
+5345 600143d5 store 2 ,mem_le_scan_window 
+5346 20600000 rtn 
+
+le_init_att:
+5347 d8400014 arg notify_handle ,temp 
+5348 20405a88 call le_att_get_handle_ptr 
+5349 18c0fe01 add contr ,1 ,pdata 
+534a 60010419 store 2 ,mem_le_notify_attr_start 
+534b 20600000 rtn 
+
+le_init_conn:
+534c 79200025 set1 mark_ext_patch ,mark 
+534d 44994026 bpatch patch26_2 ,mem_patch26 
+534e 7855fc00 disable wake 
+534f 70427e01 jam 1 ,mem_app_state 
+5350 7003d601 jam 1 ,mem_le_conn_handle 
+5351 7003c003 jam 3 ,mem_le_state 
+5352 7003d701 jam 1 ,mem_le_arq 
+5353 5fffffff setarg -1 
+5354 600103da store 2 ,mem_le_event_count 
+5355 18007e00 force 0 ,pdata 
+5356 600083e3 store 1 ,mem_le_conn_sm 
+5357 600083d8 store 1 ,mem_le_ch 
+5358 600083e4 store 1 ,mem_le_op 
+5359 6001c20a store 3 ,mem_sniff_rcv 
+535a 6001c20d store 3 ,mem_sniff_lost 
+535b 6002c465 store 5 ,mem_le_pcnt_tx 
+535c 79207e27 set1 39 ,pdata 
+535d 6002c46a store 5 ,mem_le_pcnt_rx 
+535e 20205a0b branch le_supervision_flush 
+
+le_init_master:
+535f 79200025 set1 mark_ext_patch ,mark 
+5360 4499c026 bpatch patch26_3 ,mem_patch26 
+5361 7834fc00 enable master 
+5362 7003c103 jam lemode_master ,mem_le_mode 
+5363 7003fa01 jam 1 ,mem_le_att_handle 
+5364 7044bc01 jam 1 ,mem_le_search_handle_start 
+5365 5800ffff setarg 0xffff 
+5366 600144be store 2 ,mem_le_search_handle_end 
+5367 18007e00 force 0 ,pdata 
+5368 6002c46a store 5 ,mem_le_pcnt_rx 
+5369 79207e27 set1 39 ,pdata 
+536a 6002c465 store 5 ,mem_le_pcnt_tx 
+536b 2020534c branch le_init_conn 
+
+le_init_slave:
+536c 79200025 set1 mark_ext_patch ,mark 
+536d 449a4026 bpatch patch26_4 ,mem_patch26 
+536e 7854fc00 disable master 
+536f 7003c101 jam lemode_slave ,mem_le_mode 
+5370 7043d800 jam 0 ,mem_le_adv_enable 
+5371 7000a200 jam 0 ,mem_lpm_current_mult 
+5372 2020534c branch le_init_conn 
+
+le_dispatch:
+5373 204053d2 call le_enable 
+5374 204055d3 call le_scan 
+5375 20405a0e call le_adv 
+5376 202053d7 branch le_disable 
+
+le_conn_dispatch:
+5377 79200025 set1 mark_ext_patch ,mark 
+5378 449ac026 bpatch patch26_5 ,mem_patch26 
+5379 204053d2 call le_enable 
+537a 20403e71 call app_process_ble 
+537b 680083c1 fetch 1 ,mem_le_mode 
+537c c001d37e beq lemode_master ,le_master_dispatch 
+537d 20205395 branch le_slave_dispatch 
+
+le_master_dispatch:
+537e 79200025 set1 mark_ext_patch ,mark 
+537f 449b4026 bpatch patch26_6 ,mem_patch26 
+5380 7834fc00 enable master 
+5381 20405a02 call le_supervision_update 
+5382 20215392 branch le_master_disconn ,positive 
+5383 20403e28 call check_ble_disabled 
+5384 2040541c call le_setup 
+5385 20405622 call le_prepare_tx 
+5386 7856fc00 disable match 
+5387 204054b2 call le_transmit_receive_sifs 
+5388 24768000 nrtn match 
+5389 79200025 set1 mark_ext_patch ,mark 
+538a 449bc026 bpatch patch26_7 ,mem_patch26 
+538b 68008005 fetch 1 ,mem_le_conn_rcv 
+538c 1fe0fe01 increase 1 ,pdata 
+538d 60008005 store 1 ,mem_le_conn_rcv 
+538e 204055a2 call le_acknowledge 
+538f 20405a99 call le_conn_sm_master 
+5390 7854fc00 disable master 
+5391 20600000 rtn 
+
+le_master_disconn:
+5392 204053ba call le_disconnect 
+5393 7854fc00 disable master 
+5394 20600000 rtn 
+
+le_slave_dispatch:
+5395 79200025 set1 mark_ext_patch ,mark 
+5396 449c4027 bpatch patch27_0 ,mem_patch27 
+5397 78577c00 disable attempt 
+5398 20405a02 call le_supervision_update 
+5399 202153ba branch le_slave_disconn ,positive 
+539a 20403e28 call check_ble_disabled 
+539b 2040541c call le_setup 
+539c 20405478 call le_receive_slave 
+539d 2436d3ad nbranch le_slave_unsync ,match 
+
+le_slave_match:
+539e 79200025 set1 mark_ext_patch ,mark 
+539f 449cc027 bpatch patch27_1 ,mem_patch27 
+53a0 204053c8 call le_got_first_packet 
+53a1 204055a2 call le_acknowledge 
+53a2 20405622 call le_prepare_tx 
+53a3 68008340 fetch 1 ,mem_le_rxbuf 
+53a4 c28253b4 bbit1 md ,le_slave_more_data 
+53a5 2040561a call le_xtype_fifo_is_empty 
+53a6 243a53b4 nbranch le_slave_more_data ,blank 
+
+le_slave_transmit_last:
+53a7 79200025 set1 mark_ext_patch ,mark 
+53a8 449d4027 bpatch patch27_2 ,mem_patch27 
+53a9 204054bb call le_transmit_norx 
+
+le_slave_cont:
+53aa 20407c45 call check_51cmd 
+53ab 680083e4 fetch 1 ,mem_le_op 
+53ac c281d3ba bbit1 op_disconn ,le_slave_disconn 
+
+le_slave_unsync:
+53ad 79200025 set1 mark_ext_patch ,mark 
+53ae 449dc027 bpatch patch27_3 ,mem_patch27 
+53af 20407f44 call le_savelist 
+53b0 20405b19 call le_lpm_set_mult 
+53b1 20405594 call le_update_channel_map 
+53b2 20405576 call le_update_param 
+53b3 202039ac branch calc_clke_offset 
+
+le_slave_more_data:
+53b4 79200025 set1 mark_ext_patch ,mark 
+53b5 449e4027 bpatch patch27_4 ,mem_patch27 
+53b6 78377c00 enable attempt 
+53b7 204054b2 call le_transmit_receive_sifs 
+53b8 2036d39e branch le_slave_match ,match 
+53b9 202053aa branch le_slave_cont 
+
+le_slave_disconn:
+
+le_disconnect:
+53ba 79200025 set1 mark_ext_patch ,mark 
+53bb 449ec027 bpatch patch27_5 ,mem_patch27 
+53bc 204053c0 call le_clear_connection_info 
+53bd 20403f1d call app_disconn_reason_collect_ble 
+53be 700b7d15 jam bt_evt_le_disconnected ,mem_fifo_temp 
+53bf 20207c27 branch ui_ipc_send_event 
+
+le_clear_connection_info:
+53c0 680883d6 fetcht 1 ,mem_le_conn_handle 
+53c1 7002c008 jam hci_error_connection_timeout ,mem_hci_disconn_reason 
+53c2 204048c4 call hci_send_disconn_complete 
+53c3 7003d600 jam 0 ,mem_le_conn_handle 
+53c4 7003c100 jam lemode_idle ,mem_le_mode 
+53c5 7003c000 jam 0 ,mem_le_state 
+53c6 70427e00 jam 0 ,mem_app_state 
+53c7 20600000 rtn 
+
+le_got_first_packet:
+53c8 68008005 fetch 1 ,mem_le_conn_rcv 
+53c9 1fe0fe01 increase 1 ,pdata 
+53ca 60008005 store 1 ,mem_le_conn_rcv 
+53cb 680083c0 fetch 1 ,mem_le_state 
+53cc c3818000 rtnbit1 lestate_got_first_packet 
+53cd 79207e03 set1 lestate_got_first_packet 
+53ce 600083c0 store 1 ,mem_le_state 
+53cf 58000000 setarg 0 
+53d0 600246f9 store 4 ,mem_le_transmit_window 
+53d1 20600000 rtn 
+
+le_enable:
+53d2 79200025 set1 mark_ext_patch ,mark 
+53d3 449f4027 bpatch patch27_6 ,mem_patch27 
+53d4 783b7c00 enable le 
+53d5 70891407 hjam 7 ,rfen_ulp 
+53d6 20203e28 branch check_ble_disabled 
+
+le_disable:
+53d7 79200025 set1 mark_ext_patch ,mark 
+53d8 449fc027 bpatch patch27_7 ,mem_patch27 
+53d9 785b7c00 disable le 
+53da 70891403 hjam 3 ,rfen_ulp 
+53db db600000 arg 0 ,stop_watch 
+53dc 20600000 rtn 
+
+le_prep:
+53dd 7844fc00 disable enable_crc 
+53de 7843fc00 disable enable_white 
+53df 680183e9 fetch 3 ,mem_le_crcinit 
+53e0 98001e00 iforce crc24_init 
+53e1 68008016 fetch 1 ,mem_le_ch_mapped 
+53e2 1fed8400 reverse pdata ,temp 
+53e3 79200401 set1 1 ,temp 
+53e4 18431c00 rshift temp ,white_init 
+53e5 20600000 rtn 
+
+lerx_setfreq:
+53e6 204053ee call le_setfreq 
+53e7 20403a82 call set_freq_rx 
+53e8 58000500 setarg param_pll_setup 
+53e9 20403bf3 call sleep 
+53ea 20203a87 branch rf_rx_enable 
+
+letx_setfreq:
+53eb 2036ba98 branch txon ,match 
+53ec 204053ee call le_setfreq 
+53ed 20203a91 branch set_freq_tx 
+
+le_setfreq:
+53ee 79200025 set1 mark_ext_patch ,mark 
+53ef 44a04028 bpatch patch28_0 ,mem_patch28 
+53f0 20403a7a call set_sync_on 
+53f1 6800840d fetch 1 ,mem_le_testtype 
+53f2 243a5402 nbranch le_ctf_test ,blank 
+53f3 68008016 fetch 1 ,mem_le_ch_mapped 
+53f4 1fe67c24 sub pdata ,36 ,null 
+53f5 202153fc branch le_ctf_normal ,positive 
+53f6 18000400 force 0 ,temp 
+53f7 c1128000 rtneq 37 
+53f8 18000418 force 24 ,temp 
+53f9 c1130000 rtneq 38 
+53fa 1800044e force 78 ,temp 
+53fb 20600000 rtn 
+
+le_ctf_normal:
+53fc 1fe67c0a sub pdata ,10 ,null 
+53fd 202153ff branch le_ctf_low ,positive 
+53fe 1fe0fe01 increase 1 ,pdata 
+
+le_ctf_low:
+53ff 1fe3fe00 lshift pdata ,pdata 
+5400 1fe08402 add pdata ,2 ,temp 
+5401 20600000 rtn 
+
+le_ctf_test:
+5402 68008016 fetch 1 ,mem_le_ch_mapped 
+5403 1fe38400 lshift pdata ,temp 
+5404 20600000 rtn 
+
+le_sca_map:
+5405 d84001f4 arg 500 ,temp 
+5406 207a0000 rtn blank 
+5407 d84000fa arg 250 ,temp 
+5408 c1008000 rtneq 1 
+5409 d8400096 arg 150 ,temp 
+540a c1010000 rtneq 2 
+540b d8400064 arg 100 ,temp 
+540c c1018000 rtneq 3 
+540d d840004b arg 75 ,temp 
+540e c1020000 rtneq 4 
+540f d8400032 arg 50 ,temp 
+5410 c1028000 rtneq 5 
+5411 d8400028 arg 40 ,temp 
+5412 c1030000 rtneq 6 
+5413 d8400014 arg 20 ,temp 
+5414 20600000 rtn 
+
+le_adv_access:
+5415 588e89be setarg 0x8e89be 
+5416 1fed7e00 lshift8 pdata ,pdata 
+5417 1fe1fed6 or_into 0xd6 ,pdata 
+5418 98001200 iforce access 
+5419 58555555 setarg 0x555555 
+541a 600183e9 store 3 ,mem_le_crcinit 
+541b 20600000 rtn 
+
+le_setup:
+541c 79200025 set1 mark_ext_patch ,mark 
+541d 44a0c028 bpatch patch28_1 ,mem_patch28 
+541e 78287c00 enable swfine 
+541f 680203e5 fetch 4 ,mem_le_access 
+5420 98001200 iforce access 
+5421 20405453 call le_map_channel 
+5422 58000200 setarg 0x200 
+5423 2034d426 branch le_setup_master ,master 
+5424 680103ce fetch 2 ,mem_le_receive_window 
+5425 1fe37e00 rshift pdata ,pdata 
+
+le_setup_master:
+5426 d8400500 arg param_pll_setup ,temp 
+5427 9840fe00 iadd temp ,pdata 
+5428 20403b7d call ahead_window 
+5429 1b427e00 deposit clke 
+542a 60030412 store 6 ,mem_le_rxon_ts 
+542b 20600000 rtn 
+
+le_next_adv_channel:
+542c 79200025 set1 mark_ext_patch ,mark 
+542d 44a14028 bpatch patch28_2 ,mem_patch28 
+542e 68008016 fetch 1 ,mem_le_ch_mapped 
+542f 1fe0fe01 increase 1 ,pdata 
+5430 60008016 store 1 ,mem_le_ch_mapped 
+5431 c1940000 rtnne 40 
+5432 70001625 jam 37 ,mem_le_ch_mapped 
+5433 20600000 rtn 
+
+le_context_nexthop:
+5434 79200025 set1 mark_ext_patch ,mark 
+5435 44a1c028 bpatch patch28_3 ,mem_patch28 
+5436 1a208c01 add rega ,coffset_mode ,contr 
+5437 e8c08000 ifetch 1 ,contr 
+5438 c4000000 rtnbit0 mode_le 
+5439 1a208a1a add rega ,coffset_le_event_cnt ,contw 
+543a e8a10000 ifetch 2 ,contw 
+543b 1fe0fe01 increase 1 ,pdata 
+543c e0a10000 istore 2 ,contw 
+543d 1a208c19 add rega ,coffset_le_hop ,contr 
+543e e8c08000 ifetch 1 ,contr 
+543f 1a208a18 add rega ,coffset_le_ch ,contw 
+5440 e8a88000 ifetcht 1 ,contw 
+5441 9840fe00 iadd temp ,pdata 
+5442 1fe67c24 sub pdata ,36 ,null 
+5443 20215445 branch le_nexthop_nowrap ,positive 
+5444 1fe0ffdb increase -37 ,pdata 
+
+le_nexthop_nowrap:
+5445 e0a08000 istore 1 ,contw 
+5446 20600000 rtn 
+
+le_calc_channel_map:
+5447 79200025 set1 mark_ext_patch ,mark 
+5448 44a24028 bpatch patch28_4 ,mem_patch28 
+5449 680283f1 fetch 5 ,mem_le_channel_map 
+544a 18000400 force 0 ,temp 
+544b 18007225 force 37 ,loopcnt 
+
+le_count_channels_loop:
+544c c300544e bbit0 0 ,le_count_channels_notused 
+544d 18408401 increase 1 ,temp 
+
+le_count_channels_notused:
+544e 1fe37e00 rshift pdata ,pdata 
+544f c200544c loop le_count_channels_loop 
+5450 1840ffff add temp ,-1 ,pdata 
+5451 600083e2 store 1 ,mem_le_channels 
+5452 20600000 rtn 
+
+le_map_channel:
+5453 79200025 set1 mark_ext_patch ,mark 
+5454 44a2c028 bpatch patch28_5 ,mem_patch28 
+5455 680083d8 fetch 1 ,mem_le_ch 
+5456 98000e00 iforce queue 
+5457 680a83f1 fetcht 5 ,mem_le_channel_map 
+5458 a84fffff qisolate1 temp 
+5459 2020d46b branch le_map_channel_end ,true 
+
+le_map_channel_next:
+545a 79200025 set1 mark_ext_patch ,mark 
+545b 44a34028 bpatch patch28_6 ,mem_patch28 
+545c 680083e2 fetch 1 ,mem_le_channels 
+545d 98e67e00 isub queue ,pdata 
+545e 20215461 branch le_map_channel_cont ,positive 
+545f 1fe60fff sub pdata ,-1 ,queue 
+5460 2020545a branch le_map_channel_next 
+
+le_map_channel_cont:
+5461 18e27200 copy queue ,loopcnt 
+5462 18000e00 force 0 ,queue 
+
+le_map_channel_loop:
+5463 a84fffff qisolate1 temp 
+5464 2020d466 branch le_map_channel_skip ,true 
+5465 1f20f201 increase 1 ,loopcnt 
+
+le_map_channel_skip:
+5466 1f227e00 deposit loopcnt 
+5467 203a546b branch le_map_channel_end ,blank 
+5468 18e08e01 increase 1 ,queue 
+5469 1f20f3ff increase -1 ,loopcnt 
+546a 20205463 branch le_map_channel_loop 
+
+le_map_channel_end:
+546b 18e27e00 deposit queue 
+546c 60008016 store 1 ,mem_le_ch_mapped 
+546d 20600000 rtn 
+
+le_wait_tx:
+546e 2034d471 branch le_wait_master ,master 
+546f 37c18200 until null ,timeout 
+5470 20600000 rtn 
+
+le_wait_master:
+5471 d9600ea0 arg 0xea0 ,timeup 
+5472 34730200 until clkn_rt ,meet 
+5473 20600000 rtn 
+
+le_receive_adv:
+5474 78487c00 disable swfine 
+5475 680143d5 fetch 2 ,mem_le_scan_window 
+5476 1fe21600 copy pdata ,timeup 
+5477 2020547e branch le_receive_packet 
+
+le_receive_slave:
+5478 79200025 set1 mark_ext_patch ,mark 
+5479 44a3c028 bpatch patch28_7 ,mem_patch28 
+547a 78287c00 enable swfine 
+547b 680103ce fetch 2 ,mem_le_receive_window 
+547c 680a46f9 fetcht 4 ,mem_le_transmit_window 
+547d 98409600 iadd temp ,timeup 
+
+le_receive_packet:
+547e 204053e6 call lerx_setfreq 
+
+le_receive_rxon:
+547f 79200025 set1 mark_ext_patch ,mark 
+5480 44a44029 bpatch patch29_0 ,mem_patch29 
+5481 204053dd call le_prep 
+5482 7856fc00 disable match 
+5483 7826fc00 enable decode_fec0 
+5484 7830fc00 enable is_rx 
+5485 78507c00 disable is_tx 
+5486 19623600 copy timeup ,stop_watch 
+5487 37c18400 correlate null ,timeout 
+5488 2037548b branch le_receive_on_attempt ,attempt 
+5489 1b420400 copy clke ,temp 
+548a 600b009c storet 6 ,mem_sync_clke 
+
+le_receive_on_attempt:
+548b 242c375c nbranch end_of_packet ,sync 
+548c 20375492 branch le_receive_skip ,attempt 
+548d dd2001e0 arg param_clke_cal_le ,clke_rt 
+548e 1c225000 copy bt_clk ,clke_bt 
+548f 680083c0 fetch 1 ,mem_le_state 
+5490 c301d492 bbit0 lestate_got_first_packet ,le_receive_skip 
+5491 2055bcb6 call lpm_adjust_clk ,wake 
+
+le_receive_skip:
+5492 79200025 set1 mark_ext_patch ,mark 
+5493 44a4c029 bpatch patch29_1 ,mem_patch29 
+5494 20403af3 call save_rssi 
+5495 7823fc00 enable enable_white 
+5496 7824fc00 enable enable_crc 
+5497 09800008 parse demod ,bucket ,8 
+5498 19897e00 rshift3 pwindow ,pdata 
+5499 60008340 store 1 ,mem_le_rxbuf 
+549a 09800008 parse demod ,bucket ,8 
+549b 19897e00 rshift3 pwindow ,pdata 
+549c e0a08000 istore 1 ,contw 
+549d 1fe1723f and pdata ,0x3f ,loopcnt 
+549e 2022d4a3 branch lerx_nopayload ,zero 
+
+lerx_loop:
+549f 09800008 parse demod ,bucket ,8 
+54a0 19897e00 rshift3 pwindow ,pdata 
+54a1 e0a08000 istore 1 ,contw 
+54a2 c200549f loop lerx_loop 
+
+lerx_nopayload:
+54a3 79200025 set1 mark_ext_patch ,mark 
+54a4 44a54029 bpatch patch29_2 ,mem_patch29 
+54a5 09800018 parse demod ,bucket ,24 
+54a6 78287c00 enable swfine 
+54a7 db600664 arg param_sifs ,stop_watch 
+54a8 1fef7e00 rshift32 pdata ,pdata 
+54a9 1ff17e00 rshift16 pdata ,pdata 
+54aa e0a18000 istore 3 ,contw 
+54ab 2023375c branch end_of_packet ,crc_failed 
+54ac 7836fc00 enable match 
+54ad 68008017 fetch 1 ,mem_last_freq 
+54ae 1fe0a202 add pdata ,2 ,rega 
+54af 20403ab6 call rf_write_freq 
+54b0 7846fc00 disable decode_fec0 
+54b1 20203a7a branch set_sync_on 
+
+le_transmit_receive_sifs:
+54b2 79200025 set1 mark_ext_patch ,mark 
+54b3 44a5c029 bpatch patch29_3 ,mem_patch29 
+54b4 204054bd call le_transmit 
+54b5 68088017 fetcht 1 ,mem_last_freq 
+54b6 20403a82 call set_freq_rx 
+54b7 20403a87 call rf_rx_enable 
+54b8 78287c00 enable swfine 
+54b9 d9601388 arg 5000 ,timeup 
+54ba 2020547f branch le_receive_rxon 
+
+le_transmit_norx:
+54bb 204054bd call le_transmit 
+54bc 2020375c branch end_of_packet 
+
+le_transmit:
+54bd 79200025 set1 mark_ext_patch ,mark 
+54be 44a64029 bpatch patch29_4 ,mem_patch29 
+54bf 204053dd call le_prep 
+54c0 204053eb call letx_setfreq 
+54c1 79202a00 set1 txgfsk ,radio_ctrl 
+54c2 782efc00 enable encode_fec0 
+54c3 78307c00 enable is_tx 
+54c4 7850fc00 disable is_rx 
+54c5 2040546e call le_wait_tx 
+54c6 19317e00 rshift16 access ,pdata 
+54c7 1fecfe00 rshift8 pdata ,pdata 
+54c8 1ff1fe00 rshift4 pdata ,pdata 
+54c9 08008628 inject mod ,40 
+54ca 7823fc00 enable enable_white 
+54cb 7824fc00 enable enable_crc 
+54cc 79200025 set1 mark_ext_patch ,mark 
+54cd 44a6c029 bpatch patch29_5 ,mem_patch29 
+54ce 6800c43e fetch 1 ,mem_le_txheader 
+54cf 08008608 inject mod ,8 
+54d0 e8c08000 ifetch 1 ,contr 
+54d1 1fe1723f and pdata ,0x3f ,loopcnt 
+54d2 08008608 inject mod ,8 
+54d3 2022d4d7 branch letr_nopayload ,zero 
+
+letr_loop:
+54d4 e8c08000 ifetch 1 ,contr 
+54d5 08008608 inject mod ,8 
+54d6 c20054d4 loop letr_loop 
+
+letr_nopayload:
+54d7 78247c00 enable enable_parity 
+54d8 08008618 inject mod ,24 
+54d9 78447c00 disable enable_parity 
+54da 37d38200 until null ,tx_clear 
+54db 20000064 nop 100 
+54dc 784efc00 disable encode_fec0 
+54dd 20600000 rtn 
+
+le_send_adv_ind:
+54de 79200025 set1 mark_ext_patch ,mark 
+54df 44a74029 bpatch patch29_6 ,mem_patch29 
+54e0 6800c4db fetch 1 ,mem_le_adv_type 
+54e1 c000d4ef beq adv_direct_ind ,le_send_adv_direct_ind 
+54e2 6800c4dc fetch 1 ,mem_le_adv_own_addr_type 
+54e3 1ff27e00 lshift4 pdata ,pdata 
+54e4 1febfe00 lshift2 pdata ,pdata 
+54e5 6000c43e store 1 ,mem_le_txheader 
+54e6 6808c3d9 fetcht 1 ,mem_le_adv_data_len 
+54e7 1840fe06 add temp ,6 ,pdata 
+54e8 6000c43f store 1 ,mem_le_txlen 
+54e9 680344f9 fetch 6 ,mem_le_lap 
+54ea 60034440 store 6 ,mem_le_txpayload 
+54eb 18427200 copy temp ,loopcnt 
+54ec d8c043da arg mem_le_adv_data ,contr 
+54ed 20407e45 call memcpy 
+54ee 202054ff branch le_send_adv_transmit 
+
+le_send_adv_direct_ind:
+54ef 680944c2 fetcht 2 ,mem_le_notify_handle 
+54f0 20405866 call le_att_check_notification_enable 
+54f1 1a220a00 copy rega ,contw 
+54f2 58000001 setarg 1 
+54f3 e0a08000 istore 1 ,contw 
+54f4 6800c4dd fetch 1 ,mem_le_adv_direct_addr_type 
+54f5 1ff27e00 lshift4 pdata ,pdata 
+54f6 1febfe00 lshift2 pdata ,pdata 
+54f7 1fe0fe01 increase 1 ,pdata 
+54f8 6000c43e store 1 ,mem_le_txheader 
+54f9 5800000c setarg 12 
+54fa 6000c43f store 1 ,mem_le_txlen 
+54fb 680344f9 fetch 6 ,mem_le_lap 
+54fc 60034440 store 6 ,mem_le_txpayload 
+54fd 68034274 fetch 6 ,mem_hci_plap 
+54fe e0a30000 istore 6 ,contw 
+
+le_send_adv_transmit:
+54ff 79200025 set1 mark_ext_patch ,mark 
+5500 44a7c029 bpatch patch29_7 ,mem_patch29 
+5501 68008000 fetch 1 ,mem_le_adv_transmit 
+5502 1fe0fe01 increase 1 ,pdata 
+5503 60008000 store 1 ,mem_le_adv_transmit 
+5504 db600708 arg 1800 ,stop_watch 
+5505 7856fc00 disable match 
+5506 202054b2 branch le_transmit_receive_sifs 
+
+le_send_scan_request:
+5507 79200025 set1 mark_ext_patch ,mark 
+5508 44a8402a bpatch patch2a_0 ,mem_patch2a 
+5509 6800c4f6 fetch 1 ,mem_le_scan_type 
+550a c1808000 rtnne le_scan_type_active ,pdata 
+550b 68008000 fetch 1 ,mem_le_adv_transmit 
+550c 1fe0fe01 increase 1 ,pdata 
+550d 60008000 store 1 ,mem_le_adv_transmit 
+550e d8400c03 arg 0x0c03 ,temp 
+550f 6800c4f7 fetch 1 ,mem_le_scan_own_addr_type 
+5510 7d3a0406 nsetflag blank ,le_sender_addr_bit ,temp 
+5511 1a227e00 copy rega ,pdata 
+5512 7d3a0407 nsetflag blank ,le_receiver_addr_bit ,temp 
+5513 6009443e storet 2 ,mem_le_txheader 
+5514 680344f9 fetch 6 ,mem_le_lap 
+5515 e0a30000 istore 6 ,contw 
+5516 680303d0 fetch 6 ,mem_le_plap 
+5517 e0a30000 istore 6 ,contw 
+5518 202054b2 branch le_transmit_receive_sifs 
+
+le_send_scan_response:
+5519 79200025 set1 mark_ext_patch ,mark 
+551a 44a8c02a bpatch patch2a_1 ,mem_patch2a 
+551b d8400004 arg scan_rsp ,temp 
+551c 6800c4dc fetch 1 ,mem_le_adv_own_addr_type 
+551d 7d3a0406 nsetflag blank ,le_sender_addr_bit ,temp 
+551e 6008c43e storet 1 ,mem_le_txheader 
+551f 6808c3f9 fetcht 1 ,mem_le_scan_data_len 
+5520 1840fe06 add temp ,6 ,pdata 
+5521 6000c43f store 1 ,mem_le_txlen 
+5522 680344f9 fetch 6 ,mem_le_lap 
+5523 60034440 store 6 ,mem_le_txpayload 
+5524 d8c043fa arg mem_le_scan_data ,contr 
+5525 18427200 copy temp ,loopcnt 
+5526 20407e45 call memcpy 
+5527 202054bb branch le_transmit_norx 
+
+le_connect_request:
+5528 79200025 set1 mark_ext_patch ,mark 
+5529 44a9402a bpatch patch2a_2 ,mem_patch2a 
+552a 18007fff force -1 ,pdata 
+552b 38080001 setsect 2 ,1 
+552c 600283f1 store 5 ,mem_le_channel_map 
+552d 20405447 call le_calc_channel_map 
+552e 18007204 force 4 ,loopcnt 
+552f d8a003e5 arg mem_le_access ,contw 
+5530 20406227 call generate_random_loop 
+5531 680144f4 fetch 2 ,mem_le_conn_superto 
+5532 600103ef store 2 ,mem_le_superto 
+
+le_con_req_hop_retry:
+5533 180a7e00 random pdata 
+5534 1fe17e0f and_into 0xf ,pdata 
+5535 1fe67c04 sub pdata ,4 ,null 
+5536 20215533 branch le_con_req_hop_retry ,positive 
+5537 600083d9 store 1 ,mem_le_hop 
+5538 60008682 store 1 ,mem_tmp1 
+5539 79200025 set1 mark_ext_patch ,mark 
+553a 44a9c02a bpatch patch2a_3 ,mem_patch2a 
+553b 680943d0 fetcht 2 ,mem_le_conn_interval 
+553c 600903c2 storet 2 ,mem_le_tsniff 
+553d 18422600 copy temp ,regc 
+553e 1c40fe07 add clkn_bt ,7 ,pdata 
+553f 9a66fc00 idiv regc 
+5540 20407efd call wait_div_end 
+5541 18072200 remainder rega 
+5542 9a267e00 isub rega ,pdata 
+5543 9a60fe00 iadd regc ,pdata 
+5544 680943ce fetcht 2 ,mem_le_dsniff 
+5545 9840fe00 iadd temp ,pdata 
+5546 600203c4 store 4 ,mem_le_anchor 
+5547 9c462200 isub clkn_bt ,rega 
+5548 1a20a3fa increase -6 ,rega 
+5549 da402205 arg 0x2205 ,regb 
+554a 6800c4ed fetch 1 ,mem_le_conn_own_addr_type 
+554b 7d3a2406 nsetflag blank ,le_sender_addr_bit ,regb 
+554c 6800c4e6 fetch 1 ,mem_le_conn_peer_addr_type 
+554d 7d3a2407 nsetflag blank ,le_receiver_addr_bit ,regb 
+554e 1a427e00 copy regb ,pdata 
+554f 6001443e store 2 ,mem_le_txheader 
+5550 680344f9 fetch 6 ,mem_le_lap 
+5551 e0a30000 istore 6 ,contw 
+5552 680303d0 fetch 6 ,mem_le_plap 
+5553 e0a30000 istore 6 ,contw 
+5554 680203e5 fetch 4 ,mem_le_access 
+5555 e0a20000 istore 4 ,contw 
+5556 180a7e00 random pdata 
+5557 e0a10000 istore 2 ,contw 
+5558 180a7e00 random pdata 
+5559 e0a08000 istore 1 ,contw 
+555a 18007e02 force 2 ,pdata 
+555b e0a08000 istore 1 ,contw 
+555c 1a2b7e00 rshift2 rega ,pdata 
+555d e0a10000 istore 2 ,contw 
+555e 1a6b7e00 rshift2 regc ,pdata 
+555f e0a10000 istore 2 ,contw 
+5560 79200025 set1 mark_ext_patch ,mark 
+5561 44aa402a bpatch patch2a_4 ,mem_patch2a 
+5562 680144f2 fetch 2 ,mem_le_conn_latency 
+5563 e0a10000 istore 2 ,contw 
+5564 680144f4 fetch 2 ,mem_le_conn_superto 
+5565 e0a10000 istore 2 ,contw 
+5566 680283f1 fetch 5 ,mem_le_channel_map 
+5567 e0a28000 istore 5 ,contw 
+5568 680083d9 fetch 1 ,mem_le_hop 
+5569 d84000a0 arg param_le_sca ,temp 
+556a 9841fe00 ior temp ,pdata 
+556b e0a08000 istore 1 ,contw 
+556c 204054bb call le_transmit_norx 
+556d 5800443e setarg mem_le_txheader 
+556e 1fe08c12 add pdata ,18 ,contr 
+556f e8c18000 ifetch 3 ,contr 
+5570 600183e9 store 3 ,mem_le_crcinit 
+5571 20600000 rtn 
+
+le_init_adv:
+5572 79200025 set1 mark_ext_patch ,mark 
+5573 44aac02a bpatch patch2a_5 ,mem_patch2a 
+5574 7854fc00 disable master 
+5575 20205415 branch le_adv_access 
+
+le_update_param:
+5576 79200025 set1 mark_ext_patch ,mark 
+5577 44ab402a bpatch patch2a_6 ,mem_patch2a 
+5578 680083c0 fetch 1 ,mem_le_state 
+5579 c4028000 rtnbit0 lestate_update_param 
+557a 680103da fetch 2 ,mem_le_event_count 
+557b 680903e0 fetcht 2 ,mem_le_instant 
+557c 98467e00 isub temp ,pdata 
+557d 24610000 nrtn positive 
+557e 680083c0 fetch 1 ,mem_le_state 
+557f 793ffe05 set0 lestate_update_param ,pdata 
+5580 793ffe03 set0 lestate_got_first_packet ,pdata 
+5581 600083c0 store 1 ,mem_le_state 
+5582 680203c4 fetch 4 ,mem_le_anchor 
+5583 680903c2 fetcht 2 ,mem_le_tsniff 
+5584 98462200 isub temp ,rega 
+5585 79200025 set1 mark_ext_patch ,mark 
+5586 44abc02a bpatch patch2a_7 ,mem_patch2a 
+5587 6800c434 fetch 1 ,mem_le_new_param 
+5588 600083ec store 1 ,mem_le_window_size 
+5589 e8c90000 ifetcht 2 ,contr 
+558a e8c10000 ifetch 2 ,contr 
+558b 1febfe00 lshift2 pdata ,pdata 
+558c 600103c2 store 2 ,mem_le_tsniff 
+558d 184b8400 lshift2 temp ,temp 
+558e 9840fe00 iadd temp ,pdata 
+558f e8ca0000 ifetcht 4 ,contr 
+5590 600a03ed storet 4 ,mem_le_slave_latency 
+5591 9a20fe00 iadd rega ,pdata 
+5592 600203c4 store 4 ,mem_le_anchor 
+5593 20205a2b branch le_receive_window_size 
+
+le_update_channel_map:
+5594 79200025 set1 mark_ext_patch ,mark 
+5595 44ac402b bpatch patch2b_0 ,mem_patch2b 
+5596 680083c0 fetch 1 ,mem_le_state 
+5597 c4030000 rtnbit0 lestate_update_map 
+5598 680103da fetch 2 ,mem_le_event_count 
+5599 680903e0 fetcht 2 ,mem_le_instant 
+559a 98467e00 isub temp ,pdata 
+559b 24610000 nrtn positive 
+559c 680083c0 fetch 1 ,mem_le_state 
+559d 793ffe06 set0 lestate_update_map ,pdata 
+559e 600083c0 store 1 ,mem_le_state 
+559f 6802c42f fetch 5 ,mem_le_new_map 
+55a0 600283f1 store 5 ,mem_le_channel_map 
+55a1 20205447 branch le_calc_channel_map 
+
+le_acknowledge:
+55a2 79200025 set1 mark_ext_patch ,mark 
+55a3 44acc02b bpatch patch2b_1 ,mem_patch2b 
+55a4 20405a0b call le_supervision_flush 
+55a5 204055b7 call le_check_wak 
+55a6 68008340 fetch 1 ,mem_le_rxbuf 
+55a7 1fe37e00 rshift pdata ,pdata 
+55a8 9842fe00 ixor temp ,pdata 
+55a9 2feffe02 isolate1 nesn ,pdata 
+55aa 7920800f setflag true ,mark_old_packet ,mark 
+55ab 68008341 fetch 1 ,mem_le_rxbuf + 1 
+55ac 203a55b2 branch le_ack_unenc ,blank 
+55ad 680083c0 fetch 1 ,mem_le_state 
+55ae c30255b2 bbit0 lestate_encryption ,le_ack_unenc 
+55af 20407599 call load_sk 
+55b0 2040750e call le_decrypt 
+55b1 247a0000 nrtn blank 
+
+le_ack_unenc:
+55b2 c6078000 rtnmark1 mark_old_packet 
+55b3 680883d7 fetcht 1 ,mem_le_arq 
+55b4 79400402 setflip nesn ,temp 
+55b5 600883d7 storet 1 ,mem_le_arq 
+55b6 202058ac branch le_parse 
+
+le_check_wak:
+55b7 79200025 set1 mark_ext_patch ,mark 
+55b8 44ad402b bpatch patch2b_2 ,mem_patch2b 
+55b9 680883d7 fetcht 1 ,mem_le_arq 
+55ba 284c0005 isolate0 wak ,temp 
+55bb 20608000 rtn true 
+55bc 68008340 fetch 1 ,mem_le_rxbuf 
+55bd 1fe3fe00 lshift pdata ,pdata 
+55be 9842fe00 ixor temp ,pdata 
+55bf c4018000 rtnbit0 sn 
+55c0 793f8405 set0 wak ,temp 
+55c1 79400403 setflip sn ,temp 
+55c2 600883d7 storet 1 ,mem_le_arq 
+55c3 28400603 compare 3 ,temp ,3 
+55c4 24608000 nrtn true 
+55c5 6800c440 fetch 1 ,mem_le_txpayload 
+55c6 c1828000 rtnne ll_start_enc_req 
+55c7 680083c0 fetch 1 ,mem_le_state 
+55c8 79207e04 set1 lestate_encryption ,pdata 
+55c9 600083c0 store 1 ,mem_le_state 
+55ca 20600000 rtn 
+
+le_wait_adv:
+55cb 79200025 set1 mark_ext_patch ,mark 
+55cc 44adc02b bpatch patch2b_3 ,mem_patch2b 
+55cd 2040542c call le_next_adv_channel 
+55ce 20405474 call le_receive_adv 
+55cf 68008001 fetch 1 ,mem_le_adv_waitcnt 
+55d0 1fe0fe01 increase 1 ,pdata 
+55d1 60008001 store 1 ,mem_le_adv_waitcnt 
+55d2 20600000 rtn 
+
+le_scan:
+55d3 79200025 set1 mark_ext_patch ,mark 
+55d4 44ae402b bpatch patch2b_4 ,mem_patch2b 
+55d5 6800c3d2 fetch 1 ,mem_le_scan_enable 
+55d6 c1808000 rtnne le_scan_enable 
+55d7 d8e00003 arg le_scan_interval_timer ,queue 
+55d8 20407e53 call timer_check 
+55d9 247a0000 nrtn blank 
+55da 680143d3 fetch 2 ,mem_le_scan_interval 
+55db 680943d5 fetcht 2 ,mem_le_scan_window 
+55dc 98467e00 isub temp ,pdata 
+55dd d8e00003 arg le_scan_interval_timer ,queue 
+55de 20407e4c call timer_init 
+55df 7854fc00 disable master 
+55e0 20405572 call le_init_adv 
+55e1 204055cb call le_wait_adv 
+55e2 24768000 nrtn match 
+55e3 79200025 set1 mark_ext_patch ,mark 
+55e4 44aec02b bpatch patch2b_5 ,mem_patch2b 
+55e5 68030342 fetch 6 ,mem_le_rxbuf + 2 
+55e6 600303d0 store 6 ,mem_le_plap 
+55e7 204042a7 call le_scan_dongle 
+55e8 20405b39 call le_scan_addr_to_uart 
+55e9 68008002 fetch 1 ,mem_le_adv_rcv 
+55ea 1fe0fe01 increase 1 ,pdata 
+55eb 60008002 store 1 ,mem_le_adv_rcv 
+55ec 204055f9 call le_create_conn 
+55ed 20748000 rtn master 
+55ee 204048d1 call hci_send_le_adv_report_event 
+55ef 20405507 call le_send_scan_request 
+55f0 24768000 nrtn match 
+55f1 79200025 set1 mark_ext_patch ,mark 
+55f2 44af402b bpatch patch2b_6 ,mem_patch2b 
+55f3 68008004 fetch 1 ,mem_le_scanrsp_rcv 
+55f4 1fe0fe01 increase 1 ,pdata 
+55f5 60008004 store 1 ,mem_le_scanrsp_rcv 
+55f6 68048348 fetch 9 ,mem_le_rxbuf + 8 
+55f7 60048103 store 9 ,mem_tmp_buffer 
+55f8 202048d1 branch hci_send_le_adv_report_event 
+
+le_create_conn:
+55f9 79200025 set1 mark_ext_patch ,mark 
+55fa 44afc02b bpatch patch2b_7 ,mem_patch2b 
+55fb 6800841c fetch 1 ,mem_cmd_le_create_conn 
+55fc c18d8000 rtnne hci_cmd_le_create_conn ,pdata 
+55fd 680303d0 fetch 6 ,mem_le_plap 
+55fe 680b44e7 fetcht 6 ,mem_le_conn_peer_addr 
+55ff 98467c00 isub temp ,null 
+5600 24628000 nrtn zero 
+5601 204032d6 call context_new 
+5602 24628000 nrtn zero 
+5603 20405528 call le_connect_request 
+5604 2040535f call le_init_master 
+5605 79200025 set1 mark_ext_patch ,mark 
+5606 44b0402c bpatch patch2c_0 ,mem_patch2c 
+5607 70427200 jam 0 ,mem_hci_cmd 
+5608 7003f800 jam 0 ,mem_le_peer_sca 
+5609 6800c132 fetch 1 ,mem_device_option 
+560a c082560c bne dvc_op_dongle ,le_create_conn_ndongle 
+560b 7003e321 jam conn_sm_send_write_req ,mem_le_conn_sm 
+
+le_create_conn_ndongle:
+560c d8400000 arg 0 ,temp 
+560d 204048ea call hci_send_le_conn_complete 
+560e 7043d200 jam 0 ,mem_le_scan_enable 
+560f 70041c00 jam 0 ,mem_cmd_le_create_conn 
+5610 700b7d2c jam xt_ll_version_ind ,mem_fifo_temp 
+5611 20405620 call le_xtype_fifo_in 
+5612 202032bd branch context_save 
+
+le_scan_check_sender_addr_type:
+5613 da200001 arg 1 ,rega 
+5614 68008340 fetch 1 ,mem_le_rxbuf 
+5615 c3830000 rtnbit1 le_sender_addr_bit 
+5616 da200000 arg 0 ,rega 
+5617 20600000 rtn 
+
+le_xtype_fifo_count:
+5618 d8c044ff arg mem_le_xtype_fifo ,contr 
+5619 20207fb2 branch fifo_content_count 
+
+le_xtype_fifo_is_empty:
+561a da2044ff arg mem_le_xtype_fifo ,rega 
+561b 20207fac branch fifo_is_empty 
+
+le_xtype_fifo_is_full:
+561c da2044ff arg mem_le_xtype_fifo ,rega 
+561d 20207fae branch fifo_is_full 
+
+le_xtype_fifo_is_near_full:
+561e da2044ff arg mem_le_xtype_fifo ,rega 
+561f 20207fb0 branch fifo_is_near_full 
+
+le_xtype_fifo_in:
+5620 da2044ff arg mem_le_xtype_fifo ,rega 
+5621 20207f92 branch fifo_in 
+
+le_prepare_tx:
+5622 79200025 set1 mark_ext_patch ,mark 
+5623 44b0c02c bpatch patch2c_1 ,mem_patch2c 
+5624 680083d7 fetch 1 ,mem_le_arq 
+5625 c3828000 rtnbit1 wak 
+5626 da2044ff arg mem_le_xtype_fifo ,rega 
+5627 20407f9f call fifo_out 
+5628 243a5630 nbranch le_prepare_tx_cmd ,blank 
+5629 6800c132 fetch 1 ,mem_device_option 
+562a c080d890 bne dvc_op_hci ,le_send_empty 
+562b d8200000 arg 0 ,type 
+562c 204044a3 call hci_rx_packet 
+562d 18227e00 copy type ,pdata 
+562e 247a0000 nrtn blank 
+562f 20205890 branch le_send_empty 
+
+le_prepare_tx_cmd:
+5630 1fe20400 copy pdata ,temp 
+5631 79200025 set1 mark_ext_patch ,mark 
+5632 44b1402c bpatch patch2c_2 ,mem_patch2c 
+5633 18427e00 copy temp ,pdata 
+5634 c302d64b bbit0 5 ,le_prepare_l2cap 
+5635 18000203 force 3 ,type 
+5636 793ffe05 set0 5 ,pdata 
+5637 6000c440 store 1 ,mem_le_txpayload 
+5638 79200025 set1 mark_ext_patch ,mark 
+5639 44b1c02c bpatch patch2c_3 ,mem_patch2c 
+563a 6800c440 fetch 1 ,mem_le_txpayload 
+563b c000568f beq ll_connection_update_req ,le_send_connection_update_req 
+563c c000d691 beq ll_channel_map_req ,le_send_channel_map_req 
+563d c0015693 beq ll_terminate_ind ,le_send_terminate_ind 
+563e c001d695 beq ll_enc_req ,le_send_enc_req 
+563f c00256a6 beq ll_enc_rsp ,le_send_enc_rsp 
+5640 c002d6b7 beq ll_start_enc_req ,le_send_start_enc_req 
+5641 c00356b9 beq ll_start_enc_rsp ,le_send_start_enc_rsp 
+5642 c003d6bf beq ll_unknown_rsp ,le_send_unknown_rsp 
+5643 c00456c1 beq ll_feature_req ,le_send_feature 
+5644 c004d6c1 beq ll_feature_rsp ,le_send_feature 
+5645 c00556c5 beq ll_pause_enc_req ,le_send_pause_enc_req 
+5646 c005d6c7 beq ll_pause_enc_rsp ,le_send_pause_enc_rsp 
+5647 c00656c9 beq ll_version_ind ,le_send_version_ind 
+5648 c006d6cf beq ll_reject_ind ,le_send_reject_ind 
+5649 c007d6d1 beq ll_connection_param_req ,le_send_conn_param_req 
+564a 20203bf1 branch assert 
+
+le_prepare_l2cap:
+564b 70444300 jam 0 ,mem_le_txcid + 1 
+564c 18000202 force 2 ,type 
+564d c3035662 bbit0 6 ,le_prepare_att 
+564e c0295662 beq attop_write_command ,le_prepare_att 
+564f c0695662 beq attop_signed_write_command ,le_prepare_att 
+5650 70444206 jam le_l2cap_cid_smp ,mem_le_txcid 
+5651 793ffe06 set0 6 ,pdata 
+5652 6000c444 store 1 ,mem_le_l2cap 
+
+le_prepare_smp:
+5653 79200025 set1 mark_ext_patch ,mark 
+5654 44b2402c bpatch patch2c_4 ,mem_patch2c 
+5655 6800c444 fetch 1 ,mem_le_l2cap 
+
+le_prepare_smp0:
+5656 c000d6e5 beq smp_pairing_request ,le_send_smp_pairing_request 
+5657 c00156ed beq smp_pairing_response ,le_send_smp_pairing_response 
+5658 c001d6f5 beq smp_pairing_confirm ,le_send_smp_pairing_confirm 
+5659 c00256fa beq smp_pairing_random ,le_send_smp_pairing_random 
+565a c002d6ff beq smp_pairing_failed ,le_send_smp_pairing_failed 
+565b c0035701 beq smp_encryption_information ,le_send_smp_encryption_information 
+565c c003d70b beq smp_master_identification ,le_send_smp_master_identification 
+565d c0045712 beq smp_identity_information ,le_send_smp_identity_information 
+565e c004d717 beq smp_identity_address_information ,le_send_smp_identity_address_information 
+565f c005571e beq smp_signing_information ,le_send_smp_signing_information 
+5660 c005d721 beq smp_security_request ,le_send_smp_security_request 
+5661 20203bf1 branch assert 
+
+le_prepare_att:
+5662 70444204 jam le_l2cap_cid_att ,mem_le_txcid 
+5663 6000c444 store 1 ,mem_le_l2cap 
+5664 79200025 set1 mark_ext_patch ,mark 
+5665 44b2c02c bpatch patch2c_5 ,mem_patch2c 
+
+le_prepare_att0:
+5666 6800c444 fetch 1 ,mem_le_l2cap 
+5667 c000d729 beq attop_error_response ,le_send_att_error_response 
+5668 c001572f beq attop_exchange_mtu_request ,le_send_att_exchange_mtu 
+5669 c001d72f beq attop_exchange_mtu_response ,le_send_att_exchange_mtu 
+566a c0025732 beq attop_find_information_request ,le_send_att_find_information_request 
+566b c002d737 beq attop_find_information_response ,le_send_att_find_information_response 
+566c c0035748 beq attop_find_by_type_value_request ,le_send_att_find_by_type_value_request 
+566d c003d752 beq attop_find_by_type_value_response ,le_send_att_find_by_type_value_response 
+566e c0045793 beq attop_read_by_type_request ,le_send_att_read_by_type_request 
+566f c004d79b beq attop_read_by_type_response ,le_send_att_read_by_type_response 
+5670 c00557be beq attop_read_request ,le_send_att_read_request 
+5671 c005d7c6 beq attop_read_response ,le_send_att_read_response 
+5672 c00657d1 beq attop_read_blob_request ,le_send_att_read_blob_request 
+5673 c006d7d6 beq attop_read_blob_response ,le_send_att_read_blob_response 
+5674 c00757e5 beq attop_read_multiple_request ,le_send_att_read_multiple_request 
+5675 c007d7ec beq attop_read_multiple_response ,le_send_att_read_multiple_response 
+5676 c0085812 beq attop_read_by_group_type_request ,le_send_att_read_by_group_type_request 
+5677 c008d81a beq attop_read_by_group_type_response ,le_send_att_read_by_group_type_response 
+5678 c009583e beq attop_write_request ,le_send_att_write_request 
+5679 c009d845 beq attop_write_response ,le_send_att_write_response 
+567a c00b585e beq attop_prepare_write_request ,le_send_att_prepare_write_request 
+567b c00bd860 beq attop_prepare_write_response ,le_send_att_prepare_write_response 
+567c c00c5862 beq attop_execute_write_request ,le_send_att_execute_write_request 
+567d c00cd864 beq attop_execute_write_response ,le_send_att_execute_write_response 
+567e c00dd873 beq attop_handle_value_notification ,le_send_att_handle_value_notification 
+567f c00ed882 beq attop_handle_value_indication ,le_send_att_handle_value_indication 
+5680 c00f5884 beq attop_handle_value_confirmation ,le_send_att_handle_value_confirmation 
+5681 c0295886 beq attop_write_command ,le_send_att_write_command 
+5682 c0695888 beq attop_signed_write_command ,le_send_att_signed_write_command 
+5683 c04f5686 beq empty_le_data_pre ,le_send_empty_le_data_pre 
+5684 c04fd688 beq empty_le_data ,le_send_empty_le_data 
+5685 20203bf1 branch assert 
+
+le_send_empty_le_data_pre:
+5686 700b7d10 jam attop_read_by_group_type_request ,mem_fifo_temp 
+5687 20405620 call le_xtype_fifo_in 
+
+le_send_empty_le_data:
+5688 58000011 setarg 0x0011 
+5689 6001443e store 2 ,mem_le_txheader 
+568a 680083d7 fetch 1 ,mem_le_arq 
+568b 79207e05 set1 wak ,pdata 
+568c 600083d7 store 1 ,mem_le_arq 
+568d 700b7d12 jam attop_write_request ,mem_fifo_temp 
+568e 20205620 branch le_xtype_fifo_in 
+
+le_send_connection_update_req:
+568f 1800040c force 12 ,temp 
+5690 20205892 branch le_send_packet 
+
+le_send_channel_map_req:
+5691 18000408 force 8 ,temp 
+5692 20205892 branch le_send_packet 
+
+le_send_terminate_ind:
+5693 18000402 force 2 ,temp 
+5694 20205892 branch le_send_packet 
+
+le_send_enc_req:
+5695 18007e00 force 0 ,pdata 
+5696 e0a40000 istore 8 ,contw 
+5697 e0a10000 istore 2 ,contw 
+5698 18a20400 copy contw ,temp 
+5699 d8a00380 arg mem_le_skdm ,contw 
+569a 18007208 force 8 ,loopcnt 
+569b 20406227 call generate_random_loop 
+569c 68040380 fetch 8 ,mem_le_skdm 
+569d e0440000 istore 8 ,temp 
+569e 18a20400 copy contw ,temp 
+569f d8a04473 arg mem_le_ivm ,contw 
+56a0 18007204 force 4 ,loopcnt 
+56a1 20406227 call generate_random_loop 
+56a2 68024473 fetch 4 ,mem_le_ivm 
+56a3 e0420000 istore 4 ,temp 
+56a4 18000417 force 23 ,temp 
+56a5 20205892 branch le_send_packet 
+
+le_send_enc_rsp:
+56a6 18a20400 copy contw ,temp 
+56a7 d8a00388 arg mem_le_skds ,contw 
+56a8 18007208 force 8 ,loopcnt 
+56a9 20406227 call generate_random_loop 
+56aa 68040388 fetch 8 ,mem_le_skds 
+56ab e0440000 istore 8 ,temp 
+56ac 18a20400 copy contw ,temp 
+56ad d8a04477 arg mem_le_ivs ,contw 
+56ae 18007204 force 4 ,loopcnt 
+56af 20406227 call generate_random_loop 
+56b0 68024477 fetch 4 ,mem_le_ivs 
+56b1 e0420000 istore 4 ,temp 
+56b2 204074b6 call generate_sk 
+56b3 700b7d25 jam xt_ll_start_enc_req ,mem_fifo_temp 
+56b4 20405620 call le_xtype_fifo_in 
+56b5 1800040d force 13 ,temp 
+56b6 20205892 branch le_send_packet 
+
+le_send_start_enc_req:
+56b7 18000401 force 1 ,temp 
+56b8 20205892 branch le_send_packet 
+
+le_send_start_enc_rsp:
+56b9 18000401 force 1 ,temp 
+56ba 2034d892 branch le_send_packet ,master 
+56bb 700b7d46 jam xt_smp_encryption_information ,mem_fifo_temp 
+56bc 20405620 call le_xtype_fifo_in 
+56bd 18000401 force 1 ,temp 
+56be 20205892 branch le_send_packet 
+
+le_send_unknown_rsp:
+56bf 18000402 force 2 ,temp 
+56c0 20205892 branch le_send_packet 
+
+le_send_feature:
+56c1 58000001 setarg param_le_features 
+56c2 e0a40000 istore 8 ,contw 
+56c3 18000409 force 9 ,temp 
+56c4 20205892 branch le_send_packet 
+
+le_send_pause_enc_req:
+56c5 18000406 force 6 ,temp 
+56c6 20205892 branch le_send_packet 
+
+le_send_pause_enc_rsp:
+56c7 18000406 force 6 ,temp 
+56c8 20205892 branch le_send_packet 
+
+le_send_version_ind:
+56c9 58000a06 setarg param_le_version 
+56ca e0a18000 istore 3 ,contw 
+56cb 58001d87 setarg param_le_subversion 
+56cc e0a10000 istore 2 ,contw 
+56cd 18000406 force 6 ,temp 
+56ce 20205892 branch le_send_packet 
+
+le_send_reject_ind:
+56cf 18000402 force 2 ,temp 
+56d0 20205892 branch le_send_packet 
+
+le_send_conn_param_req:
+56d1 18a08bff increase -1 ,contw 
+56d2 5800000c setarg 0x000c 
+56d3 e0a10000 istore 2 ,contw 
+56d4 58000005 setarg 0x0005 
+56d5 e0a10000 istore 2 ,contw 
+56d6 5800b412 setarg 0xb412 
+56d7 e0a10000 istore 2 ,contw 
+56d8 58000008 setarg 0x0008 
+56d9 e0a10000 istore 2 ,contw 
+56da 58000008 setarg 0x0008 
+56db e0a10000 istore 2 ,contw 
+56dc 58000010 setarg 0x0010 
+56dd e0a10000 istore 2 ,contw 
+56de 58000000 setarg 0 
+56df e0a10000 istore 2 ,contw 
+56e0 5800012c setarg 0x012c 
+56e1 e0a10000 istore 2 ,contw 
+56e2 2040588a call le_send_autolen 
+56e3 18000202 force 2 ,type 
+56e4 20205892 branch le_send_packet 
+
+le_send_smp_pairing_request:
+56e5 59000401 setarg 0x1000401 
+56e6 600244ae store 4 ,mem_le_preq 
+56e7 58070710 setarg 0x070710 
+56e8 e0a18000 istore 3 ,contw 
+56e9 680344af fetch 6 ,mem_le_preq + 1 
+56ea 60034445 store 6 ,mem_le_l2cap_response 
+56eb 1800040b force 11 ,temp 
+56ec 20205892 branch le_send_packet 
+
+le_send_smp_pairing_response:
+56ed 59000302 setarg param_smp_paring_response 
+56ee 600244b5 store 4 ,mem_le_pres 
+56ef 58010410 setarg param_smp_key_dist 
+56f0 e0a18000 istore 3 ,contw 
+56f1 680344b6 fetch 6 ,mem_le_pres + 1 
+56f2 60034445 store 6 ,mem_le_l2cap_response 
+56f3 1800040b force 11 ,temp 
+56f4 20205892 branch le_send_packet 
+
+le_send_smp_pairing_confirm:
+56f5 204074b0 call generate_confirm 
+56f6 d8a04445 arg mem_le_l2cap_response ,contw 
+56f7 204075a3 call store_aes_result 
+56f8 18000415 force 21 ,temp 
+56f9 20205892 branch le_send_packet 
+
+le_send_smp_pairing_random:
+56fa 680403b0 fetch 8 ,mem_le_mrand 
+56fb 2034d6fd branch le_send_smp_mrandom ,master 
+56fc 6804449c fetch 8 ,mem_le_srand 
+
+le_send_smp_mrandom:
+56fd 20405723 call le_send_smp_128 
+56fe 20205892 branch le_send_packet 
+
+le_send_smp_pairing_failed:
+56ff 18000406 force 6 ,temp 
+5700 20205892 branch le_send_packet 
+
+le_send_smp_encryption_information:
+5701 700b7d29 jam bt_evt_le_enc_info ,mem_fifo_temp 
+5702 20407c27 call ui_ipc_send_event 
+5703 700b7d47 jam xt_smp_master_identification ,mem_fifo_temp 
+5704 20405620 call le_xtype_fifo_in 
+5705 d8a003a0 arg mem_le_my_ltk ,contw 
+5706 20406226 call generate_random 
+5707 680403a0 fetch 8 ,mem_le_my_ltk 
+5708 6804447b fetch 8 ,mem_le_ltk 
+5709 20405723 call le_send_smp_128 
+570a 20205892 branch le_send_packet 
+
+le_send_smp_master_identification:
+570b 700b7d48 jam xt_smp_identity_information ,mem_fifo_temp 
+570c 20405620 call le_xtype_fifo_in 
+570d d8a04445 arg mem_le_l2cap_response ,contw 
+570e 18007208 force 8 ,loopcnt 
+570f 20406227 call generate_random_loop 
+5710 1800040f force 15 ,temp 
+5711 20205892 branch le_send_packet 
+
+le_send_smp_identity_information:
+5712 700b7d49 jam xt_smp_identity_address_information ,mem_fifo_temp 
+5713 20405620 call le_xtype_fifo_in 
+5714 d8a04445 arg mem_le_l2cap_response ,contw 
+5715 20406226 call generate_random 
+5716 2020588a branch le_send_autolen 
+
+le_send_smp_identity_address_information:
+5717 700b7d4a jam xt_smp_signing_information ,mem_fifo_temp 
+5718 20405620 call le_xtype_fifo_in 
+5719 18007e00 force 0 ,pdata 
+571a 6000c445 store 1 ,mem_le_l2cap_response 
+571b 680344f9 fetch 6 ,mem_le_lap 
+571c e0a30000 istore 6 ,contw 
+571d 2020588a branch le_send_autolen 
+
+le_send_smp_signing_information:
+571e d8a04445 arg mem_le_l2cap_response ,contw 
+571f 20406226 call generate_random 
+5720 2020588a branch le_send_autolen 
+
+le_send_smp_security_request:
+5721 18000406 force 6 ,temp 
+5722 20205892 branch le_send_packet 
+
+le_send_smp_128:
+5723 60044445 store 8 ,mem_le_l2cap_response 
+5724 e8c40000 ifetch 8 ,contr 
+5725 e0a40000 istore 8 ,contw 
+5726 18000415 force 21 ,temp 
+5727 20600000 rtn 
+
+le_send_att_error_response_notfound:
+5728 7003fc0a jam att_err_attribute_not_found ,mem_le_err_code 
+
+le_send_att_error_response:
+5729 70444401 jam attop_error_response ,mem_le_l2cap 
+572a 680183f9 fetch 3 ,mem_le_att_opcode 
+572b 6001c445 store 3 ,mem_le_l2cap_response 
+572c 680083fc fetch 1 ,mem_le_err_code 
+572d e0a08000 istore 1 ,contw 
+572e 2020588a branch le_send_autolen 
+
+le_send_att_exchange_mtu:
+572f 58000017 setarg param_le_mtu 
+5730 e0a10000 istore 2 ,contw 
+5731 2020588a branch le_send_autolen 
+
+le_send_att_find_information_request:
+5732 680144bc fetch 2 ,mem_le_search_handle_start 
+5733 60014445 store 2 ,mem_le_l2cap_response 
+5734 680144be fetch 2 ,mem_le_search_handle_end 
+5735 e0a10000 istore 2 ,contw 
+5736 2020588a branch le_send_autolen 
+
+le_send_att_find_information_response:
+5737 18007e01 force 1 ,pdata 
+5738 6000c445 store 1 ,mem_le_l2cap_response 
+5739 20405a74 call le_init_attlist_search 
+
+le_send_att_find_information_res_loop:
+573a 20405a7d call le_att_handle_inrange 
+573b 203a5746 branch le_send_att_find_information_res_end ,blank 
+573c 24215744 nbranch le_send_att_find_information_res_next ,positive 
+573d 78547c00 disable user 
+573e e0a10000 istore 2 ,contw 
+573f e8c10000 ifetch 2 ,contr 
+5740 e0a10000 istore 2 ,contw 
+
+le_send_att_find_information_res_cont:
+5741 e8c08000 ifetch 1 ,contr 
+5742 98c08c00 iadd contr ,contr 
+5743 2020573a branch le_send_att_find_information_res_loop 
+
+le_send_att_find_information_res_next:
+5744 18c08c02 increase 2 ,contr 
+5745 20205741 branch le_send_att_find_information_res_cont 
+
+le_send_att_find_information_res_end:
+5746 20345728 branch le_send_att_error_response_notfound ,user 
+5747 2020588a branch le_send_autolen 
+
+le_send_att_find_by_type_value_request:
+5748 680144bc fetch 2 ,mem_le_search_handle_start 
+5749 203a5688 branch le_send_empty_le_data ,blank 
+574a 60014445 store 2 ,mem_le_l2cap_response 
+574b 680144be fetch 2 ,mem_le_search_handle_end 
+574c e0a10000 istore 2 ,contw 
+574d 680144c4 fetch 2 ,mem_le_uuid 
+574e e0a10000 istore 2 ,contw 
+574f 680144c0 fetch 2 ,mem_le_search_att_type 
+5750 e0a10000 istore 2 ,contw 
+5751 2020588a branch le_send_autolen 
+
+le_send_att_find_by_type_value_response:
+5752 2040577b call le_start_end_handle_check_1 
+5753 20740000 rtn user 
+5754 680944c4 fetcht 2 ,mem_le_uuid 
+5755 58002800 setarg uuid_gatt_primary_service 
+5756 98467c00 isub temp ,null 
+5757 2022d762 branch le_send_att_find_by_type_value_res_primary ,zero 
+5758 58002801 setarg uuid_gatt_secondary_service 
+5759 98467c00 isub temp ,null 
+575a 2022d728 branch le_send_att_error_response_notfound ,zero 
+575b 58002802 setarg uuid_gatt_include 
+575c 98467c00 isub temp ,null 
+575d 2022d728 branch le_send_att_error_response_notfound ,zero 
+575e 58002803 setarg uuid_gatt_characteristic 
+575f 98467c00 isub temp ,null 
+5760 2022d728 branch le_send_att_error_response_notfound ,zero 
+5761 20205728 branch le_send_att_error_response_notfound 
+
+le_send_att_find_by_type_value_res_primary:
+5762 680944c0 fetcht 2 ,mem_le_search_att_type 
+5763 18c08c02 increase 2 ,contr 
+5764 e8c08000 ifetch 1 ,contr 
+5765 1fe22600 icopy regc 
+5766 1a60a601 increase 1 ,regc 
+
+le_send_att_find_by_type_value_res_primary_search_loop:
+5767 1a60a7ff increase -1 ,regc 
+5768 2022d728 branch le_send_att_error_response_notfound ,zero 
+5769 e8c10000 ifetch 2 ,contr 
+576a 98467c00 isub temp ,null 
+576b 2022d76e branch le_send_att_find_by_type_value_res_primary_search_end ,zero 
+576c 18c08c04 increase 4 ,contr 
+576d 20205767 branch le_send_att_find_by_type_value_res_primary_search_loop 
+
+le_send_att_find_by_type_value_res_primary_search_end:
+576e e8c10000 ifetch 2 ,contr 
+576f 1fe22200 icopy rega 
+5770 e8c10000 ifetch 2 ,contr 
+5771 1fe22400 icopy regb 
+5772 20405785 call le_start_end_handle_check_2 
+5773 20740000 rtn user 
+5774 70444407 jam attop_find_by_type_value_response ,mem_le_l2cap 
+5775 1a227e00 deposit rega 
+5776 60014445 store 2 ,mem_le_l2cap_response 
+5777 1a427e00 deposit regb 
+5778 e0a10000 istore 2 ,contw 
+5779 18000409 force 9 ,temp 
+577a 20205892 branch le_send_packet 
+
+le_start_end_handle_check_1:
+577b 78547c00 disable user 
+577c 680944bc fetcht 2 ,mem_le_search_handle_start 
+577d 680144be fetch 2 ,mem_le_search_handle_end 
+577e 98467c00 isub temp ,null 
+577f 24215782 nbranch le_start_end_handle_check_1_fail ,positive 
+5780 18427e00 deposit temp 
+5781 c1800000 rtnne 0 
+
+le_start_end_handle_check_1_fail:
+5782 78347c00 enable user 
+
+le_send_att_invalid_handle:
+5783 7003fc01 jam att_err_invalid_handle ,mem_le_err_code 
+5784 20205729 branch le_send_att_error_response 
+
+le_start_end_handle_check_2:
+5785 78547c00 disable user 
+5786 680944bc fetcht 2 ,mem_le_search_handle_start 
+5787 1a227e00 deposit rega 
+5788 98467c00 isub temp ,null 
+5789 24215791 nbranch le_start_end_handle_check_2_fail ,positive 
+578a 680144be fetch 2 ,mem_le_search_handle_end 
+578b 9a467c00 isub regb ,null 
+578c 24215791 nbranch le_start_end_handle_check_2_fail ,positive 
+578d 1a427e00 deposit regb 
+578e 9a267c00 isub rega ,null 
+578f 24215791 nbranch le_start_end_handle_check_2_fail ,positive 
+5790 20600000 rtn 
+
+le_start_end_handle_check_2_fail:
+5791 78347c00 enable user 
+5792 20205728 branch le_send_att_error_response_notfound 
+
+le_send_att_read_by_type_request:
+5793 680144bc fetch 2 ,mem_le_search_handle_start 
+5794 e0a10000 istore 2 ,contw 
+5795 680144be fetch 2 ,mem_le_search_handle_end 
+5796 e0a10000 istore 2 ,contw 
+5797 680144c0 fetch 2 ,mem_le_search_att_type 
+5798 e0a10000 istore 2 ,contw 
+5799 1800040b force 11 ,temp 
+579a 20205892 branch le_send_packet 
+
+le_send_att_read_by_type_response:
+579b 680944c0 fetcht 2 ,mem_le_search_att_type 
+579c 58002803 setarg uuid_gatt_characteristic 
+579d 98467c00 isub temp ,null 
+579e 58000007 setarg 7 
+579f 2022d7a5 branch le_send_att_read_by_type_res_cont ,zero 
+57a0 58002800 setarg uuid_gatt_primary_service 
+57a1 98467c00 isub temp ,null 
+57a2 58000006 setarg 6 
+57a3 2022d7a5 branch le_send_att_read_by_type_res_cont ,zero 
+57a4 20205728 branch le_send_att_error_response_notfound 
+
+le_send_att_read_by_type_res_cont:
+57a5 6000c445 store 1 ,mem_le_l2cap_response 
+57a6 20405a74 call le_init_attlist_search 
+57a7 18006003 force 3 ,alarm 
+
+le_send_att_read_by_type_res_loop:
+57a8 20405a7d call le_att_handle_inrange 
+57a9 203a57bc branch le_send_att_read_by_type_res_end ,blank 
+57aa 242157b8 nbranch le_send_att_read_by_type_res_next ,positive 
+57ab 98002200 iforce rega 
+57ac e8c10000 ifetch 2 ,contr 
+57ad 98467c00 isub temp ,null 
+57ae 2422d7b9 nbranch le_send_att_read_by_type_res_next2 ,zero 
+57af 78547c00 disable user 
+57b0 1a227e00 deposit rega 
+57b1 e0a10000 istore 2 ,contw 
+57b2 e8c08000 ifetch 1 ,contr 
+57b3 1fe0f204 add pdata ,4 ,loopcnt 
+57b4 20407e45 call memcpy 
+57b5 1e00e1ff increase -1 ,alarm 
+57b6 2022d7bc branch le_send_att_read_by_type_res_end ,zero 
+57b7 202057b9 branch le_send_att_read_by_type_res_next2 
+
+le_send_att_read_by_type_res_next:
+57b8 18c08c02 increase 2 ,contr 
+
+le_send_att_read_by_type_res_next2:
+57b9 e8c08000 ifetch 1 ,contr 
+57ba 98c08c00 iadd contr ,contr 
+57bb 202057a8 branch le_send_att_read_by_type_res_loop 
+
+le_send_att_read_by_type_res_end:
+57bc 20345728 branch le_send_att_error_response_notfound ,user 
+57bd 2020588a branch le_send_autolen 
+
+le_send_att_read_request:
+57be 6800c43d fetch 1 ,mem_le_temp 
+57bf 1fe0ffff increase -1 ,pdata 
+57c0 6000c43d store 1 ,mem_le_temp 
+57c1 1fe3fe00 lshift pdata ,pdata 
+57c2 98c08c00 iadd contr ,contr 
+57c3 e8c90000 ifetcht 2 ,contr 
+57c4 60094445 storet 2 ,mem_le_l2cap_response 
+57c5 2020588a branch le_send_autolen 
+
+le_send_att_read_response:
+57c6 680903fa fetcht 2 ,mem_le_att_handle 
+57c7 20405a88 call le_att_get_handle_ptr 
+57c8 203a5728 branch le_send_att_error_response_notfound ,blank 
+57c9 e8c08000 ifetch 1 ,contr 
+57ca 203a588a branch le_send_autolen ,blank 
+57cb 1fe67c16 sub pdata ,22 ,null 
+57cc 202157ce branch le_send_att_read_response_less ,positive 
+57cd 18007e16 force 22 ,pdata 
+
+le_send_att_read_response_less:
+57ce 1fe27200 icopy loopcnt 
+57cf 20407e45 call memcpy 
+57d0 2020588a branch le_send_autolen 
+
+le_send_att_read_blob_request:
+57d1 58000003 setarg 0x0003 
+57d2 60014445 store 2 ,mem_le_l2cap_response 
+57d3 58000008 setarg 0x0008 
+57d4 e0a10000 istore 2 ,contw 
+57d5 2020588a branch le_send_autolen 
+
+le_send_att_read_blob_response:
+57d6 680144c0 fetch 2 ,mem_le_att_offset 
+57d7 98002200 iforce rega 
+57d8 680903fa fetcht 2 ,mem_le_att_handle 
+57d9 20405a88 call le_att_get_handle_ptr 
+57da 203a5728 branch le_send_att_error_response_notfound ,blank 
+57db e8c08000 ifetch 1 ,contr 
+57dc 9a267200 isub rega ,loopcnt 
+57dd 24215728 nbranch le_send_att_error_response_notfound ,positive 
+57de 1f267c16 sub loopcnt ,22 ,null 
+57df 202157e1 branch le_send_att_read_blob_response_less ,positive 
+57e0 18007216 force 22 ,loopcnt 
+
+le_send_att_read_blob_response_less:
+57e1 1a227e00 deposit rega 
+57e2 98c08c00 iadd contr ,contr 
+57e3 20407e45 call memcpy 
+57e4 2020588a branch le_send_autolen 
+
+le_send_att_read_multiple_request:
+57e5 58000003 setarg 0x0003 
+57e6 e0a10000 istore 2 ,contw 
+57e7 58000007 setarg 0x0007 
+57e8 e0a10000 istore 2 ,contw 
+57e9 58000009 setarg 0x0009 
+57ea e0a10000 istore 2 ,contw 
+57eb 2020588a branch le_send_autolen 
+
+le_send_att_read_multiple_response:
+57ec 6800c43d fetch 1 ,mem_le_temp 
+57ed 1fe22600 icopy regc 
+57ee da200347 arg mem_le_rxbuf + 7 ,rega 
+57ef da404445 arg mem_le_l2cap_response ,regb 
+57f0 d9600000 arg 0 ,timeup 
+57f1 7858fc00 disable user7 
+
+le_send_att_read_multiple_response_loop:
+57f2 1a220c00 copy rega ,contr 
+57f3 e8c90000 ifetcht 2 ,contr 
+57f4 18c22200 copy contr ,rega 
+57f5 20405a88 call le_att_get_handle_ptr 
+57f6 203a5805 branch le_send_att_read_multiple_response_end ,blank 
+57f7 e8c08000 ifetch 1 ,contr 
+57f8 1fe27200 icopy loopcnt 
+57f9 99609600 iadd timeup ,timeup 
+57fa 19667c18 sub timeup ,24 ,null 
+57fb 2421580a nbranch le_send_att_read_multiple_response_end_1 ,positive 
+57fc 1a420a00 copy regb ,contw 
+
+le_copy_att_value_loop_3:
+57fd e8c08000 ifetch 1 ,contr 
+57fe e0a08000 istore 1 ,contw 
+57ff c20057fd loop le_copy_att_value_loop_3 
+5800 18a22400 copy contw ,regb 
+5801 7838fc00 enable user7 
+5802 1a60a7ff increase -1 ,regc 
+5803 2022d805 branch le_send_att_read_multiple_response_end ,zero 
+5804 202057f2 branch le_send_att_read_multiple_response_loop 
+
+le_send_att_read_multiple_response_end:
+5805 2438d810 nbranch le_send_att_read_multiple_response_fail ,user7 
+5806 7858fc00 disable user7 
+5807 19620400 copy timeup ,temp 
+5808 18408405 increase 5 ,temp 
+5809 20205892 branch le_send_packet 
+
+le_send_att_read_multiple_response_end_1:
+580a 2438d810 nbranch le_send_att_read_multiple_response_fail ,user7 
+580b 7858fc00 disable user7 
+580c 19627e00 deposit timeup 
+580d 9f260400 isub loopcnt ,temp 
+580e 18408405 increase 5 ,temp 
+580f 20205892 branch le_send_packet 
+
+le_send_att_read_multiple_response_fail:
+5810 7003fc10 jam att_err_unsupported_group_type ,mem_le_err_code 
+5811 20205729 branch le_send_att_error_response 
+
+le_send_att_read_by_group_type_request:
+5812 680103fa fetch 2 ,mem_le_att_handle 
+5813 203a5688 branch le_send_empty_le_data ,blank 
+5814 e0a10000 istore 2 ,contw 
+5815 5800ffff setarg 0xffff 
+5816 e0a10000 istore 2 ,contw 
+5817 58002800 setarg 0x2800 
+5818 e0a10000 istore 2 ,contw 
+5819 2020588a branch le_send_autolen 
+
+le_send_att_read_by_group_type_response:
+581a 58000006 setarg 0x06 
+581b 6000c445 store 1 ,mem_le_l2cap_response 
+581c 680144c0 fetch 2 ,mem_le_search_att_type 
+581d 98002200 iforce rega 
+581e 20405a74 call le_init_attlist_search 
+581f 18007203 force 3 ,loopcnt 
+
+le_send_att_read_by_group_type_response_loop:
+5820 20405a7d call le_att_handle_inrange 
+5821 203a5835 branch le_send_att_read_by_group_type_response_last ,blank 
+5822 2421583a nbranch le_send_att_read_by_group_type_response_next ,positive 
+5823 98006000 iforce alarm 
+5824 e8c10000 ifetch 2 ,contr 
+5825 9a267c00 isub rega ,null 
+5826 2422d83b nbranch le_send_att_read_by_group_type_response_cont ,zero 
+5827 1e027e00 deposit alarm 
+5828 2034582f branch le_send_att_read_by_group_type_response_first ,user 
+5829 1fe0ffff increase -1 ,pdata 
+582a e0a10000 istore 2 ,contw 
+582b e0a90000 istoret 2 ,contw 
+582c 1fe0fe01 increase 1 ,pdata 
+582d 1f20f3ff increase -1 ,loopcnt 
+582e 2022d88a branch le_send_autolen ,zero 
+
+le_send_att_read_by_group_type_response_first:
+582f 78547c00 disable user 
+5830 e0a10000 istore 2 ,contw 
+5831 18c08c01 increase 1 ,contr 
+5832 e8c90000 ifetcht 2 ,contr 
+5833 18c08dfd increase -3 ,contr 
+5834 2020583b branch le_send_att_read_by_group_type_response_cont 
+
+le_send_att_read_by_group_type_response_last:
+5835 20345728 branch le_send_att_error_response_notfound ,user 
+5836 18007fff force -1 ,pdata 
+5837 e0a10000 istore 2 ,contw 
+5838 e0a90000 istoret 2 ,contw 
+5839 2020588a branch le_send_autolen 
+
+le_send_att_read_by_group_type_response_next:
+583a 18c08c02 increase 2 ,contr 
+
+le_send_att_read_by_group_type_response_cont:
+583b e8c08000 ifetch 1 ,contr 
+583c 98c08c00 iadd contr ,contr 
+583d 20205820 branch le_send_att_read_by_group_type_response_loop 
+
+le_send_att_write_request:
+583e 680144c2 fetch 2 ,mem_le_notify_handle 
+583f 60014445 store 2 ,mem_le_l2cap_response 
+5840 6800c4c6 fetch 1 ,mem_le_handle_data_len 
+5841 1fe27200 copy pdata ,loopcnt 
+5842 d8c044c7 arg mem_le_handle_data ,contr 
+5843 20407e45 call memcpy 
+5844 2020588a branch le_send_autolen 
+
+le_send_att_write_response:
+5845 680903fa fetcht 2 ,mem_le_att_handle 
+5846 20405a88 call le_att_get_handle_ptr 
+5847 203a585c branch le_send_att_write_response_go ,blank 
+5848 18c08dfe increase -2 ,contr 
+5849 e8c90000 ifetcht 2 ,contr 
+584a 58002902 setarg uuid_client_characteristic 
+584b 98467c00 isub temp ,null 
+584c 2422d85c nbranch le_send_att_write_response_go ,zero 
+584d 18c08c01 increase 1 ,contr 
+584e e8c90000 ifetcht 2 ,contr 
+584f 58000001 setarg 0x0001 
+5850 98467c00 isub temp ,null 
+5851 2022d856 branch le_send_att_write_response_notify ,zero 
+5852 58000000 setarg 0x0000 
+5853 98467c00 isub temp ,null 
+5854 2422d85c nbranch le_send_att_write_response_go ,zero 
+5855 2020585c branch le_send_att_write_response_go 
+
+le_send_att_write_response_notify:
+5856 18c08df9 increase -7 ,contr 
+5857 e8c10000 ifetch 2 ,contr 
+5858 1fe0ffff increase -1 ,pdata 
+5859 600144c2 store 2 ,mem_le_notify_handle 
+585a 700b7d1b jam attop_handle_value_notification ,mem_fifo_temp 
+585b 20405620 call le_xtype_fifo_in 
+
+le_send_att_write_response_go:
+585c 18000405 force 5 ,temp 
+585d 20205892 branch le_send_packet 
+
+le_send_att_prepare_write_request:
+585e 18000406 force 6 ,temp 
+585f 20205892 branch le_send_packet 
+
+le_send_att_prepare_write_response:
+5860 18000406 force 6 ,temp 
+5861 20205892 branch le_send_packet 
+
+le_send_att_execute_write_request:
+5862 18000406 force 6 ,temp 
+5863 20205892 branch le_send_packet 
+
+le_send_att_execute_write_response:
+5864 18000406 force 6 ,temp 
+5865 20205892 branch le_send_packet 
+
+le_att_check_notification_enable:
+5866 79200025 set1 mark_ext_patch ,mark 
+5867 44b3402c bpatch patch2c_6 ,mem_patch2c 
+5868 18408401 increase 1 ,temp 
+5869 20405a88 call le_att_get_handle_ptr 
+586a 18c08dfe increase -2 ,contr 
+586b e8c10000 ifetch 2 ,contr 
+586c d8402902 arg client_charactertic_configuration ,temp 
+586d 98467c00 isub temp ,null 
+586e 24628000 nrtn zero 
+586f 18c08c01 increase 1 ,contr 
+5870 18c22200 copy contr ,rega 
+5871 e8c08000 ifetch 1 ,contr 
+5872 20600000 rtn 
+
+le_send_att_handle_value_notification:
+5873 70041b00 jam 0 ,mem_le_notify_len 
+5874 68014298 fetch 2 ,mem_cb_update_notify_value 
+5875 20407f66 call callback_func 
+5876 d8a04444 arg mem_le_l2cap ,contw 
+5877 18a08a01 increase 1 ,contw 
+5878 680944c2 fetcht 2 ,mem_le_notify_handle 
+5879 e0a90000 istoret 2 ,contw 
+587a 20405a88 call le_att_get_handle_ptr 
+587b e8c08000 ifetch 1 ,contr 
+587c 1fe27200 icopy loopcnt 
+587d 20407e45 call memcpy 
+587e 6808841b fetcht 1 ,mem_le_notify_len 
+587f 18408407 increase 7 ,temp 
+5880 20405892 call le_send_packet 
+5881 20205ace branch le_clear_notify_att 
+
+le_send_att_handle_value_indication:
+5882 18000406 force 6 ,temp 
+5883 20205892 branch le_send_packet 
+
+le_send_att_handle_value_confirmation:
+5884 18000406 force 6 ,temp 
+5885 20205892 branch le_send_packet 
+
+le_send_att_write_command:
+5886 18000406 force 6 ,temp 
+5887 20205892 branch le_send_packet 
+
+le_send_att_signed_write_command:
+5888 18000406 force 6 ,temp 
+5889 20205892 branch le_send_packet 
+
+le_send_autolen:
+588a 79200025 set1 mark_ext_patch ,mark 
+588b 44b3c02c bpatch patch2c_7 ,mem_patch2c 
+588c 58004440 setarg mem_le_txpayload 
+588d 98a67e00 isub contw ,pdata 
+588e 1fe60400 sub pdata ,0 ,temp 
+588f 20205892 branch le_send_packet 
+
+le_send_empty:
+5890 18000400 force 0 ,temp 
+5891 18000201 force 1 ,type 
+
+le_send_packet:
+5892 79200025 set1 mark_ext_patch ,mark 
+5893 44b4402d bpatch patch2d_0 ,mem_patch2d 
+5894 6008c43f storet 1 ,mem_le_txlen 
+5895 28200602 compare 2 ,type ,3 
+5896 2420d899 nbranch le_send_non_l2cap ,true 
+5897 1840fffc add temp ,-4 ,pdata 
+5898 60014440 store 2 ,mem_le_txpayload 
+
+le_send_non_l2cap:
+5899 680883d7 fetcht 1 ,mem_le_arq 
+589a 2040561a call le_xtype_fifo_is_empty 
+589b 7d3a0404 nsetflag blank ,md ,temp 
+589c 79200405 set1 wak ,temp 
+589d 18417efc and temp ,0xfc ,pdata 
+589e 9821fe00 ior type ,pdata 
+589f 600083d7 store 1 ,mem_le_arq 
+58a0 1fe17e1f and_into 0x1f ,pdata 
+58a1 6000c43e store 1 ,mem_le_txheader 
+58a2 79200025 set1 mark_ext_patch ,mark 
+58a3 44b4c02d bpatch patch2d_1 ,mem_patch2d 
+58a4 6800c43e fetch 1 ,mem_le_txheader 
+58a5 28200601 compare 1 ,type ,3 
+58a6 20608000 rtn true 
+58a7 6803c43f fetch 7 ,mem_le_txheader + 1 
+58a8 680083c0 fetch 1 ,mem_le_state 
+58a9 c4020000 rtnbit0 lestate_encryption 
+58aa 20407599 call load_sk 
+58ab 202074f7 branch le_encrypt 
+
+le_parse:
+58ac 79200025 set1 mark_ext_patch ,mark 
+58ad 44b5402d bpatch patch2d_2 ,mem_patch2d 
+58ae 2040561c call le_xtype_fifo_is_full 
+58af 243a3bf1 nbranch assert ,blank 
+58b0 247a0000 nrtn blank 
+58b1 68008341 fetch 1 ,mem_le_rxbuf + 1 
+58b2 207a0000 rtn blank 
+58b3 68008340 fetch 1 ,mem_le_rxbuf 
+58b4 2fe00601 compare 1 ,pdata ,3 
+58b5 2020d8cf branch le_parse_l2cap ,true 
+58b6 68038341 fetch 7 ,mem_le_rxbuf + 1 
+58b7 68008340 fetch 1 ,mem_le_rxbuf 
+58b8 2fe00602 compare 2 ,pdata ,3 
+58b9 2020d8cf branch le_parse_l2cap ,true 
+58ba 68008342 fetch 1 ,mem_le_rxbuf + 2 
+58bb 60008418 store 1 ,mem_le_rx_ll_opcode 
+58bc 1fe22600 copy pdata ,regc 
+58bd 79200025 set1 mark_ext_patch ,mark 
+58be 44b5c02d bpatch patch2d_3 ,mem_patch2d 
+58bf 1a627e00 copy regc ,pdata 
+58c0 c0005924 beq ll_connection_update_req ,le_parse_connection_update_req 
+58c1 c000d92c beq ll_channel_map_req ,le_parse_channel_map_req 
+58c2 c0015934 beq ll_terminate_ind ,le_parse_terminate_ind 
+58c3 c001d938 beq ll_enc_req ,le_parse_enc_req 
+58c4 c002593f beq ll_enc_rsp ,le_parse_enc_rsp 
+58c5 c002d944 beq ll_start_enc_req ,le_parse_start_enc_req 
+58c6 c0035949 beq ll_start_enc_rsp ,le_parse_start_enc_rsp 
+58c7 c003d94c beq ll_unknown_rsp ,le_parse_unknown_rsp 
+58c8 c004594d beq ll_feature_req ,le_parse_feature_req 
+58c9 c004d94f beq ll_feature_rsp ,le_parse_feature_rsp 
+58ca c0055950 beq ll_pause_enc_req ,le_parse_pause_enc_req 
+58cb c005d951 beq ll_pause_enc_rsp ,le_parse_pause_enc_rsp 
+58cc c0065952 beq ll_version_ind ,le_parse_version_ind 
+58cd c006d955 beq ll_reject_ind ,le_parse_reject_ind 
+58ce 20203bf1 branch assert 
+
+le_parse_l2cap:
+58cf 68008341 fetch 1 ,mem_le_rxbuf + 1 
+58d0 1fe17e1f and pdata ,0x1f ,pdata 
+58d1 207a0000 rtn blank 
+58d2 6800c132 fetch 1 ,mem_device_option 
+58d3 c000d8d8 beq dvc_op_hci ,le_acl_upgoing 
+58d4 68010344 fetch 2 ,mem_le_rxbuf + 4 
+58d5 c0025903 beq le_l2cap_cid_att ,le_parse_att 
+58d6 c00358f4 beq le_l2cap_cid_smp ,le_parse_smp 
+58d7 20600000 rtn 
+
+le_acl_upgoing:
+58d8 79200025 set1 mark_ext_patch ,mark 
+58d9 44b6402d bpatch patch2d_4 ,mem_patch2d 
+58da 20404972 call hci_get_packet_ptr 
+58db 680083d6 fetch 1 ,mem_le_conn_handle 
+58dc 68088340 fetcht 1 ,mem_le_rxbuf 
+58dd 18410403 and_into 3 ,temp 
+58de 184d0400 lshift8 temp ,temp 
+58df 18520400 lshift4 temp ,temp 
+58e0 9841fe00 ior temp ,pdata 
+58e1 e1410000 istore 2 ,contwu 
+58e2 68088341 fetcht 1 ,mem_le_rxbuf + 1 
+58e3 1841041f and temp ,0x1f ,temp 
+58e4 e1490000 istoret 2 ,contwu 
+58e5 18427200 copy temp ,loopcnt 
+58e6 20404976 call uart_copy_tx_bytes 
+58e7 1840f204 add temp ,4 ,loopcnt 
+58e8 20404424 call h4_send_packet_acl 
+58e9 20204435 branch h4_send_acl_trigger 
+
+le_acl_downgoing:
+58ea 79200025 set1 mark_ext_patch ,mark 
+58eb 44b6c02d bpatch patch2d_5 ,mem_patch2d 
+58ec d8200002 arg 0x2 ,type 
+58ed e8610000 ifetch 2 ,contru 
+58ee e8610000 ifetch 2 ,contru 
+58ef 203a3bf1 branch assert ,blank 
+58f0 1fe27200 copy pdata ,loopcnt 
+58f1 d8a04440 arg mem_le_txpayload ,contw 
+58f2 2040497c call uart_copy_rx_bytes 
+58f3 2020588a branch le_send_autolen 
+
+le_parse_smp:
+58f4 79200025 set1 mark_ext_patch ,mark 
+58f5 44b7402d bpatch patch2d_6 ,mem_patch2d 
+58f6 e8c08000 ifetch 1 ,contr 
+58f7 c000d956 beq smp_pairing_request ,le_parse_smp_pairing_request 
+58f8 c001595b beq smp_pairing_response ,le_parse_smp_pairing_response 
+58f9 c001d960 beq smp_pairing_confirm ,le_parse_smp_pairing_confirm 
+58fa c0025966 beq smp_pairing_random ,le_parse_smp_pairing_random 
+58fb c002d96f beq smp_pairing_failed ,le_parse_smp_pairing_failed 
+58fc c0035970 beq smp_encryption_information ,le_parse_smp_encryption_information 
+58fd c003d972 beq smp_master_identification ,le_parse_smp_master_identification 
+58fe c0045973 beq smp_identity_information ,le_parse_smp_identity_information 
+58ff c004d974 beq smp_identity_address_information ,le_parse_smp_identity_address_information 
+5900 c0055975 beq smp_signing_information ,le_parse_smp_signing_information 
+5901 c005d976 beq smp_security_request ,le_parse_smp_security_request 
+5902 20203bf1 branch assert 
+
+le_parse_att:
+5903 79200025 set1 mark_ext_patch ,mark 
+5904 44b7c02d bpatch patch2d_7 ,mem_patch2d 
+5905 e8c18000 ifetch 3 ,contr 
+5906 600183f9 store 3 ,mem_le_att_opcode 
+
+le_parse_att_p:
+5907 c000d977 beq attop_error_response ,le_parse_att_error_response 
+5908 c001598e beq attop_exchange_mtu_request ,le_parse_att_exchange_mtu_request 
+5909 c001d990 beq attop_exchange_mtu_response ,le_parse_att_exchange_mtu_response 
+590a c0025991 beq attop_find_information_request ,le_parse_att_find_information_request 
+590b c002d997 beq attop_find_information_response ,le_parse_att_find_information_response 
+590c c003599a beq attop_find_by_type_value_request ,le_parse_att_find_by_type_value_request 
+590d c003d9a4 beq attop_find_by_type_value_response ,le_parse_att_find_by_type_value_response 
+590e c00459a5 beq attop_read_by_type_request ,le_parse_att_read_by_type_request 
+590f c004d9ad beq attop_read_by_type_response ,le_parse_att_read_by_type_response 
+5910 c00559ae beq attop_read_request ,le_parse_att_read_request 
+5911 c005d9b2 beq attop_read_response ,le_parse_att_read_response 
+5912 c00659b5 beq attop_read_blob_request ,le_parse_att_read_blob_request 
+5913 c006d9b9 beq attop_read_blob_response ,le_parse_att_read_blob_response 
+5914 c00759ba beq attop_read_multiple_request ,le_parse_att_read_multiple_request 
+5915 c007d9c0 beq attop_read_multiple_response ,le_parse_att_read_multiple_response 
+5916 c00859c1 beq attop_read_by_group_type_request ,le_parse_att_read_by_group_type_request 
+5917 c008d9c9 beq attop_read_by_group_type_response ,le_parse_att_read_by_group_type_response 
+5918 c00959ca beq attop_write_request ,le_parse_att_write_request 
+5919 c009d9da beq attop_write_response ,le_parse_att_write_response 
+591a c00b59dc beq attop_prepare_write_request ,le_parse_att_prepare_write_request 
+591b c00bd9dd beq attop_prepare_write_response ,le_parse_att_prepare_write_response 
+591c c00c59de beq attop_execute_write_request ,le_parse_att_execute_write_request 
+591d c00cd9df beq attop_execute_write_response ,le_parse_att_execute_write_response 
+591e c00dd9e0 beq attop_handle_value_notification ,le_parse_att_handle_value_notification 
+591f c00ed9eb beq attop_handle_value_indication ,le_parse_att_handle_value_indication 
+5920 c00f59ec beq attop_handle_value_confirmation ,le_parse_att_handle_value_confirmation 
+5921 c02959ed beq attop_write_command ,le_parse_att_write_command 
+5922 c0695a01 beq attop_signed_write_command ,le_parse_att_signed_write_command 
+5923 20203bf1 branch assert 
+
+le_parse_connection_update_req:
+5924 e8c48000 ifetch 9 ,contr 
+5925 6004c434 store 9 ,mem_le_new_param 
+5926 e8c10000 ifetch 2 ,contr 
+5927 600103e0 store 2 ,mem_le_instant 
+5928 680083c0 fetch 1 ,mem_le_state 
+5929 79207e05 set1 lestate_update_param ,pdata 
+592a 600083c0 store 1 ,mem_le_state 
+592b 20600000 rtn 
+
+le_parse_channel_map_req:
+592c e8c28000 ifetch 5 ,contr 
+592d 6002c42f store 5 ,mem_le_new_map 
+592e e8c10000 ifetch 2 ,contr 
+592f 600103e0 store 2 ,mem_le_instant 
+5930 680083c0 fetch 1 ,mem_le_state 
+5931 79207e06 set1 lestate_update_map ,pdata 
+5932 600083c0 store 1 ,mem_le_state 
+5933 20600000 rtn 
+
+le_parse_terminate_ind:
+5934 680083e4 fetch 1 ,mem_le_op 
+5935 79207e03 set1 op_disconn ,pdata 
+5936 600083e4 store 1 ,mem_le_op 
+5937 20600000 rtn 
+
+le_parse_enc_req:
+5938 18c08c0a increase 10 ,contr 
+5939 e8c40000 ifetch 8 ,contr 
+593a 60040380 store 8 ,mem_le_skdm 
+593b e8c20000 ifetch 4 ,contr 
+593c 60024473 store 4 ,mem_le_ivm 
+593d 700b7d24 jam xt_ll_enc_rsp ,mem_fifo_temp 
+593e 20205620 branch le_xtype_fifo_in 
+
+le_parse_enc_rsp:
+593f e8c40000 ifetch 8 ,contr 
+5940 60040388 store 8 ,mem_le_skds 
+5941 e8c20000 ifetch 4 ,contr 
+5942 60024477 store 4 ,mem_le_ivs 
+5943 202074b6 branch generate_sk 
+
+le_parse_start_enc_req:
+5944 680083c0 fetch 1 ,mem_le_state 
+5945 79207e04 set1 lestate_encryption ,pdata 
+5946 600083c0 store 1 ,mem_le_state 
+5947 700b7d26 jam xt_ll_start_enc_rsp ,mem_fifo_temp 
+5948 20205620 branch le_xtype_fifo_in 
+
+le_parse_start_enc_rsp:
+5949 20748000 rtn master 
+594a 700b7d26 jam xt_ll_start_enc_rsp ,mem_fifo_temp 
+594b 20205620 branch le_xtype_fifo_in 
+
+le_parse_unknown_rsp:
+594c 20600000 rtn 
+
+le_parse_feature_req:
+594d 700b7d29 jam xt_ll_feature_rsp ,mem_fifo_temp 
+594e 20205620 branch le_xtype_fifo_in 
+
+le_parse_feature_rsp:
+594f 20600000 rtn 
+
+le_parse_pause_enc_req:
+5950 20600000 rtn 
+
+le_parse_pause_enc_rsp:
+5951 20600000 rtn 
+
+le_parse_version_ind:
+5952 20748000 rtn master 
+5953 700b7d2c jam xt_ll_version_ind ,mem_fifo_temp 
+5954 20205620 branch le_xtype_fifo_in 
+
+le_parse_reject_ind:
+5955 20600000 rtn 
+
+le_parse_smp_pairing_request:
+5956 6000c4ae store 1 ,mem_le_preq 
+5957 e8c30000 ifetch 6 ,contr 
+5958 e0a30000 istore 6 ,contw 
+5959 700b7d42 jam xt_smp_pairing_response ,mem_fifo_temp 
+595a 20205620 branch le_xtype_fifo_in 
+
+le_parse_smp_pairing_response:
+595b 6000c4b5 store 1 ,mem_le_pres 
+595c e8c30000 ifetch 6 ,contr 
+595d e0a30000 istore 6 ,contw 
+595e 700b7d43 jam xt_smp_pairing_confirm ,mem_fifo_temp 
+595f 20205620 branch le_xtype_fifo_in 
+
+le_parse_smp_pairing_confirm:
+5960 d8a0448c arg mem_le_rconfirm ,contw 
+5961 20407e35 call memcpy16 
+5962 700b7d44 jam xt_smp_pairing_random ,mem_fifo_temp 
+5963 2034d620 branch le_xtype_fifo_in ,master 
+5964 700b7d43 jam xt_smp_pairing_confirm ,mem_fifo_temp 
+5965 20205620 branch le_xtype_fifo_in 
+
+le_parse_smp_pairing_random:
+5966 204074a8 call authenticate_rconfirm 
+5967 2022d96a branch le_parse_smp_pairing_random_success ,zero 
+5968 700b7d45 jam xt_smp_pairing_failed ,mem_fifo_temp 
+5969 20205620 branch le_xtype_fifo_in 
+
+le_parse_smp_pairing_random_success:
+596a 204074a5 call generate_stk 
+596b 700b7d23 jam xt_ll_enc_req ,mem_fifo_temp 
+596c 2034d620 branch le_xtype_fifo_in ,master 
+596d 700b7d44 jam xt_smp_pairing_random ,mem_fifo_temp 
+596e 20205620 branch le_xtype_fifo_in 
+
+le_parse_smp_pairing_failed:
+596f 20600000 rtn 
+
+le_parse_smp_encryption_information:
+5970 d8a00390 arg mem_le_peer_ltk ,contw 
+5971 20207e35 branch memcpy16 
+
+le_parse_smp_master_identification:
+5972 20600000 rtn 
+
+le_parse_smp_identity_information:
+5973 20600000 rtn 
+
+le_parse_smp_identity_address_information:
+5974 20600000 rtn 
+
+le_parse_smp_signing_information:
+5975 20600000 rtn 
+
+le_parse_smp_security_request:
+5976 20600000 rtn 
+
+le_parse_att_error_response:
+5977 18c08dfe increase -2 ,contr 
+5978 e8c88000 ifetcht 1 ,contr 
+5979 58000006 setarg attop_find_by_type_value_request 
+597a 98467c00 isub temp ,null 
+597b 2022d989 branch le_parse_att_error_res_find_by_type_value ,zero 
+597c 58000004 setarg attop_find_information_request 
+597d 98467c00 isub temp ,null 
+597e 2022d98a branch le_parse_att_error_res_find_info ,zero 
+597f 58000008 setarg attop_read_by_type_request 
+5980 98467c00 isub temp ,null 
+5981 2022d98b branch le_parse_att_error_res_read_by_type ,zero 
+5982 5800000c setarg attop_read_blob_request 
+5983 98467c00 isub temp ,null 
+5984 2022d98c branch le_parse_att_error_res_read_blob ,zero 
+5985 5800000e setarg attop_read_multiple_request 
+5986 98467c00 isub temp ,null 
+5987 2022d98d branch le_parse_att_error_res_read_multiple ,zero 
+5988 20600000 rtn 
+
+le_parse_att_error_res_find_by_type_value:
+5989 20600000 rtn 
+
+le_parse_att_error_res_find_info:
+598a 20600000 rtn 
+
+le_parse_att_error_res_read_by_type:
+598b 20600000 rtn 
+
+le_parse_att_error_res_read_blob:
+598c 20600000 rtn 
+
+le_parse_att_error_res_read_multiple:
+598d 20600000 rtn 
+
+le_parse_att_exchange_mtu_request:
+598e 700b7d03 jam attop_exchange_mtu_response ,mem_fifo_temp 
+598f 20205620 branch le_xtype_fifo_in 
+
+le_parse_att_exchange_mtu_response:
+5990 20600000 rtn 
+
+le_parse_att_find_information_request:
+5991 1fecfe00 rshift8 pdata ,pdata 
+5992 600144bc store 2 ,mem_le_search_handle_start 
+5993 e8c10000 ifetch 2 ,contr 
+5994 600144be store 2 ,mem_le_search_handle_end 
+5995 700b7d05 jam attop_find_information_response ,mem_fifo_temp 
+5996 20205620 branch le_xtype_fifo_in 
+
+le_parse_att_find_information_response:
+5997 20600000 rtn 
+
+le_parse_att_find_info_res_multi:
+5998 20600000 rtn 
+
+le_parse_att_find_info_res_error:
+5999 20600000 rtn 
+
+le_parse_att_find_by_type_value_request:
+599a 1fecfe00 rshift8 pdata ,pdata 
+599b 600144bc store 2 ,mem_le_search_handle_start 
+599c e8c10000 ifetch 2 ,contr 
+599d 600144be store 2 ,mem_le_search_handle_end 
+599e e8c10000 ifetch 2 ,contr 
+599f 600144c4 store 2 ,mem_le_uuid 
+59a0 e8c10000 ifetch 2 ,contr 
+59a1 600144c0 store 2 ,mem_le_search_att_type 
+59a2 700b7d07 jam attop_find_by_type_value_response ,mem_fifo_temp 
+59a3 20205620 branch le_xtype_fifo_in 
+
+le_parse_att_find_by_type_value_response:
+59a4 20600000 rtn 
+
+le_parse_att_read_by_type_request:
+59a5 1fecfe00 rshift8 pdata ,pdata 
+59a6 600144bc store 2 ,mem_le_search_handle_start 
+59a7 e8c10000 ifetch 2 ,contr 
+59a8 600144be store 2 ,mem_le_search_handle_end 
+59a9 e8c10000 ifetch 2 ,contr 
+59aa 600144c0 store 2 ,mem_le_search_att_type 
+59ab 700b7d09 jam attop_read_by_type_response ,mem_fifo_temp 
+59ac 20205620 branch le_xtype_fifo_in 
+
+le_parse_att_read_by_type_response:
+59ad 20600000 rtn 
+
+le_parse_att_read_request:
+59ae 68010347 fetch 2 ,mem_le_rxbuf + 7 
+59af 600103fa store 2 ,mem_le_att_handle 
+59b0 700b7d0b jam attop_read_response ,mem_fifo_temp 
+59b1 20205620 branch le_xtype_fifo_in 
+
+le_parse_att_read_response:
+59b2 20600000 rtn 
+
+le_send_att_read_res_end:
+59b3 20600000 rtn 
+
+le_prepare_descriptor:
+59b4 20600000 rtn 
+
+le_parse_att_read_blob_request:
+59b5 e8c10000 ifetch 2 ,contr 
+59b6 600144c0 store 2 ,mem_le_att_offset 
+59b7 700b7d0d jam attop_read_blob_response ,mem_fifo_temp 
+59b8 20205620 branch le_xtype_fifo_in 
+
+le_parse_att_read_blob_response:
+59b9 20600000 rtn 
+
+le_parse_att_read_multiple_request:
+59ba 68008341 fetch 1 ,mem_le_rxbuf + 1 
+59bb 1fe0fffb increase -5 ,pdata 
+59bc 1fe37e00 rshift pdata ,pdata 
+59bd 6000c43d store 1 ,mem_le_temp 
+59be 700b7d0f jam attop_read_multiple_response ,mem_fifo_temp 
+59bf 20205620 branch le_xtype_fifo_in 
+
+le_parse_att_read_multiple_response:
+59c0 20600000 rtn 
+
+le_parse_att_read_by_group_type_request:
+59c1 1fecfe00 rshift8 pdata ,pdata 
+59c2 600144bc store 2 ,mem_le_search_handle_start 
+59c3 e8c10000 ifetch 2 ,contr 
+59c4 600144be store 2 ,mem_le_search_handle_end 
+59c5 e8c10000 ifetch 2 ,contr 
+59c6 600144c0 store 2 ,mem_le_search_att_type 
+59c7 700b7d11 jam attop_read_by_group_type_response ,mem_fifo_temp 
+59c8 20205620 branch le_xtype_fifo_in 
+
+le_parse_att_read_by_group_type_response:
+59c9 20600000 rtn 
+
+le_parse_att_write_request:
+59ca 68008341 fetch 1 ,mem_le_rxbuf + 1 
+59cb 1fe0fff9 increase -7 ,pdata 
+59cc 1fe27200 icopy loopcnt 
+59cd 680903fa fetcht 2 ,mem_le_att_handle 
+59ce 20405a88 call le_att_get_handle_ptr 
+59cf 203a59d8 branch le_parse_att_write_request_fail ,blank 
+59d0 e8c08000 ifetch 1 ,contr 
+59d1 9f267c00 isub loopcnt ,null 
+59d2 242159d8 nbranch le_parse_att_write_request_fail ,positive 
+59d3 18c20a00 copy contr ,contw 
+59d4 d8c00349 arg mem_le_rxbuf + 9 ,contr 
+59d5 20407e45 call memcpy 
+59d6 700b7d28 jam bt_evt_le_write_request ,mem_fifo_temp 
+59d7 20407c27 call ui_ipc_send_event 
+
+le_parse_att_write_request_fail:
+59d8 700b7d13 jam attop_write_response ,mem_fifo_temp 
+59d9 20205620 branch le_xtype_fifo_in 
+
+le_parse_att_write_response:
+59da 680083e3 fetch 1 ,mem_le_conn_sm 
+59db 20600000 rtn 
+
+le_parse_att_prepare_write_request:
+59dc 20600000 rtn 
+
+le_parse_att_prepare_write_response:
+59dd 20600000 rtn 
+
+le_parse_att_execute_write_request:
+59de 20600000 rtn 
+
+le_parse_att_execute_write_response:
+59df 20600000 rtn 
+
+le_parse_att_handle_value_notification:
+59e0 e8c28000 ifetch 5 ,contr 
+59e1 60028ff1 store 5 ,mem_mouse_data 
+59e2 700ff001 jam send_mouse_data_cmd ,mem_mcmd 
+59e3 20407cdb call usb_isr 
+59e4 20600000 rtn 
+
+le_kb_handle_value_notification:
+59e5 1a220c00 copy rega ,contr 
+59e6 e8c40000 ifetch 8 ,contr 
+59e7 60040ff1 store 8 ,mem_mouse_data 
+59e8 700ff002 jam send_kb_data_cmd ,mem_mcmd 
+59e9 20407cdb call usb_isr 
+59ea 20600000 rtn 
+
+le_parse_att_handle_value_indication:
+59eb 20600000 rtn 
+
+le_parse_att_handle_value_confirmation:
+59ec 20600000 rtn 
+
+le_parse_att_write_command:
+59ed 68008341 fetch 1 ,mem_le_rxbuf + 1 
+59ee 1fe0fff9 increase -7 ,pdata 
+59ef 1fe27200 icopy loopcnt 
+59f0 680903fa fetcht 2 ,mem_le_att_handle 
+59f1 20405a88 call le_att_get_handle_ptr 
+59f2 203a59fd branch le_parse_att_write_command_fail ,blank 
+59f3 e8c08000 ifetch 1 ,contr 
+59f4 9f267c00 isub loopcnt ,null 
+59f5 242159fd nbranch le_parse_att_write_command_fail ,positive 
+59f6 18c20a00 copy contr ,contw 
+59f7 18c22200 copy contr ,rega 
+59f8 1f222400 copy loopcnt ,regb 
+59f9 d8c00349 arg mem_le_rxbuf + 9 ,contr 
+59fa 20407e45 call memcpy 
+59fb 70048101 jam prcp_le ,mem_prcp 
+59fc 204059fe call le_writeatt_cb 
+
+le_parse_att_write_command_fail:
+59fd 20600000 rtn 
+
+le_writeatt_cb:
+59fe 68014296 fetch 2 ,mem_cb_att_write 
+59ff 207a0000 rtn blank 
+5a00 98007a00 iforce pc 
+
+le_parse_att_signed_write_command:
+5a01 20600000 rtn 
+
+le_supervision_update:
+5a02 680a03dc fetcht 4 ,mem_le_supervision_timer 
+5a03 20403bde call get_clkbt 
+5a04 98461600 isub temp ,timeup 
+5a05 19627e00 deposit timeup 
+5a06 680903ef fetcht 2 ,mem_le_superto 
+5a07 18520400 lshift4 temp ,temp 
+5a08 18438400 lshift temp ,temp 
+5a09 98467e00 isub temp ,pdata 
+5a0a 20600000 rtn 
+
+le_supervision_flush:
+5a0b 20403bde call get_clkbt 
+5a0c 600203dc store 4 ,mem_le_supervision_timer 
+5a0d 20600000 rtn 
+
+le_adv:
+5a0e 79200025 set1 mark_ext_patch ,mark 
+5a0f 44b8402e bpatch patch2e_0 ,mem_patch2e 
+5a10 6800c3d8 fetch 1 ,mem_le_adv_enable 
+5a11 207a0000 rtn blank 
+5a12 d8e00001 arg le_adv_interval_timer ,queue 
+5a13 20407e53 call timer_check 
+5a14 247a0000 nrtn blank 
+5a15 7854fc00 disable master 
+5a16 78287c00 enable swfine 
+5a17 20405572 call le_init_adv 
+5a18 2040542c call le_next_adv_channel 
+5a19 204054de call le_send_adv_ind 
+5a1a 2436da24 nbranch le_adv_not_match ,match 
+5a1b 79200025 set1 mark_ext_patch ,mark 
+5a1c 44b8c02e bpatch patch2e_1 ,mem_patch2e 
+5a1d 68008003 fetch 1 ,mem_le_req_rcv 
+5a1e 1fe0fe01 increase 1 ,pdata 
+5a1f 60008003 store 1 ,mem_le_req_rcv 
+5a20 68008340 fetch 1 ,mem_le_rxbuf 
+5a21 1fe17e0f and pdata ,0x0f ,pdata 
+5a22 c001d519 beq scan_req ,le_send_scan_response 
+5a23 c002da41 beq connect_req ,parse_connect_req 
+
+le_adv_not_match:
+5a24 20002710 nop 10000 
+5a25 68008016 fetch 1 ,mem_le_ch_mapped 
+5a26 c093da0e bne 39 ,le_adv 
+5a27 20405ad8 call le_ledoff 
+5a28 d8e00001 arg le_adv_interval_timer ,queue 
+5a29 680144d9 fetch 2 ,mem_le_adv_interval_max 
+5a2a 20207e4c branch timer_init 
+
+le_receive_window_size:
+5a2b 79200025 set1 mark_ext_patch ,mark 
+5a2c 44b9402e bpatch patch2e_2 ,mem_patch2e 
+5a2d 680083f8 fetch 1 ,mem_le_peer_sca 
+5a2e 20405405 call le_sca_map 
+5a2f 680103c2 fetch 2 ,mem_le_tsniff 
+5a30 984ffe00 imul32 temp ,pdata 
+5a31 d8400177 arg 375 ,temp 
+5a32 984ffe00 imul32 temp ,pdata 
+5a33 d84186a0 arg 100000 ,temp 
+5a34 9846fc00 idiv temp 
+5a35 680083ec fetch 1 ,mem_le_window_size 
+5a36 d8404e20 arg 20000 ,temp 
+5a37 984ffe00 imul32 temp ,pdata 
+5a38 600246f9 store 4 ,mem_le_transmit_window 
+5a39 79200025 set1 mark_ext_patch ,mark 
+5a3a 44b9c02e bpatch patch2e_3 ,mem_patch2e 
+5a3b 68014161 fetch 2 ,mem_rx_window_sniff 
+5a3c 20407efd call wait_div_end 
+5a3d 18078400 quotient temp 
+5a3e 9840fe00 iadd temp ,pdata 
+5a3f 600103ce store 2 ,mem_le_receive_window 
+5a40 20600000 rtn 
+
+parse_connect_req:
+5a41 79200025 set1 mark_ext_patch ,mark 
+5a42 44ba402e bpatch patch2e_4 ,mem_patch2e 
+5a43 68030348 fetch 6 ,mem_le_rxbuf + 8 
+5a44 680b44f9 fetcht 6 ,mem_le_lap 
+5a45 98467c00 isub temp ,null 
+5a46 24628000 nrtn zero 
+5a47 20405613 call le_scan_check_sender_addr_type 
+5a48 1a227e00 copy rega ,pdata 
+5a49 6000c4e6 store 1 ,mem_le_conn_peer_addr_type 
+5a4a 68038355 fetch 7 ,mem_le_rxbuf + 21 
+5a4b 60038103 store 7 ,mem_tmp_buffer 
+5a4c e8c40000 ifetch 8 ,contr 
+5a4d e0a40000 istore 8 ,contw 
+5a4e 68030342 fetch 6 ,mem_le_rxbuf + 2 
+5a4f 600303d0 store 6 ,mem_le_plap 
+5a50 79200025 set1 mark_ext_patch ,mark 
+5a51 44bac02e bpatch patch2e_5 ,mem_patch2e 
+5a52 18c08c06 increase 6 ,contr 
+5a53 e8c40000 ifetch 8 ,contr 
+5a54 600403e5 store 8 ,mem_le_access 
+5a55 e8c90000 ifetcht 2 ,contr 
+5a56 184b8400 lshift2 temp ,temp 
+5a57 e8c10000 ifetch 2 ,contr 
+5a58 1febfe00 lshift2 pdata ,pdata 
+5a59 600103c2 store 2 ,mem_le_tsniff 
+5a5a 600203c4 store 4 ,mem_le_anchor 
+5a5b 98467e00 isub temp ,pdata 
+5a5c 1fe0d1fe add pdata ,-2 ,clke_bt 
+5a5d e8c48000 ifetch 9 ,contr 
+5a5e 600483ed store 9 ,mem_le_slave_latency 
+5a5f 79200025 set1 mark_ext_patch ,mark 
+5a60 44bb402e bpatch patch2e_6 ,mem_patch2e 
+5a61 e8c08000 ifetch 1 ,contr 
+5a62 1ff18400 rshift4 pdata ,temp 
+5a63 18430400 rshift temp ,temp 
+5a64 600883f8 storet 1 ,mem_le_peer_sca 
+5a65 1fe17e1f and_into 0x1f ,pdata 
+5a66 600083d9 store 1 ,mem_le_hop 
+5a67 20405a2b call le_receive_window_size 
+5a68 20405447 call le_calc_channel_map 
+5a69 2040536c call le_init_slave 
+5a6a 204032d6 call context_new 
+5a6b 24628000 nrtn zero 
+5a6c 79200025 set1 mark_ext_patch ,mark 
+5a6d 44bbc02e bpatch patch2e_7 ,mem_patch2e 
+5a6e d8400000 arg 0 ,temp 
+5a6f 204048ea call hci_send_le_conn_complete 
+5a70 204039ac call calc_clke_offset 
+5a71 700b7d14 jam bt_evt_le_connected ,mem_fifo_temp 
+5a72 20407c27 call ui_ipc_send_event 
+5a73 202032bd branch context_save 
+
+le_init_attlist_search:
+5a74 79200025 set1 mark_ext_patch ,mark 
+5a75 44bc402f bpatch patch2f_0 ,mem_patch2f 
+5a76 680144bc fetch 2 ,mem_le_search_handle_start 
+5a77 98002400 iforce regb 
+5a78 680144be fetch 2 ,mem_le_search_handle_end 
+5a79 98002600 iforce regc 
+5a7a d8c04504 arg mem_le_att_list ,contr 
+5a7b 78347c00 enable user 
+5a7c 20600000 rtn 
+
+le_att_handle_inrange:
+5a7d e8c10000 ifetch 2 ,contr 
+5a7e 207a0000 rtn blank 
+5a7f 9a467c00 isub regb ,null 
+5a80 24610000 nrtn positive 
+5a81 9a667c00 isub regc ,null 
+5a82 20628000 rtn zero 
+5a83 20215a86 branch le_att_handle_blank ,positive 
+5a84 18007c01 force 1 ,null 
+5a85 20600000 rtn 
+
+le_att_handle_blank:
+5a86 18007e00 force 0 ,pdata 
+5a87 20600000 rtn 
+
+le_att_get_handle_ptr:
+5a88 d8c04504 arg mem_le_att_list ,contr 
+
+le_att_get_handle_loop:
+5a89 e8c10000 ifetch 2 ,contr 
+5a8a 207a0000 rtn blank 
+5a8b 18c08c02 increase 2 ,contr 
+5a8c 98467c00 isub temp ,null 
+5a8d 20628000 rtn zero 
+5a8e e8c08000 ifetch 1 ,contr 
+5a8f 98c08c00 iadd contr ,contr 
+5a90 20205a89 branch le_att_get_handle_loop 
+
+le_data_send_write_req:
+5a91 7044c602 jam 0x2 ,mem_le_handle_data_len 
+5a92 58000001 setarg 0x0001 
+5a93 600144c7 store 2 ,mem_le_handle_data 
+5a94 7003e325 jam conn_sm_wait_write_res ,mem_le_conn_sm 
+5a95 700b7d12 jam attop_write_request ,mem_fifo_temp 
+5a96 20205620 branch le_xtype_fifo_in 
+
+le_data_wait_write_res:
+5a97 20600000 rtn 
+
+le_data_wait_write_res1:
+5a98 20600000 rtn 
+
+le_conn_sm_master:
+5a99 79200025 set1 mark_ext_patch ,mark 
+5a9a 44bcc02f bpatch patch2f_1 ,mem_patch2f 
+5a9b 6800c132 fetch 1 ,mem_device_option 
+5a9c c1820000 rtnne dvc_op_dongle 
+5a9d 680083e3 fetch 1 ,mem_le_conn_sm 
+5a9e c010da91 beq conn_sm_send_write_req ,le_data_send_write_req 
+5a9f c012da97 beq conn_sm_wait_write_res ,le_data_wait_write_res 
+5aa0 c0135a98 beq conn_sm_wait_write_res1 ,le_data_wait_write_res1 
+5aa1 20600000 rtn 
+
+le_ukey_init:
+5aa2 58005aae setarg le_ukey 
+5aa3 6001428c store 2 ,mem_cb_le_process 
+5aa4 70806281 hjam uart_ctrl_normal ,core_uart_ctrl 
+5aa5 580001a0 setarg uart_baud_115200 
+5aa6 60110052 hstore uart_baud_len ,core_uart_baud 
+5aa7 70804301 hjam uartclk_dpll ,core_uart_clksel 
+5aa8 70808104 hjam 0x4 ,core_gpio_sel1 
+5aa9 58005ac6 setarg le_ukey_wcb 
+5aaa 60014296 store 2 ,mem_cb_att_write 
+5aab 20405347 call le_init_att 
+5aac 20758000 rtn wake 
+5aad 2020691d branch eeprom_load_reconn_info 
+
+le_ukey:
+5aae 680083c1 fetch 1 ,mem_le_mode 
+5aaf 2fe1fe01 compare lemode_slave ,pdata ,0xff 
+5ab0 58000005 setarg 5 
+5ab1 2040ea04 call set_pwm_steadyon ,true 
+5ab2 2440e9ff ncall set_pwm_blink ,true 
+5ab3 204068fd call uartd_prepare_rx 
+5ab4 203a5abe branch le_ukey_senddata ,blank 
+5ab5 68010419 fetch 2 ,mem_le_notify_attr_start 
+5ab6 98000a00 iforce contw 
+5ab7 1f267c14 sub loopcnt ,20 ,null 
+5ab8 20215aba branch le_ukey_loop ,positive 
+5ab9 18007214 force 20 ,loopcnt 
+
+le_ukey_loop:
+5aba e8608000 ifetch 1 ,contru 
+5abb e0a08000 istore 1 ,contw 
+5abc c2005aba loop le_ukey_loop 
+5abd 20406906 call uartd_rxdone 
+
+le_ukey_senddata:
+5abe 7044c214 jam notify_handle ,mem_le_notify_handle 
+5abf 68090419 fetcht 2 ,mem_le_notify_attr_start 
+5ac0 e8408000 ifetch 1 ,temp 
+5ac1 207a0000 rtn blank 
+5ac2 2040561c call le_xtype_fifo_is_full 
+5ac3 247a0000 nrtn blank 
+5ac4 700b7d1b jam attop_handle_value_notification ,mem_fifo_temp 
+5ac5 20205620 branch le_xtype_fifo_in 
+
+le_ukey_wcb:
+5ac6 1a420400 copy regb ,temp 
+5ac7 204068f7 call uartd_prepare_tx 
+5ac8 1a220c00 copy rega ,contr 
+5ac9 1a427200 copy regb ,loopcnt 
+
+le_writeatt_cb_loop:
+5aca e8c08000 ifetch 1 ,contr 
+5acb e1408000 istore 1 ,contwu 
+5acc c2005aca loop le_writeatt_cb_loop 
+5acd 202068fa branch uartd_send 
+
+le_clear_notify_att:
+5ace 6800c132 fetch 1 ,mem_device_option 
+5acf c1830000 rtnne dvc_op_ukey 
+5ad0 680144c2 fetch 2 ,mem_le_notify_handle 
+5ad1 c18a0000 rtnne notify_handle 
+5ad2 68090419 fetcht 2 ,mem_le_notify_attr_start 
+5ad3 58000000 setarg 0 
+5ad4 e0448000 istore 9 ,temp 
+5ad5 e0a48000 istore 9 ,contw 
+5ad6 e0a10000 istore 2 ,contw 
+5ad7 20600000 rtn 
+
+le_ledoff:
+5ad8 6808c3d7 fetcht 1 ,mem_le_adv_led 
+5ad9 79400407 setflip gpio_active_bit ,temp 
+5ada 202069f3 branch gpio_out 
+
+le_modified_name:
+5adb 79200025 set1 mark_ext_patch ,mark 
+5adc 44bd402f bpatch patch2f_2 ,mem_patch2f 
+5add 20405adf call le_modified_name_att_list 
+5ade 20205aed branch le_modified_name_adv 
+
+le_modified_name_att_list:
+5adf 6800c419 fetch 1 ,mem_le_name_len 
+5ae0 1fe27200 copy pdata ,loopcnt 
+5ae1 d8402a00 arg uuid_chrctr_device_name ,temp 
+5ae2 20405b0c call le_att_get_uuid_ptr 
+5ae3 18c08c01 increase 1 ,contr 
+5ae4 18c20a00 copy contr ,contw 
+5ae5 d8c0441a arg mem_le_name ,contr 
+5ae6 20407e45 call memcpy 
+5ae7 6800c419 fetch 1 ,mem_le_name_len 
+5ae8 1fe67214 sub pdata ,max_name_len ,loopcnt 
+5ae9 1f220400 copy loopcnt ,temp 
+5aea 1f227e00 copy loopcnt ,pdata 
+5aeb 245a5b15 ncall memcpy_empty ,blank 
+5aec 20600000 rtn 
+
+le_modified_name_adv:
+5aed 6800c3d9 fetch 1 ,mem_le_adv_data_len 
+5aee 6808c3da fetcht 1 ,mem_le_adv_data 
+5aef 98467e00 isub temp ,pdata 
+5af0 1fe27200 copy pdata ,loopcnt 
+5af1 1fe22200 copy pdata ,rega 
+5af2 6800c3da fetch 1 ,mem_le_adv_data 
+5af3 1fe0fe01 increase 1 ,pdata 
+5af4 d8c043da arg mem_le_adv_data ,contr 
+5af5 98c08c00 iadd contr ,contr 
+5af6 d8a0041d arg mem_le_adv_temp ,contw 
+5af7 20407e45 call memcpy 
+5af8 79200025 set1 mark_ext_patch ,mark 
+5af9 44bdc02f bpatch patch2f_3 ,mem_patch2f 
+5afa 6800c419 fetch 1 ,mem_le_name_len 
+5afb 1fe27200 copy pdata ,loopcnt 
+5afc 1fe0fe01 increase 1 ,pdata 
+5afd 6000c3da store 1 ,mem_le_adv_data 
+5afe d8a043dc arg mem_le_adv_data + 2 ,contw 
+5aff d8c0441a arg mem_le_name ,contr 
+5b00 20407e45 call memcpy 
+5b01 1a227200 copy rega ,loopcnt 
+5b02 d8c0041d arg mem_le_adv_temp ,contr 
+5b03 20407e45 call memcpy 
+5b04 6800c3da fetch 1 ,mem_le_adv_data 
+5b05 9a20fe00 iadd rega ,pdata 
+5b06 6000c3d9 store 1 ,mem_le_adv_data_len 
+5b07 20600000 rtn 
+
+le_get_device_name:
+5b08 79200025 set1 mark_ext_patch ,mark 
+5b09 44be402f bpatch patch2f_4 ,mem_patch2f 
+5b0a d8402a00 arg uuid_chrctr_device_name ,temp 
+5b0b 20205b0c branch le_att_get_uuid_ptr 
+
+le_att_get_uuid_ptr:
+5b0c d8c04504 arg mem_le_att_list ,contr 
+
+le_att_get_uuid_loop:
+5b0d e8c10000 ifetch 2 ,contr 
+5b0e 203a3bf1 branch assert ,blank 
+5b0f e8c10000 ifetch 2 ,contr 
+5b10 98467c00 isub temp ,null 
+5b11 20628000 rtn zero 
+5b12 e8c08000 ifetch 1 ,contr 
+5b13 98c08c00 iadd contr ,contr 
+5b14 20205b0d branch le_att_get_uuid_loop 
+
+memcpy_empty:
+5b15 58000020 setarg space 
+5b16 e0a08000 istore 1 ,contw 
+5b17 c2005b15 loop memcpy_empty 
+5b18 20600000 rtn 
+
+le_lpm_set_mult:
+5b19 79200025 set1 mark_ext_patch ,mark 
+5b1a 44bec02f bpatch patch2f_5 ,mem_patch2f 
+5b1b 7855fc00 disable wake 
+5b1c 20375b1e branch le_lpm_set_mult_attempt ,attempt 
+5b1d 2436db2a nbranch le_lpm_lost ,match 
+
+le_lpm_set_mult_attempt:
+5b1e 20403d76 call lpm_match 
+5b1f 68014161 fetch 2 ,mem_rx_window_sniff 
+5b20 600103ce store 2 ,mem_le_receive_window 
+5b21 68008340 fetch 1 ,mem_le_rxbuf 
+5b22 2fe00601 compare 1 ,pdata ,3 
+5b23 2420bd8a nbranch lpm_mult_short ,true 
+5b24 6800c43e fetch 1 ,mem_le_txheader 
+5b25 2fe00601 compare 1 ,pdata ,3 
+5b26 2420bd8a nbranch lpm_mult_short ,true 
+5b27 680083c0 fetch 1 ,mem_le_state 
+5b28 c282bd8a bbit1 lestate_update_param ,lpm_mult_short 
+5b29 20203d6f branch lpm_mult_wait_timeout 
+
+le_lpm_lost:
+5b2a 68094161 fetcht 2 ,mem_rx_window_sniff 
+5b2b 18430400 rshift temp ,temp 
+5b2c 680103ce fetch 2 ,mem_le_receive_window 
+5b2d 9840fe00 iadd temp ,pdata 
+5b2e 600103ce store 2 ,mem_le_receive_window 
+5b2f 20203d82 branch lpm_lost 
+
+le_clean_att_list_handle_enable:
+5b30 79200025 set1 mark_ext_patch ,mark 
+5b31 44bf402f bpatch patch2f_6 ,mem_patch2f 
+5b32 7046f800 jam 0 ,mem_le_switch_send_data 
+5b33 680944c2 fetcht 2 ,mem_le_notify_handle 
+5b34 20405866 call le_att_check_notification_enable 
+5b35 1a220a00 copy rega ,contw 
+5b36 58000000 setarg 0 
+5b37 e0a08000 istore 1 ,contw 
+5b38 20600000 rtn 
+
+le_scan_addr_to_uart:
+5b39 6800c132 fetch 1 ,mem_device_option 
+5b3a c1850000 rtnne dvc_op_module 
+5b3b 20407f6e call get_uart_twptr 
+5b3c da2003d0 arg mem_le_plap ,rega 
+5b3d 20407e9d call adss_hex2string_to_uart 
+5b3e 5800002c setarg 0x2c 
+5b3f e1408000 istore 1 ,contwu 
+5b40 204041d4 call at_rssi_result 
+5b41 202068fa branch uartd_send 
+
+prcp_le_tx:
+5b42 d8400014 arg prcp_tx_le ,temp 
+5b43 20405866 call le_att_check_notification_enable 
+5b44 c4000000 rtnbit0 0 
+5b45 2040561c call le_xtype_fifo_is_full 
+5b46 247a0000 nrtn blank 
+5b47 d8400014 arg prcp_tx_le ,temp 
+5b48 600944c2 storet 2 ,mem_le_notify_handle 
+5b49 20405a88 call le_att_get_handle_ptr 
+5b4a 203a3bf1 branch assert ,blank 
+5b4b 18c08a01 add contr ,1 ,contw 
+5b4c df200014 arg prcp_tx_data_len ,loopcnt 
+5b4d d8c0046d arg mem_prcp_data ,contr 
+5b4e 20407e45 call memcpy 
+5b4f 700b7d1b jam attop_handle_value_notification ,mem_fifo_temp 
+5b50 20205620 branch le_xtype_fifo_in 
+
+prcp_tx:
+5b51 20600000 rtn 
+
+le_search_adtype:
+5b52 79200025 set1 mark_ext_patch ,mark 
+5b53 44bfc02f bpatch patch2f_7 ,mem_patch2f 
+5b54 68008341 fetch 1 ,mem_le_rxbuf + 1 
+5b55 d8c00348 arg mem_le_rxbuf + 8 ,contr 
+5b56 98c0f200 iadd contr ,loopcnt 
+
+le_search_adtype_loop:
+5b57 e8c88000 ifetcht 1 ,contr 
+5b58 e8c08000 ifetch 1 ,contr 
+5b59 9a267c00 isub rega ,null 
+5b5a 20628000 rtn zero 
+5b5b 1840ffff add temp ,-1 ,pdata 
+5b5c 98c08c00 iadd contr ,contr 
+5b5d 1f227e00 deposit loopcnt 
+5b5e 98c67c00 isub contr ,null 
+5b5f 20215b57 branch le_search_adtype_loop ,positive 
+5b60 18007c01 force 1 ,null 
+5b61 20600000 rtn 
+
+init_lmp:
+5b62 20758000 rtn wake 
+
+init_lmp_work:
+5b63 58000000 setarg 0 
+5b64 60008048 store 1 ,mem_lmp_to_send 
+5b65 60008055 store 1 ,mem_conn_sm 
+5b66 60008078 store 1 ,mem_lmo_opcode1 
+5b67 6000807c store 1 ,mem_lmo_opcode2 
+5b68 6000c1f9 store 1 ,mem_esco_addr 
+5b69 60008453 store 1 ,mem_auth_enable 
+5b6a 60008177 store 1 ,mem_connection_options 
+5b6b 600087e1 store 1 ,mem_pairing_auth 
+5b6c 70474800 jam switch_flag_init ,mem_switch_flag 
+5b6d 70025800 jam 0 ,mem_switch_fail_master_count 
+5b6e 70045400 jam null_encryp ,mem_wait_encryption 
+
+init_lmp_reinit:
+5b6f 79200025 set1 mark_ext_patch ,mark 
+5b70 44f0403c bpatch patch3c_0 ,mem_patch3c 
+5b71 7007e100 jam 0 ,mem_pairing_auth 
+5b72 7007e000 jam 0 ,mem_sp_localsm 
+5b73 70044d00 jam 0 ,mem_lmp_conn_state 
+5b74 6800c132 fetch 1 ,mem_device_option 
+5b75 c1808000 rtnne dvc_op_hci ,pdata 
+5b76 70425e00 jam 0 ,mem_link_key_exists 
+
+parse_rx_done:
+5b77 20600000 rtn 
+
+parse_lmp:
+5b78 79200025 set1 mark_ext_patch ,mark 
+5b79 44f0c03c bpatch patch3c_1 ,mem_patch3c 
+5b7a 2054e219 call setlocalsm_master ,master 
+5b7b 2454e21d ncall setlocalsm_slave ,master 
+5b7c 6800807c fetch 1 ,mem_lmo_opcode2 
+5b7d 245a61d9 ncall lmo_fifo_process ,blank 
+5b7e 6800807c fetch 1 ,mem_lmo_opcode2 
+5b7f 247a0000 nrtn blank 
+5b80 6800804c fetch 1 ,mem_state_map 
+5b81 c4030000 rtnbit0 smap_rxlmp 
+5b82 793ffe06 set0 smap_rxlmp ,pdata 
+5b83 793f8001 set0 mark_rxbuf_inuse ,mark 
+5b84 6000804c store 1 ,mem_state_map 
+5b85 680084de fetch 1 ,mem_rxbuf 
+5b86 6808804c fetcht 1 ,mem_state_map 
+5b87 2feffe00 isolate1 smap_lmptidinit ,pdata 
+5b88 79208401 setflag true ,smap_lmptid ,temp 
+5b89 6008804c storet 1 ,mem_state_map 
+5b8a 18410402 and_into 0x2 ,temp 
+5b8b 6008807f storet 1 ,mem_lmo_tid2 
+5b8c 6808804c fetcht 1 ,mem_state_map 
+5b8d 1fe37e00 rshift pdata ,pdata 
+5b8e 6000807d store 1 ,mem_lmi_opcode2 
+5b8f 79200025 set1 mark_ext_patch ,mark 
+5b90 44f1403c bpatch patch3c_2 ,mem_patch3c 
+5b91 6800807d fetch 1 ,mem_lmi_opcode2 
+5b92 c03fdbdc beq lmp_escape ,parse_lmp_escape 
+5b93 c001dc56 beq lmp_accepted ,parse_lmp_accepted 
+5b94 c0025c67 beq lmp_not_accepted ,parse_lmp_not_accepted 
+5b95 c01e5bcf beq lmp_set_afh ,parse_lmp_set_afh 
+5b96 c002dbcb beq lmp_clkoffset_req ,parse_lmp_clkoffset_req 
+5b97 c007de48 beq lmp_encryption_mode_req ,parse_lmp_encryption_mode_req 
+5b98 c0085ce1 beq lmp_encryption_key_size_req ,parse_lmp_crypt_key 
+5b99 c011dcff beq lmp_auto_rate ,parse_lmp_auto_rate 
+5b9a c01cde67 beq lmp_test_control ,parse_lmp_test_control 
+5b9b c01c5e62 beq lmp_test_activate ,parse_lmp_test_activate 
+5b9c c018dce4 beq lmp_setup_complete ,parse_lmp_setup_complete 
+5b9d c01bdd72 beq lmp_supervision_timeout ,parse_lmp_supervision_timeout 
+5b9e c013dd6e beq lmp_features_req ,parse_lmp_features_req 
+5b9f c019dd68 beq lmp_host_connection_req ,parse_lmp_conn_req 
+5ba0 c012dd70 beq lmp_version_req ,parse_lmp_version_req 
+5ba1 c0135cfb beq lmp_version_res ,parse_lmp_version_res 
+5ba2 c003dcf3 beq lmp_detach ,parse_lmp_detach 
+5ba3 c016dcea beq lmp_max_slot ,parse_lmp_max_slot 
+5ba4 c0175ceb beq lmp_max_slot_req ,parse_lmp_max_slot_req 
+5ba5 c000dd64 beq lmp_name_req ,parse_lmp_name_req 
+5ba6 c0015d4f beq lmp_name_res ,parse_lmp_name_res 
+5ba7 c0145e53 beq lmp_features_res ,parse_lmp_features_res 
+5ba8 c004dd45 beq lmp_comb_key ,parse_lmp_comb_key 
+5ba9 c005dd1a beq lmp_au_rand ,parse_lmp_au_rand 
+5baa c0045d00 beq lmp_in_rand ,parse_lmp_in_rand 
+5bab c0065d2c beq lmp_sres ,parse_lmp_sres 
+5bac c00fdcf7 beq lmp_incr_power_req ,parse_lmp_incr_power 
+5bad c0105cf9 beq lmp_decr_power_req ,parse_lmp_decr_power 
+5bae c010dd8d beq lmp_max_power ,parse_lmp_max_power 
+5baf c0115d8e beq lmp_min_power ,parse_lmp_min_power 
+5bb0 c01add8f beq lmp_page_mode_req ,parse_lmp_page_mode_req 
+5bb1 c01b5d90 beq lmp_page_scan_mode_req ,parse_lmp_page_scan_mode_req 
+5bb2 c0125d91 beq lmp_preferred_rate ,parse_lmp_preferred_rate 
+5bb3 c0165d92 beq lmp_remove_sco_link_req ,parse_lmp_remove_sco_link_req 
+5bb4 c015dd95 beq lmp_sco_link_req ,parse_lmp_sco_link_req 
+5bb5 c01a5d9f beq lmp_slot_offset ,parse_lmp_slot_offset 
+5bb6 c00bdda2 beq lmp_sniff_req ,parse_lmp_sniff_req 
+5bb7 c008ddb7 beq lmp_start_encryption_req ,parse_lmp_start_encryption_req 
+5bb8 c0095dbb beq lmp_stop_encryption_req ,parse_lmp_stop_encryption_req 
+5bb9 c009ddbd beq lmp_switch_req ,parse_lmp_switch_req 
+5bba c006ddcf beq lmp_temp_rand ,parse_lmp_temp_rand 
+5bbb c0075dd0 beq lmp_temp_key ,parse_lmp_temp_key 
+5bbc c017dd6c beq lmp_timing_accuracy_req ,parse_lmp_timing_accuracy_req 
+5bbd c0185dd1 beq lmp_timing_accuracy_res ,parse_lmp_timing_accuracy_res 
+5bbe c0055dd2 beq lmp_unit_key ,parse_lmp_unit_key 
+5bbf c00c5dd3 beq lmp_unsniff_req ,parse_lmp_unsniff_req 
+5bc0 c0195dda beq lmp_use_semi_permanent_key ,parse_lmp_use_semi_permanend_key 
+5bc1 c01edddb beq lmp_encapsulated_header ,parse_lmp_encapsulated_header 
+5bc2 c01f5dff beq lmp_encapsulated_payload ,parse_lmp_encapsulated_payload 
+5bc3 c01fddf9 beq lmp_simple_pairing_confirm ,parse_simple_pairing_confirm 
+5bc4 c0205e22 beq lmp_simple_pairing_number ,parse_lmp_simple_pairing_number 
+5bc5 c020de34 beq lmp_dhkey_check ,parse_dhkey_check 
+5bc6 c0035e47 beq lmp_clkoffset_res ,parse_lmp_clkoffset_res 
+5bc7 c01d5bcd beq lmp_enc_key_size_mask_req ,parse_enc_key_size_mask_req 
+
+reject_unknown_packet:
+5bc8 70007e19 jam unknown_lmp_pdu ,mem_lmo_reason2 
+
+reject_lmp_packet:
+5bc9 70007c04 jam lmp_not_accepted ,mem_lmo_opcode2 
+5bca 20600000 rtn 
+
+parse_lmp_clkoffset_req:
+5bcb 70007c06 jam lmp_clkoffset_res ,mem_lmo_opcode2 
+5bcc 20600000 rtn 
+
+parse_enc_key_size_mask_req:
+5bcd 70007c3b jam lmp_enc_key_size_mask_res ,mem_lmo_opcode2 
+5bce 20600000 rtn 
+
+parse_lmp_set_afh:
+5bcf 680204df fetch 4 ,mem_rxbuf + 1 
+5bd0 1fe3fe00 lshift pdata ,pdata 
+5bd1 60024173 store 4 ,mem_afh_instant 
+5bd2 680084e3 fetch 1 ,mem_rxbuf + 5 
+5bd3 6000c17a store 1 ,mem_afh_new_mod 
+5bd4 680284e4 fetch 5 ,mem_rxbuf + 6 
+5bd5 6002c188 store 5 ,mem_afh_map_new 
+5bd6 680284e9 fetch 5 ,mem_rxbuf + 11 
+5bd7 e0a28000 istore 5 ,contw 
+5bd8 68008031 fetch 1 ,mem_mode 
+5bd9 79207e03 set1 afh_change ,pdata 
+5bda 60008031 store 1 ,mem_mode 
+5bdb 20600000 rtn 
+
+parse_lmp_escape:
+5bdc 680084df fetch 1 ,mem_rxbuf + 1 
+5bdd 79207e07 set1 7 ,pdata 
+5bde 6000807d store 1 ,mem_lmi_opcode2 
+5bdf c040dc26 beq lmp_ext_accepted ,parse_lmpext_accepted 
+5be0 c0415c2e beq lmp_not_accepted_ext ,parse_lmpext_not_accepted 
+5be1 c04add73 beq lmp_sniff_subrating_req ,parse_lmp_sniff_subrating_req 
+5be2 c04b5d8c beq lmp_sniff_subrating_res ,parse_lmp_sniff_subrating_res 
+5be3 c045dd81 beq lmp_packet_type_table_req ,parse_lmpext_packet_type_table_req 
+5be4 c041dc49 beq lmp_ext_features_req ,parse_lmpext_features_req 
+5be5 c0425c4b beq lmp_ext_features_res ,parse_lmpext_features_res 
+5be6 c0485bf1 beq lmp_ext_chn_classification_req ,parse_lmpext_chn_classification_req 
+5be7 c04bdc42 beq lmp_pause_encryption_req ,parse_lmpext_pause_encrypt 
+5be8 c04c5c47 beq lmp_resume_encryption_req ,parse_lmpext_resume_encrypt 
+5be9 c04cdc14 beq lmp_io_cap_req ,parse_lmpext_iocap_req 
+5bea c04d5c19 beq lmp_io_cap_res ,parse_lmpext_iocap_res 
+5beb c046dc11 beq lmp_ext_remove_esco_req ,parse_lmpext_remove_esco_req 
+5bec c0465bf4 beq lmp_ext_esco_link_req ,parse_lmpext_esco_link_req 
+5bed c1420000 rtneq lmp_ext_features_res 
+
+reject_unknown_ext_packet:
+5bee 70007c82 jam lmp_not_accepted_ext ,mem_lmo_opcode2 
+5bef 70007e19 jam unknown_lmp_pdu ,mem_lmo_reason2 
+5bf0 20600000 rtn 
+
+parse_lmpext_chn_classification_req:
+5bf1 70007c82 jam lmp_not_accepted_ext ,mem_lmo_opcode2 
+5bf2 70007e2e jam not_support_chn_classification ,mem_lmo_reason2 
+5bf3 20600000 rtn 
+
+parse_lmpext_esco_link_req:
+5bf4 680084e0 fetch 1 ,mem_rxbuf + 2 
+5bf5 600080ad store 1 ,mem_sco_handle 
+5bf6 680084e1 fetch 1 ,mem_rxbuf + 3 
+5bf7 6000c1f9 store 1 ,mem_esco_addr 
+5bf8 680084e3 fetch 1 ,mem_rxbuf + 5 
+5bf9 600080af store 1 ,mem_esco_desco 
+5bfa 680084e7 fetch 1 ,mem_rxbuf + 9 
+5bfb 600080b0 store 1 ,mem_esco_type 
+5bfc 680084ec fetch 1 ,mem_rxbuf + 14 
+5bfd 600080ab store 1 ,mem_air_mode 
+5bfe c503dc07 bmark1 mark_esco ,check_esco_prarm 
+5bff 79200007 set1 mark_esco ,mark 
+5c00 20405d16 call push_tid_follow 
+5c01 60008452 store 1 ,mem_accptsco_tid 
+5c02 18000400 force 0 ,temp 
+5c03 20204839 branch hci_send_conn_req_event 
+
+parse_lmpext_esco_link_req_change_param:
+5c04 70007c8c jam lmp_ext_esco_link_req ,mem_lmo_opcode2 
+5c05 7000b101 jam prarm_neogotiation ,mem_neogotiation_state 
+5c06 202049bc branch cmd_exit 
+
+check_esco_prarm:
+5c07 680080b0 fetch 1 ,mem_esco_type 
+5c08 c083dc0b bne type_hv3 ,reject_esco_prarm 
+5c09 70007c81 jam lmp_ext_accepted ,mem_lmo_opcode2 
+5c0a 20205c0f branch esco_prarm_common 
+
+reject_esco_prarm:
+5c0b 793f8007 set0 mark_esco ,mark 
+5c0c 70007c82 jam lmp_not_accepted_ext ,mem_lmo_opcode2 
+5c0d 18000401 force hci_error_unknown_hci_command ,temp 
+5c0e 20404914 call hci_send_sco_complete 
+
+esco_prarm_common:
+5c0f 70007d8c jam lmp_ext_esco_link_req ,mem_lmi_opcode2 
+5c10 20600000 rtn 
+
+parse_lmpext_remove_esco_req:
+5c11 70007c81 jam lmp_ext_accepted ,mem_lmo_opcode2 
+5c12 70007d8d jam lmp_ext_remove_esco_req ,mem_lmi_opcode2 
+5c13 20203869 branch stop_esco 
+
+parse_lmpext_iocap_req:
+5c14 20405c1d call iocap_lmpext_load 
+5c15 6800c132 fetch 1 ,mem_device_option 
+5c16 c000dc21 beq dvc_op_hci ,iocap_lmpext_hci 
+5c17 70007c9a jam lmp_io_cap_res ,mem_lmo_opcode2 
+5c18 20600000 rtn 
+
+parse_lmpext_iocap_res:
+5c19 20405c1d call iocap_lmpext_load 
+5c1a 6800c132 fetch 1 ,mem_device_option 
+5c1b c000dc21 beq dvc_op_hci ,iocap_lmpext_hci 
+5c1c 20205c22 branch iocap_lmpext_common 
+
+iocap_lmpext_load:
+5c1d d8a007e9 arg mem_sp_iocap_remote ,contw 
+5c1e 680184e0 fetch 3 ,mem_rxbuf + 2 
+5c1f e0a18000 istore 3 ,contw 
+5c20 20600000 rtn 
+
+iocap_lmpext_hci:
+5c21 2040480f call hci_send_io_cap_response_event 
+
+iocap_lmpext_common:
+5c22 20406216 call check_localsm 
+5c23 2440c81b ncall hci_send_io_cap_req_event ,true 
+5c24 2020f80f branch master_set_mem_master_sp_flag ,true 
+5c25 20600000 rtn 
+
+parse_lmpext_accepted:
+5c26 680084e1 fetch 1 ,mem_rxbuf + 3 
+5c27 79207e07 set1 7 ,pdata 
+5c28 60008445 store 1 ,mem_lmi_accepted_opcode 
+5c29 c045dc36 beq lmp_packet_type_table_req ,parse_lmpext_accepted_ptt 
+5c2a c046384a beq lmp_ext_esco_link_req ,play_sco 
+5c2b c046dc2d beq lmp_ext_remove_esco_req ,parse_lmpext_stop_esco 
+5c2c 20600000 rtn 
+
+parse_lmpext_stop_esco:
+5c2d 20203869 branch stop_esco 
+
+parse_lmpext_not_accepted:
+5c2e 680084e1 fetch 1 ,mem_rxbuf + 3 
+5c2f 79207e07 set1 7 ,pdata 
+5c30 60008445 store 1 ,mem_lmi_accepted_opcode 
+5c31 c045dc3a beq lmp_packet_type_table_req ,parse_lmpext_not_accepted_ptt 
+5c32 c0465c34 beq lmp_ext_esco_link_req ,parse_lmpext_not_accepted_esco 
+5c33 20600000 rtn 
+
+parse_lmpext_not_accepted_esco:
+5c34 793f8007 set0 mark_esco ,mark 
+5c35 20600000 rtn 
+
+parse_lmpext_accepted_ptt:
+5c36 6800c1fb fetch 1 ,mem_ptt 
+5c37 6808804c fetcht 1 ,mem_state_map 
+5c38 7d3a0405 nsetflag blank ,smap_edr ,temp 
+5c39 6008804c storet 1 ,mem_state_map 
+
+parse_lmpext_not_accepted_ptt:
+5c3a 68008030 fetch 1 ,mem_state 
+5c3b c4028000 rtnbit0 state_init_seq 
+5c3c 793ffe05 set0 state_init_seq ,pdata 
+5c3d 60008030 store 1 ,mem_state 
+5c3e 68008453 fetch 1 ,mem_auth_enable 
+5c3f 243a4872 nbranch hci_send_linkkey_req ,blank 
+5c40 70007c31 jam lmp_setup_complete ,mem_lmo_opcode2 
+5c41 20600000 rtn 
+
+parse_lmpext_pause_encrypt:
+5c42 2434dc45 nbranch parse_lmpext_pause_encrypt_slave ,master 
+5c43 70007c12 jam lmp_stop_encryption_req ,mem_lmo_opcode2 
+5c44 20206205 branch tid_reply 
+
+parse_lmpext_pause_encrypt_slave:
+5c45 70007c97 jam lmp_pause_encryption_req ,mem_lmo_opcode2 
+5c46 20600000 rtn 
+
+parse_lmpext_resume_encrypt:
+5c47 20406205 call tid_reply 
+5c48 20205ecd branch lmp_start_encryption 
+
+parse_lmpext_features_req:
+5c49 70007c84 jam lmp_ext_features_res ,mem_lmo_opcode2 
+5c4a 20600000 rtn 
+
+parse_lmpext_features_res:
+5c4b 680884e2 fetcht 1 ,mem_rxbuf + 4 
+5c4c 18410401 and temp ,0x1 ,temp 
+5c4d 6008844c storet 1 ,mem_remote_sppcap 
+5c4e 6800c272 fetch 1 ,mem_hci_cmd 
+5c4f c0a8dc52 bne hci_cmd_wait_remote_ext_feature ,parse_lmpext_features_res_not_hci 
+5c50 70427200 jam 0 ,mem_hci_cmd 
+5c51 204047f9 call hci_send_remote_ext_features_event 
+
+parse_lmpext_features_res_not_hci:
+5c52 68008055 fetch 1 ,mem_conn_sm 
+5c53 c18a8000 rtnne conn_sm_wait_features_ext 
+5c54 70005504 jam conn_sm_send_conn_req ,mem_conn_sm 
+5c55 20206235 branch process_conn_sm 
+
+parse_lmp_accepted:
+5c56 680084df fetch 1 ,mem_rxbuf + 1 
+5c57 60008445 store 1 ,mem_lmi_accepted_opcode 
+5c58 c019dc7d beq lmp_host_connection_req ,parse_lmp_accepted_hostconn 
+5c59 c0045c90 beq lmp_in_rand ,parse_lmp_accepted_inrand 
+5c5a c007dc97 beq lmp_encryption_mode_req ,parse_lmp_accepted_enc_mode 
+5c5b c0085c9d beq lmp_encryption_key_size_req ,parse_lmp_accepted_enc_keysize 
+5c5c c008dc9e beq lmp_start_encryption_req ,parse_lmp_accepted_start_enc 
+5c5d c0095ca6 beq lmp_stop_encryption_req ,parse_lmp_accepted_stop_enc 
+5c5e c00c5ccc beq lmp_unsniff_req ,parse_lmp_accepted_unsniff_req 
+5c5f c00bdcd1 beq lmp_sniff_req ,parse_lmp_accepted_sniff_req 
+5c60 c015b84a beq lmp_sco_link_req ,play_sco 
+5c61 c009dc74 beq lmp_switch_req ,parse_lmp_accepted_switch 
+5c62 c01edde9 beq lmp_encapsulated_header ,parse_lmp_accepted_encapsulated_header 
+5c63 c01f5e18 beq lmp_encapsulated_payload ,parse_lmp_accepted_encapsulated_payload 
+5c64 c0205deb beq lmp_simple_pairing_number ,parse_lmp_accepted_simple_pairing_number 
+5c65 c020ddef beq lmp_dhkey_check ,parse_lmp_accepted_dhkey_check 
+5c66 20600000 rtn 
+
+parse_lmp_not_accepted:
+5c67 680084df fetch 1 ,mem_rxbuf + 1 
+5c68 60008445 store 1 ,mem_lmi_accepted_opcode 
+5c69 c000dcc3 beq lmp_name_req ,parse_lmp_not_accepted_name_req 
+5c6a c019dc87 beq lmp_host_connection_req ,parse_lmp_not_accepted_hostconn 
+5c6b c005dca7 beq lmp_au_rand ,parse_lmp_not_accepted_aurand 
+5c6c c015dc8e beq lmp_sco_link_req ,parse_lmp_not_accepted_sco_link_req 
+5c6d c0045cba beq lmp_in_rand ,parse_lmp_not_accepted_inrand 
+5c6e c009dc77 beq lmp_switch_req ,parse_lmp_not_accepted_switch 
+5c6f c0205cc4 beq lmp_simple_pairing_number ,parse_lmp_not_accepted_simple_pairing_number 
+5c70 c020dcc7 beq lmp_dhkey_check ,parse_lmp_not_accepted_dhkey_check 
+5c71 c00c5cca beq lmp_unsniff_req ,parse_lmp_not_accepted_unsniff_req 
+5c72 c00bdcdf beq lmp_sniff_req ,parse_lmp_not_acdcept_sniff_req 
+5c73 20600000 rtn 
+
+parse_lmp_accepted_switch:
+5c74 700b7d20 jam bt_evt_switch_accept ,mem_fifo_temp 
+5c75 20407c27 call ui_ipc_send_event 
+5c76 20203245 branch role_switch_prepare0 
+
+parse_lmp_not_accepted_switch:
+5c77 700b7d19 jam bt_evt_switch_not_accept ,mem_fifo_temp 
+5c78 20407c27 call ui_ipc_send_event 
+5c79 70474802 jam switch_flag_not_accept ,mem_switch_flag 
+5c7a 58000050 setarg timer_switch_waite 
+5c7b d8e0000a arg switch_wait_timer ,queue 
+5c7c 20207e4c branch timer_init 
+
+parse_lmp_accepted_hostconn:
+5c7d 6800844d fetch 1 ,mem_lmp_conn_state 
+5c7e 79207e00 set1 received_conn_req ,pdata 
+5c7f 6000844d store 1 ,mem_lmp_conn_state 
+5c80 700b7d01 jam bt_evt_bb_connected ,mem_fifo_temp 
+5c81 20407c27 call ui_ipc_send_event 
+5c82 70007c8b jam lmp_packet_type_table_req ,mem_lmo_opcode2 
+
+parse_lmp_accepted_hostconn_ctn:
+5c83 68008055 fetch 1 ,mem_conn_sm 
+5c84 c082db77 bne conn_sm_wait_conn_accept ,parse_rx_done 
+5c85 70005506 jam conn_sm_auth_pair ,mem_conn_sm 
+5c86 20600000 rtn 
+
+parse_lmp_not_accepted_hostconn:
+5c87 7004460b jam acl_connection_already_exists ,mem_disconn_reason_send 
+5c88 70007c07 jam lmp_detach ,mem_lmo_opcode2 
+5c89 18000410 force hci_error_host_timeout ,temp 
+5c8a 20404826 call hci_send_connection_error 
+5c8b 70005500 jam conn_sm_standby ,mem_conn_sm 
+5c8c 2020db77 branch parse_rx_done ,true 
+5c8d 20600000 rtn 
+
+parse_lmp_not_accepted_sco_link_req:
+5c8e 70007c2b jam lmp_sco_link_req ,mem_lmo_opcode2 
+5c8f 20600000 rtn 
+
+parse_lmp_accepted_inrand:
+5c90 6800c25e fetch 1 ,mem_link_key_exists 
+5c91 247a0000 nrtn blank 
+5c92 20403507 call clear_linkkey 
+5c93 20405ecb call lmp_generate_key 
+5c94 20748000 rtn master 
+5c95 79200021 set1 mark_slave_in_rand_accepted ,mark 
+5c96 20600000 rtn 
+
+parse_lmp_accepted_enc_mode:
+5c97 24748000 nrtn master 
+5c98 70007c10 jam lmp_encryption_key_size_req ,mem_lmo_opcode2 
+5c99 6800804c fetch 1 ,mem_state_map 
+5c9a c4010000 rtnbit0 smap_encryption 
+5c9b 70007c12 jam lmp_stop_encryption_req ,mem_lmo_opcode2 
+5c9c 20600000 rtn 
+
+parse_lmp_accepted_enc_keysize:
+5c9d 20205ecd branch lmp_start_encryption 
+
+parse_lmp_accepted_start_enc:
+5c9e 20405f2d call send_create_conn_start_l2cap_timer_sm 
+5c9f 68008030 fetch 1 ,mem_state 
+5ca0 c3820000 rtnbit1 state_conn_comp 
+5ca1 70007c31 jam lmp_setup_complete ,mem_lmo_opcode2 
+5ca2 68008055 fetch 1 ,mem_conn_sm 
+5ca3 c1850000 rtnne conn_sm_encrypt_wait 
+5ca4 7000550b jam conn_sm_encrypt_wait_clear ,mem_conn_sm 
+5ca5 20600000 rtn 
+
+parse_lmp_accepted_stop_enc:
+5ca6 20600000 rtn 
+
+parse_lmp_not_accepted_aurand:
+5ca7 6800c132 fetch 1 ,mem_device_option 
+5ca8 c080dcb7 bne dvc_op_hci ,parse_lmp_not_accepted_aurand_send_detach 
+5ca9 6800c25e fetch 1 ,mem_link_key_exists 
+5caa 207a0000 rtn blank 
+5cab 68088055 fetcht 1 ,mem_conn_sm 
+5cac 70005500 jam 0 ,mem_conn_sm 
+5cad 70425e00 jam 0 ,mem_link_key_exists 
+5cae 680084e0 fetch 1 ,mem_rxbuf + 2 
+5caf c1830000 rtnne key_missing 
+5cb0 60088055 storet 1 ,mem_conn_sm 
+5cb1 7007e001 jam local_statemachine ,mem_sp_localsm 
+5cb2 6801044a fetch 2 ,mem_lmpext_ssp_enable 
+5cb3 6808844c fetcht 1 ,mem_remote_sppcap 
+5cb4 98417e00 iand temp ,pdata 
+5cb5 203a49da branch cmd_pair ,blank 
+5cb6 202049d7 branch cmd_ssp 
+
+parse_lmp_not_accepted_aurand_send_detach:
+5cb7 70007c07 jam lmp_detach ,mem_lmo_opcode2 
+5cb8 70044613 jam other_end_terminated ,mem_disconn_reason_send 
+5cb9 20600000 rtn 
+
+parse_lmp_not_accepted_inrand:
+5cba 680084e0 fetch 1 ,mem_rxbuf + 2 
+5cbb c0035cc0 beq key_missing ,parse_lmp_inrand_key_missing 
+5cbc c18c0000 rtnne pairing_not_allowed 
+5cbd 70044618 jam pairing_not_allowed ,mem_disconn_reason_send 
+5cbe 70007c07 jam lmp_detach ,mem_lmo_opcode2 
+5cbf 20600000 rtn 
+
+parse_lmp_inrand_key_missing:
+5cc0 70044606 jam key_missing ,mem_disconn_reason_send 
+5cc1 70007c07 jam lmp_detach ,mem_lmo_opcode2 
+5cc2 20600000 rtn 
+
+parse_lmp_not_accepted_name_req:
+5cc3 20600000 rtn 
+
+parse_lmp_not_accepted_simple_pairing_number:
+5cc4 7007da00 jam sp_stat_null ,mem_sp_state 
+5cc5 70007c07 jam lmp_detach ,mem_lmo_opcode2 
+5cc6 20205b77 branch parse_rx_done 
+
+parse_lmp_not_accepted_dhkey_check:
+5cc7 7007da00 jam sp_stat_null ,mem_sp_state 
+5cc8 70007c07 jam lmp_detach ,mem_lmo_opcode2 
+5cc9 20205b77 branch parse_rx_done 
+
+parse_lmp_not_accepted_unsniff_req:
+5cca 700b7d24 jam bt_evt_unsniff_not_accept ,mem_fifo_temp 
+5ccb 20207c27 branch ui_ipc_send_event 
+
+parse_lmp_accepted_unsniff_req:
+5ccc 700b7d23 jam bt_evt_unsniff_accept ,mem_fifo_temp 
+5ccd 20407c27 call ui_ipc_send_event 
+5cce 20403806 call sniff_exit 
+5ccf 18000400 force 0 ,temp 
+5cd0 20204907 branch hci_send_mode_change 
+
+parse_lmp_accepted_sniff_req:
+5cd1 700b7d22 jam bt_evt_sniff_accept ,mem_fifo_temp 
+5cd2 20407c27 call ui_ipc_send_event 
+5cd3 18000402 force 0x02 ,temp 
+5cd4 20404907 call hci_send_mode_change 
+5cd5 58000000 setarg 0 
+5cd6 60010075 store 2 ,mem_dsniff 
+5cd7 68014280 fetch 2 ,mem_sniff_param_interval 
+5cd8 1fe3fe00 lshift pdata ,pdata 
+5cd9 60010032 store 2 ,mem_tsniff 
+5cda 6800c282 fetch 1 ,mem_sniff_param_attempt 
+5cdb 60008073 store 1 ,mem_sniff_attempt 
+5cdc 6800c284 fetch 1 ,mem_sniff_param_timeout 
+5cdd 60008074 store 1 ,mem_sniff_timeout 
+5cde 202037e1 branch sniff_init 
+
+parse_lmp_not_acdcept_sniff_req:
+5cdf 700b7d21 jam bt_evt_sniff_not_accept ,mem_fifo_temp 
+5ce0 20207c27 branch ui_ipc_send_event 
+
+parse_lmp_crypt_key:
+5ce1 680884df fetcht 1 ,mem_rxbuf + 1 
+5ce2 60088054 storet 1 ,mem_key_size 
+5ce3 20205cf5 branch accept_lmp_msg 
+
+parse_lmp_setup_complete:
+5ce4 6800844d fetch 1 ,mem_lmp_conn_state 
+5ce5 79207e02 set1 received_setup_complete ,pdata 
+5ce6 6000844d store 1 ,mem_lmp_conn_state 
+5ce7 c3818000 rtnbit1 sent_setup_complete 
+5ce8 70007c31 jam lmp_setup_complete ,mem_lmo_opcode2 
+5ce9 20205b77 branch parse_rx_done 
+
+parse_lmp_max_slot:
+5cea 20600000 rtn 
+
+parse_lmp_max_slot_req:
+5ceb 6800c171 fetch 1 ,mem_max_slot 
+5cec 680884df fetcht 1 ,mem_rxbuf + 1 
+5ced 98467c00 isub temp ,null 
+5cee 20215cf5 branch accept_lmp_msg ,positive 
+5cef 70007c04 jam lmp_not_accepted ,mem_lmo_opcode2 
+5cf0 70007e1f jam unspecified_error ,mem_lmo_reason2 
+5cf1 70007d2e jam lmp_max_slot_req ,mem_lmi_opcode2 
+5cf2 20600000 rtn 
+
+parse_lmp_detach:
+5cf3 2040605a call prepare_disconnect 
+5cf4 20205cf5 branch accept_lmp_msg 
+
+accept_lmp_msg:
+5cf5 70007c03 jam lmp_accepted ,mem_lmo_opcode2 
+5cf6 20600000 rtn 
+
+parse_lmp_incr_power:
+5cf7 70007c21 jam lmp_max_power ,mem_lmo_opcode2 
+5cf8 20600000 rtn 
+
+parse_lmp_decr_power:
+5cf9 70007c22 jam lmp_min_power ,mem_lmo_opcode2 
+5cfa 20600000 rtn 
+
+parse_lmp_version_res:
+5cfb 68008055 fetch 1 ,mem_conn_sm 
+5cfc c1098000 rtneq conn_sm_wait_version 
+5cfd 70005502 jam conn_sm_send_features ,mem_conn_sm 
+5cfe 20600000 rtn 
+
+parse_lmp_auto_rate:
+5cff 20600000 rtn 
+
+parse_lmp_in_rand:
+5d00 20405ec8 call lmp_copy_rand 
+5d01 70045001 jam pincode_state_wait_pincode ,mem_pincode_state 
+5d02 6800c132 fetch 1 ,mem_device_option 
+5d03 c000dd06 beq dvc_op_hci ,parse_lmp_in_rand_hci 
+5d04 700b7d0a jam bt_evt_pincode_req ,mem_fifo_temp 
+5d05 20407c27 call ui_ipc_send_event 
+
+parse_lmp_in_rand_hci:
+5d06 2040487b call hci_send_pincode_req 
+5d07 2040620d call tid_check 
+5d08 2420ded0 nbranch lmp_accept_inrand ,true 
+5d09 2434dd0e nbranch parse_lmp_inrand_res ,master 
+5d0a 70007c04 jam lmp_not_accepted ,mem_lmo_opcode2 
+5d0b 70007d08 jam lmp_in_rand ,mem_lmi_opcode2 
+5d0c 70007e23 jam transaction_collision ,mem_lmo_reason2 
+5d0d 20600000 rtn 
+
+parse_lmp_inrand_res:
+5d0e 6800804b fetch 1 ,mem_op 
+5d0f 79207e02 set1 op_inrand_req ,pdata 
+5d10 6000804b store 1 ,mem_op 
+5d11 20600000 rtn 
+
+pop_tid_follow:
+5d12 6808804c fetcht 1 ,mem_state_map 
+5d13 7d3a0401 nsetflag blank ,smap_lmptid ,temp 
+5d14 6008804c storet 1 ,mem_state_map 
+5d15 20600000 rtn 
+
+push_tid_follow:
+5d16 6800807f fetch 1 ,mem_lmo_tid2 
+5d17 1fe37e00 rshift pdata ,pdata 
+5d18 1fe17e01 and_into 1 ,pdata 
+5d19 20600000 rtn 
+
+parse_lmp_au_rand:
+5d1a 20405d16 call push_tid_follow 
+5d1b 60008451 store 1 ,mem_sres_tid 
+5d1c 20405ec8 call lmp_copy_rand 
+5d1d 70007c0c jam lmp_sres ,mem_lmo_opcode2 
+5d1e 6800c25e fetch 1 ,mem_link_key_exists 
+5d1f 247a0000 nrtn blank 
+5d20 68008030 fetch 1 ,mem_state 
+5d21 c3830000 rtnbit1 state_combkey 
+5d22 70007e06 jam key_missing ,mem_lmo_reason2 
+5d23 6800c132 fetch 1 ,mem_device_option 
+5d24 c080dbc9 bne dvc_op_hci ,reject_lmp_packet 
+5d25 68008453 fetch 1 ,mem_auth_enable 
+5d26 243a5bc9 nbranch reject_lmp_packet ,blank 
+5d27 70007c00 jam 0 ,mem_lmo_opcode2 
+
+parse_lmp_inrand_sres:
+5d28 6800804b fetch 1 ,mem_op 
+5d29 79207e00 set1 op_send_sres ,pdata 
+5d2a 6000804b store 1 ,mem_op 
+5d2b 20204872 branch hci_send_linkkey_req 
+
+parse_lmp_sres:
+5d2c da200040 arg mem_plap ,rega 
+5d2d 2040739d call function_e1 
+5d2e 680204df fetch 4 ,mem_rxbuf + 1 
+5d2f 680a051f fetcht 4 ,mem_input_store 
+5d30 98467c00 isub temp ,null 
+5d31 2022dd35 branch authentication_ok ,zero 
+5d32 70007c07 jam lmp_detach ,mem_lmo_opcode2 
+5d33 70044605 jam authentication_failure_error ,mem_disconn_reason_send 
+5d34 20600000 rtn 
+
+authentication_ok:
+5d35 2040749b call copy_aco 
+5d36 20403211 call linkkey_ready 
+5d37 6800804b fetch 1 ,mem_op 
+5d38 2feffe01 isolate1 op_auth_req ,pdata 
+5d39 793ffe01 set0 op_auth_req ,pdata 
+5d3a 6000804b store 1 ,mem_op 
+5d3b 2040c8bc call hci_send_auth_complete ,true 
+5d3c 68008055 fetch 1 ,mem_conn_sm 
+5d3d c00cdd40 beq conn_sm_auth_wait ,authentication_ok_conn_sm 
+5d3e c00c5d40 beq conn_sm_pairing_wait ,authentication_ok_conn_sm 
+5d3f 20600000 rtn 
+
+authentication_ok_conn_sm:
+5d40 680087e1 fetch 1 ,mem_pairing_auth 
+5d41 c1800000 rtnne defalt_pairing_auth 
+5d42 6800804c fetch 1 ,mem_state_map 
+5d43 c3810000 rtnbit1 smap_encryption 
+5d44 202062cf branch host_create_conn_encrypt 
+
+parse_lmp_comb_key:
+5d45 da2004df arg mem_rxbuf + 1 ,rega 
+5d46 da40050f arg mem_kinit ,regb 
+5d47 d8a004ef arg mem_random_number ,contw 
+5d48 20407467 call xor16 
+5d49 da200040 arg mem_plap ,rega 
+5d4a 2040622b call generate_linkkey 
+5d4b 70007c0b jam lmp_au_rand ,mem_lmo_opcode2 
+5d4c 68008030 fetch 1 ,mem_state 
+5d4d c3035ecb bbit0 state_combkey ,lmp_generate_key 
+5d4e 20600000 rtn 
+
+parse_lmp_name_res:
+5d4f 68010169 fetch 2 ,mem_len 
+5d50 1fe0f3fd add pdata ,-3 ,loopcnt 
+5d51 680884df fetcht 1 ,mem_rxbuf + 1 
+5d52 58000103 setarg mem_tmp_buffer 
+5d53 98408a00 iadd temp ,contw 
+5d54 d8c004e1 arg mem_rxbuf + 3 ,contr 
+5d55 20407e45 call memcpy 
+5d56 68088053 fetcht 1 ,mem_name_offset 
+5d57 680084e0 fetch 1 ,mem_rxbuf + 2 
+5d58 98467e00 isub temp ,pdata 
+5d59 1fe67c0e sub pdata ,14 ,null 
+5d5a 20215d5f branch parse_lmp_name_res_end ,positive 
+5d5b 1840fe0e add temp ,14 ,pdata 
+5d5c 60008053 store 1 ,mem_name_offset 
+5d5d 70007c01 jam lmp_name_req ,mem_lmo_opcode2 
+5d5e 20600000 rtn 
+
+parse_lmp_name_res_end:
+5d5f 6800804c fetch 1 ,mem_state_map 
+5d60 79207e03 set1 smap_name_res ,pdata 
+5d61 6000804c store 1 ,mem_state_map 
+5d62 c2825ed5 bbit1 smap_name_req ,lmp_disconnect 
+5d63 20600000 rtn 
+
+parse_lmp_name_req:
+5d64 680084df fetch 1 ,mem_rxbuf + 1 
+5d65 6000807d store 1 ,mem_lmi_opcode2 
+5d66 70007c02 jam lmp_name_res ,mem_lmo_opcode2 
+5d67 20600000 rtn 
+
+parse_lmp_conn_req:
+5d68 6800c132 fetch 1 ,mem_device_option 
+5d69 c080dcf5 bne dvc_op_hci ,accept_lmp_msg 
+5d6a 18000401 force 1 ,temp 
+5d6b 20204839 branch hci_send_conn_req_event 
+
+parse_lmp_timing_accuracy_req:
+5d6c 70007c30 jam lmp_timing_accuracy_res ,mem_lmo_opcode2 
+5d6d 20600000 rtn 
+
+parse_lmp_features_req:
+5d6e 70007c28 jam lmp_features_res ,mem_lmo_opcode2 
+5d6f 20600000 rtn 
+
+parse_lmp_version_req:
+5d70 70007c26 jam lmp_version_res ,mem_lmo_opcode2 
+5d71 20600000 rtn 
+
+parse_lmp_supervision_timeout:
+5d72 20600000 rtn 
+
+parse_lmp_sniff_subrating_req:
+5d73 68010032 fetch 2 ,mem_tsniff 
+5d74 98000400 iforce temp 
+5d75 680084e0 fetch 1 ,mem_rxbuf + 2 
+5d76 60008097 store 1 ,mem_subsniff_rate 
+5d77 984f8400 imul32 temp ,temp 
+5d78 680104e1 fetch 2 ,mem_rxbuf + 3 
+5d79 1fe3fe00 lshift pdata ,pdata 
+5d7a 60010098 store 2 ,mem_subsniff_tcmax 
+5d7b 680204e3 fetch 4 ,mem_rxbuf + 5 
+5d7c 1fe3fe00 lshift pdata ,pdata 
+5d7d 60020093 store 4 ,mem_subsniff_instant 
+5d7e 18427e00 deposit temp 
+5d7f 6001009a store 2 ,mem_subsniff_tsniff 
+5d80 20600000 rtn 
+
+parse_lmpext_packet_type_table_req:
+5d81 6808c1fb fetcht 1 ,mem_ptt 
+5d82 680084e0 fetch 1 ,mem_rxbuf + 2 
+5d83 9842fc00 ixor temp ,null 
+5d84 2422dbee nbranch reject_unknown_ext_packet ,zero 
+5d85 2feffe00 isolate1 0 ,pdata 
+5d86 6800804c fetch 1 ,mem_state_map 
+5d87 7920fe05 setflag true ,smap_edr ,pdata 
+5d88 6000804c store 1 ,mem_state_map 
+5d89 70007c81 jam lmp_ext_accepted ,mem_lmo_opcode2 
+5d8a 70007d8b jam lmp_packet_type_table_req ,mem_lmi_opcode2 
+5d8b 20600000 rtn 
+
+parse_lmp_sniff_subrating_res:
+5d8c 20600000 rtn 
+
+parse_lmp_max_power:
+5d8d 20600000 rtn 
+
+parse_lmp_min_power:
+5d8e 20600000 rtn 
+
+parse_lmp_page_mode_req:
+5d8f 20205cf5 branch accept_lmp_msg 
+
+parse_lmp_page_scan_mode_req:
+5d90 20205cf5 branch accept_lmp_msg 
+
+parse_lmp_preferred_rate:
+5d91 20600000 rtn 
+
+parse_lmp_remove_sco_link_req:
+5d92 2040385e call stop_sco 
+5d93 70007d2c jam lmp_remove_sco_link_req ,mem_lmi_opcode2 
+5d94 20205cf5 branch accept_lmp_msg 
+
+parse_lmp_sco_link_req:
+5d95 680084df fetch 1 ,mem_rxbuf + 1 
+5d96 600080ad store 1 ,mem_sco_handle 
+5d97 680084e1 fetch 1 ,mem_rxbuf + 3 
+5d98 600080af store 1 ,mem_esco_desco 
+5d99 680084e4 fetch 1 ,mem_rxbuf + 6 
+5d9a 600080ab store 1 ,mem_air_mode 
+5d9b 20405d16 call push_tid_follow 
+5d9c 60008452 store 1 ,mem_accptsco_tid 
+5d9d 18000400 force 0 ,temp 
+5d9e 20204839 branch hci_send_conn_req_event 
+
+parse_lmp_slot_offset:
+5d9f 680104df fetch 2 ,mem_rxbuf + 1 
+5da0 6001017b store 2 ,mem_slot_offset 
+5da1 20600000 rtn 
+
+parse_lmp_sniff_req:
+5da2 68008030 fetch 1 ,mem_state 
+5da3 c280ddb5 bbit1 state_insniff ,lmp_reject_sniff 
+5da4 680104e0 fetch 2 ,mem_rxbuf + 2 
+5da5 1fe3fe00 lshift pdata ,pdata 
+5da6 60010075 store 2 ,mem_dsniff 
+5da7 680104e2 fetch 2 ,mem_rxbuf + 4 
+5da8 1fe3fe00 lshift pdata ,pdata 
+5da9 60010032 store 2 ,mem_tsniff 
+5daa 680104e4 fetch 2 ,mem_rxbuf + 6 
+5dab 60008073 store 1 ,mem_sniff_attempt 
+5dac 98000400 iforce temp 
+5dad 680104e6 fetch 2 ,mem_rxbuf + 8 
+5dae 60008074 store 1 ,mem_sniff_timeout 
+5daf 98467c00 isub temp ,null 
+5db0 24215db2 nbranch set_big_value_to_attempt ,positive 
+5db1 60008073 store 1 ,mem_sniff_attempt 
+
+set_big_value_to_attempt:
+5db2 70007c03 jam lmp_accepted ,mem_lmo_opcode2 
+5db3 70007d17 jam lmp_sniff_req ,mem_lmi_opcode2 
+5db4 20600000 rtn 
+
+lmp_reject_sniff:
+5db5 70007e24 jam pdu_not_allowed ,mem_lmo_reason2 
+5db6 20205bc9 branch reject_lmp_packet 
+
+parse_lmp_start_encryption_req:
+5db7 20405cf5 call accept_lmp_msg 
+5db8 20405ec8 call lmp_copy_rand 
+5db9 204073a0 call function_e3 
+5dba 202037d0 branch start_encryption 
+
+parse_lmp_stop_encryption_req:
+5dbb 20405cf5 call accept_lmp_msg 
+5dbc 202037da branch stop_encryption 
+
+parse_lmp_switch_req:
+5dbd 680204df fetch 4 ,mem_rxbuf + 1 
+5dbe 1fe3fe00 lshift pdata ,pdata 
+5dbf 2034ddc9 branch parse_lmp_switch_accept ,master 
+5dc0 6808c25e fetcht 1 ,mem_link_key_exists 
+5dc1 243a5dc6 nbranch parse_lmp_switch_req_clear_mark ,blank 
+
+parse_lmp_switch_req_not_accept:
+5dc2 70007c04 jam lmp_not_accepted ,mem_lmo_opcode2 
+5dc3 70007d13 jam lmp_switch_req ,mem_lmi_opcode2 
+5dc4 70007e24 jam pdu_not_allowed ,mem_lmo_reason2 
+5dc5 20600000 rtn 
+
+parse_lmp_switch_req_clear_mark:
+5dc6 70007c34 jam lmp_slot_offset ,mem_lmo_opcode2 
+5dc7 70005500 jam 0 ,mem_conn_sm 
+5dc8 20203241 branch role_switch_prepare 
+
+parse_lmp_switch_accept:
+5dc9 20403241 call role_switch_prepare 
+5dca 79200022 set1 mark_reconn_recieve_switch ,mark 
+5dcb 68008177 fetch 1 ,mem_connection_options 
+5dcc 793ffe02 set0 connection_switch ,pdata 
+5dcd 60008177 store 1 ,mem_connection_options 
+5dce 20205cf5 branch accept_lmp_msg 
+
+parse_lmp_temp_rand:
+5dcf 20600000 rtn 
+
+parse_lmp_temp_key:
+5dd0 20600000 rtn 
+
+parse_lmp_timing_accuracy_res:
+5dd1 20600000 rtn 
+
+parse_lmp_unit_key:
+5dd2 20600000 rtn 
+
+parse_lmp_unsniff_req:
+5dd3 70007c03 jam lmp_accepted ,mem_lmo_opcode2 
+5dd4 70007d18 jam lmp_unsniff_req ,mem_lmi_opcode2 
+5dd5 700b7d2e jam bt_evt_remote_unsniff ,mem_fifo_temp 
+5dd6 20407c27 call ui_ipc_send_event 
+5dd7 18000400 force 0 ,temp 
+5dd8 20404907 call hci_send_mode_change 
+5dd9 20203806 branch sniff_exit 
+
+parse_lmp_use_semi_permanend_key:
+5dda 20600000 rtn 
+
+parse_lmp_encapsulated_header:
+5ddb 680084df fetch 1 ,mem_rxbuf + 1 
+5ddc c080dde7 bne encapsulated_major_type_p192 ,parse_lmp_encapsulated_header_reject 
+5ddd 680084e0 fetch 1 ,mem_rxbuf + 2 
+5dde c080dde7 bne encapsulated_minor_type_p192 ,parse_lmp_encapsulated_header_reject 
+5ddf 680084e1 fetch 1 ,mem_rxbuf + 3 
+5de0 c0985de7 bne encapsulated_len_p192 ,parse_lmp_encapsulated_header_reject 
+5de1 20406216 call check_localsm 
+5de2 2020dde4 branch parse_lmp_encapsulated_header_master ,true 
+5de3 7007da01 jam sp_stat_key_recv ,mem_sp_state 
+
+parse_lmp_encapsulated_header_master:
+5de4 70007c03 jam lmp_accepted ,mem_lmo_opcode2 
+5de5 70007d3d jam lmp_encapsulated_header ,mem_lmi_opcode2 
+5de6 20205b77 branch parse_rx_done 
+
+parse_lmp_encapsulated_header_reject:
+5de7 70007e24 jam pdu_not_allowed ,mem_lmo_reason2 
+5de8 20205bc9 branch reject_lmp_packet 
+
+parse_lmp_accepted_encapsulated_header:
+5de9 70007c3e jam lmp_encapsulated_payload ,mem_lmo_opcode2 
+5dea 20600000 rtn 
+
+parse_lmp_accepted_simple_pairing_number:
+5deb 20406216 call check_localsm 
+5dec 20608000 rtn true 
+5ded 7007da08 jam sp_stat_confirm_recv ,mem_sp_state 
+5dee 20600000 rtn 
+
+parse_lmp_accepted_dhkey_check:
+5def 20406216 call check_localsm 
+5df0 2440fa9d ncall g_noninit ,true 
+5df1 2040faab call g_init ,true 
+5df2 20404860 call hci_send_user_confirmation_req 
+5df3 20404869 call hci_send_ssp_complete 
+5df4 20406216 call check_localsm 
+5df5 20608000 rtn true 
+5df6 7007da0c jam sp_stat_link_key_calc ,mem_sp_state 
+5df7 7007dc01 jam sp_flag_commit ,mem_sp_flag 
+5df8 20600000 rtn 
+
+parse_simple_pairing_confirm:
+5df9 d8a00888 arg mem_sp_confirm_remote ,contw 
+5dfa 680404df fetch 8 ,mem_rxbuf + 1 
+5dfb e0a40000 istore 8 ,contw 
+5dfc 680404e7 fetch 8 ,mem_rxbuf + 9 
+5dfd e0a40000 istore 8 ,contw 
+5dfe 2020780f branch master_set_mem_master_sp_flag 
+
+parse_lmp_encapsulated_payload:
+5dff 680087db fetch 1 ,mem_master_sp_state 
+5e00 c003de03 beq sp_stat_random_send ,parse_encapsulated_payload_master 
+5e01 680087da fetch 1 ,mem_sp_state 
+5e02 c080de16 bne sp_stat_key_recv ,parse_lmp_encapsulated_payload_reject 
+
+parse_encapsulated_payload_master:
+5e03 680087e3 fetch 1 ,mem_sp_remote_key_recv_count 
+5e04 1fe60a20 sub pdata ,0x20 ,contw 
+5e05 24215e16 nbranch parse_lmp_encapsulated_payload_reject ,positive 
+5e06 d8a007f0 arg mem_sp_pubkey_remote ,contw 
+5e07 98a08a00 iadd contw ,contw 
+5e08 680404df fetch 8 ,mem_rxbuf + 1 
+5e09 e0a40000 istore 8 ,contw 
+5e0a 680404e7 fetch 8 ,mem_rxbuf + 9 
+5e0b e0a40000 istore 8 ,contw 
+5e0c 680087e3 fetch 1 ,mem_sp_remote_key_recv_count 
+5e0d 1fe0fe10 increase 16 ,pdata 
+5e0e 600087e3 store 1 ,mem_sp_remote_key_recv_count 
+5e0f c0985cf5 bne encapsulated_len_p192 ,accept_lmp_msg 
+
+parse_lmp_encapsulated_payload_completed:
+5e10 20406216 call check_localsm 
+5e11 2020dcf5 branch accept_lmp_msg ,true 
+5e12 7007e401 jam sp_key_valid ,mem_sp_remote_key_invalid 
+5e13 7007da02 jam sp_stat_key_generate ,mem_sp_state 
+5e14 7007dc01 jam sp_flag_commit ,mem_sp_flag 
+5e15 20205cf5 branch accept_lmp_msg 
+
+parse_lmp_encapsulated_payload_reject:
+5e16 70007e24 jam pdu_not_allowed ,mem_lmo_reason2 
+5e17 20205bc9 branch reject_lmp_packet 
+
+parse_lmp_accepted_encapsulated_payload:
+5e18 680087e2 fetch 1 ,mem_sp_local_key_send_count 
+5e19 c0185e1c beq encapsulated_len_p192 ,parse_lmp_encapsulated_payload_all_accepted 
+5e1a 70007c3e jam lmp_encapsulated_payload ,mem_lmo_opcode2 
+5e1b 20205b77 branch parse_rx_done 
+
+parse_lmp_encapsulated_payload_all_accepted:
+5e1c 20406216 call check_localsm 
+5e1d 2020de21 branch parse_lmp_encapsulated_payload_all_accepted_master ,true 
+5e1e 7007dc01 jam sp_flag_commit ,mem_sp_flag 
+5e1f 7007da04 jam sp_stat_commit_calc ,mem_sp_state 
+5e20 20205b77 branch parse_rx_done 
+
+parse_lmp_encapsulated_payload_all_accepted_master:
+5e21 20205b77 branch parse_rx_done 
+
+parse_lmp_simple_pairing_number:
+5e22 680087db fetch 1 ,mem_master_sp_state 
+5e23 c003de26 beq sp_stat_random_send ,parse_lmp_simple_pairing_number_master 
+5e24 680087da fetch 1 ,mem_sp_state 
+5e25 c0835e32 bne sp_stat_random_recv ,parse_lmp_simple_pairing_number_reject 
+
+parse_lmp_simple_pairing_number_master:
+5e26 d8a00848 arg mem_sp_random_remote ,contw 
+5e27 680404df fetch 8 ,mem_rxbuf + 1 
+5e28 e0a40000 istore 8 ,contw 
+5e29 680404e7 fetch 8 ,mem_rxbuf + 9 
+5e2a e0a40000 istore 8 ,contw 
+5e2b 20406216 call check_localsm 
+5e2c 2020de30 branch parse_lmp_simple_pairing_number_master0 ,true 
+5e2d 7007da07 jam sp_stat_random_send ,mem_sp_state 
+5e2e 7007dc01 jam sp_flag_commit ,mem_sp_flag 
+5e2f 20205cf5 branch accept_lmp_msg 
+
+parse_lmp_simple_pairing_number_master0:
+5e30 7007db04 jam sp_stat_commit_calc ,mem_master_sp_state 
+5e31 2020780f branch master_set_mem_master_sp_flag 
+
+parse_lmp_simple_pairing_number_reject:
+5e32 70007e24 jam pdu_not_allowed ,mem_lmo_reason2 
+5e33 20205bc9 branch reject_lmp_packet 
+
+parse_dhkey_check:
+5e34 680087db fetch 1 ,mem_master_sp_state 
+5e35 c005de38 beq sp_stat_confirm_send ,parse_dhkey_check_master 
+5e36 680087da fetch 1 ,mem_sp_state 
+5e37 c0845e45 bne sp_stat_confirm_recv ,parse_lmp_dhkey_check_reject 
+
+parse_dhkey_check_master:
+5e38 d8a00878 arg mem_sp_check_result ,contw 
+5e39 680404df fetch 8 ,mem_rxbuf + 1 
+5e3a e0a40000 istore 8 ,contw 
+5e3b 680404e7 fetch 8 ,mem_rxbuf + 9 
+5e3c e0a40000 istore 8 ,contw 
+5e3d 20406216 call check_localsm 
+5e3e 2020de42 branch parse_dhkey_check_master0 ,true 
+5e3f 7007da09 jam sp_stat_confirm_check ,mem_sp_state 
+5e40 7007dc01 jam sp_flag_commit ,mem_sp_flag 
+5e41 20205b77 branch parse_rx_done 
+
+parse_dhkey_check_master0:
+5e42 7007db09 jam sp_stat_confirm_check ,mem_master_sp_state 
+5e43 7007dd01 jam sp_flag_commit ,mem_master_sp_flag 
+5e44 20205b77 branch parse_rx_done 
+
+parse_lmp_dhkey_check_reject:
+5e45 70007e24 jam pdu_not_allowed ,mem_lmo_reason2 
+5e46 20205bc9 branch reject_lmp_packet 
+
+parse_lmp_clkoffset_res:
+5e47 20205b77 branch parse_rx_done 
+
+parse_lmp_encryption_mode_req:
+5e48 68008177 fetch 1 ,mem_connection_options 
+5e49 793ffe01 set0 connection_encrypt 
+5e4a 60008177 store 1 ,mem_connection_options 
+5e4b 20405cf5 call accept_lmp_msg 
+5e4c 24748000 nrtn master 
+5e4d 680084df fetch 1 ,mem_rxbuf + 1 
+5e4e 6808804b fetcht 1 ,mem_op 
+5e4f 793a0404 setflag blank ,op_stop_enc ,temp 
+5e50 7d3a0405 nsetflag blank ,op_start_enc ,temp 
+5e51 6008804b storet 1 ,mem_op 
+5e52 20600000 rtn 
+
+parse_lmp_features_res:
+5e53 680c04df fetcht 8 ,mem_rxbuf + 1 
+5e54 6800c272 fetch 1 ,mem_hci_cmd 
+5e55 c0a85e58 bne hci_cmd_wait_remote_feature ,parse_lmp_features_res_not_hci 
+5e56 70427200 jam 0 ,mem_hci_cmd 
+5e57 204047e5 call hci_send_remote_features 
+
+parse_lmp_features_res_not_hci:
+5e58 68008055 fetch 1 ,mem_conn_sm 
+5e59 c1818000 rtnne conn_sm_wait_features_res 
+5e5a 6800c132 fetch 1 ,mem_device_option 
+5e5b c000de5e beq dvc_op_hci ,parse_lmp_feature_ext_sm 
+5e5c 68008177 fetch 1 ,mem_connection_options 
+5e5d c3025e60 bbit0 connection_feature_ext ,parse_lmp_send_conn 
+
+parse_lmp_feature_ext_sm:
+5e5e 70005514 jam conn_sm_send_features_ext ,mem_conn_sm 
+5e5f 20600000 rtn 
+
+parse_lmp_send_conn:
+5e60 70005504 jam conn_sm_send_conn_req ,mem_conn_sm 
+5e61 20600000 rtn 
+
+parse_lmp_test_activate:
+5e62 68008189 fetch 1 ,mem_debug_config 
+5e63 6000815d store 1 ,mem_test_mode_old_debug_config 
+5e64 70007c03 jam lmp_accepted ,mem_lmo_opcode2 
+5e65 70007d38 jam lmp_test_activate ,mem_lmi_opcode2 
+5e66 20600000 rtn 
+
+parse_lmp_test_control:
+5e67 70007c03 jam lmp_accepted ,mem_lmo_opcode2 
+5e68 70007d39 jam lmp_test_control ,mem_lmi_opcode2 
+5e69 18007209 force 9 ,loopcnt 
+5e6a d8c004df arg mem_rxbuf + 1 ,contr 
+5e6b d8a00154 arg mem_temp_payload ,contw 
+
+parse_lmp_test_xor:
+5e6c e8c08000 ifetch 1 ,contr 
+5e6d 1fe2fe55 xor_into 0x55 ,pdata 
+5e6e e0a08000 istore 1 ,contw 
+5e6f c2005e6c loop parse_lmp_test_xor 
+5e70 68008154 fetch 1 ,test_mode_scenario 
+5e71 68088153 fetcht 1 ,mem_tester_emulate 
+5e72 793f8407 set0 tester_no_whitening ,temp 
+5e73 793f8404 set0 tester_pattern_test ,temp 
+5e74 c07fde80 beq exit_test_mode ,parse_lmp_test_control_exit 
+5e75 c0005e99 beq pause_test_mode ,parse_lmp_test_control_pause 
+5e76 c002de8d beq closed_loop_back_acl ,parse_lmp_test_control_loopback 
+5e77 c003de8c beq acl_without_whitening ,parse_lmp_test_control_loopback_nowhite 
+5e78 c0035e8d beq closed_loop_back_sco ,parse_lmp_test_control_loopback 
+5e79 c0045e8c beq sco_without_whitening ,parse_lmp_test_control_loopback_nowhite 
+5e7a c000de85 beq zero_pattern ,parse_lmp_test_control_pattern 
+5e7b c0015e85 beq one_pattern ,parse_lmp_test_control_pattern 
+5e7c c001de85 beq alt_pattern ,parse_lmp_test_control_pattern 
+5e7d c004de85 beq alt2_pattern ,parse_lmp_test_control_pattern 
+5e7e c0025e85 beq pseudorandom ,parse_lmp_test_control_pattern 
+5e7f 20600000 rtn 
+
+parse_lmp_test_control_exit:
+5e80 68008153 fetch 1 ,mem_tester_emulate 
+5e81 79207e03 set1 tester_exit ,pdata 
+5e82 79207e02 set1 tester_change ,pdata 
+5e83 60008153 store 1 ,mem_tester_emulate 
+5e84 20600000 rtn 
+
+parse_lmp_test_control_pattern:
+5e85 79200404 set1 tester_pattern_test ,temp 
+5e86 70018a05 jam 5 ,mem_lch_code 
+5e87 6801015b fetch 2 ,test_mode_data_length 
+5e88 98007200 iforce loopcnt 
+5e89 60010169 store 2 ,mem_len 
+5e8a d8a004de arg mem_rxbuf ,contw 
+5e8b 20407ed8 call pn9 
+
+parse_lmp_test_control_loopback_nowhite:
+5e8c 79200407 set1 tester_no_whitening ,temp 
+
+parse_lmp_test_control_loopback:
+5e8d 79200402 set1 tester_change ,temp 
+5e8e 18007e00 force 0 ,pdata 
+5e8f 6000800b store 1 ,mem_slave_rcvcnt 
+5e90 600100fc store 2 ,mem_tst_pktcnt_crc 
+5e91 600100fe store 2 ,mem_tst_pktcnt_dmh 
+5e92 600100fa store 2 ,mem_tst_pktcnt_hec 
+5e93 600100f8 store 2 ,mem_tst_pktcnt_sync 
+5e94 68008155 fetch 1 ,test_mode_hopping_mode 
+5e95 2fe1fe00 compare fixed_freq ,pdata ,0xff 
+5e96 79208406 setflag true ,tester_fixed_freq ,temp 
+5e97 60088153 storet 1 ,mem_tester_emulate 
+5e98 20600000 rtn 
+
+parse_lmp_test_control_pause:
+5e99 793f8011 set0 mark_testmode ,mark 
+5e9a 70015300 jam 0 ,mem_tester_emulate 
+5e9b 68008189 fetch 1 ,mem_debug_config 
+5e9c 793ffe06 set0 debug_tx_pattern ,pdata 
+5e9d 60008189 store 1 ,mem_debug_config 
+5e9e 20600000 rtn 
+
+check_test_cond:
+5e9f 68008153 fetch 1 ,mem_tester_emulate 
+5ea0 c4010000 rtnbit0 tester_change 
+5ea1 6800815e fetch 1 ,mem_tester_cnt 
+5ea2 1fe0fe01 increase 1 ,pdata 
+5ea3 6000815e store 1 ,mem_tester_cnt 
+5ea4 c1828000 rtnne 5 
+5ea5 70015e00 jam 0 ,mem_tester_cnt 
+5ea6 68008153 fetch 1 ,mem_tester_emulate 
+5ea7 793ffe02 set0 tester_change ,pdata 
+5ea8 60008153 store 1 ,mem_tester_emulate 
+5ea9 c281dec0 bbit1 tester_exit ,check_test_exit 
+5eaa 2feffe07 isolate1 tester_no_whitening ,pdata 
+5eab 2040ff86 call test_no_white ,true 
+5eac 2440ff8a ncall test_enable_white ,true 
+5ead 6800815a fetch 1 ,test_mode_packet_type 
+5eae 2fe06020 compare 0x20 ,pdata ,0x30 
+5eaf 6800804c fetch 1 ,mem_state_map 
+5eb0 7920fe05 setflag true ,smap_edr ,pdata 
+5eb1 6000804c store 1 ,mem_state_map 
+5eb2 68008153 fetch 1 ,mem_tester_emulate 
+5eb3 68088189 fetcht 1 ,mem_debug_config 
+5eb4 2feffe04 isolate1 tester_pattern_test ,pdata 
+5eb5 79208406 setflag true ,debug_tx_pattern ,temp 
+5eb6 2feffe06 isolate1 tester_fixed_freq ,pdata 
+5eb7 79208404 setflag true ,debug_tx_fixed_freq ,temp 
+5eb8 79208405 setflag true ,debug_rx_fixed_freq ,temp 
+5eb9 60088189 storet 1 ,mem_debug_config 
+5eba 68008156 fetch 1 ,test_mode_tx_freq 
+5ebb 60008447 store 1 ,mem_tx_fixed_freq 
+5ebc 68008157 fetch 1 ,test_mode_rx_freq 
+5ebd 60008448 store 1 ,mem_rx_fixed_freq 
+5ebe 79200011 set1 mark_testmode ,mark 
+5ebf 20600000 rtn 
+
+check_test_exit:
+5ec0 793f8011 set0 mark_testmode ,mark 
+5ec1 70015300 jam 0 ,mem_tester_emulate 
+5ec2 6800815d fetch 1 ,mem_test_mode_old_debug_config 
+5ec3 60008189 store 1 ,mem_debug_config 
+5ec4 68108043 hfetch 1 ,core_config 
+5ec5 1fe17efb and_into 0xfb ,pdata 
+5ec6 60108043 hstore 1 ,core_config 
+5ec7 20600000 rtn 
+
+lmp_copy_rand:
+5ec8 d8c004df arg mem_rxbuf + 1 ,contr 
+5ec9 d8a004ef arg mem_random_number ,contw 
+5eca 20207e35 branch memcpy16 
+
+lmp_generate_key:
+5ecb 70007c09 jam lmp_comb_key ,mem_lmo_opcode2 
+5ecc 20600000 rtn 
+
+lmp_start_encryption:
+5ecd 24748000 nrtn master 
+5ece 70007c11 jam lmp_start_encryption_req ,mem_lmo_opcode2 
+5ecf 20600000 rtn 
+
+lmp_accept_inrand:
+5ed0 da204140 arg mem_lap ,rega 
+5ed1 2040736a call generate_kinit 
+5ed2 70007c03 jam lmp_accepted ,mem_lmo_opcode2 
+5ed3 70007d08 jam lmp_in_rand ,mem_lmi_opcode2 
+5ed4 20600000 rtn 
+
+lmp_disconnect:
+5ed5 7000720a jam 10 ,mem_conn_timer 
+5ed6 70007c07 jam lmp_detach ,mem_lmo_opcode2 
+5ed7 70044616 jam local_host ,mem_disconn_reason_send 
+5ed8 20600000 rtn 
+
+send_lmp:
+5ed9 79200025 set1 mark_ext_patch ,mark 
+5eda 44f1c03c bpatch patch3c_3 ,mem_patch3c 
+5edb 78547c00 disable user 
+5edc 204061d9 call lmo_fifo_process 
+5edd 68008048 fetch 1 ,mem_lmp_to_send 
+5ede 207a0000 rtn blank 
+5edf c283df10 bbit1 7 ,send_lmp_escape 
+5ee0 c000e072 beq lmp_name_req ,send_lmp_name_req 
+5ee1 c0015f9b beq lmp_name_res ,send_lmp_name_res 
+5ee2 c001df1d beq lmp_accepted ,send_lmp_accepted 
+5ee3 c0025f36 beq lmp_not_accepted ,send_lmp_not_accepted 
+5ee4 c013e0f2 beq lmp_features_req ,send_lmp_features_req 
+5ee5 c0145fbf beq lmp_features_res ,send_lmp_features_res 
+5ee6 c0185fab beq lmp_timing_accuracy_res ,send_lmp_timing_accuracy_res 
+5ee7 c012e0ed beq lmp_version_req ,send_lmp_version_req 
+5ee8 c0135fba beq lmp_version_res ,send_lmp_version_res 
+5ee9 c018e0dc beq lmp_setup_complete ,send_lmp_setup_complete 
+5eea c01be06d beq lmp_supervision_timeout ,send_lmp_superto 
+5eeb c019e05f beq lmp_host_connection_req ,send_lmp_no_payload 
+5eec c0046174 beq lmp_in_rand ,send_lmp_inrand 
+5eed c004e16a beq lmp_comb_key ,send_lmp_comb_key 
+5eee c005e17f beq lmp_au_rand ,send_lmp_aurand 
+5eef c0066188 beq lmp_sres ,send_lmp_sres 
+5ef0 c007e065 beq lmp_encryption_mode_req ,send_lmp_encryption_mode_req 
+5ef1 c00861af beq lmp_encryption_key_size_req ,send_lmp_encryption_key_size_req 
+5ef2 c008e1a5 beq lmp_start_encryption_req ,send_lmp_start_encryption 
+5ef3 c003e055 beq lmp_detach ,send_lmp_detach 
+5ef4 c0156081 beq lmp_quality_of_service_req ,send_lmp_quality_of_service_req 
+5ef5 c0056082 beq lmp_unit_key ,send_lmp_unit_key 
+5ef6 c015e0b5 beq lmp_sco_link_req ,send_lmp_sco_link_req 
+5ef7 c0035fb0 beq lmp_clkoffset_res ,send_lmp_clkoffset_res 
+5ef8 c010e062 beq lmp_max_power ,send_lmp_nopayload_reply 
+5ef9 c016e0d2 beq lmp_max_slot ,send_lmp_max_slot 
+5efa c01760d7 beq lmp_max_slot_req ,send_lmp_max_slot_req 
+5efb c0116062 beq lmp_min_power ,send_lmp_nopayload_reply 
+5efc c01660cb beq lmp_remove_sco_link_req ,send_lmp_remove_sco_link_req 
+5efd c01a6083 beq lmp_slot_offset ,send_lmp_slot_offset 
+5efe c009e098 beq lmp_switch_req ,send_lmp_switch_req 
+5eff c00be0a7 beq lmp_sniff_req ,send_lmp_sniff_req 
+5f00 c00961ac beq lmp_stop_encryption_req ,send_lmp_stop_encryption_req 
+5f01 c017e0ad beq lmp_timing_accuracy_req ,send_lmp_timing_accuracy_req 
+5f02 c00c60b2 beq lmp_unsniff_req ,send_lmp_unsniff_req 
+5f03 c01ee119 beq lmp_encapsulated_header ,send_lmp_encapsulated_header 
+5f04 c01f6125 beq lmp_encapsulated_payload ,send_lmp_encapsulated_payload 
+5f05 c01fe137 beq lmp_simple_pairing_confirm ,send_lmp_simple_pairing_comfirm 
+5f06 c0206142 beq lmp_simple_pairing_number ,send_lmp_simple_pairing_number 
+5f07 c020e157 beq lmp_dhkey_check ,send_lmp_dhkey_check 
+5f08 c011e166 beq lmp_auto_rate ,send_lmp_auto_rate 
+5f09 c01de161 beq lmp_enc_key_size_mask_res ,send_lmp_enc_key_size_mask_res 
+5f0a c002e167 beq lmp_clkoffset_req ,send_lmp_clkoffset_req 
+5f0b c014e168 beq lmp_quality_of_service ,send_lmp_quality_of_service 
+5f0c c01c6169 beq lmp_test_activate ,send_lmp_test_activate 
+5f0d c01ce078 beq lmp_test_control ,send_lmp_test_control 
+
+send_lmp_error:
+5f0e 20203bf1 branch assert 
+5f0f 20600000 rtn 
+
+send_lmp_escape:
+5f10 c0465fc4 beq lmp_ext_esco_link_req ,send_lmpext_esco_req 
+5f11 c046dfe3 beq lmp_ext_remove_esco_req ,send_lmpext_remove_esco 
+5f12 c040df43 beq lmp_ext_accepted ,send_lmpext_accepted 
+5f13 c0425f76 beq lmp_ext_features_res ,send_lmpext_features_res 
+5f14 c0415f50 beq lmp_not_accepted_ext ,send_lmpext_not_accepted 
+5f15 c041dfec beq lmp_ext_features_req ,send_lmpext_features_req 
+5f16 c045dff7 beq lmp_packet_type_table_req ,send_lmpext_packet_type_table_req 
+5f17 c04be051 beq lmp_pause_encryption_req ,send_lmpext_pause_encryption_req 
+5f18 c04cdf8c beq lmp_io_cap_req ,send_lmp_io_cap_req 
+5f19 c04d5f81 beq lmp_io_cap_res ,send_lmpext_io_cap_res 
+5f1a c04adf91 beq lmp_sniff_subrating_req ,send_lmpext_sniff_subrating_req 
+5f1b c04b5f92 beq lmp_sniff_subrating_res ,send_lmpext_sniff_subrating_res 
+5f1c 20203bf1 branch assert 
+
+send_lmp_accepted:
+5f1d 18007e02 force 2 ,pdata 
+5f1e 204061b5 call msg_send_lmp 
+5f1f 68008049 fetch 1 ,mem_lmi_opcode 
+5f20 e0a08000 istore 1 ,contw 
+5f21 c015df5a beq lmp_sco_link_req ,send_lmp_accptsco 
+5f22 204061c4 call send_lmp_follow 
+5f23 68008049 fetch 1 ,mem_lmi_opcode 
+5f24 c0045f5d beq lmp_in_rand ,send_lmp_accepted_inrand 
+5f25 c007df61 beq lmp_encryption_mode_req ,send_lmp_accepted_enc_mode 
+5f26 c0085f6c beq lmp_encryption_key_size_req ,send_lmp_accepted_enc_key 
+5f27 c00bdf33 beq lmp_sniff_req ,send_lmp_accept_sniff_req 
+5f28 c019df6f beq lmp_host_connection_req ,send_lmp_accepted_connection 
+5f29 c0165f74 beq lmp_remove_sco_link_req ,send_lmp_accept_remove_sco_link_req 
+5f2a c020df75 beq lmp_dhkey_check ,send_lmp_accept_dhkey_check 
+5f2b c008df2d beq lmp_start_encryption_req ,send_create_conn_start_l2cap_timer_sm 
+5f2c 20600000 rtn 
+
+send_create_conn_start_l2cap_timer_sm:
+5f2d 68008055 fetch 1 ,mem_conn_sm 
+5f2e 207a0000 rtn blank 
+5f2f 7000551b jam conn_sm_wait_done ,mem_conn_sm 
+5f30 5800000c setarg timer_enpt_waite 
+5f31 d8e0000b arg enpt_delay_timer ,queue 
+5f32 20207e4c branch timer_init 
+
+send_lmp_accept_sniff_req:
+5f33 18000402 force 0x02 ,temp 
+5f34 20404907 call hci_send_mode_change 
+5f35 202037e1 branch sniff_init 
+
+send_lmp_not_accepted:
+5f36 18007e03 force 3 ,pdata 
+5f37 204061b5 call msg_send_lmp 
+5f38 68008049 fetch 1 ,mem_lmi_opcode 
+5f39 c005df3e beq lmp_au_rand ,send_not_accept_aurand 
+5f3a e0a08000 istore 1 ,contw 
+5f3b 6800804a fetch 1 ,mem_lmo_reason 
+5f3c e0a08000 istore 1 ,contw 
+5f3d 202061c4 branch send_lmp_follow 
+
+send_not_accept_aurand:
+5f3e e0a08000 istore 1 ,contw 
+5f3f 6800804a fetch 1 ,mem_lmo_reason 
+5f40 e0a08000 istore 1 ,contw 
+5f41 d8400451 arg mem_sres_tid ,temp 
+5f42 202061fb branch special_tid_store 
+
+send_lmpext_accepted:
+5f43 18000e04 force 4 ,queue 
+5f44 204061bd call send_lmpext 
+5f45 5800007f setarg lmp_escape 
+5f46 e0a08000 istore 1 ,contw 
+5f47 68008049 fetch 1 ,mem_lmi_opcode 
+5f48 793ffe07 set0 7 ,pdata 
+5f49 e0a08000 istore 1 ,contw 
+5f4a 68008049 fetch 1 ,mem_lmi_opcode 
+5f4b c0465f5a beq lmp_ext_esco_link_req ,send_lmp_accptsco 
+5f4c 204061c4 call send_lmp_follow 
+5f4d 68008049 fetch 1 ,mem_lmi_opcode 
+5f4e c046df74 beq lmp_ext_remove_esco_req ,send_lmp_accept_remove_sco_link_req 
+5f4f 20600000 rtn 
+
+send_lmpext_not_accepted:
+5f50 18000e05 force 5 ,queue 
+5f51 204061bd call send_lmpext 
+5f52 5800007f setarg lmp_escape 
+5f53 e0a08000 istore 1 ,contw 
+5f54 68008049 fetch 1 ,mem_lmi_opcode 
+5f55 793ffe07 set0 7 ,pdata 
+5f56 e0a08000 istore 1 ,contw 
+5f57 6800804a fetch 1 ,mem_lmo_reason 
+5f58 e0a08000 istore 1 ,contw 
+5f59 202061c4 branch send_lmp_follow 
+
+send_lmp_accptsco:
+5f5a 2040384a call play_sco 
+5f5b d8400452 arg mem_accptsco_tid ,temp 
+5f5c 202061fb branch special_tid_store 
+
+send_lmp_accepted_inrand:
+5f5d 20403507 call clear_linkkey 
+5f5e 2040620d call tid_check 
+5f5f 20608000 rtn true 
+5f60 20205ecb branch lmp_generate_key 
+
+send_lmp_accepted_enc_mode:
+5f61 6800804b fetch 1 ,mem_op 
+5f62 c282df68 bbit1 op_start_enc ,send_lmp_accepted_enc_start 
+5f63 c4020000 rtnbit0 op_stop_enc 
+5f64 70007c12 jam lmp_stop_encryption_req ,mem_lmo_opcode2 
+5f65 793ffe04 set0 op_stop_enc ,pdata 
+5f66 20406205 call tid_reply 
+5f67 20205f6a branch send_lmp_accepted_enc_exit 
+
+send_lmp_accepted_enc_start:
+5f68 70007c10 jam lmp_encryption_key_size_req ,mem_lmo_opcode2 
+5f69 793ffe05 set0 op_start_enc ,pdata 
+
+send_lmp_accepted_enc_exit:
+5f6a 6000804b store 1 ,mem_op 
+5f6b 20600000 rtn 
+
+send_lmp_accepted_enc_key:
+5f6c 20406216 call check_localsm 
+5f6d 2020decd branch lmp_start_encryption ,true 
+5f6e 20600000 rtn 
+
+send_lmp_accepted_connection:
+5f6f 6800844d fetch 1 ,mem_lmp_conn_state 
+5f70 79207e00 set1 received_conn_req ,pdata 
+5f71 6000844d store 1 ,mem_lmp_conn_state 
+5f72 700b7d01 jam bt_evt_bb_connected ,mem_fifo_temp 
+5f73 20207c27 branch ui_ipc_send_event 
+
+send_lmp_accept_remove_sco_link_req:
+5f74 20600000 rtn 
+
+send_lmp_accept_dhkey_check:
+5f75 20600000 rtn 
+
+send_lmpext_features_res:
+5f76 18000e0c force 12 ,queue 
+5f77 204061bd call send_lmpext 
+5f78 58000001 setarg 0x01 
+5f79 e0a08000 istore 1 ,contw 
+5f7a 6801044a fetch 2 ,mem_lmpext_ssp_enable 
+5f7b e0a10000 istore 2 ,contw 
+5f7c 58000000 setarg 0 
+5f7d e0a18000 istore 3 ,contw 
+5f7e 58000000 setarg 0x00 
+5f7f e0a20000 istore 4 ,contw 
+5f80 202061cd branch send_lmp_reply 
+
+send_lmpext_io_cap_res:
+5f81 18000e05 force 5 ,queue 
+5f82 204061bd call send_lmpext 
+5f83 6800c132 fetch 1 ,mem_device_option 
+5f84 c000df89 beq dvc_op_hci ,send_lmpext_io_cap_res_hci 
+5f85 58040003 setarg 0x040003 
+5f86 e0a18000 istore 3 ,contw 
+5f87 600187e6 store 3 ,mem_sp_iocap_local 
+5f88 202061cd branch send_lmp_reply 
+
+send_lmpext_io_cap_res_hci:
+5f89 680187e6 fetch 3 ,mem_sp_iocap_local 
+5f8a e0a18000 istore 3 ,contw 
+5f8b 202061cd branch send_lmp_reply 
+
+send_lmp_io_cap_req:
+5f8c 18000e05 force 5 ,queue 
+5f8d 204061bd call send_lmpext 
+5f8e 680187e6 fetch 3 ,mem_sp_iocap_local 
+5f8f e0a18000 istore 3 ,contw 
+5f90 202061cf branch send_lmp_request 
+
+send_lmpext_sniff_subrating_req:
+5f91 20600000 rtn 
+
+send_lmpext_sniff_subrating_res:
+5f92 18000e09 force 9 ,queue 
+5f93 204061bd call send_lmpext 
+5f94 68008097 fetch 1 ,mem_subsniff_rate 
+5f95 e0a08000 istore 1 ,contw 
+5f96 68010098 fetch 2 ,mem_subsniff_tcmax 
+5f97 e0a10000 istore 2 ,contw 
+5f98 68020093 fetch 4 ,mem_subsniff_instant 
+5f99 e0a20000 istore 4 ,contw 
+5f9a 202061cd branch send_lmp_reply 
+
+send_lmp_name_res:
+5f9b 18007e11 force 17 ,pdata 
+5f9c 204061b5 call msg_send_lmp 
+5f9d 68008049 fetch 1 ,mem_lmi_opcode 
+5f9e 1fe20400 copy pdata ,temp 
+5f9f c0005fa3 beq 0x00 ,send_lmp_name_res_offset_ok 
+5fa0 c0075fa3 beq 0x0e ,send_lmp_name_res_offset_ok 
+5fa1 c00e5fa3 beq 0x1c ,send_lmp_name_res_offset_ok 
+5fa2 20600000 rtn 
+
+send_lmp_name_res_offset_ok:
+5fa3 e0a08000 istore 1 ,contw 
+5fa4 6800c702 fetch 1 ,mem_local_name_length 
+5fa5 e0a08000 istore 1 ,contw 
+5fa6 1fe27200 copy pdata ,loopcnt 
+5fa7 58004703 setarg mem_local_name 
+5fa8 98408c00 iadd temp ,contr 
+5fa9 20407e45 call memcpy 
+5faa 202061cd branch send_lmp_reply 
+
+send_lmp_timing_accuracy_res:
+5fab 18007e03 force 3 ,pdata 
+5fac 204061b5 call msg_send_lmp 
+5fad 58000114 setarg 0x0114 
+5fae e0a10000 istore 2 ,contw 
+5faf 202061cd branch send_lmp_reply 
+
+send_lmp_clkoffset_res:
+5fb0 18007e03 force 3 ,pdata 
+5fb1 204061b5 call msg_send_lmp 
+5fb2 6802016f fetch 4 ,mem_clke_bt 
+5fb3 9c467e00 isub clkn_bt ,pdata 
+5fb4 2034dfb6 branch send_lmp_clkoffset_res_master ,master 
+5fb5 1fe67e00 sub pdata ,0 ,pdata 
+
+send_lmp_clkoffset_res_master:
+5fb6 1feb7e00 rshift2 pdata ,pdata 
+5fb7 793ffe0f set0 15 ,pdata 
+5fb8 e0a10000 istore 2 ,contw 
+5fb9 202061cd branch send_lmp_reply 
+
+send_lmp_version_res:
+5fba 18007e06 force 6 ,pdata 
+5fbb 204061b5 call msg_send_lmp 
+5fbc 6802c6fd fetch 5 ,mem_lmp_version 
+5fbd e0a28000 istore 5 ,contw 
+5fbe 202061cd branch send_lmp_reply 
+
+send_lmp_features_res:
+5fbf 18007e09 force 9 ,pdata 
+5fc0 204061b5 call msg_send_lmp 
+5fc1 68044138 fetch 8 ,mem_features 
+5fc2 e0a40000 istore 8 ,contw 
+5fc3 202061cd branch send_lmp_reply 
+
+send_lmpext_esco_req:
+5fc4 2034dfc6 branch send_lmpext_esco_req_master ,master 
+5fc5 20205fc7 branch send_lmpext_esco_req_slave 
+
+send_lmpext_esco_req_master:
+5fc6 7041f907 jam 0x07 ,mem_esco_addr 
+
+send_lmpext_esco_req_slave:
+5fc7 7000af00 jam 0 ,mem_esco_desco 
+5fc8 18000e10 force 16 ,queue 
+5fc9 204061bd call send_lmpext 
+5fca 680080ad fetch 1 ,mem_sco_handle 
+5fcb e0a08000 istore 1 ,contw 
+5fcc 6800c1f9 fetch 1 ,mem_esco_addr 
+5fcd e0a08000 istore 1 ,contw 
+5fce 58000000 setarg 0 
+5fcf e0a08000 istore 1 ,contw 
+5fd0 680080af fetch 1 ,mem_esco_desco 
+5fd1 e0a08000 istore 1 ,contw 
+5fd2 58000006 setarg 6 
+5fd3 e0a08000 istore 1 ,contw 
+5fd4 58000002 setarg 2 
+5fd5 e0a08000 istore 1 ,contw 
+5fd6 58000007 setarg 7 
+5fd7 e0a08000 istore 1 ,contw 
+5fd8 e0a08000 istore 1 ,contw 
+5fd9 5800001e setarg 30 
+5fda e0a10000 istore 2 ,contw 
+5fdb e0a10000 istore 2 ,contw 
+5fdc 680080ab fetch 1 ,mem_air_mode 
+5fdd e0a08000 istore 1 ,contw 
+5fde 680080b1 fetch 1 ,mem_neogotiation_state 
+5fdf e0a08000 istore 1 ,contw 
+5fe0 243a61cd nbranch send_lmp_reply ,blank 
+5fe1 2034e1cd branch send_lmp_reply ,master 
+5fe2 202061cf branch send_lmp_request 
+
+send_lmpext_remove_esco:
+5fe3 18000e04 force 4 ,queue 
+5fe4 204061bd call send_lmpext 
+5fe5 680080ad fetch 1 ,mem_sco_handle 
+5fe6 e0a08000 istore 1 ,contw 
+5fe7 68008446 fetch 1 ,mem_disconn_reason_send 
+5fe8 e0a08000 istore 1 ,contw 
+5fe9 680080b4 fetch 1 ,mem_esco_saved_arq 
+5fea 60008047 store 1 ,mem_arq 
+5feb 202061cf branch send_lmp_request 
+
+send_lmpext_features_req:
+5fec 18000e0c force 12 ,queue 
+5fed 204061bd call send_lmpext 
+5fee 58000001 setarg 0x01 
+5fef e0a08000 istore 1 ,contw 
+5ff0 6801044a fetch 2 ,mem_lmpext_ssp_enable 
+5ff1 e0a10000 istore 2 ,contw 
+5ff2 58000000 setarg 0 
+5ff3 e0a18000 istore 3 ,contw 
+5ff4 58000000 setarg 0x00 
+5ff5 e0a20000 istore 4 ,contw 
+5ff6 202061cf branch send_lmp_request 
+
+send_lmpext_packet_type_table_req:
+5ff7 18000e03 force 3 ,queue 
+5ff8 204061bd call send_lmpext 
+5ff9 6800c1fb fetch 1 ,mem_ptt 
+5ffa e0a08000 istore 1 ,contw 
+5ffb 78547c00 disable user 
+5ffc 204061cf call send_lmp_request 
+5ffd 24740000 nrtn user 
+5ffe 24748000 nrtn master 
+5fff 6800c179 fetch 1 ,mem_afh_cfg 
+6000 c4000000 rtnbit0 afh_cfg_on 
+6001 2040600f call afh_init 
+6002 20206019 branch afh_open_all_channels 
+
+ssp_enable:
+6003 6800c13e fetch 1 ,mem_features + 6 
+6004 79207e03 set1 param_featrue_ssp ,pdata 
+6005 6000c13e store 1 ,mem_features + 6 
+6006 58000101 setarg param_lmpext_ssp_enable 
+6007 6001044a store 2 ,mem_lmpext_ssp_enable 
+6008 20600000 rtn 
+
+ssp_disable:
+6009 6800c13e fetch 1 ,mem_features + 6 
+600a 793ffe03 set0 param_featrue_ssp ,pdata 
+600b 6000c13e store 1 ,mem_features + 6 
+600c 58000000 setarg 0 
+600d 6001044a store 2 ,mem_lmpext_ssp_enable 
+600e 20600000 rtn 
+
+afh_init:
+600f 70417903 jam 0x3 ,mem_afh_cfg 
+6010 58000000 setarg 0 
+6011 600241e3 store 4 ,mem_afh_timer 
+6012 d8a0417b arg mem_afh_map_lo ,contw 
+6013 20406023 call afh_reset_map 
+6014 d8a04188 arg mem_afh_map_new ,contw 
+6015 20406023 call afh_reset_map 
+6016 d8a041e7 arg mem_afh_classify_channel_map ,contw 
+6017 20406023 call afh_reset_map 
+6018 2020602a branch afh_clear_error_counter 
+
+afh_open_all_channels:
+6019 d8a04188 arg mem_afh_map_new ,contw 
+601a 20406023 call afh_reset_map 
+601b 2040602a call afh_clear_error_counter 
+601c 2020602d branch afh_set_send_flag 
+
+afh_open_classify_map:
+601d 6802c1e7 fetch 5 ,mem_afh_classify_channel_map 
+601e 6002c188 store 5 ,mem_afh_map_new 
+601f e8c28000 ifetch 5 ,contr 
+6020 e0a28000 istore 5 ,contw 
+6021 2040602a call afh_clear_error_counter 
+6022 2020602d branch afh_set_send_flag 
+
+afh_reset_map:
+6023 58ffffff setarg 0xffffff 
+6024 e0a18000 istore 3 ,contw 
+6025 e0a18000 istore 3 ,contw 
+6026 e0a18000 istore 3 ,contw 
+6027 5800007f setarg 0x7f 
+6028 e0a08000 istore 1 ,contw 
+6029 20600000 rtn 
+
+afh_clear_error_counter:
+602a 58000000 setarg 0 
+602b 60014177 store 2 ,mem_afh_error_total 
+602c 20600000 rtn 
+
+afh_set_send_flag:
+602d 6800c179 fetch 1 ,mem_afh_cfg 
+602e 79207e02 set1 send_lmp_set_afh ,pdata 
+602f 6000c179 store 1 ,mem_afh_cfg 
+6030 20600000 rtn 
+
+send_set_afh:
+6031 24748000 nrtn master 
+6032 18007e10 force 16 ,pdata 
+6033 204061b5 call msg_send_lmp 
+6034 1c427e00 deposit clkn_bt 
+6035 d84001dc arg 476 ,temp 
+6036 9840fe00 iadd temp ,pdata 
+6037 1fe37e00 rshift pdata ,pdata 
+6038 1fe0fe01 increase 1 ,pdata 
+6039 793ffe00 set0 0 ,pdata 
+603a e0a20000 istore 4 ,contw 
+603b 1fe20400 copy pdata ,temp 
+603c 58000001 setarg 1 
+603d e0a08000 istore 1 ,contw 
+603e 6802c188 fetch 5 ,mem_afh_map_new 
+603f e0a28000 istore 5 ,contw 
+6040 e8c28000 ifetch 5 ,contr 
+6041 e0a28000 istore 5 ,contw 
+6042 18438400 lshift temp ,temp 
+6043 600a4173 storet 4 ,mem_afh_instant 
+6044 204061cf call send_lmp_request 
+6045 68008031 fetch 1 ,mem_mode 
+6046 79207e03 set1 afh_change ,pdata 
+6047 60008031 store 1 ,mem_mode 
+6048 70417a01 jam 1 ,mem_afh_new_mod 
+6049 68024173 fetch 4 ,mem_afh_instant 
+604a d842ee00 arg timer_one_minute ,temp 
+604b 9840fe00 iadd temp ,pdata 
+604c 600241e3 store 4 ,mem_afh_timer 
+604d 6800c179 fetch 1 ,mem_afh_cfg 
+604e c3820000 rtnbit1 afh_cfg_master_sent_req 
+604f 70007c90 jam lmp_ext_chn_classification_req ,mem_lmo_opcode2 
+6050 20600000 rtn 
+
+send_lmpext_pause_encryption_req:
+6051 18000e02 force 2 ,queue 
+6052 204061bd call send_lmpext 
+6053 2434e1cd nbranch send_lmp_reply ,master 
+6054 202061cf branch send_lmp_request 
+
+send_lmp_detach:
+6055 18007e02 force 2 ,pdata 
+6056 204061b5 call msg_send_lmp 
+6057 68008446 fetch 1 ,mem_disconn_reason_send 
+6058 e0a08000 istore 1 ,contw 
+6059 204061cf call send_lmp_request 
+
+prepare_disconnect:
+605a 6800804b fetch 1 ,mem_op 
+605b 79207e03 set1 op_disconn ,pdata 
+605c 6000804b store 1 ,mem_op 
+605d 70007232 jam 50 ,mem_conn_timer 
+605e 20600000 rtn 
+
+send_lmp_no_payload:
+605f 18007e01 force 1 ,pdata 
+6060 204061b5 call msg_send_lmp 
+6061 202061cf branch send_lmp_request 
+
+send_lmp_nopayload_reply:
+6062 18007e01 force 1 ,pdata 
+6063 204061b5 call msg_send_lmp 
+6064 202061cd branch send_lmp_reply 
+
+send_lmp_encryption_mode_req:
+6065 18007e02 force 2 ,pdata 
+6066 204061b5 call msg_send_lmp 
+6067 6800804c fetch 1 ,mem_state_map 
+6068 2fec0002 isolate0 smap_encryption ,pdata 
+6069 7920fe00 setflag true ,0 ,pdata 
+606a 1fe17e01 and_into 1 ,pdata 
+606b e0a08000 istore 1 ,contw 
+606c 202061cf branch send_lmp_request 
+
+send_lmp_superto:
+606d 18007e03 force 3 ,pdata 
+606e 204061b5 call msg_send_lmp 
+606f 68010051 fetch 2 ,mem_supervision_to 
+6070 e0a10000 istore 2 ,contw 
+6071 202061cf branch send_lmp_request 
+
+send_lmp_name_req:
+6072 700072fa jam 250 ,mem_conn_timer 
+6073 18007e02 force 2 ,pdata 
+6074 204061b5 call msg_send_lmp 
+6075 68008053 fetch 1 ,mem_name_offset 
+6076 e0a08000 istore 1 ,contw 
+6077 202061cf branch send_lmp_request 
+
+send_lmp_test_control:
+6078 18007e0a force 10 ,pdata 
+6079 204061b5 call msg_send_lmp 
+607a d8c00154 arg mem_temp_payload ,contr 
+607b 18007209 force 9 ,loopcnt 
+
+send_lmp_test_control_loop:
+607c e8c08000 ifetch 1 ,contr 
+607d 1fe2fe55 xor_into 0x55 ,pdata 
+607e e0a08000 istore 1 ,contw 
+607f c200607c loop send_lmp_test_control_loop 
+6080 202061cf branch send_lmp_request 
+
+send_lmp_quality_of_service_req:
+6081 202061cf branch send_lmp_request 
+
+send_lmp_unit_key:
+6082 202061cf branch send_lmp_request 
+
+send_lmp_slot_offset:
+6083 20748000 rtn master 
+6084 20403997 call calc_slot_offset 
+6085 18007e09 force 9 ,pdata 
+6086 204061b5 call msg_send_lmp 
+6087 6801017b fetch 2 ,mem_slot_offset 
+6088 e0a10000 istore 2 ,contw 
+6089 6801c140 fetch 3 ,mem_lap 
+608a e0a18000 istore 3 ,contw 
+608b 6800c143 fetch 1 ,mem_uap 
+608c e0a08000 istore 1 ,contw 
+608d 68014144 fetch 2 ,mem_nap 
+608e e0a10000 istore 2 ,contw 
+608f c581e094 bmark0 mark_switch_initiated ,send_lmp_slot_offset_reply 
+6090 793f8003 set0 mark_switch_initiated ,mark 
+6091 204061cf call send_lmp_request 
+6092 70007c13 jam lmp_switch_req ,mem_lmo_opcode2 
+6093 20600000 rtn 
+
+send_lmp_slot_offset_reply:
+6094 204061cd call send_lmp_reply 
+6095 70007c03 jam lmp_accepted ,mem_lmo_opcode2 
+6096 70007d13 jam lmp_switch_req ,mem_lmi_opcode2 
+6097 20600000 rtn 
+
+send_lmp_switch_req:
+6098 d8400200 arg 0x200 ,temp 
+6099 2034e09c branch switch_on_native ,master 
+609a 1d027e00 deposit clke_bt 
+609b 2020609d branch switch_slack 
+
+switch_on_native:
+609c 1c427e00 deposit clkn_bt 
+
+switch_slack:
+609d 1c227e00 deposit bt_clk 
+609e 9840fe00 iadd temp ,pdata 
+609f 1fe17ffc and_into 0x1fc ,pdata 
+60a0 60020034 store 4 ,mem_sniff_anchor 
+60a1 18007e05 force 5 ,pdata 
+60a2 204061b5 call msg_send_lmp 
+60a3 68020034 fetch 4 ,mem_sniff_anchor 
+60a4 1fe37e00 rshift pdata ,pdata 
+60a5 e0a20000 istore 4 ,contw 
+60a6 202061cf branch send_lmp_request 
+
+send_lmp_sniff_req:
+60a7 18007e0a force 10 ,pdata 
+60a8 204061b5 call msg_send_lmp 
+60a9 d8c00455 arg mem_sniff_payload ,contr 
+60aa e8c48000 ifetch 9 ,contr 
+60ab e0a48000 istore 9 ,contw 
+60ac 202061cf branch send_lmp_request 
+
+send_lmp_timing_accuracy_req:
+60ad 18007e03 force 3 ,pdata 
+60ae 204061b5 call msg_send_lmp 
+60af 58000114 setarg 0x0114 
+60b0 e0a10000 istore 2 ,contw 
+60b1 202061cf branch send_lmp_request 
+
+send_lmp_unsniff_req:
+60b2 18007e01 force 1 ,pdata 
+60b3 204061b5 call msg_send_lmp 
+60b4 202061cf branch send_lmp_request 
+
+send_lmp_sco_link_req:
+60b5 2034e0ba branch send_lmp_sco_link_master ,master 
+60b6 7000ad00 jam 0x00 ,mem_sco_handle 
+60b7 68008031 fetch 1 ,mem_mode 
+60b8 79207e04 set1 send_sco_when_slave ,pdata 
+60b9 60008031 store 1 ,mem_mode 
+
+send_lmp_sco_link_master:
+60ba 7000af00 jam 0 ,mem_esco_desco 
+60bb 18007e07 force 7 ,pdata 
+60bc 204061b5 call msg_send_lmp 
+60bd 680080ad fetch 1 ,mem_sco_handle 
+60be e0a08000 istore 1 ,contw 
+60bf 58000000 setarg 0x00 
+60c0 e0a08000 istore 1 ,contw 
+60c1 680080af fetch 1 ,mem_esco_desco 
+60c2 e0a08000 istore 1 ,contw 
+60c3 58000006 setarg 0x06 
+60c4 e0a08000 istore 1 ,contw 
+60c5 58000002 setarg 0x02 
+60c6 e0a08000 istore 1 ,contw 
+60c7 680080ab fetch 1 ,mem_air_mode 
+60c8 e0a08000 istore 1 ,contw 
+60c9 2034e1cd branch send_lmp_reply ,master 
+60ca 202061ca branch send_lmp_tid 
+
+send_lmp_remove_sco_link_req:
+60cb 18007e03 force 3 ,pdata 
+60cc 204061b5 call msg_send_lmp 
+60cd 680080ad fetch 1 ,mem_sco_handle 
+60ce e0a08000 istore 1 ,contw 
+60cf 18007e13 force other_end_terminated ,pdata 
+60d0 e0a08000 istore 1 ,contw 
+60d1 202061cf branch send_lmp_request 
+
+send_lmp_max_slot:
+60d2 18007e02 force 2 ,pdata 
+60d3 204061b5 call msg_send_lmp 
+60d4 6800c171 fetch 1 ,mem_max_slot 
+60d5 e0a08000 istore 1 ,contw 
+60d6 202061cf branch send_lmp_request 
+
+send_lmp_max_slot_req:
+60d7 18007e02 force 2 ,pdata 
+60d8 204061b5 call msg_send_lmp 
+60d9 58000005 setarg 0x05 
+60da e0a08000 istore 1 ,contw 
+60db 202061cf branch send_lmp_request 
+
+send_lmp_setup_complete:
+60dc 68008030 fetch 1 ,mem_state 
+60dd 79207e04 set1 state_conn_comp ,pdata 
+60de 60008030 store 1 ,mem_state 
+60df 1c427e00 copy clkn_bt ,pdata 
+60e0 60020465 store 4 ,mem_aurand_send_delay_time 
+60e1 6800844d fetch 1 ,mem_lmp_conn_state 
+60e2 c281e0eb bbit1 sent_setup_complete ,send_lmp_setup_complete_has_sent 
+60e3 79207e03 set1 sent_setup_complete ,pdata 
+60e4 6000844d store 1 ,mem_lmp_conn_state 
+60e5 700b7d05 jam bt_evt_setup_complete ,mem_fifo_temp 
+60e6 20407c27 call ui_ipc_send_event 
+60e7 20404825 call hci_send_connection_complete 
+60e8 18007e01 force 1 ,pdata 
+60e9 204061b5 call msg_send_lmp 
+60ea 202061cf branch send_lmp_request 
+
+send_lmp_setup_complete_has_sent:
+60eb 70004800 jam 0 ,mem_lmp_to_send 
+60ec 20600000 rtn 
+
+send_lmp_version_req:
+60ed 18007e06 force 6 ,pdata 
+60ee 204061b5 call msg_send_lmp 
+60ef 6802c6fd fetch 5 ,mem_lmp_version 
+60f0 e0a28000 istore 5 ,contw 
+60f1 202061cf branch send_lmp_request 
+
+send_lmp_features_req:
+60f2 18007e09 force 9 ,pdata 
+60f3 204061b5 call msg_send_lmp 
+60f4 68044138 fetch 8 ,mem_features 
+60f5 e0a40000 istore 8 ,contw 
+60f6 202061cf branch send_lmp_request 
+
+sp_master_send_io_cap_get:
+60f7 2040481b call hci_send_io_cap_req_event 
+60f8 6800c132 fetch 1 ,mem_device_option 
+60f9 c000e0fd beq dvc_op_hci ,sp_master_send_io_cap_get_hci 
+60fa 7007dd01 jam sp_flag_commit ,mem_master_sp_flag 
+60fb 6800c793 fetch 1 ,mem_sp_local_key_invalid 
+60fc c1808000 rtnne sp_key_valid 
+
+sp_master_send_io_cap_get_hci:
+60fd 7007db13 jam sp_master_stat_start_done ,mem_master_sp_state 
+60fe 20600000 rtn 
+
+sp_master_send_io_cap_send:
+60ff 20406209 call tid_initiate 
+6100 70007c99 jam lmp_io_cap_req ,mem_lmo_opcode2 
+6101 7007db03 jam sp_stat_key_send ,mem_master_sp_state 
+6102 20600000 rtn 
+
+sp_master_send_lmp_encapsulated_header:
+6103 20406209 call tid_initiate 
+6104 70007c3d jam lmp_encapsulated_header ,mem_lmo_opcode2 
+6105 7007db07 jam sp_stat_random_send ,mem_master_sp_state 
+6106 20600000 rtn 
+
+sp_master_commitment_compare:
+6107 da200868 arg mem_sp_calc_result_high ,rega 
+6108 da400888 arg mem_sp_confirm_remote ,regb 
+6109 df200010 arg 16 ,loopcnt 
+610a 20407f25 call string_compare 
+610b 2022e111 branch sp_master_commitment_compare_success ,zero 
+610c 7007db00 jam sp_stat_null ,mem_master_sp_state 
+610d 20407811 call master_clear_mem_master_sp_flag 
+610e 70007e24 jam pdu_not_allowed ,mem_lmo_reason2 
+610f 70007d40 jam lmp_simple_pairing_number ,mem_lmi_opcode2 
+6110 20205bc9 branch reject_lmp_packet 
+
+sp_master_commitment_compare_success:
+6111 7007db0a jam sp_stat_confirm_calc ,mem_master_sp_state 
+6112 2040780f call master_set_mem_master_sp_flag 
+6113 70007d40 jam lmp_simple_pairing_number ,mem_lmi_opcode2 
+6114 20205cf5 branch accept_lmp_msg 
+
+sp_master_send_lmp_simple_pairing_number:
+6115 70007c40 jam lmp_simple_pairing_number ,mem_lmo_opcode2 
+6116 20600000 rtn 
+
+sp_send_lmp_encapsulated_header:
+6117 70007c3d jam lmp_encapsulated_header ,mem_lmo_opcode2 
+6118 20600000 rtn 
+
+send_lmp_encapsulated_header:
+6119 7007e200 jam 0 ,mem_sp_local_key_send_count 
+611a 18007e04 force 4 ,pdata 
+611b 204061b5 call msg_send_lmp 
+611c 18007e01 force encapsulated_major_type_p192 ,pdata 
+611d e0a08000 istore 1 ,contw 
+611e 18007e01 force encapsulated_minor_type_p192 ,pdata 
+611f e0a08000 istore 1 ,contw 
+6120 18007e30 force encapsulated_len_p192 ,pdata 
+6121 e0a08000 istore 1 ,contw 
+6122 20406216 call check_localsm 
+6123 2020e1cf branch send_lmp_request ,true 
+6124 202061cd branch send_lmp_reply 
+
+send_lmp_encapsulated_payload:
+6125 18007e11 force 17 ,pdata 
+6126 204061b5 call msg_send_lmp 
+6127 680087e2 fetch 1 ,mem_sp_local_key_send_count 
+6128 d8c047ac arg mem_sp_pubkey_local ,contr 
+6129 98c08c00 iadd contr ,contr 
+612a e8c40000 ifetch 8 ,contr 
+612b e0a40000 istore 8 ,contw 
+612c e8c40000 ifetch 8 ,contr 
+612d e0a40000 istore 8 ,contw 
+612e 680087e2 fetch 1 ,mem_sp_local_key_send_count 
+612f 1fe0fe10 increase 16 ,pdata 
+6130 600087e2 store 1 ,mem_sp_local_key_send_count 
+6131 20406216 call check_localsm 
+6132 2020e1cf branch send_lmp_request ,true 
+6133 202061cd branch send_lmp_reply 
+
+sp_send_lmp_simple_pairing_comfirm:
+6134 7007da06 jam sp_stat_random_recv ,mem_sp_state 
+6135 70007c3f jam lmp_simple_pairing_confirm ,mem_lmo_opcode2 
+6136 20600000 rtn 
+
+send_lmp_simple_pairing_comfirm:
+6137 18007e11 force 17 ,pdata 
+6138 204061b5 call msg_send_lmp 
+6139 d8c00868 arg mem_sp_calc_result_high ,contr 
+613a e8c40000 ifetch 8 ,contr 
+613b e0a40000 istore 8 ,contw 
+613c e8c40000 ifetch 8 ,contr 
+613d e0a40000 istore 8 ,contw 
+613e 202061cd branch send_lmp_reply 
+
+sp_send_lmp_simple_pairing_number:
+613f 204061d9 call lmo_fifo_process 
+6140 70007c40 jam lmp_simple_pairing_number ,mem_lmo_opcode2 
+6141 20600000 rtn 
+
+send_lmp_simple_pairing_number:
+6142 20406216 call check_localsm 
+6143 2040f74d call sp_local_random_key_generator ,true 
+6144 18007e11 force 17 ,pdata 
+6145 204061b5 call msg_send_lmp 
+6146 d8c00838 arg mem_sp_random_local ,contr 
+6147 e8c40000 ifetch 8 ,contr 
+6148 e0a40000 istore 8 ,contw 
+6149 e8c40000 ifetch 8 ,contr 
+614a e0a40000 istore 8 ,contw 
+614b 20406216 call check_localsm 
+614c 2420e1cd nbranch send_lmp_reply ,true 
+614d 2020e1cf branch send_lmp_request ,true 
+
+master_sp_sm_end:
+614e 7007db0f jam sp_stat_done ,mem_master_sp_state 
+
+sp_aurand_send:
+614f 20406209 call tid_initiate 
+6150 70007c0b jam lmp_au_rand ,mem_lmo_opcode2 
+6151 20406221 call check_localsm_master 
+6152 2020f785 branch sp_master_key_prarm_push ,true 
+6153 2020778f branch sp_link_key_prarm_push 
+
+master_sp_send_lmp_dhkey_check:
+6154 20406205 call tid_reply 
+
+sp_send_lmp_dhkey_check:
+6155 70007c41 jam lmp_dhkey_check ,mem_lmo_opcode2 
+6156 20600000 rtn 
+
+send_lmp_dhkey_check:
+6157 18007e11 force 17 ,pdata 
+6158 204061b5 call msg_send_lmp 
+6159 d8c00868 arg mem_sp_calc_result_high ,contr 
+615a e8c40000 ifetch 8 ,contr 
+615b e0a40000 istore 8 ,contw 
+615c e8c40000 ifetch 8 ,contr 
+615d e0a40000 istore 8 ,contw 
+615e 20406216 call check_localsm 
+615f 2420e1cd nbranch send_lmp_reply ,true 
+6160 2020e1cf branch send_lmp_request ,true 
+
+send_lmp_enc_key_size_mask_res:
+6161 18007e03 force 3 ,pdata 
+6162 204061b5 call msg_send_lmp 
+6163 5800fffe setarg 0xfffe 
+6164 e0a10000 istore 2 ,contw 
+6165 202061cd branch send_lmp_reply 
+
+send_lmp_auto_rate:
+6166 202061cf branch send_lmp_request 
+
+send_lmp_clkoffset_req:
+6167 202061cf branch send_lmp_request 
+
+send_lmp_quality_of_service:
+6168 202061cf branch send_lmp_request 
+
+send_lmp_test_activate:
+6169 202061cf branch send_lmp_request 
+
+send_lmp_comb_key:
+616a 20406225 call generate_random_number 
+616b da204140 arg mem_lap ,rega 
+616c 2040622b call generate_linkkey 
+616d 18007e11 force 17 ,pdata 
+616e 204061b5 call msg_send_lmp 
+616f da20050f arg mem_kinit ,rega 
+6170 da4004ef arg mem_random_number ,regb 
+6171 20407467 call xor16 
+6172 2434e1c4 nbranch send_lmp_follow ,master 
+6173 202061ca branch send_lmp_tid 
+
+send_lmp_inrand:
+6174 20406225 call generate_random_number 
+6175 da200040 arg mem_plap ,rega 
+6176 2040736a call generate_kinit 
+
+send_lmp_rand:
+6177 18007e11 force 17 ,pdata 
+6178 204061b5 call msg_send_lmp 
+6179 d8c004ef arg mem_random_number ,contr 
+617a 20407e35 call memcpy16 
+617b 68008055 fetch 1 ,mem_conn_sm 
+617c c00ce1cf beq conn_sm_auth_wait ,send_lmp_request 
+617d c00c61cf beq conn_sm_pairing_wait ,send_lmp_request 
+617e 202061ca branch send_lmp_tid 
+
+send_lmp_aurand:
+617f 680087e1 fetch 1 ,mem_pairing_auth 
+6180 203a6185 branch send_lmp_aurand_notpairing ,blank 
+6181 20406216 call check_localsm 
+6182 2040e209 call tid_initiate ,true 
+6183 2440e205 ncall tid_reply ,true 
+6184 20206186 branch send_lmp_aurand_common 
+
+send_lmp_aurand_notpairing:
+6185 20406209 call tid_initiate 
+
+send_lmp_aurand_common:
+6186 20406225 call generate_random_number 
+6187 20206177 branch send_lmp_rand 
+
+send_lmp_sres:
+6188 da204140 arg mem_lap ,rega 
+6189 2040739d call function_e1 
+618a 18007e05 force 5 ,pdata 
+618b 204061b5 call msg_send_lmp 
+618c 6802051f fetch 4 ,mem_input_store 
+618d e0a20000 istore 4 ,contw 
+618e d8400451 arg mem_sres_tid ,temp 
+618f 204061fb call special_tid_store 
+6190 2040749b call copy_aco 
+6191 20406216 call check_localsm 
+6192 2020e197 branch send_lmp_sres_master ,true 
+6193 70045401 jam done_encryp ,mem_wait_encryption 
+6194 680087e1 fetch 1 ,mem_pairing_auth 
+6195 207a0000 rtn blank 
+6196 70007c0b jam lmp_au_rand ,mem_lmo_opcode2 
+
+send_lmp_sres_master:
+6197 6800c25e fetch 1 ,mem_link_key_exists 
+6198 207a0000 rtn blank 
+6199 20406216 call check_localsm 
+619a 2040c852 call hci_send_linkkey_notification ,true 
+
+send_lmp_sres_startenc:
+619b 20406216 call check_localsm 
+619c 2420e1a1 nbranch send_lmp_sres_startenc_slave ,true 
+619d 68008453 fetch 1 ,mem_auth_enable 
+619e 207a0000 rtn blank 
+619f 70007c0f jam lmp_encryption_mode_req ,mem_lmo_opcode2 
+61a0 20600000 rtn 
+
+send_lmp_sres_startenc_slave:
+61a1 c6908000 rtnmark0 mark_slave_in_rand_accepted 
+61a2 793f8021 set0 mark_slave_in_rand_accepted ,mark 
+61a3 70007c0f jam lmp_encryption_mode_req ,mem_lmo_opcode2 
+61a4 20600000 rtn 
+
+send_lmp_start_encryption:
+61a5 20406225 call generate_random_number 
+61a6 204073a0 call function_e3 
+61a7 18007e11 force 17 ,pdata 
+61a8 204061b5 call msg_send_lmp 
+61a9 d8c004ef arg mem_random_number ,contr 
+61aa 20407e35 call memcpy16 
+61ab 202061ca branch send_lmp_tid 
+
+send_lmp_stop_encryption_req:
+61ac 18007e01 force 1 ,pdata 
+61ad 204061b5 call msg_send_lmp 
+61ae 202061ca branch send_lmp_tid 
+
+send_lmp_encryption_key_size_req:
+61af 18007e02 force 2 ,pdata 
+61b0 204061b5 call msg_send_lmp 
+61b1 18007e10 force 16 ,pdata 
+61b2 e0a08000 istore 1 ,contw 
+61b3 60008054 store 1 ,mem_key_size 
+61b4 202061ca branch send_lmp_tid 
+
+msg_send_lmp:
+61b5 1fe9fe00 lshift3 pdata ,pdata 
+61b6 1fe1fe07 or_into 0x07 ,pdata 
+61b7 60008432 store 1 ,mem_lmo_header_length 
+61b8 df200011 arg 17 ,loopcnt 
+61b9 d8a00434 arg mem_lmo_payload ,contw 
+61ba 20407e3f call clear_mem 
+61bb d8a00434 arg mem_lmo_payload ,contw 
+61bc 20600000 rtn 
+
+send_lmpext:
+61bd 1fe1227f and pdata ,0x7f ,rega 
+61be 7000487f jam lmp_escape ,mem_lmp_to_send 
+61bf 18e27e00 deposit queue 
+61c0 204061b5 call msg_send_lmp 
+61c1 1a227e00 deposit rega 
+61c2 e0a08000 istore 1 ,contw 
+61c3 20600000 rtn 
+
+send_lmp_follow:
+61c4 68008048 fetch 1 ,mem_lmp_to_send 
+61c5 1fe3fe00 lshift pdata ,pdata 
+61c6 6808804c fetcht 1 ,mem_state_map 
+61c7 284ffe01 isolate1 smap_lmptid ,temp 
+61c8 7920fe00 setflag true ,0 ,pdata 
+61c9 202061d4 branch send_lmp_exit 
+
+send_lmp_tid:
+61ca 6808804c fetcht 1 ,mem_state_map 
+61cb 18410401 and_into 1 ,temp 
+61cc 202061d0 branch send_lmp_end 
+
+send_lmp_reply:
+61cd 18000400 force 0 ,temp 
+61ce 202061d0 branch send_lmp_end 
+
+send_lmp_request:
+61cf 18000401 force 1 ,temp 
+
+send_lmp_end:
+61d0 68008048 fetch 1 ,mem_lmp_to_send 
+61d1 1fe3fe00 lshift pdata ,pdata 
+61d2 7934fe00 setflag master ,0 ,pdata 
+61d3 9842fe00 ixor temp ,pdata 
+
+send_lmp_exit:
+61d4 60008433 store 1 ,mem_lmo_header_opcode 
+61d5 70004800 jam 0 ,mem_lmp_to_send 
+61d6 204061e0 call lmo_fifo_process_lmo0empty 
+61d7 78347c00 enable user 
+61d8 20600000 rtn 
+
+lmo_fifo_process:
+61d9 79200025 set1 mark_ext_patch ,mark 
+61da 44f2403c bpatch patch3c_4 ,mem_patch3c 
+61db 68008048 fetch 1 ,mem_lmp_to_send 
+61dc 203a61e0 branch lmo_fifo_process_lmo0empty ,blank 
+61dd 68008078 fetch 1 ,mem_lmo_opcode1 
+61de 247a0000 nrtn blank 
+61df 202061ea branch lmo_fifo_process_lmo2to1 
+
+lmo_fifo_process_lmo0empty:
+61e0 68008078 fetch 1 ,mem_lmo_opcode1 
+61e1 203a61f0 branch lmo_fifo_process_lmo1_empty ,blank 
+61e2 68018078 fetch 3 ,mem_lmo_opcode1 
+61e3 60018048 store 3 ,mem_lmp_to_send 
+61e4 6808807b fetcht 1 ,mem_lmo_tid1 
+61e5 6800804c fetch 1 ,mem_state_map 
+61e6 793ffe01 set0 smap_lmptid ,pdata 
+61e7 9841fe00 ior temp ,pdata 
+61e8 6000804c store 1 ,mem_state_map 
+61e9 70007800 jam 0 ,mem_lmo_opcode1 
+
+lmo_fifo_process_lmo2to1:
+61ea 6800807c fetch 1 ,mem_lmo_opcode2 
+61eb 207a0000 rtn blank 
+61ec 6802007c fetch 4 ,mem_lmo_opcode2 
+61ed 60020078 store 4 ,mem_lmo_opcode1 
+61ee 70007c00 jam 0 ,mem_lmo_opcode2 
+61ef 20600000 rtn 
+
+lmo_fifo_process_lmo1_empty:
+61f0 6800807c fetch 1 ,mem_lmo_opcode2 
+61f1 207a0000 rtn blank 
+61f2 6801807c fetch 3 ,mem_lmo_opcode2 
+61f3 60018048 store 3 ,mem_lmp_to_send 
+61f4 6808807f fetcht 1 ,mem_lmo_tid2 
+61f5 6800804c fetch 1 ,mem_state_map 
+61f6 793ffe01 set0 smap_lmptid ,pdata 
+61f7 9841fe00 ior temp ,pdata 
+61f8 6000804c store 1 ,mem_state_map 
+61f9 70007c00 jam 0 ,mem_lmo_opcode2 
+61fa 20600000 rtn 
+
+special_tid_store:
+61fb 79200025 set1 mark_ext_patch ,mark 
+61fc 44f2c03c bpatch patch3c_5 ,mem_patch3c 
+61fd 6800804c fetch 1 ,mem_state_map 
+61fe 1fe22600 copy pdata ,regc 
+61ff e8408000 ifetch 1 ,temp 
+6200 20405d12 call pop_tid_follow 
+6201 204061c4 call send_lmp_follow 
+6202 1a627e00 copy regc ,pdata 
+6203 6000804c store 1 ,mem_state_map 
+6204 20600000 rtn 
+
+tid_reply:
+6205 6808804c fetcht 1 ,mem_state_map 
+6206 793f8400 set0 smap_lmptidinit ,temp 
+6207 6008804c storet 1 ,mem_state_map 
+6208 20600000 rtn 
+
+tid_initiate:
+6209 6808804c fetcht 1 ,mem_state_map 
+620a 79200400 set1 smap_lmptidinit ,temp 
+620b 6008804c storet 1 ,mem_state_map 
+620c 20600000 rtn 
+
+tid_check:
+620d 7d34fe01 nsetflag master ,smap_lmptid ,pdata 
+620e 6808804c fetcht 1 ,mem_state_map 
+620f 9842fe00 ixor temp ,pdata 
+6210 2feffe01 isolate1 smap_lmptid ,pdata 
+6211 20600000 rtn 
+
+tid_set_reply:
+6212 6800804c fetch 1 ,mem_state_map 
+6213 7934fe01 setflag master ,smap_lmptid ,pdata 
+6214 6000804c store 1 ,mem_state_map 
+6215 20600000 rtn 
+
+check_localsm:
+6216 680087e0 fetch 1 ,mem_sp_localsm 
+6217 2fe0fe01 compare local_statemachine ,pdata ,0x7f 
+6218 20600000 rtn 
+
+setlocalsm_master:
+6219 680087e0 fetch 1 ,mem_sp_localsm 
+621a 79207e07 set1 7 ,pdata 
+621b 600087e0 store 1 ,mem_sp_localsm 
+621c 20600000 rtn 
+
+setlocalsm_slave:
+621d 680087e0 fetch 1 ,mem_sp_localsm 
+621e 793ffe07 set0 7 ,pdata 
+621f 600087e0 store 1 ,mem_sp_localsm 
+6220 20600000 rtn 
+
+check_localsm_master:
+6221 680087e0 fetch 1 ,mem_sp_localsm 
+6222 2feffe07 isolate1 7 ,pdata 
+6223 600087e0 store 1 ,mem_sp_localsm 
+6224 20600000 rtn 
+
+generate_random_number:
+6225 d8a004ef arg mem_random_number ,contw 
+
+generate_random:
+6226 18007210 force 16 ,loopcnt 
+
+generate_random_another:
+
+generate_random_loop:
+6227 180a7e00 random pdata 
+6228 e0a08000 istore 1 ,contw 
+6229 c2006227 loop generate_random_another 
+622a 20600000 rtn 
+
+generate_linkkey:
+622b 2040736e call function_e21 
+622c da204262 arg mem_link_key ,rega 
+622d da40051f arg mem_input_store ,regb 
+622e ea240000 ifetch 8 ,rega 
+622f 68088030 fetcht 1 ,mem_state 
+6230 7d3a0406 nsetflag blank ,state_combkey ,temp 
+6231 60088030 storet 1 ,mem_state 
+6232 1a220a00 copy rega ,contw 
+6233 20407467 call xor16 
+6234 20203229 branch generate_linkkey_continue 
+
+process_conn_sm:
+6235 79200025 set1 mark_ext_patch ,mark 
+6236 44f3403c bpatch patch3c_6 ,mem_patch3c 
+6237 6800807c fetch 1 ,mem_lmo_opcode2 
+6238 203a623c branch process_conn_sm_continue ,blank 
+6239 204061d9 call lmo_fifo_process 
+623a 6800807c fetch 1 ,mem_lmo_opcode2 
+623b 247a0000 nrtn blank 
+
+process_conn_sm_continue:
+623c 68008055 fetch 1 ,mem_conn_sm 
+623d 207a0000 rtn blank 
+623e c002628d beq conn_sm_send_conn_req ,host_create_conn_send_conn_req 
+623f c002e292 beq conn_sm_wait_conn_accept ,host_create_conn_wait_accept 
+6240 c0016284 beq conn_sm_send_features ,host_create_conn_send_features 
+6241 c001e29a beq conn_sm_wait_features_res ,host_create_conn_waiting 
+6242 c0076287 beq conn_sm_send_switch ,host_create_conn_send_switch 
+6243 c00362b6 beq conn_sm_auth_pair ,host_create_conn_auth_pair 
+6244 c003e2ce beq conn_sm_auth_pair_wait ,host_create_conn_auth_pair_wait 
+6245 c004e2cf beq conn_sm_encrypt ,host_create_conn_encrypt 
+6246 c00562d8 beq conn_sm_encrypt_wait ,host_create_conn_encrypt_wait 
+6247 c005e2dc beq conn_sm_encrypt_wait_clear ,host_create_conn_encrypt_wait_clear 
+6248 c00662a4 beq conn_sm_send_setup_complete ,host_create_conn_send_setup_complete 
+6249 c006e2a7 beq conn_sm_wait_setup_complete ,host_create_conn_wait_setup_complete 
+624a c007e2ad beq conn_sm_detach_delay ,host_create_conn_master_detach 
+624b c0096277 beq conn_sm_send_version ,host_create_conn_send_version 
+624c c009e29a beq conn_sm_wait_version ,host_create_conn_waiting 
+624d c008627a beq conn_sm_wait_switch_after_host_connection ,host_creat_conn_wait_switch 
+624e c00a6274 beq conn_sm_send_features_ext ,host_creat_conn_send_feat_ext 
+624f c00ae29a beq conn_sm_wait_features_ext ,host_create_conn_waiting 
+6250 c00b626e beq conn_sm_pairing ,host_create_conn_pairing 
+6251 c00c6273 beq conn_sm_pairing_wait ,host_create_conn_pairing_wait 
+6252 c00be267 beq conn_sm_auth ,host_create_conn_auth 
+6253 c00ce26d beq conn_sm_auth_wait ,host_create_conn_auth_wait 
+6254 c00d6258 beq conn_sm_done ,host_create_conn_done 
+6255 c00de262 beq conn_sm_wait_done ,host_create_conn_done_wait 
+6256 70005500 jam conn_sm_standby ,mem_conn_sm 
+6257 20600000 rtn 
+
+host_create_conn_done:
+6258 6800844d fetch 1 ,mem_lmp_conn_state 
+6259 c4010000 rtnbit0 received_setup_complete 
+625a c4018000 rtnbit0 sent_setup_complete 
+625b 70005500 jam conn_sm_standby ,mem_conn_sm 
+625c 2040625e call host_conn_judge_encrypt 
+625d 20206e41 branch scheduler_start_upper_sm 
+
+host_conn_judge_encrypt:
+625e 68008177 fetch 1 ,mem_connection_options 
+625f c4008000 rtnbit0 connection_encrypt 
+6260 7000550a jam conn_sm_encrypt_wait ,mem_conn_sm 
+6261 20600000 rtn 
+
+host_create_conn_done_wait:
+6262 d8e0000b arg enpt_delay_timer ,queue 
+6263 20407e53 call timer_check 
+6264 247a0000 nrtn blank 
+6265 7000551a jam conn_sm_done ,mem_conn_sm 
+6266 20600000 rtn 
+
+host_create_conn_auth:
+6267 68008177 fetch 1 ,mem_connection_options 
+6268 793ffe00 set0 connection_auth ,pdata 
+6269 60008177 store 1 ,mem_connection_options 
+626a 70005519 jam conn_sm_auth_wait ,mem_conn_sm 
+626b 70007c0b jam lmp_au_rand ,mem_lmo_opcode2 
+626c 20600000 rtn 
+
+host_create_conn_auth_wait:
+626d 20600000 rtn 
+
+host_create_conn_pairing:
+626e 68008450 fetch 1 ,mem_pincode_state 
+626f c1810000 rtnne pincode_state_pincode_ready 
+6270 204062de call host_auth 
+6271 70005518 jam conn_sm_pairing_wait ,mem_conn_sm 
+6272 20600000 rtn 
+
+host_create_conn_pairing_wait:
+6273 20600000 rtn 
+
+host_creat_conn_send_feat_ext:
+6274 70005515 jam conn_sm_wait_features_ext ,mem_conn_sm 
+6275 70007c83 jam lmp_ext_features_req ,mem_lmo_opcode2 
+6276 20600000 rtn 
+
+host_create_conn_send_version:
+6277 70005513 jam conn_sm_wait_version ,mem_conn_sm 
+6278 70007c25 jam lmp_version_req ,mem_lmo_opcode2 
+6279 20600000 rtn 
+
+host_creat_conn_wait_switch:
+627a 6800c748 fetch 1 ,mem_switch_flag 
+627b c1000000 rtneq switch_flag_init 
+627c c000e282 beq switch_flag_accept ,host_create_conn_switch_accept 
+627d d8e0000a arg switch_wait_timer ,queue 
+627e 20407e53 call timer_check 
+627f 247a0000 nrtn blank 
+6280 70474800 jam switch_flag_init ,mem_switch_flag 
+6281 2020629b branch host_create_conn_switch 
+
+host_create_conn_switch_accept:
+6282 20748000 rtn master 
+6283 202062b6 branch host_create_conn_auth_pair 
+
+host_create_conn_send_features:
+6284 70005503 jam conn_sm_wait_features_res ,mem_conn_sm 
+6285 70007c27 jam lmp_features_req ,mem_lmo_opcode2 
+6286 20600000 rtn 
+
+host_create_conn_send_switch:
+6287 70007c13 jam lmp_switch_req ,mem_lmo_opcode2 
+6288 79200003 set1 mark_switch_initiated ,mark 
+6289 70005505 jam conn_sm_wait_conn_accept ,mem_conn_sm 
+628a 580001ff setarg 0x1ff 
+628b 6001044e store 2 ,mem_soft_timer 
+628c 20600000 rtn 
+
+host_create_conn_send_conn_req:
+628d 70005505 jam conn_sm_wait_conn_accept ,mem_conn_sm 
+628e 70044eff jam 0xff ,mem_soft_timer 
+628f 793f8022 set0 mark_reconn_recieve_switch ,mark 
+6290 70007c33 jam lmp_host_connection_req ,mem_lmo_opcode2 
+6291 20205b6f branch init_lmp_reinit 
+
+host_create_conn_wait_accept:
+6292 c6110000 rtnmark1 mark_reconn_recieve_switch 
+6293 6801044e fetch 2 ,mem_soft_timer 
+6294 1fe67e01 sub pdata ,1 ,pdata 
+6295 2022e298 branch host_create_conn_resend ,zero 
+6296 6001044e store 2 ,mem_soft_timer 
+6297 20600000 rtn 
+
+host_create_conn_resend:
+6298 7000550e jam conn_sm_send_switch ,mem_conn_sm 
+6299 20600000 rtn 
+
+host_create_conn_waiting:
+629a 20600000 rtn 
+
+host_create_conn_switch:
+629b 6800844d fetch 1 ,mem_lmp_conn_state 
+629c c4018000 rtnbit0 sent_setup_complete 
+629d c4010000 rtnbit0 received_setup_complete 
+629e 68008177 fetch 1 ,mem_connection_options 
+629f 793ffe02 set0 connection_switch ,pdata 
+62a0 60008177 store 1 ,mem_connection_options 
+62a1 70007c13 jam lmp_switch_req ,mem_lmo_opcode2 
+62a2 70005510 jam conn_sm_wait_switch_after_host_connection ,mem_conn_sm 
+62a3 20600000 rtn 
+
+host_create_conn_send_setup_complete:
+62a4 7000550d jam conn_sm_wait_setup_complete ,mem_conn_sm 
+62a5 70007c31 jam lmp_setup_complete ,mem_lmo_opcode2 
+62a6 20600000 rtn 
+
+host_create_conn_wait_setup_complete:
+62a7 6800844d fetch 1 ,mem_lmp_conn_state 
+62a8 c4010000 rtnbit0 received_setup_complete 
+62a9 70005500 jam conn_sm_standby ,mem_conn_sm 
+62aa 20600000 rtn 
+
+host_create_conn_wait_setup_complete_rtn:
+62ab 70005506 jam conn_sm_auth_pair ,mem_conn_sm 
+62ac 20600000 rtn 
+
+host_create_conn_master_detach:
+62ad 6800844e fetch 1 ,mem_soft_timer 
+62ae 1fe0ffff increase -1 ,pdata 
+62af 203a62b2 branch host_create_conn_send_detach ,blank 
+62b0 6000844e store 1 ,mem_soft_timer 
+62b1 20600000 rtn 
+
+host_create_conn_send_detach:
+62b2 70007c07 jam lmp_detach ,mem_lmo_opcode2 
+62b3 70044616 jam local_host ,mem_disconn_reason_send 
+62b4 70005500 jam 0 ,mem_conn_sm 
+62b5 20600000 rtn 
+
+host_create_conn_auth_pair:
+62b6 68008177 fetch 1 ,mem_connection_options 
+62b7 c281629b bbit1 connection_switch ,host_create_conn_switch 
+62b8 c28062bb bbit1 connection_auth ,host_create_conn_auth_pair_true 
+
+host_create_conn_sm_done:
+62b9 7000551a jam conn_sm_done ,mem_conn_sm 
+62ba 20600000 rtn 
+
+host_create_conn_auth_pair_true:
+62bb 6800c25e fetch 1 ,mem_link_key_exists 
+62bc 203a62c7 branch host_create_conn_auth_pair_nokey ,blank 
+62bd 6800844d fetch 1 ,mem_lmp_conn_state 
+62be c4018000 rtnbit0 sent_setup_complete 
+62bf c4010000 rtnbit0 received_setup_complete 
+62c0 68020465 fetch 4 ,mem_aurand_send_delay_time 
+62c1 d8400064 arg 100 ,temp 
+62c2 98408400 iadd temp ,temp 
+62c3 1c427e00 copy clkn_bt ,pdata 
+62c4 98467c00 isub temp ,null 
+62c5 24610000 nrtn positive 
+62c6 20206267 branch host_create_conn_auth 
+
+host_create_conn_auth_pair_nokey:
+62c7 70005516 jam conn_sm_pairing ,mem_conn_sm 
+62c8 70054f04 jam 4 ,mem_pin_length 
+62c9 58003030 setarg 0x3030 
+62ca 60010550 store 2 ,mem_pin 
+62cb e0a10000 istore 2 ,contw 
+62cc 70045002 jam pincode_state_pincode_ready ,mem_pincode_state 
+62cd 2020626e branch host_create_conn_pairing 
+
+host_create_conn_auth_pair_wait:
+62ce 20600000 rtn 
+
+host_create_conn_encrypt:
+62cf 68008177 fetch 1 ,mem_connection_options 
+62d0 c280e2d3 bbit1 connection_encrypt ,host_create_conn_encrypt_start 
+62d1 7000551a jam conn_sm_done ,mem_conn_sm 
+62d2 20600000 rtn 
+
+host_create_conn_encrypt_start:
+62d3 68008177 fetch 1 ,mem_connection_options 
+62d4 793ffe01 set0 connection_encrypt ,pdata 
+62d5 60008177 store 1 ,mem_connection_options 
+62d6 70007c0f jam lmp_encryption_mode_req ,mem_lmo_opcode2 
+62d7 20600000 rtn 
+
+host_create_conn_encrypt_wait:
+62d8 68008454 fetch 1 ,mem_wait_encryption 
+62d9 207a0000 rtn blank 
+62da 70005500 jam conn_sm_standby ,mem_conn_sm 
+62db 202062d3 branch host_create_conn_encrypt_start 
+
+host_create_conn_encrypt_wait_clear:
+62dc 7000550c jam conn_sm_send_setup_complete ,mem_conn_sm 
+62dd 20600000 rtn 
+
+host_auth:
+62de 6800804b fetch 1 ,mem_op 
+62df c28162e3 bbit1 op_inrand_req ,remote_auth 
+62e0 20406209 call tid_initiate 
+62e1 70007c08 jam lmp_in_rand ,mem_lmo_opcode2 
+62e2 202049bc branch cmd_exit 
+
+remote_auth:
+62e3 6800804b fetch 1 ,mem_op 
+62e4 793ffe02 set0 op_inrand_req ,pdata 
+62e5 6000804b store 1 ,mem_op 
+62e6 20405ed0 call lmp_accept_inrand 
+62e7 20406212 call tid_set_reply 
+62e8 202049bc branch cmd_exit 
+
+pincode_reinit:
+62e9 58000004 setarg 4 
+62ea 6000854f store 1 ,mem_pin_length 
+62eb 58003030 setarg 0x3030 
+62ec e0a10000 istore 2 ,contw 
+62ed e0a10000 istore 2 ,contw 
+62ee 20600000 rtn 
+
+module_init:
+62ef 20758000 rtn wake 
+62f0 70481300 jam 0 ,mem_module_task 
+62f1 20406321 call module_gpio_init 
+62f2 20406438 call module_init_static_string 
+62f3 5800632e setarg module_process_idle 
+62f4 60014290 store 2 ,mem_cb_idle_process 
+62f5 5800632f setarg module_conn_process 
+62f6 6001428e store 2 ,mem_cb_bt_process 
+62f7 58006337 setarg module_process_bb_event 
+62f8 60014292 store 2 ,mem_cb_bb_event_process 
+62f9 580063b6 setarg module_le_rx 
+62fa 60014296 store 2 ,mem_cb_att_write 
+62fb 5800632f setarg module_conn_process 
+62fc 6001428c store 2 ,mem_cb_le_process 
+62fd 79200025 set1 mark_ext_patch ,mark 
+62fe 44c04030 bpatch patch30_0 ,mem_patch30 
+62ff 5800632a setarg module_lpm_lock 
+6300 60014286 store 2 ,mem_cb_check_wakelock 
+6301 580063be setarg module_le_tx_update_data 
+6302 60014298 store 2 ,mem_cb_update_notify_value 
+6303 58000000 setarg 0 
+6304 6002480a store 4 ,mem_last_uart_clock 
+6305 60014810 store 2 ,mem_module_prepare_tx_len 
+6306 2040630a call module_hardware_init 
+6307 20403fc5 call init_module_environment 
+6308 20403e2b call check_module_disabled 
+6309 2020691d branch eeprom_load_reconn_info 
+
+module_hardware_init:
+630a 20758000 rtn wake 
+630b 580001a0 setarg uart_baud_115200 
+630c 600142ac store uart_baud_len ,mem_baud 
+
+module_lpm_uart_init:
+630d 20406a0d call init_filter_ram 
+630e 58004a00 setarg mem_module_rx_buf 
+630f 60110054 hstore 2 ,core_uart_rsaddr 
+6310 58004fff setarg mem_module_rx_buf_end 
+6311 60110056 hstore 2 ,core_uart_readdr 
+6312 58001c00 setarg mem_module_tx_buf 
+6313 6011005a hstore 2 ,core_uart_tsaddr 
+6314 58001fff setarg mem_module_tx_buf_end 
+6315 6011005c hstore 2 ,core_uart_teaddr 
+6316 70808104 hjam 0x4 ,core_gpio_sel1 
+6317 70029fff jam 0xff ,mem_ucode_id_local 
+6318 70806200 hjam 0x0 ,core_uart_ctrl 
+6319 58001c00 setarg mem_module_tx_buf 
+631a 6011005e hstore 2 ,core_uart_twptr 
+631b 60110060 hstore 2 ,core_uart_trptrp 
+631c 58004a00 setarg mem_module_rx_buf 
+631d 60110058 hstore 2 ,core_uart_rrptr 
+631e 20204480 branch hci_init_common 
+
+module_lpm_init:
+631f 2040630d call module_lpm_uart_init 
+6320 20206321 branch module_gpio_init 
+
+module_gpio_init:
+6321 20407bd9 call ui_led_init 
+6322 20403f94 call app_led_start_blink 
+6323 6808c803 fetcht 1 ,mem_module_connect_state_gpio 
+6324 204069da call gpio_config_output 
+6325 2040639e call module_set_conn_pin_low 
+6326 6808c801 fetcht 1 ,mem_module_wake_up_gpio 
+6327 204069d1 call gpio_config_input 
+6328 6808c800 fetcht 1 ,mem_at_gpio 
+6329 202069d2 branch gpio_config_input_without_wake 
+
+module_lpm_lock:
+632a 6808c801 fetcht 1 ,mem_module_wake_up_gpio 
+632b 204069e5 call gpio_get_bit 
+632c 2420bf5c nbranch app_put_lpm_wake_lock ,true 
+632d 20203f5a branch app_get_lpm_wake_lock 
+
+module_process_idle:
+632e 20206330 branch module_app_dispatch 
+
+module_conn_process:
+632f 20206330 branch module_app_dispatch 
+
+module_app_dispatch:
+6330 79200025 set1 mark_ext_patch ,mark 
+6331 44c0c030 bpatch patch30_1 ,mem_patch30 
+6332 2040641c call module_control_air_flow 
+6333 20406421 call module_uart_set 
+6334 2040527a call l2cap_malloc_is_fifo_full 
+6335 247a0000 nrtn blank 
+6336 202063a0 branch module_process 
+
+module_process_bb_event:
+6337 1a627e00 copy regc ,pdata 
+6338 c0056368 beq bt_evt_pincode_req ,module_process_evt_pincode_req 
+6339 c0026383 beq bt_evt_reconn_failed ,module_reconn_fail 
+633a c009e387 beq bt_evt_reconn_page_timeout ,module_page_time_out 
+633b c001634c beq bt_evt_bb_disconnected ,module_process_bb_event_disconned 
+633c c00ce36a beq bt_evt_switch_not_accept ,module_process_switch_not_accept 
+633d c010636f beq bt_evt_switch_accept ,module_process_switch_accept 
+633e c0116374 beq bt_evt_sniff_accept ,module_process_sniff_accept 
+633f c010e375 beq bt_evt_sniff_not_accept ,module_process_sniff_not_accept 
+6340 c011e376 beq bt_evt_unsniff_accept ,module_process_unsniff_accept 
+6341 c0126379 beq bt_evt_unsniff_not_accept ,module_process_unsniff_not_accept 
+6342 c00a637a beq bt_evt_le_connected ,module_process_le_conn 
+6343 c000e382 beq bt_evt_bb_connected ,module_process_bb_conn 
+6344 c00ae364 beq bt_evt_le_disconnected ,module_process_bb_even_le_disconn 
+6345 c002e35d beq bt_evt_setup_complete ,module_process_setup_complete 
+6346 c005e352 beq bt_evt_enter_sniff ,module_sniff_param_check 
+6347 c0063fa6 beq bt_evt_exit_sniff ,app_lpm_mult_disable 
+6348 1fe1040f and pdata ,0x0f ,temp 
+6349 1fe17ef0 and_into bt_evt_timer_mask ,pdata 
+634a c02863ec beq bt_evt_timer_init ,module_bb_event_timer 
+634b 20600000 rtn 
+
+module_process_bb_event_disconned:
+634c 2040638a call module_disconn_start 
+634d 680142a0 fetch app_disc_rsn_size ,mem_app_disconn_reason 
+634e c4020000 rtnbit0 app_disc_after_setup_done 
+634f df200003 arg 3 ,loopcnt 
+6350 d8c04849 arg mem_prarm_dis ,contr 
+6351 20207f71 branch send_mem_to_uart 
+
+module_sniff_param_check:
+6352 68014042 fetch 2 ,mem_context + coffset_tsniff 
+6353 1fe37e00 rshift pdata ,pdata 
+6354 68094280 fetcht 2 ,mem_sniff_param_interval 
+6355 98467c00 isub temp ,null 
+6356 2422e358 nbranch module_sniff_param_check_unsniff ,zero 
+6357 20203fa4 branch app_lpm_mult_enable 
+
+module_sniff_param_check_unsniff:
+6358 6800c813 fetch 1 ,mem_module_task 
+6359 c3800000 rtnbit1 at_task_unsinff 
+635a 68110112 hfetch 2 ,core_uart_rxitems 
+635b 245a640c ncall at_set_unsniff_task_flag ,blank 
+635c 20203f9c branch app_bt_sniff_exit 
+
+module_process_setup_complete:
+635d 20406395 call module_conn_start 
+635e 2040642e call module_check_cmode 
+635f 2022e361 branch module_uart_send_conn ,zero 
+6360 20203f77 branch app_bt_disconnect 
+
+module_uart_send_conn:
+6361 df200004 arg 4 ,loopcnt 
+6362 d8c0488e arg mem_prarm_conn ,contr 
+6363 20207f71 branch send_mem_to_uart 
+
+module_process_bb_even_le_disconn:
+6364 2040638a call module_disconn_start 
+6365 df200005 arg 5 ,loopcnt 
+6366 d8c04847 arg mem_prarm_bledis ,contr 
+6367 20207f71 branch send_mem_to_uart 
+
+module_process_evt_pincode_req:
+6368 20403fc1 call at_restore_pin_code 
+6369 20203f6a branch app_bt_set_pincode 
+
+module_process_switch_not_accept:
+636a 6800c813 fetch 1 ,mem_module_task 
+636b c4020000 rtnbit0 at_task_switch 
+636c 793ffe04 set0 at_task_switch ,pdata 
+636d 6000c813 store 1 ,mem_module_task 
+636e 2020427f branch at_error_rev_end 
+
+module_process_switch_accept:
+636f 6800c813 fetch 1 ,mem_module_task 
+6370 c4020000 rtnbit0 at_task_switch 
+6371 793ffe04 set0 at_task_switch ,pdata 
+6372 6000c813 store 1 ,mem_module_task 
+6373 20204286 branch at_nomal_rev_end 
+
+module_process_sniff_accept:
+6374 20600000 rtn 
+
+module_process_sniff_not_accept:
+6375 20600000 rtn 
+
+module_process_unsniff_accept:
+6376 6800c813 fetch 1 ,mem_module_task 
+6377 c3003f9e bbit0 at_task_unsinff ,app_bt_enter_sniff 
+6378 20206410 branch at_clear_unsniff_task_flag 
+
+module_process_unsniff_not_accept:
+6379 20600000 rtn 
+
+module_process_le_conn:
+637a 20406395 call module_conn_start 
+637b da4003d0 arg mem_le_plap ,regb 
+637c 2040642e call module_check_cmode 
+637d 2022e37f branch module_uart_send_leconn ,zero 
+637e 20203f90 branch app_ble_disconnect 
+
+module_uart_send_leconn:
+637f df200006 arg 6 ,loopcnt 
+6380 d8c0488c arg mem_prarm_bleconn ,contr 
+6381 20207f71 branch send_mem_to_uart 
+
+module_process_bb_conn:
+6382 20600000 rtn 
+
+module_reconn_fail:
+6383 df200007 arg 7 ,loopcnt 
+6384 d8c04899 arg mem_prarm_recfail ,contr 
+6385 20407f71 call send_mem_to_uart 
+6386 2020638a branch module_disconn_start 
+
+module_page_time_out:
+6387 df200007 arg 7 ,loopcnt 
+6388 d8c04892 arg mem_prarm_pageout ,contr 
+6389 20407f71 call send_mem_to_uart 
+
+module_disconn_start:
+638a 2040638c call module_start_adv_discovery 
+638b 20206393 branch module_set_conn_pin_high 
+
+module_start_adv_discovery:
+638c 6800c812 fetch 1 ,mem_module_state 
+638d 2feffe00 isolate1 at_state_set30 ,pdata 
+638e 2040bf7c call app_bt_start_discovery ,true 
+638f 6800c812 fetch 1 ,mem_module_state 
+6390 2feffe01 isolate1 at_state_set40 ,pdata 
+6391 2040bf88 call app_ble_start_adv ,true 
+6392 20600000 rtn 
+
+module_set_conn_pin_high:
+6393 6808c803 fetcht 1 ,mem_module_connect_state_gpio 
+6394 202069ef branch gpio_out_active 
+
+module_conn_start:
+6395 20406397 call module_stop_adv_discovery 
+6396 2020639e branch module_set_conn_pin_low 
+
+module_stop_adv_discovery:
+6397 6800c812 fetch 1 ,mem_module_state 
+6398 2feffe00 isolate1 at_state_set30 ,pdata 
+6399 2040bf7e call app_bt_stop_discovery ,true 
+639a 6800c812 fetch 1 ,mem_module_state 
+639b 2feffe01 isolate1 at_state_set40 ,pdata 
+639c 2040bf86 call app_ble_stop_adv ,true 
+639d 20600000 rtn 
+
+module_set_conn_pin_low:
+639e 6808c803 fetcht 1 ,mem_module_connect_state_gpio 
+639f 202069ed branch gpio_out_inactive 
+
+module_process:
+63a0 6800c132 fetch 1 ,mem_device_option 
+63a1 c1850000 rtnne dvc_op_module 
+63a2 68110112 hfetch 2 ,core_uart_rxitems 
+63a3 207a0000 rtn blank 
+63a4 6001480e store 2 ,mem_current_packet_length 
+63a5 204063a9 call spp_mode 
+63a6 2020bfef branch at_process ,true 
+63a7 20406400 call at_ckeck_send_buff 
+63a8 202063af branch module_tx_packet 
+
+spp_mode:
+63a9 6808c800 fetcht 1 ,mem_at_gpio 
+63aa 202069e5 branch gpio_get_bit 
+
+module_exit_sniff:
+63ab 6800c813 fetch 1 ,mem_module_task 
+63ac c3800000 rtnbit1 at_task_unsinff 
+63ad 2040640c call at_set_unsniff_task_flag 
+63ae 20203f9c branch app_bt_sniff_exit 
+
+module_tx_packet:
+63af 6800c040 fetch 1 ,mem_context 
+63b0 c300428c bbit0 state_inconn ,spp_send_end 
+63b1 6800c041 fetch 1 ,mem_context + coffset_mode 
+63b2 c28063d5 bbit1 mode_le ,modle_le_tx 
+63b3 20403f40 call app_check_sniff 
+63b4 2020e3ab branch module_exit_sniff ,true 
+63b5 20206d97 branch spp_tx_rfcomm_packet 
+
+module_le_rx:
+63b6 20405a88 call le_att_get_handle_ptr 
+63b7 e8c08000 ifetch 1 ,contr 
+63b8 18c22200 copy contr ,rega 
+63b9 20407f6e call get_uart_twptr 
+63ba 1a427200 copy regb ,loopcnt 
+63bb 1a220c00 copy rega ,contr 
+63bc 20404976 call uart_copy_tx_bytes 
+63bd 202068fa branch uartd_send 
+
+module_le_tx_update_data:
+63be 68014810 fetch 2 ,mem_module_prepare_tx_len 
+63bf 207a0000 rtn blank 
+63c0 d8400014 arg dm_le_buff_len ,temp 
+63c1 20407fb9 call not_greater_than 
+63c2 60010469 store 2 ,mem_module_temp_len 
+63c3 1fe20400 copy pdata ,temp 
+63c4 68014810 fetch 2 ,mem_module_prepare_tx_len 
+63c5 98467e00 isub temp ,pdata 
+63c6 60014810 store 2 ,mem_module_prepare_tx_len 
+63c7 24213bf1 nbranch assert ,positive 
+63c8 d8400014 arg prcp_tx_le ,temp 
+63c9 600944c2 storet 2 ,mem_le_notify_handle 
+63ca 20405a88 call le_att_get_handle_ptr 
+63cb 203a3bf1 branch assert ,blank 
+63cc 18c08a01 add contr ,1 ,contw 
+63cd 68010469 fetch 2 ,mem_module_temp_len 
+63ce 1fe27200 copy pdata ,loopcnt 
+63cf 20407f6b call get_uart_rrptr 
+63d0 2040497c call uart_copy_rx_bytes 
+63d1 68010469 fetch 2 ,mem_module_temp_len 
+63d2 6001480e store 2 ,mem_current_packet_length 
+63d3 6001041b store 2 ,mem_le_notify_len 
+63d4 2020428c branch spp_send_end 
+
+modle_le_tx:
+63d5 c6848000 rtnmark0 mark_context 
+63d6 204063d8 call modle_le_tx_once 
+63d7 204063d8 call modle_le_tx_once 
+
+modle_le_tx_once:
+63d8 2040561e call le_xtype_fifo_is_near_full 
+63d9 247a0000 nrtn blank 
+63da 68110112 hfetch 2 ,core_uart_rxitems 
+63db 207a0000 rtn blank 
+63dc 68094810 fetcht 2 ,mem_module_prepare_tx_len 
+63dd 98467e00 isub temp ,pdata 
+63de 24213bf1 nbranch assert ,positive 
+63df 6001480e store 2 ,mem_current_packet_length 
+63e0 207a0000 rtn blank 
+63e1 20406407 call at_ckeck_send_buff_le 
+63e2 68014810 fetch 2 ,mem_module_prepare_tx_len 
+63e3 6809480e fetcht 2 ,mem_current_packet_length 
+63e4 9840fe00 iadd temp ,pdata 
+63e5 60014810 store 2 ,mem_module_prepare_tx_len 
+63e6 68094810 fetcht 2 ,mem_module_prepare_tx_len 
+63e7 68110112 hfetch 2 ,core_uart_rxitems 
+63e8 98462200 isub temp ,rega 
+63e9 24213bf1 nbranch assert ,positive 
+63ea 700b7d1b jam attop_handle_value_notification ,mem_fifo_temp 
+63eb 20205620 branch le_xtype_fifo_in 
+
+module_bb_event_timer:
+63ec 60088259 storet 1 ,mem_app_evt_timer_count 
+
+module_bb_event_100ms_loop:
+63ed 68008259 fetch 1 ,mem_app_evt_timer_count 
+63ee 207a0000 rtn blank 
+63ef 1fe0ffff increase -1 ,pdata 
+63f0 60008259 store 1 ,mem_app_evt_timer_count 
+63f1 204063f3 call module_bb_event_hud_ms 
+63f2 202063ed branch module_bb_event_100ms_loop 
+
+module_bb_event_hud_ms:
+63f3 6801481a fetch 2 ,mem_at_scan_time 
+63f4 207a0000 rtn blank 
+63f5 1fe0ffff increase -1 ,pdata 
+63f6 6001481a store 2 ,mem_at_scan_time 
+63f7 247a0000 nrtn blank 
+63f8 6800c2a4 fetch 1 ,mem_at_using_flag 
+63f9 7042a400 jam 0 ,mem_at_using_flag 
+63fa c280e3fd bbit1 at_flag_leinq ,modue_le_inq 
+63fb c28063fe bbit1 at_flag_inq ,module_inq 
+63fc 20203bf1 branch assert 
+
+modue_le_inq:
+63fd 20203f8c branch app_ble_stop_scan 
+
+module_inq:
+63fe 70427202 jam hci_cmd_inquiry_cancel ,mem_hci_cmd 
+63ff 20600000 rtn 
+
+at_ckeck_send_buff:
+6400 6800c041 fetch 1 ,mem_context + coffset_mode 
+6401 c2806407 bbit1 mode_le ,at_ckeck_send_buff_le 
+6402 6801480e fetch 2 ,mem_current_packet_length 
+6403 d840006e arg dm_refcom_buff_len ,temp 
+6404 20407fb9 call not_greater_than 
+6405 6001480e store 2 ,mem_current_packet_length 
+6406 20600000 rtn 
+
+at_ckeck_send_buff_le:
+6407 6801480e fetch 2 ,mem_current_packet_length 
+6408 d8400014 arg dm_le_buff_len ,temp 
+6409 20407fb9 call not_greater_than 
+640a 6001480e store 2 ,mem_current_packet_length 
+640b 20600000 rtn 
+
+at_set_unsniff_task_flag:
+640c 6800c813 fetch 1 ,mem_module_task 
+640d 79207e00 set1 at_task_unsinff ,pdata 
+640e 6000c813 store 1 ,mem_module_task 
+640f 20600000 rtn 
+
+at_clear_unsniff_task_flag:
+6410 6800c813 fetch 1 ,mem_module_task 
+6411 793ffe00 set0 at_task_unsinff ,pdata 
+6412 6000c813 store 1 ,mem_module_task 
+6413 20600000 rtn 
+
+at_set_cmd_task_flag:
+6414 6800c813 fetch 1 ,mem_module_task 
+6415 79207e07 set1 at_task_cmd_flag ,pdata 
+6416 6000c813 store 1 ,mem_module_task 
+6417 20600000 rtn 
+
+at_clear_cmd_task_flag:
+6418 6800c813 fetch 1 ,mem_module_task 
+6419 793ffe07 set0 at_task_cmd_flag ,pdata 
+641a 6000c813 store 1 ,mem_module_task 
+641b 20600000 rtn 
+
+module_control_air_flow:
+641c 79200025 set1 mark_ext_patch ,mark 
+641d 44c14030 bpatch patch30_2 ,mem_patch30 
+641e 20407f8e call check_uart_tx_buff 
+641f 20213f66 branch app_l2cap_flow_control_enable ,positive 
+6420 20203f68 branch app_l2cap_flow_control_disable 
+
+module_uart_set:
+6421 204063a9 call spp_mode 
+6422 2020e428 branch module_set_baud_115200 ,true 
+6423 68190052 hfetcht uart_baud_len ,core_uart_baud 
+6424 680142ac fetch 2 ,mem_baud 
+6425 98467c00 isub temp ,null 
+6426 20628000 rtn zero 
+6427 20206909 branch uart_set_baud_by_mem 
+
+module_set_baud_115200:
+6428 68190052 hfetcht uart_baud_len ,core_uart_baud 
+6429 580001a0 setarg at_baud_115200 
+642a 98467c00 isub temp ,null 
+642b 20628000 rtn zero 
+642c 60110052 hstore uart_baud_len ,core_uart_baud 
+642d 20600000 rtn 
+
+module_check_cmode:
+642e 79200025 set1 mark_ext_patch ,mark 
+642f 44c1c030 bpatch patch30_3 ,mem_patch30 
+6430 6800c812 fetch 1 ,mem_module_state 
+6431 2fec0002 isolate0 at_state_cmode ,pdata 
+6432 2020e436 branch module_check_cmode_close ,true 
+6433 da204814 arg mem_cmode_addr ,rega 
+6434 df200006 arg 6 ,loopcnt 
+6435 20207f25 branch string_compare 
+
+module_check_cmode_close:
+6436 18007c00 force 0 ,null 
+6437 20600000 rtn 
+
+module_init_static_string:
+6438 79200025 set1 mark_ext_patch ,mark 
+6439 44c24030 bpatch patch30_4 ,mem_patch30 
+643a d8a0481c arg mem_prarm_pswd ,contw 
+643b 38035350 setsect 0 ,0x35350 
+643c 38055115 setsect 1 ,0x15115 
+643d 38092415 setsect 2 ,0x12415 
+643e 380d0951 setsect 3 ,0x10951 
+643f e0a48000 istore 9 ,contw 
+6440 3802454c setsect 0 ,0x2454c 
+6441 38075053 setsect 1 ,0x35053 
+6442 38082454 setsect 2 ,0x2454 
+6443 380d1531 setsect 3 ,0x11531 
+6444 e0a48000 istore 9 ,contw 
+6445 38034441 setsect 0 ,0x34441 
+6446 380594d4 setsect 1 ,0x194d4 
+6447 38092455 setsect 2 ,0x12455 
+6448 380d0d4d setsect 3 ,0x10d4d 
+6449 e0a48000 istore 9 ,contw 
+644a 3803414c setsect 0 ,0x3414c 
+644b 3804d4d4 setsect 1 ,0xd4d4 
+644c 380924c4 setsect 2 ,0x124c4 
+644d 380d3119 setsect 3 ,0x13119 
+644e e0a48000 istore 9 ,contw 
+644f 38015247 setsect 0 ,0x15247 
+6450 3807d0d1 setsect 1 ,0x3d0d1 
+6451 3808e4e4 setsect 2 ,0xe4e4 
+6452 380d1531 setsect 3 ,0x11531 
+6453 e0a48000 istore 9 ,contw 
+6454 38034944 setsect 0 ,0x34944 
+6455 380514d4 setsect 1 ,0x114d4 
+6456 3808e535 setsect 2 ,0xe535 
+6457 380d5105 setsect 3 ,0x15105 
+6458 e0a48000 istore 9 ,contw 
+6459 38014c2b setsect 0 ,0x14c2b 
+645a 380514d2 setsect 1 ,0x114d2 
+645b 3808f525 setsect 2 ,0xf525 
+645c 380d1531 setsect 3 ,0x11531 
+645d e0a48000 istore 9 ,contw 
+645e 38014e53 setsect 0 ,0x14e53 
+645f 38059192 setsect 1 ,0x19192 
+6460 380844c4 setsect 2 ,0x44c4 
+6461 380d5915 setsect 3 ,0x15915 
+6462 e0a48000 istore 9 ,contw 
+6463 38035352 setsect 0 ,0x35352 
+6464 3804d254 setsect 1 ,0xd254 
+6465 38085444 setsect 2 ,0x5444 
+6466 380d0959 setsect 3 ,0x10959 
+6467 e0a48000 istore 9 ,contw 
+6468 3801454c setsect 0 ,0x1454c 
+6469 38045392 setsect 1 ,0x5392 
+646a 38083525 setsect 2 ,0x3525 
+646b 380d3d35 setsect 3 ,0x13d35 
+646c e0a48000 istore 9 ,contw 
+646d 38014544 setsect 0 ,0x14544 
+646e 380513d3 setsect 1 ,0x113d3 
+646f 38084454 setsect 2 ,0x4454 
+6470 380d4d35 setsect 3 ,0x14d35 
+6471 e0a48000 istore 9 ,contw 
+6472 38004154 setsect 0 ,0x4154 
+6473 38051155 setsect 1 ,0x11155 
+6474 38093494 setsect 2 ,0x13494 
+6475 380d3d0d setsect 3 ,0x13d0d 
+6476 e0a48000 istore 9 ,contw 
+6477 38004f56 setsect 0 ,0x4f56 
+6478 38071055 setsect 1 ,0x31055 
+6479 38083454 setsect 2 ,0x3454 
+647a 380d393d setsect 3 ,0x1393d 
+647b e0a48000 istore 9 ,contw 
+647c 3801504e setsect 0 ,0x1504e 
+647d 380551d0 setsect 1 ,0x151d0 
+647e 380954f4 setsect 2 ,0x154f4 
+647f 380d4951 setsect 3 ,0x14951 
+6480 e0a48000 istore 9 ,contw 
+6481 38024345 setsect 0 ,0x24345 
+6482 38065051 setsect 1 ,0x25051 
+6483 380804c4 setsect 2 ,0x4c4 
+6484 e0a30000 istore 6 ,contw 
+6485 20600000 rtn 
+
+mouse_init:
+6486 580065d7 setarg le_mouse 
+6487 6001428c store 2 ,mem_cb_le_process 
+6488 5800652e setarg mouse_send_process 
+6489 6001428e store 2 ,mem_cb_bt_process 
+648a 580064e3 setarg mouse_process_lpm_before 
+648b 6001428a store 2 ,mem_cb_before_lpm 
+648c 580065f3 setarg mouse_priority_bb_event 
+648d 60014292 store 2 ,mem_cb_bb_event_process 
+648e 580064a9 setarg mouse_idle 
+648f 60014290 store 2 ,mem_cb_idle_process 
+6490 58006561 setarg mouse_le_notify_update_data 
+6491 60014298 store 2 ,mem_cb_update_notify_value 
+6492 7007dc00 jam 0 ,mem_sp_flag 
+6493 7007dd00 jam 0 ,mem_master_sp_flag 
+6494 793f8025 set0 mark_ext_patch ,mark 
+6495 44e04018 bpatch patch18_0 ,mem_patch18 
+6496 204064c4 call mouse_init_common 
+6497 20758000 rtn wake 
+6498 2040649f call mouse_init_environment 
+6499 204064a7 call mouse_dpi_init 
+649a 580064e0 setarg mouse_before_hibernate 
+649b 60014288 store 2 ,mem_cb_before_hibernate 
+649c 680147f4 fetch 2 ,mem_ui_state_map 
+649d c2866697 bbit1 ui_state_btn_down ,mouse_start_discovery 
+649e 20206693 branch mouse_check_reconn_target 
+
+mouse_init_environment:
+649f 20403f4d call app_initflag_check 
+64a0 2022e4a4 branch mouse_load_eeprom_param ,zero 
+64a1 20406963 call eeprom_store_le_local_addr 
+64a2 204066ba call eeprom_store_mouse_dpi 
+64a3 20203f45 branch app_initflag_store 
+
+mouse_load_eeprom_param:
+64a4 2040691d call eeprom_load_reconn_info 
+64a5 20406967 call eeprom_load_le_loacal_addr 
+64a6 202066c0 branch eeprom_load_mouse_dpi 
+
+mouse_dpi_init:
+64a7 70481c01 jam dpi_button_state_up ,mem_mouse_dpi_button_state 
+64a8 202064bb branch mouse_modified_dpi 
+
+mouse_idle:
+64a9 20407cd7 call ui_check_paring_button 
+64aa 204064ac call mouse_check_dpi 
+64ab 202064f6 branch mouse_wheel_check 
+
+mouse_check_dpi:
+64ac 6808c825 fetcht 1 ,mem_dpi_button_gpio 
+64ad 204069e5 call gpio_get_bit 
+64ae 2420e4b3 nbranch mouse_dpi_up ,true 
+
+mouse_dpi_down:
+64af 6800c81c fetch 1 ,mem_mouse_dpi_button_state 
+64b0 c1000000 rtneq dpi_button_state_down 
+64b1 70481c00 jam dpi_button_state_down ,mem_mouse_dpi_button_state 
+64b2 20600000 rtn 
+
+mouse_dpi_up:
+64b3 6800c81c fetch 1 ,mem_mouse_dpi_button_state 
+64b4 c1008000 rtneq dpi_button_state_up 
+64b5 70481c01 jam dpi_button_state_up ,mem_mouse_dpi_button_state 
+64b6 6800c81b fetch 1 ,mem_mouse_dpi 
+64b7 1fe0fe01 increase 1 ,pdata 
+64b8 1fe17e03 and pdata ,0x03 ,pdata 
+64b9 6000c81b store 1 ,mem_mouse_dpi 
+64ba 202064bb branch mouse_modified_dpi 
+
+mouse_modified_dpi:
+64bb 58000006 setarg mouse_dpi_address 
+64bc 204066d8 call twspi_read 
+64bd 1fe104fc and pdata ,0xfc ,temp 
+64be 6800c81b fetch 1 ,mem_mouse_dpi 
+64bf 9840fe00 iadd temp ,pdata 
+64c0 1fed7e00 lshift8 pdata ,pdata 
+64c1 1fe0fe06 add pdata ,mouse_dpi_address ,pdata 
+64c2 204066d7 call twspi_write 
+64c3 202066ba branch eeprom_store_mouse_dpi 
+
+mouse_init_common:
+64c4 204065c5 call mouse_init_sunt 
+64c5 204064ca call mouse_gpio_init 
+64c6 68110050 hfetch 2 ,core_clkoff 
+64c7 793ffe0b set0 clock_off_qdecoder ,pdata 
+64c8 60110050 hstore 2 ,core_clkoff 
+64c9 20600000 rtn 
+
+mouse_gpio_init:
+64ca 20403e0b call lpm_disable_exen_output 
+64cb 6808c827 fetcht 1 ,mem_whee_a_data_gpio 
+64cc 204069d1 call gpio_config_input 
+64cd 6808c828 fetcht 1 ,mem_whee_b_data_gpio 
+64ce 204069d1 call gpio_config_input 
+64cf 6808c822 fetcht 1 ,mem_lbutton_gpio 
+64d0 204069d1 call gpio_config_input 
+64d1 6808c823 fetcht 1 ,mem_rbutton_gpio 
+64d2 204069d1 call gpio_config_input 
+64d3 6808c824 fetcht 1 ,mem_mbutton_gpio 
+64d4 204069d1 call gpio_config_input 
+64d5 6808c826 fetcht 1 ,mem_sensor_data_gpio 
+64d6 204069d1 call gpio_config_input 
+64d7 6808c825 fetcht 1 ,mem_dpi_button_gpio 
+64d8 204069d1 call gpio_config_input 
+64d9 6810807b hfetch 1 ,core_gpio_pu3 
+64da 1fe1fe18 or_into 0x18 ,pdata 
+64db 6010807b hstore 1 ,core_gpio_pu3 
+64dc 6810807f hfetch 1 ,core_gpio_pd2 + 1 
+64dd 1fe17ee7 and_into 0xe7 ,pdata 
+64de 6010807f hstore 1 ,core_gpio_pd2 + 1 
+64df 20600000 rtn 
+
+mouse_before_hibernate:
+64e0 5800bc05 setarg 0xbc05 
+64e1 204066d7 call twspi_write 
+64e2 7000a201 jam 1 ,mem_lpm_current_mult 
+
+mouse_process_lpm_before:
+64e3 204064f6 call mouse_wheel_check 
+64e4 d8400019 arg 25 ,temp 
+64e5 204069da call gpio_config_output 
+64e6 70808100 hjam 0 ,core_gpio_sel1 
+64e7 6808c827 fetcht 1 ,mem_whee_a_data_gpio 
+64e8 204069b4 call gpio_set_wake_by_current_state 
+64e9 6808c828 fetcht 1 ,mem_whee_b_data_gpio 
+64ea 204069b4 call gpio_set_wake_by_current_state 
+64eb 6808c822 fetcht 1 ,mem_lbutton_gpio 
+64ec 204069b4 call gpio_set_wake_by_current_state 
+64ed 6808c823 fetcht 1 ,mem_rbutton_gpio 
+64ee 204069b4 call gpio_set_wake_by_current_state 
+64ef 6808c824 fetcht 1 ,mem_mbutton_gpio 
+64f0 204069b4 call gpio_set_wake_by_current_state 
+64f1 6808c826 fetcht 1 ,mem_sensor_data_gpio 
+64f2 204069b9 call gpio_set_wake 
+64f3 680080a2 fetch 1 ,mem_lpm_current_mult 
+64f4 247a0000 nrtn blank 
+64f5 202069c4 branch gpio_clr_wake 
+
+mouse_wheel_check:
+64f6 793f8025 set0 mark_ext_patch ,mark 
+64f7 44e0c018 bpatch patch18_1 ,mem_patch18 
+64f8 da200000 arg 0 ,rega 
+64f9 6808c827 fetcht 1 ,mem_whee_a_data_gpio 
+64fa 204069e5 call gpio_get_bit 
+64fb 7920a200 setflag true ,0 ,rega 
+64fc 6808c828 fetcht 1 ,mem_whee_b_data_gpio 
+64fd 204069e5 call gpio_get_bit 
+64fe 7920a201 setflag true ,1 ,rega 
+64ff 1a227e00 copy rega ,pdata 
+6500 1fe17e03 and_into 0x3 ,pdata 
+6501 6808c808 fetcht 1 ,mem_mouse_z_now 
+6502 6000c808 store 1 ,mem_mouse_z_now 
+6503 98467c00 isub temp ,null 
+6504 2022e514 branch mouse_wheel_clear ,zero 
+6505 6800c807 fetch 1 ,mem_mouse_z_before 
+6506 6000c806 store 1 ,mem_mouse_z_last 
+6507 6008c807 storet 1 ,mem_mouse_z_before 
+6508 6800c808 fetch 1 ,mem_mouse_z_now 
+6509 1ff27e00 lshift4 pdata ,pdata 
+650a 6808c807 fetcht 1 ,mem_mouse_z_before 
+650b 184b8400 lshift2 temp ,temp 
+650c 9840fe00 iadd temp ,pdata 
+650d 6808c806 fetcht 1 ,mem_mouse_z_last 
+650e 9840fe00 iadd temp ,pdata 
+650f c01c6515 beq 0x38 ,mouse_wheel_forward 
+6510 c01a6519 beq 0x34 ,mouse_wheel_back 
+6511 c005e519 beq 0x0b ,mouse_wheel_back 
+6512 c003e515 beq 0x07 ,mouse_wheel_forward 
+6513 20600000 rtn 
+
+mouse_wheel_clear:
+6514 20600000 rtn 
+
+mouse_wheel_forward:
+6515 6800c809 fetch 1 ,mem_mouse_z_data 
+6516 1fe0fe01 increase 1 ,pdata 
+6517 6000c809 store 1 ,mem_mouse_z_data 
+6518 20600000 rtn 
+
+mouse_wheel_back:
+6519 6800c809 fetch 1 ,mem_mouse_z_data 
+651a 1fe0ffff increase -1 ,pdata 
+651b 6000c809 store 1 ,mem_mouse_z_data 
+651c 20600000 rtn 
+
+mouse_process_ble:
+651d 20600000 rtn 
+
+mouse_sleep_sensor:
+651e 5800b805 setarg 0xB805 
+651f 202066d7 branch twspi_write 
+
+mouse_bb_connected:
+6520 20600000 rtn 
+
+le_mouse_bb_event_write_request:
+6521 20403fa0 call app_ble_store_reconn_info 
+6522 70482002 jam mouse_mode_state_ble ,mem_mouse_mode_state 
+6523 20403fa4 call app_lpm_mult_enable 
+
+le_mouse_bb_event_enc_info:
+6524 20203f92 branch app_ble_start_write 
+
+le_hibernate_timer:
+6525 6801481e fetch 2 ,mem_le_hibernate_timer 
+6526 207a0000 rtn blank 
+6527 1fe0ffff increase -1 ,pdata 
+6528 6001481e store 2 ,mem_le_hibernate_timer 
+6529 247a0000 nrtn blank 
+652a 20203f9a branch app_enter_hibernate 
+
+mouse_hid_connected:
+652b 58000002 setarg hid_handshake_timeout 
+652c 6000c7f2 store 1 ,mem_hid_handshake_timer_count 
+652d 20600000 rtn 
+
+mouse_send_process:
+652e 6800c27f fetch 1 ,mem_app_handshake_flag 
+652f 207a0000 rtn blank 
+6530 2040527c call l2cap_malloc_is_fifo_nearly_full 
+6531 247a0000 nrtn blank 
+6532 20406578 call mouse_motion 
+6533 24740000 nrtn user 
+6534 2040655e call mouse_no_data_timer_init 
+6535 2040655a call mouse_send_blank_packet_timer_init 
+
+mouse_send_data:
+6536 da200008 arg 8 ,rega 
+6537 20404b2c call hid_malloc_tx_buff 
+6538 680142b7 fetch 2 ,mem_hid_int_remote_cid 
+6539 e0a10000 istore 2 ,contw 
+653a 580002a1 setarg 0x02a1 
+653b e0a10000 istore 2 ,contw 
+653c 6800c805 fetch 1 ,mem_mouse_key 
+653d e0a08000 istore 1 ,contw 
+653e 68014800 fetch 2 ,mem_mouse_x 
+653f d8400fff arg 0xfff ,temp 
+6540 98417e00 iand temp ,pdata 
+6541 68094802 fetcht 2 ,mem_mouse_y 
+6542 18520400 lshift4 temp ,temp 
+6543 184d0400 lshift8 temp ,temp 
+6544 9841fe00 ior temp ,pdata 
+6545 e0a18000 istore 3 ,contw 
+6546 6800c804 fetch 1 ,mem_mouse_z 
+6547 e0a08000 istore 1 ,contw 
+6548 58000000 setarg 0 
+6549 e0a08000 istore 1 ,contw 
+654a 7008a808 jam 8 ,mem_ui_data_txbuff_length 
+654b 20600000 rtn 
+
+mouse_send_blank_packet_timer:
+654c 793f8025 set0 mark_ext_patch ,mark 
+654d 44e14018 bpatch patch18_2 ,mem_patch18 
+654e 6800c81a fetch 1 ,mem_mouse_send_blank_timer 
+654f 207a0000 rtn blank 
+6550 1fe0ffff increase -1 ,pdata 
+6551 6000c81a store 1 ,mem_mouse_send_blank_timer 
+6552 247a0000 nrtn blank 
+6553 2040527e call l2cap_malloc_is_fifo_empty 
+6554 247a0000 nrtn blank 
+6555 58000000 setarg 0 
+6556 6002c800 store 5 ,mem_mouse_x 
+6557 20406536 call mouse_send_data 
+6558 70481a50 jam mouse_send_blank_timer ,mem_mouse_send_blank_timer 
+6559 20600000 rtn 
+
+mouse_send_blank_packet_timer_init:
+655a 68014810 fetch 2 ,mem_mouse_blank_data_timeout 
+655b 60014818 store 2 ,mem_mouse_blank_data_timer 
+655c 70481a50 jam mouse_send_blank_timer ,mem_mouse_send_blank_timer 
+655d 20600000 rtn 
+
+mouse_no_data_timer_init:
+655e 6801480e fetch 2 ,mem_mouse_no_data_timeout 
+655f 60014816 store 2 ,mem_mouse_no_data_timer 
+6560 20600000 rtn 
+
+mouse_le_notify_update_data:
+6561 680944c2 fetcht 2 ,mem_le_notify_handle 
+6562 20405a88 call le_att_get_handle_ptr 
+6563 e8c08000 ifetch 1 ,contr 
+6564 6000841b store 1 ,mem_le_notify_len 
+6565 20600000 rtn 
+
+mouse_fill_data_le:
+6566 793f8025 set0 mark_ext_patch ,mark 
+6567 44e1c018 bpatch patch18_3 ,mem_patch18 
+6568 680944c2 fetcht 2 ,mem_le_notify_handle 
+6569 20405a88 call le_att_get_handle_ptr 
+656a 18c08a01 add contr ,1 ,contw 
+
+mouse_fill_data:
+656b 6800c805 fetch 1 ,mem_mouse_key 
+656c e0a08000 istore 1 ,contw 
+656d 68014800 fetch 2 ,mem_mouse_x 
+656e d8400fff arg 0xfff ,temp 
+656f 98417e00 iand temp ,pdata 
+6570 68094802 fetcht 2 ,mem_mouse_y 
+6571 18520400 lshift4 temp ,temp 
+6572 184d0400 lshift8 temp ,temp 
+6573 9841fe00 ior temp ,pdata 
+6574 e0a18000 istore 3 ,contw 
+6575 6800c804 fetch 1 ,mem_mouse_z 
+6576 e0a08000 istore 1 ,contw 
+6577 20600000 rtn 
+
+mouse_motion:
+6578 793f8025 set0 mark_ext_patch ,mark 
+6579 44e24018 bpatch patch18_4 ,mem_patch18 
+657a 78547c00 disable user 
+657b 58000000 setarg 0 
+657c 6002c800 store 5 ,mem_mouse_x 
+657d 20406581 call p3204_motion 
+657e 204065b4 call p3204_sdio_low 
+657f 2040659c call mouse_zwheel 
+6580 202065a2 branch mouse_key 
+
+p3204_motion:
+6581 6800c821 fetch 1 ,mem_sensor_type 
+6582 c1810000 rtnne sensor_type_p3204 
+6583 6800c80a fetch 1 ,mem_mouse_move_flag 
+6584 205a65ba call p3204_clear_data ,blank 
+6585 70480a01 jam 1 ,mem_mouse_move_flag 
+6586 78547c00 disable user 
+6587 6808c826 fetcht 1 ,mem_sensor_data_gpio 
+6588 204069e5 call gpio_get_bit 
+6589 24608000 nrtn true 
+658a 58000000 setarg 0 
+658b 204066d8 call twspi_read 
+658c c09866c6 bne p3204_id ,twspi_reset 
+658d 58000002 setarg 2 
+658e 204066d8 call twspi_read 
+658f c4038000 rtnbit0 7 
+6590 58000003 setarg 3 
+6591 204066d8 call twspi_read 
+6592 204065d3 call extsign 
+6593 60014800 store 2 ,mem_mouse_x 
+6594 58000004 setarg 4 
+6595 204066d8 call twspi_read 
+6596 204065d3 call extsign 
+6597 1fe67e00 sub pdata ,0 ,pdata 
+6598 60014802 store 2 ,mem_mouse_y 
+6599 68024800 fetch 4 ,mem_mouse_x 
+659a 78347c00 enable user 
+659b 20600000 rtn 
+
+mouse_zwheel:
+659c 6800c809 fetch 1 ,mem_mouse_z_data 
+659d 207a0000 rtn blank 
+659e 6000c804 store 1 ,mem_mouse_z 
+659f 70480900 jam 0 ,mem_mouse_z_data 
+65a0 78347c00 enable user 
+65a1 20600000 rtn 
+
+mouse_key:
+65a2 da200000 arg 0 ,rega 
+65a3 6808c822 fetcht 1 ,mem_lbutton_gpio 
+65a4 204069e5 call gpio_get_bit 
+65a5 7920a200 setflag true ,0 ,rega 
+65a6 6808c823 fetcht 1 ,mem_rbutton_gpio 
+65a7 204069e5 call gpio_get_bit 
+65a8 7920a201 setflag true ,1 ,rega 
+65a9 6808c824 fetcht 1 ,mem_mbutton_gpio 
+65aa 204069e5 call gpio_get_bit 
+65ab 7920a202 setflag true ,2 ,rega 
+65ac 1a227e00 deposit rega 
+65ad 6808c805 fetcht 1 ,mem_mouse_key 
+65ae 6000c805 store 1 ,mem_mouse_key 
+65af 9842fe00 ixor temp ,pdata 
+65b0 1fe67c00 sub pdata ,0 ,null 
+65b1 20628000 rtn zero 
+65b2 78347c00 enable user 
+65b3 20600000 rtn 
+
+p3204_sdio_low:
+65b4 d840001a arg 26 ,temp 
+65b5 204069e5 call gpio_get_bit 
+65b6 20608000 rtn true 
+65b7 58000000 setarg 0 
+65b8 204066d8 call twspi_read 
+65b9 202065b4 branch p3204_sdio_low 
+
+p3204_clear_data:
+65ba df200000 arg 0 ,loopcnt 
+
+p3204_clear_data_loop:
+65bb 58000002 setarg 2 
+65bc 204066d8 call twspi_read 
+65bd 20000064 nop 100 
+65be 1f20f201 increase 1 ,loopcnt 
+65bf 6808c826 fetcht 1 ,mem_sensor_data_gpio 
+65c0 204069e5 call gpio_get_bit 
+65c1 2020e5bb branch p3204_clear_data_loop ,true 
+65c2 1f227e00 deposit loopcnt 
+65c3 6001046b store 2 ,mem_init_cnt 
+65c4 20600000 rtn 
+
+mouse_init_sunt:
+65c5 2040678e call spid_init 
+65c6 20758000 rtn wake 
+
+mouse_init_p3204:
+65c7 58000000 setarg 0 
+65c8 204066d8 call twspi_read 
+65c9 60008256 store 1 ,mem_sensor_id 
+65ca c01865ce beq p3204_id ,mouse_init_p3204_cont 
+65cb 204066c6 call twspi_reset 
+65cc 20002710 nop 10000 
+65cd 202065c7 branch mouse_init_p3204 
+
+mouse_init_p3204_cont:
+65ce 58008006 setarg 0x8006 
+65cf 204066d7 call twspi_write 
+65d0 200003e8 nop 1000 
+65d1 70482102 jam sensor_type_p3204 ,mem_sensor_type 
+65d2 20600000 rtn 
+
+extsign:
+65d3 c4038000 rtnbit0 7 
+65d4 d840ff00 arg 0xff00 ,temp 
+65d5 9841fe00 ior temp ,pdata 
+65d6 20600000 rtn 
+
+le_mouse:
+65d7 2040561e call le_xtype_fifo_is_near_full 
+65d8 247a0000 nrtn blank 
+65d9 680944c2 fetcht 2 ,mem_le_notify_handle 
+65da 20405866 call le_att_check_notification_enable 
+65db c4000000 rtnbit0 0 
+65dc 6800c6f8 fetch 1 ,mem_le_switch_send_data 
+65dd c4000000 rtnbit0 0 
+65de 20406578 call mouse_motion 
+65df 24740000 nrtn user 
+65e0 2040655e call mouse_no_data_timer_init 
+65e1 700b7d1b jam attop_handle_value_notification ,mem_fifo_temp 
+65e2 20405620 call le_xtype_fifo_in 
+65e3 20206566 branch mouse_fill_data_le 
+
+mouse_test:
+65e4 20740000 rtn user 
+65e5 6800c81d fetch 1 ,mem_mouse_test_cnt 
+65e6 1fe0fe01 increase 1 ,pdata 
+65e7 6000c81d store 1 ,mem_mouse_test_cnt 
+65e8 d8400001 arg 1 ,temp 
+65e9 c303e5eb bbit0 7 ,mouse_test_pos 
+65ea d840ffff arg 0xffff ,temp 
+
+mouse_test_pos:
+65eb 600ac800 storet 5 ,mem_mouse_x 
+65ec 78347c00 enable user 
+65ed 20600000 rtn 
+
+mouse_check_mode_state:
+65ee 78547c00 disable user 
+65ef 6800c820 fetch 1 ,mem_mouse_mode_state 
+65f0 c1010000 rtneq mouse_mode_state_ble 
+65f1 78347c00 enable user 
+65f2 20600000 rtn 
+
+mouse_priority_bb_event:
+65f3 1a627e00 copy regc ,pdata 
+65f4 c00a6606 beq bt_evt_le_connected ,le_mouse_bb_event_connected 
+65f5 c000e6a6 beq bt_evt_bb_connected ,mouse_stop_discovery 
+65f6 c00ae617 beq bt_evt_le_disconnected ,mouse_bb_disconnected 
+65f7 c0016617 beq bt_evt_bb_disconnected ,mouse_bb_disconnected 
+65f8 c002e616 beq bt_evt_setup_complete ,mouse_bt_event_setup_complete 
+65f9 c008666a beq bt_evt_button_long_pressed ,mouse_bb_event_discovery_btn 
+65fa c009668a beq bt_evt_hid_handshake ,mouse_bt_hid_handshake 
+65fb c0036614 beq bt_evt_hid_connected ,mouse_bt_hid_connected 
+65fc c0146521 beq bt_evt_le_write_request ,le_mouse_bb_event_write_request 
+65fd c014e524 beq bt_evt_le_enc_info ,le_mouse_bb_event_enc_info 
+65fe c0026611 beq bt_evt_reconn_failed ,mouse_bb_event_reconn_failed 
+65ff c009e611 beq bt_evt_reconn_page_timeout ,mouse_bb_event_reconn_failed 
+6600 c005660f beq bt_evt_pincode_req ,mouse_bb_event_pincode 
+6601 c0173f57 beq bt_evt_remote_unsniff ,app_start_auto_sniff 
+6602 1fe1040f and pdata ,0x0f ,temp 
+6603 1fe17ef0 and_into bt_evt_timer_mask ,pdata 
+6604 c0286634 beq bt_evt_timer_init ,mouse_bb_event_timer 
+6605 20600000 rtn 
+
+le_mouse_bb_event_connected:
+6606 680142a2 fetch app_disc_rsn_size ,mem_app_disconn_reason_flag 
+6607 793ffe00 set0 app_disc_by_button ,pdata 
+6608 600142a2 store app_disc_rsn_size ,mem_app_disconn_reason_flag 
+6609 58000000 setarg 0 
+660a 60014814 store 2 ,mem_mouse_direct_timer 
+660b 6800c829 fetch 1 ,mem_conn_cnt 
+660c 1fe0fe01 increase 1 ,pdata 
+660d 6000c829 store 1 ,mem_conn_cnt 
+660e 202066a6 branch mouse_stop_discovery 
+
+mouse_bb_event_pincode:
+660f 204062e9 call pincode_reinit 
+6610 20203f6a branch app_bt_set_pincode 
+
+mouse_bb_event_reconn_failed:
+6611 680147f4 fetch 2 ,mem_ui_state_map 
+6612 c2866697 bbit1 ui_state_btn_down ,mouse_start_discovery 
+6613 20203f10 branch app_bb_hibernate 
+
+mouse_bt_hid_connected:
+6614 2040652b call mouse_hid_connected 
+6615 20600000 rtn 
+
+mouse_bt_event_setup_complete:
+6616 20600000 rtn 
+
+mouse_bb_disconnected:
+6617 793f8025 set0 mark_ext_patch ,mark 
+6618 44e2c018 bpatch patch18_5 ,mem_patch18 
+6619 20406621 call mouse_bb_discon_clear_stack 
+661a 680142a0 fetch app_disc_rsn_size ,mem_app_disconn_reason 
+661b c283e630 bbit1 app_disc_ble ,mouse4_0_event_bb_disconn 
+661c c2803f12 bbit1 app_disc_by_button ,app_disconn_reason_clear 
+661d c280e62a bbit1 app_disc_after_pairing ,mouse_event_light_state_pairing 
+661e c281662d bbit1 app_disc_after_reconn ,mouse_event_light_state_hibernate 
+661f c281e62d bbit1 app_disc_after_sniff ,mouse_event_light_state_hibernate 
+6620 20206697 branch mouse_start_discovery 
+
+mouse_bb_discon_clear_stack:
+6621 58000000 setarg 0 
+6622 60024806 store 4 ,mem_mouse_z_last 
+6623 70481a00 jam 0 ,mem_mouse_send_blank_timer 
+6624 70480a00 jam 0 ,mem_mouse_move_flag 
+6625 70427f00 jam app_handshake_null ,mem_app_handshake_flag 
+6626 70448b00 jam 0 ,mem_ltk_exists 
+6627 70482000 jam 0 ,mem_mouse_mode_state 
+6628 70480b00 jam 0 ,mem_reconnect_timeout 
+6629 20600000 rtn 
+
+mouse_event_light_state_pairing:
+662a c282e62d bbit1 app_disc_after_handshake ,mouse_event_light_state_hibernate 
+662b c281e62d bbit1 app_disc_after_sniff ,mouse_event_light_state_hibernate 
+662c 20206697 branch mouse_start_discovery 
+
+mouse_event_light_state_hibernate:
+662d 680147f4 fetch 2 ,mem_ui_state_map 
+662e c2866697 bbit1 ui_state_btn_down ,mouse_start_discovery 
+662f 20203f10 branch app_bb_hibernate 
+
+mouse4_0_event_bb_disconn:
+6630 20405b30 call le_clean_att_list_handle_enable 
+6631 680142a0 fetch app_disc_rsn_size ,mem_app_disconn_reason 
+6632 c2803f12 bbit1 app_disc_by_button ,app_disconn_reason_clear 
+6633 20203f10 branch app_bb_hibernate 
+
+mouse_bb_event_timer:
+6634 793f8025 set0 mark_ext_patch ,mark 
+6635 44e34018 bpatch patch18_6 ,mem_patch18 
+6636 60088259 storet 1 ,mem_app_evt_timer_count 
+
+mouse_bb_event_100ms_loop:
+6637 68008259 fetch 1 ,mem_app_evt_timer_count 
+6638 207a0000 rtn blank 
+6639 1fe0ffff increase -1 ,pdata 
+663a 60008259 store 1 ,mem_app_evt_timer_count 
+663b 20406649 call mouse_check_hid_handshake_timer 
+663c 2040664f call mouse_check_discovery_timeout_timer 
+663d 20406656 call mouse_check_direct_timeout_timer 
+663e 20406664 call mouse_check_no_data_timeout_timer 
+663f 6800c820 fetch 1 ,mem_mouse_mode_state 
+6640 2fe1fe02 compare mouse_mode_state_ble ,pdata ,0xff 
+6641 2040e648 call mouse4_0_bb_event_100ms ,true 
+6642 6800c820 fetch 1 ,mem_mouse_mode_state 
+6643 2fe1fe01 compare mouse_mode_state_bt ,pdata ,0xff 
+6644 2040e646 call mouse3_0_bb_event_100ms ,true 
+6645 20206637 branch mouse_bb_event_100ms_loop 
+
+mouse3_0_bb_event_100ms:
+6646 2040665d call mouse_check_blank_data_timeout_timer 
+6647 2020654c branch mouse_send_blank_packet_timer 
+
+mouse4_0_bb_event_100ms:
+6648 20600000 rtn 
+
+mouse_check_hid_handshake_timer:
+6649 6800c7f2 fetch 1 ,mem_hid_handshake_timer_count 
+664a 207a0000 rtn blank 
+664b 1fe0ffff increase -1 ,pdata 
+664c 6000c7f2 store 1 ,mem_hid_handshake_timer_count 
+664d 247a0000 nrtn blank 
+664e 2020668a branch mouse_bt_hid_handshake 
+
+mouse_check_discovery_timeout_timer:
+664f 68014812 fetch 2 ,mem_mouse_discovery_timer 
+6650 207a0000 rtn blank 
+6651 1fe0ffff increase -1 ,pdata 
+6652 60014812 store 2 ,mem_mouse_discovery_timer 
+6653 247a0000 nrtn blank 
+6654 204066a6 call mouse_stop_discovery 
+6655 20203f9a branch app_enter_hibernate 
+
+mouse_check_direct_timeout_timer:
+6656 68014814 fetch 2 ,mem_mouse_direct_timer 
+6657 207a0000 rtn blank 
+6658 1fe0ffff increase -1 ,pdata 
+6659 60014814 store 2 ,mem_mouse_direct_timer 
+665a 247a0000 nrtn blank 
+665b 20403f84 call app_ble_stop_direct_adv 
+665c 20203f9a branch app_enter_hibernate 
+
+mouse_check_blank_data_timeout_timer:
+665d 68014818 fetch 2 ,mem_mouse_blank_data_timer 
+665e 207a0000 rtn blank 
+665f 1fe0ffff increase -1 ,pdata 
+6660 60014818 store 2 ,mem_mouse_blank_data_timer 
+6661 247a0000 nrtn blank 
+6662 70481a00 jam 0 ,mem_mouse_send_blank_timer 
+6663 20600000 rtn 
+
+mouse_check_no_data_timeout_timer:
+6664 68014816 fetch 2 ,mem_mouse_no_data_timer 
+6665 207a0000 rtn blank 
+6666 1fe0ffff increase -1 ,pdata 
+6667 60014816 store 2 ,mem_mouse_no_data_timer 
+6668 247a0000 nrtn blank 
+6669 202066b1 branch mouse_disconnect 
+
+mouse_bb_event_discovery_btn:
+666a 793f8025 set0 mark_ext_patch ,mark 
+666b 44e3c018 bpatch patch18_7 ,mem_patch18 
+666c 70481a00 jam 0 ,mem_mouse_send_blank_timer 
+666d 70480b01 jam 1 ,mem_reconnect_timeout 
+666e 58000000 setarg 0 
+666f 60014814 store 2 ,mem_mouse_direct_timer 
+6670 204066b1 call mouse_disconnect 
+6671 6800c132 fetch 1 ,mem_device_option 
+6672 2feffe01 isolate1 mode_4_mouse ,pdata 
+6673 2040e688 call mouse4_0_bb_event_discovery_btn ,true 
+6674 6800c132 fetch 1 ,mem_device_option 
+6675 2feffe00 isolate1 mode_3_mouse ,pdata 
+6676 2040e684 call mouse3_0_bb_event_discovery_btn ,true 
+6677 20403fa6 call app_lpm_mult_disable 
+6678 20206697 branch mouse_start_discovery 
+
+mouse3_0_check_reconn_target:
+6679 68034274 fetch 6 ,mem_hci_plap 
+667a 203a3f79 branch app_bt_start_discovery_short ,blank 
+667b 20203f6e branch app_bt_start_reconnect 
+
+mouse4_0_check_reconn_target:
+667c 68034274 fetch 6 ,mem_hci_plap 
+667d 203a6682 branch mouse4_0_no_reconn_target ,blank 
+667e 6801480c fetch 2 ,mem_mouse_direct_timeout 
+667f 60014814 store 2 ,mem_mouse_direct_timer 
+6680 20403fa4 call app_lpm_mult_enable 
+6681 20203f82 branch app_ble_start_direct_adv 
+
+mouse4_0_no_reconn_target:
+6682 20403f94 call app_led_start_blink 
+6683 20203f88 branch app_ble_start_adv 
+
+mouse3_0_bb_event_discovery_btn:
+6684 680147f4 fetch 2 ,mem_ui_state_map 
+6685 2feffe07 isolate1 ui_state_bt_reconnect ,pdata 
+6686 2040bf75 call app_bt_reconnect_cancel ,true 
+6687 20600000 rtn 
+
+mouse4_0_bb_event_discovery_btn:
+6688 20405b30 call le_clean_att_list_handle_enable 
+6689 20600000 rtn 
+
+mouse_bt_hid_handshake:
+668a 70427f01 jam app_handshake_done ,mem_app_handshake_flag 
+668b 20403fa4 call app_lpm_mult_enable 
+668c 20403fa2 call app_bt_store_reconn_info 
+668d 70482001 jam mouse_mode_state_bt ,mem_mouse_mode_state 
+668e 58000000 setarg 0 
+668f 600147f0 store 2 ,mem_discovery_timeout_timer_count 
+6690 6000c7f2 store 1 ,mem_hid_handshake_timer_count 
+6691 20403f9e call app_bt_enter_sniff 
+6692 2020655a branch mouse_send_blank_packet_timer_init 
+
+mouse_check_reconn_target:
+6693 6800c2a9 fetch 1 ,mem_xrecord_mode 
+6694 c019e679 beq rec_3_mode ,mouse3_0_check_reconn_target 
+6695 c01a667c beq rec_4_mode ,mouse4_0_check_reconn_target 
+6696 20206697 branch mouse_start_discovery 
+
+mouse_start_discovery:
+6697 793f8025 set0 mark_ext_patch ,mark 
+6698 44e44019 bpatch patch19_0 ,mem_patch19 
+6699 6800c4f9 fetch 1 ,mem_le_lap 
+669a 1fe0fe01 increase 1 ,pdata 
+669b 6000c4f9 store 1 ,mem_le_lap 
+669c 20403fa6 call app_lpm_mult_disable 
+669d 680147fe fetch 2 ,mem_discovery_timeout 
+669e 60014812 store 2 ,mem_mouse_discovery_timer 
+669f 6800c132 fetch 1 ,mem_device_option 
+66a0 2feffe01 isolate1 mode_4_mouse ,pdata 
+66a1 2040bf88 call app_ble_start_adv ,true 
+66a2 6800c132 fetch 1 ,mem_device_option 
+66a3 2feffe00 isolate1 mode_3_mouse ,pdata 
+66a4 2040bf7c call app_bt_start_discovery ,true 
+66a5 20203f94 branch app_led_start_blink 
+
+mouse_stop_discovery:
+66a6 793f8025 set0 mark_ext_patch ,mark 
+66a7 44e4c019 bpatch patch19_1 ,mem_patch19 
+66a8 58000000 setarg 0 
+66a9 60014812 store 2 ,mem_mouse_discovery_timer 
+66aa 6800c132 fetch 1 ,mem_device_option 
+66ab 2feffe01 isolate1 mode_4_mouse ,pdata 
+66ac 2040bf86 call app_ble_stop_adv ,true 
+66ad 6800c132 fetch 1 ,mem_device_option 
+66ae 2feffe00 isolate1 mode_3_mouse ,pdata 
+66af 2040bf7e call app_bt_stop_discovery ,true 
+66b0 20203f98 branch app_led_stop_blink 
+
+mouse_disconnect:
+66b1 793f8025 set0 mark_ext_patch ,mark 
+66b2 44e54019 bpatch patch19_2 ,mem_patch19 
+66b3 58000000 setarg 0 
+66b4 60014816 store 2 ,mem_mouse_no_data_timer 
+66b5 680147f4 fetch 2 ,mem_ui_state_map 
+66b6 c284bf90 bbit1 ui_state_ble_connected ,app_ble_disconnect 
+66b7 680147f4 fetch 2 ,mem_ui_state_map 
+66b8 c2803f77 bbit1 ui_state_bt_connected ,app_bt_disconnect 
+66b9 20600000 rtn 
+
+eeprom_store_mouse_dpi:
+66ba 793f8025 set0 mark_ext_patch ,mark 
+66bb 44e5c019 bpatch patch19_3 ,mem_patch19 
+66bc d8400001 arg 1 ,temp 
+66bd da20481b arg mem_mouse_dpi ,rega 
+66be da4000c6 arg mouse_dpi_eeprom_addr ,regb 
+66bf 2020683e branch iicd_write_eep_data 
+
+eeprom_load_mouse_dpi:
+66c0 793f8025 set0 mark_ext_patch ,mark 
+66c1 44e64019 bpatch patch19_4 ,mem_patch19 
+66c2 d8400001 arg 1 ,temp 
+66c3 da20481b arg mem_mouse_dpi ,rega 
+66c4 da4000c6 arg mouse_dpi_eeprom_addr ,regb 
+66c5 2020681d branch iicd_read_eep_data 
+
+twspi_reset:
+66c6 793f8025 set0 mark_ext_patch ,mark 
+66c7 44ff401f bpatch patch1f_6 ,mem_patch1f 
+66c8 68108073 hfetch 1 ,core_gpio_oe3 
+66c9 d8400006 arg 0x06 ,temp 
+66ca 9841fe00 ior temp ,pdata 
+66cb 60108073 hstore 1 ,core_gpio_oe3 
+66cc 68108077 hfetch 1 ,core_gpio_out3 
+66cd 9841fe00 ior temp ,pdata 
+66ce 60108077 hstore 1 ,core_gpio_out3 
+66cf 70808100 hjam 0 ,core_gpio_sel1 
+66d0 68108077 hfetch 1 ,core_gpio_out3 
+66d1 793ffe01 set0 1 ,pdata 
+66d2 793ffe02 set0 2 ,pdata 
+66d3 60108077 hstore 1 ,core_gpio_out3 
+66d4 2000001e nop 30 
+66d5 70808101 hjam 1 ,core_gpio_sel1 
+66d6 20600000 rtn 
+
+twspi_write:
+66d7 202067a1 branch spid_write_reg 
+
+twspi_read:
+66d8 202067a9 branch spid_read_reg 
+
+read_function_aes:
+66d9 243466dd nbranch read_function ,user 
+66da 68108085 hfetch 1 ,core_gpio_key2 
+66db 1fe1fe20 or_into 0x20 ,pdata 
+66dc 60108085 hstore 1 ,core_gpio_key2 
+
+read_function:
+66dd 18427c00 copy temp ,null 
+66de 2022e6e0 branch read_fuction_zero ,zero 
+66df 1a627a00 copy regc ,pc 
+
+read_fuction_zero:
+66e0 2fcc0000 isolate0 0 ,null 
+66e1 20206763 branch set_ucode_status 
+
+get_block_header:
+66e2 18000404 force 4 ,temp 
+
+get_block_header0:
+66e3 da20022c arg mem_ucode_buf ,rega 
+66e4 68108085 hfetch 1 ,core_gpio_key2 
+66e5 1fe17edf and_into 0xdf ,pdata 
+66e6 60108085 hstore 1 ,core_gpio_key2 
+66e7 204066dd call read_function 
+66e8 da2055aa arg 0x55aa ,rega 
+66e9 6801022c fetch 2 ,mem_ucode_buf 
+66ea e8c90000 ifetcht 2 ,contr 
+66eb 9a267c00 isub rega ,null 
+66ec 20600000 rtn 
+
+read_first_block:
+66ed d8400002 arg 2 ,temp 
+66ee da200232 arg mem_ucode_ptr ,rega 
+66ef 204066dd call read_function 
+66f0 68010232 fetch 2 ,mem_ucode_ptr 
+66f1 60010225 store 2 ,mem_addr_mi 
+66f2 205466f4 call get_iv ,user 
+66f3 20600000 rtn 
+
+get_iv:
+66f4 d8400010 arg 16 ,temp 
+66f5 da200234 arg mem_ucode_keybuf ,rega 
+66f6 68108085 hfetch 1 ,core_gpio_key2 
+66f7 1fe17edf and_into 0xdf ,pdata 
+66f8 60108085 hstore 1 ,core_gpio_key2 
+66f9 204066dd call read_function 
+66fa d8c00234 arg mem_ucode_keybuf ,contr 
+66fb df200010 arg 16 ,loopcnt 
+66fc 20407584 call aes_load_data 
+66fd 2040753d call aes_init 
+66fe 2040759d call aes_clear_data 
+66ff 20207534 branch do_aes_cbc 
+
+load_storage:
+6700 7856fc00 disable match 
+6701 204066e2 call get_block_header 
+6702 24628000 nrtn zero 
+6703 7836fc00 enable match 
+6704 70802380 hjam 0x80 ,core_ucode_ctrl 
+6705 70802200 hjam 0 ,core_ucode_hi 
+6706 70802400 hjam 0 ,core_ucode_low 
+6707 da208025 arg core_ucode_data ,rega 
+6708 204066d9 call read_function_aes 
+6709 70802300 hjam 0x0 ,core_ucode_ctrl 
+670a 204066e2 call get_block_header 
+670b 24628000 nrtn zero 
+670c 18007e00 force 0 ,pdata 
+670d 60110288 hstore 2 ,core_docd_paddr 
+670e da20828a arg core_docd_pdata ,rega 
+670f 204066d9 call read_function_aes 
+
+load_storage_loop:
+6710 d8400006 arg 6 ,temp 
+6711 204066e3 call get_block_header0 
+6712 24628000 nrtn zero 
+6713 e8c10000 ifetch 2 ,contr 
+6714 98002200 iforce rega 
+6715 204066dd call read_function 
+6716 20206710 branch load_storage_loop 
+
+reload_eeprom:
+6717 20407f36 call clean_mem 
+6718 58001000 setarg 0x1000 
+6719 60010225 store 2 ,mem_addr_mi 
+671a da606823 arg iicd_read_eep ,regc 
+671b df200002 arg 2 ,loopcnt 
+
+reload_eeprom_loop:
+671c 204066e2 call get_block_header 
+671d 24628000 nrtn zero 
+671e 68010225 fetch 2 ,mem_addr_mi 
+671f 1ff0fe00 byteswap pdata ,pdata 
+6720 9840fe00 iadd temp ,pdata 
+6721 1ff0fe00 byteswap pdata ,pdata 
+6722 60010225 store 2 ,mem_addr_mi 
+6723 c200671c loop reload_eeprom_loop 
+6724 20206710 branch load_storage_loop 
+
+loadcode:
+6725 70805025 hjam 0x25 ,core_clkoff 
+6726 70828005 hjam 5 ,core_docd_ctrl 
+6727 20407f36 call clean_mem 
+
+loadcode_lpm:
+6728 78547c00 disable user 
+6729 2040688a call otp_enable_chgpump 
+672a 58000000 setarg otp_ucode_flag 
+672b da200221 arg mem_otp_ucode_flag ,rega 
+672c d8400002 arg 2 ,temp 
+672d 204068d3 call otpd_read_data 
+672e 68010221 fetch 2 ,mem_otp_ucode_flag 
+672f c303e738 bbit0 otp_uflag_aes ,loadcode_otp 
+6730 580007f0 setarg otp_ucode_aeskey 
+6731 da200234 arg mem_ucode_keybuf ,rega 
+6732 d8400010 arg 16 ,temp 
+6733 204068d3 call otpd_read_data 
+6734 70800608 hjam lock_otp ,core_misc_ctrl 
+6735 d8c00234 arg mem_ucode_keybuf ,contr 
+6736 20407590 call load_key 
+6737 78347c00 enable user 
+
+loadcode_otp:
+6738 68010221 fetch 2 ,mem_otp_ucode_flag 
+6739 1ff0fe00 byteswap pdata ,pdata 
+673a d84007ff arg 0x7ff ,temp 
+673b 98417e00 iand temp ,pdata 
+673c 2022e744 branch loadcode_spi ,zero 
+673d 2040688f call otp_set_addr 
+673e da6068d8 arg otpd_read_code ,regc 
+673f 205466f4 call get_iv ,user 
+6740 20406700 call load_storage 
+6741 68008220 fetch 1 ,mem_ucode_status 
+6742 2fe00603 compare 3 ,pdata ,3 
+6743 2420e738 nbranch loadcode_otp ,true 
+
+loadcode_spi:
+6744 2040688d call otp_disable_chgpump 
+6745 68008221 fetch 1 ,mem_otp_ucode_flag 
+6746 c282e751 bbit1 otp_uflag_skip_flash ,loadcode_iic 
+6747 58000000 setarg 0x0 
+6748 60018224 store 3 ,mem_addr_hi 
+6749 204067b9 call spid_init_flash 
+674a da6067db arg spid_read_flash ,regc 
+674b 204066ed call read_first_block 
+674c 20406700 call load_storage 
+674d 2436e751 nbranch loadcode_iic ,match 
+674e 68008220 fetch 1 ,mem_ucode_status 
+674f 2fe00603 compare 3 ,pdata ,3 
+6750 2420e744 nbranch loadcode_spi ,true 
+
+loadcode_iic:
+6751 68008221 fetch 1 ,mem_otp_ucode_flag 
+6752 c283675d bbit1 otp_uflag_skip_eep ,loadcode_hci 
+6753 58000000 setarg 0x0 
+6754 60010225 store 2 ,mem_addr_mi 
+6755 da606823 arg iicd_read_eep ,regc 
+6756 20406805 call iicd_init_12m 
+6757 204066ed call read_first_block 
+6758 20406700 call load_storage 
+6759 2436e75d nbranch loadcode_hci ,match 
+675a 68008220 fetch 1 ,mem_ucode_status 
+675b 2fe00603 compare 3 ,pdata ,3 
+675c 2420e751 nbranch loadcode_iic ,true 
+
+loadcode_hci:
+675d 70805021 hjam 0x21 ,core_clkoff 
+675e 68008221 fetch 1 ,mem_otp_ucode_flag 
+675f c4020000 rtnbit0 otp_uflag_hci 
+6760 20404461 call hci_init 
+
+loadcode_hci_loop:
+6761 204044a3 call hci_rx_packet 
+6762 20206761 branch loadcode_hci_loop 
+
+set_ucode_status:
+6763 68008220 fetch 1 ,mem_ucode_status 
+6764 1fe3fe00 lshift pdata ,pdata 
+6765 7920fe00 setflag true ,0 ,pdata 
+6766 2a2c000f isolate0 15 ,rega 
+6767 20608000 rtn true 
+6768 60008220 store 1 ,mem_ucode_status 
+6769 20600000 rtn 
+
+decrypt_code:
+676a 68108085 hfetch 1 ,core_gpio_key2 
+676b c4028000 rtnbit0 5 
+676c 20206770 branch decrypt_code_skip 
+
+decrypt_code_loop:
+676d 6810812c hfetch 1 ,core_dma_status 
+676e afefffff qisolate1 pdata 
+676f 20608000 rtn true 
+
+decrypt_code_skip:
+6770 68108108 hfetch 1 ,core_misc_status 
+6771 c300e76d bbit0 1 ,decrypt_code_loop 
+6772 20407534 call do_aes_cbc 
+6773 2020676d branch decrypt_code_loop 
+
+save_ucode:
+6774 1f220400 copy loopcnt ,temp 
+6775 6009423c storet 2 ,mem_patch_len 
+6776 70802380 hjam 0x80 ,core_ucode_ctrl 
+6777 70802200 hjam 0 ,core_ucode_hi 
+6778 70802400 hjam 0 ,core_ucode_low 
+6779 6001423a store 2 ,mem_patch_ptr 
+677a 98000a00 iforce contw 
+677b 1f2bf200 lshift2 loopcnt ,loopcnt 
+
+save_ucode_loop:
+677c 68108025 hfetch 1 ,core_ucode_data 
+677d e0a08000 istore 1 ,contw 
+677e c200677c loop save_ucode_loop 
+677f 70802300 hjam 0x0 ,core_ucode_ctrl 
+6780 20600000 rtn 
+
+load_ucode:
+6781 6801423a fetch 2 ,mem_patch_ptr 
+6782 207a0000 rtn blank 
+6783 70802380 hjam 0x80 ,core_ucode_ctrl 
+6784 70802200 hjam 0 ,core_ucode_hi 
+6785 70802400 hjam 0 ,core_ucode_low 
+6786 6809423c fetcht 2 ,mem_patch_len 
+6787 184bf200 lshift2 temp ,loopcnt 
+6788 98000c00 iforce contr 
+
+load_ucode_loop:
+6789 e8c08000 ifetch 1 ,contr 
+678a 60108025 hstore 1 ,core_ucode_data 
+678b c2006789 loop load_ucode_loop 
+678c 70802300 hjam 0x0 ,core_ucode_ctrl 
+678d 20600000 rtn 
+
+spid_init:
+678e 793f8025 set0 mark_ext_patch ,mark 
+678f 44ffc01f bpatch patch1f_7 ,mem_patch1f 
+6790 70808675 hjam 0x75 ,core_spid_ctrl 
+6791 7080870a hjam 10 ,core_spid_delay 
+6792 58000223 setarg mem_spid_tbuf 
+6793 6011008a hstore 2 ,core_spid_txaddr 
+6794 58000228 setarg mem_spid_rbuf 
+6795 6011008c hstore 2 ,core_spid_rxaddr 
+6796 68108081 hfetch 1 ,core_gpio_sel1 
+6797 79207e00 set1 0 ,pdata 
+6798 793ffe01 set0 1 ,pdata 
+6799 60108081 hstore 1 ,core_gpio_sel1 
+679a 20600000 rtn 
+
+spid_reset:
+679b 68108086 hfetch 1 ,core_spid_ctrl 
+679c 79207e07 set1 7 ,pdata 
+679d 60108086 hstore 1 ,core_spid_ctrl 
+679e 793ffe07 set0 7 ,pdata 
+679f 60108086 hstore 1 ,core_spid_ctrl 
+67a0 20600000 rtn 
+
+spid_write_reg:
+67a1 79207e07 set1 7 ,pdata 
+67a2 60010223 store 2 ,mem_spid_tbuf 
+67a3 79200025 set1 mark_ext_patch ,mark 
+67a4 44804020 bpatch patch20_0 ,mem_patch20 
+67a5 70808802 hjam 2 ,core_spid_txlen 
+67a6 70808e00 hjam 0 ,core_spid_rxlen 
+67a7 70800602 hjam spid_start ,core_misc_ctrl 
+67a8 202067b3 branch wait_spid_done 
+
+spid_read_reg:
+67a9 18000401 force 1 ,temp 
+
+spid_read_regs:
+67aa 60008223 store 1 ,mem_spid_tbuf 
+67ab 79200025 set1 mark_ext_patch ,mark 
+67ac 4480c020 bpatch patch20_1 ,mem_patch20 
+67ad 70808801 hjam 1 ,core_spid_txlen 
+67ae 6019008e hstoret 2 ,core_spid_rxlen 
+67af 70800602 hjam spid_start ,core_misc_ctrl 
+67b0 204067b3 call wait_spid_done 
+67b1 68008228 fetch 1 ,mem_spid_rbuf 
+67b2 20600000 rtn 
+
+wait_spid_done:
+67b3 68014177 fetch 2 ,mem_afh_error_total 
+67b4 1fe0fe01 increase 1 ,pdata 
+67b5 60014177 store 2 ,mem_afh_error_total 
+67b6 6810812c hfetch 1 ,core_dma_status 
+67b7 c301e7b3 bbit0 spid_done ,wait_spid_done 
+67b8 20600000 rtn 
+
+spid_init_flash:
+67b9 70808640 hjam 0x40 ,core_spid_ctrl 
+67ba 70808700 hjam 0x0 ,core_spid_delay 
+67bb 68108081 hfetch 1 ,core_gpio_sel1 
+67bc 793ffe00 set0 0 ,pdata 
+67bd 79207e01 set1 1 ,pdata 
+67be 60108081 hstore 1 ,core_gpio_sel1 
+67bf 58000000 setarg 0 
+67c0 60020223 store 4 ,mem_spid_tbuf 
+67c1 20600000 rtn 
+
+spid_unlock_flash:
+67c2 58000000 setarg 0 
+67c3 6011008e hstore 2 ,core_spid_rxlen 
+67c4 58000001 setarg 1 
+67c5 60108088 hstore 1 ,core_spid_txlen 
+67c6 58000223 setarg mem_spid_tbuf 
+67c7 6011008a hstore 2 ,core_spid_txaddr 
+67c8 70022306 jam 6 ,mem_spid_tbuf 
+67c9 70800602 hjam spid_start ,core_misc_ctrl 
+67ca 202067b3 branch wait_spid_done 
+
+spid_write_flash:
+67cb 18408404 increase 4 ,temp 
+67cc 60190088 hstoret 2 ,core_spid_txlen 
+67cd 1a20a3fc increase -4 ,rega 
+67ce d8400002 arg 2 ,temp 
+67cf e2288000 istoret 1 ,rega 
+67d0 1ff10400 rshift16 pdata ,temp 
+67d1 e0a88000 istoret 1 ,contw 
+67d2 1fec8400 rshift8 pdata ,temp 
+67d3 e0a88000 istoret 1 ,contw 
+67d4 e0a08000 istore 1 ,contw 
+67d5 1a227e00 deposit rega 
+67d6 6011008a hstore 2 ,core_spid_txaddr 
+67d7 58000000 setarg 0 
+67d8 6011008e hstore 2 ,core_spid_rxlen 
+67d9 70800602 hjam spid_start ,core_misc_ctrl 
+67da 202067b3 branch wait_spid_done 
+
+spid_read_flash:
+67db 6019008e hstoret 2 ,core_spid_rxlen 
+67dc 58000004 setarg 4 
+67dd 60110088 hstore 2 ,core_spid_txlen 
+67de 70022303 jam 3 ,mem_spid_tbuf 
+67df 58000223 setarg mem_spid_tbuf 
+67e0 6011008a hstore 2 ,core_spid_txaddr 
+67e1 1a227e00 deposit rega 
+67e2 6011008c hstore 2 ,core_spid_rxaddr 
+67e3 68108086 hfetch 1 ,core_spid_ctrl 
+67e4 2a2c000f isolate0 15 ,rega 
+67e5 7920fe06 setflag true ,6 ,pdata 
+67e6 60108086 hstore 1 ,core_spid_ctrl 
+67e7 70800602 hjam spid_start ,core_misc_ctrl 
+
+spi_read_flash_wait:
+67e8 6810812c hfetch 1 ,core_dma_status 
+67e9 c283e7e8 bbit1 7 ,spi_read_flash_wait 
+67ea d8e00003 arg spid_done ,queue 
+67eb 2040676a call decrypt_code 
+67ec 204067b3 call wait_spid_done 
+67ed 2feffe02 isolate1 spid_crcok ,pdata 
+67ee 20406763 call set_ucode_status 
+67ef 68008224 fetch 1 ,mem_addr_hi 
+67f0 1ff02400 lshift16 pdata ,regb 
+67f1 68008225 fetch 1 ,mem_addr_mi 
+67f2 1fed7e00 lshift8 pdata ,pdata 
+67f3 9a41a400 ior regb ,regb 
+67f4 68008226 fetch 1 ,mem_addr_lo 
+67f5 9a41fe00 ior regb ,pdata 
+67f6 9840fe00 iadd temp ,pdata 
+67f7 60008226 store 1 ,mem_addr_lo 
+67f8 1fecfe00 rshift8 pdata ,pdata 
+67f9 60008225 store 1 ,mem_addr_mi 
+67fa 1fecfe00 rshift8 pdata ,pdata 
+67fb 60008224 store 1 ,mem_addr_hi 
+67fc 20600000 rtn 
+
+iicd_init_5m:
+67fd 7080420a hjam 0xa ,core_clksel 
+67fe 70809102 hjam 2 ,core_iicd_scl_low 
+67ff 70809203 hjam 3 ,core_iicd_scl_high 
+6800 70809303 hjam 3 ,core_iicd_start_setup 
+6801 70809403 hjam 3 ,core_iicd_start_hold 
+6802 70809503 hjam 3 ,core_iicd_stop_setup 
+6803 70809602 hjam 2 ,core_iicd_data_setup 
+6804 20600000 rtn 
+
+iicd_init_12m:
+6805 70809105 hjam 5 ,core_iicd_scl_low 
+6806 70809207 hjam 7 ,core_iicd_scl_high 
+6807 70809307 hjam 7 ,core_iicd_start_setup 
+6808 70809407 hjam 7 ,core_iicd_start_hold 
+6809 70809507 hjam 7 ,core_iicd_stop_setup 
+680a 70809605 hjam 5 ,core_iicd_data_setup 
+680b 20600000 rtn 
+
+wait_iicd_done:
+680c 6810812c hfetch 1 ,core_dma_status 
+680d c302e80c bbit0 iicd_done ,wait_iicd_done 
+680e 20600000 rtn 
+
+iicd_read_data:
+680f 60008224 store 1 ,mem_iicd_tbuf 
+6810 58000224 setarg mem_iicd_tbuf 
+6811 6011009a hstore 2 ,core_iicd_txaddr 
+6812 58000001 setarg 1 
+6813 60110098 hstore 2 ,core_iicd_txlen 
+6814 6019009e hstoret 2 ,core_iicd_rxlen 
+6815 1a227e00 deposit rega 
+6816 6011009c hstore 2 ,core_iicd_rxaddr 
+6817 70809001 hjam 1 ,core_iicd_ctrl 
+6818 70800604 hjam iicd_start ,core_misc_ctrl 
+6819 2020680c branch wait_iicd_done 
+
+byteswap_addr_mi:
+681a 1ff0fe00 byteswap pdata ,pdata 
+681b 60010225 store 2 ,mem_addr_mi 
+681c 20600000 rtn 
+
+iicd_read_eep_data:
+681d 79200025 set1 mark_ext_patch ,mark 
+681e 44814020 bpatch patch20_2 ,mem_patch20 
+681f 6801429b fetch 2 ,mem_eeprom_base 
+6820 9a40fe00 iadd regb ,pdata 
+
+iicd_read_eep_adr:
+6821 1ff0fe00 byteswap pdata ,pdata 
+6822 60010225 store 2 ,mem_addr_mi 
+
+iicd_read_eep:
+6823 79200025 set1 mark_ext_patch ,mark 
+6824 4481c020 bpatch patch20_3 ,mem_patch20 
+6825 58000004 setarg 4 
+6826 60110098 hstore 2 ,core_iicd_txlen 
+6827 700224a0 jam 0xa0 ,mem_iicd_tbuf 
+6828 700227a1 jam 0xa1 ,mem_iicd_tbuf + 3 
+6829 58000224 setarg mem_iicd_tbuf 
+682a 6011009a hstore 2 ,core_iicd_txaddr 
+682b 6019009e hstoret 2 ,core_iicd_rxlen 
+682c 1a227e00 deposit rega 
+682d 6011009c hstore 2 ,core_iicd_rxaddr 
+682e 58000002 setarg 2 
+682f 2a2c000f isolate0 15 ,rega 
+6830 7920fe00 setflag true ,0 ,pdata 
+6831 60108090 hstore 1 ,core_iicd_ctrl 
+6832 70800604 hjam iicd_start ,core_misc_ctrl 
+6833 d8e00005 arg iicd_done ,queue 
+6834 2040676a call decrypt_code 
+6835 2040680c call wait_iicd_done 
+6836 2feffe04 isolate1 iicd_crcok ,pdata 
+6837 20406763 call set_ucode_status 
+6838 68010225 fetch 2 ,mem_addr_mi 
+6839 1ff0fe00 byteswap pdata ,pdata 
+683a 9840fe00 iadd temp ,pdata 
+683b 1ff0fe00 byteswap pdata ,pdata 
+683c 60010225 store 2 ,mem_addr_mi 
+683d 20600000 rtn 
+
+iicd_write_eep_data:
+683e 79200025 set1 mark_ext_patch ,mark 
+683f 44824020 bpatch patch20_4 ,mem_patch20 
+6840 6801429b fetch 2 ,mem_eeprom_base 
+6841 9a40fe00 iadd regb ,pdata 
+
+iicd_write_ota_data:
+6842 60010161 store 2 ,mem_pdatatemp 
+6843 79200025 set1 mark_ext_patch ,mark 
+6844 4482c020 bpatch patch20_5 ,mem_patch20 
+6845 600902a0 storet 2 ,mem_temp 
+6846 1a227e00 copy rega ,pdata 
+6847 600102b7 store 2 ,mem_contr 
+
+iicd_write_eep_loop:
+6848 20406858 call iicd_eep_transparency 
+6849 680902b0 fetcht 2 ,mem_regb 
+684a 680102b7 fetch 2 ,mem_contr 
+684b 1fe22200 copy pdata ,rega 
+684c 68010161 fetch 2 ,mem_pdatatemp 
+684d 20406870 call iicd_write_eep 
+684e 680102b0 fetch 2 ,mem_regb 
+684f 680902b7 fetcht 2 ,mem_contr 
+6850 98408400 iadd temp ,temp 
+6851 600902b7 storet 2 ,mem_contr 
+6852 68090161 fetcht 2 ,mem_pdatatemp 
+6853 98408400 iadd temp ,temp 
+6854 60090161 storet 2 ,mem_pdatatemp 
+6855 680102a0 fetch 2 ,mem_temp 
+6856 243a6848 nbranch iicd_write_eep_loop ,blank 
+6857 20600000 rtn 
+
+iicd_eep_transparency:
+6858 79200025 set1 mark_ext_patch ,mark 
+6859 44834020 bpatch patch20_6 ,mem_patch20 
+685a 680142aa fetch 2 ,mem_eeprom_block_size 
+685b 1fe0ffff increase -1 ,pdata 
+685c 68090161 fetcht 2 ,mem_pdatatemp 
+685d 9841fe00 ior temp ,pdata 
+685e 1fe0fe01 increase 1 ,pdata 
+685f 600182b4 store 3 ,mem_regc 
+6860 680102a0 fetch 2 ,mem_temp 
+6861 9840fe00 iadd temp ,pdata 
+6862 680982b4 fetcht 3 ,mem_regc 
+6863 98467e00 isub temp ,pdata 
+6864 2421686b nbranch iicd_eep_deal_short_packet ,positive 
+6865 600102a0 store 2 ,mem_temp 
+6866 680182b4 fetch 3 ,mem_regc 
+6867 68090161 fetcht 2 ,mem_pdatatemp 
+6868 98467e00 isub temp ,pdata 
+6869 600102b0 store 2 ,mem_regb 
+686a 20600000 rtn 
+
+iicd_eep_deal_short_packet:
+686b 680102a0 fetch 2 ,mem_temp 
+686c 600102b0 store 2 ,mem_regb 
+686d 58000000 setarg 0 
+686e 600102a0 store 2 ,mem_temp 
+686f 20600000 rtn 
+
+iicd_write_eep:
+6870 1fe22400 copy pdata ,regb 
+6871 79200025 set1 mark_ext_patch ,mark 
+6872 4483c020 bpatch patch20_7 ,mem_patch20 
+6873 1a427e00 copy regb ,pdata 
+6874 18408403 increase 3 ,temp 
+6875 60190098 hstoret 2 ,core_iicd_txlen 
+6876 1a20a3fd increase -3 ,rega 
+6877 ea298000 ifetcht 3 ,rega 
+6878 18422400 copy temp ,regb 
+6879 d84000a0 arg 0xa0 ,temp 
+687a e2288000 istoret 1 ,rega 
+687b 1ff0fe00 byteswap pdata ,pdata 
+687c e0a10000 istore 2 ,contw 
+687d 1a227e00 deposit rega 
+687e 6011009a hstore 2 ,core_iicd_txaddr 
+687f 58000000 setarg 0 
+6880 6011009e hstore 2 ,core_iicd_rxlen 
+6881 70809001 hjam 1 ,core_iicd_ctrl 
+6882 70800604 hjam iicd_start ,core_misc_ctrl 
+6883 2040680c call wait_iicd_done 
+6884 1a427e00 copy regb ,pdata 
+6885 e2218000 istore 3 ,rega 
+6886 20002710 nop 10000 
+6887 20002710 nop 10000 
+6888 20002710 nop 10000 
+6889 20600000 rtn 
+
+otp_enable_chgpump:
+688a 70897370 hjam 0x70 ,rfen_chgpump 
+688b 20000bb8 nop param_chgpump_delay 
+688c 20600000 rtn 
+
+otp_disable_chgpump:
+688d 70897330 hjam 0x30 ,rfen_chgpump 
+688e 20600000 rtn 
+
+otp_set_addr:
+688f 1fe9fe00 lshift3 pdata ,pdata 
+6890 60110045 hstore 2 ,core_otp_addr 
+6891 70804b00 hjam 0 ,core_otpd_ctrl 
+6892 20600000 rtn 
+
+otp_write:
+6893 2040688f call otp_set_addr 
+6894 204068c0 call otp_ce 
+
+otp_program:
+6895 ea288000 ifetcht 1 ,rega 
+6896 1a20a201 increase 1 ,rega 
+6897 18000e00 force 0 ,queue 
+
+otp_program_bit:
+6898 a84c0000 qisolate0 temp 
+6899 2020e8b7 branch otp_skip_0 ,true 
+689a 68108046 hfetch 1 ,core_otp_din 
+689b 79207e06 set1 6 ,pdata 
+689c 79207e07 set1 7 ,pdata 
+689d 60108046 hstore 1 ,core_otp_din 
+689e 70804702 hjam 0x02 ,core_otp_ctrl 
+689f 70804782 hjam 0x82 ,core_otp_ctrl 
+68a0 793ffe07 set0 7 ,pdata 
+68a1 60108046 hstore 1 ,core_otp_din 
+68a2 7080478a hjam 0x8a ,core_otp_ctrl 
+68a3 2000000b nop 11 
+68a4 708047ca hjam 0xca ,core_otp_ctrl 
+68a5 20000021 nop 33 
+68a6 7080474a hjam 0x4a ,core_otp_ctrl 
+68a7 2000002c nop 44 
+68a8 708047ca hjam 0xca ,core_otp_ctrl 
+68a9 20000016 nop 22 
+68aa 7080478a hjam 0x8a ,core_otp_ctrl 
+68ab 20000021 nop 33 
+68ac 70804782 hjam 0x82 ,core_otp_ctrl 
+68ad 20000001 nop 1 
+68ae 70804792 hjam 0x92 ,core_otp_ctrl 
+68af 2000000a nop 10 
+68b0 708047b2 hjam 0xb2 ,core_otp_ctrl 
+68b1 68108007 hfetch 1 ,core_otp_rdata 
+68b2 70804792 hjam 0x92 ,core_otp_ctrl 
+68b3 20000001 nop 1 
+68b4 70804782 hjam 0x82 ,core_otp_ctrl 
+68b5 afec0000 qisolate0 pdata 
+68b6 2020e898 branch otp_program_bit ,true 
+
+otp_skip_0:
+68b7 68110045 hfetch 2 ,core_otp_addr 
+68b8 1fe0fe01 increase 1 ,pdata 
+68b9 60110045 hstore 2 ,core_otp_addr 
+68ba 18e08e01 increase 1 ,queue 
+68bb 28e01e08 compare 8 ,queue ,0xf 
+68bc 2420e898 nbranch otp_program_bit ,true 
+68bd c2006895 loop otp_program 
+68be 70804783 hjam 0x83 ,core_otp_ctrl 
+68bf 20600000 rtn 
+
+otp_ce:
+68c0 70804782 hjam 0x82 ,core_otp_ctrl 
+68c1 2000000c nop 12 
+68c2 70804780 hjam 0x80 ,core_otp_ctrl 
+68c3 70804782 hjam 0x82 ,core_otp_ctrl 
+68c4 20000096 nop 150 
+68c5 20600000 rtn 
+
+otpd_read_init:
+68c6 204068c0 call otp_ce 
+
+otpd_read_special:
+68c7 708047a2 hjam 0xa2 ,core_otp_ctrl 
+68c8 1a227e00 deposit rega 
+68c9 60110048 hstore 2 ,core_otpd_addr 
+68ca 7920040b set1 11 ,temp 
+68cb 2fec000f isolate0 15 ,pdata 
+68cc 7920840f setflag true ,15 ,temp 
+68cd 6019004a hstoret 2 ,core_otpd_len 
+68ce 70800601 hjam otpd_start ,core_misc_ctrl 
+68cf 20600000 rtn 
+
+otpd_wait_end:
+68d0 6810812c hfetch 1 ,core_dma_status 
+68d1 c300e8d0 bbit0 otpd_done ,otpd_wait_end 
+68d2 20600000 rtn 
+
+otpd_read_data:
+68d3 2040688f call otp_set_addr 
+68d4 204068c6 call otpd_read_init 
+68d5 204068d0 call otpd_wait_end 
+68d6 70804783 hjam 0x83 ,core_otp_ctrl 
+68d7 20600000 rtn 
+
+otpd_read_code:
+68d8 68110124 hfetch 2 ,core_current_otp_addr 
+68d9 60110045 hstore 2 ,core_otp_addr 
+68da 204068c6 call otpd_read_init 
+68db d8e00001 arg otpd_done ,queue 
+68dc 2040676a call decrypt_code 
+68dd 204068d0 call otpd_wait_end 
+68de 2feffe00 isolate1 otpd_crcok ,pdata 
+68df 20406763 call set_ucode_status 
+68e0 70804783 hjam 0x83 ,core_otp_ctrl 
+68e1 20600000 rtn 
+
+uartd_rx_cnt_got_first_byte:
+68e2 70427a01 jam 1 ,mem_uartd_rxitems_got_data 
+68e3 18000e0e force uart_rx_timer ,queue 
+68e4 6801427c fetch 2 ,mem_uartd_rx_timeout 
+68e5 20207e4c branch timer_init 
+
+uartd_rx_cnt_with_threshold:
+68e6 68110112 hfetch 2 ,core_uart_rxitems 
+68e7 207a0000 rtn blank 
+68e8 6808c27b fetcht 1 ,mem_uartd_rxitems_threshold 
+68e9 98467c00 isub temp ,null 
+68ea 202168f2 branch uartd_rx_cnt_rtn_value ,positive 
+68eb 6800c27a fetch 1 ,mem_uartd_rxitems_got_data 
+68ec 203a68e2 branch uartd_rx_cnt_got_first_byte ,blank 
+68ed d8e0000e arg uart_rx_timer ,queue 
+68ee 20407e53 call timer_check 
+68ef 203a68f2 branch uartd_rx_cnt_rtn_value ,blank 
+68f0 58000000 setarg 0 
+68f1 20600000 rtn 
+
+uartd_rx_cnt_rtn_value:
+68f2 18000e0e force uart_rx_timer ,queue 
+68f3 20407e4b call timer_stop 
+68f4 70427a00 jam 0 ,mem_uartd_rxitems_got_data 
+68f5 68110112 hfetch 2 ,core_uart_rxitems 
+68f6 20600000 rtn 
+
+uartd_prepare_tx:
+68f7 6811005e hfetch 2 ,core_uart_twptr 
+68f8 98001400 iforce contwu 
+68f9 20600000 rtn 
+
+uartd_send:
+68fa 19427e00 deposit contwu 
+68fb 6011005e hstore 2 ,core_uart_twptr 
+68fc 20600000 rtn 
+
+uartd_prepare_rx:
+68fd 68110112 hfetch 2 ,core_uart_rxitems 
+68fe 207a0000 rtn blank 
+68ff 98007200 iforce loopcnt 
+6900 68110058 hfetch 2 ,core_uart_rrptr 
+6901 98000600 iforce contru 
+6902 20600000 rtn 
+
+uartd_rxdone_by_len:
+6903 68110058 hfetch 2 ,core_uart_rrptr 
+6904 9840fe00 iadd temp ,pdata 
+6905 1fe20600 copy pdata ,contru 
+
+uartd_rxdone:
+6906 18627e00 deposit contru 
+6907 60110058 hstore 2 ,core_uart_rrptr 
+6908 20600000 rtn 
+
+uart_set_baud_by_mem:
+6909 680142ac fetch uart_baud_len ,mem_baud 
+690a 60110052 hstore uart_baud_len ,core_uart_baud 
+690b 20600000 rtn 
+
+eeprom_store_le_reconn_info:
+690c 680303d0 fetch 6 ,mem_le_plap 
+690d 600301b4 store 6 ,mem_temp_lap 
+690e 7001b334 jam rec_4_mode ,mem_record_bt_mode 
+690f 20206913 branch eeprom_store_reconn_info 
+
+eeprom_store_bd_reconn_info:
+6910 68030040 fetch 6 ,mem_plap 
+6911 600301b4 store 6 ,mem_temp_lap 
+6912 7001b333 jam rec_3_mode ,mem_record_bt_mode 
+
+eeprom_store_reconn_info:
+6913 79200025 set1 mark_ext_patch ,mark 
+6914 44844021 bpatch patch21_0 ,mem_patch21 
+6915 20406954 call eeprom_store_remote_bdaddr 
+6916 20406950 call eeprom_store_last_record_index 
+6917 680081b3 fetch 1 ,mem_record_bt_mode 
+6918 c01a691b beq rec_4_mode ,eeprom_store_rec_4_mode 
+6919 c019e97c beq rec_3_mode ,eeprom_store_link_key 
+691a 20600000 rtn 
+
+eeprom_store_rec_4_mode:
+691b 2040697a call eeprom_store_le_ltl 
+691c 20206963 branch eeprom_store_le_local_addr 
+
+eeprom_load_reconn_info:
+691d 79200025 set1 mark_ext_patch ,mark 
+691e 4484c021 bpatch patch21_1 ,mem_patch21 
+691f 20406929 call eeprom_load_reconn_bdaddr 
+6920 680081b2 fetch 1 ,mem_select_list_item 
+6921 c17f8000 rtneq 0xff 
+6922 680301b4 fetch 6 ,mem_temp_lap 
+6923 60034274 store 6 ,mem_hci_plap 
+6924 680081b3 fetch 1 ,mem_record_bt_mode 
+6925 6000c2a9 store 1 ,mem_xrecord_mode 
+6926 c019e92d beq rec_3_mode ,eeprom_load_rec_3_mode 
+6927 c01a692f beq rec_4_mode ,eeprom_load_rec_4_mode 
+6928 20600000 rtn 
+
+eeprom_load_reconn_bdaddr:
+6929 2040694c call eeprom_load_last_record_index 
+692a 680081b2 fetch 1 ,mem_select_list_item 
+692b c17f8000 rtneq 0xff 
+692c 2020696b branch eeprom_load_remote_bdaddr 
+
+eeprom_load_rec_3_mode:
+692d 20406983 call eeprom_load_link_key 
+692e 202069a2 branch check_link_key_load 
+
+eeprom_load_rec_4_mode:
+692f 20406981 call eeprom_load_ltk_key 
+6930 202069a8 branch check_ltk_load 
+
+eeprom_clear_bd_reconn_info:
+6931 20406988 call eeprom_load_bdaddr_list 
+6932 78547c00 disable user 
+6933 2040698c call find_addr_from_bd_list 
+6934 2434427f nbranch at_error_rev_end ,user 
+
+eeprom_clear_reconn_info_common:
+6935 680901ba fetcht 2 ,mem_list_item_ptr 
+6936 184085ff increase -1 ,temp 
+6937 58000000 setarg 0 
+6938 e0438000 istore 7 ,temp 
+6939 d840001c arg 28 ,temp 
+693a da200195 arg mem_bdaddr_list_buff + 7 ,rega 
+693b da400000 arg eeprom_bdaddr_list ,regb 
+693c 2020683e branch iicd_write_eep_data 
+
+eeprom_clear_all_reconn_info:
+693d 79200025 set1 mark_ext_patch ,mark 
+693e 44854021 bpatch patch21_2 ,mem_patch21 
+693f d8a0018e arg mem_bdaddr_list_buff ,contw 
+6940 18007204 force 4 ,loopcnt 
+6941 20407e3b call memset0 
+6942 d840001c arg 28 ,temp 
+6943 da20018e arg mem_bdaddr_list_buff ,rega 
+6944 da400000 arg eeprom_bdaddr_list ,regb 
+6945 2020683e branch iicd_write_eep_data 
+
+eeprom_erase_reconn_info:
+6946 79200025 set1 mark_ext_patch ,mark 
+6947 4485c021 bpatch patch21_3 ,mem_patch21 
+6948 58000000 setarg 0x0 
+6949 60018040 store 3 ,mem_plap 
+694a e0a18000 istore 3 ,contw 
+694b 20206954 branch eeprom_store_remote_bdaddr 
+
+eeprom_load_last_record_index:
+694c d8400001 arg 1 ,temp 
+694d da2001b2 arg mem_select_list_item ,rega 
+694e da40001c arg eeprom_last_record ,regb 
+694f 2020681d branch iicd_read_eep_data 
+
+eeprom_store_last_record_index:
+6950 d8400001 arg 1 ,temp 
+6951 da2001b2 arg mem_select_list_item ,rega 
+6952 da40001c arg eeprom_last_record ,regb 
+6953 2020683e branch iicd_write_eep_data 
+
+eeprom_store_remote_bdaddr:
+6954 79200025 set1 mark_ext_patch ,mark 
+6955 44864021 bpatch patch21_4 ,mem_patch21 
+6956 20406988 call eeprom_load_bdaddr_list 
+6957 78547c00 disable user 
+6958 2040698c call find_addr_from_bd_list 
+6959 20740000 rtn user 
+
+eeprom_store_remote_addr_unfind:
+695a 7001b200 jam 0 ,mem_select_list_item 
+695b 680301b4 fetch 6 ,mem_temp_lap 
+695c 6003018f store 6 ,mem_bdaddr_list_buff + 1 
+695d 680081b3 fetch 1 ,mem_record_bt_mode 
+695e 6000818e store 1 ,mem_bdaddr_list_buff 
+695f d840001c arg 28 ,temp 
+6960 da20018e arg mem_bdaddr_list_buff ,rega 
+6961 da400000 arg eeprom_bdaddr_list ,regb 
+6962 2020683e branch iicd_write_eep_data 
+
+eeprom_store_le_local_addr:
+6963 d8400006 arg 6 ,temp 
+6964 da2044f9 arg mem_le_lap ,rega 
+6965 da40001d arg eeprom_le_reconn_local_addr ,regb 
+6966 2020683e branch iicd_write_eep_data 
+
+eeprom_load_le_loacal_addr:
+6967 d8400006 arg 6 ,temp 
+6968 da2044f9 arg mem_le_lap ,rega 
+6969 da40001d arg eeprom_le_reconn_local_addr ,regb 
+696a 2020681d branch iicd_read_eep_data 
+
+eeprom_load_remote_bdaddr:
+696b 79200025 set1 mark_ext_patch ,mark 
+696c 4486c021 bpatch patch21_5 ,mem_patch21 
+696d d8400007 arg 7 ,temp 
+696e da2001b3 arg mem_temp_reconn_record ,rega 
+696f da400000 arg eeprom_bdaddr_list ,regb 
+6970 680081b2 fetch 1 ,mem_select_list_item 
+6971 1feffe07 mul32 pdata ,7 ,pdata 
+6972 9a40a400 iadd regb ,regb 
+6973 2020681d branch iicd_read_eep_data 
+
+eeprom_linkkey_addr:
+6974 d8400010 arg 0x10 ,temp 
+6975 da400023 arg eeprom_linkkey_list ,regb 
+6976 680081b2 fetch 1 ,mem_select_list_item 
+6977 1ff27e00 lshift4 pdata ,pdata 
+6978 9a40a400 iadd regb ,regb 
+6979 20600000 rtn 
+
+eeprom_store_le_ltl:
+697a da20447b arg mem_le_ltk ,rega 
+697b 2020697d branch eeprom_store_link_key_common 
+
+eeprom_store_link_key:
+697c da204262 arg mem_link_key ,rega 
+
+eeprom_store_link_key_common:
+697d 79200025 set1 mark_ext_patch ,mark 
+697e 44874021 bpatch patch21_6 ,mem_patch21 
+697f 20406974 call eeprom_linkkey_addr 
+6980 2020683e branch iicd_write_eep_data 
+
+eeprom_load_ltk_key:
+6981 da20447b arg mem_le_ltk ,rega 
+6982 20206984 branch eeprom_load_link_key_common 
+
+eeprom_load_link_key:
+6983 da204262 arg mem_link_key ,rega 
+
+eeprom_load_link_key_common:
+6984 79200025 set1 mark_ext_patch ,mark 
+6985 4487c021 bpatch patch21_7 ,mem_patch21 
+6986 20406974 call eeprom_linkkey_addr 
+6987 2020681d branch iicd_read_eep_data 
+
+eeprom_load_bdaddr_list:
+6988 d840001c arg 28 ,temp 
+6989 da200195 arg mem_bdaddr_list_buff + 7 ,rega 
+698a da400000 arg eeprom_bdaddr_list ,regb 
+698b 2020681d branch iicd_read_eep_data 
+
+find_addr_from_bd_list:
+698c 79200025 set1 mark_ext_patch ,mark 
+698d 44884022 bpatch patch22_0 ,mem_patch22 
+698e 58000195 setarg mem_bdaddr_list_buff + 7 
+698f 600101ba store 2 ,mem_list_item_ptr 
+6990 7001b200 jam 0 ,mem_select_list_item 
+6991 df200004 arg 4 ,loopcnt 
+
+find_addr_from_list:
+6992 1f227e00 copy loopcnt ,pdata 
+6993 60008161 store 1 ,mem_pdatatemp 
+6994 680101ba fetch 2 ,mem_list_item_ptr 
+6995 1fe22200 copy pdata ,rega 
+6996 204069ac call find_addr_from_list_compare 
+6997 20740000 rtn user 
+6998 680101ba fetch 2 ,mem_list_item_ptr 
+6999 1fe0fe07 increase 7 ,pdata 
+699a 600101ba store 2 ,mem_list_item_ptr 
+699b 680081b2 fetch 1 ,mem_select_list_item 
+699c 1fe0fe01 increase 1 ,pdata 
+699d 600081b2 store 1 ,mem_select_list_item 
+699e 68008161 fetch 1 ,mem_pdatatemp 
+699f 1fe27200 copy pdata ,loopcnt 
+69a0 c2006992 loop find_addr_from_list 
+69a1 20600000 rtn 
+
+check_link_key_load:
+69a2 68044262 fetch 8 ,mem_link_key 
+69a3 680c426a fetcht 8 ,mem_link_key + 8 
+69a4 9841fe00 ior temp ,pdata 
+69a5 207a0000 rtn blank 
+69a6 70425e01 jam 1 ,mem_link_key_exists 
+69a7 20600000 rtn 
+
+check_ltk_load:
+69a8 68034274 fetch 6 ,mem_hci_plap 
+69a9 207a0000 rtn blank 
+69aa 70448b01 jam 1 ,mem_ltk_exists 
+69ab 20600000 rtn 
+
+find_addr_from_list_compare:
+69ac da4001b3 arg mem_temp_reconn_record ,regb 
+69ad df200007 arg 7 ,loopcnt 
+69ae 20407f25 call string_compare 
+69af 2022e9b1 branch enable_usr ,zero 
+69b0 20600000 rtn 
+
+enable_usr:
+69b1 78347c00 enable user 
+69b2 20600000 rtn 
+
+le_eeprom_load_reconn_info:
+69b3 20203bf1 branch assert 
+
+gpio_set_wake_by_current_state:
+69b4 79200025 set1 mark_ext_patch ,mark 
+69b5 4488c022 bpatch patch22_1 ,mem_patch22 
+69b6 79200407 set1 7 ,temp 
+69b7 204069e5 call gpio_get_bit 
+69b8 7d208407 nsetflag true ,7 ,temp 
+
+gpio_set_wake:
+69b9 79200025 set1 mark_ext_patch ,mark 
+69ba 44894022 bpatch patch22_2 ,mem_patch22 
+69bb 284c0007 isolate0 7 ,temp 
+69bc 18410e1f and temp ,0x1f ,queue 
+69bd 680200a3 fetch 4 ,mem_gpio_wakeup_low 
+69be f920fe00 qsetflag true ,pdata 
+69bf 600200a3 store 4 ,mem_gpio_wakeup_low 
+69c0 680200a7 fetch 4 ,mem_gpio_wakeup_high 
+69c1 fd20fe00 nqsetflag true ,pdata 
+69c2 600200a7 store 4 ,mem_gpio_wakeup_high 
+69c3 20600000 rtn 
+
+gpio_clr_wake:
+69c4 79200025 set1 mark_ext_patch ,mark 
+69c5 4489c022 bpatch patch22_3 ,mem_patch22 
+69c6 284c0007 isolate0 7 ,temp 
+69c7 18410e1f and temp ,0x1f ,queue 
+69c8 680200a3 fetch 4 ,mem_gpio_wakeup_low 
+69c9 f93ffe00 qset0 pdata 
+69ca 600200a3 store 4 ,mem_gpio_wakeup_low 
+69cb 680200a7 fetch 4 ,mem_gpio_wakeup_high 
+69cc f93ffe00 qset0 pdata 
+69cd 600200a7 store 4 ,mem_gpio_wakeup_high 
+69ce 20600000 rtn 
+
+gpio_config_input_nowake:
+69cf 204069c4 call gpio_clr_wake 
+69d0 202069d2 branch gpio_config_input_without_wake 
+
+gpio_config_input:
+69d1 2455e9b9 ncall gpio_set_wake ,wake 
+
+gpio_config_input_without_wake:
+69d2 d8a0807c arg core_gpio_pd0 ,contw 
+69d3 204069f4 call gpio_set_bit 
+69d4 79400407 setflip gpio_active_bit ,temp 
+69d5 d8a08078 arg core_gpio_pu0 ,contw 
+69d6 204069f4 call gpio_set_bit 
+69d7 793f8407 set0 gpio_active_bit ,temp 
+69d8 d8a08070 arg core_gpio_oe0 ,contw 
+69d9 202069f4 branch gpio_set_bit 
+
+gpio_config_output:
+69da 79400407 setflip gpio_active_bit ,temp 
+69db 204069f3 call gpio_out 
+69dc 79200407 set1 gpio_active_bit ,temp 
+69dd d8a08070 arg core_gpio_oe0 ,contw 
+69de 202069f4 branch gpio_set_bit 
+
+gpio_common:
+69df 18410e07 and temp ,0x07 ,queue 
+69e0 18497e00 rshift3 temp ,pdata 
+69e1 1fe17e03 and_into 3 ,pdata 
+69e2 98a08a00 iadd contw ,contw 
+69e3 e8a08000 ifetch 1 ,contw 
+69e4 20600000 rtn 
+
+gpio_get_bit:
+69e5 d8a0811c arg core_gpio_in ,contw 
+69e6 204069df call gpio_common 
+69e7 284ffe07 isolate1 gpio_active_bit ,temp 
+69e8 2020e9eb branch gpio_get_bit_reverse ,true 
+69e9 afec0000 qisolate0 pdata 
+69ea 20600000 rtn 
+
+gpio_get_bit_reverse:
+69eb afefffff qisolate1 pdata 
+69ec 20600000 rtn 
+
+gpio_out_inactive:
+69ed 2fcffe07 isolate1 7 ,null 
+69ee 202069f0 branch gpio_out_flag 
+
+gpio_out_active:
+69ef 2fcc0007 isolate0 7 ,null 
+
+gpio_out_flag:
+69f0 58000000 setarg 0 
+69f1 7d20fe07 nsetflag true ,gpio_active_bit ,pdata 
+69f2 98428400 ixor temp ,temp 
+
+gpio_out:
+69f3 d8a08074 arg core_gpio_out0 ,contw 
+
+gpio_set_bit:
+69f4 204069df call gpio_common 
+69f5 284ffe07 isolate1 gpio_active_bit ,temp 
+69f6 f920fe00 qsetflag true ,pdata 
+69f7 e0a08000 istore 1 ,contw 
+69f8 20600000 rtn 
+
+gpio_test:
+69f9 6800c16e fetch 1 ,mem_seqi 
+69fa c13f8000 rtneq 0x7f 
+69fb 70807700 hjam 0 ,core_gpio_out3 
+69fc 2000001e nop 30 
+69fd 70807708 hjam 8 ,core_gpio_out3 
+69fe 20600000 rtn 
+
+set_pwm_blink:
+69ff 1fed7e00 lshift8 pdata ,pdata 
+6a00 1ff27e00 lshift4 pdata ,pdata 
+6a01 601100a2 hstore 2 ,core_pwm_ncnt0 
+6a02 601100a0 hstore 2 ,core_pwm_pcnt0 
+6a03 20600000 rtn 
+
+set_pwm_steadyon:
+6a04 58000000 setarg 0 
+6a05 601100a2 hstore 2 ,core_pwm_ncnt0 
+6a06 58000001 setarg 1 
+6a07 601100a0 hstore 2 ,core_pwm_pcnt0 
+6a08 20600000 rtn 
+
+set_pwm_off:
+6a09 58000000 setarg 0 
+6a0a 601100a2 hstore 2 ,core_pwm_ncnt0 
+6a0b 601100a0 hstore 2 ,core_pwm_pcnt0 
+6a0c 20600000 rtn 
+
+init_filter_ram:
+6a0d d8a08800 arg 0x8800 ,contw 
+6a0e df200020 arg 0x20 ,loopcnt 
+6a0f 20407e3b call memset0 
+6a10 580004f9 setarg 0x4f9 
+6a11 60110848 hstore 2 ,0x8848 
+6a12 6011084a hstore 2 ,0x884a 
+6a13 6011084c hstore 2 ,0x884c 
+6a14 6011086c hstore 2 ,0x886c 
+6a15 6011088c hstore 2 ,0x888c 
+6a16 601108ac hstore 2 ,0x88ac 
+6a17 58000204 setarg 0x204 
+6a18 601108ae hstore 2 ,0x88ae 
+6a19 58000506 setarg 0x0506 
+6a1a 601108b0 hstore 2 ,0x88b0 
+6a1b 58000504 setarg 0x0504 
+6a1c 601108b2 hstore 2 ,0x88b2 
+6a1d 58000200 setarg 0x0200 
+6a1e 601108b4 hstore 2 ,0x88b4 
+6a1f 5800fefb setarg 0xFEFB 
+6a20 601108b6 hstore 2 ,0x88b6 
+6a21 5800faf9 setarg 0xFAF9 
+6a22 601108b8 hstore 2 ,0x88b8 
+6a23 5800fafb setarg 0xFAFB 
+6a24 601108ba hstore 2 ,0x88ba 
+6a25 5800fd00 setarg 0xFD00 
+6a26 601108bc hstore 2 ,0x88bc 
+6a27 58000408 setarg 0x0408 
+6a28 601108be hstore 2 ,0x88be 
+6a29 58000a0c setarg 0x0A0C 
+6a2a 601108c0 hstore 2 ,0x88c0 
+6a2b 58000b09 setarg 0x0B09 
+6a2c 601108c2 hstore 2 ,0x88c2 
+6a2d 58000500 setarg 0x0500 
+6a2e 601108c4 hstore 2 ,0x88c4 
+6a2f 5800f8f1 setarg 0xF8F1 
+6a30 601108c6 hstore 2 ,0x88c6 
+6a31 5800ece8 setarg 0xECE8 
+6a32 601108c8 hstore 2 ,0x88c8 
+6a33 5800e9eb setarg 0xE9EB 
+6a34 601108ca hstore 2 ,0x88ca 
+6a35 5800f500 setarg 0xF500 
+6a36 601108cc hstore 2 ,0x88cc 
+6a37 58001223 setarg 0x1223 
+6a38 601108ce hstore 2 ,0x88ce 
+6a39 5800374b setarg 0x374B 
+6a3a 601108d0 hstore 2 ,0x88d0 
+6a3b 58005e71 setarg 0x5E71 
+6a3c 601108d2 hstore 2 ,0x88d2 
+6a3d 5800787f setarg 0x787F 
+6a3e 601108d4 hstore 2 ,0x88d4 
+6a3f 20600000 rtn 
+
+enable_pcm:
+6a40 79200025 set1 mark_ext_patch ,mark 
+6a41 448a4022 bpatch patch22_4 ,mem_patch22 
+6a42 68110050 hfetch 2 ,core_clkoff 
+6a43 793ffe0e set0 clock_off_codec ,pdata 
+6a44 60110050 hstore 2 ,core_clkoff 
+6a45 7080b011 hjam 0x11 ,core_enc_ctrl 
+6a46 7080b101 hjam 0x1 ,core_cvsd_ctrl 
+6a47 7080b201 hjam 0x1 ,core_codec_ctrl 
+6a48 7080b311 hjam 0x11 ,core_dec_ctrl 
+6a49 20600000 rtn 
+
+disable_pcm:
+6a4a 79200025 set1 mark_ext_patch ,mark 
+6a4b 448ac022 bpatch patch22_5 ,mem_patch22 
+6a4c 68110050 hfetch 2 ,core_clkoff 
+6a4d 79207e0e set1 clock_off_codec ,pdata 
+6a4e 60110050 hstore 2 ,core_clkoff 
+6a4f 7080b004 hjam 0x4 ,core_enc_ctrl 
+6a50 7080b304 hjam 0x4 ,core_dec_ctrl 
+6a51 7080b100 hjam 0x0 ,core_cvsd_ctrl 
+6a52 7080b200 hjam 0x0 ,core_codec_ctrl 
+6a53 20600000 rtn 
+
+get_sco_data:
+6a54 68008030 fetch 1 ,mem_state 
+6a55 c4010000 rtnbit0 state_insco 
+6a56 d8a000b5 arg mem_sco_obuf ,contw 
+6a57 df20001e arg 30 ,loopcnt 
+
+get_sco_data_loop:
+6a58 68108134 hfetch 1 ,core_pcminfifo 
+6a59 e0a08000 istore 1 ,contw 
+6a5a c2006a58 loop get_sco_data_loop 
+6a5b 20600000 rtn 
+
+process_sco_data:
+6a5c 68008030 fetch 1 ,mem_state 
+6a5d c4010000 rtnbit0 state_insco 
+6a5e d8c000d3 arg mem_sco_ibuf ,contr 
+6a5f 1800721e force 30 ,loopcnt 
+
+process_sco_loop:
+6a60 e8c08000 ifetch 1 ,contr 
+6a61 60108009 hstore 1 ,core_pcmoutfifo 
+6a62 c2006a60 loop process_sco_loop 
+6a63 20600000 rtn 
+
+init_sched:
+6a64 20600000 rtn 
+
+gpio_cfg_uart_tx_output:
+6a65 20406a87 call gpio_uart2gpio 
+6a66 d8400006 arg uart_wakeup_tx ,temp 
+6a67 202069da branch gpio_config_output 
+
+gpio_pu_uart_tx:
+6a68 20406a65 call gpio_cfg_uart_tx_output 
+6a69 d8400006 arg uart_wakeup_tx ,temp 
+6a6a 202069ed branch gpio_out_inactive 
+
+gpio_pd_uart_tx:
+6a6b 20406a65 call gpio_cfg_uart_tx_output 
+6a6c d8400006 arg uart_wakeup_tx ,temp 
+6a6d 202069ef branch gpio_out_active 
+
+gpio_cfg_uart_rx_output:
+6a6e 20406a87 call gpio_uart2gpio 
+6a6f d8400007 arg uart_wakeup_rx ,temp 
+6a70 202069da branch gpio_config_output 
+
+gpio_pu_uart_rx:
+6a71 20406a6e call gpio_cfg_uart_rx_output 
+6a72 d8400007 arg uart_wakeup_rx ,temp 
+6a73 202069ed branch gpio_out_inactive 
+
+gpio_pd_uart_rx:
+6a74 20406a6e call gpio_cfg_uart_rx_output 
+6a75 d8400007 arg uart_wakeup_rx ,temp 
+6a76 202069ef branch gpio_out_active 
+
+gpio_tx_config_input_with_pu:
+6a77 20406a87 call gpio_uart2gpio 
+6a78 68108078 hfetch 1 ,core_gpio_pu0 
+6a79 79207e06 set1 uart_wakeup_tx ,pdata 
+6a7a 60108078 hstore 1 ,core_gpio_pu0 
+6a7b d8400006 arg uart_wakeup_tx ,temp 
+6a7c 202069d1 branch gpio_config_input 
+
+gpio_rx_config_input_with_pu:
+6a7d 20406a87 call gpio_uart2gpio 
+6a7e 68108078 hfetch 1 ,core_gpio_pu0 
+6a7f 79207e07 set1 uart_wakeup_rx ,pdata 
+6a80 60108078 hstore 1 ,core_gpio_pu0 
+6a81 d8400007 arg uart_wakeup_rx ,temp 
+6a82 202069d1 branch gpio_config_input 
+
+gpio_gpio2uart:
+6a83 68108081 hfetch 1 ,core_gpio_sel1 
+6a84 1fe1fe04 or_into 0x04 ,pdata 
+6a85 60108081 hstore 1 ,core_gpio_sel1 
+6a86 20600000 rtn 
+
+gpio_uart2gpio:
+6a87 68108081 hfetch 1 ,core_gpio_sel1 
+6a88 1fe17efb and_into 0xfb ,pdata 
+6a89 60108081 hstore 1 ,core_gpio_sel1 
+6a8a 20600000 rtn 
+
+gpio_check_uart_state:
+6a8b 68108081 hfetch 1 ,core_gpio_sel1 
+6a8c 2feffe02 isolate1 2 ,pdata 
+6a8d 20600000 rtn 
+
+prcp_init:
+6a8e 58006a91 setarg prcp_process 
+6a8f 60014296 store 2 ,mem_cb_att_write 
+6a90 20600000 rtn 
+
+prcp_process:
+6a91 20406b14 call clear_prcp_sendbuff 
+6a92 68008481 fetch 1 ,mem_prcp 
+6a93 c000ea96 beq prcp_le ,le_prcp 
+6a94 c0016a9c beq prcp_ssp ,prcp 
+6a95 20203bf1 branch assert 
+
+le_prcp:
+6a96 d8400017 arg prcp_rx_le ,temp 
+6a97 600944c2 storet 2 ,mem_le_notify_handle 
+6a98 20405a88 call le_att_get_handle_ptr 
+6a99 e8c08000 ifetch 1 ,contr 
+6a9a 20406a9e call prcp_parse 
+6a9b 20205b42 branch prcp_le_tx 
+
+prcp:
+6a9c 20406a9e call prcp_parse 
+6a9d 20205b51 branch prcp_tx 
+
+prcp_parse:
+6a9e 18c22200 copy contr ,rega 
+6a9f 79200025 set1 mark_ext_patch ,mark 
+6aa0 4498c026 bpatch patch26_1 ,mem_patch26 
+6aa1 e8c08000 ifetch 1 ,contr 
+6aa2 c0006ab7 beq common_res ,prcp_parse_common_res 
+6aa3 c000eabc beq read_registers_req ,prcp_parse_read_registers_req 
+6aa4 c0016abd beq read_registers_res ,prcp_parse_read_registers_res 
+6aa5 c001eabe beq write_registers_req ,prcp_parse_write_registers_req 
+6aa6 c0026b50 beq i2c_config_req ,prcp_parse_i2c_config_req 
+6aa7 c002eaff beq i2c_read_req ,prcp_parse_i2c_read_req 
+6aa8 c0036b51 beq i2c_read_res ,prcp_parse_i2c_read_res 
+6aa9 c003eb52 beq i2c_write_req ,prcp_parse_i2c_write_req 
+6aaa c0046abf beq spi_config_req ,prcp_parse_spi_config_req 
+6aab c004eac0 beq spi_read_req ,prcp_parse_spi_read_req 
+6aac c0056ac1 beq spi_read_res ,prcp_parse_spi_read_res 
+6aad c005eac2 beq spi_write_req ,prcp_parse_spi_write_req 
+6aae c0066ac3 beq pwm_config_req ,prcp_parse_pwm_config_req 
+6aaf c006ead5 beq pwm_write_req ,prcp_parse_pwm_write_req 
+6ab0 c0076ae3 beq gpio_config_req ,prcp_parse_gpio_config_req 
+6ab1 c007eaf0 beq gpio_read_req ,prcp_parse_gpio_read_req 
+6ab2 c0086af1 beq gpio_read_res ,prcp_parse_gpio_read_res 
+6ab3 c008eaf8 beq gpio_write_req ,prcp_parse_gpio_write_req 
+6ab4 c0096b19 beq ota_write_req ,prcp_parse_ota_write_req 
+6ab5 c009eb45 beq ota_end_cmd ,prcp_parse_ota_end_cmd 
+6ab6 20600000 rtn 
+
+prcp_parse_common_res:
+6ab7 1a220c00 copy rega ,contr 
+6ab8 e8c08000 ifetch 1 ,contr 
+6ab9 1fed7e00 lshift8 pdata ,pdata 
+6aba 6001846d store 3 ,mem_prcp_data 
+6abb 20600000 rtn 
+
+prcp_parse_read_registers_req:
+6abc 20600000 rtn 
+
+prcp_parse_read_registers_res:
+6abd 20600000 rtn 
+
+prcp_parse_write_registers_req:
+6abe 20600000 rtn 
+
+prcp_parse_spi_config_req:
+6abf 20600000 rtn 
+
+prcp_parse_spi_read_req:
+6ac0 20600000 rtn 
+
+prcp_parse_spi_read_res:
+6ac1 20600000 rtn 
+
+prcp_parse_spi_write_req:
+6ac2 20600000 rtn 
+
+prcp_parse_pwm_config_req:
+6ac3 e8c20000 ifetch 4 ,contr 
+6ac4 60108082 hstore 1 ,core_gpio_sel2 
+6ac5 1fecfe00 rshift8 pdata ,pdata 
+6ac6 68188081 hfetcht 1 ,core_gpio_sel1 
+6ac7 1841047f and_into 0x7f ,temp 
+6ac8 98418400 ior temp ,temp 
+6ac9 60188081 hstoret 1 ,core_gpio_sel1 
+6aca 1fecfe00 rshift8 pdata ,pdata 
+6acb 68188051 hfetcht 1 ,core_clkoff + 1 
+6acc 184104df and_into 0xdf ,temp 
+6acd 98418400 ior temp ,temp 
+6ace 60188051 hstoret 1 ,core_clkoff + 1 
+6acf 1fecfe00 rshift8 pdata ,pdata 
+6ad0 68188042 hfetcht 1 ,core_clksel 
+6ad1 1841043f and_into 0x3f ,temp 
+6ad2 98418400 ior temp ,temp 
+6ad3 60188042 hstoret 1 ,core_clksel 
+6ad4 20206ab7 branch prcp_parse_common_res 
+
+prcp_parse_pwm_write_req:
+6ad5 e8c48000 ifetch 9 ,contr 
+6ad6 68188085 hfetcht 1 ,core_gpio_key2 
+6ad7 1841043f and_into 0x3f ,temp 
+6ad8 98418400 ior temp ,temp 
+6ad9 60188085 hstoret 1 ,core_gpio_key2 
+6ada 1fecfe00 rshift8 pdata ,pdata 
+6adb 601100a0 hstore 2 ,core_pwm_pcnt0 
+6adc 1ff17e00 rshift16 pdata ,pdata 
+6add 601100a2 hstore 2 ,core_pwm_ncnt0 
+6ade 1ff17e00 rshift16 pdata ,pdata 
+6adf 601100a4 hstore 2 ,core_pwm_pcnt1 
+6ae0 1ff17e00 rshift16 pdata ,pdata 
+6ae1 601100a6 hstore 2 ,core_pwm_ncnt1 
+6ae2 20206ab7 branch prcp_parse_common_res 
+
+prcp_parse_gpio_config_req:
+6ae3 e8c20000 ifetch 4 ,contr 
+6ae4 60120070 hstore 4 ,core_gpio_oe0 
+6ae5 e8c20000 ifetch 4 ,contr 
+6ae6 60120078 hstore 4 ,core_gpio_pu0 
+6ae7 e8c20000 ifetch 4 ,contr 
+6ae8 6012007c hstore 4 ,core_gpio_pd0 
+6ae9 e8c08000 ifetch 1 ,contr 
+6aea 60108080 hstore 1 ,core_gpio_sel 
+6aeb e8c08000 ifetch 1 ,contr 
+6aec 60108081 hstore 1 ,core_gpio_sel1 
+6aed e8c08000 ifetch 1 ,contr 
+6aee 60108082 hstore 1 ,core_gpio_sel2 
+6aef 20206ab7 branch prcp_parse_common_res 
+
+prcp_parse_gpio_read_req:
+6af0 20206af1 branch prcp_parse_gpio_read_res 
+
+prcp_parse_gpio_read_res:
+6af1 70046d10 jam 0x10 ,mem_prcp_data 
+6af2 d8a0046e arg mem_prcp_data + 1 ,contw 
+6af3 68120074 hfetch 4 ,core_gpio_out0 
+6af4 e0a20000 istore 4 ,contw 
+6af5 6812011c hfetch 4 ,core_gpio_in 
+6af6 e0a20000 istore 4 ,contw 
+6af7 20600000 rtn 
+
+prcp_parse_gpio_write_req:
+6af8 e8c88000 ifetcht 1 ,contr 
+6af9 e8c08000 ifetch 1 ,contr 
+6afa 1fe9fe00 lshift3 pdata ,pdata 
+6afb 1ff27e00 lshift4 pdata ,pdata 
+6afc 98418400 ior temp ,temp 
+6afd 204069f3 call gpio_out 
+6afe 20206ab7 branch prcp_parse_common_res 
+
+prcp_parse_i2c_read_req:
+6aff e8c88000 ifetcht 1 ,contr 
+6b00 60188301 hstoret 1 ,iic_slave_addr 
+6b01 e8c08000 ifetch 1 ,contr 
+6b02 2fe1fe01 compare 1 ,pdata ,0xff 
+6b03 e8c08000 ifetch 1 ,contr 
+6b04 60108307 hstore 1 ,iic_fifo 
+6b05 2020eb08 branch iic_read_data_len ,true 
+6b06 e8c08000 ifetch 1 ,contr 
+6b07 60108307 hstore 1 ,iic_fifo 
+
+iic_read_data_len:
+6b08 e8c08000 ifetch 1 ,contr 
+6b09 1fe27200 copy pdata ,loopcnt 
+6b0a 1fe0ffff increase -1 ,pdata 
+6b0b 1fe1fe90 or_into 0x90 ,pdata 
+6b0c 60108302 hstore 1 ,iic_ctr 
+6b0d 70830302 hjam 2 ,iic_cr 
+6b0e 20000001 nop 1 
+6b0f d8a0046d arg mem_prcp_data ,contw 
+
+iic_read_loop:
+6b10 68108307 hfetch 1 ,iic_fifo 
+6b11 e0a08000 istore 1 ,contw 
+6b12 c2006b10 loop iic_read_loop 
+6b13 20600000 rtn 
+
+clear_prcp_sendbuff:
+6b14 58000000 setarg 0 
+6b15 6002046d store 4 ,mem_prcp_data 
+6b16 e0a40000 istore 8 ,contw 
+6b17 e0a40000 istore 8 ,contw 
+6b18 20600000 rtn 
+
+prcp_parse_ota_write_req:
+6b19 1a227e00 copy rega ,pdata 
+6b1a 1fe0fe01 increase 1 ,pdata 
+6b1b 60010483 store 2 ,rx_buf_data_ptr 
+6b1c 68014749 fetch 2 ,mem_eeprom_ota_base_addr 
+6b1d c0006b28 beq 0x0000 ,prcp_parse_ota_start1 
+
+prcp_parse_ota_load:
+6b1e 68014749 fetch 2 ,mem_eeprom_ota_base_addr 
+6b1f 68090483 fetcht 2 ,rx_buf_data_ptr 
+6b20 e8490000 ifetcht 2 ,temp 
+6b21 9840fe00 iadd temp ,pdata 
+6b22 68090483 fetcht 2 ,rx_buf_data_ptr 
+6b23 18408402 increase 2 ,temp 
+6b24 18420c00 copy temp ,contr 
+6b25 e8c88000 ifetcht 1 ,contr 
+6b26 18c22200 copy contr ,rega 
+6b27 20206842 branch iicd_write_ota_data 
+
+prcp_parse_ota_start1:
+6b28 58000002 setarg 0x0002 
+6b29 1ff0fe00 byteswap pdata ,pdata 
+6b2a 60010225 store 2 ,mem_addr_mi 
+6b2b da606823 arg iicd_read_eep ,regc 
+6b2c df200002 arg 0x2 ,loopcnt 
+
+prcp_parse_ota_loop1:
+6b2d 204066e2 call get_block_header 
+6b2e 2422eb36 nbranch prcp_parse_ota_start2 ,zero 
+6b2f 68010225 fetch 2 ,mem_addr_mi 
+6b30 1ff0fe00 byteswap pdata ,pdata 
+6b31 9840fe00 iadd temp ,pdata 
+6b32 60014749 store 2 ,mem_eeprom_ota_base_addr 
+6b33 1ff0fe00 byteswap pdata ,pdata 
+6b34 60010225 store 2 ,mem_addr_mi 
+6b35 c2006b2d loop prcp_parse_ota_loop1 
+
+prcp_parse_ota_start2:
+6b36 68014749 fetch 2 ,mem_eeprom_ota_base_addr 
+6b37 1ff0fe00 byteswap pdata ,pdata 
+6b38 60010225 store 2 ,mem_addr_mi 
+6b39 da606823 arg iicd_read_eep ,regc 
+6b3a df20ffff arg 0xffff ,loopcnt 
+
+prcp_parse_ota_loop2:
+6b3b 204066e2 call get_block_header 
+6b3c 2422eb1e nbranch prcp_parse_ota_load ,zero 
+6b3d 68010225 fetch 2 ,mem_addr_mi 
+6b3e 1ff0fe00 byteswap pdata ,pdata 
+6b3f 9840fe00 iadd temp ,pdata 
+6b40 1fe0fe02 increase 2 ,pdata 
+6b41 60014749 store 2 ,mem_eeprom_ota_base_addr 
+6b42 1ff0fe00 byteswap pdata ,pdata 
+6b43 60010225 store 2 ,mem_addr_mi 
+6b44 c2006b3b loop prcp_parse_ota_loop2 
+
+prcp_parse_ota_end_cmd:
+6b45 68014749 fetch 2 ,mem_eeprom_ota_base_addr 
+6b46 1fe0fe02 increase 2 ,pdata 
+6b47 1ff0fe00 byteswap pdata ,pdata 
+6b48 60014749 store 2 ,mem_eeprom_ota_base_addr 
+6b49 da204749 arg mem_eeprom_ota_base_addr ,rega 
+6b4a d8400002 arg 0x02 ,temp 
+6b4b dfe00000 arg 0x0000 ,pdata 
+6b4c 20406842 call iicd_write_ota_data 
+6b4d 58000000 setarg 0x0000 
+6b4e 60014749 store 2 ,mem_eeprom_ota_base_addr 
+6b4f 20600000 rtn 
+
+prcp_parse_i2c_config_req:
+6b50 20600000 rtn 
+
+prcp_parse_i2c_read_res:
+6b51 20600000 rtn 
+
+prcp_parse_i2c_write_req:
+6b52 20600000 rtn 
+
+rfcomm_init:
+6b53 20758000 rtn wake 
+6b54 70475500 jam 0 ,mem_rfcomm_send_more_pkt 
+6b55 70048503 jam bits9600 ,memremoterpnbitrate 
+6b56 70048603 jam databits8 ,memremoteprndatabits 
+6b57 70048a11 jam 0x11 ,memremoteprnxon 
+6b58 70048b13 jam 0x13 ,memremoteprnxoff 
+6b59 58000000 setarg 0 
+6b5a 60018487 store 3 ,memremoteprnstopbit 
+6b5b 6000c2bd store 1 ,mem_spp_state 
+6b5c 7047f300 jam 0 ,memui_reconnect_mode 
+
+rfcomm_init_spp:
+6b5d 79200025 set1 mark_ext_patch ,mark 
+6b5e 44dfc037 bpatch patch37_7 ,mem_patch37 
+6b5f 58000000 setarg 0 
+6b60 6000c2bd store 1 ,mem_spp_state 
+6b61 6000c752 store 1 ,mem_remote_spp_channel 
+6b62 6000c74b store 1 ,mem_pn_dlci 
+6b63 70475750 jam 0x50 ,mem_credit_given 
+6b64 20600000 rtn 
+
+set_cr_bit:
+6b65 18418402 or_into 0x02 ,temp 
+6b66 20600000 rtn 
+
+rfcomm_calculate_fcs_sabm:
+6b67 18427e00 copy temp ,pdata 
+6b68 1fedfe00 reverse pdata ,pdata 
+6b69 6000c750 store 1 ,memfcstemp3 
+6b6a 18007e3f force ini_tx_sabm ,pdata 
+6b6b 1fedfe00 reverse pdata ,pdata 
+6b6c 6000c74f store 1 ,memfcstemp2 
+6b6d 18007e01 force 0x01 ,pdata 
+6b6e 1fedfe00 reverse pdata ,pdata 
+6b6f 6000c74e store 1 ,memfcstemp1 
+6b70 20406b9d call caculate_fcs 
+6b71 18427e00 copy temp ,pdata 
+6b72 20600000 rtn 
+
+rfcomm_calculate_fcs_ua:
+6b73 1fedfe00 reverse pdata ,pdata 
+6b74 6000c750 store 1 ,memfcstemp3 
+6b75 18007e73 force rsp_tx_ua ,pdata 
+6b76 1fedfe00 reverse pdata ,pdata 
+6b77 6000c74f store 1 ,memfcstemp2 
+6b78 18007e01 force 0x01 ,pdata 
+6b79 1fedfe00 reverse pdata ,pdata 
+6b7a 6000c74e store 1 ,memfcstemp1 
+6b7b 20206b9d branch caculate_fcs 
+
+rfcomm_calculate_fcs_dlci0:
+6b7c 6800c751 fetch 1 ,mem_rfcomm_initiator 
+6b7d 203a6b80 branch rfcomm_calculate_fcs_dlci0_res ,blank 
+6b7e 58000070 setarg 0x70 
+6b7f 20600000 rtn 
+
+rfcomm_calculate_fcs_dlci0_res:
+6b80 580000aa setarg 0xaa 
+6b81 20600000 rtn 
+
+rfcomm_save_fcs_uih:
+6b82 1fedfe00 reverse pdata ,pdata 
+6b83 6000c750 store 1 ,memfcstemp3 
+6b84 18007eef force rsp_rx_uih ,pdata 
+6b85 20406b91 call caculate_uihdata_fcs 
+6b86 6809048f fetcht 2 ,mem_contw_temp 
+6b87 18420a00 copy temp ,contw 
+6b88 e0a08000 istore 1 ,contw 
+6b89 18a20400 copy contw ,temp 
+6b8a 6009048f storet 2 ,mem_contw_temp 
+6b8b 18007eff force rsp_rx_uih_wdata ,pdata 
+6b8c 20406b91 call caculate_uihdata_fcs 
+6b8d 6809048f fetcht 2 ,mem_contw_temp 
+6b8e 18420a00 copy temp ,contw 
+6b8f e0a08000 istore 1 ,contw 
+6b90 20600000 rtn 
+
+caculate_uihdata_fcs:
+6b91 1fedfe00 reverse pdata ,pdata 
+6b92 6000c74f store 1 ,memfcstemp2 
+6b93 6801474f fetch 2 ,memfcstemp2 
+6b94 1fed7e00 lshift8 pdata ,pdata 
+6b95 6001848c store 3 ,mem_mod2div_temp 
+6b96 da200107 arg 0x107 ,rega 
+6b97 da40000f arg 0xf ,regb 
+6b98 20406baa call mod2div 
+6b99 1fe2fed7 xor_into 0xd7 ,pdata 
+6b9a 1fe47e00 invert pdata ,pdata 
+6b9b 1fedfe00 reverse pdata ,pdata 
+6b9c 20600000 rtn 
+
+caculate_fcs:
+6b9d 6801c74e fetch 3 ,memfcstemp1 
+6b9e 6001848c store 3 ,mem_mod2div_temp 
+6b9f da200107 arg 0x107 ,rega 
+6ba0 da40000f arg 0xf ,regb 
+6ba1 20406baa call mod2div 
+6ba2 1fed7e00 lshift8 pdata ,pdata 
+6ba3 da400007 arg 0x7 ,regb 
+6ba4 20406baa call mod2div 
+6ba5 1fe2fe2b xor_into 0x2b ,pdata 
+6ba6 1fe47e00 invert pdata ,pdata 
+6ba7 1fedfe00 reverse pdata ,pdata 
+6ba8 1fe20400 copy pdata ,temp 
+6ba9 20600000 rtn 
+
+mod2div:
+6baa da600000 arg 0 ,regc 
+6bab 1a427200 copy regb ,loopcnt 
+6bac 20407dfb call right_shift_n 
+6bad 1fe20400 icopy temp 
+
+mod2div_loop:
+6bae 18427e00 copy temp ,pdata 
+6baf 1a63a600 lshift regc ,regc 
+6bb0 c3046bb3 bbit0 8 ,mod2div_not_enough_reduction 
+6bb1 9a228400 ixor rega ,temp 
+6bb2 1a60a601 increase 1 ,regc 
+
+mod2div_not_enough_reduction:
+6bb3 18438400 lshift temp ,temp 
+6bb4 6801848c fetch 3 ,mem_mod2div_temp 
+6bb5 1a40a5ff increase -1 ,regb 
+6bb6 2a41feff compare 0xff ,regb ,0xff 
+6bb7 2020ebbd branch mod2div_end ,true 
+6bb8 1a427200 copy regb ,loopcnt 
+6bb9 20407dfb call right_shift_n 
+6bba 2feffe00 isolate1 0 ,pdata 
+6bbb 79208400 setflag true ,0 ,temp 
+6bbc 20206bae branch mod2div_loop 
+
+mod2div_end:
+6bbd 18437e00 rshift temp ,pdata 
+6bbe 20600000 rtn 
+
+get_rfcomm_snd_adss:
+6bbf 6808c74b fetcht 1 ,mem_pn_dlci 
+
+dlci_to_address_cmd:
+6bc0 184b8400 lshift2 temp ,temp 
+6bc1 79200400 set1 rfcomm_address_ext_len ,temp 
+6bc2 6800c751 fetch 1 ,mem_rfcomm_initiator 
+6bc3 245a6b65 ncall set_cr_bit ,blank 
+6bc4 600884a5 storet 1 ,mem_rfcomm_send_adss 
+6bc5 20600000 rtn 
+
+dlci_to_address_res:
+6bc6 184b8400 lshift2 temp ,temp 
+6bc7 79200400 set1 rfcomm_address_ext_len ,temp 
+6bc8 6800c751 fetch 1 ,mem_rfcomm_initiator 
+6bc9 205a6b65 call set_cr_bit ,blank 
+6bca 20600000 rtn 
+
+channel_to_dlci:
+6bcb 18438400 lshift temp ,temp 
+6bcc 6800c751 fetch 1 ,mem_rfcomm_initiator 
+6bcd 793a0400 setflag blank ,0 ,temp 
+6bce 20600000 rtn 
+
+rfcomm_rx_process_dlci0_sabm:
+6bcf 68088494 fetcht 1 ,mem_current_channel 
+6bd0 700496d7 jam 0xd7 ,mem_current_fcs 
+6bd1 20406cf6 call rfcomm_send_ua 
+6bd2 6800c2ba fetch 1 ,mem_rfcomm_state 
+6bd3 79207e06 set1 l2cap_channel_rfcomm_only_sabm ,pdata 
+6bd4 79207e07 set1 l2cap_channel_rfcomm_only_ua ,pdata 
+6bd5 6000c2ba store 1 ,mem_rfcomm_state 
+6bd6 70475100 jam 0 ,mem_rfcomm_initiator 
+6bd7 20206cd7 branch rfcomm_rx_process_end 
+
+rfcomm_rx_process_dlci0_ua:
+6bd8 6800c2ba fetch 1 ,mem_rfcomm_state 
+6bd9 79207e07 set1 l2cap_channel_rfcomm_only_ua ,pdata 
+6bda 6000c2ba store 1 ,mem_rfcomm_state 
+6bdb 20206cd7 branch rfcomm_rx_process_end 
+
+rfcomm_rx_process:
+6bdc 79200025 set1 mark_ext_patch ,mark 
+6bdd 44e04038 bpatch patch38_0 ,mem_patch38 
+6bde 6800c7f3 fetch 1 ,memui_reconnect_mode 
+6bdf c0006be1 beq no_reconnection ,rfcomm_rx_process_remote_page 
+6be0 20206c8b branch rfcomm_rx_process_reconn 
+
+rfcomm_rx_process_remote_page:
+6be1 680102cb fetch 2 ,mem_l2cap_payload_ptr 
+6be2 1fe20c00 copy pdata ,contr 
+6be3 20406c0f call get_rfcomm_head_struct 
+6be4 68008494 fetch 1 ,mem_current_channel 
+6be5 c0006be7 beq 0 ,parse_dlci0_rp 
+6be6 20206c57 branch parse_uih_rp 
+
+parse_dlci0_rp:
+6be7 79200025 set1 mark_ext_patch ,mark 
+6be8 44e0c038 bpatch patch38_1 ,mem_patch38 
+6be9 68008495 fetch 1 ,mem_current_frame_type 
+6bea c01febcf beq rfcomm_frame_type_sabm ,rfcomm_rx_process_dlci0_sabm 
+6beb c039ebd8 beq rfcomm_frame_type_ua ,rfcomm_rx_process_dlci0_ua 
+6bec c077ebef beq rfcomm_frame_type_uih ,parse_dlci0_rp_uih 
+6bed c1298000 rtneq rfcomm_frame_type_disconn 
+6bee 20203bf1 branch assert 
+
+parse_dlci0_rp_uih:
+6bef 68010499 fetch 2 ,mem_rfcomm_uih_payload_ptr 
+6bf0 1fe20c00 copy pdata ,contr 
+6bf1 20406c1a call get_rfcomm_uih_head_struct 
+6bf2 6800849b fetch 1 ,mem_uih_cmd_type 
+6bf3 c020ebf8 beq uih_param_neg_cmd ,parse_dlci0_rp_uih_pn_cmd 
+6bf4 c0206c04 beq uih_param_neg_res ,parse_dlci0_rp_uih_pn_res 
+6bf5 c038ec3f beq uih_modem_status_cmd ,parse_dlci0_rp_uih_ms_cmd 
+6bf6 c0386c4e beq uih_modem_status_res ,parse_dlci0_rp_uih_ms_res 
+6bf7 20206cd7 branch rfcomm_rx_process_end 
+
+parse_dlci0_rp_uih_pn_cmd:
+6bf8 20406c06 call parse_dlci0_rp_uih_pn_res_common 
+6bf9 6800c74b fetch 1 ,mem_pn_dlci 
+6bfa 1fe37e00 rshift pdata ,pdata 
+6bfb 1fe67c01 sub pdata ,spp_slave_channel ,null 
+6bfc 2022ebfe branch parse_dlci0_rp_uih_pn_cmd_spp ,zero 
+6bfd 20203bf1 branch assert 
+
+parse_dlci0_rp_uih_pn_cmd_spp:
+6bfe 6800c2bd fetch 1 ,mem_spp_state 
+6bff 79207e00 set1 rfcomm_channel_state_pn_cmd ,pdata 
+6c00 79207e01 set1 rfcomm_channel_state_pn_res ,pdata 
+6c01 6000c2bd store 1 ,mem_spp_state 
+6c02 20406d22 call rfcomm_send_param_neg_res 
+6c03 20206cd7 branch rfcomm_rx_process_end 
+
+parse_dlci0_rp_uih_pn_res:
+6c04 20406c06 call parse_dlci0_rp_uih_pn_res_common 
+6c05 20206cd7 branch rfcomm_rx_process_end 
+
+parse_dlci0_rp_uih_pn_res_common:
+6c06 20406c22 call get_param_payload_ptr 
+6c07 20206c30 branch get_rfcomm_prarmer_negotiation 
+
+get_rfcomm_param_modem_status:
+6c08 20406c22 call get_param_payload_ptr 
+6c09 e8c08000 ifetch 1 ,contr 
+6c0a 1fe97e00 rshift3 pdata ,pdata 
+6c0b 6000c758 store 1 ,mem_ms_channel 
+6c0c e8c08000 ifetch 1 ,contr 
+6c0d 600084a0 store 1 ,mem_ms_param 
+6c0e 20600000 rtn 
+
+get_rfcomm_head_struct:
+6c0f e8c08000 ifetch 1 ,contr 
+6c10 60008493 store 1 ,mem_current_adss 
+6c11 1fe97e00 rshift3 pdata ,pdata 
+6c12 60008494 store 1 ,mem_current_channel 
+6c13 e8c08000 ifetch 1 ,contr 
+6c14 60008495 store 1 ,mem_current_frame_type 
+
+get_rfcomm_current_length:
+6c15 20406c27 call get_rfcomm_length_common 
+6c16 60090497 storet 2 ,mem_current_length 
+6c17 18c27e00 copy contr ,pdata 
+6c18 60010499 store 2 ,mem_rfcomm_uih_payload_ptr 
+6c19 20600000 rtn 
+
+get_rfcomm_uih_head_struct:
+6c1a e8c08000 ifetch 1 ,contr 
+6c1b 1fe37e00 rshift pdata ,pdata 
+6c1c 6000849b store 1 ,mem_uih_cmd_type 
+6c1d 20406c27 call get_rfcomm_length_common 
+6c1e 6009049c storet 2 ,mem_uih_length 
+6c1f 18c27e00 copy contr ,pdata 
+6c20 6001049e store 2 ,mem_param_payload_ptr 
+6c21 20600000 rtn 
+
+get_param_payload_ptr:
+6c22 6801049e fetch 2 ,mem_param_payload_ptr 
+6c23 1fe20c00 copy pdata ,contr 
+6c24 20600000 rtn 
+
+get_rfcomm_param_length_common:
+6c25 6801049e fetch 2 ,mem_param_payload_ptr 
+6c26 1fe20c00 copy pdata ,contr 
+
+get_rfcomm_length_common:
+6c27 e8c08000 ifetch 1 ,contr 
+6c28 1fe20400 copy pdata ,temp 
+6c29 18430400 rshift temp ,temp 
+6c2a c3800000 rtnbit1 0 
+6c2b e8c08000 ifetch 1 ,contr 
+6c2c 1fe9fe00 lshift3 pdata ,pdata 
+6c2d 1ff27e00 lshift4 pdata ,pdata 
+6c2e 98408400 iadd temp ,temp 
+6c2f 20600000 rtn 
+
+get_rfcomm_prarmer_negotiation:
+6c30 e8c08000 ifetch 1 ,contr 
+6c31 6000c74b store 1 ,mem_pn_dlci 
+6c32 e8c08000 ifetch 1 ,contr 
+6c33 600084a1 store 1 ,mem_pn_credit_flow_type_info 
+6c34 e8c08000 ifetch 1 ,contr 
+6c35 600084a2 store 1 ,mem_pn_priority 
+6c36 e8c08000 ifetch 1 ,contr 
+6c37 600084a3 store 1 ,mem_pn_acknowledg_timer 
+6c38 e8c10000 ifetch 2 ,contr 
+6c39 6001474c store 2 ,mem_pn_max_frame_size 
+6c3a e8c08000 ifetch 1 ,contr 
+6c3b 600084a4 store 1 ,mem_pn_max_retrans 
+6c3c e8c08000 ifetch 1 ,contr 
+6c3d 6000c756 store 1 ,mem_remote_credits 
+6c3e 20600000 rtn 
+
+parse_dlci0_rp_uih_ms_cmd:
+6c3f 20406c08 call get_rfcomm_param_modem_status 
+6c40 6800c758 fetch 1 ,mem_ms_channel 
+6c41 1fe67c01 sub pdata ,1 ,null 
+6c42 2022ec44 branch parse_dlci0_rp_uih_ms_cmd_spp ,zero 
+6c43 20203bf1 branch assert 
+
+parse_dlci0_rp_uih_ms_cmd_spp:
+6c44 6800c2bd fetch 1 ,mem_spp_state 
+6c45 79207e05 set1 rfcomm_channel_state_rcv_ms_cmd ,pdata 
+6c46 79207e06 set1 rfcomm_channel_state_snd_ms_res ,pdata 
+6c47 6000c2bd store 1 ,mem_spp_state 
+6c48 6808c74b fetcht 1 ,mem_pn_dlci 
+6c49 184b8400 lshift2 temp ,temp 
+6c4a 18418403 or_into 3 ,temp 
+6c4b 20406d55 call rfcomm_send_modem_status_res 
+6c4c 70475503 jam more_pkt_msc_cmd_spp ,mem_rfcomm_send_more_pkt 
+6c4d 20206cd7 branch rfcomm_rx_process_end 
+
+parse_dlci0_rp_uih_ms_res:
+6c4e 20406c08 call get_rfcomm_param_modem_status 
+6c4f 6800c758 fetch 1 ,mem_ms_channel 
+6c50 1fe67c01 sub pdata ,1 ,null 
+6c51 2022ec53 branch parse_dlci0_rp_uih_ms_res_spp ,zero 
+6c52 20203bf1 branch assert 
+
+parse_dlci0_rp_uih_ms_res_spp:
+6c53 6800c2bd fetch 1 ,mem_spp_state 
+6c54 79207e07 set1 rfcomm_channel_state_rcv_ms_res ,pdata 
+6c55 6000c2bd store 1 ,mem_spp_state 
+6c56 20206cd7 branch rfcomm_rx_process_end 
+
+parse_uih_rp:
+6c57 68008494 fetch 1 ,mem_current_channel 
+6c58 1fe67c01 sub pdata ,spp_slave_channel ,null 
+6c59 2022ec5b branch parse_uih_rp_spp ,zero 
+6c5a 20203bf1 branch assert 
+
+parse_uih_rp_spp:
+6c5b 68008495 fetch 1 ,mem_current_frame_type 
+6c5c c039ec62 beq rfcomm_frame_type_ua ,parse_uih_rp_spp_ua 
+6c5d c01fec66 beq rfcomm_frame_type_sabm ,parse_uih_rp_spp_sabm 
+6c5e c077ec80 beq rfcomm_frame_type_uih ,parse_uih_spp_uih 
+6c5f c07fec78 beq rfcomm_frame_type_uih_credits ,parse_uih_spp_uih_credits 
+6c60 c029ec85 beq rfcomm_frame_type_disconn ,parse_uih_rp_spp_disconn 
+6c61 20203bf1 branch assert 
+
+parse_uih_rp_spp_ua:
+6c62 6800c2bd fetch 1 ,mem_spp_state 
+6c63 79207e03 set1 rfcomm_channel_state_ua ,pdata 
+6c64 6000c2bd store 1 ,mem_spp_state 
+6c65 20206cd7 branch rfcomm_rx_process_end 
+
+parse_uih_rp_spp_sabm:
+6c66 6800c2bd fetch 1 ,mem_spp_state 
+6c67 79207e03 set1 rfcomm_channel_state_ua ,pdata 
+6c68 79207e02 set1 rfcomm_channel_state_sabm ,pdata 
+6c69 6000c2bd store 1 ,mem_spp_state 
+6c6a 68008493 fetch 1 ,mem_current_adss 
+6c6b 20406b73 call rfcomm_calculate_fcs_ua 
+6c6c 60008496 store 1 ,mem_current_fcs 
+6c6d 20406cf6 call rfcomm_send_ua 
+6c6e 68008493 fetch 1 ,mem_current_adss 
+6c6f 1feb7e00 rshift2 pdata ,pdata 
+6c70 6000c74b store 1 ,mem_pn_dlci 
+6c71 1febfe00 lshift2 pdata ,pdata 
+6c72 793ffe01 set0 rfcomm_address_cr ,pdata 
+6c73 79207e00 set1 rfcomm_address_ext_len ,pdata 
+6c74 d8404753 arg mem_hiufcs_spp ,temp 
+6c75 6009048f storet 2 ,mem_contw_temp 
+6c76 20406b82 call rfcomm_save_fcs_uih 
+6c77 20206cd7 branch rfcomm_rx_process_end 
+
+parse_uih_spp_uih_credits:
+6c78 68010499 fetch 2 ,mem_rfcomm_uih_payload_ptr 
+6c79 1fe20c00 copy pdata ,contr 
+6c7a 1fe0fe01 increase 1 ,pdata 
+6c7b 60010499 store 2 ,mem_rfcomm_uih_payload_ptr 
+6c7c e8c08000 ifetch 1 ,contr 
+6c7d 6808c756 fetcht 1 ,mem_remote_credits 
+6c7e 9840fe00 iadd temp ,pdata 
+6c7f 6000c756 store 1 ,mem_remote_credits 
+
+parse_uih_spp_uih:
+6c80 20406d88 call rfcomm_increase_credit_given 
+
+parse_uih_spp_uih_cont:
+6c81 20406bbf call get_rfcomm_snd_adss 
+6c82 20406d6d call rfcomm_send_uih_without_payload 
+6c83 20406d8e call spp_process_rx_data 
+6c84 20206cd7 branch rfcomm_rx_process_end 
+
+parse_uih_rp_spp_disconn:
+6c85 20406b5d call rfcomm_init_spp 
+6c86 68008493 fetch 1 ,mem_current_adss 
+6c87 20406b73 call rfcomm_calculate_fcs_ua 
+6c88 60008496 store 1 ,mem_current_fcs 
+6c89 20406cf6 call rfcomm_send_ua 
+6c8a 20206cd7 branch rfcomm_rx_process_end 
+
+rfcomm_rx_process_reconn:
+6c8b 680102cb fetch 2 ,mem_l2cap_payload_ptr 
+6c8c 1fe20c00 copy pdata ,contr 
+6c8d 20406c0f call get_rfcomm_head_struct 
+6c8e 68008494 fetch 1 ,mem_current_channel 
+6c8f c0006c91 beq 0 ,parse_dlci0_reconn 
+6c90 20206cc6 branch parse_uih_reconn 
+
+parse_dlci0_reconn:
+6c91 79200025 set1 mark_ext_patch ,mark 
+6c92 44e14038 bpatch patch38_2 ,mem_patch38 
+6c93 68008495 fetch 1 ,mem_current_frame_type 
+6c94 c01febcf beq rfcomm_frame_type_sabm ,rfcomm_rx_process_dlci0_sabm 
+6c95 c039ebd8 beq rfcomm_frame_type_ua ,rfcomm_rx_process_dlci0_ua 
+6c96 c077ec98 beq rfcomm_frame_type_uih ,parse_dlci0_reconn_uih 
+6c97 20206cd7 branch rfcomm_rx_process_end 
+
+parse_dlci0_reconn_uih:
+6c98 68010499 fetch 2 ,mem_rfcomm_uih_payload_ptr 
+6c99 1fe20c00 copy pdata ,contr 
+6c9a 20406c1a call get_rfcomm_uih_head_struct 
+6c9b 6800849b fetch 1 ,mem_uih_cmd_type 
+6c9c c020eca1 beq uih_param_neg_cmd ,parse_dlci0_reconn_uih_pn_cmd 
+6c9d c0206ca1 beq uih_param_neg_res ,parse_dlci0_reconn_uih_pn_cmd 
+6c9e c038ecac beq uih_modem_status_cmd ,parse_dlci0_reconn_uih_ms_cmd 
+6c9f c0386cbc beq uih_modem_status_res ,parse_dlci0_reconn_uih_ms_res 
+6ca0 20206cd7 branch rfcomm_rx_process_end 
+
+parse_dlci0_reconn_uih_pn_cmd:
+6ca1 20406c06 call parse_dlci0_rp_uih_pn_res_common 
+6ca2 6800c74b fetch 1 ,mem_pn_dlci 
+6ca3 1fe37e00 rshift pdata ,pdata 
+6ca4 6808c752 fetcht 1 ,mem_remote_spp_channel 
+6ca5 98467c00 isub temp ,null 
+6ca6 2022eca8 branch parse_dlci0_reconn_uih_pn_cmd_spp ,zero 
+6ca7 20203bf1 branch assert 
+
+parse_dlci0_reconn_uih_pn_cmd_spp:
+6ca8 6800c2bd fetch 1 ,mem_spp_state 
+6ca9 79207e01 set1 rfcomm_channel_state_pn_res ,pdata 
+6caa 6000c2bd store 1 ,mem_spp_state 
+6cab 20206cd7 branch rfcomm_rx_process_end 
+
+parse_dlci0_reconn_uih_ms_cmd:
+6cac 20406c08 call get_rfcomm_param_modem_status 
+6cad 6800c758 fetch 1 ,mem_ms_channel 
+6cae 6808c752 fetcht 1 ,mem_remote_spp_channel 
+6caf 98467c00 isub temp ,null 
+6cb0 2022ecb3 branch parse_dlci0_reconn_uih_ms_cmd_spp ,zero 
+6cb1 20203bf1 branch assert 
+6cb2 20206cd7 branch rfcomm_rx_process_end 
+
+parse_dlci0_reconn_uih_ms_cmd_spp:
+6cb3 6800c2bd fetch 1 ,mem_spp_state 
+6cb4 79207e05 set1 rfcomm_channel_state_rcv_ms_cmd ,pdata 
+6cb5 79207e06 set1 rfcomm_channel_state_snd_ms_res ,pdata 
+6cb6 6000c2bd store 1 ,mem_spp_state 
+6cb7 6808c74b fetcht 1 ,mem_pn_dlci 
+6cb8 184b8400 lshift2 temp ,temp 
+6cb9 18418403 or_into 3 ,temp 
+6cba 20406d55 call rfcomm_send_modem_status_res 
+6cbb 20206cd7 branch rfcomm_rx_process_end 
+
+parse_dlci0_reconn_uih_ms_res:
+6cbc 20406c08 call get_rfcomm_param_modem_status 
+6cbd 6800c758 fetch 1 ,mem_ms_channel 
+6cbe 6808c752 fetcht 1 ,mem_remote_spp_channel 
+6cbf 98467c00 isub temp ,null 
+6cc0 2022ecc2 branch parse_dlci0_reconn_uih_ms_res_spp ,zero 
+6cc1 20203bf1 branch assert 
+
+parse_dlci0_reconn_uih_ms_res_spp:
+6cc2 6800c2bd fetch 1 ,mem_spp_state 
+6cc3 79207e07 set1 rfcomm_channel_state_rcv_ms_res ,pdata 
+6cc4 6000c2bd store 1 ,mem_spp_state 
+6cc5 20206cd7 branch rfcomm_rx_process_end 
+
+parse_uih_reconn:
+6cc6 68008494 fetch 1 ,mem_current_channel 
+6cc7 6808c752 fetcht 1 ,mem_remote_spp_channel 
+6cc8 98467c00 isub temp ,null 
+6cc9 2022eccc branch parse_uih_reconn_spp ,zero 
+6cca 20203bf1 branch assert 
+6ccb 20206cd7 branch rfcomm_rx_process_end 
+
+parse_uih_reconn_spp:
+6ccc 68008495 fetch 1 ,mem_current_frame_type 
+6ccd c039ecd1 beq rfcomm_frame_type_ua ,parse_uih_reconn_spp_ua 
+6cce c077ec80 beq rfcomm_frame_type_uih ,parse_uih_spp_uih 
+6ccf c07fec78 beq rfcomm_frame_type_uih_credits ,parse_uih_spp_uih_credits 
+6cd0 c029ecd6 beq rfcomm_frame_type_disconn ,parse_uih_reconn_spp_disconn 
+
+parse_uih_reconn_spp_ua:
+6cd1 6800c2bd fetch 1 ,mem_spp_state 
+6cd2 79207e03 set1 rfcomm_channel_state_ua ,pdata 
+6cd3 6000c2bd store 1 ,mem_spp_state 
+6cd4 20206cd7 branch rfcomm_rx_process_end 
+
+parse_uih_reconn_spp_sabm:
+6cd5 20206cd5 branch parse_uih_reconn_spp_sabm 
+
+parse_uih_reconn_spp_disconn:
+6cd6 20206c85 branch parse_uih_rp_spp_disconn 
+
+rfcomm_rx_process_end:
+6cd7 20600000 rtn 
+
+rfcomm_send_more_pkt:
+6cd8 6800c755 fetch 1 ,mem_rfcomm_send_more_pkt 
+6cd9 207a0000 rtn blank 
+6cda c001ecdc beq more_pkt_msc_cmd_spp ,rfcomm_send_more_pkt_msc_cmd_spp 
+6cdb 20203bf1 branch assert 
+
+rfcomm_send_more_pkt_msc_cmd_spp:
+6cdc 70475500 jam 0 ,mem_rfcomm_send_more_pkt 
+6cdd 204052e0 call l2cap_malloc_rfcomm_channel 
+6cde d8400001 arg spp_slave_channel ,temp 
+6cdf 18498400 lshift3 temp ,temp 
+
+rfcomm_send_more_pkt_msc_cmd_spp0:
+6ce0 18418403 or_into 0x03 ,temp 
+6ce1 da2000aa arg 0xaa ,rega 
+6ce2 20406d3f call rfcomm_send_modem_status_cmd 
+6ce3 204052ef call l2cap_get_rfcomm_tx_buff 
+6ce4 18a20c00 copy contw ,contr 
+6ce5 e8c10000 ifetch 2 ,contr 
+6ce6 203a3bf1 branch assert ,blank 
+6ce7 20600000 rtn 
+
+rfcomm_send_sabm:
+6ce8 79200025 set1 mark_ext_patch ,mark 
+6ce9 44e1c038 bpatch patch38_3 ,mem_patch38 
+6cea 204052ef call l2cap_get_rfcomm_tx_buff 
+6ceb 58000004 setarg 0x0004 
+6cec e0a10000 istore 2 ,contw 
+6ced 680142b3 fetch 2 ,mem_rfcomm_remote_cid 
+6cee e0a10000 istore 2 ,contw 
+6cef 68008493 fetch 1 ,mem_current_adss 
+6cf0 e0a08000 istore 1 ,contw 
+6cf1 5800013f setarg 0x013f 
+6cf2 e0a10000 istore 2 ,contw 
+6cf3 68008496 fetch 1 ,mem_current_fcs 
+6cf4 e0a08000 istore 1 ,contw 
+6cf5 20600000 rtn 
+
+rfcomm_send_ua:
+6cf6 79200025 set1 mark_ext_patch ,mark 
+6cf7 44e24038 bpatch patch38_4 ,mem_patch38 
+6cf8 204052e0 call l2cap_malloc_rfcomm_channel 
+6cf9 204052ef call l2cap_get_rfcomm_tx_buff 
+6cfa 58000004 setarg 0x0004 
+6cfb e0a10000 istore 2 ,contw 
+6cfc 680142b3 fetch 2 ,mem_rfcomm_remote_cid 
+6cfd e0a10000 istore 2 ,contw 
+6cfe 68008493 fetch 1 ,mem_current_adss 
+6cff e0a08000 istore 1 ,contw 
+6d00 58000173 setarg 0x0173 
+6d01 e0a10000 istore 2 ,contw 
+6d02 68008496 fetch 1 ,mem_current_fcs 
+6d03 e0a08000 istore 1 ,contw 
+6d04 20600000 rtn 
+
+rfcomm_send_param_neg_cmd:
+6d05 79200025 set1 mark_ext_patch ,mark 
+6d06 44e2c038 bpatch patch38_5 ,mem_patch38 
+6d07 204052ef call l2cap_get_rfcomm_tx_buff 
+6d08 5800000e setarg 0x000e 
+6d09 e0a10000 istore 2 ,contw 
+6d0a 680142b3 fetch 2 ,mem_rfcomm_remote_cid 
+6d0b e0a10000 istore 2 ,contw 
+6d0c 6800c751 fetch 1 ,mem_rfcomm_initiator 
+6d0d 1fe3fe00 lshift pdata ,pdata 
+6d0e 79207e00 set1 0 ,pdata 
+6d0f e0a08000 istore 1 ,contw 
+6d10 580015ef setarg 0x15ef 
+6d11 e0a10000 istore 2 ,contw 
+6d12 58001183 setarg 0x1183 
+6d13 e0a10000 istore 2 ,contw 
+6d14 18427e00 copy temp ,pdata 
+6d15 e0a08000 istore 1 ,contw 
+6d16 580000f0 setarg 0x0000f0 
+6d17 e0a18000 istore 3 ,contw 
+6d18 5800007f setarg rfcomm_max_frame_size 
+6d19 e0a10000 istore 2 ,contw 
+6d1a 58000000 setarg 0 
+6d1b e0a08000 istore 1 ,contw 
+6d1c 58000001 setarg 0x01 
+6d1d e0a08000 istore 1 ,contw 
+6d1e 20406b7c call rfcomm_calculate_fcs_dlci0 
+6d1f e0a08000 istore 1 ,contw 
+6d20 70475710 jam 0x10 ,mem_credit_given 
+6d21 20600000 rtn 
+
+rfcomm_send_param_neg_res:
+6d22 79200025 set1 mark_ext_patch ,mark 
+6d23 44e34038 bpatch patch38_6 ,mem_patch38 
+6d24 204052e0 call l2cap_malloc_rfcomm_channel 
+6d25 204052ef call l2cap_get_rfcomm_tx_buff 
+6d26 5800000e setarg 0x000e 
+6d27 e0a10000 istore 2 ,contw 
+6d28 680142b3 fetch 2 ,mem_rfcomm_remote_cid 
+6d29 e0a10000 istore 2 ,contw 
+6d2a 6800c751 fetch 1 ,mem_rfcomm_initiator 
+6d2b 1fe3fe00 lshift pdata ,pdata 
+6d2c 79207e00 set1 0 ,pdata 
+6d2d e0a08000 istore 1 ,contw 
+6d2e 580015ef setarg 0x15ef 
+6d2f e0a10000 istore 2 ,contw 
+6d30 58001181 setarg 0x1181 
+6d31 e0a10000 istore 2 ,contw 
+6d32 6800c74b fetch 1 ,mem_pn_dlci 
+6d33 e0a08000 istore 1 ,contw 
+6d34 580000e0 setarg 0x0000e0 
+6d35 e0a18000 istore 3 ,contw 
+6d36 5800007f setarg rfcomm_max_frame_size 
+6d37 e0a10000 istore 2 ,contw 
+6d38 58000000 setarg 0x00 
+6d39 e0a08000 istore 1 ,contw 
+6d3a 58000007 setarg 0x07 
+6d3b e0a08000 istore 1 ,contw 
+6d3c 20406b7c call rfcomm_calculate_fcs_dlci0 
+6d3d e0a08000 istore 1 ,contw 
+6d3e 20600000 rtn 
+
+rfcomm_send_modem_status_cmd:
+6d3f 79200025 set1 mark_ext_patch ,mark 
+6d40 44e3c038 bpatch patch38_7 ,mem_patch38 
+6d41 204052ef call l2cap_get_rfcomm_tx_buff 
+6d42 58000008 setarg 0x0008 
+6d43 e0a10000 istore 2 ,contw 
+6d44 680142b3 fetch 2 ,mem_rfcomm_remote_cid 
+6d45 e0a10000 istore 2 ,contw 
+6d46 6800c751 fetch 1 ,mem_rfcomm_initiator 
+6d47 1fe3fe00 lshift pdata ,pdata 
+6d48 79207e00 set1 0 ,pdata 
+6d49 e0a08000 istore 1 ,contw 
+6d4a 580009ef setarg 0x09ef 
+6d4b e0a10000 istore 2 ,contw 
+6d4c 580005e3 setarg 0x05e3 
+6d4d e0a10000 istore 2 ,contw 
+6d4e 18427e00 copy temp ,pdata 
+6d4f e0a08000 istore 1 ,contw 
+6d50 5800008d setarg 0x8d 
+6d51 e0a08000 istore 1 ,contw 
+6d52 20406b7c call rfcomm_calculate_fcs_dlci0 
+6d53 e0a08000 istore 1 ,contw 
+6d54 20600000 rtn 
+
+rfcomm_send_modem_status_res:
+6d55 79200025 set1 mark_ext_patch ,mark 
+6d56 44e44039 bpatch patch39_0 ,mem_patch39 
+6d57 204052e0 call l2cap_malloc_rfcomm_channel 
+6d58 204052ef call l2cap_get_rfcomm_tx_buff 
+6d59 58000008 setarg 0x0008 
+6d5a e0a10000 istore 2 ,contw 
+6d5b 680142b3 fetch 2 ,mem_rfcomm_remote_cid 
+6d5c e0a10000 istore 2 ,contw 
+6d5d 18421600 copy temp ,timeup 
+6d5e 6800c751 fetch 1 ,mem_rfcomm_initiator 
+6d5f 1fe3fe00 lshift pdata ,pdata 
+6d60 79207e00 set1 0 ,pdata 
+6d61 e0a08000 istore 1 ,contw 
+6d62 580009ef setarg 0x09ef 
+6d63 e0a10000 istore 2 ,contw 
+6d64 580005e1 setarg 0x05e1 
+6d65 e0a10000 istore 2 ,contw 
+6d66 19627e00 copy timeup ,pdata 
+6d67 e0a08000 istore 1 ,contw 
+6d68 5800008d setarg 0x8d 
+6d69 e0a08000 istore 1 ,contw 
+6d6a 20406b7c call rfcomm_calculate_fcs_dlci0 
+6d6b e0a08000 istore 1 ,contw 
+6d6c 20600000 rtn 
+
+rfcomm_send_uih_without_payload:
+6d6d 79200025 set1 mark_ext_patch ,mark 
+6d6e 44e4c039 bpatch patch39_1 ,mem_patch39 
+6d6f 6800c757 fetch 1 ,mem_credit_given 
+6d70 207a0000 rtn blank 
+6d71 68110112 hfetch 2 ,core_uart_rxitems 
+6d72 247a0000 nrtn blank 
+6d73 1a227e00 copy rega ,pdata 
+6d74 60008162 store 1 ,mem_pdatatemp + 1 
+6d75 60088161 storet 1 ,mem_pdatatemp 
+6d76 2040527a call l2cap_malloc_is_fifo_full 
+6d77 247a0000 nrtn blank 
+6d78 204052e0 call l2cap_malloc_rfcomm_channel 
+6d79 204052ef call l2cap_get_rfcomm_tx_buff 
+6d7a 58000005 setarg 0x05 
+6d7b e0a10000 istore 2 ,contw 
+6d7c 680142b3 fetch 2 ,mem_rfcomm_remote_cid 
+6d7d e0a10000 istore 2 ,contw 
+6d7e 680084a5 fetch 1 ,mem_rfcomm_send_adss 
+6d7f e0a08000 istore 1 ,contw 
+6d80 580001ff setarg 0x01ff 
+6d81 e0a10000 istore 2 ,contw 
+6d82 6800c757 fetch 1 ,mem_credit_given 
+6d83 e0a08000 istore 1 ,contw 
+6d84 6800c754 fetch 1 ,mem_hiufcs_spp_wcredits 
+6d85 e0a08000 istore 1 ,contw 
+6d86 70475700 jam 0 ,mem_credit_given 
+6d87 20600000 rtn 
+
+rfcomm_increase_credit_given:
+6d88 68010497 fetch 2 ,mem_current_length 
+6d89 207a0000 rtn blank 
+6d8a 6800c757 fetch 1 ,mem_credit_given 
+6d8b 1fe0fe01 increase 1 ,pdata 
+6d8c 6000c757 store 1 ,mem_credit_given 
+6d8d 20600000 rtn 
+
+spp_process_rx_data:
+6d8e 79200025 set1 mark_ext_patch ,mark 
+6d8f 44e54039 bpatch patch39_2 ,mem_patch39 
+6d90 68010497 fetch 2 ,mem_current_length 
+6d91 1fe27200 copy pdata ,loopcnt 
+6d92 204068f7 call uartd_prepare_tx 
+6d93 68010499 fetch 2 ,mem_rfcomm_uih_payload_ptr 
+6d94 1fe20c00 copy pdata ,contr 
+6d95 20404976 call uart_copy_tx_bytes 
+6d96 202068fa branch uartd_send 
+
+spp_tx_rfcomm_packet:
+6d97 79200025 set1 mark_ext_patch ,mark 
+6d98 44e5c039 bpatch patch39_3 ,mem_patch39 
+6d99 6800c756 fetch 1 ,mem_remote_credits 
+6d9a 207a0000 rtn blank 
+6d9b 1fe0ffff increase -1 ,pdata 
+6d9c 6000c756 store 1 ,mem_remote_credits 
+6d9d 6801474c fetch 2 ,mem_pn_max_frame_size 
+6d9e 6809480e fetcht 2 ,mem_current_packet_length 
+6d9f 98467c00 isub temp ,null 
+6da0 20216da2 branch spp_tx_rfcomm_from_uart ,positive 
+6da1 6001480e store 2 ,mem_current_packet_length 
+
+spp_tx_rfcomm_from_uart:
+6da2 6800c757 fetch 1 ,mem_credit_given 
+6da3 203a6daa branch spp_tx_rfcomm_from_uart_without_credit ,blank 
+6da4 7004a801 jam 1 ,mem_rfcomm_send_offset 
+6da5 6800c754 fetch 1 ,mem_hiufcs_spp_wcredits 
+6da6 600084a7 store 1 ,mem_rfcomm_send_fcs 
+6da7 580000ff setarg rsp_rx_uih_wdata 
+6da8 600084a6 store 1 ,mem_rfcomm_send_frame_type 
+6da9 20206daf branch spp_tx_rfcomm_from_uart_common 
+
+spp_tx_rfcomm_from_uart_without_credit:
+6daa 7004a800 jam 0 ,mem_rfcomm_send_offset 
+6dab 6800c753 fetch 1 ,mem_hiufcs_spp 
+6dac 600084a7 store 1 ,mem_rfcomm_send_fcs 
+6dad 580000ef setarg rsp_tx_uih 
+6dae 600084a6 store 1 ,mem_rfcomm_send_frame_type 
+
+spp_tx_rfcomm_from_uart_common:
+6daf 79200025 set1 mark_ext_patch ,mark 
+6db0 44e64039 bpatch patch39_4 ,mem_patch39 
+6db1 6800c80e fetch 1 ,mem_current_packet_length 
+6db2 1fe67c7f sub pdata ,127 ,null 
+6db3 20216db7 branch spp_tx_rfcomm_from_uart_common0 ,positive 
+6db4 680084a8 fetch 1 ,mem_rfcomm_send_offset 
+6db5 1fe0fe01 increase 1 ,pdata 
+6db6 600084a8 store 1 ,mem_rfcomm_send_offset 
+
+spp_tx_rfcomm_from_uart_common0:
+6db7 20406bbf call get_rfcomm_snd_adss 
+6db8 6801480e fetch 2 ,mem_current_packet_length 
+6db9 1fe0fe08 increase 8 ,pdata 
+6dba 680884a8 fetcht 1 ,mem_rfcomm_send_offset 
+6dbb 9840a200 iadd temp ,rega 
+6dbc 20405248 call l2cap_malloc 
+6dbd 600102de store 2 ,mem_rfcomm_tx_buff_ptr 
+6dbe 1fe0fe04 increase 4 ,pdata 
+6dbf 600102e0 store 2 ,mem_rfcomm_tx_payload_ptr 
+6dc0 1fe20a00 copy pdata ,contw 
+6dc1 680084a5 fetch 1 ,mem_rfcomm_send_adss 
+6dc2 e0a08000 istore 1 ,contw 
+6dc3 680084a6 fetch 1 ,mem_rfcomm_send_frame_type 
+6dc4 e0a08000 istore 1 ,contw 
+6dc5 20406dd8 call spp_tx_write_length 
+6dc6 20406de8 call spp_tx_write_given_credit 
+6dc7 20407f6b call get_uart_rrptr 
+6dc8 6800c80e fetch 1 ,mem_current_packet_length 
+6dc9 1fe27200 copy pdata ,loopcnt 
+6dca 2040497c call uart_copy_rx_bytes 
+6dcb 680084a7 fetch 1 ,mem_rfcomm_send_fcs 
+6dcc e0a08000 istore 1 ,contw 
+6dcd 680102de fetch 2 ,mem_rfcomm_tx_buff_ptr 
+6dce 1fe20a00 copy pdata ,contw 
+6dcf 6801480e fetch 2 ,mem_current_packet_length 
+6dd0 680884a8 fetcht 1 ,mem_rfcomm_send_offset 
+6dd1 9840fe00 iadd temp ,pdata 
+6dd2 1fe0fe04 increase 4 ,pdata 
+6dd3 e0a10000 istore 2 ,contw 
+6dd4 680142b3 fetch 2 ,mem_rfcomm_remote_cid 
+6dd5 e0a10000 istore 2 ,contw 
+6dd6 70475700 jam 0 ,mem_credit_given 
+6dd7 2020428c branch spp_send_end 
+
+spp_tx_write_length:
+6dd8 6801480e fetch 2 ,mem_current_packet_length 
+6dd9 1fe67c7f sub pdata ,0x7f ,null 
+6dda 24216ddf nbranch spp_tx_write_long_packet ,positive 
+6ddb 1fe3fe00 lshift pdata ,pdata 
+6ddc 79207e00 set1 0 ,pdata 
+6ddd e0a08000 istore 1 ,contw 
+6dde 20600000 rtn 
+
+spp_tx_write_long_packet:
+6ddf 6801480e fetch 2 ,mem_current_packet_length 
+6de0 1fe97e00 rshift3 pdata ,pdata 
+6de1 1ff18400 rshift4 pdata ,temp 
+6de2 1fe17e7f and_into 0x7f ,pdata 
+6de3 1fe3fe00 lshift pdata ,pdata 
+6de4 793ffe00 set0 0 ,pdata 
+6de5 e0a08000 istore 1 ,contw 
+6de6 e0a88000 istoret 1 ,contw 
+6de7 20600000 rtn 
+
+spp_tx_write_given_credit:
+6de8 6800c757 fetch 1 ,mem_credit_given 
+6de9 207a0000 rtn blank 
+6dea e0a08000 istore 1 ,contw 
+6deb 20600000 rtn 
+
+scheduler_process:
+6dec 79200025 set1 mark_ext_patch ,mark 
+6ded 44cec033 bpatch patch33_5 ,mem_patch33 
+6dee 20407c45 call check_51cmd 
+6def 20403e73 call app_process_bb_event 
+6df0 20406235 call process_conn_sm 
+6df1 79200025 set1 mark_ext_patch ,mark 
+6df2 44cf4033 bpatch patch33_6 ,mem_patch33 
+6df3 20407813 call sp_calc_sequence 
+6df4 204077ee call simple_pairing_sequence 
+6df5 204077fe call master_simple_paring_sequence 
+6df6 79200025 set1 mark_ext_patch ,mark 
+6df7 44cfc033 bpatch patch33_7 ,mem_patch33 
+6df8 6800c132 fetch 1 ,mem_device_option 
+6df9 c1008000 rtneq dvc_op_hci 
+6dfa 2040527a call l2cap_malloc_is_fifo_full 
+6dfb 247a0000 nrtn blank 
+6dfc 20404dcd call l2cap_call_proc_sigal_pending 
+
+scheduler_process1:
+6dfd 2040527a call l2cap_malloc_is_fifo_full 
+6dfe 247a0000 nrtn blank 
+6dff 79200025 set1 mark_ext_patch ,mark 
+6e00 44d04034 bpatch patch34_0 ,mem_patch34 
+6e01 20406e47 call process_upper_sm 
+6e02 20404f6e call l2cap_send_config_req 
+6e03 20406cd8 call rfcomm_send_more_pkt 
+
+scheduler_process0:
+6e04 20406e0a call scheduler_tx_disconnect_hid 
+6e05 79200025 set1 mark_ext_patch ,mark 
+6e06 44d0c034 bpatch patch34_1 ,mem_patch34 
+6e07 2040527a call l2cap_malloc_is_fifo_full 
+6e08 247a0000 nrtn blank 
+6e09 20203e6f branch app_process_bt 
+
+scheduler_tx_disconnect_hid:
+6e0a 79200025 set1 mark_ext_patch ,mark 
+6e0b 44d14034 bpatch patch34_2 ,mem_patch34 
+6e0c 680082e6 fetch 1 ,mem_control_tasks 
+6e0d c280508f bbit1 l2cap_disconnect_interrupt ,l2cap_disconnect_interrupt_req 
+6e0e c283d099 bbit1 l2cap_disconnect_control ,l2cap_disconnect_control_req 
+6e0f 20600000 rtn 
+
+scheduler_tx_l2cap_pkt:
+6e10 79200025 set1 mark_ext_patch ,mark 
+6e11 44d1c034 bpatch patch34_3 ,mem_patch34 
+6e12 2040527e call l2cap_malloc_is_fifo_empty 
+6e13 207a0000 rtn blank 
+6e14 6800804b fetch 1 ,mem_op 
+6e15 c3830000 rtnbit1 op_txl2cap 
+6e16 20405261 call l2cap_malloc_fifo_out 
+6e17 60010179 store 2 ,mem_txptr 
+6e18 1fe20c00 copy pdata ,contr 
+6e19 e8c10000 ifetch 2 ,contr 
+6e1a 1fe0fe04 increase 4 ,pdata 
+6e1b 60010091 store 2 ,mem_tx_len 
+6e1c 70009006 jam 6 ,mem_tx_lch 
+6e1d 79200025 set1 mark_ext_patch ,mark 
+6e1e 44d24034 bpatch patch34_4 ,mem_patch34 
+6e1f 680142af fetch 2 ,mem_l2cap_tx_multi_offset 
+6e20 203a6e2d branch scheduler_tx_l2cap_start_pkt ,blank 
+6e21 6800804b fetch 1 ,mem_op 
+6e22 c4038000 rtnbit0 op_pkt_comp 
+6e23 793ffe07 set0 op_pkt_comp ,pdata 
+6e24 6000804b store 1 ,mem_op 
+6e25 70009005 jam 5 ,mem_tx_lch 
+6e26 680942af fetcht 2 ,mem_l2cap_tx_multi_offset 
+6e27 68010179 fetch 2 ,mem_txptr 
+6e28 9840fe00 iadd temp ,pdata 
+6e29 60010179 store 2 ,mem_txptr 
+6e2a 68010091 fetch 2 ,mem_tx_len 
+6e2b 98467e00 isub temp ,pdata 
+6e2c 60010091 store 2 ,mem_tx_len 
+
+scheduler_tx_l2cap_start_pkt:
+6e2d 79200025 set1 mark_ext_patch ,mark 
+6e2e 44d2c034 bpatch patch34_5 ,mem_patch34 
+6e2f 68010091 fetch 2 ,mem_tx_len 
+6e30 203a3bf1 branch assert ,blank 
+6e31 d8400104 arg l2cap_max_pkt_len ,temp 
+6e32 98467e00 isub temp ,pdata 
+6e33 24216e3b nbranch scheduler_tx_l2cap_last_pkt ,positive 
+6e34 79200025 set1 mark_ext_patch ,mark 
+6e35 44d34034 bpatch patch34_6 ,mem_patch34 
+6e36 60090091 storet 2 ,mem_tx_len 
+6e37 680142af fetch 2 ,mem_l2cap_tx_multi_offset 
+6e38 9840fe00 iadd temp ,pdata 
+6e39 600142af store 2 ,mem_l2cap_tx_multi_offset 
+6e3a 20206e3d branch scheduler_tx_l2cap_pkt_end 
+
+scheduler_tx_l2cap_last_pkt:
+6e3b 58000000 setarg 0 
+6e3c 600142af store 2 ,mem_l2cap_tx_multi_offset 
+
+scheduler_tx_l2cap_pkt_end:
+6e3d 6800804b fetch 1 ,mem_op 
+6e3e 79207e06 set1 op_txl2cap ,pdata 
+6e3f 6000804b store 1 ,mem_op 
+6e40 20600000 rtn 
+
+scheduler_start_upper_sm:
+6e41 6800c7f6 fetch 1 ,mem_ui_profile_supported 
+6e42 c2806e45 bbit1 support_hid ,scheduler_start_upper_sm_hid 
+6e43 7002ee01 jam uppersm_reconn_sdp_conn ,mem_upper_sm_reconn 
+6e44 20600000 rtn 
+
+scheduler_start_upper_sm_hid:
+6e45 7002ee0f jam uppersm_reconn_hid_ctrl_conn ,mem_upper_sm_reconn 
+6e46 20600000 rtn 
+
+process_upper_sm:
+6e47 6800c7f3 fetch 1 ,memui_reconnect_mode 
+6e48 243a6e4d nbranch process_upper_sm_reconn ,blank 
+
+process_upper_sm_remote_page:
+6e49 680082ed fetch 1 ,mem_upper_sm_remote_page 
+6e4a 207a0000 rtn blank 
+6e4b 7002ed00 jam 0 ,mem_upper_sm_remote_page 
+
+process_upper_sm_rp_wait:
+6e4c 20600000 rtn 
+
+process_upper_sm_reconn:
+6e4d 79200025 set1 mark_ext_patch ,mark 
+6e4e 44d3c034 bpatch patch34_7 ,mem_patch34 
+6e4f 680082ee fetch 1 ,mem_upper_sm_reconn 
+6e50 207a0000 rtn blank 
+6e51 c000ee6e beq uppersm_reconn_sdp_conn ,process_upper_sm_reconn_sdp_conn 
+6e52 c0016ec7 beq uppersm_reconn_sdp_conn_wait ,process_upper_sm_reconn_sdp_conn_wait 
+6e53 c001ee74 beq uppersm_reconn_sdp_cfg ,process_upper_sm_reconn_sdp_cfg 
+6e54 c0026ecb beq uppersm_reconn_sdp_cfg_wait ,process_upper_sm_reconn_sdp_cfg_wait 
+6e55 c01dee7e beq uppersm_reconn_ss_spp ,process_upper_sm_reconn_ss_spp 
+6e56 c01e6ece beq uppersm_reconn_ss_spp_wait ,process_upper_sm_reconn_ss_spp_wait 
+6e57 c006ee83 beq uppersm_reconn_sdp_disconn ,process_upper_sm_reconn_sdp_disconn 
+6e58 c0076ed3 beq uppersm_reconn_sdp_disconn_wait ,process_upper_sm_reconn_sdp_disconn_wait 
+6e59 c007ee86 beq uppersm_reconn_hid_ctrl_conn ,process_upper_sm_reconn_hid_ctrl_conn 
+6e5a c0086ed9 beq uppersm_reconn_hid_ctrl_conn_wait ,process_upper_sm_reconn_hid_ctrl_conn_wait 
+6e5b c008ee8c beq uppersm_reconn_hid_ctrl_cfg ,process_upper_sm_reconn_hid_ctrl_cfg 
+6e5c c0096edd beq uppersm_reconn_hid_ctrl_cfg_wait ,process_upper_sm_reconn_hid_ctrl_cfg_wait 
+6e5d c009ee92 beq uppersm_reconn_hid_int_conn ,process_upper_sm_reconn_hid_int_conn 
+6e5e c00a6ee1 beq uppersm_reconn_hid_int_conn_wait ,process_upper_sm_reconn_hid_int_conn_wait 
+6e5f c00aee98 beq uppersm_reconn_hid_int_cfg ,process_upper_sm_reconn_hid_int_cfg 
+6e60 c00b6ee5 beq uppersm_reconn_hid_int_cfg_wait ,process_upper_sm_reconn_hid_int_cfg_wait 
+6e61 c00bee9e beq uppersm_reconn_rfcomm_conn ,process_upper_sm_reconn_rfcomm_conn 
+6e62 c00c6eea beq uppersm_reconn_rfcomm_conn_wait ,process_upper_sm_reconn_rfcomm_conn_wait 
+6e63 c00ceea4 beq uppersm_reconn_rfcomm_cfg ,process_upper_sm_reconn_rfcomm_cfg 
+6e64 c00d6eee beq uppersm_reconn_rfcomm_cfg_wait ,process_upper_sm_reconn_rfcomm_cfg_wait 
+6e65 c00deeaa beq uppersm_reconn_rfcomm_sabm ,process_upper_sm_reconn_rfcomm_sabm 
+6e66 c00e6ef2 beq uppersm_reconn_rfcomm_sabm_wait ,process_upper_sm_reconn_rfcomm_sabm_wait 
+6e67 c00eeeb0 beq uppersm_reconn_spp_cmd_pn ,process_upper_sm_reconn_spp_cmd_pn 
+6e68 c00f6ef7 beq uppersm_reconn_spp_cmd_pn_wait ,process_upper_sm_reconn_spp_cmd_pn_wait 
+6e69 c00feeb6 beq uppersm_reconn_spp_sabm ,process_upper_sm_reconn_spp_sabm 
+6e6a c0106efb beq uppersm_reconn_spp_sabm_wait ,process_upper_sm_reconn_spp_sabm_wait 
+6e6b c010eec1 beq uppersm_reconn_spp_cmd_ms ,process_upper_sm_reconn_spp_cmd_ms 
+6e6c c0116eff beq uppersm_reconn_spp_cmd_ms_wait ,process_upper_sm_reconn_spp_cmd_ms_wait 
+
+process_upper_sm_reconn_wait:
+6e6d 20600000 rtn 
+
+process_upper_sm_reconn_sdp_conn:
+6e6e 20406f0a call upper_sm_send_sdp_conn 
+6e6f 7002ee02 jam uppersm_reconn_sdp_conn_wait ,mem_upper_sm_reconn 
+6e70 6800c2b9 fetch 1 ,mem_sdp_state 
+6e71 79207e00 set1 l2cap_channel_state_conn_req ,pdata 
+6e72 6000c2b9 store 1 ,mem_sdp_state 
+6e73 20600000 rtn 
+
+process_upper_sm_reconn_sdp_cfg:
+6e74 7002ee04 jam uppersm_reconn_sdp_cfg_wait ,mem_upper_sm_reconn 
+6e75 6800c2b9 fetch 1 ,mem_sdp_state 
+6e76 c3810000 rtnbit1 l2cap_channel_state_snd_cfg_req 
+6e77 7002ee03 jam uppersm_reconn_sdp_cfg ,mem_upper_sm_reconn 
+6e78 20406f12 call upper_sm_send_sdp_cfg 
+6e79 7002ee04 jam uppersm_reconn_sdp_cfg_wait ,mem_upper_sm_reconn 
+6e7a 6800c2b9 fetch 1 ,mem_sdp_state 
+6e7b 79207e02 set1 l2cap_channel_state_snd_cfg_req ,pdata 
+6e7c 6000c2b9 store 1 ,mem_sdp_state 
+6e7d 20600000 rtn 
+
+process_upper_sm_reconn_ss_spp:
+6e7e 2040527e call l2cap_malloc_is_fifo_empty 
+6e7f 247a0000 nrtn blank 
+6e80 20406f23 call upper_sm_send_ss_spp 
+6e81 7002ee3c jam uppersm_reconn_ss_spp_wait ,mem_upper_sm_reconn 
+6e82 20600000 rtn 
+
+process_upper_sm_reconn_sdp_disconn:
+6e83 20406f18 call upper_sm_send_sdp_disconn 
+6e84 7002ee0e jam uppersm_reconn_sdp_disconn_wait ,mem_upper_sm_reconn 
+6e85 20600000 rtn 
+
+process_upper_sm_reconn_hid_ctrl_conn:
+6e86 20406f36 call upper_sm_send_hid_ctrl_conn 
+6e87 7002ee10 jam uppersm_reconn_hid_ctrl_conn_wait ,mem_upper_sm_reconn 
+6e88 6800c2bb fetch 1 ,mem_hid_control_state 
+6e89 79207e00 set1 l2cap_channel_state_conn_req ,pdata 
+6e8a 6000c2bb store 1 ,mem_hid_control_state 
+6e8b 20600000 rtn 
+
+process_upper_sm_reconn_hid_ctrl_cfg:
+6e8c 20406f3e call upper_sm_send_hid_ctrl_cfg 
+6e8d 7002ee12 jam uppersm_reconn_hid_ctrl_cfg_wait ,mem_upper_sm_reconn 
+6e8e 6800c2bb fetch 1 ,mem_hid_control_state 
+6e8f 79207e02 set1 l2cap_channel_state_snd_cfg_req ,pdata 
+6e90 6000c2bb store 1 ,mem_hid_control_state 
+6e91 20600000 rtn 
+
+process_upper_sm_reconn_hid_int_conn:
+6e92 20406f44 call upper_sm_send_hid_int_conn 
+6e93 7002ee14 jam uppersm_reconn_hid_int_conn_wait ,mem_upper_sm_reconn 
+6e94 6800c2bc fetch 1 ,mem_hid_interrupt_state 
+6e95 79207e00 set1 l2cap_channel_state_conn_req ,pdata 
+6e96 6000c2bc store 1 ,mem_hid_interrupt_state 
+6e97 20600000 rtn 
+
+process_upper_sm_reconn_hid_int_cfg:
+6e98 20406f4c call upper_sm_send_hid_int_cfg 
+6e99 7002ee16 jam uppersm_reconn_hid_int_cfg_wait ,mem_upper_sm_reconn 
+6e9a 6800c2bc fetch 1 ,mem_hid_interrupt_state 
+6e9b 79207e02 set1 l2cap_channel_state_snd_cfg_req ,pdata 
+6e9c 6000c2bc store 1 ,mem_hid_interrupt_state 
+6e9d 20600000 rtn 
+
+process_upper_sm_reconn_rfcomm_conn:
+6e9e 20406f28 call upper_sm_send_rfcomm_conn 
+6e9f 7002ee18 jam uppersm_reconn_rfcomm_conn_wait ,mem_upper_sm_reconn 
+6ea0 6800c2ba fetch 1 ,mem_rfcomm_state 
+6ea1 79207e00 set1 l2cap_channel_state_conn_req ,pdata 
+6ea2 6000c2ba store 1 ,mem_rfcomm_state 
+6ea3 20600000 rtn 
+
+process_upper_sm_reconn_rfcomm_cfg:
+6ea4 20406f30 call upper_sm_send_rfcomm_cfg 
+6ea5 7002ee1a jam uppersm_reconn_rfcomm_cfg_wait ,mem_upper_sm_reconn 
+6ea6 6800c2ba fetch 1 ,mem_rfcomm_state 
+6ea7 79207e02 set1 l2cap_channel_state_snd_cfg_req ,pdata 
+6ea8 6000c2ba store 1 ,mem_rfcomm_state 
+6ea9 20600000 rtn 
+
+process_upper_sm_reconn_rfcomm_sabm:
+6eaa 20406f52 call upper_sm_send_rfcomm_sabm 
+6eab 7002ee1c jam uppersm_reconn_rfcomm_sabm_wait ,mem_upper_sm_reconn 
+6eac 6800c2ba fetch 1 ,mem_rfcomm_state 
+6ead 79207e06 set1 l2cap_channel_rfcomm_only_sabm ,pdata 
+6eae 6000c2ba store 1 ,mem_rfcomm_state 
+6eaf 20600000 rtn 
+
+process_upper_sm_reconn_spp_cmd_pn:
+6eb0 20406f5a call upper_sm_send_spp_cmd_pn 
+6eb1 6800c2bd fetch 1 ,mem_spp_state 
+6eb2 79207e00 set1 rfcomm_channel_state_pn_cmd 
+6eb3 6000c2bd store 1 ,mem_spp_state 
+6eb4 7002ee1e jam uppersm_reconn_spp_cmd_pn_wait ,mem_upper_sm_reconn 
+6eb5 20600000 rtn 
+
+process_upper_sm_reconn_spp_sabm:
+6eb6 20406f61 call upper_sm_send_spp_sabm 
+6eb7 6800c2bd fetch 1 ,mem_spp_state 
+6eb8 79207e02 set1 rfcomm_channel_state_sabm 
+6eb9 6000c2bd store 1 ,mem_spp_state 
+6eba 7002ee20 jam uppersm_reconn_spp_sabm_wait ,mem_upper_sm_reconn 
+6ebb 6800c752 fetch 1 ,mem_remote_spp_channel 
+6ebc 1fe9fe00 lshift3 pdata ,pdata 
+6ebd 1fe1fe03 or_into 3 ,pdata 
+6ebe d8404753 arg mem_hiufcs_spp ,temp 
+6ebf 6009048f storet 2 ,mem_contw_temp 
+6ec0 20206b82 branch rfcomm_save_fcs_uih 
+
+process_upper_sm_reconn_spp_cmd_ms:
+6ec1 20406f6c call upper_sm_send_spp_cmd_ms 
+6ec2 6800c2bd fetch 1 ,mem_spp_state 
+6ec3 79207e04 set1 rfcomm_channel_state_snd_ms_cmd 
+6ec4 6000c2bd store 1 ,mem_spp_state 
+6ec5 7002ee22 jam uppersm_reconn_spp_cmd_ms_wait ,mem_upper_sm_reconn 
+6ec6 20600000 rtn 
+
+process_upper_sm_reconn_sdp_conn_wait:
+6ec7 6800c2b9 fetch 1 ,mem_sdp_state 
+6ec8 c4008000 rtnbit0 l2cap_channel_state_conn_res 
+6ec9 7002ee03 jam uppersm_reconn_sdp_cfg ,mem_upper_sm_reconn 
+6eca 20206e4d branch process_upper_sm_reconn 
+
+process_upper_sm_reconn_sdp_cfg_wait:
+6ecb 6800c2b9 fetch 1 ,mem_sdp_state 
+6ecc c19f8000 rtnne l2cap_channel_setup_complete 
+6ecd 7002ee3b jam uppersm_reconn_ss_spp ,mem_upper_sm_reconn 
+
+process_upper_sm_reconn_ss_spp_wait:
+6ece 680082ec fetch 1 ,mem_message_to_uppersm 
+6ecf c18b8000 rtnne recieve_ss_reasult_hf 
+6ed0 7002ec00 jam 0 ,mem_message_to_uppersm 
+6ed1 7002ee0d jam uppersm_reconn_sdp_disconn ,mem_upper_sm_reconn 
+6ed2 20206e4d branch process_upper_sm_reconn 
+
+process_upper_sm_reconn_sdp_disconn_wait:
+6ed3 6800c2b9 fetch 1 ,mem_sdp_state 
+6ed4 247a0000 nrtn blank 
+6ed5 6800c7f6 fetch 1 ,mem_ui_profile_supported 
+6ed6 c2806f02 bbit1 support_hid ,process_upper_sm_reconn_setup_hid 
+6ed7 c2836f04 bbit1 support_spp ,process_upper_sm_reconn_setup_rfcomm 
+6ed8 20206f08 branch process_upper_sm_reconn_termination 
+
+process_upper_sm_reconn_hid_ctrl_conn_wait:
+6ed9 6800c2bb fetch 1 ,mem_hid_control_state 
+6eda c4008000 rtnbit0 l2cap_channel_state_conn_res 
+6edb 7002ee11 jam uppersm_reconn_hid_ctrl_cfg ,mem_upper_sm_reconn 
+6edc 20206e4d branch process_upper_sm_reconn 
+
+process_upper_sm_reconn_hid_ctrl_cfg_wait:
+6edd 6800c2bb fetch 1 ,mem_hid_control_state 
+6ede c19f8000 rtnne l2cap_channel_setup_complete 
+6edf 7002ee13 jam uppersm_reconn_hid_int_conn ,mem_upper_sm_reconn 
+6ee0 20206e4d branch process_upper_sm_reconn 
+
+process_upper_sm_reconn_hid_int_conn_wait:
+6ee1 6800c2bc fetch 1 ,mem_hid_interrupt_state 
+6ee2 c4008000 rtnbit0 l2cap_channel_state_conn_res 
+6ee3 7002ee15 jam uppersm_reconn_hid_int_cfg ,mem_upper_sm_reconn 
+6ee4 20206e4d branch process_upper_sm_reconn 
+
+process_upper_sm_reconn_hid_int_cfg_wait:
+6ee5 6800c2bc fetch 1 ,mem_hid_interrupt_state 
+6ee6 c19f8000 rtnne l2cap_channel_setup_complete 
+6ee7 6800c7f6 fetch 1 ,mem_ui_profile_supported 
+6ee8 c2836f04 bbit1 support_spp ,process_upper_sm_reconn_setup_rfcomm 
+6ee9 20206f08 branch process_upper_sm_reconn_termination 
+
+process_upper_sm_reconn_rfcomm_conn_wait:
+6eea 6800c2ba fetch 1 ,mem_rfcomm_state 
+6eeb c4008000 rtnbit0 l2cap_channel_state_conn_res 
+6eec 7002ee19 jam uppersm_reconn_rfcomm_cfg ,mem_upper_sm_reconn 
+6eed 20206e4d branch process_upper_sm_reconn 
+
+process_upper_sm_reconn_rfcomm_cfg_wait:
+6eee 6800c2ba fetch 1 ,mem_rfcomm_state 
+6eef c19f8000 rtnne l2cap_channel_setup_complete 
+6ef0 7002ee1b jam uppersm_reconn_rfcomm_sabm ,mem_upper_sm_reconn 
+6ef1 20206e4d branch process_upper_sm_reconn 
+
+process_upper_sm_reconn_rfcomm_sabm_wait:
+6ef2 6800c2ba fetch 1 ,mem_rfcomm_state 
+6ef3 c1ff8000 rtnne l2cap_channel_rfcomm_dlci0_opened 
+6ef4 6800c7f6 fetch 1 ,mem_ui_profile_supported 
+6ef5 c2836f06 bbit1 support_spp ,process_upper_sm_reconn_setup_spp 
+6ef6 20206f08 branch process_upper_sm_reconn_termination 
+
+process_upper_sm_reconn_spp_cmd_pn_wait:
+6ef7 6800c2bd fetch 1 ,mem_spp_state 
+6ef8 c4008000 rtnbit0 rfcomm_channel_state_pn_res 
+6ef9 7002ee1f jam uppersm_reconn_spp_sabm ,mem_upper_sm_reconn 
+6efa 20206e4d branch process_upper_sm_reconn 
+
+process_upper_sm_reconn_spp_sabm_wait:
+6efb 6800c2bd fetch 1 ,mem_spp_state 
+6efc c4018000 rtnbit0 rfcomm_channel_state_ua 
+6efd 7002ee21 jam uppersm_reconn_spp_cmd_ms ,mem_upper_sm_reconn 
+6efe 20206e4d branch process_upper_sm_reconn 
+
+process_upper_sm_reconn_spp_cmd_ms_wait:
+6eff 6800c2bd fetch 1 ,mem_spp_state 
+6f00 c1ff8000 rtnne rfcomm_channel_setup_complete 
+6f01 20206f08 branch process_upper_sm_reconn_termination 
+
+process_upper_sm_reconn_setup_hid:
+6f02 7002ee0f jam uppersm_reconn_hid_ctrl_conn ,mem_upper_sm_reconn 
+6f03 20206e4d branch process_upper_sm_reconn 
+
+process_upper_sm_reconn_setup_rfcomm:
+6f04 7002ee17 jam uppersm_reconn_rfcomm_conn ,mem_upper_sm_reconn 
+6f05 20206e4d branch process_upper_sm_reconn 
+
+process_upper_sm_reconn_setup_spp:
+6f06 7002ee1d jam uppersm_reconn_spp_cmd_pn ,mem_upper_sm_reconn 
+6f07 20206e4d branch process_upper_sm_reconn 
+
+process_upper_sm_reconn_termination:
+6f08 7002ee00 jam 0 ,mem_upper_sm_reconn 
+6f09 20600000 rtn 
+
+upper_sm_send_sdp_conn:
+6f0a 79200025 set1 mark_ext_patch ,mark 
+6f0b 44d44035 bpatch patch35_0 ,mem_patch35 
+6f0c 204052c4 call l2cap_malloc_signal_channel 
+6f0d 58000001 setarg psm_sdp 
+6f0e 1fe20400 copy pdata ,temp 
+6f0f 58000050 setarg l2cap_sdp_channel 
+6f10 1fe21600 copy pdata ,timeup 
+6f11 202050b0 branch ml2cap_send_signal_connect_req 
+
+upper_sm_send_sdp_cfg:
+6f12 79200025 set1 mark_ext_patch ,mark 
+6f13 44d4c035 bpatch patch35_1 ,mem_patch35 
+6f14 204052c4 call l2cap_malloc_signal_channel 
+6f15 680142b1 fetch 2 ,mem_sdp_remote_cid 
+6f16 1fe20400 copy pdata ,temp 
+6f17 202050c0 branch ml2cap_send_signal_config_req 
+
+upper_sm_send_sdp_disconn:
+6f18 79200025 set1 mark_ext_patch ,mark 
+6f19 44d54035 bpatch patch35_2 ,mem_patch35 
+6f1a 204052c4 call l2cap_malloc_signal_channel 
+6f1b 680142b1 fetch 2 ,mem_sdp_remote_cid 
+6f1c 1fe20400 copy pdata ,temp 
+6f1d d9600050 arg l2cap_sdp_channel ,timeup 
+6f1e 204050d6 call ml2cap_send_signal_disconn_req 
+6f1f 6800c2b9 fetch 1 ,mem_sdp_state 
+6f20 793ffe05 set0 l2cap_channel_state_rcv_cfg_res ,pdata 
+6f21 6000c2b9 store 1 ,mem_sdp_state 
+6f22 20600000 rtn 
+
+upper_sm_send_ss_spp:
+6f23 79200025 set1 mark_ext_patch ,mark 
+6f24 44d5c035 bpatch patch35_3 ,mem_patch35 
+6f25 204052d2 call l2cap_malloc_sdp_channel 
+6f26 204071b0 call sdp_send_spp_request 
+6f27 202050f2 branch msdp_send_req_done 
+
+upper_sm_send_rfcomm_conn:
+6f28 79200025 set1 mark_ext_patch ,mark 
+6f29 44d64035 bpatch patch35_4 ,mem_patch35 
+6f2a 204052c4 call l2cap_malloc_signal_channel 
+6f2b 58000003 setarg psm_rfcomm 
+6f2c 1fe20400 copy pdata ,temp 
+6f2d 58000051 setarg l2cap_rfcomm_channel 
+6f2e 1fe21600 copy pdata ,timeup 
+6f2f 202050b0 branch ml2cap_send_signal_connect_req 
+
+upper_sm_send_rfcomm_cfg:
+6f30 79200025 set1 mark_ext_patch ,mark 
+6f31 44d6c035 bpatch patch35_5 ,mem_patch35 
+6f32 204052c4 call l2cap_malloc_signal_channel 
+6f33 680142b3 fetch 2 ,mem_rfcomm_remote_cid 
+6f34 1fe20400 copy pdata ,temp 
+6f35 202050c0 branch ml2cap_send_signal_config_req 
+
+upper_sm_send_hid_ctrl_conn:
+6f36 79200025 set1 mark_ext_patch ,mark 
+6f37 44d74035 bpatch patch35_6 ,mem_patch35 
+6f38 204052c4 call l2cap_malloc_signal_channel 
+6f39 58000011 setarg psm_hid_control 
+6f3a 1fe20400 copy pdata ,temp 
+6f3b 58000052 setarg l2cap_hid_control_channel 
+6f3c 1fe21600 copy pdata ,timeup 
+6f3d 202050b0 branch ml2cap_send_signal_connect_req 
+
+upper_sm_send_hid_ctrl_cfg:
+6f3e 79200025 set1 mark_ext_patch ,mark 
+6f3f 44d7c035 bpatch patch35_7 ,mem_patch35 
+6f40 204052c4 call l2cap_malloc_signal_channel 
+6f41 680142b5 fetch 2 ,mem_hid_ctrl_remote_cid 
+6f42 1fe20400 copy pdata ,temp 
+6f43 202050c0 branch ml2cap_send_signal_config_req 
+
+upper_sm_send_hid_int_conn:
+6f44 79200025 set1 mark_ext_patch ,mark 
+6f45 44d84036 bpatch patch36_0 ,mem_patch36 
+6f46 204052c4 call l2cap_malloc_signal_channel 
+6f47 58000013 setarg psm_hid_interrupt 
+6f48 1fe20400 copy pdata ,temp 
+6f49 58000053 setarg l2cap_hid_interrupt_channel 
+6f4a 1fe21600 copy pdata ,timeup 
+6f4b 202050b0 branch ml2cap_send_signal_connect_req 
+
+upper_sm_send_hid_int_cfg:
+6f4c 79200025 set1 mark_ext_patch ,mark 
+6f4d 44d8c036 bpatch patch36_1 ,mem_patch36 
+6f4e 204052c4 call l2cap_malloc_signal_channel 
+6f4f 680142b7 fetch 2 ,mem_hid_int_remote_cid 
+6f50 1fe20400 copy pdata ,temp 
+6f51 202050c0 branch ml2cap_send_signal_config_req 
+
+upper_sm_send_rfcomm_sabm:
+6f52 79200025 set1 mark_ext_patch ,mark 
+6f53 44d94036 bpatch patch36_2 ,mem_patch36 
+6f54 204052e0 call l2cap_malloc_rfcomm_channel 
+6f55 70049303 jam 3 ,mem_current_adss 
+6f56 7004961c jam 0x1c ,mem_current_fcs 
+6f57 20406ce8 call rfcomm_send_sabm 
+6f58 70475101 jam 1 ,mem_rfcomm_initiator 
+6f59 20600000 rtn 
+
+upper_sm_send_spp_cmd_pn:
+6f5a 79200025 set1 mark_ext_patch ,mark 
+6f5b 44d9c036 bpatch patch36_3 ,mem_patch36 
+6f5c 204052e0 call l2cap_malloc_rfcomm_channel 
+6f5d 6808c752 fetcht 1 ,mem_remote_spp_channel 
+6f5e 20406bcb call channel_to_dlci 
+6f5f 6008c74b storet 1 ,mem_pn_dlci 
+6f60 20206d05 branch rfcomm_send_param_neg_cmd 
+
+upper_sm_send_spp_sabm:
+6f61 79200025 set1 mark_ext_patch ,mark 
+6f62 44da4036 bpatch patch36_4 ,mem_patch36 
+6f63 204052e0 call l2cap_malloc_rfcomm_channel 
+6f64 6808c74b fetcht 1 ,mem_pn_dlci 
+6f65 20406bc0 call dlci_to_address_cmd 
+6f66 20406b67 call rfcomm_calculate_fcs_sabm 
+6f67 60008496 store 1 ,mem_current_fcs 
+6f68 6808c74b fetcht 1 ,mem_pn_dlci 
+6f69 20406bc0 call dlci_to_address_cmd 
+6f6a 60088493 storet 1 ,mem_current_adss 
+6f6b 20206ce8 branch rfcomm_send_sabm 
+
+upper_sm_send_spp_cmd_ms:
+6f6c 79200025 set1 mark_ext_patch ,mark 
+6f6d 44dac036 bpatch patch36_5 ,mem_patch36 
+6f6e 204052e0 call l2cap_malloc_rfcomm_channel 
+6f6f 6808c74b fetcht 1 ,mem_pn_dlci 
+6f70 20406bc0 call dlci_to_address_cmd 
+6f71 20206d3f branch rfcomm_send_modem_status_cmd 
+
+sdp_process:
+6f72 79200025 set1 mark_ext_patch ,mark 
+6f73 44f3c03c bpatch patch3c_7 ,mem_patch3c 
+6f74 680102cb fetch 2 ,mem_l2cap_payload_ptr 
+6f75 98000c00 iforce contr 
+6f76 e8c08000 ifetch 1 ,contr 
+6f77 1fe22400 copy pdata ,regb 
+6f78 600084af store 1 ,mem_sdp_pduid 
+6f79 e8c10000 ifetch 2 ,contr 
+6f7a 600104b0 store 2 ,mem_sdp_transactionid 
+6f7b e8c08000 ifetch 1 ,contr 
+6f7c 1fed1600 lshift8 pdata ,timeup 
+6f7d e8c08000 ifetch 1 ,contr 
+6f7e 99609600 iadd timeup ,timeup 
+6f7f 79200025 set1 mark_ext_patch ,mark 
+6f80 44f4403d bpatch patch3d_0 ,mem_patch3d 
+6f81 1a427e00 deposit regb 
+6f82 c0016f87 beq sdp_service_search_request ,servicesearch_req 
+6f83 c0026fb0 beq sdp_service_attribute_request ,serviceattribute_req 
+6f84 c003708b beq sdp_service_search_attribute_request ,servicesearchattribute_req 
+6f85 c003f1c7 beq sdp_service_search_attribute_response ,servicesearchattribute_res 
+6f86 2020723e branch sdp_insufficient_resource 
+
+servicesearch_req:
+6f87 2040724d call ask_serviceclassid 
+6f88 2841fe01 compare 1 ,temp ,0xff 
+6f89 2020f2bb branch empth_sa_rsp ,true 
+6f8a 2841feff compare 0xff ,temp ,0xff 
+6f8b 2020f241 branch sdp_invalid_reqest_syntax ,true 
+6f8c e8c10000 ifetch 2 ,contr 
+6f8d 600104b4 store 2 ,mem_sdp_record_maxcnt 
+6f8e 196097fe increase -2 ,timeup 
+6f8f 196097ff increase -1 ,timeup 
+6f90 2422f23b nbranch sdp_invalid_pdu_size ,zero 
+6f91 d96004a9 arg mem_uuid_search_pat ,timeup 
+6f92 e9610000 ifetch 2 ,timeup 
+6f93 207a0000 rtn blank 
+6f94 19609602 increase 2 ,timeup 
+6f95 20407307 call search_uuid 
+6f96 204052de call l2cap_get_sdp_tx_payload 
+6f97 18007e03 force 3 ,pdata 
+6f98 e0a08000 istore 1 ,contw 
+6f99 680104b0 fetch 2 ,mem_sdp_transactionid 
+6f9a e0a10000 istore 2 ,contw 
+6f9b 18ebfe00 lshift2 queue ,pdata 
+6f9c 1fe0fe05 add pdata ,5 ,pdata 
+6f9d 1fe0a605 add pdata ,5 ,regc 
+6f9e 1ff0fe00 byteswap pdata ,pdata 
+6f9f e0a10000 istore 2 ,contw 
+6fa0 18e27e00 deposit queue 
+6fa1 1ff0fe00 byteswap pdata ,pdata 
+6fa2 e0a10000 istore 2 ,contw 
+6fa3 e0a10000 istore 2 ,contw 
+6fa4 d8c004c5 arg mem_handle_list ,contr 
+6fa5 18e27200 copy queue ,loopcnt 
+6fa6 2022efaa branch servicesearch_req_blank ,zero 
+
+servicesearch_req_loop:
+6fa7 e8c20000 ifetch 4 ,contr 
+6fa8 e0a20000 istore 4 ,contw 
+6fa9 c2006fa7 loop servicesearch_req_loop 
+
+servicesearch_req_blank:
+6faa 18007e00 force 0 ,pdata 
+6fab e0a08000 istore 1 ,contw 
+6fac 1a627e00 deposit regc 
+6fad 600082dc store 1 ,mem_sdp_tx_pkt_length 
+6fae 203a3bf1 branch assert ,blank 
+6faf 20600000 rtn 
+
+serviceattribute_req:
+6fb0 e8c20000 ifetch 4 ,contr 
+6fb1 600204be store 4 ,mem_sdp_record_handle 
+6fb2 196097fc increase -4 ,timeup 
+6fb3 98000400 iforce temp 
+6fb4 e8c10000 ifetch 2 ,contr 
+6fb5 1ff0fe00 byteswap pdata ,pdata 
+6fb6 1fe0ffee increase -18 ,pdata 
+6fb7 600104b2 store 2 ,mem_sdp_attribute_maxbyte 
+6fb8 196097fe increase -2 ,timeup 
+6fb9 204072a4 call dataelementtype6 
+6fba 2022f241 branch sdp_invalid_reqest_syntax ,zero 
+6fbb 2a21fe05 compare 5 ,rega ,0xff 
+6fbc 2020efc0 branch serviceattribute_judge_wholerangle ,true 
+
+serviceattribute_isnot_wholerangle:
+6fbd d8a00491 arg mem_attrib_list ,contw 
+6fbe 18000e00 force 0 ,queue 
+6fbf 20206fd0 branch serviceattribute_req_loop 
+
+serviceattribute_judge_wholerangle:
+6fc0 e8c08000 ifetch 1 ,contr 
+6fc1 c0857241 bne 0xa ,sdp_invalid_reqest_syntax 
+6fc2 e8c10000 ifetch 2 ,contr 
+6fc3 243a6fce nbranch serviceattribute_judge_wholerangle_false1 ,blank 
+6fc4 e8c08000 ifetch 1 ,contr 
+6fc5 c0ffefcc bne 0xff ,serviceattribute_judge_wholerangle_false2 
+6fc6 e8c08000 ifetch 1 ,contr 
+6fc7 c0ffefca bne 0xff ,serviceattribute_judge_wholerangle_false3 
+6fc8 18c08dfb increase -5 ,contr 
+6fc9 20207022 branch serviceattribute_req_all 
+
+serviceattribute_judge_wholerangle_false3:
+6fca 18c08dfb increase -5 ,contr 
+6fcb 20206fbd branch serviceattribute_isnot_wholerangle 
+
+serviceattribute_judge_wholerangle_false2:
+6fcc 18c08dfc increase -4 ,contr 
+6fcd 20206fbd branch serviceattribute_isnot_wholerangle 
+
+serviceattribute_judge_wholerangle_false1:
+6fce 18c08dfd increase -3 ,contr 
+6fcf 20206fbd branch serviceattribute_isnot_wholerangle 
+
+serviceattribute_req_loop:
+6fd0 e8c08000 ifetch 1 ,contr 
+6fd1 c004efe5 beq 0x09 ,serviceattribute_req_one_id 
+6fd2 c0056fd3 beq 0x0a ,serviceattribute_req_range_id 
+
+serviceattribute_req_range_id:
+6fd3 e8c10000 ifetch 2 ,contr 
+6fd4 e0a10000 istore 2 ,contw 
+6fd5 18e08e01 increase 1 ,queue 
+6fd6 1ff0a400 byteswap pdata ,regb 
+6fd7 e8c10000 ifetch 2 ,contr 
+6fd8 1ff0fe00 byteswap pdata ,pdata 
+
+serviceattribute_req_range_id_increase:
+6fd9 1a40a401 increase 1 ,regb 
+6fda 9a467c00 isub regb ,null 
+6fdb 24216fe2 nbranch serviceattribute_req_range_id_finish ,positive 
+6fdc 1fe22600 copy pdata ,regc 
+6fdd 1a50fe00 byteswap regb ,pdata 
+6fde e0a10000 istore 2 ,contw 
+6fdf 18e08e01 increase 1 ,queue 
+6fe0 1a627e00 copy regc ,pdata 
+6fe1 20206fd9 branch serviceattribute_req_range_id_increase 
+
+serviceattribute_req_range_id_finish:
+6fe2 196097fb increase -5 ,timeup 
+6fe3 1a20a3fb increase -5 ,rega 
+6fe4 20206fea branch serviceattribute_req_check_next_id 
+
+serviceattribute_req_one_id:
+6fe5 e8c10000 ifetch 2 ,contr 
+6fe6 e0a10000 istore 2 ,contw 
+6fe7 18e08e01 increase 1 ,queue 
+6fe8 196097fd increase -3 ,timeup 
+6fe9 1a20a3fd increase -3 ,rega 
+
+serviceattribute_req_check_next_id:
+6fea 24217241 nbranch sdp_invalid_reqest_syntax ,positive 
+6feb 2422efd0 nbranch serviceattribute_req_loop ,zero 
+6fec 196097ff increase -1 ,timeup 
+6fed 2422f241 nbranch sdp_invalid_reqest_syntax ,zero 
+6fee 204052de call l2cap_get_sdp_tx_payload 
+6fef 18a08a0a increase 10 ,contw 
+6ff0 da200491 arg mem_attrib_list ,rega 
+
+answer_handle_attributelist_next:
+6ff1 18e27e00 copy queue ,pdata 
+6ff2 203a7004 branch answer_handle_attributelist_end ,blank 
+6ff3 ea210000 ifetch 2 ,rega 
+6ff4 203a7004 branch answer_handle_attributelist_end ,blank 
+6ff5 98002400 iforce regb 
+6ff6 680204be fetch 4 ,mem_sdp_record_handle 
+6ff7 98000400 iforce temp 
+6ff8 2040734e call search_handle_attrib 
+6ff9 203a7001 branch answer_handle_attributelist_notfound ,blank 
+6ffa 18c08dfd increase -3 ,contr 
+6ffb e8c18000 ifetch 3 ,contr 
+6ffc e0a18000 istore 3 ,contw 
+6ffd 20407199 call sdp_data_len_obs 
+6ffe 203a7001 branch answer_handle_attributelist_notfound ,blank 
+6fff 98007200 iforce loopcnt 
+7000 20407e45 call memcpy 
+
+answer_handle_attributelist_notfound:
+7001 1a20a202 increase 2 ,rega 
+7002 18e08fff increase -1 ,queue 
+7003 20206ff1 branch answer_handle_attributelist_next 
+
+answer_handle_attributelist_end:
+7004 18007e00 force 0 ,pdata 
+7005 e0a08000 istore 1 ,contw 
+7006 18a08bff increase -1 ,contw 
+7007 680902da fetcht 2 ,mem_sdp_tx_payload_ptr 
+7008 1840fe0a add temp ,10 ,pdata 
+7009 98a67e00 isub contw ,pdata 
+700a 1fe62200 sub pdata ,0 ,rega 
+700b 1a30fe00 byteswap rega ,pdata 
+700c 1840a408 add temp ,8 ,regb 
+700d e2410000 istore 2 ,regb 
+700e 1a20a203 increase 3 ,rega 
+700f 1a30fe00 byteswap rega ,pdata 
+7010 1840a405 add temp ,5 ,regb 
+7011 e2410000 istore 2 ,regb 
+7012 1a20a203 increase 3 ,rega 
+7013 1a30fe00 byteswap rega ,pdata 
+7014 1840a403 add temp ,3 ,regb 
+7015 e2410000 istore 2 ,regb 
+7016 1a20a205 increase 5 ,rega 
+7017 1a227e00 copy rega ,pdata 
+7018 600102dc store 2 ,mem_sdp_tx_pkt_length 
+7019 58000036 setarg 0x36 
+701a 1840a407 add temp ,7 ,regb 
+701b e2408000 istore 1 ,regb 
+701c 58000005 setarg 5 
+701d e0408000 istore 1 ,temp 
+701e 680104b0 fetch 2 ,mem_sdp_transactionid 
+701f 1840a401 add temp ,1 ,regb 
+7020 e2410000 istore 2 ,regb 
+7021 20600000 rtn 
+
+serviceattribute_req_all:
+7022 e8c08000 ifetch 1 ,contr 
+7023 c0857241 bne 0xa ,sdp_invalid_reqest_syntax 
+7024 e8c10000 ifetch 2 ,contr 
+7025 243a7241 nbranch sdp_invalid_reqest_syntax ,blank 
+7026 e8c08000 ifetch 1 ,contr 
+7027 c0fff241 bne 0xff ,sdp_invalid_reqest_syntax 
+7028 e8c08000 ifetch 1 ,contr 
+7029 c0fff241 bne 0xff ,sdp_invalid_reqest_syntax 
+702a 196097fb increase -5 ,timeup 
+702b e8c08000 ifetch 1 ,contr 
+702c c000702f beq 0 ,continue_zero 
+702d c000f032 beq 1 ,continue_one_byte 
+702e c0017036 beq 2 ,continue_two_byte 
+
+continue_zero:
+702f 600104ad store 2 ,mem_sdp_continue_byte 
+7030 196097ff increase -1 ,timeup 
+7031 2020703a branch continue_end 
+
+continue_one_byte:
+7032 e8c08000 ifetch 1 ,contr 
+7033 600104ad store 2 ,mem_sdp_continue_byte 
+7034 196097fe increase -2 ,timeup 
+7035 2020703a branch continue_end 
+
+continue_two_byte:
+7036 e8c10000 ifetch 2 ,contr 
+7037 1ff0fe00 byteswap pdata ,pdata 
+7038 600104ad store 2 ,mem_sdp_continue_byte 
+7039 196097fd increase -3 ,timeup 
+
+continue_end:
+703a 2422f23b nbranch sdp_invalid_pdu_size ,zero 
+703b 2040731e call search_handle 
+703c 2422f238 nbranch sdp_invalid_service_record_handle ,zero 
+703d 18c22200 copy contr ,rega 
+703e 204052de call l2cap_get_sdp_tx_payload 
+703f 1a220c00 copy rega ,contr 
+7040 18a08a03 increase 3 ,contw 
+7041 18c21600 copy contr ,timeup 
+7042 204072e8 call sdp_get_data 
+7043 1fe22200 copy pdata ,rega 
+7044 680104ad fetch 2 ,mem_sdp_continue_byte 
+7045 1fe22400 copy pdata ,regb 
+7046 1a227e00 copy rega ,pdata 
+7047 9a462400 isub regb ,regb 
+7048 680104b2 fetch 2 ,mem_sdp_attribute_maxbyte 
+7049 9a467c00 isub regb ,null 
+704a 24217066 nbranch fragment_sdp ,positive 
+704b 78547c00 disable user 
+704c 680104ad fetch 2 ,mem_sdp_continue_byte 
+704d 203a7059 branch fisrt_fragment ,blank 
+704e 99608c00 iadd timeup ,contr 
+704f 1a40a403 increase 3 ,regb 
+7050 1a427200 copy regb ,loopcnt 
+7051 1f227e00 copy loopcnt ,pdata 
+7052 1fe0fe03 increase 3 ,pdata 
+7053 1ff0fe00 byteswap pdata ,pdata 
+7054 e0a10000 istore 2 ,contw 
+7055 1f227e00 copy loopcnt ,pdata 
+7056 1ff0fe00 byteswap pdata ,pdata 
+7057 e0a10000 istore 2 ,contw 
+7058 20207074 branch answer_attributelist_full_loop 
+
+fisrt_fragment:
+7059 1a20f206 add rega ,6 ,loopcnt 
+705a 2034705d branch parlength_continue_byte ,user 
+705b 1f30fe00 byteswap loopcnt ,pdata 
+705c 20207060 branch parlength_continue_byte_end 
+
+parlength_continue_byte:
+705d 1f227e00 copy loopcnt ,pdata 
+705e 1fe0fe02 increase 2 ,pdata 
+705f 1ff0fe00 byteswap pdata ,pdata 
+
+parlength_continue_byte_end:
+7060 e0a10000 istore 2 ,contw 
+7061 1f20f3fd increase -3 ,loopcnt 
+7062 1f30fe00 byteswap loopcnt ,pdata 
+7063 e0a10000 istore 2 ,contw 
+7064 19620c00 copy timeup ,contr 
+7065 20207074 branch answer_attributelist_full_loop 
+
+fragment_sdp:
+7066 78347c00 enable user 
+7067 680104b2 fetch 2 ,mem_sdp_attribute_maxbyte 
+7068 1fe22200 copy pdata ,rega 
+7069 1fe27200 copy pdata ,loopcnt 
+706a 680104ad fetch 2 ,mem_sdp_continue_byte 
+706b 203a7059 branch fisrt_fragment ,blank 
+706c 99608c00 iadd timeup ,contr 
+706d 1a227e00 copy rega ,pdata 
+706e 1fe0fe05 increase 5 ,pdata 
+706f 1ff0fe00 byteswap pdata ,pdata 
+7070 e0a10000 istore 2 ,contw 
+7071 1a227e00 copy rega ,pdata 
+7072 1ff0fe00 byteswap pdata ,pdata 
+7073 e0a10000 istore 2 ,contw 
+
+answer_attributelist_full_loop:
+7074 e8c08000 ifetch 1 ,contr 
+7075 e0a08000 istore 1 ,contw 
+7076 c2007074 loop answer_attributelist_full_loop 
+7077 2434707f nbranch last_frag_continue ,user 
+7078 18007e02 force 2 ,pdata 
+7079 e0a08000 istore 1 ,contw 
+707a 18c27e00 copy contr ,pdata 
+707b 99667e00 isub timeup ,pdata 
+707c 1ff0fe00 byteswap pdata ,pdata 
+707d e0a10000 istore 2 ,contw 
+707e 20207081 branch sdp_frag_end 
+
+last_frag_continue:
+707f 18007e00 force 0 ,pdata 
+7080 e0a08000 istore 1 ,contw 
+
+sdp_frag_end:
+7081 680102da fetch 2 ,mem_sdp_tx_payload_ptr 
+7082 98a67e00 isub contw ,pdata 
+7083 1fe67e00 sub pdata ,0 ,pdata 
+7084 600102dc store 2 ,mem_sdp_tx_pkt_length 
+7085 204052de call l2cap_get_sdp_tx_payload 
+7086 58000005 setarg 5 
+7087 e0a08000 istore 1 ,contw 
+7088 680104b0 fetch 2 ,mem_sdp_transactionid 
+7089 e0a10000 istore 2 ,contw 
+708a 20600000 rtn 
+
+servicesearchattribute_req:
+708b 2040724d call ask_serviceclassid 
+708c 2841feff compare 0xff ,temp ,0xff 
+708d 2020f0b4 branch servicesearchattribute_req_all ,true 
+708e e8c10000 ifetch 2 ,contr 
+708f 600104b2 store 2 ,mem_sdp_attribute_maxbyte 
+7090 196097fe increase -2 ,timeup 
+7091 204072a4 call dataelementtype6 
+7092 d8a00491 arg mem_attrib_list ,contw 
+7093 18000e00 force 0 ,queue 
+
+servicesearchattribute_req_loop:
+7094 e8c18000 ifetch 3 ,contr 
+7095 c084f0b4 bne 0x09 ,servicesearchattribute_req_all 
+
+servicesearchattribute_req_uuid:
+7096 1fecfe00 rshift8 pdata ,pdata 
+7097 e0a10000 istore 2 ,contw 
+7098 18e08e01 increase 1 ,queue 
+7099 196097fd increase -3 ,timeup 
+709a 1a20a3fd increase -3 ,rega 
+709b 24217241 nbranch sdp_invalid_reqest_syntax ,positive 
+709c 2422f094 nbranch servicesearchattribute_req_loop ,zero 
+709d 196097ff increase -1 ,timeup 
+709e 2422f241 nbranch sdp_invalid_reqest_syntax ,zero 
+
+servicesearchattribute_req_search:
+709f 204052de call l2cap_get_sdp_tx_payload 
+70a0 18a08a0d increase 13 ,contw 
+70a1 680104a9 fetch 2 ,mem_uuid_search_pat 
+70a2 98002600 iforce regc 
+70a3 da200491 arg mem_attrib_list ,rega 
+
+answer_attributelist_next:
+70a4 ea220000 ifetch 4 ,rega 
+70a5 203a70c4 branch answer_attributelist_end ,blank 
+70a6 ea210000 ifetch 2 ,rega 
+70a7 98002400 iforce regb 
+70a8 2040732a call search_attrib 
+70a9 203a70b2 branch answer_attributelist_notfound ,blank 
+70aa 18c08dfd increase -3 ,contr 
+70ab e8c18000 ifetch 3 ,contr 
+70ac e0a18000 istore 3 ,contw 
+70ad 20407199 call sdp_data_len_obs 
+70ae 98007200 iforce loopcnt 
+
+answer_attributelist_attrib_loop:
+70af e8c08000 ifetch 1 ,contr 
+70b0 e0a08000 istore 1 ,contw 
+70b1 c20070af loop answer_attributelist_attrib_loop 
+
+answer_attributelist_notfound:
+70b2 1a20a202 increase 2 ,rega 
+70b3 202070a4 branch answer_attributelist_next 
+
+servicesearchattribute_req_all:
+70b4 e8c08000 ifetch 1 ,contr 
+70b5 e8c08000 ifetch 1 ,contr 
+70b6 196097fb increase -5 ,timeup 
+70b7 1a20a3fb increase -5 ,rega 
+70b8 24217241 nbranch sdp_invalid_reqest_syntax ,positive 
+70b9 d96004a9 arg mem_uuid_search_pat ,timeup 
+70ba e9610000 ifetch 2 ,timeup 
+70bb 19609602 increase 2 ,timeup 
+70bc 20407307 call search_uuid 
+70bd 18e27e00 deposit queue 
+70be 600084dd store 1 ,mem_handle_humber 
+70bf 203a72be branch empty_ssa_rsp ,blank 
+70c0 d8e00000 arg 0 ,queue 
+70c1 204052de call l2cap_get_sdp_tx_payload 
+70c2 18a08a0a increase 10 ,contw 
+70c3 20207108 branch servicesearchattribute_req_next_handle 
+
+answer_attributelist_end:
+70c4 18007e00 force 0 ,pdata 
+70c5 e0a08000 istore 1 ,contw 
+70c6 18a08bff increase -1 ,contw 
+70c7 680902da fetcht 2 ,mem_sdp_tx_payload_ptr 
+70c8 1840fe0d add temp ,13 ,pdata 
+70c9 98a67e00 isub contw ,pdata 
+70ca 2022f0e8 branch no_attribute_return ,zero 
+70cb 1fe67e00 sub pdata ,0 ,pdata 
+70cc 1840a40c add temp ,12 ,regb 
+70cd e2408000 istore 1 ,regb 
+70ce 1fe0fe03 increase 3 ,pdata 
+70cf 1840a409 add temp ,9 ,regb 
+70d0 e2408000 istore 1 ,regb 
+70d1 1fe0fe03 increase 3 ,pdata 
+70d2 1ff0fe00 byteswap pdata ,pdata 
+70d3 1840a405 add temp ,5 ,regb 
+70d4 e2410000 istore 2 ,regb 
+70d5 1fecfe00 rshift8 pdata ,pdata 
+70d6 1fe0fe03 increase 3 ,pdata 
+70d7 1ff0fe00 byteswap pdata ,pdata 
+70d8 1840a403 add temp ,3 ,regb 
+70d9 e2410000 istore 2 ,regb 
+70da 1fecfe00 rshift8 pdata ,pdata 
+70db 1fe0fe05 increase 5 ,pdata 
+70dc 600082dc store 1 ,mem_sdp_tx_pkt_length 
+70dd 680104b0 fetch 2 ,mem_sdp_transactionid 
+70de 1840a401 add temp ,1 ,regb 
+70df e2410000 istore 2 ,regb 
+70e0 58000007 setarg 7 
+70e1 e0408000 istore 1 ,temp 
+70e2 58000036 setarg 0x0036 
+70e3 1840a407 add temp ,7 ,regb 
+70e4 e2410000 istore 2 ,regb 
+70e5 1840a40a add temp ,10 ,regb 
+70e6 e2410000 istore 2 ,regb 
+70e7 20600000 rtn 
+
+no_attribute_return:
+70e8 7002dc0a jam 10 ,mem_sdp_tx_pkt_length 
+70e9 204052de call l2cap_get_sdp_tx_payload 
+70ea 58000007 setarg 7 
+70eb e0a08000 istore 1 ,contw 
+70ec 680104b0 fetch 2 ,mem_sdp_transactionid 
+70ed e0a10000 istore 2 ,contw 
+70ee 58000500 setarg 0x0500 
+70ef e0a10000 istore 2 ,contw 
+70f0 58000200 setarg 0x0200 
+70f1 e0a10000 istore 2 ,contw 
+70f2 58000035 setarg 0x000035 
+70f3 e0a18000 istore 3 ,contw 
+70f4 20600000 rtn 
+
+servicesearchattribute_req_attributelist_loop:
+70f5 e8c08000 ifetch 1 ,contr 
+70f6 e0a08000 istore 1 ,contw 
+70f7 1a40a401 increase 1 ,regb 
+70f8 1a20a3ff increase -1 ,rega 
+70f9 2022f0fb branch servicesearchattribute_req_check_next_ctn ,zero 
+70fa c20070f5 loop servicesearchattribute_req_attributelist_loop 
+
+servicesearchattribute_req_check_next_ctn:
+70fb 18a21600 copy contw ,timeup 
+70fc 1a427e00 copy regb ,pdata 
+70fd 600104ad store 2 ,mem_sdp_continue_byte 
+70fe 1a227e00 copy rega ,pdata 
+70ff 600104b2 store 2 ,mem_sdp_attribute_maxbyte 
+7100 203a7117 branch answer_attributelist_with_ctn_bytes ,blank 
+7101 20347152 branch answer_attributelist_with_ctn_end ,user 
+7102 19620a00 copy timeup ,contw 
+
+servicesearchattribute_req_check_handle:
+7103 18e08e01 increase 1 ,queue 
+7104 680084dd fetch 1 ,mem_handle_humber 
+7105 98e67c00 isub queue ,null 
+7106 2422f108 nbranch servicesearchattribute_req_next_handle ,zero 
+7107 20207171 branch answer_attributelist_end_long 
+
+servicesearchattribute_req_next_handle:
+7108 d8c004c5 arg mem_handle_list ,contr 
+7109 18ebfe00 lshift2 queue ,pdata 
+710a 98c08c00 iadd contr ,contr 
+710b e8c20000 ifetch 4 ,contr 
+710c 98000400 iforce temp 
+710d 2040731e call search_handle 
+710e 18c21600 copy contr ,timeup 
+710f 204072e8 call sdp_get_data 
+7110 1fe0f203 add pdata ,3 ,loopcnt 
+7111 680104b2 fetch 2 ,mem_sdp_attribute_maxbyte 
+7112 1fe22200 copy pdata ,rega 
+7113 680104ad fetch 2 ,mem_sdp_continue_byte 
+7114 1fe22400 copy pdata ,regb 
+7115 19620c00 copy timeup ,contr 
+7116 202070f5 branch servicesearchattribute_req_attributelist_loop 
+
+answer_attributelist_with_ctn_bytes:
+7117 d8e00000 arg 0 ,queue 
+7118 da400000 arg 0 ,regb 
+
+answer_attributelist_calc_attribute_length:
+7119 d8c004c5 arg mem_handle_list ,contr 
+711a 18ebfe00 lshift2 queue ,pdata 
+711b 98c08c00 iadd contr ,contr 
+711c e8c20000 ifetch 4 ,contr 
+711d 98000400 iforce temp 
+711e 2040731e call search_handle 
+711f 204072e8 call sdp_get_data 
+7120 1fe0fe03 add pdata ,3 ,pdata 
+7121 9a40a400 iadd regb ,regb 
+7122 18e08e01 increase 1 ,queue 
+7123 680084dd fetch 1 ,mem_handle_humber 
+7124 98e67c00 isub queue ,null 
+7125 2422f119 nbranch answer_attributelist_calc_attribute_length ,zero 
+7126 19620a00 copy timeup ,contw 
+7127 18007e02 force 2 ,pdata 
+7128 e0a08000 istore 1 ,contw 
+7129 680104ad fetch 2 ,mem_sdp_continue_byte 
+712a 1ff0fe00 byteswap pdata ,pdata 
+712b e0a10000 istore 2 ,contw 
+712c 18a08bfd increase -3 ,contw 
+712d 680902da fetcht 2 ,mem_sdp_tx_payload_ptr 
+712e 1840fe0a add temp ,10 ,pdata 
+712f 98a67e00 isub contw ,pdata 
+7130 1fe67e00 sub pdata ,0 ,pdata 
+7131 98002200 iforce rega 
+7132 1a427e00 deposit regb 
+7133 1840a409 add temp ,9 ,regb 
+7134 e2408000 istore 1 ,regb 
+7135 1fecfe00 rshift8 pdata ,pdata 
+7136 1840a408 add temp ,8 ,regb 
+7137 e2408000 istore 1 ,regb 
+7138 1a20a203 increase 3 ,rega 
+7139 1a227e00 deposit rega 
+713a 1840a406 add temp ,6 ,regb 
+713b e2408000 istore 1 ,regb 
+713c 1fecfe00 rshift8 pdata ,pdata 
+713d 1840a405 add temp ,5 ,regb 
+713e e2408000 istore 1 ,regb 
+713f 1a20a205 increase 5 ,rega 
+7140 1a227e00 deposit rega 
+7141 1840a404 add temp ,4 ,regb 
+7142 e2408000 istore 1 ,regb 
+7143 1fecfe00 rshift8 pdata ,pdata 
+7144 1840a403 add temp ,3 ,regb 
+7145 e2408000 istore 1 ,regb 
+7146 1a20a205 increase 5 ,rega 
+7147 1a227e00 deposit rega 
+7148 600102dc store 2 ,mem_sdp_tx_pkt_length 
+7149 58000007 setarg 7 
+714a e0408000 istore 1 ,temp 
+714b 58000036 setarg 0x36 
+714c 1840a407 add temp ,7 ,regb 
+714d e2408000 istore 1 ,regb 
+714e 1840a401 add temp ,1 ,regb 
+714f 680104b0 fetch 2 ,mem_sdp_transactionid 
+7150 e2410000 istore 2 ,regb 
+7151 20600000 rtn 
+
+answer_attributelist_with_ctn_end:
+7152 19620a00 copy timeup ,contw 
+7153 18007e00 force 0 ,pdata 
+7154 e0a08000 istore 1 ,contw 
+7155 18a08bff increase -1 ,contw 
+7156 680902da fetcht 2 ,mem_sdp_tx_payload_ptr 
+7157 1840fe07 add temp ,7 ,pdata 
+7158 98a67e00 isub contw ,pdata 
+7159 1fe67e00 sub pdata ,0 ,pdata 
+715a 98002200 iforce rega 
+715b 1a227e00 deposit rega 
+715c 1840a406 add temp ,6 ,regb 
+715d e2408000 istore 1 ,regb 
+715e 1fecfe00 rshift8 pdata ,pdata 
+715f 1840a405 add temp ,5 ,regb 
+7160 e2408000 istore 1 ,regb 
+7161 1a20a203 increase 3 ,rega 
+7162 1a227e00 deposit rega 
+7163 1840a404 add temp ,4 ,regb 
+7164 e2408000 istore 1 ,regb 
+7165 1fecfe00 rshift8 pdata ,pdata 
+7166 1840a403 add temp ,3 ,regb 
+7167 e2408000 istore 1 ,regb 
+7168 1a20a205 increase 5 ,rega 
+7169 1a227e00 deposit rega 
+716a 600102dc store 2 ,mem_sdp_tx_pkt_length 
+716b 58000007 setarg 7 
+716c e0408000 istore 1 ,temp 
+716d 680104b0 fetch 2 ,mem_sdp_transactionid 
+716e 1840a401 add temp ,1 ,regb 
+716f e2410000 istore 2 ,regb 
+7170 20600000 rtn 
+
+answer_attributelist_end_long:
+7171 18007e00 force 0 ,pdata 
+7172 e0a08000 istore 1 ,contw 
+7173 18a08bff increase -1 ,contw 
+7174 680902da fetcht 2 ,mem_sdp_tx_payload_ptr 
+7175 1840fe0a add temp ,10 ,pdata 
+7176 98a67e00 isub contw ,pdata 
+7177 1fe67e00 sub pdata ,0 ,pdata 
+7178 98002200 iforce rega 
+7179 1a227e00 deposit rega 
+717a 1840a409 add temp ,9 ,regb 
+717b e2408000 istore 1 ,regb 
+717c 1fecfe00 rshift8 pdata ,pdata 
+717d 1840a408 add temp ,8 ,regb 
+717e e2408000 istore 1 ,regb 
+717f 1a20a203 increase 3 ,rega 
+7180 1a227e00 deposit rega 
+7181 1840a406 add temp ,6 ,regb 
+7182 e2408000 istore 1 ,regb 
+7183 1fecfe00 rshift8 pdata ,pdata 
+7184 1840a405 add temp ,5 ,regb 
+7185 e2408000 istore 1 ,regb 
+7186 1a20a203 increase 3 ,rega 
+7187 1a227e00 deposit rega 
+7188 1840a404 add temp ,4 ,regb 
+7189 e2408000 istore 1 ,regb 
+718a 1fecfe00 rshift8 pdata ,pdata 
+718b 1840a403 add temp ,3 ,regb 
+718c e2408000 istore 1 ,regb 
+718d 1a20a205 increase 5 ,rega 
+718e 1a227e00 deposit rega 
+718f 600102dc store 2 ,mem_sdp_tx_pkt_length 
+7190 58000036 setarg 0x36 
+7191 1840a407 add temp ,7 ,regb 
+7192 e2408000 istore 1 ,regb 
+7193 58000007 setarg 7 
+7194 e0408000 istore 1 ,temp 
+7195 680104b0 fetch 2 ,mem_sdp_transactionid 
+7196 1840a401 add temp ,1 ,regb 
+7197 e2410000 istore 2 ,regb 
+7198 20600000 rtn 
+
+sdp_data_len_obs:
+7199 18c21600 copy contr ,timeup 
+719a e8c08000 ifetch 1 ,contr 
+719b 1fe17207 and pdata ,0x07 ,loopcnt 
+719c 1fe97e00 rshift3 pdata ,pdata 
+719d c00371a2 beq 6 ,sdp_data_len_6_obs 
+719e c000f2e0 beq 1 ,sdp_data_len_1 
+719f c00272e5 beq 4 ,sdp_data_len_6 
+71a0 c002f2e3 beq 5 ,sdp_data_len_5 
+71a1 202072de branch sdp_data_len_rtn 
+
+sdp_data_len_6_obs:
+71a2 204071a4 call sdp_get_data_6_obs 
+71a3 202072de branch sdp_data_len_rtn 
+
+sdp_get_data_6_obs:
+71a4 1f227e00 deposit loopcnt 
+71a5 c002f1a9 beq 5 ,sdp_get_data_6_8bit_obs 
+71a6 c00371ac beq 6 ,sdp_get_data_6_16bit_obs 
+71a7 18007203 force 3 ,loopcnt 
+71a8 202072ef branch sdp_get_data_1 
+
+sdp_get_data_6_8bit_obs:
+71a9 e8c08000 ifetch 1 ,contr 
+71aa 1fe0fe02 increase 2 ,pdata 
+71ab 20600000 rtn 
+
+sdp_get_data_6_16bit_obs:
+71ac e8c10000 ifetch 2 ,contr 
+71ad 1ff0fe00 byteswap pdata ,pdata 
+71ae 1fe0fe03 increase 3 ,pdata 
+71af 20600000 rtn 
+
+sdp_send_spp_request:
+71b0 204052de call l2cap_get_sdp_tx_payload 
+71b1 1fe20a00 copy pdata ,contw 
+71b2 58000006 setarg 6 
+71b3 e0a08000 istore 1 ,contw 
+71b4 5800006e setarg sdp_tid_spp 
+71b5 e0a10000 istore 2 ,contw 
+71b6 58000f00 setarg 0x0f00 
+71b7 e0a10000 istore 2 ,contw 
+71b8 581a0535 setarg 0x1a0535 
+71b9 e0a18000 istore 3 ,contw 
+71ba 58000111 setarg 0x0111 
+71bb 1ff07e00 lshift16 pdata ,pdata 
+71bc e0a20000 istore 4 ,contw 
+71bd 58002600 setarg 0x2600 
+71be e0a10000 istore 2 ,contw 
+71bf 58000335 setarg 0x0335 
+71c0 e0a10000 istore 2 ,contw 
+71c1 58000009 setarg 0x0009 
+71c2 e0a10000 istore 2 ,contw 
+71c3 58000004 setarg 0x0004 
+71c4 e0a10000 istore 2 ,contw 
+71c5 7002dc14 jam 0x14 ,mem_sdp_tx_pkt_length 
+71c6 20600000 rtn 
+
+servicesearchattribute_res:
+71c7 18c20400 copy contr ,temp 
+71c8 680104b0 fetch 2 ,mem_sdp_transactionid 
+71c9 c03771cb beq sdp_tid_spp ,servicesearchattribute_res_spp 
+71ca 202071d4 branch srchfail 
+
+servicesearchattribute_res_spp:
+71cb 18420c00 copy temp ,contr 
+71cc 196097fd increase -3 ,timeup 
+71cd 19627e00 copy timeup ,pdata 
+71ce c00171d4 beq 2 ,srchfail 
+71cf 204071d5 call find_rfcomm_channel_number 
+71d0 20740000 rtn user 
+71d1 6000c752 store 1 ,mem_remote_spp_channel 
+71d2 7002ec17 jam recieve_ss_reasult_hf ,mem_message_to_uppersm 
+71d3 20600000 rtn 
+
+srchfail:
+71d4 20600000 rtn 
+
+find_rfcomm_channel_number:
+71d5 78347c00 enable user 
+71d6 1fe27200 copy pdata ,loopcnt 
+71d7 d8400400 arg 0x0400 ,temp 
+
+find_rfcomm_channel_number_loop:
+71d8 e8c10000 ifetch 2 ,contr 
+71d9 98467c00 isub temp ,null 
+71da 2022f1de branch find_rfcomm_channel_number_find_adl ,zero 
+71db 18c08dff increase -1 ,contr 
+71dc c20071d8 loop find_rfcomm_channel_number_loop 
+71dd 20600000 rtn 
+
+find_rfcomm_channel_number_find_adl:
+71de d8400300 arg 0x0300 ,temp 
+
+find_rfcomm_channel_number_loop2:
+71df e8c10000 ifetch 2 ,contr 
+71e0 98467c00 isub temp ,null 
+71e1 2022f1e5 branch find_rfcomm_channel_number_find_rfcomm ,zero 
+71e2 18c08dff increase -1 ,contr 
+71e3 c20071df loop find_rfcomm_channel_number_loop2 
+71e4 20600000 rtn 
+
+find_rfcomm_channel_number_find_rfcomm:
+71e5 e8c08000 ifetch 1 ,contr 
+71e6 e8c08000 ifetch 1 ,contr 
+71e7 78547c00 disable user 
+71e8 20600000 rtn 
+
+attribute_reading:
+71e9 204072a4 call dataelementtype6 
+71ea 2022f236 branch rdnortn ,zero 
+71eb 18002400 force 0 ,regb 
+71ec e8c08000 ifetch 1 ,contr 
+71ed 1a20a3ff increase -1 ,rega 
+71ee 196097ff increase -1 ,timeup 
+71ef 2fe1f018 compare 0x18 ,pdata ,0xf8 
+71f0 2420f230 nbranch rduuid3 ,true 
+71f1 2fe00e04 compare 0x04 ,pdata ,0x07 
+71f2 2420f1f8 nbranch is032 ,true 
+71f3 18002401 force 1 ,regb 
+
+skp2bytes:
+71f4 18c08c02 increase 2 ,contr 
+71f5 1a20a3fe increase -2 ,rega 
+71f6 196097fe increase -2 ,timeup 
+71f7 202071fd branch rduuid1 
+
+is032:
+71f8 2fe00e02 compare 0x02 ,pdata ,0x07 
+71f9 2420f1fb nbranch is016 ,true 
+71fa 202071f4 branch skp2bytes 
+
+is016:
+71fb 2fe00e01 compare 0x01 ,pdata ,0x07 
+71fc 2420f230 nbranch rduuid3 ,true 
+
+rduuid1:
+71fd e8c08000 ifetch 1 ,contr 
+71fe 1a20a3ff increase -1 ,rega 
+71ff 196097ff increase -1 ,timeup 
+7200 c080f207 bne 0x01 ,rduuid2 
+7201 e8c08000 ifetch 1 ,contr 
+7202 1a20a3ff increase -1 ,rega 
+7203 196097ff increase -1 ,timeup 
+7204 c0807230 bne 0x00 ,rduuid3 
+7205 7004c3ff jam 0xff ,mem_sdp_lacap_found 
+7206 20207230 branch rduuid3 
+
+rduuid2:
+7207 c0807230 bne 0x00 ,rduuid3 
+7208 e8c08000 ifetch 1 ,contr 
+7209 1a20a3ff increase -1 ,rega 
+720a 196097ff increase -1 ,timeup 
+720b c081f230 bne 0x03 ,rduuid3 
+720c 1a427c00 copy regb ,null 
+720d 2022f210 branch not16by ,zero 
+720e 18c08df4 increase -12 ,contr 
+720f 196097f4 increase -12 ,timeup 
+
+not16by:
+7210 18007eff force 0xff ,pdata 
+7211 600084c4 store 1 ,mem_sdp_rfcomm_found 
+7212 e8c08000 ifetch 1 ,contr 
+7213 1a20a3ff increase -1 ,rega 
+7214 196097ff increase -1 ,timeup 
+7215 2fe1f008 compare 0x08 ,pdata ,0xf8 
+7216 2420f230 nbranch rduuid3 ,true 
+7217 2fe00e00 compare 0x00 ,pdata ,0x07 
+7218 2020f22d branch unsign1 ,true 
+7219 2fe00e01 compare 0x01 ,pdata ,0x07 
+721a 2020f22a branch unsign2 ,true 
+721b 2fe00e02 compare 0x02 ,pdata ,0x07 
+721c 2020f227 branch unsign4 ,true 
+721d 2fe00e03 compare 0x03 ,pdata ,0x07 
+721e 2020f224 branch unsign8 ,true 
+721f 2fe00e04 compare 0x04 ,pdata ,0x07 
+7220 2420f230 nbranch rduuid3 ,true 
+7221 18c08c08 increase 8 ,contr 
+7222 1a20a3f8 increase -8 ,rega 
+7223 196097f8 increase -8 ,timeup 
+
+unsign8:
+7224 18c08c04 increase 4 ,contr 
+7225 1a20a3fc increase -4 ,rega 
+7226 196097fc increase -4 ,timeup 
+
+unsign4:
+7227 18c08c02 increase 2 ,contr 
+7228 1a20a3fe increase -2 ,rega 
+7229 196097fe increase -2 ,timeup 
+
+unsign2:
+722a 18c08c01 increase 1 ,contr 
+722b 1a20a3ff increase -1 ,rega 
+722c 196097ff increase -1 ,timeup 
+
+unsign1:
+722d e8c08000 ifetch 1 ,contr 
+722e 1a20a3ff increase -1 ,rega 
+722f 196097ff increase -1 ,timeup 
+
+rduuid3:
+7230 196097ff increase -1 ,timeup 
+7231 1a20a3ff increase -1 ,rega 
+7232 20217230 branch rduuid3 ,positive 
+7233 19609601 increase 1 ,timeup 
+7234 18007e01 force 0x01 ,pdata 
+7235 20600000 rtn ,
+
+rdnortn:
+7236 18007e00 force 0x00 ,pdata 
+7237 20600000 rtn ,
+
+sdp_invalid_service_record_handle:
+7238 58000200 setarg 0x0200 
+7239 600104b6 store 2 ,mem_sdp_error_code 
+723a 20207243 branch sdp_error_rsp 
+
+sdp_invalid_pdu_size:
+723b 58000400 setarg 0x0400 
+723c 600104b6 store 2 ,mem_sdp_error_code 
+723d 20207243 branch sdp_error_rsp 
+
+sdp_insufficient_resource:
+723e 58000600 setarg 0x0600 
+723f 600104b6 store 2 ,mem_sdp_error_code 
+7240 20207243 branch sdp_error_rsp 
+
+sdp_invalid_reqest_syntax:
+7241 58000300 setarg 0x0300 
+7242 600104b6 store 2 ,mem_sdp_error_code 
+
+sdp_error_rsp:
+7243 204052de call l2cap_get_sdp_tx_payload 
+7244 e0a08000 istore 1 ,contw 
+7245 680104b0 fetch 2 ,mem_sdp_transactionid 
+7246 e0a10000 istore 2 ,contw 
+7247 58000200 setarg 0x0200 
+7248 e0a10000 istore 2 ,contw 
+7249 680104b6 fetch 2 ,mem_sdp_error_code 
+724a e0a10000 istore 2 ,contw 
+724b 7002dc07 jam 7 ,mem_sdp_tx_pkt_length 
+724c 20600000 rtn 
+
+ask_serviceclassid:
+724d 18000400 force 0 ,temp 
+724e d8a004a9 arg mem_uuid_search_pat ,contw 
+724f 204072a4 call dataelementtype6 
+7250 2022f2a2 branch asksrv_error ,zero 
+
+classidloop:
+7251 e8c08000 ifetch 1 ,contr 
+7252 1a20a3ff increase -1 ,rega 
+7253 196097ff increase -1 ,timeup 
+7254 2fe1f018 compare 0x18 ,pdata ,0xf8 
+7255 2420f2a2 nbranch asksrv_error ,true 
+7256 2fe00e04 compare 0x04 ,pdata ,0x07 
+7257 2420f26e nbranch cmp032 ,true 
+7258 18000401 force 1 ,temp 
+
+skip2bytes:
+7259 e8c08000 ifetch 1 ,contr 
+725a 1a20a3ff increase -1 ,rega 
+725b 196097ff increase -1 ,timeup 
+725c c0807262 bne 0x00 ,frstbwrong 
+725d e8c08000 ifetch 1 ,contr 
+725e 1a20a3ff increase -1 ,rega 
+725f 196097ff increase -1 ,timeup 
+7260 c0007273 beq 0x00 ,cmpuuid 
+7261 20207265 branch scndbwrong 
+
+frstbwrong:
+7262 18c08c01 increase 1 ,contr 
+7263 1a20a3ff increase -1 ,rega 
+7264 196097ff increase -1 ,timeup 
+
+scndbwrong:
+7265 18c08c02 increase 2 ,contr 
+7266 1a20a3fe increase -2 ,rega 
+7267 196097fe increase -2 ,timeup 
+7268 2841fe00 compare 0x00 ,temp ,0xff 
+7269 2020f29d branch loopornot ,true 
+726a 18c08c0c increase 12 ,contr 
+726b 1a20a3f4 increase -12 ,rega 
+726c 196097f4 increase -12 ,timeup 
+726d 2020729d branch loopornot 
+
+cmp032:
+726e 2fe00e02 compare 0x02 ,pdata ,0x07 
+726f 2420f271 nbranch cmp016 ,true 
+7270 20207259 branch skip2bytes 
+
+cmp016:
+7271 2fe00e01 compare 0x01 ,pdata ,0x07 
+7272 2420f2a2 nbranch asksrv_error ,true 
+
+cmpuuid:
+7273 e8c10000 ifetch 2 ,contr 
+7274 1a20a3fe increase -2 ,rega 
+7275 196097fe increase -2 ,timeup 
+7276 e0a10000 istore 2 ,contw 
+
+uuidsize:
+7277 2841fe00 compare 0x00 ,temp ,0xff 
+7278 2020f29d branch loopornot ,true 
+7279 18c20400 copy contr ,temp 
+727a e8c08000 ifetch 1 ,contr 
+727b c0807292 bne 0x00 ,wrong12b 
+727c e8c08000 ifetch 1 ,contr 
+727d c0807292 bne 0x00 ,wrong12b 
+727e e8c08000 ifetch 1 ,contr 
+727f c0887292 bne 0x10 ,wrong12b 
+7280 e8c08000 ifetch 1 ,contr 
+7281 c0807292 bne 0x00 ,wrong12b 
+7282 e8c08000 ifetch 1 ,contr 
+7283 c0c07292 bne 0x80 ,wrong12b 
+7284 e8c08000 ifetch 1 ,contr 
+7285 c0807292 bne 0x00 ,wrong12b 
+7286 e8c08000 ifetch 1 ,contr 
+7287 c0807292 bne 0x00 ,wrong12b 
+7288 e8c08000 ifetch 1 ,contr 
+7289 c0c07292 bne 0x80 ,wrong12b 
+728a e8c08000 ifetch 1 ,contr 
+728b c0aff292 bne 0x5f ,wrong12b 
+728c e8c08000 ifetch 1 ,contr 
+728d c0cdf292 bne 0x9b ,wrong12b 
+728e e8c08000 ifetch 1 ,contr 
+728f c09a7292 bne 0x34 ,wrong12b 
+7290 e8c08000 ifetch 1 ,contr 
+7291 c07df29b beq 0xfb ,chck12dn 
+
+wrong12b:
+7292 18420c00 copy temp ,contr 
+
+wrong12b1:
+7293 18c08c0c increase 12 ,contr 
+7294 18000e00 force 0x00 ,queue 
+7295 18000400 force 0x00 ,temp 
+7296 2020729b branch chck12dn 
+
+noclass:
+7297 e8c08000 ifetch 1 ,contr 
+7298 1a20a3ff increase -1 ,rega 
+7299 196097ff increase -1 ,timeup 
+729a 20207277 branch uuidsize 
+
+chck12dn:
+729b 196097f4 increase -12 ,timeup 
+729c 1a20a3f4 increase -12 ,rega 
+
+loopornot:
+729d 2a21fe00 compare 0x00 ,rega ,0xff 
+729e 2420f251 nbranch classidloop ,true 
+729f 18007e00 force 0 ,pdata 
+72a0 e0a10000 istore 2 ,contw 
+72a1 20600000 rtn ,
+
+asksrv_error:
+72a2 d84000ff arg 0xff ,temp 
+72a3 20600000 rtn 
+
+dataelementtype6:
+72a4 e8c08000 ifetch 1 ,contr 
+72a5 196097ff increase -1 ,timeup 
+72a6 2fe1f030 compare 0x30 ,pdata ,0xf8 
+72a7 2420f2b9 nbranch dsize_error ,true 
+72a8 2fe00e07 compare 0x07 ,pdata ,0x07 
+72a9 2020f2b2 branch dsize32 ,true 
+72aa 2fe00e06 compare 0x06 ,pdata ,0x07 
+72ab 2020f2b4 branch dsize16 ,true 
+72ac 2fe00e05 compare 0x05 ,pdata ,0x07 
+72ad 2420f2b9 nbranch dsize_error ,true 
+72ae e8c08000 ifetch 1 ,contr 
+72af 1fe22200 copy pdata ,rega 
+72b0 196097ff increase -1 ,timeup 
+72b1 202072b7 branch dsize 
+
+dsize32:
+72b2 18c08c02 increase 2 ,contr 
+72b3 196097fe increase -2 ,timeup 
+
+dsize16:
+72b4 e8c10000 ifetch 2 ,contr 
+72b5 1ff0a200 byteswap pdata ,rega 
+72b6 196097fe increase -2 ,timeup 
+
+set_nblank:
+
+dsize:
+72b7 18007e01 force 0x01 ,pdata 
+72b8 20600000 rtn 
+
+set_blank:
+
+dsize_error:
+72b9 18007e00 force 0x00 ,pdata 
+72ba 20600000 rtn 
+
+empth_sa_rsp:
+72bb 58000003 setarg 0x03 
+72bc 600084af store 1 ,mem_sdp_pduid 
+72bd 202072c0 branch empty_response 
+
+empty_ssa_rsp:
+72be 58000007 setarg 0x07 
+72bf 600084af store 1 ,mem_sdp_pduid 
+
+empty_response:
+72c0 204052de call l2cap_get_sdp_tx_payload 
+72c1 680084af fetch 1 ,mem_sdp_pduid 
+72c2 e0a08000 istore 1 ,contw 
+72c3 1fe22400 copy pdata ,regb 
+72c4 680104b0 fetch 2 ,mem_sdp_transactionid 
+72c5 e0a10000 istore 2 ,contw 
+72c6 58000500 setarg 0x0500 
+72c7 e0a10000 istore 2 ,contw 
+72c8 2a41fe05 compare 0x05 ,regb ,0xff 
+72c9 2020f2d0 branch fullsearch ,true 
+72ca 2a41fe07 compare 0x07 ,regb ,0xff 
+72cb 2020f2d0 branch fullsearch ,true 
+72cc 58000000 setarg 0x000000 
+72cd e0a18000 istore 3 ,contw 
+72ce e0a10000 istore 2 ,contw 
+72cf 202072d4 branch outempty 
+
+fullsearch:
+72d0 58350200 setarg 0x350200 
+72d1 e0a18000 istore 3 ,contw 
+72d2 58000000 setarg 0 
+72d3 e0a10000 istore 2 ,contw 
+
+outempty:
+72d4 7002dc0a jam 10 ,mem_sdp_tx_pkt_length 
+72d5 20600000 rtn 
+
+sdp_data_len:
+72d6 18c21600 copy contr ,timeup 
+72d7 e8c08000 ifetch 1 ,contr 
+72d8 1fe17207 and pdata ,0x7 ,loopcnt 
+72d9 1fe97e00 rshift3 pdata ,pdata 
+72da c00372e5 beq 6 ,sdp_data_len_6 
+72db c000f2e0 beq 1 ,sdp_data_len_1 
+72dc c00272e5 beq 4 ,sdp_data_len_6 
+72dd c002f2e3 beq 5 ,sdp_data_len_5 
+
+sdp_data_len_rtn:
+72de 19620c00 copy timeup ,contr 
+72df 20600000 rtn 
+
+sdp_data_len_1:
+72e0 20407301 call sdp_data_size 
+72e1 1fe0fe01 increase 1 ,pdata 
+72e2 202072de branch sdp_data_len_rtn 
+
+sdp_data_len_5:
+72e3 18007e02 force 2 ,pdata 
+72e4 202072de branch sdp_data_len_rtn 
+
+sdp_data_len_6:
+72e5 204072f7 call sdp_get_data_6 
+72e6 1fe0fe02 increase 2 ,pdata 
+72e7 202072de branch sdp_data_len_rtn 
+
+sdp_get_data:
+72e8 e8c08000 ifetch 1 ,contr 
+72e9 1fe17207 and pdata ,0x7 ,loopcnt 
+72ea 1fe97e00 rshift3 pdata ,pdata 
+72eb c00372f7 beq 6 ,sdp_get_data_6 
+72ec c000f2ef beq 1 ,sdp_get_data_1 
+72ed c002f2fc beq 5 ,sdp_get_data_6_8bit 
+72ee 20600000 rtn 
+
+sdp_get_data_1:
+72ef 20407301 call sdp_data_size 
+72f0 98007200 iforce loopcnt 
+72f1 18000400 force 0 ,temp 
+
+sdp_get_data_1_loop:
+72f2 184d0400 lshift8 temp ,temp 
+72f3 e8c08000 ifetch 1 ,contr 
+72f4 98418400 ior temp ,temp 
+72f5 c20072f2 loop sdp_get_data_1_loop 
+72f6 20600000 rtn 
+
+sdp_get_data_6:
+72f7 1f227e00 deposit loopcnt 
+72f8 c002f2fc beq 5 ,sdp_get_data_6_8bit 
+72f9 c00372fe beq 6 ,sdp_get_data_6_16bit 
+72fa 18007203 force 3 ,loopcnt 
+72fb 202072ef branch sdp_get_data_1 
+
+sdp_get_data_6_8bit:
+72fc e8c08000 ifetch 1 ,contr 
+72fd 20600000 rtn 
+
+sdp_get_data_6_16bit:
+72fe e8c10000 ifetch 2 ,contr 
+72ff 1ff0fe00 byteswap pdata ,pdata 
+7300 20600000 rtn 
+
+sdp_data_size:
+7301 18007e01 force 1 ,pdata 
+7302 1f227c00 copy loopcnt ,null 
+7303 20628000 rtn zero 
+
+sdp_data_size_loop:
+7304 1fe3fe00 lshift pdata ,pdata 
+7305 c2007304 loop sdp_data_size_loop 
+7306 20600000 rtn 
+
+search_uuid:
+7307 98002600 iforce regc 
+7308 79200025 set1 mark_ext_patch ,mark 
+7309 44f4c03d bpatch patch3d_1 ,mem_patch3d 
+730a 18000e00 force 0 ,queue 
+730b 68014759 fetch 2 ,memui_uuid_table 
+730c 98000c00 iforce contr 
+730d d8a004c5 arg mem_handle_list ,contw 
+
+search_uuid_next:
+730e 78547c00 disable user 
+730f e8c08000 ifetch 1 ,contr 
+7310 207a0000 rtn blank 
+7311 98007200 iforce loopcnt 
+
+search_uuid_loop:
+7312 e8c10000 ifetch 2 ,contr 
+7313 9a667c00 isub regc ,null 
+7314 2422f316 nbranch search_uuid_not_found ,zero 
+7315 78347c00 enable user 
+
+search_uuid_not_found:
+7316 c2007312 loop search_uuid_loop 
+7317 e8c20000 ifetch 4 ,contr 
+7318 2434731b nbranch search_uuid_nomatch ,user 
+7319 e0a20000 istore 4 ,contw 
+731a 18e08e01 increase 1 ,queue 
+
+search_uuid_nomatch:
+731b 204072e8 call sdp_get_data 
+731c 98c08c00 iadd contr ,contr 
+731d 2020730e branch search_uuid_next 
+
+search_handle:
+731e 68014759 fetch 2 ,memui_uuid_table 
+731f 98000c00 iforce contr 
+
+search_handle_loop:
+7320 e8c08000 ifetch 1 ,contr 
+7321 207a0000 rtn blank 
+7322 1fe3fe00 lshift pdata ,pdata 
+7323 98c08c00 iadd contr ,contr 
+7324 e8c20000 ifetch 4 ,contr 
+7325 98467c00 isub temp ,null 
+7326 20628000 rtn zero 
+7327 204072e8 call sdp_get_data 
+7328 98c08c00 iadd contr ,contr 
+7329 20207320 branch search_handle_loop 
+
+search_attrib:
+732a 79200025 set1 mark_ext_patch ,mark 
+732b 44f5403d bpatch patch3d_2 ,mem_patch3d 
+732c 68014759 fetch 2 ,memui_uuid_table 
+732d 98000c00 iforce contr 
+
+search_attrib_next:
+732e e8c08000 ifetch 1 ,contr 
+732f 203a734b branch search_attrib_end ,blank 
+7330 98007200 iforce loopcnt 
+
+search_attrib_loop:
+7331 e8c10000 ifetch 2 ,contr 
+7332 9a667c00 isub regc ,null 
+7333 2022f339 branch search_attrib_found_uuid ,zero 
+7334 c2007331 loop search_attrib_loop 
+7335 18c08c04 increase 4 ,contr 
+7336 204072e8 call sdp_get_data 
+7337 98c08c00 iadd contr ,contr 
+7338 2020732e branch search_attrib_next 
+
+search_attrib_found_uuid:
+7339 1f20f3ff increase -1 ,loopcnt 
+733a 1f23fe00 lshift loopcnt ,pdata 
+733b 98c08c00 iadd contr ,contr 
+733c 18c08c04 increase 4 ,contr 
+733d 204072e8 call sdp_get_data 
+733e 98c08400 iadd contr ,temp 
+
+search_attrib_loop_attribs:
+733f 18c08c01 increase 1 ,contr 
+7340 e8c10000 ifetch 2 ,contr 
+7341 9a461600 isub regb ,timeup 
+7342 7922fe00 setflag zero ,0 ,pdata 
+7343 19621600 copy timeup ,timeup 
+7344 20628000 rtn zero 
+7345 204072d6 call sdp_data_len 
+7346 98c08c00 iadd contr ,contr 
+7347 18427e00 deposit temp 
+7348 98c67c00 isub contr ,null 
+7349 2022f34b branch search_attrib_end ,zero 
+734a 2020733f branch search_attrib_loop_attribs 
+
+search_attrib_end:
+734b 18000c00 force 0 ,contr 
+734c 18007e00 force 0 ,pdata 
+734d 20600000 rtn 
+
+search_handle_attrib:
+734e 79200025 set1 mark_ext_patch ,mark 
+734f 44f5c03d bpatch patch3d_3 ,mem_patch3d 
+7350 68014759 fetch 2 ,memui_uuid_table 
+7351 98000c00 iforce contr 
+
+search_handle_attrib_next:
+7352 e8c08000 ifetch 1 ,contr 
+7353 203a7368 branch search_handle_attrib_end ,blank 
+7354 1fe3fe00 lshift pdata ,pdata 
+7355 98c08c00 iadd contr ,contr 
+7356 e8c20000 ifetch 4 ,contr 
+7357 98467c00 isub temp ,null 
+7358 2022f35c branch search_handl_attrib_found_handle ,zero 
+7359 204072e8 call sdp_get_data 
+735a 98c08c00 iadd contr ,contr 
+735b 20207352 branch search_handle_attrib_next 
+
+search_handl_attrib_found_handle:
+735c 204072e8 call sdp_get_data 
+735d 98c08400 iadd contr ,temp 
+
+search_handle_attrib_loop_attribs:
+735e 18c08c01 increase 1 ,contr 
+735f e8c10000 ifetch 2 ,contr 
+7360 9a467c00 isub regb ,null 
+7361 20628000 rtn zero 
+7362 204072d6 call sdp_data_len 
+7363 98c08c00 iadd contr ,contr 
+7364 18427e00 deposit temp 
+7365 98c67c00 isub contr ,null 
+7366 2022f368 branch search_handle_attrib_end ,zero 
+7367 2020735e branch search_handle_attrib_loop_attribs 
+
+search_handle_attrib_end:
+7368 18000c00 force 0 ,contr 
+7369 20600000 rtn 
+
+generate_kinit:
+736a 2040737d call function_e22 
+736b d8c0051f arg mem_input_store ,contr 
+736c d8a0050f arg mem_kinit ,contw 
+736d 20207e35 branch memcpy16 
+
+function_e21:
+736e 78547c00 disable user 
+736f 20407474 call function_expand 
+7370 d8c004ef arg mem_random_number ,contr 
+7371 d8a0052f arg mem_x ,contw 
+7372 1800720f force 15 ,loopcnt 
+7373 20407e45 call memcpy 
+7374 e8c08000 ifetch 1 ,contr 
+7375 1fe2fe06 xor_into 6 ,pdata 
+7376 e0a08000 istore 1 ,contw 
+7377 5800053f setarg mem_y 
+7378 60010574 store 2 ,memp_ar_input 
+7379 5800052f setarg mem_x 
+737a 60010572 store 2 ,memp_ar_key 
+737b 79200012 set1 mark_ar2 ,mark 
+737c 202073bd branch function_ar 
+
+function_e22:
+737d 6808854f fetcht 1 ,mem_pin_length 
+737e 18002410 force 16 ,regb 
+737f 1840a606 add temp ,6 ,regc 
+7380 1a667c10 sub regc ,16 ,null 
+7381 20217383 branch function_e22_pin_init ,positive 
+7382 18002610 force 16 ,regc 
+
+function_e22_pin_init:
+7383 d8a0052f arg mem_x ,contw 
+
+function_e22_genx_pin:
+7384 d8c00550 arg mem_pin ,contr 
+7385 18427200 copy temp ,loopcnt 
+7386 78547c00 disable user 
+
+function_e22_genx_loop:
+7387 e8c08000 ifetch 1 ,contr 
+7388 e0a08000 istore 1 ,contw 
+7389 1a40a5ff increase -1 ,regb 
+738a 2022f391 branch function_e22_genx_end ,zero 
+738b c2007387 loop function_e22_genx_loop 
+738c 20347384 branch function_e22_genx_pin ,user 
+738d 78347c00 enable user 
+738e 18007206 force 6 ,loopcnt 
+738f 1a220c00 copy rega ,contr 
+7390 20207387 branch function_e22_genx_loop 
+
+function_e22_genx_end:
+7391 d8c004ef arg mem_random_number ,contr 
+7392 d8a0053f arg mem_y ,contw 
+7393 20407e35 call memcpy16 
+7394 6800854e fetch 1 ,mem_y15 
+7395 9a62fe00 ixor regc ,pdata 
+7396 6000854e store 1 ,mem_y15 
+7397 5800053f setarg mem_y 
+7398 60010574 store 2 ,memp_ar_input 
+7399 5800052f setarg mem_x 
+739a 60010572 store 2 ,memp_ar_key 
+739b 79200012 set1 mark_ar2 ,mark 
+739c 202073bd branch function_ar 
+
+function_e1:
+739d 78547c00 disable user 
+739e 20407474 call function_expand 
+739f 202073a7 branch function_hash 
+
+function_e3:
+73a0 da200056 arg mem_aco ,rega 
+73a1 78347c00 enable user 
+73a2 20407474 call function_expand 
+73a3 204073a7 call function_hash 
+73a4 d8c0051f arg mem_input_store ,contr 
+73a5 d8a00062 arg mem_kc ,contw 
+73a6 20207e35 branch memcpy16 
+
+function_hash:
+73a7 580004ef setarg mem_random_number 
+73a8 60010574 store 2 ,memp_ar_input 
+73a9 58004262 setarg mem_link_key 
+73aa 60010572 store 2 ,memp_ar_key 
+73ab 793f8012 set0 mark_ar2 ,mark 
+73ac 204073bd call function_ar 
+73ad da20051f arg mem_input_store ,rega 
+73ae da4004ef arg mem_random_number ,regb 
+73af d8a0052f arg mem_x ,contw 
+73b0 20407467 call xor16 
+73b1 da20052f arg mem_x ,rega 
+73b2 da40053f arg mem_y ,regb 
+73b3 1a420a00 copy regb ,contw 
+73b4 78347c00 enable user 
+73b5 20407465 call add16 
+73b6 2040747f call key_offset 
+73b7 5800053f setarg mem_y 
+73b8 60010574 store 2 ,memp_ar_input 
+73b9 5800052f setarg mem_x 
+73ba 60010572 store 2 ,memp_ar_key 
+73bb 79200012 set1 mark_ar2 ,mark 
+73bc 202073bd branch function_ar 
+
+function_ar:
+73bd 70057600 jam 0 ,mem_ar_hround 
+73be 68010572 fetch 2 ,memp_ar_key 
+73bf 98000c00 iforce contr 
+73c0 d8a00560 arg mem_key_store ,contw 
+73c1 20407e35 call memcpy16 
+73c2 68010574 fetch 2 ,memp_ar_input 
+73c3 98000c00 iforce contr 
+73c4 d8a0051f arg mem_input_store ,contw 
+73c5 20407e35 call memcpy16 
+
+function_ar_loop:
+73c6 204073e4 call key_scheduling 
+73c7 78547c00 disable user 
+73c8 c58973ce bmark0 mark_ar2 ,function_ar_original 
+73c9 68008576 fetch 1 ,mem_ar_hround 
+73ca c08273ce bne 4 ,function_ar_original 
+73cb 68010574 fetch 2 ,memp_ar_input 
+73cc 98002400 iforce regb 
+73cd 20407416 call xor_mod32_ar2 
+
+function_ar_original:
+73ce 20407415 call xor_mod32 
+73cf 20407428 call el_boxes 
+73d0 68008576 fetch 1 ,mem_ar_hround 
+73d1 1fe0fe01 increase 1 ,pdata 
+73d2 60008576 store 1 ,mem_ar_hround 
+73d3 204073e4 call key_scheduling 
+73d4 78347c00 enable user 
+73d5 20407415 call xor_mod32 
+73d6 20407437 call pht 
+73d7 20407446 call permute 
+73d8 20407437 call pht 
+73d9 20407446 call permute 
+73da 20407437 call pht 
+73db 20407446 call permute 
+73dc 20407437 call pht 
+73dd 68008576 fetch 1 ,mem_ar_hround 
+73de 1fe0fe01 increase 1 ,pdata 
+73df 60008576 store 1 ,mem_ar_hround 
+73e0 c08873c6 bne 16 ,function_ar_loop 
+73e1 204073e4 call key_scheduling 
+73e2 78547c00 disable user 
+73e3 20207415 branch xor_mod32 
+
+key_scheduling:
+73e4 68008576 fetch 1 ,mem_ar_hround 
+73e5 d8c00560 arg mem_key_store ,contr 
+73e6 203a740b branch key_sched_zero ,blank 
+73e7 98002400 iforce regb 
+73e8 18007211 force 17 ,loopcnt 
+73e9 18c20a00 copy contr ,contw 
+
+key_rotateloop:
+73ea e8c08000 ifetch 1 ,contr 
+73eb 1fe98400 lshift3 pdata ,temp 
+73ec 1feb7e00 rshift2 pdata ,pdata 
+73ed 1fe97e00 rshift3 pdata ,pdata 
+73ee 9841fe00 ior temp ,pdata 
+73ef e0a08000 istore 1 ,contw 
+73f0 c20073ea loop key_rotateloop 
+73f1 58000560 setarg mem_key_store 
+73f2 9a408c00 iadd regb ,contr 
+73f3 18007210 force 16 ,loopcnt 
+73f4 d8a004ff arg mem_round_key ,contw 
+
+key_select_octet_loop:
+73f5 e8c08000 ifetch 1 ,contr 
+73f6 e0a08000 istore 1 ,contw 
+73f7 28c1ff71 compare mem_key_store_end ,contr ,0xff 
+73f8 2420f3fa nbranch key_select_octet_nwrap ,true 
+73f9 18c08def increase -17 ,contr 
+
+key_select_octet_nwrap:
+73fa c20073f5 loop key_select_octet_loop 
+73fb 18002200 force 0 ,rega 
+73fc 1a40a7ff add regb ,-1 ,regc 
+73fd 1a6ba600 lshift2 regc ,regc 
+73fe 1a6ba600 lshift2 regc ,regc 
+73ff 204075c5 call enable_authrom 
+7400 58008400 setarg mem_b_box 
+7401 9a60a600 iadd regc ,regc 
+7402 d8a004ff arg mem_round_key ,contw 
+7403 18007210 force 16 ,loopcnt 
+
+bias_round_key_loop:
+7404 ea688000 ifetcht 1 ,regc 
+7405 e8a08000 ifetch 1 ,contw 
+7406 9840fe00 iadd temp ,pdata 
+7407 e0a08000 istore 1 ,contw 
+7408 1a60a601 increase 1 ,regc 
+7409 c2007404 loop bias_round_key_loop 
+740a 202075c9 branch disable_authrom 
+
+key_sched_zero:
+740b 18007210 force 16 ,loopcnt 
+740c 18000400 force 0 ,temp 
+
+create_byte_16_loop:
+740d e8c08000 ifetch 1 ,contr 
+740e 98428400 ixor temp ,temp 
+740f c200740d loop create_byte_16_loop 
+7410 18427e00 deposit temp 
+7411 e0c08000 istore 1 ,contr 
+7412 d8c00560 arg mem_key_store ,contr 
+7413 d8a004ff arg mem_round_key ,contw 
+7414 20207e35 branch memcpy16 
+
+xor_mod32:
+7415 da4004ff arg mem_round_key ,regb 
+
+xor_mod32_ar2:
+7416 18007210 force 16 ,loopcnt 
+7417 da20051f arg mem_input_store ,rega 
+7418 1a220a00 copy rega ,contw 
+
+xor_mod32_loop:
+7419 ea288000 ifetcht 1 ,rega 
+741a ea408000 ifetch 1 ,regb 
+741b 9842e000 ixor temp ,alarm 
+741c 1f212603 and loopcnt ,3 ,regc 
+741d 2434741f nbranch xor_mod32_invert ,user 
+741e 1a62a603 xor_into 3 ,regc 
+
+xor_mod32_invert:
+741f 1a662601 sub regc ,1 ,regc 
+7420 20217422 branch xor_even ,positive 
+7421 9840e000 iadd temp ,alarm 
+
+xor_even:
+7422 1e027e00 deposit alarm 
+7423 e0a08000 istore 1 ,contw 
+7424 1a20a201 increase 1 ,rega 
+7425 1a40a401 increase 1 ,regb 
+7426 c2007419 loop xor_mod32_loop 
+7427 20600000 rtn 
+
+el_boxes:
+7428 204075c5 call enable_authrom 
+7429 18007210 force 16 ,loopcnt 
+742a da20051f arg mem_input_store ,rega 
+
+el_box_loop:
+742b ea208000 ifetch 1 ,rega 
+742c d8c08500 arg mem_e_box ,contr 
+742d 1f212603 and loopcnt ,3 ,regc 
+742e 1a667c01 sub regc ,1 ,null 
+742f 20217431 branch e_boxes ,positive 
+7430 d8c08600 arg mem_l_box ,contr 
+
+e_boxes:
+7431 98c08c00 iadd contr ,contr 
+7432 e8c08000 ifetch 1 ,contr 
+7433 e2208000 istore 1 ,rega 
+7434 1a20a201 increase 1 ,rega 
+7435 c200742b loop el_box_loop 
+7436 202075c9 branch disable_authrom 
+
+pht:
+7437 18007208 force 8 ,loopcnt 
+7438 d8c0051f arg mem_input_store ,contr 
+7439 18c20a00 copy contr ,contw 
+
+pht_loop:
+743a e8c08000 ifetch 1 ,contr 
+743b 98002200 iforce rega 
+743c e8c08000 ifetch 1 ,contr 
+743d 98002400 iforce regb 
+743e 1a23fe00 lshift rega ,pdata 
+743f 9a40fe00 iadd regb ,pdata 
+7440 e0a08000 istore 1 ,contw 
+7441 1a227e00 deposit rega 
+7442 9a40fe00 iadd regb ,pdata 
+7443 e0a08000 istore 1 ,contw 
+7444 c200743a loop pht_loop 
+7445 20600000 rtn 
+
+permute:
+7446 588ae42c setarg 0x8ae42c 
+7447 98000400 iforce temp 
+7448 18007207 force 7 ,loopcnt 
+7449 20407455 call permute_exchange 
+744a 580d751b setarg 0xd751b 
+744b 98000400 iforce temp 
+744c 18007205 force 5 ,loopcnt 
+744d 20407455 call permute_exchange 
+744e 6800852e fetch 1 ,mem_input_store + 15 
+744f 98002200 iforce rega 
+7450 68008522 fetch 1 ,mem_input_store + 3 
+7451 6000852e store 1 ,mem_input_store + 15 
+7452 1a227e00 deposit rega 
+7453 60008522 store 1 ,mem_input_store + 3 
+7454 20600000 rtn 
+
+permute_exchange:
+7455 1841240f and temp ,0xf ,regb 
+
+permute_loop:
+7456 18417e0f and temp ,0xf ,pdata 
+7457 d8a0051f arg mem_input_store ,contw 
+7458 98a08a00 iadd contw ,contw 
+7459 e8a08000 ifetch 1 ,contw 
+745a 98002600 iforce regc 
+745b 1a227e00 deposit rega 
+745c e0a08000 istore 1 ,contw 
+745d 1a622200 copy regc ,rega 
+745e 18518400 rshift4 temp ,temp 
+745f c2007456 loop permute_loop 
+7460 5800051f setarg mem_input_store 
+7461 9a408a00 iadd regb ,contw 
+7462 1a227e00 deposit rega 
+7463 e0a08000 istore 1 ,contw 
+7464 20600000 rtn 
+
+add16:
+7465 78347c00 enable user 
+7466 20207468 branch xor_add16 
+
+xor16:
+7467 78547c00 disable user 
+
+xor_add16:
+7468 18007210 force 16 ,loopcnt 
+
+xoradd_loop:
+7469 ea288000 ifetcht 1 ,rega 
+746a ea408000 ifetch 1 ,regb 
+746b 2034746e branch xoradd_add ,user 
+746c 9842fe00 ixor temp ,pdata 
+746d 2020746f branch xoradd_store 
+
+xoradd_add:
+746e 9840fe00 iadd temp ,pdata 
+
+xoradd_store:
+746f e0a08000 istore 1 ,contw 
+7470 1a20a201 increase 1 ,rega 
+7471 1a40a401 increase 1 ,regb 
+7472 c2007469 loop xoradd_loop 
+7473 20600000 rtn 
+
+function_expand:
+7474 d8a0053f arg mem_y ,contw 
+7475 ea230000 ifetch 6 ,rega 
+7476 e0a30000 istore 6 ,contw 
+7477 2034747a branch expand_12 ,user 
+7478 ea230000 ifetch 6 ,rega 
+7479 2020747b branch expand_cont 
+
+expand_12:
+747a e8c30000 ifetch 6 ,contr 
+
+expand_cont:
+747b e0a30000 istore 6 ,contw 
+747c ea220000 ifetch 4 ,rega 
+747d e0a20000 istore 4 ,contw 
+747e 20600000 rtn 
+
+key_offset:
+747f d8c04262 arg mem_link_key ,contr 
+7480 d8a0052f arg mem_x ,contw 
+7481 d8400000 arg 0 ,temp 
+7482 588395a7 setarg 0x8395a7 
+7483 204074a0 call concatenate_temp24 
+7484 58b3c1df setarg 0xb3c1df 
+7485 204074a0 call concatenate_temp24 
+7486 5800e5e9 setarg 0xe5e9 
+7487 204074a1 call concatenate_temp16 
+7488 18422800 copy temp ,regab 
+7489 78547c00 disable user 
+748a 2040748e call key_addxor 
+748b 1a820400 copy regab ,temp 
+748c 78347c00 enable user 
+748d 2020748e branch key_addxor 
+
+key_addxor:
+748e 18007208 force 8 ,loopcnt 
+
+key_addxor_loop:
+748f e8c08000 ifetch 1 ,contr 
+7490 2f200201 compare 1 ,loopcnt ,1 
+7491 20347495 branch key_high ,user 
+7492 2020f496 branch key_xor ,true 
+
+key_add:
+7493 9840fe00 iadd temp ,pdata 
+7494 20207497 branch key_store 
+
+key_high:
+7495 2020f493 branch key_add ,true 
+
+key_xor:
+7496 9842fe00 ixor temp ,pdata 
+
+key_store:
+7497 e0a08000 istore 1 ,contw 
+7498 184c8400 rshift8 temp ,temp 
+7499 c200748f loop key_addxor_loop 
+749a 20600000 rtn 
+
+copy_aco:
+749b 68030523 fetch 6 ,mem_input_store + 4 
+749c 60030056 store 6 ,mem_aco 
+749d e8c30000 ifetch 6 ,contr 
+749e e0a30000 istore 6 ,contw 
+749f 20600000 rtn 
+
+concatenate_temp24:
+74a0 184d0400 lshift8 temp ,temp 
+
+concatenate_temp16:
+74a1 18500400 lshift16 temp ,temp 
+74a2 98418400 ior temp ,temp 
+74a3 20600000 rtn 
+
+loop1:
+74a4 202074a4 branch loop1 
+
+generate_stk:
+74a5 20407540 call function_s1 
+74a6 d8a0447b arg mem_le_ltk ,contw 
+74a7 202075a3 branch store_aes_result 
+
+authenticate_rconfirm:
+74a8 d8a0449c arg mem_le_srand ,contw 
+74a9 2034f4ab branch authenticate_mconfirm ,master 
+74aa d8a003b0 arg mem_le_mrand ,contw 
+
+authenticate_mconfirm:
+74ab 18c22200 copy contr ,rega 
+74ac 20407e35 call memcpy16 
+74ad 20407551 call function_c1 
+74ae d8c0448c arg mem_le_rconfirm ,contr 
+74af 202075bc branch compare_res 
+
+generate_confirm:
+74b0 da2003b0 arg mem_le_mrand ,rega 
+74b1 2034f4b3 branch generate_mrand ,master 
+74b2 da20449c arg mem_le_srand ,rega 
+
+generate_mrand:
+74b3 1a220a00 copy rega ,contw 
+74b4 20406226 call generate_random 
+74b5 20207551 branch function_c1 
+
+generate_sk:
+74b6 d8c00380 arg mem_le_skdm ,contr 
+74b7 20407592 call load_data128 
+74b8 d8c0447b arg mem_le_ltk ,contr 
+74b9 20407593 call load_regext 
+74ba 18006c38 force 0x38 ,aes_ctrl 
+74bb 18006c00 force 0x0 ,aes_ctrl 
+74bc 2040752f call wait_aes 
+74bd d8a003fd arg mem_le_sk ,contw 
+74be 202075a3 branch store_aes_result 
+
+first_block_counter:
+74bf 18007e49 force 0x49 ,pdata 
+74c0 202074c2 branch first_block 
+
+first_block_data:
+74c1 18007e01 force 1 ,pdata 
+
+first_block:
+74c2 18007000 force regidx_data ,regext_index 
+74c3 184d5e00 lshift8 temp ,regext 
+74c4 9de1de00 ior regext ,regext 
+74c5 1f00f001 increase 1 ,regext_index 
+74c6 184cde00 rshift8 temp ,regext 
+74c7 1df15e00 rshift16 regext ,regext 
+74c8 68014473 fetch 2 ,mem_le_ivm 
+74c9 1ff07e00 lshift16 ,pdata ,pdata 
+74ca 9de1de00 ior regext ,regext 
+74cb 1f00f001 increase 1 ,regext_index 
+74cc e8c20000 ifetch 4 ,contr 
+74cd 98005e00 iforce regext 
+74ce 1f00f001 increase 1 ,regext_index 
+74cf e8c10000 ifetch 2 ,contr 
+74d0 1a30de00 byteswap rega ,regext 
+74d1 1df05e00 lshift16 regext ,regext 
+74d2 9de1de00 ior regext ,regext 
+74d3 1f00f001 increase 1 ,regext_index 
+74d4 20600000 rtn 
+
+generate_mic:
+74d5 1a608c01 add regc ,1 ,contr 
+74d6 e8c08000 ifetch 1 ,contr 
+74d7 98002200 iforce rega 
+74d8 204074bf call first_block_counter 
+74d9 20407531 call do_aes_ocb 
+74da 18007000 force regidx_data ,regext_index 
+74db ea608000 ifetch 1 ,regc 
+74dc 1fe17e03 and_into 0x3 ,pdata 
+74dd 1ff05e00 lshift16 pdata ,regext 
+74de 79205e08 set1 8 ,regext 
+74df 2040759b call clear_hidata 
+74e0 20407534 call do_aes_cbc 
+74e1 1a227200 copy rega ,loopcnt 
+74e2 1a608c02 add regc ,2 ,contr 
+74e3 2040757a call padding_data 
+
+generate_mic_loop:
+74e4 20407584 call aes_load_data 
+74e5 20407534 call do_aes_cbc 
+74e6 1f227e00 deposit loopcnt 
+74e7 203a74e9 branch generate_mic_end ,blank 
+74e8 202074e4 branch generate_mic_loop 
+
+generate_mic_end:
+74e9 1800700c force regidx_result ,regext_index 
+74ea 1de27e00 deposit regext 
+74eb 60020378 store 4 ,mem_le_mic 
+74ec 20600000 rtn 
+
+aes_crypt_data:
+74ed 1a20a201 increase 1 ,rega 
+74ee 204074c1 call first_block_data 
+74ef 1a620c00 copy regc ,contr 
+74f0 2040758e call aes_load_xor 
+74f1 20407537 call do_aes_ctr 
+74f2 204075aa call store_enc_data 
+74f3 1a60a610 increase 16 ,regc 
+74f4 1a40a5f0 increase -16 ,regb 
+74f5 202174ed branch aes_crypt_data ,positive 
+74f6 20600000 rtn 
+
+le_encrypt:
+74f7 da60443e arg mem_le_txheader ,regc 
+74f8 680ac465 fetcht 5 ,mem_le_pcnt_tx 
+74f9 204074d5 call generate_mic 
+74fa 18007008 force regidx_xor ,regext_index 
+74fb 98005e00 iforce regext 
+74fc 18002200 force 0 ,rega 
+74fd 204074c1 call first_block_data 
+74fe 20407537 call do_aes_ctr 
+74ff da604440 arg mem_le_txpayload ,regc 
+7500 6800c43f fetch 1 ,mem_le_txlen 
+7501 1fe0a5ff add pdata ,-1 ,regb 
+7502 9a608a00 iadd regc ,contw 
+7503 1800700c force regidx_result ,regext_index 
+7504 1de27e00 deposit regext 
+7505 e0a20000 istore 4 ,contw 
+7506 204074ed call aes_crypt_data 
+7507 6800c43f fetch 1 ,mem_le_txlen 
+7508 1fe0fe04 increase 4 ,pdata 
+7509 6000c43f store 1 ,mem_le_txlen 
+750a 680ac465 fetcht 5 ,mem_le_pcnt_tx 
+750b 18408401 increase 1 ,temp 
+750c 600ac465 storet 5 ,mem_le_pcnt_tx 
+750d 20600000 rtn 
+
+le_decrypt:
+750e 68008341 fetch 1 ,mem_le_rxbuf + 1 
+750f 1fe67c14 sub pdata ,20 ,null 
+7510 20217511 branch le_dec_cont ,positive 
+
+le_dec_cont:
+7511 da600342 arg mem_le_rxbuf + 2 ,regc 
+7512 1fe0a5ff add pdata ,-1 ,regb 
+7513 1fe0fffc increase -4 ,pdata 
+7514 60008341 store 1 ,mem_le_rxbuf + 1 
+7515 9a608c00 iadd regc ,contr 
+7516 e8c20000 ifetch 4 ,contr 
+7517 18007008 force regidx_xor ,regext_index 
+7518 98005e00 iforce regext 
+7519 18002200 force 0 ,rega 
+751a 680ac46a fetcht 5 ,mem_le_pcnt_rx 
+751b 204074c1 call first_block_data 
+751c 20407537 call do_aes_ctr 
+751d 1800700c force regidx_result ,regext_index 
+751e 1de27e00 deposit regext 
+751f 6002037c store 4 ,mem_le_peer_mic 
+7520 204074ed call aes_crypt_data 
+7521 da600340 arg mem_le_rxbuf ,regc 
+7522 204074d5 call generate_mic 
+7523 680a037c fetcht 4 ,mem_le_peer_mic 
+7524 98467e00 isub temp ,pdata 
+7525 247a0000 nrtn blank 
+7526 6802446f fetch 4 ,mem_le_last_mic 
+7527 98467e00 isub temp ,pdata 
+7528 207a0000 rtn blank 
+7529 600a446f storet 4 ,mem_le_last_mic 
+752a 6802c46a fetch 5 ,mem_le_pcnt_rx 
+752b 1fe0fe01 increase 1 ,pdata 
+752c 6002c46a store 5 ,mem_le_pcnt_rx 
+752d 18007e00 force 0 ,pdata 
+752e 20600000 rtn 
+
+wait_aes:
+752f 243bf52f nbranch wait_aes ,aes_ready 
+7530 20600000 rtn 
+
+do_aes_ocb:
+7531 18006c30 force 0x30 ,aes_ctrl 
+7532 18006c00 force 0x0 ,aes_ctrl 
+7533 2020752f branch wait_aes 
+
+do_aes_cbc:
+7534 18006c32 force 0x32 ,aes_ctrl 
+7535 18006c02 force 0x2 ,aes_ctrl 
+7536 2020752f branch wait_aes 
+
+do_aes_ctr:
+7537 18006c34 force 0x34 ,aes_ctrl 
+7538 18006c04 force 0x4 ,aes_ctrl 
+7539 2020752f branch wait_aes 
+
+do_aes_cfb:
+753a 18006c36 force 0x36 ,aes_ctrl 
+753b 18006c06 force 0x6 ,aes_ctrl 
+753c 2020752f branch wait_aes 
+
+aes_init:
+753d 18006c01 force 1 ,aes_ctrl 
+753e 18006c00 force 0 ,aes_ctrl 
+753f 20600000 rtn 
+
+function_s1:
+7540 18007000 force regidx_data ,regext_index 
+7541 680203b0 fetch 4 ,mem_le_mrand 
+7542 98005e00 iforce regext 
+7543 1f00f001 increase 1 ,regext_index 
+7544 e8c20000 ifetch 4 ,contr 
+7545 98005e00 iforce regext 
+7546 1f00f001 increase 1 ,regext_index 
+7547 6802449c fetch 4 ,mem_le_srand 
+7548 98005e00 iforce regext 
+7549 1f00f001 increase 1 ,regext_index 
+754a e8c20000 ifetch 4 ,contr 
+754b 98005e00 iforce regext 
+754c 1f00f001 increase 1 ,regext_index 
+754d 2040759e call aes_clear 
+754e 18006c38 force 0x38 ,aes_ctrl 
+754f 18006c08 force 0x8 ,aes_ctrl 
+7550 2020752f branch wait_aes 
+
+function_c1:
+7551 680344f9 fetch 6 ,mem_le_lap 
+7552 680b03d0 fetcht 6 ,mem_le_plap 
+7553 2034f556 branch function_c1_master ,master 
+7554 680303d0 fetch 6 ,mem_le_plap 
+7555 680b44f9 fetcht 6 ,mem_le_lap 
+
+function_c1_master:
+7556 18007008 force regidx_xor ,regext_index 
+7557 18425e00 copy temp ,regext 
+7558 1f00f001 increase 1 ,regext_index 
+7559 184f5e00 rshift32 temp ,regext 
+755a 1ff07e00 lshift16 pdata ,pdata 
+755b 9de1de00 ior regext ,regext 
+755c 1f00f001 increase 1 ,regext_index 
+755d 1fef5e00 rshift32 pdata ,regext 
+755e 1f00f001 increase 1 ,regext_index 
+755f 18005e00 force 0 ,regext 
+7560 18007e00 force 0 ,pdata 
+7561 6800c4e6 fetch 1 ,mem_le_conn_peer_addr_type 
+7562 6808c4dc fetcht 1 ,mem_le_adv_own_addr_type 
+7563 2434f566 nbranch function_c1_irat ,master 
+7564 6800c4ed fetch 1 ,mem_le_conn_own_addr_type 
+7565 6808c4e6 fetcht 1 ,mem_le_conn_peer_addr_type 
+
+function_c1_irat:
+7566 6000c4ac store 1 ,mem_le_iat 
+7567 6008c4ad storet 1 ,mem_le_rat 
+7568 18007000 force regidx_data ,regext_index 
+7569 da4044ac arg mem_le_iat ,regb 
+756a 18007204 force 4 ,loopcnt 
+
+function_c1_loop1:
+756b ea220000 ifetch 4 ,rega 
+756c ea4a0000 ifetcht 4 ,regb 
+756d 9842de00 ixor temp ,regext 
+756e 1f00f001 increase 1 ,regext_index 
+756f 1a20a204 increase 4 ,rega 
+7570 1a40a404 increase 4 ,regb 
+7571 c200756b loop function_c1_loop1 
+7572 2040759e call aes_clear 
+7573 18006c38 force 0x38 ,aes_ctrl 
+7574 18006c0c force 0xc ,aes_ctrl 
+7575 2040752f call wait_aes 
+7576 2040759d call aes_clear_data 
+7577 18006c3a force 0x3a ,aes_ctrl 
+7578 18006c08 force 0x8 ,aes_ctrl 
+7579 2020752f branch wait_aes 
+
+padding_data:
+757a 2f200600 compare 0 ,loopcnt ,3 
+757b 20608000 rtn true 
+757c 18c27e00 deposit contr 
+757d 9f208a00 iadd loopcnt ,contw 
+757e 18007e00 force 0 ,pdata 
+
+padding_loop:
+757f e0a08000 istore 1 ,contw 
+7580 1f20f201 increase 1 ,loopcnt 
+7581 2f200600 compare 0 ,loopcnt ,3 
+7582 20608000 rtn true 
+7583 2020757f branch padding_loop 
+
+aes_load_data:
+7584 18007000 force regidx_data ,regext_index 
+
+load_data_loop:
+7585 1f227e00 deposit loopcnt 
+7586 203a7589 branch load_data_padding ,blank 
+7587 e8c20000 ifetch 4 ,contr 
+7588 1f20f3fc increase -4 ,loopcnt 
+
+load_data_padding:
+7589 98005e00 iforce regext 
+758a 1f00f001 increase 1 ,regext_index 
+758b 2f001e04 compare regidx_key ,regext_index ,0xf 
+758c 20608000 rtn true 
+758d 20207585 branch load_data_loop 
+
+aes_load_xor:
+758e 18007008 force regidx_xor ,regext_index 
+758f 20207593 branch load_regext 
+
+load_key:
+7590 18007004 force regidx_key ,regext_index 
+7591 20207593 branch load_regext 
+
+load_data128:
+7592 18007000 force regidx_data ,regext_index 
+
+load_regext:
+7593 18007204 force 4 ,loopcnt 
+
+load_regext_loop:
+7594 e8c20000 ifetch 4 ,contr 
+7595 98005e00 iforce regext 
+7596 1f00f001 increase 1 ,regext_index 
+7597 c2007594 loop load_regext_loop 
+7598 20600000 rtn 
+
+load_sk:
+7599 d8c003fd arg mem_le_sk ,contr 
+759a 20207590 branch load_key 
+
+clear_hidata:
+759b 18007204 force 4 ,loopcnt 
+759c 202075a0 branch clear_data_rest 
+
+aes_clear_data:
+759d 18007000 force regidx_data ,regext_index 
+
+aes_clear:
+759e 18007204 force 4 ,loopcnt 
+
+clear_loop:
+759f 18005e00 force 0 ,regext 
+
+clear_data_rest:
+75a0 1f00f001 increase 1 ,regext_index 
+75a1 c200759f loop clear_loop 
+75a2 20600000 rtn 
+
+store_aes_result:
+75a3 1800700c force regidx_result ,regext_index 
+75a4 18007204 force 4 ,loopcnt 
+
+send_aes_result_loop:
+75a5 1de27e00 deposit regext 
+75a6 e0a20000 istore 4 ,contw 
+75a7 1f00f001 increase 1 ,regext_index 
+75a8 c20075a5 loop send_aes_result_loop 
+75a9 20600000 rtn 
+
+store_enc_data:
+75aa 1800700c force regidx_result ,regext_index 
+75ab 1a620a00 copy regc ,contw 
+75ac 1a40f201 add regb ,1 ,loopcnt 
+75ad 1f267c0f sub loopcnt ,15 ,null 
+75ae 202175b0 branch store_enc_loop ,positive 
+75af 18007210 force 16 ,loopcnt 
+
+store_enc_loop:
+75b0 1de27e00 deposit regext 
+75b1 1f267c03 sub loopcnt ,3 ,null 
+75b2 202175b8 branch store_enc_byte ,positive 
+75b3 e0a20000 istore 4 ,contw 
+75b4 1f20f3fc increase -4 ,loopcnt 
+75b5 20628000 rtn zero 
+75b6 1f00f001 increase 1 ,regext_index 
+75b7 202075b0 branch store_enc_loop 
+
+store_enc_byte:
+75b8 e0a08000 istore 1 ,contw 
+75b9 1fecfe00 rshift8 pdata ,pdata 
+75ba c20075b8 loop store_enc_byte 
+75bb 20600000 rtn 
+
+compare_res:
+75bc 1800700c force regidx_result ,regext_index 
+75bd 18007204 force 4 ,loopcnt 
+
+compare_res_loop:
+75be e8c20000 ifetch 4 ,contr 
+75bf 9de67c00 isub regext ,null 
+75c0 24628000 nrtn zero 
+75c1 1f00f001 increase 1 ,regext_index 
+75c2 c20075be loop compare_res_loop 
+75c3 18007c00 force 0 ,null 
+75c4 20600000 rtn 
+
+enable_authrom:
+75c5 68108050 hfetch 1 ,core_clkoff 
+75c6 793ffe00 set0 clock_off_auth_rom ,pdata 
+75c7 60108050 hstore 1 ,core_clkoff 
+75c8 20600000 rtn 
+
+disable_authrom:
+75c9 68108050 hfetch 1 ,core_clkoff 
+75ca 79207e00 set1 clock_off_auth_rom ,pdata 
+75cb 60108050 hstore 1 ,core_clkoff 
+75cc 20600000 rtn 
+
+init_memp:
+75cd d8a00742 arg mem_p ,contw 
+75ce 3803ffff setsect 0 ,0x3ffff 
+75cf 3807ffff setsect 1 ,0x3ffff 
+75d0 380bffff setsect 2 ,0x3ffff 
+75d1 380ffbff setsect 3 ,0x3fbff 
+75d2 e0a48000 istore 9 ,contw 
+75d3 3803ffff setsect 0 ,0x3ffff 
+75d4 3807ffff setsect 1 ,0x3ffff 
+75d5 380bffff setsect 2 ,0x3ffff 
+75d6 380fffff setsect 3 ,0x3ffff 
+75d7 e0a48000 istore 9 ,contw 
+75d8 3803ffff setsect 0 ,0x3ffff 
+75d9 3807ffff setsect 1 ,0x3ffff 
+75da 380bcfff setsect 2 ,0x3cfff 
+75db 380fffff setsect 3 ,0x3ffff 
+75dc e0a48000 istore 9 ,contw 
+75dd 3803ffff setsect 0 ,0x3ffff 
+75de 3807ffff setsect 1 ,0x3ffff 
+75df 380bffef setsect 2 ,0x3ffef 
+75e0 380fffff setsect 3 ,0x3ffff 
+75e1 e0a48000 istore 9 ,contw 
+75e2 3803ffff setsect 0 ,0x3ffff 
+75e3 3807ffff setsect 1 ,0x3ffff 
+75e4 380bffff setsect 2 ,0x3ffff 
+75e5 380fffff setsect 3 ,0x3ffff 
+75e6 e0a48000 istore 9 ,contw 
+75e7 3803ffff setsect 0 ,0x3ffff 
+75e8 38066c7f setsect 1 ,0x26c7f 
+75e9 3808146b setsect 2 ,0x146b 
+75ea 380f7bb3 setsect 3 ,0x37bb3 
+75eb e0a48000 istore 9 ,contw 
+75ec 3801feb8 setsect 0 ,0x1feb8 
+75ed 38050c12 setsect 1 ,0x10c12 
+75ee 380ab722 setsect 2 ,0x2b722 
+75ef 380e9fa6 setsect 3 ,0x29fa6 
+75f0 e0a48000 istore 9 ,contw 
+75f1 3800e70f setsect 0 ,0xe70f 
+75f2 38056720 setsect 1 ,0x16720 
+75f3 3808519e setsect 2 ,0x519e 
+75f4 380d9084 setsect 3 ,0x19084 
+75f5 e0a48000 istore 9 ,contw 
+75f6 38031012 setsect 0 ,0x31012 
+75f7 380760bf setsect 1 ,0x360bf 
+75f8 380bf0af setsect 2 ,0x3f0af 
+75f9 380c03d3 setsect 3 ,0x3d3 
+75fa e0a48000 istore 9 ,contw 
+75fb 3803a188 setsect 0 ,0x3a188 
+75fc 38043ad0 setsect 1 ,0x3ad0 
+75fd 380bcbf2 setsect 2 ,0x3cbf2 
+75fe 380e43d9 setsect 3 ,0x243d9 
+75ff e0a48000 istore 9 ,contw 
+7600 3802b030 setsect 0 ,0x2b030 
+7601 38076a03 setsect 1 ,0x36a03 
+7602 38091188 setsect 2 ,0x11188 
+7603 380de520 setsect 3 ,0x1e520 
+7604 e0a48000 istore 9 ,contw 
+7605 3803a11e setsect 0 ,0x3a11e 
+7606 3804fe5d setsect 1 ,0xfe5d 
+7607 3808dd57 setsect 2 ,0xdd57 
+7608 380dac93 setsect 3 ,0x1ac93 
+7609 e0a48000 istore 9 ,contw 
+760a 380011ed setsect 0 ,0x11ed 
+760b 380618c4 setsect 1 ,0x218c4 
+760c 38088da7 setsect 2 ,0x8da7 
+760d 380e57ff setsect 3 ,0x257ff 
+760e e0a48000 istore 9 ,contw 
+760f 3803192b setsect 0 ,0x3192b 
+7610 38074641 setsect 1 ,0x34641 
+7611 3809be0c setsect 2 ,0x1be0c 
+7612 380f66ad setsect 3 ,0x366ad 
+7613 e0a48000 istore 9 ,contw 
+7614 38001f83 setsect 0 ,0x1f83 
+7615 38055a23 setsect 1 ,0x15a23 
+7616 380bf9b0 setsect 2 ,0x3f9b0 
+7617 380c3949 setsect 3 ,0x3949 
+7618 e0a48000 istore 9 ,contw 
+7619 38013a51 setsect 0 ,0x13a51 
+761a 380553fd setsect 1 ,0x153fd 
+761b 380b372a setsect 2 ,0x3372a 
+761c 380cf1bb setsect 3 ,0xf1bb 
+761d e0a48000 istore 9 ,contw 
+761e 3803ae85 setsect 0 ,0x3ae85 
+761f 3805eed9 setsect 1 ,0x1eed9 
+7620 38089e66 setsect 2 ,0x9e66 
+7621 380c01a8 setsect 3 ,0x1a8 
+7622 e0a40000 istore 8 ,contw 
+7623 20600000 rtn 
+
+shutter_init:
+7624 5800764c setarg shutter_send_process 
+7625 6001428e store 2 ,mem_cb_bt_process 
+7626 5800770f setarg shutter_process_idle 
+7627 60014290 store 2 ,mem_cb_idle_process 
+7628 580076ac setarg shutter_process_bb_event 
+7629 60014292 store 2 ,mem_cb_bb_event_process 
+762a 58007710 setarg shutter_process_lpm_before 
+762b 6001428a store 2 ,mem_cb_before_lpm 
+762c 58007718 setarg shutter_discovery_timeout_sleep 
+762d 60014294 store 2 ,mem_cb_discovry_timeout 
+762e 79200025 set1 mark_ext_patch ,mark 
+762f 44fcc03f bpatch patch3f_1 ,mem_patch3f 
+7630 20758000 rtn wake 
+7631 70808100 hjam 0x00 ,core_gpio_sel1 
+7632 2040763f call shutter_key_and_wake_gpio_setup 
+7633 58007717 setarg shutter_before_hibernate 
+7634 60014288 store 2 ,mem_cb_before_hibernate 
+7635 70480e00 jam flag_shutter_1key_send_null ,mem_shutter_1key_send_sm 
+7636 70480a00 jam 0 ,mem_shutter_key 
+7637 70480b00 jam flag_shutter_default ,mem_shutter_flag 
+7638 58000000 setarg 0 
+7639 60024800 store 4 ,mem_shutter_send_data 
+763a 20403f23 call app_check_reconn_target 
+763b 203a3f79 branch app_bt_start_discovery_short ,blank 
+763c 20403f96 call app_led_on 
+763d 20403f7e call app_bt_stop_discovery 
+763e 20203f6e branch app_bt_start_reconnect 
+
+shutter_key_and_wake_gpio_setup:
+763f 6808c80f fetcht 1 ,mem_shutter_iphonekey_gpio 
+7640 204069d1 call gpio_config_input 
+7641 6808c810 fetcht 1 ,mem_shutter_androidkey_gpio 
+7642 202069d1 branch gpio_config_input 
+
+shutter_cancel_key_shake:
+7643 79200025 set1 mark_ext_patch ,mark 
+7644 44fd403f bpatch patch3f_2 ,mem_patch3f 
+7645 680a4806 fetcht 4 ,mem_shutter_clkn_bt_last 
+7646 1c427e00 deposit clkn_bt 
+7647 60024806 store 4 ,mem_shutter_clkn_bt_last 
+7648 98467e00 isub temp ,pdata 
+7649 24610000 nrtn positive 
+764a 1fe67ec8 sub pdata ,200 ,pdata 
+764b 20600000 rtn 
+
+shutter_send_process:
+764c 6800c2bc fetch 1 ,mem_hid_interrupt_state 
+764d c19f8000 rtnne 0x3f 
+
+shutter_scan_key_start:
+764e 79200025 set1 mark_ext_patch ,mark 
+764f 44fdc03f bpatch patch3f_3 ,mem_patch3f 
+7650 6800c132 fetch 1 ,mem_device_option 
+7651 c1848000 rtnne dvc_op_shutter 
+7652 78547c00 disable user 
+7653 2040769b call shutter_scan_key 
+7654 24740000 nrtn user 
+7655 78547c00 disable user 
+7656 6800c133 fetch 1 ,mem_scan_mode 
+7657 c001f706 beq 0x03 ,shutter_reconnect_scan_2 
+7658 6800c80b fetch 1 ,mem_shutter_flag 
+7659 c000f663 beq flag_shutter_iphonekey_send ,shutter_iphonekey_release 
+765a c001767d beq flag_shutter_androidkey_send ,shutter_androidkey_release 
+765b 20407643 call shutter_cancel_key_shake 
+765c 20217660 branch shutter_send_process_end ,positive 
+765d 6800c80a fetch 1 ,mem_shutter_key 
+765e c2807674 bbit1 flag_shutter_iphonekey_press ,shutter_iphonekey_press 
+765f c280f682 bbit1 flag_shutter_androidkey_press ,shutter_androidkey_press 
+
+shutter_send_process_end:
+7660 70480a00 jam 0 ,mem_shutter_key 
+7661 70480b00 jam flag_shutter_default ,mem_shutter_flag 
+7662 20600000 rtn 
+
+shutter_iphonekey_release:
+7663 70480b00 jam flag_shutter_default ,mem_shutter_flag 
+7664 20407bde call ui_led_blink_stop 
+7665 6800c811 fetch 1 ,mem_shutter_key_number 
+7666 c000f66a beq flag_shutter_1key ,shutter_1key_iphonekey_release 
+
+shutter_2key_iphonekey_release:
+
+shutter_iphonekey_release_package:
+7667 70480505 jam 0x05 ,mem_shutter_send_length 
+7668 70480003 jam 0x03 ,mem_shutter_send_data 
+7669 20207688 branch shutter_send_keydata 
+
+shutter_1key_iphonekey_release:
+766a 70480e00 jam flag_shutter_1key_send_null ,mem_shutter_1key_send_sm 
+766b 2020766c branch shutter_1key_send_step1 
+
+shutter_1key_send_step1:
+766c 70480e02 jam flag_shutter_1key_send_step2 ,mem_shutter_1key_send_sm 
+766d 20207684 branch shutter_androidkey_press_package 
+
+shutter_1key_send_step2:
+766e 70480e03 jam flag_shutter_1key_send_step3 ,mem_shutter_1key_send_sm 
+766f 2020767f branch shutter_androidkey_release_package 
+
+shutter_1key_send_step3:
+7670 70480e04 jam flag_shutter_1key_send_step4 ,mem_shutter_1key_send_sm 
+7671 20207678 branch shutter_iphonekey_press_package 
+
+shutter_1key_send_step4:
+7672 70480e00 jam flag_shutter_1key_send_null ,mem_shutter_1key_send_sm 
+7673 20207667 branch shutter_iphonekey_release_package 
+
+shutter_iphonekey_press:
+7674 70480b01 jam flag_shutter_iphonekey_send ,mem_shutter_flag 
+7675 20407be7 call ui_led_on 
+7676 6800c811 fetch 1 ,mem_shutter_key_number 
+7677 c000f67c beq flag_shutter_1key ,shutter_1key_iphonekey_press 
+
+shutter_2key_iphonekey_press:
+
+shutter_iphonekey_press_package:
+7678 70480505 jam 0x05 ,mem_shutter_send_length 
+7679 58020003 setarg 0x20003 
+767a 6001c800 store 3 ,mem_shutter_send_data 
+767b 20207688 branch shutter_send_keydata 
+
+shutter_1key_iphonekey_press:
+767c 20600000 rtn 
+
+shutter_androidkey_release:
+767d 70480b00 jam flag_shutter_default ,mem_shutter_flag 
+767e 20407bde call ui_led_blink_stop 
+
+shutter_androidkey_release_package:
+767f 7048050a jam 0x0a ,mem_shutter_send_length 
+7680 70480001 jam 0x01 ,mem_shutter_send_data 
+7681 20207688 branch shutter_send_keydata 
+
+shutter_androidkey_press:
+7682 70480b02 jam flag_shutter_androidkey_send ,mem_shutter_flag 
+7683 20407be7 call ui_led_on 
+
+shutter_androidkey_press_package:
+7684 7048050a jam 0x0a ,mem_shutter_send_length 
+7685 70480001 jam 0x01 ,mem_shutter_send_data 
+7686 58280000 setarg 0x280000 
+7687 6001c801 store 3 ,mem_shutter_send_data + 1 
+
+shutter_send_keydata:
+7688 79200025 set1 mark_ext_patch ,mark 
+7689 44fe403f bpatch patch3f_4 ,mem_patch3f 
+768a 6800c805 fetch 1 ,mem_shutter_send_length 
+768b 1fe22200 copy pdata ,rega 
+768c 20404b2c call hid_malloc_tx_buff 
+768d 680142b7 fetch 2 ,mem_hid_int_remote_cid 
+768e e0a10000 istore 2 ,contw 
+768f 580000a1 setarg 0xa1 
+7690 e0a08000 istore 1 ,contw 
+7691 680a4800 fetcht 4 ,mem_shutter_send_data 
+7692 e0ac0000 istoret 8 ,contw 
+7693 58000000 setarg 0 
+7694 e0a08000 istore 1 ,contw 
+7695 60024800 store 4 ,mem_shutter_send_data 
+7696 6800c80e fetch 1 ,mem_shutter_1key_send_sm 
+7697 c001766e beq flag_shutter_1key_send_step2 ,shutter_1key_send_step2 
+7698 c001f670 beq flag_shutter_1key_send_step3 ,shutter_1key_send_step3 
+7699 c0027672 beq flag_shutter_1key_send_step4 ,shutter_1key_send_step4 
+769a 20600000 rtn 
+
+shutter_scan_key:
+769b 6808c80f fetcht 1 ,mem_shutter_iphonekey_gpio 
+769c 204069e5 call gpio_get_bit 
+769d 58000000 setarg 0 
+769e 7920fe00 setflag true ,flag_shutter_iphonekey_press ,pdata 
+769f 6000c804 store 1 ,mem_shutter_key_temp 
+76a0 6808c810 fetcht 1 ,mem_shutter_androidkey_gpio 
+76a1 204069e5 call gpio_get_bit 
+76a2 58000000 setarg 0 
+76a3 7920fe01 setflag true ,flag_shutter_androidkey_press ,pdata 
+76a4 6808c804 fetcht 1 ,mem_shutter_key_temp 
+76a5 9841fe00 ior temp ,pdata 
+76a6 6808c80a fetcht 1 ,mem_shutter_key 
+76a7 6000c80a store 1 ,mem_shutter_key 
+76a8 9842fc00 ixor temp ,null 
+76a9 20628000 rtn zero 
+76aa 78347c00 enable user 
+76ab 20600000 rtn 
+
+shutter_process_bb_event:
+76ac 1a627e00 copy regc ,pdata 
+76ad c002f6d8 beq bt_evt_setup_complete ,shutter_bb_event_setup_complete 
+76ae c00376da beq bt_evt_hid_connected ,shutter_bb_event_hid_connected 
+76af c003f6dd beq bt_evt_hid_disconnected ,shutter_bb_event_hid_disconn 
+76b0 c013f6e1 beq bt_evt_virtual_cable_unplug ,shutter_bb_event_unplug 
+76b1 c00176c9 beq bt_evt_bb_disconnected ,shutter_bb_event_bb_disconn 
+76b2 c00276d0 beq bt_evt_reconn_failed ,shutter_bb_event_reconn_failed 
+76b3 c009f6d0 beq bt_evt_reconn_page_timeout ,shutter_bb_event_reconn_failed 
+76b4 c000f6c6 beq bt_evt_bb_connected ,shutter_process_bb_conn 
+76b5 c00976c0 beq bt_evt_hid_handshake ,shutter_event_hid_handshake 
+76b6 c0173f57 beq bt_evt_remote_unsniff ,app_start_auto_sniff 
+76b7 1fe1040f and pdata ,0x0f ,temp 
+76b8 1fe17ef0 and_into bt_evt_timer_mask ,pdata 
+76b9 c02876e4 beq bt_evt_timer_init ,shutter_bb_event_timer 
+76ba 20600000 rtn 
+
+shutter_hid_handshake_timer:
+76bb 6800c7f2 fetch 1 ,mem_hid_handshake_timer_count 
+76bc 207a0000 rtn blank 
+76bd 1fe0ffff increase -1 ,pdata 
+76be 6000c7f2 store 1 ,mem_hid_handshake_timer_count 
+76bf 247a0000 nrtn blank 
+
+shutter_event_hid_handshake:
+76c0 70427f01 jam app_handshake_done ,mem_app_handshake_flag 
+76c1 20403fa4 call app_lpm_mult_enable 
+76c2 20403fa2 call app_bt_store_reconn_info 
+76c3 20403f7e call app_bt_stop_discovery 
+76c4 20403f98 call app_led_off 
+76c5 20203f9e branch app_bt_enter_sniff 
+
+shutter_process_bb_conn:
+76c6 70480d00 jam 0 ,mem_shutter_hid_disconn_count 
+76c7 70480c00 jam 0 ,mem_shutter_cable_unplug_conut 
+76c8 20600000 rtn 
+
+shutter_bb_event_bb_disconn:
+76c9 79200025 set1 mark_ext_patch ,mark 
+76ca 44fec03f bpatch patch3f_5 ,mem_patch3f 
+76cb 70429d00 jam 0 ,mem_unsniff2sniff_timer_count 
+76cc 70480c00 jam 0 ,mem_shutter_cable_unplug_conut 
+76cd 70480d00 jam 0 ,mem_shutter_hid_disconn_count 
+76ce 680142a0 fetch app_disc_rsn_size ,mem_app_disconn_reason 
+76cf c301f6d4 bbit0 app_disc_after_sniff ,shutter_check_pairing 
+
+shutter_bb_event_reconn_failed:
+76d0 680147fe fetch 2 ,mem_discovery_timeout 
+76d1 600147f0 store 2 ,mem_discovery_timeout_timer_count 
+
+shutter_discovery_on_not_renew_timer:
+76d2 20403f12 call app_disconn_reason_clear 
+76d3 20203f7b branch app_bt_start_discovery_led_blink 
+
+shutter_check_pairing:
+76d4 c300f6d6 bbit0 app_disc_after_pairing ,shutter_check_reconn 
+76d5 202076d0 branch shutter_bb_event_reconn_failed 
+
+shutter_check_reconn:
+76d6 c30176d2 bbit0 app_disc_after_reconn ,shutter_discovery_on_not_renew_timer 
+76d7 202076d0 branch shutter_bb_event_reconn_failed 
+
+shutter_bb_event_setup_complete:
+76d8 20403f7e call app_bt_stop_discovery 
+76d9 20203f98 branch app_led_stop_blink 
+
+shutter_bb_event_hid_connected:
+76da 58000002 setarg hid_handshake_timeout 
+76db 6000c7f2 store 1 ,mem_hid_handshake_timer_count 
+76dc 20600000 rtn 
+
+shutter_bb_event_hid_disconn:
+76dd 70480c00 jam 0 ,mem_shutter_cable_unplug_conut 
+76de 58000001 setarg flag_shutter_hid_disconn_timeout 
+76df 6000c80d store 1 ,mem_shutter_hid_disconn_count 
+76e0 20600000 rtn 
+
+shutter_bb_event_unplug:
+76e1 58000005 setarg flag_shutter_cable_unplug_timeout 
+76e2 6000c80c store 1 ,mem_shutter_cable_unplug_conut 
+76e3 20600000 rtn 
+
+shutter_bb_event_timer:
+76e4 79200025 set1 mark_ext_patch ,mark 
+76e5 44ff403f bpatch patch3f_6 ,mem_patch3f 
+76e6 60088259 storet 1 ,mem_app_evt_timer_count 
+
+shutter_bb_event_100ms_loop:
+76e7 68008259 fetch 1 ,mem_app_evt_timer_count 
+76e8 207a0000 rtn blank 
+76e9 1fe0ffff increase -1 ,pdata 
+76ea 60008259 store 1 ,mem_app_evt_timer_count 
+76eb 204076ef call shutter_check_unplug_timer 
+76ec 204076bb call shutter_hid_handshake_timer 
+76ed 204076fa call shutter_check_hid_disconn_timer 
+76ee 202076e7 branch shutter_bb_event_100ms_loop 
+
+shutter_check_unplug_timer:
+76ef 6800c80c fetch 1 ,mem_shutter_cable_unplug_conut 
+76f0 207a0000 rtn blank 
+76f1 6800c80c fetch 1 ,mem_shutter_cable_unplug_conut 
+76f2 1fe0ffff increase -1 ,pdata 
+76f3 6000c80c store 1 ,mem_shutter_cable_unplug_conut 
+76f4 247a0000 nrtn blank 
+76f5 680082e6 fetch 1 ,mem_control_tasks 
+76f6 79207e00 set1 l2cap_disconnect_interrupt ,pdata 
+76f7 79207e07 set1 l2cap_disconnect_control ,pdata 
+76f8 600082e6 store 1 ,mem_control_tasks 
+76f9 20600000 rtn 
+
+shutter_check_hid_disconn_timer:
+76fa 6800c80d fetch 1 ,mem_shutter_hid_disconn_count 
+76fb 207a0000 rtn blank 
+76fc 6800c80d fetch 1 ,mem_shutter_hid_disconn_count 
+76fd 1fe0ffff increase -1 ,pdata 
+76fe 6000c80d store 1 ,mem_shutter_hid_disconn_count 
+76ff 247a0000 nrtn blank 
+7700 20203f77 branch app_bt_disconnect 
+
+shutter_reconnect_scan:
+7701 79200025 set1 mark_ext_patch ,mark 
+7702 44ffc03f bpatch patch3f_7 ,mem_patch3f 
+7703 6800c133 fetch 1 ,mem_scan_mode 
+7704 c1818000 rtnne 0x03 
+7705 2020764e branch shutter_scan_key_start 
+
+shutter_reconnect_scan_2:
+7706 20407643 call shutter_cancel_key_shake 
+7707 20610000 rtn positive 
+7708 6800c80a fetch 1 ,mem_shutter_key 
+7709 207a0000 rtn blank 
+770a 20403f23 call app_check_reconn_target 
+770b 203a3f79 branch app_bt_start_discovery_short ,blank 
+770c 20403f96 call app_led_on 
+770d 20403f7e call app_bt_stop_discovery 
+770e 20203f6e branch app_bt_start_reconnect 
+
+shutter_process_idle:
+770f 20207701 branch shutter_reconnect_scan 
+
+shutter_process_lpm_before:
+7710 6808c80f fetcht 1 ,mem_shutter_iphonekey_gpio 
+7711 204069b4 call gpio_set_wake_by_current_state 
+7712 6800c811 fetch 1 ,mem_shutter_key_number 
+7713 c080f715 bne flag_shutter_1key ,shutter_process_lpm_before_key2 
+7714 20600000 rtn 
+
+shutter_process_lpm_before_key2:
+7715 6808c810 fetcht 1 ,mem_shutter_androidkey_gpio 
+7716 202069b4 branch gpio_set_wake_by_current_state 
+
+shutter_before_hibernate:
+7717 2020763f branch shutter_key_and_wake_gpio_setup 
+
+shutter_discovery_timeout_sleep:
+7718 20203f9a branch app_enter_hibernate 
+
+sp_initialize:
+7719 79200025 set1 mark_ext_patch ,mark 
+771a 44f9403e bpatch patch3e_2 ,mem_patch3e 
+771b 6800c7dc fetch 1 ,mem_ssp_enable 
+771c 203a6009 branch ssp_disable ,blank 
+771d 20406003 call ssp_enable 
+771e 58000000 setarg 0 
+771f 600407da store 8 ,mem_sp_state_start 
+7720 600207e2 store 4 ,mem_sp_flag_start 
+7721 d8a007e9 arg mem_sp_iocap_remote ,contw 
+7722 e0a38000 istore 7 ,contw 
+7723 7007e000 jam default_statemachine ,mem_sp_localsm 
+7724 202077a4 branch sp_pubkey_calc 
+
+sp_generate_local_key:
+7725 7007dc01 jam sp_flag_commit ,mem_sp_flag 
+7726 2020772a branch sp_generate_local_key0 
+
+sp_master_generate_local_key:
+7727 6800c793 fetch 1 ,mem_sp_local_key_invalid 
+7728 c000f7c2 beq sp_key_valid ,sp_dhkey_calc 
+7729 20203bf1 branch assert 
+
+sp_generate_local_key0:
+772a 6800c793 fetch 1 ,mem_sp_local_key_invalid 
+772b c000f72d beq sp_key_valid ,sp_start_send_pubkey 
+772c 202077a4 branch sp_pubkey_calc 
+
+sp_start_send_pubkey:
+772d 204077c2 call sp_dhkey_calc 
+772e 680087db fetch 1 ,mem_master_sp_state 
+772f 247a0000 nrtn blank 
+7730 7007da03 jam sp_stat_key_send ,mem_sp_state 
+7731 20600000 rtn 
+
+sp_calculate_commitment:
+7732 680087de fetch 1 ,mem_sp_calc 
+7733 c0807750 bne sp_calc_standby ,sp_calculate_commitment_wait_dhkey_calc 
+7734 2040774d call sp_local_random_key_generator 
+7735 d8a00898 arg mem_sp_prarm_stack ,contw 
+7736 58000848 setarg mem_sp_random_local_end 
+7737 e0a10000 istore 2 ,contw 
+7738 580047c4 setarg mem_sp_pubkey_local_x_end 
+7739 e0a10000 istore 2 ,contw 
+773a 58000808 setarg mem_sp_pubkey_remote_x_end 
+773b e0a10000 istore 2 ,contw 
+773c 20207744 branch sp_calculate_commitment0 
+
+master_sp_calculate_commitment:
+773d d8a00898 arg mem_sp_prarm_stack ,contw 
+773e 58000858 setarg mem_sp_random_remote_end 
+773f e0a10000 istore 2 ,contw 
+7740 58000808 setarg mem_sp_pubkey_remote_x_end 
+7741 e0a10000 istore 2 ,contw 
+7742 580047c4 setarg mem_sp_pubkey_local_x_end 
+7743 e0a10000 istore 2 ,contw 
+
+sp_calculate_commitment0:
+7744 20407ad2 call function_f1 
+7745 680087db fetch 1 ,mem_master_sp_state 
+7746 c002774a beq sp_stat_commit_calc ,master_sp_calculate_commitment0 
+7747 7007dc01 jam sp_flag_commit ,mem_sp_flag 
+7748 7007da05 jam sp_stat_commit_send ,mem_sp_state 
+7749 20600000 rtn 
+
+master_sp_calculate_commitment0:
+774a 7007db14 jam sp_stat_commitment_compare ,mem_master_sp_state 
+774b 20407727 call sp_master_generate_local_key 
+774c 2020780f branch master_set_mem_master_sp_flag 
+
+sp_local_random_key_generator:
+774d d8a00838 arg mem_sp_random_local ,contw 
+774e 18000e08 force 8 ,queue 
+774f 202077db branch random_generator 
+
+sp_calculate_commitment_wait_dhkey_calc:
+7750 7007dc01 jam sp_flag_commit ,mem_sp_flag 
+7751 20600000 rtn 
+
+sp_confirm_check:
+7752 d8a006c3 arg mem_addr_value ,contw 
+7753 68034140 fetch 6 ,mem_lap 
+7754 e0a30000 istore 6 ,contw 
+7755 68030040 fetch 6 ,mem_plap 
+7756 e0a30000 istore 6 ,contw 
+7757 680187e9 fetch 3 ,mem_sp_iocap_remote 
+7758 e0a18000 istore 3 ,contw 
+7759 20407b3c call function_f3a 
+775a da200868 arg mem_sp_calc_result_high ,rega 
+775b da400878 arg mem_sp_check_result ,regb 
+775c 18000e04 force 4 ,queue 
+775d 204077e0 call compare4 
+775e 2420f768 nbranch sp_confirm_check_failed ,true 
+
+sp_confirm_check_success:
+775f 680087db fetch 1 ,mem_master_sp_state 
+7760 c004f765 beq sp_stat_confirm_check ,sp_confirm_check_success_master 
+7761 7007da0a jam sp_stat_confirm_calc ,mem_sp_state 
+7762 7007dc01 jam sp_flag_commit ,mem_sp_flag 
+7763 70007c03 jam lmp_accepted ,mem_lmo_opcode2 
+7764 20600000 rtn 
+
+sp_confirm_check_success_master:
+7765 70007c03 jam lmp_accepted ,mem_lmo_opcode2 
+7766 7007db15 jam sp_state_end ,mem_master_sp_state 
+7767 2020780f branch master_set_mem_master_sp_flag 
+
+sp_confirm_check_failed:
+7768 680087db fetch 1 ,mem_master_sp_state 
+7769 c004f76e beq sp_stat_confirm_check ,sp_confirm_check_failed_master 
+776a 7007da00 jam sp_stat_null ,mem_sp_state 
+776b 70007c04 jam lmp_not_accepted ,mem_lmo_opcode2 
+776c 70007e05 jam authentication_failure_error ,mem_lmo_reason2 
+776d 20600000 rtn 
+
+sp_confirm_check_failed_master:
+776e 70007c04 jam lmp_not_accepted ,mem_lmo_opcode2 
+776f 7007db00 jam sp_stat_null ,mem_master_sp_state 
+7770 20600000 rtn 
+
+sp_confirm_calc:
+7771 680087df fetch 1 ,mem_sp_dh_ready 
+7772 c000f775 beq sp_flag_commit ,sp_confirm_calc_ready 
+7773 7007db0a jam sp_stat_confirm_calc ,mem_master_sp_state 
+7774 2020780f branch master_set_mem_master_sp_flag 
+
+sp_confirm_calc_ready:
+7775 d8a006c3 arg mem_addr_value ,contw 
+7776 68030040 fetch 6 ,mem_plap 
+7777 e0a30000 istore 6 ,contw 
+7778 68034140 fetch 6 ,mem_lap 
+7779 e0a30000 istore 6 ,contw 
+777a 680187e6 fetch 3 ,mem_sp_iocap_local 
+777b e0a18000 istore 3 ,contw 
+777c 20407b4a call function_f3b 
+777d 680087db fetch 1 ,mem_master_sp_state 
+777e c0057782 beq sp_stat_confirm_calc ,sp_confirm_calc_master 
+777f 7007da0b jam sp_stat_confirm_send ,mem_sp_state 
+7780 7007dc01 jam sp_flag_commit ,mem_sp_flag 
+7781 20600000 rtn 
+
+sp_confirm_calc_master:
+7782 7007db0b jam sp_stat_confirm_send ,mem_master_sp_state 
+7783 7007dd01 jam sp_flag_commit ,mem_master_sp_flag 
+7784 20600000 rtn 
+
+sp_master_key_prarm_push:
+7785 d8a00898 arg mem_sp_prarm_stack ,contw 
+7786 68030040 fetch 6 ,mem_plap 
+7787 e0a30000 istore 6 ,contw 
+7788 68034140 fetch 6 ,mem_lap 
+7789 e0a30000 istore 6 ,contw 
+778a 58000848 setarg mem_sp_random_local_end 
+778b e0a10000 istore 2 ,contw 
+778c 58000858 setarg mem_sp_random_remote_end 
+778d e0a10000 istore 2 ,contw 
+778e 20207799 branch sp_link_key_calc 
+
+sp_link_key_prarm_push:
+778f 7007da0f jam sp_stat_done ,mem_sp_state 
+7790 d8a00898 arg mem_sp_prarm_stack ,contw 
+7791 68034140 fetch 6 ,mem_lap 
+7792 e0a30000 istore 6 ,contw 
+7793 68030040 fetch 6 ,mem_plap 
+7794 e0a30000 istore 6 ,contw 
+7795 58000858 setarg mem_sp_random_remote_end 
+7796 e0a10000 istore 2 ,contw 
+7797 58000848 setarg mem_sp_random_local_end 
+7798 e0a10000 istore 2 ,contw 
+
+sp_link_key_calc:
+7799 d8a006c3 arg mem_addr_value ,contw 
+779a 68030898 fetch 6 ,mem_sp_prarm_stack 
+779b e0a30000 istore 6 ,contw 
+779c 6803089e fetch 6 ,mem_sp_prarm_stack + 6 
+779d e0a30000 istore 6 ,contw 
+779e 20407b06 call function_f2 
+779f 70425e01 jam 1 ,mem_link_key_exists 
+77a0 d8a04262 arg mem_link_key ,contw 
+77a1 d8c00868 arg mem_sp_calc_result_high ,contr 
+77a2 20407e35 call memcpy16 
+77a3 20203229 branch generate_linkkey_continue 
+
+sp_pubkey_calc:
+77a4 79200025 set1 mark_ext_patch ,mark 
+77a5 44f9c03e bpatch patch3e_3 ,mem_patch3e 
+77a6 6800c793 fetch 1 ,mem_sp_local_key_invalid 
+77a7 c1800000 rtnne sp_key_invalid 
+77a8 680087de fetch 1 ,mem_sp_calc 
+77a9 c1800000 rtnne sp_calc_standby 
+77aa d8a04794 arg mem_sp_private_key ,contw 
+77ab 18000e0b force 11 ,queue 
+77ac 204077db call random_generator 
+77ad 180a7e00 random pdata 
+77ae 1fe37e00 rshift pdata ,pdata 
+77af e0a10000 istore 2 ,contw 
+77b0 d8a0065a arg mem_k ,contw 
+77b1 d8c04794 arg mem_sp_private_key ,contr 
+77b2 20407e33 call memcpy24 
+77b3 d8a00582 arg mem_ax ,contw 
+77b4 d8c0078a arg mem_gx ,contr 
+77b5 20407e2d call memcpy48 
+77b6 d8a005b2 arg mem_az ,contw 
+77b7 20407e3a call bn_zero 
+77b8 7005b201 jam 1 ,mem_az 
+77b9 20407b7f call eckp_calc_init 
+77ba 7007de01 jam sp_calc_pubkey ,mem_sp_calc 
+77bb 20600000 rtn 
+
+sp_pubkey_generated:
+77bc d8a047ac arg mem_sp_pubkey_local ,contw 
+77bd d8c005ca arg mem_bx ,contr 
+77be 20407e2d call memcpy48 
+77bf 70479301 jam sp_key_valid ,mem_sp_local_key_invalid 
+77c0 7007de00 jam sp_calc_standby ,mem_sp_calc 
+77c1 20600000 rtn 
+
+sp_dhkey_calc:
+77c2 79200025 set1 mark_ext_patch ,mark 
+77c3 44fa403e bpatch patch3e_4 ,mem_patch3e 
+77c4 680087e5 fetch 1 ,mem_sp_dhkey_invalid 
+77c5 c1800000 rtnne sp_key_invalid 
+77c6 680087de fetch 1 ,mem_sp_calc 
+77c7 c1800000 rtnne sp_calc_standby 
+77c8 d8a0065a arg mem_k ,contw 
+77c9 d8c04794 arg mem_sp_private_key ,contr 
+77ca 20407e33 call memcpy24 
+77cb d8a00582 arg mem_ax ,contw 
+77cc d8c007f0 arg mem_sp_pubkey_remote ,contr 
+77cd 20407e2d call memcpy48 
+77ce d8a005b2 arg mem_az ,contw 
+77cf 20407e3a call bn_zero 
+77d0 7005b201 jam 1 ,mem_az 
+77d1 20407b7f call eckp_calc_init 
+77d2 7007de02 jam sp_calc_dhkey ,mem_sp_calc 
+77d3 20600000 rtn 
+
+sp_dhkey_generated:
+77d4 7007df01 jam sp_flag_commit ,mem_sp_dh_ready 
+77d5 d8a00820 arg mem_sp_dhkey ,contw 
+77d6 d8c005ca arg mem_bx ,contr 
+77d7 20407e33 call memcpy24 
+77d8 7007e501 jam sp_key_valid ,mem_sp_dhkey_invalid 
+77d9 7007de00 jam sp_calc_standby ,mem_sp_calc 
+77da 20600000 rtn 
+
+random_generator:
+77db 18e08fff increase -1 ,queue 
+77dc 24610000 nrtn positive 
+77dd 180a7e00 random pdata 
+77de e0a10000 istore 2 ,contw 
+77df 202077db branch random_generator 
+
+compare4:
+77e0 18e08fff increase -1 ,queue 
+77e1 242177ec nbranch compare4_success ,positive 
+77e2 ea220000 ifetch 4 ,rega 
+77e3 1fe20400 copy pdata ,temp 
+77e4 ea420000 ifetch 4 ,regb 
+77e5 9842fe00 iflip temp ,pdata 
+77e6 2422f7ea nbranch compare4_failed ,zero 
+77e7 1a20a204 increase 4 ,rega 
+77e8 1a40a404 increase 4 ,regb 
+77e9 202077e0 branch compare4 
+
+compare4_failed:
+77ea 7840fc00 disable true 
+77eb 20600000 rtn 
+
+compare4_success:
+77ec 7820fc00 enable true 
+77ed 20600000 rtn 
+
+simple_pairing_sequence:
+77ee 79200025 set1 mark_ext_patch ,mark 
+77ef 44fac03e bpatch patch3e_5 ,mem_patch3e 
+77f0 680087dc fetch 1 ,mem_sp_flag 
+77f1 207a0000 rtn blank 
+77f2 7007dc00 jam sp_flag_standby ,mem_sp_flag 
+77f3 680087da fetch 1 ,mem_sp_state 
+77f4 c001e117 beq sp_stat_key_send ,sp_send_lmp_encapsulated_header 
+77f5 c002e134 beq sp_stat_commit_send ,sp_send_lmp_simple_pairing_comfirm 
+77f6 c003e13f beq sp_stat_random_send ,sp_send_lmp_simple_pairing_number 
+77f7 c005e155 beq sp_stat_confirm_send ,sp_send_lmp_dhkey_check 
+77f8 c0017725 beq sp_stat_key_generate ,sp_generate_local_key 
+77f9 c0027732 beq sp_stat_commit_calc ,sp_calculate_commitment 
+77fa c004f752 beq sp_stat_confirm_check ,sp_confirm_check 
+77fb c0057771 beq sp_stat_confirm_calc ,sp_confirm_calc 
+77fc c006778f beq sp_stat_link_key_calc ,sp_link_key_prarm_push 
+77fd 20600000 rtn 
+
+master_simple_paring_sequence:
+77fe 79200025 set1 mark_ext_patch ,mark 
+77ff 44fb403e bpatch patch3e_6 ,mem_patch3e 
+7800 680087dd fetch 1 ,mem_master_sp_flag 
+7801 207a0000 rtn blank 
+7802 7007dd00 jam sp_flag_standby ,mem_master_sp_flag 
+7803 680087db fetch 1 ,mem_master_sp_state 
+7804 c00960f7 beq sp_master_stat_start_skip ,sp_master_send_io_cap_get 
+7805 c009e0ff beq sp_master_stat_start_done ,sp_master_send_io_cap_send 
+7806 c001e103 beq sp_stat_key_send ,sp_master_send_lmp_encapsulated_header 
+7807 c002773d beq sp_stat_commit_calc ,master_sp_calculate_commitment 
+7808 c00a6107 beq sp_stat_commitment_compare ,sp_master_commitment_compare 
+7809 c003e115 beq sp_stat_random_send ,sp_master_send_lmp_simple_pairing_number 
+780a c0057771 beq sp_stat_confirm_calc ,sp_confirm_calc 
+780b c005e154 beq sp_stat_confirm_send ,master_sp_send_lmp_dhkey_check 
+780c c004f752 beq sp_stat_confirm_check ,sp_confirm_check 
+780d c00ae14e beq sp_state_end ,master_sp_sm_end 
+780e 20600000 rtn 
+
+master_set_mem_master_sp_flag:
+780f 7007dd01 jam sp_flag_commit ,mem_master_sp_flag 
+7810 20600000 rtn 
+
+master_clear_mem_master_sp_flag:
+7811 7007dd00 jam sp_flag_standby ,mem_master_sp_flag 
+7812 20600000 rtn 
+
+sp_calc_sequence:
+7813 79200025 set1 mark_ext_patch ,mark 
+7814 44fbc03e bpatch patch3e_7 ,mem_patch3e 
+7815 680087de fetch 1 ,mem_sp_calc 
+7816 207a0000 rtn blank 
+7817 1fe0fe80 increase 0x80 ,pdata 
+7818 600087de store 1 ,mem_sp_calc 
+7819 c3838000 rtnbit1 7 
+781a 68008581 fetch 1 ,mem_ec_loopc 
+781b 203a781d branch sp_calc_sequence_done ,blank 
+781c 20207b8a branch eckp_calc 
+
+sp_calc_sequence_done:
+781d 20407a0c call ecunmapz 
+781e 680087de fetch 1 ,mem_sp_calc 
+781f c000f7bc beq sp_calc_pubkey ,sp_pubkey_generated 
+7820 c00177d4 beq sp_calc_dhkey ,sp_dhkey_generated 
+7821 20600000 rtn 
+
+bn_testbit:
+7822 1fe10e07 and pdata ,7 ,queue 
+7823 1fe97e00 rshift3 pdata ,pdata 
+7824 98c08c00 iadd contr ,contr 
+7825 e8c08000 ifetch 1 ,contr 
+7826 afec0000 qisolate0 pdata 
+7827 20600000 rtn 
+
+ec_copy:
+7828 20407e33 call memcpy24 
+7829 20407e33 call memcpy24 
+782a 20207e33 branch memcpy24 
+
+bn_eq_zero:
+782b e8c40000 ifetch 8 ,contr 
+782c 247a0000 nrtn blank 
+782d e8c40000 ifetch 8 ,contr 
+782e 247a0000 nrtn blank 
+782f e8c40000 ifetch 8 ,contr 
+7830 20600000 rtn 
+
+bn_eq:
+7831 18007206 force 6 ,loopcnt 
+
+bn_eq_0:
+7832 ea220000 ifetch 4 ,rega 
+7833 98000400 iforce temp 
+7834 ea420000 ifetch 4 ,regb 
+7835 98467c00 isub temp ,null 
+7836 24628000 nrtn zero 
+7837 1a20a204 increase 4 ,rega 
+7838 1a40a404 increase 4 ,regb 
+7839 c2007832 loop bn_eq_0 
+783a 20600000 rtn 
+
+bn_bigeq:
+783b 18007206 force 6 ,loopcnt 
+783c 1a20a214 increase 20 ,rega 
+783d 1a40a414 increase 20 ,regb 
+
+bn_bigeq_0:
+783e ea420000 ifetch 4 ,regb 
+783f 98000400 iforce temp 
+7840 ea220000 ifetch 4 ,rega 
+7841 98467e00 isub temp ,pdata 
+7842 24610000 nrtn positive 
+7843 247a0000 nrtn blank 
+7844 1a20a3fc increase -4 ,rega 
+7845 1a40a5fc increase -4 ,regb 
+7846 c200783e loop bn_bigeq_0 
+7847 20600000 rtn 
+
+bn_add:
+7848 18007206 force 6 ,loopcnt 
+7849 18002600 force 0 ,regc 
+
+bn_add_0:
+784a ea220000 ifetch 4 ,rega 
+784b 98000400 iforce temp 
+784c ea420000 ifetch 4 ,regb 
+784d 9840fe00 iadd temp ,pdata 
+784e 9a60fe00 iadd regc ,pdata 
+784f e0a20000 istore 4 ,contw 
+7850 2feffe20 isolate1 32 ,pdata 
+7851 7920a600 setflag true ,0 ,regc 
+7852 1a20a204 increase 4 ,rega 
+7853 1a40a404 increase 4 ,regb 
+7854 c200784a loop bn_add_0 
+7855 20600000 rtn 
+
+bn_sub:
+7856 18007206 force 6 ,loopcnt 
+7857 18002600 force 0 ,regc 
+
+bn_sub_0:
+7858 ea420000 ifetch 4 ,regb 
+7859 98000400 iforce temp 
+785a ea220000 ifetch 4 ,rega 
+785b 98467e00 isub temp ,pdata 
+785c 9a667e00 isub regc ,pdata 
+785d e0a20000 istore 4 ,contw 
+785e 2feffe20 isolate1 32 ,pdata 
+785f 7920a600 setflag true ,0 ,regc 
+7860 1a20a204 increase 4 ,rega 
+7861 1a40a404 increase 4 ,regb 
+7862 c2007858 loop bn_sub_0 
+7863 20600000 rtn 
+
+bn_rshift6:
+7864 18007206 force 6 ,loopcnt 
+7865 1a20a214 increase 20 ,rega 
+
+bn_rshift:
+7866 18002600 force 0 ,regc 
+
+bn_rshift_0:
+7867 ea220000 ifetch 4 ,rega 
+7868 2feffe00 isolate1 0 ,pdata 
+7869 7920a601 setflag true ,1 ,regc 
+786a 1fe37e00 rshift pdata ,pdata 
+786b 2a6ffe00 isolate1 0 ,regc 
+786c 7920fe1f setflag true ,31 ,pdata 
+786d e2220000 istore 4 ,rega 
+786e 1a20a3fc increase -4 ,rega 
+786f 1a632600 rshift regc ,regc 
+7870 c2007867 loop bn_rshift_0 
+7871 20600000 rtn 
+
+bn_lshift:
+7872 18007206 force 6 ,loopcnt 
+7873 18002600 force 0 ,regc 
+
+bn_lshift_0:
+7874 ea220000 ifetch 4 ,rega 
+7875 2feffe1f isolate1 31 ,pdata 
+7876 7920a601 setflag true ,1 ,regc 
+7877 1fe3fe00 lshift pdata ,pdata 
+7878 2a6ffe00 isolate1 0 ,regc 
+7879 7920fe00 setflag true ,0 ,pdata 
+787a e2220000 istore 4 ,rega 
+787b 1a20a204 increase 4 ,rega 
+787c 1a632600 rshift regc ,regc 
+787d c2007874 loop bn_lshift_0 
+787e 20600000 rtn 
+
+bn_lshiftmod:
+787f 20407872 call bn_lshift 
+
+bn_lshiftmod_ismod:
+7880 2a6ffe00 isolate1 0 ,regc 
+7881 2020f888 branch bn_lshiftmod_0 ,true 
+7882 da400742 arg mem_p ,regb 
+7883 1a222600 copy rega ,regc 
+7884 1a20a3e8 increase -24 ,rega 
+7885 2040783b call bn_bigeq 
+7886 24610000 nrtn positive 
+7887 1a622200 copy regc ,rega 
+
+bn_lshiftmod_0:
+7888 1a20a3e8 increase -24 ,rega 
+7889 da400742 arg mem_p ,regb 
+788a 1a220a00 copy rega ,contw 
+788b 20207856 branch bn_sub 
+
+bn_addmod:
+788c 20407848 call bn_add 
+788d 18a22200 copy contw ,rega 
+788e 20207880 branch bn_lshiftmod_ismod 
+
+bn_submod:
+788f 20407856 call bn_sub 
+7890 2a6c0000 isolate0 0 ,regc 
+7891 20608000 rtn true 
+7892 da400742 arg mem_p ,regb 
+7893 18a0a3e8 add contw ,-24 ,rega 
+7894 1a220a00 copy rega ,contw 
+7895 20207848 branch bn_add 
+
+bn_p192mod:
+7896 18a21600 copy contw ,timeup 
+7897 1a226000 copy rega ,alarm 
+7898 da4006b2 arg mem_tmp2 ,regb 
+7899 1a420a00 copy regb ,contw 
+789a 1a208c18 add rega ,24 ,contr 
+789b e8c40000 ifetch 8 ,contr 
+789c e0a40000 istore 8 ,contw 
+789d e0a40000 istore 8 ,contw 
+789e 18007e00 force 0 ,pdata 
+789f e0a40000 istore 8 ,contw 
+78a0 19620a00 copy timeup ,contw 
+78a1 2040788c call bn_addmod 
+78a2 da4006b2 arg mem_tmp2 ,regb 
+78a3 1a420a00 copy regb ,contw 
+78a4 18007e00 force 0 ,pdata 
+78a5 e0a40000 istore 8 ,contw 
+78a6 1e008c20 add alarm ,32 ,contr 
+78a7 e8c40000 ifetch 8 ,contr 
+78a8 e0a40000 istore 8 ,contw 
+78a9 e0a40000 istore 8 ,contw 
+78aa 19622200 copy timeup ,rega 
+78ab 1a220a00 copy rega ,contw 
+78ac 2040788c call bn_addmod 
+78ad da4006b2 arg mem_tmp2 ,regb 
+78ae 1a420a00 copy regb ,contw 
+78af 1e008c28 add alarm ,40 ,contr 
+78b0 e8c40000 ifetch 8 ,contr 
+78b1 e0a40000 istore 8 ,contw 
+78b2 e0a40000 istore 8 ,contw 
+78b3 e0a40000 istore 8 ,contw 
+78b4 19622200 copy timeup ,rega 
+78b5 1a220a00 copy rega ,contw 
+78b6 2020788c branch bn_addmod 
+
+bn_load:
+78b7 18007206 force 6 ,loopcnt 
+
+bn_load_0:
+78b8 e8c20000 ifetch 4 ,contr 
+78b9 98005e00 iforce regext 
+78ba 1f00f001 increase 1 ,regext_index 
+78bb c20078b8 loop bn_load_0 
+78bc 20600000 rtn 
+
+bn_mulmod:
+78bd 18a21600 copy contw ,timeup 
+78be d8a00682 arg mem_tmp1 ,contw 
+78bf 20407e3a call bn_zero 
+78c0 d8a00682 arg mem_tmp1 ,contw 
+78c1 1a220c00 copy rega ,contr 
+78c2 18007000 force 0 ,regext_index 
+78c3 204078b7 call bn_load 
+78c4 1a420c00 copy regb ,contr 
+78c5 204078b7 call bn_load 
+78c6 18002400 force 0 ,regb 
+
+bn_mulmod_1:
+78c7 18000400 force 0 ,temp 
+78c8 18002606 force 6 ,regc 
+
+bn_mulmod_0:
+78c9 e8a20000 ifetch 4 ,contw 
+78ca 98002200 iforce rega 
+78cb 1a427000 copy regb ,regext_index 
+78cc 1de27e00 deposit regext 
+78cd 1a627000 copy regc ,regext_index 
+78ce 9deffe00 imul32 regext ,pdata 
+78cf 9a20fe00 iadd rega ,pdata 
+78d0 9840fe00 iadd temp ,pdata 
+78d1 e0a20000 istore 4 ,contw 
+78d2 1fef0400 rshift32 pdata ,temp 
+78d3 1a60a601 increase 1 ,regc 
+78d4 2a61fe0c compare 12 ,regc ,0xff 
+78d5 2420f8c9 nbranch bn_mulmod_0 ,true 
+78d6 18427e00 deposit temp 
+78d7 e0a20000 istore 4 ,contw 
+78d8 18a08be8 increase -24 ,contw 
+78d9 1a40a401 increase 1 ,regb 
+78da 2a41fe06 compare 6 ,regb ,0xff 
+78db 2420f8c7 nbranch bn_mulmod_1 ,true 
+78dc da200682 arg mem_tmp1 ,rega 
+78dd 19620a00 copy timeup ,contw 
+78de 20207896 branch bn_p192mod 
+
+bn_sqrmod:
+78df 1a222400 copy rega ,regb 
+78e0 202078bd branch bn_mulmod 
+
+bn_rshifteven:
+78e1 1a226000 copy rega ,alarm 
+
+bn_rshifteven_1:
+78e2 1e022200 copy alarm ,rega 
+78e3 ea208000 ifetch 1 ,rega 
+78e4 2feffe00 isolate1 0 ,pdata 
+78e5 20608000 rtn true 
+78e6 20407864 call bn_rshift6 
+78e7 ea408000 ifetch 1 ,regb 
+78e8 2fec0000 isolate0 0 ,pdata 
+78e9 2020f8f1 branch bn_rshifteven_0 ,true 
+78ea da200742 arg mem_p ,rega 
+78eb 1a420a00 copy regb ,contw 
+78ec 20407848 call bn_add 
+78ed ea408000 ifetch 1 ,regb 
+78ee 9a60fe00 iadd regc ,pdata 
+78ef e2408000 istore 1 ,regb 
+78f0 1a40a5e8 increase -24 ,regb 
+
+bn_rshifteven_0:
+78f1 1a40a218 add regb ,24 ,rega 
+78f2 18007207 force 7 ,loopcnt 
+78f3 20407866 call bn_rshift 
+78f4 202078e2 branch bn_rshifteven_1 
+
+bn_invmod:
+78f5 18a21600 copy contw ,timeup 
+78f6 d8a006e2 arg mem_tmp0 ,contw 
+78f7 20407e3a call bn_zero 
+78f8 18007e00 force 0 ,pdata 
+78f9 6002069a store 4 ,mem_tmp5 
+78fa 600206fa store 4 ,mem_t2 
+78fb 7006e201 jam 1 ,mem_tmp0 
+78fc d8a00682 arg mem_tmp1 ,contw 
+78fd 20407e3a call bn_zero 
+78fe d8c00742 arg mem_p ,contr 
+78ff d8a006b2 arg mem_tmp2 ,contw 
+7900 20407e33 call memcpy24 
+7901 1a220c00 copy rega ,contr 
+7902 d8a006ca arg mem_tmp3 ,contw 
+7903 20407e33 call memcpy24 
+
+bn_invmod_2:
+7904 d8c006ca arg mem_tmp3 ,contr 
+7905 2040782b call bn_eq_zero 
+7906 203a792d branch bn_invmod_0 ,blank 
+7907 da2006ca arg mem_tmp3 ,rega 
+7908 da4006e2 arg mem_tmp0 ,regb 
+7909 204078e1 call bn_rshifteven 
+790a da2006b2 arg mem_tmp2 ,rega 
+790b da400682 arg mem_tmp1 ,regb 
+790c 204078e1 call bn_rshifteven 
+790d da2006ca arg mem_tmp3 ,rega 
+790e da4006b2 arg mem_tmp2 ,regb 
+790f 2040783b call bn_bigeq 
+7910 2021791f branch bn_invmod_1 ,positive 
+7911 da2006b2 arg mem_tmp2 ,rega 
+7912 da4006ca arg mem_tmp3 ,regb 
+7913 1a220a00 copy rega ,contw 
+7914 20407856 call bn_sub 
+7915 da2006e2 arg mem_tmp0 ,rega 
+7916 da400682 arg mem_tmp1 ,regb 
+7917 1a420a00 copy regb ,contw 
+7918 20407848 call bn_add 
+7919 ea208000 ifetch 1 ,rega 
+791a 9a60a600 iadd regc ,regc 
+791b ea408000 ifetch 1 ,regb 
+791c 9a60fe00 iadd regc ,pdata 
+791d e2408000 istore 1 ,regb 
+791e 20207904 branch bn_invmod_2 
+
+bn_invmod_1:
+791f da2006ca arg mem_tmp3 ,rega 
+7920 da4006b2 arg mem_tmp2 ,regb 
+7921 1a220a00 copy rega ,contw 
+7922 20407856 call bn_sub 
+7923 da200682 arg mem_tmp1 ,rega 
+7924 da4006e2 arg mem_tmp0 ,regb 
+7925 1a420a00 copy regb ,contw 
+7926 20407848 call bn_add 
+7927 ea208000 ifetch 1 ,rega 
+7928 9a60a600 iadd regc ,regc 
+7929 ea408000 ifetch 1 ,regb 
+792a 9a60fe00 iadd regc ,pdata 
+792b e2408000 istore 1 ,regb 
+792c 20207904 branch bn_invmod_2 
+
+bn_invmod_0:
+792d d8a006e2 arg mem_tmp0 ,contw 
+792e 20407e3a call bn_zero 
+792f 6800869a fetch 1 ,mem_tmp5 
+7930 600086e2 store 1 ,mem_tmp0 
+7931 600086ea store 1 ,mem_tmp0a 
+7932 da2006e2 arg mem_tmp0 ,rega 
+7933 da400682 arg mem_tmp1 ,regb 
+7934 1a420a00 copy regb ,contw 
+7935 2040788c call bn_addmod 
+7936 da200742 arg mem_p ,rega 
+7937 da400682 arg mem_tmp1 ,regb 
+7938 19620a00 copy timeup ,contw 
+7939 2020788f branch bn_submod 
+
+ecdbl:
+793a da200642 arg mem_cz ,rega 
+793b d8a006fa arg mem_t2 ,contw 
+793c 204078df call bn_sqrmod 
+793d da2006fa arg mem_t2 ,rega 
+793e d8a00712 arg mem_t3 ,contw 
+793f 204078df call bn_sqrmod 
+7940 da20075a arg mem_a ,rega 
+7941 da400712 arg mem_t3 ,regb 
+7942 d8a00712 arg mem_t3 ,contw 
+7943 204078bd call bn_mulmod 
+7944 da200612 arg mem_cx ,rega 
+7945 d8a006fa arg mem_t2 ,contw 
+7946 204078df call bn_sqrmod 
+7947 d8c006fa arg mem_t2 ,contr 
+7948 d8a006ca arg mem_t1 ,contw 
+7949 20407e33 call memcpy24 
+794a da2006ca arg mem_t1 ,rega 
+794b 2040787f call bn_lshiftmod 
+794c da2006fa arg mem_t2 ,rega 
+794d da4006ca arg mem_t1 ,regb 
+794e d8a006fa arg mem_t2 ,contw 
+794f 2040788c call bn_addmod 
+7950 da2006fa arg mem_t2 ,rega 
+7951 da400712 arg mem_t3 ,regb 
+7952 d8a006fa arg mem_t2 ,contw 
+7953 2040788c call bn_addmod 
+7954 d8c00612 arg mem_cx ,contr 
+7955 d8a006ca arg mem_t1 ,contw 
+7956 20407e33 call memcpy24 
+7957 da20062a arg mem_cy ,rega 
+7958 d8a00712 arg mem_t3 ,contw 
+7959 204078df call bn_sqrmod 
+795a da2006ca arg mem_t1 ,rega 
+795b 2040787f call bn_lshiftmod 
+795c da2006ca arg mem_t1 ,rega 
+795d 2040787f call bn_lshiftmod 
+795e da2006ca arg mem_t1 ,rega 
+795f da400712 arg mem_t3 ,regb 
+7960 d8a006ca arg mem_t1 ,contw 
+7961 204078bd call bn_mulmod 
+7962 da200712 arg mem_t3 ,rega 
+7963 d8a006e2 arg mem_t0 ,contw 
+7964 204078df call bn_sqrmod 
+7965 da2006e2 arg mem_t0 ,rega 
+7966 2040787f call bn_lshiftmod 
+7967 da2006e2 arg mem_t0 ,rega 
+7968 2040787f call bn_lshiftmod 
+7969 da2006e2 arg mem_t0 ,rega 
+796a 2040787f call bn_lshiftmod 
+796b d8c0062a arg mem_cy ,contr 
+796c d8a00712 arg mem_t3 ,contw 
+796d 20407e33 call memcpy24 
+796e da200712 arg mem_t3 ,rega 
+796f 2040787f call bn_lshiftmod 
+7970 da200712 arg mem_t3 ,rega 
+7971 da400642 arg mem_cz ,regb 
+7972 d8a00642 arg mem_cz ,contw 
+7973 204078bd call bn_mulmod 
+7974 da2006fa arg mem_t2 ,rega 
+7975 d8a00712 arg mem_t3 ,contw 
+7976 204078df call bn_sqrmod 
+7977 da200712 arg mem_t3 ,rega 
+7978 da4006ca arg mem_t1 ,regb 
+7979 d8a00712 arg mem_t3 ,contw 
+797a 2040788f call bn_submod 
+797b da200712 arg mem_t3 ,rega 
+797c da4006ca arg mem_t1 ,regb 
+797d d8a00612 arg mem_cx ,contw 
+797e 2040788f call bn_submod 
+797f da2006ca arg mem_t1 ,rega 
+7980 da400612 arg mem_cx ,regb 
+7981 d8a00712 arg mem_t3 ,contw 
+7982 2040788f call bn_submod 
+7983 da200712 arg mem_t3 ,rega 
+7984 da4006fa arg mem_t2 ,regb 
+7985 d8a00712 arg mem_t3 ,contw 
+7986 204078bd call bn_mulmod 
+7987 da200712 arg mem_t3 ,rega 
+7988 da4006e2 arg mem_t0 ,regb 
+7989 d8a0062a arg mem_cy ,contw 
+798a 2020788f branch bn_submod 
+
+ecadd:
+798b da2005b2 arg mem_az ,rega 
+798c d8a0072a arg mem_t7 ,contw 
+798d 204078df call bn_sqrmod 
+798e da200612 arg mem_cx ,rega 
+798f da40072a arg mem_t7 ,regb 
+7990 d8a006e2 arg mem_t0 ,contw 
+7991 204078bd call bn_mulmod 
+7992 da2005b2 arg mem_az ,rega 
+7993 da40072a arg mem_t7 ,regb 
+7994 d8a0072a arg mem_t7 ,contw 
+7995 204078bd call bn_mulmod 
+7996 da20062a arg mem_cy ,rega 
+7997 da40072a arg mem_t7 ,regb 
+7998 d8a006ca arg mem_t1 ,contw 
+7999 204078bd call bn_mulmod 
+799a da200642 arg mem_cz ,rega 
+799b d8a0072a arg mem_t7 ,contw 
+799c 204078df call bn_sqrmod 
+799d da200582 arg mem_ax ,rega 
+799e da40072a arg mem_t7 ,regb 
+799f d8a006fa arg mem_t2 ,contw 
+79a0 204078bd call bn_mulmod 
+79a1 da200642 arg mem_cz ,rega 
+79a2 da40072a arg mem_t7 ,regb 
+79a3 d8a0072a arg mem_t7 ,contw 
+79a4 204078bd call bn_mulmod 
+79a5 da20059a arg mem_ay ,rega 
+79a6 da40072a arg mem_t7 ,regb 
+79a7 d8a00712 arg mem_t3 ,contw 
+79a8 204078bd call bn_mulmod 
+79a9 da2006e2 arg mem_t0 ,rega 
+79aa da4006fa arg mem_t2 ,regb 
+79ab d8a0072a arg mem_t7 ,contw 
+79ac 2040788f call bn_submod 
+79ad da2006e2 arg mem_t0 ,rega 
+79ae da4006fa arg mem_t2 ,regb 
+79af d8a006e2 arg mem_t0 ,contw 
+79b0 2040788c call bn_addmod 
+79b1 da2006ca arg mem_t1 ,rega 
+79b2 da400712 arg mem_t3 ,regb 
+79b3 d8a006fa arg mem_t2 ,contw 
+79b4 2040788f call bn_submod 
+79b5 da2006ca arg mem_t1 ,rega 
+79b6 da400712 arg mem_t3 ,regb 
+79b7 d8a006ca arg mem_t1 ,contw 
+79b8 2040788c call bn_addmod 
+79b9 da2006ca arg mem_t1 ,rega 
+79ba da40072a arg mem_t7 ,regb 
+79bb d8a006ca arg mem_t1 ,contw 
+79bc 204078bd call bn_mulmod 
+79bd da200642 arg mem_cz ,rega 
+79be da4005b2 arg mem_az ,regb 
+79bf d8a00712 arg mem_t3 ,contw 
+79c0 204078bd call bn_mulmod 
+79c1 da200712 arg mem_t3 ,rega 
+79c2 da40072a arg mem_t7 ,regb 
+79c3 d8a00642 arg mem_cz ,contw 
+79c4 204078bd call bn_mulmod 
+79c5 da20072a arg mem_t7 ,rega 
+79c6 d8a0072a arg mem_t7 ,contw 
+79c7 204078df call bn_sqrmod 
+79c8 da20072a arg mem_t7 ,rega 
+79c9 da4006e2 arg mem_t0 ,regb 
+79ca d8a00712 arg mem_t3 ,contw 
+79cb 204078bd call bn_mulmod 
+79cc da20072a arg mem_t7 ,rega 
+79cd da4006ca arg mem_t1 ,regb 
+79ce d8a006ca arg mem_t1 ,contw 
+79cf 204078bd call bn_mulmod 
+79d0 da2006fa arg mem_t2 ,rega 
+79d1 d8a00612 arg mem_cx ,contw 
+79d2 204078df call bn_sqrmod 
+79d3 da200612 arg mem_cx ,rega 
+79d4 da400712 arg mem_t3 ,regb 
+79d5 d8a00612 arg mem_cx ,contw 
+79d6 2040788f call bn_submod 
+79d7 d8c00612 arg mem_cx ,contr 
+79d8 d8a0072a arg mem_t7 ,contw 
+79d9 20407e33 call memcpy24 
+79da da20072a arg mem_t7 ,rega 
+79db 2040787f call bn_lshiftmod 
+79dc da200712 arg mem_t3 ,rega 
+79dd da40072a arg mem_t7 ,regb 
+79de d8a00712 arg mem_t3 ,contw 
+79df 2040788f call bn_submod 
+79e0 da200712 arg mem_t3 ,rega 
+79e1 da4006fa arg mem_t2 ,regb 
+79e2 d8a006fa arg mem_t2 ,contw 
+79e3 204078bd call bn_mulmod 
+79e4 da2006fa arg mem_t2 ,rega 
+79e5 da4006ca arg mem_t1 ,regb 
+79e6 d8a0062a arg mem_cy ,contw 
+79e7 2040788f call bn_submod 
+79e8 da20062a arg mem_cy ,rega 
+79e9 da400742 arg mem_p ,regb 
+79ea d8a0062a arg mem_cy ,contw 
+79eb 18002600 force 0 ,regc 
+79ec 6800862a fetch 1 ,mem_cy 
+79ed 2feffe00 isolate1 0 ,pdata 
+79ee 2040f848 call bn_add ,true 
+79ef 1a626000 copy regc ,alarm 
+79f0 da20062a arg mem_cy ,rega 
+79f1 20407864 call bn_rshift6 
+79f2 68008641 fetch 1 ,mem_cy5 
+79f3 2e0ffe00 isolate1 0 ,alarm 
+79f4 7920fe07 setflag true ,7 ,pdata 
+79f5 60008641 store 1 ,mem_cy5 
+79f6 20600000 rtn 
+
+eckp:
+79f7 700581c0 jam 192 ,mem_ec_loopc 
+79f8 70058001 jam 1 ,mem_ec_infinite 
+
+eckp_0:
+79f9 68008581 fetch 1 ,mem_ec_loopc 
+79fa 1fe0ffff increase -1 ,pdata 
+79fb 24610000 nrtn positive 
+79fc 60008581 store 1 ,mem_ec_loopc 
+79fd 68008580 fetch 1 ,mem_ec_infinite 
+79fe 205a793a call ecdbl ,blank 
+79ff 68008581 fetch 1 ,mem_ec_loopc 
+7a00 d8c0065a arg mem_k ,contr 
+7a01 20407822 call bn_testbit 
+7a02 2020f9f9 branch eckp_0 ,true 
+7a03 68008580 fetch 1 ,mem_ec_infinite 
+7a04 243a7a07 nbranch eckp_1 ,blank 
+7a05 2040798b call ecadd 
+7a06 202079f9 branch eckp_0 
+
+eckp_1:
+7a07 70058000 jam 0 ,mem_ec_infinite 
+7a08 d8c00582 arg mem_ax ,contr 
+7a09 d8a00612 arg mem_cx ,contw 
+7a0a 20407828 call ec_copy 
+7a0b 202079f9 branch eckp_0 
+
+ecunmapz:
+7a0c da200642 arg mem_cz ,rega 
+7a0d d8a00712 arg mem_t3 ,contw 
+7a0e 204078f5 call bn_invmod 
+7a0f da200712 arg mem_t3 ,rega 
+7a10 d8a006ca arg mem_t1 ,contw 
+7a11 204078df call bn_sqrmod 
+7a12 da200612 arg mem_cx ,rega 
+7a13 da4006ca arg mem_t1 ,regb 
+7a14 d8a005ca arg mem_bx ,contw 
+7a15 204078bd call bn_mulmod 
+7a16 da200712 arg mem_t3 ,rega 
+7a17 da4006ca arg mem_t1 ,regb 
+7a18 d8a006fa arg mem_t2 ,contw 
+7a19 204078bd call bn_mulmod 
+7a1a da20062a arg mem_cy ,rega 
+7a1b da4006fa arg mem_t2 ,regb 
+7a1c d8a005e2 arg mem_by ,contw 
+7a1d 202078bd branch bn_mulmod 
+
+sha_endian_swap:
+7a1e 18007210 force 16 ,loopcnt 
+
+sha_endian_swap2:
+7a1f e8c20000 ifetch 4 ,contr 
+7a20 18002204 force 4 ,rega 
+7a21 18a08a03 increase 3 ,contw 
+
+sha_endian_loop:
+7a22 e0a08000 istore 1 ,contw 
+7a23 1fecfe00 rshift8 pdata ,pdata 
+7a24 18a08bfe increase -2 ,contw 
+7a25 1a20a3ff increase -1 ,rega 
+7a26 2422fa22 nbranch sha_endian_loop ,zero 
+7a27 18a08a05 increase 5 ,contw 
+7a28 c2007a1f loop sha_endian_swap2 
+7a29 20600000 rtn 
+
+sha_getw:
+7a2a 18ebfe00 lshift2 queue ,pdata 
+7a2b 99608c00 iadd timeup ,contr 
+7a2c e8c20000 ifetch 4 ,contr 
+7a2d 20600000 rtn 
+
+sha_r:
+7a2e 18006010 force 16 ,alarm 
+7a2f d9600582 arg memdat ,timeup 
+
+sha_r_loop:
+7a30 1e008ff9 add alarm ,-7 ,queue 
+7a31 20407a2a call sha_getw 
+7a32 98000400 iforce temp 
+7a33 1e008ff0 add alarm ,-16 ,queue 
+7a34 20407a2a call sha_getw 
+7a35 98408400 iadd temp ,temp 
+7a36 1e008ffe add alarm ,-2 ,queue 
+7a37 20407a2a call sha_getw 
+7a38 1fee7e01 shasx pdata ,1 ,pdata 
+7a39 98408400 iadd temp ,temp 
+7a3a 1e008ff1 add alarm ,-15 ,queue 
+7a3b 20407a2a call sha_getw 
+7a3c 1fee7e00 shasx pdata ,0 ,pdata 
+7a3d 98408400 iadd temp ,temp 
+7a3e 1e0bfe00 lshift2 alarm ,pdata 
+7a3f 99608a00 iadd timeup ,contw 
+7a40 e0aa0000 istoret 4 ,contw 
+7a41 1e00e001 increase 1 ,alarm 
+7a42 2e01fe40 compare 64 ,alarm ,0xff 
+7a43 2420fa30 nbranch sha_r_loop ,true 
+7a44 20600000 rtn 
+
+sha_init:
+7a45 d8c007ba arg memh0 ,contr 
+7a46 18007007 force 7 ,regext_index 
+
+sha_init_0:
+7a47 e8c20000 ifetch 4 ,contr 
+7a48 98005e00 iforce regext 
+7a49 1f00f1ff increase -1 ,regext_index 
+7a4a 20217a47 branch sha_init_0 ,positive 
+7a4b 20600000 rtn 
+
+sha:
+7a4c 79200025 set1 mark_ext_patch ,mark 
+7a4d 44fc403f bpatch patch3f_0 ,mem_patch3f 
+7a4e 20407a2e call sha_r 
+7a4f d8a00682 arg memahbak ,contw 
+7a50 18007000 force 0 ,regext_index 
+
+sha_0:
+7a51 1de27e00 deposit regext 
+7a52 e0a20000 istore 4 ,contw 
+7a53 1f00f001 increase 1 ,regext_index 
+7a54 2f01fe08 compare 8 ,regext_index ,0xff 
+7a55 2420fa51 nbranch sha_0 ,true 
+7a56 204075c5 call enable_authrom 
+7a57 d9608700 arg memk ,timeup 
+7a58 de000582 arg memdat ,alarm 
+7a59 18007240 force 64 ,loopcnt 
+
+sha_loop:
+7a5a ee0a0000 ifetcht 4 ,alarm 
+7a5b e9620000 ifetch 4 ,timeup 
+7a5c 19609604 increase 4 ,timeup 
+7a5d 1e00e004 increase 4 ,alarm 
+7a5e 9840fe00 iadd temp ,pdata 
+7a5f 18007007 force 7 ,regext_index 
+7a60 9de08400 iadd regext ,temp 
+7a61 18007004 force 4 ,regext_index 
+7a62 1dee7e03 shasx regext ,3 ,pdata 
+7a63 98408400 iadd temp ,temp 
+7a64 18007005 force 5 ,regext_index 
+7a65 1de27e00 deposit regext 
+7a66 18007006 force 6 ,regext_index 
+7a67 9de2fe00 ixor regext ,pdata 
+7a68 18007004 force 4 ,regext_index 
+7a69 9de17e00 iand regext ,pdata 
+7a6a 18007006 force 6 ,regext_index 
+7a6b 9de2fe00 ixor regext ,pdata 
+7a6c 98408400 iadd temp ,temp 
+7a6d 18007007 force 7 ,regext_index 
+7a6e 18425e00 copy temp ,regext 
+7a6f 18007003 force 3 ,regext_index 
+7a70 1de27e00 deposit regext 
+7a71 9840de00 iadd temp ,regext 
+7a72 18007000 force 0 ,regext_index 
+7a73 1de27e00 deposit regext 
+7a74 18007001 force 1 ,regext_index 
+7a75 9de10400 iand regext ,temp 
+7a76 9de1fe00 ior regext ,pdata 
+7a77 18007002 force 2 ,regext_index 
+7a78 9de17e00 iand regext ,pdata 
+7a79 98418400 ior temp ,temp 
+7a7a 18007000 force 0 ,regext_index 
+7a7b 1dee7e02 shasx regext ,2 ,pdata 
+7a7c 9840fe00 iadd temp ,pdata 
+7a7d 18007007 force 7 ,regext_index 
+7a7e 9de0de00 iadd regext ,regext 
+7a7f 980efc00 regexrot 
+7a80 c2007a5a loop sha_loop 
+7a81 d8c00682 arg memahbak ,contr 
+7a82 18007000 force 0 ,regext_index 
+
+sha_1:
+7a83 e8c20000 ifetch 4 ,contr 
+7a84 9de0de00 iadd regext ,regext 
+7a85 1f00f001 increase 1 ,regext_index 
+7a86 2f01fe08 compare 8 ,regext_index ,0xff 
+7a87 2420fa83 nbranch sha_1 ,true 
+7a88 202075c9 branch disable_authrom 
+
+sha_result:
+7a89 d8a00858 arg memresult ,contw 
+7a8a 18007007 force 7 ,regext_index 
+
+sha_regext_save:
+7a8b 1de27e00 deposit regext 
+7a8c e0a20000 istore 4 ,contw 
+7a8d 1f00f1ff increase -1 ,regext_index 
+7a8e 20217a8b branch sha_regext_save ,positive 
+7a8f 20600000 rtn 
+
+pad_xor:
+7a90 d8a00582 arg memdat ,contw 
+7a91 18c08dfc increase -4 ,contr 
+7a92 1f262210 sub loopcnt ,16 ,rega 
+
+pad_xor_0:
+7a93 e8c20000 ifetch 4 ,contr 
+7a94 9842fe00 ixor temp ,pdata 
+7a95 e0a20000 istore 4 ,contw 
+7a96 18c08df8 increase -8 ,contr 
+7a97 c2007a93 loop pad_xor_0 
+7a98 1a227200 copy rega ,loopcnt 
+7a99 18427e00 deposit temp 
+
+pad_xor_1:
+7a9a e0a20000 istore 4 ,contw 
+7a9b c2007a9a loop pad_xor_1 
+7a9c 20600000 rtn 
+
+g_noninit:
+7a9d d8c00808 arg mem_sp_pubkey_remote_x_end ,contr 
+7a9e d8a00582 arg memdat ,contw 
+7a9f 18007206 force 6 ,loopcnt 
+7aa0 20407b97 call memcpy_dword_swap 
+7aa1 d8c047c4 arg mem_sp_pubkey_local_x_end ,contr 
+7aa2 18007206 force 6 ,loopcnt 
+7aa3 20407b97 call memcpy_dword_swap 
+7aa4 d8c00858 arg mem_sp_random_remote_end ,contr 
+7aa5 20407b96 call memcpy_dword_swap4 
+7aa6 20407a45 call sha_init 
+7aa7 20407a4c call sha 
+7aa8 d8c00848 arg mem_sp_random_local_end ,contr 
+7aa9 d8a00582 arg memdat ,contw 
+7aaa 20207ab8 branch g_common 
+
+g_init:
+7aab d8c047c4 arg mem_sp_pubkey_local_x_end ,contr 
+7aac d8a00582 arg memdat ,contw 
+7aad 18007206 force 6 ,loopcnt 
+7aae 20407b97 call memcpy_dword_swap 
+7aaf d8c00808 arg mem_sp_pubkey_remote_x_end ,contr 
+7ab0 18007206 force 6 ,loopcnt 
+7ab1 20407b97 call memcpy_dword_swap 
+7ab2 d8c00848 arg mem_sp_random_local_end ,contr 
+7ab3 20407b96 call memcpy_dword_swap4 
+7ab4 20407a45 call sha_init 
+7ab5 20407a4c call sha 
+7ab6 d8c00858 arg mem_sp_random_remote_end ,contr 
+7ab7 d8a00582 arg memdat ,contw 
+
+g_common:
+7ab8 20407b96 call memcpy_dword_swap4 
+7ab9 58800000 setarg 0x800000 
+7aba 1fed7e00 lshift8 pdata ,pdata 
+7abb e0a20000 istore 4 ,contw 
+7abc 18007205 force 5 ,loopcnt 
+7abd 20407e3b call memset0 
+7abe 58000280 setarg 640 
+7abf e0a20000 istore 4 ,contw 
+7ac0 20407a4c call sha 
+7ac1 68020858 fetch 4 ,memresult 
+7ac2 da2003e8 arg 1000 ,rega 
+7ac3 9a26fc00 idiv rega 
+7ac4 20407efd call wait_div_end 
+7ac5 18077e00 remainder pdata 
+7ac6 600207ec store 4 ,mem_sp_gkey 
+7ac7 1807fe00 quotient pdata 
+7ac8 da2003e8 arg 1000 ,rega 
+7ac9 9a26fc00 idiv rega 
+7aca 20407efd call wait_div_end 
+7acb 18077e00 remainder pdata 
+7acc da2003e8 arg 1000 ,rega 
+7acd 9a2ffe00 imul32 rega ,pdata 
+7ace 680a07ec fetcht 4 ,mem_sp_gkey 
+7acf 9840fe00 iadd temp ,pdata 
+7ad0 600207ec store 4 ,mem_sp_gkey 
+7ad1 20600000 rtn 
+
+function_f1:
+7ad2 58363636 setarg 0x363636 
+7ad3 1fed0400 lshift8 pdata ,temp 
+7ad4 18418436 or_into 0x36 ,temp 
+7ad5 68010898 fetch 2 ,mem_sp_prarm_stack 
+7ad6 1fe20c00 copy pdata ,contr 
+7ad7 18007204 force 4 ,loopcnt 
+7ad8 20407a90 call pad_xor 
+7ad9 20407a45 call sha_init 
+7ada 20407a4c call sha 
+7adb 6801089a fetch 2 ,mem_sp_prarm_stack + 2 
+7adc 1fe20c00 copy pdata ,contr 
+7add d8a00582 arg memdat ,contw 
+7ade 18007206 force 6 ,loopcnt 
+7adf 20407b97 call memcpy_dword_swap 
+7ae0 6801089c fetch 2 ,mem_sp_prarm_stack + 4 
+7ae1 1fe20c00 copy pdata ,contr 
+7ae2 18007206 force 6 ,loopcnt 
+7ae3 20407b97 call memcpy_dword_swap 
+7ae4 58800000 setarg 0x800000 
+7ae5 e0a18000 istore 3 ,contw 
+7ae6 18007e00 force 0 ,pdata 
+7ae7 e0a08000 istore 1 ,contw 
+7ae8 18007e00 force 0 ,pdata 
+7ae9 e0a40000 istore 8 ,contw 
+7aea 58000388 setarg 0x0388 
+7aeb e0a20000 istore 4 ,contw 
+7aec 20407a4c call sha 
+7aed 20407a89 call sha_result 
+7aee d8c00858 arg memresult ,contr 
+7aef d8a006a2 arg memahsave ,contw 
+7af0 20407e31 call memcpy32 
+7af1 585c5c5c setarg 0x5c5c5c 
+7af2 1fed0400 lshift8 pdata ,temp 
+7af3 1841845c or_into 0x5c ,temp 
+7af4 68010898 fetch 2 ,mem_sp_prarm_stack 
+7af5 1fe20c00 copy pdata ,contr 
+7af6 18007204 force 4 ,loopcnt 
+7af7 20407a90 call pad_xor 
+7af8 20407a45 call sha_init 
+7af9 20407a4c call sha 
+7afa d8c006c2 arg memahsave_end ,contr 
+7afb d8a00582 arg memdat ,contw 
+7afc 18007208 force 8 ,loopcnt 
+7afd 20407b97 call memcpy_dword_swap 
+7afe 58800000 setarg 0x800000 
+7aff 1fed7e00 lshift8 pdata ,pdata 
+7b00 e0a20000 istore 4 ,contw 
+7b01 20407e3a call bn_zero 
+7b02 58000300 setarg 0x0300 
+7b03 e0a20000 istore 4 ,contw 
+7b04 20407a4c call sha 
+7b05 20207a89 branch sha_result 
+
+function_f2:
+7b06 58363636 setarg 0x363636 
+7b07 1fed0400 lshift8 pdata ,temp 
+7b08 18418436 or_into 0x36 ,temp 
+7b09 d8c00838 arg mem_sp_dhkey_end ,contr 
+7b0a 18007206 force 6 ,loopcnt 
+7b0b 20407a90 call pad_xor 
+7b0c 20407a45 call sha_init 
+7b0d 20407a4c call sha 
+7b0e 680108a4 fetch 2 ,mem_sp_prarm_stack + 12 
+7b0f 1fe20c00 copy pdata ,contr 
+7b10 d8a00582 arg memdat ,contw 
+7b11 20407b96 call memcpy_dword_swap4 
+7b12 680108a6 fetch 2 ,mem_sp_prarm_stack + 14 
+7b13 1fe20c00 copy pdata ,contr 
+7b14 20407b96 call memcpy_dword_swap4 
+7b15 5862746c setarg 0x62746c 
+7b16 1fed7e00 lshift8 pdata ,pdata 
+7b17 1fe1fe6b or_into 0x6b ,pdata 
+7b18 e0a20000 istore 4 ,contw 
+7b19 d8c006cf arg mem_addr_value_end ,contr 
+7b1a 18007203 force 3 ,loopcnt 
+7b1b 20407b97 call memcpy_dword_swap 
+7b1c 58800000 setarg 0x800000 
+7b1d 1fed7e00 lshift8 pdata ,pdata 
+7b1e e0a20000 istore 4 ,contw 
+7b1f 18007e00 force 0 ,pdata 
+7b20 e0a40000 istore 8 ,contw 
+7b21 58000380 setarg 0x0380 
+7b22 e0a20000 istore 4 ,contw 
+7b23 20407a4c call sha 
+7b24 20407a89 call sha_result 
+7b25 d8c00858 arg memresult ,contr 
+7b26 d8a006a2 arg memahsave ,contw 
+7b27 20407e31 call memcpy32 
+7b28 585c5c5c setarg 0x5c5c5c 
+7b29 1fed0400 lshift8 pdata ,temp 
+7b2a 1841845c or_into 0x5c ,temp 
+7b2b d8c00838 arg mem_sp_dhkey_end ,contr 
+7b2c 18007206 force 6 ,loopcnt 
+7b2d 20407a90 call pad_xor 
+7b2e 20407a45 call sha_init 
+7b2f 20407a4c call sha 
+7b30 d8c006c2 arg memahsave_end ,contr 
+7b31 d8a00582 arg memdat ,contw 
+7b32 18007208 force 8 ,loopcnt 
+7b33 20407b97 call memcpy_dword_swap 
+7b34 58800000 setarg 0x800000 
+7b35 1fed7e00 lshift8 pdata ,pdata 
+7b36 e0a20000 istore 4 ,contw 
+7b37 20407e3a call bn_zero 
+7b38 58000300 setarg 0x0300 
+7b39 e0a20000 istore 4 ,contw 
+7b3a 20407a4c call sha 
+7b3b 20207a89 branch sha_result 
+
+function_f3a:
+7b3c 58363636 setarg 0x363636 
+7b3d 1fed0400 lshift8 pdata ,temp 
+7b3e 18418436 or_into 0x36 ,temp 
+7b3f d8c00838 arg mem_sp_dhkey_end ,contr 
+7b40 18007206 force 6 ,loopcnt 
+7b41 20407a90 call pad_xor 
+7b42 20407a45 call sha_init 
+7b43 20407a4c call sha 
+7b44 d8c00858 arg mem_sp_random_remote_end ,contr 
+7b45 d8a00582 arg memdat ,contw 
+7b46 20407b96 call memcpy_dword_swap4 
+7b47 d8c00848 arg mem_sp_random_local_end ,contr 
+7b48 20407b96 call memcpy_dword_swap4 
+7b49 20207b57 branch function_f3b_common 
+
+function_f3b:
+7b4a 58363636 setarg 0x363636 
+7b4b 1fed0400 lshift8 pdata ,temp 
+7b4c 18418436 or_into 0x36 ,temp 
+7b4d d8c00838 arg mem_sp_dhkey_end ,contr 
+7b4e 18007206 force 6 ,loopcnt 
+7b4f 20407a90 call pad_xor 
+7b50 20407a45 call sha_init 
+7b51 20407a4c call sha 
+7b52 d8c00848 arg mem_sp_random_local_end ,contr 
+7b53 d8a00582 arg memdat ,contw 
+7b54 20407b96 call memcpy_dword_swap4 
+7b55 d8c00858 arg mem_sp_random_remote_end ,contr 
+7b56 20407b96 call memcpy_dword_swap4 
+
+function_f3b_common:
+7b57 58000000 setarg 0x0 
+7b58 e0a40000 istore 8 ,contw 
+7b59 e0a40000 istore 8 ,contw 
+7b5a 18a20400 copy contw ,temp 
+7b5b 7006c280 jam 0x80 ,mem_addr_padding 
+7b5c 18420a00 copy temp ,contw 
+7b5d d8c006d2 arg mem_addr_iocap_end ,contr 
+7b5e 20407b96 call memcpy_dword_swap4 
+7b5f 20407a4c call sha 
+7b60 d8a00582 arg memdat ,contw 
+7b61 18007207 force 7 ,loopcnt 
+7b62 20407e3b call memset0 
+7b63 e0a20000 istore 4 ,contw 
+7b64 580003f8 setarg 0x03F8 
+7b65 e0a20000 istore 4 ,contw 
+7b66 20407a4c call sha 
+7b67 20407a89 call sha_result 
+7b68 d8c00858 arg memresult ,contr 
+7b69 d8a006a2 arg memahsave ,contw 
+7b6a 20407e31 call memcpy32 
+7b6b 585c5c5c setarg 0x5c5c5c 
+7b6c 1fed0400 lshift8 pdata ,temp 
+7b6d 1841845c or_into 0x5c ,temp 
+7b6e d8c00838 arg mem_sp_dhkey_end ,contr 
+7b6f 18007206 force 6 ,loopcnt 
+7b70 20407a90 call pad_xor 
+7b71 20407a45 call sha_init 
+7b72 20407a4c call sha 
+7b73 d8c006c2 arg memahsave_end ,contr 
+7b74 d8a00582 arg memdat ,contw 
+7b75 18007208 force 8 ,loopcnt 
+7b76 20407b97 call memcpy_dword_swap 
+7b77 58800000 setarg 0x800000 
+7b78 1fed7e00 lshift8 pdata ,pdata 
+7b79 e0a20000 istore 4 ,contw 
+7b7a 20407e3a call bn_zero 
+7b7b 58000300 setarg 0x0300 
+7b7c e0a20000 istore 4 ,contw 
+7b7d 20407a4c call sha 
+7b7e 20207a89 branch sha_result 
+
+eckp_calc_init:
+7b7f 700581c0 jam 192 ,mem_ec_loopc 
+
+eckp_calc_init_1:
+7b80 68008581 fetch 1 ,mem_ec_loopc 
+7b81 207a0000 rtn blank 
+7b82 1fe0ffff increase -1 ,pdata 
+7b83 60008581 store 1 ,mem_ec_loopc 
+7b84 d8c0065a arg mem_k ,contr 
+7b85 20407822 call bn_testbit 
+7b86 2020fb80 branch eckp_calc_init_1 ,true 
+7b87 d8c00582 arg mem_ax ,contr 
+7b88 d8a00612 arg mem_cx ,contw 
+7b89 20207828 branch ec_copy 
+
+eckp_calc:
+7b8a 2040793a call ecdbl 
+7b8b 68008581 fetch 1 ,mem_ec_loopc 
+7b8c 1fe0ffff increase -1 ,pdata 
+7b8d 60008581 store 1 ,mem_ec_loopc 
+7b8e d8c0065a arg mem_k ,contr 
+7b8f 20407822 call bn_testbit 
+7b90 20608000 rtn true 
+7b91 2020798b branch ecadd 
+
+eckp_cp_1:
+7b92 70058000 jam 0 ,mem_ec_infinite 
+7b93 d8c00582 arg mem_ax ,contr 
+7b94 d8a00612 arg mem_cx ,contw 
+7b95 20207828 branch ec_copy 
+
+memcpy_dword_swap4:
+7b96 18007204 force 4 ,loopcnt 
+
+memcpy_dword_swap:
+7b97 18c08dfc increase -4 ,contr 
+
+memcpy_dword_swap_loop:
+7b98 e8c20000 ifetch 4 ,contr 
+7b99 e0a20000 istore 4 ,contw 
+7b9a 18c08df8 increase -8 ,contr 
+7b9b c2007b98 loop memcpy_dword_swap_loop 
+7b9c 20600000 rtn 
+
+ui_init:
+7b9d 20758000 rtn wake 
+7b9e 20407ba5 call ui_button_init 
+7b9f 20407c13 call ui_timer_init 
+7ba0 20207bd9 branch ui_led_init 
+
+ui_dispatch:
+7ba1 6800c132 fetch 1 ,mem_device_option 
+7ba2 c1008000 rtneq dvc_op_hci 
+7ba3 20407bf2 call ui_led_blink_polling 
+7ba4 20207c04 branch ui_timer_check 
+
+ui_button_init:
+7ba5 6800c7fd fetch 1 ,mem_ui_button_gpio 
+7ba6 c17f8000 rtneq ui_button_gpio_disable 
+7ba7 98000400 iforce temp 
+7ba8 204069da call gpio_config_output 
+7ba9 6808c7fd fetcht 1 ,mem_ui_button_gpio 
+7baa 204069ed call gpio_out_inactive 
+7bab 20000064 nop 100 
+7bac 6808c7fd fetcht 1 ,mem_ui_button_gpio 
+7bad 204069d1 call gpio_config_input 
+7bae 20207bb1 branch ui_button_polling 
+
+ui_button_disable:
+7baf 7047fdff jam ui_button_gpio_disable ,mem_ui_button_gpio 
+7bb0 20600000 rtn 
+
+ui_button_polling:
+7bb1 79200025 set1 mark_ext_patch ,mark 
+7bb2 44c2c030 bpatch patch30_5 ,mem_patch30 
+7bb3 6800c7fd fetch 1 ,mem_ui_button_gpio 
+7bb4 c17f8000 rtneq ui_button_gpio_disable 
+7bb5 1fe20400 copy pdata ,temp 
+7bb6 204069e5 call gpio_get_bit 
+7bb7 2420fbc4 nbranch ui_button_up ,true 
+
+ui_button_down:
+7bb8 20407bce call ui_button_check_long_press 
+7bb9 680147f4 fetch 2 ,mem_ui_state_map 
+7bba 79207e0c set1 ui_state_btn_down 
+7bbb 600147f4 store 2 ,mem_ui_state_map 
+7bbc 6800c7eb fetch 1 ,mem_ui_button_last_state 
+7bbd c1000000 rtneq ui_button_state_down 
+7bbe 7047eb00 jam ui_button_state_down ,mem_ui_button_last_state 
+7bbf 6800c7fc fetch 1 ,mem_ui_button_timeout 
+7bc0 6000c7ea store 1 ,mem_ui_button_timer 
+7bc1 20407bd5 call lpm_button_get_wake_lock 
+7bc2 700b7d2c jam bt_evt_button_down ,mem_fifo_temp 
+7bc3 20207c27 branch ui_ipc_send_event 
+
+ui_button_up:
+7bc4 680147f4 fetch 2 ,mem_ui_state_map 
+7bc5 793ffe0c set0 ui_state_btn_down 
+7bc6 600147f4 store 2 ,mem_ui_state_map 
+7bc7 6800c7eb fetch 1 ,mem_ui_button_last_state 
+7bc8 c1008000 rtneq ui_button_state_up 
+7bc9 7047eb01 jam ui_button_state_up ,mem_ui_button_last_state 
+7bca 7047ea00 jam 0 ,mem_ui_button_timer 
+7bcb 20407bd7 call lpm_button_clean_wake_lock 
+7bcc 700b7d2d jam bt_evt_button_up ,mem_fifo_temp 
+7bcd 20207c27 branch ui_ipc_send_event 
+
+ui_button_check_long_press:
+7bce 6800c7ea fetch 1 ,mem_ui_button_timer 
+7bcf 207a0000 rtn blank 
+7bd0 1fe0ffff increase -1 ,pdata 
+7bd1 6000c7ea store 1 ,mem_ui_button_timer 
+7bd2 247a0000 nrtn blank 
+7bd3 700b7d10 jam bt_evt_button_long_pressed ,mem_fifo_temp 
+7bd4 20207c27 branch ui_ipc_send_event 
+
+lpm_button_get_wake_lock:
+7bd5 d8e00007 arg wake_lock_button ,queue 
+7bd6 20203dc2 branch lpm_get_wake_lock 
+
+lpm_button_clean_wake_lock:
+7bd7 d8e00007 arg wake_lock_button ,queue 
+7bd8 20203dc6 branch lpm_put_wake_lock 
+
+ui_led_init:
+7bd9 6800c7f7 fetch 1 ,mem_led_gpio 
+7bda c17f8000 rtneq ui_button_gpio_disable 
+7bdb 98000400 iforce temp 
+7bdc 204069da call gpio_config_output 
+7bdd 20207be2 branch ui_led_off 
+
+ui_led_blink_stop:
+7bde 680147f4 fetch 2 ,mem_ui_state_map 
+7bdf 793ffe0d set0 ui_state_led_blink 
+7be0 600147f4 store 2 ,mem_ui_state_map 
+7be1 7047e900 jam ui_led_stop ,mem_led_switch 
+
+ui_led_off:
+7be2 680147f4 fetch 2 ,mem_ui_state_map 
+7be3 793ffe0e set0 ui_state_led_on 
+7be4 600147f4 store 2 ,mem_ui_state_map 
+7be5 6808c7f7 fetcht 1 ,mem_led_gpio 
+7be6 202069ed branch gpio_out_inactive 
+
+ui_led_on:
+7be7 680147f4 fetch 2 ,mem_ui_state_map 
+7be8 79207e0e set1 ui_state_led_on 
+7be9 600147f4 store 2 ,mem_ui_state_map 
+7bea 7047e900 jam ui_led_stop ,mem_led_switch 
+7beb 6808c7f7 fetcht 1 ,mem_led_gpio 
+7bec 202069ef branch gpio_out_active 
+
+ui_led_blink_start:
+7bed 680147f4 fetch 2 ,mem_ui_state_map 
+7bee 79207e0d set1 ui_state_led_blink 
+7bef 600147f4 store 2 ,mem_ui_state_map 
+7bf0 7047e901 jam ui_led_start ,mem_led_switch 
+7bf1 20600000 rtn 
+
+ui_led_blink_polling:
+7bf2 79200025 set1 mark_ext_patch ,mark 
+7bf3 44c34030 bpatch patch30_6 ,mem_patch30 
+7bf4 6800c7e9 fetch 1 ,mem_led_switch 
+7bf5 c1000000 rtneq ui_led_stop 
+7bf6 d8e00009 arg ui_led_blink ,queue 
+7bf7 20407e53 call timer_check 
+7bf8 247a0000 nrtn blank 
+7bf9 6800c7e9 fetch 1 ,mem_led_switch 
+7bfa c0017bff beq ui_led_dark_time ,ui_led_blink_polling_dark 
+7bfb 20407be7 call ui_led_on 
+7bfc 7047e902 jam ui_led_dark_time ,mem_led_switch 
+7bfd 680147fa fetch 2 ,mem_led_light_time 
+7bfe 20207c02 branch ui_led_blink_timer_start 
+
+ui_led_blink_polling_dark:
+7bff 20407be2 call ui_led_off 
+7c00 7047e903 jam ui_led_light_time ,mem_led_switch 
+7c01 680147f8 fetch 2 ,mem_led_dark_time 
+
+ui_led_blink_timer_start:
+7c02 d8e00009 arg ui_led_blink ,queue 
+7c03 20207e4c branch timer_init 
+
+ui_timer_check:
+7c04 79200025 set1 mark_ext_patch ,mark 
+7c05 44c3c030 bpatch patch30_7 ,mem_patch30 
+7c06 da200000 arg 0 ,rega 
+7c07 680a47ec fetcht 4 ,mem_ui_timer_last_btclk 
+7c08 1c422400 copy clkn_bt ,regb 
+
+ui_timer_check_loop:
+7c09 1a427e00 copy regb ,pdata 
+7c0a 184084a0 increase 160 ,temp 
+7c0b 184084a0 increase 160 ,temp 
+7c0c 98467c00 isub temp ,null 
+7c0d 24217c16 nbranch ui_timer_check_end ,positive 
+7c0e 1a20a201 increase 1 ,rega 
+7c0f 1a217e0f and rega ,0x0f ,pdata 
+7c10 243a7c09 nbranch ui_timer_check_loop ,blank 
+7c11 da200000 arg 0 ,rega 
+7c12 20407c1d call ui_timer_check_send_evt 
+
+ui_timer_init:
+7c13 1c427e00 copy clkn_bt ,pdata 
+7c14 600247ec store 4 ,mem_ui_timer_last_btclk 
+7c15 20600000 rtn 
+
+ui_timer_check_end:
+7c16 79200025 set1 mark_ext_patch ,mark 
+7c17 44c44031 bpatch patch31_0 ,mem_patch31 
+7c18 1a227e00 copy rega ,pdata 
+7c19 207a0000 rtn blank 
+7c1a 18408560 increase -160 ,temp 
+7c1b 18408560 increase -160 ,temp 
+7c1c 600a47ec storet 4 ,mem_ui_timer_last_btclk 
+
+ui_timer_check_send_evt:
+7c1d 1fe0fe50 increase bt_evt_timer_init ,pdata 
+7c1e 60008b7d store 1 ,mem_fifo_temp 
+7c1f 20207c27 branch ui_ipc_send_event 
+
+ui_ipc_get_lock:
+7c20 7047dd01 jam 1 ,mem_ipc_lock_bt 
+
+ui_ipc_get_lock_wait:
+7c21 6800c7de fetch 1 ,mem_ipc_lock_c51 
+7c22 243a7c21 nbranch ui_ipc_get_lock_wait ,blank 
+7c23 20600000 rtn 
+
+ui_ipc_put_lock:
+7c24 7047dd00 jam 0 ,mem_ipc_lock_bt 
+7c25 20600000 rtn 
+
+ui_ipc_fifo_out:
+7c26 20207f9f branch fifo_out 
+
+ui_ipc_send_event:
+7c27 79200025 set1 mark_ext_patch ,mark 
+7c28 44c4c031 bpatch patch31_1 ,mem_patch31 
+7c29 6800c132 fetch 1 ,mem_device_option 
+7c2a c1008000 rtneq dvc_op_hci 
+7c2b 20407c20 call ui_ipc_get_lock 
+7c2c 1a227e00 copy rega ,pdata 
+7c2d 600208ab store 4 ,mem_ipc_rega_temp 
+7c2e da2047df arg mem_ipc_fifo_bt2c51 ,rega 
+7c2f 20407f92 call fifo_in 
+7c30 680208ab fetch 4 ,mem_ipc_rega_temp 
+7c31 1fe22200 copy pdata ,rega 
+7c32 20207c24 branch ui_ipc_put_lock 
+
+ui_ipc_send_cmd:
+7c33 79200025 set1 mark_ext_patch ,mark 
+7c34 44c54031 bpatch patch31_2 ,mem_patch31 
+7c35 6800c132 fetch 1 ,mem_device_option 
+7c36 c1008000 rtneq dvc_op_hci 
+7c37 20407c20 call ui_ipc_get_lock 
+7c38 1a227e00 copy rega ,pdata 
+7c39 600208ab store 4 ,mem_ipc_rega_temp 
+7c3a da2047e4 arg mem_ipc_fifo_c512bt ,rega 
+7c3b 20407f92 call fifo_in 
+7c3c 680208ab fetch 4 ,mem_ipc_rega_temp 
+7c3d 1fe22200 copy pdata ,rega 
+7c3e 20207c24 branch ui_ipc_put_lock 
+
+ui_ipc_clean_all_fifo:
+7c3f 79200025 set1 mark_ext_patch ,mark 
+7c40 44c5c031 bpatch patch31_3 ,mem_patch31 
+7c41 58000000 setarg 0 
+7c42 6002c7e4 store util_fifo_len ,mem_ipc_fifo_c512bt 
+7c43 6002c7df store util_fifo_len ,mem_ipc_fifo_bt2c51 
+7c44 20600000 rtn 
+
+check_51cmd:
+7c45 79200025 set1 mark_ext_patch ,mark 
+7c46 44c64031 bpatch patch31_4 ,mem_patch31 
+7c47 6800c272 fetch 1 ,mem_hci_cmd 
+7c48 247a0000 nrtn blank 
+7c49 da2047e4 arg mem_ipc_fifo_c512bt ,rega 
+7c4a 20407fac call fifo_is_empty 
+7c4b 207a0000 rtn blank 
+7c4c 7008aa00 jam ipc_continue_process ,mem_ipc_skip_continue_proc 
+7c4d 20407c51 call check_51cmd_once 
+7c4e 680088aa fetch 1 ,mem_ipc_skip_continue_proc 
+7c4f 203a7c45 branch check_51cmd ,blank 
+7c50 20600000 rtn 
+
+check_51cmd_once:
+7c51 79200025 set1 mark_ext_patch ,mark 
+7c52 44c6c031 bpatch patch31_5 ,mem_patch31 
+7c53 20407c20 call ui_ipc_get_lock 
+7c54 da2047e4 arg mem_ipc_fifo_c512bt ,rega 
+7c55 20407f9f call fifo_out 
+7c56 1fe20400 copy pdata ,temp 
+7c57 20407c24 call ui_ipc_put_lock 
+7c58 18427e00 copy temp ,pdata 
+7c59 207a0000 rtn blank 
+7c5a c000fc97 beq bt_cmd_start_discovery ,check_51cmd_start_discovery 
+7c5b c0017c9c beq bt_cmd_stop_discovery ,check_51cmd_stop_discovery 
+7c5c c001fca2 beq bt_cmd_reconnect ,check_51cmd_reconnect 
+7c5d c003fca7 beq bt_cmd_enter_sniff_subrating ,check_51cmd_enter_sniff_subrating 
+7c5e c0047ca8 beq bt_cmd_exit_sniff_subrating ,check_51cmd_exit_sniff_subrating 
+7c5f c004fca9 beq bt_cmd_sniff_test ,check_51cmd_sniff_test 
+7c60 c005fcac beq bt_cmd_start_inquiry ,check_51cmd_inq 
+7c61 c0067cad beq bt_cmd_stop_inquiry ,check_51cmd_stop_inq 
+7c62 c006fcae beq bt_cmd_start_adv ,check_51cmd_adv 
+7c63 c0077cb1 beq bt_cmd_stop_adv ,check_51cmd_stop_adv 
+7c64 c007fcb3 beq bt_cmd_start_direct_adv ,check_51cmd_direct_adv 
+7c65 c0087cb6 beq bt_cmd_stop_direct_adv ,check_51cmd_stop_direct_adv 
+7c66 c0097cbb beq bt_cmd_le_update_conn ,check_51cmd_le_update_conn 
+7c67 c00afbed beq bt_cmd_led_blink ,ui_led_blink_start 
+7c68 c00a7be7 beq bt_cmd_led_on ,ui_led_on 
+7c69 c009fbde beq bt_cmd_led_off ,ui_led_blink_stop 
+7c6a c00b7cbc beq bt_cmd_le_start_conn ,check_51cmd_le_start_con 
+7c6b c00bfcc1 beq bt_cmd_le_start_scan ,check_51cmd_start_scan 
+7c6c c00c7cc3 beq bt_cmd_le_stop_scan ,check_51cmd_stop_scan 
+7c6d c00cfcc8 beq bt_cmd_enter_hibernate ,check_51cmd_hibernate 
+7c6e c00dfcc6 beq bt_cmd_le_smp_security_request ,check_51cmd_le_smp_sec_req 
+7c6f c00e7cd3 beq bt_cmd_le_start_write ,check_51cmd_le_start_write 
+7c70 c00f7cd5 beq bt_cmd_bb_reconn_cancel ,check_51cmd_bb_reconn_cancel 
+7c71 60008b7d store 1 ,mem_fifo_temp 
+7c72 79200025 set1 mark_ext_patch ,mark 
+7c73 44c74031 bpatch patch31_6 ,mem_patch31 
+7c74 6800807c fetch 1 ,mem_lmo_opcode2 
+7c75 203a7c79 branch check_51cmd_once_continue ,blank 
+7c76 204061d9 call lmo_fifo_process 
+7c77 6800807c fetch 1 ,mem_lmo_opcode2 
+7c78 243a7c8c nbranch check_51cmd_restore ,blank 
+
+check_51cmd_once_continue:
+7c79 68008b7d fetch 1 ,mem_fifo_temp 
+7c7a c584fc87 bmark0 mark_context ,check_51cmd_check_idle 
+
+check_51cmd_once_continue0:
+7c7b c002ca19 beq bt_cmd_enter_sniff ,cmd_in_sniff 
+7c7c c0034a28 beq bt_cmd_exit_sniff ,cmd_exit_sniff 
+7c7d c0057caa beq bt_cmd_set_pin_code ,check_51cmd_pincode 
+7c7e c0027ca4 beq bt_cmd_disconnect ,check_51cmd_disconnect 
+7c7f c008fcb8 beq bt_cmd_le_disconnect ,check_51cmd_le_disconnect 
+7c80 c00efc8e beq bt_cmd_role_switch ,check_51cmd_role_switch 
+7c81 c00fe90c beq bt_cmd_store_reconn_info_le ,eeprom_store_le_reconn_info 
+7c82 c0106910 beq bt_cmd_store_reconn_info_bt ,eeprom_store_bd_reconn_info 
+7c83 c0097c85 beq bt_cmd_le_update_conn ,bt_cmd_le_update_conn_1 
+7c84 20600000 rtn 
+
+bt_cmd_le_update_conn_1:
+7c85 700b7d2f jam xt_ll_connection_param_req ,mem_fifo_temp 
+7c86 20205620 branch le_xtype_fifo_in 
+
+check_51cmd_check_idle:
+7c87 60008b7d store 1 ,mem_fifo_temp 
+7c88 204032ee call context_check_idle 
+7c89 2022fc8c branch check_51cmd_restore ,zero 
+7c8a 204032f9 call context_search_plap 
+7c8b 24628000 nrtn zero 
+
+check_51cmd_restore:
+7c8c 7008aa01 jam ipc_skip_continue_process ,mem_ipc_skip_continue_proc 
+7c8d 20207c33 branch ui_ipc_send_cmd 
+
+check_51cmd_role_switch:
+7c8e 70007c34 jam lmp_slot_offset ,mem_lmo_opcode2 
+7c8f 79200003 set1 mark_switch_initiated ,mark 
+7c90 24748000 nrtn master 
+7c91 70474800 jam switch_flag_init ,mem_switch_flag 
+7c92 70007c13 jam lmp_switch_req ,mem_lmo_opcode2 
+7c93 68008177 fetch 1 ,mem_connection_options 
+7c94 793ffe02 set0 connection_switch ,pdata 
+7c95 60008177 store 1 ,mem_connection_options 
+7c96 20600000 rtn 
+
+check_51cmd_start_discovery:
+7c97 680147f4 fetch 2 ,mem_ui_state_map 
+7c98 79207e06 set1 ui_state_bt_discovery 
+7c99 600147f4 store 2 ,mem_ui_state_map 
+7c9a 70413303 jam 3 ,mem_scan_mode 
+7c9b 20600000 rtn 
+
+check_51cmd_stop_discovery:
+7c9c 7047f200 jam 0 ,mem_hid_handshake_timer_count 
+7c9d 70413300 jam 0 ,mem_scan_mode 
+7c9e 680147f4 fetch 2 ,mem_ui_state_map 
+7c9f 793ffe06 set0 ui_state_bt_discovery 
+7ca0 600147f4 store 2 ,mem_ui_state_map 
+7ca1 20600000 rtn 
+
+check_51cmd_reconnect:
+7ca2 70427205 jam hci_cmd_create_conn ,mem_hci_cmd 
+7ca3 20600000 rtn 
+
+check_51cmd_disconnect:
+7ca4 70007c07 jam lmp_detach ,mem_lmo_opcode2 
+7ca5 70044613 jam other_end_terminated ,mem_disconn_reason_send 
+7ca6 20600000 rtn 
+
+check_51cmd_enter_sniff_subrating:
+7ca7 20600000 rtn 
+
+check_51cmd_exit_sniff_subrating:
+7ca8 20600000 rtn 
+
+check_51cmd_sniff_test:
+7ca9 20600000 rtn 
+
+check_51cmd_pincode:
+7caa 70045002 jam pincode_state_pincode_ready ,mem_pincode_state 
+7cab 202049da branch cmd_pair 
+
+check_51cmd_inq:
+7cac 20600000 rtn 
+
+check_51cmd_stop_inq:
+7cad 20600000 rtn 
+
+check_51cmd_adv:
+7cae 7043d801 jam on ,mem_le_adv_enable 
+7caf 7044db00 jam adv_ind ,mem_le_adv_type 
+7cb0 20600000 rtn 
+
+check_51cmd_stop_adv:
+7cb1 7043d800 jam off ,mem_le_adv_enable 
+7cb2 20600000 rtn 
+
+check_51cmd_direct_adv:
+7cb3 7043d801 jam on ,mem_le_adv_enable 
+7cb4 7044db01 jam adv_direct_ind ,mem_le_adv_type 
+7cb5 20600000 rtn 
+
+check_51cmd_stop_direct_adv:
+7cb6 7043d800 jam off ,mem_le_adv_enable 
+7cb7 20600000 rtn 
+
+check_51cmd_le_disconnect:
+7cb8 58000001 setarg 1 
+7cb9 600103ef store 2 ,mem_le_superto 
+7cba 20600000 rtn 
+
+check_51cmd_le_update_conn:
+7cbb 20600000 rtn 
+
+check_51cmd_le_start_con:
+7cbc 7043d201 jam on ,mem_le_scan_enable 
+7cbd 7042721b jam hci_cmd_le_create_conn ,mem_hci_cmd 
+7cbe 68030268 fetch 6 ,mem_app_peer_addr 
+7cbf 600344e7 store 6 ,mem_le_conn_peer_addr 
+7cc0 20600000 rtn 
+
+check_51cmd_start_scan:
+7cc1 7043d201 jam on ,mem_le_scan_enable 
+7cc2 20600000 rtn 
+
+check_51cmd_stop_scan:
+7cc3 7043d200 jam off ,mem_le_scan_enable 
+7cc4 70427200 jam 0 ,mem_hci_cmd 
+7cc5 20600000 rtn 
+
+check_51cmd_le_smp_sec_req:
+7cc6 700b7d4b jam xt_smp_security_request ,mem_fifo_temp 
+7cc7 20205620 branch le_xtype_fifo_in 
+
+check_51cmd_hibernate:
+7cc8 79200025 set1 mark_ext_patch ,mark 
+7cc9 44c7c031 bpatch patch31_7 ,mem_patch31 
+7cca 68014288 fetch 2 ,mem_cb_before_hibernate 
+7ccb 20407f66 call callback_func 
+7ccc 6800c7fd fetch 1 ,mem_ui_button_gpio 
+7ccd c07ffcd0 beq ui_button_gpio_disable ,check_51cmd_hibernate_btn_disabled 
+7cce 1fe20400 copy pdata ,temp 
+7ccf 204069d1 call gpio_config_input 
+
+check_51cmd_hibernate_btn_disabled:
+7cd0 20407be2 call ui_led_off 
+7cd1 20407c3f call ui_ipc_clean_all_fifo 
+7cd2 20203ccd branch lpm_hibernate 
+
+check_51cmd_le_start_write:
+7cd3 7046f801 jam 1 ,mem_le_switch_send_data 
+7cd4 20600000 rtn 
+
+check_51cmd_bb_reconn_cancel:
+7cd5 18000e04 force page_length_timer ,queue 
+7cd6 20207e4b branch timer_stop 
+
+ui_check_paring_button:
+7cd7 6800c7f4 fetch 1 ,mem_ui_state_map 
+7cd8 c4060000 rtnbit0 ui_state_btn_down 
+7cd9 c4038000 rtnbit0 ui_state_bt_reconnect 
+7cda 20207cd5 branch check_51cmd_bb_reconn_cancel 
+
+usb_isr:
+7cdb 79200025 set1 mark_ext_patch ,mark 
+7cdc 44eac03a bpatch patch3a_5 ,mem_patch3a 
+7cdd 20407df3 call usb_tx_test 
+7cde 68108c26 hfetch 1 ,core_usb_status 
+7cdf 600088af store 1 ,mem_usb_status 
+7ce0 68108c27 hfetch 1 ,core_usb_fifo_empty 
+7ce1 600088b0 store 1 ,mem_usb_fifo_empty 
+7ce2 708c26e0 hjam 0xe0 ,core_usb_status 
+7ce3 680088b0 fetch 1 ,mem_usb_fifo_empty 
+7ce4 2fe00201 compare 0x1 ,pdata ,0x1 
+7ce5 2040fd3a call usb0_fifo_empty ,true 
+7ce6 79200025 set1 mark_ext_patch ,mark 
+7ce7 44eb403a bpatch patch3a_6 ,mem_patch3a 
+7ce8 680088af fetch 1 ,mem_usb_status 
+7ce9 2fe00201 compare 0x1 ,pdata ,0x1 
+7cea 2040fcf8 call usb_status1 ,true 
+7ceb 680088f8 fetch 1 ,mem_usb_state 
+7cec c0817dc2 bne usb_connected ,usb_tx 
+7ced 680108f9 fetch 2 ,mem_usb_idle_cnt 
+7cee 1fe0fe01 increase 1 ,pdata 
+7cef 600108f9 store 2 ,mem_usb_idle_cnt 
+7cf0 680908fb fetcht 2 ,mem_usb_idle_timeout 
+7cf1 98467c00 isub temp ,null 
+7cf2 20217db2 branch usb_init ,positive 
+7cf3 680088af fetch 1 ,mem_usb_status 
+7cf4 c3037dc2 bbit0 usb_status_nak ,usb_tx 
+7cf5 58000000 setarg 0 
+7cf6 600108f9 store 2 ,mem_usb_idle_cnt 
+7cf7 20207dc2 branch usb_tx 
+
+usb_status1:
+7cf8 79200025 set1 mark_ext_patch ,mark 
+7cf9 44ebc03a bpatch patch3a_7 ,mem_patch3a 
+7cfa 708c2611 hjam 0x11 ,core_usb_status 
+7cfb 68108c20 hfetch 1 ,core_usb_ep_len 
+7cfc 600088b1 store 1 ,mem_usb_read_len 
+7cfd 1fe27200 copy pdata ,loopcnt 
+7cfe 203a7d18 branch usb_rx_no_data ,blank 
+7cff d8a008ff arg mem_usb_setup ,contw 
+7d00 20407d36 call usb_rx_read 
+7d01 680088b1 fetch 1 ,mem_usb_read_len 
+7d02 1fe67c07 sub pdata ,7 ,null 
+7d03 20610000 rtn positive 
+
+usb_class_type:
+7d04 79200025 set1 mark_ext_patch ,mark 
+7d05 44ec403b bpatch patch3b_0 ,mem_patch3b 
+7d06 680088ff fetch 1 ,mem_usb_setup_bmrequesttype 
+7d07 c0107d16 beq hci_class_request_type ,usb_hci_class_req_type 
+7d08 c010fd22 beq hid_class_request_type ,usb_hid_class_req_type 
+7d09 c0007d10 beq zero_class_request_type ,usb_zero_class_req_type 
+7d0a 68008900 fetch 1 ,mem_usb_setup_brequest 
+7d0b c002fd9b beq set_address ,usb0_request_set_address 
+7d0c c0037d3d beq get_descriptor ,usb0_request_get_descriptor 
+7d0d c004fd98 beq set_configuration ,usb0_request_set_configuration 
+7d0e c005fda2 beq set_interface ,usb0_request_set_interface 
+7d0f 20207d32 branch usb0_force_stall 
+
+usb_zero_class_req_type:
+7d10 68008900 fetch 1 ,mem_usb_setup_brequest 
+7d11 c000fdaf beq clear_feature ,usb0_request_clear_feature 
+7d12 c001fdab beq set_feature ,usb0_request_set_feature 
+7d13 c004fd34 beq set_configuration ,usb0_reply_zerolen 
+7d14 c002fd9b beq set_address ,usb0_request_set_address 
+7d15 20207d32 branch usb0_force_stall 
+
+usb_hci_class_req_type:
+7d16 20407d34 call usb0_reply_zerolen 
+7d17 20600000 rtn 
+
+usb_rx_no_data:
+7d18 680088af fetch 1 ,mem_usb_status 
+7d19 c2827d04 bbit1 usb_status_setup ,usb_class_type 
+7d1a 20600000 rtn 
+
+usb_set_protocol_req:
+7d1b 680088f6 fetch 1 ,mem_usb_set_protocol_count 
+7d1c 1fe0fe01 increase 1 ,pdata 
+7d1d 600088f6 store 1 ,mem_usb_set_protocol_count 
+7d1e 2fe1fe02 compare 2 ,pdata ,0xff 
+7d1f 2420fd34 nbranch usb0_reply_zerolen ,true 
+7d20 7008f701 jam 1 ,mem_usb_desc 
+7d21 20207d34 branch usb0_reply_zerolen 
+
+usb_hid_class_req_type:
+7d22 68008900 fetch 1 ,mem_usb_setup_brequest 
+7d23 c0057d27 beq set_idle ,usb_set_idle 
+7d24 c004fd2e beq set_report ,usb_set_report 
+7d25 c005fd1b beq set_protocol ,usb_set_protocol_req 
+7d26 20207d32 branch usb0_force_stall 
+
+usb_set_idle:
+7d27 680088f8 fetch 1 ,mem_usb_state 
+7d28 c002fd2c beq usb_setidle_1 ,usb_set_idle_connected 
+7d29 c0827d34 bne usb_resume ,usb0_reply_zerolen 
+7d2a 7008f805 jam usb_setidle_1 ,mem_usb_state 
+7d2b 20207d34 branch usb0_reply_zerolen 
+
+usb_set_idle_connected:
+7d2c 7008f802 jam usb_connected ,mem_usb_state 
+7d2d 20207d34 branch usb0_reply_zerolen 
+
+usb_set_report:
+7d2e 7008f701 jam 1 ,mem_usb_desc 
+7d2f da2008f7 arg mem_usb_desc ,rega 
+7d30 da400001 arg 1 ,regb 
+7d31 20207d65 branch usb0_respond 
+
+usb0_force_stall:
+7d32 708c1101 hjam 1 ,core_usb_stall 
+7d33 20600000 rtn 
+
+usb0_reply_zerolen:
+7d34 708c1240 hjam 0x40 ,core_usb_clear 
+7d35 20600000 rtn 
+
+usb_rx_read:
+7d36 68108c18 hfetch 1 ,core_usb_ep 
+7d37 e0a08000 istore 1 ,contw 
+7d38 c2007d36 loop usb_rx_read 
+7d39 20600000 rtn 
+
+usb0_fifo_empty:
+7d3a 708c2701 hjam 0x1 ,core_usb_fifo_empty 
+7d3b 20407d7c call usb0_tx 
+7d3c 20600000 rtn 
+
+usb0_request_get_descriptor:
+7d3d 79200025 set1 mark_ext_patch ,mark 
+7d3e 44ecc03b bpatch patch3b_1 ,mem_patch3b 
+7d3f 793f8023 set0 mark_isstr ,mark 
+7d40 68008902 fetch 1 ,mem_usb_setup_bvalueh 
+7d41 c000fd47 beq dsc_device ,dsc_device_info 
+7d42 c0017d49 beq dsc_config ,dsc_config_info 
+7d43 c001fd4b beq dsc_string ,dsc_string_info 
+7d44 c010fd57 beq dsc_hid ,dsc_hid_info 
+7d45 c0117d5b beq dsc_hid_report ,dsc_hid_report_info 
+7d46 20600000 rtn 
+
+dsc_device_info:
+7d47 da200912 arg mem_devicedesc ,rega 
+7d48 20207d62 branch usb0_respond_length 
+
+dsc_config_info:
+7d49 da200ab6 arg mem_confdesc ,rega 
+7d4a 20207d62 branch usb0_respond_length 
+
+dsc_string_info:
+7d4b 68008901 fetch 1 ,mem_usb_setup_bvalue 
+7d4c 1fe17e03 and_into 3 ,pdata 
+7d4d da200b1a arg mem_string0 ,rega 
+7d4e c0007d62 beq 0 ,usb0_respond_length 
+7d4f 79200023 set1 mark_isstr ,mark 
+7d50 da200b1f arg mem_string1 ,rega 
+7d51 c000fd62 beq 1 ,usb0_respond_length 
+7d52 da200b3d arg mem_string2 ,rega 
+7d53 c0017d62 beq 2 ,usb0_respond_length 
+7d54 da200b5b arg mem_string3 ,rega 
+7d55 c001fd62 beq 3 ,usb0_respond_length 
+7d56 20203bf1 branch assert 
+
+dsc_hid_info:
+7d57 da200ac8 arg mem_confdesc + 18 ,rega 
+7d58 68008ac8 fetch 1 ,mem_confdesc + 18 
+7d59 1fe22400 copy pdata ,regb 
+7d5a 20207d65 branch usb0_respond 
+
+dsc_hid_report_info:
+7d5b 68010903 fetch 2 ,mem_usb_setup_windex 
+7d5c c000fd5f beq 1 ,dsc_hid_report_info0 
+7d5d da200926 arg mem_hidreportdesc_kb ,rega 
+7d5e 20207d62 branch usb0_respond_length 
+
+dsc_hid_report_info0:
+7d5f 7008f801 jam usb_got_report_req ,mem_usb_state 
+7d60 da2009ee arg mem_hidreportdesc_m ,rega 
+7d61 20207d62 branch usb0_respond_length 
+
+usb0_respond_length:
+7d62 ea208000 ifetch 1 ,rega 
+7d63 98002400 iforce regb 
+7d64 1a20a201 increase 1 ,rega 
+
+usb0_respond:
+7d65 79200025 set1 mark_ext_patch ,mark 
+7d66 44ed403b bpatch patch3b_2 ,mem_patch3b 
+7d67 c591fd71 bmark0 mark_isstr ,usb0_respond0 
+7d68 1a40fe01 add regb ,1 ,pdata 
+7d69 1fe3fe00 lshift pdata ,pdata 
+7d6a 60108c18 hstore 1 ,core_usb_dfifo0 
+7d6b 708c1803 hjam 3 ,core_usb_dfifo0 
+7d6c 68008905 fetch 1 ,mem_usb_setup_blength 
+7d6d 1fe0fffe increase -2 ,pdata 
+7d6e 1fe37e00 rshift pdata ,pdata 
+7d6f 60008905 store 1 ,mem_usb_setup_blength 
+7d70 c0007d7a beq 0 ,usb_no_respond_data 
+
+usb0_respond0:
+7d71 68008905 fetch 1 ,mem_usb_setup_blength 
+7d72 9a467c00 isub regb ,null 
+7d73 20217d75 branch usb0_respond1 ,positive 
+7d74 1fe22400 copy pdata ,regb 
+
+usb0_respond1:
+7d75 1a227e00 copy rega ,pdata 
+7d76 6001090f store 2 ,mem_bufptr 
+7d77 1a427e00 copy regb ,pdata 
+7d78 60008911 store 1 ,mem_remain 
+7d79 20207d7c branch usb0_tx 
+
+usb_no_respond_data:
+7d7a d8e00000 arg 0 ,queue 
+7d7b 20207dd5 branch usb_trig 
+
+usb0_tx:
+7d7c 79200025 set1 mark_ext_patch ,mark 
+7d7d 44edc03b bpatch patch3b_3 ,mem_patch3b 
+7d7e 68008911 fetch 1 ,mem_remain 
+7d7f 207a0000 rtn blank 
+7d80 1fe27200 copy pdata ,loopcnt 
+7d81 1fe67c40 sub pdata ,ep0_packet_size ,null 
+7d82 20217d84 branch usb0_tx_info ,positive 
+7d83 df200040 arg ep0_packet_size ,loopcnt 
+
+usb0_tx_info:
+7d84 68008911 fetch 1 ,mem_remain 
+7d85 9f267e00 isub loopcnt ,pdata 
+7d86 60008911 store 1 ,mem_remain 
+7d87 6801090f fetch 2 ,mem_bufptr 
+7d88 1fe20c00 copy pdata ,contr 
+
+usb0_tx0:
+7d89 e8c08000 ifetch 1 ,contr 
+7d8a 60108c18 hstore 1 ,core_usb_dfifo0 
+7d8b c591fd8d bmark0 mark_isstr ,usb0_tx1 
+7d8c 708c1800 hjam 0 ,core_usb_dfifo0 
+
+usb0_tx1:
+7d8d c2007d89 loop usb0_tx0 
+7d8e 18c27e00 copy contr ,pdata 
+7d8f 6001090f store 2 ,mem_bufptr 
+7d90 d8e00000 arg 0 ,queue 
+7d91 20407dd5 call usb_trig 
+7d92 68008911 fetch 1 ,mem_remain 
+7d93 247a0000 nrtn blank 
+7d94 680088f8 fetch 1 ,mem_usb_state 
+7d95 c1808000 rtnne usb_got_report_req 
+7d96 7008f802 jam usb_connected ,mem_usb_state 
+7d97 20600000 rtn 
+
+usb0_request_set_configuration:
+7d98 68008901 fetch 1 ,mem_usb_setup_bvalue 
+7d99 1fe67c01 sub pdata ,1 ,null 
+7d9a 24217d32 nbranch usb0_force_stall ,positive 
+
+usb0_request_set_address:
+7d9b 680088ff fetch 1 ,mem_usb_setup_bmrequesttype 
+7d9c c0807d32 bne in_device ,usb0_force_stall 
+7d9d 68010903 fetch 2 ,mem_usb_setup_windex 
+7d9e c0807d32 bne 0 ,usb0_force_stall 
+7d9f 68008905 fetch 1 ,mem_usb_setup_blength 
+7da0 c0807d32 bne 0 ,usb0_force_stall 
+7da1 20207d34 branch usb0_reply_zerolen 
+
+usb0_request_set_interface:
+7da2 680088ff fetch 1 ,mem_usb_setup_bmrequesttype 
+7da3 c080fd32 bne in_interface ,usb0_force_stall 
+7da4 68008901 fetch 1 ,mem_usb_setup_bvalue 
+7da5 c0807d32 bne 0 ,usb0_force_stall 
+7da6 68008902 fetch 1 ,mem_usb_setup_bvalueh 
+7da7 c0807d32 bne 0 ,usb0_force_stall 
+7da8 68008905 fetch 1 ,mem_usb_setup_blength 
+7da9 c0807d32 bne 0 ,usb0_force_stall 
+7daa 20207d34 branch usb0_reply_zerolen 
+
+usb0_request_set_feature:
+7dab 68008901 fetch 1 ,mem_usb_setup_bvalue 
+7dac c080fd32 bne 1 ,usb0_force_stall 
+7dad 7008f803 jam usb_sleep ,mem_usb_state 
+7dae 20207d34 branch usb0_reply_zerolen 
+
+usb0_request_clear_feature:
+7daf 68008901 fetch 1 ,mem_usb_setup_bvalue 
+7db0 c080fd32 bne 1 ,usb0_force_stall 
+7db1 20207d34 branch usb0_reply_zerolen 
+
+usb_init:
+7db2 79200025 set1 mark_ext_patch ,mark 
+7db3 44ee403b bpatch patch3b_4 ,mem_patch3b 
+7db4 708c0000 hjam 0x00 ,core_usb_config 
+7db5 20002710 nop 10000 
+7db6 708c10c0 hjam 0xc0 ,core_usb_trig 
+7db7 68110050 hfetch 2 ,core_clkoff 
+7db8 793ffe0a set0 clock_off_usb ,pdata 
+7db9 60110050 hstore 2 ,core_clkoff 
+7dba 708c003c hjam 0x3c ,core_usb_config 
+7dbb 708c26ff hjam 0xff ,core_usb_status 
+7dbc 708c27ff hjam 0xff ,core_usb_fifo_empty 
+7dbd 700ff000 jam 0 ,mem_mcmd 
+7dbe 7008f800 jam 0 ,mem_usb_state 
+7dbf 58000000 setarg 0 
+7dc0 600108f9 store 2 ,mem_usb_idle_cnt 
+7dc1 20600000 rtn 
+
+usb_tx:
+7dc2 79200025 set1 mark_ext_patch ,mark 
+7dc3 44eec03b bpatch patch3b_5 ,mem_patch3b 
+7dc4 68008ff0 fetch 1 ,mem_mcmd 
+7dc5 207a0000 rtn blank 
+7dc6 680088f8 fetch 1 ,mem_usb_state 
+7dc7 c001fdec beq usb_sleep ,usb_wakeup 
+7dc8 c1810000 rtnne usb_connected 
+7dc9 68008ff0 fetch 1 ,mem_mcmd 
+7dca 700ff000 jam 0 ,mem_mcmd 
+7dcb df200006 arg 6 ,loopcnt 
+7dcc d8c00ff1 arg mem_mouse_data ,contr 
+7dcd c0017dd0 beq send_kb_data_cmd ,usb_tx_ep1 
+7dce c000fde9 beq send_mouse_data_cmd ,usb_tx_ep2 
+7dcf 20203bf1 branch assert 
+
+usb_tx_ep1:
+7dd0 da208c19 arg core_usb_dfifo1 ,rega 
+7dd1 d8e00001 arg 1 ,queue 
+
+usb_tx_loop:
+7dd2 e8c08000 ifetch 1 ,contr 
+7dd3 e2208000 istore 1 ,rega 
+7dd4 c2007dd2 loop usb_tx_loop 
+
+usb_trig:
+7dd5 79200025 set1 mark_ext_patch ,mark 
+7dd6 44ef403b bpatch patch3b_6 ,mem_patch3b 
+7dd7 78487c00 disable swfine 
+7dd8 680108fd fetch 2 ,mem_usb_trig_timeout 
+7dd9 98003600 iforce stop_watch 
+7dda 708c2640 hjam 0x40 ,core_usb_status 
+
+usb_trig_waitnak_loop:
+7ddb 68108c26 hfetch 1 ,core_usb_status 
+7ddc 2021fdb2 branch usb_init ,timeout 
+7ddd c3037ddb bbit0 usb_status_nak ,usb_trig_waitnak_loop 
+7dde 680108fd fetch 2 ,mem_usb_trig_timeout 
+7ddf 98003600 iforce stop_watch 
+7de0 d8400000 arg 0 ,temp 
+7de1 f9200400 qset1 temp 
+7de2 60188c27 hstoret 1 ,core_usb_fifo_empty 
+
+usb_trig_loop:
+7de3 2021fdb2 branch usb_init ,timeout 
+7de4 60188c10 hstoret 1 ,core_usb_trig 
+7de5 68108c27 hfetch 1 ,core_usb_fifo_empty 
+7de6 afec0000 qisolate0 pdata 
+7de7 2020fde3 branch usb_trig_loop ,true 
+7de8 20600000 rtn 
+
+usb_tx_ep2:
+7de9 d8e00002 arg 2 ,queue 
+7dea da208c1a arg core_usb_dfifo2 ,rega 
+7deb 20207dd2 branch usb_tx_loop 
+
+usb_wakeup:
+7dec 79200025 set1 mark_ext_patch ,mark 
+7ded 44efc03b bpatch patch3b_7 ,mem_patch3b 
+7dee 708c00fc hjam 0xfc ,core_usb_config 
+7def 20002710 nop 10000 
+7df0 708c003c hjam 0x3c ,core_usb_config 
+7df1 7008f804 jam usb_resume ,mem_usb_state 
+7df2 20600000 rtn 
+
+usb_tx_test:
+7df3 68008ff0 fetch 1 ,mem_mcmd 
+7df4 247a0000 nrtn blank 
+7df5 680108f2 fetch 2 ,mem_usb_cnt 
+7df6 207a0000 rtn blank 
+7df7 1fe0ffff increase -1 ,pdata 
+7df8 600108f2 store 2 ,mem_usb_cnt 
+7df9 700ff001 jam send_mouse_data_cmd ,mem_mcmd 
+7dfa 20600000 rtn 
+
+right_shift_n:
+7dfb 1f267c00 sub loopcnt ,0 ,null 
+7dfc 20628000 rtn zero 
+
+right_shift_n_loop:
+7dfd 1fe37e00 rshift pdata ,pdata 
+7dfe c2007dfd loop right_shift_n_loop 
+7dff 20600000 rtn 
+
+push_stack:
+7e00 18a27e00 deposit contw 
+7e01 600102b9 store 2 ,mem_contw 
+7e02 600c02a0 storet 8 ,mem_temp 
+7e03 19627e00 deposit timeup 
+7e04 600202a8 store 4 ,mem_timeup 
+7e05 1a227e00 deposit rega 
+7e06 600202ac store 4 ,mem_rega 
+7e07 1a427e00 deposit regb 
+7e08 600202b0 store 4 ,mem_regb 
+7e09 1a627e00 deposit regc 
+7e0a 600182b4 store 3 ,mem_regc 
+7e0b 18c27e00 deposit contr 
+7e0c 600102b7 store 2 ,mem_contr 
+7e0d 20600000 rtn 
+
+pop_stack:
+7e0e 680c02a0 fetcht 8 ,mem_temp 
+7e0f 680202a8 fetch 4 ,mem_timeup 
+7e10 98001600 iforce timeup 
+7e11 680202ac fetch 4 ,mem_rega 
+7e12 98002200 iforce rega 
+7e13 680202b0 fetch 4 ,mem_regb 
+7e14 98002400 iforce regb 
+7e15 680182b4 fetch 3 ,mem_regc 
+7e16 98002600 iforce regc 
+7e17 680102b9 fetch 2 ,mem_contw 
+7e18 98000a00 iforce contw 
+7e19 680102b7 fetch 2 ,mem_contr 
+7e1a 98000c00 iforce contr 
+7e1b 20600000 rtn 
+
+save_cont_pointers:
+7e1c 18a27e00 copy contw ,pdata 
+7e1d 60010b7b store 2 ,mem_hold_contw 
+7e1e 18c27e00 copy contr ,pdata 
+7e1f 60010b79 store 2 ,mem_hold_contr 
+7e20 20600000 rtn 
+
+load_cont_pointers:
+7e21 68010b7b fetch 2 ,mem_hold_contw 
+7e22 1fe20a00 copy pdata ,contw 
+7e23 68010b79 fetch 2 ,mem_hold_contr 
+7e24 1fe20c00 copy pdata ,contr 
+7e25 20600000 rtn 
+
+delay_10ms:
+7e26 1c427e00 copy clkn_bt ,pdata 
+7e27 1fe0fe10 increase 16 ,pdata 
+7e28 1fe0fe10 increase 16 ,pdata 
+
+delay_ms_wait:
+7e29 1c420400 copy clkn_bt ,temp 
+7e2a 98467c00 isub temp ,null 
+7e2b 20217e29 branch delay_ms_wait ,positive 
+7e2c 20600000 rtn 
+
+memcpy48:
+7e2d e8c40000 ifetch 8 ,contr 
+7e2e e0a40000 istore 8 ,contw 
+7e2f e8c40000 ifetch 8 ,contr 
+7e30 e0a40000 istore 8 ,contw 
+
+memcpy32:
+7e31 e8c40000 ifetch 8 ,contr 
+7e32 e0a40000 istore 8 ,contw 
+
+memcpy24:
+7e33 e8c40000 ifetch 8 ,contr 
+7e34 e0a40000 istore 8 ,contw 
+
+memcpy16:
+7e35 e8c40000 ifetch 8 ,contr 
+7e36 e0a40000 istore 8 ,contw 
+7e37 e8c40000 ifetch 8 ,contr 
+7e38 e0a40000 istore 8 ,contw 
+7e39 20600000 rtn 
+
+bn_zero:
+7e3a 18007203 force 3 ,loopcnt 
+
+memset0:
+7e3b 18007e00 force 0 ,pdata 
+
+memset8:
+7e3c e0a40000 istore 8 ,contw 
+7e3d c2007e3c loop memset8 
+7e3e 20600000 rtn 
+
+clear_mem:
+7e3f 1f227e00 deposit loopcnt 
+7e40 207a0000 rtn blank 
+7e41 58000000 setarg 0 
+
+clear_mem_loop:
+7e42 e0a08000 istore 1 ,contw 
+7e43 c2007e42 loop clear_mem_loop 
+7e44 20600000 rtn 
+
+memcpy:
+7e45 1f227e00 deposit loopcnt 
+7e46 207a0000 rtn blank 
+
+memcpy_loop:
+7e47 e8c08000 ifetch 1 ,contr 
+7e48 e0a08000 istore 1 ,contw 
+7e49 c2007e47 loop memcpy_loop 
+7e4a 20600000 rtn 
+
+timer_stop:
+7e4b 58000000 setarg 0 
+
+timer_init:
+7e4c d8a0423e arg mem_timers ,contw 
+7e4d 98000400 iforce temp 
+7e4e 18e3fe00 lshift queue ,pdata 
+7e4f 98a08a00 iadd contw ,contw 
+7e50 e0a90000 istoret 2 ,contw 
+7e51 20600000 rtn 
+
+timer_reinit:
+7e52 d8e00000 arg 0 ,queue 
+
+timer_check:
+7e53 79200025 set1 mark_ext_patch ,mark 
+7e54 44de4037 bpatch patch37_4 ,mem_patch37 
+7e55 680a4134 fetcht 4 ,mem_last_clkn 
+7e56 1c437e00 rshift clkn_bt ,pdata 
+7e57 60024134 store 4 ,mem_last_clkn 
+7e58 98461600 isub temp ,timeup 
+7e59 19620400 copy timeup ,temp 
+7e5a d8c0423e arg mem_timers ,contr 
+7e5b 18c20a00 copy contr ,contw 
+7e5c df200010 arg 16 ,loopcnt 
+
+timer_loop:
+7e5d e8c10000 ifetch 2 ,contr 
+7e5e 98467e00 isub temp ,pdata 
+7e5f 20217e61 branch timer_counting ,positive 
+7e60 18007e00 force 0 ,pdata 
+
+timer_counting:
+7e61 e0a10000 istore 2 ,contw 
+7e62 c2007e5d loop timer_loop 
+7e63 d8c0423e arg mem_timers ,contr 
+7e64 18e3fe00 lshift queue ,pdata 
+7e65 98c08c00 iadd contr ,contr 
+7e66 e8c10000 ifetch 2 ,contr 
+7e67 20600000 rtn 
+
+lshift8_queue:
+7e68 18e08e01 increase 1 ,queue 
+
+lshift8_queue_loop:
+7e69 18e08fff increase -1 ,queue 
+7e6a 20628000 rtn zero 
+7e6b 1fed7e00 lshift8 pdata ,pdata 
+7e6c 20207e69 branch lshift8_queue_loop 
+
+clk_add:
+7e6d 98408400 iadd temp ,temp 
+7e6e 18427200 copy temp ,loopcnt 
+7e6f 58000ea6 setarg 3750 
+7e70 9f267e00 isub loopcnt ,pdata 
+7e71 20610000 rtn positive 
+7e72 1fe67e00 sub pdata ,0 ,pdata 
+7e73 18510400 rshift16 temp ,temp 
+7e74 18408401 increase 1 ,temp 
+7e75 18500400 lshift16 temp ,temp 
+7e76 98418400 ior temp ,temp 
+7e77 20600000 rtn 
+
+clk_diff_rt:
+7e78 20407e7a call clk_diff 
+7e79 20207e84 branch clk2rt 
+
+clk_diff:
+7e7a 78547c00 disable user 
+7e7b 98467e00 isub temp ,pdata 
+7e7c 20217e7f branch clk_diff_pos ,positive 
+7e7d 78347c00 enable user 
+7e7e 1fe67e00 sub pdata ,0 ,pdata 
+
+clk_diff_pos:
+7e7f c4078000 rtnbit0 15 
+7e80 d85f0ea6 arg -61786 ,temp 
+7e81 9840fe00 iadd temp ,pdata 
+7e82 793ffe40 set0 64 ,pdata 
+7e83 20600000 rtn 
+
+clk2rt:
+7e84 98000c00 iforce contr 
+7e85 1ff17e00 rshift16 pdata ,pdata 
+7e86 d8400ea6 arg 3750 ,temp 
+7e87 984ffe00 imul32 temp ,pdata 
+7e88 98c0fe00 iadd contr ,pdata 
+7e89 20600000 rtn 
+
+clk2lpo:
+7e8a 1fed7e00 lshift8 pdata ,pdata 
+7e8b 1ff27e00 lshift4 pdata ,pdata 
+7e8c 6809c210 fetcht 3 ,mem_clks_per_lpo 
+7e8d 9846fc00 idiv temp 
+7e8e 20407efd call wait_div_end 
+7e8f 18078400 quotient temp 
+7e90 20600000 rtn 
+
+clk2bt:
+7e91 d8400ea6 arg 3750 ,temp 
+7e92 9846fc00 idiv temp 
+7e93 20407efd call wait_div_end 
+7e94 1807fe00 quotient pdata 
+7e95 1ff07e00 lshift16 pdata ,pdata 
+7e96 18070400 remainder temp 
+7e97 98418400 ior temp ,temp 
+7e98 20600000 rtn 
+
+mem3_hex2string_to_uart:
+7e99 df200003 arg 3 ,loopcnt 
+7e9a 20207e9e branch hex2string_to_uart0 
+
+mem2_hex2string_to_uart:
+7e9b df200002 arg 2 ,loopcnt 
+7e9c 20207e9e branch hex2string_to_uart0 
+
+adss_hex2string_to_uart:
+7e9d df200006 arg 6 ,loopcnt 
+
+hex2string_to_uart0:
+7e9e ea208000 ifetch 1 ,rega 
+7e9f 1fe20400 copy pdata ,temp 
+7ea0 1ff1fe00 rshift4 pdata ,pdata 
+7ea1 20407eaa call dialog2uchar 
+7ea2 e1408000 istore 1 ,contwu 
+7ea3 18427e00 copy temp ,pdata 
+7ea4 1fe17e0f and pdata ,0xf ,pdata 
+7ea5 20407eaa call dialog2uchar 
+7ea6 e1408000 istore 1 ,contwu 
+7ea7 1a20a201 increase 1 ,rega 
+7ea8 c2007e9e loop hex2string_to_uart0 
+7ea9 20600000 rtn 
+
+dialog2uchar:
+7eaa 1fe67c09 sub pdata ,9 ,null 
+7eab 20217eae branch dialog2uchar0to9 ,positive 
+7eac 1fe0fe57 increase 87 ,pdata 
+7ead 20600000 rtn 
+
+dialog2uchar0to9:
+7eae 1fe0fe30 add pdata ,0x30 ,pdata 
+7eaf 20600000 rtn 
+
+string2dec_from_uart:
+7eb0 d8400000 arg 0 ,temp 
+
+string2dec_from_uart_done:
+7eb1 18422600 copy temp ,regc 
+7eb2 e8608000 ifetch 1 ,contru 
+7eb3 1fe67c2c sub pdata ,at_comma ,null 
+7eb4 20628000 rtn zero 
+7eb5 20407ec9 call uchar2dialog 
+7eb6 1a620400 copy regc ,temp 
+7eb7 20407f32 call swap 
+7eb8 da40000a arg 10 ,regb 
+7eb9 9a4ffe00 imul32 regb ,pdata 
+7eba 9840fe00 iadd temp ,pdata 
+7ebb 1fe20400 copy pdata ,temp 
+7ebc 20207eb1 branch string2dec_from_uart_done 
+
+mem2_string2hex_from_uart:
+7ebd df200002 arg 2 ,loopcnt 
+7ebe 20207ec0 branch string2hex_from_uart 
+
+adss_string2hex_from_uart:
+7ebf df200006 arg 6 ,loopcnt 
+
+string2hex_from_uart:
+7ec0 e8608000 ifetch 1 ,contru 
+7ec1 20407ec9 call uchar2dialog 
+7ec2 1ff22600 lshift4 pdata ,regc 
+7ec3 e8608000 ifetch 1 ,contru 
+7ec4 20407ec9 call uchar2dialog 
+7ec5 9a60fe00 iadd regc ,pdata 
+7ec6 e0a08000 istore 1 ,contw 
+7ec7 c2007ec0 loop string2hex_from_uart 
+7ec8 20600000 rtn 
+
+uchar2dialog:
+7ec9 d840003a arg 0x3a ,temp 
+7eca 98467c00 isub temp ,null 
+7ecb 24217ed2 nbranch uchar2dialog_number ,positive 
+7ecc d8400061 arg 0x61 ,temp 
+7ecd 98467c00 isub temp ,null 
+7ece 20217ed5 branch uchar2dialog_a2f ,positive 
+7ecf d8400037 arg 0x37 ,temp 
+7ed0 98467e00 isub temp ,pdata 
+7ed1 20600000 rtn 
+
+uchar2dialog_number:
+7ed2 d8400030 arg 0x30 ,temp 
+7ed3 98467e00 isub temp ,pdata 
+7ed4 20600000 rtn 
+
+uchar2dialog_a2f:
+7ed5 d8400057 arg 0x57 ,temp 
+7ed6 98467e00 isub temp ,pdata 
+7ed7 20600000 rtn 
+
+pn9:
+7ed8 18426000 copy temp ,alarm 
+7ed9 580001ff setarg 0x1ff 
+7eda 18002400 force 0 ,regb 
+
+pn9_loop:
+7edb 1fe92200 rshift3 pdata ,rega 
+7edc 1a232200 rshift rega ,rega 
+7edd 9a22a200 ixor rega ,rega 
+7ede 2a2ffe00 isolate1 0 ,rega 
+7edf 7920fe09 setflag true ,9 ,pdata 
+7ee0 18430400 rshift temp ,temp 
+7ee1 2feffe00 isolate1 0 ,pdata 
+7ee2 79208407 setflag true ,7 ,temp 
+7ee3 1fe37e00 rshift pdata ,pdata 
+7ee4 1a40a401 increase 1 ,regb 
+7ee5 2a400e00 compare 0 ,regb ,0x7 
+7ee6 2420fedb nbranch pn9_loop ,true 
+7ee7 e0a88000 istoret 1 ,contw 
+7ee8 c2007edb loop pn9_loop 
+7ee9 1e020400 copy alarm ,temp 
+7eea 20600000 rtn 
+
+bcd_byte:
+7eeb 1fe6fc0a div pdata ,10 
+7eec 20407efd call wait_div_end 
+7eed 1807fe00 quotient pdata 
+7eee 1feba200 lshift2 pdata ,rega 
+7eef 1a2ba200 lshift2 rega ,rega 
+7ef0 18077e00 remainder pdata 
+7ef1 9a21fe00 ior rega ,pdata 
+7ef2 20600000 rtn 
+
+bcd_pack:
+7ef3 2a2ffe00 isolate1 0 ,rega 
+7ef4 2020fef7 branch bcd_pack_hi ,true 
+7ef5 98002400 iforce regb 
+7ef6 20600000 rtn 
+
+bcd_pack_hi:
+7ef7 1febfe00 lshift2 pdata ,pdata 
+7ef8 1febfe00 lshift2 pdata ,pdata 
+7ef9 9a41fe00 ior regb ,pdata 
+7efa e0a08000 istore 1 ,contw 
+7efb 18a08bfe increase -2 ,contw 
+7efc 20600000 rtn 
+
+wait_div_end:
+7efd 207a8000 rtn modone 
+7efe 20207efd branch wait_div_end 
+
+bcd2:
+7eff 60040161 store 8 ,mem_pdatatemp 
+7f00 18007e20 force 0x20 ,pdata 
+7f01 18007208 force 8 ,loopcnt 
+7f02 d8a00028 arg mem_bcd ,contw 
+
+lpo_clear:
+7f03 e0a08000 istore 1 ,contw 
+7f04 c2007f03 loop lpo_clear 
+7f05 d8a00028 arg mem_bcd ,contw 
+7f06 18a08a07 increase 7 ,contw 
+7f07 68040161 fetch 8 ,mem_pdatatemp 
+
+bcd_loop:
+7f08 1fe6fc0a div pdata ,10 
+7f09 20407efd call wait_div_end 
+7f0a 18077e00 remainder pdata 
+7f0b 1fe1fe30 or_into 0x30 ,pdata 
+7f0c e0a08000 istore 1 ,contw 
+7f0d 18a08bfe increase -2 ,contw 
+7f0e 1807fe00 quotient pdata 
+7f0f 207a0000 rtn blank 
+7f10 20207f08 branch bcd_loop 
+
+bcd:
+7f11 60040161 store 8 ,mem_pdatatemp 
+7f12 18007e00 force 0 ,pdata 
+7f13 60040028 store 8 ,mem_bcd 
+7f14 d8a00028 arg mem_bcd ,contw 
+7f15 18a08a07 increase 7 ,contw 
+7f16 68040161 fetch 8 ,mem_pdatatemp 
+7f17 18002200 force 0 ,rega 
+
+bcd_pack_loop:
+7f18 1fe6fc0a div pdata ,10 
+7f19 20407efd call wait_div_end 
+7f1a 18077e00 remainder pdata 
+7f1b 20407ef3 call bcd_pack 
+7f1c 1a20a201 increase 1 ,rega 
+7f1d 1807fe00 quotient pdata 
+7f1e 1fe67c09 sub pdata ,9 ,null 
+7f1f 24217f18 nbranch bcd_pack_loop ,positive 
+7f20 20407ef3 call bcd_pack 
+7f21 2a2ffe00 isolate1 0 ,rega 
+7f22 20608000 rtn true 
+7f23 e0a08000 istore 1 ,contw 
+7f24 20600000 rtn 
+
+string_compare:
+7f25 ea208000 ifetch 1 ,rega 
+7f26 ea488000 ifetcht 1 ,regb 
+7f27 98467c00 isub temp ,null 
+7f28 24628000 nrtn zero 
+7f29 1a20a201 increase 1 ,rega 
+7f2a 1a40a401 increase 1 ,regb 
+7f2b c2007f25 loop string_compare 
+7f2c 18007c00 force 0 ,null 
+7f2d 20600000 rtn 
+
+ceiling:
+7f2e 98467c00 isub temp ,null 
+7f2f 24610000 nrtn positive 
+7f30 18427e00 deposit temp 
+7f31 20600000 rtn 
+
+swap:
+7f32 9840fe00 iadd temp ,pdata 
+7f33 98460400 isub temp ,temp 
+7f34 98467e00 isub temp ,pdata 
+7f35 20600000 rtn 
+
+clean_mem:
+7f36 df200200 arg 0x200 ,loopcnt 
+7f37 d8a04000 arg 0x4000 ,contw 
+7f38 20207e3b branch memset0 
+
+slave_savelist:
+7f39 6802809c fetch 5 ,mem_sync_clke 
+7f3a 60028161 store 5 ,mem_pdatatemp 
+7f3b 68014210 fetch 2 ,mem_clks_per_lpo 
+7f3c e0a10000 istore 2 ,contw 
+7f3d 58000000 setarg 0 
+7f3e 7936fe07 setflag match ,7 ,pdata 
+7f3f 7935fe06 setflag wake ,6 ,pdata 
+7f40 792c7e05 setflag sync ,5 ,pdata 
+7f41 79377e04 setflag attempt ,4 ,pdata 
+7f42 e0a08000 istore 1 ,contw 
+7f43 20207f52 branch savelist_2 
+
+le_savelist:
+7f44 6802809c fetch 5 ,mem_sync_clke 
+7f45 60028161 store 5 ,mem_pdatatemp 
+7f46 68008016 fetch 1 ,mem_le_ch_mapped 
+7f47 e0a08000 istore 1 ,contw 
+7f48 680103da fetch 2 ,mem_le_event_count 
+7f49 d8c00fff arg 0x0fff ,contr 
+7f4a 98c17e00 iand contr ,pdata 
+7f4b 7936fe0f setflag match ,15 ,pdata 
+7f4c 7935fe0e setflag wake ,14 ,pdata 
+7f4d 792c7e0d setflag sync ,13 ,pdata 
+7f4e 79377e0c setflag attempt ,12 ,pdata 
+7f4f e0a10000 istore 2 ,contw 
+7f50 20207f52 branch savelist_2 
+
+savelist:
+7f51 60040161 store 8 ,mem_pdatatemp 
+
+savelist_2:
+7f52 6800c16e fetch 1 ,mem_seqi 
+7f53 c13f8000 rtneq 0x7f 
+7f54 1fe17e7f and_into 0x7f ,pdata 
+7f55 1fe9fe00 lshift3 pdata ,pdata 
+7f56 d8a04c00 arg mem_savelist ,contw 
+7f57 98a08a00 iadd contw ,contw 
+7f58 68040161 fetch 8 ,mem_pdatatemp 
+7f59 e0a40000 istore 8 ,contw 
+7f5a 6800c16e fetch 1 ,mem_seqi 
+7f5b 2feffe07 isolate1 7 ,pdata 
+7f5c 1fe0fe01 increase 1 ,pdata 
+7f5d 1fe17e7f and_into 0x7f ,pdata 
+7f5e 7920fe07 setflag true ,7 ,pdata 
+7f5f 6000c16e store 1 ,mem_seqi 
+7f60 68040161 fetch 8 ,mem_pdatatemp 
+7f61 20600000 rtn 
+
+dirty_mem:
+7f62 df200800 arg 0x800 ,loopcnt 
+7f63 d8a00000 arg 0 ,contw 
+7f64 59010101 setarg 0x01010101 
+7f65 20207e3c branch memset8 
+
+callback_func:
+7f66 207a0000 rtn blank 
+7f67 1fe27a00 copy pdata ,pc 
+
+wait_uarttx:
+7f68 6811010e hfetch 2 ,core_uart_txitems 
+7f69 243a7f68 nbranch wait_uarttx ,blank 
+7f6a 20600000 rtn 
+
+get_uart_rrptr:
+7f6b 68110058 hfetch 2 ,core_uart_rrptr 
+7f6c 1fe20600 copy pdata ,contru 
+7f6d 20600000 rtn 
+
+get_uart_twptr:
+7f6e 6811005e hfetch 2 ,core_uart_twptr 
+7f6f 1fe21400 copy pdata ,contwu 
+7f70 20600000 rtn 
+
+send_mem_to_uart:
+7f71 18c22200 copy contr ,rega 
+7f72 20407f6e call get_uart_twptr 
+7f73 1a220c00 copy rega ,contr 
+
+send_mem_to_uart0:
+7f74 20404976 call uart_copy_tx_bytes 
+7f75 204068fa call uartd_send 
+7f76 20207f68 branch wait_uarttx 
+
+ice_break:
+7f77 70820301 hjam 0x1 ,core_ice_ctrl 
+7f78 20600000 rtn 
+
+ice_setbp:
+7f79 60110205 hstore 2 ,core_ice_break0 
+7f7a 68108203 hfetch 1 ,core_ice_ctrl 
+7f7b 79207e04 set1 4 ,pdata 
+7f7c 60108203 hstore 1 ,core_ice_ctrl 
+7f7d 20600000 rtn 
+
+ice_setbp2:
+7f7e 60110207 hstore 2 ,core_ice_break1 
+7f7f 68108203 hfetch 1 ,core_ice_ctrl 
+7f80 79207e06 set1 6 ,pdata 
+7f81 60108203 hstore 1 ,core_ice_ctrl 
+7f82 20600000 rtn 
+
+ice_set_write_bp:
+7f83 60110205 hstore 2 ,core_ice_break0 
+7f84 70820330 hjam 0x30 ,core_ice_ctrl 
+7f85 20600000 rtn 
+
+test_no_white:
+7f86 68108043 hfetch 1 ,core_config 
+7f87 79207e04 set1 whiteoff_bit ,pdata 
+7f88 60108043 hstore 1 ,core_config 
+7f89 20600000 rtn 
+
+test_enable_white:
+7f8a 68108043 hfetch 1 ,core_config 
+7f8b 793ffe04 set0 whiteoff_bit ,pdata 
+7f8c 60108043 hstore 1 ,core_config 
+7f8d 20600000 rtn 
+
+check_uart_tx_buff:
+7f8e 6811010e hfetch 2 ,core_uart_txitems 
+7f8f d8400200 arg uart_air_control_threshold ,temp 
+
+pdata_sub_temp:
+7f90 98467c00 isub temp ,null 
+7f91 20600000 rtn 
+
+fifo_in:
+7f92 79200025 set1 mark_ext_patch ,mark 
+7f93 44dec037 bpatch patch37_5 ,mem_patch37 
+7f94 ea2a8000 ifetcht util_fifo_len ,rega 
+7f95 18417eff and temp ,0xff ,pdata 
+7f96 243a7f99 nbranch fifo_in_push ,blank 
+7f97 184cfe00 rshift8 temp ,pdata 
+7f98 e2228000 istore util_fifo_len ,rega 
+
+fifo_in_push:
+7f99 1a20a204 increase util_fifo_len + util_fifo_offset ,rega 
+7f9a ea208000 ifetch 1 ,rega 
+7f9b 243a3bf1 nbranch assert ,blank 
+7f9c 68008b7d fetch 1 ,mem_fifo_temp 
+7f9d e2208000 istore 1 ,rega 
+7f9e 20600000 rtn 
+
+fifo_out:
+7f9f 79200025 set1 mark_ext_patch ,mark 
+7fa0 44df4037 bpatch patch37_6 ,mem_patch37 
+7fa1 df200005 arg util_fifo_len ,loopcnt 
+7fa2 ea228000 ifetch util_fifo_len ,rega 
+7fa3 207a0000 rtn blank 
+
+fifo_out_loop:
+7fa4 ea208000 ifetch 1 ,rega 
+7fa5 243a7fa9 nbranch fifo_out_end ,blank 
+7fa6 1a20a201 increase 1 ,rega 
+7fa7 c2007fa4 loop fifo_out_loop 
+7fa8 20203bf1 branch assert 
+
+fifo_out_end:
+7fa9 d8400000 arg 0 ,temp 
+7faa e2288000 istoret 1 ,rega 
+7fab 20600000 rtn 
+
+fifo_is_empty:
+7fac ea228000 ifetch util_fifo_len ,rega 
+7fad 20600000 rtn 
+
+fifo_is_full:
+7fae ea208000 ifetch 1 ,rega 
+7faf 20600000 rtn 
+
+fifo_is_near_full:
+7fb0 ea210000 ifetch 2 ,rega 
+7fb1 20600000 rtn 
+
+fifo_content_count:
+7fb2 d8400000 arg 0 ,temp 
+
+fifo_content_count_loop:
+7fb3 68008006 fetch 1 ,contr 
+7fb4 c2007fb3 loop fifo_content_count_loop ,blank 
+7fb5 18408401 increase 1 ,temp 
+7fb6 c2007fb3 loop fifo_content_count_loop 
+7fb7 18427e00 copy temp ,pdata 
+7fb8 20600000 rtn 
+
+not_greater_than:
+7fb9 98467c00 isub temp ,null 
+7fba 24610000 nrtn positive 
+7fbb 18427e00 copy temp ,pdata 
+7fbc 20600000 rtn 
+
Index: btkb/output/ramcode.rom
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/btkb/output/ramcode.rom	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/btkb/output/ramcode.rom	(working copy)
@@ -0,0 +1,1996 @@
+c512801a
+c0000045
+c0018049
+c0028055
+c0030300
+c0050321
+c0138325
+c0140337
+c015833d
+c0210348
+c021834c
+c0280354
+c02a0363
+c0188041
+c019803e
+c048020e
+c04901d8
+c04a01de
+c04a81c8
+c05802fe
+c058818c
+c05901a0
+c05981ba
+c05b01c3
+c05c8194
+20203bf1
+c00c036f
+c00d8377
+c0118396
+c01203b2
+c0190430
+c01dd3b0
+c01f0273
+c01f8277
+c025047c
+c0258429
+c0260433
+c0270439
+c02b0440
+c0308447
+c031844c
+c0320470
+c03284a6
+c0348602
+c03505ed
+c03585ef
+c037060d
+c0378487
+c0438127
+c0468292
+c04702ab
+c047827b
+c05e8289
+c066821b
+c0678133
+c0680148
+c04e03b6
+c04f83cc
+c07103d9
+c07183eb
+c0730403
+20203bf1
+da204040
+18007201
+20203305
+d8a04040
+df20000a
+20407e3b
+202032d8
+6810813b
+60008b81
+70800608
+20203003
+204000d7
+204000c9
+2040005a
+2040004e
+20203015
+680947f4
+6800c3d8
+7d3a040b
+6800c133
+7d3a0406
+600947f4
+20600000
+20403392
+20403407
+20403024
+2040062e
+20203022
+6800c7dc
+203a005e
+6800c793
+207a0000
+20400122
+20740000
+1ff0fe00
+1fe20c00
+20400103
+6000cba7
+c0008073
+c003007d
+1fe20400
+18c22200
+6800c040
+c3000070
+1a220c00
+c6848000
+18427e00
+c001807f
+c002809d
+20203bf1
+1a220c00
+d8a000f8
+202000fb
+20400103
+20400103
+60008b7d
+20400078
+20207c33
+20400106
+18c20400
+18508400
+60094b9a
+20600000
+d8a04d34
+202000fb
+20400103
+1fe22200
+18c27e00
+600102b7
+2040527c
+243a0088
+1a20a201
+20404b2c
+2020008d
+d8a04bad
+1a227200
+680102b7
+1fe20c00
+202000fd
+18a0a5fe
+680142b7
+e0a10000
+580000a1
+e0a08000
+1a20f3ff
+680102b7
+1fe20c00
+204000fd
+1a420c00
+e8c10000
+60014c7b
+1fe0f202
+20407e45
+704c7a64
+20600000
+18c22200
+6800cba9
+1fe08401
+18410403
+6008cba9
+1feffe07
+d8a04bad
+98a08a00
+1a220c00
+20400103
+18c22200
+1fe0ffff
+1fe27200
+1fe0fe07
+6000cc62
+1a220c00
+20400103
+18c22200
+c00080b5
+c00100bd
+c00180bf
+c00200c5
+c00300c1
+c00400c3
+68014c91
+e0a10000
+1a220c00
+204000fd
+2040561e
+247a0000
+700b7d1b
+20205620
+68014c93
+202000b6
+68014c95
+202000b6
+68014c99
+202000b6
+68014c99
+202000b6
+68014c97
+e0a10000
+1a220c00
+202000fd
+680a4d28
+1c427e00
+98467e00
+68094d2c
+9846fc00
+20407efd
+1807fe00
+207a0000
+1c420400
+600a4d28
+6800cd2e
+1fe0fe01
+6000cd2e
+20600000
+680a4c3a
+1c427e00
+98467e00
+d8400640
+9846fc00
+20407efd
+1807fe00
+207a0000
+1c420400
+600a4c3a
+68094ba5
+18508400
+9840fe00
+1ff0fe00
+60014ba5
+1ff0fe00
+1fe17e03
+c1800000
+708971af
+68108053
+79207e07
+60108053
+68108973
+1fe1fe30
+60108973
+70890674
+7089067c
+708972aa
+20001388
+68190150
+68108053
+793ffe07
+60108053
+18508400
+60094c75
+20600000
+20400103
+1fe27200
+204000ff
+20200078
+20400103
+e0a08000
+c20000ff
+20600000
+20400106
+e8c08000
+20600000
+58004b36
+98c67c00
+24628000
+d8c04aa0
+20600000
+df200003
+d8c04ba2
+18c22200
+68014ba0
+1ff0fe00
+1fe20a00
+1a220c00
+e8c08000
+e0a08000
+2040011a
+c2000112
+18a27e00
+1ff0fe00
+60014ba0
+20600000
+58004b9a
+98a67c00
+24628000
+d8a04b36
+20600000
+68014b9e
+68094ba0
+20200124
+68014b9a
+68094b9c
+98467c00
+2022e9b1
+2020320b
+1c427e00
+60024d24
+6808c7ef
+6800cd27
+98467c00
+2441012e
+20207c06
+680a4d24
+600a47ec
+600a4c3a
+600a4d28
+20600000
+da2047df
+20407f9f
+207a0000
+1fe22600
+20400139
+20203ea5
+c10c0000
+c00a061f
+c00a8624
+c0036614
+c001013f
+20203e7d
+70429d00
+680147f4
+c283bf08
+2fec0001
+20408145
+20203f08
+68008450
+c1010000
+20203e7b
+60088259
+6800cc6d
+1fe0fe01
+6000cc6d
+68008259
+207a0000
+1fe0ffff
+60008259
+20400168
+2040016f
+20400154
+2020014c
+6800cc9d
+247a0000
+6800cc7a
+207a0000
+1fe0ffff
+6000cc7a
+c1808000
+704c7a64
+680147f4
+c4028000
+68014c7b
+207a0000
+2040527e
+247a0000
+68014c7b
+1fe22200
+20404b2c
+1a20f202
+d8c04c7d
+20207e45
+6800c7f2
+207a0000
+1fe0ffff
+6000c7f2
+247a0000
+20403ebd
+20204b22
+6800cc0b
+207a0000
+1fe0ffff
+6000cc0b
+20600000
+1a627e00
+1fe17ef0
+c1280000
+2040017c
+1a627e00
+207a0000
+6000cba4
+2020010b
+1a627e00
+c0058180
+c0010188
+20600000
+704c7a28
+5800000a
+60014c7b
+680142b7
+e0a10000
+580001a1
+e0a10000
+20600000
+704c7a00
+df200014
+d8a04c7b
+20207e3f
+70416e7f
+20403cf3
+6800cc77
+207a0000
+704c7700
+1c427e00
+60024c3a
+20600000
+6800c219
+247a0000
+70804206
+58000f0c
+20403da7
+58030d40
+20403bf3
+37d98200
+1e226000
+20403b36
+20001388
+20203d9d
+c6118000
+680147f4
+c284bd1e
+20403cab
+6801c210
+207a0000
+6800c131
+207a0000
+2040527e
+247a0000
+20403dca
+247a0000
+20403b36
+6800c7dc
+203a3d25
+6800c793
+207a0000
+20203d25
+20400122
+24740000
+2040011f
+24740000
+700b7f01
+700b7e01
+204001bf
+20200122
+204001b2
+24740000
+68008b7f
+247a0000
+20203d2d
+68008b7e
+2000000a
+c08001bf
+20600000
+204001b2
+24740000
+68008b7f
+247a0000
+20203d4f
+204001ca
+20203aaf
+6800c219
+243a01d0
+20403d91
+20007530
+20007530
+20007530
+20403b0a
+70804204
+6810896b
+1fe17ecf
+6010896b
+1fe1fe30
+6010896b
+20600000
+60088017
+1840a204
+20203a86
+60088017
+1840a200
+20203ab6
+204001db
+58000500
+20403bf3
+70890601
+7089003c
+708901e0
+70896d12
+2000000a
+70890201
+7089023d
+2000000a
+708903b7
+2000000a
+7089027d
+6800cbef
+c0ff81f6
+6802ca91
+e0a28000
+e8c28000
+e0a28000
+708956df
+204001fd
+708955df
+20600000
+6802ca87
+e0a28000
+e8c28000
+e0a28000
+708956c2
+708955d0
+20600000
+20000004
+708955d1
+20000004
+708955d2
+20000004
+708955d4
+20000004
+20600000
+708955d4
+20000004
+708955d2
+20000004
+708955d1
+20000004
+708955d0
+708956c0
+20600000
+2030ba6f
+20400205
+20203a6f
+2040527c
+247a0000
+2020005a
+78347c00
+68120138
+79347e1a
+6012004c
+20403db0
+7000a201
+20600000
+6800c419
+1fe0fe02
+6000c3f9
+700b7e00
+70017706
+20403fa4
+58000211
+6001428e
+5800021a
+6001428a
+58000174
+60014292
+5800027a
+60014290
+5800005a
+6001428c
+58000214
+60014288
+58004aa0
+1ff0fe00
+60014b9a
+60014b9c
+20403e0b
+58004b36
+1ff0fe00
+60014b9e
+60014ba0
+6800cc77
+c02d024e
+2035824c
+68014c71
+1ff0fe00
+60014c71
+68014c73
+1ff0fe00
+60014c73
+20400259
+680402a0
+243a0246
+68014ad4
+1ff0fe00
+203a0246
+60014c73
+2040062b
+704ba42f
+2040010b
+704c7700
+70828003
+20600000
+704ba430
+20200248
+1ce27e00
+203a0281
+20405b63
+20404d99
+58000000
+60044040
+600147f4
+1c427e00
+60024c3a
+704ba433
+20200248
+2040688a
+580007e0
+da2002a0
+d840000e
+204068d3
+2040688d
+680082a0
+c2803bf1
+680402a2
+207a0000
+680902a4
+680102aa
+18422400
+1fe22200
+98462600
+1a6b2600
+1a427e00
+9a667e00
+1ff0fe00
+60014c71
+1a63a600
+1a227e00
+9a667e00
+1ff0fe00
+60014c73
+20600000
+70001627
+70890f36
+70890b5f
+202053d4
+70890f2e
+70890bff
+202053d9
+20600000
+68014ba0
+60014b9e
+68014b9c
+60014b9a
+700b7e03
+204001bf
+704c775a
+20403db8
+68120138
+793ffe0f
+6012004c
+20403db0
+d85fffff
+20203cda
+ea2a8000
+18417eff
+243a028e
+184cfe00
+e2228000
+1a20a204
+ea208000
+247a0000
+20207f9c
+20407c20
+da2047e4
+20407f9f
+1fe20400
+20407c24
+18427e00
+207a0000
+c01082a4
+c01102a6
+c01186c1
+c00082e6
+c00682c1
+c01602c0
+c01582cc
+c00182e9
+c01502f2
+c0097c85
+20207c5a
+704befff
+202006f4
+793f8023
+704befff
+202006ac
+700b7d22
+20205620
+6800807c
+203a02b0
+204061d9
+6800807c
+243a7c8c
+68008b7d
+c584fc87
+c00202b6
+c00882a9
+c01402bc
+20207c7b
+680147f4
+c30182b9
+20207ca4
+5800000a
+60020051
+20207ca4
+70007c37
+68014c78
+60010051
+20600000
+204002e6
+20403eff
+20407cd5
+70413100
+180a7e00
+6000c4f9
+7043dc05
+58181203
+6001c3e2
+d8400007
+204002d2
+20207cae
+7043dc04
+580000ff
+6001c3e2
+d8400000
+204002d2
+20207cae
+6800c3f9
+9840fe00
+1fe0fe0b
+1fe67c1f
+242102e2
+6000c3d9
+d8a043e5
+18427e00
+245a02df
+6800c3f9
+1fe27200
+d8c043fa
+20207e45
+1fe27200
+d8c04d48
+20207e45
+6800c3f9
+1fe0fe0b
+6000c3d9
+20600000
+20403eff
+70017706
+20207c97
+20403bfa
+20404d98
+20405b62
+70017706
+6800c7dc
+c00002f0
+70017717
+70425e01
+20207ca2
+680147f4
+c284bf90
+c28002fb
+c283fcd5
+c51186ac
+7043d800
+20403f7e
+700b7d37
+20207c27
+20403eff
+20407cd5
+20203f77
+20403b36
+20203cdc
+20400302
+2020302c
+da600304
+20203301
+c300b307
+2040333d
+20400311
+98467e00
+1fe0fe01
+2021030b
+20203325
+98002400
+1a208c02
+e8c10000
+203a3327
+20403349
+20200305
+1ff11600
+196c9600
+2022831b
+29601e0f
+24608000
+18511600
+196c9600
+24628000
+7920041c
+20600000
+18511600
+196c9600
+29601e0f
+24608000
+79207e1c
+20600000
+600c02a0
+20407e53
+680c02a0
+2020307c
+78547c00
+68010032
+d840ffff
+98467c00
+24628000
+68020034
+2038032e
+9d067e00
+2020032f
+9c467e00
+1fe67c04
+24610000
+18007e00
+60010032
+202034df
+700b7d20
+20407c27
+20200338
+600a0034
+70474801
+5800ffff
+60010032
+70007301
+20600000
+20403baa
+20400340
+20203267
+1c40c201
+20403a54
+18004803
+20403a42
+20403bae
+20403bb4
+20403bc5
+2020375c
+20403e25
+20406dec
+204035d6
+20203480
+20403d61
+20403be2
+20213498
+20403204
+24343498
+20403812
+243a0349
+20600000
+204032df
+2422b568
+68008047
+c301b571
+6800c165
+c009b562
+68014c24
+1fe67c14
+24213562
+60010091
+6800cc23
+60008090
+58004c26
+60010179
+20203562
+68010091
+60014c24
+1fe67c14
+2421358f
+98007200
+68008090
+6000cc23
+68010179
+98000c00
+d8a04c26
+20407e45
+2020358f
+680102cd
+203a4dfc
+680082cf
+c0008374
+20204dbb
+2040527a
+247a0000
+20204dc3
+e8c08000
+c005037a
+20204e14
+e8c08000
+1fe20e00
+e8c10000
+1fe22200
+1a627e00
+9a262600
+5800000b
+e0a08000
+18e27e00
+e0a08000
+e8c10000
+c0010388
+c001838f
+20203bf1
+58020008
+e0a30000
+58000200
+e0a20000
+18007e0c
+9a40a400
+20204e20
+5803000c
+e0a30000
+58000006
+e0a40000
+18007e10
+9a40a400
+20204e20
+204052c4
+18002400
+204052d0
+1fe20a00
+680102cd
+1fe22600
+680102cb
+98000c00
+204003a0
+20205110
+e8c08000
+c00503a3
+20205116
+e8c08000
+1fe20e00
+e8c10000
+1fe22200
+e8c10000
+600102a0
+1a627e00
+9a262600
+204052d0
+5800000b
+e0a08000
+18e27e00
+e0a08000
+680102a0
+20200385
+da400000
+2040527a
+247a0000
+2020524d
+680102cb
+1fe20c00
+e8c08000
+1fe1040f
+1ff1fe00
+c00503c9
+c00283c7
+c00083c0
+c0024b18
+20204aff
+18427e00
+c002cb09
+704c9d01
+c001cb18
+704c9d00
+c0024b18
+20600000
+204003c9
+20204b11
+e8c08000
+c0008426
+20600000
+2040527a
+247a0000
+204003d0
+20206dfd
+6800c132
+c1008000
+6800c3cd
+207a0000
+1fe22200
+7043cd00
+1a227e00
+c0284ddc
+20600000
+6800807d
+c00183dd
+c00383e8
+20205b92
+680084df
+60008445
+c0098334
+c01983e2
+20205c58
+6800844d
+79207e00
+6000844d
+700b7d01
+20407c27
+20205c83
+680084df
+60008446
+20205cf3
+78547c00
+204061d9
+68008048
+207a0000
+c283df10
+c00103f3
+c0038400
+20205ee0
+18007e11
+204061b5
+68008049
+1fe20400
+c00003fb
+c00703fb
+c00e03fb
+20600000
+e0a08000
+6800c702
+e0a08000
+5800000e
+20205fa6
+20406055
+70007264
+20600000
+6800807c
+203a0408
+204061d9
+6800807c
+247a0000
+68008055
+207a0000
+c0030417
+c008040d
+2020623e
+6800c748
+c1000000
+c0008415
+d8e0000a
+20407e53
+247a0000
+70474800
+2020629b
+20748000
+20200417
+68008177
+c281629b
+c280041a
+6800c25e
+203a62c7
+6800844d
+c4018000
+c4010000
+68020465
+d8400320
+98408400
+1c427e00
+98467c00
+24610000
+20206267
+e8c08000
+6000cc90
+20600000
+204054bd
+68088017
+20403a82
+20403a87
+78287c00
+d960157c
+2020547f
+70443e01
+70443f00
+2020534e
+204053dd
+20400436
+202054c1
+203681e1
+204053ee
+20203a91
+6800cc40
+600246f9
+6800c4db
+c000843e
+202054e0
+7044db00
+202054ef
+680083c0
+c4028000
+680103da
+680903e0
+98467e00
+24610000
+2020557e
+680083d7
+c3828000
+68008341
+203a5626
+20205890
+6800c440
+c0038465
+c0078469
+c0030458
+c0010455
+c0098453
+2020563a
+18000401
+20205892
+5800000a
+600103ef
+20205693
+700b7d12
+20407c33
+18000401
+2034d892
+700b7d34
+20407c27
+6800cc49
+c0010461
+20200463
+700b7d46
+20405620
+18000401
+20205892
+6800cc48
+e0a08000
+18000402
+20205892
+18a08bff
+68044c4c
+e0a40000
+e8c40000
+e0a40000
+18000202
+2020588a
+6800c444
+c004d719
+c0010475
+c003d70d
+20205656
+59000302
+6001c4b5
+58000001
+e0a08000
+58010010
+e0a18000
+202056f1
+09800018
+78287c00
+db600664
+1fef7e00
+1ff17e00
+e0a18000
+2023375c
+7836fc00
+68008017
+1fe0a200
+202054af
+e8c18000
+600183f9
+c029048d
+c00104a4
+c0090493
+20205907
+704d1701
+680103fa
+c0108491
+202059ed
+d8c00349
+20200426
+680103fa
+1fe67c21
+20428491
+680103fa
+1fe67c31
+204284a2
+680103fa
+68094c99
+18408401
+98467c00
+2022849f
+202059ca
+700b7d34
+20407c27
+202059ca
+70413101
+20600000
+700b7d03
+20205620
+6800c444
+c00d85df
+c00e85df
+c0088573
+c0048525
+c0028513
+c00384c7
+c009d85c
+c00184b7
+c00584ba
+c00684b2
+20205666
+680103fa
+c00384b5
+202057d6
+7003fc07
+20205729
+68014c4a
+e0a10000
+2020588a
+680103fa
+c0185728
+c00704be
+202057c6
+6800cc49
+c08057c6
+6800cc5c
+c001d7c6
+18a20400
+704c4901
+18420a00
+7003fc05
+20205729
+2040577b
+20740000
+680944c0
+58001812
+98467c00
+202284e0
+5800180f
+98467c00
+202284e2
+5800180a
+98467c00
+202284e6
+58001801
+98467c00
+202284e4
+20205754
+6800cc5f
+d8400000
+f9200400
+98417e00
+c0805728
+6800cc5f
+f9207e00
+6000cc5f
+202004e8
+d8e00000
+202004d7
+d8e00001
+202004d7
+d8e00003
+202004d7
+d8e00002
+202004d7
+680144c0
+1fe22200
+680944c4
+18422400
+204004ef
+202284fa
+20205728
+d8c04504
+e8c10000
+207a0000
+e8c18000
+e8c10000
+9a267c00
+20628000
+18c08dfd
+e8c08000
+98c08c00
+202004f0
+18c08df9
+e8c10000
+60014c41
+20400508
+203a5728
+18c08dfc
+e8c10000
+1fe0ffff
+60014c43
+70444407
+68024c41
+60024445
+18000409
+20205892
+e8c10000
+e8c08000
+98c08c00
+e8c10000
+207a0000
+e8c10000
+9a467c00
+20628000
+e8c08000
+98c08c00
+2020050b
+d9600003
+18007e01
+6000c445
+20405a74
+20405a7d
+203a5746
+24210523
+78547c00
+e0a10000
+e8c10000
+e0a10000
+196097ff
+2022d746
+e8c08000
+98c08c00
+20200517
+18c08c02
+20200520
+680944c0
+58002a00
+98467c00
+20228565
+58002a50
+98467c00
+20228570
+58002803
+98467c00
+2422d728
+680144bc
+600102a0
+78347c00
+204005b7
+24210541
+680902a0
+204005bf
+c0008541
+204005bb
+2422853f
+78547c00
+20400543
+204005a5
+204005bf
+2040054b
+20200541
+204005a5
+20200532
+20345728
+202005dd
+680102a0
+60014446
+6800cc47
+1fe27200
+204005d4
+d8a04448
+20407e45
+202005d7
+68094c45
+184cfe00
+c082855d
+204005d1
+680102a0
+e0a10000
+204005d7
+58004504
+98408c00
+e8c08000
+18c20400
+1fe27200
+1fe0fe05
+6000c445
+204005d1
+18420c00
+20407e45
+202005d7
+204005d1
+680102a0
+e0a10000
+68014c45
+e0a10000
+204005d7
+70444507
+20600000
+20405b08
+e8c08000
+1fe27200
+1fe0fe02
+6000c445
+18c08dfb
+e8c10000
+e0a10000
+18c08c03
+20407e45
+2020588a
+d8402a50
+20405b0c
+20200566
+d9600002
+680144bc
+600102a0
+700d5c00
+78347c00
+204005b7
+2421059b
+680902a0
+204005bf
+c000859e
+204005bb
+24228597
+68008d5c
+c000859e
+24340588
+78547c00
+6800cc47
+1fe0fe04
+6000c445
+204005d7
+20200592
+6800cc47
+1fe67c10
+2022859e
+6800c445
+1fe67c10
+2022859e
+680102a0
+1fe0ffff
+60010d5a
+204005ae
+680102a0
+60010d58
+204005a9
+196097ff
+20228599
+204005a5
+20200578
+700d5c01
+20200597
+680102a0
+60010d5a
+202005a2
+680102a0
+1fe0ffff
+60010d5a
+202005a2
+20345728
+204005ae
+202005dd
+680902a0
+18408401
+600902a0
+20600000
+6800cc47
+60008103
+1fe27200
+204005d4
+20207e45
+204005d1
+68010d58
+e0a10000
+68010d5a
+e0a10000
+68008103
+1fe27200
+20407e45
+202005d7
+680902a0
+680144be
+98467c00
+20600000
+680144c0
+68094c45
+98467c00
+20600000
+d8c04504
+18422200
+e8c10000
+203a05ca
+e8c90000
+60094c45
+9a267c00
+202285cc
+e8c08000
+98c08c00
+202005c1
+58000001
+20600000
+e8c08000
+6000cc47
+204005da
+58000000
+20600000
+680102b9
+1fe20a00
+20600000
+680102b7
+1fe20c00
+20600000
+18a27e00
+600102b9
+20600000
+18c27e00
+600102b7
+20600000
+204005d1
+2020588a
+6800cbab
+1fe08401
+18410403
+6008cbab
+1feffe07
+d8c04bad
+98c08c00
+6800cc62
+1fe0fffb
+1fe27200
+d8a04445
+20407e45
+6808cc62
+20205892
+2040561c
+202058b0
+1a627e00
+c00185f9
+c00505fd
+c00905fb
+c00105ff
+1fe67c0d
+202158c0
+6000cc48
+700b7d27
+20205620
+704c5c00
+20205938
+700b7d33
+20205620
+700b7d2b
+20205620
+58000014
+600103ef
+20600000
+6800c43e
+28200601
+20208606
+202058a7
+6800c43f
+203a0609
+202058a7
+6800c43e
+793ffe04
+6000c43e
+20600000
+e8c08000
+c0008614
+c002061a
+c0048612
+202058f8
+704c4903
+20205974
+704d1c01
+6000c4ae
+e8c30000
+e0a30000
+700b7d42
+20205620
+204074a8
+2022861d
+20205968
+704c4902
+2020596a
+704c5d00
+20403f86
+20403f7e
+20403fa4
+20203ecc
+70421300
+70448b00
+704c5c00
+704c4900
+704c5f00
+704c5d00
+20203ed0
+58000000
+60024ba9
+20600000
+c6918000
+68024d1d
+60024d4f
+20400653
+24340646
+704c0b0a
+20400679
+6800cbef
+c1ff8000
+6800cd22
+247a0000
+204001b2
+24740000
+68008b7f
+247a0000
+20403cab
+6801c210
+207a0000
+6800c131
+207a0000
+6801cd57
+20407e8a
+600a41fc
+20203cda
+204001b2
+24740000
+68008b7f
+247a0000
+20403cab
+6801c210
+207a0000
+6800c131
+207a0000
+6800cc0b
+243a0642
+68024d4f
+20200643
+6800cbef
+c0ff86ca
+2040065a
+20540675
+20540734
+704be601
+20600000
+78547c00
+704be202
+6800cd34
+c0020665
+c002866b
+c0030671
+c003866e
+c0040668
+6800cd22
+245a34df
+20600000
+704d3400
+704be10a
+20200673
+704d3408
+704be110
+20200673
+704d3403
+704be104
+20200673
+704d3402
+704be103
+20200673
+704be201
+704be108
+704be700
+202034df
+d8a00cd5
+d8c04d34
+df200014
+20207e45
+704be800
+d9600d00
+34730200
+204006a0
+24378689
+204006af
+6800cbe0
+1fe0fe01
+6000cbe0
+704d2200
+6800cbef
+c0ff869f
+2040069b
+704be700
+704be600
+20600000
+704d2201
+6800cbe7
+1fe0fe01
+6000cbe7
+6800cbef
+c0ff86ab
+6800cbe7
+c07f86ac
+6800cbe7
+d8400010
+98467c00
+20210753
+6800cbe8
+1fe0fe01
+6000cbe8
+2000000a
+c083867a
+20200753
+58000000
+60020cd5
+60024d34
+20600000
+202006e4
+7857fc00
+204007ab
+18002a00
+68024c00
+98001200
+68088017
+20403a82
+20403a87
+2040076b
+205787a5
+20600000
+20600000
+704d2200
+700b7d32
+20207c27
+20400719
+68008cb3
+c1810000
+6800cbdf
+207a0000
+98007200
+d8c00cb5
+d8a00d17
+20407e45
+68008cb4
+2fe1f008
+24608000
+68008cb5
+c07f86bf
+6000cc90
+20600000
+704d5a01
+20600000
+79200023
+204006c6
+20400685
+704bef01
+20600000
+704be000
+704be94e
+68024beb
+20200726
+204006c6
+6800cbe6
+c000b4df
+6800cbef
+c00086d2
+c00106d5
+c00186d8
+20203bf1
+704bef11
+700d37aa
+202006da
+704bef12
+700d3755
+202006da
+704bef13
+700d3722
+700d3802
+68024c06
+60020d39
+700d3d00
+da200d37
+d8400007
+20400714
+20400734
+20400658
+202034df
+6800cbef
+c17f8000
+c00886ea
+c00906ec
+c00986ee
+20600000
+704bef02
+20200685
+704bef03
+20200685
+704befff
+700b7d31
+20407c27
+68020d19
+20400726
+20200685
+79200023
+20400727
+20400753
+6800cbef
+c1ff8000
+20400706
+58000000
+60014c04
+20403cab
+200007d0
+6800cc04
+c07f86ac
+204006a0
+2437870f
+2040069b
+79200023
+700b7d3c
+20207c27
+700d37ff
+6800cbe2
+60008d38
+68024c06
+60020d39
+d8400006
+da200d37
+20400714
+20200734
+68014c04
+1fe0fe01
+60014c04
+20400753
+202006fc
+6008cbe1
+18427200
+d8a00cd5
+1a220c00
+20207e45
+68008cb4
+1fe97e00
+6000cbdf
+20600000
+6808cc22
+58004c11
+98408a00
+1a227e00
+e0a08000
+18408401
+18410407
+6008cc22
+20600000
+60024c00
+da200000
+df200004
+d8c04c00
+e8c08000
+9a20a200
+c200072a
+1a227e00
+60014c0c
+6800cc0c
+6808cc0d
+9840fe00
+6000cc0e
+20600000
+6800cbe1
+1fe0fe02
+6000cbe3
+6800cbe2
+60008cf5
+6800cbe1
+1fe9fe00
+6808cbe0
+18410403
+18438400
+9841fe00
+6808cc0a
+9840fe00
+e0a08000
+6800cbef
+c0ff8746
+6800cbe2
+e0a08000
+6800cbe1
+98007200
+6800cbe2
+c0008751
+d8c00cd5
+20407e45
+68008cd5
+c001874f
+20600000
+700cd502
+20600000
+d8c00cd6
+20207e45
+6808cbea
+20400759
+18408401
+18410403
+6008cbea
+20600000
+6800cc00
+1fe17e03
+1fefa204
+58004bf0
+9a20fe00
+98408c00
+e8c08000
+6000cbe9
+20600000
+7844fc00
+7843fc00
+58555555
+98001e00
+6800cbe9
+1fed8400
+79200401
+18431c00
+20600000
+20400762
+7826fc00
+7830fc00
+78507c00
+78287c00
+68014be4
+98003600
+37c18400
+242c07a5
+7846fc00
+7825fc00
+7823fc00
+7824fc00
+09800008
+19897e00
+6000cc0f
+6808cc0e
+98467c00
+242287a5
+09800008
+19897e00
+60008cb3
+68008cb3
+6808cbe2
+a8400e00
+242087a5
+09800008
+19897e00
+e0a08000
+1fe97e00
+1fe1721f
+2022878f
+09800008
+19897e00
+e0a08000
+c200078b
+18a22200
+09800008
+19897e00
+6000cc10
+1a220a00
+09800018
+78287c00
+db600664
+1fef7e00
+1ff17e00
+e0a18000
+7845fc00
+202307a5
+7837fc00
+68008017
+1fe0a200
+20403ab6
+7846fc00
+20403a7a
+6800cc10
+1fe22200
+2020071d
+784dfc00
+7845fc00
+2020375c
+20403a7a
+6808cbe9
+20203a91
+204053d2
+68024c00
+98001200
+20400762
+204007a8
+79202a00
+782efc00
+78307c00
+7850fc00
+19317e00
+1fecfe00
+1ff1fe00
+08008628
+784efc00
+782dfc00
+7823fc00
+7824fc00
+6800cc0e
+08008608
+6800cbe3
+98007200
+d8c00cf5
+e8c08000
+08008608
+c20007c1
+78247c00
+08008618
+78447c00
+37d38200
+20000064
+784efc00
+784dfc00
+20203a7a
Index: btkb/output/romcode.rom
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/btkb/output/romcode.rom	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/btkb/output/romcode.rom	(working copy)
@@ -0,0 +1,20480 @@
+20403c74
+793f8025
+44804000
+20800000
+20403a9e
+20406805
+20403bfa
+20404d98
+793f8025
+4480c000
+20406b53
+20405b62
+20407b9d
+20403e4f
+793f8025
+44814000
+2055be5f
+20407719
+2055bcf1
+793f8025
+4481c000
+20407813
+20405373
+20404449
+793f8025
+44824000
+2040303e
+20403e6a
+204030a1
+793f8025
+4482c000
+20403392
+20403407
+20403024
+20403d1c
+20203013
+20403029
+c6848000
+793f8009
+204032bd
+202053d7
+793f8025
+44834000
+204032fe
+2422b033
+204032a3
+1a208c01
+e8c08000
+c2805377
+c280b1a7
+20203473
+793f8025
+4483c000
+204032c6
+1f227c00
+20628000
+204032a3
+68008030
+c281b103
+68008031
+c280b1a7
+20203473
+6800c272
+207a0000
+c000b04e
+c0013053
+c001b056
+c002b05b
+c00db04b
+204032f6
+20628000
+204032f9
+20628000
+70427200
+20600000
+70041c1b
+70427200
+20600000
+7920001c
+793f801e
+70008eff
+70008c1f
+20203049
+793f801c
+18003600
+20203049
+204032f9
+20628000
+18000401
+70017805
+20203068
+793f8025
+44844001
+6800c132
+c000b064
+68034274
+203a3049
+7047f301
+70005503
+20203067
+68034274
+203a3049
+60030040
+18000425
+793f8025
+4484c001
+680080f3
+203a306f
+1fe9fe00
+1ff27e00
+1fe0ffff
+6000c146
+600080f2
+70008d1f
+793f800c
+204032d6
+2422b090
+20403bd1
+60008077
+6008807c
+68034274
+60030040
+793f8025
+44854001
+18007e00
+2841fe01
+7d20fe05
+79207e03
+60008030
+700b7d03
+20407c27
+18007e00
+7920fe04
+6000804c
+58000000
+79207e01
+60008031
+7834fc00
+204032bd
+7854fc00
+18000e04
+68014159
+20407e4c
+20203049
+793f8025
+4485c001
+68034274
+60030040
+2841fe01
+2020b099
+18000407
+20404826
+20203049
+d8a00103
+df200008
+20407e3b
+18000e07
+20404898
+700b7d04
+20407c27
+20203049
+c68e0000
+18000e02
+20407e53
+7d3a001c
+243a30a7
+20600000
+793f8025
+44864001
+6809415b
+18000e04
+2040383d
+20740000
+20403a12
+18004800
+20618000
+793f800b
+793f8000
+1c40c201
+280ffe1e
+7920c802
+2c200400
+2420b0d3
+793f8025
+4486c001
+68008012
+1fe0fe01
+60008012
+20403a49
+20403a42
+20403a66
+20403bae
+20403bb4
+20403bc5
+2040375c
+204030c5
+202030af
+793f8025
+44874001
+6800808c
+1fe0ffff
+6000808c
+20610000
+70008c1f
+6800808e
+1fe0ffff
+6000808e
+20610000
+7940001e
+70008eff
+20600000
+793f8025
+4487c001
+20403a49
+20403a3b
+20403a66
+20403bba
+20403b3a
+20403b63
+202c30de
+204030c5
+202030b2
+793f8025
+44884002
+20403af3
+20403bcd
+204035e1
+793f8001
+c6858000
+793f8025
+4488c002
+6800c2a4
+c2804221
+2040477b
+68008013
+1fe0fe01
+60008013
+20600000
+793f800b
+204030fe
+20403a49
+20403a3b
+204034e1
+20403bba
+20403b3a
+20403b63
+202c30f8
+20600000
+20403bcd
+204035e1
+793f8001
+202330e5
+2040479b
+202030ea
+d9600600
+34730200
+1c417e03
+c080b0ff
+20600000
+793f8025
+44894002
+7834fc00
+78387c00
+68014155
+203a310c
+18000e0d
+20407e53
+247a0000
+793f8025
+4489c002
+68094157
+18000e28
+2040383d
+2034314e
+18000e04
+20407e53
+243a3127
+6800804c
+c282311a
+18000404
+20404826
+2020311f
+d8a00103
+df200008
+20407e3b
+18000e04
+20404898
+793f8025
+448a4002
+70003000
+20405b63
+7047f300
+700b7d13
+20407c27
+2020314e
+793f8025
+448ac002
+18001600
+34730200
+680080f4
+1fe0ffff
+9c42fe00
+2fe00600
+2420b127
+18827e00
+6000818b
+18004c00
+18004800
+793f8025
+448b4002
+2021b14e
+20403a4d
+d9600600
+34730200
+793f8025
+448bc002
+680200f4
+98004200
+1fe0fe01
+600200f4
+280ffe0c
+7920c802
+2c200400
+2420b164
+6800800c
+1fe0fe01
+6000800c
+20403a42
+20403bae
+20403bb4
+20403bc5
+2040375c
+20403155
+20203134
+793f8025
+448c4003
+7854fc00
+68014155
+207a0000
+18000e0d
+20207e4c
+793f8025
+448cc003
+6800808d
+1fe0ffff
+6000808d
+20610000
+70008d1f
+680080f2
+1fe0ffff
+600080f2
+20610000
+7940000c
+6800c146
+600080f2
+20600000
+793f8025
+448d4003
+20403a3b
+20403bba
+20403b3a
+20403b63
+202c316d
+20403155
+2020313a
+2040375c
+6800800d
+1fe0fe01
+6000800d
+18003600
+680200f4
+793f8025
+448dc003
+20403bac
+20403a4d
+1cc0cc01
+1c2143fd
+1c8149fc
+20403a42
+20403bae
+20403bb4
+20403bc5
+1c427e00
+6002016b
+18000800
+18000202
+20403bcd
+204038c1
+793f8025
+448e4003
+20403baa
+1c21c202
+1c8149fc
+20403a3b
+20403bba
+20403b3a
+20403b63
+204c375c
+202c3194
+68008010
+203a3134
+1fe0ffff
+60008010
+20203173
+793f8025
+448ec003
+6800800e
+1fe0fe01
+6000800e
+204034ed
+2040338b
+202c319f
+2040350e
+243a319a
+20203134
+793f8025
+448f4003
+68008030
+793ffe03
+60008030
+204034f9
+7854fc00
+20600000
+793f8025
+448fc003
+7834fc00
+78387c00
+2040324e
+20740000
+20403e25
+20403bac
+1c40c201
+20403a54
+18004803
+2040327c
+20406a54
+20406e10
+20403547
+20403a42
+20403bae
+20403bb4
+20403bc5
+204038bf
+793f8025
+44904004
+20405b78
+20404995
+204048a9
+2040337c
+2436b1c7
+20403bec
+20403870
+6800800f
+1fe0fe01
+6000800f
+793f8025
+4490c004
+20406dec
+204031d5
+24748000
+20403812
+243a31d2
+20406a5c
+20403290
+7854fc00
+20600000
+20403547
+20403371
+202031bb
+2036b1d8
+20403be2
+202131e6
+20403204
+243431e6
+6800804c
+c4020000
+c3818000
+6800804b
+c3818000
+2040320d
+247a0000
+68008178
+1fe0ffff
+60008178
+247a0000
+20205ed5
+793f8025
+44914004
+20403516
+7854fc00
+6800804c
+c28231f2
+68008030
+c30231f0
+68088046
+202048c4
+18000408
+20204826
+18000e00
+6800804c
+c281c898
+18000e04
+d8a00103
+df200008
+20407e3b
+20204898
+793f8025
+4491c004
+68008030
+c4010000
+68088046
+680080ac
+98467c00
+24628000
+20403869
+20203293
+793f8025
+44924004
+78347c00
+6800804b
+c4018000
+2040320d
+247a0000
+78547c00
+20600000
+68008072
+1fe0ffff
+60008072
+20600000
+793f8025
+4492c004
+68008030
+c283b21f
+6800c132
+c000b21d
+680087e1
+203a321f
+7007e100
+700b7d18
+20407c27
+2020321f
+20406216
+2440c852
+793f8025
+44934004
+204032f0
+68008030
+79207e07
+60008030
+70425e01
+68008055
+c08b3228
+20600000
+7007e101
+68008030
+793ffe07
+60008030
+20600000
+793f8025
+4493c004
+78547c00
+68008030
+c4008000
+68010032
+247a0000
+68020034
+20383239
+9d067e00
+2020323a
+9c467e00
+1fe67c04
+24610000
+68008030
+793ffe01
+60008030
+78347c00
+20600000
+1fe20400
+793f8025
+44944005
+60020034
+70474801
+68008030
+79207e01
+60008030
+18007e00
+60010032
+70008a0a
+70007301
+20600000
+793f8025
+4494c005
+2040322e
+24740000
+78547c00
+70001120
+793f800b
+20403bac
+2040337f
+c505b263
+2040350e
+243a3255
+793f8025
+44954005
+78547c00
+1c427e00
+6002416a
+78387c00
+7834fc00
+700b7d2a
+20207c27
+793f8025
+4495c005
+20403baa
+20403374
+78587c00
+7854fc00
+20403982
+204034ed
+793f8025
+44964005
+20403539
+2036b272
+2040350e
+243a326b
+2020325a
+18000401
+2040487f
+68008031
+793ffe01
+60008031
+20403bec
+204039ac
+78347c00
+700b7d2b
+20207c27
+793f8025
+4496c005
+c6838000
+68008030
+c4010000
+20403c23
+680080b3
+68088047
+600880b4
+60008047
+18827e00
+600080b2
+6800c1f9
+98000800
+793f8008
+6800c165
+6000c167
+6800c166
+6000c165
+20600000
+793f8025
+44974005
+c6838000
+20403847
+24608000
+20403799
+680080b4
+68088047
+60008047
+600880b3
+680080b2
+98000800
+6800c165
+6000c166
+6800c167
+6000c165
+5800ffff
+60014168
+20600000
+793f8025
+4497c005
+79200009
+1a227e00
+6001001e
+18007250
+d8a003c0
+1a208c01
+e8c08000
+1a220c00
+c2807e45
+d8a00030
+20407e45
+78577c00
+68008077
+98000800
+70008a01
+2034b2b6
+70008a01
+68008030
+c4008000
+68008073
+6000808a
+68008074
+6000808b
+20600000
+793f8025
+44984006
+6801001e
+98000a00
+18007250
+d8c003c0
+203b7e45
+d8c00030
+20207e45
+68088015
+df200003
+18408401
+2841fe03
+2420b2cc
+d8400000
+60088015
+184ffe50
+da204040
+9a20a200
+ea208000
+c280b2d4
+c3800000
+c3818000
+c20032c8
+20600000
+793f8025
+4498c006
+da60330b
+20403301
+24628000
+1a227e00
+6001001e
+18007c00
+20600000
+20403847
+2020b2e7
+6801001e
+1fe08a17
+68008047
+e0a08000
+da603334
+20203301
+68008047
+2feffe03
+2020b2ec
+18007c01
+20600000
+18007c00
+20600000
+da603331
+20203301
+6809001e
+da603366
+20203301
+6809001e
+da603359
+20203301
+6808c273
+da603316
+20203301
+793f8025
+44994006
+680b4274
+da60330f
+20203301
+da60331c
+20203301
+da603350
+793f8025
+4499c006
+da204040
+18007203
+ea208000
+1a627a00
+1a20a250
+c2003305
+18007c01
+20600000
+c2803307
+c281b307
+18007c00
+20600000
+c281b311
+c3003307
+1a208c10
+e8c30000
+98467c00
+20628000
+20203307
+c3003307
+1a208c16
+e8c08000
+98467c00
+20628000
+20203307
+c300b307
+2040333d
+c28db322
+284c001b
+2020b322
+79207e1c
+98467e00
+1fe0fe01
+2021332b
+1fe0fe05
+24213307
+18424200
+20403349
+18007c00
+20600000
+98002400
+1a208c02
+e8c10000
+203a3327
+20403349
+2020331d
+c3003307
+18007c00
+20600000
+c3003307
+1a208c01
+e8c08000
+c2803307
+1a208c17
+e8c08000
+c301b307
+18007c00
+20600000
+1a208c01
+e8c88000
+1c427e00
+284ffe01
+1a208c04
+e8ca0000
+20608000
+1a208c08
+e8c30000
+204039c0
+1d027e00
+20600000
+1a208c02
+1a208a04
+e8c10000
+98409600
+19627e00
+e0a20000
+20205434
+c300b307
+2040333d
+9b60fe00
+9b60fe00
+98e0fe00
+98467c00
+24213307
+18007c00
+20600000
+c3003307
+18427e00
+9a267c00
+203f3307
+1a208c01
+e8c08000
+c2803307
+1a208a18
+e8a08000
+243a3307
+18007e2d
+e0a08000
+20203307
+c3003307
+18427e00
+9a267c00
+203f3307
+1a208c01
+e8c08000
+c2803307
+ea208000
+793ffe07
+e2208000
+20203307
+793f8025
+449a4006
+20403bac
+1c40c201
+20403a54
+18004803
+20403a42
+20403bae
+20403bb4
+20403bc5
+202038bf
+793f8025
+449ac006
+20403baa
+1c40c201
+20403a54
+18004803
+20403a3b
+204034e1
+20403b41
+20403bba
+20403b3a
+20403b63
+246c0000
+20403af3
+202035df
+793f8025
+449b4006
+6800818b
+98000800
+18000201
+20403371
+2020337c
+6800c133
+c4000000
+18000e05
+20407e53
+247a0000
+6809414d
+18000e04
+2040383d
+20740000
+204033a2
+18000e05
+6801414f
+242c7e4c
+180a7e00
+9ea17e00
+20207e4c
+793f8025
+449bc006
+70018b00
+78587c00
+78577c00
+20403a12
+1c4143fc
+18004801
+20403a49
+20403a3b
+7940001d
+68008006
+1fe0fe01
+60008006
+20403a66
+20403b3a
+20403b6b
+246c0000
+793f8025
+449c4007
+18003600
+20403a6d
+68008007
+1fe0fe01
+60008007
+20403a49
+20403baa
+1c21c202
+18004801
+20403a42
+20403a66
+20403bae
+20403bbf
+1c427e00
+6002016b
+20403bc5
+18000202
+18000800
+20403bcd
+204038c1
+204033ce
+1c2143fd
+1cc0cc01
+20600000
+793f8025
+449cc007
+6800c172
+207a0000
+d8a001bc
+6800c702
+1fe27200
+1fe0fe01
+e0a08000
+18a20400
+1fe0fe01
+60010091
+18420a00
+58000009
+e0a08000
+d8c04703
+20407e45
+da604771
+df200004
+204033f1
+da60475b
+df200001
+204033f1
+1800020a
+70009002
+580001bc
+60010179
+20403baa
+20403a42
+20403bae
+20403bbf
+20403bc5
+20403bcd
+204038c1
+20600000
+18a20400
+1a620c00
+e8c08000
+207a0000
+1fe3fe00
+c20033f5
+1fe22200
+1fe0fe02
+1fe20e00
+68010091
+98e0fe00
+60010091
+18420a00
+1a227e00
+1fe0fe01
+e0a08000
+1a620c00
+e8c08000
+e8c08000
+e0a08000
+1a227200
+20207e45
+6800c133
+c4008000
+18000e06
+20407e53
+247a0000
+68094151
+18000e28
+2040383d
+20740000
+18000800
+70001008
+793f800b
+20403417
+18000e06
+68014153
+20207e4c
+793f8025
+449d4007
+78587c00
+20403a12
+68008008
+1fe0fe01
+60008008
+18004c00
+20403a54
+1c40c201
+18004802
+793f8025
+449dc007
+20403a3b
+20403b3a
+20403b6b
+246c0000
+20403a6d
+68008009
+1fe0fe01
+60008009
+18003600
+20403baa
+1c21c202
+18004801
+20403a42
+20403bae
+20403bbf
+20403bc5
+2040375c
+18000800
+d9600600
+35330200
+1d01d003
+1c2143fd
+793f8025
+449e4007
+1cc0cc01
+20403a3b
+20403b3a
+20403b5d
+242c3444
+20403bcd
+204035e1
+c505b44c
+793f8025
+449ec007
+68008010
+207a0000
+1fe0ffff
+60008010
+20403bac
+2020343a
+793f8025
+449f4007
+793fd001
+79205000
+6800800a
+1fe0fe01
+6000800a
+20403baa
+1c21c202
+20403a42
+20403bae
+20403bbf
+20403bc5
+2040375c
+2d000603
+2020b45e
+37cb8200
+2020345a
+6802016f
+1fe1fe03
+1fe25000
+793f8025
+449fc007
+68030182
+60030040
+204034ed
+20403539
+2036b46b
+2040350e
+243a3466
+20600000
+793f8025
+44a04008
+204034f9
+204032d6
+24628000
+70003100
+204039ac
+202032bd
+793f8025
+44a0c008
+204039bc
+204034a5
+20740000
+2040327c
+20406a54
+793f8025
+44a14008
+20403e25
+20406dec
+204035d6
+20407f39
+2436b48d
+20403bec
+20403870
+20406e10
+20403547
+204038b1
+20405b78
+20404995
+204048a9
+6800800b
+1fe0fe01
+6000800b
+204039ac
+793f8025
+44a1c008
+20403d61
+20403be2
+20213498
+20403204
+24343498
+20403812
+243a347a
+20406a5c
+20203290
+793f8025
+44a24008
+70015300
+70018900
+20403516
+793f8011
+20407f8a
+68008030
+c30234a3
+68088046
+202048c4
+18000406
+20204826
+793f8025
+44a2c008
+2040322e
+24740000
+18820400
+20403bd1
+6000818b
+18420800
+70001120
+793f8025
+44a34008
+20403bac
+18000202
+204038a8
+1c427e00
+6002016b
+204038bf
+20403baa
+7837fc00
+204035b7
+202c34c1
+20403a6d
+2040350e
+243a34ae
+c6820000
+70007c34
+79200003
+20600000
+78387c00
+204034ed
+20403a12
+793f8025
+44a3c008
+2040338b
+202c34ce
+2040350e
+243a34c4
+78587c00
+1d027e00
+6002416a
+20600000
+18000400
+2040487f
+7834fc00
+c58234d6
+793f8004
+70007c03
+70007d33
+20406212
+18827e00
+60008077
+18007e00
+60030038
+68008031
+79207e01
+60008031
+20403bec
+7854fc00
+78347c00
+20600000
+793f8025
+44a44009
+7856fc00
+793f8005
+793f800a
+793f8010
+793f800f
+68008047
+793ffe05
+79207e04
+60008047
+20600000
+793f8025
+44a4c009
+70001120
+70004750
+6801415f
+6001003e
+1c427e00
+6002416a
+20780000
+1d027e00
+6002416a
+20600000
+793f8025
+44a54009
+20405b6f
+20403512
+60008046
+58001c80
+60010051
+68008030
+79207e00
+60008030
+70004b00
+70004c00
+7000a200
+20203bec
+793f8025
+44a5c009
+18007e00
+60044262
+e0a40000
+2040322a
+202032f0
+68008011
+1fe0ffff
+60008011
+20600000
+6800c170
+1fe0fe01
+6000c170
+20600000
+793f8025
+44a64009
+204031fa
+6800c272
+c001b51d
+68008048
+c080b521
+204049be
+2422b521
+204031f5
+70427200
+793f8025
+44a6c009
+20403f18
+20404995
+20403806
+700b7d02
+20407c27
+20405b63
+20404d99
+20407719
+68008030
+793ffe00
+60008030
+7047f300
+6800804c
+2fe18000
+2020b533
+793f8001
+68008047
+c301b535
+6800804b
+c4030000
+793f8002
+20600000
+793f8025
+44a74009
+6800817e
+207a0000
+1fe20800
+204035d6
+24768000
+18000200
+204038b1
+18827e00
+60008077
+18007e00
+6000817e
+20600000
+793f8025
+44a7c009
+68008030
+c3013555
+18000207
+c583b554
+20403847
+2420b555
+20373555
+20403583
+58000002
+60014168
+20600000
+24770000
+793f8025
+44a8400a
+204032df
+2422b568
+68008047
+c301b571
+c502b575
+68008189
+c283357c
+68014168
+1fe0ffff
+60014168
+203a3565
+6800c165
+98000200
+20600000
+793f8025
+44a8c00a
+20403799
+20403847
+2020b571
+20405ed9
+20343580
+6800804b
+c2833582
+c502b575
+68008189
+c283357c
+18000201
+20748000
+18000200
+20600000
+793f8025
+44a9400a
+68008019
+98000200
+c1808000
+18000200
+20600000
+6800815a
+1fe1020f
+79200005
+20600000
+18000213
+20203583
+2040358d
+793f8025
+44a9c00a
+68088047
+79200403
+60088047
+18227e00
+6000c165
+5800ffff
+60014168
+20600000
+793f8025
+44aa400a
+6800804c
+2feffe05
+68010091
+2020b5a1
+18000203
+1fe67c11
+20610000
+18000204
+1fe67c1b
+20610000
+1800020a
+1fe67c79
+20610000
+1800020e
+1fe67ce0
+20610000
+1800020f
+20600000
+18000203
+1fe67c11
+20610000
+18000204
+1fe67c36
+20610000
+1800020a
+d840016f
+98467c00
+24610000
+1800020e
+d84002a7
+98467c00
+24610000
+1800020f
+20600000
+68008030
+c300b5b6
+68010032
+203a35b6
+243735b8
+20403bac
+1d00c201
+78287c00
+6801003e
+1fe37e00
+d8400500
+9840fe00
+20403b7d
+20403a5d
+18004803
+20403a3b
+204034e1
+20403b41
+793f8025
+44aac00a
+6801003e
+1fe37e00
+20403b7d
+20403b3a
+7826fc00
+6801003e
+d84003bb
+9840b600
+37c18400
+1b420400
+600b009c
+7846fc00
+246c0000
+dd2003bb
+1c225000
+2035bcb6
+20600000
+793f8025
+44ab400a
+204035b1
+242c3a6d
+20403af3
+c588b5df
+680100f8
+1fe0fe01
+600100f8
+1c230400
+18419c40
+793f8025
+44abc00a
+7823fc00
+78257c00
+7825fc00
+09800003
+198cfe00
+6000815f
+09800004
+08008007
+19827e00
+60008019
+09800003
+198cfe00
+60008160
+68008019
+1fe67c03
+202135f7
+c003b5f7
+6800804c
+2feffe05
+7920aa01
+793f8025
+44ac400b
+09800008
+7845fc00
+78457c00
+2023373e
+c588b601
+680100fa
+1fe0fe01
+600100fa
+793f8025
+44acc00b
+6800815f
+2fe00e00
+7920800a
+2020b613
+a8800e00
+2020b612
+c583b75c
+680880b2
+a8400e00
+2420b75c
+20403290
+68008047
+793ffe05
+79207e04
+60008047
+7836fc00
+793f8025
+44ad400b
+68008019
+1fe20200
+c5053623
+68088160
+68008047
+793ffe00
+284ffe00
+7920fe00
+284ffe01
+7920fe01
+60008047
+284c0001
+2020b623
+20403799
+793f8025
+44adc00b
+d8400000
+20403b74
+18217e0f
+c000b656
+c000375c
+c0013769
+68088160
+68008047
+a8400800
+2420b632
+c5853631
+c303b632
+7920000f
+793f8025
+44ae400b
+18227e00
+c001b658
+c002365c
+c003b642
+c004365b
+d8400004
+20403b74
+c0053657
+c005b65a
+d8400008
+20403b74
+c0073657
+c007b65a
+20600000
+793f8025
+44aec00b
+7826fc00
+7824fc00
+78277c00
+d8a000d3
+1800721e
+09800008
+19897e00
+e0a08000
+c2003649
+c583b75c
+09800010
+7d230008
+20433653
+2023374b
+2020372c
+1b427e00
+60030020
+20600000
+2020375c
+79200010
+78267c00
+2020365d
+79200010
+79202a02
+7826fc00
+793f8025
+44af400b
+c500b75c
+2aac0001
+2020b66a
+7843fc00
+7826fc00
+78467c00
+1c409602
+34530400
+242c374b
+79200010
+7823fc00
+793f8025
+44afc00b
+78277c00
+7824fc00
+09800003
+198cfe00
+6000818a
+09800005
+c5083676
+19897200
+1f297200
+20203679
+09800005
+19837200
+09800003
+793f8025
+44b0400c
+1f227e00
+60010169
+203a36ee
+9ea67c00
+2021374b
+793f8025
+44b0c00c
+793f8000
+6800818a
+1fe17e03
+d8a004de
+c001b68f
+c508b6ea
+6800c132
+c000b694
+6800818a
+1fe17e03
+c00136c3
+c000b6d8
+2020374b
+68010169
+1fe67c70
+2421374b
+c507b72c
+202036ea
+793f8025
+44b1400c
+c507b72c
+68010169
+203a374b
+20404494
+2420b6a1
+68090291
+1fe0fe0a
+98467c00
+242136a7
+20404449
+2020369b
+6811010e
+d840012c
+98467c00
+2021374b
+68014800
+203a374b
+793f8025
+44b1c00c
+20404972
+68008046
+6808818a
+18410403
+184d0400
+18520400
+9841fe00
+e1410000
+68090169
+18427200
+e1490000
+793f8025
+44b2400c
+09800008
+19897e00
+e1408000
+c20036b4
+1840f204
+20404494
+2420b6c1
+79200013
+18000e06
+20404378
+202036ee
+20404424
+202036ee
+793f8025
+44b2c00c
+c507b72c
+68010169
+d84002e0
+98467c00
+2021374b
+680082ca
+c30036ce
+c300b6d3
+2020375c
+7002c801
+680102c4
+c080375c
+d8a01000
+202036ea
+7002c802
+680102c6
+c080375c
+d8a01400
+202036ea
+793f8025
+44b3400c
+c507b72c
+68010169
+d84002e0
+98467c00
+2021374b
+680082c8
+c000b6e3
+c00136e7
+2020375c
+d8a01000
+680102c4
+98a08a00
+202036ea
+d8a01400
+680102c6
+98a08a00
+09800008
+19897e00
+e0a08000
+c20036ea
+793f8025
+44b3c00c
+09800010
+20233745
+20403e0f
+6800c3cc
+c000b75c
+c508b718
+c507b759
+6800818a
+2fe00603
+2020b718
+68010169
+203a3718
+6800c132
+c000b718
+793f8025
+44b4400d
+680082c8
+c000b704
+c001370e
+20203bf1
+680102c4
+68090169
+9840fe00
+600102c4
+c0003bf1
+68091000
+18408404
+98467c00
+2042b8a0
+20203718
+680102c6
+68090169
+9840fe00
+600102c6
+c0003bf1
+68091400
+18408404
+98467c00
+2042b8a4
+20203718
+793f8025
+44b4c00d
+6808804c
+6800818a
+2fe00603
+79208406
+7d208407
+6008804c
+2420b722
+79200001
+c588b72c
+284ffe06
+2020b72c
+680100fc
+1fe0fe01
+600100fc
+79200005
+793f8407
+793f8001
+6008804c
+793f8025
+44b5400d
+68088160
+68008047
+79207e05
+284ffe02
+7920fe02
+280ffe0a
+7920fe07
+60008047
+68010169
+243a375c
+6800804c
+793ffe07
+6000804c
+6800818a
+2fe00e01
+2020375c
+793f8025
+44b5c00d
+7856fc00
+6801001a
+1fe0fe01
+6001001a
+2020375c
+6801001c
+1fe0fe01
+6001001c
+2040374c
+c588b74b
+79200005
+2020375c
+793f8025
+44b6400d
+6800818a
+2fe00603
+2420b755
+6808804c
+793f8406
+6008804c
+20600000
+6808804c
+793f8407
+6008804c
+2020443b
+68008047
+79207e05
+60008047
+793f8025
+44b6c00d
+784efc00
+784e7c00
+7846fc00
+78467c00
+7844fc00
+78477c00
+7843fc00
+2030ba6d
+37d38200
+20000064
+20203a6d
+793f8025
+44b7400d
+7824fc00
+78267c00
+09800048
+2feffe3a
+79208000
+1c020400
+57e04000
+57e03c00
+782afc00
+380bffff
+380cffff
+20000020
+29a80000
+1d827e00
+60018182
+1da27e00
+60008185
+18424000
+2020b77f
+2020374b
+793f8025
+44b7c00d
+09800048
+57e03e00
+57e00800
+57e05c00
+57e02400
+18007e00
+09800010
+2023374b
+5ffffffc
+9a417e00
+6002016f
+1ba27e00
+6001817f
+1b827e00
+6000817d
+18827e00
+6000817e
+1dc27e00
+60010186
+1c227e00
+08008220
+28201e02
+7920800b
+2020375c
+793f8025
+44b8400e
+68008047
+c4018000
+793ffe03
+79407e06
+60008047
+6800c165
+c009b7b1
+c1038000
+6800804b
+c4030000
+793ffe06
+79207e07
+6000804b
+793f8002
+6800c132
+c1008000
+680142af
+247a0000
+6800804b
+793ffe07
+6000804b
+20205267
+793f8025
+44b8c00e
+68008433
+1fe37e00
+c008b7d0
+c00937da
+c00c3806
+c03fb7bf
+c016385e
+c1818000
+68008434
+c015b7c8
+c008b7c3
+20600000
+68008434
+79207e07
+c046b85e
+20600000
+20748000
+68008030
+c3820000
+70007c31
+20600000
+20748000
+68008031
+2feffe04
+2020b7cd
+20600000
+793ffe04
+60008031
+20600000
+793f8025
+44b9400e
+6800804c
+79207e02
+6000804c
+70801101
+68008030
+2feffe04
+2020c845
+20600000
+793f8025
+44b9c00e
+6800804c
+793ffe02
+6000804c
+70801100
+20600000
+793f8025
+44ba400e
+1c427e00
+600242a5
+1c40a203
+2034b7e8
+1d00a203
+68090032
+1a227e00
+793ffe1b
+9846fc00
+68010075
+20407efd
+18072600
+9a667e00
+202137f2
+9840fe00
+9a20fe00
+60020034
+70474800
+68008030
+79207e01
+60008030
+68008073
+6000808a
+70416e80
+58000000
+6001c20a
+6001c20d
+6000c1fa
+700b7d0b
+20407c27
+68014161
+6001003e
+24748000
+18808fff
+20600000
+793f8025
+44bac00e
+68008030
+c4008000
+793ffe01
+60008030
+70416e7f
+6801415f
+6001003e
+7855fc00
+700b7d0c
+20207c27
+793f8025
+44bb400e
+78377c00
+68008030
+c280b820
+c6088000
+68008047
+c3818000
+68008048
+247a0000
+6800804b
+c3830000
+18007e00
+20600000
+c3013830
+6800808a
+c0013826
+68008047
+c281b839
+c5843839
+20403290
+2434b839
+68008048
+243a3839
+680080f1
+1fe0ffff
+600080f1
+243a381e
+7000f110
+20203839
+6800808a
+c080b839
+6800808b
+203a3839
+1fe0ffff
+6000808b
+68008047
+c3818000
+24768000
+6800808a
+1fe0ffff
+6000808a
+20600000
+793f8025
+44bbc00e
+78487c00
+18423600
+20403300
+78547c00
+24628000
+18003600
+78347c00
+20600000
+6800c1f9
+a881fe00
+20600000
+793f8025
+44bc400f
+70417101
+20406a40
+18007e0c
+60010032
+680080af
+1fe3fe00
+60010075
+68008030
+79207e02
+60008030
+70007303
+70008a03
+204037e1
+18000400
+20404914
+7000b350
+7000f110
+20600000
+793f8025
+44bcc00f
+20403806
+70417105
+20406a4a
+68008030
+793ffe02
+60008030
+d8400e00
+7002c013
+202048c4
+793f8025
+44bd400f
+7000b100
+2040385e
+20403290
+793f8007
+20600000
+793f8025
+44bdc00f
+6800c132
+c000b898
+793f8001
+7002d100
+680082ca
+207a0000
+2feffe00
+d8c01000
+2040cda8
+793f8025
+44be400f
+680082d1
+c000b88c
+7002d100
+680082ca
+c4008000
+d8c01400
+20404da8
+680082d1
+c000b892
+20600000
+6800804c
+793ffe07
+6000804c
+793f8001
+2020443b
+680082ca
+793ffe00
+600082ca
+58000000
+600102c4
+20600000
+680082ca
+793ffe01
+600082ca
+58000000
+600102c6
+20600000
+6800804c
+c4038000
+20404435
+68014800
+203a3bf1
+1fe0ffff
+60014800
+20203887
+680082ca
+79207e00
+600082ca
+20600000
+680082ca
+79207e01
+600082ca
+20600000
+793f8025
+44bec00f
+1d00c201
+20403a5d
+18004803
+20403a42
+20403bae
+20403bbf
+20203bc5
+793f8025
+44bf400f
+20403baa
+1d027e00
+680a416a
+98467e00
+c1808000
+28203e00
+2420b8bc
+68008019
+207a0000
+204038a8
+28203e10
+2020b75c
+1c230400
+18419c40
+793f8025
+44bfc00f
+7823fc00
+78257c00
+782dfc00
+793f8010
+18827e00
+08008603
+18227e00
+08008604
+68008047
+08008004
+08008603
+78247c00
+08008608
+784dfc00
+78447c00
+78457c00
+793faa02
+d8400000
+20403b74
+793f8025
+44c04010
+18217e1f
+c009b913
+c000375c
+c000b75c
+c00138f5
+c001b925
+c002392b
+c003b8e9
+c004392a
+d8400004
+20403b74
+c0053927
+c005b92d
+d8400008
+20403b74
+c007b92d
+20203927
+793f8025
+44c0c010
+782efc00
+7824fc00
+78277c00
+1800721e
+d8c000b5
+e8c08000
+08008608
+c20038f0
+c503b960
+2020375c
+793f8025
+44c14010
+6800818b
+1fe20800
+6800808f
+1fe23800
+6801c14a
+1fe23a00
+68014144
+1fe25c00
+7824fc00
+782e7c00
+1c022200
+20403a54
+782afc00
+20000020
+1c221600
+6802016b
+1fe24200
+53c07e00
+79207e3a
+08008648
+53e07e00
+08008648
+19624200
+1a224000
+78247c00
+08008610
+78447c00
+2020375c
+793f8025
+44c1c010
+78277c00
+7824fc00
+782e7c00
+68008432
+1fe105f8
+d8c00432
+18408408
+1840a7b8
+24213922
+e8c48000
+08008648
+1a620400
+2020391c
+e8c48000
+08418600
+20203960
+782e7c00
+20203930
+782e7c00
+79200010
+20203930
+79202a02
+782efc00
+20203930
+79202a02
+782efc00
+79200010
+793f8025
+44c24010
+6800804c
+c302b946
+18267c03
+20213946
+78477c00
+784e7c00
+782efc00
+7843fc00
+79202a01
+2aaffe02
+2020b940
+580abeee
+08008614
+20203944
+585faeba
+08008618
+58000012
+08008606
+7823fc00
+79200010
+78277c00
+7824fc00
+c502b969
+68008090
+08008603
+68010091
+98007200
+c5083950
+08008605
+20203951
+0800860d
+6800c132
+c000b95b
+1f227e00
+203a3960
+68010179
+98000c00
+e8c08000
+08008608
+c2003957
+20203960
+68010179
+98000600
+e8608000
+08008608
+c200395d
+78247c00
+08008610
+78447c00
+20403583
+6800804c
+c302b75c
+18007e00
+08008606
+2020375c
+793f8025
+44c2c010
+c5083972
+6800818a
+08008603
+68008169
+98002600
+08008605
+20203977
+6800818a
+08008603
+68010169
+98002600
+0800860d
+d8c004de
+1a627c00
+2022b97e
+e8c08000
+08008608
+1a60a7ff
+20203978
+680100fe
+1fe0fe01
+600100fe
+20203960
+6802016f
+1fe0a207
+6801017b
+243a3988
+1a20a3fd
+20203990
+1feffe0c
+68190040
+18408401
+98467e00
+2421398f
+1a20a3ff
+2020398b
+1fe67e00
+37d18200
+2c400600
+2420b990
+98005200
+1a225000
+98005200
+20600000
+793f8025
+44c34010
+37d10200
+1b427e00
+98000c00
+1ff17e00
+9c467200
+1f217203
+2422b9a2
+18007e00
+202039a6
+d8400ea6
+18007e00
+9840fe00
+c20039a4
+98c0fe00
+1fe6fc0c
+20407efd
+1807fe00
+6001017b
+20600000
+793f8025
+44c3c010
+1b427e00
+1b220400
+98467c00
+7d217e2c
+98460400
+58000ea6
+284c000f
+2020b9b8
+5fff0ea6
+98408400
+600b03c8
+207b0000
+600b0038
+20600000
+78587c00
+680303c8
+203b39c0
+68030038
+9b20e000
+1e00e00a
+58000ea6
+9e067e00
+2fec000f
+2020b9ca
+5800f15a
+9e00e000
+1e023400
+20600000
+18007c00
+202039c8
+793f8025
+44c44011
+20403a7a
+1c227e00
+1fe17f80
+2c800e03
+2420b9d6
+1fe97e00
+9ae0fe00
+202039d7
+1ae27e00
+1fe6fc4f
+782afc00
+20407efd
+18072200
+1a2085d8
+202139df
+1a238400
+202039e1
+18438400
+18408401
+793f8025
+44c4c011
+68008031
+c301b9f3
+68024173
+9c267c00
+202139f3
+20403a12
+6800c17a
+207a0000
+68008031
+79207e02
+60008031
+6802c188
+6002c17b
+e8c28000
+6002c180
+20403a17
+68008031
+c4010000
+2c2ffe01
+2020ba0f
+18492200
+18410e07
+5800417b
+9a20a200
+ea208000
+afec0000
+2020ba00
+18427e00
+20203a0c
+6800c185
+98002400
+1c227e00
+1fe17f80
+1fe97e00
+9ae0fe00
+9a46fc00
+58004193
+20407efd
+18072200
+9a208c00
+e8c08000
+6000c186
+98000400
+20600000
+6800c186
+98000400
+20600000
+68008031
+793ffe02
+793ffe03
+60008031
+20600000
+793f8025
+44c54011
+d8a04193
+1800720a
+20407e3b
+d8a04193
+18002600
+18000e02
+6802c17b
+98000400
+28e1fe02
+2020ba24
+18430400
+284c0000
+2020ba28
+1a627e00
+e0a08000
+184b0400
+1a60a602
+2a61fc28
+2420ba31
+6802c180
+98000400
+28e1fe02
+2020ba31
+18430400
+1a667c4e
+20213a24
+18002601
+18e08fff
+2422ba1f
+da204193
+18a27e00
+9a267e00
+6000c185
+20600000
+793f8025
+44c5c011
+204039cc
+68008189
+c302ba41
+68088448
+20203a82
+793f8025
+44c64011
+204039cc
+68008189
+c3023a48
+68088447
+20203a91
+18005a00
+6801c147
+98005800
+20600000
+793f8025
+44c6c011
+6800c277
+1fe25a00
+6801c274
+1fe25800
+20600000
+793f8025
+44c74011
+68014144
+1fe25c00
+6800c143
+1fe25a00
+6801c140
+1fe25800
+20600000
+793f8025
+44c7c011
+68010044
+1fe25c00
+68008043
+1fe25a00
+68018040
+1fe25800
+20600000
+c5103a69
+c68e8000
+c68f8000
+1d815900
+782afc00
+20000020
+20600000
+793f8025
+44c84012
+18002a00
+7850fc00
+78507c00
+782f7c00
+70890200
+70890100
+70890000
+70890300
+70890470
+70890600
+20600000
+793f8025
+44c8c012
+70890200
+70890100
+70890018
+708903a7
+7089047f
+20600000
+793f8025
+44c94012
+60088017
+1840a204
+20203ab6
+793f8025
+44c9c012
+708901cf
+2000000a
+708900ff
+708903af
+708904ff
+2000000a
+708902a0
+20600000
+793f8025
+44ca4012
+60088017
+1840a202
+20403ab6
+58000500
+20403bf3
+70890601
+7089003c
+708901e0
+708903b7
+7089027f
+20600000
+70804206
+20403c29
+20403c3a
+68014163
+c3073aa1
+98000c00
+d8408900
+e8c08000
+c07fbaab
+98418a00
+e8c08000
+e0a08000
+20203aa5
+793f8025
+44cac012
+20403d91
+20403b0a
+580007d0
+9c40fe00
+60020173
+79202a03
+18002a00
+2455bace
+20203ae2
+793f8025
+44cb4012
+58000960
+9a208400
+6800c15d
+70895f04
+984ffe00
+6808c15e
+9846fc00
+20407efd
+1807a200
+18077e00
+1ff07e00
+1ff27e00
+9846fc00
+20407efd
+1807fe00
+1fed7e00
+1fe3fe00
+9a21fe00
+60120960
+70895f44
+70895fc4
+20600000
+793f8025
+44cbc012
+70890602
+5803d090
+20403bf3
+7089007f
+20000082
+70895230
+708901d0
+70895270
+708952f0
+18007232
+68108980
+c282badd
+c2003ada
+6000c16f
+70890100
+70890000
+70890600
+20600000
+793f8025
+44cc4013
+6800c16f
+79207e05
+60108952
+68188950
+18410407
+1fe9fe00
+9841fe00
+60108950
+68108951
+793ffe00
+60108951
+68108952
+793ffe05
+60108952
+20600000
+793f8025
+44ccc013
+68110981
+1ff1fe00
+1fe97e00
+1fe67e00
+1fe17eff
+1fe6fc0a
+20407efd
+1807fe00
+1ff27e00
+18070400
+9841fe00
+60008018
+20600000
+7080420a
+70890500
+68118138
+6011804c
+70804cfc
+20403db0
+200003e8
+20600000
+70804206
+6810896b
+793ffe04
+793ffe05
+6010896b
+70890500
+70890400
+70890470
+708905ff
+6810896b
+79207e04
+79207e05
+6010896b
+20403b38
+68108968
+79207e07
+60108968
+793ffe07
+60108968
+79207e07
+60108968
+70804205
+20600000
+200003e8
+70804204
+2000000a
+7080b400
+70800680
+6810812d
+c300bb26
+68198149
+70804205
+2000000a
+70800680
+6810812d
+c300bb2c
+68118149
+98467e00
+20213b32
+1fe67e00
+6001018c
+1fe67c46
+24213b34
+20600000
+58000f0f
+20203da7
+5800080f
+20203da7
+793f8025
+44cd4013
+20403a87
+78507c00
+7830fc00
+782b7c00
+20600000
+793f8025
+44cdc013
+6800804c
+2feffe02
+7920fe00
+60108011
+d8c00062
+e8c48000
+98006400
+e8c38000
+98006600
+68008054
+1fe0e9ff
+782d7c00
+20600000
+793f8025
+44ce4013
+7826fc00
+d9600600
+35330400
+1b427e00
+6003009c
+7846fc00
+242c3a6d
+dd2003bb
+1d00d001
+1d0151fc
+20600000
+7826fc00
+37cb8400
+202c3b55
+2d000402
+2420bb5e
+20203b55
+793f8025
+44cec013
+d9600600
+7826fc00
+34730400
+7846fc00
+242c3a6d
+20600000
+793f8025
+44cf4013
+7826fc00
+37c18400
+7846fc00
+242c3a6d
+dd2003bb
+1d0151fc
+20600000
+793f8025
+44cfc013
+98002200
+1c227e00
+98409600
+19627e00
+6002416a
+1a227e00
+20600000
+1fe20400
+793f8025
+44d04014
+18427e00
+20407e91
+1c307e00
+79207e2c
+20407e7a
+793ffe2c
+20403bda
+20407e7a
+20740000
+20407e84
+98003600
+37c18200
+20600000
+793f8025
+44d0c014
+20383b93
+35330200
+1d020400
+20203b96
+20373b95
+34730200
+1c420400
+20343ba3
+28400601
+2420bb8d
+793f8025
+44d14014
+68008030
+c4000000
+6802416a
+98467e00
+24610000
+1fe67cff
+20213b8d
+20600000
+28400603
+2420bb8d
+20203b99
+793f8025
+44d1c014
+d9600600
+20203b8d
+78547c00
+20203ba6
+78347c00
+20203ba6
+793f8025
+44d24014
+20403b41
+7850fc00
+78307c00
+20600000
+793f8025
+44d2c014
+d9600e43
+34730200
+782b7c00
+20600000
+793f8025
+44d34014
+d9600d00
+34730200
+20600000
+793f8025
+44d3c014
+d9600e43
+35330200
+782b7c00
+20600000
+793f8025
+44d44015
+51207e00
+782efc00
+79202a00
+08008648
+784efc00
+20600000
+1ca20400
+18418460
+18421c00
+20600000
+793f8025
+44d4c015
+6800c130
+1fe0fe01
+c083bbd7
+18007e01
+6000c130
+98000800
+20600000
+1b220400
+20748000
+1b420400
+20600000
+1c427e00
+20748000
+1d027e00
+20600000
+793f8025
+44d54015
+680a004d
+20403bde
+98461600
+19627e00
+68090051
+18438400
+98467e00
+20600000
+793f8025
+44d5c015
+20403bde
+6002004d
+20600000
+20203bf1
+20203bf2
+207a0000
+1fe37e00
+1fe0fffd
+1fe0ffff
+2422bbf6
+18007e00
+20600000
+df200010
+d8a00000
+20407e3b
+d8a003c0
+df20000a
+20407e3b
+7007de00
+700b7d00
+70040d00
+70018900
+70044d00
+793f8025
+44d64015
+70017700
+70015300
+70015e00
+589e8b33
+6001c147
+58000153
+60010083
+7000851e
+70008601
+70008807
+5812e904
+60018080
+58000a04
+6001c6fd
+580012e9
+60014700
+70008f60
+70417105
+70001402
+204075cd
+793f8025
+44d6c015
+20758000
+58000000
+60010091
+1c437e00
+60024134
+20600000
+580000aa
+d8a000d3
+1800721e
+e0a08000
+c2003c26
+20600000
+70890702
+7089081f
+7089091f
+70890ae0
+70890b4e
+70891245
+70895300
+70894cfb
+70894def
+70894e0c
+70896f88
+70897330
+70895300
+708956c9
+7089586c
+70895950
+20600000
+708930a9
+70892fb1
+70892eb9
+70892dad
+70892cb1
+70892bb5
+70892aba
+708929be
+708928c2
+708927c6
+708926ca
+708925ce
+708924d2
+708923d6
+708922da
+708921de
+708920e2
+70891fe6
+70891eea
+70891dee
+70891cf2
+70891bf6
+70891afb
+708947f5
+708946e5
+708945d5
+708944d8
+708943c9
+708942c8
+70894189
+70894088
+70893f87
+70893e48
+70893d09
+70893c08
+70893bc9
+70893ac8
+708939c7
+708938c6
+708937c5
+708936c4
+708935c3
+708934c2
+708933c1
+708932c0
+70893180
+20600000
+783b7c00
+588e89be
+1fed7e00
+1fe1fed6
+98001200
+70891407
+70890aa0
+70890d8f
+7089110f
+70891287
+20600000
+5800ee21
+60110050
+6810813e
+c301e725
+7835fc00
+c303bc7f
+7855fc00
+1ce27e00
+243a3c7f
+d85fffff
+20203cec
+6811813c
+6011804c
+e8c08000
+1fe1feef
+e0a08000
+20403db2
+6810804f
+79207e04
+6010804f
+20403db2
+2055bc90
+6810804e
+793ffe03
+6010804e
+20403db2
+20758000
+20206725
+6800c239
+60108086
+6801c22e
+60118080
+68024222
+60120074
+6802421e
+60120070
+68044226
+60140078
+68044231
+98000000
+68140140
+600400a3
+20406781
+20600000
+18027e00
+60044231
+68140070
+6004421e
+e8c40000
+e0a40000
+68118080
+6001c22e
+68108086
+6000c239
+20203db8
+681080b4
+243a3cb1
+6801c210
+247a0000
+7080b4c0
+70800680
+6810812d
+c4008000
+68118149
+6001c210
+20600000
+793f8025
+44d74015
+1b427e00
+20407e78
+680a4200
+18467cff
+20610000
+1fed7e00
+1ff27e00
+9846fc00
+20407efd
+1807fe00
+d84000c8
+20407f2e
+6000809b
+24343cc7
+1fe67e00
+6809c210
+9840fe00
+6001c210
+58000000
+60024200
+20600000
+793f8025
+44d7c015
+20403db8
+68120138
+793ffe0f
+6012004c
+20403db0
+d85fffff
+6800c1f8
+6000c21d
+6800c21b
+79207e07
+6000c21b
+793f8025
+44d84016
+68024200
+9840fe00
+60024200
+20403ca0
+6802c219
+6012004c
+1fef2200
+37d98200
+1b227e00
+60034204
+70800502
+37d98200
+37d98200
+1a227e00
+6010804f
+70800502
+37d98200
+37d98200
+601a004c
+70800510
+37df8200
+793f8025
+44d8c016
+58000000
+1ce27c00
+2022bcfd
+6810813c
+6818813d
+98467c00
+20213cfb
+18427e00
+9ce67e00
+1fe0fe01
+1fe0fe08
+37d98200
+9e20fe00
+680a41fc
+9840fe00
+6809c210
+984ffe00
+1fecfe00
+1ff1fe00
+1fe0fe6e
+d8400ea6
+9846fc00
+20407efd
+1807fe00
+1ff07e00
+18070400
+9841fe00
+680b4204
+20407e6d
+18423200
+68034048
+204039c0
+1b427e00
+60030161
+1ce27e00
+e0a08000
+6810811d
+1fe1fef0
+e0a08000
+20407f52
+20600000
+793f8025
+44d94016
+20403cab
+6801c210
+207a0000
+6800c131
+207a0000
+20403dca
+247a0000
+6800c040
+2fe00e03
+2420bd4d
+68014042
+207a0000
+20758000
+793f8025
+44d9c016
+680880a2
+68014042
+984ffe00
+18518400
+184b0400
+98467e00
+680a4044
+9840fe00
+6808c1f7
+98467e00
+1ff06000
+793f8025
+44da4016
+6801404e
+1fe37e00
+20407e91
+1e027e00
+20407e7a
+1b420400
+20407e78
+20740000
+20407e8a
+793f8025
+44dac016
+6800c219
+98467c00
+20213cca
+600a41fc
+20403ea9
+2040530c
+680a41fc
+20203cda
+793f8025
+44db4016
+6800c040
+c3800000
+c3818000
+6800c7dc
+203a3d56
+6800c793
+207a0000
+6800c3d8
+243a3d5a
+6800c133
+207a0000
+680141f5
+207a0000
+6808c1f7
+98467e00
+d8401d4c
+984ffe00
+20203d42
+793f8025
+44dbc016
+7855fc00
+68008030
+c4008000
+2436bd7b
+20403d76
+68014161
+6001003e
+68008047
+c281bd8a
+c586bd8a
+2040527e
+243a3d8a
+7000a200
+c586bd8a
+6800c215
+203a3d8e
+1fe0ffff
+6000c215
+20600000
+7041fa00
+6801c20a
+1fe0fe01
+6001c20a
+20600000
+793f8025
+44dc4017
+68094161
+18430400
+6801003e
+9840fe00
+6001003e
+7000a200
+6801c20d
+1fe0fe01
+6001c20d
+6800c1fa
+1fe0fe01
+6000c1fa
+20600000
+7000a200
+6800c214
+6000c215
+20600000
+6808c213
+600880a2
+20600000
+793f8025
+44dcc017
+6800c219
+247a0000
+70804206
+58000f0c
+20403da7
+58030d40
+20403bf3
+37d98200
+1e226000
+20403b36
+70804204
+2000000a
+37d98200
+1e227e00
+9e067e00
+1fe0fe30
+d84000ff
+20407f2e
+6000c219
+20600000
+d8a00fff
+98a10a00
+6800c216
+1fe17ef0
+1fed7e00
+98a1fe00
+6011004c
+e8c10000
+e0a10000
+58000001
+20203db3
+58000002
+37d98200
+60108005
+37d98200
+37d98200
+20600000
+793f8025
+44dd4017
+680200a3
+6012004c
+58000004
+20403db3
+680200a7
+6012004c
+58000008
+20203db3
+680141f3
+f9207e00
+600141f3
+20600000
+680141f3
+f93ffe00
+600141f3
+20600000
+793f8025
+44ddc017
+20403ea7
+680141f3
+1fe22200
+6800804c
+2feffe06
+7920a20b
+68008078
+6808807c
+9840fe00
+68088048
+9840fe00
+7d3a220a
+793f8025
+44de4017
+680102c4
+680902c6
+9840fe00
+7d3a220d
+6802c7df
+7d3a220f
+6802c7e4
+7d3a220e
+6800c272
+7d3a2208
+6800c132
+2fe1fe0a
+2040bdf5
+793f8025
+44dec017
+6800c132
+c080bdfa
+20403df5
+6800c25e
+793a2203
+680242a5
+d8401710
+98408400
+1c427e00
+98467c00
+7d212204
+20203dfc
+68110112
+7d3a2206
+6811010e
+7d3a2205
+20600000
+5ffffff8
+9a212200
+1a227e00
+600141f3
+207a0000
+20768000
+7835fc00
+20600000
+68120138
+793ffe1b
+6012004c
+20403db0
+20203bf1
+6812013c
+79207e14
+6012004c
+20203db2
+6812013c
+793ffe14
+6012004c
+20203db2
+793f8025
+44df4017
+6800c132
+c1808000
+20406a8b
+20608000
+68024807
+243a3e1a
+1c427e00
+60024807
+20206a6b
+793f8025
+44dfc017
+1c427e00
+680a4807
+98467e00
+d8400021
+98467c00
+24610000
+58000000
+60024807
+20204599
+680141f1
+c2803bf1
+20600000
+680141f1
+c280bbf1
+20600000
+680141f1
+c2813bf1
+20600000
+58003e37
+6001428e
+58003e3d
+60014292
+58003e37
+60014290
+20758000
+7047e901
+20600000
+68008030
+c300de9f
+7920000d
+6803420a
+60034703
+20207bde
+1a627e00
+c1880000
+20407bb1
+6800c7eb
+c000be3f
+20407be2
+20203ccd
+18000402
+184085fe
+20403a7a
+20403a91
+7843fc00
+782efc00
+79202a00
+20403bae
+68008000
+08008608
+20203e4c
+79200025
+44e6c039
+6800c132
+203a3e4f
+c0035aa2
+c003cb33
+c0024293
+c001cc09
+c000c461
+c004f624
+c00562ef
+c0064bf3
+c006ea8e
+c07fbe2e
+c2836486
+20600000
+79200025
+44e74039
+70015300
+70018900
+70018a00
+58000000
+600287da
+6800c132
+203a3e5f
+c005631f
+20600000
+20407ba1
+20407c45
+20403e73
+68014290
+20207f66
+6801428e
+20207f66
+6801428c
+20207f66
+79200025
+44e7c039
+da2047df
+20407f9f
+207a0000
+1fe22600
+20403e7d
+20203ea5
+da600000
+20600000
+c000be92
+c0083ed9
+c002beb6
+c0093ebd
+c0033ed5
+c0023efe
+c0013f03
+c009befe
+c00a3ecc
+c00abed0
+c001beaf
+c005bec1
+c0063ec8
+c00b3edd
+c00c3eab
+c0153e9b
+c015be99
+1fe1040f
+1fe17ef0
+c0283ee1
+20600000
+680147f4
+79207e00
+600147f4
+680142a2
+793ffe00
+600142a2
+20600000
+70025800
+20600000
+68008258
+1fe0fe01
+60008258
+1fe67c01
+20213f6c
+70025800
+680142a2
+79207e09
+600142a2
+20203f77
+68014292
+20207f66
+68014286
+20207f66
+6801428a
+20207f66
+680142a2
+79207e01
+600142a2
+20203fa2
+680147f4
+79207e07
+600147f4
+680142a2
+79207e02
+600142a2
+20600000
+680147f4
+79207e01
+600147f4
+680142a2
+79207e04
+600142a2
+20600000
+680147f4
+79207e03
+600147f4
+20600000
+680147f4
+79207e05
+600147f4
+680142a2
+79207e03
+600142a2
+20600000
+680147f4
+793ffe05
+600147f4
+20600000
+680147f4
+79207e09
+600147f4
+20600000
+680147f4
+793ffe09
+600147f4
+7046f800
+20203fa6
+680147f4
+79207e02
+600147f4
+20600000
+680142a2
+79207e00
+600142a2
+20600000
+680142a2
+79207e08
+600142a2
+20203f77
+79200025
+44e8403a
+60088259
+68008259
+207a0000
+1fe0ffff
+60008259
+20407bb1
+20403f60
+20403eed
+20403ef5
+20203ee4
+6800c29d
+207a0000
+1fe0ffff
+6000c29d
+247a0000
+204032ee
+2022bf9e
+20600000
+680147f0
+207a0000
+1fe0ffff
+600147f0
+247a0000
+20403f7e
+20403f98
+68014294
+20207f66
+20403f15
+680147f4
+793ffe07
+600147f4
+20600000
+70429d00
+680147f4
+c283bf08
+2fec0001
+2040be7b
+680147f4
+793ffe00
+793ffe01
+793ffe02
+793ffe03
+793ffe04
+600147f4
+20203fa6
+20403f12
+20203f9a
+58000000
+600142a0
+20600000
+58000000
+600142a2
+20600000
+680142a2
+600142a0
+58000000
+600142a2
+20600000
+680142a2
+79207e07
+600142a0
+58000000
+600142a2
+20600000
+2040691d
+68034274
+20600000
+6800c48b
+203a3f2a
+20403f96
+20203f82
+20403f94
+20203f88
+79200025
+44e8c03a
+da400244
+da603f31
+20203301
+d8400000
+c3003f35
+1a208c10
+e8cb0000
+18427e00
+245a3f3a
+e24b0000
+1a40a406
+20203307
+6800c29a
+1fe0fe01
+6000c29a
+20600000
+70429a00
+20203f2c
+6800c7f4
+2feffe05
+20600000
+58000000
+20203f46
+5800aa55
+600102a8
+79200025
+44e9403a
+d8400002
+da2002a8
+da4000c3
+2020683e
+79200025
+44e9c03a
+d8400002
+da200161
+da4000c3
+2040681d
+68010161
+d840aa55
+98467c00
+20600000
+6800c747
+6000c29d
+20600000
+d8e00009
+20203dc2
+d8e00009
+20203dc6
+70429e05
+20203f5a
+6800c29e
+207a0000
+1fe0ffff
+6000c29e
+247a0000
+20203f5c
+7043cc01
+20600000
+7043cc00
+20600000
+700b7d0a
+20207c33
+700b7d1d
+20207c33
+79200025
+44ea403a
+6800c29f
+60008177
+70025701
+700b7d03
+20207c33
+700b7d1e
+20207c33
+700b7d04
+20207c33
+680147fe
+600147f0
+20403f94
+700b7d01
+20207c33
+58000000
+600147f0
+700b7d02
+20207c33
+700b7d0f
+20207c33
+700b7d10
+20207c33
+700b7d0e
+20207c33
+700b7d0d
+20207c33
+700b7d17
+20207c33
+700b7d18
+20207c33
+700b7d16
+20207c33
+700b7d11
+20207c33
+700b7d1c
+20207c33
+700b7d15
+20207c33
+700b7d14
+20207c33
+700b7d13
+20207c33
+700b7d19
+20207c33
+700b7d06
+20207c33
+700b7d05
+20207c33
+700b7d1f
+20207c33
+700b7d20
+20207c33
+7920000d
+20600000
+793f800d
+20600000
+79200025
+44c84032
+d8400020
+da204419
+da4000a0
+2040681d
+d8400020
+da204702
+da40007f
+2040681d
+d8400006
+da204140
+da400063
+2040681d
+d8400006
+da2044f9
+da400069
+2040681d
+20405adb
+d8400002
+da2042ac
+da4000c0
+2040681d
+20406909
+20203fc1
+d840000e
+da20054f
+da40006f
+2020681d
+79200025
+44c8c032
+20403f4d
+2022bfa8
+20403fd2
+20403fd7
+20405adb
+20403fdc
+20403fe0
+204062e9
+20403fe4
+20403fe9
+20203f45
+6808c702
+18408401
+da204702
+da40007f
+2020683e
+6808c419
+18408401
+da204419
+da4000a0
+2020683e
+d8400006
+da2044f9
+da400069
+2020683e
+d8400006
+da204140
+da400063
+2020683e
+6808854f
+18408401
+da20054f
+da40006f
+2020683e
+580001a0
+600102a8
+d8400002
+da2002a8
+da4000c0
+2020683e
+79200025
+44c94032
+6801480e
+d840012c
+98467c00
+2021427f
+20403e2b
+20407f6b
+18622200
+6801480e
+1fe0fffe
+98608600
+e8610000
+d8400a0d
+98467c00
+24628000
+1a220600
+da404850
+df200003
+20404237
+2420c27f
+20204005
+79200025
+44c9c032
+18622200
+da404827
+18007204
+20404237
+2020c06d
+da404824
+18007207
+20404237
+2020c074
+da40482e
+18007204
+20404237
+2020c07b
+da40482b
+18007207
+20404237
+2020c081
+da404832
+18007204
+20404237
+2020c087
+da404820
+18007204
+20404237
+2020c08c
+da40481c
+18007204
+20404237
+2020c08f
+da404836
+18007205
+20404237
+2020c095
+da404853
+18007204
+20404237
+2020c09b
+da404857
+18007204
+20404237
+2020c0a1
+da40485b
+18007205
+20404237
+2020c0a5
+da404860
+18007204
+20404237
+2020c0ab
+da404864
+18007204
+20404237
+2020c0b0
+da404868
+18007204
+20404237
+2020c0b7
+da40486f
+18007204
+20404237
+2020c0d6
+da40486c
+18007207
+20404237
+2020c0dd
+da404873
+18007205
+20404237
+2020c0f2
+da404878
+18007204
+20404237
+2020c0f8
+da40487c
+18007207
+20404237
+2020c0fb
+da404841
+18007206
+20404237
+2020c100
+da404883
+18007206
+20404237
+2020c12c
+da404849
+18007203
+20404237
+2020c10e
+da40484c
+18007204
+20404237
+2020c117
+da40483b
+18007206
+20404237
+2020c127
+da404889
+18007203
+20404237
+2020c129
+2020427f
+e8608000
+c01fc071
+c01ec131
+2020427f
+20407f6e
+20404194
+20204286
+e8608000
+c01fc078
+c01ec136
+2020427f
+20407f6e
+2040419b
+20204286
+e8608000
+c01fc07f
+c01ec13c
+2020427f
+204041a2
+20204286
+e8608000
+c01fc085
+c01ec140
+2020427f
+204041a8
+20204286
+e8608000
+c01fc08a
+2020427f
+204041ae
+20204286
+e8608000
+c01ec149
+2020427f
+e8608000
+c01fc093
+c01ec144
+2020427f
+20404204
+20204286
+e8608000
+c01fc099
+c01ec157
+2020427f
+204041b4
+20204286
+e8608000
+c01fc09f
+c01ec172
+2020427f
+204041ba
+20204286
+e8608000
+c01fc0e1
+c01ec15a
+2020427f
+e8608000
+c01fc0a9
+c01ec16b
+2020427f
+2040420b
+20204286
+e8608000
+c01fc0ae
+2020427f
+204041c0
+20204286
+e8608000
+c01fc0b3
+20204286
+204032ee
+2422c27f
+204041cd
+20204286
+e8608000
+c01fc0ba
+2020427f
+6800c040
+c300427f
+20407f6e
+6800c041
+c28040c0
+202040cb
+da204868
+df200004
+20404232
+20404247
+58000034
+e1408000
+2040424e
+da2003d0
+20407e9d
+204068fa
+20204286
+da204868
+df200004
+20404232
+20404247
+58000033
+e1408000
+2040424e
+da200040
+20407e9d
+204068fa
+20204286
+79200025
+44ca4032
+20403f3e
+6800c29a
+c080427f
+204041f0
+20204286
+79200025
+44cac032
+204041f6
+20204286
+da204857
+df200004
+20404232
+204032ee
+2422c24a
+6800c041
+c280c0eb
+204040ef
+204068fa
+20204286
+5800004d
+e1408000
+204068fa
+20204286
+58000053
+e1408000
+20600000
+e8608000
+c01fc0f6
+c01ec17e
+2020427f
+204041d8
+20204286
+e8608000
+c01ec151
+2020427f
+e8608000
+c01fc0fe
+2020427f
+204041de
+20204286
+6800c29f
+60008177
+2040691d
+20403f3e
+6800c29a
+c080427f
+6800c2a9
+c019c10c
+c01a410a
+2020427f
+20403f82
+20204286
+20403f6e
+20204286
+20403f3e
+6800c29a
+c080c27f
+6800c041
+c2804115
+20403f77
+20204286
+20403f90
+20204286
+e8608000
+c01ec11a
+2020427f
+e8608000
+c018c122
+c018411e
+2020427f
+20403f40
+2020c286
+20403f9e
+20204286
+20403f40
+2420c286
+204063ab
+20406414
+20204286
+20403f43
+20204286
+e8608000
+c01ec187
+2020427f
+20403f3e
+6800c29a
+c080427f
+2040638a
+20204286
+da204703
+2040422b
+6008c702
+20403fd2
+20204286
+da20441a
+2040422b
+6008c419
+20403fd7
+20405adb
+20204286
+d8a04140
+20407ebf
+20403fe0
+20204286
+d8a044f9
+20407ebf
+20403fdc
+20204286
+da200550
+2040422b
+6008854f
+20403fe4
+20204286
+20407eb0
+5adc6c00
+9846fc00
+20407efd
+1807fe00
+600102a8
+20403feb
+20204286
+e8608000
+1fe67c33
+2421427f
+1fe17e03
+6000c812
+20204286
+e8618000
+6001c14a
+20204286
+204032ee
+2422c27f
+e8608000
+c029c160
+c026c163
+2020427f
+6800c041
+c280c166
+2020427f
+6800c041
+c300c166
+2020427f
+6800c813
+79207e04
+6000c813
+70427218
+2020428c
+d8a04280
+20407ebd
+d8a04282
+20407ebd
+d8a04284
+20407ebd
+20204286
+e8608000
+c018c176
+c019417c
+2020427f
+e8608000
+d8a001b4
+20407ebf
+20406931
+24740000
+20204286
+2040693d
+20204286
+e8608000
+6808c812
+7d3a0402
+6008c812
+203a4286
+e8608000
+d8a04814
+20407ebf
+20204286
+79200025
+44cb4032
+df200014
+d8a01000
+2040497c
+da201000
+68009000
+2fe1fe12
+2040eb19
+68009000
+2fe1fe13
+2040eb45
+20204286
+da204827
+df200004
+20404232
+6800c702
+1fe27200
+d8c04703
+20207f74
+da204824
+18007207
+20404232
+20405b08
+e8c08000
+1fe27200
+20207f74
+da20482e
+df200004
+20404232
+da204140
+20407e9d
+202068fa
+da20482b
+df200007
+20404232
+da2044f9
+20407e9d
+202068fa
+da204832
+df200004
+20404232
+df200006
+d8c04804
+20207f74
+da204836
+df200005
+20404232
+df200003
+d8c0414a
+20207f74
+da204853
+df200004
+20404232
+20406988
+20404253
+202068fa
+20406929
+da204860
+df200004
+20404232
+680081b3
+c019c1c8
+c01a41c8
+202068fa
+e1408000
+2040424e
+da2001b4
+20407e9d
+202068fa
+79200025
+44cbc032
+da204864
+df200004
+20404232
+204041d4
+202068fa
+da200018
+df200001
+20207e9e
+20600000
+da204873
+df200005
+20404232
+da204814
+20407e9d
+202068fa
+da20487c
+df200007
+20404232
+6800c812
+1fe22200
+6800c040
+2feffe00
+7920a203
+2feffe01
+7920a205
+6800c041
+2feffe01
+7920a204
+2feffe00
+7920a206
+1a227e00
+e1408000
+202068fa
+589e8b33
+6001c147
+6800c2a4
+79207e00
+6000c2a4
+20204636
+20403f3e
+6800c29a
+c080427f
+20403f8a
+6800c2a4
+79207e01
+6000c2a4
+58000200
+6001481a
+da20486c
+df200006
+20404232
+20407f74
+2020428c
+da20481c
+df200004
+20404232
+6800854f
+1fe27200
+d8c00550
+20207f74
+da20485b
+df200005
+20404232
+20404247
+58000054
+e1408000
+20404244
+da204280
+20407e9b
+20404247
+58000041
+e1408000
+20404244
+da204282
+20407e9b
+20404247
+5800004f
+e1408000
+20404244
+da204284
+20407e9b
+20207f74
+20407f6e
+20404247
+da200182
+20407e9d
+2040424e
+da20017f
+20407e99
+2040424e
+204041d4
+202068fa
+2040422d
+2020497c
+20404269
+1fe20400
+1fe27200
+1a220a00
+20600000
+20407f6e
+20404241
+1a220c00
+20404976
+20204244
+e8608000
+ea488000
+98467c00
+7840fc00
+2422c240
+1a40a401
+c2004237
+7820fc00
+20600000
+20204251
+5800002b
+e1408000
+20600000
+5800003a
+e1408000
+20600000
+5800003e
+e1408000
+20600000
+5800004e
+e1408000
+204068fa
+20204286
+5800002c
+e1408000
+20600000
+1a220600
+20600000
+da600195
+df200004
+1f227e00
+60008161
+ea608000
+c019c25b
+c01a425b
+20204267
+20404247
+ea608000
+e1408000
+1a60a601
+2040424e
+1a622200
+20407e9d
+1a60a606
+68008161
+1fe27200
+c2004255
+20600000
+1a60a601
+20204262
+79200025
+44cc4033
+68110058
+98667e00
+20628000
+20214273
+6809480e
+9840fe00
+1fe0fffe
+20600000
+20404278
+98608400
+68110058
+98467e00
+2020426f
+dfe04fff
+1fe0fe01
+d8404a00
+98467e00
+20600000
+6809480e
+20206903
+79200025
+44ccc033
+20407f6e
+58525245
+e1418000
+204068fa
+2020428c
+79200025
+44cd4033
+20407f6e
+58004b4f
+e1410000
+204068fa
+79200025
+44cdc033
+2040427d
+58000000
+6001480e
+6002480a
+20600000
+20407db2
+20403f94
+5800429f
+6001428c
+580042be
+60014292
+58007cdb
+60014290
+70025a05
+70026e00
+7042721b
+20600000
+7840fc00
+20403f3e
+70041c1b
+6800c29a
+2fe00602
+24608000
+7043d200
+20600000
+68008340
+c30042b0
+68030342
+680b03d0
+98467c00
+24628000
+680303d0
+600344e7
+20600000
+da2000ff
+20405b52
+24628000
+e8c10000
+68090270
+98467c00
+24628000
+6800826e
+1fe0fe01
+6000826e
+6808826f
+98467c00
+202142ad
+20600000
+1a627e00
+c00ac2c5
+c00a42d7
+1fe1040f
+1fe17ef0
+c02842cd
+20600000
+58000000
+600344e7
+70026e00
+58000000
+60028ff1
+700ff001
+20407cdb
+20203f8a
+20600000
+6800c3d2
+207a0000
+6800825a
+207a0000
+1fe0ffff
+6000825a
+247a0000
+204042d8
+20203f8e
+20203f8c
+70025a05
+68008267
+c000c2e1
+c00142dd
+20600000
+6803025b
+60030268
+70026701
+20600000
+68030261
+60030268
+70026702
+20600000
+e8610000
+203a4490
+98002600
+e8608000
+60008293
+98002200
+c30342ed
+1a60a7fe
+e8610000
+1ff1f200
+1fe1100f
+9a20a200
+1fecfe00
+9a20a200
+e8608000
+9a20fe00
+c0ffc319
+1a60fffc
+9f267c00
+2422c316
+68008293
+2fec0007
+2020c302
+793f801b
+c50dc302
+1fe17e07
+6808828c
+98467c00
+2422c316
+58000640
+18000e07
+20407e4c
+19027e00
+20404320
+20740000
+68008293
+98002200
+1fe90400
+18410407
+6800828b
+98467e00
+1fe67e00
+1fe17e07
+c080c316
+6008828b
+68008272
+1fe0fe01
+60008272
+20204319
+68008273
+1fe0fe01
+60008273
+68110058
+98000600
+e8610000
+98608600
+18627e00
+60110058
+20600000
+78547c00
+207a0000
+c000c328
+c0014346
+c002c507
+c00344dd
+c0044a56
+20600000
+793f8018
+e8608000
+c06d432f
+c0564336
+c056c33a
+c06f4344
+20600000
+c50bc333
+180004da
+58ededdc
+2040433c
+180004ac
+58eeefaf
+2020433c
+79200017
+180004ad
+58edacef
+2020433c
+180004de
+58d0d0ad
+1fed7e00
+98418400
+20404972
+e14a0000
+18000e01
+18007204
+793f8013
+20204378
+18006000
+20204933
+1f226000
+20404371
+18002400
+20404972
+1e027200
+e8608000
+58000001
+e1408000
+793f801a
+e8608000
+1a40a401
+c00e435b
+2a41fe04
+2420c35d
+793a001a
+c09d435d
+580007d0
+18000e00
+20407e4c
+79200018
+20600000
+2a41fe06
+2020c366
+280ffe1a
+2040c368
+e1408000
+c200434f
+793f8019
+1e027200
+79200013
+18000e02
+20204378
+79200019
+2020435d
+c60c8000
+2a41fe0a
+2020c36f
+2a41fe0b
+24608000
+58000012
+20600000
+580000e9
+20600000
+68008293
+1fe0fe01
+1fe17e07
+6000828c
+18007200
+18000e00
+793f8013
+1f20a404
+6800828c
+1fe9a600
+280c0014
+7d20a606
+2020c37f
+1a40a402
+c589c389
+79202607
+68008294
+9a61a600
+1fe0fe01
+1fe17e07
+60008294
+68008274
+1fe0fe01
+60008274
+6801028f
+98001400
+1a427e00
+280ffe13
+7920fe0f
+e1410000
+19422200
+1a627e00
+e1408000
+1f327e00
+98e1fe00
+9a60a600
+e1410000
+1fecfe00
+9a60fe00
+1fe67eff
+e1408000
+c58a439f
+1f20f204
+1a221400
+20404986
+e1410000
+6801028f
+9a409400
+19409402
+19427e00
+6001028f
+6011005e
+6809028d
+204043d8
+204043ab
+58000640
+18000e07
+20207e4c
+58000190
+18000e01
+20407e4c
+79200015
+20600000
+c68a8000
+18000e01
+20407e53
+247a0000
+6801028d
+60110060
+202043ab
+6801028f
+6809028d
+98467c00
+2022c3d6
+18421400
+e9410000
+98002200
+9ea17e00
+99409400
+68110110
+99467e00
+9ea12400
+6801028f
+99467e00
+9ea17e00
+9a467e00
+24610000
+2a2c000f
+2020c3d1
+68008272
+207a0000
+1fe0ffff
+60008272
+68008274
+1fe0ffff
+60008274
+19420400
+6009028d
+6801028f
+204043d8
+202043b7
+793f8015
+20600000
+98467e00
+9ea17e00
+9ea67e00
+1fe67e00
+60010291
+20600000
+6801028f
+99409400
+20600000
+20600000
+79200025
+44f6403d
+6800c272
+247a0000
+204043e9
+2454440e
+20600000
+79200025
+44f6c03d
+18622200
+d8400004
+e8608000
+c000c3f4
+18408401
+c00143f4
+18627e00
+60110058
+20600000
+68110112
+98467c00
+242143f4
+78547c00
+1a220600
+20404417
+98408400
+68110112
+98467c00
+242143fb
+1a220600
+e8608000
+c000c507
+c0014403
+20203bf1
+79200025
+44f7403d
+18622200
+e8610000
+1a220600
+68088046
+a841fe00
+2020c4dd
+203b58ea
+78347c00
+20600000
+79200025
+44f7c03d
+68110058
+98000600
+20404417
+98608600
+18627e00
+60110058
+20600000
+e8608000
+18608602
+c001441c
+e8608000
+20600000
+e8610000
+20600000
+6811005e
+194095fb
+99409400
+20600000
+d8400004
+20204425
+d8400002
+79200025
+44f8403e
+1f20f201
+6811005e
+1fe21400
+1f227e00
+e1488000
+1fe0ffff
+99409400
+19427e00
+6001029d
+18427e00
+c1010000
+6801029d
+6011005e
+2020443b
+79200025
+44f8c03e
+6801029d
+203a3bf1
+6011005e
+2020443b
+58000000
+6001029d
+20600000
+68190110
+6811005e
+98462200
+24214447
+6819005a
+6811005c
+98467e00
+9a260400
+20600000
+1a2605ff
+20600000
+793f8025
+44e6c019
+6800c132
+c1808000
+204044a3
+20404494
+2040c3b0
+20404494
+2040c3b7
+202044e6
+c68c0000
+18000e00
+20407e53
+247a0000
+20404472
+20404494
+24608000
+793f8017
+180004da
+58ededdc
+2040433c
+580007d0
+18000e00
+20207e4c
+793f8025
+44e74019
+20758000
+58004aed
+60014290
+580001a0
+600142ac
+793f8025
+44e7c019
+20406a0d
+58001800
+60110054
+58001bff
+60110056
+58001c00
+6011005a
+20404489
+793f8025
+44e8401a
+70806200
+70028b00
+70028c00
+70029400
+58001c00
+6001028f
+6001028d
+6011005e
+60110060
+58001800
+60110058
+60010289
+793f8025
+44e8c01a
+68110050
+793ffe0f
+60110050
+20406909
+70804301
+70806281
+20204497
+58001fff
+6011005c
+68108081
+1fe1fe07
+60108081
+70029fff
+20600000
+68110116
+60110058
+7920001b
+20600000
+68108062
+2feffe03
+20600000
+58004803
+60010295
+60010297
+18000401
+9840fe00
+9840fe00
+1fe0fe02
+60010299
+58000000
+6000829c
+6000829b
+20600000
+793f8025
+44e9401a
+6810810c
+98002400
+c301c4ad
+68110112
+98002600
+d840044f
+98467c00
+24628000
+68110058
+98000600
+20404494
+2020c2e5
+202043e2
+20404494
+2020c371
+20600000
+6818810c
+284ffe06
+2020c4b5
+60108015
+20600000
+68090299
+68010295
+98000a00
+18627e00
+e0a10000
+18a27e00
+60010295
+a841fe00
+2040c4c7
+6800829b
+1fe0fe01
+6000829b
+20600000
+58004803
+60010295
+20600000
+6800829b
+207a0000
+68090299
+68010297
+98000c00
+e8c10000
+98000600
+18c27e00
+60010297
+a841fe00
+2040c4da
+6800829b
+1fe0ffff
+6000829b
+18007e01
+20600000
+58004803
+60010297
+20600000
+793f8025
+44e9c01a
+6800829b
+1fe67c02
+202144e4
+78347c00
+202044e6
+204044b2
+204044ba
+793f8025
+44ea401a
+c6010000
+204044ca
+207a0000
+e8688000
+204032f7
+24628000
+e8608000
+1ff1fe00
+1fe17e03
+243a44f3
+79207e01
+79207e02
+60008090
+e8610000
+60010091
+18627e00
+60010179
+79200002
+c584c502
+68008046
+98467c00
+2422c502
+6800804b
+79207e06
+6000804b
+20600000
+1a20a21b
+ea208000
+79207e06
+e2208000
+20600000
+793f8025
+44eac01a
+6800c272
+203a450d
+78347c00
+20600000
+204044b2
+e8610000
+98006000
+98000e00
+e8608000
+98000400
+1e0b7e00
+1fecfe00
+c000c51e
+c001453d
+c001c54f
+c0024569
+c002c572
+c003457c
+c01fc585
+c00445e0
+20600000
+793f8025
+44eb401a
+18e27e00
+c000c634
+c0014643
+c001c949
+c0024949
+c002c645
+c003464f
+c003c949
+c004465d
+c004c739
+c005473f
+c005c664
+c006466a
+c006c66d
+c0074675
+c007c743
+c008c688
+c009c68b
+c00ac949
+c00bc949
+c00cc690
+c00dc69b
+c00e4696
+c00ec6a1
+c00fc6a7
+c01446ab
+c014c6b6
+c015c67b
+2020474d
+793f8025
+44ebc01a
+18e27e00
+c004c6cc
+c006c6d7
+c000c949
+c001c74f
+c002475a
+c002c949
+c0034949
+c003c949
+c005c760
+c0064949
+c0074949
+c007c949
+c0084949
+c008c75f
+2020474d
+793f8025
+44ec401b
+18e27e00
+c000c725
+c001c949
+c00946da
+c009c6c2
+c00a46b8
+c00c46db
+c00cc705
+c00d46de
+c00e46e1
+c00f46e6
+c01046ec
+c01146eb
+c01246ef
+c0134949
+c018c949
+c019c949
+c01ac62e
+c021c949
+c022c949
+c023c949
+c028c6f2
+c02b4701
+2020474d
+793f8025
+44ecc01b
+18e27e00
+c000c70a
+c001c70f
+c0024714
+c002c71b
+c004c720
+2020474d
+793f8025
+44ed401b
+18e27e00
+c000c949
+c0014726
+c001c727
+c002c72d
+c0034733
+c003c736
+2020474d
+793f8025
+44edc01b
+18e27e00
+c000c949
+c0014949
+c001c949
+c0024949
+2020474d
+20600000
+793f8025
+44ee401b
+18e27e00
+c0004949
+c000c59d
+c00145a2
+c001c5a6
+c00245b9
+c002c949
+c00345ca
+c003c593
+c00845cd
+c008c5d5
+20204949
+20404949
+20407f68
+20406a68
+20403f5c
+20403f66
+20206a7d
+7042ae00
+20403f5a
+20404468
+20203f68
+2040496e
+68110000
+e1410000
+18007206
+2020494c
+e8610000
+600142ac
+60110052
+20600000
+e8608000
+1fe20400
+60108024
+e8608000
+98408400
+79207e07
+60108023
+e8608000
+98408400
+1fe27200
+e8608000
+60108025
+98408400
+c20045b0
+184104ff
+e8608000
+98467c00
+2422c5c8
+20204949
+df200020
+d8a04000
+d8400000
+e8608000
+e0a08000
+98408400
+c20045bc
+184104ff
+e8608000
+98467c00
+2422c5c8
+70802300
+20404949
+2040440e
+20203001
+70802300
+20203000
+e8630000
+60034140
+20204949
+e8608000
+600082c1
+1fe27200
+e8610000
+600102c2
+1fe20a00
+2040497c
+20204949
+e8608000
+600082c1
+1fe27200
+e8610000
+600102c2
+d8a01000
+2040497c
+680882c1
+da201000
+680102c2
+20206842
+793f8025
+44eec01b
+18e27e00
+c000c949
+c00145f3
+c001c5f8
+c00345ff
+c0044603
+c004c607
+c005460b
+c005c60e
+c0064611
+c006c614
+c0074626
+c00ac627
+c00b4933
+c009c949
+2020474d
+20600000
+2040496e
+58000000
+e1418000
+18007207
+2020494c
+2040496e
+58000001
+e1410000
+58000000
+e1430000
+1800720c
+2020494c
+df20000f
+d8a044d7
+2040497c
+20204949
+df200020
+d8a043d9
+2040497c
+20204949
+df200020
+d8a043f9
+2040497c
+20204949
+e8608000
+6000c3d8
+20204949
+e8638000
+6003c4f6
+20204949
+e8608000
+6000c3d2
+20204949
+e8620000
+600243d3
+e8608000
+6000c4f8
+df200014
+d8a044e6
+2040497c
+7043d201
+6800c4ed
+6000c4f7
+680144f0
+600143d0
+680144f2
+600103ed
+680144f4
+600103ef
+7042721b
+20204933
+20204949
+2040496e
+e8610000
+e1410000
+581fffff
+e1428000
+1800720b
+2020494c
+e8618000
+e8698000
+68014800
+9840fe00
+60014800
+20600000
+e8618000
+6001c147
+70427201
+e8608000
+d8400640
+984ffe00
+d840ffff
+98467c00
+2421463e
+18427e00
+18000e02
+20407e4c
+6800c2a4
+c280428c
+20204933
+70427202
+20204949
+20404763
+e8610000
+60010275
+e8610000
+600080f3
+20404776
+e8608000
+6000c802
+70427205
+20204933
+70427206
+e8610000
+6000c273
+e8608000
+60008446
+7002c016
+6800c273
+680880ad
+98467c00
+2422c933
+70427211
+680080ac
+6000c273
+20204933
+2040496e
+20404965
+1800720a
+2040494c
+7042721a
+18000402
+20204826
+20404763
+d8a04262
+18007210
+2040497c
+7042720b
+20204677
+20404763
+7042720c
+20204677
+20404763
+e8608000
+6000854f
+98007200
+d8a00550
+2040497c
+70427209
+20204677
+20404763
+7042720a
+2040496e
+20404965
+1800720a
+2020494c
+18608606
+e8618000
+600187e6
+680087db
+c009c683
+c001c683
+70427216
+20204684
+7007dd01
+2040496e
+20404965
+1800720a
+2020494c
+20404766
+7042720d
+20204933
+20404766
+e8608000
+1fe0fe0e
+6000c272
+20204933
+20404763
+e8610000
+600080f3
+20404776
+70427203
+20204933
+e8610000
+e8608000
+60008449
+70427215
+20204933
+68008046
+18002202
+203a493d
+20404766
+70427204
+20204933
+68008046
+18002202
+203a493d
+20404766
+70427214
+20204933
+2040476e
+18000e1c
+18007205
+20204952
+20404766
+1860860a
+e8610000
+60010281
+e8608000
+60008283
+e8610000
+60010284
+7000ab02
+70427210
+20204933
+7042721c
+20204933
+2040496e
+d8c04703
+18c672ff
+20404976
+18007e00
+18c67303
+1f20f2f8
+20404982
+180072fc
+2020494c
+d8a04703
+18a672ff
+e8608000
+e0a08000
+203a46c8
+c20046c4
+18a67f03
+1fe67e00
+6000c702
+20204949
+2040496e
+2040496b
+18007e00
+7d34fe00
+e1408000
+18007207
+de000809
+2040494c
+202049bc
+70427217
+20600000
+20404769
+18007206
+2020494c
+20204949
+e8610000
+60014159
+20204949
+e8608000
+6000c133
+20204949
+e8610000
+60014153
+e8610000
+60014151
+20204949
+e8610000
+6001414f
+e8610000
+6001414d
+20204949
+20204949
+e8608000
+60008453
+20204949
+e8618000
+6001c14a
+20204949
+18427e00
+203a4949
+20404970
+18007e01
+e1408000
+1e027e00
+e1410000
+18007e12
+e1408000
+58000000
+1f20f2f1
+20404982
+18000e0e
+180072f5
+20204952
+e8608000
+245a6003
+205a6009
+20204949
+2040496e
+6800c133
+e1408000
+18007205
+2020494c
+2040496e
+68040080
+e1440000
+1800720c
+2020494c
+2040496e
+68044138
+e1440000
+1800720c
+2020494c
+2040496e
+58000101
+e1410000
+58000001
+e1440000
+1800720e
+2020494c
+2040496e
+68038083
+e1438000
+1800720b
+2020494c
+2040496e
+68034140
+e1430000
+1800720a
+2020494c
+20204949
+20204949
+2040496e
+2040496b
+580000ff
+e1408000
+18007207
+2020494c
+2040496e
+2040496b
+58000000
+e1408000
+18007207
+2020494c
+793f8025
+44ef401b
+20204949
+793f8025
+44efc01b
+20204949
+20404763
+70427207
+e8608000
+c000c933
+70427219
+20204933
+20204739
+20404763
+70427208
+20204949
+20404933
+20404970
+58000000
+e1408000
+e8620000
+e1420000
+18007208
+d8e0001d
+df200005
+20204952
+18002201
+2020493d
+20404766
+e8610000
+60014280
+e8610000
+6001027b
+e8610000
+60014282
+e8610000
+60014284
+70427212
+20204933
+20404766
+2040475d
+20204933
+70427213
+20600000
+20204949
+20404763
+70427218
+20204933
+e8630000
+60034274
+20600000
+e8610000
+6000c273
+20600000
+20404766
+2040496e
+6800c273
+e1410000
+20600000
+20404766
+20404933
+20404970
+18007e00
+e1408000
+6800c273
+e1410000
+20600000
+e8610000
+9c40fe00
+1fe17ffc
+600200f4
+20600000
+793f8025
+44f0401c
+68008274
+1fe67c02
+24610000
+680b0182
+204032fc
+20628000
+20404972
+58010f22
+e1418000
+68030182
+e1430000
+6800817d
+1fe20400
+1fe97e00
+1fe97e00
+e1408000
+18427e00
+1fe17e30
+1fe97e00
+1fe37e00
+e1408000
+6801817f
+e1418000
+6802016f
+9c467e00
+e1410000
+580000c8
+e1408000
+1800720f
+20204959
+793f8025
+44f0c01c
+1800041c
+68010291
+98467c00
+24610000
+68098286
+68018185
+98467c00
+20628000
+207a0000
+60018286
+68008274
+1fe67c02
+24610000
+680b0182
+204032fc
+20628000
+204047cc
+1800040f
+680084df
+c084c7c5
+680084de
+203a47c5
+98007200
+e1408000
+98408400
+18408401
+d8c004df
+e8c08000
+e1408000
+c20047b8
+e8c08000
+203a47c5
+98007200
+e1408000
+98408400
+18408401
+e8c08000
+e1408000
+c20047c1
+202047bb
+18467eff
+98007200
+58000000
+e1408000
+c20047c7
+180072ff
+20204959
+793f8025
+44f1401c
+20404972
+5801ff2f
+e1418000
+68030182
+e1430000
+6800817d
+1fe20400
+1fe97e00
+1fe97e00
+e1408000
+18427e00
+1fe17e30
+1fe97e00
+1fe37e00
+e1408000
+6801817f
+e1418000
+6802016f
+9c467e00
+e1410000
+580000c8
+e1408000
+20600000
+793f8025
+44f1c01c
+6800c132
+c1808000
+20404968
+e14c0000
+1800720b
+18000e0b
+20204952
+793f8025
+44f2401c
+6800c132
+c1808000
+20404970
+68030040
+e1430000
+e14c0000
+1800720e
+18000e3d
+20204952
+793f8025
+44f2c01c
+6800c132
+c1808000
+20404968
+68008449
+e1408000
+58000001
+e1408000
+e14c0000
+1800720d
+18000e23
+20204952
+793f8025
+44f3401c
+6800c132
+c1808000
+20404968
+e14a8000
+18007208
+18000e0c
+20204952
+793f8025
+44f3c01c
+6800c132
+c1808000
+20404970
+68030040
+e1430000
+680187e9
+e1418000
+18007209
+18000e32
+20204952
+793f8025
+44f4401d
+6800c132
+c1808000
+20404970
+68030040
+e1430000
+18007206
+18000e31
+20204952
+18000400
+793f8025
+44f4c01d
+6800c132
+c1808000
+18000e03
+70480005
+20404970
+e1488000
+2040496b
+20404965
+18007e01
+e1408000
+18007e00
+6808804c
+284ffe02
+7920fe00
+e1408000
+1800720b
+20204952
+793f8025
+44f5401d
+6800c132
+c1808000
+18000e04
+20404970
+20404965
+6801817f
+e1418000
+e1488000
+1800720a
+20204952
+793f8025
+44f5c01d
+6800c132
+c1808000
+20404968
+18007e00
+6808804c
+284ffe02
+7920fe00
+e1408000
+18000e08
+18007204
+20204952
+793f8025
+44f6401d
+6800c132
+c1808000
+18000e18
+20404970
+20404965
+d8c04262
+18007210
+20404976
+18007e05
+e1408000
+18007217
+20204952
+6800c132
+c1808000
+18000e33
+20404970
+20404965
+680207ec
+e1420000
+1800720a
+20204952
+6800c132
+c1808000
+18000e36
+20404970
+58000000
+e1408000
+20404965
+18007207
+20204952
+793f8025
+44f6c01d
+18000e17
+6800c132
+c1808000
+20404970
+20404965
+18007206
+20204952
+6800c132
+c1808000
+18000e16
+20204875
+6800c132
+c1808000
+18000e12
+20404970
+18007e00
+e1408000
+20404965
+e1488000
+18007208
+20204952
+6800c132
+c1808000
+18000400
+2434c88e
+18000401
+6800c132
+c1808000
+18000e12
+20404970
+18007e35
+e1408000
+20404965
+e1488000
+18007208
+20204952
+793f8025
+44f7401d
+6800c132
+c1808000
+20404972
+5800ff07
+e1410000
+18e27e00
+e1408000
+20404965
+d8c00103
+180072f8
+e8c08000
+e1408000
+c20048a4
+180072ff
+20204959
+793f8025
+44f7c01d
+6800c132
+c1808000
+6810810e
+247a0000
+6800804b
+c4038000
+793ffe07
+6000804b
+20404970
+18007e01
+e1408000
+2040496b
+18007e01
+e1410000
+18000e13
+18007205
+20204952
+793f8025
+44f8401e
+6800c132
+c1808000
+20404968
+18000e06
+18007203
+20204952
+793f8025
+44f8c01e
+6800c132
+c1808000
+20404970
+18007e00
+e1408000
+e1490000
+680082c0
+e1408000
+18000e05
+18007204
+20204952
+793f8025
+44f9401e
+6800c132
+c1808000
+20404970
+58000102
+e1410000
+68088340
+18417e0f
+e1408000
+1a227e00
+e1408000
+68088341
+184085fa
+68030342
+e1430000
+e1488000
+18427200
+20404976
+5800007f
+e1408000
+18427200
+1f20f20c
+18000e3e
+20204952
+793f8025
+44f9c01e
+6800c132
+c1808000
+20404970
+58000001
+e1408000
+e1488000
+680083d6
+e1410000
+680083c1
+1fe37e00
+79407e00
+e1408000
+6800c4e6
+e1408000
+680303d0
+e1430000
+680143d0
+e1410000
+680103ed
+e1410000
+680103ef
+e1410000
+680083f8
+e1408000
+18000e3e
+df200013
+20204952
+793f8025
+44fa401e
+6800c132
+c1808000
+20404970
+20404968
+e1488000
+68010032
+1fe37e00
+e1410000
+18007206
+18000e14
+20204952
+793f8025
+44fac01e
+6800c132
+c1808000
+793f8025
+44fb401e
+20404970
+e1488000
+58000e00
+e1410000
+20404965
+18007e00
+c503c924
+18007e00
+e1438000
+2020492c
+6800c132
+c1808000
+58020602
+e1418000
+5800001e
+e1410000
+5800001e
+e1410000
+6800c132
+c1808000
+680080ab
+e1408000
+18000e2c
+18007211
+20204952
+793f8025
+44fbc01e
+20404970
+58000100
+e1410000
+1e027e00
+e1410000
+18007204
+18000e0f
+20204952
+793f8025
+44fc401f
+20404970
+1a227e00
+e1408000
+58000001
+e1408000
+1e027e00
+e1410000
+18007204
+18000e0f
+20204952
+793f8025
+44fcc01f
+18007204
+20404970
+18007e01
+e1408000
+1e027e00
+e1418000
+18000e0e
+793f8025
+44fd401f
+20404972
+18e27e00
+e1408000
+1f227e00
+e1408000
+79200013
+18000e05
+1f20f202
+20404494
+2020c378
+20204422
+18000eff
+20404970
+58000001
+e1408000
+18007201
+20204952
+68030040
+e1430000
+20600000
+20404970
+18007e00
+e1408000
+68008046
+e1410000
+20600000
+1800140c
+20204973
+18001408
+20204973
+18001406
+20404494
+2020c3de
+2020441e
+1f227e00
+207a0000
+e8c08000
+e1408000
+c2004978
+20600000
+1f227e00
+207a0000
+e8608000
+e0a08000
+c200497e
+20600000
+e1408000
+1fecfe00
+c2004982
+20600000
+7827fc00
+7824fc00
+e9408000
+08008008
+c2004988
+78247c00
+08008010
+78447c00
+7844fc00
+7847fc00
+1ff0fe00
+20600000
+20000001
+70820301
+20204992
+793f8025
+44fdc01f
+6800c272
+207a0000
+6800807c
+247a0000
+204049be
+2422c9aa
+6800c272
+c001c9d4
+c004c9da
+c00549e6
+c005c9ed
+c00649f7
+c0044a32
+c00c49cc
+c003c9c6
+c00cc9ca
+c00d4a53
+c0094a19
+c009ca28
+793f8025
+44fe401f
+204049c2
+247a0000
+6800c272
+c006ca01
+c007ca0b
+c0074a0d
+c0084a2a
+c008ca34
+c00e4a38
+c0024a0f
+c00aca14
+c00a4a17
+c00bca48
+c00b4a51
+c1830000
+20405ed5
+70427200
+20600000
+68034274
+680b0040
+98467c00
+20600000
+6800c273
+68088046
+98467e00
+20600000
+70007c03
+70007d33
+20406212
+202049bc
+2034ca38
+79200004
+70007c34
+79200003
+2434c9bc
+70007c13
+68008177
+793ffe02
+60008177
+202049bc
+70007c01
+70005300
+202049bc
+7007dd01
+7007db12
+202049bc
+6800804b
+c28149df
+20406209
+70007c08
+202049bc
+793ffe02
+6000804b
+20405ed0
+58000000
+7934fe01
+6000807f
+202049bc
+70044618
+70007c07
+68008030
+c28049bc
+18000418
+20404826
+202049bc
+2040321f
+6800804b
+c280ca08
+c28049f3
+c28149df
+202049bc
+793ffe00
+6000804b
+70007c0c
+202049bc
+6800804b
+c28049fb
+2040487b
+202049bc
+793ffe00
+6000804b
+70007c04
+70007d0b
+70007e06
+202049bc
+6800804b
+79207e01
+6000804b
+68008030
+c283ca08
+20404872
+202049bc
+20406209
+70007c0b
+202049bc
+70007c0f
+202049bc
+70007c0f
+202049bc
+793f8025
+44fec01f
+70007c27
+70427250
+20600000
+70007c83
+70427251
+20600000
+70007c25
+202049bc
+70007c17
+d8a00455
+58000000
+2d0ffe1b
+7920fe01
+e0a08000
+58000000
+e0a10000
+68014280
+e0a10000
+6800c282
+e0a10000
+6800c284
+e0a10000
+202049bc
+70007c18
+202049bc
+20403512
+600080ad
+68008046
+600080ac
+70007c2b
+79200007
+70007c8c
+202049bc
+20405ed5
+202049bc
+70007c2c
+c583c9bc
+70007c8d
+202049bc
+2034ca41
+70007c03
+70007d2b
+c583c9bc
+680080b0
+c083dc04
+70007c81
+70007d8c
+202049bc
+20403512
+600080ad
+68008046
+600080ac
+70007c2b
+c583c9bc
+20205c04
+2040496e
+2040496b
+18007e00
+7d34fe00
+e1408000
+18007207
+de000809
+2040494c
+202049bc
+70007c9a
+202049bc
+70007c07
+70044613
+202049bc
+7002bc00
+e8608000
+600082bb
+20404a6d
+20407e00
+680082bb
+1fe20400
+6800829f
+1fe0fe01
+a841fe00
+2420ca77
+6000829f
+20407e0e
+e8608000
+c000cad8
+c0014aae
+c001cadf
+c002cac3
+c0034a80
+c003ca91
+c0044aa8
+c004cae6
+20600000
+1fe20400
+20407e00
+680082bc
+9840fe00
+600082bc
+20207e0e
+18007e01
+204044b5
+6800829f
+202044b5
+20407e0e
+20204a7c
+6800829f
+1fe0ffff
+6000829f
+18007e00
+204044b5
+6800829f
+202044b5
+20404a6d
+e8608000
+600082bd
+20404a6d
+e8608000
+1fed0a00
+20404a6d
+680082bd
+98a08a00
+e8608000
+e0a08000
+20404a6d
+e8608000
+20404a6d
+680082bc
+c0ffca79
+20204a73
+20404a6d
+e8608000
+600082bd
+20404a6d
+e8608000
+600082be
+20404a6d
+e8608000
+20404a6d
+680082bc
+c0ffca79
+680082be
+1fed0400
+680082bd
+98408600
+e8608000
+600082bd
+18007e01
+204044b5
+680082bd
+204044b5
+70029fff
+20600000
+20404a6d
+e8608000
+20404a6d
+680082bc
+c0ffca79
+20204a73
+20404a6d
+e8608000
+60108024
+20404a6d
+e8608000
+79207e07
+60108023
+793ffe07
+20404a6d
+e8608000
+1fe27200
+20404a6d
+e8608000
+60108025
+20404a6d
+c2004aba
+e8608000
+20404a6d
+680082bc
+c0ffca79
+20204a73
+20404a6d
+e8608000
+600082bd
+20404a6d
+e8608000
+1fed0a00
+20404a6d
+680082bd
+98a08a00
+e8608000
+98007200
+20404a6d
+e8608000
+e0a08000
+20404a6d
+c2004acf
+e8608000
+20404a6d
+680082bc
+c0ffca79
+20204a73
+20404a6d
+e8608000
+20404a6d
+680082bc
+c0ffca79
+70802380
+20204a73
+20404a6d
+e8608000
+20404a6d
+680082bc
+c0ffca79
+70802300
+20204a73
+20404a6d
+e8608000
+20404a6d
+680082bc
+c0ffca79
+20404a73
+20203001
+20406a8b
+20608000
+d8400007
+204069e5
+2420caf4
+7042ae01
+20600000
+6800c2ae
+c1808000
+20404599
+2020495f
+79200025
+44ce4033
+680102cb
+1fe20c00
+e8c08000
+1fe1040f
+1ff1fe00
+c004cb18
+c003cb18
+c0054b24
+c002cb11
+c000cb05
+20600000
+18427e00
+c002cb09
+c001cb10
+20600000
+700b7d27
+20407c27
+6800c132
+c1830000
+18427e00
+c002e946
+20600000
+20600000
+da200001
+20404b2c
+680142b5
+e0a10000
+58000000
+e0a08000
+20600000
+da200001
+20404b2c
+680142b5
+e0a10000
+58000000
+e0a08000
+7008a801
+6800c2bb
+79207e06
+6000c2bb
+700b7d12
+20207c27
+e8c08000
+c000cb27
+20600000
+18c22200
+6800c132
+c1818000
+1a220c00
+20204c4a
+20405248
+1a220400
+600888a8
+1fe20a00
+1a227e00
+e0a10000
+20600000
+58004b5b
+6001428c
+58004b44
+60014296
+2040691d
+20405347
+7080a29e
+70808108
+70807505
+5fffffff
+793ffe01
+793ffe15
+60120070
+70807802
+20758000
+7043d801
+20600000
+ea208000
+6000c803
+c001cb4f
+c0024b51
+c002cb53
+c00a4b64
+c00acb67
+c1810000
+e8c08000
+6000c804
+20600000
+d8a04807
+20204b55
+d8a04825
+20204b55
+68014800
+98000a00
+df200013
+20407e45
+18a27e00
+60014800
+70480300
+20600000
+6800c803
+c000cb71
+c0014b8d
+c0054b7a
+c005cb7a
+c0064b7a
+c0044b8d
+c004cb6a
+20600000
+70421300
+70480300
+20600000
+7042131e
+70480300
+20600000
+70480300
+db6fffff
+20404b91
+20600000
+680903c2
+9840fe00
+600203c4
+680203c4
+9d067e00
+24214b6e
+1fe33600
+20404b91
+207a0000
+7048030c
+d8401800
+60094800
+2040561c
+247a0000
+7044c214
+700b7d1b
+20405620
+68010419
+98000a00
+68014800
+98000c00
+df200014
+20407e45
+18c27e00
+60014800
+68014805
+1fe0ffec
+60014805
+20610000
+70480300
+20600000
+6800c804
+20404be2
+70480300
+20600000
+20404b97
+58001800
+98a67e00
+1fe67e00
+60014805
+20600000
+78487c00
+d8a01800
+20618000
+6810811e
+c302cb99
+1b220400
+df200080
+20407e3b
+d8a01800
+da600000
+db6000b4
+20618000
+6810811e
+9a62fe00
+c282cba2
+1b227e00
+98006000
+20407e78
+1fe67cff
+20214ba2
+2a6c0005
+7920fe17
+e0a18000
+18acfe00
+c10e0000
+1e020400
+1a62a620
+20204ba1
+20344bc7
+20364bca
+d8404826
+6800c825
+9840fe00
+9a267c00
+2022cbda
+ea208000
+18c22200
+c303cbc1
+78367c00
+1fe1247f
+1a29a200
+20204bca
+1ff19000
+1fe17e0f
+99067c00
+20628000
+78347c00
+20600000
+19027e00
+78547c00
+20600000
+1a427e00
+203a4bd6
+1a210e07
+1a290c00
+e8c08000
+1a20a201
+1a40a5ff
+afec0000
+6800c807
+2020cbc1
+6800c808
+20204bc1
+78567c00
+1a20a207
+1a292200
+20204bb5
+580000ff
+20600000
+1fe38c00
+98c0fe00
+d8c04809
+98c08c00
+e8c18000
+20600000
+78287c00
+98007200
+78547c00
+78567c00
+da204826
+20404bb3
+c07fcbf1
+20404bdc
+c30bcbed
+793ffe17
+7080a09e
+98003600
+37c18200
+7080a000
+20204be7
+c2004be4
+20600000
+20404c21
+58004d21
+60014290
+58004c59
+6001428e
+58004d37
+60014292
+58004d7e
+6001428a
+58004d7b
+60014294
+58004d7e
+60014288
+58004d22
+60014286
+20758000
+680147f4
+c2863f79
+20403f23
+203a4d79
+20403f7e
+20203f6e
+20404c21
+58004d21
+60014290
+58004c59
+6001428e
+58004d37
+60014292
+58004d7e
+6001428a
+58004d7b
+60014294
+58004d7e
+60014288
+58004d22
+60014286
+20758000
+7007dc00
+7007dd00
+680147f4
+c2863f79
+20403f23
+203a4d79
+20403f7e
+20203f6e
+79200025
+44db4036
+68008140
+203a3bf1
+70807000
+708078ff
+708071ff
+708072ff
+68108073
+1fe1fe0f
+60108073
+70808000
+70808100
+708083ff
+708084ff
+68108085
+1fe1fe03
+60108085
+70806f00
+58000013
+1fe9fe00
+1fe0fe07
+60108064
+68108043
+79207e02
+60108043
+68108051
+793ffe01
+60108051
+7080630d
+708067d3
+70806500
+70806631
+20403e0b
+6808c80e
+204069da
+6808c80f
+204069da
+6808c810
+204069da
+20600000
+79200025
+44dbc036
+e8c08000
+1fe22200
+6808c80f
+2a2ffe00
+204069f0
+6808c80e
+2a2ffe01
+204069f0
+6808c810
+2a2ffe02
+204069f0
+70480901
+20600000
+20404c99
+24740000
+24760000
+68008450
+c000cc69
+6800c2bc
+c19f8000
+da20000a
+20404b2c
+680142b7
+e0a10000
+580001a1
+e0a10000
+68044800
+e0a40000
+20600000
+6808854f
+58000550
+98408a00
+6800c802
+203a4c72
+c0154c74
+c0944c7e
+6008854f
+20203f6a
+6008854f
+20600000
+6800854f
+207a0000
+1fe0ffff
+6000854f
+d8a00550
+98a08a00
+58000000
+e0a08000
+78367c00
+20204c8d
+1fe67c1d
+20610000
+d8400030
+1fe67c27
+24610000
+2022cc87
+d840001d
+98460400
+18418430
+e0a88000
+6800854f
+1fe0fe01
+6000854f
+78567c00
+20204c8d
+680142b7
+207a0000
+da200003
+20404b2c
+680142b7
+e0a10000
+5800ffa1
+e0a10000
+58000000
+79367e00
+e0a08000
+20600000
+78547c00
+78567c00
+68108119
+c3800000
+6810811b
+c2804ca3
+68108119
+c3034ca3
+6810811a
+20204c99
+78347c00
+78367c00
+6810811b
+2fec0000
+6810811a
+d8c04811
+98c08c00
+e8c08000
+c283cce4
+2420cccc
+78567c00
+98000400
+6800c808
+1fe67c04
+24610000
+1fe22200
+df200003
+d8c04802
+e8c08000
+98467c00
+2022cc99
+c2004cb5
+1a227e00
+d8a04802
+98a08a00
+e0a88000
+1fe0fe01
+6000c808
+6810811b
+1fe97e00
+243a4cc3
+20204cca
+1fe0ffff
+2022ccca
+6810811b
+1fe17e01
+c0004c99
+c000ccca
+20600000
+78367c00
+20600000
+1fe104ff
+6800c808
+207a0000
+98007200
+d8c04802
+e8c08000
+98467c00
+2022ccd6
+c2004cd1
+20600000
+18c08bff
+20407e45
+6800c808
+1fe0ffff
+6000c808
+6810811b
+1fe97e00
+243a4cdf
+20600000
+6810811b
+1fe17e01
+c0004cca
+c000cc99
+20600000
+1fe10e07
+6800c800
+f920fe00
+6000c800
+20600000
+58000000
+60044800
+6000c808
+20600000
+6810811b
+6810811a
+68108119
+c3004ced
+580000ff
+78347c00
+20600000
+680944c2
+20405866
+c4000000
+6800c6f8
+c4000000
+2040561c
+247a0000
+20404c99
+24740000
+24760000
+20403f5e
+70421302
+680944c2
+20405a88
+18c08a01
+68044800
+e0a40000
+700b7d1b
+20405620
+680083e4
+c281bbf2
+20600000
+1a627e00
+c0084d15
+c00a4d13
+c0144d11
+c014cd11
+c0173f57
+20600000
+20403fa4
+20203f92
+20404ced
+20204ce9
+20405b30
+20403f90
+20403f88
+20203f94
+6800c42e
+207a0000
+1fe0ffff
+6000c42e
+247a0000
+6800c4db
+207a0000
+20203f98
+20204d2e
+6811811c
+1fe22400
+6810811f
+1fe17e0f
+1ff07e00
+1fed7e00
+9a41fe00
+680a480a
+98467e00
+207a0000
+da4000bb
+20203f5e
+6800c133
+247a0000
+6800c27f
+247a0000
+6800c7ea
+207a0000
+6800c7eb
+247a0000
+20203f9a
+1a627e00
+c0034d8b
+c0054d7c
+c0034d8f
+c0084d68
+c0173f57
+c000cd77
+c0014d51
+c0024d4e
+c009cd4e
+1fe1040f
+1fe17ef0
+c0284d45
+20600000
+79200025
+44dc4037
+60088259
+68008259
+207a0000
+1fe0ffff
+60008259
+20404d62
+20204d48
+680147f4
+c2864d79
+20203f10
+79200025
+44dcc037
+20404d59
+680142a0
+c2803f12
+c280cd5c
+c2814d5f
+20204d79
+70425e00
+70448b00
+20600000
+c282bf10
+c281bf10
+20204d79
+680147f4
+c2864d79
+20203f10
+6800c7f2
+207a0000
+1fe0ffff
+6000c7f2
+247a0000
+20204d8f
+20404d6a
+20204d79
+79200025
+44dd4037
+680147f4
+2feffe07
+2040bf75
+680147fe
+600147f0
+680142a2
+79207e00
+600142a2
+680147f4
+c2803f77
+20600000
+20403f7e
+20203f98
+20403f7c
+20203f94
+20203f9a
+70054f00
+20600000
+70808300
+70808400
+68108085
+1fe17ef0
+60108085
+58000000
+600200a7
+580000ff
+6808c7fd
+18420e00
+f9207e00
+600200a3
+20600000
+58000002
+6000c7f2
+20404ced
+20204ce9
+79200025
+44ddc037
+70427f01
+20403fa4
+20403fa2
+58000000
+600147f0
+6000c7f2
+20203f9e
+2035cd9d
+580043ce
+d8a042af
+98a67200
+20407e3f
+79200025
+448b4022
+580004de
+d8a004a9
+98a67200
+20407e3f
+58000330
+d8a002c4
+98a67200
+20407e3f
+2020532a
+79200025
+448bc022
+18c20400
+18420c00
+e8c10000
+600102cd
+e8c10000
+600102cf
+18c27e00
+600102cb
+6800c7f3
+c0004db5
+202050fa
+79200025
+448c4023
+680102cd
+203a4dfc
+680082cf
+c000cdc0
+c0284de7
+c028cdf4
+c0294df2
+c029cdf2
+20204dfc
+2040527a
+247a0000
+7043cd00
+204052c4
+20404e01
+680902d6
+203a4dfb
+204052ce
+680102d6
+e0a10000
+18007e01
+e0a10000
+20204dfc
+6800c132
+c1008000
+6800c3cd
+207a0000
+1fe22200
+6802033c
+d8400100
+98408400
+1c427e00
+98467c00
+24610000
+7043cd00
+1a227e00
+c0284ddc
+20203bf1
+204052c4
+20404e84
+204052d0
+20407e1c
+20404eb7
+204052ce
+5800000c
+e0a10000
+18007e01
+e0a10000
+20204dfc
+2040527e
+247a0000
+204052d2
+20406f72
+204052dc
+680102dc
+203a4dfb
+e0a10000
+680142b1
+e0a10000
+20204dfc
+20404af8
+20204dfc
+79200025
+448cc023
+7002eb00
+20406bdc
+680082eb
+c1008000
+20204dfc
+2040526f
+58000000
+600102cd
+600102cf
+7002d101
+20600000
+79200025
+448d4023
+204052d0
+18002400
+680102cd
+1fe22600
+680102cb
+98000c00
+20404e11
+1a627e00
+1a60a7fc
+1fe0fffc
+243a4e09
+1a427e00
+600102d6
+20600000
+79200025
+448dc023
+e8c08000
+c000ce54
+c0014e5c
+c001cee0
+c0024f0f
+c002cfad
+c0034fd5
+c003d024
+c0045058
+c004d068
+c0054e21
+c005d069
+2040506a
+20600000
+e8c08000
+1fe20e00
+e8c10000
+1fe22200
+1a627e00
+9a262600
+1a227e00
+98c08c00
+5800000b
+e0a08000
+18e27e00
+e0a08000
+18007e08
+e0a10000
+18007e02
+e0a10000
+18007e00
+e0a10000
+18007e00
+e0a10000
+18007e00
+e0a10000
+18007e0c
+9a40a400
+20204e20
+e8c08000
+1fe20e00
+e8c10000
+1fe22200
+1a627e00
+9a262600
+1a227e00
+98c08c00
+204052d0
+5800000b
+e0a08000
+18e27e00
+e0a08000
+18007e08
+e0a10000
+18007e02
+e0a10000
+18007e00
+e0a10000
+18007e00
+e0a10000
+18007e00
+e0a10000
+18007e0c
+9a40a400
+20204e20
+e8c08000
+1fe20e00
+e8c10000
+1fe22200
+98c08c00
+1a627e00
+9a262600
+20204e20
+20407e1c
+20407e21
+d9000000
+e8c08000
+1fe20e00
+e8c10000
+1fe22200
+e8c10000
+1fe20400
+e8c10000
+1fe21600
+18427e00
+c000ce6e
+c001ce90
+c008ce9c
+c009cea7
+2040506a
+20204edf
+20407e1c
+d8400050
+680142b1
+243a4ed9
+19627e00
+600142b1
+1c427e00
+6002033c
+20404e78
+20204eb3
+6009033a
+19627e00
+60010330
+1a227e00
+60010332
+1a427e00
+60010334
+1a627e00
+60010336
+18e27e00
+60010338
+20600000
+6809033a
+68010330
+1fe21600
+68010332
+1fe22200
+68010334
+1fe22400
+68010336
+1fe22600
+68010338
+1fe20e00
+20600000
+20407e1c
+58000051
+d8400051
+680142b3
+243a4ed9
+19627e00
+600142b3
+6800c2ba
+79207e00
+79207e01
+6000c2ba
+20204ebb
+20407e1c
+d8400052
+680142b5
+243a4ed9
+19627e00
+600142b5
+6800c2bb
+79207e00
+79207e01
+6000c2bb
+20204ebb
+20407e1c
+1b427e00
+d8400053
+680142b7
+243a4ed9
+19627e00
+600142b7
+6800c2bc
+79207e00
+79207e01
+6000c2bc
+20204ebb
+58000001
+600102e4
+7043cd50
+20204ebd
+6800c2b9
+79207e00
+79207e01
+6000c2b9
+58000000
+600102e4
+79200025
+448e4023
+20407e21
+58000003
+e0a08000
+18e27e00
+e0a08000
+58000008
+e0a10000
+18427e00
+e0a10000
+19627e00
+e0a10000
+680102e4
+c000ced4
+290c0000
+2020cecf
+58000004
+e0a10000
+18007e00
+e0a10000
+5800000c
+20204edb
+e0a10000
+18007e02
+e0a10000
+5800000c
+20204edb
+79201000
+20204ebb
+9a40a400
+1a627e00
+9a262600
+20204edf
+20204e20
+e8c08000
+1fe20e00
+e8c10000
+1fe22200
+1a627e00
+9a262600
+e8c10000
+1fe21600
+e8c10000
+1fe20400
+58000050
+98467c00
+2022cef7
+58000051
+98467c00
+2022cefd
+58000052
+98467c00
+2022cf09
+58000053
+98467c00
+2022cf03
+20600000
+19627e00
+600142b1
+6800c2b9
+79207e01
+6000c2b9
+20204e20
+19627e00
+600142b3
+6800c2ba
+79207e01
+6000c2ba
+20600000
+19627e00
+600142b5
+6800c2bc
+79207e01
+6000c2bc
+20600000
+19627e00
+600142b7
+6800c2bb
+79207e01
+6000c2bb
+20600000
+e8c08000
+1fe20e00
+e8c10000
+1fe22200
+1a627e00
+9a262600
+e8c10000
+1fe20400
+18422200
+58000050
+98467c00
+2022cf25
+58000051
+98467c00
+2022cf43
+58000052
+98467c00
+2022cf2f
+58000053
+98467c00
+2022cf39
+2020506a
+18a21600
+6800c2b9
+79207e04
+79207e03
+6000c2b9
+19620a00
+d9600050
+680142b1
+1fe20400
+20204f4c
+18a21600
+6800c2bb
+79207e04
+79207e03
+6000c2bb
+19620a00
+d9600052
+680142b5
+1fe20400
+20204f4c
+18a21600
+6800c2bc
+79207e04
+79207e03
+6000c2bc
+19620a00
+d9600053
+680142b7
+1fe20400
+20204f4c
+18a21600
+6800c2ba
+79207e04
+79207e03
+6000c2ba
+19620a00
+d9600051
+680142b3
+1fe20400
+79200025
+448ec023
+58000005
+e0a08000
+18e27e00
+e0a08000
+58000006
+e0a10000
+18427e00
+e0a10000
+18007e00
+e0a10000
+18007e00
+e0a10000
+18007e0a
+9a40a400
+600902e9
+18e27e00
+600082e8
+18007e50
+a961fe00
+2020cf63
+1fe0fe01
+20600000
+78547c00
+c3810000
+c4000000
+c4008000
+79207e02
+18c20a00
+18a08bff
+e0a08000
+78347c00
+20600000
+6800c2b9
+20404f64
+24344f75
+7002e750
+680142b1
+600102e9
+20204f89
+6800c2ba
+20404f64
+24344f7c
+7002e751
+680142b3
+600102e9
+20204f89
+6800c2bb
+20404f64
+24344f83
+7002e752
+680142b5
+600102e9
+20204f89
+6800c2bc
+20404f64
+24740000
+7002e753
+680142b7
+600102e9
+79200025
+448f4023
+20405242
+204052c4
+18002400
+204052d0
+18007e04
+e0a08000
+6800c2be
+e0a08000
+58000008
+e0a10000
+680102e9
+e0a10000
+58000000
+e0a10000
+18007e01
+e0a08000
+18007e02
+e0a08000
+680082e7
+c028cfa2
+58000030
+e0a10000
+20204fa4
+580003e3
+e0a10000
+d840000c
+600902d6
+204052ce
+680102d6
+e0a10000
+18007e01
+e0a10000
+7002e700
+20204e20
+18c08c01
+e8c10000
+1fe22200
+1a627e00
+9a262600
+e8c10000
+1fe22200
+58000050
+9a267c00
+2022cfc4
+58000051
+9a267c00
+2022cfc8
+58000052
+9a267c00
+2022cfcc
+58000053
+9a267c00
+2022cfd0
+18c08c02
+e8c10000
+98007c00
+20204e20
+6800c2b9
+79207e05
+6000c2b9
+20204e20
+6800c2ba
+79207e05
+6000c2ba
+20204e20
+6800c2bb
+79207e05
+6000c2bb
+20204e20
+6800c2bc
+79207e05
+6000c2bc
+700b7d06
+20207c27
+e8c08000
+1fe20e00
+e8c10000
+1fe22200
+1a627e00
+9a262600
+e8c10000
+1fe22200
+e8c10000
+1fe21600
+1a220400
+20407e1c
+58000050
+98467c00
+2022cffb
+58000051
+98467c00
+2022d00b
+58000052
+98467c00
+2022cfef
+58000053
+98467c00
+2022cff5
+2040506a
+20205020
+19620400
+680142b5
+98467c00
+2022d001
+2040506a
+20205020
+19620400
+680142b7
+98467c00
+2022d003
+2040506a
+20205020
+19620400
+680142b1
+98467c00
+2022d007
+2040506a
+20205020
+20405081
+20205013
+20405087
+680142b5
+203a5013
+20205013
+2040507c
+680082ef
+243a5013
+20205013
+19620400
+680142b3
+98467c00
+2022d011
+2040506a
+20205020
+20405077
+20205013
+20407e21
+58000007
+e0a08000
+18e27e00
+e0a08000
+58000004
+e0a10000
+1a227e00
+e0a10000
+19627e00
+e0a10000
+18007e08
+20205022
+20407e21
+20205022
+9a40a400
+20204e20
+e8c08000
+1fe20e00
+e8c10000
+1fe22200
+1a627e00
+9a262600
+e8c10000
+1fe21600
+e8c10000
+1fe20400
+20407e1c
+58000050
+98467c00
+2022d03d
+58000051
+98467c00
+2022d043
+58000052
+98467c00
+2022d049
+58000053
+98467c00
+2022d04f
+2040506a
+20205057
+18422200
+19620400
+680142b1
+98467c00
+2042d07c
+20205055
+18422200
+19620400
+680142b3
+98467c00
+2042d077
+20205055
+18422200
+19620400
+680142b5
+98467c00
+2042d081
+20205055
+18422200
+19620400
+680142b7
+98467c00
+2042d087
+20205055
+20407e21
+20204e20
+20204e20
+e8c08000
+1fe20e00
+e8c10000
+1fe22200
+98c08c00
+58000009
+e0a08000
+18e27e00
+e0a08000
+18007e00
+e0a10000
+18007e04
+9a40a400
+1a627e00
+9a262600
+20204e20
+20204e20
+20204e20
+18002400
+204052d0
+58000001
+e0a08000
+18e27e00
+e0a08000
+58000002
+e0a10000
+58000000
+e0a10000
+1a40a406
+da600004
+20204e20
+58000000
+600102e2
+600142b3
+7042ba00
+20600000
+58000000
+600102dc
+600142b1
+7042b900
+20600000
+58000000
+600142b5
+7042bb00
+6800c2bc
+c000508d
+20600000
+58000000
+600142b7
+7042bc00
+6800c2bb
+c000508d
+20600000
+700b7d07
+20207c27
+680082e6
+793ffe00
+600082e6
+680142b7
+207a0000
+204052c4
+680142b7
+1fe22200
+18002453
+202050a2
+680082e6
+793ffe07
+600082e6
+680142b5
+207a0000
+204052c4
+680142b5
+1fe22200
+18002452
+20405242
+204052d0
+18007e06
+e0a08000
+6800c2be
+e0a08000
+58000004
+e0a10000
+1a227e00
+e0a10000
+1a427e00
+e0a10000
+18000408
+202050e9
+79200025
+448fc023
+20405242
+204052d0
+58000002
+e0a08000
+6800c2be
+e0a08000
+58000004
+e0a10000
+18427e00
+e0a10000
+19627e00
+e0a10000
+d8400008
+202050e9
+79200025
+44904024
+20405242
+204052d0
+58000004
+e0a08000
+6800c2be
+e0a08000
+58000008
+e0a10000
+18427e00
+e0a10000
+58000000
+e0a10000
+58000001
+e0a08000
+58000002
+e0a08000
+580003e3
+e0a10000
+d840000c
+202050e9
+79200025
+4490c024
+20405242
+204052d0
+58000006
+e0a08000
+6800c2be
+1fe0fe01
+18a22200
+6000c2be
+1a220a00
+e0a08000
+58000004
+e0a10000
+18427e00
+e0a10000
+19627e00
+e0a10000
+d8400008
+600902d6
+18427e00
+203a526f
+204052ce
+680102d6
+e0a10000
+18007e01
+e0a10000
+20600000
+680102dc
+203a3bf1
+204052dc
+680102dc
+e0a10000
+680142b1
+e0a10000
+20600000
+79200025
+44914024
+680102cd
+203a4dfc
+680082cf
+c000d105
+c0284de7
+c028cdf4
+c0294df2
+c029cdf2
+20204dfc
+79200025
+4491c024
+204052c4
+18002400
+204052d0
+1fe20a00
+680102cd
+1fe22600
+680102cb
+98000c00
+20405115
+1a60a7fc
+2422d10f
+1a420400
+204050e9
+20204dfc
+e8c08000
+c0015120
+c000d123
+c001d12d
+c002d168
+c0025199
+c003d21c
+c00351eb
+c0045058
+c0054e3a
+20205236
+20407e1c
+20407e21
+20204e5c
+e8c08000
+1fe20e00
+e8c10000
+1fe22200
+1a627e00
+9a262600
+e8c08000
+1a20a3ff
+2422d129
+20600000
+e8c08000
+1fe20e00
+e8c10000
+1fe22200
+e8c10000
+1fe21600
+e8c10000
+1fe20400
+e8c10000
+1fe67c00
+2022d13f
+c001513b
+c002513b
+2020513d
+700b7d16
+20407c27
+e8c10000
+20205165
+20407e1c
+58000050
+98467c00
+2022d14d
+58000051
+98467c00
+2022d153
+58000053
+98467c00
+2022d15f
+58000052
+98467c00
+2022d159
+20205165
+19627e00
+600142b1
+6800c2b9
+79207e01
+6000c2b9
+20205164
+19627e00
+600142b3
+6800c2ba
+79207e01
+6000c2ba
+20205164
+19627e00
+600142b5
+6800c2bb
+79207e01
+6000c2bb
+20205164
+19627e00
+600142b7
+6800c2bc
+79207e01
+6000c2bc
+20407e21
+1a627e00
+9a262600
+20600000
+e8c08000
+1fe20e00
+e8c10000
+1fe22200
+1a627e00
+9a262600
+e8c10000
+1fe21600
+e8c10000
+e8c10000
+243a5193
+20407e1c
+19620400
+58000050
+98467c00
+2022d181
+58000051
+98467c00
+2022d185
+58000052
+98467c00
+2022d189
+58000053
+98467c00
+2022d18d
+6800c2b9
+79207e05
+6000c2b9
+20600000
+6800c2ba
+79207e05
+6000c2ba
+20600000
+6800c2bb
+79207e05
+6000c2bb
+20600000
+6800c2bc
+79207e05
+6000c2bc
+700b7d06
+20207c27
+20407e21
+1a20a3fa
+2022d198
+18c08c01
+1a20a3ff
+20205194
+20600000
+e8c08000
+1fe20e00
+e8c10000
+1fe22200
+1a627e00
+9a262600
+e8c10000
+18c08c02
+1fe20400
+58000005
+e0a08000
+18e27e00
+e0a08000
+1a20a202
+1a227e00
+e0a10000
+20407e1c
+58000050
+98467c00
+2022d1b7
+58000051
+98467c00
+2022d1c8
+58000052
+98467c00
+2022d1ce
+58000053
+98467c00
+2022d1d4
+202051d9
+6800c2b9
+79207e04
+79207e03
+6000c2b9
+c28151c5
+680882e6
+79200406
+600882e6
+18e27e00
+1fe0fe01
+600082e8
+6800c2b9
+79207e02
+6000c2b9
+680142b1
+600102e9
+202051d9
+6800c2ba
+79207e04
+79207e03
+6000c2ba
+680142b3
+202051d9
+6800c2bb
+79207e04
+79207e03
+6000c2bb
+680142b5
+202051d9
+6800c2bc
+79207e04
+79207e03
+6000c2bc
+680142b7
+1fe21600
+20407e21
+19627e00
+e0a10000
+18007e00
+e0a10000
+18007e00
+e0a10000
+18007e0a
+9a40a400
+1a20a3fa
+2022d1ea
+e8c08000
+e0a08000
+1a40a401
+1a20a3ff
+202051e4
+20600000
+e8c08000
+1fe20e00
+e8c10000
+1fe22200
+1a627e00
+9a262600
+e8c10000
+1fe22200
+e8c10000
+1fe21600
+20407e1c
+58000050
+1a220400
+98467c00
+2022d203
+58000052
+1a220400
+98467c00
+2022d208
+58000053
+1a220400
+98467c00
+2022d20a
+2020520c
+58000000
+600102dc
+600142b1
+6000c2b9
+2020520e
+20405081
+2020520e
+20405087
+2020520e
+58000000
+600102e2
+20407e21
+58000007
+e0a08000
+18e27e00
+e0a08000
+58000004
+e0a10000
+1a227e00
+e0a10000
+19627e00
+e0a10000
+18007e08
+9a40a400
+20600000
+e8c08000
+1fe20e00
+e8c10000
+1fe22200
+e8c10000
+1fe21600
+e8c10000
+1fe20400
+20407e1c
+6800c2be
+a8e1fe00
+2420d232
+58000050
+98467c00
+2022d22f
+58000051
+98467c00
+2022d232
+20205232
+7042b100
+7042b900
+20205232
+20407e21
+1a627e00
+9a262600
+20600000
+58000001
+e0a08000
+e8c08000
+e0a08000
+58000002
+e0a10000
+58000000
+e0a10000
+58000006
+9a40a400
+18002604
+20600000
+6800c2be
+1fe0fe01
+c0805246
+1fe0fe01
+6000c2be
+20600000
+79200025
+44924024
+da400000
+2040527a
+243a3bf1
+20405287
+da401800
+d8e00000
+6808c2bf
+a84fffff
+2020d258
+204052ab
+19667c00
+20215258
+20405292
+2020525e
+1a40a480
+18e08e01
+58000008
+98e67c00
+20215250
+da400000
+1a427e00
+203a3bf1
+20600000
+79200025
+4492c024
+20405280
+18c08c01
+e8c10000
+20600000
+79200025
+44934024
+20405280
+18c20a00
+18c20400
+58000000
+e0a18000
+20600000
+79200025
+4493c024
+2040527e
+203a3bf1
+6801c2c6
+6001c2c9
+6801c2c3
+6001c2c6
+6801c2c0
+6001c2c3
+20600000
+6801c2c0
+20600000
+6801c2c3
+20600000
+6801c2c9
+20600000
+2040527e
+203a3bf1
+d8c042c0
+e8c18000
+203a5283
+18c08dfd
+20600000
+79200025
+44944025
+df200004
+d8c042c0
+d8400000
+e8c18000
+1fe17eff
+98418400
+c200528c
+6008c2bf
+20600000
+79200025
+4494c025
+2040527a
+243a3bf1
+2040527e
+203a52a0
+6801c2c3
+6001c2c0
+e8c18000
+e0a18000
+e8c18000
+e0a18000
+58000000
+e0a18000
+d8400000
+19627e00
+98e0fe00
+f9200400
+18e08e01
+98e67c00
+2422d2a3
+1a4d7e00
+9841fe00
+6001c2c9
+20600000
+79200025
+44954025
+20405287
+18e22600
+d8400000
+d9600000
+18e27e00
+c00452bc
+6800c2bf
+afefffff
+2020d2bc
+18408480
+18e08e01
+1a227e00
+98467c00
+2022d2bc
+202152b1
+18427e00
+9a267c00
+242152c2
+18e27e00
+1a620400
+98461600
+1a620e00
+20600000
+79200025
+4495c025
+da20007f
+20405248
+600102d2
+1fe0fe04
+600102d4
+58000000
+600102d6
+20600000
+680102d2
+202052f2
+680102d4
+202052f2
+79200025
+44964025
+da2002ff
+20405248
+600102d8
+1fe0fe04
+600102da
+58000000
+600102dc
+20600000
+680102d8
+202052f2
+680102da
+202052f2
+79200025
+4496c025
+20407e00
+7002eb01
+2040527a
+247a0000
+da20007f
+20405248
+600102de
+1fe0fe04
+600102e0
+58000000
+600102e2
+7002eb00
+20207e0e
+680102de
+202052f2
+680102e0
+203a3bf1
+1fe20a00
+20600000
+79200025
+44974025
+da400000
+da2042c0
+1a20a3fe
+1a20a202
+580042cc
+9a267c00
+2022d306
+ea208000
+1a20a201
+203a52fa
+ea290000
+e8410000
+9a40a400
+1a40a404
+202052fa
+1a427e00
+20600000
+d8e0000c
+20203dc2
+d8e0000c
+20203dc6
+79200025
+4497c025
+20405287
+6800c2bf
+207a0000
+204052f5
+d8400100
+98467c00
+20215308
+2040530a
+d8a042cc
+da2042c0
+580042cc
+9a267c00
+20628000
+ea208000
+1a20a201
+243a5321
+e0a10000
+1a20a202
+20205318
+ea210000
+1a20a202
+1fe20c00
+e8c10000
+e0a10000
+1fe27200
+1f20f202
+20407e45
+20205318
+79200025
+44984026
+20405287
+6800c2bf
+207a0000
+da2042c1
+1a20a3fd
+d8c042cc
+1a20a203
+580042cd
+9a267c00
+20628000
+e8c10000
+203a5332
+1fe0fe04
+1fe27200
+18c22400
+ea210000
+1fe20a00
+1a420c00
+18c08dfe
+20407e45
+20205332
+20758000
+58000010
+600143d3
+58000010
+600143d5
+20600000
+d8400014
+20405a88
+18c0fe01
+60010419
+20600000
+79200025
+44994026
+7855fc00
+70427e01
+7003d601
+7003c003
+7003d701
+5fffffff
+600103da
+18007e00
+600083e3
+600083d8
+600083e4
+6001c20a
+6001c20d
+6002c465
+79207e27
+6002c46a
+20205a0b
+79200025
+4499c026
+7834fc00
+7003c103
+7003fa01
+7044bc01
+5800ffff
+600144be
+18007e00
+6002c46a
+79207e27
+6002c465
+2020534c
+79200025
+449a4026
+7854fc00
+7003c101
+7043d800
+7000a200
+2020534c
+204053d2
+204055d3
+20405a0e
+202053d7
+79200025
+449ac026
+204053d2
+20403e71
+680083c1
+c001d37e
+20205395
+79200025
+449b4026
+7834fc00
+20405a02
+20215392
+20403e28
+2040541c
+20405622
+7856fc00
+204054b2
+24768000
+79200025
+449bc026
+68008005
+1fe0fe01
+60008005
+204055a2
+20405a99
+7854fc00
+20600000
+204053ba
+7854fc00
+20600000
+79200025
+449c4027
+78577c00
+20405a02
+202153ba
+20403e28
+2040541c
+20405478
+2436d3ad
+79200025
+449cc027
+204053c8
+204055a2
+20405622
+68008340
+c28253b4
+2040561a
+243a53b4
+79200025
+449d4027
+204054bb
+20407c45
+680083e4
+c281d3ba
+79200025
+449dc027
+20407f44
+20405b19
+20405594
+20405576
+202039ac
+79200025
+449e4027
+78377c00
+204054b2
+2036d39e
+202053aa
+79200025
+449ec027
+204053c0
+20403f1d
+700b7d15
+20207c27
+680883d6
+7002c008
+204048c4
+7003d600
+7003c100
+7003c000
+70427e00
+20600000
+68008005
+1fe0fe01
+60008005
+680083c0
+c3818000
+79207e03
+600083c0
+58000000
+600246f9
+20600000
+79200025
+449f4027
+783b7c00
+70891407
+20203e28
+79200025
+449fc027
+785b7c00
+70891403
+db600000
+20600000
+7844fc00
+7843fc00
+680183e9
+98001e00
+68008016
+1fed8400
+79200401
+18431c00
+20600000
+204053ee
+20403a82
+58000500
+20403bf3
+20203a87
+2036ba98
+204053ee
+20203a91
+79200025
+44a04028
+20403a7a
+6800840d
+243a5402
+68008016
+1fe67c24
+202153fc
+18000400
+c1128000
+18000418
+c1130000
+1800044e
+20600000
+1fe67c0a
+202153ff
+1fe0fe01
+1fe3fe00
+1fe08402
+20600000
+68008016
+1fe38400
+20600000
+d84001f4
+207a0000
+d84000fa
+c1008000
+d8400096
+c1010000
+d8400064
+c1018000
+d840004b
+c1020000
+d8400032
+c1028000
+d8400028
+c1030000
+d8400014
+20600000
+588e89be
+1fed7e00
+1fe1fed6
+98001200
+58555555
+600183e9
+20600000
+79200025
+44a0c028
+78287c00
+680203e5
+98001200
+20405453
+58000200
+2034d426
+680103ce
+1fe37e00
+d8400500
+9840fe00
+20403b7d
+1b427e00
+60030412
+20600000
+79200025
+44a14028
+68008016
+1fe0fe01
+60008016
+c1940000
+70001625
+20600000
+79200025
+44a1c028
+1a208c01
+e8c08000
+c4000000
+1a208a1a
+e8a10000
+1fe0fe01
+e0a10000
+1a208c19
+e8c08000
+1a208a18
+e8a88000
+9840fe00
+1fe67c24
+20215445
+1fe0ffdb
+e0a08000
+20600000
+79200025
+44a24028
+680283f1
+18000400
+18007225
+c300544e
+18408401
+1fe37e00
+c200544c
+1840ffff
+600083e2
+20600000
+79200025
+44a2c028
+680083d8
+98000e00
+680a83f1
+a84fffff
+2020d46b
+79200025
+44a34028
+680083e2
+98e67e00
+20215461
+1fe60fff
+2020545a
+18e27200
+18000e00
+a84fffff
+2020d466
+1f20f201
+1f227e00
+203a546b
+18e08e01
+1f20f3ff
+20205463
+18e27e00
+60008016
+20600000
+2034d471
+37c18200
+20600000
+d9600ea0
+34730200
+20600000
+78487c00
+680143d5
+1fe21600
+2020547e
+79200025
+44a3c028
+78287c00
+680103ce
+680a46f9
+98409600
+204053e6
+79200025
+44a44029
+204053dd
+7856fc00
+7826fc00
+7830fc00
+78507c00
+19623600
+37c18400
+2037548b
+1b420400
+600b009c
+242c375c
+20375492
+dd2001e0
+1c225000
+680083c0
+c301d492
+2055bcb6
+79200025
+44a4c029
+20403af3
+7823fc00
+7824fc00
+09800008
+19897e00
+60008340
+09800008
+19897e00
+e0a08000
+1fe1723f
+2022d4a3
+09800008
+19897e00
+e0a08000
+c200549f
+79200025
+44a54029
+09800018
+78287c00
+db600664
+1fef7e00
+1ff17e00
+e0a18000
+2023375c
+7836fc00
+68008017
+1fe0a202
+20403ab6
+7846fc00
+20203a7a
+79200025
+44a5c029
+204054bd
+68088017
+20403a82
+20403a87
+78287c00
+d9601388
+2020547f
+204054bd
+2020375c
+79200025
+44a64029
+204053dd
+204053eb
+79202a00
+782efc00
+78307c00
+7850fc00
+2040546e
+19317e00
+1fecfe00
+1ff1fe00
+08008628
+7823fc00
+7824fc00
+79200025
+44a6c029
+6800c43e
+08008608
+e8c08000
+1fe1723f
+08008608
+2022d4d7
+e8c08000
+08008608
+c20054d4
+78247c00
+08008618
+78447c00
+37d38200
+20000064
+784efc00
+20600000
+79200025
+44a74029
+6800c4db
+c000d4ef
+6800c4dc
+1ff27e00
+1febfe00
+6000c43e
+6808c3d9
+1840fe06
+6000c43f
+680344f9
+60034440
+18427200
+d8c043da
+20407e45
+202054ff
+680944c2
+20405866
+1a220a00
+58000001
+e0a08000
+6800c4dd
+1ff27e00
+1febfe00
+1fe0fe01
+6000c43e
+5800000c
+6000c43f
+680344f9
+60034440
+68034274
+e0a30000
+79200025
+44a7c029
+68008000
+1fe0fe01
+60008000
+db600708
+7856fc00
+202054b2
+79200025
+44a8402a
+6800c4f6
+c1808000
+68008000
+1fe0fe01
+60008000
+d8400c03
+6800c4f7
+7d3a0406
+1a227e00
+7d3a0407
+6009443e
+680344f9
+e0a30000
+680303d0
+e0a30000
+202054b2
+79200025
+44a8c02a
+d8400004
+6800c4dc
+7d3a0406
+6008c43e
+6808c3f9
+1840fe06
+6000c43f
+680344f9
+60034440
+d8c043fa
+18427200
+20407e45
+202054bb
+79200025
+44a9402a
+18007fff
+38080001
+600283f1
+20405447
+18007204
+d8a003e5
+20406227
+680144f4
+600103ef
+180a7e00
+1fe17e0f
+1fe67c04
+20215533
+600083d9
+60008682
+79200025
+44a9c02a
+680943d0
+600903c2
+18422600
+1c40fe07
+9a66fc00
+20407efd
+18072200
+9a267e00
+9a60fe00
+680943ce
+9840fe00
+600203c4
+9c462200
+1a20a3fa
+da402205
+6800c4ed
+7d3a2406
+6800c4e6
+7d3a2407
+1a427e00
+6001443e
+680344f9
+e0a30000
+680303d0
+e0a30000
+680203e5
+e0a20000
+180a7e00
+e0a10000
+180a7e00
+e0a08000
+18007e02
+e0a08000
+1a2b7e00
+e0a10000
+1a6b7e00
+e0a10000
+79200025
+44aa402a
+680144f2
+e0a10000
+680144f4
+e0a10000
+680283f1
+e0a28000
+680083d9
+d84000a0
+9841fe00
+e0a08000
+204054bb
+5800443e
+1fe08c12
+e8c18000
+600183e9
+20600000
+79200025
+44aac02a
+7854fc00
+20205415
+79200025
+44ab402a
+680083c0
+c4028000
+680103da
+680903e0
+98467e00
+24610000
+680083c0
+793ffe05
+793ffe03
+600083c0
+680203c4
+680903c2
+98462200
+79200025
+44abc02a
+6800c434
+600083ec
+e8c90000
+e8c10000
+1febfe00
+600103c2
+184b8400
+9840fe00
+e8ca0000
+600a03ed
+9a20fe00
+600203c4
+20205a2b
+79200025
+44ac402b
+680083c0
+c4030000
+680103da
+680903e0
+98467e00
+24610000
+680083c0
+793ffe06
+600083c0
+6802c42f
+600283f1
+20205447
+79200025
+44acc02b
+20405a0b
+204055b7
+68008340
+1fe37e00
+9842fe00
+2feffe02
+7920800f
+68008341
+203a55b2
+680083c0
+c30255b2
+20407599
+2040750e
+247a0000
+c6078000
+680883d7
+79400402
+600883d7
+202058ac
+79200025
+44ad402b
+680883d7
+284c0005
+20608000
+68008340
+1fe3fe00
+9842fe00
+c4018000
+793f8405
+79400403
+600883d7
+28400603
+24608000
+6800c440
+c1828000
+680083c0
+79207e04
+600083c0
+20600000
+79200025
+44adc02b
+2040542c
+20405474
+68008001
+1fe0fe01
+60008001
+20600000
+79200025
+44ae402b
+6800c3d2
+c1808000
+d8e00003
+20407e53
+247a0000
+680143d3
+680943d5
+98467e00
+d8e00003
+20407e4c
+7854fc00
+20405572
+204055cb
+24768000
+79200025
+44aec02b
+68030342
+600303d0
+204042a7
+20405b39
+68008002
+1fe0fe01
+60008002
+204055f9
+20748000
+204048d1
+20405507
+24768000
+79200025
+44af402b
+68008004
+1fe0fe01
+60008004
+68048348
+60048103
+202048d1
+79200025
+44afc02b
+6800841c
+c18d8000
+680303d0
+680b44e7
+98467c00
+24628000
+204032d6
+24628000
+20405528
+2040535f
+79200025
+44b0402c
+70427200
+7003f800
+6800c132
+c082560c
+7003e321
+d8400000
+204048ea
+7043d200
+70041c00
+700b7d2c
+20405620
+202032bd
+da200001
+68008340
+c3830000
+da200000
+20600000
+d8c044ff
+20207fb2
+da2044ff
+20207fac
+da2044ff
+20207fae
+da2044ff
+20207fb0
+da2044ff
+20207f92
+79200025
+44b0c02c
+680083d7
+c3828000
+da2044ff
+20407f9f
+243a5630
+6800c132
+c080d890
+d8200000
+204044a3
+18227e00
+247a0000
+20205890
+1fe20400
+79200025
+44b1402c
+18427e00
+c302d64b
+18000203
+793ffe05
+6000c440
+79200025
+44b1c02c
+6800c440
+c000568f
+c000d691
+c0015693
+c001d695
+c00256a6
+c002d6b7
+c00356b9
+c003d6bf
+c00456c1
+c004d6c1
+c00556c5
+c005d6c7
+c00656c9
+c006d6cf
+c007d6d1
+20203bf1
+70444300
+18000202
+c3035662
+c0295662
+c0695662
+70444206
+793ffe06
+6000c444
+79200025
+44b2402c
+6800c444
+c000d6e5
+c00156ed
+c001d6f5
+c00256fa
+c002d6ff
+c0035701
+c003d70b
+c0045712
+c004d717
+c005571e
+c005d721
+20203bf1
+70444204
+6000c444
+79200025
+44b2c02c
+6800c444
+c000d729
+c001572f
+c001d72f
+c0025732
+c002d737
+c0035748
+c003d752
+c0045793
+c004d79b
+c00557be
+c005d7c6
+c00657d1
+c006d7d6
+c00757e5
+c007d7ec
+c0085812
+c008d81a
+c009583e
+c009d845
+c00b585e
+c00bd860
+c00c5862
+c00cd864
+c00dd873
+c00ed882
+c00f5884
+c0295886
+c0695888
+c04f5686
+c04fd688
+20203bf1
+700b7d10
+20405620
+58000011
+6001443e
+680083d7
+79207e05
+600083d7
+700b7d12
+20205620
+1800040c
+20205892
+18000408
+20205892
+18000402
+20205892
+18007e00
+e0a40000
+e0a10000
+18a20400
+d8a00380
+18007208
+20406227
+68040380
+e0440000
+18a20400
+d8a04473
+18007204
+20406227
+68024473
+e0420000
+18000417
+20205892
+18a20400
+d8a00388
+18007208
+20406227
+68040388
+e0440000
+18a20400
+d8a04477
+18007204
+20406227
+68024477
+e0420000
+204074b6
+700b7d25
+20405620
+1800040d
+20205892
+18000401
+20205892
+18000401
+2034d892
+700b7d46
+20405620
+18000401
+20205892
+18000402
+20205892
+58000001
+e0a40000
+18000409
+20205892
+18000406
+20205892
+18000406
+20205892
+58000a06
+e0a18000
+58001d87
+e0a10000
+18000406
+20205892
+18000402
+20205892
+18a08bff
+5800000c
+e0a10000
+58000005
+e0a10000
+5800b412
+e0a10000
+58000008
+e0a10000
+58000008
+e0a10000
+58000010
+e0a10000
+58000000
+e0a10000
+5800012c
+e0a10000
+2040588a
+18000202
+20205892
+59000401
+600244ae
+58070710
+e0a18000
+680344af
+60034445
+1800040b
+20205892
+59000302
+600244b5
+58010410
+e0a18000
+680344b6
+60034445
+1800040b
+20205892
+204074b0
+d8a04445
+204075a3
+18000415
+20205892
+680403b0
+2034d6fd
+6804449c
+20405723
+20205892
+18000406
+20205892
+700b7d29
+20407c27
+700b7d47
+20405620
+d8a003a0
+20406226
+680403a0
+6804447b
+20405723
+20205892
+700b7d48
+20405620
+d8a04445
+18007208
+20406227
+1800040f
+20205892
+700b7d49
+20405620
+d8a04445
+20406226
+2020588a
+700b7d4a
+20405620
+18007e00
+6000c445
+680344f9
+e0a30000
+2020588a
+d8a04445
+20406226
+2020588a
+18000406
+20205892
+60044445
+e8c40000
+e0a40000
+18000415
+20600000
+7003fc0a
+70444401
+680183f9
+6001c445
+680083fc
+e0a08000
+2020588a
+58000017
+e0a10000
+2020588a
+680144bc
+60014445
+680144be
+e0a10000
+2020588a
+18007e01
+6000c445
+20405a74
+20405a7d
+203a5746
+24215744
+78547c00
+e0a10000
+e8c10000
+e0a10000
+e8c08000
+98c08c00
+2020573a
+18c08c02
+20205741
+20345728
+2020588a
+680144bc
+203a5688
+60014445
+680144be
+e0a10000
+680144c4
+e0a10000
+680144c0
+e0a10000
+2020588a
+2040577b
+20740000
+680944c4
+58002800
+98467c00
+2022d762
+58002801
+98467c00
+2022d728
+58002802
+98467c00
+2022d728
+58002803
+98467c00
+2022d728
+20205728
+680944c0
+18c08c02
+e8c08000
+1fe22600
+1a60a601
+1a60a7ff
+2022d728
+e8c10000
+98467c00
+2022d76e
+18c08c04
+20205767
+e8c10000
+1fe22200
+e8c10000
+1fe22400
+20405785
+20740000
+70444407
+1a227e00
+60014445
+1a427e00
+e0a10000
+18000409
+20205892
+78547c00
+680944bc
+680144be
+98467c00
+24215782
+18427e00
+c1800000
+78347c00
+7003fc01
+20205729
+78547c00
+680944bc
+1a227e00
+98467c00
+24215791
+680144be
+9a467c00
+24215791
+1a427e00
+9a267c00
+24215791
+20600000
+78347c00
+20205728
+680144bc
+e0a10000
+680144be
+e0a10000
+680144c0
+e0a10000
+1800040b
+20205892
+680944c0
+58002803
+98467c00
+58000007
+2022d7a5
+58002800
+98467c00
+58000006
+2022d7a5
+20205728
+6000c445
+20405a74
+18006003
+20405a7d
+203a57bc
+242157b8
+98002200
+e8c10000
+98467c00
+2422d7b9
+78547c00
+1a227e00
+e0a10000
+e8c08000
+1fe0f204
+20407e45
+1e00e1ff
+2022d7bc
+202057b9
+18c08c02
+e8c08000
+98c08c00
+202057a8
+20345728
+2020588a
+6800c43d
+1fe0ffff
+6000c43d
+1fe3fe00
+98c08c00
+e8c90000
+60094445
+2020588a
+680903fa
+20405a88
+203a5728
+e8c08000
+203a588a
+1fe67c16
+202157ce
+18007e16
+1fe27200
+20407e45
+2020588a
+58000003
+60014445
+58000008
+e0a10000
+2020588a
+680144c0
+98002200
+680903fa
+20405a88
+203a5728
+e8c08000
+9a267200
+24215728
+1f267c16
+202157e1
+18007216
+1a227e00
+98c08c00
+20407e45
+2020588a
+58000003
+e0a10000
+58000007
+e0a10000
+58000009
+e0a10000
+2020588a
+6800c43d
+1fe22600
+da200347
+da404445
+d9600000
+7858fc00
+1a220c00
+e8c90000
+18c22200
+20405a88
+203a5805
+e8c08000
+1fe27200
+99609600
+19667c18
+2421580a
+1a420a00
+e8c08000
+e0a08000
+c20057fd
+18a22400
+7838fc00
+1a60a7ff
+2022d805
+202057f2
+2438d810
+7858fc00
+19620400
+18408405
+20205892
+2438d810
+7858fc00
+19627e00
+9f260400
+18408405
+20205892
+7003fc10
+20205729
+680103fa
+203a5688
+e0a10000
+5800ffff
+e0a10000
+58002800
+e0a10000
+2020588a
+58000006
+6000c445
+680144c0
+98002200
+20405a74
+18007203
+20405a7d
+203a5835
+2421583a
+98006000
+e8c10000
+9a267c00
+2422d83b
+1e027e00
+2034582f
+1fe0ffff
+e0a10000
+e0a90000
+1fe0fe01
+1f20f3ff
+2022d88a
+78547c00
+e0a10000
+18c08c01
+e8c90000
+18c08dfd
+2020583b
+20345728
+18007fff
+e0a10000
+e0a90000
+2020588a
+18c08c02
+e8c08000
+98c08c00
+20205820
+680144c2
+60014445
+6800c4c6
+1fe27200
+d8c044c7
+20407e45
+2020588a
+680903fa
+20405a88
+203a585c
+18c08dfe
+e8c90000
+58002902
+98467c00
+2422d85c
+18c08c01
+e8c90000
+58000001
+98467c00
+2022d856
+58000000
+98467c00
+2422d85c
+2020585c
+18c08df9
+e8c10000
+1fe0ffff
+600144c2
+700b7d1b
+20405620
+18000405
+20205892
+18000406
+20205892
+18000406
+20205892
+18000406
+20205892
+18000406
+20205892
+79200025
+44b3402c
+18408401
+20405a88
+18c08dfe
+e8c10000
+d8402902
+98467c00
+24628000
+18c08c01
+18c22200
+e8c08000
+20600000
+70041b00
+68014298
+20407f66
+d8a04444
+18a08a01
+680944c2
+e0a90000
+20405a88
+e8c08000
+1fe27200
+20407e45
+6808841b
+18408407
+20405892
+20205ace
+18000406
+20205892
+18000406
+20205892
+18000406
+20205892
+18000406
+20205892
+79200025
+44b3c02c
+58004440
+98a67e00
+1fe60400
+20205892
+18000400
+18000201
+79200025
+44b4402d
+6008c43f
+28200602
+2420d899
+1840fffc
+60014440
+680883d7
+2040561a
+7d3a0404
+79200405
+18417efc
+9821fe00
+600083d7
+1fe17e1f
+6000c43e
+79200025
+44b4c02d
+6800c43e
+28200601
+20608000
+6803c43f
+680083c0
+c4020000
+20407599
+202074f7
+79200025
+44b5402d
+2040561c
+243a3bf1
+247a0000
+68008341
+207a0000
+68008340
+2fe00601
+2020d8cf
+68038341
+68008340
+2fe00602
+2020d8cf
+68008342
+60008418
+1fe22600
+79200025
+44b5c02d
+1a627e00
+c0005924
+c000d92c
+c0015934
+c001d938
+c002593f
+c002d944
+c0035949
+c003d94c
+c004594d
+c004d94f
+c0055950
+c005d951
+c0065952
+c006d955
+20203bf1
+68008341
+1fe17e1f
+207a0000
+6800c132
+c000d8d8
+68010344
+c0025903
+c00358f4
+20600000
+79200025
+44b6402d
+20404972
+680083d6
+68088340
+18410403
+184d0400
+18520400
+9841fe00
+e1410000
+68088341
+1841041f
+e1490000
+18427200
+20404976
+1840f204
+20404424
+20204435
+79200025
+44b6c02d
+d8200002
+e8610000
+e8610000
+203a3bf1
+1fe27200
+d8a04440
+2040497c
+2020588a
+79200025
+44b7402d
+e8c08000
+c000d956
+c001595b
+c001d960
+c0025966
+c002d96f
+c0035970
+c003d972
+c0045973
+c004d974
+c0055975
+c005d976
+20203bf1
+79200025
+44b7c02d
+e8c18000
+600183f9
+c000d977
+c001598e
+c001d990
+c0025991
+c002d997
+c003599a
+c003d9a4
+c00459a5
+c004d9ad
+c00559ae
+c005d9b2
+c00659b5
+c006d9b9
+c00759ba
+c007d9c0
+c00859c1
+c008d9c9
+c00959ca
+c009d9da
+c00b59dc
+c00bd9dd
+c00c59de
+c00cd9df
+c00dd9e0
+c00ed9eb
+c00f59ec
+c02959ed
+c0695a01
+20203bf1
+e8c48000
+6004c434
+e8c10000
+600103e0
+680083c0
+79207e05
+600083c0
+20600000
+e8c28000
+6002c42f
+e8c10000
+600103e0
+680083c0
+79207e06
+600083c0
+20600000
+680083e4
+79207e03
+600083e4
+20600000
+18c08c0a
+e8c40000
+60040380
+e8c20000
+60024473
+700b7d24
+20205620
+e8c40000
+60040388
+e8c20000
+60024477
+202074b6
+680083c0
+79207e04
+600083c0
+700b7d26
+20205620
+20748000
+700b7d26
+20205620
+20600000
+700b7d29
+20205620
+20600000
+20600000
+20600000
+20748000
+700b7d2c
+20205620
+20600000
+6000c4ae
+e8c30000
+e0a30000
+700b7d42
+20205620
+6000c4b5
+e8c30000
+e0a30000
+700b7d43
+20205620
+d8a0448c
+20407e35
+700b7d44
+2034d620
+700b7d43
+20205620
+204074a8
+2022d96a
+700b7d45
+20205620
+204074a5
+700b7d23
+2034d620
+700b7d44
+20205620
+20600000
+d8a00390
+20207e35
+20600000
+20600000
+20600000
+20600000
+20600000
+18c08dfe
+e8c88000
+58000006
+98467c00
+2022d989
+58000004
+98467c00
+2022d98a
+58000008
+98467c00
+2022d98b
+5800000c
+98467c00
+2022d98c
+5800000e
+98467c00
+2022d98d
+20600000
+20600000
+20600000
+20600000
+20600000
+20600000
+700b7d03
+20205620
+20600000
+1fecfe00
+600144bc
+e8c10000
+600144be
+700b7d05
+20205620
+20600000
+20600000
+20600000
+1fecfe00
+600144bc
+e8c10000
+600144be
+e8c10000
+600144c4
+e8c10000
+600144c0
+700b7d07
+20205620
+20600000
+1fecfe00
+600144bc
+e8c10000
+600144be
+e8c10000
+600144c0
+700b7d09
+20205620
+20600000
+68010347
+600103fa
+700b7d0b
+20205620
+20600000
+20600000
+20600000
+e8c10000
+600144c0
+700b7d0d
+20205620
+20600000
+68008341
+1fe0fffb
+1fe37e00
+6000c43d
+700b7d0f
+20205620
+20600000
+1fecfe00
+600144bc
+e8c10000
+600144be
+e8c10000
+600144c0
+700b7d11
+20205620
+20600000
+68008341
+1fe0fff9
+1fe27200
+680903fa
+20405a88
+203a59d8
+e8c08000
+9f267c00
+242159d8
+18c20a00
+d8c00349
+20407e45
+700b7d28
+20407c27
+700b7d13
+20205620
+680083e3
+20600000
+20600000
+20600000
+20600000
+20600000
+e8c28000
+60028ff1
+700ff001
+20407cdb
+20600000
+1a220c00
+e8c40000
+60040ff1
+700ff002
+20407cdb
+20600000
+20600000
+20600000
+68008341
+1fe0fff9
+1fe27200
+680903fa
+20405a88
+203a59fd
+e8c08000
+9f267c00
+242159fd
+18c20a00
+18c22200
+1f222400
+d8c00349
+20407e45
+70048101
+204059fe
+20600000
+68014296
+207a0000
+98007a00
+20600000
+680a03dc
+20403bde
+98461600
+19627e00
+680903ef
+18520400
+18438400
+98467e00
+20600000
+20403bde
+600203dc
+20600000
+79200025
+44b8402e
+6800c3d8
+207a0000
+d8e00001
+20407e53
+247a0000
+7854fc00
+78287c00
+20405572
+2040542c
+204054de
+2436da24
+79200025
+44b8c02e
+68008003
+1fe0fe01
+60008003
+68008340
+1fe17e0f
+c001d519
+c002da41
+20002710
+68008016
+c093da0e
+20405ad8
+d8e00001
+680144d9
+20207e4c
+79200025
+44b9402e
+680083f8
+20405405
+680103c2
+984ffe00
+d8400177
+984ffe00
+d84186a0
+9846fc00
+680083ec
+d8404e20
+984ffe00
+600246f9
+79200025
+44b9c02e
+68014161
+20407efd
+18078400
+9840fe00
+600103ce
+20600000
+79200025
+44ba402e
+68030348
+680b44f9
+98467c00
+24628000
+20405613
+1a227e00
+6000c4e6
+68038355
+60038103
+e8c40000
+e0a40000
+68030342
+600303d0
+79200025
+44bac02e
+18c08c06
+e8c40000
+600403e5
+e8c90000
+184b8400
+e8c10000
+1febfe00
+600103c2
+600203c4
+98467e00
+1fe0d1fe
+e8c48000
+600483ed
+79200025
+44bb402e
+e8c08000
+1ff18400
+18430400
+600883f8
+1fe17e1f
+600083d9
+20405a2b
+20405447
+2040536c
+204032d6
+24628000
+79200025
+44bbc02e
+d8400000
+204048ea
+204039ac
+700b7d14
+20407c27
+202032bd
+79200025
+44bc402f
+680144bc
+98002400
+680144be
+98002600
+d8c04504
+78347c00
+20600000
+e8c10000
+207a0000
+9a467c00
+24610000
+9a667c00
+20628000
+20215a86
+18007c01
+20600000
+18007e00
+20600000
+d8c04504
+e8c10000
+207a0000
+18c08c02
+98467c00
+20628000
+e8c08000
+98c08c00
+20205a89
+7044c602
+58000001
+600144c7
+7003e325
+700b7d12
+20205620
+20600000
+20600000
+79200025
+44bcc02f
+6800c132
+c1820000
+680083e3
+c010da91
+c012da97
+c0135a98
+20600000
+58005aae
+6001428c
+70806281
+580001a0
+60110052
+70804301
+70808104
+58005ac6
+60014296
+20405347
+20758000
+2020691d
+680083c1
+2fe1fe01
+58000005
+2040ea04
+2440e9ff
+204068fd
+203a5abe
+68010419
+98000a00
+1f267c14
+20215aba
+18007214
+e8608000
+e0a08000
+c2005aba
+20406906
+7044c214
+68090419
+e8408000
+207a0000
+2040561c
+247a0000
+700b7d1b
+20205620
+1a420400
+204068f7
+1a220c00
+1a427200
+e8c08000
+e1408000
+c2005aca
+202068fa
+6800c132
+c1830000
+680144c2
+c18a0000
+68090419
+58000000
+e0448000
+e0a48000
+e0a10000
+20600000
+6808c3d7
+79400407
+202069f3
+79200025
+44bd402f
+20405adf
+20205aed
+6800c419
+1fe27200
+d8402a00
+20405b0c
+18c08c01
+18c20a00
+d8c0441a
+20407e45
+6800c419
+1fe67214
+1f220400
+1f227e00
+245a5b15
+20600000
+6800c3d9
+6808c3da
+98467e00
+1fe27200
+1fe22200
+6800c3da
+1fe0fe01
+d8c043da
+98c08c00
+d8a0041d
+20407e45
+79200025
+44bdc02f
+6800c419
+1fe27200
+1fe0fe01
+6000c3da
+d8a043dc
+d8c0441a
+20407e45
+1a227200
+d8c0041d
+20407e45
+6800c3da
+9a20fe00
+6000c3d9
+20600000
+79200025
+44be402f
+d8402a00
+20205b0c
+d8c04504
+e8c10000
+203a3bf1
+e8c10000
+98467c00
+20628000
+e8c08000
+98c08c00
+20205b0d
+58000020
+e0a08000
+c2005b15
+20600000
+79200025
+44bec02f
+7855fc00
+20375b1e
+2436db2a
+20403d76
+68014161
+600103ce
+68008340
+2fe00601
+2420bd8a
+6800c43e
+2fe00601
+2420bd8a
+680083c0
+c282bd8a
+20203d6f
+68094161
+18430400
+680103ce
+9840fe00
+600103ce
+20203d82
+79200025
+44bf402f
+7046f800
+680944c2
+20405866
+1a220a00
+58000000
+e0a08000
+20600000
+6800c132
+c1850000
+20407f6e
+da2003d0
+20407e9d
+5800002c
+e1408000
+204041d4
+202068fa
+d8400014
+20405866
+c4000000
+2040561c
+247a0000
+d8400014
+600944c2
+20405a88
+203a3bf1
+18c08a01
+df200014
+d8c0046d
+20407e45
+700b7d1b
+20205620
+20600000
+79200025
+44bfc02f
+68008341
+d8c00348
+98c0f200
+e8c88000
+e8c08000
+9a267c00
+20628000
+1840ffff
+98c08c00
+1f227e00
+98c67c00
+20215b57
+18007c01
+20600000
+20758000
+58000000
+60008048
+60008055
+60008078
+6000807c
+6000c1f9
+60008453
+60008177
+600087e1
+70474800
+70025800
+70045400
+79200025
+44f0403c
+7007e100
+7007e000
+70044d00
+6800c132
+c1808000
+70425e00
+20600000
+79200025
+44f0c03c
+2054e219
+2454e21d
+6800807c
+245a61d9
+6800807c
+247a0000
+6800804c
+c4030000
+793ffe06
+793f8001
+6000804c
+680084de
+6808804c
+2feffe00
+79208401
+6008804c
+18410402
+6008807f
+6808804c
+1fe37e00
+6000807d
+79200025
+44f1403c
+6800807d
+c03fdbdc
+c001dc56
+c0025c67
+c01e5bcf
+c002dbcb
+c007de48
+c0085ce1
+c011dcff
+c01cde67
+c01c5e62
+c018dce4
+c01bdd72
+c013dd6e
+c019dd68
+c012dd70
+c0135cfb
+c003dcf3
+c016dcea
+c0175ceb
+c000dd64
+c0015d4f
+c0145e53
+c004dd45
+c005dd1a
+c0045d00
+c0065d2c
+c00fdcf7
+c0105cf9
+c010dd8d
+c0115d8e
+c01add8f
+c01b5d90
+c0125d91
+c0165d92
+c015dd95
+c01a5d9f
+c00bdda2
+c008ddb7
+c0095dbb
+c009ddbd
+c006ddcf
+c0075dd0
+c017dd6c
+c0185dd1
+c0055dd2
+c00c5dd3
+c0195dda
+c01edddb
+c01f5dff
+c01fddf9
+c0205e22
+c020de34
+c0035e47
+c01d5bcd
+70007e19
+70007c04
+20600000
+70007c06
+20600000
+70007c3b
+20600000
+680204df
+1fe3fe00
+60024173
+680084e3
+6000c17a
+680284e4
+6002c188
+680284e9
+e0a28000
+68008031
+79207e03
+60008031
+20600000
+680084df
+79207e07
+6000807d
+c040dc26
+c0415c2e
+c04add73
+c04b5d8c
+c045dd81
+c041dc49
+c0425c4b
+c0485bf1
+c04bdc42
+c04c5c47
+c04cdc14
+c04d5c19
+c046dc11
+c0465bf4
+c1420000
+70007c82
+70007e19
+20600000
+70007c82
+70007e2e
+20600000
+680084e0
+600080ad
+680084e1
+6000c1f9
+680084e3
+600080af
+680084e7
+600080b0
+680084ec
+600080ab
+c503dc07
+79200007
+20405d16
+60008452
+18000400
+20204839
+70007c8c
+7000b101
+202049bc
+680080b0
+c083dc0b
+70007c81
+20205c0f
+793f8007
+70007c82
+18000401
+20404914
+70007d8c
+20600000
+70007c81
+70007d8d
+20203869
+20405c1d
+6800c132
+c000dc21
+70007c9a
+20600000
+20405c1d
+6800c132
+c000dc21
+20205c22
+d8a007e9
+680184e0
+e0a18000
+20600000
+2040480f
+20406216
+2440c81b
+2020f80f
+20600000
+680084e1
+79207e07
+60008445
+c045dc36
+c046384a
+c046dc2d
+20600000
+20203869
+680084e1
+79207e07
+60008445
+c045dc3a
+c0465c34
+20600000
+793f8007
+20600000
+6800c1fb
+6808804c
+7d3a0405
+6008804c
+68008030
+c4028000
+793ffe05
+60008030
+68008453
+243a4872
+70007c31
+20600000
+2434dc45
+70007c12
+20206205
+70007c97
+20600000
+20406205
+20205ecd
+70007c84
+20600000
+680884e2
+18410401
+6008844c
+6800c272
+c0a8dc52
+70427200
+204047f9
+68008055
+c18a8000
+70005504
+20206235
+680084df
+60008445
+c019dc7d
+c0045c90
+c007dc97
+c0085c9d
+c008dc9e
+c0095ca6
+c00c5ccc
+c00bdcd1
+c015b84a
+c009dc74
+c01edde9
+c01f5e18
+c0205deb
+c020ddef
+20600000
+680084df
+60008445
+c000dcc3
+c019dc87
+c005dca7
+c015dc8e
+c0045cba
+c009dc77
+c0205cc4
+c020dcc7
+c00c5cca
+c00bdcdf
+20600000
+700b7d20
+20407c27
+20203245
+700b7d19
+20407c27
+70474802
+58000050
+d8e0000a
+20207e4c
+6800844d
+79207e00
+6000844d
+700b7d01
+20407c27
+70007c8b
+68008055
+c082db77
+70005506
+20600000
+7004460b
+70007c07
+18000410
+20404826
+70005500
+2020db77
+20600000
+70007c2b
+20600000
+6800c25e
+247a0000
+20403507
+20405ecb
+20748000
+79200021
+20600000
+24748000
+70007c10
+6800804c
+c4010000
+70007c12
+20600000
+20205ecd
+20405f2d
+68008030
+c3820000
+70007c31
+68008055
+c1850000
+7000550b
+20600000
+20600000
+6800c132
+c080dcb7
+6800c25e
+207a0000
+68088055
+70005500
+70425e00
+680084e0
+c1830000
+60088055
+7007e001
+6801044a
+6808844c
+98417e00
+203a49da
+202049d7
+70007c07
+70044613
+20600000
+680084e0
+c0035cc0
+c18c0000
+70044618
+70007c07
+20600000
+70044606
+70007c07
+20600000
+20600000
+7007da00
+70007c07
+20205b77
+7007da00
+70007c07
+20205b77
+700b7d24
+20207c27
+700b7d23
+20407c27
+20403806
+18000400
+20204907
+700b7d22
+20407c27
+18000402
+20404907
+58000000
+60010075
+68014280
+1fe3fe00
+60010032
+6800c282
+60008073
+6800c284
+60008074
+202037e1
+700b7d21
+20207c27
+680884df
+60088054
+20205cf5
+6800844d
+79207e02
+6000844d
+c3818000
+70007c31
+20205b77
+20600000
+6800c171
+680884df
+98467c00
+20215cf5
+70007c04
+70007e1f
+70007d2e
+20600000
+2040605a
+20205cf5
+70007c03
+20600000
+70007c21
+20600000
+70007c22
+20600000
+68008055
+c1098000
+70005502
+20600000
+20600000
+20405ec8
+70045001
+6800c132
+c000dd06
+700b7d0a
+20407c27
+2040487b
+2040620d
+2420ded0
+2434dd0e
+70007c04
+70007d08
+70007e23
+20600000
+6800804b
+79207e02
+6000804b
+20600000
+6808804c
+7d3a0401
+6008804c
+20600000
+6800807f
+1fe37e00
+1fe17e01
+20600000
+20405d16
+60008451
+20405ec8
+70007c0c
+6800c25e
+247a0000
+68008030
+c3830000
+70007e06
+6800c132
+c080dbc9
+68008453
+243a5bc9
+70007c00
+6800804b
+79207e00
+6000804b
+20204872
+da200040
+2040739d
+680204df
+680a051f
+98467c00
+2022dd35
+70007c07
+70044605
+20600000
+2040749b
+20403211
+6800804b
+2feffe01
+793ffe01
+6000804b
+2040c8bc
+68008055
+c00cdd40
+c00c5d40
+20600000
+680087e1
+c1800000
+6800804c
+c3810000
+202062cf
+da2004df
+da40050f
+d8a004ef
+20407467
+da200040
+2040622b
+70007c0b
+68008030
+c3035ecb
+20600000
+68010169
+1fe0f3fd
+680884df
+58000103
+98408a00
+d8c004e1
+20407e45
+68088053
+680084e0
+98467e00
+1fe67c0e
+20215d5f
+1840fe0e
+60008053
+70007c01
+20600000
+6800804c
+79207e03
+6000804c
+c2825ed5
+20600000
+680084df
+6000807d
+70007c02
+20600000
+6800c132
+c080dcf5
+18000401
+20204839
+70007c30
+20600000
+70007c28
+20600000
+70007c26
+20600000
+20600000
+68010032
+98000400
+680084e0
+60008097
+984f8400
+680104e1
+1fe3fe00
+60010098
+680204e3
+1fe3fe00
+60020093
+18427e00
+6001009a
+20600000
+6808c1fb
+680084e0
+9842fc00
+2422dbee
+2feffe00
+6800804c
+7920fe05
+6000804c
+70007c81
+70007d8b
+20600000
+20600000
+20600000
+20600000
+20205cf5
+20205cf5
+20600000
+2040385e
+70007d2c
+20205cf5
+680084df
+600080ad
+680084e1
+600080af
+680084e4
+600080ab
+20405d16
+60008452
+18000400
+20204839
+680104df
+6001017b
+20600000
+68008030
+c280ddb5
+680104e0
+1fe3fe00
+60010075
+680104e2
+1fe3fe00
+60010032
+680104e4
+60008073
+98000400
+680104e6
+60008074
+98467c00
+24215db2
+60008073
+70007c03
+70007d17
+20600000
+70007e24
+20205bc9
+20405cf5
+20405ec8
+204073a0
+202037d0
+20405cf5
+202037da
+680204df
+1fe3fe00
+2034ddc9
+6808c25e
+243a5dc6
+70007c04
+70007d13
+70007e24
+20600000
+70007c34
+70005500
+20203241
+20403241
+79200022
+68008177
+793ffe02
+60008177
+20205cf5
+20600000
+20600000
+20600000
+20600000
+70007c03
+70007d18
+700b7d2e
+20407c27
+18000400
+20404907
+20203806
+20600000
+680084df
+c080dde7
+680084e0
+c080dde7
+680084e1
+c0985de7
+20406216
+2020dde4
+7007da01
+70007c03
+70007d3d
+20205b77
+70007e24
+20205bc9
+70007c3e
+20600000
+20406216
+20608000
+7007da08
+20600000
+20406216
+2440fa9d
+2040faab
+20404860
+20404869
+20406216
+20608000
+7007da0c
+7007dc01
+20600000
+d8a00888
+680404df
+e0a40000
+680404e7
+e0a40000
+2020780f
+680087db
+c003de03
+680087da
+c080de16
+680087e3
+1fe60a20
+24215e16
+d8a007f0
+98a08a00
+680404df
+e0a40000
+680404e7
+e0a40000
+680087e3
+1fe0fe10
+600087e3
+c0985cf5
+20406216
+2020dcf5
+7007e401
+7007da02
+7007dc01
+20205cf5
+70007e24
+20205bc9
+680087e2
+c0185e1c
+70007c3e
+20205b77
+20406216
+2020de21
+7007dc01
+7007da04
+20205b77
+20205b77
+680087db
+c003de26
+680087da
+c0835e32
+d8a00848
+680404df
+e0a40000
+680404e7
+e0a40000
+20406216
+2020de30
+7007da07
+7007dc01
+20205cf5
+7007db04
+2020780f
+70007e24
+20205bc9
+680087db
+c005de38
+680087da
+c0845e45
+d8a00878
+680404df
+e0a40000
+680404e7
+e0a40000
+20406216
+2020de42
+7007da09
+7007dc01
+20205b77
+7007db09
+7007dd01
+20205b77
+70007e24
+20205bc9
+20205b77
+68008177
+793ffe01
+60008177
+20405cf5
+24748000
+680084df
+6808804b
+793a0404
+7d3a0405
+6008804b
+20600000
+680c04df
+6800c272
+c0a85e58
+70427200
+204047e5
+68008055
+c1818000
+6800c132
+c000de5e
+68008177
+c3025e60
+70005514
+20600000
+70005504
+20600000
+68008189
+6000815d
+70007c03
+70007d38
+20600000
+70007c03
+70007d39
+18007209
+d8c004df
+d8a00154
+e8c08000
+1fe2fe55
+e0a08000
+c2005e6c
+68008154
+68088153
+793f8407
+793f8404
+c07fde80
+c0005e99
+c002de8d
+c003de8c
+c0035e8d
+c0045e8c
+c000de85
+c0015e85
+c001de85
+c004de85
+c0025e85
+20600000
+68008153
+79207e03
+79207e02
+60008153
+20600000
+79200404
+70018a05
+6801015b
+98007200
+60010169
+d8a004de
+20407ed8
+79200407
+79200402
+18007e00
+6000800b
+600100fc
+600100fe
+600100fa
+600100f8
+68008155
+2fe1fe00
+79208406
+60088153
+20600000
+793f8011
+70015300
+68008189
+793ffe06
+60008189
+20600000
+68008153
+c4010000
+6800815e
+1fe0fe01
+6000815e
+c1828000
+70015e00
+68008153
+793ffe02
+60008153
+c281dec0
+2feffe07
+2040ff86
+2440ff8a
+6800815a
+2fe06020
+6800804c
+7920fe05
+6000804c
+68008153
+68088189
+2feffe04
+79208406
+2feffe06
+79208404
+79208405
+60088189
+68008156
+60008447
+68008157
+60008448
+79200011
+20600000
+793f8011
+70015300
+6800815d
+60008189
+68108043
+1fe17efb
+60108043
+20600000
+d8c004df
+d8a004ef
+20207e35
+70007c09
+20600000
+24748000
+70007c11
+20600000
+da204140
+2040736a
+70007c03
+70007d08
+20600000
+7000720a
+70007c07
+70044616
+20600000
+79200025
+44f1c03c
+78547c00
+204061d9
+68008048
+207a0000
+c283df10
+c000e072
+c0015f9b
+c001df1d
+c0025f36
+c013e0f2
+c0145fbf
+c0185fab
+c012e0ed
+c0135fba
+c018e0dc
+c01be06d
+c019e05f
+c0046174
+c004e16a
+c005e17f
+c0066188
+c007e065
+c00861af
+c008e1a5
+c003e055
+c0156081
+c0056082
+c015e0b5
+c0035fb0
+c010e062
+c016e0d2
+c01760d7
+c0116062
+c01660cb
+c01a6083
+c009e098
+c00be0a7
+c00961ac
+c017e0ad
+c00c60b2
+c01ee119
+c01f6125
+c01fe137
+c0206142
+c020e157
+c011e166
+c01de161
+c002e167
+c014e168
+c01c6169
+c01ce078
+20203bf1
+20600000
+c0465fc4
+c046dfe3
+c040df43
+c0425f76
+c0415f50
+c041dfec
+c045dff7
+c04be051
+c04cdf8c
+c04d5f81
+c04adf91
+c04b5f92
+20203bf1
+18007e02
+204061b5
+68008049
+e0a08000
+c015df5a
+204061c4
+68008049
+c0045f5d
+c007df61
+c0085f6c
+c00bdf33
+c019df6f
+c0165f74
+c020df75
+c008df2d
+20600000
+68008055
+207a0000
+7000551b
+5800000c
+d8e0000b
+20207e4c
+18000402
+20404907
+202037e1
+18007e03
+204061b5
+68008049
+c005df3e
+e0a08000
+6800804a
+e0a08000
+202061c4
+e0a08000
+6800804a
+e0a08000
+d8400451
+202061fb
+18000e04
+204061bd
+5800007f
+e0a08000
+68008049
+793ffe07
+e0a08000
+68008049
+c0465f5a
+204061c4
+68008049
+c046df74
+20600000
+18000e05
+204061bd
+5800007f
+e0a08000
+68008049
+793ffe07
+e0a08000
+6800804a
+e0a08000
+202061c4
+2040384a
+d8400452
+202061fb
+20403507
+2040620d
+20608000
+20205ecb
+6800804b
+c282df68
+c4020000
+70007c12
+793ffe04
+20406205
+20205f6a
+70007c10
+793ffe05
+6000804b
+20600000
+20406216
+2020decd
+20600000
+6800844d
+79207e00
+6000844d
+700b7d01
+20207c27
+20600000
+20600000
+18000e0c
+204061bd
+58000001
+e0a08000
+6801044a
+e0a10000
+58000000
+e0a18000
+58000000
+e0a20000
+202061cd
+18000e05
+204061bd
+6800c132
+c000df89
+58040003
+e0a18000
+600187e6
+202061cd
+680187e6
+e0a18000
+202061cd
+18000e05
+204061bd
+680187e6
+e0a18000
+202061cf
+20600000
+18000e09
+204061bd
+68008097
+e0a08000
+68010098
+e0a10000
+68020093
+e0a20000
+202061cd
+18007e11
+204061b5
+68008049
+1fe20400
+c0005fa3
+c0075fa3
+c00e5fa3
+20600000
+e0a08000
+6800c702
+e0a08000
+1fe27200
+58004703
+98408c00
+20407e45
+202061cd
+18007e03
+204061b5
+58000114
+e0a10000
+202061cd
+18007e03
+204061b5
+6802016f
+9c467e00
+2034dfb6
+1fe67e00
+1feb7e00
+793ffe0f
+e0a10000
+202061cd
+18007e06
+204061b5
+6802c6fd
+e0a28000
+202061cd
+18007e09
+204061b5
+68044138
+e0a40000
+202061cd
+2034dfc6
+20205fc7
+7041f907
+7000af00
+18000e10
+204061bd
+680080ad
+e0a08000
+6800c1f9
+e0a08000
+58000000
+e0a08000
+680080af
+e0a08000
+58000006
+e0a08000
+58000002
+e0a08000
+58000007
+e0a08000
+e0a08000
+5800001e
+e0a10000
+e0a10000
+680080ab
+e0a08000
+680080b1
+e0a08000
+243a61cd
+2034e1cd
+202061cf
+18000e04
+204061bd
+680080ad
+e0a08000
+68008446
+e0a08000
+680080b4
+60008047
+202061cf
+18000e0c
+204061bd
+58000001
+e0a08000
+6801044a
+e0a10000
+58000000
+e0a18000
+58000000
+e0a20000
+202061cf
+18000e03
+204061bd
+6800c1fb
+e0a08000
+78547c00
+204061cf
+24740000
+24748000
+6800c179
+c4000000
+2040600f
+20206019
+6800c13e
+79207e03
+6000c13e
+58000101
+6001044a
+20600000
+6800c13e
+793ffe03
+6000c13e
+58000000
+6001044a
+20600000
+70417903
+58000000
+600241e3
+d8a0417b
+20406023
+d8a04188
+20406023
+d8a041e7
+20406023
+2020602a
+d8a04188
+20406023
+2040602a
+2020602d
+6802c1e7
+6002c188
+e8c28000
+e0a28000
+2040602a
+2020602d
+58ffffff
+e0a18000
+e0a18000
+e0a18000
+5800007f
+e0a08000
+20600000
+58000000
+60014177
+20600000
+6800c179
+79207e02
+6000c179
+20600000
+24748000
+18007e10
+204061b5
+1c427e00
+d84001dc
+9840fe00
+1fe37e00
+1fe0fe01
+793ffe00
+e0a20000
+1fe20400
+58000001
+e0a08000
+6802c188
+e0a28000
+e8c28000
+e0a28000
+18438400
+600a4173
+204061cf
+68008031
+79207e03
+60008031
+70417a01
+68024173
+d842ee00
+9840fe00
+600241e3
+6800c179
+c3820000
+70007c90
+20600000
+18000e02
+204061bd
+2434e1cd
+202061cf
+18007e02
+204061b5
+68008446
+e0a08000
+204061cf
+6800804b
+79207e03
+6000804b
+70007232
+20600000
+18007e01
+204061b5
+202061cf
+18007e01
+204061b5
+202061cd
+18007e02
+204061b5
+6800804c
+2fec0002
+7920fe00
+1fe17e01
+e0a08000
+202061cf
+18007e03
+204061b5
+68010051
+e0a10000
+202061cf
+700072fa
+18007e02
+204061b5
+68008053
+e0a08000
+202061cf
+18007e0a
+204061b5
+d8c00154
+18007209
+e8c08000
+1fe2fe55
+e0a08000
+c200607c
+202061cf
+202061cf
+202061cf
+20748000
+20403997
+18007e09
+204061b5
+6801017b
+e0a10000
+6801c140
+e0a18000
+6800c143
+e0a08000
+68014144
+e0a10000
+c581e094
+793f8003
+204061cf
+70007c13
+20600000
+204061cd
+70007c03
+70007d13
+20600000
+d8400200
+2034e09c
+1d027e00
+2020609d
+1c427e00
+1c227e00
+9840fe00
+1fe17ffc
+60020034
+18007e05
+204061b5
+68020034
+1fe37e00
+e0a20000
+202061cf
+18007e0a
+204061b5
+d8c00455
+e8c48000
+e0a48000
+202061cf
+18007e03
+204061b5
+58000114
+e0a10000
+202061cf
+18007e01
+204061b5
+202061cf
+2034e0ba
+7000ad00
+68008031
+79207e04
+60008031
+7000af00
+18007e07
+204061b5
+680080ad
+e0a08000
+58000000
+e0a08000
+680080af
+e0a08000
+58000006
+e0a08000
+58000002
+e0a08000
+680080ab
+e0a08000
+2034e1cd
+202061ca
+18007e03
+204061b5
+680080ad
+e0a08000
+18007e13
+e0a08000
+202061cf
+18007e02
+204061b5
+6800c171
+e0a08000
+202061cf
+18007e02
+204061b5
+58000005
+e0a08000
+202061cf
+68008030
+79207e04
+60008030
+1c427e00
+60020465
+6800844d
+c281e0eb
+79207e03
+6000844d
+700b7d05
+20407c27
+20404825
+18007e01
+204061b5
+202061cf
+70004800
+20600000
+18007e06
+204061b5
+6802c6fd
+e0a28000
+202061cf
+18007e09
+204061b5
+68044138
+e0a40000
+202061cf
+2040481b
+6800c132
+c000e0fd
+7007dd01
+6800c793
+c1808000
+7007db13
+20600000
+20406209
+70007c99
+7007db03
+20600000
+20406209
+70007c3d
+7007db07
+20600000
+da200868
+da400888
+df200010
+20407f25
+2022e111
+7007db00
+20407811
+70007e24
+70007d40
+20205bc9
+7007db0a
+2040780f
+70007d40
+20205cf5
+70007c40
+20600000
+70007c3d
+20600000
+7007e200
+18007e04
+204061b5
+18007e01
+e0a08000
+18007e01
+e0a08000
+18007e30
+e0a08000
+20406216
+2020e1cf
+202061cd
+18007e11
+204061b5
+680087e2
+d8c047ac
+98c08c00
+e8c40000
+e0a40000
+e8c40000
+e0a40000
+680087e2
+1fe0fe10
+600087e2
+20406216
+2020e1cf
+202061cd
+7007da06
+70007c3f
+20600000
+18007e11
+204061b5
+d8c00868
+e8c40000
+e0a40000
+e8c40000
+e0a40000
+202061cd
+204061d9
+70007c40
+20600000
+20406216
+2040f74d
+18007e11
+204061b5
+d8c00838
+e8c40000
+e0a40000
+e8c40000
+e0a40000
+20406216
+2420e1cd
+2020e1cf
+7007db0f
+20406209
+70007c0b
+20406221
+2020f785
+2020778f
+20406205
+70007c41
+20600000
+18007e11
+204061b5
+d8c00868
+e8c40000
+e0a40000
+e8c40000
+e0a40000
+20406216
+2420e1cd
+2020e1cf
+18007e03
+204061b5
+5800fffe
+e0a10000
+202061cd
+202061cf
+202061cf
+202061cf
+202061cf
+20406225
+da204140
+2040622b
+18007e11
+204061b5
+da20050f
+da4004ef
+20407467
+2434e1c4
+202061ca
+20406225
+da200040
+2040736a
+18007e11
+204061b5
+d8c004ef
+20407e35
+68008055
+c00ce1cf
+c00c61cf
+202061ca
+680087e1
+203a6185
+20406216
+2040e209
+2440e205
+20206186
+20406209
+20406225
+20206177
+da204140
+2040739d
+18007e05
+204061b5
+6802051f
+e0a20000
+d8400451
+204061fb
+2040749b
+20406216
+2020e197
+70045401
+680087e1
+207a0000
+70007c0b
+6800c25e
+207a0000
+20406216
+2040c852
+20406216
+2420e1a1
+68008453
+207a0000
+70007c0f
+20600000
+c6908000
+793f8021
+70007c0f
+20600000
+20406225
+204073a0
+18007e11
+204061b5
+d8c004ef
+20407e35
+202061ca
+18007e01
+204061b5
+202061ca
+18007e02
+204061b5
+18007e10
+e0a08000
+60008054
+202061ca
+1fe9fe00
+1fe1fe07
+60008432
+df200011
+d8a00434
+20407e3f
+d8a00434
+20600000
+1fe1227f
+7000487f
+18e27e00
+204061b5
+1a227e00
+e0a08000
+20600000
+68008048
+1fe3fe00
+6808804c
+284ffe01
+7920fe00
+202061d4
+6808804c
+18410401
+202061d0
+18000400
+202061d0
+18000401
+68008048
+1fe3fe00
+7934fe00
+9842fe00
+60008433
+70004800
+204061e0
+78347c00
+20600000
+79200025
+44f2403c
+68008048
+203a61e0
+68008078
+247a0000
+202061ea
+68008078
+203a61f0
+68018078
+60018048
+6808807b
+6800804c
+793ffe01
+9841fe00
+6000804c
+70007800
+6800807c
+207a0000
+6802007c
+60020078
+70007c00
+20600000
+6800807c
+207a0000
+6801807c
+60018048
+6808807f
+6800804c
+793ffe01
+9841fe00
+6000804c
+70007c00
+20600000
+79200025
+44f2c03c
+6800804c
+1fe22600
+e8408000
+20405d12
+204061c4
+1a627e00
+6000804c
+20600000
+6808804c
+793f8400
+6008804c
+20600000
+6808804c
+79200400
+6008804c
+20600000
+7d34fe01
+6808804c
+9842fe00
+2feffe01
+20600000
+6800804c
+7934fe01
+6000804c
+20600000
+680087e0
+2fe0fe01
+20600000
+680087e0
+79207e07
+600087e0
+20600000
+680087e0
+793ffe07
+600087e0
+20600000
+680087e0
+2feffe07
+600087e0
+20600000
+d8a004ef
+18007210
+180a7e00
+e0a08000
+c2006227
+20600000
+2040736e
+da204262
+da40051f
+ea240000
+68088030
+7d3a0406
+60088030
+1a220a00
+20407467
+20203229
+79200025
+44f3403c
+6800807c
+203a623c
+204061d9
+6800807c
+247a0000
+68008055
+207a0000
+c002628d
+c002e292
+c0016284
+c001e29a
+c0076287
+c00362b6
+c003e2ce
+c004e2cf
+c00562d8
+c005e2dc
+c00662a4
+c006e2a7
+c007e2ad
+c0096277
+c009e29a
+c008627a
+c00a6274
+c00ae29a
+c00b626e
+c00c6273
+c00be267
+c00ce26d
+c00d6258
+c00de262
+70005500
+20600000
+6800844d
+c4010000
+c4018000
+70005500
+2040625e
+20206e41
+68008177
+c4008000
+7000550a
+20600000
+d8e0000b
+20407e53
+247a0000
+7000551a
+20600000
+68008177
+793ffe00
+60008177
+70005519
+70007c0b
+20600000
+20600000
+68008450
+c1810000
+204062de
+70005518
+20600000
+20600000
+70005515
+70007c83
+20600000
+70005513
+70007c25
+20600000
+6800c748
+c1000000
+c000e282
+d8e0000a
+20407e53
+247a0000
+70474800
+2020629b
+20748000
+202062b6
+70005503
+70007c27
+20600000
+70007c13
+79200003
+70005505
+580001ff
+6001044e
+20600000
+70005505
+70044eff
+793f8022
+70007c33
+20205b6f
+c6110000
+6801044e
+1fe67e01
+2022e298
+6001044e
+20600000
+7000550e
+20600000
+20600000
+6800844d
+c4018000
+c4010000
+68008177
+793ffe02
+60008177
+70007c13
+70005510
+20600000
+7000550d
+70007c31
+20600000
+6800844d
+c4010000
+70005500
+20600000
+70005506
+20600000
+6800844e
+1fe0ffff
+203a62b2
+6000844e
+20600000
+70007c07
+70044616
+70005500
+20600000
+68008177
+c281629b
+c28062bb
+7000551a
+20600000
+6800c25e
+203a62c7
+6800844d
+c4018000
+c4010000
+68020465
+d8400064
+98408400
+1c427e00
+98467c00
+24610000
+20206267
+70005516
+70054f04
+58003030
+60010550
+e0a10000
+70045002
+2020626e
+20600000
+68008177
+c280e2d3
+7000551a
+20600000
+68008177
+793ffe01
+60008177
+70007c0f
+20600000
+68008454
+207a0000
+70005500
+202062d3
+7000550c
+20600000
+6800804b
+c28162e3
+20406209
+70007c08
+202049bc
+6800804b
+793ffe02
+6000804b
+20405ed0
+20406212
+202049bc
+58000004
+6000854f
+58003030
+e0a10000
+e0a10000
+20600000
+20758000
+70481300
+20406321
+20406438
+5800632e
+60014290
+5800632f
+6001428e
+58006337
+60014292
+580063b6
+60014296
+5800632f
+6001428c
+79200025
+44c04030
+5800632a
+60014286
+580063be
+60014298
+58000000
+6002480a
+60014810
+2040630a
+20403fc5
+20403e2b
+2020691d
+20758000
+580001a0
+600142ac
+20406a0d
+58004a00
+60110054
+58004fff
+60110056
+58001c00
+6011005a
+58001fff
+6011005c
+70808104
+70029fff
+70806200
+58001c00
+6011005e
+60110060
+58004a00
+60110058
+20204480
+2040630d
+20206321
+20407bd9
+20403f94
+6808c803
+204069da
+2040639e
+6808c801
+204069d1
+6808c800
+202069d2
+6808c801
+204069e5
+2420bf5c
+20203f5a
+20206330
+20206330
+79200025
+44c0c030
+2040641c
+20406421
+2040527a
+247a0000
+202063a0
+1a627e00
+c0056368
+c0026383
+c009e387
+c001634c
+c00ce36a
+c010636f
+c0116374
+c010e375
+c011e376
+c0126379
+c00a637a
+c000e382
+c00ae364
+c002e35d
+c005e352
+c0063fa6
+1fe1040f
+1fe17ef0
+c02863ec
+20600000
+2040638a
+680142a0
+c4020000
+df200003
+d8c04849
+20207f71
+68014042
+1fe37e00
+68094280
+98467c00
+2422e358
+20203fa4
+6800c813
+c3800000
+68110112
+245a640c
+20203f9c
+20406395
+2040642e
+2022e361
+20203f77
+df200004
+d8c0488e
+20207f71
+2040638a
+df200005
+d8c04847
+20207f71
+20403fc1
+20203f6a
+6800c813
+c4020000
+793ffe04
+6000c813
+2020427f
+6800c813
+c4020000
+793ffe04
+6000c813
+20204286
+20600000
+20600000
+6800c813
+c3003f9e
+20206410
+20600000
+20406395
+da4003d0
+2040642e
+2022e37f
+20203f90
+df200006
+d8c0488c
+20207f71
+20600000
+df200007
+d8c04899
+20407f71
+2020638a
+df200007
+d8c04892
+20407f71
+2040638c
+20206393
+6800c812
+2feffe00
+2040bf7c
+6800c812
+2feffe01
+2040bf88
+20600000
+6808c803
+202069ef
+20406397
+2020639e
+6800c812
+2feffe00
+2040bf7e
+6800c812
+2feffe01
+2040bf86
+20600000
+6808c803
+202069ed
+6800c132
+c1850000
+68110112
+207a0000
+6001480e
+204063a9
+2020bfef
+20406400
+202063af
+6808c800
+202069e5
+6800c813
+c3800000
+2040640c
+20203f9c
+6800c040
+c300428c
+6800c041
+c28063d5
+20403f40
+2020e3ab
+20206d97
+20405a88
+e8c08000
+18c22200
+20407f6e
+1a427200
+1a220c00
+20404976
+202068fa
+68014810
+207a0000
+d8400014
+20407fb9
+60010469
+1fe20400
+68014810
+98467e00
+60014810
+24213bf1
+d8400014
+600944c2
+20405a88
+203a3bf1
+18c08a01
+68010469
+1fe27200
+20407f6b
+2040497c
+68010469
+6001480e
+6001041b
+2020428c
+c6848000
+204063d8
+204063d8
+2040561e
+247a0000
+68110112
+207a0000
+68094810
+98467e00
+24213bf1
+6001480e
+207a0000
+20406407
+68014810
+6809480e
+9840fe00
+60014810
+68094810
+68110112
+98462200
+24213bf1
+700b7d1b
+20205620
+60088259
+68008259
+207a0000
+1fe0ffff
+60008259
+204063f3
+202063ed
+6801481a
+207a0000
+1fe0ffff
+6001481a
+247a0000
+6800c2a4
+7042a400
+c280e3fd
+c28063fe
+20203bf1
+20203f8c
+70427202
+20600000
+6800c041
+c2806407
+6801480e
+d840006e
+20407fb9
+6001480e
+20600000
+6801480e
+d8400014
+20407fb9
+6001480e
+20600000
+6800c813
+79207e00
+6000c813
+20600000
+6800c813
+793ffe00
+6000c813
+20600000
+6800c813
+79207e07
+6000c813
+20600000
+6800c813
+793ffe07
+6000c813
+20600000
+79200025
+44c14030
+20407f8e
+20213f66
+20203f68
+204063a9
+2020e428
+68190052
+680142ac
+98467c00
+20628000
+20206909
+68190052
+580001a0
+98467c00
+20628000
+60110052
+20600000
+79200025
+44c1c030
+6800c812
+2fec0002
+2020e436
+da204814
+df200006
+20207f25
+18007c00
+20600000
+79200025
+44c24030
+d8a0481c
+38035350
+38055115
+38092415
+380d0951
+e0a48000
+3802454c
+38075053
+38082454
+380d1531
+e0a48000
+38034441
+380594d4
+38092455
+380d0d4d
+e0a48000
+3803414c
+3804d4d4
+380924c4
+380d3119
+e0a48000
+38015247
+3807d0d1
+3808e4e4
+380d1531
+e0a48000
+38034944
+380514d4
+3808e535
+380d5105
+e0a48000
+38014c2b
+380514d2
+3808f525
+380d1531
+e0a48000
+38014e53
+38059192
+380844c4
+380d5915
+e0a48000
+38035352
+3804d254
+38085444
+380d0959
+e0a48000
+3801454c
+38045392
+38083525
+380d3d35
+e0a48000
+38014544
+380513d3
+38084454
+380d4d35
+e0a48000
+38004154
+38051155
+38093494
+380d3d0d
+e0a48000
+38004f56
+38071055
+38083454
+380d393d
+e0a48000
+3801504e
+380551d0
+380954f4
+380d4951
+e0a48000
+38024345
+38065051
+380804c4
+e0a30000
+20600000
+580065d7
+6001428c
+5800652e
+6001428e
+580064e3
+6001428a
+580065f3
+60014292
+580064a9
+60014290
+58006561
+60014298
+7007dc00
+7007dd00
+793f8025
+44e04018
+204064c4
+20758000
+2040649f
+204064a7
+580064e0
+60014288
+680147f4
+c2866697
+20206693
+20403f4d
+2022e4a4
+20406963
+204066ba
+20203f45
+2040691d
+20406967
+202066c0
+70481c01
+202064bb
+20407cd7
+204064ac
+202064f6
+6808c825
+204069e5
+2420e4b3
+6800c81c
+c1000000
+70481c00
+20600000
+6800c81c
+c1008000
+70481c01
+6800c81b
+1fe0fe01
+1fe17e03
+6000c81b
+202064bb
+58000006
+204066d8
+1fe104fc
+6800c81b
+9840fe00
+1fed7e00
+1fe0fe06
+204066d7
+202066ba
+204065c5
+204064ca
+68110050
+793ffe0b
+60110050
+20600000
+20403e0b
+6808c827
+204069d1
+6808c828
+204069d1
+6808c822
+204069d1
+6808c823
+204069d1
+6808c824
+204069d1
+6808c826
+204069d1
+6808c825
+204069d1
+6810807b
+1fe1fe18
+6010807b
+6810807f
+1fe17ee7
+6010807f
+20600000
+5800bc05
+204066d7
+7000a201
+204064f6
+d8400019
+204069da
+70808100
+6808c827
+204069b4
+6808c828
+204069b4
+6808c822
+204069b4
+6808c823
+204069b4
+6808c824
+204069b4
+6808c826
+204069b9
+680080a2
+247a0000
+202069c4
+793f8025
+44e0c018
+da200000
+6808c827
+204069e5
+7920a200
+6808c828
+204069e5
+7920a201
+1a227e00
+1fe17e03
+6808c808
+6000c808
+98467c00
+2022e514
+6800c807
+6000c806
+6008c807
+6800c808
+1ff27e00
+6808c807
+184b8400
+9840fe00
+6808c806
+9840fe00
+c01c6515
+c01a6519
+c005e519
+c003e515
+20600000
+20600000
+6800c809
+1fe0fe01
+6000c809
+20600000
+6800c809
+1fe0ffff
+6000c809
+20600000
+20600000
+5800b805
+202066d7
+20600000
+20403fa0
+70482002
+20403fa4
+20203f92
+6801481e
+207a0000
+1fe0ffff
+6001481e
+247a0000
+20203f9a
+58000002
+6000c7f2
+20600000
+6800c27f
+207a0000
+2040527c
+247a0000
+20406578
+24740000
+2040655e
+2040655a
+da200008
+20404b2c
+680142b7
+e0a10000
+580002a1
+e0a10000
+6800c805
+e0a08000
+68014800
+d8400fff
+98417e00
+68094802
+18520400
+184d0400
+9841fe00
+e0a18000
+6800c804
+e0a08000
+58000000
+e0a08000
+7008a808
+20600000
+793f8025
+44e14018
+6800c81a
+207a0000
+1fe0ffff
+6000c81a
+247a0000
+2040527e
+247a0000
+58000000
+6002c800
+20406536
+70481a50
+20600000
+68014810
+60014818
+70481a50
+20600000
+6801480e
+60014816
+20600000
+680944c2
+20405a88
+e8c08000
+6000841b
+20600000
+793f8025
+44e1c018
+680944c2
+20405a88
+18c08a01
+6800c805
+e0a08000
+68014800
+d8400fff
+98417e00
+68094802
+18520400
+184d0400
+9841fe00
+e0a18000
+6800c804
+e0a08000
+20600000
+793f8025
+44e24018
+78547c00
+58000000
+6002c800
+20406581
+204065b4
+2040659c
+202065a2
+6800c821
+c1810000
+6800c80a
+205a65ba
+70480a01
+78547c00
+6808c826
+204069e5
+24608000
+58000000
+204066d8
+c09866c6
+58000002
+204066d8
+c4038000
+58000003
+204066d8
+204065d3
+60014800
+58000004
+204066d8
+204065d3
+1fe67e00
+60014802
+68024800
+78347c00
+20600000
+6800c809
+207a0000
+6000c804
+70480900
+78347c00
+20600000
+da200000
+6808c822
+204069e5
+7920a200
+6808c823
+204069e5
+7920a201
+6808c824
+204069e5
+7920a202
+1a227e00
+6808c805
+6000c805
+9842fe00
+1fe67c00
+20628000
+78347c00
+20600000
+d840001a
+204069e5
+20608000
+58000000
+204066d8
+202065b4
+df200000
+58000002
+204066d8
+20000064
+1f20f201
+6808c826
+204069e5
+2020e5bb
+1f227e00
+6001046b
+20600000
+2040678e
+20758000
+58000000
+204066d8
+60008256
+c01865ce
+204066c6
+20002710
+202065c7
+58008006
+204066d7
+200003e8
+70482102
+20600000
+c4038000
+d840ff00
+9841fe00
+20600000
+2040561e
+247a0000
+680944c2
+20405866
+c4000000
+6800c6f8
+c4000000
+20406578
+24740000
+2040655e
+700b7d1b
+20405620
+20206566
+20740000
+6800c81d
+1fe0fe01
+6000c81d
+d8400001
+c303e5eb
+d840ffff
+600ac800
+78347c00
+20600000
+78547c00
+6800c820
+c1010000
+78347c00
+20600000
+1a627e00
+c00a6606
+c000e6a6
+c00ae617
+c0016617
+c002e616
+c008666a
+c009668a
+c0036614
+c0146521
+c014e524
+c0026611
+c009e611
+c005660f
+c0173f57
+1fe1040f
+1fe17ef0
+c0286634
+20600000
+680142a2
+793ffe00
+600142a2
+58000000
+60014814
+6800c829
+1fe0fe01
+6000c829
+202066a6
+204062e9
+20203f6a
+680147f4
+c2866697
+20203f10
+2040652b
+20600000
+20600000
+793f8025
+44e2c018
+20406621
+680142a0
+c283e630
+c2803f12
+c280e62a
+c281662d
+c281e62d
+20206697
+58000000
+60024806
+70481a00
+70480a00
+70427f00
+70448b00
+70482000
+70480b00
+20600000
+c282e62d
+c281e62d
+20206697
+680147f4
+c2866697
+20203f10
+20405b30
+680142a0
+c2803f12
+20203f10
+793f8025
+44e34018
+60088259
+68008259
+207a0000
+1fe0ffff
+60008259
+20406649
+2040664f
+20406656
+20406664
+6800c820
+2fe1fe02
+2040e648
+6800c820
+2fe1fe01
+2040e646
+20206637
+2040665d
+2020654c
+20600000
+6800c7f2
+207a0000
+1fe0ffff
+6000c7f2
+247a0000
+2020668a
+68014812
+207a0000
+1fe0ffff
+60014812
+247a0000
+204066a6
+20203f9a
+68014814
+207a0000
+1fe0ffff
+60014814
+247a0000
+20403f84
+20203f9a
+68014818
+207a0000
+1fe0ffff
+60014818
+247a0000
+70481a00
+20600000
+68014816
+207a0000
+1fe0ffff
+60014816
+247a0000
+202066b1
+793f8025
+44e3c018
+70481a00
+70480b01
+58000000
+60014814
+204066b1
+6800c132
+2feffe01
+2040e688
+6800c132
+2feffe00
+2040e684
+20403fa6
+20206697
+68034274
+203a3f79
+20203f6e
+68034274
+203a6682
+6801480c
+60014814
+20403fa4
+20203f82
+20403f94
+20203f88
+680147f4
+2feffe07
+2040bf75
+20600000
+20405b30
+20600000
+70427f01
+20403fa4
+20403fa2
+70482001
+58000000
+600147f0
+6000c7f2
+20403f9e
+2020655a
+6800c2a9
+c019e679
+c01a667c
+20206697
+793f8025
+44e44019
+6800c4f9
+1fe0fe01
+6000c4f9
+20403fa6
+680147fe
+60014812
+6800c132
+2feffe01
+2040bf88
+6800c132
+2feffe00
+2040bf7c
+20203f94
+793f8025
+44e4c019
+58000000
+60014812
+6800c132
+2feffe01
+2040bf86
+6800c132
+2feffe00
+2040bf7e
+20203f98
+793f8025
+44e54019
+58000000
+60014816
+680147f4
+c284bf90
+680147f4
+c2803f77
+20600000
+793f8025
+44e5c019
+d8400001
+da20481b
+da4000c6
+2020683e
+793f8025
+44e64019
+d8400001
+da20481b
+da4000c6
+2020681d
+793f8025
+44ff401f
+68108073
+d8400006
+9841fe00
+60108073
+68108077
+9841fe00
+60108077
+70808100
+68108077
+793ffe01
+793ffe02
+60108077
+2000001e
+70808101
+20600000
+202067a1
+202067a9
+243466dd
+68108085
+1fe1fe20
+60108085
+18427c00
+2022e6e0
+1a627a00
+2fcc0000
+20206763
+18000404
+da20022c
+68108085
+1fe17edf
+60108085
+204066dd
+da2055aa
+6801022c
+e8c90000
+9a267c00
+20600000
+d8400002
+da200232
+204066dd
+68010232
+60010225
+205466f4
+20600000
+d8400010
+da200234
+68108085
+1fe17edf
+60108085
+204066dd
+d8c00234
+df200010
+20407584
+2040753d
+2040759d
+20207534
+7856fc00
+204066e2
+24628000
+7836fc00
+70802380
+70802200
+70802400
+da208025
+204066d9
+70802300
+204066e2
+24628000
+18007e00
+60110288
+da20828a
+204066d9
+d8400006
+204066e3
+24628000
+e8c10000
+98002200
+204066dd
+20206710
+20407f36
+58001000
+60010225
+da606823
+df200002
+204066e2
+24628000
+68010225
+1ff0fe00
+9840fe00
+1ff0fe00
+60010225
+c200671c
+20206710
+70805025
+70828005
+20407f36
+78547c00
+2040688a
+58000000
+da200221
+d8400002
+204068d3
+68010221
+c303e738
+580007f0
+da200234
+d8400010
+204068d3
+70800608
+d8c00234
+20407590
+78347c00
+68010221
+1ff0fe00
+d84007ff
+98417e00
+2022e744
+2040688f
+da6068d8
+205466f4
+20406700
+68008220
+2fe00603
+2420e738
+2040688d
+68008221
+c282e751
+58000000
+60018224
+204067b9
+da6067db
+204066ed
+20406700
+2436e751
+68008220
+2fe00603
+2420e744
+68008221
+c283675d
+58000000
+60010225
+da606823
+20406805
+204066ed
+20406700
+2436e75d
+68008220
+2fe00603
+2420e751
+70805021
+68008221
+c4020000
+20404461
+204044a3
+20206761
+68008220
+1fe3fe00
+7920fe00
+2a2c000f
+20608000
+60008220
+20600000
+68108085
+c4028000
+20206770
+6810812c
+afefffff
+20608000
+68108108
+c300e76d
+20407534
+2020676d
+1f220400
+6009423c
+70802380
+70802200
+70802400
+6001423a
+98000a00
+1f2bf200
+68108025
+e0a08000
+c200677c
+70802300
+20600000
+6801423a
+207a0000
+70802380
+70802200
+70802400
+6809423c
+184bf200
+98000c00
+e8c08000
+60108025
+c2006789
+70802300
+20600000
+793f8025
+44ffc01f
+70808675
+7080870a
+58000223
+6011008a
+58000228
+6011008c
+68108081
+79207e00
+793ffe01
+60108081
+20600000
+68108086
+79207e07
+60108086
+793ffe07
+60108086
+20600000
+79207e07
+60010223
+79200025
+44804020
+70808802
+70808e00
+70800602
+202067b3
+18000401
+60008223
+79200025
+4480c020
+70808801
+6019008e
+70800602
+204067b3
+68008228
+20600000
+68014177
+1fe0fe01
+60014177
+6810812c
+c301e7b3
+20600000
+70808640
+70808700
+68108081
+793ffe00
+79207e01
+60108081
+58000000
+60020223
+20600000
+58000000
+6011008e
+58000001
+60108088
+58000223
+6011008a
+70022306
+70800602
+202067b3
+18408404
+60190088
+1a20a3fc
+d8400002
+e2288000
+1ff10400
+e0a88000
+1fec8400
+e0a88000
+e0a08000
+1a227e00
+6011008a
+58000000
+6011008e
+70800602
+202067b3
+6019008e
+58000004
+60110088
+70022303
+58000223
+6011008a
+1a227e00
+6011008c
+68108086
+2a2c000f
+7920fe06
+60108086
+70800602
+6810812c
+c283e7e8
+d8e00003
+2040676a
+204067b3
+2feffe02
+20406763
+68008224
+1ff02400
+68008225
+1fed7e00
+9a41a400
+68008226
+9a41fe00
+9840fe00
+60008226
+1fecfe00
+60008225
+1fecfe00
+60008224
+20600000
+7080420a
+70809102
+70809203
+70809303
+70809403
+70809503
+70809602
+20600000
+70809105
+70809207
+70809307
+70809407
+70809507
+70809605
+20600000
+6810812c
+c302e80c
+20600000
+60008224
+58000224
+6011009a
+58000001
+60110098
+6019009e
+1a227e00
+6011009c
+70809001
+70800604
+2020680c
+1ff0fe00
+60010225
+20600000
+79200025
+44814020
+6801429b
+9a40fe00
+1ff0fe00
+60010225
+79200025
+4481c020
+58000004
+60110098
+700224a0
+700227a1
+58000224
+6011009a
+6019009e
+1a227e00
+6011009c
+58000002
+2a2c000f
+7920fe00
+60108090
+70800604
+d8e00005
+2040676a
+2040680c
+2feffe04
+20406763
+68010225
+1ff0fe00
+9840fe00
+1ff0fe00
+60010225
+20600000
+79200025
+44824020
+6801429b
+9a40fe00
+60010161
+79200025
+4482c020
+600902a0
+1a227e00
+600102b7
+20406858
+680902b0
+680102b7
+1fe22200
+68010161
+20406870
+680102b0
+680902b7
+98408400
+600902b7
+68090161
+98408400
+60090161
+680102a0
+243a6848
+20600000
+79200025
+44834020
+680142aa
+1fe0ffff
+68090161
+9841fe00
+1fe0fe01
+600182b4
+680102a0
+9840fe00
+680982b4
+98467e00
+2421686b
+600102a0
+680182b4
+68090161
+98467e00
+600102b0
+20600000
+680102a0
+600102b0
+58000000
+600102a0
+20600000
+1fe22400
+79200025
+4483c020
+1a427e00
+18408403
+60190098
+1a20a3fd
+ea298000
+18422400
+d84000a0
+e2288000
+1ff0fe00
+e0a10000
+1a227e00
+6011009a
+58000000
+6011009e
+70809001
+70800604
+2040680c
+1a427e00
+e2218000
+20002710
+20002710
+20002710
+20600000
+70897370
+20000bb8
+20600000
+70897330
+20600000
+1fe9fe00
+60110045
+70804b00
+20600000
+2040688f
+204068c0
+ea288000
+1a20a201
+18000e00
+a84c0000
+2020e8b7
+68108046
+79207e06
+79207e07
+60108046
+70804702
+70804782
+793ffe07
+60108046
+7080478a
+2000000b
+708047ca
+20000021
+7080474a
+2000002c
+708047ca
+20000016
+7080478a
+20000021
+70804782
+20000001
+70804792
+2000000a
+708047b2
+68108007
+70804792
+20000001
+70804782
+afec0000
+2020e898
+68110045
+1fe0fe01
+60110045
+18e08e01
+28e01e08
+2420e898
+c2006895
+70804783
+20600000
+70804782
+2000000c
+70804780
+70804782
+20000096
+20600000
+204068c0
+708047a2
+1a227e00
+60110048
+7920040b
+2fec000f
+7920840f
+6019004a
+70800601
+20600000
+6810812c
+c300e8d0
+20600000
+2040688f
+204068c6
+204068d0
+70804783
+20600000
+68110124
+60110045
+204068c6
+d8e00001
+2040676a
+204068d0
+2feffe00
+20406763
+70804783
+20600000
+70427a01
+18000e0e
+6801427c
+20207e4c
+68110112
+207a0000
+6808c27b
+98467c00
+202168f2
+6800c27a
+203a68e2
+d8e0000e
+20407e53
+203a68f2
+58000000
+20600000
+18000e0e
+20407e4b
+70427a00
+68110112
+20600000
+6811005e
+98001400
+20600000
+19427e00
+6011005e
+20600000
+68110112
+207a0000
+98007200
+68110058
+98000600
+20600000
+68110058
+9840fe00
+1fe20600
+18627e00
+60110058
+20600000
+680142ac
+60110052
+20600000
+680303d0
+600301b4
+7001b334
+20206913
+68030040
+600301b4
+7001b333
+79200025
+44844021
+20406954
+20406950
+680081b3
+c01a691b
+c019e97c
+20600000
+2040697a
+20206963
+79200025
+4484c021
+20406929
+680081b2
+c17f8000
+680301b4
+60034274
+680081b3
+6000c2a9
+c019e92d
+c01a692f
+20600000
+2040694c
+680081b2
+c17f8000
+2020696b
+20406983
+202069a2
+20406981
+202069a8
+20406988
+78547c00
+2040698c
+2434427f
+680901ba
+184085ff
+58000000
+e0438000
+d840001c
+da200195
+da400000
+2020683e
+79200025
+44854021
+d8a0018e
+18007204
+20407e3b
+d840001c
+da20018e
+da400000
+2020683e
+79200025
+4485c021
+58000000
+60018040
+e0a18000
+20206954
+d8400001
+da2001b2
+da40001c
+2020681d
+d8400001
+da2001b2
+da40001c
+2020683e
+79200025
+44864021
+20406988
+78547c00
+2040698c
+20740000
+7001b200
+680301b4
+6003018f
+680081b3
+6000818e
+d840001c
+da20018e
+da400000
+2020683e
+d8400006
+da2044f9
+da40001d
+2020683e
+d8400006
+da2044f9
+da40001d
+2020681d
+79200025
+4486c021
+d8400007
+da2001b3
+da400000
+680081b2
+1feffe07
+9a40a400
+2020681d
+d8400010
+da400023
+680081b2
+1ff27e00
+9a40a400
+20600000
+da20447b
+2020697d
+da204262
+79200025
+44874021
+20406974
+2020683e
+da20447b
+20206984
+da204262
+79200025
+4487c021
+20406974
+2020681d
+d840001c
+da200195
+da400000
+2020681d
+79200025
+44884022
+58000195
+600101ba
+7001b200
+df200004
+1f227e00
+60008161
+680101ba
+1fe22200
+204069ac
+20740000
+680101ba
+1fe0fe07
+600101ba
+680081b2
+1fe0fe01
+600081b2
+68008161
+1fe27200
+c2006992
+20600000
+68044262
+680c426a
+9841fe00
+207a0000
+70425e01
+20600000
+68034274
+207a0000
+70448b01
+20600000
+da4001b3
+df200007
+20407f25
+2022e9b1
+20600000
+78347c00
+20600000
+20203bf1
+79200025
+4488c022
+79200407
+204069e5
+7d208407
+79200025
+44894022
+284c0007
+18410e1f
+680200a3
+f920fe00
+600200a3
+680200a7
+fd20fe00
+600200a7
+20600000
+79200025
+4489c022
+284c0007
+18410e1f
+680200a3
+f93ffe00
+600200a3
+680200a7
+f93ffe00
+600200a7
+20600000
+204069c4
+202069d2
+2455e9b9
+d8a0807c
+204069f4
+79400407
+d8a08078
+204069f4
+793f8407
+d8a08070
+202069f4
+79400407
+204069f3
+79200407
+d8a08070
+202069f4
+18410e07
+18497e00
+1fe17e03
+98a08a00
+e8a08000
+20600000
+d8a0811c
+204069df
+284ffe07
+2020e9eb
+afec0000
+20600000
+afefffff
+20600000
+2fcffe07
+202069f0
+2fcc0007
+58000000
+7d20fe07
+98428400
+d8a08074
+204069df
+284ffe07
+f920fe00
+e0a08000
+20600000
+6800c16e
+c13f8000
+70807700
+2000001e
+70807708
+20600000
+1fed7e00
+1ff27e00
+601100a2
+601100a0
+20600000
+58000000
+601100a2
+58000001
+601100a0
+20600000
+58000000
+601100a2
+601100a0
+20600000
+d8a08800
+df200020
+20407e3b
+580004f9
+60110848
+6011084a
+6011084c
+6011086c
+6011088c
+601108ac
+58000204
+601108ae
+58000506
+601108b0
+58000504
+601108b2
+58000200
+601108b4
+5800fefb
+601108b6
+5800faf9
+601108b8
+5800fafb
+601108ba
+5800fd00
+601108bc
+58000408
+601108be
+58000a0c
+601108c0
+58000b09
+601108c2
+58000500
+601108c4
+5800f8f1
+601108c6
+5800ece8
+601108c8
+5800e9eb
+601108ca
+5800f500
+601108cc
+58001223
+601108ce
+5800374b
+601108d0
+58005e71
+601108d2
+5800787f
+601108d4
+20600000
+79200025
+448a4022
+68110050
+793ffe0e
+60110050
+7080b011
+7080b101
+7080b201
+7080b311
+20600000
+79200025
+448ac022
+68110050
+79207e0e
+60110050
+7080b004
+7080b304
+7080b100
+7080b200
+20600000
+68008030
+c4010000
+d8a000b5
+df20001e
+68108134
+e0a08000
+c2006a58
+20600000
+68008030
+c4010000
+d8c000d3
+1800721e
+e8c08000
+60108009
+c2006a60
+20600000
+20600000
+20406a87
+d8400006
+202069da
+20406a65
+d8400006
+202069ed
+20406a65
+d8400006
+202069ef
+20406a87
+d8400007
+202069da
+20406a6e
+d8400007
+202069ed
+20406a6e
+d8400007
+202069ef
+20406a87
+68108078
+79207e06
+60108078
+d8400006
+202069d1
+20406a87
+68108078
+79207e07
+60108078
+d8400007
+202069d1
+68108081
+1fe1fe04
+60108081
+20600000
+68108081
+1fe17efb
+60108081
+20600000
+68108081
+2feffe02
+20600000
+58006a91
+60014296
+20600000
+20406b14
+68008481
+c000ea96
+c0016a9c
+20203bf1
+d8400017
+600944c2
+20405a88
+e8c08000
+20406a9e
+20205b42
+20406a9e
+20205b51
+18c22200
+79200025
+4498c026
+e8c08000
+c0006ab7
+c000eabc
+c0016abd
+c001eabe
+c0026b50
+c002eaff
+c0036b51
+c003eb52
+c0046abf
+c004eac0
+c0056ac1
+c005eac2
+c0066ac3
+c006ead5
+c0076ae3
+c007eaf0
+c0086af1
+c008eaf8
+c0096b19
+c009eb45
+20600000
+1a220c00
+e8c08000
+1fed7e00
+6001846d
+20600000
+20600000
+20600000
+20600000
+20600000
+20600000
+20600000
+20600000
+e8c20000
+60108082
+1fecfe00
+68188081
+1841047f
+98418400
+60188081
+1fecfe00
+68188051
+184104df
+98418400
+60188051
+1fecfe00
+68188042
+1841043f
+98418400
+60188042
+20206ab7
+e8c48000
+68188085
+1841043f
+98418400
+60188085
+1fecfe00
+601100a0
+1ff17e00
+601100a2
+1ff17e00
+601100a4
+1ff17e00
+601100a6
+20206ab7
+e8c20000
+60120070
+e8c20000
+60120078
+e8c20000
+6012007c
+e8c08000
+60108080
+e8c08000
+60108081
+e8c08000
+60108082
+20206ab7
+20206af1
+70046d10
+d8a0046e
+68120074
+e0a20000
+6812011c
+e0a20000
+20600000
+e8c88000
+e8c08000
+1fe9fe00
+1ff27e00
+98418400
+204069f3
+20206ab7
+e8c88000
+60188301
+e8c08000
+2fe1fe01
+e8c08000
+60108307
+2020eb08
+e8c08000
+60108307
+e8c08000
+1fe27200
+1fe0ffff
+1fe1fe90
+60108302
+70830302
+20000001
+d8a0046d
+68108307
+e0a08000
+c2006b10
+20600000
+58000000
+6002046d
+e0a40000
+e0a40000
+20600000
+1a227e00
+1fe0fe01
+60010483
+68014749
+c0006b28
+68014749
+68090483
+e8490000
+9840fe00
+68090483
+18408402
+18420c00
+e8c88000
+18c22200
+20206842
+58000002
+1ff0fe00
+60010225
+da606823
+df200002
+204066e2
+2422eb36
+68010225
+1ff0fe00
+9840fe00
+60014749
+1ff0fe00
+60010225
+c2006b2d
+68014749
+1ff0fe00
+60010225
+da606823
+df20ffff
+204066e2
+2422eb1e
+68010225
+1ff0fe00
+9840fe00
+1fe0fe02
+60014749
+1ff0fe00
+60010225
+c2006b3b
+68014749
+1fe0fe02
+1ff0fe00
+60014749
+da204749
+d8400002
+dfe00000
+20406842
+58000000
+60014749
+20600000
+20600000
+20600000
+20600000
+20758000
+70475500
+70048503
+70048603
+70048a11
+70048b13
+58000000
+60018487
+6000c2bd
+7047f300
+79200025
+44dfc037
+58000000
+6000c2bd
+6000c752
+6000c74b
+70475750
+20600000
+18418402
+20600000
+18427e00
+1fedfe00
+6000c750
+18007e3f
+1fedfe00
+6000c74f
+18007e01
+1fedfe00
+6000c74e
+20406b9d
+18427e00
+20600000
+1fedfe00
+6000c750
+18007e73
+1fedfe00
+6000c74f
+18007e01
+1fedfe00
+6000c74e
+20206b9d
+6800c751
+203a6b80
+58000070
+20600000
+580000aa
+20600000
+1fedfe00
+6000c750
+18007eef
+20406b91
+6809048f
+18420a00
+e0a08000
+18a20400
+6009048f
+18007eff
+20406b91
+6809048f
+18420a00
+e0a08000
+20600000
+1fedfe00
+6000c74f
+6801474f
+1fed7e00
+6001848c
+da200107
+da40000f
+20406baa
+1fe2fed7
+1fe47e00
+1fedfe00
+20600000
+6801c74e
+6001848c
+da200107
+da40000f
+20406baa
+1fed7e00
+da400007
+20406baa
+1fe2fe2b
+1fe47e00
+1fedfe00
+1fe20400
+20600000
+da600000
+1a427200
+20407dfb
+1fe20400
+18427e00
+1a63a600
+c3046bb3
+9a228400
+1a60a601
+18438400
+6801848c
+1a40a5ff
+2a41feff
+2020ebbd
+1a427200
+20407dfb
+2feffe00
+79208400
+20206bae
+18437e00
+20600000
+6808c74b
+184b8400
+79200400
+6800c751
+245a6b65
+600884a5
+20600000
+184b8400
+79200400
+6800c751
+205a6b65
+20600000
+18438400
+6800c751
+793a0400
+20600000
+68088494
+700496d7
+20406cf6
+6800c2ba
+79207e06
+79207e07
+6000c2ba
+70475100
+20206cd7
+6800c2ba
+79207e07
+6000c2ba
+20206cd7
+79200025
+44e04038
+6800c7f3
+c0006be1
+20206c8b
+680102cb
+1fe20c00
+20406c0f
+68008494
+c0006be7
+20206c57
+79200025
+44e0c038
+68008495
+c01febcf
+c039ebd8
+c077ebef
+c1298000
+20203bf1
+68010499
+1fe20c00
+20406c1a
+6800849b
+c020ebf8
+c0206c04
+c038ec3f
+c0386c4e
+20206cd7
+20406c06
+6800c74b
+1fe37e00
+1fe67c01
+2022ebfe
+20203bf1
+6800c2bd
+79207e00
+79207e01
+6000c2bd
+20406d22
+20206cd7
+20406c06
+20206cd7
+20406c22
+20206c30
+20406c22
+e8c08000
+1fe97e00
+6000c758
+e8c08000
+600084a0
+20600000
+e8c08000
+60008493
+1fe97e00
+60008494
+e8c08000
+60008495
+20406c27
+60090497
+18c27e00
+60010499
+20600000
+e8c08000
+1fe37e00
+6000849b
+20406c27
+6009049c
+18c27e00
+6001049e
+20600000
+6801049e
+1fe20c00
+20600000
+6801049e
+1fe20c00
+e8c08000
+1fe20400
+18430400
+c3800000
+e8c08000
+1fe9fe00
+1ff27e00
+98408400
+20600000
+e8c08000
+6000c74b
+e8c08000
+600084a1
+e8c08000
+600084a2
+e8c08000
+600084a3
+e8c10000
+6001474c
+e8c08000
+600084a4
+e8c08000
+6000c756
+20600000
+20406c08
+6800c758
+1fe67c01
+2022ec44
+20203bf1
+6800c2bd
+79207e05
+79207e06
+6000c2bd
+6808c74b
+184b8400
+18418403
+20406d55
+70475503
+20206cd7
+20406c08
+6800c758
+1fe67c01
+2022ec53
+20203bf1
+6800c2bd
+79207e07
+6000c2bd
+20206cd7
+68008494
+1fe67c01
+2022ec5b
+20203bf1
+68008495
+c039ec62
+c01fec66
+c077ec80
+c07fec78
+c029ec85
+20203bf1
+6800c2bd
+79207e03
+6000c2bd
+20206cd7
+6800c2bd
+79207e03
+79207e02
+6000c2bd
+68008493
+20406b73
+60008496
+20406cf6
+68008493
+1feb7e00
+6000c74b
+1febfe00
+793ffe01
+79207e00
+d8404753
+6009048f
+20406b82
+20206cd7
+68010499
+1fe20c00
+1fe0fe01
+60010499
+e8c08000
+6808c756
+9840fe00
+6000c756
+20406d88
+20406bbf
+20406d6d
+20406d8e
+20206cd7
+20406b5d
+68008493
+20406b73
+60008496
+20406cf6
+20206cd7
+680102cb
+1fe20c00
+20406c0f
+68008494
+c0006c91
+20206cc6
+79200025
+44e14038
+68008495
+c01febcf
+c039ebd8
+c077ec98
+20206cd7
+68010499
+1fe20c00
+20406c1a
+6800849b
+c020eca1
+c0206ca1
+c038ecac
+c0386cbc
+20206cd7
+20406c06
+6800c74b
+1fe37e00
+6808c752
+98467c00
+2022eca8
+20203bf1
+6800c2bd
+79207e01
+6000c2bd
+20206cd7
+20406c08
+6800c758
+6808c752
+98467c00
+2022ecb3
+20203bf1
+20206cd7
+6800c2bd
+79207e05
+79207e06
+6000c2bd
+6808c74b
+184b8400
+18418403
+20406d55
+20206cd7
+20406c08
+6800c758
+6808c752
+98467c00
+2022ecc2
+20203bf1
+6800c2bd
+79207e07
+6000c2bd
+20206cd7
+68008494
+6808c752
+98467c00
+2022eccc
+20203bf1
+20206cd7
+68008495
+c039ecd1
+c077ec80
+c07fec78
+c029ecd6
+6800c2bd
+79207e03
+6000c2bd
+20206cd7
+20206cd5
+20206c85
+20600000
+6800c755
+207a0000
+c001ecdc
+20203bf1
+70475500
+204052e0
+d8400001
+18498400
+18418403
+da2000aa
+20406d3f
+204052ef
+18a20c00
+e8c10000
+203a3bf1
+20600000
+79200025
+44e1c038
+204052ef
+58000004
+e0a10000
+680142b3
+e0a10000
+68008493
+e0a08000
+5800013f
+e0a10000
+68008496
+e0a08000
+20600000
+79200025
+44e24038
+204052e0
+204052ef
+58000004
+e0a10000
+680142b3
+e0a10000
+68008493
+e0a08000
+58000173
+e0a10000
+68008496
+e0a08000
+20600000
+79200025
+44e2c038
+204052ef
+5800000e
+e0a10000
+680142b3
+e0a10000
+6800c751
+1fe3fe00
+79207e00
+e0a08000
+580015ef
+e0a10000
+58001183
+e0a10000
+18427e00
+e0a08000
+580000f0
+e0a18000
+5800007f
+e0a10000
+58000000
+e0a08000
+58000001
+e0a08000
+20406b7c
+e0a08000
+70475710
+20600000
+79200025
+44e34038
+204052e0
+204052ef
+5800000e
+e0a10000
+680142b3
+e0a10000
+6800c751
+1fe3fe00
+79207e00
+e0a08000
+580015ef
+e0a10000
+58001181
+e0a10000
+6800c74b
+e0a08000
+580000e0
+e0a18000
+5800007f
+e0a10000
+58000000
+e0a08000
+58000007
+e0a08000
+20406b7c
+e0a08000
+20600000
+79200025
+44e3c038
+204052ef
+58000008
+e0a10000
+680142b3
+e0a10000
+6800c751
+1fe3fe00
+79207e00
+e0a08000
+580009ef
+e0a10000
+580005e3
+e0a10000
+18427e00
+e0a08000
+5800008d
+e0a08000
+20406b7c
+e0a08000
+20600000
+79200025
+44e44039
+204052e0
+204052ef
+58000008
+e0a10000
+680142b3
+e0a10000
+18421600
+6800c751
+1fe3fe00
+79207e00
+e0a08000
+580009ef
+e0a10000
+580005e1
+e0a10000
+19627e00
+e0a08000
+5800008d
+e0a08000
+20406b7c
+e0a08000
+20600000
+79200025
+44e4c039
+6800c757
+207a0000
+68110112
+247a0000
+1a227e00
+60008162
+60088161
+2040527a
+247a0000
+204052e0
+204052ef
+58000005
+e0a10000
+680142b3
+e0a10000
+680084a5
+e0a08000
+580001ff
+e0a10000
+6800c757
+e0a08000
+6800c754
+e0a08000
+70475700
+20600000
+68010497
+207a0000
+6800c757
+1fe0fe01
+6000c757
+20600000
+79200025
+44e54039
+68010497
+1fe27200
+204068f7
+68010499
+1fe20c00
+20404976
+202068fa
+79200025
+44e5c039
+6800c756
+207a0000
+1fe0ffff
+6000c756
+6801474c
+6809480e
+98467c00
+20216da2
+6001480e
+6800c757
+203a6daa
+7004a801
+6800c754
+600084a7
+580000ff
+600084a6
+20206daf
+7004a800
+6800c753
+600084a7
+580000ef
+600084a6
+79200025
+44e64039
+6800c80e
+1fe67c7f
+20216db7
+680084a8
+1fe0fe01
+600084a8
+20406bbf
+6801480e
+1fe0fe08
+680884a8
+9840a200
+20405248
+600102de
+1fe0fe04
+600102e0
+1fe20a00
+680084a5
+e0a08000
+680084a6
+e0a08000
+20406dd8
+20406de8
+20407f6b
+6800c80e
+1fe27200
+2040497c
+680084a7
+e0a08000
+680102de
+1fe20a00
+6801480e
+680884a8
+9840fe00
+1fe0fe04
+e0a10000
+680142b3
+e0a10000
+70475700
+2020428c
+6801480e
+1fe67c7f
+24216ddf
+1fe3fe00
+79207e00
+e0a08000
+20600000
+6801480e
+1fe97e00
+1ff18400
+1fe17e7f
+1fe3fe00
+793ffe00
+e0a08000
+e0a88000
+20600000
+6800c757
+207a0000
+e0a08000
+20600000
+79200025
+44cec033
+20407c45
+20403e73
+20406235
+79200025
+44cf4033
+20407813
+204077ee
+204077fe
+79200025
+44cfc033
+6800c132
+c1008000
+2040527a
+247a0000
+20404dcd
+2040527a
+247a0000
+79200025
+44d04034
+20406e47
+20404f6e
+20406cd8
+20406e0a
+79200025
+44d0c034
+2040527a
+247a0000
+20203e6f
+79200025
+44d14034
+680082e6
+c280508f
+c283d099
+20600000
+79200025
+44d1c034
+2040527e
+207a0000
+6800804b
+c3830000
+20405261
+60010179
+1fe20c00
+e8c10000
+1fe0fe04
+60010091
+70009006
+79200025
+44d24034
+680142af
+203a6e2d
+6800804b
+c4038000
+793ffe07
+6000804b
+70009005
+680942af
+68010179
+9840fe00
+60010179
+68010091
+98467e00
+60010091
+79200025
+44d2c034
+68010091
+203a3bf1
+d8400104
+98467e00
+24216e3b
+79200025
+44d34034
+60090091
+680142af
+9840fe00
+600142af
+20206e3d
+58000000
+600142af
+6800804b
+79207e06
+6000804b
+20600000
+6800c7f6
+c2806e45
+7002ee01
+20600000
+7002ee0f
+20600000
+6800c7f3
+243a6e4d
+680082ed
+207a0000
+7002ed00
+20600000
+79200025
+44d3c034
+680082ee
+207a0000
+c000ee6e
+c0016ec7
+c001ee74
+c0026ecb
+c01dee7e
+c01e6ece
+c006ee83
+c0076ed3
+c007ee86
+c0086ed9
+c008ee8c
+c0096edd
+c009ee92
+c00a6ee1
+c00aee98
+c00b6ee5
+c00bee9e
+c00c6eea
+c00ceea4
+c00d6eee
+c00deeaa
+c00e6ef2
+c00eeeb0
+c00f6ef7
+c00feeb6
+c0106efb
+c010eec1
+c0116eff
+20600000
+20406f0a
+7002ee02
+6800c2b9
+79207e00
+6000c2b9
+20600000
+7002ee04
+6800c2b9
+c3810000
+7002ee03
+20406f12
+7002ee04
+6800c2b9
+79207e02
+6000c2b9
+20600000
+2040527e
+247a0000
+20406f23
+7002ee3c
+20600000
+20406f18
+7002ee0e
+20600000
+20406f36
+7002ee10
+6800c2bb
+79207e00
+6000c2bb
+20600000
+20406f3e
+7002ee12
+6800c2bb
+79207e02
+6000c2bb
+20600000
+20406f44
+7002ee14
+6800c2bc
+79207e00
+6000c2bc
+20600000
+20406f4c
+7002ee16
+6800c2bc
+79207e02
+6000c2bc
+20600000
+20406f28
+7002ee18
+6800c2ba
+79207e00
+6000c2ba
+20600000
+20406f30
+7002ee1a
+6800c2ba
+79207e02
+6000c2ba
+20600000
+20406f52
+7002ee1c
+6800c2ba
+79207e06
+6000c2ba
+20600000
+20406f5a
+6800c2bd
+79207e00
+6000c2bd
+7002ee1e
+20600000
+20406f61
+6800c2bd
+79207e02
+6000c2bd
+7002ee20
+6800c752
+1fe9fe00
+1fe1fe03
+d8404753
+6009048f
+20206b82
+20406f6c
+6800c2bd
+79207e04
+6000c2bd
+7002ee22
+20600000
+6800c2b9
+c4008000
+7002ee03
+20206e4d
+6800c2b9
+c19f8000
+7002ee3b
+680082ec
+c18b8000
+7002ec00
+7002ee0d
+20206e4d
+6800c2b9
+247a0000
+6800c7f6
+c2806f02
+c2836f04
+20206f08
+6800c2bb
+c4008000
+7002ee11
+20206e4d
+6800c2bb
+c19f8000
+7002ee13
+20206e4d
+6800c2bc
+c4008000
+7002ee15
+20206e4d
+6800c2bc
+c19f8000
+6800c7f6
+c2836f04
+20206f08
+6800c2ba
+c4008000
+7002ee19
+20206e4d
+6800c2ba
+c19f8000
+7002ee1b
+20206e4d
+6800c2ba
+c1ff8000
+6800c7f6
+c2836f06
+20206f08
+6800c2bd
+c4008000
+7002ee1f
+20206e4d
+6800c2bd
+c4018000
+7002ee21
+20206e4d
+6800c2bd
+c1ff8000
+20206f08
+7002ee0f
+20206e4d
+7002ee17
+20206e4d
+7002ee1d
+20206e4d
+7002ee00
+20600000
+79200025
+44d44035
+204052c4
+58000001
+1fe20400
+58000050
+1fe21600
+202050b0
+79200025
+44d4c035
+204052c4
+680142b1
+1fe20400
+202050c0
+79200025
+44d54035
+204052c4
+680142b1
+1fe20400
+d9600050
+204050d6
+6800c2b9
+793ffe05
+6000c2b9
+20600000
+79200025
+44d5c035
+204052d2
+204071b0
+202050f2
+79200025
+44d64035
+204052c4
+58000003
+1fe20400
+58000051
+1fe21600
+202050b0
+79200025
+44d6c035
+204052c4
+680142b3
+1fe20400
+202050c0
+79200025
+44d74035
+204052c4
+58000011
+1fe20400
+58000052
+1fe21600
+202050b0
+79200025
+44d7c035
+204052c4
+680142b5
+1fe20400
+202050c0
+79200025
+44d84036
+204052c4
+58000013
+1fe20400
+58000053
+1fe21600
+202050b0
+79200025
+44d8c036
+204052c4
+680142b7
+1fe20400
+202050c0
+79200025
+44d94036
+204052e0
+70049303
+7004961c
+20406ce8
+70475101
+20600000
+79200025
+44d9c036
+204052e0
+6808c752
+20406bcb
+6008c74b
+20206d05
+79200025
+44da4036
+204052e0
+6808c74b
+20406bc0
+20406b67
+60008496
+6808c74b
+20406bc0
+60088493
+20206ce8
+79200025
+44dac036
+204052e0
+6808c74b
+20406bc0
+20206d3f
+79200025
+44f3c03c
+680102cb
+98000c00
+e8c08000
+1fe22400
+600084af
+e8c10000
+600104b0
+e8c08000
+1fed1600
+e8c08000
+99609600
+79200025
+44f4403d
+1a427e00
+c0016f87
+c0026fb0
+c003708b
+c003f1c7
+2020723e
+2040724d
+2841fe01
+2020f2bb
+2841feff
+2020f241
+e8c10000
+600104b4
+196097fe
+196097ff
+2422f23b
+d96004a9
+e9610000
+207a0000
+19609602
+20407307
+204052de
+18007e03
+e0a08000
+680104b0
+e0a10000
+18ebfe00
+1fe0fe05
+1fe0a605
+1ff0fe00
+e0a10000
+18e27e00
+1ff0fe00
+e0a10000
+e0a10000
+d8c004c5
+18e27200
+2022efaa
+e8c20000
+e0a20000
+c2006fa7
+18007e00
+e0a08000
+1a627e00
+600082dc
+203a3bf1
+20600000
+e8c20000
+600204be
+196097fc
+98000400
+e8c10000
+1ff0fe00
+1fe0ffee
+600104b2
+196097fe
+204072a4
+2022f241
+2a21fe05
+2020efc0
+d8a00491
+18000e00
+20206fd0
+e8c08000
+c0857241
+e8c10000
+243a6fce
+e8c08000
+c0ffefcc
+e8c08000
+c0ffefca
+18c08dfb
+20207022
+18c08dfb
+20206fbd
+18c08dfc
+20206fbd
+18c08dfd
+20206fbd
+e8c08000
+c004efe5
+c0056fd3
+e8c10000
+e0a10000
+18e08e01
+1ff0a400
+e8c10000
+1ff0fe00
+1a40a401
+9a467c00
+24216fe2
+1fe22600
+1a50fe00
+e0a10000
+18e08e01
+1a627e00
+20206fd9
+196097fb
+1a20a3fb
+20206fea
+e8c10000
+e0a10000
+18e08e01
+196097fd
+1a20a3fd
+24217241
+2422efd0
+196097ff
+2422f241
+204052de
+18a08a0a
+da200491
+18e27e00
+203a7004
+ea210000
+203a7004
+98002400
+680204be
+98000400
+2040734e
+203a7001
+18c08dfd
+e8c18000
+e0a18000
+20407199
+203a7001
+98007200
+20407e45
+1a20a202
+18e08fff
+20206ff1
+18007e00
+e0a08000
+18a08bff
+680902da
+1840fe0a
+98a67e00
+1fe62200
+1a30fe00
+1840a408
+e2410000
+1a20a203
+1a30fe00
+1840a405
+e2410000
+1a20a203
+1a30fe00
+1840a403
+e2410000
+1a20a205
+1a227e00
+600102dc
+58000036
+1840a407
+e2408000
+58000005
+e0408000
+680104b0
+1840a401
+e2410000
+20600000
+e8c08000
+c0857241
+e8c10000
+243a7241
+e8c08000
+c0fff241
+e8c08000
+c0fff241
+196097fb
+e8c08000
+c000702f
+c000f032
+c0017036
+600104ad
+196097ff
+2020703a
+e8c08000
+600104ad
+196097fe
+2020703a
+e8c10000
+1ff0fe00
+600104ad
+196097fd
+2422f23b
+2040731e
+2422f238
+18c22200
+204052de
+1a220c00
+18a08a03
+18c21600
+204072e8
+1fe22200
+680104ad
+1fe22400
+1a227e00
+9a462400
+680104b2
+9a467c00
+24217066
+78547c00
+680104ad
+203a7059
+99608c00
+1a40a403
+1a427200
+1f227e00
+1fe0fe03
+1ff0fe00
+e0a10000
+1f227e00
+1ff0fe00
+e0a10000
+20207074
+1a20f206
+2034705d
+1f30fe00
+20207060
+1f227e00
+1fe0fe02
+1ff0fe00
+e0a10000
+1f20f3fd
+1f30fe00
+e0a10000
+19620c00
+20207074
+78347c00
+680104b2
+1fe22200
+1fe27200
+680104ad
+203a7059
+99608c00
+1a227e00
+1fe0fe05
+1ff0fe00
+e0a10000
+1a227e00
+1ff0fe00
+e0a10000
+e8c08000
+e0a08000
+c2007074
+2434707f
+18007e02
+e0a08000
+18c27e00
+99667e00
+1ff0fe00
+e0a10000
+20207081
+18007e00
+e0a08000
+680102da
+98a67e00
+1fe67e00
+600102dc
+204052de
+58000005
+e0a08000
+680104b0
+e0a10000
+20600000
+2040724d
+2841feff
+2020f0b4
+e8c10000
+600104b2
+196097fe
+204072a4
+d8a00491
+18000e00
+e8c18000
+c084f0b4
+1fecfe00
+e0a10000
+18e08e01
+196097fd
+1a20a3fd
+24217241
+2422f094
+196097ff
+2422f241
+204052de
+18a08a0d
+680104a9
+98002600
+da200491
+ea220000
+203a70c4
+ea210000
+98002400
+2040732a
+203a70b2
+18c08dfd
+e8c18000
+e0a18000
+20407199
+98007200
+e8c08000
+e0a08000
+c20070af
+1a20a202
+202070a4
+e8c08000
+e8c08000
+196097fb
+1a20a3fb
+24217241
+d96004a9
+e9610000
+19609602
+20407307
+18e27e00
+600084dd
+203a72be
+d8e00000
+204052de
+18a08a0a
+20207108
+18007e00
+e0a08000
+18a08bff
+680902da
+1840fe0d
+98a67e00
+2022f0e8
+1fe67e00
+1840a40c
+e2408000
+1fe0fe03
+1840a409
+e2408000
+1fe0fe03
+1ff0fe00
+1840a405
+e2410000
+1fecfe00
+1fe0fe03
+1ff0fe00
+1840a403
+e2410000
+1fecfe00
+1fe0fe05
+600082dc
+680104b0
+1840a401
+e2410000
+58000007
+e0408000
+58000036
+1840a407
+e2410000
+1840a40a
+e2410000
+20600000
+7002dc0a
+204052de
+58000007
+e0a08000
+680104b0
+e0a10000
+58000500
+e0a10000
+58000200
+e0a10000
+58000035
+e0a18000
+20600000
+e8c08000
+e0a08000
+1a40a401
+1a20a3ff
+2022f0fb
+c20070f5
+18a21600
+1a427e00
+600104ad
+1a227e00
+600104b2
+203a7117
+20347152
+19620a00
+18e08e01
+680084dd
+98e67c00
+2422f108
+20207171
+d8c004c5
+18ebfe00
+98c08c00
+e8c20000
+98000400
+2040731e
+18c21600
+204072e8
+1fe0f203
+680104b2
+1fe22200
+680104ad
+1fe22400
+19620c00
+202070f5
+d8e00000
+da400000
+d8c004c5
+18ebfe00
+98c08c00
+e8c20000
+98000400
+2040731e
+204072e8
+1fe0fe03
+9a40a400
+18e08e01
+680084dd
+98e67c00
+2422f119
+19620a00
+18007e02
+e0a08000
+680104ad
+1ff0fe00
+e0a10000
+18a08bfd
+680902da
+1840fe0a
+98a67e00
+1fe67e00
+98002200
+1a427e00
+1840a409
+e2408000
+1fecfe00
+1840a408
+e2408000
+1a20a203
+1a227e00
+1840a406
+e2408000
+1fecfe00
+1840a405
+e2408000
+1a20a205
+1a227e00
+1840a404
+e2408000
+1fecfe00
+1840a403
+e2408000
+1a20a205
+1a227e00
+600102dc
+58000007
+e0408000
+58000036
+1840a407
+e2408000
+1840a401
+680104b0
+e2410000
+20600000
+19620a00
+18007e00
+e0a08000
+18a08bff
+680902da
+1840fe07
+98a67e00
+1fe67e00
+98002200
+1a227e00
+1840a406
+e2408000
+1fecfe00
+1840a405
+e2408000
+1a20a203
+1a227e00
+1840a404
+e2408000
+1fecfe00
+1840a403
+e2408000
+1a20a205
+1a227e00
+600102dc
+58000007
+e0408000
+680104b0
+1840a401
+e2410000
+20600000
+18007e00
+e0a08000
+18a08bff
+680902da
+1840fe0a
+98a67e00
+1fe67e00
+98002200
+1a227e00
+1840a409
+e2408000
+1fecfe00
+1840a408
+e2408000
+1a20a203
+1a227e00
+1840a406
+e2408000
+1fecfe00
+1840a405
+e2408000
+1a20a203
+1a227e00
+1840a404
+e2408000
+1fecfe00
+1840a403
+e2408000
+1a20a205
+1a227e00
+600102dc
+58000036
+1840a407
+e2408000
+58000007
+e0408000
+680104b0
+1840a401
+e2410000
+20600000
+18c21600
+e8c08000
+1fe17207
+1fe97e00
+c00371a2
+c000f2e0
+c00272e5
+c002f2e3
+202072de
+204071a4
+202072de
+1f227e00
+c002f1a9
+c00371ac
+18007203
+202072ef
+e8c08000
+1fe0fe02
+20600000
+e8c10000
+1ff0fe00
+1fe0fe03
+20600000
+204052de
+1fe20a00
+58000006
+e0a08000
+5800006e
+e0a10000
+58000f00
+e0a10000
+581a0535
+e0a18000
+58000111
+1ff07e00
+e0a20000
+58002600
+e0a10000
+58000335
+e0a10000
+58000009
+e0a10000
+58000004
+e0a10000
+7002dc14
+20600000
+18c20400
+680104b0
+c03771cb
+202071d4
+18420c00
+196097fd
+19627e00
+c00171d4
+204071d5
+20740000
+6000c752
+7002ec17
+20600000
+20600000
+78347c00
+1fe27200
+d8400400
+e8c10000
+98467c00
+2022f1de
+18c08dff
+c20071d8
+20600000
+d8400300
+e8c10000
+98467c00
+2022f1e5
+18c08dff
+c20071df
+20600000
+e8c08000
+e8c08000
+78547c00
+20600000
+204072a4
+2022f236
+18002400
+e8c08000
+1a20a3ff
+196097ff
+2fe1f018
+2420f230
+2fe00e04
+2420f1f8
+18002401
+18c08c02
+1a20a3fe
+196097fe
+202071fd
+2fe00e02
+2420f1fb
+202071f4
+2fe00e01
+2420f230
+e8c08000
+1a20a3ff
+196097ff
+c080f207
+e8c08000
+1a20a3ff
+196097ff
+c0807230
+7004c3ff
+20207230
+c0807230
+e8c08000
+1a20a3ff
+196097ff
+c081f230
+1a427c00
+2022f210
+18c08df4
+196097f4
+18007eff
+600084c4
+e8c08000
+1a20a3ff
+196097ff
+2fe1f008
+2420f230
+2fe00e00
+2020f22d
+2fe00e01
+2020f22a
+2fe00e02
+2020f227
+2fe00e03
+2020f224
+2fe00e04
+2420f230
+18c08c08
+1a20a3f8
+196097f8
+18c08c04
+1a20a3fc
+196097fc
+18c08c02
+1a20a3fe
+196097fe
+18c08c01
+1a20a3ff
+196097ff
+e8c08000
+1a20a3ff
+196097ff
+196097ff
+1a20a3ff
+20217230
+19609601
+18007e01
+20600000
+18007e00
+20600000
+58000200
+600104b6
+20207243
+58000400
+600104b6
+20207243
+58000600
+600104b6
+20207243
+58000300
+600104b6
+204052de
+e0a08000
+680104b0
+e0a10000
+58000200
+e0a10000
+680104b6
+e0a10000
+7002dc07
+20600000
+18000400
+d8a004a9
+204072a4
+2022f2a2
+e8c08000
+1a20a3ff
+196097ff
+2fe1f018
+2420f2a2
+2fe00e04
+2420f26e
+18000401
+e8c08000
+1a20a3ff
+196097ff
+c0807262
+e8c08000
+1a20a3ff
+196097ff
+c0007273
+20207265
+18c08c01
+1a20a3ff
+196097ff
+18c08c02
+1a20a3fe
+196097fe
+2841fe00
+2020f29d
+18c08c0c
+1a20a3f4
+196097f4
+2020729d
+2fe00e02
+2420f271
+20207259
+2fe00e01
+2420f2a2
+e8c10000
+1a20a3fe
+196097fe
+e0a10000
+2841fe00
+2020f29d
+18c20400
+e8c08000
+c0807292
+e8c08000
+c0807292
+e8c08000
+c0887292
+e8c08000
+c0807292
+e8c08000
+c0c07292
+e8c08000
+c0807292
+e8c08000
+c0807292
+e8c08000
+c0c07292
+e8c08000
+c0aff292
+e8c08000
+c0cdf292
+e8c08000
+c09a7292
+e8c08000
+c07df29b
+18420c00
+18c08c0c
+18000e00
+18000400
+2020729b
+e8c08000
+1a20a3ff
+196097ff
+20207277
+196097f4
+1a20a3f4
+2a21fe00
+2420f251
+18007e00
+e0a10000
+20600000
+d84000ff
+20600000
+e8c08000
+196097ff
+2fe1f030
+2420f2b9
+2fe00e07
+2020f2b2
+2fe00e06
+2020f2b4
+2fe00e05
+2420f2b9
+e8c08000
+1fe22200
+196097ff
+202072b7
+18c08c02
+196097fe
+e8c10000
+1ff0a200
+196097fe
+18007e01
+20600000
+18007e00
+20600000
+58000003
+600084af
+202072c0
+58000007
+600084af
+204052de
+680084af
+e0a08000
+1fe22400
+680104b0
+e0a10000
+58000500
+e0a10000
+2a41fe05
+2020f2d0
+2a41fe07
+2020f2d0
+58000000
+e0a18000
+e0a10000
+202072d4
+58350200
+e0a18000
+58000000
+e0a10000
+7002dc0a
+20600000
+18c21600
+e8c08000
+1fe17207
+1fe97e00
+c00372e5
+c000f2e0
+c00272e5
+c002f2e3
+19620c00
+20600000
+20407301
+1fe0fe01
+202072de
+18007e02
+202072de
+204072f7
+1fe0fe02
+202072de
+e8c08000
+1fe17207
+1fe97e00
+c00372f7
+c000f2ef
+c002f2fc
+20600000
+20407301
+98007200
+18000400
+184d0400
+e8c08000
+98418400
+c20072f2
+20600000
+1f227e00
+c002f2fc
+c00372fe
+18007203
+202072ef
+e8c08000
+20600000
+e8c10000
+1ff0fe00
+20600000
+18007e01
+1f227c00
+20628000
+1fe3fe00
+c2007304
+20600000
+98002600
+79200025
+44f4c03d
+18000e00
+68014759
+98000c00
+d8a004c5
+78547c00
+e8c08000
+207a0000
+98007200
+e8c10000
+9a667c00
+2422f316
+78347c00
+c2007312
+e8c20000
+2434731b
+e0a20000
+18e08e01
+204072e8
+98c08c00
+2020730e
+68014759
+98000c00
+e8c08000
+207a0000
+1fe3fe00
+98c08c00
+e8c20000
+98467c00
+20628000
+204072e8
+98c08c00
+20207320
+79200025
+44f5403d
+68014759
+98000c00
+e8c08000
+203a734b
+98007200
+e8c10000
+9a667c00
+2022f339
+c2007331
+18c08c04
+204072e8
+98c08c00
+2020732e
+1f20f3ff
+1f23fe00
+98c08c00
+18c08c04
+204072e8
+98c08400
+18c08c01
+e8c10000
+9a461600
+7922fe00
+19621600
+20628000
+204072d6
+98c08c00
+18427e00
+98c67c00
+2022f34b
+2020733f
+18000c00
+18007e00
+20600000
+79200025
+44f5c03d
+68014759
+98000c00
+e8c08000
+203a7368
+1fe3fe00
+98c08c00
+e8c20000
+98467c00
+2022f35c
+204072e8
+98c08c00
+20207352
+204072e8
+98c08400
+18c08c01
+e8c10000
+9a467c00
+20628000
+204072d6
+98c08c00
+18427e00
+98c67c00
+2022f368
+2020735e
+18000c00
+20600000
+2040737d
+d8c0051f
+d8a0050f
+20207e35
+78547c00
+20407474
+d8c004ef
+d8a0052f
+1800720f
+20407e45
+e8c08000
+1fe2fe06
+e0a08000
+5800053f
+60010574
+5800052f
+60010572
+79200012
+202073bd
+6808854f
+18002410
+1840a606
+1a667c10
+20217383
+18002610
+d8a0052f
+d8c00550
+18427200
+78547c00
+e8c08000
+e0a08000
+1a40a5ff
+2022f391
+c2007387
+20347384
+78347c00
+18007206
+1a220c00
+20207387
+d8c004ef
+d8a0053f
+20407e35
+6800854e
+9a62fe00
+6000854e
+5800053f
+60010574
+5800052f
+60010572
+79200012
+202073bd
+78547c00
+20407474
+202073a7
+da200056
+78347c00
+20407474
+204073a7
+d8c0051f
+d8a00062
+20207e35
+580004ef
+60010574
+58004262
+60010572
+793f8012
+204073bd
+da20051f
+da4004ef
+d8a0052f
+20407467
+da20052f
+da40053f
+1a420a00
+78347c00
+20407465
+2040747f
+5800053f
+60010574
+5800052f
+60010572
+79200012
+202073bd
+70057600
+68010572
+98000c00
+d8a00560
+20407e35
+68010574
+98000c00
+d8a0051f
+20407e35
+204073e4
+78547c00
+c58973ce
+68008576
+c08273ce
+68010574
+98002400
+20407416
+20407415
+20407428
+68008576
+1fe0fe01
+60008576
+204073e4
+78347c00
+20407415
+20407437
+20407446
+20407437
+20407446
+20407437
+20407446
+20407437
+68008576
+1fe0fe01
+60008576
+c08873c6
+204073e4
+78547c00
+20207415
+68008576
+d8c00560
+203a740b
+98002400
+18007211
+18c20a00
+e8c08000
+1fe98400
+1feb7e00
+1fe97e00
+9841fe00
+e0a08000
+c20073ea
+58000560
+9a408c00
+18007210
+d8a004ff
+e8c08000
+e0a08000
+28c1ff71
+2420f3fa
+18c08def
+c20073f5
+18002200
+1a40a7ff
+1a6ba600
+1a6ba600
+204075c5
+58008400
+9a60a600
+d8a004ff
+18007210
+ea688000
+e8a08000
+9840fe00
+e0a08000
+1a60a601
+c2007404
+202075c9
+18007210
+18000400
+e8c08000
+98428400
+c200740d
+18427e00
+e0c08000
+d8c00560
+d8a004ff
+20207e35
+da4004ff
+18007210
+da20051f
+1a220a00
+ea288000
+ea408000
+9842e000
+1f212603
+2434741f
+1a62a603
+1a662601
+20217422
+9840e000
+1e027e00
+e0a08000
+1a20a201
+1a40a401
+c2007419
+20600000
+204075c5
+18007210
+da20051f
+ea208000
+d8c08500
+1f212603
+1a667c01
+20217431
+d8c08600
+98c08c00
+e8c08000
+e2208000
+1a20a201
+c200742b
+202075c9
+18007208
+d8c0051f
+18c20a00
+e8c08000
+98002200
+e8c08000
+98002400
+1a23fe00
+9a40fe00
+e0a08000
+1a227e00
+9a40fe00
+e0a08000
+c200743a
+20600000
+588ae42c
+98000400
+18007207
+20407455
+580d751b
+98000400
+18007205
+20407455
+6800852e
+98002200
+68008522
+6000852e
+1a227e00
+60008522
+20600000
+1841240f
+18417e0f
+d8a0051f
+98a08a00
+e8a08000
+98002600
+1a227e00
+e0a08000
+1a622200
+18518400
+c2007456
+5800051f
+9a408a00
+1a227e00
+e0a08000
+20600000
+78347c00
+20207468
+78547c00
+18007210
+ea288000
+ea408000
+2034746e
+9842fe00
+2020746f
+9840fe00
+e0a08000
+1a20a201
+1a40a401
+c2007469
+20600000
+d8a0053f
+ea230000
+e0a30000
+2034747a
+ea230000
+2020747b
+e8c30000
+e0a30000
+ea220000
+e0a20000
+20600000
+d8c04262
+d8a0052f
+d8400000
+588395a7
+204074a0
+58b3c1df
+204074a0
+5800e5e9
+204074a1
+18422800
+78547c00
+2040748e
+1a820400
+78347c00
+2020748e
+18007208
+e8c08000
+2f200201
+20347495
+2020f496
+9840fe00
+20207497
+2020f493
+9842fe00
+e0a08000
+184c8400
+c200748f
+20600000
+68030523
+60030056
+e8c30000
+e0a30000
+20600000
+184d0400
+18500400
+98418400
+20600000
+202074a4
+20407540
+d8a0447b
+202075a3
+d8a0449c
+2034f4ab
+d8a003b0
+18c22200
+20407e35
+20407551
+d8c0448c
+202075bc
+da2003b0
+2034f4b3
+da20449c
+1a220a00
+20406226
+20207551
+d8c00380
+20407592
+d8c0447b
+20407593
+18006c38
+18006c00
+2040752f
+d8a003fd
+202075a3
+18007e49
+202074c2
+18007e01
+18007000
+184d5e00
+9de1de00
+1f00f001
+184cde00
+1df15e00
+68014473
+1ff07e00
+9de1de00
+1f00f001
+e8c20000
+98005e00
+1f00f001
+e8c10000
+1a30de00
+1df05e00
+9de1de00
+1f00f001
+20600000
+1a608c01
+e8c08000
+98002200
+204074bf
+20407531
+18007000
+ea608000
+1fe17e03
+1ff05e00
+79205e08
+2040759b
+20407534
+1a227200
+1a608c02
+2040757a
+20407584
+20407534
+1f227e00
+203a74e9
+202074e4
+1800700c
+1de27e00
+60020378
+20600000
+1a20a201
+204074c1
+1a620c00
+2040758e
+20407537
+204075aa
+1a60a610
+1a40a5f0
+202174ed
+20600000
+da60443e
+680ac465
+204074d5
+18007008
+98005e00
+18002200
+204074c1
+20407537
+da604440
+6800c43f
+1fe0a5ff
+9a608a00
+1800700c
+1de27e00
+e0a20000
+204074ed
+6800c43f
+1fe0fe04
+6000c43f
+680ac465
+18408401
+600ac465
+20600000
+68008341
+1fe67c14
+20217511
+da600342
+1fe0a5ff
+1fe0fffc
+60008341
+9a608c00
+e8c20000
+18007008
+98005e00
+18002200
+680ac46a
+204074c1
+20407537
+1800700c
+1de27e00
+6002037c
+204074ed
+da600340
+204074d5
+680a037c
+98467e00
+247a0000
+6802446f
+98467e00
+207a0000
+600a446f
+6802c46a
+1fe0fe01
+6002c46a
+18007e00
+20600000
+243bf52f
+20600000
+18006c30
+18006c00
+2020752f
+18006c32
+18006c02
+2020752f
+18006c34
+18006c04
+2020752f
+18006c36
+18006c06
+2020752f
+18006c01
+18006c00
+20600000
+18007000
+680203b0
+98005e00
+1f00f001
+e8c20000
+98005e00
+1f00f001
+6802449c
+98005e00
+1f00f001
+e8c20000
+98005e00
+1f00f001
+2040759e
+18006c38
+18006c08
+2020752f
+680344f9
+680b03d0
+2034f556
+680303d0
+680b44f9
+18007008
+18425e00
+1f00f001
+184f5e00
+1ff07e00
+9de1de00
+1f00f001
+1fef5e00
+1f00f001
+18005e00
+18007e00
+6800c4e6
+6808c4dc
+2434f566
+6800c4ed
+6808c4e6
+6000c4ac
+6008c4ad
+18007000
+da4044ac
+18007204
+ea220000
+ea4a0000
+9842de00
+1f00f001
+1a20a204
+1a40a404
+c200756b
+2040759e
+18006c38
+18006c0c
+2040752f
+2040759d
+18006c3a
+18006c08
+2020752f
+2f200600
+20608000
+18c27e00
+9f208a00
+18007e00
+e0a08000
+1f20f201
+2f200600
+20608000
+2020757f
+18007000
+1f227e00
+203a7589
+e8c20000
+1f20f3fc
+98005e00
+1f00f001
+2f001e04
+20608000
+20207585
+18007008
+20207593
+18007004
+20207593
+18007000
+18007204
+e8c20000
+98005e00
+1f00f001
+c2007594
+20600000
+d8c003fd
+20207590
+18007204
+202075a0
+18007000
+18007204
+18005e00
+1f00f001
+c200759f
+20600000
+1800700c
+18007204
+1de27e00
+e0a20000
+1f00f001
+c20075a5
+20600000
+1800700c
+1a620a00
+1a40f201
+1f267c0f
+202175b0
+18007210
+1de27e00
+1f267c03
+202175b8
+e0a20000
+1f20f3fc
+20628000
+1f00f001
+202075b0
+e0a08000
+1fecfe00
+c20075b8
+20600000
+1800700c
+18007204
+e8c20000
+9de67c00
+24628000
+1f00f001
+c20075be
+18007c00
+20600000
+68108050
+793ffe00
+60108050
+20600000
+68108050
+79207e00
+60108050
+20600000
+d8a00742
+3803ffff
+3807ffff
+380bffff
+380ffbff
+e0a48000
+3803ffff
+3807ffff
+380bffff
+380fffff
+e0a48000
+3803ffff
+3807ffff
+380bcfff
+380fffff
+e0a48000
+3803ffff
+3807ffff
+380bffef
+380fffff
+e0a48000
+3803ffff
+3807ffff
+380bffff
+380fffff
+e0a48000
+3803ffff
+38066c7f
+3808146b
+380f7bb3
+e0a48000
+3801feb8
+38050c12
+380ab722
+380e9fa6
+e0a48000
+3800e70f
+38056720
+3808519e
+380d9084
+e0a48000
+38031012
+380760bf
+380bf0af
+380c03d3
+e0a48000
+3803a188
+38043ad0
+380bcbf2
+380e43d9
+e0a48000
+3802b030
+38076a03
+38091188
+380de520
+e0a48000
+3803a11e
+3804fe5d
+3808dd57
+380dac93
+e0a48000
+380011ed
+380618c4
+38088da7
+380e57ff
+e0a48000
+3803192b
+38074641
+3809be0c
+380f66ad
+e0a48000
+38001f83
+38055a23
+380bf9b0
+380c3949
+e0a48000
+38013a51
+380553fd
+380b372a
+380cf1bb
+e0a48000
+3803ae85
+3805eed9
+38089e66
+380c01a8
+e0a40000
+20600000
+5800764c
+6001428e
+5800770f
+60014290
+580076ac
+60014292
+58007710
+6001428a
+58007718
+60014294
+79200025
+44fcc03f
+20758000
+70808100
+2040763f
+58007717
+60014288
+70480e00
+70480a00
+70480b00
+58000000
+60024800
+20403f23
+203a3f79
+20403f96
+20403f7e
+20203f6e
+6808c80f
+204069d1
+6808c810
+202069d1
+79200025
+44fd403f
+680a4806
+1c427e00
+60024806
+98467e00
+24610000
+1fe67ec8
+20600000
+6800c2bc
+c19f8000
+79200025
+44fdc03f
+6800c132
+c1848000
+78547c00
+2040769b
+24740000
+78547c00
+6800c133
+c001f706
+6800c80b
+c000f663
+c001767d
+20407643
+20217660
+6800c80a
+c2807674
+c280f682
+70480a00
+70480b00
+20600000
+70480b00
+20407bde
+6800c811
+c000f66a
+70480505
+70480003
+20207688
+70480e00
+2020766c
+70480e02
+20207684
+70480e03
+2020767f
+70480e04
+20207678
+70480e00
+20207667
+70480b01
+20407be7
+6800c811
+c000f67c
+70480505
+58020003
+6001c800
+20207688
+20600000
+70480b00
+20407bde
+7048050a
+70480001
+20207688
+70480b02
+20407be7
+7048050a
+70480001
+58280000
+6001c801
+79200025
+44fe403f
+6800c805
+1fe22200
+20404b2c
+680142b7
+e0a10000
+580000a1
+e0a08000
+680a4800
+e0ac0000
+58000000
+e0a08000
+60024800
+6800c80e
+c001766e
+c001f670
+c0027672
+20600000
+6808c80f
+204069e5
+58000000
+7920fe00
+6000c804
+6808c810
+204069e5
+58000000
+7920fe01
+6808c804
+9841fe00
+6808c80a
+6000c80a
+9842fc00
+20628000
+78347c00
+20600000
+1a627e00
+c002f6d8
+c00376da
+c003f6dd
+c013f6e1
+c00176c9
+c00276d0
+c009f6d0
+c000f6c6
+c00976c0
+c0173f57
+1fe1040f
+1fe17ef0
+c02876e4
+20600000
+6800c7f2
+207a0000
+1fe0ffff
+6000c7f2
+247a0000
+70427f01
+20403fa4
+20403fa2
+20403f7e
+20403f98
+20203f9e
+70480d00
+70480c00
+20600000
+79200025
+44fec03f
+70429d00
+70480c00
+70480d00
+680142a0
+c301f6d4
+680147fe
+600147f0
+20403f12
+20203f7b
+c300f6d6
+202076d0
+c30176d2
+202076d0
+20403f7e
+20203f98
+58000002
+6000c7f2
+20600000
+70480c00
+58000001
+6000c80d
+20600000
+58000005
+6000c80c
+20600000
+79200025
+44ff403f
+60088259
+68008259
+207a0000
+1fe0ffff
+60008259
+204076ef
+204076bb
+204076fa
+202076e7
+6800c80c
+207a0000
+6800c80c
+1fe0ffff
+6000c80c
+247a0000
+680082e6
+79207e00
+79207e07
+600082e6
+20600000
+6800c80d
+207a0000
+6800c80d
+1fe0ffff
+6000c80d
+247a0000
+20203f77
+79200025
+44ffc03f
+6800c133
+c1818000
+2020764e
+20407643
+20610000
+6800c80a
+207a0000
+20403f23
+203a3f79
+20403f96
+20403f7e
+20203f6e
+20207701
+6808c80f
+204069b4
+6800c811
+c080f715
+20600000
+6808c810
+202069b4
+2020763f
+20203f9a
+79200025
+44f9403e
+6800c7dc
+203a6009
+20406003
+58000000
+600407da
+600207e2
+d8a007e9
+e0a38000
+7007e000
+202077a4
+7007dc01
+2020772a
+6800c793
+c000f7c2
+20203bf1
+6800c793
+c000f72d
+202077a4
+204077c2
+680087db
+247a0000
+7007da03
+20600000
+680087de
+c0807750
+2040774d
+d8a00898
+58000848
+e0a10000
+580047c4
+e0a10000
+58000808
+e0a10000
+20207744
+d8a00898
+58000858
+e0a10000
+58000808
+e0a10000
+580047c4
+e0a10000
+20407ad2
+680087db
+c002774a
+7007dc01
+7007da05
+20600000
+7007db14
+20407727
+2020780f
+d8a00838
+18000e08
+202077db
+7007dc01
+20600000
+d8a006c3
+68034140
+e0a30000
+68030040
+e0a30000
+680187e9
+e0a18000
+20407b3c
+da200868
+da400878
+18000e04
+204077e0
+2420f768
+680087db
+c004f765
+7007da0a
+7007dc01
+70007c03
+20600000
+70007c03
+7007db15
+2020780f
+680087db
+c004f76e
+7007da00
+70007c04
+70007e05
+20600000
+70007c04
+7007db00
+20600000
+680087df
+c000f775
+7007db0a
+2020780f
+d8a006c3
+68030040
+e0a30000
+68034140
+e0a30000
+680187e6
+e0a18000
+20407b4a
+680087db
+c0057782
+7007da0b
+7007dc01
+20600000
+7007db0b
+7007dd01
+20600000
+d8a00898
+68030040
+e0a30000
+68034140
+e0a30000
+58000848
+e0a10000
+58000858
+e0a10000
+20207799
+7007da0f
+d8a00898
+68034140
+e0a30000
+68030040
+e0a30000
+58000858
+e0a10000
+58000848
+e0a10000
+d8a006c3
+68030898
+e0a30000
+6803089e
+e0a30000
+20407b06
+70425e01
+d8a04262
+d8c00868
+20407e35
+20203229
+79200025
+44f9c03e
+6800c793
+c1800000
+680087de
+c1800000
+d8a04794
+18000e0b
+204077db
+180a7e00
+1fe37e00
+e0a10000
+d8a0065a
+d8c04794
+20407e33
+d8a00582
+d8c0078a
+20407e2d
+d8a005b2
+20407e3a
+7005b201
+20407b7f
+7007de01
+20600000
+d8a047ac
+d8c005ca
+20407e2d
+70479301
+7007de00
+20600000
+79200025
+44fa403e
+680087e5
+c1800000
+680087de
+c1800000
+d8a0065a
+d8c04794
+20407e33
+d8a00582
+d8c007f0
+20407e2d
+d8a005b2
+20407e3a
+7005b201
+20407b7f
+7007de02
+20600000
+7007df01
+d8a00820
+d8c005ca
+20407e33
+7007e501
+7007de00
+20600000
+18e08fff
+24610000
+180a7e00
+e0a10000
+202077db
+18e08fff
+242177ec
+ea220000
+1fe20400
+ea420000
+9842fe00
+2422f7ea
+1a20a204
+1a40a404
+202077e0
+7840fc00
+20600000
+7820fc00
+20600000
+79200025
+44fac03e
+680087dc
+207a0000
+7007dc00
+680087da
+c001e117
+c002e134
+c003e13f
+c005e155
+c0017725
+c0027732
+c004f752
+c0057771
+c006778f
+20600000
+79200025
+44fb403e
+680087dd
+207a0000
+7007dd00
+680087db
+c00960f7
+c009e0ff
+c001e103
+c002773d
+c00a6107
+c003e115
+c0057771
+c005e154
+c004f752
+c00ae14e
+20600000
+7007dd01
+20600000
+7007dd00
+20600000
+79200025
+44fbc03e
+680087de
+207a0000
+1fe0fe80
+600087de
+c3838000
+68008581
+203a781d
+20207b8a
+20407a0c
+680087de
+c000f7bc
+c00177d4
+20600000
+1fe10e07
+1fe97e00
+98c08c00
+e8c08000
+afec0000
+20600000
+20407e33
+20407e33
+20207e33
+e8c40000
+247a0000
+e8c40000
+247a0000
+e8c40000
+20600000
+18007206
+ea220000
+98000400
+ea420000
+98467c00
+24628000
+1a20a204
+1a40a404
+c2007832
+20600000
+18007206
+1a20a214
+1a40a414
+ea420000
+98000400
+ea220000
+98467e00
+24610000
+247a0000
+1a20a3fc
+1a40a5fc
+c200783e
+20600000
+18007206
+18002600
+ea220000
+98000400
+ea420000
+9840fe00
+9a60fe00
+e0a20000
+2feffe20
+7920a600
+1a20a204
+1a40a404
+c200784a
+20600000
+18007206
+18002600
+ea420000
+98000400
+ea220000
+98467e00
+9a667e00
+e0a20000
+2feffe20
+7920a600
+1a20a204
+1a40a404
+c2007858
+20600000
+18007206
+1a20a214
+18002600
+ea220000
+2feffe00
+7920a601
+1fe37e00
+2a6ffe00
+7920fe1f
+e2220000
+1a20a3fc
+1a632600
+c2007867
+20600000
+18007206
+18002600
+ea220000
+2feffe1f
+7920a601
+1fe3fe00
+2a6ffe00
+7920fe00
+e2220000
+1a20a204
+1a632600
+c2007874
+20600000
+20407872
+2a6ffe00
+2020f888
+da400742
+1a222600
+1a20a3e8
+2040783b
+24610000
+1a622200
+1a20a3e8
+da400742
+1a220a00
+20207856
+20407848
+18a22200
+20207880
+20407856
+2a6c0000
+20608000
+da400742
+18a0a3e8
+1a220a00
+20207848
+18a21600
+1a226000
+da4006b2
+1a420a00
+1a208c18
+e8c40000
+e0a40000
+e0a40000
+18007e00
+e0a40000
+19620a00
+2040788c
+da4006b2
+1a420a00
+18007e00
+e0a40000
+1e008c20
+e8c40000
+e0a40000
+e0a40000
+19622200
+1a220a00
+2040788c
+da4006b2
+1a420a00
+1e008c28
+e8c40000
+e0a40000
+e0a40000
+e0a40000
+19622200
+1a220a00
+2020788c
+18007206
+e8c20000
+98005e00
+1f00f001
+c20078b8
+20600000
+18a21600
+d8a00682
+20407e3a
+d8a00682
+1a220c00
+18007000
+204078b7
+1a420c00
+204078b7
+18002400
+18000400
+18002606
+e8a20000
+98002200
+1a427000
+1de27e00
+1a627000
+9deffe00
+9a20fe00
+9840fe00
+e0a20000
+1fef0400
+1a60a601
+2a61fe0c
+2420f8c9
+18427e00
+e0a20000
+18a08be8
+1a40a401
+2a41fe06
+2420f8c7
+da200682
+19620a00
+20207896
+1a222400
+202078bd
+1a226000
+1e022200
+ea208000
+2feffe00
+20608000
+20407864
+ea408000
+2fec0000
+2020f8f1
+da200742
+1a420a00
+20407848
+ea408000
+9a60fe00
+e2408000
+1a40a5e8
+1a40a218
+18007207
+20407866
+202078e2
+18a21600
+d8a006e2
+20407e3a
+18007e00
+6002069a
+600206fa
+7006e201
+d8a00682
+20407e3a
+d8c00742
+d8a006b2
+20407e33
+1a220c00
+d8a006ca
+20407e33
+d8c006ca
+2040782b
+203a792d
+da2006ca
+da4006e2
+204078e1
+da2006b2
+da400682
+204078e1
+da2006ca
+da4006b2
+2040783b
+2021791f
+da2006b2
+da4006ca
+1a220a00
+20407856
+da2006e2
+da400682
+1a420a00
+20407848
+ea208000
+9a60a600
+ea408000
+9a60fe00
+e2408000
+20207904
+da2006ca
+da4006b2
+1a220a00
+20407856
+da200682
+da4006e2
+1a420a00
+20407848
+ea208000
+9a60a600
+ea408000
+9a60fe00
+e2408000
+20207904
+d8a006e2
+20407e3a
+6800869a
+600086e2
+600086ea
+da2006e2
+da400682
+1a420a00
+2040788c
+da200742
+da400682
+19620a00
+2020788f
+da200642
+d8a006fa
+204078df
+da2006fa
+d8a00712
+204078df
+da20075a
+da400712
+d8a00712
+204078bd
+da200612
+d8a006fa
+204078df
+d8c006fa
+d8a006ca
+20407e33
+da2006ca
+2040787f
+da2006fa
+da4006ca
+d8a006fa
+2040788c
+da2006fa
+da400712
+d8a006fa
+2040788c
+d8c00612
+d8a006ca
+20407e33
+da20062a
+d8a00712
+204078df
+da2006ca
+2040787f
+da2006ca
+2040787f
+da2006ca
+da400712
+d8a006ca
+204078bd
+da200712
+d8a006e2
+204078df
+da2006e2
+2040787f
+da2006e2
+2040787f
+da2006e2
+2040787f
+d8c0062a
+d8a00712
+20407e33
+da200712
+2040787f
+da200712
+da400642
+d8a00642
+204078bd
+da2006fa
+d8a00712
+204078df
+da200712
+da4006ca
+d8a00712
+2040788f
+da200712
+da4006ca
+d8a00612
+2040788f
+da2006ca
+da400612
+d8a00712
+2040788f
+da200712
+da4006fa
+d8a00712
+204078bd
+da200712
+da4006e2
+d8a0062a
+2020788f
+da2005b2
+d8a0072a
+204078df
+da200612
+da40072a
+d8a006e2
+204078bd
+da2005b2
+da40072a
+d8a0072a
+204078bd
+da20062a
+da40072a
+d8a006ca
+204078bd
+da200642
+d8a0072a
+204078df
+da200582
+da40072a
+d8a006fa
+204078bd
+da200642
+da40072a
+d8a0072a
+204078bd
+da20059a
+da40072a
+d8a00712
+204078bd
+da2006e2
+da4006fa
+d8a0072a
+2040788f
+da2006e2
+da4006fa
+d8a006e2
+2040788c
+da2006ca
+da400712
+d8a006fa
+2040788f
+da2006ca
+da400712
+d8a006ca
+2040788c
+da2006ca
+da40072a
+d8a006ca
+204078bd
+da200642
+da4005b2
+d8a00712
+204078bd
+da200712
+da40072a
+d8a00642
+204078bd
+da20072a
+d8a0072a
+204078df
+da20072a
+da4006e2
+d8a00712
+204078bd
+da20072a
+da4006ca
+d8a006ca
+204078bd
+da2006fa
+d8a00612
+204078df
+da200612
+da400712
+d8a00612
+2040788f
+d8c00612
+d8a0072a
+20407e33
+da20072a
+2040787f
+da200712
+da40072a
+d8a00712
+2040788f
+da200712
+da4006fa
+d8a006fa
+204078bd
+da2006fa
+da4006ca
+d8a0062a
+2040788f
+da20062a
+da400742
+d8a0062a
+18002600
+6800862a
+2feffe00
+2040f848
+1a626000
+da20062a
+20407864
+68008641
+2e0ffe00
+7920fe07
+60008641
+20600000
+700581c0
+70058001
+68008581
+1fe0ffff
+24610000
+60008581
+68008580
+205a793a
+68008581
+d8c0065a
+20407822
+2020f9f9
+68008580
+243a7a07
+2040798b
+202079f9
+70058000
+d8c00582
+d8a00612
+20407828
+202079f9
+da200642
+d8a00712
+204078f5
+da200712
+d8a006ca
+204078df
+da200612
+da4006ca
+d8a005ca
+204078bd
+da200712
+da4006ca
+d8a006fa
+204078bd
+da20062a
+da4006fa
+d8a005e2
+202078bd
+18007210
+e8c20000
+18002204
+18a08a03
+e0a08000
+1fecfe00
+18a08bfe
+1a20a3ff
+2422fa22
+18a08a05
+c2007a1f
+20600000
+18ebfe00
+99608c00
+e8c20000
+20600000
+18006010
+d9600582
+1e008ff9
+20407a2a
+98000400
+1e008ff0
+20407a2a
+98408400
+1e008ffe
+20407a2a
+1fee7e01
+98408400
+1e008ff1
+20407a2a
+1fee7e00
+98408400
+1e0bfe00
+99608a00
+e0aa0000
+1e00e001
+2e01fe40
+2420fa30
+20600000
+d8c007ba
+18007007
+e8c20000
+98005e00
+1f00f1ff
+20217a47
+20600000
+79200025
+44fc403f
+20407a2e
+d8a00682
+18007000
+1de27e00
+e0a20000
+1f00f001
+2f01fe08
+2420fa51
+204075c5
+d9608700
+de000582
+18007240
+ee0a0000
+e9620000
+19609604
+1e00e004
+9840fe00
+18007007
+9de08400
+18007004
+1dee7e03
+98408400
+18007005
+1de27e00
+18007006
+9de2fe00
+18007004
+9de17e00
+18007006
+9de2fe00
+98408400
+18007007
+18425e00
+18007003
+1de27e00
+9840de00
+18007000
+1de27e00
+18007001
+9de10400
+9de1fe00
+18007002
+9de17e00
+98418400
+18007000
+1dee7e02
+9840fe00
+18007007
+9de0de00
+980efc00
+c2007a5a
+d8c00682
+18007000
+e8c20000
+9de0de00
+1f00f001
+2f01fe08
+2420fa83
+202075c9
+d8a00858
+18007007
+1de27e00
+e0a20000
+1f00f1ff
+20217a8b
+20600000
+d8a00582
+18c08dfc
+1f262210
+e8c20000
+9842fe00
+e0a20000
+18c08df8
+c2007a93
+1a227200
+18427e00
+e0a20000
+c2007a9a
+20600000
+d8c00808
+d8a00582
+18007206
+20407b97
+d8c047c4
+18007206
+20407b97
+d8c00858
+20407b96
+20407a45
+20407a4c
+d8c00848
+d8a00582
+20207ab8
+d8c047c4
+d8a00582
+18007206
+20407b97
+d8c00808
+18007206
+20407b97
+d8c00848
+20407b96
+20407a45
+20407a4c
+d8c00858
+d8a00582
+20407b96
+58800000
+1fed7e00
+e0a20000
+18007205
+20407e3b
+58000280
+e0a20000
+20407a4c
+68020858
+da2003e8
+9a26fc00
+20407efd
+18077e00
+600207ec
+1807fe00
+da2003e8
+9a26fc00
+20407efd
+18077e00
+da2003e8
+9a2ffe00
+680a07ec
+9840fe00
+600207ec
+20600000
+58363636
+1fed0400
+18418436
+68010898
+1fe20c00
+18007204
+20407a90
+20407a45
+20407a4c
+6801089a
+1fe20c00
+d8a00582
+18007206
+20407b97
+6801089c
+1fe20c00
+18007206
+20407b97
+58800000
+e0a18000
+18007e00
+e0a08000
+18007e00
+e0a40000
+58000388
+e0a20000
+20407a4c
+20407a89
+d8c00858
+d8a006a2
+20407e31
+585c5c5c
+1fed0400
+1841845c
+68010898
+1fe20c00
+18007204
+20407a90
+20407a45
+20407a4c
+d8c006c2
+d8a00582
+18007208
+20407b97
+58800000
+1fed7e00
+e0a20000
+20407e3a
+58000300
+e0a20000
+20407a4c
+20207a89
+58363636
+1fed0400
+18418436
+d8c00838
+18007206
+20407a90
+20407a45
+20407a4c
+680108a4
+1fe20c00
+d8a00582
+20407b96
+680108a6
+1fe20c00
+20407b96
+5862746c
+1fed7e00
+1fe1fe6b
+e0a20000
+d8c006cf
+18007203
+20407b97
+58800000
+1fed7e00
+e0a20000
+18007e00
+e0a40000
+58000380
+e0a20000
+20407a4c
+20407a89
+d8c00858
+d8a006a2
+20407e31
+585c5c5c
+1fed0400
+1841845c
+d8c00838
+18007206
+20407a90
+20407a45
+20407a4c
+d8c006c2
+d8a00582
+18007208
+20407b97
+58800000
+1fed7e00
+e0a20000
+20407e3a
+58000300
+e0a20000
+20407a4c
+20207a89
+58363636
+1fed0400
+18418436
+d8c00838
+18007206
+20407a90
+20407a45
+20407a4c
+d8c00858
+d8a00582
+20407b96
+d8c00848
+20407b96
+20207b57
+58363636
+1fed0400
+18418436
+d8c00838
+18007206
+20407a90
+20407a45
+20407a4c
+d8c00848
+d8a00582
+20407b96
+d8c00858
+20407b96
+58000000
+e0a40000
+e0a40000
+18a20400
+7006c280
+18420a00
+d8c006d2
+20407b96
+20407a4c
+d8a00582
+18007207
+20407e3b
+e0a20000
+580003f8
+e0a20000
+20407a4c
+20407a89
+d8c00858
+d8a006a2
+20407e31
+585c5c5c
+1fed0400
+1841845c
+d8c00838
+18007206
+20407a90
+20407a45
+20407a4c
+d8c006c2
+d8a00582
+18007208
+20407b97
+58800000
+1fed7e00
+e0a20000
+20407e3a
+58000300
+e0a20000
+20407a4c
+20207a89
+700581c0
+68008581
+207a0000
+1fe0ffff
+60008581
+d8c0065a
+20407822
+2020fb80
+d8c00582
+d8a00612
+20207828
+2040793a
+68008581
+1fe0ffff
+60008581
+d8c0065a
+20407822
+20608000
+2020798b
+70058000
+d8c00582
+d8a00612
+20207828
+18007204
+18c08dfc
+e8c20000
+e0a20000
+18c08df8
+c2007b98
+20600000
+20758000
+20407ba5
+20407c13
+20207bd9
+6800c132
+c1008000
+20407bf2
+20207c04
+6800c7fd
+c17f8000
+98000400
+204069da
+6808c7fd
+204069ed
+20000064
+6808c7fd
+204069d1
+20207bb1
+7047fdff
+20600000
+79200025
+44c2c030
+6800c7fd
+c17f8000
+1fe20400
+204069e5
+2420fbc4
+20407bce
+680147f4
+79207e0c
+600147f4
+6800c7eb
+c1000000
+7047eb00
+6800c7fc
+6000c7ea
+20407bd5
+700b7d2c
+20207c27
+680147f4
+793ffe0c
+600147f4
+6800c7eb
+c1008000
+7047eb01
+7047ea00
+20407bd7
+700b7d2d
+20207c27
+6800c7ea
+207a0000
+1fe0ffff
+6000c7ea
+247a0000
+700b7d10
+20207c27
+d8e00007
+20203dc2
+d8e00007
+20203dc6
+6800c7f7
+c17f8000
+98000400
+204069da
+20207be2
+680147f4
+793ffe0d
+600147f4
+7047e900
+680147f4
+793ffe0e
+600147f4
+6808c7f7
+202069ed
+680147f4
+79207e0e
+600147f4
+7047e900
+6808c7f7
+202069ef
+680147f4
+79207e0d
+600147f4
+7047e901
+20600000
+79200025
+44c34030
+6800c7e9
+c1000000
+d8e00009
+20407e53
+247a0000
+6800c7e9
+c0017bff
+20407be7
+7047e902
+680147fa
+20207c02
+20407be2
+7047e903
+680147f8
+d8e00009
+20207e4c
+79200025
+44c3c030
+da200000
+680a47ec
+1c422400
+1a427e00
+184084a0
+184084a0
+98467c00
+24217c16
+1a20a201
+1a217e0f
+243a7c09
+da200000
+20407c1d
+1c427e00
+600247ec
+20600000
+79200025
+44c44031
+1a227e00
+207a0000
+18408560
+18408560
+600a47ec
+1fe0fe50
+60008b7d
+20207c27
+7047dd01
+6800c7de
+243a7c21
+20600000
+7047dd00
+20600000
+20207f9f
+79200025
+44c4c031
+6800c132
+c1008000
+20407c20
+1a227e00
+600208ab
+da2047df
+20407f92
+680208ab
+1fe22200
+20207c24
+79200025
+44c54031
+6800c132
+c1008000
+20407c20
+1a227e00
+600208ab
+da2047e4
+20407f92
+680208ab
+1fe22200
+20207c24
+79200025
+44c5c031
+58000000
+6002c7e4
+6002c7df
+20600000
+79200025
+44c64031
+6800c272
+247a0000
+da2047e4
+20407fac
+207a0000
+7008aa00
+20407c51
+680088aa
+203a7c45
+20600000
+79200025
+44c6c031
+20407c20
+da2047e4
+20407f9f
+1fe20400
+20407c24
+18427e00
+207a0000
+c000fc97
+c0017c9c
+c001fca2
+c003fca7
+c0047ca8
+c004fca9
+c005fcac
+c0067cad
+c006fcae
+c0077cb1
+c007fcb3
+c0087cb6
+c0097cbb
+c00afbed
+c00a7be7
+c009fbde
+c00b7cbc
+c00bfcc1
+c00c7cc3
+c00cfcc8
+c00dfcc6
+c00e7cd3
+c00f7cd5
+60008b7d
+79200025
+44c74031
+6800807c
+203a7c79
+204061d9
+6800807c
+243a7c8c
+68008b7d
+c584fc87
+c002ca19
+c0034a28
+c0057caa
+c0027ca4
+c008fcb8
+c00efc8e
+c00fe90c
+c0106910
+c0097c85
+20600000
+700b7d2f
+20205620
+60008b7d
+204032ee
+2022fc8c
+204032f9
+24628000
+7008aa01
+20207c33
+70007c34
+79200003
+24748000
+70474800
+70007c13
+68008177
+793ffe02
+60008177
+20600000
+680147f4
+79207e06
+600147f4
+70413303
+20600000
+7047f200
+70413300
+680147f4
+793ffe06
+600147f4
+20600000
+70427205
+20600000
+70007c07
+70044613
+20600000
+20600000
+20600000
+20600000
+70045002
+202049da
+20600000
+20600000
+7043d801
+7044db00
+20600000
+7043d800
+20600000
+7043d801
+7044db01
+20600000
+7043d800
+20600000
+58000001
+600103ef
+20600000
+20600000
+7043d201
+7042721b
+68030268
+600344e7
+20600000
+7043d201
+20600000
+7043d200
+70427200
+20600000
+700b7d4b
+20205620
+79200025
+44c7c031
+68014288
+20407f66
+6800c7fd
+c07ffcd0
+1fe20400
+204069d1
+20407be2
+20407c3f
+20203ccd
+7046f801
+20600000
+18000e04
+20207e4b
+6800c7f4
+c4060000
+c4038000
+20207cd5
+79200025
+44eac03a
+20407df3
+68108c26
+600088af
+68108c27
+600088b0
+708c26e0
+680088b0
+2fe00201
+2040fd3a
+79200025
+44eb403a
+680088af
+2fe00201
+2040fcf8
+680088f8
+c0817dc2
+680108f9
+1fe0fe01
+600108f9
+680908fb
+98467c00
+20217db2
+680088af
+c3037dc2
+58000000
+600108f9
+20207dc2
+79200025
+44ebc03a
+708c2611
+68108c20
+600088b1
+1fe27200
+203a7d18
+d8a008ff
+20407d36
+680088b1
+1fe67c07
+20610000
+79200025
+44ec403b
+680088ff
+c0107d16
+c010fd22
+c0007d10
+68008900
+c002fd9b
+c0037d3d
+c004fd98
+c005fda2
+20207d32
+68008900
+c000fdaf
+c001fdab
+c004fd34
+c002fd9b
+20207d32
+20407d34
+20600000
+680088af
+c2827d04
+20600000
+680088f6
+1fe0fe01
+600088f6
+2fe1fe02
+2420fd34
+7008f701
+20207d34
+68008900
+c0057d27
+c004fd2e
+c005fd1b
+20207d32
+680088f8
+c002fd2c
+c0827d34
+7008f805
+20207d34
+7008f802
+20207d34
+7008f701
+da2008f7
+da400001
+20207d65
+708c1101
+20600000
+708c1240
+20600000
+68108c18
+e0a08000
+c2007d36
+20600000
+708c2701
+20407d7c
+20600000
+79200025
+44ecc03b
+793f8023
+68008902
+c000fd47
+c0017d49
+c001fd4b
+c010fd57
+c0117d5b
+20600000
+da200912
+20207d62
+da200ab6
+20207d62
+68008901
+1fe17e03
+da200b1a
+c0007d62
+79200023
+da200b1f
+c000fd62
+da200b3d
+c0017d62
+da200b5b
+c001fd62
+20203bf1
+da200ac8
+68008ac8
+1fe22400
+20207d65
+68010903
+c000fd5f
+da200926
+20207d62
+7008f801
+da2009ee
+20207d62
+ea208000
+98002400
+1a20a201
+79200025
+44ed403b
+c591fd71
+1a40fe01
+1fe3fe00
+60108c18
+708c1803
+68008905
+1fe0fffe
+1fe37e00
+60008905
+c0007d7a
+68008905
+9a467c00
+20217d75
+1fe22400
+1a227e00
+6001090f
+1a427e00
+60008911
+20207d7c
+d8e00000
+20207dd5
+79200025
+44edc03b
+68008911
+207a0000
+1fe27200
+1fe67c40
+20217d84
+df200040
+68008911
+9f267e00
+60008911
+6801090f
+1fe20c00
+e8c08000
+60108c18
+c591fd8d
+708c1800
+c2007d89
+18c27e00
+6001090f
+d8e00000
+20407dd5
+68008911
+247a0000
+680088f8
+c1808000
+7008f802
+20600000
+68008901
+1fe67c01
+24217d32
+680088ff
+c0807d32
+68010903
+c0807d32
+68008905
+c0807d32
+20207d34
+680088ff
+c080fd32
+68008901
+c0807d32
+68008902
+c0807d32
+68008905
+c0807d32
+20207d34
+68008901
+c080fd32
+7008f803
+20207d34
+68008901
+c080fd32
+20207d34
+79200025
+44ee403b
+708c0000
+20002710
+708c10c0
+68110050
+793ffe0a
+60110050
+708c003c
+708c26ff
+708c27ff
+700ff000
+7008f800
+58000000
+600108f9
+20600000
+79200025
+44eec03b
+68008ff0
+207a0000
+680088f8
+c001fdec
+c1810000
+68008ff0
+700ff000
+df200006
+d8c00ff1
+c0017dd0
+c000fde9
+20203bf1
+da208c19
+d8e00001
+e8c08000
+e2208000
+c2007dd2
+79200025
+44ef403b
+78487c00
+680108fd
+98003600
+708c2640
+68108c26
+2021fdb2
+c3037ddb
+680108fd
+98003600
+d8400000
+f9200400
+60188c27
+2021fdb2
+60188c10
+68108c27
+afec0000
+2020fde3
+20600000
+d8e00002
+da208c1a
+20207dd2
+79200025
+44efc03b
+708c00fc
+20002710
+708c003c
+7008f804
+20600000
+68008ff0
+247a0000
+680108f2
+207a0000
+1fe0ffff
+600108f2
+700ff001
+20600000
+1f267c00
+20628000
+1fe37e00
+c2007dfd
+20600000
+18a27e00
+600102b9
+600c02a0
+19627e00
+600202a8
+1a227e00
+600202ac
+1a427e00
+600202b0
+1a627e00
+600182b4
+18c27e00
+600102b7
+20600000
+680c02a0
+680202a8
+98001600
+680202ac
+98002200
+680202b0
+98002400
+680182b4
+98002600
+680102b9
+98000a00
+680102b7
+98000c00
+20600000
+18a27e00
+60010b7b
+18c27e00
+60010b79
+20600000
+68010b7b
+1fe20a00
+68010b79
+1fe20c00
+20600000
+1c427e00
+1fe0fe10
+1fe0fe10
+1c420400
+98467c00
+20217e29
+20600000
+e8c40000
+e0a40000
+e8c40000
+e0a40000
+e8c40000
+e0a40000
+e8c40000
+e0a40000
+e8c40000
+e0a40000
+e8c40000
+e0a40000
+20600000
+18007203
+18007e00
+e0a40000
+c2007e3c
+20600000
+1f227e00
+207a0000
+58000000
+e0a08000
+c2007e42
+20600000
+1f227e00
+207a0000
+e8c08000
+e0a08000
+c2007e47
+20600000
+58000000
+d8a0423e
+98000400
+18e3fe00
+98a08a00
+e0a90000
+20600000
+d8e00000
+79200025
+44de4037
+680a4134
+1c437e00
+60024134
+98461600
+19620400
+d8c0423e
+18c20a00
+df200010
+e8c10000
+98467e00
+20217e61
+18007e00
+e0a10000
+c2007e5d
+d8c0423e
+18e3fe00
+98c08c00
+e8c10000
+20600000
+18e08e01
+18e08fff
+20628000
+1fed7e00
+20207e69
+98408400
+18427200
+58000ea6
+9f267e00
+20610000
+1fe67e00
+18510400
+18408401
+18500400
+98418400
+20600000
+20407e7a
+20207e84
+78547c00
+98467e00
+20217e7f
+78347c00
+1fe67e00
+c4078000
+d85f0ea6
+9840fe00
+793ffe40
+20600000
+98000c00
+1ff17e00
+d8400ea6
+984ffe00
+98c0fe00
+20600000
+1fed7e00
+1ff27e00
+6809c210
+9846fc00
+20407efd
+18078400
+20600000
+d8400ea6
+9846fc00
+20407efd
+1807fe00
+1ff07e00
+18070400
+98418400
+20600000
+df200003
+20207e9e
+df200002
+20207e9e
+df200006
+ea208000
+1fe20400
+1ff1fe00
+20407eaa
+e1408000
+18427e00
+1fe17e0f
+20407eaa
+e1408000
+1a20a201
+c2007e9e
+20600000
+1fe67c09
+20217eae
+1fe0fe57
+20600000
+1fe0fe30
+20600000
+d8400000
+18422600
+e8608000
+1fe67c2c
+20628000
+20407ec9
+1a620400
+20407f32
+da40000a
+9a4ffe00
+9840fe00
+1fe20400
+20207eb1
+df200002
+20207ec0
+df200006
+e8608000
+20407ec9
+1ff22600
+e8608000
+20407ec9
+9a60fe00
+e0a08000
+c2007ec0
+20600000
+d840003a
+98467c00
+24217ed2
+d8400061
+98467c00
+20217ed5
+d8400037
+98467e00
+20600000
+d8400030
+98467e00
+20600000
+d8400057
+98467e00
+20600000
+18426000
+580001ff
+18002400
+1fe92200
+1a232200
+9a22a200
+2a2ffe00
+7920fe09
+18430400
+2feffe00
+79208407
+1fe37e00
+1a40a401
+2a400e00
+2420fedb
+e0a88000
+c2007edb
+1e020400
+20600000
+1fe6fc0a
+20407efd
+1807fe00
+1feba200
+1a2ba200
+18077e00
+9a21fe00
+20600000
+2a2ffe00
+2020fef7
+98002400
+20600000
+1febfe00
+1febfe00
+9a41fe00
+e0a08000
+18a08bfe
+20600000
+207a8000
+20207efd
+60040161
+18007e20
+18007208
+d8a00028
+e0a08000
+c2007f03
+d8a00028
+18a08a07
+68040161
+1fe6fc0a
+20407efd
+18077e00
+1fe1fe30
+e0a08000
+18a08bfe
+1807fe00
+207a0000
+20207f08
+60040161
+18007e00
+60040028
+d8a00028
+18a08a07
+68040161
+18002200
+1fe6fc0a
+20407efd
+18077e00
+20407ef3
+1a20a201
+1807fe00
+1fe67c09
+24217f18
+20407ef3
+2a2ffe00
+20608000
+e0a08000
+20600000
+ea208000
+ea488000
+98467c00
+24628000
+1a20a201
+1a40a401
+c2007f25
+18007c00
+20600000
+98467c00
+24610000
+18427e00
+20600000
+9840fe00
+98460400
+98467e00
+20600000
+df200200
+d8a04000
+20207e3b
+6802809c
+60028161
+68014210
+e0a10000
+58000000
+7936fe07
+7935fe06
+792c7e05
+79377e04
+e0a08000
+20207f52
+6802809c
+60028161
+68008016
+e0a08000
+680103da
+d8c00fff
+98c17e00
+7936fe0f
+7935fe0e
+792c7e0d
+79377e0c
+e0a10000
+20207f52
+60040161
+6800c16e
+c13f8000
+1fe17e7f
+1fe9fe00
+d8a04c00
+98a08a00
+68040161
+e0a40000
+6800c16e
+2feffe07
+1fe0fe01
+1fe17e7f
+7920fe07
+6000c16e
+68040161
+20600000
+df200800
+d8a00000
+59010101
+20207e3c
+207a0000
+1fe27a00
+6811010e
+243a7f68
+20600000
+68110058
+1fe20600
+20600000
+6811005e
+1fe21400
+20600000
+18c22200
+20407f6e
+1a220c00
+20404976
+204068fa
+20207f68
+70820301
+20600000
+60110205
+68108203
+79207e04
+60108203
+20600000
+60110207
+68108203
+79207e06
+60108203
+20600000
+60110205
+70820330
+20600000
+68108043
+79207e04
+60108043
+20600000
+68108043
+793ffe04
+60108043
+20600000
+6811010e
+d8400200
+98467c00
+20600000
+79200025
+44dec037
+ea2a8000
+18417eff
+243a7f99
+184cfe00
+e2228000
+1a20a204
+ea208000
+243a3bf1
+68008b7d
+e2208000
+20600000
+79200025
+44df4037
+df200005
+ea228000
+207a0000
+ea208000
+243a7fa9
+1a20a201
+c2007fa4
+20203bf1
+d8400000
+e2288000
+20600000
+ea228000
+20600000
+ea208000
+20600000
+ea210000
+20600000
+d8400000
+68008006
+c2007fb3
+18408401
+c2007fb3
+18427e00
+20600000
+98467c00
+24610000
+18427e00
+20600000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00000000
+00008010
Index: btkb/output/sched.rom
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/btkb/output/sched.rom	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/btkb/output/sched.rom	(working copy)
@@ -0,0 +1,635 @@
+mem_patch00:
+69   #mem_patch00
+04   #mem_patch01
+00   #mem_patch02
+00   #mem_patch03
+80   #mem_patch04
+09   #mem_patch05
+0a   #mem_patch06
+00   #mem_patch07
+0c   #mem_patch08
+00   #mem_patch09
+11   #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
+09   #mem_patch23
+18   #mem_patch24
+00   #mem_patch25
+04   #mem_patch26
+c8   #mem_patch27
+00   #mem_patch28
+5c   #mem_patch29
+40   #mem_patch2A
+00   #mem_patch2B
+3a   #mem_patch2C
+ce   #mem_patch2D
+00   #mem_patch2E
+00   #mem_patch2F
+80   #mem_patch30
+e0   #mem_patch31
+00   #mem_patch32
+90   #mem_patch33
+00   #mem_patch34
+00   #mem_patch35
+00   #mem_patch36
+20   #mem_patch37
+00   #mem_patch38
+a0   #mem_patch39
+01   #mem_patch3A
+00   #mem_patch3B
+4c   #mem_patch3C
+00   #mem_patch3D
+00   #mem_patch3E
+00   #mem_patch3F
+
+
+mem_customize_timer_setup:   50 00		# 20:10ms  30:15ms
+
+mem_lpm_mode:01
+mem_lpm_mult:40
+mem_lpm_mult_timeout:03
+mem_lpm_overhead:0a
+mem_lpm_interval:10 00
+mem_scan_mode:00
+
+mem_class: 40 25 00
+
+mem_lap:36 28 52 08 66 2a    
+mem_local_name_length:
+'BT3.0 Keyboard
+mem_sniff_param_interval:0e 00
+mem_sniff_param_attempt:01
+mem_sniff_param_timeout:01
+mem_unsniff2sniff_timer:0a
+mem_ssp_enable:01
+mem_ui_profile_supported:01
+
+mem_eir_enable:01
+
+mem_all_uuid_16bits:
+06
+03#Type: Complete list of 16-bit UUIDs
+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
+3601a2
+
+#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 3591 358f 0822 258b
+
+# 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)
+26ff00 # 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
+
+#25
+0501 # Usage Page(Generic Desktop)
+0906 # Usage(Keyboard)
+a101 # Collection(Application)
+8508 # Report ID(8)    
+9570 # Report Count(112)
+7501 # Report Size(1)
+1500 # Logical Minimum(0)
+2501 # Logical Maximum(1)
+0507 # Usage Page(Keyboard/Keypad)
+1900 # Usage Minimum(01)
+29ff # Usage Maximum(255)
+8102 # Input(Data Variable Absolute) ; Modifier byte
+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
+
+#23
+05 01	#Usage Page (Generic Desktop),
+09 80	#USAGE (3-D Digitizer)
+a1 01	#Collection (Application),
+85 03	#Report ID (3)
+19 81	#Usage Minimum (), 
+29 88	#Usage Maximum (),
+15 00	#Logical Minimum (0),
+25 01	#Logical Maximum (1),
+95 08	#Report Count (8),
+75 01	#Report Size (1),
+81 06	#Input (Data,Var,Rel)
+c0		#END_COLLECTION
+
+090207 3508 3506 090409 090100
+09020b 090100
+09020c 091f40
+09020d 2800
+09020e 2801
+09020f 090012
+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
+0904e8
+090202#ProductID
+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
+9d
+59
+82
+
+#bluetootch param init
+mem_sp_flag:00
+mem_lpm_current_mult:00
+mem_master_sp_flag:00
+mem_le_ch_mapped:27
+
+mem_ui_button_gpio:ff
+mem_led_gpio:ff
+
+mem_seqi:80
+
+
+mem_ipc_tx_evt_buff:02 01
+
+
+#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 
+'BT5.0 KB
+
+#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
+
+#Primary Service: Device Information
+0c 00 00 28 02 0a 18
+#Manufacturer Name
+0d 00 03 28 01 02
+0e 00 29 2a 06 59 69 43 68 69 70			#IOS 13.5.1
+#Characteristic: pnp id
+0f 00 03 28 01 02
+10 00 50 2a 07 02 e8 04 21 70 01 00		# SAMSUNG soft keyboard,setup shortcuts
+
+#Primary service: HID
+11 00 00 28 02 12 18
+#Characteristic:Protocol mode
+12 00 03 28 01 06
+13 00 4e 2a 01 01
+#Characteristic: hid report
+14 00 03 28 01 12   
+15 00 4d 2a 08 00 00 00 00 00 00 00 00	#hid report	led handle write
+16 00 02 29 02 00 00	
+17 00 08 29 02 01 01	#Report ID: 1	Report Type: Input
+
+#Characteristic:hid report
+18 00 03 28 01 12  
+19 00 4d 2a 02 00 00
+1a 00 02 29 02 00 00
+1b 00 08 29 02 03 01	#Report ID: 3	Report Type: Input
+
+#Characteristic:hid report
+1c 00 03 28 01 12   
+1d 00 4d 2a 02 00 00 	#hid report	led handle write
+1e 00 02 29 02 00 00	
+1f 00 08 29 02 02 01	#Report ID: 2	Report Type: Input
+
+#Characteristic:hid report
+20 00 03 28 01 0e   
+21 00 4d 2a 02 00	00	#hid report	led handle write
+22 00 02 29 02 00 00	
+23 00 08 29 02 01 02	#Report ID: 1	Report Type: Output
+
+#Characteristic:hid report
+24 00 03 28 01 12  
+25 00 4d 2a 0d 00 00 00 00 00 00 00 00 00 00 00 00 00
+26 00 02 29 02 00 00
+27 00 08 29 02 08 01	#Report ID: 8	Report Type: Input   game keyboard
+
+
+#Characteristic:Report map
+28 00 03 28 01 0a
+29 00 4b 2a 8b
+
+#66
+05 01
+09 06
+a1 01
+85 01
+75 01 
+95 08
+05 07
+19 e0 
+29 e7 
+15 00
+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 
+26 ff 00
+05 07
+19 00
+29 ff 
+81 00
+c0 
+
+#25
+0501 # Usage Page(Generic Desktop)
+0906 # Usage(Keyboard)
+a101 # Collection(Application)
+8508 # Report ID(8)    
+9570 # Report Count(112)
+7501 # Report Size(1)
+1500 # Logical Minimum(0)
+2501 # Logical Maximum(1)
+0507 # Usage Page(Keyboard/Keypad)
+1900 # Usage Minimum(01)
+29ff # Usage Maximum(255)
+8102 # Input(Data Variable Absolute) ; Modifier byte
+c0 # End Collection
+
+#25
+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
+
+#23
+05 01	#Usage Page (Generic Desktop),
+09 80	#USAGE (3-D Digitizer)
+a1 01	#Collection (Application),
+85 03	#Report ID (3)
+19 81	#Usage Minimum (), 
+29 88	#Usage Maximum (),
+15 00	#Logical Minimum (0),
+25 01	#Logical Maximum (1),
+95 08	#Report Count (8),
+75 01	#Report Size (1),
+81 06	#Input (Data,Var,Rel)
+c0		#END_COLLECTION
+
+#Characteristic:Hid information
+2a 00 03 28 01 02
+2b 00 4a 2a 04 11 01 00 01        
+#Characteristic
+2c 00 03 28 01 04
+2d 00 4c 2a 01 00
+
+#Primary Service: BAS
+2e 00 00 28 02 0f 18 
+#Characteristic: Battery Level
+2f 00 03 28 01 12 
+30 00 19 2a 01 64 
+#Client Characteristic Configuration
+31 00 02 29 02 00 00 
+#End of Attribute list
+00 00
+
+
+mem_le_local_mtu:17
+mem_le_transmit_window:50
+mem_le_notify_handle:14
+mem_le_lap:11 46 34 54 77 dd
+
+
+mem_empty_count:00
+mem_att_report_standard_key:15 00
+mem_att_report_system_ctrl:19 00
+mem_att_report_media_key:1d 00
+mem_att_report_game:25 00
+mem_att_report_battery:30 00
+mem_le_rx_window:50
+
+mem_le_connection_updata_param:
+0c 00 #Length
+05 00 #CID
+12 b4 
+08 00 
+08 00 #min interval
+08 00 #max interval
+00 00 #latency
+2c 01 #timeout
+
+mem_le_name_len:
+'BT5.0 KB
+
+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
+mem_le_adv_swift_pair:
+#microsoft swift pair
+06 ff 06 00 03 00 80
+
+mem_le_scan_data_len:1f
+mem_le_scan_data:
+'\09BT5.0 KB
+
+mem_version_yy_mm_dd:20 22 03 022		#version data 202203022
+
+mem_adc_0v:9f 3e
+mem_adc_3v:cd 4d
+mem_adc_config_flag:02    #01 VINLPM      #02 HVIN      #04 GPIO
+
+#24g init
+mem_24g_data_type:02        #mouse 1,kb 2
+mem_24g_no_ack:00#with ack
+mem_24g_rx_window:c0 12     #400us 
+mem_24g_ch_map1:00 13 2c 42
+mem_24g_ch_map2:06 15 36 48
+mem_24g_ch_map3:0f 1a 3a 4c
+mem_24g_ch_map4:11 23 31 4d
+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 #10 min
+mem_24g_enter_hibernate_max:ff ff ff ff
+mem_24g_short_sleep_counter:e8 fd 00 #00 00 0a
+
+mem_lpm_config:8f 10 ce
+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
+mem_fcomp_mul:02
+mem_fcomp_div:24
+mem_iscan_window:12 00
+mem_iscan_interval:00 02
+mem_pscan_window:12 00
+mem_pscan_interval:00 02
+mem_inq_window:20 00
+mem_page_window:20 00
+mem_page_to:00 20
+mem_rx_window_init:80 03
+mem_rx_window_sniff:00 06
+mem_new_supervision_to:00 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
+0a fb
+0b ff 
+
+#agc table
+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
+
+# tx power
+55 d0
+56 c0
+57 4c
+58 6c
+59 50
+
+#dpll
+68 e4
+69 00
+6a 00
+6b 30
+ff
+mem_rf_init_ptr:70 4f
+
+mem_5db_tx_power_param:
+55 d0
+56 c0
+57 4c
+58 6c
+59 50
+
+mem_24g_paring_tx_power_param:
+55 d0
+56 c0
+57 4c
+58 6c
+59 50
+
Index: btkb/program/app.prog
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/btkb/program/app.prog	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/btkb/program/app.prog	(working copy)
@@ -0,0 +1,525 @@
+app_init:
+	set1 mark_ext_patch,mark
+	bpatch patch39_5,mem_patch39
+	fetch 1,mem_device_option
+	branch app_init,blank				/* wait ram to be initialized */
+	beq dvc_op_ukey,le_ukey_init
+	beq dvc_op_ir,le_ir_init
+	beq dvc_op_dongle,le_dongle_init
+	beq dvc_op_kb,kb_init
+	beq dvc_op_hci,hci_init
+	beq dvc_op_shutter,shutter_init
+	beq dvc_op_module,module_init
+	beq dvc_op_ble_kb,le_kb_init
+	beq dvc_op_ble_prcp,prcp_init
+	beq dvc_op_test,test_init
+	bbit1 dvc_op_mouse,mouse_init
+	rtn
+	
+app_lpm_init:
+	set1 mark_ext_patch,mark
+	bpatch patch39_6,mem_patch39
+	jam 0,mem_tester_emulate
+	jam 0,mem_debug_config
+	jam 0, mem_lch_code
+	setarg 0
+	store 5,mem_sp_state_start
+	fetch 1,mem_device_option
+	branch app_lpm_init,blank				/* wait ram to be initialized */
+	beq dvc_op_module,module_lpm_init
+	rtn
+
+	
+app_process_idle:
+	call ui_dispatch
+	call check_51cmd
+	call app_process_bb_event
+	fetch 2,mem_cb_idle_process
+	branch callback_func
+	
+app_process_bt:
+	fetch 2,mem_cb_bt_process
+	branch callback_func
+	
+app_process_ble:
+	fetch 2,mem_cb_le_process
+	branch callback_func
+
+app_process_bb_event:
+	set1 mark_ext_patch,mark
+	bpatch patch39_7,mem_patch39
+	//return if c51 need to process bb event
+	arg mem_ipc_fifo_bt2c51,rega
+	call fifo_out
+	rtn blank
+	//reaching here mains c51 cannot get bb event.
+	copy pdata,regc
+	call app_event_normal_process
+	branch app_process_bb_event_priority
+	
+app_discard_event:
+	arg 0,regc
+	rtn
+
+//************************************************//
+//*APP BB EVENT NORMAL PROCESS**//
+//************************************************//
+app_event_normal_process:
+	beq BT_EVT_BB_CONNECTED,app_evt_bt_conn
+	beq BT_EVT_BUTTON_LONG_PRESSED,app_evt_button_long_pressed
+	beq BT_EVT_SETUP_COMPLETE,app_evt_setup_complete
+	beq BT_EVT_HID_HANDSHAKE,app_evt_hid_handshake
+	beq BT_EVT_HID_CONNECTED,app_bb_event_hid_connected
+	beq BT_EVT_RECONN_FAILED,app_bb_event_reconn_failed
+	beq BT_EVT_BB_DISCONNECTED,app_bb_event_bb_disconn
+	beq BT_EVT_RECONN_PAGE_TIMEOUT,app_bb_event_reconn_failed	
+	beq BT_EVT_LE_CONNECTED,app_le_event_bb_connected
+	beq BT_EVT_LE_DISCONNECTED,app_le_event_bb_disconn
+	beq BT_EVT_RECONN_STARTED,app_event_reconn_start
+	beq BT_EVT_ENTER_SNIFF,app_event_enter_sniff
+	beq BT_EVT_EXIT_SNIFF,app_event_exit_sniff
+	
+	beq BT_EVT_ML2CAP_CONN_REFUSED,app_event_ml2cap_conn_refused
+	beq BT_EVT_LINKKEY_GENERATE,app_event_linkkey_generate
+	beq BT_EVT_SWITCH_FAIL_MASTER,app_event_switch_fail_master
+	beq BT_EVT_SWITCH_SUCCESS_MASTER,app_event_switch_success
+	
+	and pdata,0x0f,temp
+	and_into BT_EVT_TIMER_MASK,pdata
+	beq BT_EVT_TIMER_INIT,app_evt_timer
+	rtn
+
+app_evt_bt_conn:
+	fetch 2,mem_ui_state_map
+	set1 UI_STATE_BT_CONNECTED,pdata
+	store 2,mem_ui_state_map
+	fetch APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	set0 APP_DISC_BY_BUTTON ,pdata
+	store APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	rtn
+app_event_switch_success:
+	jam 0,mem_switch_fail_master_count
+	rtn	
+
+app_event_switch_fail_master:
+	fetch 1,mem_switch_fail_master_count
+	increase 1,pdata
+	store 1,mem_switch_fail_master_count
+	sub pdata,1,null
+	branch app_bt_role_switch,positive
+	jam 0,mem_switch_fail_master_count
+	fetch APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	set1 APP_DISC_SWITCH_FAIL,pdata
+	store APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	branch app_bt_disconnect
+	
+app_process_bb_event_priority:
+	fetch 2,mem_cb_bb_event_process
+	branch callback_func
+
+app_check_wake_lock:
+	fetch 2,mem_cb_check_wakelock
+	branch callback_func
+	
+app_will_enter_lpm:
+	fetch 2,mem_cb_before_lpm
+	branch callback_func
+
+app_event_linkkey_generate:
+	fetch APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	set1 APP_DISC_AFTER_PAIRING ,pdata
+	store APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	branch app_bt_store_reconn_info
+	
+app_event_reconn_start:
+	fetch 2,mem_ui_state_map
+	set1 UI_STATE_BT_RECONNECT,pdata
+	store 2,mem_ui_state_map
+	fetch APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	set1 APP_DISC_AFTER_RECONN,pdata
+	store APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	rtn
+
+app_evt_setup_complete:
+	fetch 2,mem_ui_state_map
+	set1 UI_STATE_BT_SETUP_COMPLETE,pdata
+	store 2,mem_ui_state_map
+	fetch APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	set1 APP_DISC_AFTER_SETUP_DONE,pdata
+	store APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	rtn
+
+app_evt_hid_handshake:
+	fetch 2,mem_ui_state_map
+	set1 UI_STATE_BT_HID_HANDSHAKE,pdata
+	store 2,mem_ui_state_map
+	rtn
+	
+app_event_enter_sniff:
+	fetch 2,mem_ui_state_map
+	set1 UI_STATE_BT_SNIFF,pdata
+	store 2,mem_ui_state_map
+	fetch APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	set1 APP_DISC_AFTER_SNIFF,pdata
+	store APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	rtn
+	
+app_event_exit_sniff:
+	fetch 2,mem_ui_state_map
+	set0 UI_STATE_BT_SNIFF,pdata
+	store 2,mem_ui_state_map
+	rtn
+
+app_le_event_bb_connected:
+	fetch 2,mem_ui_state_map
+	set1 UI_STATE_BLE_CONNECTED,pdata
+	store 2,mem_ui_state_map
+	rtn
+	
+app_le_event_bb_disconn:
+	fetch 2,mem_ui_state_map
+	set0 UI_STATE_BLE_CONNECTED,pdata
+	store 2,mem_ui_state_map
+	jam 0,mem_le_switch_send_data
+	branch app_lpm_mult_disable
+	
+app_bb_event_hid_connected:
+	fetch 2,mem_ui_state_map
+	set1 UI_STATE_BT_HID_CONN,pdata
+	store 2,mem_ui_state_map
+	rtn
+
+app_evt_button_long_pressed:
+	fetch APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	set1 APP_DISC_BY_BUTTON,pdata
+	store APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	rtn
+	
+app_event_ml2cap_conn_refused:
+	fetch APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	set1 APP_DISC_L2CAP_REFUSED,pdata
+	store APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	branch  app_bt_disconnect
+
+
+app_evt_timer:
+	set1 mark_ext_patch,mark
+	bpatch patch3a_0,mem_patch3a
+	storet 1,mem_app_evt_timer_count
+app_evt_100ms_loop:
+	fetch 1,mem_app_evt_timer_count
+	rtn blank
+	increase -1,pdata
+	store 1,mem_app_evt_timer_count
+	call ui_button_polling
+	call app_lpm_wake_auto_lock_timer
+	call app_unsniff_delay_timer
+	call app_discovery_timer
+	branch app_evt_100ms_loop
+	
+app_unsniff_delay_timer:
+	fetch 1,mem_unsniff2sniff_timer_count
+	rtn blank
+	increase -1,pdata
+	store 1,mem_unsniff2sniff_timer_count
+	nrtn blank
+	call context_check_idle
+	branch app_bt_enter_sniff,zero
+	rtn
+app_discovery_timer:
+	fetch 2,mem_discovery_timeout_timer_count
+	rtn blank
+	increase -1,pdata
+	store 2,mem_discovery_timeout_timer_count
+	nrtn blank
+	call app_bt_stop_discovery
+	call app_led_off
+	fetch 2,mem_cb_discovry_timeout
+	branch callback_func 
+	
+app_bb_event_reconn_failed:
+	call app_disconn_reason_flag_clear
+app_clear_reconnect_flag:
+	fetch 2,mem_ui_state_map
+	set0 UI_STATE_BT_RECONNECT,pdata
+	store 2,mem_ui_state_map
+	rtn
+
+app_bb_event_bb_disconn:
+	jam 0,mem_unsniff2sniff_timer_count
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BT_RECONNECT,app_bb_event_bb_reconn_disconn
+	isolate0 UI_STATE_BT_SETUP_COMPLETE,pdata
+ 	call app_discard_event,true
+app_bb_event_bb_reconn_disconn:
+	fetch 2,mem_ui_state_map
+	set0 UI_STATE_BT_CONNECTED,pdata
+	set0 UI_STATE_BT_SETUP_COMPLETE,pdata
+	set0 UI_STATE_BT_HID_CONN,pdata
+	set0 UI_STATE_BT_HID_HANDSHAKE,pdata
+	set0 UI_STATE_BT_SPP_CONN,pdata
+	store 2,mem_ui_state_map
+	branch app_lpm_mult_disable
+	
+app_bb_hibernate:
+	call app_disconn_reason_clear
+	branch app_enter_hibernate
+
+	
+app_event_do_nothing:
+app_disconn_reason_clear:
+	setarg 0
+	store APP_DISC_RSN_SIZE,mem_app_disconn_reason
+	rtn
+app_disconn_reason_flag_clear:
+	setarg 0
+	store APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	rtn
+
+	
+app_disconn_reason_collect_bt:
+	fetch APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	store APP_DISC_RSN_SIZE,mem_app_disconn_reason
+	setarg 0
+	store APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	rtn
+	
+app_disconn_reason_collect_ble:
+	fetch APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	set1 APP_DISC_BLE,pdata
+	store APP_DISC_RSN_SIZE,mem_app_disconn_reason
+	setarg 0
+	store APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	rtn
+
+	
+//************************************************//
+//********APP SHARED FUNCSIONS*******//
+//************************************************//
+app_check_reconn_target:
+	call eeprom_load_reconn_info
+	fetch 6,mem_hci_plap
+	rtn
+	
+app_le_check_reconn_target:
+	fetch 1,mem_ltk_exists
+	branch app_le_check_reconn_target_none,blank
+	call app_led_on
+	branch app_ble_start_direct_adv
+app_le_check_reconn_target_none:
+	call app_led_start_blink
+	branch app_ble_start_adv
+
+app_check_plap:
+	set1 mark_ext_patch,mark
+	bpatch patch3a_1,mem_patch3a
+	arg mem_check_plap_temp,regb
+	arg app_check_one_plap,regc
+	branch context_search
+	
+app_check_one_plap:
+	arg 0,temp
+	bbit0 state_inconn,app_check_one_plap_next
+	add rega,coffset_plap,contr
+	ifetcht 6,contr
+app_check_one_plap_next:
+	copy temp,pdata
+	ncall app_check_one_plap_device_exist,blank
+	istoret 6,regb
+	increase 6,regb
+	branch context_search_next
+app_check_one_plap_device_exist:
+	fetch 1,mem_device_nums
+	increase 1,pdata
+	store 1,mem_device_nums
+	rtn
+	
+app_check_conn_device_nums_addr:
+	jam 0,mem_device_nums
+	branch app_check_plap
+
+app_check_sniff:
+	fetch 1,mem_ui_state_map
+	isolate1 UI_STATE_BT_SNIFF,pdata
+	rtn
+
+//*****************************************//
+//*****************API********************//
+//*****************************************//
+app_clearflag_store:
+	setarg 0
+	branch app_flag_store
+app_initflag_store:
+	setarg EEPROM_INIT_FLAG
+app_flag_store:
+	store 2,mem_timeup
+	set1 mark_ext_patch,mark
+	bpatch patch3a_2,mem_patch3a
+	arg 2,temp
+	arg mem_timeup,rega
+	arg eeprom_module_init_flag,regb
+	branch iicd_write_eep_data
+
+//initflag is in eeprom to sure is eeprom nead to init
+app_initflag_check:
+	set1 mark_ext_patch,mark
+	bpatch patch3a_3,mem_patch3a
+	arg 2,temp
+	arg mem_pdatatemp,rega
+	arg eeprom_module_init_flag,regb
+	call iicd_read_eep_data
+	fetch 2,mem_pdatatemp
+	arg EEPROM_INIT_FLAG,temp
+	isub  temp,null
+	rtn
+
+
+app_start_auto_sniff:
+	fetch 1,mem_unsniff2sniff_timer
+	store 1,mem_unsniff2sniff_timer_count
+	rtn	
+	
+app_get_lpm_wake_lock:
+	arg wake_lock_app,queue
+	branch lpm_get_wake_lock
+
+app_put_lpm_wake_lock:
+	arg wake_lock_app,queue
+	branch lpm_put_wake_lock
+	
+app_lpm_wake_auto_lock:
+	jam  LPM_WAKE_UP_DELAY_TIMER,mem_wake_up_delay_timer
+	branch app_get_lpm_wake_lock
+app_lpm_wake_auto_lock_timer:
+	fetch 1,mem_wake_up_delay_timer
+	rtn blank
+	increase -1,pdata
+	store 1,mem_wake_up_delay_timer
+	nrtn blank
+	branch app_put_lpm_wake_lock
+
+app_l2cap_flow_control_enable:
+	jam L2CAP_FLOW_CTRL_ENABLE,mem_l2cap_flow_ctrl_flag
+	rtn
+
+app_l2cap_flow_control_disable:
+	jam L2CAP_FLOW_CTRL_DISABLE,mem_l2cap_flow_ctrl_flag
+	rtn
+	
+app_bt_set_pincode:
+	jam BT_CMD_SET_PIN_CODE,mem_fifo_temp
+	branch ui_ipc_send_cmd
+
+app_bt_role_switch:
+	jam BT_CMD_ROLE_SWITCH,mem_fifo_temp
+	branch ui_ipc_send_cmd
+	
+app_bt_start_reconnect:
+	set1 mark_ext_patch,mark
+	bpatch patch3a_4,mem_patch3a
+	fetch 1,mem_app_connection_options
+	store 1,mem_connection_options
+	jam APP_FLAG_RECONNECT,mem_reconnect_flag
+	jam BT_CMD_RECONNECT,mem_fifo_temp
+	branch ui_ipc_send_cmd	
+	
+app_bt_reconnect_cancel:
+	jam BT_CMD_BB_RECONN_CANCEL,mem_fifo_temp
+	branch ui_ipc_send_cmd
+	
+app_bt_disconnect:
+	jam BT_CMD_DISCONNECT,mem_fifo_temp
+	branch ui_ipc_send_cmd	
+
+app_bt_start_discovery_short:
+	fetch 2,mem_discovery_timeout
+	store 2,mem_discovery_timeout_timer_count
+app_bt_start_discovery_led_blink:
+	call app_led_start_blink
+app_bt_start_discovery:
+	jam BT_CMD_START_DISCOVERY,mem_fifo_temp
+	branch ui_ipc_send_cmd
+
+app_bt_stop_discovery:
+	setarg 0
+	store 2,mem_discovery_timeout_timer_count
+	jam BT_CMD_STOP_DISCOVERY,mem_fifo_temp
+	branch ui_ipc_send_cmd
+	
+app_ble_start_direct_adv:
+	jam BT_CMD_START_DIRECT_ADV,mem_fifo_temp
+	branch ui_ipc_send_cmd
+
+app_ble_stop_direct_adv:
+	jam BT_CMD_STOP_DIRECT_ADV,mem_fifo_temp
+	branch ui_ipc_send_cmd
+	
+app_ble_stop_adv:
+	jam BT_CMD_STOP_ADV,mem_fifo_temp
+	branch ui_ipc_send_cmd
+	
+app_ble_start_adv:	
+	jam BT_CMD_START_ADV,mem_fifo_temp
+	branch ui_ipc_send_cmd
+	
+app_ble_start_scan:
+	jam BT_CMD_LE_START_SCAN,mem_fifo_temp
+	branch ui_ipc_send_cmd
+	
+app_ble_stop_scan:
+	jam BT_CMD_LE_STOP_SCAN,mem_fifo_temp
+	branch ui_ipc_send_cmd
+	
+app_ble_start_conn:
+	jam BT_CMD_LE_START_CONN,mem_fifo_temp
+	branch ui_ipc_send_cmd
+	
+app_ble_disconnect:
+	jam BT_CMD_LE_DISCONNECT,mem_fifo_temp
+	branch ui_ipc_send_cmd
+
+app_ble_start_write:
+	jam BT_CMD_LE_START_WRITE,mem_fifo_temp
+	branch ui_ipc_send_cmd
+	
+app_led_start_blink:	
+	jam BT_CMD_LED_BLINK,mem_fifo_temp
+	branch ui_ipc_send_cmd
+
+app_led_on:
+	jam BT_CMD_LED_ON,mem_fifo_temp
+	branch ui_ipc_send_cmd
+	
+app_led_stop_blink:
+app_led_off:
+	jam BT_CMD_LED_OFF,mem_fifo_temp
+	branch ui_ipc_send_cmd
+	
+app_enter_hibernate:
+	jam BT_CMD_ENTER_HIBERNATE,mem_fifo_temp 
+	branch ui_ipc_send_cmd
+	
+app_bt_sniff_exit:
+	jam BT_CMD_EXIT_SNIFF,mem_fifo_temp
+	branch  ui_ipc_send_cmd
+	
+app_bt_enter_sniff:
+	jam BT_CMD_ENTER_SNIFF,mem_fifo_temp
+	branch ui_ipc_send_cmd
+
+app_ble_store_reconn_info:
+	jam BT_CMD_STORE_RECONN_INFO_LE,mem_fifo_temp
+	branch ui_ipc_send_cmd
+
+app_bt_store_reconn_info:
+	jam BT_CMD_STORE_RECONN_INFO_BT,mem_fifo_temp
+	branch ui_ipc_send_cmd
+	
+app_lpm_mult_enable:
+	set1 mark_lpm_mult_enable,mark
+	rtn
+
+app_lpm_mult_disable:
+	set0 mark_lpm_mult_enable,mark
+	rtn
+	
Index: btkb/program/at.prog
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/btkb/program/at.prog	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/btkb/program/at.prog	(working copy)
@@ -0,0 +1,1103 @@
+
+
+ifdef COMPILE_AT
+at_restore_param:
+	set1 mark_ext_patch,mark
+	bpatch patch32_0,mem_patch32
+	arg 32,temp
+	arg mem_le_name_len,rega
+	arg eeprom_module_ble_name_length,regb
+	call iicd_read_eep_data
+
+
+	arg 32,temp
+	arg mem_local_name_length,rega
+	arg eeprom_module_bt_name_length,regb
+	call iicd_read_eep_data
+
+	arg 6,temp
+	arg mem_lap,rega
+	arg eeprom_module_bt_adss,regb
+	call iicd_read_eep_data
+
+	arg 6,temp
+	arg mem_le_lap,rega
+	arg eeprom_module_le_adss,regb
+	call iicd_read_eep_data
+	call le_modified_name
+
+	arg 2,temp
+	arg mem_baud,rega
+	arg eeprom_module_trans_baud,regb
+	call iicd_read_eep_data
+	call uart_set_baud_by_mem
+
+	branch  at_restore_pin_code
+
+at_restore_pin_code:
+	arg 14,temp
+	arg mem_pin_length,rega
+	arg eeprom_module_pincode_length,regb
+	branch iicd_read_eep_data
+
+init_module_environment:
+	set1 mark_ext_patch,mark
+	bpatch patch32_1,mem_patch32
+	call app_initflag_check
+	branch at_restore_param,zero
+init_module_eeprom:
+	call at_store_bt_name
+	call at_store_le_name
+	call le_modified_name
+	call at_store_le_adss
+	call at_store_bt_adss
+	call pincode_reinit
+	call at_store_bt_pincode
+	call at_store_throughput_uart_baud115200
+	branch app_initflag_store
+
+at_store_bt_name:
+	fetcht 1,mem_local_name_length
+	increase 1,temp
+	arg mem_local_name_length,rega
+	arg eeprom_module_bt_name_length,regb
+	branch iicd_write_eep_data
+
+at_store_le_name:
+	fetcht 1,mem_le_name_len
+	increase 1,temp
+	arg mem_le_name_len,rega
+	arg eeprom_module_ble_name_length,regb
+	branch iicd_write_eep_data
+
+at_store_le_adss:
+	arg 6,temp
+	arg mem_le_lap,rega
+	arg eeprom_module_le_adss,regb
+	branch iicd_write_eep_data
+
+at_store_bt_adss:
+	arg 6,temp
+	arg mem_lap,rega
+	arg eeprom_module_bt_adss,regb
+	branch iicd_write_eep_data
+
+at_store_bt_pincode:
+	fetcht 1,mem_pin_length
+	increase 1,temp
+	arg mem_pin_length,rega
+	arg eeprom_module_pincode_length,regb
+	branch iicd_write_eep_data
+
+at_store_throughput_uart_baud115200:
+	setarg AT_baud_115200
+	store 2,mem_timeup
+at_store_throughput_uart_baud:
+	arg 2,temp
+	arg mem_timeup,rega
+	arg eeprom_module_trans_baud,regb
+	branch iicd_write_eep_data
+
+
+at_process:
+	set1 mark_ext_patch,mark
+	bpatch patch32_2,mem_patch32
+	fetch 2,mem_current_packet_length
+	arg 300,temp
+	isub temp,null
+	branch at_error_rev_end,positive
+	call check_module_disabled
+	call get_uart_rrptr
+	copy contru,rega
+	fetch 2,mem_current_packet_length
+	increase -2,pdata
+	iadd contru,contru
+	ifetch 2,contru
+	arg AT_CMD_END,temp
+	isub temp,null
+	nrtn zero		//the end is not \n
+	copy rega,contru
+	arg mem_prarm_atp,regb
+	arg 3,loopcnt
+	call string_compare_uart_follow
+	nbranch at_error_rev_end,true
+	branch at_dispatch
+	
+at_dispatch:
+	set1 mark_ext_patch,mark
+	bpatch patch32_3,mem_patch32
+/****************name****************/
+	copy contru,rega
+	arg mem_prarm_name,regb
+	force 4,loopcnt
+	call string_compare_uart_follow
+	branch at_rev_name,true
+/****************lename****************/
+	arg mem_prarm_blename,regb
+	force 7,loopcnt
+	call string_compare_uart_follow
+	branch at_rev_le_name,true
+/*****************adss****************/
+	arg mem_prarm_adss,regb
+	force 4,loopcnt
+	call string_compare_uart_follow
+	branch at_rev_adss,true
+/*****************leadss*******************/
+	arg mem_prarm_bleadss,regb
+	force 7,loopcnt
+	call string_compare_uart_follow
+	branch at_rev_leadss,true
+/*****************vers****************/
+	arg mem_prarm_vers,regb
+	force 4,loopcnt
+	call string_compare_uart_follow
+	branch at_rev_vers,true
+/******************uart****************/
+	arg mem_prarm_uart,regb
+	force 4,loopcnt
+	call string_compare_uart_follow
+	branch at_rev_uart,true
+/****************pswd******************/
+	arg mem_prarm_pswd,regb
+	force 4,loopcnt
+	call string_compare_uart_follow
+	branch at_rev_pswd,true
+/****************class*********************/
+	arg mem_prarm_class,regb
+	force 5,loopcnt
+	call string_compare_uart_follow
+	branch at_rev_class,true
+/*******************list******************/
+	arg mem_prarm_list,regb
+	force 4,loopcnt
+	call string_compare_uart_follow
+	branch at_rev_list,true
+/****************role*********************/
+	arg mem_prarm_role,regb
+	force 4,loopcnt
+	call string_compare_uart_follow
+	branch at_rev_role,true
+/****************sniff*********************/
+	arg mem_prarm_sniff,regb
+	force 5,loopcnt
+	call string_compare_uart_follow
+	branch at_rev_sniff,true
+/****************ldev*********************/
+	arg mem_prarm_ldev,regb
+	force 4,loopcnt
+	call string_compare_uart_follow
+	branch at_rev_ldev,true
+/****************rssi*********************/
+	arg mem_prarm_rssi,regb
+	force 4,loopcnt
+	call string_compare_uart_follow
+	branch at_rev_rssi,true
+/****************cdev*********************/
+	arg mem_prarm_cdev,regb
+	force 4,loopcnt
+	call string_compare_uart_follow
+	branch at_rev_cdev,true
+/****************inqr*********************/
+	arg mem_prarm_inqr,regb
+	force 4,loopcnt
+	call string_compare_uart_follow
+	branch at_rev_inqr,true
+/****************leinqr*********************/
+	arg mem_prarm_bleinqr,regb
+	force 7,loopcnt
+	call string_compare_uart_follow
+	branch at_rev_leinqr,true
+/****************cmode*********************/
+	arg mem_prarm_cmode,regb
+	force 5,loopcnt
+	call string_compare_uart_follow
+	branch at_rev_cmode,true
+/****************mode*********************/
+	arg mem_prarm_mode,regb
+	force 4,loopcnt
+	call string_compare_uart_follow
+	branch at_rev_mode,true
+/****************DMstate*********************/
+	arg mem_prarm_dmstate,regb
+	force 7,loopcnt
+	call string_compare_uart_follow
+	branch at_rev_dmstate,true
+/****************reconn*********************/
+	arg mem_prarm_reconn,regb
+	force 6,loopcnt
+	call string_compare_uart_follow
+	branch at_rev_reconn,true
+/***************discov*******************/	
+	arg mem_prarm_discov,regb
+	force 6,loopcnt
+	call string_compare_uart_follow
+	branch at_rev_discov,true
+/****************dis*********************/
+	arg mem_prarm_dis,regb
+	force 3,loopcnt
+	call string_compare_uart_follow
+	branch at_rev_dis,true
+/****************stsn*********************/
+	arg mem_prarm_stsn,regb
+	force 4,loopcnt
+	call string_compare_uart_follow
+	branch at_rev_stsn,true
+/***************clrflg*******************/
+	arg mem_prarm_clrflg,regb
+	force 6,loopcnt
+	call string_compare_uart_follow
+	branch at_rev_clrflg,true
+/*****************OTA******************/
+	arg mem_prarm_ota,regb
+	force 3,loopcnt
+	call string_compare_uart_follow
+	branch at_rev_ota,true
+	branch at_error_rev_end
+
+/****************name****************/
+at_rev_name:
+	ifetch 1,contru
+	beq AT_QUES,at_rev_name_inquiry
+	beq AT_EQU,at_rev_name_set
+	branch at_error_rev_end
+at_rev_name_inquiry:
+	call get_uart_twptr
+	call at_group_name_inquiry
+	branch at_nomal_rev_end
+	
+/****************lename****************/
+at_rev_le_name:
+	ifetch 1,contru
+	beq AT_QUES,at_rev_le_name_inquiry
+	beq AT_EQU,at_rev_le_name_set
+	branch at_error_rev_end
+at_rev_le_name_inquiry:
+	call get_uart_twptr
+	call at_group_le_name_inquiry
+	branch at_nomal_rev_end
+/*****************adss****************/
+at_rev_adss:
+	ifetch 1,contru
+	beq AT_QUES,at_rev_adss_inquiry
+	beq AT_EQU,at_rev_adss_set
+	branch at_error_rev_end
+at_rev_adss_inquiry:
+	call at_group_adss_inquiry
+	branch at_nomal_rev_end
+
+at_rev_leadss:
+	ifetch 1,contru
+	beq AT_QUES,at_rev_leadss_inquiry
+	beq AT_EQU,at_rev_leadss_set
+	branch at_error_rev_end
+at_rev_leadss_inquiry:
+
+	call at_group_leadss_inquiry
+	branch at_nomal_rev_end
+/*****************vers****************/
+at_rev_vers:
+	ifetch 1,contru
+	beq AT_QUES,at_rev_vers_inquiry
+	branch at_error_rev_end
+at_rev_vers_inquiry:
+	call at_group_version_inquiry
+	branch at_nomal_rev_end
+	
+/******************uart****************/
+at_rev_uart:
+	ifetch 1,contru
+	beq AT_EQU,at_rev_uart_set
+	branch at_error_rev_end
+	
+/****************pswd******************/
+at_rev_pswd:
+	ifetch 1,contru
+	beq AT_QUES,at_rev_pswd_inquiry
+	beq AT_EQU,at_rev_pswd_set
+	branch at_error_rev_end
+at_rev_pswd_inquiry:
+	call at_group_pswd_inquiry
+	branch at_nomal_rev_end
+/****************class*********************/
+at_rev_class:
+	ifetch 1,contru
+	beq AT_QUES,at_rev_class_inquiry
+	beq AT_EQU,at_rev_class_set
+	branch at_error_rev_end
+at_rev_class_inquiry:
+	call at_group_class_inquiry
+	branch at_nomal_rev_end
+/****************list*********************/
+at_rev_list:
+	ifetch 1,contru
+	beq AT_QUES,at_rev_list_inquiry
+	beq AT_EQU,at_rev_list_set
+	branch at_error_rev_end
+at_rev_list_inquiry:
+	call at_group_list_inquiry
+	branch at_nomal_rev_end
+/****************role*********************/
+at_rev_role:
+	ifetch 1,contru
+	beq AT_QUES,at_rev_role_inquiry
+	beq AT_EQU,at_rev_role_set
+	branch at_error_rev_end
+
+/****************sniff*********************/
+at_rev_sniff:
+	ifetch 1,contru
+	beq AT_QUES,at_rev_sniff_inquiry
+	beq AT_EQU,at_rev_sniff_set
+	branch at_error_rev_end
+at_rev_sniff_inquiry:
+	call at_group_sniff_inquiry
+	branch at_nomal_rev_end
+/****************ldev*********************/
+at_rev_ldev:
+	ifetch 1,contru
+	beq AT_QUES,at_rev_ldev_inquiry
+	branch at_error_rev_end
+at_rev_ldev_inquiry:
+	call at_group_ldev_inquiry
+	branch at_nomal_rev_end
+/****************rssi*********************/
+at_rev_rssi:
+	ifetch 1,contru
+	beq AT_QUES,at_rev_rssi_inquiry
+	branch at_nomal_rev_end
+at_rev_rssi_inquiry:
+	call context_check_idle
+	nbranch at_error_rev_end,zero
+	call at_group_rssi_inquiry
+	branch at_nomal_rev_end
+/****************cdev*********************/
+at_rev_cdev:
+	ifetch 1,contru
+	beq AT_QUES,at_rev_cdev_inquiry
+	branch at_error_rev_end
+at_rev_cdev_inquiry:
+	fetch 1,mem_context
+	bbit0 state_inconn,at_error_rev_end
+	call get_uart_twptr
+	fetch 1,mem_context+coffset_mode
+	bbit1 mode_le,le_cdev_inquiry
+	branch at_cdev_unle_inq
+le_cdev_inquiry:
+	arg mem_prarm_cdev,rega
+	arg 4,loopcnt
+	call at_group_inquiryhead_common
+	call at_rev_uart_write_62
+	setarg 0x34
+	istore 1,contwu
+	call at_rev_uart_write_44
+	arg mem_le_plap,rega
+	call adss_hex2string_to_uart
+	call uartd_send
+	branch at_nomal_rev_end
+at_cdev_unle_inq:
+	arg mem_prarm_cdev,rega
+	arg 4,loopcnt
+	call at_group_inquiryhead_common
+	call at_rev_uart_write_62
+	setarg 0x33
+	istore 1,contwu
+	call at_rev_uart_write_44
+	arg mem_plap,rega
+	call adss_hex2string_to_uart
+	call uartd_send
+	branch at_nomal_rev_end
+	
+/****************inqr*********************/
+at_rev_inqr:
+	set1 mark_ext_patch,mark
+	bpatch patch32_4,mem_patch32
+	call app_check_conn_device_nums_addr
+	fetch 1,mem_device_nums
+	bne 0,at_error_rev_end
+	call do_at_inquiry
+	branch at_nomal_rev_end
+
+at_rev_leinqr:
+	set1 mark_ext_patch,mark
+	bpatch patch32_5,mem_patch32
+	call do_at_leinquiry
+	branch at_nomal_rev_end
+/****************role*********************/
+at_rev_role_inquiry:
+	arg mem_prarm_role,rega
+	arg 4,loopcnt
+	call at_group_inquiryhead_common
+	call context_check_idle
+	nbranch at_rev_uart_write_N,zero
+	fetch 1,mem_context+coffset_mode
+	bbit1 mode_master,at_rev_uart_write_M
+	call at_rev_uart_write_S
+	call uartd_send
+	branch at_nomal_rev_end
+at_rev_uart_write_M:
+	setarg 0x4d
+	istore 1,contwu
+	call uartd_send
+	branch at_nomal_rev_end
+at_rev_uart_write_S:
+	setarg 0x53
+	istore 1,contwu
+	rtn
+/****************cmode*********************/
+at_rev_cmode:
+	ifetch 1,contru
+	beq AT_QUES,at_rev_cmode_inquiry
+	beq AT_EQU,at_rev_cmode_set
+	branch at_error_rev_end
+at_rev_cmode_inquiry:
+	call at_group_cmode_inquiry
+	branch at_nomal_rev_end
+/****************mode*********************/
+at_rev_mode:
+	ifetch 1,contru
+	beq AT_EQU,at_rev_mode_set
+	branch at_error_rev_end
+/****************dmstate*********************/
+at_rev_dmstate:
+	ifetch 1,contru
+	beq AT_QUES,at_rev_dmstate_inquiry
+	branch at_error_rev_end
+at_rev_dmstate_inquiry:
+	call at_group_dmstate_inquiry
+	branch at_nomal_rev_end
+/**************reconn****************/
+at_rev_reconn:
+	fetch 1,mem_app_connection_options
+	store 1,mem_connection_options
+	call eeprom_load_reconn_info
+	call app_check_conn_device_nums_addr
+	fetch 1,mem_device_nums
+	bne 0,at_error_rev_end
+	fetch 1,mem_xrecord_mode
+	beq REC_3_MODE,at_rev_unle_reconn
+	beq REC_4_MODE,at_rev_lereconn
+	branch at_error_rev_end
+/**************lereconn****************/
+at_rev_lereconn:
+	call app_ble_start_direct_adv
+	branch at_nomal_rev_end
+at_rev_unle_reconn:
+	call app_bt_start_reconnect
+	branch at_nomal_rev_end
+/**************dis****************/
+at_rev_dis:
+	call app_check_conn_device_nums_addr
+	fetch 1,mem_device_nums
+	bne 1,at_error_rev_end
+	fetch 1,mem_context+coffset_mode 
+	bbit1 mode_le,at_rev_ledis
+	call  app_bt_disconnect
+	branch at_nomal_rev_end
+	
+/**************ledis****************/
+at_rev_ledis:
+	call app_ble_disconnect
+	branch at_nomal_rev_end
+	
+/**************stsn****************/
+at_rev_stsn:
+	ifetch 1,contru
+	beq AT_EQU,at_rev_stsn_set
+	branch at_error_rev_end
+at_rev_stsn_set:
+	ifetch 1,contru
+	beq 0x31,at_exit_sniff
+	beq 0x30,at_enter_sniff
+	branch at_error_rev_end
+at_enter_sniff:
+	call app_check_sniff
+	branch at_nomal_rev_end,true
+	call app_bt_enter_sniff
+	branch at_nomal_rev_end
+at_exit_sniff:
+	call app_check_sniff
+	nbranch at_nomal_rev_end,true
+	call module_exit_sniff
+	call at_set_cmd_task_flag
+	branch at_nomal_rev_end
+	
+/***************clrflg*******************/
+at_rev_clrflg:
+	call app_clearflag_store
+	branch at_nomal_rev_end
+
+at_rev_ota:
+	ifetch 1,contru
+	beq AT_EQU,at_rev_ota_process
+	branch at_error_rev_end
+
+at_rev_discov:
+	call app_check_conn_device_nums_addr
+	fetch 1,mem_device_nums
+	bne 0,at_error_rev_end
+	call module_disconn_start
+	branch at_nomal_rev_end
+
+	
+/********************************************at FUNC*****************************************/
+
+/**************at_SET***********/
+at_rev_name_set:
+	arg mem_local_name,rega
+	call at_set_common
+	storet 1,mem_local_name_length
+	call at_store_bt_name
+	branch at_nomal_rev_end
+	
+at_rev_le_name_set:
+	arg  mem_le_name,rega
+	call at_set_common
+	storet 1,mem_le_name_len
+	call at_store_le_name
+ 	call le_modified_name
+	branch at_nomal_rev_end
+
+at_rev_adss_set:
+	arg mem_lap,contw
+	call adss_string2hex_from_uart
+	call at_store_bt_adss
+	branch at_nomal_rev_end
+
+at_rev_leadss_set:
+	arg mem_le_lap,contw
+	call adss_string2hex_from_uart
+	call at_store_le_adss
+	branch at_nomal_rev_end
+
+at_rev_pswd_set:
+	arg mem_pin,rega
+	call at_set_common
+	storet 1,mem_pin_length
+	call at_store_bt_pincode
+	branch at_nomal_rev_end
+
+at_rev_uart_set:
+	call string2dec_from_uart
+	setarg uart_clk
+	idiv temp
+	call wait_div_end
+	quotient pdata
+	store 2,mem_timeup
+	call at_store_throughput_uart_baud
+	branch at_nomal_rev_end
+
+at_rev_mode_set:
+	ifetch 1,contru
+	sub pdata,0x33,null
+	nbranch at_error_rev_end,positive
+	and pdata,0x3,pdata
+	store 1,mem_module_state
+	branch at_nomal_rev_end
+
+at_rev_class_set:
+	ifetch 3,contru
+	store 3,mem_class
+	branch at_nomal_rev_end
+	
+at_rev_role_set:
+	call context_check_idle
+	nbranch at_error_rev_end,zero
+	ifetch 1,contru
+	beq 0x53,at_role_slave
+	beq 0x4D,at_role_master
+	branch at_error_rev_end
+	
+at_role_slave:
+	fetch 1,mem_context+coffset_mode
+	bbit1 mode_master,at_switch_role
+	branch at_error_rev_end
+	
+at_role_master:
+	fetch 1,mem_context+coffset_mode
+	bbit0 mode_master,at_switch_role
+	branch at_error_rev_end
+	
+at_switch_role:
+	fetch 1,mem_module_task
+	set1 AT_TASK_SWITCH,pdata
+	store 1,mem_module_task
+	jam hci_cmd_role_switch,mem_hci_cmd
+	branch at_rev_end
+
+at_rev_sniff_set:
+	arg mem_sniff_param_interval,contw
+	call mem2_string2hex_from_uart
+	arg mem_sniff_param_attempt,contw
+	call mem2_string2hex_from_uart
+	arg  mem_sniff_param_timeout,contw
+	call mem2_string2hex_from_uart
+	branch at_nomal_rev_end
+
+at_rev_list_set:
+	ifetch 1,contru
+	beq 0x31,at_rev_list_set_1
+	beq 0x32,at_rev_list_set_2
+	branch at_error_rev_end
+at_rev_list_set_1:
+	ifetch 1,contru
+	arg mem_temp_lap,contw
+	call adss_string2hex_from_uart
+	call  eeprom_clear_bd_reconn_info
+	nrtn user
+	branch at_nomal_rev_end
+at_rev_list_set_2:
+	call eeprom_clear_all_reconn_info
+	branch at_nomal_rev_end
+	
+at_rev_cmode_set:
+	ifetch 1,contru
+	fetcht 1,mem_module_state
+	nsetflag blank,AT_STATE_CMODE,temp
+	storet 1,mem_module_state
+	branch at_nomal_rev_end,blank
+	ifetch 1,contru
+	arg mem_cmode_addr,contw
+	call adss_string2hex_from_uart
+	branch at_nomal_rev_end
+
+at_rev_ota_process:
+	set1 mark_ext_patch,mark
+	bpatch patch32_6,mem_patch32
+	arg 20,loopcnt
+	arg mem_l2cap_rxbuff1,contw
+	call uart_copy_rx_bytes
+	arg mem_l2cap_rxbuff1,rega
+	fetch 1,mem_l2cap_rxbuff1
+	compare OTA_WRITE_REQ,pdata,0xff
+	call prcp_parse_ota_write_req,true
+	fetch 1,mem_l2cap_rxbuff1
+	compare OTA_END_CMD,pdata,0xff
+	call prcp_parse_ota_end_cmd,true
+	branch at_nomal_rev_end
+	
+
+/***********************************at  INQUIRY******************************/
+/****************name****************/
+at_group_name_inquiry:
+	arg mem_prarm_name,rega
+	arg 4,loopcnt
+	call at_group_inquiryhead_common
+	fetch 1,mem_local_name_length
+	copy pdata,loopcnt
+	arg mem_local_name,contr
+	branch send_mem_to_uart0
+at_group_le_name_inquiry:
+	arg mem_prarm_blename,rega
+	force 7,loopcnt
+	call at_group_inquiryhead_common
+	call le_get_device_name
+	ifetch 1,contr	
+	copy pdata,loopcnt
+	branch send_mem_to_uart0
+	
+/****************adss****************/
+at_group_adss_inquiry:
+	arg mem_prarm_adss,rega
+	arg 4,loopcnt
+	call at_group_inquiryhead_common
+	arg mem_lap,rega
+	call adss_hex2string_to_uart
+	branch uartd_send
+at_group_leadss_inquiry:
+	arg mem_prarm_bleadss,rega
+	arg 7,loopcnt
+	call at_group_inquiryhead_common
+	arg mem_le_lap,rega
+	call adss_hex2string_to_uart
+	branch uartd_send
+
+/****************vers****************/
+at_group_version_inquiry:
+	arg mem_prarm_vers,rega
+	arg 4,loopcnt
+	call at_group_inquiryhead_common
+	arg 6,loopcnt
+	arg mem_module_version,contr
+	branch send_mem_to_uart0
+/****************class****************/
+at_group_class_inquiry:
+	arg mem_prarm_class,rega
+	arg 5,loopcnt
+	call at_group_inquiryhead_common
+	arg 3,loopcnt
+	arg mem_class,contr
+	branch send_mem_to_uart0
+/****************list****************/
+at_group_list_inquiry:
+	arg mem_prarm_list,rega
+	arg 4,loopcnt
+	call at_group_inquiryhead_common
+	call eeprom_load_bdaddr_list
+	call at_group_list_reply
+	branch uartd_send
+
+/****************ldev****************/
+at_group_ldev_inquiry:
+	call eeprom_load_reconn_bdaddr
+	arg mem_prarm_ldev,rega
+	arg 4,loopcnt
+	call at_group_inquiryhead_common
+	fetch 1,mem_record_bt_mode
+	beq REC_3_MODE,at_group_ldev_inquiry0
+	beq REC_4_MODE,at_group_ldev_inquiry0
+	branch uartd_send
+at_group_ldev_inquiry0:	
+	istore 1,contwu
+	call at_rev_uart_write_44
+	arg mem_temp_lap,rega
+	call adss_hex2string_to_uart
+	branch uartd_send
+/****************rssi****************/
+at_group_rssi_inquiry:
+	set1 mark_ext_patch,mark
+	bpatch patch32_7,mem_patch32
+	arg mem_prarm_rssi,rega
+	arg 4,loopcnt
+	call at_group_inquiryhead_common
+	call at_rssi_result
+	branch uartd_send
+at_rssi_result:
+	arg mem_rssi,rega
+	arg 1,loopcnt
+	branch hex2string_to_uart0
+/****************cdev****************/
+at_group_cdev_inquiry:
+	rtn
+
+/****************cmode****************/
+at_group_cmode_inquiry:
+	arg mem_prarm_cmode,rega
+	arg 5,loopcnt
+	call at_group_inquiryhead_common
+	arg mem_cmode_addr,rega
+	call adss_hex2string_to_uart
+	branch uartd_send
+
+/****************dmstate****************/
+at_group_dmstate_inquiry:
+	arg mem_prarm_dmstate,rega
+	arg 7,loopcnt
+	call at_group_inquiryhead_common
+	fetch 1,mem_module_state
+	copy pdata,rega
+	fetch 1,mem_context
+	isolate1 state_inconn,pdata
+	setflag true,AT_STATE_ISCONN,rega
+	isolate1 state_insniff,pdata
+	setflag true,AT_STATE_SNIFF,rega
+	fetch 1,mem_context+coffset_mode
+	isolate1 mode_master,pdata
+	setflag true,AT_STATE_ROLE,rega
+	isolate1 mode_le,pdata
+	setflag true,AT_STATE_LE,rega
+	copy rega,pdata
+	istore 1,contwu
+	branch uartd_send
+
+do_at_inquiry:
+	setarg param_glap
+	store 3,mem_glap
+	fetch 1,mem_at_using_flag
+	set1 AT_FLAG_INQ,pdata
+	store 1,mem_at_using_flag
+	branch do_at_inquiry0
+	
+do_at_leinquiry:
+	call app_check_conn_device_nums_addr
+	fetch 1,mem_device_nums
+	bne 0,at_error_rev_end
+	call app_ble_start_scan
+	fetch 1,mem_at_using_flag
+	set1 AT_FLAG_LEINQ,pdata
+	store 1,mem_at_using_flag
+	setarg 0x200
+	store 2,mem_at_scan_time
+	arg mem_prarm_bleinqr,rega
+	arg 6,loopcnt
+	call at_group_inquiryhead_common
+	call send_mem_to_uart0
+	branch at_rev_end
+
+
+/****************pswd****************/
+at_group_pswd_inquiry:
+	arg mem_prarm_pswd,rega
+	arg 4,loopcnt
+	call at_group_inquiryhead_common
+	fetch 1,mem_pin_length
+	copy pdata,loopcnt
+	arg mem_pin,contr
+	branch send_mem_to_uart0
+
+
+/*****************sniff*********************/
+at_group_sniff_inquiry:
+	arg mem_prarm_sniff,rega
+	arg 5,loopcnt
+	call at_group_inquiryhead_common
+	call at_rev_uart_write_62
+	setarg 84//T
+	istore 1,contwu
+	call at_rev_uart_write_colon
+	arg mem_sniff_param_interval,rega
+	call mem2_hex2string_to_uart
+	call at_rev_uart_write_62
+	setarg 65//A
+	istore 1,contwu
+	call at_rev_uart_write_colon
+	arg mem_sniff_param_attempt,rega
+	call mem2_hex2string_to_uart
+	call at_rev_uart_write_62
+	setarg 79//O
+	istore 1,contwu
+	call at_rev_uart_write_colon
+	arg mem_sniff_param_timeout,rega
+	call mem2_hex2string_to_uart
+	branch send_mem_to_uart0
+at_inquiry_reply:
+	call get_uart_twptr
+	call at_rev_uart_write_62
+	arg extm_lap,rega
+	call adss_hex2string_to_uart
+	call at_rev_uart_write_44
+	arg extm_class,rega
+	call mem3_hex2string_to_uart
+	call at_rev_uart_write_44
+	call at_rssi_result
+	branch uartd_send
+
+/*********************at do*************************/
+
+
+	
+/**************************************at inline*************************************/
+
+//input:rega length:loopcnt 
+//rtn:length:temp
+//note:at_rev_adss_set not use this
+at_set_common:
+	call at_set_setprarm
+	branch uart_copy_rx_bytes
+at_set_setprarm:
+	call uart_get_remain_length
+	copy pdata,temp
+	copy pdata,loopcnt
+	copy rega,contw
+	rtn
+
+//input:loopcnt 	contxt:rega
+at_group_inquiryhead_common:
+	call get_uart_twptr
+	call at_rev_uart_write_plus
+at_group_inquiryhead_common0:
+	copy rega,contr
+	call uart_copy_tx_bytes
+	branch at_rev_uart_write_colon
+
+	
+string_compare_uart_follow:
+	ifetch 1,contru
+	ifetcht 1,regb
+	isub temp,null
+	disable true
+	nbranch string_compare_uart_follow_diff, zero
+	increase 1,regb
+	loop string_compare_uart_follow
+	enable true
+	rtn
+string_compare_uart_follow_diff:
+	branch restore_contru
+
+
+at_rev_uart_write_plus:
+	setarg UI_PLUS
+	istore 1,contwu
+	rtn
+
+at_rev_uart_write_colon:
+	setarg UI_COLON
+	istore 1,contwu
+	rtn
+
+//>
+at_rev_uart_write_62:
+	setarg 62
+	istore 1,contwu
+	rtn
+at_rev_uart_write_N:
+	setarg 78
+	istore 1,contwu
+	call uartd_send
+	branch at_nomal_rev_end
+
+
+//,
+at_rev_uart_write_44:
+	setarg AT_COMMA
+	istore 1,contwu
+	rtn
+	
+restore_contru:
+	copy rega,contru
+	rtn
+
+at_group_list_reply:
+	arg mem_bdaddr_list_buff+7,regc
+	arg 4,loopcnt
+at_group_list_reply_loop:
+	copy loopcnt,pdata
+	store 1,mem_pdatatemp
+	ifetch 1,regc
+	beq REC_3_MODE,at_group_list_isrecord
+	beq REC_4_MODE,at_group_list_isrecord
+	branch at_group_list_notrecord
+at_group_list_isrecord:
+	call at_rev_uart_write_62
+	ifetch 1,regc
+	istore 1,contwu
+	increase 1,regc
+	call at_rev_uart_write_44
+	copy regc,rega
+	call adss_hex2string_to_uart
+at_group_list_notrecord0:
+	increase 6,regc
+	fetch 1,mem_pdatatemp
+	copy pdata,loopcnt
+	loop at_group_list_reply_loop
+	rtn
+at_group_list_notrecord:
+	increase 1,regc
+	branch at_group_list_notrecord0
+	
+	
+//rtn remain length
+uart_get_remain_length:
+	set1 mark_ext_patch,mark
+	bpatch patch33_0,mem_patch33
+	hfetch  2,core_uart_rrptr
+	isub contru,pdata
+	rtn zero
+	branch uart_get_remain_length0,positive
+uart_get_remain_length_common:
+	fetcht 2,mem_current_packet_length
+	iadd temp,pdata
+	increase -2,pdata
+	rtn
+uart_get_remain_length0:
+	call uart_get_rx_buff_length
+	iadd contru,temp
+	hfetch  2,core_uart_rrptr
+	isub temp,pdata
+	branch uart_get_remain_length_common
+
+uart_get_rx_buff_length:
+	arg mem_module_rx_buf_end,pdata
+	increase  1,pdata
+	arg mem_module_rx_buf,temp
+	isub temp,pdata
+	rtn
+
+release_packet:
+	fetcht 2,mem_current_packet_length
+	branch uartd_rxdone_by_len
+
+
+
+/********at_rev_end********/
+at_error_rev_end:
+	set1 mark_ext_patch,mark
+	bpatch patch33_1,mem_patch33
+	call get_uart_twptr
+	setarg 0x525245	//write err
+	istore 3,contwu
+	call uartd_send
+	branch at_rev_end
+	
+at_nomal_rev_end:
+	set1 mark_ext_patch,mark
+	bpatch patch33_2,mem_patch33
+	call get_uart_twptr
+	setarg 0x4b4f	//write ok
+	istore 2,contwu
+	call uartd_send
+spp_send_end:
+at_rev_end:
+	set1 mark_ext_patch,mark
+	bpatch patch33_3,mem_patch33
+	call release_packet
+spp_ipc_end:
+	setarg 0
+	store 2,mem_current_packet_length
+	store 4,mem_last_uart_clock
+	rtn
+else
+
+at_app_dispatch:
+at_check_state:
+at_process:
+at_ble_dispatch:
+at_unble_dispatch:
+at_rev_name:
+at_rev_name_inquiry:
+at_rev_adss:
+at_rev_adss_inquiry:
+at_rev_vers:
+at_rev_vers_inquiry:
+at_rev_uart:
+at_rev_uart_inquiry:
+at_rev_pswd:
+at_rev_pswd_inquiry:
+at_rev_class:
+at_rev_class_inquiry:
+at_rev_clrcfg:
+at_rev_name_set:
+at_ble_name_set:
+at_rev_adss_set:
+at_ble_adss_set:
+at_rev_adss_set_common:
+at_rev_pswd_set:
+at_rev_uart_set:
+at_rev_class_set:
+at_group_name_inquiry:
+at_group_adss_inquiry:
+at_group_version_inquiry:
+at_group_class_inquiry:
+at_group_uart_inquiry:
+at_baud_get:
+at_group_pswd_inquiry:
+at_unknow_command:
+at_reset:
+at_set_common:
+at_set_setprarm:
+	branch assert
+at_group_inquiryhead_common:
+at_group_inquiryhead_common0:
+string_compare_uart_follow:
+string_compare_uart_follow_diff:
+at_rev_uart_write_plus:
+at_rev_uart_write_colon:
+restore_contru:
+uart_Juge_apacket:
+uart_packet_first_char:
+uart_get_remain_length:
+uart_get_remain_length_common:
+uart_get_remain_length0:
+uart_get_rx_buff_length:
+release_packet:
+at_error_rev_end:
+at_nomal_rev_end:
+at_rev_end:
+spp_send_end:
+at_inquiry_reply_eir:
+at_rssi_result:
+at_inquiry_reply:
+	branch assert
+
+ 
+endif
+
Index: btkb/program/bt.prog
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/btkb/program/bt.prog	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/btkb/program/bt.prog	(working copy)
@@ -0,0 +1,4854 @@
+define REVD
+//define FPGA
+define PATCH
+define ROMCODE
+//define RAM_VERSION
+//define CLK6M
+//define DEBUG_MALLOC
+//define DEBUG_H4LOG_ENABLE
+//define DEBUG_LIGHT_STATE
+//define E2_LOG
+//define LMP_DBG
+
+define SIMPLE_PAIRING
+define COMPILE_RFCOMM
+define COMPILE_SHUTTER
+define COMPILE_HCI_BCSP
+define COMPILE_IR
+define COMPILE_KEYBOARD
+define COMPILE_MOUSE
+define COMPILE_MODULE
+define COMPILE_AT
+define COMPILE_PRCP
+define COMPILE_USB
+define COMPILE_DONGLE
+define COMPILE_LE
+
+INCLUDE "bt_format"
+
+org 0x0000		// start from patch ram address start
+ifdef ROMCODE
+ifdef SIM
+include sim.prog
+else
+include patch.prog
+endif
+
+/******************************************/
+/***********   ROM Start   ***************/
+/******************************************/
+
+ifdef RAM_VERSION
+org 0x4000
+else
+org 0x3000		// start from rom address start
+endif
+start:
+	call lpmstate
+else
+
+/******************************************/
+/***********   RAM Start   ***************/
+/******************************************/
+
+start:
+	setarg 0xef21
+	hstore 2,core_clkoff
+	hfetch 8,core_gpio_wakeup_low
+	store 8,mem_gpio_wakeup_low
+	hfetch 1,core_misc_status
+	bbit1 2,soft_reset				// skip wake process if loaded by e
+	fetch 4,mem_sleep_counter
+	arg -1,rega
+	isub rega,null
+	nbranch soft_reset,zero
+	deposit auxcnt
+	branch lpm_hibernate,blank	// continue to hibernate
+	disable wake
+endif
+
+
+soft_reset:
+	set0 mark_ext_patch,mark
+	bpatch patch00_0,mem_patch00
+	clear_stack
+	call initialize_radio
+	call iicd_init_12m
+	call init_param
+	call l2cap_init
+	set0 mark_ext_patch,mark
+	bpatch patch00_1,mem_patch00
+	call rfcomm_init
+	call init_lmp
+	call ui_init
+	call app_init
+	set0 mark_ext_patch,mark
+	bpatch patch00_2,mem_patch00
+	call app_lpm_init,wake
+ifdef SIMPLE_PAIRING
+	call sp_initialize
+else
+	call ssp_disable
+endif
+	call lpm_recover_clk,wake
+main_loop:	
+	set0 mark_ext_patch,mark
+	bpatch patch00_3,mem_patch00
+ifdef SIMPLE_PAIRING
+	call sp_calc_sequence
+endif
+	call le_dispatch
+	call hci_dispatch
+	set0 mark_ext_patch,mark
+	bpatch patch00_4,mem_patch00
+	call idle_dispatch
+	call app_process_idle
+	call inquiry_dispatch
+	set0 mark_ext_patch,mark
+	bpatch patch00_5,mem_patch00
+	call inquiry_scan_dispatch
+	call page_scan_dispatch
+	call connection_dispatch
+	call lpm_dispatch
+	branch main_loop
+
+connection_dispatch:
+	call connection_incontext
+	rtnmark0 mark_context
+	set0 mark_context,mark
+	call context_save
+	branch le_disable
+	
+connection_incontext:
+	set0 mark_ext_patch,mark
+	bpatch patch00_6,mem_patch00
+	call context_search_insniff
+	nbranch connection_nosniff,zero
+	call context_load
+	add rega,coffset_mode,contr
+	ifetch 1,contr
+	bbit1 mode_le,le_conn_dispatch
+	bbit1 mode_master, master_dispatch
+	branch slave_dispatch
+connection_nosniff:
+	set0 mark_ext_patch,mark
+	bpatch patch00_7,mem_patch00
+	call context_get_next
+	copy loopcnt,null
+	rtn zero
+	call context_load
+	fetch 1,mem_state
+	bbit1 state_inpage,master_page
+	fetch 1,mem_mode
+	bbit1 mode_master, master_dispatch
+	branch slave_dispatch
+
+
+
+/**************************************/
+/**************idle dispatch*********/
+/**************************************/
+	
+idle_dispatch:
+	fetch 1,mem_hci_cmd
+	rtn blank
+	beq hci_cmd_inquiry,idle_inquiry
+	beq hci_cmd_inquiry_cancel,idle_inquiry_cancel
+	beq hci_cmd_remote_name_req,idle_remote_name_req
+	beq hci_cmd_create_conn,idle_create_conn
+	beq hci_cmd_le_create_conn,idle_le_create_conn
+	call context_search_conn_handle
+	rtn zero
+	call context_search_plap
+	rtn zero
+idle_exit:
+	jam 0,mem_hci_cmd
+	rtn
+
+idle_le_create_conn:
+	jam hci_cmd_le_create_conn,mem_cmd_le_create_conn
+	jam 0,mem_hci_cmd
+	rtn
+	
+idle_inquiry:
+	set1 mark_inquiry_on,mark
+	set0 mark_inquiry_trainb,mark
+	jam param_ninquiry,mem_ninqy_index
+	jam 31,mem_nfreq_index_inq
+	branch idle_exit
+
+idle_inquiry_cancel:
+	set0 mark_inquiry_on,mark
+	force 0,stop_watch
+	branch idle_exit
+
+idle_remote_name_req:
+	call context_search_plap
+	rtn zero
+	force LMP_NAME_REQ,temp
+	jam 5,mem_nameres_cnt
+	branch idle_start_page
+
+idle_create_conn:
+	set0 mark_ext_patch,mark
+	bpatch patch01_0,mem_patch01
+	fetch 1,mem_device_option
+	beq dvc_op_hci,idle_create_conn_hci
+idle_create_conn_device:
+	fetch 6,mem_hci_plap
+	branch idle_exit,blank
+	jam RECONNECT_HID,memui_reconnect_mode
+	//jam HS_INIT_CALL,mem_hs_mode //init as master
+	jam CONN_SM_WAIT_FEATURES_RES,mem_conn_sm
+	branch idle_create_conn_cont
+	
+idle_create_conn_hci:
+	fetch 6,mem_hci_plap
+	branch idle_exit,blank
+	store 6,mem_plap
+idle_create_conn_cont:
+	force LMP_VERSION_REQ,temp
+idle_start_page:
+	set0 mark_ext_patch,mark
+	bpatch patch01_1,mem_patch01
+	fetch 1,mem_page_mode
+	branch idle_page_mode_r0,blank
+	lshift3 pdata,pdata
+	lshift4 pdata,pdata
+	increase -1,pdata
+idle_page_mode_r0:
+	store 1,mem_npage
+	store 1,mem_npage_index
+	jam 31,mem_nfreq_index_page
+	set0 mark_page_trainb,mark
+	call context_new
+	nbranch idle_page_fail,zero
+	call get_free_amaddr
+	store 1,mem_amaddr
+	storet 1,mem_lmo_opcode2
+	fetch 6,mem_hci_plap
+	store 6,mem_plap
+	set0 mark_ext_patch,mark
+	bpatch patch01_2,mem_patch01
+	force 0,pdata
+	compare LMP_NAME_REQ,temp,0xff
+	nsetflag true,state_init_seq,pdata
+	set1 state_inpage,pdata
+	store 1,mem_state
+	jam BT_EVT_RECONN_STARTED,mem_fifo_temp
+	call ui_ipc_send_event
+	force 0,pdata
+	setflag true,smap_name_req,pdata
+	store 1,mem_state_map
+	setarg 0
+	set1 mode_master,pdata
+	store 1,mem_mode
+	enable master
+	call context_save
+	disable master
+	force page_length_timer,queue
+	fetch 2,mem_page_to
+	call timer_init
+	branch idle_exit
+idle_page_fail:
+	set0 mark_ext_patch,mark
+	bpatch patch01_3,mem_patch01
+	fetch 6,mem_hci_plap
+	store 6,mem_plap
+	compare LMP_NAME_REQ,temp,0xff
+	branch idle_name_fail,true
+	force HCI_ERROR_MEMORY_FULL,temp
+	call hci_send_connection_error
+	branch idle_exit
+idle_name_fail:
+	arg mem_tmp_buffer,contw
+	arg 8,loopcnt
+	call memset0
+	force HCI_ERROR_MEMORY_FULL,queue
+	call hci_send_name
+	jam BT_EVT_RECONN_FAILED,mem_fifo_temp
+	call ui_ipc_send_event
+	branch idle_exit
+	
+
+/******************************************/
+/**************  Inquiry  *****************/
+/******************************************/
+
+inquiry_dispatch:
+	rtnmark0 mark_inquiry_on
+	force inquiry_length_timer,queue
+	call timer_check
+	nsetflag blank,mark_inquiry_on,mark
+	nbranch inquiry_start,blank
+	rtn
+	
+
+
+inquiry_start:
+	set0 mark_ext_patch,mark
+	bpatch patch01_4,mem_patch01
+	fetcht 2,mem_inq_window
+	force 4,queue
+	call sniff_check_window
+	rtn user
+	call afh_clear
+	force 0,freq_mode
+inquiry_restart:
+	rtn timeout
+	set0 mark_fhs_already_good,mark
+	set0 mark_fhs_eir,mark
+inquiry_rx_restart:
+	add clkn_bt,1,bt_clk
+	isolate1 mark_inquiry_trainb,mark
+	setflag true,2,freq_mode
+	compare 0x00,bt_clk,0x02      /* see if this is even slot */
+	nbranch inquiry_receive,true
+
+inquiry_transmit:
+	set0 mark_ext_patch,mark
+	bpatch patch01_5,mem_patch01
+	fetch 1,mem_inquiry_transmit
+	increase 1,pdata
+	store 1,mem_inquiry_transmit
+	call fetch_giac
+	call tx_radio_freq
+	call fetch_diac
+	call start_transmitter	/* get ready for that id packet */
+	call start_tx_native
+	call send_access_word
+	call end_of_packet
+	call inquiry_check_train
+	branch inquiry_restart
+
+inquiry_check_train:
+	set0 mark_ext_patch,mark
+	bpatch patch01_6,mem_patch01
+	fetch 1,mem_nfreq_index_inq
+	increase -1,pdata
+	store 1,mem_nfreq_index_inq
+	rtn positive  /* if it's time to incremnt N */
+	jam 31,mem_nfreq_index_inq
+	fetch 1,mem_ninqy_index
+	increase -1,pdata
+	store 1,mem_ninqy_index
+	rtn positive      /* if it's time to change train */
+	setflip mark_inquiry_trainb,mark
+	jam param_ninquiry,mem_ninqy_index
+	rtn
+
+inquiry_receive:
+	set0 mark_ext_patch,mark
+	bpatch patch01_7,mem_patch01
+	call fetch_giac
+	call rx_radio_freq
+	call fetch_diac
+	call start_rx_native
+	call start_receiver	/* get ready for that id packet */
+	call wait_access_clkn_rt
+	branch inquiry_sync,sync   /* try look for id packet again if not found */
+	call inquiry_check_train
+	branch inquiry_rx_restart
+inquiry_sync:
+	set0 mark_ext_patch,mark
+	bpatch patch02_0,mem_patch02
+	call save_rssi
+	call scan_mode_whiten
+	call receive_packet_whitened
+	set0 mark_rxbuf_inuse,mark
+	rtnmark0 mark_fhs_already_good
+inquiry_receive_rtn:
+	set0 mark_ext_patch,mark
+	bpatch patch02_1,mem_patch02
+	fetch 1,mem_at_using_flag
+	bbit1 AT_FLAG_INQ,at_inquiry_reply
+	call hci_inquiry_reply
+inquiry_receive_eir_rtn:
+	fetch 1,mem_inquiry_rcv
+	increase 1,pdata
+	store 1,mem_inquiry_rcv
+	rtn
+inquiry_receive_eir:
+	set0 mark_fhs_already_good,mark
+	call rf_setup_time_slave_slot_eir
+	call fetch_giac
+	call rx_radio_freq
+	call init_rx_packet_flags
+	call start_rx_native	/* start listening at start_rx time */
+	call start_receiver
+	call wait_access_clkn_rt
+	branch inquiry_receive_eir_packet,sync   /* try look for id packet again if not found */
+	rtn
+inquiry_receive_eir_packet:
+	call scan_mode_whiten
+	call receive_packet_whitened
+	set0 mark_rxbuf_inuse,mark		/*open recive pkt*/
+	branch inquiry_receive_rtn,crc_failed
+	call hci_inquiry_reply_eir
+	branch inquiry_receive_eir_rtn
+	
+rf_setup_time_slave_slot_eir:
+	arg param_rf_setup, timeup
+rf_setup_time_eir:
+	until clkn_rt,meet
+	and clkn_bt,3,pdata
+	bne 1,rf_setup_time_eir
+	rtn
+	
+	
+/******************************************/
+/**************  Master Dispatch  *************/
+/******************************************/
+
+
+
+master_page:
+	set0 mark_ext_patch,mark
+	bpatch patch02_2,mem_patch02
+	enable master
+	enable clknt
+	fetch 2,mem_page_interval
+	branch master_page_no_interval,blank
+	force page_interval_timer,queue
+	call timer_check               
+	nrtn blank
+master_page_no_interval:
+	set0 mark_ext_patch,mark
+	bpatch patch02_3,mem_patch02
+	fetcht 2,mem_page_window
+	force 40,queue
+	call sniff_check_window
+	branch page_exit,user
+	force page_length_timer,queue
+	call timer_check
+	nbranch page_start,blank
+	fetch 1,mem_state_map
+	bbit1 smap_name_req,master_npage_timeout
+	force HCI_ERROR_PAGE_TIMEOUT,temp
+	call hci_send_connection_error
+	branch master_page_timeout
+master_npage_timeout:
+	arg mem_tmp_buffer,contw
+	arg 8,loopcnt
+	call memset0
+	force HCI_ERROR_PAGE_TIMEOUT,queue
+	call hci_send_name
+master_page_timeout:
+	set0 mark_ext_patch,mark
+	bpatch patch02_4,mem_patch02
+	jam 0,mem_state
+	call init_lmp_work
+	jam 0,memui_reconnect_mode
+	jam BT_EVT_RECONN_PAGE_TIMEOUT,mem_fifo_temp
+	call ui_ipc_send_event	
+	branch page_exit
+
+page_start:
+	set0 mark_ext_patch,mark
+	bpatch patch02_5,mem_patch02
+	force 0,timeup
+	until clkn_rt,meet
+	fetch 1,mem_page_clk
+	increase -1,pdata
+	ixor clkn_bt,pdata
+	compare 0,pdata,3
+	nbranch page_start,true
+	deposit am_addr
+	store 1,mem_fhs_am_addr
+	force 0,N_tx_slot
+	force 0,freq_mode
+
+page_restart:
+	set0 mark_ext_patch,mark
+	bpatch patch02_6,mem_patch02
+	branch page_exit,timeout
+	call fetch_page_bt_adr
+	arg param_rf_setup, timeup
+	until clkn_rt,meet         /* wait for the start_receiver time against native real clk  */
+page_rx_restart:
+	set0 mark_ext_patch,mark
+	bpatch patch02_7,mem_patch02
+	fetch 4,mem_page_clk    /* deposit clk_estimate */
+	iforce bt_clk
+	increase 1,pdata
+	store 4,mem_page_clk
+	isolate1 mark_page_trainb,mark
+	setflag true,2,freq_mode
+	compare 0x00,bt_clk,0x02      /* see if this is even slot */
+	nbranch page_receive,true
+	fetch 1, mem_page_transmit
+	increase 1,pdata
+	store 1, mem_page_transmit
+	call tx_radio_freq
+	call start_transmitter	/* get ready for that id packet */
+	call start_tx_native
+	call send_access_word
+	call end_of_packet
+	call page_check_train
+	branch page_restart	
+master_dispatch_exit:
+page_exit:
+	set0 mark_ext_patch,mark
+	bpatch patch03_0,mem_patch03
+	disable master
+	fetch 2,mem_page_interval      
+	rtn blank
+	force page_interval_timer,queue
+	branch timer_init              
+
+page_check_train:
+	set0 mark_ext_patch,mark
+	bpatch patch03_1,mem_patch03
+	fetch 1,mem_nfreq_index_page
+	increase -1,pdata
+	store 1,mem_nfreq_index_page
+	rtn positive
+	jam 31,mem_nfreq_index_page
+	fetch 1,mem_npage_index
+	increase -1,pdata                 /* increment N */
+	store 1,mem_npage_index
+	rtn positive      			/* if it's time to change train */
+	setflip mark_page_trainb,mark             /* change train */
+	fetch 1,mem_npage
+	store 1,mem_npage_index
+	rtn
+	
+page_receive:
+	set0 mark_ext_patch,mark
+	bpatch patch03_2,mem_patch03
+	call rx_radio_freq
+	call start_rx_native
+	call start_receiver	/* get ready for that id packet */
+	call wait_access_clkn_rt	/* try id look for id packet again */
+	branch page_sync,sync         /* restart if didn't receive anything */
+	call page_check_train
+	branch page_rx_restart
+page_sync:
+	call end_of_packet
+	fetch 1, mem_page_rcv
+	increase 1,pdata
+	store 1, mem_page_rcv
+	force 0,stop_watch
+	fetch 4,mem_page_clk
+page_send_fhs:
+	set0 mark_ext_patch,mark
+	bpatch patch03_3,mem_patch03
+	call rf_setup_time_master_slot
+	call fetch_page_bt_adr
+	increase 1,N_tx_slot
+page_send_fhs_continue:
+	and_into 0x1fd,bt_clk
+	and_into 0x1fc,freq_mode               /* master response = x00, even_train settin must remain the same */
+	call tx_radio_freq
+	call start_transmitter	/* get ready for that id packet */
+	call start_tx_native
+	call send_access_word
+	deposit clkn_bt
+	store 4,mem_clkn_bt
+	force 0,am_addr
+	force type_fhs,type
+	call scan_mode_whiten
+	call transmit_packet_whitened
+page_wait_fhs_reply:
+	set0 mark_ext_patch,mark
+	bpatch patch03_4,mem_patch03
+	call rf_setup_time_slave_slot
+	or_into 0x02,bt_clk
+	and_into 0x1fc,freq_mode               /* master response sequence = x00, even train setting must be preserved */
+	call rx_radio_freq
+	call start_rx_native
+	call start_receiver	/* get ready for that id packet */
+	call wait_access_clkn_rt	/* look for that reply */
+	call end_of_packet,sync              /* id reply is enough */
+	branch page_wait_fhs_reply_ok,sync           /* no reply then send fhs again */
+	fetch 1,mem_fhs_wait_counter
+	branch page_restart,blank
+	increase -1,pdata
+	store 1,mem_fhs_wait_counter
+	branch page_send_fhs
+	
+page_wait_fhs_reply_ok:
+	set0 mark_ext_patch,mark
+	bpatch patch03_5,mem_patch03
+	fetch 1, mem_page_rcv_fhs
+	increase 1,pdata
+	store 1, mem_page_rcv_fhs
+	call prepare_newconn
+master_newconn_loop:
+	call master_newconn_once
+	branch newconn_poll_responded,sync
+	call new_conn_timeout
+	nbranch master_newconn_loop,blank
+	branch page_restart
+
+newconn_poll_responded:
+	set0 mark_ext_patch,mark
+	bpatch patch03_6,mem_patch03
+	fetch 1,mem_state
+	set0 state_inpage,pdata
+	store 1,mem_state
+	call newconn_init
+	disable master
+	rtn
+	
+
+master_dispatch:
+	set0 mark_ext_patch,mark
+	bpatch patch03_7,mem_patch03
+	enable master
+	enable clknt
+	call role_switch_master
+	rtn user
+	call check_bt_disabled
+	call rf_setup_time_master_slot
+	add clkn_bt,1,bt_clk
+	call fetch_self_bt_adr
+	force 0x03,freq_mode
+	call load_esco
+	call get_sco_data
+	call scheduler_tx_l2cap_pkt
+	call prepare_tx
+	call tx_radio_freq
+	call start_transmitter
+	call start_tx_native
+	call send_access_word
+	call transmit_packet
+master_loop:
+	set0 mark_ext_patch,mark
+	bpatch patch04_0,mem_patch04
+	call parse_lmp
+	call process_cmd
+	call hci_send_num_complete_packets
+	call master_conn_recv_packet
+	nbranch master_notmatch,match
+	call supervision_flush
+	call parse_l2cap
+	fetch 1,mem_master_rcvcnt
+	increase 1,pdata
+	store 1,mem_master_rcvcnt
+master_notmatch:
+	set0 mark_ext_patch,mark
+	bpatch patch04_1,mem_patch04
+	call scheduler_process
+	call check_master_disconnect
+	nrtn master					/* disconnected */
+	call check_attempt
+	nbranch master_attempt,blank
+master_exit:
+	call process_sco_data
+	call restore_esco
+	disable master
+	rtn
+
+master_attempt:
+	call prepare_tx
+	call master_conn_send_packet
+	branch master_loop
+
+
+check_master_disconnect:
+	branch check_master_match,match
+	call supervision_update
+	branch master_disconnect,positive
+check_master_match:
+	call check_disconnect_timeout
+	nbranch master_disconnect,user
+	fetch 1,mem_state_map
+	rtnbit0 smap_name_req
+	rtnbit1 smap_name_res
+	fetch 1,mem_op
+	rtnbit1 op_disconn
+	call conn_timer_expired
+	nrtn blank
+	fetch 1,mem_nameres_cnt
+	increase -1,pdata
+	store 1,mem_nameres_cnt
+	nrtn blank
+	branch lmp_disconnect
+
+master_disconnect:
+	set0 mark_ext_patch,mark
+	bpatch patch04_2,mem_patch04
+	call quit_connection
+	disable master
+	fetch 1,mem_state_map
+	bbit1 smap_name_req,master_name_disconnect
+	fetch 1,mem_state
+	bbit0 state_conn_comp,master_disconnect_quiet
+	fetcht 1,mem_conn_handle
+	branch hci_send_disconn_complete
+master_disconnect_quiet:
+	force HCI_ERROR_CONNECTION_TIMEOUT,temp
+	branch hci_send_connection_error
+master_name_disconnect:
+	force HCI_SUCCESS,queue
+	fetch 1,mem_state_map
+	bbit1 smap_name_res,hci_send_name
+master_name_error:
+	force HCI_ERROR_PAGE_TIMEOUT,queue
+	arg mem_tmp_buffer,contw
+	arg 8,loopcnt
+	call memset0
+	branch hci_send_name
+	
+disconnect_stop_sco:
+	set0 mark_ext_patch,mark
+	bpatch patch04_3,mem_patch04
+	fetch 1,mem_state
+	rtnbit0 state_insco
+	fetcht 1,mem_conn_handle
+	fetch 1,mem_sco_asso_handle
+	isub temp,null
+	nrtn zero
+	call stop_esco  //include sco
+	branch restore_esco_check_no_mark
+
+check_disconnect_timeout:
+	set0 mark_ext_patch,mark
+	bpatch patch04_4,mem_patch04
+	enable user
+	fetch 1,mem_op
+	rtnbit0 op_disconn
+	call conn_timer_expired
+	nrtn blank
+disable_usr:
+	disable user
+	rtn
+
+conn_timer_expired:
+	fetch 1,mem_conn_timer
+	increase -1,pdata
+	store 1,mem_conn_timer
+	rtn
+
+linkkey_ready:
+	set0 mark_ext_patch,mark
+	bpatch patch04_5,mem_patch04
+	fetch 1,mem_state
+	bbit1 state_linkkey,linkkey_set
+	fetch 1,mem_device_option
+	beq dvc_op_hci,linkkey_send_hci
+	fetch 1,mem_pairing_auth
+	branch linkkey_set,blank
+	jam DEFALT_PAIRING_AUTH,mem_pairing_auth
+	jam BT_EVT_LINKKEY_GENERATE,mem_fifo_temp
+	call ui_ipc_send_event
+	branch linkkey_set
+linkkey_send_hci:
+	call check_localsm
+	ncall hci_send_linkkey_notification,true
+linkkey_set:
+	set0 mark_ext_patch,mark
+	bpatch patch04_6,mem_patch04
+	call context_traverse_linkkey
+	fetch 1,mem_state
+	set1 state_linkkey,pdata
+	store 1,mem_state
+	jam 1,mem_link_key_exists
+	fetch 1,mem_conn_sm
+	bne CONN_SM_PAIRING,linkkey_set_continue
+linkkey_set_continue:
+	rtn
+
+generate_linkkey_continue:
+	jam PAIRING_AUTH,mem_pairing_auth
+clear_linkstate:
+	fetch 1,mem_state
+	set0 state_linkkey,pdata
+	store 1,mem_state
+	rtn
+	
+
+	/* rtn user if switch */
+role_switch_check:
+	set0 mark_ext_patch,mark
+	bpatch patch04_7,mem_patch04
+	disable user
+	fetch 1,mem_state
+	rtnbit0 state_insniff
+	fetch 2,mem_tsniff
+	nrtn blank
+	fetch 4,mem_sniff_anchor
+	branch role_switch_clkn,clknt
+	isub clke_bt,pdata
+	branch role_switch_clke
+role_switch_clkn:
+	isub clkn_bt,pdata
+role_switch_clke:
+	sub pdata,4,null
+	nrtn positive
+	fetch 1,mem_state
+	set0 state_insniff,pdata
+	store 1,mem_state
+	enable user
+	rtn
+
+	/* pdata: switch instant, set tsniff=0 for special sniff */	
+role_switch_prepare:
+	copy pdata,temp
+	set0 mark_ext_patch,mark
+	bpatch patch05_0,mem_patch05
+	store 4,mem_sniff_anchor
+role_switch_prepare0:
+	jam SWITCH_FLAG_ACCEPT,mem_switch_flag
+	fetch 1,mem_state
+	set1 state_insniff,pdata
+	store 1,mem_state
+	force 0,pdata
+	store 2,mem_tsniff
+	jam 10,mem_current_sniff_attempt		// allow 10 more polls or nulls afterwards
+	jam 1,mem_sniff_attempt
+	rtn
+
+
+role_switch_master:
+	set0 mark_ext_patch,mark
+	bpatch patch05_1,mem_patch05
+	call role_switch_check
+	nrtn user
+	disable user
+	jam param_newconnto,mem_newconnto_counter
+	set0 mark_fhs_already_good,mark
+roles_waitfhs_loop:
+	call rf_setup_time_master_slot
+	call master_recv_packet
+	bmark1 mark_fhs_already_good,roles_replyto_fhs
+	call new_conn_timeout
+	nbranch roles_waitfhs_loop,blank
+role_switch_fail_master:
+	set0 mark_ext_patch,mark
+	bpatch patch05_2,mem_patch05
+	disable user
+	deposit clkn_bt
+	store 4,mem_next_btclk
+	enable clknt
+	enable master
+	jam BT_EVT_SWITCH_FAIL_MASTER,mem_fifo_temp
+	branch ui_ipc_send_event
+	
+roles_replyto_fhs:
+	set0 mark_ext_patch,mark
+	bpatch patch05_3,mem_patch05
+	call rf_setup_time_slave_slot
+	call master_send_packet
+	disable clknt
+	disable master
+	call apply_switch_clke
+	call prepare_newconn
+roles_newconns_loop:
+	set0 mark_ext_patch,mark
+	bpatch patch05_4,mem_patch05
+	call slave_newconn_once
+	branch roles_newconns_responded,match
+	call new_conn_timeout
+	nbranch roles_newconns_loop,blank
+	branch role_switch_fail_master
+roles_newconns_responded:
+	force 1,temp
+	call hci_send_role_change
+	fetch 1,mem_mode
+	set0 mode_master,pdata
+	store 1,mem_mode
+	call supervision_flush
+	call calc_clke_offset
+	enable user
+	jam BT_EVT_SWITCH_SUCCESS_MASTER,mem_fifo_temp
+	branch ui_ipc_send_event
+
+	
+load_esco:
+	set0 mark_ext_patch,mark
+	bpatch patch05_5,mem_patch05
+	rtnmark0 mark_esco
+	fetch 1,mem_state
+	rtnbit0 state_insco
+load_esco_do:
+	call init_esco_ibuff
+	fetch 1,mem_esco_arq
+	fetcht 1,mem_arq
+	storet 1,mem_esco_saved_arq
+	store 1,mem_arq
+	deposit am_addr
+	store 1,mem_saved_amaddr
+	fetch 1,mem_esco_addr
+	iforce am_addr
+	set0 mark_esco_rxok,mark	
+	fetch 1,mem_last_type
+	store 1,mem_last_type_saved
+	fetch 1,mem_last_type_esco
+	store 1,mem_last_type
+	rtn
+
+restore_esco:
+	set0 mark_ext_patch,mark
+	bpatch patch05_6,mem_patch05
+	rtnmark0 mark_esco	
+restore_esco_check_no_mark:
+	call check_esco_amaddr
+	nrtn true
+restore_esco_do:
+	call clear_got_tx
+	fetch 1,mem_esco_saved_arq
+	fetcht 1,mem_arq
+	store 1,mem_arq
+	storet 1,mem_esco_arq
+	fetch 1,mem_saved_amaddr
+	iforce am_addr
+	fetch 1,mem_last_type
+	store 1,mem_last_type_esco
+	fetch 1,mem_last_type_saved
+	store 1,mem_last_type
+	setarg 0xffff
+	store 2,mem_retransmission_cnt
+	rtn
+
+
+
+
+context_load:
+	set0 mark_ext_patch,mark
+	bpatch patch05_7,mem_patch05
+	set1 mark_context,mark
+	deposit rega
+	store 2,mem_context_ptr
+	force context_size,loopcnt
+	arg mem_le_state,contw
+	add rega,coffset_mode,contr
+	ifetch 1,contr
+	copy rega,contr
+	bbit1 mode_le,memcpy
+	arg mem_state,contw
+	call memcpy
+	disable attempt
+	fetch 1,mem_amaddr
+	iforce am_addr
+	jam 1,mem_current_sniff_attempt
+	branch context_load_master,master
+	jam 1,mem_current_sniff_attempt
+context_load_master:
+	fetch 1,mem_state
+	rtnbit0 state_insniff
+	fetch 1,mem_sniff_attempt
+	store 1,mem_current_sniff_attempt
+	fetch 1,mem_sniff_timeout
+	store 1,mem_current_sniff_timeout
+	rtn
+	
+context_save:
+	set0 mark_ext_patch,mark
+	bpatch patch06_0,mem_patch06
+	fetch 2,mem_context_ptr
+	iforce contw
+	force context_size,loopcnt
+	arg mem_le_state,contr
+	branch memcpy,le
+	arg mem_state,contr
+	branch memcpy
+
+	
+
+context_get_next:
+	fetcht 1,mem_current_context
+	arg context_num,loopcnt
+context_get_next_loop:
+	increase 1,temp
+	compare context_num,temp,0xff
+	nbranch context_get_next_cont,true
+	arg 0,temp
+context_get_next_cont:
+	storet 1,mem_current_context
+	mul32 temp,context_size,pdata
+	arg mem_context,rega
+	iadd rega,rega
+	ifetch 1,rega
+	bbit1 state_insniff,context_get_next_sniff
+	rtnbit1 state_inconn
+	rtnbit1 state_inpage
+context_get_next_sniff:
+	loop context_get_next_loop
+	rtn
+	
+context_new:
+	set0 mark_ext_patch,mark
+	bpatch patch06_1,mem_patch06
+	arg context_search_empty,regc
+	call context_search
+	nrtn zero					// all occupied
+	deposit rega
+	store 2,mem_context_ptr
+	force 0,null
+	rtn
+	
+	//return zero if anyone's wack is 1.
+	//return nzero if all wack is 0
+context_check_all_wack:
+	call check_esco_amaddr
+	branch context_check_esco_wack,true
+	fetch 2,mem_context_ptr
+	add pdata,coffset_arq,contw
+	fetch 1,mem_arq
+	istore 1,contw
+	arg context_check_a_wack,regc
+	branch context_search
+
+context_check_esco_wack:
+	fetch 1,mem_arq
+	isolate1 wack,pdata
+	branch context_esco_wack,true
+	force 1,null
+	rtn
+context_esco_wack:
+	force 0,null
+	rtn
+	
+	//rtn nzero if idle(no conn)
+context_check_idle:
+	arg context_check_inconn,regc
+	branch context_search
+	
+context_traverse_linkkey:
+	fetcht 2,mem_context_ptr
+	arg context_traverse_clearkey,regc
+	branch context_search
+	
+context_traverse_max_slot:
+	fetcht 2,mem_context_ptr
+	arg context_traverse_mslot,regc
+	branch context_search
+	
+	/* return zero if conn handle is found */
+context_search_conn_handle:
+	fetcht 1,mem_hci_conn_handle
+context_search_conn_handle2:
+	arg context_search_handle,regc
+	branch context_search
+	/* return zero if plap is found */
+context_search_plap:
+	set0 mark_ext_patch,mark
+	bpatch patch06_2,mem_patch06
+	fetcht 6,mem_hci_plap
+context_search_plap2:
+	arg context_search_lap,regc
+	branch context_search
+	/* return zero if sniff anchor is meet and rega pointers to context */
+context_search_insniff:
+	arg context_search_sniff,regc
+	branch context_search
+	/* return zero if sniff window is in content with current transaction */
+context_search_sniff_window:
+	arg context_search_window,regc
+context_search:
+	set0 mark_ext_patch,mark
+	bpatch patch06_3,mem_patch06
+	arg mem_context,rega
+	force context_num,loopcnt
+context_search_loop:
+	ifetch 1,rega
+	copy regc,pc
+context_search_next:
+	increase context_size,rega
+	loop context_search_loop
+	force 1,null
+	rtn
+
+context_search_empty:
+	bbit1 state_inconn,context_search_next
+	bbit1 state_inpage,context_search_next
+	force 0,null
+	rtn
+	
+context_search_lap:
+	bbit1 state_inpage,context_search_lap_cont
+	bbit0 state_inconn,context_search_next
+context_search_lap_cont:
+	add rega,coffset_plap,contr
+	ifetch 6,contr
+	isub temp,null
+	rtn zero
+	branch context_search_next
+
+context_search_handle:
+	bbit0 state_inconn,context_search_next
+	add rega,coffset_conn_handle,contr
+	ifetch 1,contr
+	isub temp,null
+	rtn zero
+	branch context_search_next
+
+context_search_sniff:
+	bbit0 state_insniff,context_search_next
+context_search_sniff_loop:
+	call context_get_anchor
+	bbit1 27,context_search_sniff_cont
+	isolate0 27,temp
+	branch context_search_sniff_cont,true
+	set1 28,pdata								/* case:0 - fffffff */
+context_search_sniff_cont:
+	isub temp,pdata
+	increase 1,pdata
+	branch context_search_sniff_miss,positive
+	increase 5,pdata
+	nbranch context_search_next,positive
+context_search_meet:
+	copy temp,bt_clk
+	call context_next_anchor
+	force 0,null
+	rtn
+
+context_search_sniff_miss:
+	iforce regb
+	add rega,coffset_tsniff,contr
+	ifetch 2,contr
+	branch context_search_meet,blank
+	call context_next_anchor
+	branch context_search_sniff_loop
+
+context_check_inconn:
+	bbit0 state_inconn,context_search_next
+	force 0,null 				// found
+	rtn
+	
+context_check_a_wack:
+	bbit0 state_inconn,context_search_next
+	add rega,coffset_mode,contr
+	ifetch 1,contr
+	bbit1 mode_le,context_search_next
+	add rega,coffset_arq,contr
+	ifetch 1,contr
+	bbit0 wack,context_search_next
+	force 0,null 				// found
+	rtn
+
+context_get_anchor:
+	add rega,coffset_mode,contr
+	ifetcht 1,contr
+	deposit clkn_bt
+	isolate1 mode_master,temp
+	add rega,coffset_sniff_anchor,contr
+	ifetcht 4,contr
+	rtn true
+	add rega,coffset_clk_offset,contr
+	ifetch 6,contr
+	call calc_clke2
+	deposit clke_bt
+	rtn
+
+context_next_anchor:
+	add rega,coffset_tsniff,contr
+	add rega,coffset_sniff_anchor,contw
+	ifetch 2,contr
+	iadd temp,timeup			/* wrap to 28 bits */
+	deposit timeup
+	istore 4,contw
+	branch le_context_nexthop
+	
+
+context_search_window:
+	bbit0 state_insniff,context_search_next
+	call context_get_anchor
+	iadd stop_watch,pdata
+	iadd stop_watch,pdata
+	iadd queue,pdata
+	isub temp,null
+	nbranch context_search_next,positive
+	force 0,null
+	rtn
+
+context_traverse_mslot:
+	bbit0 state_inconn,context_search_next
+	deposit temp
+	isub rega,null
+	branch context_search_next,null
+	add rega,coffset_mode,contr
+	ifetch 1,contr
+	bbit1 mode_le,context_search_next
+	add rega,coffset_lmp_to_send,contw
+	ifetch 1,contw
+	nbranch context_search_next,blank
+	force LMP_MAX_SLOT,pdata
+	istore 1,contw
+	branch context_search_next
+
+context_traverse_clearkey:
+	bbit0 state_inconn,context_search_next
+	deposit temp
+	isub rega,null
+	branch context_search_next,null
+	add rega,coffset_mode,contr
+	ifetch 1,contr
+	bbit1 mode_le,context_search_next
+	ifetch 1,rega
+	set0 state_linkkey,pdata
+	istore 1,rega
+	branch context_search_next
+
+	
+master_conn_send_packet:
+	set0 mark_ext_patch,mark
+	bpatch patch06_4,mem_patch06
+	call rf_setup_time_master_slot
+master_send_packet:
+	add clkn_bt,1,bt_clk          /* master start to use native clock */
+	call fetch_self_bt_adr
+	force 0x03,freq_mode          /* we are in connection!! */
+	call tx_radio_freq
+	call start_transmitter
+	call start_tx_native
+	call send_access_word
+	branch transmit_packet
+
+master_conn_recv_packet:
+	set0 mark_ext_patch,mark
+	bpatch patch06_5,mem_patch06
+	call rf_setup_time_slave_slot
+master_recv_packet:
+	add clkn_bt,1,bt_clk          /* master start to use native clock */
+	call fetch_self_bt_adr
+	force 0x03,freq_mode          /* we are in connection!! */
+	call rx_radio_freq
+	call init_rx_packet_flags
+	call prep_crypt
+	call start_rx_native	/* start listening at start_rx time */
+	call start_receiver
+master_rx_conn_finish_packet:
+	call wait_access_clkn_rt	/* master use native clock */
+	nrtn sync
+	call save_rssi
+	branch receive_packet
+	
+	
+
+master_newconn_once:
+	set0 mark_ext_patch,mark
+	bpatch patch06_6,mem_patch06
+	fetch 1,mem_fhs_am_addr
+	iforce am_addr			//review
+	force type_poll,type
+	call master_conn_send_packet
+	branch master_conn_recv_packet
+
+
+
+
+
+
+/******************************************/
+/************* Inquiry Scan ***************/
+/******************************************/
+
+inquiry_scan_dispatch:
+	fetch 1,mem_scan_mode
+	rtnbit0 inq_scan_mode
+	force iscan_interval_timer,queue
+	call timer_check
+	nrtn blank
+	fetcht 2,mem_iscan_window
+	force 4,queue
+	call sniff_check_window
+	rtn user
+	call inquiry_scan_start
+	force iscan_interval_timer,queue
+	fetch 2,mem_iscan_interval
+	nbranch timer_init,sync
+	random pdata				/* inquiry scan backoff */
+	iand mask3ff,pdata
+	branch timer_init
+	
+
+inquiry_scan_start:
+	set0 mark_ext_patch,mark
+	bpatch patch06_7,mem_patch06
+	jam 0,mem_fhs_am_addr
+	disable clknt
+	disable attempt
+	call afh_clear
+	and clkn_bt,0x1fc,bt_clk      /* freeze the clock, set bit[1] 0, this is version 1.1 */
+	force 0x01,freq_mode     /* slave in inquiry scan, kind of same as inquriy_response, this is version 1.1 */
+	call fetch_giac
+	call rx_radio_freq
+	setflip mark_inquiry_state,mark
+	fetch 1,mem_inquiryscan_waitcnt
+	increase 1,pdata
+	store 1,mem_inquiryscan_waitcnt
+	call fetch_diac
+	call start_receiver	/* get ready for that id packet */
+	call wait_access_forever	/* until there is timeout, or matched (true) */
+	nrtn sync
+	set0 mark_ext_patch,mark
+	bpatch patch07_0,mem_patch07
+	force 0,stop_watch
+	call shutdown_radio	/* must have heard */
+	fetch 1,mem_inquiryscan_rcvcnt
+	increase 1,pdata
+	store 1,mem_inquiryscan_rcvcnt
+	call fetch_giac
+	call rf_setup_time_slave_slot
+	or_into 0x002,bt_clk               /* put clk(1) to 1 */
+	force 0x01,freq_mode               /* slave in inquriy and page, response only */
+	call tx_radio_freq
+	call fetch_diac
+	call start_transmitter	/* get ready for that id packet */
+	call start_tx_external
+	deposit clkn_bt
+	store 4,mem_clkn_bt
+	call send_access_word
+	force type_fhs,type
+	force 0,am_addr                       /* put 0 into am_addr field for fhs */
+	call scan_mode_whiten
+	call transmit_packet_whitened
+	call send_eir
+	and_into 0x1fd,bt_clk                 /* put clk(1) back to 0 */
+	increase 1,N_tx_slot
+	rtn
+
+send_eir:
+	set0 mark_ext_patch,mark
+	bpatch patch07_1,mem_patch07
+	fetch 1,mem_eir_enable
+	rtn blank
+	arg mem_eir,contw
+	fetch 1,mem_local_name_length
+	copy pdata,loopcnt
+	increase 1,pdata
+	istore 1,contw	
+	copy contw,temp
+	increase 1,pdata
+	store 2,mem_tx_len	
+	copy temp,contw
+	setarg 0x09  //type:name
+	istore 1,contw		
+	arg  mem_local_name,contr
+	call memcpy       //name
+	arg mem_all_uuid_128bits,regc
+	arg 4,loopcnt
+	call get_all_uuid
+	arg mem_all_uuid_16bits,regc
+	arg 1,loopcnt
+	call get_all_uuid
+	force type_dm3,type		/* DM3 */
+	jam 2,mem_tx_lch
+	setarg mem_eir
+	store 2,mem_txptr
+	call rf_setup_time_slave_slot
+	call tx_radio_freq
+	call start_transmitter	/* get ready for that id packet */
+	call start_tx_external
+	call send_access_word
+	call scan_mode_whiten
+	call transmit_packet_whitened
+	rtn
+
+
+get_all_uuid:
+	copy contw,temp
+	copy regc,contr
+	ifetch 1,contr
+	rtn blank
+lshift_loop:
+	lshift pdata,pdata
+	loop lshift_loop
+	copy pdata,rega
+	increase 2,pdata
+	copy pdata,queue
+	fetch 2,mem_tx_len
+	iadd queue,pdata
+	store 2,mem_tx_len
+	copy temp,contw
+	copy rega,pdata
+	increase 1,pdata
+	istore 1,contw
+	copy regc,contr
+	ifetch 1,contr
+	ifetch 1,contr	//fetch type
+	istore 1,contw
+	copy rega,loopcnt
+	branch memcpy  //copy uuid
+	
+/******************************************/
+/******** Slave dispatch ***********/
+/******************************************/
+
+page_scan_dispatch:	
+	fetch 1,mem_scan_mode
+	rtnbit0 page_scan_mode
+	force pscan_interval_timer,queue
+	call timer_check
+	nrtn blank
+	fetcht 2,mem_pscan_window
+	force 40,queue
+	call sniff_check_window
+	rtn user
+	force 0,am_addr
+	jam param_pagerespto,mem_fhs_wait_counter
+	set0 mark_fhs_already_good,mark
+	call page_scan_start
+	force pscan_interval_timer,queue
+	fetch 2,mem_pscan_interval
+	branch timer_init
+	
+
+page_scan_start:
+	set0 mark_ext_patch,mark
+	bpatch patch07_2,mem_patch07
+	disable clknt
+	call afh_clear
+	fetch 1,mem_pagescan_waitcnt
+	increase 1,pdata
+	store 1,mem_pagescan_waitcnt
+	force 0,N_tx_slot
+	call fetch_self_bt_adr
+	add clkn_bt,1,bt_clk      /* freeze the clock on native clock until scan window is up */
+	force 0x02, freq_mode     /* slave in inquiry and page, not response */
+	set0 mark_ext_patch,mark
+	bpatch patch07_3,mem_patch07
+	call rx_radio_freq
+	call start_receiver	/* wait for that id packet from master */
+	call wait_access_forever
+	nrtn sync                          /* pscan window timeout occured, back to dispatch */
+	call shutdown_radio	/* got the id packet */
+	fetch 1,mem_pagescan_rcvcnt
+	increase 1,pdata
+	store 1,mem_pagescan_rcvcnt
+	force 0,stop_watch
+	call rf_setup_time_slave_slot
+	or_into 0x002,bt_clk               /* put clk(1) to 1 */
+	force 0x01,freq_mode               /* slave in inquriy and page, response only */
+	call tx_radio_freq
+	call start_transmitter
+	call start_tx_external
+	call send_access_word
+	call end_of_packet
+	force 0,am_addr
+	arg param_rf_setup, timeup
+	until clke_rt,meet
+	or_into 0x03,clke_bt
+	and_into 0x1fd,bt_clk
+page_scan_wait_fhs_restart:
+	set0 mark_ext_patch,mark
+	bpatch patch07_4,mem_patch07
+	increase 1,N_tx_slot
+	call rx_radio_freq
+	call start_receiver
+	call wait_access_mhalfbnd
+	nbranch page_scan_wait_fhs_again,sync	/* go back if didn't find access code */
+	call scan_mode_whiten
+	call receive_packet_whitened
+	bmark1 mark_fhs_already_good,page_scan_reply_to_fhs
+page_scan_wait_fhs_again:
+	set0 mark_ext_patch,mark
+	bpatch patch07_5,mem_patch07
+	fetch 1,mem_fhs_wait_counter
+	rtn blank
+	increase -1,pdata
+	store 1,mem_fhs_wait_counter
+	call rf_setup_time_master_slot	/* set up expiration time */
+	branch page_scan_wait_fhs_restart
+
+
+page_scan_reply_to_fhs:
+	set0 mark_ext_patch,mark
+	bpatch patch07_6,mem_patch07
+	set0 1,clke_bt
+	set1 0,clke_bt
+	fetch 1,mem_pagescan_rcvfhscnt
+	increase 1,pdata
+	store 1,mem_pagescan_rcvfhscnt
+	call rf_setup_time_slave_slot
+	or_into 0x02,bt_clk
+	call tx_radio_freq
+	call start_transmitter
+	call start_tx_external
+	call send_access_word
+	call end_of_packet
+slave_apply_clke_bt:
+	compare 0x03,clke_bt,0x03
+	branch slave_apply_clke_bt_now,true
+	until null,mhalfbnd
+	branch slave_apply_clke_bt
+slave_apply_clke_bt_now:
+	fetch 4,mem_clke_bt
+	or_into 0x03,pdata
+	icopy clke_bt
+
+start_slave_connection:
+	set0 mark_ext_patch,mark
+	bpatch patch07_7,mem_patch07
+	fetch 6,extm_lap
+	store 6,mem_plap
+	call prepare_newconn
+slave_newconn_loop:
+	call slave_newconn_once
+	branch sconn_successful,match     /* we were talked to */
+	call new_conn_timeout
+	nbranch slave_newconn_loop,blank
+	rtn
+
+	
+sconn_successful:
+	set0 mark_ext_patch,mark
+	bpatch patch08_0,mem_patch08
+	call newconn_init
+	call context_new
+	nrtn zero
+	jam 0,mem_mode
+	call calc_clke_offset
+	branch context_save
+
+
+slave_dispatch:
+	set0 mark_ext_patch,mark
+	bpatch patch08_1,mem_patch08
+	call calc_clke
+	call role_switch_slave
+	rtn user
+	call load_esco
+	call get_sco_data
+slave_loop:
+	set0 mark_ext_patch,mark
+	bpatch patch08_2,mem_patch08
+	call check_bt_disabled
+	call scheduler_process
+	call slave_conn_recv_packet	/* go listen for a packet */
+	call slave_savelist
+	nbranch slave_notmatch,match
+	call supervision_flush
+	call parse_l2cap
+	call scheduler_tx_l2cap_pkt
+	call prepare_tx
+	call slave_conn_send_packet
+	call parse_lmp
+	call process_cmd
+	call hci_send_num_complete_packets
+	fetch 1,mem_slave_rcvcnt
+	increase 1,pdata
+	store 1,mem_slave_rcvcnt
+	call calc_clke_offset
+slave_notmatch:
+	set0 mark_ext_patch,mark
+	bpatch patch08_3,mem_patch08
+	call lpm_set_mult
+	call supervision_update
+	branch slave_disconnect,positive
+	call check_disconnect_timeout
+	nbranch slave_disconnect,user
+	call check_attempt
+	nbranch slave_loop,blank
+	call process_sco_data
+	branch restore_esco
+
+
+slave_disconnect:
+	set0 mark_ext_patch,mark
+	bpatch patch08_4,mem_patch08
+	jam 0,mem_tester_emulate
+	jam 0,mem_debug_config
+	call quit_connection
+	set0 mark_testmode,mark
+	call test_enable_white
+	fetch 1,mem_state
+	bbit0 state_conn_comp,slave_connection_fail
+	fetcht 1,mem_conn_handle
+	branch hci_send_disconn_complete
+
+slave_connection_fail:
+	force HCI_ERROR_KEY_MISSING,temp
+	branch hci_send_connection_error
+
+role_switch_slave:
+	set0 mark_ext_patch,mark
+	bpatch patch08_5,mem_patch08
+	call role_switch_check
+	nrtn user
+	copy am_addr,temp
+	call get_free_amaddr
+	store 1,mem_fhs_am_addr
+	copy temp,am_addr
+	jam param_newconnto,mem_newconnto_counter
+roles_sendfhs_loop:
+	set0 mark_ext_patch,mark
+	bpatch patch08_6,mem_patch08
+	call rf_setup_time_master_slot
+	force type_fhs,type
+	call slave_send_access
+	deposit clkn_bt
+	store 4,mem_clkn_bt
+	call transmit_packet
+	call rf_setup_time_slave_slot
+	enable user3
+	call slave_receive_access
+	branch roles_got_fhs_reply,sync
+	call shutdown_radio
+	call new_conn_timeout
+	nbranch roles_sendfhs_loop,blank
+	rtnmark0 mark_accept_switch
+	jam LMP_SLOT_OFFSET,mem_lmo_opcode2
+	set1 mark_switch_initiated,mark
+	rtn
+roles_got_fhs_reply:
+	enable clknt
+	call prepare_newconn
+	call afh_clear
+roles_newconn_loop:
+	set0 mark_ext_patch,mark
+	bpatch patch08_7,mem_patch08
+	call master_newconn_once
+	branch roles_newconn_responded,sync
+	call new_conn_timeout
+	nbranch roles_newconn_loop,blank
+	disable clknt
+	deposit clke_bt
+	store 4,mem_next_btclk
+	rtn
+roles_newconn_responded:
+	force 0,temp
+	call hci_send_role_change
+	enable master
+	bmark0 mark_accept_switch,roles_newconn_nolmp
+	set0 mark_accept_switch,mark
+	jam LMP_ACCEPTED,mem_lmo_opcode2
+	jam LMP_HOST_CONNECTION_REQ,mem_lmi_opcode2
+	call tid_set_reply
+roles_newconn_nolmp:
+	deposit am_addr
+	store 1,mem_amaddr
+	force 0,pdata
+	store 6,mem_clk_offset
+	fetch 1,mem_mode
+	set1 mode_master,pdata
+	store 1,mem_mode
+	call supervision_flush
+	disable master
+enable_user:
+	enable user
+	rtn
+
+	
+
+init_rx_packet_flags:
+	set0 mark_ext_patch,mark
+	bpatch patch09_0,mem_patch09
+	disable match
+	set0 mark_loopback,mark
+	set0 mark_am_addr_broadcast,mark          /* initialize slave flags */
+	set0 mark_longpacket,mark
+	set0 mark_old_packet,mark
+	fetch 1,mem_arq    /* mem_arq + am_addr */
+	set0 arqnx,pdata
+	set1 flowx,pdata
+	store 1,mem_arq
+	rtn
+
+prepare_newconn:
+	set0 mark_ext_patch,mark
+	bpatch patch09_1,mem_patch09
+	jam param_newconnto,mem_newconnto_counter
+	jam param_newconn_arq,mem_arq
+	fetch 2,mem_rx_window_init
+	store 2,mem_rx_window
+	deposit clkn_bt
+	store 4,mem_next_btclk
+	rtn clknt
+	deposit clke_bt
+	store 4,mem_next_btclk
+	rtn
+
+newconn_init:
+	set0 mark_ext_patch,mark
+	bpatch patch09_2,mem_patch09
+	call init_lmp_reinit
+	call new_conn_handle
+	store 1,mem_conn_handle
+	setarg param_supervision_to
+	store 2,mem_supervision_to
+	fetch 1,mem_state
+	set1 state_inconn,pdata
+	store 1,mem_state
+	jam 0,mem_op
+	jam 0,mem_state_map
+	jam 0,mem_lpm_current_mult
+	branch supervision_flush
+	
+
+clear_linkkey:
+	set0 mark_ext_patch,mark
+	bpatch patch09_3,mem_patch09
+	force 0,pdata
+	store 8,mem_link_key
+	istore 8,contw
+	call clear_linkstate
+	branch context_traverse_linkkey
+	
+new_conn_timeout:
+	fetch 1,mem_newconnto_counter
+	increase -1,pdata
+	store 1,mem_newconnto_counter
+	rtn
+
+new_conn_handle:
+	fetch 1,mem_handle_num
+	increase 1,pdata
+	store 1,mem_handle_num
+	rtn
+
+
+quit_connection:
+	set0 mark_ext_patch,mark
+	bpatch patch09_4,mem_patch09
+	call disconnect_stop_sco
+	fetch 1,mem_hci_cmd
+	beq hci_cmd_remote_name_req,quit_connection_name
+	fetch 1,mem_lmp_to_send
+	bne LMP_NAME_REQ,quit_connection_cont
+quit_connection_name:
+	call cmd_check_plap
+	nbranch quit_connection_cont,zero
+	call master_name_error
+	jam 0,mem_hci_cmd
+quit_connection_cont:
+	set0 mark_ext_patch,mark
+	bpatch patch09_5,mem_patch09
+	call app_disconn_reason_collect_bt
+	call process_cmd				/* clear pending command */
+	call sniff_exit
+	jam BT_EVT_BB_DISCONNECTED,mem_fifo_temp
+	call ui_ipc_send_event
+	call init_lmp_work
+	call l2cap_init_work
+ifdef SIMPLE_PAIRING
+	call sp_initialize
+endif
+	fetch 1,mem_state
+	set0 state_inconn
+	store 1,mem_state
+	jam 0,memui_reconnect_mode
+
+	fetch 1,mem_state_map
+	compare 0x0,pdata,0xc0
+	branch quit_connection_not_clear_mark,true
+	set0 mark_rxbuf_inuse,mark
+quit_connection_not_clear_mark:
+	fetch 1,mem_arq
+	bbit0 wack,quit_connection_not_clear_tx
+quit_connection_not_clear_tx:
+	fetch 1,mem_op
+	rtnbit0 op_txl2cap
+	set0 mark_tx_l2cap,mark
+	rtn
+
+slave_newconn_once:
+	set0 mark_ext_patch,mark
+	bpatch patch09_6,mem_patch09
+	fetch 1,extm_newconn_am_addr
+	rtn blank     
+	icopy am_addr
+	call slave_conn_recv_packet
+	nrtn match
+	force type_null,type
+	call slave_conn_send_packet
+	deposit am_addr
+	store 1,mem_amaddr                 /* now the new am_addr is official */
+	force 0,pdata
+	store 1,extm_newconn_am_addr
+	rtn
+
+
+/******************************************/
+/********  Time consuming task  ***********/
+/******************************************/
+prepare_tx:
+	set0 mark_ext_patch,mark
+	bpatch patch09_7,mem_patch09
+	fetch 1,mem_state
+	bbit0 state_insco,prepare_tx_not_sco
+	force type_hv3,type
+	bmark0 mark_esco,prepare_tx_not_esco
+	call check_esco_amaddr
+	nbranch prepare_tx_not_sco,true
+	branch prepare_tx_not_sco,attempt	
+	call set_wait_ack					/* send esco only at the first attempt */
+	setarg 2		/* esco only has 1 retry */
+	store 2,mem_retransmission_cnt
+	rtn
+prepare_tx_not_esco:
+	nrtn attempt						/* send sco only at the first attempt */
+prepare_tx_not_sco:
+	set0 mark_ext_patch,mark
+	bpatch patch0a_0,mem_patch0a
+	call context_check_all_wack			 //abandon mark_retransmit, use context_check_all_wack instead.
+	nbranch prepare_tx_no_retransmit,zero
+	fetch 1,mem_arq
+	bbit0 wack,prepare_tx_pollnull		/* other wack, tx buffer in use, but not me */
+prepare_tx_retransmit:
+	bmark1 mark_loopback,prepare_tx_loopback
+	fetch 1,mem_debug_config
+	bbit1 debug_tx_pattern,prepare_tx_txpat
+	fetch 2,mem_retransmission_cnt
+	increase -1,pdata
+	store 2,mem_retransmission_cnt
+	branch prepare_tx_nomore_retransmit,blank
+	fetch 1,mem_last_type
+	iforce type
+	rtn
+
+prepare_tx_nomore_retransmit:
+	set0 mark_ext_patch,mark
+	bpatch patch0a_1,mem_patch0a
+	call clear_got_tx
+prepare_tx_no_retransmit:
+	call check_esco_amaddr
+	branch prepare_tx_pollnull,true
+	call send_lmp
+	branch prepare_tx_sendlmp,user
+	fetch 1,mem_op
+	bbit1 op_txl2cap,prepare_tx_sendl2cap
+	bmark1 mark_loopback,prepare_tx_loopback
+	fetch 1,mem_debug_config
+	bbit1 debug_tx_pattern,prepare_tx_txpat
+prepare_tx_pollnull:
+	force type_poll,type				/* POLL for master */
+	rtn master
+	force type_null,type				/* default is NULL */
+	rtn
+prepare_tx_loopback:
+	set0 mark_ext_patch,mark
+	bpatch patch0a_2,mem_patch0a
+	fetch 1,mem_rx_type
+	iforce type
+	rtnne 1
+	force type_null,type
+	rtn
+prepare_tx_txpat:
+	fetch 1,test_mode_packet_type
+	and pdata,0xf,type
+	set1 mark_loopback,mark
+	rtn
+prepare_tx_sendlmp:
+	force type_lmp,type
+	branch set_wait_ack
+prepare_tx_sendl2cap:
+	call tx_l2cap_type
+
+set_wait_ack:
+	set0 mark_ext_patch,mark
+	bpatch patch0a_3,mem_patch0a
+	fetcht 1,mem_arq
+	set1 wack,temp
+	storet 1,mem_arq
+	deposit type
+	store 1,mem_last_type
+	setarg 0xffff
+	store 2,mem_retransmission_cnt
+	rtn
+
+tx_l2cap_type:
+	set0 mark_ext_patch,mark
+	bpatch patch0a_4,mem_patch0a
+	fetch 1,mem_state_map
+	isolate1 smap_edr,pdata
+	fetch 2,mem_tx_len
+	branch tx_l2cap_type_edr,true
+	force type_dm1,type		/* DM1 */
+	sub pdata,17,null			
+	rtn positive
+	force type_dh1,type		/* DH1 */
+	sub pdata,27,null				
+	rtn positive
+	force type_dm3,type		/* DM3 */
+	sub pdata,121,null
+	rtn positive
+	force type_dm5,type		/* DM5 */
+	sub pdata,224,null
+	rtn positive
+	force type_dh5,type		/* DH5 */
+	rtn
+tx_l2cap_type_edr:
+	force type_dm1,type
+	sub pdata,17,null
+	rtn positive
+	force type_dh1,type		/*2-DH1*/
+	sub pdata,54,null
+	rtn positive
+	force type_dm3,type		/*2-DH3*/
+	arg 367,temp
+	isub temp,null
+	nrtn positive
+	force type_dm5,type		/*2-DH5*/
+	arg 679,temp
+	isub temp,null
+	nrtn positive
+	force type_dh5,type		/*3-DH5*/
+	rtn
+
+
+/******************************************/
+/***********  Receive Packet  *************/
+/******************************************/
+
+
+
+slave_receive_master_slot:
+	fetch 1,mem_state
+	bbit0 state_insniff,slave_receive_notsniff
+	fetch 2,mem_tsniff
+	branch slave_receive_notsniff,blank		/* role switch */
+	nbranch slave_receive_sniff,attempt
+slave_receive_notsniff:
+	call rf_setup_time_master_slot
+slave_receive_access:
+	add clke_bt,1,bt_clk
+slave_receive_sniff:
+	enable swfine
+	fetch 2,mem_rx_window
+	rshift pdata,pdata
+	arg param_pll_setup,temp
+	iadd temp,pdata
+	call ahead_window
+	call fetch_extm_bt_adr
+	force 0x03,freq_mode          /* connection hop */
+	call rx_radio_freq
+	call init_rx_packet_flags
+	call prep_crypt
+	set0 mark_ext_patch,mark
+	bpatch patch0a_5,mem_patch0a
+	fetch 2,mem_rx_window
+	rshift pdata,pdata
+	call ahead_window
+	call start_receiver
+	enable decode_fec0
+	fetch 2,mem_rx_window
+	arg param_clke_cal,temp
+	iadd temp,stop_watch
+	correlate null,timeout
+	copy clke,temp
+	storet 6,mem_sync_clke
+	disable decode_fec0
+	nrtn sync
+	arg param_clke_cal,clke_rt
+	copy bt_clk,clke_bt
+	branch lpm_adjust_clk,wake
+	rtn
+	
+
+slave_conn_recv_packet:
+	set0 mark_ext_patch,mark
+	bpatch patch0a_6,mem_patch0a
+	call slave_receive_master_slot
+	nbranch shutdown_radio,sync
+	call save_rssi
+	bmark0 mark_testmode,receive_packet
+	fetch 2,mem_tst_pktcnt_sync
+	increase 1,pdata
+	store 2,mem_tst_pktcnt_sync
+receive_packet:
+	rshift bt_clk,temp
+	or temp,0x40,white_init
+receive_packet_whitened:
+	set0 mark_ext_patch,mark
+	bpatch patch0a_7,mem_patch0a
+	enable enable_white
+	enable enable_hec
+	enable decode_fec1
+	parse demod,bucket,3  /* get am_addr */
+	rshift8 pwindow,pdata
+	store 1,mem_temp_am_addr
+	parse demod,bucket,4  /* get type */
+	inject bucket,7       /* align up to pwindow */
+	copy pwindow,pdata
+	store 1,mem_rx_type
+	parse demod,bucket,3  /* get arq */
+	rshift8 pwindow,pdata
+	store 1,mem_temp_arq
+	fetch 1,mem_rx_type
+	sub pdata,3,null
+	branch receive_packet_noedr,positive
+	beq 7,receive_packet_noedr		/* esco packet */
+	fetch 1,mem_state_map
+	isolate1 smap_edr,pdata
+	setflag true,PSK,radio_ctrl
+receive_packet_noedr:
+	set0 mark_ext_patch,mark
+	bpatch patch0b_0,mem_patch0b
+	parse demod,bucket,8   /* cycle thru hec */
+	disable decode_fec1
+	disable enable_hec   /* at this moment, 1 seqn + 8 hec is in shift */
+	branch error_header,crc_failed  /* if hec error, nothing is valid */
+	bmark0 mark_testmode,receive_packet_amchk
+	fetch 2,mem_tst_pktcnt_hec
+	increase 1,pdata
+	store 2,mem_tst_pktcnt_hec
+receive_packet_amchk:	
+	set0 mark_ext_patch,mark
+	bpatch patch0b_1,mem_patch0b
+	fetch 1,mem_temp_am_addr
+	compare 0,pdata,0x07           /* check for broadcast */
+	setflag true,mark_am_addr_broadcast,mark   /* received a broadcast message, can fire ar_addr if during unpark_req */
+	branch am_addr_ok,true
+	icompare 0x07,am_addr
+	branch am_addr_match,true
+	bmark0 mark_esco,end_of_packet
+	fetcht 1,mem_saved_amaddr
+	icompare 0x7,temp
+	nbranch end_of_packet,true
+	call restore_esco
+	fetch 1,mem_arq    /* mem_arq + am_addr */
+	set0 arqnx,pdata
+	set1 flowx,pdata
+	store 1,mem_arq
+am_addr_match:
+	enable match
+am_addr_ok:
+	set0 mark_ext_patch,mark
+	bpatch patch0b_2,mem_patch0b
+	fetch 1,mem_rx_type
+	icopy type
+	bmark1 mark_am_addr_broadcast,arqn_bypass        /* arqn doesn't make sense */
+	fetcht 1,mem_temp_arq
+	fetch 1,mem_arq
+	set0 flow,pdata
+	isolate1 flow,temp
+	setflag true,flow,pdata
+	isolate1 arqn,temp
+	setflag true,arqn,pdata
+	store 1,mem_arq
+	isolate0 arqn,temp
+	branch arqn_bypass,true
+	call clear_got_tx
+arqn_bypass:
+	set0 mark_ext_patch,mark
+	bpatch patch0b_3,mem_patch0b
+	arg 0,temp
+	call reserve_slot
+	and type,0xf,pdata
+	beq type_poll,process_poll
+	beq type_null,end_of_packet	/* null */
+	beq type_fhs,process_fhs
+	fetcht 1,mem_temp_arq
+	fetch 1,mem_arq
+	icompare 0x04,temp    /* bit 2 is seqn */
+	nbranch rx_type_dispatch,true   /* different then it's new */
+	bmark0 mark_am_addr_broadcast,failed_seqn         /* seqn failed, and not broadcast */
+	bbit0 bcast1,rx_type_dispatch           /* first broadcast never fail seqn */
+failed_seqn:
+	set1 mark_old_packet,mark
+rx_type_dispatch:
+	set0 mark_ext_patch,mark
+	bpatch patch0b_4,mem_patch0b
+	deposit type
+	beq type_dm1, process_dm1
+	beq type_dh1, process_dh1
+	beq type_hv3, process_hev
+	beq type_3dh1, process_3dh1
+	arg 4,temp
+	call reserve_slot
+	beq type_dm3, process_dm3
+	beq type_dh3, process_dh3
+	arg 8,temp
+	call reserve_slot
+	beq type_dm5, process_dm5
+	beq type_dh5, process_dh5
+	rtn
+
+
+process_hev:
+	set0 mark_ext_patch,mark
+	bpatch patch0b_5,mem_patch0b
+	enable decode_fec0
+	enable enable_crc
+	enable encrypt
+	arg mem_sco_ibuf,contw
+	force 30,loopcnt
+process_hev_loop:	
+	parse demod,bucket,8
+	rshift3 pwindow,pdata
+	istore 1,contw
+	loop process_hev_loop
+	bmark0 mark_esco,end_of_packet
+	parse demod,bucket,16  /* cycle through the crc */
+	nsetflag crc_failed,mark_esco_rxok,mark
+	call test_esco,crc_failed
+	branch error_payload,crc_failed
+	branch ack_payload
+
+test_esco:
+	deposit clke
+	store 6,mem_display
+	rtn
+
+process_poll:
+	branch end_of_packet
+
+process_dm3:
+process_dm5:
+	set1 mark_longpacket,mark
+process_dm1:
+	enable decode_fec2
+	branch process_dmh
+	
+process_dh3:
+process_dh5:
+	set1 mark_longpacket,mark
+process_3dh1:
+	set1 PSK3M,radio_ctrl
+process_dh1:
+	enable decode_fec0
+process_dmh:
+	set0 mark_ext_patch,mark
+	bpatch patch0b_6,mem_patch0b
+	bmark1 mark_rxbuf_inuse,end_of_packet			/* buffer in use, nack */
+	isolate0 PSK,radio_ctrl
+	branch process_dmh_noedr,true
+	disable enable_white
+	enable decode_fec0
+	disable decode_fec2
+	add clkn_bt,2,timeup
+	correlate clkn_bt,meet
+	nbranch error_payload,sync
+	set1 mark_longpacket,mark
+	enable enable_white
+process_dmh_noedr:
+	set0 mark_ext_patch,mark
+	bpatch patch0b_7,mem_patch0b
+	enable encrypt
+	enable enable_crc
+	parse demod,bucket,3  /* parse in lch+l2cap flow */
+	rshift8 pwindow,pdata
+	store 1,mem_lch_code		/* for loopback */
+	parse demod,bucket,5  /* parse in 5 bit packetlength */
+	bmark1 mark_longpacket,process_dmh_long
+	rshift3 pwindow,loopcnt
+	rshift3 loopcnt,loopcnt
+	branch process_dmh_common
+process_dmh_long:
+	parse demod,bucket,5		/* multi slot packet length of dh3 dh5 dm3 dm5 */
+	rshift pwindow,loopcnt
+	parse demod,bucket,3  /* undefined+bit 9 of length */
+process_dmh_common:	
+	set0 mark_ext_patch,mark
+	bpatch patch0c_0,mem_patch0c
+	deposit loopcnt
+	store 2,mem_len
+	branch process_dmh_data_end,blank
+	isub mask3ff,null
+	branch error_payload,positive	/* packet too large, discard */
+	set0 mark_ext_patch,mark
+	bpatch patch0c_1,mem_patch0c
+	set0 mark_fhs_eir,mark
+	fetch 1,mem_lch_code
+	and_into 0x03,pdata
+	arg mem_rxbuf,contw //lmp_data or test packet
+	beq LLID_LMP,process_lmp
+	bmark1 mark_testmode,process_dmh_data
+	fetch 1,mem_device_option
+	beq dvc_op_hci,process_dmh_acl	//HCI mode
+	//non-HCI mode
+	fetch 1,mem_lch_code
+	and_into 0x03,pdata
+	beq LLID_L2CAP_START,process_dmh_data_l2cap_start_pkt
+	beq LLID_L2CAP_CONT,process_dmh_data_l2cap_continue_pkt
+	branch error_payload
+
+process_lmp:
+	fetch 2,mem_len
+	sub pdata,0x70,null		//lmp buffer size
+	nbranch error_payload,positive
+	bmark1 mark_old_packet,ack_payload
+	branch process_dmh_data
+
+process_dmh_acl: //HCI
+	set0 mark_ext_patch,mark
+	bpatch patch0c_2,mem_patch0c
+	bmark1 mark_old_packet,ack_payload
+	fetch 2,mem_len
+	branch error_payload,blank
+	call hci_check_bcsp_protocol
+	nbranch process_dmh_acl_check_h4_buff,true
+process_dmh_acl_bcsp:
+	fetcht 2,mem_h5tx_free
+	increase 10,pdata
+	isub temp,null
+	nbranch process_dmh_acl_packet,positive// nbranch if no free buff
+	call hci_dispatch
+	branch process_dmh_acl_bcsp// loop and wait for tx buff
+process_dmh_acl_check_h4_buff:
+	hfetch 2,core_uart_txitems
+	arg 300,temp
+	isub temp,null
+	branch error_payload,positive
+	fetch 2,mem_acl_credits
+	branch error_payload,blank
+process_dmh_acl_packet: // packaging
+	set0 mark_ext_patch,mark
+	bpatch patch0c_3,mem_patch0c
+	call hci_get_packet_ptr
+	fetch 1,mem_conn_handle
+	fetcht 1,mem_lch_code
+	and_into 3,temp
+	lshift8 temp,temp
+	lshift4 temp,temp
+	ior temp,pdata
+	istore 2,contwu
+	fetcht 2,mem_len
+	copy temp,loopcnt
+	istoret 2,contwu //length in temp
+process_dmh_acl_copy:
+	set0 mark_ext_patch,mark
+	bpatch patch0c_4,mem_patch0c
+	parse demod,bucket,8
+	rshift3 pwindow,pdata
+	istore 1,contwu
+	loop process_dmh_acl_copy
+	add temp,4,loopcnt
+ifdef ACL_DEBUG
+	setarg 4
+	iadd temp,pdata
+	isub loopcnt,null
+	ncall ice_break,zero
+	//copy pdata,loopcnt
+endif
+	call hci_check_bcsp_protocol
+	nbranch process_dmh_acl_send_h4,true
+	set1 mark_h5tx_rp,mark
+	force 6,queue
+	call bcsp_send_packet
+	branch process_dmh_data_end
+process_dmh_acl_send_h4:
+	call h4_send_packet_acl
+	branch process_dmh_data_end
+	
+process_dmh_data_l2cap_start_pkt:
+	set0 mark_ext_patch,mark
+	bpatch patch0c_5,mem_patch0c
+	bmark1 mark_old_packet,ack_payload
+	fetch 2,mem_len
+	arg 0x2e0,temp //l2cap buffer size
+	isub temp,null
+	branch error_payload,positive
+	fetch 1,mem_l2cap_rxbuff_inuse
+	bbit0 L2CAP_INUSE_BUFF1,process_dmh_data_into_buff1
+	bbit0 L2CAP_INUSE_BUFF2,process_dmh_data_into_buff2
+	branch end_of_packet
+process_dmh_data_into_buff1:
+	jam 1,mem_l2cap_rxbuff_new //new data in buff 1
+	fetch 2,mem_l2cap_rxbuff1_len
+	bne 0,end_of_packet			//baseband head error
+	arg mem_l2cap_rxbuff1,contw
+	branch process_dmh_data
+process_dmh_data_into_buff2:
+	jam 2,mem_l2cap_rxbuff_new //new data in buff 2
+	fetch 2,mem_l2cap_rxbuff2_len
+	bne 0,end_of_packet
+	arg mem_l2cap_rxbuff2,contw
+	branch process_dmh_data
+	
+process_dmh_data_l2cap_continue_pkt:
+	set0 mark_ext_patch,mark
+	bpatch patch0c_6,mem_patch0c
+	bmark1 mark_old_packet,ack_payload
+	fetch 2,mem_len
+	arg 0x2e0,temp //l2cap buffer size
+	isub temp,null
+	branch error_payload,positive
+	fetch 1,mem_l2cap_rxbuff_new
+	beq 1,process_dmh_data_l2cap_continue_pkt1
+	beq 2,process_dmh_data_l2cap_continue_pkt2
+	branch end_of_packet
+process_dmh_data_l2cap_continue_pkt1:
+	arg mem_l2cap_rxbuff1,contw
+	fetch 2,mem_l2cap_rxbuff1_len
+	iadd contw,contw
+	branch process_dmh_data
+process_dmh_data_l2cap_continue_pkt2:
+	arg mem_l2cap_rxbuff2,contw
+	fetch 2,mem_l2cap_rxbuff2_len
+	iadd contw,contw
+process_dmh_data:	
+	parse demod,bucket,8
+	rshift3 pwindow,pdata
+	istore 1,contw
+	loop process_dmh_data
+process_dmh_data_end:	
+	set0 mark_ext_patch,mark
+	bpatch patch0c_7,mem_patch0c
+	parse demod,bucket,16  /* cycle through the crc */
+	branch error_payload_crc,crc_failed
+	call lpm_hci_wake_dispatch
+	fetch 1,mem_l2cap_flow_ctrl_flag
+	beq L2CAP_FLOW_CTRL_ENABLE,end_of_packet
+	bmark1 mark_testmode,process_dmh_cont
+	bmark1 mark_old_packet,redundant_payload
+	fetch 1,mem_lch_code
+	compare 3,pdata,3
+	branch process_dmh_cont,true
+	fetch 2,mem_len
+	branch process_dmh_cont,blank
+	fetch 1,mem_device_option
+	beq dvc_op_hci,process_dmh_cont
+	set0 mark_ext_patch,mark
+	bpatch patch0d_0,mem_patch0d
+	fetch 1,mem_l2cap_rxbuff_new
+	beq 1,process_l2cap_pass_crc_buff1
+	beq 2,process_l2cap_pass_crc_buff2
+	branch assert
+process_l2cap_pass_crc_buff1:
+	fetch 2,mem_l2cap_rxbuff1_len
+	fetcht 2,mem_len
+	iadd temp,pdata
+	store 2,mem_l2cap_rxbuff1_len
+	beq 0,assert
+	fetcht 2,mem_l2cap_rxbuff1// l2cap payload length
+	increase 4,temp
+	isub temp,null
+	call l2cap_buff1_inuse,zero //l2cap pkts not ended
+	branch process_dmh_cont
+process_l2cap_pass_crc_buff2:
+	fetch 2,mem_l2cap_rxbuff2_len
+	fetcht 2,mem_len
+	iadd temp,pdata
+	store 2,mem_l2cap_rxbuff2_len
+	beq 0,assert
+	fetcht 2,mem_l2cap_rxbuff2// l2cap payload length 
+	add temp,4,temp
+	isub temp,null
+	call l2cap_buff2_inuse,zero //l2cap pkts not ended
+	branch process_dmh_cont
+process_dmh_cont:
+	set0 mark_ext_patch,mark
+	bpatch patch0d_1,mem_patch0d
+	fetcht 1,mem_state_map
+	fetch 1,mem_lch_code
+	compare 3,pdata,0x03
+	setflag true,smap_rxlmp,temp
+	nsetflag true,smap_rxl2cap,temp
+	storet 1,mem_state_map
+	nbranch process_dmh_cont_rxbuf_not_use,true
+	set1 mark_rxbuf_inuse,mark
+process_dmh_cont_rxbuf_not_use:
+	bmark0 mark_testmode,ack_payload
+	isolate1 smap_rxlmp,temp
+	branch ack_payload,true
+	fetch 2,mem_tst_pktcnt_crc
+	increase 1,pdata
+	store 2,mem_tst_pktcnt_crc
+	set1 mark_loopback,mark
+	set0 smap_rxl2cap,temp
+	set0 mark_rxbuf_inuse,mark
+	storet 1,mem_state_map
+ack_payload:
+	set0 mark_ext_patch,mark
+	bpatch patch0d_2,mem_patch0d
+	fetcht 1,mem_temp_arq
+	fetch 1,mem_arq
+	set1 arqnx,pdata
+	isolate1 seqn,temp            /* if accept, seqn always copies from the header */
+	setflag true,seqn,pdata
+	isolate1 mark_am_addr_broadcast,mark
+	setflag true,bcast1,pdata
+	store 1,mem_arq
+	fetch 2,mem_len
+	nbranch end_of_packet,blank
+	fetch 1,mem_state_map
+	set0 smap_rxl2cap,pdata//better to do this in l2cap_flow_ctrl_stop
+	store 1,mem_state_map
+	fetch 1,mem_lch_code
+	compare 0x01,pdata,0x07
+	//call l2cap_flow_ctrl_stop,true
+	branch end_of_packet
+	
+error_header:
+	set0 mark_ext_patch,mark
+	bpatch patch0d_3,mem_patch0d
+	disable match
+	fetch 2,mem_rx_hec_err
+	increase 1,pdata
+	store 2,mem_rx_hec_err
+	branch end_of_packet
+error_payload_crc:
+	fetch 2,mem_rx_crc_err
+	increase 1,pdata
+	store 2,mem_rx_crc_err
+	call discard_pkt
+	bmark0 mark_testmode,error_payload
+	set1 mark_loopback,mark
+error_payload:
+	branch end_of_packet
+	
+discard_pkt:
+	set0 mark_ext_patch,mark
+	bpatch patch0d_4,mem_patch0d
+	fetch 1,mem_lch_code
+	compare 3,pdata,0x03
+	nbranch discard_pkt_l2cap,true
+discard_pkt_lmp:	
+	fetcht 1,mem_state_map
+	set0 smap_rxlmp,temp
+	storet 1,mem_state_map
+	rtn
+discard_pkt_l2cap:
+//	isolate1 mark_testmode,mark
+//	setflag true,mark_loopback,mark
+	fetcht 1,mem_state_map
+	set0 smap_rxl2cap,temp
+	storet 1,mem_state_map
+	branch  h4_send_acl_trigger_clear
+
+redundant_payload:
+	fetch 1,mem_arq
+	set1 arqnx,pdata
+	store 1,mem_arq
+end_of_packet:
+	set0 mark_ext_patch,mark
+	bpatch patch0d_5,mem_patch0d
+	disable encode_fec0
+	disable encode_fec2
+	disable decode_fec0
+	disable decode_fec2
+	disable enable_crc
+	disable encrypt
+	disable enable_white
+	branch shutdown_radio,is_rx
+	until null,tx_clear
+	nop 100          /* flush out the last bit */
+	branch shutdown_radio
+	
+process_fhs:
+	set0 mark_ext_patch,mark
+	bpatch patch0d_6,mem_patch0d
+	enable enable_crc
+	enable decode_fec2
+	parse demod,bucket,72
+	isolate1 58,pdata
+	setflag true,mark_fhs_eir,mark
+	copy bt_adr,temp             /* save current address to aside */
+	ialigned bt_adr            /* send it to access gen */
+	ialigned fhs0			/* get fhs_misc */
+	pulse recalc                /* calc the lap just received from the other guy */
+	setsect 2,0xfffff             /* preset ms of shift reg as big mask */
+	setsect 3,0x0ffff             /* preset ms of shift reg as big mask */
+	nop 32                       /* 30 cycles after recalc */
+	iverify fhs_parity             /* check fhs_parity against ls 34 bits at shift reg, with msb 36 bits as mask */
+	deposit lap
+	store 3,extm_lap
+	deposit uap
+	store 1,extm_uap
+	copy temp,bt_adr             /* put the address back */
+	branch fhs_parity_ok,true     /* fhs parity failed */
+	branch error_payload
+fhs_parity_ok:
+	set0 mark_ext_patch,mark
+	bpatch patch0d_7,mem_patch0d
+	parse demod,bucket,72
+	ialigned fhs1                   /* give host the information on class and fhs_misc */
+	ialigned am_addr                /* store the am_addr the master assigned us */
+	ialigned nap
+	ialigned regb                   /* store external clock in regb according to clock format */
+	force 0,pdata
+	parse demod,bucket,16  /* cycle through the crc */
+	branch error_payload,crc_failed
+	setarg 0x0ffffffc
+	iand regb,pdata
+	store 4,mem_clke_bt
+	deposit fhs_class
+	store 3,extm_class
+	deposit fhs_misc
+	store 1,extm_fhs_misc
+	deposit am_addr
+	store 1,extm_newconn_am_addr
+	deposit nap
+	store 2,extm_nap
+	deposit bt_clk
+	inject rxf,32
+	compare type_fhs,type,0x0f         /* see if this was fhs packet */
+	setflag true,mark_fhs_already_good,mark
+	branch end_of_packet
+
+clear_got_tx:
+	set0 mark_ext_patch,mark
+	bpatch patch0e_0,mem_patch0e
+	fetch 1,mem_arq
+	rtnbit0 wack
+	set0 wack,pdata
+	setflip seqnx,pdata
+	store 1,mem_arq
+	fetch 1,mem_last_type
+	beq type_lmp,clear_got_txlmp
+	rtneq type_hv3
+	fetch 1,mem_op
+	rtnbit0 op_txl2cap,pdata
+	set0 op_txl2cap,pdata
+	set1 op_pkt_comp,pdata
+	store 1,mem_op
+	set0 mark_tx_l2cap,mark
+	fetch 1,mem_device_option
+	rtneq dvc_op_hci
+	fetch 2,mem_l2cap_tx_multi_offset
+	nrtn blank
+	fetch 1,mem_op
+	set0 op_pkt_comp,pdata
+	store 1,mem_op
+	branch l2cap_malloc_free
+
+clear_got_txlmp:
+	set0 mark_ext_patch,mark
+	bpatch patch0e_1,mem_patch0e
+	fetch 1,mem_lmo_header_opcode
+	rshift pdata,pdata
+	beq LMP_START_ENCRYPTION_REQ,start_encryption
+	beq LMP_STOP_ENCRYPTION_REQ,stop_encryption
+	beq LMP_UNSNIFF_REQ, sniff_exit
+	beq LMP_ESCAPE,clear_lmp_escape
+	beq LMP_REMOVE_SCO_LINK_REQ,stop_sco
+	rtnne LMP_ACCEPTED
+	fetch 1,mem_lmo_payload
+	beq LMP_SCO_LINK_REQ,sco_link_req_by_slave
+	beq LMP_START_ENCRYPTION_REQ,clear_send_setup_complete
+	rtn
+
+clear_lmp_escape:
+	fetch 1,mem_lmo_payload
+	set1 7,pdata
+	beq LMP_EXT_REMOVE_ESCO_REQ,stop_sco
+	rtn
+clear_send_setup_complete:
+	rtn master
+	fetch 1,mem_state
+	rtnbit1 state_conn_comp
+	jam LMP_SETUP_COMPLETE,mem_lmo_opcode2
+	rtn
+	
+// nokia BH-105  CALLING when reconnection
+sco_link_req_by_slave:
+	rtn master
+	fetch 1,mem_mode
+	isolate1 send_sco_when_slave,pdata
+	branch clean_mem_mode,true
+	//jam LMP_REMOVE_SCO_LINK_REQ,mem_lmo_opcode2
+	rtn
+clean_mem_mode:
+	set0 send_sco_when_slave,pdata
+	store 1,mem_mode
+	rtn
+	
+start_encryption:
+	set0 mark_ext_patch,mark
+	bpatch patch0e_2,mem_patch0e
+	fetch 1,mem_state_map
+	set1 smap_encryption,pdata
+	store 1,mem_state_map
+	hjam 1,core_encrypt
+	fetch 1,mem_state
+	isolate1 state_conn_comp,pdata
+	branch hci_send_encryption_change,true
+	rtn
+
+stop_encryption:
+	set0 mark_ext_patch,mark
+	bpatch patch0e_3,mem_patch0e
+	fetch 1,mem_state_map
+	set0 smap_encryption,pdata
+	store 1,mem_state_map
+	hjam 0,core_encrypt
+	rtn
+
+
+sniff_init:
+	set0 mark_ext_patch,mark
+	bpatch patch0e_4,mem_patch0e
+	copy clkn_bt,pdata
+	store 4,mem_lpm_delay_after_sniff
+	add clkn_bt,3,rega
+	branch sniff_init_master,master
+	add clke_bt,3,rega
+sniff_init_master:
+	fetcht 2,mem_tsniff
+	deposit rega
+	set0 27,pdata
+	idiv temp
+	fetch 2,mem_dsniff
+	call wait_div_end
+	remainder regc
+	isub regc,pdata
+	branch sniff_init_nowrap,positive
+	iadd temp,pdata
+sniff_init_nowrap:
+	iadd rega,pdata
+	store 4,mem_sniff_anchor
+	jam SWITCH_FLAG_INIT,mem_switch_flag
+	fetch 1,mem_state
+	set1 state_insniff,pdata
+	store 1,mem_state
+	fetch 1,mem_sniff_attempt
+	store 1,mem_current_sniff_attempt
+	jam 0x80,mem_seqi
+	setarg 0
+	store 3,mem_sniff_rcv
+	store 3,mem_sniff_lost
+	store 1,mem_sniff_unint_lost
+	jam BT_EVT_ENTER_SNIFF,mem_fifo_temp
+	call ui_ipc_send_event
+	fetch 2,mem_rx_window_sniff
+	store 2,mem_rx_window
+	nrtn master
+	add am_addr,-1,queue
+	rtn
+
+sniff_exit:
+	set0 mark_ext_patch,mark
+	bpatch patch0e_5,mem_patch0e
+	fetch 1,mem_state
+	rtnbit0 state_insniff
+	set0 state_insniff,pdata
+	store 1,mem_state
+	jam 0x7f,mem_seqi
+	fetch 2,mem_rx_window_init
+	store 2,mem_rx_window
+	disable wake
+	jam BT_EVT_EXIT_SNIFF,mem_fifo_temp
+	branch ui_ipc_send_event
+
+
+check_attempt:
+	set0 mark_ext_patch,mark
+	bpatch patch0e_6,mem_patch0e
+	enable attempt
+	fetch 1,mem_state
+	bbit1 state_insniff,check_attempt_sniff
+	rtnmark1 mark_testmode						/* pdata won't be blank now, try attempt */
+	fetch 1,mem_arq
+	rtnbit1 wack
+	fetch 1,mem_lmp_to_send
+	nrtn blank
+	fetch 1,mem_op
+	rtnbit1 op_txl2cap
+check_attempt_nomore:
+	force 0,pdata
+	rtn
+
+check_attempt_sniff:
+	bbit0 state_insco,check_attempt_not_sco
+	fetch 1,mem_current_sniff_attempt
+	beq 2,check_attempt_sniff_restore_sco
+	fetch 1,mem_arq
+	bbit1 wack,check_attempt_notimeout
+	bmark0 mark_esco_rxok,check_attempt_notimeout
+check_attempt_sniff_restore_sco:
+	call restore_esco
+	nbranch check_attempt_notimeout,master
+	fetch 1,mem_lmp_to_send
+	nbranch check_attempt_notimeout,blank
+check_attempt_sco_master:
+	fetch 1,mem_sco_poll
+	increase -1,pdata
+	store 1,mem_sco_poll
+	nbranch check_attempt_nomore,blank
+	jam param_sco_poll,mem_sco_poll
+	branch check_attempt_notimeout
+	
+check_attempt_not_sco:
+	fetch 1,mem_current_sniff_attempt
+	bne 1,check_attempt_notimeout
+	fetch 1,mem_current_sniff_timeout
+	branch check_attempt_notimeout,blank
+	increase -1,pdata
+	store 1,mem_current_sniff_timeout
+	fetch 1,mem_arq
+	rtnbit1 wack						// waiting for next ack
+	nrtn match						// waiting for next poll
+check_attempt_notimeout:
+	fetch 1,mem_current_sniff_attempt
+	increase -1,pdata
+	store 1,mem_current_sniff_attempt
+	rtn
+
+	/* enable user if sniff window vialation, queue is extra overhead */
+sniff_check_window:
+	set0 mark_ext_patch,mark
+	bpatch patch0e_7,mem_patch0e
+	disable swfine
+	copy temp,stop_watch
+	call context_search_sniff_window
+	disable user
+	nrtn zero
+	force 0,stop_watch
+	enable user
+	rtn
+
+	//return true if it is esco context
+check_esco_amaddr:
+	fetch 1,mem_esco_addr
+	icompare 0xff,am_addr
+	rtn
+	
+play_sco:
+	set0 mark_ext_patch,mark
+	bpatch patch0f_0,mem_patch0f
+	jam 1,mem_max_slot
+	//call context_traverse_max_slot
+	call enable_pcm
+	force 12,pdata
+	store 2,mem_tsniff
+	fetch 1,mem_esco_desco
+	lshift pdata,pdata
+	store 2,mem_dsniff
+	fetch 1,mem_state
+	set1 state_insco,pdata
+	store 1,mem_state
+	jam 3,mem_sniff_attempt
+	jam 3,mem_current_sniff_attempt
+	call sniff_init
+	force 0,temp //sco chn
+	call hci_send_sco_complete
+	jam 0x50,mem_esco_arq
+	jam param_sco_poll,mem_sco_poll
+	rtn
+	
+stop_sco:
+	set0 mark_ext_patch,mark
+	bpatch patch0f_1,mem_patch0f
+	call sniff_exit
+	jam 5,mem_max_slot
+	//call context_traverse_max_slot
+	call disable_pcm	
+	fetch 1,mem_state
+	set0 state_insco,pdata
+	store 1,mem_state
+stop_sco_hci:
+	arg 0xe00,temp
+	jam HCI_ERROR_REMOTE_USER_ENDED_CONNECTION,mem_hci_disconn_reason
+	branch hci_send_disconn_complete
+
+stop_esco:
+	set0 mark_ext_patch,mark
+	bpatch patch0f_2,mem_patch0f
+	jam default_neogotiation_state,mem_neogotiation_state
+	call stop_sco
+	call restore_esco
+	set0 mark_esco,mark
+	rtn	
+
+parse_l2cap:	
+	set0 mark_ext_patch,mark
+	bpatch patch0f_3,mem_patch0f
+	fetch 1,mem_device_option
+	beq dvc_op_hci,parse_l2cap_hci
+	set0 mark_rxbuf_inuse,mark 
+parse_l2cap_cont:
+	jam L2CAP_RX_CLEAR,mem_l2cap_rx_done
+	fetch 1,mem_l2cap_rxbuff_inuse
+	rtn blank
+	isolate1 L2CAP_INUSE_BUFF1,pdata
+	arg mem_l2cap_rxbuff1,contr
+	call process_rx_l2cap_pkt,true
+	set0 mark_ext_patch,mark
+	bpatch patch0f_4,mem_patch0f
+	fetch 1,mem_l2cap_rx_done
+	beq L2CAP_RX_DONE,parse_l2cap_release_buff1
+	
+	jam L2CAP_RX_CLEAR,mem_l2cap_rx_done
+	fetch 1,mem_l2cap_rxbuff_inuse
+	rtnbit0 L2CAP_INUSE_BUFF2
+	arg mem_l2cap_rxbuff2,contr	
+	call process_rx_l2cap_pkt
+	fetch 1,mem_l2cap_rx_done
+	beq L2CAP_RX_DONE,parse_l2cap_release_buff2
+	rtn
+	
+parse_l2cap_exit:
+	fetch 1,mem_state_map
+	set0 smap_rxl2cap,pdata
+	store 1,mem_state_map
+	set0 mark_rxbuf_inuse,mark
+	branch h4_send_acl_trigger_clear
+	
+parse_l2cap_release_buff1:
+	fetch 1,mem_l2cap_rxbuff_inuse
+	set0 L2CAP_INUSE_BUFF1,pdata
+	store 1,mem_l2cap_rxbuff_inuse
+	setarg 0
+	store 2,mem_l2cap_rxbuff1_len
+	rtn
+parse_l2cap_release_buff2:
+	fetch 1,mem_l2cap_rxbuff_inuse
+	set0 L2CAP_INUSE_BUFF2,pdata
+	store 1,mem_l2cap_rxbuff_inuse
+	setarg 0
+	store 2,mem_l2cap_rxbuff2_len
+	rtn
+
+parse_l2cap_hci:
+	fetch 1,mem_state_map
+	rtnbit0 smap_rxl2cap,pdata
+	call h4_send_acl_trigger
+	fetch 2,mem_acl_credits
+	branch assert,blank
+	increase -1,pdata
+	store 2,mem_acl_credits
+	branch parse_l2cap_exit
+
+l2cap_buff1_inuse:
+	fetch 1,mem_l2cap_rxbuff_inuse
+	set1 L2CAP_INUSE_BUFF1,pdata
+	store 1,mem_l2cap_rxbuff_inuse
+	rtn
+
+l2cap_buff2_inuse:
+	fetch 1,mem_l2cap_rxbuff_inuse
+	set1 L2CAP_INUSE_BUFF2,pdata
+	store 1,mem_l2cap_rxbuff_inuse
+	rtn
+
+/******************************************/
+/**********  Transmit Packet  *************/
+/******************************************/
+
+slave_send_access:
+	set0 mark_ext_patch,mark
+	bpatch patch0f_5,mem_patch0f
+	add clke_bt,1,bt_clk          /* slave start to use native clock */
+	call fetch_extm_bt_adr
+	force 0x03,freq_mode          /* connection frequency */
+	call tx_radio_freq
+	call start_transmitter
+	call start_tx_external
+	branch send_access_word
+	
+
+slave_conn_send_packet:
+	set0 mark_ext_patch,mark
+	bpatch patch0f_6,mem_patch0f
+	call rf_setup_time_slave_slot
+	deposit clke_bt
+	fetcht 4,mem_next_btclk
+	isub temp,pdata
+	rtnne 1					/* missed slave slot */
+	compare type_null,type,0x1f
+	nbranch slave_conn_send_access,true
+	fetch 1,mem_rx_type
+	rtn blank					/* null packet, do nothing */
+slave_conn_send_access:
+	call slave_send_access
+	compare type_id,type,0x1f        /* is this id only ? */
+	branch end_of_packet,true
+transmit_packet:
+	rshift bt_clk,temp
+	or temp,0x40,white_init
+transmit_packet_whitened:
+	set0 mark_ext_patch,mark
+	bpatch patch0f_7,mem_patch0f
+	enable enable_white
+	enable enable_hec
+	enable encode_fec1
+	set0 mark_longpacket,mark
+	deposit am_addr
+	inject mod,3             /* am_addr, temp is disabled */
+	deposit type
+	inject mod,4
+	fetch 1,mem_arq   /* aka mem_arq */
+	inject bucket,4  /* align up to flowx, arqnx, seqnx */
+	inject mod,3
+	enable enable_parity
+	inject mod,8   /* transmit parity */
+	disable encode_fec1
+	disable enable_parity
+	disable enable_hec
+	set0 PSK3M,radio_ctrl
+	arg 0,temp
+	call reserve_slot
+	set0 mark_ext_patch,mark
+	bpatch patch10_0,mem_patch10
+	and type,0x1f,pdata
+	beq type_lmp, transmit_lmp
+	beq type_null, end_of_packet
+	beq type_poll, end_of_packet
+	beq type_fhs, transmit_fhs  /* master mode fhs need got_tx and ack */
+	beq type_dm1, transmit_dm1
+	beq type_dh1, transmit_dh1
+	beq type_hv3, transmit_hev
+	beq type_3dh1, transmit_3dh1
+	arg 4,temp
+	call reserve_slot
+	beq type_dm3, transmit_dm3
+	beq type_dh3, transmit_dh3
+	arg 8,temp
+	call reserve_slot
+	beq type_dh5, transmit_dh5
+	branch transmit_dm5	/* must be 14, dm5 */
+
+
+transmit_hev:
+	set0 mark_ext_patch,mark
+	bpatch patch10_1,mem_patch10
+	enable encode_fec0
+	enable enable_crc
+	enable encrypt
+	force 30,loopcnt
+	arg mem_sco_obuf,contr
+transmit_ev_loop:
+	ifetch 1,contr
+	inject mod,8
+	loop transmit_ev_loop
+	bmark1 mark_esco,transmit_end
+	branch end_of_packet
+	
+transmit_fhs:
+	set0 mark_ext_patch,mark
+	bpatch patch10_2,mem_patch10
+	fetch 1,mem_fhs_am_addr            /* this is the am_addr to assign to slave */
+	icopy am_addr
+	fetch 1,mem_fhs_misc
+	icopy fhs_misc    /* [7:6]SR [5:4]SP [3:1]PS [0]undef  */
+	fetch 3,mem_class   /* store away class */
+	icopy fhs_class
+	fetch 2,mem_nap
+	icopy nap
+	enable enable_crc
+	enable encode_fec2
+	copy bt_adr,rega
+	call fetch_self_bt_adr
+	pulse recalc
+	nop 32                    /* 30 cycles after recalc for sync word generation */
+	copy bt_clk,timeup
+	fetch 4,mem_clkn_bt
+	icopy bt_clk
+	preload fhs0
+	set1 58,pdata		/* eir */
+	inject mod,72
+	preload fhs1
+	inject mod,72
+	copy timeup,bt_clk
+	copy rega,bt_adr
+	enable enable_parity
+	inject mod,16   /* generate CRC */
+	disable enable_parity
+	branch end_of_packet
+
+transmit_lmp:    /* expect the payload ready as in bb spec */
+	set0 mark_ext_patch,mark
+	bpatch patch10_3,mem_patch10
+	enable encrypt
+	enable enable_crc
+	enable encode_fec2
+	fetch 1,mem_lmo_header_length   /* this is the payload header */
+	and pdata,0x1f8,temp       /* temp is number of bits, check payload header format */
+	arg mem_lmo_header_length,contr
+	increase 8,temp   /* temp is in bits */
+transmit_lmp_loop:
+	add temp,-72,regc   /* regc is remainder */
+	nbranch transmit_lmp_finish,positive
+	ifetch 9,contr
+	inject mod,72
+	copy regc,temp
+	branch transmit_lmp_loop
+transmit_lmp_finish:
+	ifetch 9,contr
+	iinject mod,temp
+	branch transmit_end
+
+transmit_dm1:
+	enable encode_fec2
+	branch transmit_dmh
+transmit_dm3:
+transmit_dm5:
+	enable encode_fec2
+	set1 mark_longpacket,mark
+	branch transmit_dmh
+
+transmit_3dh1:
+	set1 PSK3M,radio_ctrl
+transmit_dh1:
+	enable encode_fec0
+	branch transmit_dmh
+	
+transmit_dh3:
+transmit_dh5:
+	set1 PSK3M,radio_ctrl
+	enable encode_fec0
+	set1 mark_longpacket,mark
+
+transmit_dmh:
+	set0 mark_ext_patch,mark
+	bpatch patch10_4,mem_patch10
+	fetch 1,mem_state_map
+	bbit0 smap_edr,transmit_noedr
+	sub type,3,null
+	branch transmit_noedr,positive
+	disable encrypt
+	disable encode_fec2
+	enable encode_fec0
+	disable enable_white
+	set1 PSK,radio_ctrl
+	isolate1 PSK3M,radio_ctrl
+	branch transmit_edr3m,true
+	setarg 0xabeee
+	inject mod,20
+	branch transmit_edr_sync_end
+transmit_edr3m:
+	setarg 0x5faeba
+	inject mod,24
+	setarg 0x12
+	inject mod,6
+transmit_edr_sync_end:	
+	enable enable_white
+	set1 mark_longpacket,mark
+transmit_noedr:
+	enable encrypt
+	enable enable_crc
+	bmark1 mark_loopback,transmit_loopback
+	fetch 1,mem_tx_lch
+	inject mod,3
+	fetch 2,mem_tx_len
+	iforce loopcnt
+	bmark1 mark_longpacket,transmit_long
+	inject mod,5
+	branch transmit_stuff
+transmit_long:	
+	inject mod,13
+transmit_stuff:
+	fetch 1,mem_device_option
+	beq dvc_op_hci,transmit_stuff_hci
+	deposit loopcnt
+	branch transmit_end,blank
+	fetch 2,mem_txptr
+	iforce contr
+transmit_stuff_loop:
+	ifetch 1,contr
+	inject mod,8
+	loop transmit_stuff_loop
+	branch transmit_end
+transmit_stuff_hci:
+	fetch 2,mem_txptr
+	iforce contru
+transmit_stuff_hci_loop:
+	ifetch 1,contru
+	inject mod,8
+	loop transmit_stuff_hci_loop
+transmit_end:
+	enable enable_parity
+	inject mod,16
+	disable enable_parity
+	call set_wait_ack
+	fetch 1,mem_state_map
+	bbit0 smap_edr,end_of_packet
+	force 0,pdata
+	inject mod,6				/* edr trailer */
+	branch end_of_packet
+
+
+transmit_loopback:
+	set0 mark_ext_patch,mark
+	bpatch patch10_5,mem_patch10
+	bmark1 mark_longpacket,transmit_loopback_long
+transmit_loopback_short:
+	fetch 1,mem_lch_code
+	inject mod,3						/* LLID and FLOW */
+	fetch 1,mem_len	/* take packet length */
+	iforce regc
+	inject mod,5
+	branch transmit_loopback_cont
+transmit_loopback_long:
+	fetch 1,mem_lch_code
+	inject mod,3						/* LLID and FLOW */
+	fetch 2,mem_len	/* take packet length */
+	iforce regc
+	inject mod,13
+transmit_loopback_cont:
+	arg mem_rxbuf,contr
+transmit_loopback_loop:	
+	copy regc,null
+	branch transmit_loopback_end,zero
+	ifetch 1,contr
+	inject mod,8
+	increase -1,regc
+	branch transmit_loopback_loop
+transmit_loopback_end:
+	fetch 2,mem_tst_pktcnt_dmh
+	increase 1,pdata
+	store 2,mem_tst_pktcnt_dmh
+	branch transmit_end
+	
+
+apply_switch_clke:
+	fetch 4,mem_clke_bt
+	add pdata,7,rega
+	fetch 2,mem_slot_offset
+	nbranch apply_switch_nozero,blank
+	increase -3,rega
+	branch apply_switch_wait_loop
+apply_switch_nozero:
+	mul32 pdata,12,pdata
+	hfetcht 2,core_halfslot
+	increase 1,temp
+apply_switch_loop:
+	isub temp,pdata
+	nbranch apply_switch_bt,positive
+	increase -1,rega
+	branch apply_switch_loop
+apply_switch_bt:
+	sub pdata,0,pdata
+apply_switch_wait_loop:
+	until null,oneslot
+	compare 0,clkn_bt,3
+	nbranch apply_switch_wait_loop,true
+	iforce clke_rt
+	copy rega,clke_bt
+	iforce clke_rt
+	rtn
+	
+
+calc_slot_offset:
+	set0 mark_ext_patch,mark
+	bpatch patch10_6,mem_patch10
+	until null,halfslot
+	deposit clke
+	iforce contr
+	rshift16,pdata,pdata
+	isub clkn_bt,loopcnt
+	and_into 3,loopcnt			/* bt portion */
+	nbranch calc_bt_portion,zero
+	force 0,pdata
+	branch calc_skip_bt
+calc_bt_portion:
+	arg 3750,temp
+	force 0,pdata
+calc_slot_offset_loop:
+	iadd temp,pdata
+	loop calc_slot_offset_loop
+calc_skip_bt:
+	iadd contr,pdata			/* add rt portion */
+	div pdata,12
+	call wait_div_end
+	quotient pdata
+	store 2,mem_slot_offset
+	rtn
+
+calc_clke_offset:
+	set0 mark_ext_patch,mark
+	bpatch patch10_7,mem_patch10
+	deposit clke
+	copy clkn,temp
+	isub temp,null
+	nsetflag positive,44,pdata
+	isub temp,temp
+	setarg 3750
+	isolate0 15,temp
+	branch calc_clke_pos,true
+	setarg -61786
+	iadd temp,temp
+calc_clke_pos:
+	storet 6,mem_le_clk_offset
+	rtn le
+	storet 6,mem_clk_offset
+	rtn
+
+calc_clke:
+	disable clknt
+	fetch 6,mem_le_clk_offset
+	branch calc_clke2,le
+	fetch 6,mem_clk_offset
+calc_clke2:
+	iadd clkn,alarm
+	increase 10,alarm
+	setarg 3750
+	isub alarm,pdata
+	isolate0 15,pdata
+	branch calc_clke_pos_adj,true
+	setarg 0xf15a
+	iadd alarm,alarm
+calc_clke_pos2:
+	copy alarm,clke
+	rtn
+calc_clke_pos_adj:		/* add 2 clock */
+	force 0,null
+	branch calc_clke_pos2
+	
+/******************************************/
+/********* RF related functions ***********/
+/******************************************/
+
+
+calc_radio_freq:
+	set0 mark_ext_patch,mark
+	bpatch patch11_0,mem_patch11
+	call set_sync_on
+	copy bt_clk,pdata
+	and_into 0x180,pdata
+	compare 3,freq_mode,0x07
+	nbranch freq_not_connection,true    /* don't do the hack if not in connection */
+	rshift3 pdata,pdata
+	iadd freq_index,pdata
+	branch do_hop_mod_now
+freq_not_connection:	
+	copy freq_index,pdata
+do_hop_mod_now:
+	div pdata,79
+	pulse recalc         /* now is good time to recalc id */
+	call wait_div_end
+	remainder rega
+	add rega,-40,temp
+	branch odd_half,positive
+	lshift rega,temp
+	branch freq_result
+odd_half:
+	lshift temp,temp
+	increase 1,temp
+freq_result:	
+	set0 mark_ext_patch,mark
+	bpatch patch11_1,mem_patch11
+	fetch 1,mem_mode
+	bbit0 afh_change,afh_process_con
+afh_process_0:	
+	fetch 4, mem_afh_instant   
+	isub bt_clk, null
+	branch afh_process_con,positive
+	call afh_clear
+	fetch 1,mem_afh_new_mod
+	rtn blank
+	fetch 1,mem_mode
+	set1 afh_enable,pdata
+	store 1,mem_mode
+	fetch 5,mem_afh_map_new
+	store 5,mem_afh_map_lo
+	ifetch 5,contr
+	store 5,mem_afh_map_hi
+	call afh_process_freq_map
+afh_process_con:
+	fetch 1,mem_mode
+	rtnbit0 afh_enable
+	isolate1 1,bt_clk
+	branch afh_same_channel,true	/* at odd slot, use the same as last even */
+	rshift3 temp,rega
+	and temp,7,queue
+	setarg mem_afh_map_lo  
+	iadd rega, rega
+	ifetch 1, rega
+	qisolate0 pdata
+	branch afh_process_1,true		/* not in map, do afh */
+	deposit temp
+	branch afh_process_end
+afh_process_1:
+	fetch 1, mem_afh_used
+	iforce regb                     
+	deposit bt_clk
+	and_into 0x180, pdata
+	rshift3 pdata,pdata
+	iadd freq_index,pdata
+	idiv regb
+	setarg mem_afh_map     
+	call wait_div_end
+	remainder rega
+	iadd rega,contr
+	ifetch 1,contr
+afh_process_end:	
+	store 1,mem_afh_index
+	iforce temp  
+  	rtn
+
+afh_same_channel:
+	fetch 1, mem_afh_index           /* last afh index  */
+	iforce temp
+	rtn
+
+afh_clear:
+	fetch 1,mem_mode
+	set0 afh_enable,pdata
+	set0 afh_change,pdata
+	store 1,mem_mode
+	rtn
+/*
+fixed_frequency:
+	fetcht 1,mem_fixed_freq
+	rtn
+*/
+afh_process_freq_map:
+	set0 mark_ext_patch,mark
+	bpatch patch11_2,mem_patch11
+	arg mem_afh_map,contw
+	force 10,loopcnt
+	call memset0
+	arg mem_afh_map,contw
+	force 0,regc
+	force 2,queue
+process_freq_3:	
+	fetch 5,mem_afh_map_lo
+	iforce temp
+	compare 2,queue,0xff
+	branch process_freq_1,true
+	rshift temp,temp
+process_freq_1:	
+	isolate0 0,temp
+	branch process_freq_0,true
+	deposit regc
+	istore 1,contw
+process_freq_0:
+	rshift2 temp,temp
+	increase 2,regc
+	compare 40,regc,0xfe
+	nbranch process_freq_2,true
+	fetch 5,mem_afh_map_hi
+	iforce temp
+	compare 2,queue,0xff
+	branch process_freq_2,true
+	rshift temp,temp
+process_freq_2:	
+	sub regc,78,null
+	branch process_freq_1,positive
+	force 1,regc
+	increase -1,queue
+	nbranch process_freq_3,zero
+	arg mem_afh_map,rega
+	deposit contw
+	isub rega,pdata
+	store 1,mem_afh_used
+	rtn
+
+rx_radio_freq:
+	set0 mark_ext_patch,mark
+	bpatch patch11_3,mem_patch11
+	call calc_radio_freq
+	fetch 1,mem_debug_config
+	bbit0 debug_rx_fixed_freq,rx_radio_freq_now
+	fetcht 1,mem_rx_fixed_freq
+rx_radio_freq_now:
+	branch set_freq_rx
+	
+
+tx_radio_freq:
+	set0 mark_ext_patch,mark
+	bpatch patch11_4,mem_patch11
+	call calc_radio_freq
+	fetch 1,mem_debug_config
+	bbit0 debug_tx_fixed_freq,tx_radio_freq_now
+	fetcht 1,mem_tx_fixed_freq
+tx_radio_freq_now:
+	branch set_freq_tx
+	
+
+fetch_giac:
+	force 0,uap
+	fetch 3,mem_glap
+	iforce lap
+	rtn
+
+fetch_page_bt_adr:
+	set0 mark_ext_patch,mark
+	bpatch patch11_5,mem_patch11
+	fetch 1,mem_hci_puap
+	icopy uap
+	fetch 3,mem_hci_plap
+	icopy lap
+	rtn
+
+fetch_self_bt_adr:
+	set0 mark_ext_patch,mark
+	bpatch patch11_6,mem_patch11
+	fetch 2,mem_nap
+	icopy nap
+	fetch 1,mem_uap
+	icopy uap
+	fetch 3,mem_lap
+	icopy lap                 /* copy self_adr,bt_adr */      /* use own address */
+	rtn
+
+fetch_extm_bt_adr:
+	set0 mark_ext_patch,mark
+	bpatch patch11_7,mem_patch11
+	fetch 2,mem_pnap
+	icopy nap
+	fetch 1,mem_puap
+	icopy uap
+	fetch 3,mem_plap
+	icopy lap         
+	rtn
+
+
+fetch_diac:
+	bmark1 mark_all_diac,fetch_diac_do
+	rtnmark0 mark_inquiry_state
+	rtnmark0 mark_periodical_diac
+fetch_diac_do:
+	and_into -256,lap
+	pulse recalc
+	nop 32
+	rtn
+
+
+shutdown_radio:
+	set0 mark_ext_patch,mark
+	bpatch patch12_0,mem_patch12
+ifdef FPGA
+ifndef ROMCODE
+	setarg 0x003f
+	call fpga_write_radio
+	setarg 0x017f
+	call fpga_write_radio
+endif
+endif
+	force 0,radio_ctrl
+	disable is_rx
+	disable is_tx
+	pulse packet_end
+	hjam 0x0,rfen_mdm
+	hjam 0x0,rfen_tx
+	hjam 0x0,rfen_rx
+	hjam 0,rfen_sn
+	hjam 0x70,rfen_msc
+	hjam 0x0,rfen_adc
+	rtn	
+
+set_sync_on:
+	set0 mark_ext_patch,mark
+	bpatch patch12_1,mem_patch12
+ifdef FPGA
+ifndef ROMCODE
+	setarg 0x000f
+	call fpga_write_radio
+	setarg 0x016f
+	call fpga_write_radio
+endif
+endif
+	hjam 0x0,rfen_mdm					/* if called from tx or rx */
+	hjam 0x0,rfen_tx
+	hjam 0x18,rfen_rx
+	hjam 0xa7,rfen_sn
+	hjam 0x7f,rfen_msc
+	rtn
+
+
+set_freq_rx:
+	set0 mark_ext_patch,mark
+	bpatch patch12_2,mem_patch12
+		/* IF is +2MHz */
+	storet 1,mem_last_freq
+	add temp,rx_freq_offset,rega			/* index to frequency */
+	branch rf_write_freq
+rf_rx_enable:
+	set0 mark_ext_patch,mark
+	bpatch patch12_3,mem_patch12
+ifdef FPGA
+ifndef ROMCODE
+	setarg 0x0004
+	call fpga_write_radio
+	setarg 0x016f
+	call fpga_write_radio
+endif
+endif
+	hjam 0xcf,rfen_tx
+	nop 10					/* wait adc clk48 ready */
+	hjam 0xff,rfen_rx
+	hjam 0xaf,rfen_sn
+	hjam 0xff,rfen_msc
+	nop 10
+	hjam 0xa0,rfen_mdm
+	rtn
+
+
+set_freq_tx:
+	set0 mark_ext_patch,mark
+	bpatch patch12_4,mem_patch12
+	storet 1,mem_last_freq
+	add temp,tx_freq_offset,rega			/* index to frequency */
+	call rf_write_freq
+	setarg param_pll_setup
+	call sleep
+txon:	
+ifdef FPGA
+ifndef ROMCODE
+	setarg 0x000f
+	call fpga_write_radio
+	setarg 0x01e1
+	call fpga_write_radio
+	hjam 0x0, 0x901
+endif
+endif
+	hjam 0x1,rfen_adc
+	hjam 0x3c,rfen_rx
+	hjam 0xe0,rfen_tx
+	hjam 0xb7,rfen_sn
+	hjam 0x7f, rfen_mdm
+	rtn
+
+initialize_radio:
+ifdef FPGA
+ifndef ROMCODE
+	branch fpga_init
+endif
+endif
+	hjam clksel_rc,core_clksel
+	call init_rf_regs
+	call init_agc_table
+initialize_radio_wait:
+	fetch 2,mem_rf_init_ptr
+	bbit0 14,initialize_radio_wait
+	iforce contr
+	arg 0x8900,temp
+initialize_radio_loop:
+	ifetch 1,contr
+	beq 0xff,initialize_radio_cont
+	ior temp,contw
+	ifetch 1,contr
+	istore 1,contw
+	branch initialize_radio_loop
+initialize_radio_cont:
+	set0 mark_ext_patch,mark
+	bpatch patch12_5,mem_patch12
+	call lpm_cal_xtal_startup
+	call switchto_dpllclk
+//	ncall check_dpll,wake
+	setarg param_dpll_start_delay
+	iadd clkn_bt,pdata
+	store 4,mem_dpll_clkn
+	set1 RESET,radio_ctrl
+	force 0,radio_ctrl
+	ncall do_rccal,wake
+	branch set_rccal
+
+	/* rega is frequency, 00=2400Mhz */
+rf_write_freq:
+	set0 mark_ext_patch,mark
+	bpatch patch12_6,mem_patch12
+ifdef FPGA
+ifndef ROMCODE
+	copy rega,regc
+	setarg 0x1a6c	
+	call fpga_write_radio
+	copy regc,rega
+	add rega,0x18,pdata
+	arg 0x1a80,temp
+	ior temp,pdata
+	branch fpga_write_radio
+endif
+endif
+	setarg 2400
+	iadd rega,temp
+	fetch 1,mem_fcomp_mul
+	hjam 0x04,rf_pll_rstn
+	imul32 temp,pdata
+	fetcht 1,mem_fcomp_div
+	idiv temp
+	call wait_div_end
+	quotient rega			/* rega is FLOOR(FVCO/fcomp) */
+	remainder pdata		
+	lshift16 pdata,pdata
+	lshift4 pdata,pdata		/* pdata is frac * 2^20 */
+	idiv temp
+	call wait_div_end
+	quotient pdata		/* pdata is frac *2^20/fcomp */
+	lshift8 pdata,pdata
+	lshift pdata,pdata
+	ior rega,pdata
+	hstore 4,rf_pll_intg
+	hjam 0x44,rf_pll_rstn
+	hjam 0xc4,rf_pll_rstn
+	rtn
+
+	
+do_rccal:
+	set0 mark_ext_patch,mark
+	bpatch patch12_7,mem_patch12
+	hjam 0x02,rfen_adc
+	setarg 250000
+	call sleep					/* wait clkpll&xtal stable */
+	hjam 0x7f,rfen_rx
+	nop 130
+	hjam 0x30,rf_rccal_ctrl
+	hjam 0xd0,rfen_tx
+	hjam 0x70,rf_rccal_ctrl
+	hjam 0xf0,rf_rccal_ctrl
+	force 50,loopcnt
+do_rccal_loop:
+	hfetch 1,rf_rccal_result
+	bbit1 5,do_rccal_end
+	loop do_rccal_loop
+do_rccal_end:
+	store 1,mem_rf_rccal
+	hjam 0,rfen_tx
+	hjam 0,rfen_rx
+	hjam 0x00,rfen_adc
+ifndef ROMCODE
+	jam 0x30,mem_rf_rccal
+endif
+	rtn
+
+set_rccal:
+	set0 mark_ext_patch,mark
+	bpatch patch13_0,mem_patch13
+	fetch 1,mem_rf_rccal
+	set1 5,pdata
+	hstore 1,rf_rccal_ctrl
+	hfetcht 1,rf_bpf_ctrim
+	and_into 7,temp
+	lshift3 pdata,pdata
+	ior temp,pdata
+	hstore 1,rf_bpf_ctrim
+	hfetch 1,rf_bpf_ib
+	set0 bpf_rccal,pdata
+	hstore 1,rf_bpf_ib
+	hfetch 1,rf_adc_rccal
+	set0 adc_rccal,pdata
+	hstore 1,rf_adc_rccal
+	rtn
+
+save_rssi:
+	set0 mark_ext_patch,mark
+	bpatch patch13_1,mem_patch13
+	hfetch 2,rf_afc_d2a
+	rshift4 pdata,pdata
+	rshift3 pdata,pdata
+	sub pdata,0,pdata
+	and_into 0xff,pdata
+	div pdata,10
+	call wait_div_end
+	quotient pdata
+	lshift4 pdata,pdata
+	remainder temp
+	ior temp,pdata
+	store 1,mem_rssi			/* bcd value */
+	rtn
+
+switchto_rcclk:
+	hjam 0xa,core_clksel
+	hjam 0,rfen_ck
+	hfetch 3,core_lpm_ctrl
+	hstore 3,core_lpm_reg
+	hjam 0xfc,core_lpm_reg
+	call lpm_write_ctrl
+	nop 1000
+	rtn
+	
+switchto_dpllclk:
+	hjam clksel_rc,core_clksel
+	hfetch 1,rf_clkpll_frac+2
+	set0 4,pdata
+	set0 5,pdata
+	hstore 1,rf_clkpll_frac+2
+	hjam 0x00,rfen_ck
+	hjam 0x00,rfen_msc
+	hjam 0x70,rfen_msc
+	hjam 0xff,rfen_ck
+	hfetch 1,rf_clkpll_frac+2
+	set1 4,pdata
+	set1 5,pdata
+	hstore 1,rf_clkpll_frac+2
+	call init_lpm_ctrl
+	hfetch 1,rf_clkpll_int
+	set1 7,pdata
+	hstore 1,rf_clkpll_int
+	set0 7,pdata
+	hstore 1,rf_clkpll_int
+	set1 7,pdata
+	hstore 1,rf_clkpll_int
+	hjam clksel_dpll,core_clksel
+	rtn
+
+check_dpll:
+	nop 1000
+	hjam clksel_xtal,core_clksel
+	nop 10
+	hjam 0x00,core_bist_ctrl
+	hjam ccnt_start,core_misc_ctrl
+check_dpll_loop:
+	hfetch 1,core_perf_status
+	bbit0 1,check_dpll_loop
+	hfetcht 3,core_clk_counter
+	hjam clksel_dpll,core_clksel
+	nop 10
+	hjam ccnt_start,core_misc_ctrl
+check_dpll_loop2:
+	hfetch 1,core_perf_status
+	bbit0 1,check_dpll_loop2
+	hfetch 3,core_clk_counter
+	isub temp,pdata
+	branch check_dpll_pos,positive
+	sub pdata,0,pdata
+check_dpll_pos:
+	store 2,mem_dpll_error
+	sub pdata,70,null
+check_dpll_assert:
+	nbranch check_dpll_assert,positive
+	rtn
+	
+xtal_fast_wake:
+	setarg 0xf0f
+	branch lpm_write_config
+
+init_lpm_ctrl:
+	setarg 0x80f
+	branch lpm_write_config
+
+
+
+start_receiver:
+	set0 mark_ext_patch,mark
+	bpatch patch13_2,mem_patch13
+	call rf_rx_enable
+	disable is_tx
+	enable is_rx
+	pulse init_encrypt
+	rtn
+
+prep_crypt:
+	set0 mark_ext_patch,mark
+	bpatch patch13_3,mem_patch13
+	fetch 1,mem_state_map
+	isolate1 smap_encryption,pdata
+	setflag true,0,pdata
+	hstore 1,core_encrypt
+	arg mem_kc,contr
+	ifetch 9,contr
+	iforce kc_ls
+	ifetch 7,contr
+	iforce kc_ms
+	fetch 1,mem_key_size
+	add pdata,-1,g1l
+	pulse kc_p_activate               /* immediately start calculating primary Key */
+	rtn
+	
+wait_access_clke_rt:
+	set0 mark_ext_patch,mark
+	bpatch patch13_4,mem_patch13
+	enable decode_fec0
+	arg param_conn_access,timeup
+	correlate clke_rt,meet    /* keep correlating until sync is found, stop on no other condition */
+wait_access_end:
+	deposit clke
+	store 6,mem_sync_clke
+	disable decode_fec0
+	nbranch shutdown_radio,sync
+	arg param_clke_cal,clke_rt
+	increase 1,clke_bt
+	and_into 0x1fc,clke_bt
+	rtn
+
+
+
+wait_access_mhalfbnd:
+	enable decode_fec0
+wait_access_mhalfbnd_correlate:
+	correlate null,mhalfbnd    /* keep correlating until sync is found, or clke half */
+	branch wait_access_end,sync
+	compare 0x02,clke_bt,0x02
+	nbranch wait_access_mhalfbnd_correlate,true
+	branch wait_access_end
+
+wait_access_clkn_rt:
+	set0 mark_ext_patch,mark
+	bpatch patch13_5,mem_patch13
+	arg param_conn_access,timeup	/* found sync must occur within this time */
+	enable decode_fec0
+	correlate clkn_rt,meet    /* keep correlating until sync is found, or until clkn_rt timeup */
+	disable decode_fec0
+	nbranch shutdown_radio,sync
+	rtn
+
+wait_access_forever:
+	set0 mark_ext_patch,mark
+	bpatch patch13_6,mem_patch13
+	enable decode_fec0
+	correlate null,timeout    /* keep correlating until sync is found, or timeout */
+	disable decode_fec0
+	nbranch shutdown_radio,sync
+	arg param_clke_cal,clke_rt
+	and_into 0x1fc,clke_bt
+	rtn
+
+	/* reserve slots for mult-slot packet */
+reserve_slot:
+	set0 mark_ext_patch,mark
+	bpatch patch13_7,mem_patch13
+	iforce rega
+	deposit bt_clk
+	iadd temp,timeup
+	copy timeup,pdata
+	store 4,mem_next_btclk
+	deposit rega
+	rtn
+
+	/* pdata = clks ahead of bt_clk */
+ahead_window:
+	copy pdata,temp
+	set0 mark_ext_patch,mark
+	bpatch patch14_0,mem_patch14
+	copy temp,pdata
+	call clk2bt
+	lshift16 bt_clk,pdata
+	set1 44,pdata
+	call clk_diff
+	set0 44,pdata
+	call get_clk
+	call clk_diff
+	rtn user
+	call clk2rt
+	iforce stop_watch
+	until null,timeout
+	rtn
+
+
+setup_clk:
+	set0 mark_ext_patch,mark
+	bpatch patch14_1,mem_patch14
+	branch setup_clkn,clknt
+	until clke_rt,meet
+skip_setup_clke:
+	copy clke_bt,temp
+	branch setup_clknbt
+setup_clkn:
+	branch skip_setup_clkn,attempt
+	until clkn_rt,meet
+skip_setup_clkn:
+	copy clkn_bt,temp
+setup_clknbt:
+	branch setup_clk11,user
+	compare 1,temp,3
+	nbranch setup_clk,true
+setup_complete:
+	set0 mark_ext_patch,mark
+	bpatch patch14_2,mem_patch14
+	fetch 1,mem_state
+	rtnbit0 state_inconn
+	fetch 4,mem_next_btclk
+	isub temp,pdata
+	nrtn positive
+	sub pdata,0xff,null
+	branch setup_clk,positive
+	rtn
+setup_clk11:
+	compare 3,temp,3
+	nbranch setup_clk,true
+	branch setup_complete
+
+rf_setup_time:
+	set0 mark_ext_patch,mark
+	bpatch patch14_3,mem_patch14
+	arg param_rf_setup,timeup
+	branch setup_clk
+	
+rf_setup_time_slave_slot:
+	disable user
+	branch rf_setup_time
+
+rf_setup_time_master_slot:
+	enable user
+	branch rf_setup_time
+	
+start_transmitter:
+	set0 mark_ext_patch,mark
+	bpatch patch14_4,mem_patch14
+	call prep_crypt
+	disable is_rx
+	enable is_tx
+	rtn
+
+
+
+start_tx_native:
+	set0 mark_ext_patch,mark
+	bpatch patch14_5,mem_patch14
+	arg param_tx_setup,timeup
+	until clkn_rt,meet         /* wait until start_tx time */
+	pulse init_encrypt
+	rtn
+
+start_rx_native:
+	set0 mark_ext_patch,mark
+	bpatch patch14_6,mem_patch14
+	arg param_rx_setup,timeup
+	until clkn_rt,meet
+	rtn
+
+
+start_tx_external:
+	set0 mark_ext_patch,mark
+	bpatch patch14_7,mem_patch14
+	arg param_tx_setup,timeup
+	until clke_rt,meet         /* wait until start_tx time */
+	pulse init_encrypt
+	rtn
+
+send_access_word:
+	set0 mark_ext_patch,mark
+	bpatch patch15_0,mem_patch15
+	preload access          /* load in access word ready to be sent */
+	enable encode_fec0
+	set1 TXGFSK,radio_ctrl
+	inject mod,72
+	disable encode_fec0
+	rtn
+
+
+scan_mode_whiten:
+	copy xin,temp
+	or_into 0x60,temp                /* extend xin with 5->1, 6->1 */
+	copy temp,white_init
+	rtn
+
+
+
+	/* return blank if free amaddr is found */
+get_free_amaddr:
+	set0 mark_ext_patch,mark
+	bpatch patch15_1,mem_patch15
+	fetch 1,mem_current_amaddr
+	increase 1,pdata
+	bne param_esco_addr,get_free_amaddr_cont
+	force 1,pdata
+get_free_amaddr_cont:
+	store 1,mem_current_amaddr
+	iforce am_addr
+	rtn
+
+get_clk:
+	copy clkn,temp
+	rtn master
+	copy clke,temp
+	rtn
+
+get_clkbt:
+	deposit clkn_bt
+	rtn master
+	deposit clke_bt
+	rtn
+
+
+supervision_update:
+	set0 mark_ext_patch,mark
+	bpatch patch15_2,mem_patch15
+	fetcht 4,mem_supervision_timer
+	call get_clkbt
+	isub temp,timeup					/* and to 28 bits */
+	deposit timeup
+	fetcht 2,mem_supervision_to
+	lshift temp,temp
+	isub temp,pdata
+	rtn
+	
+supervision_flush:
+	set0 mark_ext_patch,mark
+	bpatch patch15_3,mem_patch15
+	call get_clkbt
+	store 4,mem_supervision_timer
+	rtn
+
+assert:
+	branch assert
+	
+loop:
+	branch loop
+
+sleep:	
+	rtn blank
+	/* sleep pdata clocks, only even clocks are accurate */
+	rshift pdata,pdata
+	increase -3,pdata
+sleep_loop:	
+	increase -1,pdata
+	nbranch sleep_loop,zero
+	force 0,pdata
+	rtn
+
+
+
+init_param:
+	/* clear specified sched ram */
+	arg 0x10,loopcnt
+	arg 0,contw
+	call memset0
+	arg mem_le_state,contw
+	arg 10,loopcnt
+	call memset0
+	jam 0,mem_sp_calc
+	jam 0,mem_fifo_temp
+	jam 0,mem_le_testtype
+	jam 0,mem_debug_config
+	jam 0,mem_lmp_conn_state
+	set0 mark_ext_patch,mark
+	bpatch patch15_4,mem_patch15
+	jam 0,mem_connection_options
+	jam 0,mem_tester_emulate
+	jam 0,mem_tester_cnt
+	setarg param_glap
+	store 3,mem_glap
+	setarg param_acl_pktlen
+	store 2,mem_acl_pktlen
+	jam param_sco_pktlen,mem_sco_pktlen
+	jam param_acl_pktcnt,mem_acl_pktcnt
+	jam param_sco_pktcnt,mem_sco_pktcnt
+	setarg param_hci_version
+	store 3,mem_hci_version
+	setarg param_lmp_version
+	store 3,mem_lmp_version
+	setarg param_lmp_subversion
+	store 2,mem_lmp_subversion
+	jam 0x60,mem_fhs_misc		/* R1 for 1.28s ps interval,P2 */
+	jam param_max_slot,mem_max_slot
+	jam 0x02,mem_fw_ver		/* set firmware version */
+ifdef SIMPLE_PAIRING
+	call init_memp
+endif
+	set0 mark_ext_patch,mark
+	bpatch patch15_5,mem_patch15
+	rtn wake
+	setarg 0
+	store 2,mem_tx_len
+	rshift clkn_bt,pdata
+	store 4,mem_last_clkn
+	rtn
+	
+
+//clear esco ibuff
+init_esco_ibuff:
+	setarg 0xaa,pdata
+	arg mem_sco_ibuf,contw
+	force 30,loopcnt
+init_esco_ibuff_loop:
+	istore 1,contw
+	loop init_esco_ibuff_loop
+	rtn
+
+init_rf_regs:
+	hjam 0x02,0x907
+	hjam 0x1f,0x908
+	hjam 0x1f,0x909
+	hjam 0xe0,0x90a
+	hjam 0x4e,0x90b			/* EVM */
+	hjam 0x45,rf_agc_ctrl		/* invert demod */
+	hjam 0x00,0x953			/* rccal */
+
+	hjam 0xfb,0x94c			/* rx sensitivity */
+	hjam 0xef,0x94d
+	hjam 0x0c,0x94e
+	
+	hjam 0x88,0x96f
+	hjam 0x30,0x973			/* turn off charge pump */
+
+	// tx power up to -3dBm
+	hjam 0x00,0x953
+	hjam 0xc9,0x956
+	hjam 0x6c,0x958
+	hjam 0x50,0x959
+	rtn
+
+init_agc_table:
+//AGC Table Setting Conservative, Based on 8PSK_sen, Max added
+	hjam 0xa9,0x930 //hjam 0x9D,0x930	
+	hjam 0xb1,0x92f //hjam 0xA1,0x92f	
+	hjam 0xb9,0x92e //hjam 0xA9,0x92e	
+	hjam 0xAD,0x92d	
+	hjam 0xB1,0x92c	
+	hjam 0xB5,0x92b	
+	hjam 0xBA,0x92a	
+	hjam 0xBE,0x929	
+	hjam 0xC2,0x928	
+	hjam 0xC6,0x927	
+	hjam 0xCA,0x926	
+	hjam 0xCE,0x925	
+	hjam 0xD2,0x924	
+	hjam 0xD6,0x923	
+	hjam 0xDA,0x922	
+	hjam 0xDE,0x921	
+	hjam 0xE2,0x920	
+	hjam 0xE6,0x91f	
+	hjam 0xEA,0x91e	
+	hjam 0xEE,0x91d	
+	hjam 0xF2,0x91c	
+	hjam 0xF6,0x91b	
+	hjam 0xFB,0x91a
+	
+	hjam 0xf5,0x947 //hjam 0xF8,0x947	
+	hjam 0xe5,0x946 //hjam 0xE9,0x946	
+	hjam 0xd5,0x945 //hjam 0xD9,0x945	
+	hjam 0xD8,0x944	
+	hjam 0xC9,0x943	
+	hjam 0xC8,0x942	
+	hjam 0x89,0x941	
+	hjam 0x88,0x940	
+	hjam 0x87,0x93f	
+	hjam 0x48,0x93e	
+	hjam 0x09,0x93d	
+	hjam 0x08,0x93c	
+	hjam 0xC9,0x93b	
+	hjam 0xC8,0x93a	
+	hjam 0xC7,0x939	
+	hjam 0xC6,0x938	
+	hjam 0xC5,0x937	
+	hjam 0xC4,0x936	
+	hjam 0xC3,0x935	
+	hjam 0xC2,0x934	
+	hjam 0xC1,0x933	
+	hjam 0xC0,0x932	
+	hjam 0x80,0x931
+	rtn	
+
+
+ifdef FPGA
+ifndef ROMCODE
+fpga_init:
+	hjam 5,core_clksel
+	hjam 1,core_config			// uart use 48M
+	hjam 1,rf_rx_lna_ctrim
+	hjam 0x2,0x908
+	hjam 0xb1,0x90e
+	hjam 0,0x912
+
+	hjam 0xF7,0x91A
+	hjam 0xF4,0x91B
+	hjam 0xF0,0x91C
+	hjam 0xEB,0x91D
+	hjam 0xE7,0x91E
+	hjam 0xE4,0x91F
+	hjam 0xE0,0x920
+	hjam 0xDB,0x921
+	hjam 0xD7,0x922
+	hjam 0xD5,0x923
+	hjam 0xD1,0x924
+	hjam 0xCC,0x925
+	hjam 0xC8,0x926
+	hjam 0xC2,0x927
+	hjam 0xBE,0x928
+	hjam 0xBA,0x929
+	hjam 0xBA,0x92A
+	hjam 0xB3,0x92B
+	hjam 0xB3,0x92C
+	hjam 0xAB,0x92D
+	hjam 0xAB,0x92E
+	hjam 0xA2,0x92F
+	hjam 0x9F,0x930
+
+	hjam 0x30,0x931
+	hjam 0x20,0x932
+	hjam 0x10,0x933
+	hjam 0x50,0x934
+	hjam 0x64,0x935
+	hjam 0x54,0x936
+	hjam 0x68,0x937
+	hjam 0xa8,0x938
+	hjam 0xe8,0x939
+	hjam 0xfC,0x93A
+	hjam 0xeC,0x93B
+	hjam 0xd9,0x93C
+	hjam 0x19,0x93D
+	hjam 0x8D,0x93E
+	hjam 0xcD,0x93F
+	hjam 0x1E,0x940
+	hjam 0x9E,0x941
+	hjam 0x9E,0x942
+	hjam 0x9E,0x943
+	hjam 0x9F,0x944
+	hjam 0x9F,0x945
+	hjam 0x8F,0x946
+	hjam 0xcF,0x947
+
+	hjam 0x00,0x948
+	hjam 0x90,0x949
+	hjam 0x7f,0x94a
+
+	rtn wake
+	call fpga_init_jtag
+	setarg 0x1c38	
+	call fpga_write_radio
+	setarg 0x1c28	
+	call fpga_write_radio
+	setarg 0x185e	
+	call fpga_write_radio
+	setarg 0x24ff	
+	call fpga_write_radio
+	setarg 0x2894
+	call fpga_write_radio
+	setarg 0x2922	
+	call fpga_write_radio
+	setarg 0x2a1c	
+	call fpga_write_radio
+	setarg 0x2c00
+	call fpga_write_radio
+
+	setarg 0x2050
+	call fpga_write_radio
+	setarg 0x1580
+	call fpga_write_radio
+	hjam 0x70,core_bist_ctrl
+	hjam ccnt_start,core_misc_ctrl
+
+	hjam 1,rf_rx_lna_ctrim+1
+	force 0,clkn
+	force 0,clke
+	hjam 0,rf_rx_lna_ctrim+1
+	rtn
+
+fpga_init_jtag:
+	hjam 0,rf_rx_vctrl_reg2
+	hjam 0x9,core_clksel 
+	nop 100
+	hjam 2,rf_rx_lna_ctrim
+	hjam 0,rf_rx_lna_ctrim
+	arg 0x800c,rega
+	arg 2,regb
+	call fpga_write_reg
+	nop 0x5000
+	hjam 1,rf_rx_lna_ctrim
+	nop 0x5000
+	hjam 5,core_clksel
+	rtn
+
+fpga_write:
+	hstore 1,rf_rx_vctrl_reg1
+	hjam 1,rf_rx_vctrl_reg2
+	hjam 0,rf_rx_vctrl_reg2
+	rtn
+
+
+fpga_read:
+	hfetch 1,rf_rccal_result
+	hjam 2,rf_rx_vctrl_reg2
+	hjam 0,rf_rx_vctrl_reg2
+	rtn
+
+	
+fpga_write_reg:
+	setarg 0xb
+	call fpga_write
+	rshift8 rega,pdata
+	call fpga_write
+	setarg 0x3
+	call fpga_write
+	and rega,0xff,pdata
+	call fpga_write
+	setarg 5
+	call fpga_write
+	deposit regb
+	branch fpga_write
+	
+
+fpga_read_reg:
+	setarg 0xb
+	call fpga_write
+	rshift8 rega,pdata
+	call fpga_write
+	setarg 0x3
+	call fpga_write
+	and rega,0xff,pdata
+	call fpga_write
+	setarg 6
+	call fpga_write
+	branch fpga_read
+	
+
+fpga_write_radio:
+	and pdata,0xff,regb
+	rshift8 pdata,rega
+	setarg 0x8900
+	ior rega,rega
+	branch fpga_write_reg
+
+endif
+endif
+
+init_250k:
+	enable le
+	setarg 0x8e89be
+	lshift8 pdata,pdata
+	or_into 0xd6,pdata
+	iforce access
+	hjam 7,0x914			// enable ble
+	hjam 0xa0,0x90a
+	hjam 0x8f,0x90d		// enable 250k
+	hjam 0x0f,0x911		
+	hjam 0x87,0x912		// disable agc
+	rtn
+
+
+/*****************************************LPO************************************************/
+
+lpmstate:
+	setarg 0xee21
+	hstore 2,core_clkoff			// disable unused peripherals
+	hfetch 1,core_lpm_ldocnt
+	bbit0 gpio_latch,loadcode		// power up boot
+	enable wake
+	bbit0 cold_wake,lpmwake		
+	disable wake
+	deposit auxcnt
+	nbranch lpmwake,blank		// sleep interrupted, wakeup
+	arg param_hibernate_clks,temp
+	branch lpm_enter_sleep
+lpmwake:
+	hfetch 3,core_lpm_xtalcnt
+	hstore 3,core_lpm_reg
+	ifetch 1,contr
+	or_into isogate_mask,pdata		// open all isolation gate&power switch
+	istore 1,contw
+	call lpm_write_ctrl2
+	hfetch 1,core_lpm_isogate
+	set1 enable_retmem,pdata
+	hstore 1,core_lpm_isogate
+	call lpm_write_ctrl2
+	call lpm_load_context,wake
+	hfetch 1,core_lpm_reg+2
+	set0 gpio_latch,pdata			// enable gpio fuction
+	hstore 1,core_lpm_reg+2
+	call lpm_write_ctrl2
+	rtn wake
+	branch loadcode				// wakeup from hibernate
+
+lpm_load_context:
+	fetch 1,mem_saved_spidctrl
+	hstore 1,core_spid_ctrl
+	fetch 3,mem_saved_gsel
+	hstore 3,core_gpio_sel
+	fetch 4,mem_saved_gpio+4
+	hstore 4,core_gpio_out0
+	fetch 4,mem_saved_gpio
+	hstore 4,core_gpio_oe0
+	fetch 8,mem_saved_gpio+8
+	hstore 8,core_gpio_pu0	
+	fetch 8,mem_saved_mark
+	iforce mark
+	hfetch 8,core_gpio_wakeup_low
+	store 8,mem_gpio_wakeup_low
+	call load_ucode
+	rtn
+
+lpm_save_context:
+	deposit mark
+	store 8,mem_saved_mark
+	hfetch 8,core_gpio_oe0
+	store 8,mem_saved_gpio
+	ifetch 8,contr
+	istore 8,contw
+	hfetch 3,core_gpio_sel
+	store 3,mem_saved_gsel
+	hfetch 1,core_spid_ctrl
+	store 1,mem_saved_spidctrl
+	branch lpm_write_gpio_wakeup
+
+lpo_calibration:
+	hfetch 1,core_bist_ctrl
+	nbranch lpo_cal_inited,blank
+	fetch 3,mem_clks_per_lpo
+	nrtn blank
+	hjam 0xc0,core_bist_ctrl
+	hjam ccnt_start,core_misc_ctrl
+lpo_cal_inited:
+	hfetch 1,core_perf_status
+	rtnbit0 1
+	hfetch 3,core_clk_counter
+	store 3,mem_clks_per_lpo
+	rtn
+
+
+	/* temp is synced clke */
+lpm_adjust_clk:
+	set0 mark_ext_patch,mark
+	bpatch patch15_6,mem_patch15
+	deposit clke
+	call clk_diff_rt
+	fetcht 4,mem_sleep_counter_all
+	sub temp,0xff,null
+	rtn positive				// interval too small
+	lshift8 pdata,pdata
+	lshift4 pdata,pdata
+	idiv temp
+	call wait_div_end
+	quotient pdata
+	arg param_lpm_adjmax,temp
+	call ceiling
+	store 1,mem_lpm_adjust
+	nbranch lpm_adjust_positive,user
+	sub pdata,0,pdata
+lpm_adjust_positive:
+	fetcht 3,mem_clks_per_lpo
+	iadd temp,pdata
+	store 3,mem_clks_per_lpo
+lpm_clear_counter:
+	setarg 0
+	store 4,mem_sleep_counter_all
+	rtn
+
+	/* no retention memory at all */
+lpm_hibernate:
+	set0 mark_ext_patch,mark
+	bpatch patch15_7,mem_patch15
+	call lpm_write_gpio_wakeup
+	hfetch 4,core_lpm_ctrl
+	set0 15,pdata						/* lowest lpo */
+	hstore 4,core_lpm_reg
+	call lpm_write_ctrl
+lpm_hibernate_normal:
+	arg param_hibernate_clks,temp
+	fetch 1,mem_lpm_hibernate_switch
+	store 1,mem_lpm_xtalcnt + 4
+ifdef ROMCODE
+	fetch 1,mem_lpm_xtalcnt + 2
+	set1 cold_wake,pdata
+	store 1,mem_lpm_xtalcnt + 2
+else
+	branch rom_lpm_sleep
+endif
+
+	/* temp is lpo clocks to sleep */
+lpm_sleep:
+	set0 mark_ext_patch,mark
+	bpatch patch16_0,mem_patch16
+	fetch 4,mem_sleep_counter_all
+	iadd temp,pdata
+	store 4,mem_sleep_counter_all
+	call lpm_save_context
+	fetch 5,mem_lpm_xtalcnt
+	hstore 4,core_lpm_reg
+	rshift32 pdata,rega
+	until null,lpo_edge
+	deposit clkn
+	store 6,mem_sleep_clkn
+	hjam lpmreg_sel_ctrl2,core_lpm_wr
+	until null,lpo_edge
+	until null,lpo_edge
+	deposit rega
+	hstore 1,core_lpm_isogate
+	hjam lpmreg_sel_ctrl2,core_lpm_wr
+lpm_enter_sleep:
+	until null,lpo_edge
+	until null,lpo_edge
+	hstoret 4,core_lpm_reg
+	hjam lpmreg_sel_counter,core_lpm_wr
+	until null,never
+
+
+
+
+lpm_recover_clk:
+	set0 mark_ext_patch,mark
+	bpatch patch16_1,mem_patch16
+	setarg 0
+	copy auxcnt,null
+	branch lpm_recover_timeout,zero
+	hfetch 1,core_lpm_xtalcnt
+	hfetcht 1,core_lpm_buckcnt
+	isub temp,null
+	branch lpm_recover_xtal,positive
+	deposit temp
+lpm_recover_xtal:
+	isub auxcnt,pdata
+	increase 1,pdata
+lpm_recover_timeout:
+	increase 8,pdata
+	until null,lpo_edge
+	iadd lpo_time,pdata
+	fetcht 4,mem_sleep_counter
+	iadd temp,pdata
+	fetcht 3,mem_clks_per_lpo
+	imul32 temp,pdata
+	rshift8 pdata,pdata
+	rshift4 pdata,pdata
+	increase param_lpm_fix,pdata
+	arg 3750,temp
+	idiv temp
+	call wait_div_end
+	quotient pdata
+	lshift16 pdata,pdata
+	remainder temp
+	ior temp,pdata
+	fetcht 6,mem_sleep_clkn
+	call clk_add
+	copy temp,clkn
+	fetch 6,mem_context + coffset_clk_offset
+	call calc_clke2
+	deposit clke
+	store 6,mem_pdatatemp
+	deposit auxcnt
+	istore 1,contw
+	hfetch 1,core_gpio_in1
+	or_into 0xf0,pdata
+	istore 1,contw
+	call savelist_2
+	rtn
+	
+lpm_dispatch:
+	set0 mark_ext_patch,mark
+	bpatch patch16_2,mem_patch16
+	call lpo_calibration
+	fetch 3,mem_clks_per_lpo
+	rtn blank
+	fetch 1,mem_lpm_mode
+	rtn blank
+	call lpm_check_wake_lock
+	nrtn blank
+lpm_dispatch0:
+	fetch 1,mem_context
+	compare 3,pdata,0x7							/* sco won't sleep */
+	nbranch lpm_dispatch_unconn,true
+	fetch 2,mem_context + coffset_tsniff
+	rtn blank										/* role switch */
+	rtn wake
+	set0 mark_ext_patch,mark
+	bpatch patch16_3,mem_patch16
+lpm_dispatch1:
+	fetcht 1,mem_lpm_current_mult
+	fetch 2,mem_context + coffset_tsniff
+	imul32 temp,pdata
+	rshift4 temp,temp
+	rshift2 temp,temp
+	isub temp,pdata
+	fetcht 4,mem_context + coffset_sniff_anchor
+	iadd temp,pdata
+	fetcht 1,mem_lpm_overhead
+	isub temp,pdata
+	lshift16 pdata,alarm
+	set0 mark_ext_patch,mark
+	bpatch patch16_4,mem_patch16
+	fetch 2,mem_context + coffset_rx_window
+	rshift pdata,pdata
+	call clk2bt
+	deposit alarm
+	call clk_diff
+	copy clke,temp
+	call clk_diff_rt
+	rtn user
+lpm_dispatch_sleep:
+	call clk2lpo
+lpm_dispatch_lpo:
+	set0 mark_ext_patch,mark
+	bpatch patch16_5,mem_patch16
+	fetch 1,mem_lpm_xtalcnt
+	isub temp,null
+	branch lpm_clear_counter,positive
+	storet 4,mem_sleep_counter
+	call app_will_enter_lpm
+	call l2cap_lpm_save_txbuf
+	fetcht 4,mem_sleep_counter
+ifdef ROMCODE
+	branch lpm_sleep
+else
+	call lpm_write_gpio_wakeup
+	jam 1,mem_patch00
+	branch rom_lpm_sleep
+endif
+	
+lpm_dispatch_unconn:
+	set0 mark_ext_patch,mark
+	bpatch patch16_6,mem_patch16
+	fetch 1,mem_context
+	rtnbit1 state_inconn					// wont sleep in connection
+	rtnbit1 state_inpage					// wont sleep when paging
+	fetch 1,mem_ssp_enable
+	branch lpm_unconn_nossp,blank
+	fetch 1,mem_sp_local_key_invalid	// simple pairing is not ready
+	rtn blank
+lpm_unconn_nossp:
+	fetch 1,mem_le_adv_enable
+	nbranch lpm_unconn_cont,blank
+	fetch 1,mem_scan_mode
+	rtn blank
+lpm_unconn_cont:
+	fetch 2,mem_lpm_interval
+	rtn blank
+lpm_sleep_btclk:
+	fetcht 1,mem_lpm_overhead
+	isub temp,pdata
+	arg 7500,temp				/* 1.25ms */
+	imul32 temp,pdata
+	branch lpm_dispatch_sleep
+
+lpm_set_mult:
+	set0 mark_ext_patch,mark
+	bpatch patch16_7,mem_patch16
+	disable wake
+	fetch 1,mem_state
+	rtnbit0 state_insniff
+	nbranch lpm_not_match,match
+	call lpm_match
+	fetch 2,mem_rx_window_sniff
+	store 2,mem_rx_window
+	fetch 1,mem_arq
+	bbit1 wack,lpm_mult_short
+	bmark0 mark_lpm_mult_enable,lpm_mult_short
+	call l2cap_malloc_is_fifo_empty
+	nbranch lpm_mult_short,blank
+lpm_mult_wait_timeout:
+	jam 0,mem_lpm_current_mult
+	bmark0 mark_lpm_mult_enable,lpm_mult_short
+	fetch 1,mem_lpm_mult_cnt
+	branch lpm_mult_long,blank
+	increase -1,pdata
+	store 1,mem_lpm_mult_cnt
+	rtn
+
+lpm_match:
+	jam 0,mem_sniff_unint_lost
+	fetch 3,mem_sniff_rcv
+	increase 1,pdata
+	store 3,mem_sniff_rcv
+	rtn
+
+lpm_not_match:
+	set0 mark_ext_patch,mark
+	bpatch patch17_0,mem_patch17
+	fetcht 2,mem_rx_window_sniff
+	rshift temp,temp
+	fetch 2,mem_rx_window
+	iadd temp,pdata
+	store 2,mem_rx_window
+lpm_lost:
+	jam 0,mem_lpm_current_mult
+	fetch 3,mem_sniff_lost
+	increase 1,pdata
+	store 3,mem_sniff_lost
+	fetch 1,mem_sniff_unint_lost
+	increase 1,pdata
+	store 1,mem_sniff_unint_lost
+	rtn
+
+lpm_mult_short:
+	jam 0,mem_lpm_current_mult
+	fetch 1,mem_lpm_mult_timeout
+	store 1,mem_lpm_mult_cnt
+	rtn
+
+lpm_mult_long:
+	fetcht 1,mem_lpm_mult
+	storet 1,mem_lpm_current_mult
+	rtn
+
+lpm_cal_xtal_startup:
+	set0 mark_ext_patch,mark
+	bpatch patch17_1,mem_patch17
+	fetch 1,mem_lpm_xtalcnt
+	nrtn blank
+	hjam clksel_rc,core_clksel
+	setarg 0xf0c
+	call lpm_write_config
+	setarg 200000
+	call sleep
+	until null,lpo_edge
+	copy lpo_time,alarm
+	call xtal_fast_wake
+	hjam clksel_xtal,core_clksel
+	nop 10
+	until null,lpo_edge
+	deposit lpo_time
+	isub alarm,pdata
+	increase 0x30,pdata
+	arg 0xff,temp
+	call ceiling
+	store 1,mem_lpm_xtalcnt
+	rtn
+
+
+
+	/* pdata is lpm_reg[11:0] */
+lpm_write_config:
+	arg 0xfff,contw
+	iand contw,contw
+	fetch 1,mem_lpm_config
+	and_into 0xf0,pdata
+	lshift8 pdata,pdata
+	ior contw,pdata
+	hstore 2,core_lpm_reg
+	ifetch 2,contr
+	istore 2,contw
+
+lpm_write_ctrl:
+	setarg lpmreg_sel_ctrl
+	branch lpm_write
+
+lpm_write_ctrl2:
+	setarg lpmreg_sel_ctrl2
+lpm_write:
+	until null,lpo_edge
+	hstore 1,core_lpm_wr
+	until null,lpo_edge
+	until null,lpo_edge
+	rtn
+
+
+lpm_write_gpio_wakeup:
+	set0 mark_ext_patch,mark
+	bpatch patch17_2,mem_patch17
+	fetch 4,mem_gpio_wakeup_low
+	hstore 4,core_lpm_reg
+	setarg lpmreg_sel_gpiolow
+	call lpm_write
+	fetch 4,mem_gpio_wakeup_high
+	hstore 4,core_lpm_reg
+	setarg lpmreg_sel_gpiohigh
+	branch lpm_write
+
+lpm_get_wake_lock:
+	fetch 2,mem_lpm_wake_lock
+	qset1 pdata
+	store 2,mem_lpm_wake_lock
+	rtn
+
+lpm_put_wake_lock:
+	fetch 2,mem_lpm_wake_lock
+	qset0 pdata
+	store 2,mem_lpm_wake_lock
+	rtn
+
+
+
+lpm_check_wake_lock:
+	set0 mark_ext_patch,mark
+	bpatch patch17_3,mem_patch17
+	call app_check_wake_lock
+	fetch 2,mem_lpm_wake_lock
+	copy pdata,rega
+	fetch 1,mem_state_map
+	isolate1 smap_rxlmp,pdata
+	setflag true,wake_lock_lmp_rx,rega
+	fetch 1,mem_lmo_opcode1
+	fetcht 1,mem_lmo_opcode2
+	iadd temp,pdata
+	fetcht 1,mem_lmp_to_send
+	iadd temp,pdata
+	nsetflag blank,wake_lock_lmp_tx,rega
+	set0 mark_ext_patch,mark
+	bpatch patch17_4,mem_patch17
+	fetch 2,mem_l2cap_rxbuff1_len
+	fetcht 2,mem_l2cap_rxbuff2_len
+	iadd temp,pdata
+	nsetflag blank,wake_lock_l2cap_rx,rega
+	fetch 5,mem_ipc_fifo_bt2c51
+	nsetflag blank,wake_lock_ipc_bt2c51,rega
+	fetch 5,mem_ipc_fifo_c512bt
+	nsetflag blank,wake_lock_ipc_c512bt,rega
+	fetch 1,mem_hci_cmd
+	nsetflag blank,wake_lock_cmd,rega
+	fetch 1,mem_device_option
+	compare dvc_op_module,pdata,0xff
+	call lpm_uart_wake_lock,true
+	set0 mark_ext_patch,mark
+	bpatch patch17_5,mem_patch17
+	fetch 1,mem_device_option
+	bne dvc_op_hci,lpm_check_wake_lock_nothci
+	call lpm_uart_wake_lock
+	fetch 1,mem_link_key_exists
+	setflag blank,wake_link_key_exists,rega
+	fetch 4,mem_lpm_delay_after_sniff
+	arg 0x1710,temp
+	iadd temp,temp
+	copy clkn_bt,pdata
+	isub temp,null
+	nsetflag positive,wake_lock_delay,rega
+	branch lpm_check_wake_lock_end
+
+lpm_uart_wake_lock:
+	hfetch 2,core_uart_rxitems
+	nsetflag blank,wake_lock_uart_rx ,rega
+	hfetch 2,core_uart_txitems
+	nsetflag blank,wake_lock_uart_tx ,rega
+	rtn
+
+lpm_check_wake_lock_nothci:
+	setarg -8
+	iand rega,rega
+lpm_check_wake_lock_end:
+	copy rega,pdata
+	store 2,mem_lpm_wake_lock
+	rtn blank
+	rtn match
+	enable wake
+	rtn
+
+lpm_shut_down:
+	hfetch 4,core_lpm_ctrl
+	set0 27,pdata
+	hstore 4,core_lpm_reg
+	call  lpm_write_ctrl
+	branch assert
+
+lpm_enable_exen_output:
+	hfetch 4,core_lpm_xtalcnt
+	set1 20,pdata
+	hstore 4,core_lpm_reg
+	branch lpm_write_ctrl2
+	
+lpm_disable_exen_output:
+	hfetch 4,core_lpm_xtalcnt
+	set0 20,pdata
+	hstore 4,core_lpm_reg
+	branch lpm_write_ctrl2
+
+lpm_hci_wake_dispatch:
+	set0 mark_ext_patch,mark
+	bpatch patch17_6,mem_patch17
+	fetch 1,mem_device_option
+	rtnne dvc_op_hci
+	call gpio_check_uart_state
+	rtn true
+	fetch 4,mem_hci_wake_clk
+	nbranch lpm_hci_check_wake_time,blank
+	copy clkn_bt,pdata
+	store 4,mem_hci_wake_clk
+	branch gpio_pd_uart_tx
+lpm_hci_check_wake_time:
+	set0 mark_ext_patch,mark
+	bpatch patch17_7,mem_patch17
+	copy clkn_bt,pdata
+	fetcht 4,mem_hci_wake_clk
+	isub temp,pdata
+	arg HOST_WAKE_TIME,temp
+	isub temp,null
+	nrtn positive
+	setarg 0
+	store 4,mem_hci_wake_clk
+	branch hci_exit_lpm
+
+check_bt_disabled:
+	fetch 2,mem_chip_functions
+	bbit1 bt_disabled,assert
+	rtn
+check_ble_disabled:
+	fetch 2,mem_chip_functions
+	bbit1 ble_disabled,assert
+	rtn
+check_module_disabled:
+	fetch 2,mem_chip_functions
+	bbit1 module_disable,assert
+	rtn
+	
+test_init:
+	setarg test_proc
+	store 2,mem_cb_bt_process
+	setarg test_sleep
+	store 2,mem_cb_bb_event_process
+	setarg test_proc
+	store 2,mem_cb_idle_process
+	rtn wake
+	jam ui_led_start,mem_led_switch
+	rtn
+
+test_proc:
+	fetch 1,mem_state
+	bbit0 state_insniff,check_test_cond
+	set1 mark_lpm_mult_enable,mark
+	fetch 6,mem_sniff_rcv
+	store 6,mem_local_name
+	branch ui_led_blink_stop
+	
+
+test_sleep:
+	deposit regc
+	rtnne BT_EVT_BUTTON_LONG_PRESSED
+test_sleep_loop:
+	call ui_button_polling
+	fetch 1,mem_ui_button_last_state
+	beq 1,test_sleep_loop
+	call ui_led_off
+	branch lpm_hibernate
+
+
+test_tx:
+	force 2,temp
+	increase -2,temp
+	call set_sync_on
+	call set_freq_tx
+	disable enable_white
+	enable encode_fec0
+	set1 TXGFSK,radio_ctrl
+	call start_transmitter
+test_tx_loop:
+	fetch 1,0
+	inject mod,8
+	branch test_tx_loop
+
+
+	
+
+
Index: btkb/program/dongle.prog
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/btkb/program/dongle.prog	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/btkb/program/dongle.prog	(working copy)
@@ -0,0 +1,125 @@
+ifdef COMPILE_DONGLE
+
+le_dongle_init:
+	call usb_init
+	call app_led_start_blink
+	setarg le_dongle
+	store 2,mem_cb_le_process
+	setarg dongle_process_bb_event
+	store 2,mem_cb_bb_event_process
+	setarg usb_isr
+	store 2,mem_cb_idle_process
+	jam 5,mem_dongle_count
+	jam 0,mem_dongle_peers
+	jam hci_cmd_le_create_conn,mem_hci_cmd
+	rtn	
+
+
+le_dongle:
+	disable true
+	call app_check_conn_device_nums_addr
+	//jam 1,mem_le_scan_enable
+	jam 0x1b,mem_cmd_le_create_conn
+	fetch 1,mem_device_nums
+	compare 2,pdata,0x3
+	nrtn true
+	jam 0,mem_le_scan_enable
+	rtn
+
+le_scan_dongle:
+	fetch 1,mem_le_rxbuf
+	bbit0 0,dongle_add_peer
+	fetch 6,mem_le_rxbuf+2			// direct ind, for me?
+	fetcht 6,mem_le_plap
+	isub temp,null
+	nrtn zero
+dongle_peer_paired:
+	fetch 6,mem_le_plap
+	store 6,mem_le_conn_peer_addr
+	rtn
+	
+dongle_add_peer:
+	arg 0xff,rega
+	call le_search_adtype
+	nrtn zero
+	ifetch 2,contr
+	fetcht 2,mem_dongle_signature
+	isub temp,null
+	nrtn zero
+	fetch 1,mem_dongle_peers
+	increase 1,pdata
+	store 1,mem_dongle_peers
+	fetcht 1,mem_dongle_pairing_cnt
+	isub temp,null
+	branch dongle_peer_paired,positive
+	rtn
+
+dongle_process_bb_event:
+	copy regc,pdata
+	beq BT_EVT_LE_DISCONNECTED,dongle_le_event_bb_disconnected
+	beq BT_EVT_LE_CONNECTED,dongle_bb_event_connected
+	and pdata,0x0f,temp
+	and_into BT_EVT_TIMER_MASK,pdata
+	beq BT_EVT_TIMER_INIT,dongle_bb_event_100ms
+	rtn
+	
+dongle_le_event_bb_disconnected:
+	setarg 0
+	store 6,mem_le_conn_peer_addr
+	jam 0,mem_dongle_peers
+	setarg 0
+	store 5,mem_mouse_data
+	jam SEND_MOUSE_DATA_CMD,mem_mcmd
+	call usb_isr
+	branch app_ble_start_scan
+ 	
+dongle_bb_event_100ms:
+	rtn
+	fetch 1,mem_le_scan_enable
+	rtn blank
+	fetch 1,mem_dongle_count
+	rtn blank
+	increase -1,pdata
+	store 1,mem_dongle_count
+	nrtn blank
+	call le_change_peer_addr
+	branch app_ble_start_conn
+	
+	
+dongle_bb_event_connected:
+	branch app_ble_stop_scan
+
+le_change_peer_addr:
+
+	jam 5,mem_dongle_count
+	fetch 1,mem_le_peer_state
+	beq LE_CONTEXT_STATE_KB,addr_slave2
+	beq LE_CONTEXT_STATE_MOUSE,addr_slave1
+	rtn
+addr_slave1:
+	fetch 6,mem_le_addr_slave1
+	store 6,mem_app_peer_addr
+	jam LE_CONTEXT_STATE_KB,mem_le_peer_state
+	rtn
+addr_slave2:
+  	fetch 6,mem_le_addr_slave2
+  	store 6,mem_app_peer_addr
+  	jam LE_CONTEXT_STATE_MOUSE,mem_le_peer_state
+  	rtn
+  	
+else
+
+le_scan_dongle:
+	rtn
+le_dongle_init:
+check_usb_desc:
+le_dongle:
+dongle_process_bb_event:
+dongle_le_event_bb_disconnected:
+dongle_bb_event_100ms:
+dongle_bb_event_connected:
+le_change_peer_addr:
+addr_slave1:
+addr_slave2:
+	branch assert
+endif
Index: btkb/program/hci_bcsp.prog
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/btkb/program/hci_bcsp.prog	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/btkb/program/hci_bcsp.prog	(working copy)
@@ -0,0 +1,368 @@
+
+ifdef COMPILE_HCI_BCSP
+hci_rx_bcsp:
+	ifetch 2,contru
+	branch hci_reset_uart,blank		//length = 0
+	iforce regc						/* regc is byte count */
+	ifetch 1,contru
+	store 1,mem_h5rx_tmp
+	iforce rega						/* rega is checksum */
+	bbit0 6,hci_rx_bcsp_nocrc
+	increase -2,regc
+hci_rx_bcsp_nocrc:
+	ifetch 2,contru
+	rshift4 pdata,loopcnt				/* loopcnt is packet length */
+	and pdata,0xf,debug				/* debug is packet type */
+	iadd rega,rega
+	rshift8 pdata,pdata
+	iadd rega,rega
+	ifetch 1,contru
+	iadd rega,pdata
+	bne 0xff,hci_rx_bcsp_discard_packet		/* checksum error */
+	add regc,-4,pdata
+	isub loopcnt,null
+	nbranch hci_rx_bcsp_discard_packet_err,zero	/* received byte not equal length */
+	fetch 1,mem_h5rx_tmp
+	isolate0 7,pdata
+	branch hci_rx_bcsp_check_ack_skip,true
+	set0 mark_h5_reset,mark
+	bmark1 mark_h5_reset,hci_rx_bcsp_check_ack_skip
+	and_into 7,pdata
+	fetcht 1,mem_h5tx_ack
+	isub temp,null
+	nbranch hci_rx_bcsp_discard_packet_err,zero	/*ack  number err*/
+hci_rx_bcsp_check_ack_skip:
+	setarg 1600
+	force lpo_delay_timer,queue
+	call timer_init
+	deposit debug
+	call hci_bcsp_parse_packet
+	rtn user							/* delaying parse packet */
+	fetch 1,mem_h5rx_tmp
+	iforce rega						/* saved in rega */
+	rshift3 pdata,temp
+	and_into 7,temp					/* temp is ack no */
+	fetch 1,mem_h5rx_ack
+	isub temp,pdata
+	sub pdata,0,pdata
+	and_into 7,pdata
+	bne 1,hci_rx_bcsp_discard_packet_err		/* should only ack 1 packet! */
+	storet 1,mem_h5rx_ack
+	fetch 1,mem_h5rx_ackcnt
+	increase 1,pdata
+	store 1,mem_h5rx_ackcnt
+	branch hci_rx_bcsp_discard_packet
+	
+hci_rx_bcsp_discard_packet_err:
+	fetch 1,mem_check_err_acl_cont
+	increase 1,pdata
+	store 1,mem_check_err_acl_cont
+hci_rx_bcsp_discard_packet:
+	hfetch 2,core_uart_rrptr
+	iforce contru
+	ifetch 2,contru
+	iadd contru,contru
+	deposit contru
+	hstore 2,core_uart_rrptr
+	rtn
+
+hci_bcsp_parse_packet:
+	disable user
+	rtn blank					/* ack packet, do nothing */
+	beq 1,parse_bcsp_link_establish
+	beq 2,parse_bcsp_bccmd
+	beq 5,process_hci_cmd
+	beq 6,process_acl
+	beq 8,process_hci_patch
+	rtn
+
+parse_bcsp_link_establish:
+	set0 mark_h5_reinit,mark
+	ifetch 1,contru
+	beq 0xda,parse_bcsp_link_establish_sync
+	beq 0xac,parse_bcsp_link_establish_syncrsp
+	beq 0xad,parse_bcsp_link_establish_conf
+	beq 0xde,parse_bcsp_link_establish_confrsp
+	rtn
+parse_bcsp_link_establish_sync:
+	bmark1 mark_h5_sync,parse_bcsp_link_establish_send_syncrsp
+	force 0xda,temp
+	setarg 0xededdc
+	call parse_bcsp_link_establish_send
+parse_bcsp_link_establish_send_syncrsp:	
+	force 0xac,temp
+	setarg 0xeeefaf
+	branch parse_bcsp_link_establish_send
+parse_bcsp_link_establish_syncrsp:
+	set1 mark_h5_sync,mark
+	force 0xad,temp
+	setarg 0xedacef
+	branch parse_bcsp_link_establish_send
+parse_bcsp_link_establish_conf:
+	force 0xde,temp
+	setarg 0xd0d0ad
+parse_bcsp_link_establish_send:	
+	lshift8 pdata,pdata
+	ior temp,temp
+	call hci_get_packet_ptr
+	istoret 4,contwu
+	force 1,queue				/* queue is packet type */
+	force 4,loopcnt
+	set0 mark_h5tx_rp,mark
+	branch bcsp_send_packet
+parse_bcsp_link_establish_confrsp:
+	force 0,alarm
+	branch hci_command_status
+	
+parse_bcsp_bccmd:
+	copy loopcnt,alarm
+	call bcsp_send_ack
+	force 0,regb
+	call hci_get_packet_ptr
+	copy alarm,loopcnt
+	ifetch 1,contru
+	setarg 1
+	istore 1,contwu
+	set0 mark_temp,mark
+parse_bcsp_bccmd_loop:
+	ifetch 1,contru
+	increase 1,regb
+	beq 0x1c,parse_bcsp_bccmd_sco_link		/*sco link patch by csr*/
+	compare 4,regb,0xff
+	nbranch parse_bcsp_bccmd_next,true
+	setflag blank,mark_temp,mark
+	bne 0x3a,parse_bcsp_bccmd_next
+	setarg 2000
+	force h5_reinit_timer,queue
+	call timer_init
+	set1 mark_h5_reinit,mark
+	rtn
+	
+parse_bcsp_bccmd_sco_link:
+	compare 6,regb,0xff
+	branch parse_bcsp_bccmd_next_ok,true	
+parse_bcsp_bccmd_next:
+	isolate1 mark_temp,mark
+	call parse_bcsp_bccmd_replace,true
+	istore 1,contwu
+	loop parse_bcsp_bccmd_loop
+	set0 mark_bccmd_patch,mark
+	copy alarm,loopcnt
+	set1 mark_h5tx_rp,mark
+	force 2,queue
+	branch bcsp_send_packet
+parse_bcsp_bccmd_next_ok:
+	set1 mark_bccmd_patch,mark
+	branch parse_bcsp_bccmd_next
+	
+parse_bcsp_bccmd_replace:
+	rtnmark1 mark_bccmd_patch
+	compare 10,regb,0xff
+	branch parse_bcsp_bccmd_replace1,true
+	compare 11,regb,0xff
+	nrtn true
+	setarg 0x12
+	rtn
+parse_bcsp_bccmd_replace1:
+	setarg 0xe9
+	rtn
+	
+bcsp_send_ack:
+	fetch 1,mem_h5rx_tmp
+	increase 1,pdata
+	and_into 7,pdata
+	store 1,mem_h5tx_ack		/* our ack is got seq + 1 */
+	force 0,loopcnt
+	force 0,queue
+	set0 mark_h5tx_rp,mark
+bcsp_send_packet:
+//	set1 mark_h5tx_crc,mark
+	add loopcnt,4,regb				/* regb is total packet length */
+	fetch 1,mem_h5tx_ack
+	lshift3 pdata,regc
+	isolate0 mark_h5tx_crc,mark
+	nsetflag true,6,regc
+	branch bcsp_send_packet_nocrc,true	
+	increase 2,regb
+bcsp_send_packet_nocrc:
+	bmark0 mark_h5tx_rp,bcsp_send_packet_form_nonrp
+	set1 7,regc
+	fetch 1,mem_h5tx_seq
+	ior regc,regc
+	increase 1,pdata
+	and_into 7,pdata
+	store 1,mem_h5tx_seq
+	fetch 1,mem_rp_packets
+	increase 1,pdata
+	store 1,mem_rp_packets
+bcsp_send_packet_form_nonrp:
+	fetch 2,mem_h5tx_wptr
+	iforce contwu
+	deposit regb
+	isolate1 mark_h5tx_rp,mark
+	setflag true,hci_flag_rp,pdata
+	istore 2,contwu
+	copy contwu,rega		/* rega is packet pointer */
+	deposit regc
+	istore 1,contwu
+	lshift4 loopcnt,pdata
+	ior queue,pdata
+	iadd regc,regc
+	istore 2,contwu
+	rshift8 pdata,pdata
+	iadd regc,pdata
+	sub pdata,0xff,pdata
+	istore 1,contwu
+	bmark0 mark_h5tx_crc,bcsp_send_packet_form_nocrc
+	increase 4,loopcnt		/* crc includes header 4 bytes */
+	copy rega,contwu
+	call calc_tx_crc16
+	istore 2,contwu
+bcsp_send_packet_form_nocrc:
+	fetch 2,mem_h5tx_wptr
+	iadd regb,contwu
+	increase 2,contwu
+	deposit contwu
+	store 2,mem_h5tx_wptr
+	hstore 2,core_uart_twptr
+	fetcht 2,mem_h5tx_rptr
+	call bcsp_update_free
+	call bcsp_init_retransmit
+	setarg 1600
+	force lpo_delay_timer,queue
+	branch timer_init
+	
+bcsp_init_retransmit:
+	setarg 400				/* retransmit timeout : 250ms */
+	force hci_retransmit_timer,queue
+	call timer_init
+	set1 mark_h5tx_retransmit,mark
+	rtn
+
+bcsp_retransmit:
+	rtnmark0 mark_h5tx_retransmit
+	force hci_retransmit_timer,queue
+	call timer_check
+	nrtn blank
+	fetch 2,mem_h5tx_rptr
+	hstore 2,core_uart_trptrp
+	branch bcsp_init_retransmit
+
+bcsp_freepacket:
+	fetch 2,mem_h5tx_wptr
+	fetcht 2,mem_h5tx_rptr
+	isub temp,null
+	branch bcsp_noretransmit,zero			/* no more packet to free */
+	copy temp,contwu
+	ifetch 2,contwu
+	iforce rega							/* rega is length+flag */
+	iand mask3ff,pdata
+	iadd contwu,contwu					/* contwu is new rptr */
+	hfetch 2,core_uart_trptr
+	isub contwu,pdata
+	iand mask3ff,regb						/* regb is trptr - new rptr */
+	fetch 2,mem_h5tx_wptr
+	isub contwu,pdata
+	iand mask3ff,pdata						/* pdata is wptr - new rptr */
+	isub regb,pdata
+	nrtn positive							/* packet not transmitted yet */
+	isolate0 hci_flag_rp,rega
+	branch bcsp_discardnrp,true
+	fetch 1,mem_h5rx_ackcnt
+	rtn blank								/* not acked yet */
+	increase -1,pdata
+	store 1,mem_h5rx_ackcnt
+	fetch 1,mem_rp_packets
+	increase -1,pdata
+	store 1,mem_rp_packets
+bcsp_discardnrp:
+	copy contwu,temp
+	storet 2,mem_h5tx_rptr
+	fetch 2,mem_h5tx_wptr
+	call bcsp_update_free
+	branch bcsp_freepacket
+bcsp_noretransmit:
+	set0 mark_h5tx_retransmit,mark
+	rtn	
+
+bcsp_update_free:
+	isub temp,pdata
+	iand mask3ff,pdata
+	isub mask3ff,pdata
+	sub pdata,0,pdata
+	store 2,mem_h5tx_free
+	rtn
+	
+bcsp_get_tx_ptr:	/* contwu is offset to packet start */
+	fetch 2,mem_h5tx_wptr
+	iadd contwu,contwu
+	rtn
+	
+else
+
+hci_rx_bcsp:
+	branch assert
+hci_rx_bcsp_nocrc:
+	branch assert
+hci_rx_bcsp_check_ack_skip:
+	branch assert
+hci_rx_bcsp_discard_packet_err:
+	branch assert
+hci_rx_bcsp_discard_packet:
+	branch assert
+hci_bcsp_parse_packet:
+	branch assert
+parse_bcsp_link_establish:
+	branch assert
+parse_bcsp_link_establish_sync:
+	branch assert
+parse_bcsp_link_establish_send_syncrsp:	
+	branch assert
+parse_bcsp_link_establish_syncrsp:
+	branch assert
+parse_bcsp_link_establish_conf:
+	branch assert
+parse_bcsp_link_establish_send:	
+	branch assert
+parse_bcsp_link_establish_confrsp:
+	branch assert
+parse_bcsp_bccmd:
+	branch assert
+parse_bcsp_bccmd_loop:
+	branch assert
+parse_bcsp_bccmd_sco_link:
+	branch assert
+parse_bcsp_bccmd_next:
+	branch assert
+parse_bcsp_bccmd_next_ok:
+	branch assert
+parse_bcsp_bccmd_replace:
+	branch assert
+parse_bcsp_bccmd_replace1:
+	branch assert
+bcsp_send_ack:
+	branch assert
+bcsp_send_packet:
+	branch assert
+bcsp_send_packet_nocrc:
+	branch assert
+bcsp_send_packet_form_nonrp:
+	branch assert
+bcsp_send_packet_form_nocrc:
+	branch assert
+bcsp_init_retransmit:
+	branch assert
+bcsp_retransmit:
+	branch assert
+bcsp_freepacket:
+	branch assert
+bcsp_discardnrp:
+	branch assert
+bcsp_noretransmit:
+	branch assert
+bcsp_update_free:
+	branch assert
+bcsp_get_tx_ptr:
+	branch assert
+endif
+
Index: btkb/program/hci_h4.prog
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/btkb/program/hci_h4.prog	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/btkb/program/hci_h4.prog	(working copy)
@@ -0,0 +1,188 @@
+
+ifdef DEBUG_H4LOG_ENABLE
+hci_log:
+	copy regc,pdata
+	rtneq 0x11
+	fetch 1,mem_hci_log
+	increase 1,pdata
+	sub pdata,hci_log_cnt,null
+	branch hci_log_calc_ptr,positive
+	setarg 0
+hci_log_calc_ptr:
+	store 1,mem_hci_log
+	arg hci_log_size,temp
+	imul32 temp,pdata
+	arg mem_hci_log+hci_log_size,contw
+	iadd contw,contw
+hci_log_write_content:
+	fetch 1,mem_hci_log
+	istore 1,contw//counter
+	copy regb,pdata
+	istore 1,contw
+	fetch 2,mem_le_event_count
+	istore 1,contw
+	copy clke_bt,pdata
+	istore 3,contw
+	fetch 1,mem_last_freq
+	istore 1,contw
+	fetch 1,mem_le_rxbuf
+	istore 1,contw
+	rtn
+else
+hci_log:
+	rtn
+endif
+
+hci_rx_h4:
+	set1 mark_ext_patch,mark
+	bpatch patch3d_4,mem_patch3d
+	fetch 1,mem_hci_cmd
+	nrtn blank
+hci_rx_h4_1:
+	call hci_h4_parse_packet
+	ncall h4_rx_discard_packet,user
+	rtn
+	
+hci_h4_parse_packet:
+	set1 mark_ext_patch,mark
+	bpatch patch3d_5,mem_patch3d
+	copy contru,rega
+	arg 4,temp
+	ifetch 1,contru //type
+	beq HCI_H4_TYPE_CMD,hci_h4_parse_packet_wait_len
+	increase 1,temp //acl packet has 2 bytes for length
+	beq HCI_H4_TYPE_ACL,hci_h4_parse_packet_wait_len
+	copy contru,pdata
+	hstore 2,core_uart_rrptr
+	rtn
+hci_h4_parse_packet_wait_len:
+	hfetch 2,core_uart_rxitems
+	isub temp,null
+	nbranch hci_h4_parse_packet_wait_len,positive // while(rxitems >= 4 or 5);
+	//Make sure length has been recieved.
+	disable user
+	copy rega,contru
+	call h4_get_rx_payload_len
+	iadd temp,temp
+hci_h4_parse_packet_wait:
+	hfetch 2,core_uart_rxitems
+	isub temp,null
+	nbranch hci_h4_parse_packet_wait,positive//wait for rcv a complete packet
+	copy rega,contru
+	ifetch 1,contru //HCI packet type
+	beq  HCI_H4_TYPE_CMD,process_hci_cmd
+	beq HCI_H4_TYPE_ACL,hci_h4_parse_packet_acl
+	branch assert
+hci_h4_parse_packet_acl: //downgoing ACL
+	set1 mark_ext_patch,mark
+	bpatch patch3d_6,mem_patch3d
+	copy contru,rega
+	ifetch 2,contru // handle
+	copy rega,contru
+	fetcht 1,mem_conn_handle
+	icompare 0xff,temp
+	branch process_acl,true// traditional BT handle
+	branch le_acl_downgoing,le //BLE handle
+	enable user
+	rtn
+h4_rx_discard_packet:
+	set1 mark_ext_patch,mark
+	bpatch patch3d_7,mem_patch3d
+	hfetch 2,core_uart_rrptr
+	iforce contru
+	call h4_get_rx_payload_len
+	iadd contru,contru
+	deposit contru
+	hstore 2,core_uart_rrptr
+	rtn
+
+
+//contru = pointer to packet start
+//return len via pdata
+h4_get_rx_payload_len:
+	ifetch 1,contru
+	increase 2,contru
+	beq HCI_H4_TYPE_ACL,h4_get_rx_payload_len_acl
+	ifetch 1,contru
+	rtn
+h4_get_rx_payload_len_acl:
+	ifetch 2,contru
+	rtn
+
+h4_get_tx_ptr:
+	hfetch 2,core_uart_twptr
+	increase -5,contwu
+	iadd contwu,contwu
+	rtn
+
+h4_send_packet_event:
+	arg HCI_H4_TYPE_EVENT,temp //type
+	branch h4_send_packet
+h4_send_packet_acl: //upgoing ACL
+	arg HCI_H4_TYPE_ACL,temp //type
+h4_send_packet:
+	set1 mark_ext_patch,mark
+	bpatch patch3e_0,mem_patch3e
+	increase 1,loopcnt
+	hfetch 2,core_uart_twptr
+	copy pdata,contwu
+	copy loopcnt,pdata //length
+	istoret 1,contwu //packet type in temp
+	increase -1,pdata
+	iadd contwu,contwu
+	copy contwu,pdata
+	store 2,mem_hci_acl_tx_trigger_wptr
+	copy temp,pdata
+ifdef ACL_DEBUG
+	beq HCI_H4_TYPE_EVENT,h4_send_packet0
+	hfetch 1,core_uart_txitems
+	ncall ice_break,blank
+	
+h4_send_packet0:	
+	copy temp,pdata
+endif
+	rtneq HCI_H4_TYPE_ACL //not send acl packet immediately
+	fetch 2,mem_hci_acl_tx_trigger_wptr
+	hstore 2,core_uart_twptr
+	branch h4_send_acl_trigger_clear
+	
+h4_send_acl_trigger:
+	set1 mark_ext_patch,mark
+	bpatch patch3e_1,mem_patch3e
+	fetch 2,mem_hci_acl_tx_trigger_wptr
+	branch assert,blank
+	hstore 2,core_uart_twptr
+ifdef ACL_DEBUG
+	hfetcht 2,core_uart_trptr
+	isub temp,rega
+	branch h4_send_acl_trigger0,positive
+	arg 0x400,rega
+	iadd rega,pdata
+	isub temp,rega
+h4_send_acl_trigger0:	
+	fetch 2,mem_len
+	increase 5,pdata
+	isub rega,null
+	ncall ice_break,zero
+endif
+	branch h4_send_acl_trigger_clear
+	
+h4_send_acl_trigger_clear:
+	setarg 0
+	store 2,mem_hci_acl_tx_trigger_wptr
+	rtn
+
+h4_tx_buffer_remain:
+	hfetcht 2,core_uart_trptr
+	hfetch 2,core_uart_twptr
+	isub temp,rega
+	nbranch h4_tx_buffer_remain_negative,positive
+	hfetcht 2,core_uart_tsaddr
+	hfetch 2,core_uart_teaddr
+	isub temp,pdata
+	isub rega,temp
+	rtn
+h4_tx_buffer_remain_negative:
+	sub rega,-1,temp
+	rtn
+	
Index: btkb/program/hci_main.prog
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/btkb/program/hci_main.prog	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/btkb/program/hci_main.prog	(working copy)
@@ -0,0 +1,2236 @@
+/*********************************/
+/**********   HCI  *****************/
+/*********************************/
+hci_dispatch:
+	set0 mark_ext_patch,mark
+	bpatch patch19_5,mem_patch19
+	fetch 1,mem_device_option
+	rtnne dvc_op_hci
+	call hci_rx_packet
+ifdef COMPILE_HCI_BCSP	
+	call hci_check_bcsp_protocol
+	call bcsp_retransmit,true
+	call hci_check_bcsp_protocol
+	call bcsp_freepacket,true
+endif
+	branch  process_send_acl
+ifdef COMPILE_HCI_BCSP
+	rtnmark0 mark_h5_reinit
+	force h5_reinit_timer,queue
+	call timer_check
+	nrtn blank
+	call hci_reinit
+	call hci_check_bcsp_protocol
+	nrtn true
+	set0 mark_h5_sync,mark
+	force 0xda,temp
+	setarg 0xededdc
+	call parse_bcsp_link_establish_send
+	setarg 2000
+	force h5_reinit_timer,queue
+	branch timer_init
+endif
+
+
+hci_init:
+	set0 mark_ext_patch,mark
+	bpatch patch19_6,mem_patch19
+	rtn wake
+	setarg hci_idle_dispatch
+	store 2,mem_cb_idle_process
+
+	setarg uart_baud_115200
+	store uart_baud_len,mem_baud
+hci_lpm_init:
+	set0 mark_ext_patch,mark
+	bpatch patch19_7,mem_patch19
+	call init_filter_ram
+	setarg mem_h5rx_buf
+	hstore 2,core_uart_rsaddr
+	setarg mem_h5rx_buf_end
+	hstore 2,core_uart_readdr
+	setarg mem_h5tx_buf
+	hstore 2,core_uart_tsaddr
+	call hci_sel_init
+hci_reinit:
+	set0 mark_ext_patch,mark
+	bpatch patch1a_0,mem_patch1a
+	hjam 0x0,core_uart_ctrl
+ifdef COMPILE_HCI_BCSP
+	jam 0,mem_h5rx_ack
+	jam 0,mem_h5tx_ack
+	jam 0,mem_h5tx_seq
+endif
+ 	setarg mem_h5tx_buf
+ifdef COMPILE_HCI_BCSP
+	store 2,mem_h5tx_wptr
+	store 2,mem_h5tx_rptr
+endif
+	hstore 2,core_uart_twptr
+	hstore 2,core_uart_trptrp
+	setarg mem_h5rx_buf
+	hstore 2,core_uart_rrptr
+	store 2,mem_h5rx_rptr
+hci_init_common:
+	set0 mark_ext_patch,mark
+	bpatch patch1a_1,mem_patch1a
+	hfetch 2,core_clkoff
+	set0 CLOCK_OFF_UART,pdata
+	hstore 2,core_clkoff
+	call uart_set_baud_by_mem
+	hjam uartclk_dpll,core_uart_clksel
+	hjam uart_ctrl_h4,core_uart_ctrl
+	branch hci_init_queue_ack
+
+hci_sel_init:
+	setarg mem_h5tx_buf_end
+	hstore 2,core_uart_teaddr
+	hfetch 1,core_gpio_sel1
+	or_into 0x07,pdata
+	hstore 1,core_gpio_sel1
+	jam 0xff,mem_ucode_id_local
+	rtn
+	
+hci_reset_uart:
+	hfetch 2,core_uart_rwptr
+	hstore 2,core_uart_rrptr
+	set1 mark_h5_reset,mark
+	rtn
+
+	
+hci_check_bcsp_protocol:
+	hfetch 1,core_uart_ctrl
+	isolate1 uart_ctrl_bit_slip_protocol,pdata
+	rtn// set true if it is bcsp protocol
+	
+hci_init_queue_ack:
+	setarg mem_hci_acl_queue_start
+	store 2,mem_hci_acl_queue_wptr
+	store 2,mem_hci_acl_queue_rptr
+	force param_acl_pktcnt,temp
+	iadd temp,pdata
+	iadd temp,pdata
+	increase 2,pdata		/*add one pkt more*/
+	store 2,mem_hci_acl_queue_end
+	setarg 0x00
+	store 1,mem_hci_acl_cnt
+	store 1,mem_hci_acl_queue_wcnt
+	rtn
+
+hci_rx_packet:
+	set0 mark_ext_patch,mark
+	bpatch patch1a_2,mem_patch1a
+	hfetch 1,core_uart_status
+	iforce regb
+	bbit0 uart_status_rx_fifo_empty,hci_rx_packet_cont
+	hfetch 2,core_uart_rxitems
+	iforce regc
+	arg 0x44f,temp
+	isub temp,null
+	nrtn zero
+hci_rx_packet_cont:
+	hfetch 2,core_uart_rrptr
+	iforce contru
+	call hci_check_bcsp_protocol
+	branch hci_rx_bcsp,true
+	branch hci_rx_h4
+
+hci_send_ack:
+	call hci_check_bcsp_protocol
+	branch bcsp_send_ack,true
+	rtn
+	
+uart_send_byte:
+	hfetcht 1,core_uart_status
+	isolate1 6,temp
+	branch uart_send_byte,true
+	hstore 1,core_uart_txd
+	rtn
+
+
+process_acl_into_queue:
+	fetcht 2,mem_hci_acl_queue_end
+	fetch 2,mem_hci_acl_queue_wptr
+	iforce contw
+	deposit contru
+	istore 2,contw
+	deposit contw
+	store 2,mem_hci_acl_queue_wptr
+	icompare 0xff,temp
+	call process_acl_into_queue_loop,true
+	fetch 1,mem_hci_acl_queue_wcnt
+	increase 1,pdata
+	store 1,mem_hci_acl_queue_wcnt
+	rtn	
+process_acl_into_queue_loop:
+	setarg mem_hci_acl_queue_start
+	store 2,mem_hci_acl_queue_wptr
+	rtn
+	
+	
+process_acl_dequeue:
+	fetch 1,mem_hci_acl_queue_wcnt
+	rtn blank
+	fetcht 2,mem_hci_acl_queue_end
+	fetch 2,mem_hci_acl_queue_rptr
+	iforce contr
+	ifetch 2,contr
+	iforce contru
+	deposit contr
+	store 2,mem_hci_acl_queue_rptr
+	icompare 0xff,temp
+	call process_acl_dequeue_loop,true
+	fetch 1,mem_hci_acl_queue_wcnt
+	increase -1,pdata
+	store 1,mem_hci_acl_queue_wcnt
+	force 1,pdata
+	rtn	
+process_acl_dequeue_loop:
+	setarg mem_hci_acl_queue_start
+	store 2,mem_hci_acl_queue_rptr
+	rtn
+
+process_acl: // traditional BT downgoing ACL
+	set0 mark_ext_patch,mark
+	bpatch patch1a_3,mem_patch1a
+	fetch 1,mem_hci_acl_queue_wcnt
+	sub pdata,2,null
+	branch process_acl_queue_check_ok,positive
+	enable user
+	branch process_send_acl
+process_acl_queue_check_ok:
+	call hci_send_ack
+	call process_acl_into_queue
+process_send_acl: //downgoing ACL
+	set0 mark_ext_patch,mark
+	bpatch patch1a_4,mem_patch1a
+	rtnmark1 mark_tx_l2cap		
+	call process_acl_dequeue
+	rtn blank
+	ifetcht 1,contru
+	call context_search_conn_handle2
+	nrtn zero						/* cannot find conn handle */
+	ifetch 1,contru
+	rshift4 pdata,pdata
+	and pdata,0x3,pdata //low 2 bits
+	nbranch process_send_acl_good_lch,blank
+	set1 1,pdata //BT2.0device donot know '00' lch
+process_send_acl_good_lch:
+	set1 2,pdata
+	store 1,mem_tx_lch
+	ifetch 2,contru
+	store 2,mem_tx_len				/* length */
+	deposit contru
+	store 2,mem_txptr
+	set1 mark_tx_l2cap,mark
+	bmark0 mark_context,process_acl_ncontext
+	fetch 1,mem_conn_handle
+	isub temp,null
+	nbranch process_acl_ncontext,zero
+	fetch 1,mem_op
+	set1 op_txl2cap,pdata
+	store 1,mem_op
+	rtn
+
+process_acl_ncontext:
+        increase coffset_op,rega                             
+        ifetch 1,rega
+        set1 op_txl2cap,pdata
+        istore 1,rega
+        rtn
+
+
+
+	
+process_hci_cmd:
+	set0 mark_ext_patch,mark
+	bpatch patch1a_5,mem_patch1a
+	fetch 1,mem_hci_cmd
+	branch process_hci_cmd_cont,blank
+	enable user					/* last command still there */
+	rtn
+process_hci_cmd_cont:
+	call hci_send_ack
+	ifetch 2,contru
+	iforce alarm				/* alarm is used for sending */
+	iforce queue				/* queue is OCF */
+	ifetch 1,contru		/* skip hci length */
+	iforce temp			/* temp has the length */
+	rshift2 alarm,pdata
+	rshift8 pdata,pdata
+	beq HCI_OGF_LINK_CONTROL,phci_grp_link_control
+	beq HCI_OGF_LINK_POLICY,phci_grp_link_policy
+	beq HCI_OGF_BASEBAND,phci_grp_baseband
+	beq HCI_OGF_INFO,phci_grp_info
+	beq HCI_OGF_STATUS,phci_grp_status
+	beq HCI_OGF_TEST,phci_grp_test
+	beq HCI_OGF_VENDOR_SPECIFIC,phci_grp_vendor_specific
+	beq HCI_OGF_LOW_ENERGY,phci_grp_low_energy
+	rtn
+
+
+phci_grp_link_control:
+	set0 mark_ext_patch,mark
+	bpatch patch1a_6,mem_patch1a
+	deposit queue
+	beq HCI_INQUIRY,phci_inquiry 
+	beq HCI_INQUIRY_CANCEL,phci_inquiry_cancel 
+	beq HCI_PERIODIC_INQUIRY_MODE,hci_normal_reply
+	beq HCI_EXIT_PERIODIC_INQUIRY_MODE,hci_normal_reply
+	beq HCI_CREATE_CONNECTION,phci_create_connection 
+	beq HCI_DISCONNECT,phci_disconnect 
+	beq HCI_ADD_SCO_CONNECTION,hci_normal_reply
+	beq HCI_CREATE_CONNECTION_CANCEL,phci_create_connection_cancel
+	beq HCI_ACCEPT_CONNECTION,phci_accept_connection
+	beq HCI_REJECT_CONNECTION,phci_reject_connection
+	beq HCI_LINK_KEY_REQUEST_REPLY,phci_link_key_request_reply 
+	beq HCI_LINK_KEY_REQUEST_NEGATIVE_REPLY,phci_link_key_request_negative_reply 
+	beq HCI_PIN_CODE_REQUEST_REPLY,phci_pin_code_request_reply
+	beq HCI_PIN_CODE_REQUEST_NEGATIVE_REPLY,phci_pin_code_request_negative_reply
+	beq HCI_CHANGE_CONNECTION_PACKET_TYPE,phci_change_connection_packet_type
+	beq HCI_AUTHENTICATION_REQUESTED,phci_authentication_requested
+	beq HCI_SET_CONNECTION_ENCRYPTION,phci_set_connection_encryption
+	beq HCI_CHANGE_CONNECTION_LINK_KEY,hci_normal_reply
+	beq HCI_MASTER_LINK_KEY,hci_normal_reply
+	beq HCI_REMOTE_NAME_REQUEST,phci_remote_name_request 
+	beq HCI_READ_REMOTE_SUPPORTED_FEATURES,phci_read_remote_supported_features 
+	beq HCI_READ_REMOTE_EXT_FEATURES,phci_read_remote_ext_features 
+	beq HCI_READ_REMOTE_VERSION_INFORMATION,phci_read_remote_version_information
+	beq HCI_READ_CLOCK_OFFSET,phci_read_clock_offset
+	beq HCI_SETUP_SCO_CONNECTION,phci_setup_sco_connection
+	beq HCI_ACCEPT_SCO_CONNECTION,phci_accept_sco_connection
+	beq HCI_IO_CAP_REQUEST_REPLY,phci_io_cap_request_reply
+	branch phci_unknown_command
+
+
+phci_grp_link_policy:
+	set0 mark_ext_patch,mark
+	bpatch patch1a_7,mem_patch1a
+	deposit queue
+	beq HCI_ROLE_DISCOVERY,phci_role_discovery 
+	beq HCI_WRITE_LINK_POLICY_SETTINGS,phci_write_link_policy_settings
+	beq HCI_HOLD_MODE,hci_normal_reply
+	beq HCI_SNIFF_MODE,phci_sniff_mode
+	beq HCI_EXIT_SNIFF_MODE,phci_exit_sniff_mode
+	beq HCI_PARK_MODE,hci_normal_reply
+	beq HCI_EXIT_PARK_MODE,hci_normal_reply
+	beq HCI_QOS_SETUP,hci_normal_reply
+	beq HCI_SWITCH_ROLE,phci_switch_role
+	beq HCI_READ_LINK_POLICY_SETTINGS,hci_normal_reply
+	beq HCI_READ_DEFAULT_LINK_POLICY_SETTINGS,hci_normal_reply
+	beq HCI_WRITE_DEFAULT_LINK_POLICY_SETTINGS,hci_normal_reply
+	beq HCI_FLOW_SPECIFICATION,hci_normal_reply
+	beq HCI_SNIFF_SUBRATING,phci_sniff_subrating
+	branch phci_unknown_command
+
+phci_grp_baseband:
+	set0 mark_ext_patch,mark
+	bpatch patch1b_0,mem_patch1b
+	deposit queue
+	beq HCI_SET_EVENT_MASK ,phci_set_event_mask
+	beq HCI_RESET ,hci_normal_reply
+	beq HCI_DELETE_STORED_LINK_KEY,phci_delete_stored_link_key 
+	beq HCI_WRITE_LOCAL_NAME,phci_change_local_name 
+	beq HCI_READ_LOCAL_NAME,phci_read_local_name 
+	beq HCI_WRITE_PAGE_TIMEOUT,phci_write_page_timeout 
+	beq HCI_READ_SCAN_ENABLE,phci_read_scan_enable 
+	beq HCI_WRITE_SCAN_ENABLE,phci_write_scan_enable 
+	beq HCI_WRITE_PAGE_SCAN_ACTIVITY,phci_write_page_scan_activity 
+	beq HCI_WRITE_INQUIRY_SCAN_ACTIVITY,phci_write_inquiry_scan_activity 
+	beq HCI_WRITE_AUTHENTICATION_ENABLE,phci_write_authentication_enable 
+	beq HCI_WRITE_ENCRYPTION_MODE,phci_write_encryption_mode
+	beq HCI_WRITE_CLASS_OF_DEVICE,phci_write_class_of_device 
+	beq HCI_WRITE_VOICE_SETTING,hci_normal_reply 
+	beq HCI_SET_CONTROLLER_TO_HOST_FLOW_CONTROL ,hci_normal_reply
+	beq HCI_HOST_BUFFER_SIZE,hci_normal_reply 
+	beq HCI_HOST_NUM_COMPLETED_PACKETS,phci_host_num_completed
+	beq HCI_WRITE_INQUIRY_SCAN_TYPE,hci_normal_reply 
+	beq HCI_WRITE_INQUIRY_MODE,hci_normal_reply 
+	beq HCI_WRITE_PAGE_SCAN_TYPE,hci_normal_reply 
+	beq HCI_READ_EXTENDED_INQUIRY_RESPONSE,phci_read_ext_inquiry_response
+	beq HCI_WRITE_SIMPLE_PAIRING_MODE,phci_write_ssp_mode 
+	branch phci_unknown_command
+
+phci_grp_info:
+	set0 mark_ext_patch,mark
+	bpatch patch1b_1,mem_patch1b
+	deposit queue
+	beq HCI_READ_LOCAL_VERSION_INFORMATION,phci_read_local_version_information 
+	beq HCI_READ_LOCAL_SUPPORTED_FEATURES,phci_read_local_supported_features 
+	beq HCI_READ_LOCAL_EXT_FEATURES,phci_read_local_ext_features 
+	beq HCI_READ_BUFFER_SIZE,phci_read_buffer_size
+	beq HCI_READ_BD_ADDR,phci_read_bd_addr
+	branch phci_unknown_command
+
+phci_grp_status:
+	set0 mark_ext_patch,mark
+	bpatch patch1b_2,mem_patch1b
+	deposit queue
+	beq HCI_READ_FAILED_CONTACT_COUNTER,hci_normal_reply
+	beq HCI_RESET_FAILED_CONTACT_COUNTER,phci_reset_failed_contact_counter
+	beq HCI_GET_LINK_QUALITY,phci_get_link_quality
+	beq HCI_READ_RSSI,phci_read_rssi
+	beq HCI_READ_AFH_CHANNEL_MAP,phci_read_afh_channel_map
+	beq HCI_READ_BD_CLOCK,phci_read_bd_clock
+	branch phci_unknown_command
+
+phci_grp_test:
+	set0 mark_ext_patch,mark
+	bpatch patch1b_3,mem_patch1b
+	deposit queue
+	beq HCI_READ_LOOPBACK_MODE,hci_normal_reply
+	beq HCI_WRITE_LOOPBACK_MODE,hci_normal_reply
+	beq HCI_ENABLE_DEVICE_UNDER_TEST_MODE,hci_normal_reply
+	beq HCI_WRITE_SIMPLE_PAIRING_DEBUG_MODE,hci_normal_reply
+	branch phci_unknown_command
+	rtn
+
+phci_grp_vendor_specific:
+	set0 mark_ext_patch,mark
+	bpatch patch1b_4,mem_patch1b
+	deposit queue
+	beq HCI_VENDOR_CMD_RESET,hci_normal_reply
+	beq HCI_VENDOR_CMD_CHIPID,phci_grp_vendor_chipid
+	beq HCI_VENDOR_CMD_BAUD,phci_grp_vendor_baud
+	beq HCI_VENDOR_CMD_PATCH,phci_grp_vendor_patch
+	beq HCI_VENDOR_CMD_PATCH_DONE,phci_grp_vendor_done
+	beq HCI_VENDOR_CMD_ECHO,hci_normal_reply
+	beq HCI_VENDOR_CMD_BDADDR,phci_grp_vendor_bdaddr
+	beq HCI_VENDOR_CMD_ENTER_LPM,phci_grp_vendor_enter_lpm
+	
+	beq HCI_VENDOR_CMD_MEM,phci_grp_vendor_mem
+	beq HCI_VENDOR_CMD_EEP,phci_grp_vendor_eep
+	branch hci_normal_reply
+
+phci_grp_vendor_enter_lpm:
+	call hci_normal_reply
+	call wait_uarttx
+	call gpio_pu_uart_tx
+hci_enter_lpm:
+	call app_put_lpm_wake_lock
+	call app_l2cap_flow_control_enable
+	branch gpio_rx_config_input_with_pu
+
+hci_exit_lpm:
+	jam HCI_RX_READY,mem_hci_lt_rx_state
+	call app_get_lpm_wake_lock
+	call hci_lpm_init
+	branch app_l2cap_flow_control_disable
+	
+phci_grp_vendor_chipid:
+	call hci_get_cmd_complete_ptr
+	hfetch 2,core_chipid
+	istore 2,contwu
+	force 6,loopcnt
+	branch hci_command_complete
+	
+phci_grp_vendor_baud:
+	ifetch 2,contru
+	store 2,mem_baud
+	hstore 2,core_uart_baud
+	rtn
+	
+phci_grp_vendor_patch:
+	//hjam 0x80,core_ucode_ctrl
+	ifetch 1,contru
+	copy pdata,temp //check sum via temp
+	hstore 1,core_ucode_low
+	ifetch 1,contru
+	iadd temp,temp
+	set1 7,pdata
+	hstore 1,core_ucode_ctrl
+	ifetch 1,contru
+	iadd temp,temp
+	copy pdata,loopcnt
+phci_grp_vendor_patch_loop:
+	ifetch 1,contru
+	hstore 1,core_ucode_data
+	iadd temp,temp
+	loop phci_grp_vendor_patch_loop
+	and temp,0xff,temp
+	ifetch 1,contru
+	isub temp,null
+	nbranch phci_grp_vendor_patch_bad,zero
+	branch hci_normal_reply
+
+phci_grp_vendor_done:
+	arg 0x20,loopcnt    //patch switch length
+	arg mem_patch00,contw
+	arg 0,temp //checksum
+phci_grp_vendor_done_loop:
+	ifetch 1,contru
+	istore 1,contw
+	iadd temp,temp
+	loop phci_grp_vendor_done_loop
+	and temp,0xff,temp
+	ifetch 1,contru
+	isub temp,null
+	nbranch phci_grp_vendor_patch_bad,zero
+	hjam 0,core_ucode_ctrl
+	call hci_normal_reply
+	call h4_rx_discard_packet
+	branch soft_reset
+
+phci_grp_vendor_patch_bad:
+	hjam 0,core_ucode_ctrl
+	branch start
+	
+phci_grp_vendor_bdaddr:
+	ifetch 6,contru
+	store 6,mem_lap
+	branch hci_normal_reply
+
+
+phci_grp_vendor_mem:
+	ifetch 1,contru
+	store 1,mem_hci_curr_len
+	copy pdata,loopcnt
+	ifetch 2,contru
+	store 2,mem_hci_curr_target
+	copy pdata,contw
+	call uart_copy_rx_bytes
+	branch hci_normal_reply
+
+
+phci_grp_vendor_eep:
+	ifetch 1,contru
+	store 1,mem_hci_curr_len
+	copy pdata,loopcnt
+	ifetch 2,contru
+	store 2,mem_hci_curr_target
+	arg mem_l2cap_rxbuff1,contw
+	call uart_copy_rx_bytes
+	fetcht 1,mem_hci_curr_len
+	arg mem_l2cap_rxbuff1,rega
+	fetch 2,mem_hci_curr_target
+	branch iicd_write_ota_data
+	
+
+
+
+
+phci_grp_low_energy:
+	set0 mark_ext_patch,mark
+	bpatch patch1b_5,mem_patch1b
+	deposit queue
+	beq HCI_LE_SET_EVENT_MASK,hci_normal_reply
+	beq HCI_LE_READ_BUFFER_SIZE,phci_le_read_buffer_size
+	beq HCI_LE_READ_LOCAL_SUPPORTED_FEATURES,phci_le_read_local_supported_features
+	beq HCI_LE_SET_ADVERTISING_PARAMETERS,phci_le_set_adv_param
+	beq HCI_LE_SET_ADVERTISING_DATA, phci_le_set_adv_data
+	beq HCI_LE_SET_SCAN_RESPONSE_DATA,phci_le_set_scan_response_data
+	beq HCI_LE_SET_ADVERTISE_ENABLE,phci_le_set_adv_enable
+	beq HCI_LE_SET_SCAN_PARAMETERS,phci_le_set_scan_param
+	beq HCI_LE_SET_SCAN_ENABLE,phci_le_set_scan_enable
+	beq HCI_LE_CREATE_CONNECTION,phci_le_create_conn
+	beq HCI_LE_CREATE_CONNECTION_CANCEL,phci_le_create_conn_cancel
+	beq HCI_LE_READ_CHANNEL_MAP,phci_le_read_channel_map
+	beq HCI_LE_READ_REMOTE_USED_FEATURES,hci_command_status
+	beq HCI_LE_CONNECTION_UPDATE,hci_normal_reply
+	branch phci_unknown_command
+	rtn
+phci_le_read_buffer_size:
+	call hci_get_cmd_complete_ptr
+	setarg 0
+	istore 3,contwu
+	force 0x07,loopcnt
+	branch hci_command_complete
+
+phci_le_read_local_supported_features:
+	call hci_get_cmd_complete_ptr
+	setarg 1
+	istore 2,contwu
+	setarg 0
+	istore 6,contwu
+	force 0x0c,loopcnt
+	branch hci_command_complete
+
+phci_le_set_adv_param:
+	arg 15,loopcnt
+	arg mem_le_adv_param,contw
+	call uart_copy_rx_bytes
+	branch hci_normal_reply
+
+phci_le_set_adv_data:
+	arg 32,loopcnt
+	arg mem_le_adv_data_len,contw
+	call uart_copy_rx_bytes
+	branch hci_normal_reply
+
+phci_le_set_scan_response_data:
+	arg 32,loopcnt
+	arg mem_le_scan_data_len,contw
+	call uart_copy_rx_bytes
+	branch hci_normal_reply
+
+phci_le_set_adv_enable:
+	ifetch 1,contru
+	store 1,mem_le_adv_enable
+	branch hci_normal_reply
+	
+phci_le_set_scan_param:
+	ifetch 7,contru
+	store 7,mem_le_scan_params
+	branch hci_normal_reply
+	
+phci_le_set_scan_enable:
+	ifetch 1,contru
+	store 1,mem_le_scan_enable
+	branch hci_normal_reply
+
+phci_le_create_conn:
+	ifetch 4,contru //interval & window
+	store 4,mem_le_scan_interval
+	ifetch 1,contru
+	store 1,mem_le_scan_filter_policy
+	arg 20,loopcnt
+	arg mem_le_conn_param,contw
+	call uart_copy_rx_bytes
+	jam 1,mem_le_scan_enable
+	fetch 1,mem_le_conn_own_addr_type
+	store 1,mem_le_scan_own_addr_type
+	fetch 2,mem_le_conn_interval_max 
+	store 2,mem_le_conn_interval
+	fetch 2,mem_le_conn_latency
+	store 2,mem_le_slave_latency
+	fetch 2,mem_le_conn_superto
+	store 2,mem_le_superto
+	jam hci_cmd_le_create_conn,mem_hci_cmd
+	branch hci_command_status
+
+phci_le_create_conn_cancel:
+
+	branch hci_normal_reply
+	
+phci_le_read_channel_map:
+	call hci_get_cmd_complete_ptr
+	ifetch 2,contru
+	istore 2,contwu
+	setarg 0x1fffff
+	istore 5,contwu
+	force 0x0b,loopcnt
+	branch hci_command_complete
+	
+
+
+
+phci_host_num_completed:
+	ifetch 3,contru
+	ifetcht 3,contru
+	fetch 2,mem_acl_credits
+	iadd temp,pdata  
+	store 2,mem_acl_credits
+	rtn
+
+phci_inquiry:
+	ifetch 3,contru
+	store 3,mem_glap
+do_at_inquiry0:
+	jam hci_cmd_inquiry,mem_hci_cmd
+	ifetch 1,contru
+	arg 1600,temp
+	imul32 temp,pdata
+	arg 0xffff,temp
+	isub temp,null
+	nbranch phci_inquiry_nowrap,positive
+	deposit temp
+phci_inquiry_nowrap:
+	force inquiry_length_timer,queue
+	call timer_init
+	fetch 1,mem_at_using_flag
+	bbit1 AT_FLAG_INQ,at_rev_end
+	branch hci_command_status
+	
+	
+phci_inquiry_cancel:
+	jam hci_cmd_inquiry_cancel,mem_hci_cmd
+	branch hci_normal_reply
+
+phci_create_connection:
+	call phci_read_plap
+	ifetch 2,contru
+	store 2,mem_packet_type
+	ifetch 2,contru
+	store 1,mem_page_mode
+	call phci_read_clock
+	ifetch 1,contru
+	store 1,mem_allow_switch
+	jam hci_cmd_create_conn,mem_hci_cmd
+	branch hci_command_status
+
+
+phci_disconnect:
+	jam hci_cmd_disconn,mem_hci_cmd
+	ifetch 2,contru
+	store 1,mem_hci_conn_handle
+	ifetch 1,contru
+	store 1,mem_disconn_reason_send
+	jam HCI_ERROR_CONNECTION_TERMINATED_BY_LOCAL_HOST,mem_hci_disconn_reason
+	fetch 1,mem_hci_conn_handle
+	fetcht 1,mem_sco_handle
+	isub temp,null
+	nbranch hci_command_status,zero
+	jam hci_cmd_disconn_sco,mem_hci_cmd
+	fetch 1,mem_sco_asso_handle
+	store 1,mem_hci_conn_handle
+	branch hci_command_status
+	
+phci_create_connection_cancel:
+	call hci_get_cmd_complete_ptr
+	call hci_write_plap
+	force 10,loopcnt
+	call hci_command_complete
+	//connection cancel 
+	jam hci_cmd_detach,mem_hci_cmd
+	force HCI_ERROR_NO_CONNECTION,temp
+	branch hci_send_connection_error
+
+phci_link_key_request_reply:
+	call phci_read_plap
+	arg mem_link_key,contw
+	force 16,loopcnt
+	call uart_copy_rx_bytes
+	jam hci_cmd_linkkey,mem_hci_cmd
+	branch phci_pin_code_reply
+
+phci_link_key_request_negative_reply:
+	call phci_read_plap
+	jam hci_cmd_nokey,mem_hci_cmd
+	branch phci_pin_code_reply
+
+phci_pin_code_request_reply:
+	call phci_read_plap
+	ifetch 1,contru
+	store 1,mem_pin_length
+	iforce loopcnt
+	arg mem_pin,contw
+	call uart_copy_rx_bytes
+	jam hci_cmd_pair,mem_hci_cmd
+	branch phci_pin_code_reply
+
+phci_pin_code_request_negative_reply:
+	call phci_read_plap
+	jam hci_cmd_nopair,mem_hci_cmd
+phci_pin_code_reply:
+	call hci_get_cmd_complete_ptr
+	call hci_write_plap
+	force 10,loopcnt
+	branch hci_command_complete
+
+phci_io_cap_request_reply:
+	//BD_ADDR, IO_Capability, 
+	increase 6,contru
+	ifetch 3,contru
+	store 3,mem_sp_iocap_local
+	fetch 1,mem_master_sp_state
+	beq SP_MASTER_STAT_START_DONE,phci_io_cap_request_reply_master
+	beq SP_STAT_KEY_SEND,phci_io_cap_request_reply_master
+	jam hci_cmd_io_cap,mem_hci_cmd
+	branch phci_io_cap_request_reply_commom
+phci_io_cap_request_reply_master:
+	jam SP_FLAG_COMMIT,mem_master_sp_flag
+phci_io_cap_request_reply_commom:
+	call hci_get_cmd_complete_ptr
+	call hci_write_plap
+	force 10,loopcnt
+	branch hci_command_complete
+	
+
+phci_authentication_requested:
+	call phci_read_handle
+	jam hci_cmd_auth,mem_hci_cmd
+	branch hci_command_status
+
+phci_set_connection_encryption:
+	call phci_read_handle
+	ifetch 1,contru
+	increase hci_cmd_stopencrypt,pdata
+	store 1,mem_hci_cmd
+	branch hci_command_status
+
+phci_remote_name_request:
+	call phci_read_plap
+	ifetch 2,contru
+	store 1,mem_page_mode
+	call phci_read_clock
+	jam hci_cmd_remote_name_req,mem_hci_cmd
+	branch hci_command_status
+	
+phci_read_remote_ext_features:
+	ifetch 2,contru
+	ifetch 1,contru
+	store 1, mem_ext_features_page
+	jam hci_cmd_remote_ext_features_req,mem_hci_cmd
+	branch hci_command_status
+
+phci_read_remote_supported_features:
+	//if no handle,need send err status
+	fetch 1,mem_conn_handle
+	force HCI_ERROR_NO_CONNECTION,rega
+	branch hci_command_status_err,blank
+	call phci_read_handle
+	jam hci_cmd_remote_feature_req,mem_hci_cmd
+	branch hci_command_status
+
+
+phci_read_remote_version_information:
+	//if no handle,need send err status
+	fetch 1,mem_conn_handle
+	force HCI_ERROR_NO_CONNECTION,rega
+	branch hci_command_status_err,blank
+	call phci_read_handle
+	jam hci_cmd_remote_version_req,mem_hci_cmd
+	branch hci_command_status
+
+
+phci_read_clock_offset:
+	call phci_status_reply_temp
+	force HCI_EVENT_READ_CLOCK_OFFSET_COMPLETE,queue
+	force 5,loopcnt
+	branch hci_send_event
+
+phci_setup_sco_connection:
+	call phci_read_handle
+	increase 10,contru
+	ifetch 2,contru
+	store 2,mem_voice_setting
+	ifetch 1,contru
+	store 1,mem_retransmission_effort
+	ifetch 2,contru
+	store 2,mem_sco_ptype
+	jam 2,mem_air_mode				/* cvsd */
+	jam hci_cmd_setup_sco,mem_hci_cmd
+	branch hci_command_status
+
+phci_accept_sco_connection:
+	jam hci_cmd_accept_sco_conn,mem_hci_cmd
+	branch hci_command_status	
+	
+	
+	
+phci_read_local_name:
+	call hci_get_cmd_complete_ptr
+	arg mem_local_name,contr
+	sub contr,0xff,loopcnt
+	call uart_copy_tx_bytes
+	force 0,pdata
+	sub contr,mem_local_name,loopcnt
+	increase 0xf8,loopcnt
+	call uart_write_bytes
+	force 0xfc,loopcnt
+	branch hci_command_complete
+	
+phci_change_local_name:
+	arg mem_local_name,contw
+	sub contw,0xff,loopcnt
+phci_change_local_name_loop:
+	ifetch 1,contru
+	istore 1,contw
+	branch phci_write_local_name_end,blank
+	loop phci_change_local_name_loop
+phci_write_local_name_end:
+	sub contw,mem_local_name,pdata
+	sub pdata,0,pdata
+	store 1,mem_local_name_length
+	branch hci_normal_reply
+
+phci_role_discovery:
+	call hci_get_cmd_complete_ptr
+	call hci_write_handle
+	force 0,pdata
+	nsetflag master,0,pdata
+	istore 1,contwu
+	force 7,loopcnt
+	arg 0x809,alarm				/* role discovery */
+	call hci_command_complete
+	branch cmd_exit
+	jam hci_cmd_role_discovery,mem_hci_cmd
+	rtn
+
+
+phci_write_link_policy_settings:
+	call phci_copy_handle
+	force 6,loopcnt
+	branch hci_command_complete
+
+
+phci_delete_stored_link_key:
+	branch hci_normal_reply
+
+phci_write_page_timeout:
+	ifetch 2,contru
+	store 2,mem_page_to
+	branch hci_normal_reply
+
+	
+phci_write_scan_enable:
+	ifetch 1,contru
+	store 1,mem_scan_mode
+	branch hci_normal_reply
+
+phci_write_page_scan_activity:
+	ifetch 2,contru
+	store 2,mem_pscan_interval
+	ifetch 2,contru
+	store 2,mem_pscan_window
+	branch hci_normal_reply
+
+phci_write_inquiry_scan_activity:
+	ifetch 2,contru
+	store 2,mem_iscan_interval
+	ifetch 2,contru
+	store 2,mem_iscan_window
+	branch hci_normal_reply
+
+phci_write_encryption_mode:
+	branch hci_normal_reply
+
+	
+phci_write_authentication_enable:
+	ifetch 1,contru
+	store 1,mem_auth_enable
+	branch hci_normal_reply
+
+phci_write_class_of_device:
+	ifetch 3,contru
+	store 3,mem_class
+	branch hci_normal_reply
+
+
+
+
+phci_read_ext_inquiry_response:
+	deposit temp
+	branch hci_normal_reply,blank
+	call hci_get_payload_ptr
+	force 0x1,pdata
+	istore 1,contwu
+	deposit alarm
+	istore 2,contwu
+	force HCI_ERROR_INVALID_HCI_COMMAND_PARAMETERS,pdata
+	istore 1,contwu
+	setarg 0
+	increase 0xf1,loopcnt
+	call uart_write_bytes
+	
+	force HCI_EVENT_COMMAND_COMPLETE,queue
+	force 0xf5,loopcnt
+	branch hci_send_event
+
+
+	
+phci_write_ssp_mode:
+	ifetch 1,contru
+	ncall ssp_enable,blank
+	call ssp_disable,blank
+	branch hci_normal_reply
+
+phci_read_scan_enable:
+	call hci_get_cmd_complete_ptr
+	fetch 1,mem_scan_mode
+	istore 1,contwu
+	force 5,loopcnt
+	branch hci_command_complete
+
+phci_read_local_version_information:
+	call hci_get_cmd_complete_ptr
+	fetch 8,mem_hci_version
+	istore 8,contwu
+	force 12,loopcnt
+	branch hci_command_complete
+
+phci_read_local_supported_features:
+	call hci_get_cmd_complete_ptr
+	fetch 8,mem_features
+	istore 8,contwu
+	force 12,loopcnt
+	branch hci_command_complete
+	
+phci_read_local_ext_features:
+	call hci_get_cmd_complete_ptr
+	setarg 0x0101	// page 1, and max page is 1
+	istore 2,contwu
+	setarg 0x01		// only support ssp
+	istore 8,contwu
+	force 14,loopcnt
+	branch hci_command_complete
+
+phci_read_buffer_size:
+	call hci_get_cmd_complete_ptr
+	fetch 7,mem_acl_pktlen
+	istore 7,contwu
+	force 11,loopcnt
+	branch hci_command_complete
+	
+phci_read_bd_addr:
+	call hci_get_cmd_complete_ptr
+	fetch 6,mem_lap
+	istore 6,contwu
+	force 10,loopcnt
+	branch hci_command_complete
+
+phci_set_event_mask:
+	branch hci_normal_reply
+
+//NO SUPPUT
+phci_reset_failed_contact_counter:
+	branch hci_normal_reply
+phci_get_link_quality:
+	call hci_get_cmd_complete_ptr
+	call hci_write_handle
+	setarg 0xff
+	istore 1,contwu
+	force 7,loopcnt
+	branch hci_command_complete
+	
+phci_read_rssi:
+	call hci_get_cmd_complete_ptr
+	call hci_write_handle
+	setarg 0x00
+	istore 1,contwu
+	force 7,loopcnt
+	branch hci_command_complete
+	
+phci_read_afh_channel_map:
+	set0 mark_ext_patch,mark
+	bpatch patch1b_6,mem_patch1b
+	branch hci_normal_reply
+phci_read_bd_clock:
+	set0 mark_ext_patch,mark
+	bpatch patch1b_7,mem_patch1b
+	branch hci_normal_reply
+
+
+
+
+phci_accept_connection:
+	call phci_read_plap
+	jam hci_cmd_accept_conn,mem_hci_cmd
+	ifetch 1,contru
+	beq 1,hci_command_status	//1 role slave
+	jam hci_cmd_accept_with_switch,mem_hci_cmd
+	branch hci_command_status
+		
+phci_reject_connection:
+	branch phci_accept_connection
+	call phci_read_plap
+	jam hci_cmd_reject_conn,mem_hci_cmd
+	branch hci_normal_reply
+	
+phci_change_connection_packet_type:
+	call hci_command_status
+	call hci_get_payload_ptr
+	setarg 0
+	istore 1,contwu
+	ifetch 4,contru
+	istore 4,contwu
+	force 8,loopcnt
+	arg HCI_EVENT_CONNECTION_PACKET_TYPE_CHANGED,queue
+	arg 5,loopcnt
+	branch hci_send_event
+
+phci_unknown_command:
+	force HCI_ERROR_UNKNOWN_HCI_COMMAND,rega
+	branch hci_command_status_err
+	
+phci_sniff_mode:
+//	force HCI_ERROR_COMMAND_DISALLOWED,rega
+//	branch hci_command_status_err
+	call phci_read_handle
+	ifetch 2,contru
+	store 2,mem_sniff_param_interval
+	ifetch 2,contru
+	store 2,mem_hci_sniff_min_interval
+	ifetch 2,contru
+	store 2,mem_sniff_param_attempt
+	ifetch 2,contru
+	store 2,mem_sniff_param_timeout
+	jam hci_cmd_in_sniff,mem_hci_cmd
+	branch hci_command_status
+	
+phci_exit_sniff_mode:
+	call phci_read_handle
+	call exit_sniff
+	branch hci_command_status
+
+exit_sniff:
+	jam hci_cmd_exit_sniff,mem_hci_cmd
+	rtn
+
+phci_sniff_subrating:
+	branch hci_normal_reply
+	
+phci_switch_role:
+	call phci_read_plap
+	jam hci_cmd_role_switch,mem_hci_cmd
+	branch hci_command_status
+
+phci_read_plap:
+	ifetch 6,contru
+	store 6,mem_hci_plap
+	rtn
+
+phci_read_handle:
+	ifetch 2,contru
+	store 1,mem_hci_conn_handle
+	rtn
+
+phci_copy_handle:
+	call phci_read_handle
+	call hci_get_cmd_complete_ptr
+	fetch 1,mem_hci_conn_handle
+	istore 2,contwu
+	rtn
+
+
+	/* TODO: should be replaced with real job */
+phci_status_reply_temp:
+	call phci_read_handle
+	call hci_command_status
+	call hci_get_payload_ptr
+	force 0,pdata
+	istore 1,contwu
+	fetch 1,mem_hci_conn_handle
+	istore 2,contwu
+	rtn
+	
+phci_read_clock:
+	ifetch 2,contru
+	iadd clkn_bt,pdata
+	and_into 0x1fc,pdata
+	store 4,mem_page_clk
+	rtn
+
+hci_inquiry_reply:
+	set0 mark_ext_patch,mark
+	bpatch patch1c_0,mem_patch1c
+	fetch 1,mem_rp_packets
+	sub pdata,2,null
+	nrtn positive
+	fetcht 6,extm_lap
+	call context_search_plap2
+	rtn zero
+	call hci_get_packet_ptr
+	setarg 0x10f22
+	istore 3,contwu
+	fetch 6,extm_lap
+	istore 6,contwu
+	fetch 1, extm_fhs_misc
+	copy pdata, temp
+	rshift3 pdata, pdata
+	rshift3 pdata, pdata
+	istore 1,contwu
+	copy temp, pdata
+	and pdata,0x30,pdata
+	rshift3 pdata, pdata
+	rshift pdata, pdata
+	istore 1,contwu
+	fetch 3, extm_class
+	istore 3,contwu
+	fetch 4,mem_clke_bt
+	isub clkn_bt,pdata
+	istore 2,contwu
+	setarg 0xc8
+	istore 1,contwu
+	force 15,loopcnt
+	branch hci_send_event_raw
+	
+hci_inquiry_reply_eir:
+	set0 mark_ext_patch,mark
+	bpatch patch1c_1,mem_patch1c
+	force 540,temp
+	fetch 2,mem_h5tx_free
+	isub temp,null
+	nrtn positive
+	fetcht 3,mem_extm_uap_restore
+	fetch 3,extm_uap
+	isub temp,null
+	rtn zero
+	rtn blank
+	store 3,mem_extm_uap_restore
+	fetch 1,mem_rp_packets
+	sub pdata,2,null
+	nrtn positive
+	fetcht 6,extm_lap
+	call context_search_plap2
+	rtn zero
+	call hci_eir_reply
+	force 15,temp
+	fetch 1,mem_rxbuf+1
+	bne 0x09,hci_inquiry_reply_eir_end
+	fetch 1,mem_rxbuf
+	branch hci_inquiry_reply_eir_end,blank
+	iforce loopcnt
+	istore 1,contwu
+	iadd temp,temp
+	increase 1,temp
+	arg mem_rxbuf+1,contr
+	//increase 1,contr
+hci_inquiry_name_loop:
+	ifetch 1,contr
+	istore 1,contwu
+	loop hci_inquiry_name_loop
+hci_inquiry_other_rtn_loop:
+	ifetch 1,contr
+	branch hci_inquiry_reply_eir_end,blank
+	iforce loopcnt
+	istore 1,contwu
+	iadd temp,temp
+	increase 1,temp
+hci_inquiry_other_loop:
+	ifetch 1,contr
+	istore 1,contwu
+	loop hci_inquiry_other_loop
+	branch hci_inquiry_other_rtn_loop	
+hci_inquiry_reply_eir_end:
+	sub temp,0xff,pdata
+	iforce loopcnt
+hci_inquiry_fill_zero:
+	setarg 0x00
+	istore 1,contwu
+	loop hci_inquiry_fill_zero
+	force 0xff,loopcnt
+	branch hci_send_event_raw
+	
+hci_eir_reply:
+	set0 mark_ext_patch,mark
+	bpatch patch1c_2,mem_patch1c
+	call hci_get_packet_ptr
+	setarg 0x1ff2f
+	istore 3,contwu
+	fetch 6,extm_lap
+	istore 6,contwu
+	fetch 1, extm_fhs_misc
+	copy pdata, temp
+	rshift3 pdata, pdata
+	rshift3 pdata, pdata
+	istore 1,contwu
+	copy temp, pdata
+	and pdata,0x30,pdata
+	rshift3 pdata, pdata
+	rshift pdata, pdata
+	istore 1,contwu
+	fetch 3, extm_class
+	istore 3,contwu
+	fetch 4,mem_clke_bt
+	isub clkn_bt,pdata
+	istore 2,contwu
+	setarg 0xc8
+	istore 1,contwu
+	rtn
+	/* temp is features */
+hci_send_remote_features:
+	set0 mark_ext_patch,mark
+	bpatch patch1c_3,mem_patch1c
+	fetch 1,mem_device_option
+	rtnne dvc_op_hci
+	call hci_write_handle3
+	istoret 8,contwu
+	force 11,loopcnt
+	force HCI_EVENT_READ_REMOTE_FEATURES_COMPLETE,queue
+	branch hci_send_event
+
+hci_send_remote_ext_features_notification:
+	set0 mark_ext_patch,mark
+	bpatch patch1c_4,mem_patch1c
+	fetch 1,mem_device_option
+	rtnne dvc_op_hci
+	// BDaddr, Extended_LMP_Features
+	call hci_get_payload_ptr
+	fetch 6,mem_plap
+	istore 6,contwu
+	istoret 8,contwu// 8 bytes remote ext feature saved in temp reg
+	force 14,loopcnt
+	force HCI_EVENT_REMOTE_HOST_SUPPORTED_FEATURES_NOTIFICATION,queue
+	branch hci_send_event	
+	
+hci_send_remote_ext_features_event:
+	set0 mark_ext_patch,mark
+	bpatch patch1c_5,mem_patch1c
+	fetch 1,mem_device_option
+	rtnne dvc_op_hci
+	//Status, Connection_Handle, Page_Number, Maximum page number, Extended_LMP_Features
+	call hci_write_handle3
+	fetch 1,mem_ext_features_page
+	istore 1,contwu
+	setarg 1
+	istore 1,contwu
+	istoret 8,contwu// 8 bytes remote ext feature saved in temp reg
+	force 13,loopcnt
+	force HCI_EVENT_READ_REMOTE_EXT_FEATURES_COMPLETE,queue
+	branch hci_send_event	
+
+	/* temp is version */
+hci_send_version_information:
+	set0 mark_ext_patch,mark
+	bpatch patch1c_6,mem_patch1c
+	fetch 1,mem_device_option
+	rtnne dvc_op_hci
+	call hci_write_handle3
+	istoret 5,contwu
+	force 8,loopcnt
+	force HCI_EVENT_READ_REMOTE_VERSION_INFORMATION_COMPLETE,queue
+	branch hci_send_event
+
+hci_send_io_cap_response_event:
+	set0 mark_ext_patch,mark
+	bpatch patch1c_7,mem_patch1c
+	fetch 1,mem_device_option
+	rtnne dvc_op_hci
+	// BD_ADDR, IO_Capability,
+	call hci_get_payload_ptr
+	fetch 6,mem_plap
+	istore 6,contwu
+	fetch 3,mem_sp_iocap_remote
+	istore 3,contwu
+	force 9,loopcnt
+	force HCI_EVENT_IO_CAP_RESPONSE,queue
+	branch hci_send_event	
+
+hci_send_io_cap_req_event:
+	set0 mark_ext_patch,mark
+	bpatch patch1d_0,mem_patch1d
+	fetch 1,mem_device_option
+	rtnne dvc_op_hci
+	// BD_ADDR
+	call hci_get_payload_ptr
+	fetch 6,mem_plap
+	istore 6,contwu
+	force 6,loopcnt
+	force HCI_EVENT_IO_CAP_REQ,queue
+	branch hci_send_event	
+
+	
+hci_send_connection_complete:
+	force 0,temp
+hci_send_connection_error:
+	set0 mark_ext_patch,mark
+	bpatch patch1d_1,mem_patch1d
+	fetch 1,mem_device_option
+	rtnne dvc_op_hci
+	force HCI_EVENT_CONNECTION_COMPLETE,queue
+	jam 5,mem_acl_credits
+	call hci_get_payload_ptr
+	istoret 1,contwu
+	call hci_write_handle
+	call hci_write_plap
+	force 1,pdata				/* connection type=1:ACL */
+	istore 1,contwu
+	force 0,pdata
+	fetcht 1,mem_state_map
+	isolate1 smap_encryption,temp
+	setflag true,0,pdata
+	istore 1,contwu
+	force 11,loopcnt
+	branch hci_send_event
+
+	/* temp is connection type 0=sco,1=acl */
+hci_send_conn_req_event:
+	set0 mark_ext_patch,mark
+	bpatch patch1d_2,mem_patch1d
+	fetch 1,mem_device_option
+	rtnne dvc_op_hci
+	force HCI_EVENT_CONNECTION_REQUEST,queue
+	call hci_get_payload_ptr
+	call hci_write_plap
+	// class of device
+	fetch 3,extm_class
+	istore 3,contwu
+	istoret 1,contwu
+	force 10,loopcnt
+	branch hci_send_event
+
+hci_send_encryption_change:
+	set0 mark_ext_patch,mark
+	bpatch patch1d_3,mem_patch1d
+	fetch 1,mem_device_option
+	rtnne dvc_op_hci
+	call hci_write_handle3
+	force 0,pdata
+	fetcht 1,mem_state_map
+	isolate1 smap_encryption,temp
+	setflag true,0,pdata
+	istore 1,contwu
+	force HCI_EVENT_ENCRYPTION_CHANGE_COMPLETE,queue
+	force 4,loopcnt
+	branch hci_send_event
+
+
+hci_send_linkkey_notification:
+	set0 mark_ext_patch,mark
+	bpatch patch1d_4,mem_patch1d
+	fetch 1,mem_device_option
+	rtnne dvc_op_hci
+	force HCI_EVENT_LINK_KEY_NOTIFICATION,queue
+	call hci_get_payload_ptr
+	call hci_write_plap
+	arg mem_link_key,contr
+	force 16,loopcnt
+	call uart_copy_tx_bytes
+	force 0x05,pdata
+	istore 1,contwu
+	force 0x17,loopcnt
+	branch hci_send_event
+
+hci_send_user_confirmation_req:
+	fetch 1,mem_device_option
+	rtnne dvc_op_hci
+	force HCI_EVENT_USER_CONFIRMATION_REQUEST,queue
+	call hci_get_payload_ptr
+	call hci_write_plap
+	fetch 4,mem_sp_gkey
+	istore 4,contwu
+	force 0xa,loopcnt
+	branch hci_send_event
+
+hci_send_ssp_complete:
+	fetch 1,mem_device_option
+	rtnne dvc_op_hci
+	force HCI_EVENT_SIMPLE_PAIRING_COMPLETE,queue
+	call hci_get_payload_ptr
+	setarg 0
+	istore 1,contwu
+	call hci_write_plap
+	force 0x7,loopcnt
+	branch hci_send_event
+
+
+hci_send_linkkey_req:
+	set0 mark_ext_patch,mark
+	bpatch patch1d_5,mem_patch1d
+	force HCI_EVENT_LINK_KEY_REQUEST,queue
+hci_send_sec_req:	/* used by linkkey and pin req */
+	fetch 1,mem_device_option
+	rtnne dvc_op_hci
+	call hci_get_payload_ptr
+	call hci_write_plap
+	force 6,loopcnt
+	branch hci_send_event
+
+hci_send_pincode_req:
+	fetch 1,mem_device_option
+	rtnne dvc_op_hci
+	force HCI_EVENT_PIN_CODE_REQUEST,queue
+	branch hci_send_sec_req
+
+	/* temp=role */
+hci_send_role_change:
+	fetch 1,mem_device_option
+	rtnne dvc_op_hci
+	force HCI_EVENT_ROLE_CHANGE,queue
+	call hci_get_payload_ptr
+	force 0,pdata
+	istore 1,contwu
+	call hci_write_plap
+	istoret 1,contwu
+	force 8,loopcnt
+	branch hci_send_event
+
+hci_send_role_change_err:
+	fetch 1,mem_device_option
+	rtnne dvc_op_hci
+	force 0,temp
+	nbranch hci_send_role_change_err_slave,master
+	force 1,temp
+hci_send_role_change_err_slave:
+	fetch 1,mem_device_option
+	rtnne dvc_op_hci
+	force HCI_EVENT_ROLE_CHANGE,queue
+	call hci_get_payload_ptr
+	force 0x35,pdata
+	istore 1,contwu
+	call hci_write_plap
+	istoret 1,contwu
+	force 8,loopcnt
+	branch hci_send_event
+
+hci_send_name:	/* queue is error code */
+	set0 mark_ext_patch,mark
+	bpatch patch1d_6,mem_patch1d
+	fetch 1,mem_device_option
+	rtnne dvc_op_hci
+	call hci_get_packet_ptr
+	setarg 0xff07
+	istore 2,contwu
+	deposit queue
+	istore 1,contwu
+	call hci_write_plap
+	arg mem_tmp_buffer,contr
+	force 248,loopcnt
+hci_read_remote_name_loop:
+	ifetch 1,contr
+	istore 1,contwu
+	loop hci_read_remote_name_loop
+	force 0xff,loopcnt
+	branch hci_send_event_raw
+
+hci_send_num_complete_packets:
+	set0 mark_ext_patch,mark
+	bpatch patch1d_7,mem_patch1d
+	fetch 1,mem_device_option
+	rtnne dvc_op_hci
+	hfetch 1,core_uart_txitems
+	nrtn blank
+	fetch 1,mem_op
+	rtnbit0 op_pkt_comp
+	set0 op_pkt_comp,pdata
+	store 1,mem_op
+	call hci_get_payload_ptr
+	force 1,pdata
+	istore 1,contwu
+	call hci_write_handle
+	force 1,pdata
+	istore 2,contwu
+	force HCI_EVENT_NUM_COMPLETED_PACKETS,queue
+	force 5,loopcnt
+	branch hci_send_event
+
+
+
+hci_send_auth_complete:
+	set0 mark_ext_patch,mark
+	bpatch patch1e_0,mem_patch1e
+	fetch 1,mem_device_option
+	rtnne dvc_op_hci
+	call hci_write_handle3
+	force HCI_EVENT_AUTHENTICATION_COMPLETE,queue
+	force 3,loopcnt
+	branch hci_send_event
+
+
+	/* temp is connection handle */
+hci_send_disconn_complete:
+	set0 mark_ext_patch,mark
+	bpatch patch1e_1,mem_patch1e
+	fetch 1,mem_device_option
+	rtnne dvc_op_hci
+	call hci_get_payload_ptr
+	force 0,pdata
+	istore 1,contwu
+	istoret 2,contwu
+	fetch 1,mem_hci_disconn_reason
+	istore 1,contwu
+	force HCI_EVENT_DISCONNECTION_COMPLETE,queue
+	force 4,loopcnt
+	branch hci_send_event
+
+
+hci_send_le_adv_report_event:
+	set0 mark_ext_patch,mark
+	bpatch patch1e_2,mem_patch1e
+	fetch 1,mem_device_option
+	rtnne dvc_op_hci,pdata
+	call hci_get_payload_ptr
+	setarg 0x0102//HCI_LE_SUBEVENT_ADV_REPORT + report number
+	istore 2,contwu
+	fetcht 1,mem_le_rxbuf
+	and temp,0xf,pdata//PDU type
+	istore 1,contwu
+	copy rega,pdata//advertiser address type
+	istore 1,contwu
+	fetcht 1,mem_le_rxbuf+1//payload length
+	increase -6,temp//data_len = payload length -6;
+	fetch 6,mem_le_rxbuf+2 //advertiser address
+	istore 6,contwu
+	istoret 1,contwu//data_len
+	copy temp,loopcnt 
+	call uart_copy_tx_bytes //copy adv data
+	setarg 127// RSSI not available
+	istore 1,contwu
+	copy temp,loopcnt
+	add loopcnt,12,loopcnt //payload_len = data_len + 12;
+	force HCI_EVENT_LE_META_EVENT,queue
+	branch hci_send_event
+	
+hci_send_le_conn_complete:
+	set0 mark_ext_patch,mark
+	bpatch patch1e_3,mem_patch1e
+	fetch 1,mem_device_option
+	rtnne dvc_op_hci,pdata
+	call hci_get_payload_ptr
+	setarg HCI_LE_SUBEVENT_CONN_COMPLETE
+	istore 1,contwu
+	istoret 1,contwu //status
+	fetch 1,mem_le_conn_handle
+	istore 2,contwu//handle
+	fetch 1,mem_le_mode
+	rshift pdata,pdata
+	setflip 0,pdata
+	istore 1,contwu//role:0 master,1 slave
+	fetch 1,mem_le_conn_peer_addr_type
+	istore 1,contwu//peer addr & type
+	fetch 6,mem_le_plap
+	istore 6,contwu
+	fetch 2,mem_le_conn_interval// interval & latency & super to
+	istore 2,contwu// interval & latency & super to
+	fetch 2,mem_le_slave_latency
+	istore 2,contwu
+	fetch 2,mem_le_superto
+	istore 2,contwu
+	fetch 1,mem_le_peer_sca
+	istore 1,contwu//Master_Clock_Accuracy
+	force HCI_EVENT_LE_META_EVENT,queue
+	arg 19,loopcnt
+	branch hci_send_event
+
+
+	/* temp is mode */	
+hci_send_mode_change:
+	set0 mark_ext_patch,mark
+	bpatch patch1e_4,mem_patch1e
+	fetch 1,mem_device_option
+	rtnne dvc_op_hci
+	//storet 1,mem_lpm_mode
+	call hci_get_payload_ptr
+	call hci_write_handle3
+	istoret 1,contwu
+	fetch 2,mem_tsniff
+	rshift pdata,pdata
+	istore 2,contwu
+	force 6,loopcnt
+	force HCI_EVENT_MODE_CHANGE,queue
+	branch hci_send_event
+	
+	/* temp is status,hansdle of sco on hci is 0xe00 */
+hci_send_sco_complete:
+	set0 mark_ext_patch,mark
+	bpatch patch1e_5,mem_patch1e
+	fetch 1,mem_device_option
+	rtnne dvc_op_hci
+	set0 mark_ext_patch,mark
+	bpatch patch1e_6,mem_patch1e
+	call hci_get_payload_ptr
+	istoret 1,contwu
+	setarg 0xe00
+	istore 2,contwu
+	call hci_write_plap
+	force 0,pdata
+	bmark1 mark_esco,hci_send_esco
+	force 0,pdata
+	istore 7,contwu
+	branch hci_send_sco_cont
+hci_send_esco:
+	fetch 1,mem_device_option
+	rtnne dvc_op_hci
+	setarg 0x020602
+	istore 3,contwu
+	setarg 30
+	istore 2,contwu
+	setarg 30
+	istore 2,contwu
+hci_send_sco_cont:	
+	fetch 1,mem_device_option
+	rtnne dvc_op_hci
+	fetch 1,mem_air_mode
+	istore 1,contwu
+	force HCI_EVENT_SCO_CONNECTION_COMPLETE,queue
+	force 17,loopcnt
+	branch hci_send_event
+
+
+hci_command_status:
+	set0 mark_ext_patch,mark
+	bpatch patch1e_7,mem_patch1e
+	call hci_get_payload_ptr
+	setarg 0x100
+	istore 2,contwu
+	deposit alarm
+	istore 2,contwu
+	force 4,loopcnt
+	force HCI_EVENT_COMMAND_STATUS,queue
+	branch hci_send_event
+	
+hci_command_status_err:
+	set0 mark_ext_patch,mark
+	bpatch patch1f_0,mem_patch1f
+	call hci_get_payload_ptr
+	deposit rega	/*err type in rega*/
+	istore 1,contwu
+	setarg 0x01
+	istore 1,contwu
+	deposit alarm
+	istore 2,contwu
+	force 4,loopcnt
+	force HCI_EVENT_COMMAND_STATUS,queue
+	branch hci_send_event
+	
+hci_normal_reply:
+	set0 mark_ext_patch,mark
+	bpatch patch1f_1,mem_patch1f
+	force 4,loopcnt
+hci_command_complete:	/* loopcnt is hci length */
+	call hci_get_payload_ptr
+	force 0x1,pdata
+	istore 1,contwu
+	deposit alarm
+	istore 3,contwu
+	force HCI_EVENT_COMMAND_COMPLETE,queue
+hci_send_event:		/* queue:event code, loopcnt: length */
+	set0 mark_ext_patch,mark
+	bpatch patch1f_2,mem_patch1f
+	call hci_get_packet_ptr
+	deposit queue
+	istore 1,contwu
+	deposit loopcnt
+	istore 1,contwu
+hci_send_event_raw:
+	set1 mark_h5tx_rp,mark
+	force 5,queue
+	increase 2,loopcnt
+hci_send_packet:
+	call hci_check_bcsp_protocol
+	branch bcsp_send_packet,true
+	branch h4_send_packet_event
+
+hci_send_commu_ready_event:
+	force HCI_EVENT_VENDOR_SPECIFIC,queue
+	call hci_get_payload_ptr
+	setarg HCI_VENDOR_EVENT_COMMU_READY
+	istore 1,contwu
+	force 1,loopcnt
+	branch hci_send_event
+
+
+hci_write_plap:
+	fetch 6,mem_plap
+	istore 6,contwu
+	rtn
+
+hci_write_handle3:
+	call hci_get_payload_ptr
+	force 0,pdata
+	istore 1,contwu
+hci_write_handle:
+	fetch 1,mem_conn_handle
+	istore 2,contwu
+	rtn
+
+hci_get_cmd_complete_ptr:
+	force 12,contwu
+	branch hci_get_tx_ptr
+
+hci_get_payload_ptr:
+	force 8,contwu
+	branch hci_get_tx_ptr
+
+hci_get_packet_ptr:
+	force 6,contwu
+hci_get_tx_ptr:
+	call hci_check_bcsp_protocol
+	branch bcsp_get_tx_ptr,true
+	branch h4_get_tx_ptr
+
+uart_copy_tx_bytes:
+	deposit loopcnt
+	rtn blank
+uart_copy_tx_bytes_loop:
+	ifetch 1,contr
+	istore 1,contwu
+	loop uart_copy_tx_bytes_loop
+	rtn
+
+uart_copy_rx_bytes:
+	deposit loopcnt
+	rtn blank
+uart_copy_rx_bytes_loop:
+	ifetch 1,contru
+	istore 1,contw
+	loop uart_copy_rx_bytes_loop
+	rtn
+
+uart_write_bytes:
+	istore 1,contwu
+	rshift8 pdata,pdata
+	loop uart_write_bytes
+	rtn
+	
+
+calc_tx_crc16:
+	pulse crc16
+	enable enable_crc
+crcloop:
+	ifetch 1,contwu
+	inject bucket,8
+	loop crcloop
+	enable enable_parity
+	inject bucket,16
+	disable enable_parity
+	disable enable_crc
+	disable crc16
+	byteswap pdata,pdata
+	rtn
+
+stop_loop:
+	nop 1
+	hjam 1,0x8203
+	branch stop_loop
+
+
+
+process_cmd:
+	set0 mark_ext_patch,mark
+	bpatch patch1f_3,mem_patch1f
+	fetch 1,mem_hci_cmd
+	rtn blank
+	fetch 1,mem_lmo_opcode2
+	nrtn blank
+	call cmd_check_plap
+	nbranch process_cmd_conn_handle,zero
+	fetch 1,mem_hci_cmd
+	beq hci_cmd_remote_name_req,cmd_namereq
+	beq hci_cmd_pair,cmd_pair
+	beq hci_cmd_nopair,cmd_nopair
+	beq hci_cmd_linkkey,cmd_has_key
+	beq hci_cmd_nokey,cmd_no_key
+	beq hci_cmd_reject_conn,cmd_disconn
+	beq hci_cmd_role_switch,cmd_role_switch
+	beq hci_cmd_accept_conn,cmd_accept_conn
+	beq hci_cmd_accept_with_switch,cmd_accept_with_switch
+	beq hci_cmd_detach,cmd_detach
+	beq hci_cmd_in_sniff,cmd_in_sniff
+	beq hci_cmd_exit_sniff,cmd_exit_sniff
+process_cmd_conn_handle:
+	set0 mark_ext_patch,mark
+	bpatch patch1f_4,mem_patch1f
+	call cmd_check_handle
+	nrtn blank
+	fetch 1,mem_hci_cmd
+	beq hci_cmd_auth,cmd_auth
+	beq hci_cmd_startencrypt,cmd_start_encrypt
+	beq hci_cmd_stopencrypt,cmd_stop_encrypt
+	beq hci_cmd_setup_sco,cmd_setup_sco
+	beq hci_cmd_disconn_sco,cmd_disconn_sco
+	beq hci_cmd_accept_sco_conn,cmd_accept_sco_conn
+	beq hci_cmd_remote_feature_req,cmd_feature_req
+	beq hci_cmd_remote_ext_features_req,cmd_ext_feature_req
+	beq hci_cmd_remote_version_req,cmd_version_req
+	beq hci_cmd_role_discovery,cmd_role_discovery
+	beq hci_cmd_io_cap,cmd_io_cap
+	rtnne hci_cmd_disconn
+	call lmp_disconnect
+cmd_exit:
+	jam 0,mem_hci_cmd
+	rtn
+
+cmd_check_plap:
+	fetch 6,mem_hci_plap
+	fetcht 6,mem_plap
+	isub temp,null
+	rtn
+
+	/* return pdata=0 if handle match */
+cmd_check_handle:
+	fetch 1,mem_hci_conn_handle
+	fetcht 1,mem_conn_handle
+	isub temp,pdata
+	rtn
+
+cmd_accept_conn:
+	jam LMP_ACCEPTED,mem_lmo_opcode2
+	jam LMP_HOST_CONNECTION_REQ,mem_lmi_opcode2
+	call tid_set_reply
+	branch cmd_exit
+
+cmd_accept_with_switch:
+	branch cmd_accept_sco_conn,master
+	set1 mark_accept_switch,mark
+cmd_role_switch:
+	jam LMP_SLOT_OFFSET,mem_lmo_opcode2
+	set1 mark_switch_initiated,mark
+	nbranch cmd_exit,master
+	jam LMP_SWITCH_REQ ,mem_lmo_opcode2
+	fetch 1,mem_connection_options
+	set0 CONNECTION_SWITCH,pdata
+	store 1,mem_connection_options
+	branch cmd_exit
+
+	
+cmd_namereq:
+	jam LMP_NAME_REQ,mem_lmo_opcode2
+	jam 0,mem_name_offset
+	branch cmd_exit
+	
+//enable ssp master sm
+cmd_ssp:
+	jam SP_FLAG_COMMIT,mem_master_sp_flag
+	jam SP_MASTER_STAT_START_SKIP,mem_master_sp_state
+	branch cmd_exit
+	
+cmd_pair:
+	fetch 1,mem_op
+	bbit1 op_inrand_req,cmd_pair_passive
+	call tid_initiate
+	jam LMP_IN_RAND,mem_lmo_opcode2
+	branch cmd_exit
+cmd_pair_passive:
+	set0 op_inrand_req,pdata
+	store 1,mem_op
+	call lmp_accept_inrand
+	setarg 0
+	setflag master,smap_lmptid,pdata		
+	store 1,mem_lmo_tid2
+	branch cmd_exit
+	
+cmd_nopair:
+	jam PAIRING_NOT_ALLOWED,mem_disconn_reason_send
+	jam LMP_DETACH,mem_lmo_opcode2
+	fetch 1,mem_state
+	bbit1 state_inconn,cmd_exit
+	force HCI_ERROR_PAIRING_NOT_ALLOWED,temp
+	call hci_send_connection_error
+	branch cmd_exit
+
+	
+cmd_has_key:
+	call linkkey_set
+	fetch 1,mem_op
+	bbit1 op_auth_req,cmd_send_aurand
+	bbit1 op_send_sres,cmd_send_sres
+	bbit1 op_inrand_req,cmd_pair_passive
+	branch cmd_exit
+cmd_send_sres:
+	set0 op_send_sres,pdata
+	store 1,mem_op
+	jam LMP_SRES,mem_lmo_opcode2
+	branch cmd_exit
+
+cmd_no_key:
+	fetch 1,mem_op
+	bbit1 op_send_sres,cmd_no_key_reject
+	call hci_send_pincode_req
+	branch cmd_exit
+cmd_no_key_reject:
+	set0 op_send_sres,pdata
+	store 1,mem_op
+	jam LMP_NOT_ACCEPTED,mem_lmo_opcode2
+	jam LMP_AU_RAND,mem_lmi_opcode2
+	jam KEY_MISSING,mem_lmo_reason2
+	branch cmd_exit
+	
+
+cmd_auth:
+	fetch 1,mem_op
+	set1 op_auth_req,pdata
+	store 1,mem_op
+	fetch 1,mem_state
+	bbit1 state_linkkey,cmd_auth_sendaurand
+	call hci_send_linkkey_req
+	branch cmd_exit
+
+cmd_send_aurand:
+cmd_auth_sendaurand:
+	call tid_initiate
+	jam LMP_AU_RAND,mem_lmo_opcode2
+	branch cmd_exit
+
+cmd_start_encrypt:
+	jam LMP_ENCRYPTION_MODE_REQ,mem_lmo_opcode2
+	branch cmd_exit
+
+cmd_stop_encrypt:
+	jam LMP_ENCRYPTION_MODE_REQ ,mem_lmo_opcode2
+	branch cmd_exit
+
+cmd_feature_req:
+	set0 mark_ext_patch,mark
+	bpatch patch1f_5,mem_patch1f
+	jam LMP_FEATURES_REQ,mem_lmo_opcode2
+	jam hci_cmd_wait_remote_feature,mem_hci_cmd
+	rtn
+	
+cmd_ext_feature_req:	
+	jam LMP_EXT_FEATURES_REQ,mem_lmo_opcode2
+	jam hci_cmd_wait_remote_ext_feature,mem_hci_cmd
+	rtn
+	
+cmd_version_req:
+	jam LMP_VERSION_REQ,mem_lmo_opcode2
+	branch cmd_exit
+	
+cmd_in_sniff:
+	jam LMP_SNIFF_REQ,mem_lmo_opcode2
+	arg mem_sniff_payload,contw
+	setarg 0
+	isolate1 27,clke_bt
+	setflag true,1,pdata		/* use init 2 if bit27 of clke is 1 */
+	istore 1,contw	
+	setarg 0	/* dsniff */
+	istore 2,contw
+	fetch 2,mem_sniff_param_interval	/* tsniff */
+	istore 2,contw
+	fetch 1,mem_sniff_param_attempt	/* attempt */
+	istore 2,contw
+	fetch 1,mem_sniff_param_timeout	/* timeout */
+	istore 2,contw
+	branch cmd_exit
+	
+cmd_exit_sniff:
+	jam LMP_UNSNIFF_REQ,mem_lmo_opcode2
+	branch cmd_exit
+	
+cmd_setup_sco:
+	call new_conn_handle
+	store 1,mem_sco_handle
+	fetch 1,mem_conn_handle
+	store 1,mem_sco_asso_handle
+	jam LMP_SCO_LINK_REQ,mem_lmo_opcode2
+	set1 mark_esco,mark
+	jam LMP_EXT_ESCO_LINK_REQ,mem_lmo_opcode2
+	branch cmd_exit
+
+cmd_disconn:
+	call lmp_disconnect
+	branch cmd_exit
+	
+cmd_disconn_sco:
+	jam LMP_REMOVE_SCO_LINK_REQ,mem_lmo_opcode2
+	bmark0 mark_esco,cmd_exit
+	jam LMP_EXT_REMOVE_ESCO_REQ,mem_lmo_opcode2
+	branch cmd_exit
+	
+cmd_accept_sco_conn:
+	branch cmd_accept_sco_conn_master,master
+	jam LMP_ACCEPTED,mem_lmo_opcode2
+	jam LMP_SCO_LINK_REQ,mem_lmi_opcode2
+	bmark0 mark_esco,cmd_exit
+	fetch 1,mem_esco_type
+	bne type_hv3,parse_lmpext_esco_link_req_change_param //ev3 only
+	jam LMP_EXT_ACCEPTED ,mem_lmo_opcode2
+	jam LMP_EXT_ESCO_LINK_REQ,mem_lmi_opcode2
+	branch cmd_exit	
+cmd_accept_sco_conn_master:
+	call new_conn_handle
+	store 1,mem_sco_handle
+	fetch 1,mem_conn_handle
+	store 1,mem_sco_asso_handle
+	jam LMP_SCO_LINK_REQ,mem_lmo_opcode2
+	bmark0 mark_esco,cmd_exit
+	branch parse_lmpext_esco_link_req_change_param	
+
+
+cmd_role_discovery:
+	call hci_get_cmd_complete_ptr
+	call hci_write_handle
+	force 0,pdata
+	nsetflag master,0,pdata
+	istore 1,contwu
+	force 7,loopcnt
+	arg 0x809,alarm				/* role discovery */
+	call hci_command_complete
+	branch cmd_exit
+	
+cmd_io_cap:
+	jam LMP_IO_CAP_RES,mem_lmo_opcode2 
+	branch cmd_exit
+	
+cmd_detach:
+	jam LMP_DETACH,mem_lmo_opcode2
+	jam OTHER_END_TERMINATED,mem_disconn_reason_send
+	branch cmd_exit
+
+
+
+// below  merged from bt_hci_patch
+process_hci_patch:
+	jam 0, mem_check_sum
+	//check the packet id
+	//if the packid is not mem_ucode_id_local + 1 then send nak with packe number
+	ifetch 1,contru
+	store 1, mem_ucode_id_remote
+	call hci_ucode_checksum_add
+	
+	call push_stack
+	fetch 1, mem_ucode_id_remote
+	copy pdata, temp
+	fetch 1, mem_ucode_id_local
+	increase 1,pdata
+	icompare 0xff,temp
+	nbranch hci_nak_ucode_with_stack, true
+	store 1, mem_ucode_id_local
+	call pop_stack
+	
+	ifetch 1,contru
+	beq 0x01,hci_enable_ucode_load
+	beq 0x02,process_hci_ucode
+	beq 0x03,hci_disable_ucode_load
+	beq 0x05,process_hci_n_sched_data
+	beq 0x06,hci_write_register
+	beq 0x07,hci_read_register
+	beq 0x08,hci_enable_ucode
+	beq 0x09,hci_soft_branch
+	rtn
+hci_ucode_checksum_add:
+	copy pdata, temp
+	call push_stack
+	fetch 1, mem_check_sum
+	iadd temp,pdata
+	store 1, mem_check_sum
+	branch pop_stack
+
+
+hci_ack_ucode:
+	force 1,pdata
+	call uart_send_byte
+	fetch 1, mem_ucode_id_local
+	branch uart_send_byte
+	
+hci_nak_ucode_with_stack:
+	call pop_stack
+	branch hci_nak_ucode_ucode_id
+hci_nak_ucode:
+	fetch 1, mem_ucode_id_local
+	increase -1,pdata
+	store 1, mem_ucode_id_local
+hci_nak_ucode_ucode_id:	
+	force 0,pdata
+	call uart_send_byte
+	fetch 1, mem_ucode_id_local
+	branch uart_send_byte
+	
+hci_write_register:
+	call hci_ucode_checksum_add
+	ifetch 1,contru
+	store 1, mem_ucode_temp
+	call hci_ucode_checksum_add
+	ifetch 1,contru
+	lshift8 pdata, contw
+	call hci_ucode_checksum_add
+	fetch 1, mem_ucode_temp
+	iadd contw, contw
+	ifetch 1,contru //data in pdata
+	istore 1, contw //store the data in register
+	call hci_ucode_checksum_add
+	ifetch 1,contru
+	call hci_ucode_checksum_add
+	fetch 1, mem_check_sum
+	bne 0xff, hci_nak_ucode
+	branch hci_ack_ucode
+	
+hci_read_register:
+	call hci_ucode_checksum_add
+	ifetch 1,contru
+	store 1, mem_ucode_temp
+	call hci_ucode_checksum_add
+	ifetch 1,contru
+	store 1, mem_ucode_temp1
+	call hci_ucode_checksum_add
+	ifetch 1,contru
+	call hci_ucode_checksum_add
+	fetch 1, mem_check_sum
+	bne 0xff, hci_nak_ucode
+	
+	fetch 1, mem_ucode_temp1
+	lshift8 pdata, temp
+	fetch 1, mem_ucode_temp
+	iadd temp,contru
+	ifetch 1, contru
+	store 1, mem_ucode_temp
+hci_read_register_ack:	
+	force 1,pdata
+	call uart_send_byte
+	fetch 1, mem_ucode_temp //hardware register
+	call uart_send_byte
+	jam 0xff, mem_ucode_id_local
+	rtn
+	
+hci_enable_ucode:
+	call hci_ucode_checksum_add
+	ifetch 1,contru
+	call hci_ucode_checksum_add
+	fetch 1, mem_check_sum
+	bne 0xff, hci_nak_ucode
+	branch hci_ack_ucode
+
+process_hci_ucode:
+	call hci_ucode_checksum_add
+	ifetch 1,contru
+	hstore 1,core_ucode_low
+	call hci_ucode_checksum_add
+	ifetch 1,contru
+	set1 7,pdata
+	hstore 1,core_ucode_ctrl
+	set0 7,pdata
+	call hci_ucode_checksum_add
+	ifetch 1,contru //length
+	copy pdata,loopcnt
+	call hci_ucode_checksum_add
+write_ucode_loop:
+	ifetch 1,contru
+	hstore 1, core_ucode_data
+	call hci_ucode_checksum_add
+	loop write_ucode_loop
+	ifetch 1,contru
+	call hci_ucode_checksum_add
+	fetch 1, mem_check_sum
+	bne 0xff, hci_nak_ucode
+	branch hci_ack_ucode
+		
+process_hci_n_sched_data:
+	call hci_ucode_checksum_add
+	ifetch 1,contru
+	store 1, mem_ucode_temp
+	call hci_ucode_checksum_add
+	ifetch 1,contru
+	lshift8 pdata, contw
+	call hci_ucode_checksum_add
+	fetch 1, mem_ucode_temp
+	iadd contw, contw
+	ifetch 1,contru
+	iforce loopcnt
+	call hci_ucode_checksum_add
+process_hci_n_sched_loop:
+	ifetch 1,contru
+	istore 1,contw
+	call hci_ucode_checksum_add
+	loop process_hci_n_sched_loop
+	ifetch 1,contru
+	call hci_ucode_checksum_add
+	fetch 1, mem_check_sum
+	bne 0xff, hci_nak_ucode
+	branch hci_ack_ucode
+
+
+
+hci_enable_ucode_load:
+	call hci_ucode_checksum_add
+	ifetch 1,contru
+	call hci_ucode_checksum_add
+	fetch 1, mem_check_sum
+	bne 0xff, hci_nak_ucode
+	hjam 0x80,core_ucode_ctrl
+	branch hci_ack_ucode
+
+hci_disable_ucode_load:
+	call hci_ucode_checksum_add
+	ifetch 1,contru
+	call hci_ucode_checksum_add
+	fetch 1, mem_check_sum
+	bne 0xff, hci_nak_ucode
+	hjam 0,core_ucode_ctrl
+	branch hci_ack_ucode
+	
+hci_soft_branch:
+	call hci_ucode_checksum_add
+	ifetch 1,contru
+	call hci_ucode_checksum_add
+	fetch 1, mem_check_sum
+	bne 0xff, hci_nak_ucode
+	call hci_ack_ucode
+	branch soft_reset
+
+
+hci_idle_dispatch:
+	call gpio_check_uart_state
+	rtn true
+	arg UART_WAKEUP_RX,temp
+	call gpio_get_bit
+	nbranch uart_wake_up,true
+	jam HCI_RX_WAKE,mem_hci_lt_rx_state
+	rtn
+uart_wake_up:
+	fetch 1,mem_hci_lt_rx_state
+	rtnne HCI_RX_WAKE
+	call hci_exit_lpm
+	branch hci_send_commu_ready_event
+	
+	
Index: btkb/program/hid.prog
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/btkb/program/hid.prog	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/btkb/program/hid.prog	(working copy)
@@ -0,0 +1,88 @@
+/**
+* the following API is to send the HID data
+* 
+*/
+
+/**
+* the following API is to process the hid  rx data
+* 
+*/
+//handle the hid data
+
+hid_rx_process:
+	set1 mark_ext_patch,mark
+	bpatch patch33_4,mem_patch33
+	fetch 2,mem_l2cap_payload_ptr
+	copy pdata,contr
+	ifetch 1,contr
+	and pdata,0x0f,temp
+	rshift4 pdata,pdata //hidtype
+	beq HID_TYPE_SET_IDLE,hid_rx_process_handshake
+	beq HID_TYPE_SET_PROTOCOL,hid_rx_process_handshake
+	beq HID_TYPE_DATA,hid_rx_process_data
+	beq HID_TYPE_SET_REPORT,hid_rx_process_set_report
+	beq HID_TYPE_CONTROL,hid_rx_process_hid_control
+	rtn
+
+hid_rx_process_hid_control:
+	copy temp,pdata
+	beq HID_CONTROL_P_VIRTUALCABLEUNPLUG,hid_rx_process_virtual_cable_unplug
+	beq HID_CONTROL_P_SUSPEND,hid_rx_process_suspend
+	rtn
+	
+hid_rx_process_virtual_cable_unplug:
+	jam BT_EVT_VIRTUAL_CABLE_UNPLUG,mem_fifo_temp
+	call ui_ipc_send_event
+	fetch 1,mem_device_option
+	rtnne dvc_op_mouse,pdata
+	copy temp,pdata
+	beq HID_CONTROL_P_VIRTUALCABLEUNPLUG,eeprom_erase_reconn_info
+	rtn
+hid_rx_process_suspend:
+	rtn
+
+hid_rx_process_set_report:
+	arg 0x01,rega
+	call hid_malloc_tx_buff
+	fetch 2,mem_hid_ctrl_remote_cid
+	istore 2,contw
+	setarg 0x00
+	istore 1,contw
+	rtn
+
+hid_rx_process_handshake:
+	arg 1,rega//payload length
+	call hid_malloc_tx_buff
+	fetch 2,mem_hid_ctrl_remote_cid
+	istore 2,contw
+	setarg 0
+	istore 1,contw
+	jam 1,mem_ui_data_txbuff_length
+	fetch 1,mem_hid_control_state
+	set1 l2cap_channel_hid_handshake_done
+	store 1,mem_hid_control_state
+hid_handshake_event:
+	jam BT_EVT_HID_HANDSHAKE,mem_fifo_temp
+	branch ui_ipc_send_event
+
+hid_rx_process_data:
+	ifetch 1,contr
+	beq HID_REPORT_ID_KB,hid_rx_process_data_hid_kb
+	rtn
+
+hid_rx_process_data_hid_kb:
+	copy contr,rega
+	fetch 1,mem_device_option
+	rtnne dvc_op_kb,pdata
+	copy rega,contr
+	branch kb_process_kb_report
+	
+hid_malloc_tx_buff:
+	call l2cap_malloc
+	copy rega,temp
+	storet 1,mem_ui_data_txbuff_length
+	copy pdata,contw
+	copy rega,pdata
+	istore 2,contw //hid payload length
+	rtn
+
Index: btkb/program/ir.prog
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/btkb/program/ir.prog	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/btkb/program/ir.prog	(working copy)
@@ -0,0 +1,293 @@
+
+ifdef COMPILE_IR
+le_ir_init:
+	setarg le_ir
+	store 2,mem_cb_le_process	
+	setarg le_ir_wcb
+	store 2,mem_cb_att_write
+	call eeprom_load_reconn_info
+	call le_init_att
+	hjam 158,core_pwm_ncnt0
+	hjam 8,core_gpio_sel1
+	hjam 5,core_gpio_out1
+	setarg -1
+	set0 1,pdata
+	set0 21,pdata
+	hstore 4,core_gpio_oe0
+	hjam 2,core_gpio_pu0
+	rtn wake
+	jam 1,mem_le_adv_enable
+	rtn
+
+
+le_ir_wcb:
+	ifetch 1,rega
+	store 1,mem_ir_cmd
+	beq ircmd_write_pulse,le_ir_write_pulse
+	beq ircmd_write_seq,le_ir_write_seq
+	beq ircmd_write_next,le_ir_write_next
+	beq ircmd_screen_on,le_ir_screen_on
+	beq ircmd_screen_off,le_ir_screen_off
+	rtnne ircmd_play
+	ifetch 1,contr
+	store 1,mem_ir_play_count
+	rtn
+
+le_ir_write_pulse:
+	arg mem_ir_pulse_zero,contw
+	branch le_ir_write
+	
+le_ir_write_seq:
+	arg mem_ir_sequence_len,contw
+	branch le_ir_write
+
+le_ir_write_next:
+	fetch 2,mem_ir_ptr
+	iforce contw
+
+le_ir_write:
+	arg 19,loopcnt
+	call memcpy
+	deposit contw
+	store 2,mem_ir_ptr
+	jam 0,mem_ir_cmd
+	rtn
+
+
+	
+le_ir:
+	fetch 1,mem_ir_cmd
+	beq ircmd_record,le_ir_start_record
+	beq ircmd_play,le_ir_play
+	beq ircmd_report_pulse,le_ir_report
+	beq ircmd_report_seq,le_ir_report
+	beq ircmd_report_raw,le_ir_report
+	beq ircmd_test_play,le_ir_play
+	beq ircmd_test_rec,le_ir_rec
+	rtn
+
+le_ir_screen_on:
+	jam 0,mem_lpm_mult
+	jam 0,mem_ir_cmd
+	rtn
+le_ir_screen_off:
+	jam 30,mem_lpm_mult
+	jam 0,mem_ir_cmd
+	rtn
+
+	
+
+le_ir_rec:
+	jam 0,mem_ir_cmd
+	arg 0xfffff,stop_watch
+	call ir_record
+	rtn
+	
+le_ir_next_anchor:
+	fetcht 2,mem_le_tsniff
+	iadd temp,pdata
+	store 4,mem_le_anchor
+le_ir_start_record:
+	fetch 4,mem_le_anchor
+	isub clke_bt,pdata
+	nbranch le_ir_next_anchor,positive
+	rshift pdata,stop_watch
+	call ir_record
+	rtn blank
+	jam ircmd_report_raw,mem_ir_cmd
+	arg mem_ir_record,temp
+	storet 2,mem_ir_ptr
+	
+le_ir_report:
+	call le_xtype_fifo_is_full
+	nrtn blank
+	jam notify_handle,mem_le_notify_handle
+	jam ATTOP_HANDLE_VALUE_NOTIFICATION,mem_fifo_temp
+	call le_xtype_fifo_in
+	fetch 2,mem_le_notify_attr_start
+	iforce contw
+	fetch 2,mem_ir_ptr
+	iforce contr
+	arg 20,loopcnt
+	call memcpy
+	deposit contr
+	store 2,mem_ir_ptr
+	fetch 2,mem_ir_report_len
+	increase -20,pdata
+	store 2,mem_ir_report_len
+	rtn positive
+	jam 0,mem_ir_cmd
+	rtn
+
+
+le_ir_play:
+	fetch 1,mem_ir_play_count
+	call ir_play
+	jam 0,mem_ir_cmd
+	rtn
+
+
+ir_record:
+	call ir_receive
+	setarg mem_ir_record
+	isub contw,pdata
+	sub pdata,0,pdata
+	store 2,mem_ir_report_len
+	rtn
+
+
+	/* stop_watch is sync timeout */
+ir_receive:
+	disable swfine
+	arg mem_ir_record,contw
+ir_receive_waitsync:
+	rtn timeout
+	hfetch 1,core_gpio_in+2
+	bbit0 5,ir_receive_waitsync
+	copy clkn,temp
+	arg 0x80,loopcnt
+	call memset0
+	arg mem_ir_record,contw
+	arg 0x0,regc
+ir_receive_loop:
+	arg 180,stop_watch
+ir_receive_waitedge:
+	rtn timeout
+	hfetch 1,core_gpio_in+2
+	ixor regc,pdata
+	bbit1 5,ir_receive_waitedge
+	copy clkn,pdata
+	iforce alarm
+	call clk_diff_rt
+	sub pdata,0xff,null
+	branch ir_receive_waitedge,positive
+	isolate0 5,regc
+	setflag true,23,pdata
+	istore 3,contw
+	rshift8 contw,pdata
+	rtneq mem_ir_record_max
+	copy alarm,temp
+	xor_into 0x20,regc	
+	branch ir_receive_loop
+
+
+	/* return 0xff if all sequence is sent */
+ir_get_next_seq:
+	branch ir_get_next_seq_saved,user
+	branch ir_get_next_encoded,user2
+ir_get_next_seq_fetch:
+	arg mem_ir_sequence,temp
+	fetch 1,mem_ir_sequence_len
+	iadd temp,pdata
+	isub rega,null
+	branch ir_get_next_seq_exit,zero
+	ifetch 1,rega
+	copy contr,rega
+	bbit0 7,ir_get_next_cont
+	enable user2
+	and pdata,0x7f,regb
+	lshift3 rega,rega
+	branch ir_get_next_encoded
+ir_get_next_cont:
+	rshift4 pdata,debug
+	and_into 0xf,pdata
+	isub debug,null
+	rtn zero
+	enable user
+	rtn
+ir_get_next_seq_saved:
+	deposit debug
+	disable user
+	rtn
+ir_get_next_encoded:
+	deposit regb
+	branch ir_get_next_encoded_end,blank
+	and rega,0x7,queue
+	rshift3 rega,contr
+	ifetch 1,contr
+	increase 1,rega
+	increase -1,regb
+	qisolate0 pdata
+	fetch 1,mem_ir_pulse_zero
+	branch ir_get_next_cont,true
+	fetch 1,mem_ir_pulse_one
+	branch ir_get_next_cont
+ir_get_next_encoded_end:
+	disable user2
+	increase 7,rega
+	rshift3 rega,rega
+	branch ir_get_next_seq_fetch
+ir_get_next_seq_exit:
+	setarg 0xff
+	rtn
+	
+	/* pdata=index of pulse */
+ir_get_pulse:
+	lshift pdata,contr
+	iadd contr,pdata
+	arg mem_ir_pulses,contr
+	iadd contr,contr
+	ifetch 3,contr
+	rtn
+	
+	/* pdata=number of seqs to send */
+ir_play:
+	enable swfine
+	iforce loopcnt
+ir_play_nloop:
+	disable user
+	disable user2
+	arg mem_ir_sequence,rega
+ir_play_loop:
+	call ir_get_next_seq
+	beq 0xff,ir_play_end
+	call ir_get_pulse
+	bbit0 23,ir_play_silence
+	set0 23,pdata
+	hjam 158,core_pwm_pcnt0
+ir_play_silence:
+	iforce stop_watch
+	until null,timeout
+	hjam 0,core_pwm_pcnt0
+	branch ir_play_loop
+ir_play_end:
+	loop ir_play_nloop
+	rtn
+
+
+
+else
+le_ir_init:
+le_ir_wcb:
+le_ir_write_pulse:
+le_ir_write_seq:
+le_ir_write_next:
+le_ir_write:
+le_ir:
+le_ir_screen_on:
+le_ir_screen_off:
+le_ir_rec:
+le_ir_next_anchor:
+le_ir_start_record:
+le_ir_report:
+le_ir_play:
+ir_record:
+ir_receive:
+ir_receive_waitsync:
+ir_receive_loop:
+ir_receive_waitedge:
+ir_get_next_seq:
+ir_get_next_seq_fetch:
+ir_get_next_cont:
+ir_get_next_seq_saved:
+ir_get_next_encoded:
+ir_get_next_encoded_end:
+ir_get_next_seq_exit:
+ir_get_pulse:
+ir_play:
+ir_play_nloop:
+ir_play_loop:
+ir_play_silence:
+ir_play_end:
+	branch assert
+endif
Index: btkb/program/keyboard.prog
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/btkb/program/keyboard.prog	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/btkb/program/keyboard.prog	(working copy)
@@ -0,0 +1,591 @@
+
+ifdef COMPILE_KEYBOARD
+
+le_kb_init:
+	call kb_init_common
+	setarg kb_process_idle
+	store 2,mem_cb_idle_process
+	setarg kb_send_process
+	store 2,mem_cb_bt_process
+	setarg kb_process_bb_event
+	store 2,mem_cb_bb_event_process
+	setarg kb_process_lpm_before
+	store 2,mem_cb_before_lpm
+	setarg kb_discovery_timeout_sleep
+	store 2,mem_cb_discovry_timeout
+    	setarg kb_before_hibernate
+	store 2,mem_cb_before_hibernate
+	setarg kb_wakeup_check
+	store 2,mem_cb_check_wakelock
+	rtn wake	
+	
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BTN_DOWN,app_bt_start_discovery_short
+	call app_check_reconn_target
+	branch kb_start_discovery,blank
+	call app_bt_stop_discovery
+	branch app_bt_start_reconnect
+
+	
+kb_init:	
+	call kb_init_common
+	setarg kb_process_idle
+	store 2,mem_cb_idle_process
+	setarg kb_send_process
+	store 2,mem_cb_bt_process
+	setarg kb_process_bb_event
+	store 2,mem_cb_bb_event_process
+	setarg kb_process_lpm_before
+	store 2,mem_cb_before_lpm
+	setarg kb_discovery_timeout_sleep
+	store 2,mem_cb_discovry_timeout
+    	setarg kb_before_hibernate
+	store 2,mem_cb_before_hibernate
+	setarg kb_wakeup_check
+	store 2,mem_cb_check_wakelock
+	rtn wake	
+		
+	jam 0,mem_sp_flag
+	jam 0,mem_master_sp_flag
+
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BTN_DOWN,app_bt_start_discovery_short
+	call app_check_reconn_target
+	branch kb_start_discovery,blank
+	call app_bt_stop_discovery
+	branch app_bt_start_reconnect
+
+	
+	
+kb_init_common:
+	set1 mark_ext_patch,mark
+	bpatch patch36_6,mem_patch36
+//	call kb_init_before_hibernate
+	fetch 1,0x8140
+	branch assert,blank
+	hjam 0,core_gpio_oe0
+	hjam 0xff,core_gpio_pu0
+
+	hjam 0xff,core_gpio_oe1
+	hjam 0xff,core_gpio_oe2
+	hfetch 1,core_gpio_oe3
+	or_into 0x0f,pdata
+	hstore 1,core_gpio_oe3
+
+	hjam 0x00,core_gpio_sel
+	hjam 0x00,core_gpio_sel1
+	hjam 0xff,core_gpio_key0
+	hjam 0xFf,core_gpio_key1
+	hfetch 1,core_gpio_key2
+	or_into 0x03,pdata
+	hstore 1,core_gpio_key2
+	hjam 0x00,core_kscn_rowmask
+	setarg KB_KSCAN_COL_1
+	lshift3 pdata,pdata
+	add pdata,KB_KSCAN_ROW_1,pdata
+	hstore 1,core_kscn_rctc
+
+	hfetch 1,core_config
+	set1 2,pdata //set keyscan clk source
+	hstore 1,core_config
+	hfetch 1, core_clkoff+1
+	set0 1,pdata
+	hstore 1,core_clkoff+1
+	hjam 0xd,core_kscn_ksctrl
+	hjam 0xd3,core_kscn_m_debounce
+	hjam 0,core_kscn_scancycle_timer_l
+	hjam 0x31,core_kscn_scancycle_timer_h
+	call lpm_disable_exen_output
+	fetcht 1,mem_led_cap_gpio
+ 	call gpio_config_output
+	fetcht 1,mem_led_num_gpio
+ 	call gpio_config_output
+	fetcht 1,mem_led_scl_gpio
+ 	call gpio_config_output
+	rtn
+
+kb_process_kb_report:
+	set1 mark_ext_patch,mark
+	bpatch patch36_7,mem_patch36
+	ifetch 1,contr
+	copy pdata,rega
+	fetcht 1,mem_led_num_gpio
+	isolate1 KB_NUM_LOCK_SELECTED,rega
+	call gpio_out_flag
+	fetcht 1,mem_led_cap_gpio
+	isolate1 KB_CAPS_LOCK_SELECTED,rega
+	call gpio_out_flag
+	fetcht 1,mem_led_scl_gpio
+	isolate1 KB_SCROLL_LOCK_SELECTED ,rega
+	call gpio_out_flag
+	jam 1,mem_kb_rcv_led_data
+	rtn
+
+
+kb_send_process:
+//	call kb_wakeup_check
+	call kb_kscan_check_if_empty
+	nrtn user
+	nrtn user2
+//	call app_lpm_wake_auto_lock
+	fetch 1,mem_pincode_state
+	beq pincode_state_wait_pincode,kb_pincode
+	fetch 1,mem_hid_interrupt_state
+	rtnne 0x3f
+
+	arg 10,rega
+	call hid_malloc_tx_buff
+	fetch 2,mem_hid_int_remote_cid
+	istore 2,contw
+	setarg 0x01a1
+	istore 2,contw
+	fetch 8,mem_kb_state
+	istore 8,contw
+	rtn
+	
+kb_pincode:
+	fetcht 1,mem_pin_length
+	setarg mem_pin
+	iadd temp,contw
+	fetch 1,mem_kb_report_data
+	branch kb_pincode_rtn,blank
+	beq KB_KCODE_BKSP,kb_pincode_bksp
+	bne KB_KCODE_ENTER,kb_pincode_data
+	storet 1,mem_pin_length
+	branch app_bt_set_pincode
+	
+kb_pincode_rtn:
+	storet 1,mem_pin_length
+	rtn
+kb_pincode_bksp:
+	fetch 1,mem_pin_length
+	rtn blank
+	increase -1,pdata
+	store 1,mem_pin_length
+	arg mem_pin,contw
+	iadd contw,contw
+	setarg 0
+	istore 1,contw
+	enable user2
+	branch kb_send_pin
+kb_pincode_data:
+	sub pdata,KB_KCODE_1_M1,null
+	rtn positive
+	arg 0x30,temp
+	sub pdata,KB_KCODE_0,null
+	nrtn positive
+	branch kb_pincode_0,zero
+	arg KB_KCODE_1_M1,temp
+	isub temp,temp
+	or_into 0x30,temp
+kb_pincode_0:
+	istoret 1,contw
+	fetch 1,mem_pin_length
+	increase 1,pdata
+	store 1,mem_pin_length
+	disable user2
+	branch kb_send_pin
+
+kb_send_pin:
+	fetch 2,mem_hid_int_remote_cid
+	rtn blank
+	arg 3,rega
+	call hid_malloc_tx_buff
+	fetch 2,mem_hid_int_remote_cid
+	istore 2,contw
+	setarg 0xffa1
+	istore 2,contw
+	setarg 0
+	setflag user2,0,pdata
+	istore 1,contw
+	rtn
+
+
+	
+kb_kscan_check_if_empty:
+	disable user
+	disable user2
+	hfetch 1,core_kscn_kstat
+	rtnbit1 KB_KSCAN_STAT_EMPTY
+
+kb_kscan_check_ghost:
+	hfetch 1,core_kscn_event_num
+	bbit1 KB_KSCAN_KEY_EVENT_STAT,kb_kscan_process_event
+	hfetch 1,core_kscn_kstat
+	bbit0 KB_KSCAN_STAT_GHOST,kb_kscan_process_event
+	hfetch 1,core_kscn_event
+	branch kb_kscan_check_if_empty
+		
+kb_kscan_process_event:
+	enable user
+	enable user2
+	hfetch 1,core_kscn_event_num
+	isolate0 kb_KSCAN_KEY_EVENT_STAT,pdata
+	hfetch 1,core_kscn_event
+	arg mem_kb_map,contr
+	iadd contr,contr
+	ifetch 1,contr
+	bbit1 7,kb_kscan_read_statekey
+	nbranch kb_kscan_release_a_key_data,true	
+	disable user2
+	iforce temp
+	fetch 1,mem_kb_keys
+	sub pdata,4,null
+	nrtn positive
+	copy pdata,rega
+	arg 3,loopcnt
+	arg mem_kb_report_data,contr
+kb_kscan_check_report_data:
+	ifetch 1,contr
+	isub temp,null
+	branch kb_kscan_check_if_empty,zero
+	loop kb_kscan_check_report_data
+kb_kscan_store_a_key_data:
+	copy rega,pdata
+	arg mem_kb_report_data,contw
+	iadd contw,contw
+	istoret 1,contw
+	increase 1,pdata
+	store 1,mem_kb_keys
+ 	hfetch 1,core_kscn_event_num
+	rshift3 pdata,pdata
+	nbranch kb_kscan_check_nextevent, blank
+	branch kb_kscan_prepare_send
+
+kb_kscan_check_nextevent:
+	increase -1,pdata
+	branch kb_kscan_prepare_send,zero
+	hfetch 1,core_kscn_event_num
+	and_into 0x01,pdata
+	beq KB_KSCAN_KEY_PRESS,kb_kscan_check_if_empty                 // key pressed
+	beq KB_KSCAN_KEY_RELEASE,kb_kscan_prepare_send              // key release
+	rtn
+kb_kscan_prepare_send:	
+	enable user2
+	rtn
+	
+kb_kscan_release_a_key_data:
+	and pdata,0xff,temp
+	fetch 1,mem_kb_keys
+	rtn blank
+	iforce loopcnt
+	arg mem_kb_report_data,contr
+kb_kscan_find_same_key_data:
+	ifetch 1,contr
+	isub temp,null
+	branch kb_kscan_release_foundkey,zero
+	loop kb_kscan_find_same_key_data
+	rtn
+kb_kscan_release_foundkey:
+	add contr,-1,contw
+	call memcpy
+	fetch 1,mem_kb_keys
+	increase -1,pdata
+	store 1,mem_kb_keys
+	hfetch 1,core_kscn_event_num
+	rshift3 pdata,pdata
+	nbranch kb_kscan_check_nextevent2, blank
+	rtn
+
+kb_kscan_check_nextevent2:
+ 	hfetch 1,core_kscn_event_num
+	and_into 0x01,pdata
+	beq KB_KSCAN_KEY_PRESS,kb_kscan_prepare_send
+	beq KB_KSCAN_KEY_RELEASE,kb_kscan_check_if_empty
+	rtn
+	
+kb_kscan_read_statekey:
+	and pdata,7,queue
+	fetch 1,mem_kb_state
+	qsetflag true,pdata
+	store 1,mem_kb_state
+	rtn
+
+kb_clear_keys:
+	setarg 0
+	store 8,mem_kb_state
+	store 1,mem_kb_keys
+	rtn
+	
+kb_clean_kscan_fifo:
+	hfetch 1,core_kscn_event_num
+	hfetch 1,core_kscn_event
+	hfetch 1,core_kscn_kstat
+	bbit0 KB_KSCAN_STAT_EMPTY,kb_clean_kscan_fifo
+	setarg 0xff
+	enable user
+	rtn
+	
+le_keyboard:
+	fetcht 2,mem_le_notify_handle
+	call le_att_check_notification_enable
+	rtnbit0 0
+	fetch 1,mem_le_switch_send_data
+	rtnbit0 0
+	call le_xtype_fifo_is_full
+	nrtn blank
+	call kb_kscan_check_if_empty
+	nrtn user
+	nrtn user2
+le_slave_keyboard_send_data:
+	call app_lpm_wake_auto_lock
+	jam 2,mem_lpm_mult
+	fetcht 2,mem_le_notify_handle
+	call le_att_get_handle_ptr
+	add contr,1,contw
+	fetch 8,mem_kb_state
+	istore 8,contw
+	jam ATTOP_HANDLE_VALUE_NOTIFICATION,mem_fifo_temp
+	call le_xtype_fifo_in
+	fetch 1,mem_le_op
+	bbit1 op_disconn,loop
+	rtn
+le_keyboard_process_bb_event:
+	copy regc,pdata
+	beq BT_EVT_BUTTON_LONG_PRESSED,le_keyboard_bb_event_discovery_btn
+	//beq BT_EVT_100MS_TIMER,le_keyboard_bb_event_hud_ms
+	beq BT_EVT_LE_CONNECTED,le_kb_connected
+	beq BT_EVT_LE_WRITE_REQUEST,le_kb_bb_event_write_request
+	beq BT_EVT_LE_ENC_INFO,le_kb_bb_event_enc_info
+	beq BT_EVT_REMOTE_UNSNIFF,app_start_auto_sniff
+	rtn
+le_kb_bb_event_enc_info:
+le_kb_bb_event_write_request:
+	call app_lpm_mult_enable
+	branch app_ble_start_write
+le_kb_connected:
+	call kb_clean_kscan_fifo
+	branch kb_clear_keys
+
+le_keyboard_bb_event_discovery_btn:
+	call le_clean_att_list_handle_enable
+	call app_ble_disconnect
+	call app_ble_start_adv
+	branch app_led_start_blink
+
+le_keyboard_bb_event_hud_ms:
+	fetch 1,mem_le_led_on_time
+	rtn blank
+	increase -1,pdata
+	store 1,mem_le_led_on_time
+	nrtn blank
+	fetch 1,mem_le_adv_type
+	rtn blank
+	branch app_led_off
+
+
+kb_process_idle:
+	branch kb_pairing_button_check
+
+
+kb_wakeup_check:	
+	hfetch 3,core_gpio_in
+	copy pdata,regb
+	hfetch 1,core_gpio_in+3
+	and_into 0x0f,pdata
+	lshift16 pdata,pdata
+	lshift8 pdata,pdata
+	ior regb,pdata
+	fetcht 4,mem_kb_fast_wake_last
+	isub temp,pdata
+	rtn blank
+	arg 0xbb,regb
+ 	branch app_lpm_wake_auto_lock
+
+
+kb_pairing_button_check:
+	fetch 1,mem_scan_mode// rtn when scan_mode =03 
+	nrtn blank
+	fetch 1,mem_app_handshake_flag//rtn when handshake success 
+	nrtn blank
+	fetch 1,mem_ui_button_timer// rtn when timer >3s
+	rtn blank
+	fetch 1,mem_ui_button_last_state//rtn when pairing button press
+	nrtn blank
+	branch app_enter_hibernate
+	
+kb_process_bb_event:
+	copy regc,pdata
+	beq BT_EVT_HID_CONNECTED,kb_hid_connected
+	beq BT_EVT_PINCODE_REQ,kb_process_pincode
+	beq BT_EVT_HID_CONNECTED,kb_bt_hid_handshake
+	beq BT_EVT_BUTTON_LONG_PRESSED,kb_bb_event_discovery_btn
+	beq BT_EVT_REMOTE_UNSNIFF,app_start_auto_sniff
+	beq BT_EVT_BB_CONNECTED,kb_stop_discovery
+	beq BT_EVT_BB_DISCONNECTED,kb_bb_disconnected
+//	beq BT_EVT_100MS_TIMER,kb_bb_event_100ms
+	beq BT_EVT_RECONN_FAILED,kb_bb_event_reconn_failed
+	beq BT_EVT_RECONN_PAGE_TIMEOUT,kb_bb_event_reconn_failed
+	and pdata,0x0f,temp
+	and_into BT_EVT_TIMER_MASK,pdata
+	beq BT_EVT_TIMER_INIT,kb_bb_event_timer
+	rtn
+
+kb_bb_event_timer:
+	set1 mark_ext_patch,mark
+	bpatch patch37_0,mem_patch37
+	storet 1,mem_app_evt_timer_count
+kb_bb_event_100ms_loop:
+	fetch 1,mem_app_evt_timer_count
+	rtn blank
+	increase -1,pdata
+	store 1,mem_app_evt_timer_count
+//	call app_lpm_wake_auto_lock_timer
+	call kb_check_hid_handshake_timer	
+	branch kb_bb_event_100ms_loop
+
+kb_bb_event_reconn_failed:
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BTN_DOWN,kb_start_discovery
+	branch app_bb_hibernate
+
+
+kb_bb_disconnected:
+	set1 mark_ext_patch,mark
+	bpatch patch37_1,mem_patch37
+	call kb_bb_discon_clear_stack
+	fetch APP_DISC_RSN_SIZE,mem_app_disconn_reason
+ifdef DEBUG_LIGHT_STATE
+	store 1,0x4800
+endif
+//	bbit1 APP_DISC_BLE,mouse4_0_event_bb_disconn
+	bbit1 APP_DISC_BY_BUTTON,app_disconn_reason_clear
+	bbit1 APP_DISC_AFTER_PAIRING,kb_event_light_state_pairing
+	bbit1 APP_DISC_AFTER_RECONN,kb_event_light_state_reconn
+	branch kb_start_discovery
+kb_bb_discon_clear_stack:
+	jam 0,mem_link_key_exists
+	jam 0,mem_ltk_exists
+	rtn
+
+kb_event_light_state_pairing:
+	bbit1 APP_DISC_AFTER_HANDSHAKE,app_bb_hibernate
+	bbit1 APP_DISC_AFTER_SNIFF,app_bb_hibernate
+	branch kb_start_discovery
+kb_event_light_state_reconn:
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BTN_DOWN,kb_start_discovery
+	branch app_bb_hibernate
+
+
+	
+kb_check_hid_handshake_timer:
+	fetch 1,mem_hid_handshake_timer_count
+	rtn blank
+	increase -1,pdata
+	store 1,mem_hid_handshake_timer_count
+	nrtn blank
+	branch kb_bt_hid_handshake
+
+
+kb_bb_event_discovery_btn:
+	call kb_3_0_bb_event_discovery_btn
+	branch kb_start_discovery
+
+kb_3_0_bb_event_discovery_btn:
+	set1 mark_ext_patch,mark
+	bpatch patch37_2,mem_patch37
+	fetch 2,mem_ui_state_map
+	isolate1 UI_STATE_BT_RECONNECT,pdata
+	call app_bt_reconnect_cancel,true
+	fetch 2,mem_discovery_timeout
+	store 2,mem_discovery_timeout_timer_count	
+	fetch APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	set1 APP_DISC_BY_BUTTON,pdata
+	store APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BT_CONNECTED,app_bt_disconnect
+	rtn
+
+	
+kb_stop_discovery:
+	call app_bt_stop_discovery
+	branch app_led_stop_blink
+
+kb_start_discovery:
+	call app_bt_start_discovery
+	branch app_led_start_blink
+	
+kb_discovery_timeout_sleep:	
+	branch app_enter_hibernate
+	
+kb_process_pincode:
+	jam 0,mem_pin_length
+	rtn
+
+
+kb_before_hibernate:
+
+kb_process_lpm_before:
+	hjam 0x00,core_gpio_key0
+	hjam 0x00,core_gpio_key1
+	hfetch 1,core_gpio_key2
+	and_into 0xf0,pdata
+	hstore 1,core_gpio_key2
+	setarg 0x00
+	store 4,mem_gpio_wakeup_high
+	setarg 0xff
+	fetcht 1,mem_ui_button_gpio
+	copy temp,queue
+	qset1 pdata
+	store 4,mem_gpio_wakeup_low
+	rtn
+
+kb_hid_connected:
+ 	setarg HID_HANDSHAKE_TIMEOUT
+	store 1,mem_hid_handshake_timer_count
+	call kb_clean_kscan_fifo
+	//fetch 1,core_kscn_ksctrl
+	//set1 5,pdata
+	//store 1,core_kscn_ksctrl
+	branch kb_clear_keys
+kb_bt_hid_handshake:
+	set1 mark_ext_patch,mark
+	bpatch patch37_3,mem_patch37
+	jam APP_HANDSHAKE_DONE,mem_app_handshake_flag
+	call app_lpm_mult_enable
+	call app_bt_store_reconn_info
+//	jam BT_KB_MODE_STATE,mem_mouse_mode_state
+	setarg 0
+	store 2,mem_discovery_timeout_timer_count
+	store 1,mem_hid_handshake_timer_count
+	branch app_bt_enter_sniff
+
+
+	
+else
+kb_init:
+kb_process_kb_report:
+kb_send_process:
+kb_pincode:
+kb_pincode_rtn:
+kb_pincode_bksp:
+kb_pincode_data:
+kb_pincode_0:
+kb_send_pin:
+kb_check_num:
+kb_read_a_key:
+kb_read_a_key2:
+kb_read_a_key3:
+kb_read_release:
+kb_read_loop:
+kb_read_foundkey:
+kb_read_statekey:
+kb_clean_kscan_fifo:
+le_keyboard:
+le_slave_keyboard_send_data:
+kb_process_idle:
+kb_process_bb_event:
+kb_bb_event_discovery_off:
+kb_wakeup_int:
+kb_wakeup_check:
+kb_discovery_timeout_sleep:
+le_keyboard_process_bb_event:
+le_kb_connected:
+le_keyboard_bb_event_discovery_btn:
+le_keyboard_bb_event_hud_ms:
+le_kb_init:
+le_kb_bb_event_write_request:
+le_kb_bb_event_enc_info:
+	branch assert
+endif
Index: btkb/program/l2cap.prog
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/btkb/program/l2cap.prog	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/btkb/program/l2cap.prog	(working copy)
@@ -0,0 +1,1878 @@
+/************************************/
+/*initialize L2CAP related variables*/
+/************************************/
+l2cap_init:
+	branch l2cap_init_wake,wake
+l2cap_init_work:
+	setarg mem_l2cap_xmem_end
+	arg mem_l2cap_xmem_start,contw
+	isub contw,loopcnt
+	call clear_mem
+l2cap_init_wake:	
+	set1 mark_ext_patch,mark
+	bpatch patch22_6,mem_patch22
+	setarg mem_sdp_mem_end
+	arg mem_sdp_mem_start,contw
+	isub contw,loopcnt
+	call clear_mem
+	setarg mem_l2cap_mem_end
+	arg mem_l2cap_mem_start,contw
+	isub contw,loopcnt
+	call clear_mem
+	branch l2cap_lpm_load_txbuf
+	
+process_rx_l2cap_pkt:
+	set1 mark_ext_patch,mark
+	bpatch patch22_7,mem_patch22
+	copy contr,temp
+	//call l2cap_malloc_is_fifo_full
+	//nrtn blank
+	copy temp,contr
+	ifetch 2,contr
+	store 2,mem_l2cap_rx_pkt_length
+	ifetch 2,contr
+	store 2,mem_l2cap_rx_cid
+	deposit contr
+	store 2,mem_l2cap_payload_ptr
+	fetch 1,memui_reconnect_mode
+	beq NO_RECONNECTION,l2cap_rx_multiplexing
+	branch ml2cap_rx_multiplexing
+
+l2cap_rx_multiplexing:
+	set1 mark_ext_patch,mark
+	bpatch patch23_0,mem_patch23
+	fetch 2, mem_l2cap_rx_pkt_length
+	branch l2cap_rx_reset_state,blank
+	fetch 1,mem_l2cap_rx_cid
+	beq L2CAP_signal_channel,l2cap_call_proc_signal
+l2cap_rx_multiplexing0:
+	beq L2CAP_SDP_channel,l2cap_call_proc_sdp
+	beq L2CAP_RFCOMM_channel,l2cap_call_proc_rfcomm
+	beq L2CAP_HID_Control_channel,l2cap_call_proc_hid
+	beq L2CAP_HID_Interrupt_channel,l2cap_call_proc_hid
+	branch l2cap_rx_reset_state
+
+l2cap_call_proc_signal:
+	call l2cap_malloc_is_fifo_full
+	nrtn blank
+	jam 0,mem_l2cap_pending_item
+l2cap_call_proc_signal0:
+	call l2cap_malloc_signal_channel
+	call l2cap_process_signal_pkt
+	fetcht 2,mem_l2cap_signal_tx_length
+	branch l2cap_call_proc_no_reply,blank
+	call l2cap_get_signal_tx_buff
+	fetch 2,mem_l2cap_signal_tx_length
+	istore 2,contw
+	force L2CAP_signal_channel,pdata
+	istore 2,contw
+	branch l2cap_rx_reset_state
+	
+l2cap_call_proc_sigal_pending:
+	fetch 1,mem_device_option
+	rtneq dvc_op_hci
+	fetch 1,mem_l2cap_pending_item
+	rtn blank
+	copy pdata,rega
+	fetch 4,mem_l2cap_sdpres_delay_time
+	arg 0x100,temp
+	iadd temp,temp
+	copy clkn_bt,pdata
+	isub temp,null
+	nrtn positive
+	jam 0,mem_l2cap_pending_item
+	copy rega,pdata
+	beq L2CAP_SDP_channel,l2cap_sdp_conn_succ
+	branch assert
+l2cap_sdp_conn_succ:
+	call l2cap_malloc_signal_channel
+	call restore_l2cap_req_param
+	call l2cap_get_signal_tx_payload
+	call save_cont_pointers
+	call send_connection_sdp_res
+	call l2cap_get_signal_tx_buff
+	//fetch 2,mem_l2cap_signal_tx_length
+	setarg 0x000c
+	istore 2,contw
+	force L2CAP_signal_channel,pdata
+	istore 2,contw
+	branch l2cap_rx_reset_state
+	
+l2cap_call_proc_sdp:
+	call l2cap_malloc_is_fifo_empty
+	nrtn blank// not process this packet until fifo empty
+	call l2cap_malloc_sdp_channel
+	call sdp_process
+	call l2cap_get_sdp_tx_buff
+	fetch 2,mem_sdp_tx_pkt_length
+	branch l2cap_call_proc_no_reply,blank
+	istore 2,contw
+	fetch 2,mem_sdp_remote_cid
+	istore 2,contw
+	branch l2cap_rx_reset_state
+
+l2cap_call_proc_hid:
+	call hid_rx_process
+	branch l2cap_rx_reset_state
+
+l2cap_call_proc_rfcomm:
+	set1 mark_ext_patch,mark
+	bpatch patch23_1,mem_patch23
+	jam RFCOMM_MALLOC_SUCCEED,mem_rfcomm_malloc_fail_flag
+	call rfcomm_rx_process
+	fetch 1,mem_rfcomm_malloc_fail_flag
+	rtneq RFCOMM_MALLOC_FAIL
+	branch l2cap_rx_reset_state
+l2cap_call_proc_no_reply:
+	call l2cap_malloc_discard
+	//fall through
+l2cap_rx_reset_state:
+	setarg 0
+	store 2,mem_l2cap_rx_pkt_length
+	store 2,mem_l2cap_rx_cid
+	jam L2CAP_RX_DONE,mem_l2cap_rx_done
+	rtn
+/* To process one L2CAP signalling pkt consisting of 1 or more signalling commands.	*/
+l2cap_process_signal_pkt:
+	set1 mark_ext_patch,mark
+	bpatch patch23_2,mem_patch23
+	call l2cap_get_signal_tx_payload
+	force 0,regb
+	fetch 2,mem_l2cap_rx_pkt_length
+	copy pdata,regc
+	fetch 2,mem_l2cap_payload_ptr
+	iforce contr
+l2cap_process_signal_pkt_loop:
+	call l2cap_process_one_signal
+	deposit regc
+	increase -4,regc
+	increase -4,pdata
+	nbranch l2cap_process_signal_pkt_loop,blank
+	copy regb,pdata
+	store 2,mem_l2cap_signal_tx_length
+	rtn
+
+l2cap_process_one_signal:
+	set1 mark_ext_patch,mark
+	bpatch patch23_3,mem_patch23
+	ifetch 1,contr
+	beq signal_cmd_reject,l2cap_proc_signal_cmd_reject
+	beq signal_connect_req,l2cap_proc_signal_connect_req
+	beq signal_connect_rsp,l2cap_proc_signal_connect_rsp
+	beq signal_config_req,l2cap_proc_signal_config_req
+	beq signal_config_rsp,l2cap_proc_signal_config_rsp
+	beq signal_disconnect_req,l2cap_proc_signal_disconnect_req
+	beq signal_disconnect_rsp,l2cap_proc_signal_disconnect_rsp
+	beq signal_echo_req,l2cap_proc_signal_echo_req
+	beq signal_echo_rsp,l2cap_proc_signal_echo_rsp
+	beq signal_info_req,l2cap_proc_signal_info_req
+	beq signal_info_rsp,l2cap_proc_signal_info_rsp
+	call l2cap_reject_command
+l2cap_process_one_signal_rtn:
+	rtn
+
+l2cap_proc_signal_info_req:
+	ifetch 1,contr //IDs
+	copy pdata,queue
+	ifetch 2,contr //length
+	copy pdata,rega
+	copy regc,pdata
+	isub rega,regc
+	copy rega,pdata
+	iadd contr,contr
+	setarg 0x0b
+	istore 1,contw
+	copy queue,pdata
+	istore 1, contw
+	force 0x0008, pdata
+	istore 2, contw
+	force 0x0002, pdata
+	istore 2, contw
+	force 0x0000, pdata
+	istore 2, contw
+	force 0x0400,pdata
+	istore 2,contw
+	force 0x0000,pdata
+	istore 2,contw
+	force 12,pdata
+	iadd regb,regb
+	branch l2cap_process_one_signal_rtn
+
+ml2cap_proc_signal_info_req:
+	ifetch 1,contr //IDs
+	copy pdata,queue
+	ifetch 2,contr //length
+	copy pdata,rega
+	copy regc,pdata
+	isub rega,regc
+	copy rega,pdata
+	iadd contr,contr
+	call l2cap_get_signal_tx_payload
+	setarg 0x0b
+	istore 1,contw
+	copy queue,pdata
+	istore 1, contw
+	force 0x0008, pdata
+	istore 2, contw
+	force 0x0002, pdata
+	istore 2, contw
+	force 0x0000, pdata
+	istore 2, contw
+	force 0x0400,pdata
+	istore 2,contw
+	force 0x0000,pdata
+	istore 2,contw
+	force 12,pdata
+	iadd regb,regb
+	//call scheduler_start_upper_sm
+	branch l2cap_process_one_signal_rtn
+
+
+/*  Respond to the command reject signal sent from the remote BD.   */
+l2cap_proc_signal_cmd_reject:
+	ifetch 1,contr
+	copy pdata,queue
+	ifetch 2,contr
+	copy pdata,rega
+	iadd contr,contr
+	copy regc,pdata
+	isub rega,regc
+l2cap_proc_signal_cmd_reject_rtn:
+	branch l2cap_process_one_signal_rtn
+/* Respond to an L2CAP connection request from remote BD. (generate a connection_rsp)	*/
+l2cap_proc_signal_connect_req:
+	call save_cont_pointers
+	//fetch 6,mem_inquiry_bd_addr
+  	//store 6,mem_master_paged_bd_addr
+  	call load_cont_pointers
+	arg 0,debug
+	ifetch 1,contr
+	copy pdata,queue
+	ifetch 2,contr
+	copy pdata,rega
+	ifetch 2,contr
+	copy pdata,temp //PSM
+	ifetch 2,contr
+	copy pdata,timeup
+	copy temp,pdata
+	beq PSM_SDP,l2cap_proc_signal_connect_req_sdp
+	beq PSM_RFCOMM,l2cap_proc_signal_connect_req_rfcomm
+	beq PSM_HID_control,l2cap_proc_signal_connect_req_hid_ctrl
+	beq PSM_HID_interrupt,l2cap_proc_signal_connect_req_hid_int
+	call l2cap_reject_command
+	branch l2cap_proc_signal_connect_req_rtn
+
+l2cap_proc_signal_connect_req_sdp:
+	call save_cont_pointers
+	arg L2CAP_SDP_channel,temp
+	fetch 2,mem_sdp_remote_cid
+	nbranch already_connected,blank
+	copy timeup,pdata
+	store 2,mem_sdp_remote_cid
+	copy clkn_bt,pdata
+	store 4,mem_l2cap_sdpres_delay_time
+	call store_l2cap_req_param
+	branch  send_connection_pending
+
+store_l2cap_req_param:
+	storet 2,mem_psm
+	deposit timeup
+	store 2,mem_scid
+	deposit rega
+	store 2,mem_cmd_length
+	deposit regb
+	store 2,mem_tt2
+	deposit regc
+	store 2,mem_tt3
+	deposit queue
+	store 2,mem_id
+	rtn
+
+restore_l2cap_req_param:
+	fetcht 2,mem_psm
+	fetch 2,mem_scid
+	copy pdata,timeup
+	fetch 2,mem_cmd_length
+	copy pdata,rega
+	fetch 2,mem_tt2
+	copy pdata,regb
+	fetch 2,mem_tt3
+	copy pdata,regc
+	fetch 2,mem_id
+	copy pdata,queue
+	rtn
+
+l2cap_proc_signal_connect_req_rfcomm:
+	call save_cont_pointers
+	setarg L2CAP_RFCOMM_channel
+	arg L2CAP_RFCOMM_channel,temp
+	fetch 2,mem_RFCOMM_remote_CID
+	nbranch already_connected,blank
+	copy timeup,pdata
+	store 2,mem_RFCOMM_remote_CID
+	fetch 1,mem_rfcomm_state
+	set1 L2CAP_CHANNEL_STATE_CONN_REQ,pdata
+	set1 L2CAP_CHANNEL_STATE_CONN_RES,pdata
+	store 1,mem_rfcomm_state
+	branch send_connection_res
+l2cap_proc_signal_connect_req_hid_ctrl:
+	call save_cont_pointers
+	arg L2CAP_HID_Control_channel,temp
+	fetch 2,mem_hid_ctrl_remote_cid
+	nbranch already_connected,blank
+	copy timeup,pdata
+	store 2,mem_hid_ctrl_remote_cid
+	fetch 1,mem_hid_control_state
+	set1 L2CAP_CHANNEL_STATE_CONN_REQ,pdata
+	set1 L2CAP_CHANNEL_STATE_CONN_RES,pdata
+	store 1,mem_hid_control_state
+	branch send_connection_res
+l2cap_proc_signal_connect_req_hid_int:
+	call save_cont_pointers
+	deposit clke
+	arg L2CAP_HID_Interrupt_channel,temp
+	fetch 2,mem_hid_int_remote_cid
+	nbranch already_connected,blank
+	copy timeup,pdata
+	store 2,mem_hid_int_remote_cid
+	fetch 1,mem_hid_interrupt_state
+	set1 L2CAP_CHANNEL_STATE_CONN_REQ,pdata
+	set1 L2CAP_CHANNEL_STATE_CONN_RES,pdata
+	store 1,mem_hid_interrupt_state
+	branch send_connection_res
+
+send_connection_pending:
+	setarg L2CAP_connect_pending
+	store 2,memL2CAP_T1
+	jam L2CAP_SDP_channel,mem_l2cap_pending_item
+	branch send_connection_res0
+send_connection_sdp_res:
+	fetch 1,mem_sdp_state
+	set1 L2CAP_CHANNEL_STATE_CONN_REQ,pdata
+	set1 L2CAP_CHANNEL_STATE_CONN_RES,pdata
+	store 1,mem_sdp_state
+send_connection_res:
+	setarg L2CAP_connect_successful
+	store 2,memL2CAP_T1
+send_connection_res0:
+	set1 mark_ext_patch,mark
+	bpatch patch23_4,mem_patch23
+	call load_cont_pointers
+	setarg signal_connect_rsp
+	istore 1,contw
+	copy queue,pdata
+	istore 1,contw
+	setarg 0x0008
+	istore 2,contw
+	copy temp,pdata
+	istore 2,contw
+	copy timeup,pdata
+	istore 2,contw
+	fetch 2,memL2CAP_T1
+	beq L2CAP_connect_pending,connect_pending
+	isolate0 0,debug
+	branch connect_suc,true
+	setarg L2CAP_connect_refused_no_resources
+connect_suc:
+	istore 2,contw
+	force 0x0000,pdata
+	istore 2,contw
+	setarg 12
+	branch connect_req_update_byte_counts
+connect_pending:
+	istore 2,contw
+	force 0x0002,pdata
+	istore 2,contw
+	setarg 12
+	branch connect_req_update_byte_counts
+	
+already_connected:
+	set1 0,debug
+	branch send_connection_res
+connect_req_update_byte_counts:
+	iadd regb,regb
+	copy regc,pdata
+	isub rega,regc
+	branch l2cap_proc_signal_connect_req_rtn
+l2cap_proc_signal_connect_req_rtn:
+	branch l2cap_process_one_signal_rtn
+
+l2cap_proc_signal_connect_rsp:
+	ifetch 1,contr //identifier
+	copy pdata,queue
+	ifetch 2,contr //length
+	copy pdata,rega
+	copy regc,pdata
+	isub rega,regc
+	ifetch 2,contr //remote cid
+	copy pdata,timeup
+	ifetch 2,contr //local cid
+	copy pdata,temp
+	setarg L2CAP_SDP_channel
+	isub temp,null
+	branch l2cap_proc_signal_connect_rsp_sdp,zero
+	setarg L2CAP_RFCOMM_channel
+	isub temp,null
+	branch l2cap_proc_signal_connect_rsp_rfcomm,zero
+	setarg L2CAP_HID_Control_channel
+	isub temp,null
+	branch l2cap_proc_signal_connect_rsp_hid_ctrl,zero
+	setarg L2CAP_HID_Interrupt_channel
+	isub temp,null
+	branch l2cap_proc_signal_connect_rsp_hid_int,zero
+	rtn
+
+l2cap_proc_signal_connect_rsp_sdp:
+	copy timeup,pdata
+	store 2,mem_sdp_remote_cid
+	fetch 1,mem_sdp_state
+	set1 L2CAP_CHANNEL_STATE_CONN_RES,pdata
+	store 1,mem_sdp_state
+	branch l2cap_process_one_signal_rtn
+l2cap_proc_signal_connect_rsp_rfcomm:
+	copy timeup,pdata
+	store 2,mem_rfcomm_remote_CID
+	fetch 1,mem_rfcomm_state
+	set1 L2CAP_CHANNEL_STATE_CONN_RES,pdata
+	store 1,mem_rfcomm_state
+	rtn
+l2cap_proc_signal_connect_rsp_hid_int:
+	copy timeup,pdata
+	store 2,mem_hid_ctrl_remote_cid
+	fetch 1,mem_hid_interrupt_state
+	set1 L2CAP_CHANNEL_STATE_CONN_RES,pdata
+	store 1,mem_hid_interrupt_state
+	rtn
+l2cap_proc_signal_connect_rsp_hid_ctrl:
+	copy timeup,pdata
+	store 2,mem_hid_int_remote_cid
+	fetch 1,mem_hid_control_state
+	set1 L2CAP_CHANNEL_STATE_CONN_RES,pdata
+	store 1,mem_hid_control_state
+	rtn
+
+l2cap_proc_signal_config_req:
+	ifetch 1,contr//identifier
+	copy pdata,queue
+	ifetch 2,contr//length
+	copy pdata,rega
+	copy regc,pdata
+	isub rega,regc
+	ifetch 2,contr//dest cid
+	copy pdata,temp
+	copy temp,rega
+	setarg L2CAP_SDP_channel
+	isub temp,null
+	branch l2cap_proc_signal_config_req_sdp,zero
+	setarg L2CAP_RFCOMM_channel
+	isub temp,null
+	branch l2cap_proc_signal_config_req_rfcomm,zero
+	setarg L2CAP_HID_Control_channel
+	isub temp,null
+	branch l2cap_proc_signal_config_req_hid_ctrl,zero
+	setarg L2CAP_HID_Interrupt_channel
+	isub temp,null
+	branch l2cap_proc_signal_config_req_hid_int,zero
+	branch l2cap_reject_command
+	//branch L2CAP_proc_signal_config_req_rtn
+l2cap_proc_signal_config_req_sdp:
+	copy contw, timeup
+	fetch 1,mem_sdp_state
+	set1 L2CAP_CHANNEL_STATE_RCV_CFG_REQ,pdata
+	set1 L2CAP_CHANNEL_STATE_SND_CFG_RES,pdata
+	//set1 L2CAP_CHANNEL_STATE_SND_CFG_REQ,pdata
+	store 1,mem_sdp_state
+	copy timeup,contw
+	arg L2CAP_SDP_channel,timeup
+	fetch 2,mem_sdp_remote_cid
+	copy pdata,temp
+	branch l2cap_send_config_rsp
+l2cap_proc_signal_config_req_hid_ctrl:
+	copy contw, timeup
+	fetch 1,mem_hid_control_state
+	set1 L2CAP_CHANNEL_STATE_RCV_CFG_REQ,pdata
+	set1 L2CAP_CHANNEL_STATE_SND_CFG_RES,pdata
+	//set1 L2CAP_CHANNEL_STATE_SND_CFG_REQ,pdata
+	store 1,mem_hid_control_state
+	copy timeup,contw
+	arg L2CAP_HID_Control_channel,timeup
+	fetch 2,mem_hid_ctrl_remote_cid
+	copy pdata,temp
+	branch l2cap_send_config_rsp
+l2cap_proc_signal_config_req_hid_int:
+	copy contw, timeup
+	fetch 1,mem_hid_interrupt_state
+	set1 L2CAP_CHANNEL_STATE_RCV_CFG_REQ,pdata
+	set1 L2CAP_CHANNEL_STATE_SND_CFG_RES,pdata
+	//set1 L2CAP_CHANNEL_STATE_SND_CFG_REQ,pdata
+	store 1,mem_hid_interrupt_state
+	copy timeup,contw
+	arg L2CAP_HID_Interrupt_channel,timeup
+	fetch 2,mem_hid_int_remote_cid
+	copy pdata,temp
+	branch l2cap_send_config_rsp
+l2cap_proc_signal_config_req_rfcomm:
+	copy contw, timeup
+	fetch 1,mem_rfcomm_state
+	set1 L2CAP_CHANNEL_STATE_RCV_CFG_REQ,pdata
+	set1 L2CAP_CHANNEL_STATE_SND_CFG_RES,pdata
+	//set1 L2CAP_CHANNEL_STATE_SND_CFG_REQ,pdata
+	store 1,mem_rfcomm_state
+//	jam UPPERSM_RP_SDP_CONN,mem_upper_sm_remote_page
+	copy timeup,contw
+	arg L2CAP_RFCOMM_channel,timeup
+	fetch 2,mem_RFCOMM_remote_CID
+	copy pdata,temp
+l2cap_send_config_rsp:
+	set1 mark_ext_patch,mark
+	bpatch patch23_5,mem_patch23
+	setarg  signal_config_rsp
+	istore 1,contw
+	copy queue,pdata
+	istore 1,contw
+	setarg 0x0006
+	istore 2,contw
+	copy temp,pdata
+	istore 2,contw
+	force 0x00,pdata
+	istore 2,contw
+	force L2CAP_config_success,pdata
+	istore 2,contw
+	force 10,pdata
+	iadd regb,regb
+	//copy temp,pdata
+	storet 2,mem_config_req_dest_CID
+	copy queue,pdata
+	store 1,mem_config_identifier
+	force L2CAP_SDP_channel,pdata
+	icompare 0xff,timeup
+	branch l2cap_send_config_rsp_is_sdp,true
+	increase 1,pdata
+l2cap_send_config_rsp_is_sdp:
+	//store 1,mem_send_config_req
+	rtn
+l2cap_check_channel_state:
+	disable user
+	rtnbit1 L2CAP_CHANNEL_STATE_SND_CFG_REQ,pdata
+	rtnbit0 L2CAP_CHANNEL_STATE_CONN_REQ,pdata
+	rtnbit0 L2CAP_CHANNEL_STATE_CONN_RES,pdata
+	set1 L2CAP_CHANNEL_STATE_SND_CFG_REQ,pdata
+	copy contr,contw
+	increase -1,contw
+	istore 1,contw
+	enable user
+	rtn
+l2cap_send_config_req:
+l2cap_send_config_req_sdp:
+	fetch 1,mem_sdp_state
+	call l2cap_check_channel_state
+	nbranch l2cap_send_config_req_rfcomm,user
+	jam L2CAP_SDP_channel,mem_send_config_req
+	fetch 2,mem_sdp_remote_cid
+	store 2,mem_config_req_dest_CID
+	branch l2cap_generate_config_req
+l2cap_send_config_req_rfcomm:
+	fetch 1,mem_rfcomm_state
+	call l2cap_check_channel_state
+	nbranch l2cap_send_config_req_hid_ctrl,user
+	jam L2CAP_RFCOMM_channel,mem_send_config_req
+	fetch 2,mem_RFCOMM_remote_CID
+	store 2,mem_config_req_dest_CID
+	branch l2cap_generate_config_req
+l2cap_send_config_req_hid_ctrl:
+	fetch 1,mem_hid_control_state
+	call l2cap_check_channel_state
+	nbranch l2cap_send_config_req_hid_int,user
+	jam L2CAP_HID_Control_channel,mem_send_config_req
+	fetch 2,mem_hid_ctrl_remote_cid
+	store 2,mem_config_req_dest_CID
+	branch l2cap_generate_config_req
+l2cap_send_config_req_hid_int:
+	fetch 1,mem_hid_interrupt_state
+	call l2cap_check_channel_state
+	nrtn user//End of sending config req
+	jam L2CAP_HID_Interrupt_channel,mem_send_config_req
+	fetch 2,mem_hid_int_remote_cid
+	store 2,mem_config_req_dest_CID
+	//branch L2CAP_generate_config_req
+
+l2cap_generate_config_req:
+	set1 mark_ext_patch,mark
+	bpatch patch23_6,mem_patch23
+	call l2cap_get_req_id
+	call l2cap_malloc_signal_channel
+	force 0,regb
+	call l2cap_get_signal_tx_payload
+	force signal_config_req,pdata
+	istore 1,contw
+	fetch 1,mem_ML2CAP_comm_id
+	istore 1,contw
+	setarg 0x0008
+	istore 2,contw
+	fetch 2,mem_config_req_dest_CID
+	istore 2,contw
+	setarg 0x0000
+	istore 2,contw
+	force 1,pdata
+	istore 1,contw
+	force 2,pdata
+	istore 1,contw
+	fetch 1,mem_send_config_req
+	beq L2CAP_RFCOMM_channel,l2cap_generate_config_req_rfcomm
+	setarg L2CAP_config_MTU_SDP
+	istore 2,contw
+	branch l2cap_generate_config_req_done
+l2cap_generate_config_req_rfcomm:
+	setarg L2CAP_config_MTU_RFCOMM
+	istore 2,contw
+l2cap_generate_config_req_done:
+	arg 0x0c,temp
+	storet 2,mem_l2cap_signal_tx_length
+	call l2cap_get_signal_tx_buff
+	fetch 2,mem_l2cap_signal_tx_length
+	istore 2,contw
+	force L2CAP_signal_channel,pdata
+	istore 2,contw
+	jam 0,mem_send_config_req
+l2cap_proc_signal_config_req_rtn:
+	branch l2cap_process_one_signal_rtn
+
+l2cap_proc_signal_config_rsp:
+	increase 1,contr
+	ifetch 2,contr
+	copy pdata,rega
+	copy regc,pdata
+	isub rega,regc
+	ifetch 2,contr //source cid
+	copy pdata,rega
+	setarg L2CAP_SDP_channel
+	isub rega,null
+	branch l2cap_proc_signal_config_rsp_sdp,zero
+	setarg L2CAP_RFCOMM_channel
+	isub rega,null
+	branch l2cap_proc_signal_config_rsp_rfcomm,zero
+	setarg L2CAP_HID_Control_channel
+	isub rega,null
+	branch l2cap_proc_signal_config_rsp_hid_ctrl,zero
+	setarg L2CAP_HID_Interrupt_channel
+	isub rega,null
+	branch l2cap_proc_signal_config_rsp_hid_int,zero
+	increase 2,contr
+	ifetch 2,contr
+	iforce null
+	branch l2cap_process_one_signal_rtn
+l2cap_proc_signal_config_rsp_sdp:
+	fetch 1,mem_sdp_state
+	set1 L2CAP_CHANNEL_STATE_RCV_CFG_RES,pdata
+	store 1,mem_sdp_state
+	branch l2cap_process_one_signal_rtn
+l2cap_proc_signal_config_rsp_rfcomm:
+	fetch 1,mem_rfcomm_state
+	set1 L2CAP_CHANNEL_STATE_RCV_CFG_RES,pdata
+	store 1,mem_rfcomm_state
+	branch l2cap_process_one_signal_rtn
+l2cap_proc_signal_config_rsp_hid_ctrl:
+	fetch 1,mem_hid_control_state
+	set1 L2CAP_CHANNEL_STATE_RCV_CFG_RES,pdata
+	store 1,mem_hid_control_state
+	branch l2cap_process_one_signal_rtn
+l2cap_proc_signal_config_rsp_hid_int:
+	fetch 1,mem_hid_interrupt_state
+	set1 L2CAP_CHANNEL_STATE_RCV_CFG_RES,pdata
+	store 1,mem_hid_interrupt_state
+	jam BT_EVT_HID_CONNECTED,mem_fifo_temp
+	branch ui_ipc_send_event
+	
+
+
+l2cap_proc_signal_disconnect_req:
+	ifetch 1,contr
+	copy pdata,queue
+	ifetch 2,contr
+	copy pdata,rega
+	copy regc,pdata
+	isub rega,regc
+	ifetch 2,contr
+	copy pdata,rega
+	ifetch 2,contr
+	copy pdata,timeup
+	copy rega,temp
+	call save_cont_pointers
+	setarg L2CAP_SDP_channel
+	isub temp,null
+	branch l2cap_proc_signal_disconnect_req_sdp,zero
+	setarg L2CAP_RFCOMM_channel
+	isub temp,null
+	branch l2cap_proc_signal_disconnect_req_rfcomm,zero
+	setarg L2CAP_HID_Control_channel
+	isub temp,null
+	branch l2cap_proc_signal_disconnect_req_hid_ctrl,zero
+	setarg L2CAP_HID_Interrupt_channel
+	isub temp,null
+	branch l2cap_proc_signal_disconnect_req_hid_int,zero
+	call l2cap_reject_command
+	branch l2cap_proc_signal_disconnect_req_err_rtn
+l2cap_proc_signal_disconnect_req_hid_ctrl:
+	copy timeup,temp
+	fetch 2,mem_hid_ctrl_remote_cid
+	isub temp,null
+	branch l2cap_disconnect_hid_control_now,zero
+	call l2cap_reject_command
+	branch l2cap_proc_signal_disconnect_req_err_rtn
+l2cap_proc_signal_disconnect_req_hid_int:
+	copy timeup,temp
+	fetch 2,mem_hid_int_remote_cid
+	isub temp,null
+	branch l2cap_disconnect_hid_interrupt_now,zero
+	call l2cap_reject_command
+	branch l2cap_proc_signal_disconnect_req_err_rtn
+
+l2cap_proc_signal_disconnect_req_sdp:
+	copy timeup,temp
+	fetch 2,mem_sdp_remote_cid
+	isub temp,null
+	branch l2cap_disconnect_sdp_now,zero
+	call l2cap_reject_command
+	branch l2cap_proc_signal_disconnect_req_err_rtn
+l2cap_disconnect_hid_control_now:
+	call l2cap_reset_hid_ctrl_state
+	branch l2cap_send_disconnect_rsp_pkt
+l2cap_disconnect_hid_interrupt_now:
+	call l2cap_reset_hid_int_state
+	fetch 2, mem_hid_ctrl_remote_cid
+	branch l2cap_send_disconnect_rsp_pkt, blank
+	//set the flag,hid channel close
+	//should we set here?
+	//call HID_mem_lock
+	//fetch 1, mem_hid_cb1
+	//set1 HID_CB_APP_HID_DISCONNECTED,pdata
+	//store 1, mem_hid_cb1
+	//call HID_mem_unlock
+	branch l2cap_send_disconnect_rsp_pkt
+
+l2cap_disconnect_sdp_now:
+	call l2cap_reset_sdp_channel_state
+	fetch 1,mem_upper_sm_ss
+	nbranch l2cap_send_disconnect_rsp_pkt,blank
+	//jam LMP_ENCRYPTION_MODE_REQ,mem_lmo_opcode2
+	//jam UPPERSM_RP_SDP_CONN,mem_upper_sm_remote_page
+	branch l2cap_send_disconnect_rsp_pkt
+l2cap_proc_signal_disconnect_req_rfcomm:
+	copy timeup,temp
+	fetch 2, mem_RFCOMM_remote_CID
+	isub temp,null
+	branch l2cap_disconnect_rfcomm_now,zero
+	call l2cap_reject_command
+	branch l2cap_proc_signal_disconnect_req_err_rtn
+l2cap_disconnect_rfcomm_now:
+	call l2cap_reset_rfcomm_channel_state
+	branch l2cap_send_disconnect_rsp_pkt
+l2cap_send_disconnect_rsp_pkt:
+	call load_cont_pointers
+	setarg signal_disconnect_rsp
+	istore 1,contw
+	copy queue,pdata
+	istore 1,contw
+	setarg 0x0004
+	istore 2,contw
+	copy rega,pdata
+	istore 2,contw
+	copy timeup,pdata
+	istore 2,contw
+	force 8,pdata
+	branch l2cap_proc_signal_disconnect_req_rtn
+l2cap_proc_signal_disconnect_req_err_rtn:
+	call load_cont_pointers
+	branch l2cap_proc_signal_disconnect_req_rtn
+l2cap_proc_signal_disconnect_req_rtn:
+	iadd regb,regb
+	branch l2cap_process_one_signal_rtn
+l2cap_proc_signal_disconnect_rsp:
+	ifetch 1,contr
+	copy pdata,queue
+	ifetch 2,contr
+	copy pdata,rega
+	copy regc,pdata
+	isub rega,regc
+	ifetch 2,contr
+	copy pdata,timeup
+	ifetch 2,contr
+	copy pdata,temp
+	call save_cont_pointers
+	setarg L2CAP_SDP_channel
+	isub temp,null
+	branch l2cap_proc_signal_disconnect_rsp_sdp,zero
+	setarg L2CAP_RFCOMM_channel
+	isub temp,null
+	branch l2cap_proc_signal_disconnect_rsp_rfcomm,zero
+	setarg L2CAP_HID_Control_channel
+	isub temp,null
+	branch l2cap_proc_signal_disconnect_rsp_hid_ctrl,zero
+	setarg L2CAP_HID_Interrupt_channel
+	isub temp,null
+	branch l2cap_proc_signal_disconnect_rsp_hid_int,zero
+	call l2cap_reject_command
+	branch l2cap_proc_signal_disconnect_rsp_err_rtn
+l2cap_proc_signal_disconnect_rsp_sdp:
+	copy temp,rega
+	copy timeup,temp
+	fetch 2,mem_sdp_remote_cid
+	isub temp,null
+	call l2cap_reset_sdp_channel_state,zero
+	branch l2cap_proc_signal_disconnect_rsp_rtn
+l2cap_proc_signal_disconnect_rsp_rfcomm:
+	copy temp,rega
+	copy timeup,temp
+	fetch 2,mem_rfcomm_remote_CID
+	isub temp,null
+	call l2cap_reset_rfcomm_channel_state,zero
+	branch l2cap_proc_signal_disconnect_rsp_rtn
+l2cap_proc_signal_disconnect_rsp_hid_ctrl:
+	copy temp,rega
+	copy timeup,temp
+	fetch 2,mem_hid_ctrl_remote_cid
+	isub temp,null
+	call  l2cap_reset_hid_ctrl_state,zero
+	branch l2cap_proc_signal_disconnect_rsp_rtn
+l2cap_proc_signal_disconnect_rsp_hid_int:
+	copy temp,rega
+	copy timeup,temp
+	fetch 2,mem_hid_int_remote_cid
+	isub temp,null
+	call l2cap_reset_hid_int_state,zero
+	branch l2cap_proc_signal_disconnect_rsp_rtn
+l2cap_proc_signal_disconnect_rsp_rtn:
+	call load_cont_pointers
+	branch l2cap_process_one_signal_rtn
+l2cap_proc_signal_disconnect_rsp_err_rtn:
+	branch l2cap_process_one_signal_rtn
+
+/* received an echo request from remote BD.  Will echo the 1st 1 byte back,		*/
+l2cap_proc_signal_echo_req:
+	ifetch 1,contr
+	copy pdata,queue
+	ifetch 2,contr
+	copy pdata,rega
+	iadd contr,contr
+	setarg 9
+	istore 1,contw
+	copy queue,pdata
+	istore 1,contw
+	force 0x0000,pdata
+	istore 2,contw
+	force 4,pdata
+	iadd regb,regb
+	copy regc,pdata
+	isub rega,regc
+	branch l2cap_process_one_signal_rtn
+l2cap_proc_signal_echo_rsp:
+	branch l2cap_process_one_signal_rtn
+
+l2cap_proc_signal_info_rsp:
+	branch l2cap_process_one_signal_rtn
+l2cap_reject_command:
+	force 0,regb
+	call l2cap_get_signal_tx_payload
+	setarg signal_cmd_reject
+	istore 1,contw
+	copy queue,pdata
+	istore 1,contw
+	setarg 2
+	istore 2,contw
+	setarg cmd_not_understood
+	istore 2,contw
+	increase 6,regb
+	arg 4,regc
+	branch l2cap_process_one_signal_rtn
+
+
+
+l2cap_reset_rfcomm_channel_state:
+	setarg 0
+	store 2,mem_RFCOMM_Tx_pkt_length
+	store 2,mem_RFCOMM_remote_CID
+	jam 0,mem_rfcomm_state
+	rtn
+l2cap_reset_sdp_channel_state:
+	setarg 0
+	store 2,mem_sdp_tx_pkt_length
+	store 2,mem_sdp_remote_cid
+	jam 0,mem_sdp_state
+	rtn
+l2cap_reset_hid_ctrl_state:
+	setarg 0
+	store 2,mem_hid_ctrl_remote_cid
+	jam 0,mem_hid_control_state
+	fetch 1,mem_hid_interrupt_state
+	beq 0,l2cap_reset_hid_disconnected
+	rtn
+
+l2cap_reset_hid_int_state:
+	setarg 0
+	store 2,mem_hid_int_remote_cid
+	jam 0,mem_hid_interrupt_state
+	fetch 1,mem_hid_control_state
+	beq 0,l2cap_reset_hid_disconnected
+	rtn
+	
+l2cap_reset_hid_disconnected:
+	jam BT_EVT_HID_DISCONNECTED,mem_fifo_temp
+	branch ui_ipc_send_event	
+
+l2cap_disconnect_interrupt_req:
+	fetch 1,mem_CONTROL_tasks
+	set0  L2CAP_DISCONNECT_INTERRUPT, pdata
+	store 1,mem_CONTROL_tasks
+	fetch 2, mem_hid_int_remote_cid
+	rtn blank
+	call l2cap_malloc_signal_channel
+	fetch 2, mem_hid_int_remote_cid
+	copy pdata,rega
+	force L2CAP_HID_Interrupt_channel,regb
+	branch l2cap_generate_disconnect_req
+l2cap_disconnect_control_req:
+	fetch 1,mem_CONTROL_tasks
+	set0  L2CAP_DISCONNECT_CONTROL, pdata
+	store 1,mem_CONTROL_tasks
+	fetch 2, mem_hid_ctrl_remote_cid
+	rtn blank
+	call l2cap_malloc_signal_channel
+	fetch 2, mem_hid_ctrl_remote_cid
+	copy pdata,rega
+	force L2CAP_HID_Control_channel,regb
+l2cap_generate_disconnect_req:
+	call l2cap_get_req_id
+	call l2cap_get_signal_tx_payload
+	force signal_disconnect_req,pdata
+	istore 1,contw
+	fetch  1,mem_ML2CAP_comm_id
+	istore 1,contw
+	setarg 0x0004
+	istore 2,contw
+	copy rega,pdata
+	istore 2,contw
+	copy regb,pdata
+	istore 2,contw
+	force 0x08,temp //signal tx length in temp
+	branch ml2cap_send_signal
+
+ml2cap_send_signal_connect_req:
+	set1 mark_ext_patch,mark
+	bpatch patch23_7,mem_patch23
+	call l2cap_get_req_id
+	call l2cap_get_signal_tx_payload
+	setarg signal_connect_req
+	istore 1,contw
+	fetch 1,mem_ML2CAP_comm_id
+	istore 1,contw
+	setarg 0x0004
+	istore 2,contw
+	copy temp,pdata	 //PSM
+	istore 2,contw
+	copy timeup,pdata
+	istore 2,contw
+	arg 8,temp
+	branch ml2cap_send_signal
+ml2cap_send_signal_config_req:
+	set1 mark_ext_patch,mark
+	bpatch patch24_0,mem_patch24
+	call l2cap_get_req_id
+	call l2cap_get_signal_tx_payload
+	setarg signal_config_req
+	istore 1,contw
+	fetch 1,mem_ML2CAP_comm_id
+	istore 1,contw
+	setarg 0x0008
+	istore 2,contw
+	/****modigy for nokia*****/
+	copy temp,pdata
+	/*setarg 0x0040*/
+	istore 2,contw
+	setarg 0x0000
+	istore 2,contw
+	setarg 0x01
+	istore 1,contw
+	setarg 0x02
+	istore 1,contw
+	setarg L2CAP_config_MTU_RFCOMM
+	istore 2,contw
+	arg 0xc,temp
+	branch ml2cap_send_signal
+ml2cap_send_signal_disconn_req:
+	set1 mark_ext_patch,mark
+	bpatch patch24_1,mem_patch24
+	call l2cap_get_req_id
+	call l2cap_get_signal_tx_payload
+	setarg signal_disconnect_req
+	istore 1,contw
+	fetch 1,mem_ML2CAP_comm_id
+	increase 1,pdata
+	copy contw,rega
+	store 1,mem_ML2CAP_comm_id
+	copy rega,contw
+	istore 1,contw
+	setarg 0x0004
+	istore 2,contw
+	copy temp,pdata
+	istore 2,contw
+	copy timeup,pdata
+	istore 2,contw
+	arg 0x8,temp
+	//branch ml2cap_send_signal
+	//Fall through
+ml2cap_send_signal:
+	storet 2,mem_l2cap_signal_tx_length
+	copy temp,pdata
+	branch l2cap_malloc_discard,blank
+	call l2cap_get_signal_tx_buff
+	fetch 2,mem_l2cap_signal_tx_length
+	istore 2,contw //make sure that length is still in temp!
+	force L2CAP_signal_channel,pdata
+	istore 2,contw
+	rtn
+
+msdp_send_req_done:
+	fetch 2,mem_sdp_tx_pkt_length
+	branch assert,blank
+	call l2cap_get_sdp_tx_buff
+	fetch 2,mem_sdp_tx_pkt_length
+	istore 2,contw
+	fetch 2,mem_sdp_remote_cid
+	istore 2,contw
+	rtn
+ml2cap_rx_multiplexing:
+	set1 mark_ext_patch,mark
+	bpatch patch24_2,mem_patch24
+	fetch 2, mem_l2cap_rx_pkt_length
+	branch l2cap_rx_reset_state,blank
+	fetch 1,mem_l2cap_rx_cid
+	beq L2CAP_signal_channel,ml2cap_call_proc_signal
+	beq L2CAP_SDP_channel,l2cap_call_proc_sdp
+	beq L2CAP_RFCOMM_channel,l2cap_call_proc_rfcomm
+	beq L2CAP_HID_Control_channel,l2cap_call_proc_hid
+	beq L2CAP_HID_Interrupt_channel,l2cap_call_proc_hid
+	branch l2cap_rx_reset_state
+
+ml2cap_call_proc_signal:
+	set1 mark_ext_patch,mark
+	bpatch patch24_3,mem_patch24
+	call l2cap_malloc_signal_channel
+	force 0,regb
+	call l2cap_get_signal_tx_payload
+	copy pdata,contw
+	fetch 2,mem_l2cap_rx_pkt_length
+	copy pdata,regc
+	fetch 2,mem_l2cap_payload_ptr
+	iforce contr
+ml2cap_proc_one_comm_loop:
+	call ml2cap_proc_one_comm
+	increase -4,regc
+	nbranch ml2cap_proc_one_comm_loop,zero
+	copy regb,temp
+	call ml2cap_send_signal
+	branch l2cap_rx_reset_state
+	
+ml2cap_proc_one_comm:
+	ifetch 1,contr
+	beq signal_connect_req,ml2cap_proc_signal_connect_req
+	beq signal_cmd_reject,ml2cap_proc_signal_cmd_reject
+	beq signal_connect_rsp,ml2cap_proc_signal_connect_rsp
+	beq signal_config_rsp,ml2cap_proc_signal_config_rsp
+	beq signal_config_req,ml2cap_proc_signal_config_req
+	beq signal_disconnect_rsp,ml2cap_proc_signal_disconn_rsp
+	beq signal_disconnect_req,ml2cap_proc_signal_disconn_req
+	beq signal_echo_req,l2cap_proc_signal_echo_req
+	beq signal_info_req,ml2cap_proc_signal_info_req
+	branch ml2cap_proc_send_reject
+
+ml2cap_proc_signal_connect_req:
+	call save_cont_pointers
+	//jam NO_RECONNECTION,memui_reconnect_mode
+	call load_cont_pointers
+	branch l2cap_proc_signal_connect_req
+ml2cap_proc_signal_cmd_reject:
+	ifetch 1,contr
+	copy pdata,queue
+	ifetch 2,contr
+	copy pdata,rega
+	copy regc,pdata
+	isub rega,regc
+mvptr:
+	ifetch 1,contr
+	increase -1,rega
+	nbranch mvptr,zero
+	rtn
+ml2cap_proc_signal_connect_rsp:
+	ifetch 1,contr //id
+	copy pdata,queue
+	ifetch 2,contr
+	copy pdata,rega	//length
+	ifetch 2,contr
+	copy pdata,timeup	//destination	cid
+	ifetch 2,contr
+	copy pdata,temp	//source	cid
+	ifetch 2,contr 		// result
+	sub pdata,0,null
+	branch ml2cap_proc_signal_connect_rsp_sucessful,zero
+	beq L2CAP_connect_refused_PSM_unsupported,ml2cap_proc_signal_connect_refused_result
+	beq L2CAP_connect_refused_no_resources,ml2cap_proc_signal_connect_refused_result
+	branch ml2cap_proc_signal_connect_rsp_mnosucc
+ml2cap_proc_signal_connect_refused_result:
+	jam BT_EVT_ML2CAP_CONN_REFUSED,mem_fifo_temp
+	call ui_ipc_send_event
+ml2cap_proc_signal_connect_rsp_mnosucc:
+	ifetch 2,contr //reason
+	branch mnosucc
+ml2cap_proc_signal_connect_rsp_sucessful:
+	call save_cont_pointers
+	//fetch 1,mem_ML2CAP_comm_id
+	//icompare 0xff,queue
+	//nbranch mnosucc1,true
+	setarg L2CAP_SDP_channel
+	isub temp,null
+	branch ml2cap_proc_signal_connect_rsp_sdp,zero
+	setarg L2CAP_RFCOMM_channel
+	isub temp,null
+	branch ml2cap_proc_signal_connect_rsp_rfcomm,zero
+	setarg L2CAP_HID_Interrupt_channel
+	isub temp,null
+	branch ml2cap_proc_signal_connect_rsp_hid_int,zero
+	setarg L2CAP_HID_Control_channel
+	isub temp,null
+	branch ml2cap_proc_signal_connect_rsp_hid_ctrl,zero
+	branch mnosucc
+ml2cap_proc_signal_connect_rsp_sdp:
+	copy timeup,pdata
+	store 2,mem_sdp_remote_cid
+	fetch 1,mem_sdp_state
+	set1 L2CAP_CHANNEL_STATE_CONN_RES
+	store 1,mem_sdp_state
+	branch mnosucc1
+ml2cap_proc_signal_connect_rsp_rfcomm:
+	copy timeup,pdata
+	store 2,mem_RFCOMM_remote_CID
+	fetch 1,mem_rfcomm_state
+	set1 L2CAP_CHANNEL_STATE_CONN_RES
+	store 1,mem_rfcomm_state
+	branch mnosucc1
+ml2cap_proc_signal_connect_rsp_hid_ctrl:
+	copy timeup,pdata
+	store 2,mem_hid_ctrl_remote_cid
+	fetch 1,mem_hid_control_state
+	set1 L2CAP_CHANNEL_STATE_CONN_RES
+	store 1,mem_hid_control_state
+	branch mnosucc1
+ml2cap_proc_signal_connect_rsp_hid_int:
+	copy timeup,pdata
+	store 2,mem_hid_int_remote_cid
+	fetch 1,mem_hid_interrupt_state
+	set1 L2CAP_CHANNEL_STATE_CONN_RES
+	store 1,mem_hid_interrupt_state
+	//branch mnosucc1
+
+mnosucc1:
+	call load_cont_pointers
+mnosucc:
+	copy regc,pdata
+	isub rega,regc
+	rtn
+
+ml2cap_proc_signal_config_rsp:
+	ifetch 1,contr		//	Ident
+	copy pdata,queue
+	ifetch 2,contr		//	SigLen
+	copy pdata,rega
+	copy regc,pdata
+	isub rega,regc
+	ifetch 2,contr		//	DestnCID
+	copy pdata,timeup
+	ifetch 2,contr
+	ifetch 2,contr		//	Get the result value, check success
+	nbranch mcrsdone1,blank
+	call save_cont_pointers
+	//fetch 1,mem_ML2CAP_comm_id
+	//icompare 0xff,queue
+	//nbranch mcfrsdone,true
+	copy timeup,temp
+	setarg L2CAP_SDP_channel
+	isub temp,null
+	branch ml2cap_proc_signal_config_rsp_sdp,zero
+	setarg L2CAP_RFCOMM_channel
+	isub temp,null
+	branch ml2cap_proc_signal_config_rsp_rfcomm,zero
+	setarg L2CAP_HID_Control_channel
+	isub temp,null
+	branch ml2cap_proc_signal_config_rsp_hid_ctrl,zero
+	setarg L2CAP_HID_Interrupt_channel
+	isub temp,null
+	branch ml2cap_proc_signal_config_rsp_hid_int,zero
+ml2cap_proc_signal_config_rsp_sdp:
+	fetch 1,mem_sdp_state
+	set1 L2CAP_CHANNEL_STATE_RCV_CFG_RES
+	store 1,mem_sdp_state
+	rtn
+ml2cap_proc_signal_config_rsp_rfcomm:
+	fetch 1,mem_rfcomm_state
+	set1 L2CAP_CHANNEL_STATE_RCV_CFG_RES
+	store 1,mem_rfcomm_state
+	rtn
+ml2cap_proc_signal_config_rsp_hid_ctrl:
+	fetch 1,mem_hid_control_state
+	set1 L2CAP_CHANNEL_STATE_RCV_CFG_RES
+	store 1,mem_hid_control_state
+	rtn
+ml2cap_proc_signal_config_rsp_hid_int:
+	fetch 1,mem_hid_interrupt_state
+	set1 L2CAP_CHANNEL_STATE_RCV_CFG_RES
+	store 1,mem_hid_interrupt_state
+	jam BT_EVT_HID_CONNECTED,mem_fifo_temp
+	branch ui_ipc_send_event
+
+
+mcfrsdone:
+	call load_cont_pointers
+mcrsdone1:
+	increase -6,rega
+mloop2:
+	branch mcrsdone,zero
+	increase 1,contr
+	increase -1,rega
+	branch mloop2
+mcrsdone:
+	rtn
+ml2cap_proc_signal_config_req:
+	ifetch 1,contr		//	Ident
+	copy pdata,queue
+	ifetch 2,contr		//	SigLen
+	copy pdata,rega
+	copy regc,pdata
+	isub rega,regc
+	ifetch 2,contr		//	DestnCID
+	increase 2,contr
+	copy pdata,temp
+	setarg  signal_config_rsp
+	istore 1,contw
+	copy queue,pdata
+	istore 1,contw
+	increase 2,rega
+	copy rega,pdata
+	istore 2,contw
+	call save_cont_pointers
+	setarg L2CAP_SDP_channel
+	isub temp,null
+	branch ml2cap_proc_signal_config_req_sdp,zero
+	setarg L2CAP_RFCOMM_channel
+	isub temp,null
+	branch ml2cap_proc_signal_config_req_rfcomm,zero
+	setarg L2CAP_HID_Control_channel
+	isub temp,null
+	branch ml2cap_proc_signal_config_req_hid_ctrl,zero
+	setarg L2CAP_HID_Interrupt_channel
+	isub temp,null
+	branch ml2cap_proc_signal_config_req_hid_int,zero
+	branch mcfgrq_done
+ml2cap_proc_signal_config_req_sdp:
+	fetch 1,mem_sdp_state
+	set1 L2CAP_CHANNEL_STATE_RCV_CFG_REQ,pdata
+	set1 L2CAP_CHANNEL_STATE_SND_CFG_RES,pdata
+	store 1,mem_sdp_state
+	bbit1 L2CAP_CHANNEL_STATE_SND_CFG_REQ,ml2cap_proc_signal_config_req_sdp_nsndreq
+	fetcht 1,mem_CONTROL_tasks
+	set1 L2CAP_init_Config_Req,temp
+	storet 1,mem_CONTROL_tasks
+	copy queue,pdata
+	increase 1,pdata
+	store 1,mem_config_identifier
+	fetch 1,mem_sdp_state
+	set1 L2CAP_CHANNEL_STATE_SND_CFG_REQ,pdata
+	store 1,mem_sdp_state
+ml2cap_proc_signal_config_req_sdp_nsndreq:
+	fetch 2,mem_sdp_remote_cid
+	store 2,mem_config_req_dest_CID
+	branch mcfgrq_done
+ml2cap_proc_signal_config_req_rfcomm:
+	fetch 1,mem_rfcomm_state
+	set1 L2CAP_CHANNEL_STATE_RCV_CFG_REQ,pdata
+	set1 L2CAP_CHANNEL_STATE_SND_CFG_RES,pdata
+	store 1,mem_rfcomm_state
+	fetch 2,mem_RFCOMM_remote_CID
+	branch mcfgrq_done
+ml2cap_proc_signal_config_req_hid_ctrl:
+	fetch 1,mem_hid_control_state
+	set1 L2CAP_CHANNEL_STATE_RCV_CFG_REQ,pdata
+	set1 L2CAP_CHANNEL_STATE_SND_CFG_RES,pdata
+	store 1,mem_hid_control_state
+	fetch 2,mem_hid_ctrl_remote_cid
+	branch mcfgrq_done
+ml2cap_proc_signal_config_req_hid_int:
+	fetch 1,mem_hid_interrupt_state
+	set1 L2CAP_CHANNEL_STATE_RCV_CFG_REQ,pdata
+	set1 L2CAP_CHANNEL_STATE_SND_CFG_RES,pdata
+	store 1,mem_hid_interrupt_state
+	fetch 2,mem_hid_int_remote_cid
+	//branch mcfgrq_done
+
+mcfgrq_done:
+	copy pdata,timeup
+	call load_cont_pointers
+/*******for Nokia**************/
+	copy timeup,pdata
+	/*setarg 0x0040*/
+	istore 2,contw
+	force 0x0000,pdata
+	istore 2,contw
+	force 0x0000,pdata
+	istore 2,contw
+	force 10,pdata
+	iadd regb,regb
+	increase -6,rega
+mloop1:
+	branch mcrqdone,zero
+	ifetch 1,contr
+	istore 1,contw
+	increase 1,regb
+	increase -1,rega
+	branch mloop1
+mcrqdone:
+	rtn
+ml2cap_proc_signal_disconn_req:
+	ifetch 1,contr
+	copy pdata,queue
+	ifetch 2,contr
+	copy pdata,rega
+	copy regc,pdata
+	isub rega,regc
+
+	ifetch 2,contr
+	copy pdata,rega
+	ifetch 2,contr
+	copy pdata,timeup
+	call save_cont_pointers
+	setarg L2CAP_SDP_channel
+	copy rega,temp
+	isub temp,null
+	branch ml2cap_proc_signal_disconn_sdp,zero
+	setarg L2CAP_HID_Control_channel
+	copy rega,temp
+	isub temp,null
+	branch ml2cap_proc_signal_disconn_hid_ctrl,zero
+	setarg L2CAP_HID_Interrupt_channel
+	copy rega,temp
+	isub temp,null
+	branch ml2cap_proc_signal_disconn_hid_int,zero
+	branch mclsrfc
+ml2cap_proc_signal_disconn_sdp:
+	setarg 0x0000
+	store 2,mem_sdp_tx_pkt_length
+	store 2,mem_sdp_remote_cid
+	store 1,mem_sdp_state
+	branch mclssdp
+ml2cap_proc_signal_disconn_hid_ctrl:
+	call l2cap_reset_hid_ctrl_state
+	branch mclssdp
+ml2cap_proc_signal_disconn_hid_int:
+	call l2cap_reset_hid_int_state
+	//call HID_mem_lock
+	//fetch 1, mem_hid_cb1
+	//set1 HID_CB_APP_HID_DISCONNECTED,pdata
+	//store 1, mem_hid_cb1
+	//call HID_mem_unlock
+	branch mclssdp
+mclsrfc:
+	setarg 0x0000
+	store 2,mem_RFCOMM_Tx_pkt_length
+mclssdp:
+	call load_cont_pointers
+	setarg signal_disconnect_rsp
+	istore 1,contw
+	copy queue,pdata
+	istore 1,contw
+	setarg 0x0004
+	istore 2,contw
+	copy rega,pdata
+	istore 2,contw
+	copy timeup,pdata
+	istore 2,contw
+	force 8,pdata
+	iadd regb,regb
+	rtn
+
+ml2cap_proc_signal_disconn_rsp:
+	ifetch 1,contr
+	copy pdata,queue
+	ifetch 2,contr
+	copy pdata,rega
+	ifetch 2,contr
+	copy pdata,timeup
+	ifetch 2,contr
+	copy pdata,temp
+	call save_cont_pointers
+	fetch 1,mem_ML2CAP_comm_id
+	icompare 0xff,queue
+	nbranch mdisdone,true
+	setarg L2CAP_SDP_channel
+	isub temp,null
+	branch ml2cap_proc_signal_disconn_rsp_sdp,zero
+	setarg L2CAP_RFCOMM_channel
+	isub temp,null
+	branch ml2cap_proc_signal_disconn_rsp_rfcomm,zero
+	branch mdisdone
+ml2cap_proc_signal_disconn_rsp_sdp:
+	jam 0,mem_sdp_remote_cid
+	jam 0,mem_sdp_state
+	branch mdisdone
+ml2cap_proc_signal_disconn_rsp_rfcomm:
+	//
+	//
+mdisdone:
+	call load_cont_pointers
+	copy regc,pdata
+	isub rega,regc
+	rtn
+
+ml2cap_proc_send_reject:
+	setarg signal_cmd_reject
+	istore 1,contw
+	ifetch 1,contr
+	istore 1,contw
+	setarg 0x0002
+	istore 2,contw
+	setarg 0x0000
+	istore 2,contw
+	setarg 0x0006
+	iadd regb,regb
+	force 4,regc
+	rtn
+	
+//l2cap command id, 0 is not allowed
+l2cap_get_req_id:
+	fetch 1,mem_ML2CAP_comm_id
+	increase 1,pdata
+	bne 0,l2cap_get_req_id_ok
+	increase 1,pdata
+l2cap_get_req_id_ok:
+	store 1,mem_ML2CAP_comm_id
+	rtn
+
+
+/*********************************************************/
+//char* malloc(short len)
+//input: rega -> len
+//rtn: regb -> pbuff;return from pdata
+//val: queue -> i
+//val: timeup -> buff_cnt
+/*********************************************************/
+l2cap_malloc:
+	set1 mark_ext_patch,mark
+	bpatch patch24_4,mem_patch24
+	arg 0,regb
+	call l2cap_malloc_is_fifo_full
+	nbranch assert,blank//assert when fifo full
+	call l2cap_malloc_get_full_map
+ifdef DEBUG_MALLOC
+	call l2cap_malloc_log_get_ptr
+	copy rega,pdata
+	istore 2,contw
+	sub pdata,1024,null
+	branch assert,positive
+	branch assert,blank
+endif
+	arg mem_tx_buff0,regb//pbuff = buff0;
+	arg 0,queue // i = 0;
+l2cap_malloc_loop:
+	fetcht 1,mem_used_map
+	qisolate1 temp
+	branch l2cap_malloc_next,true//if(1 == (used_map & (1 << i)))goto next;
+	call l2cap_malloc_enough
+	sub timeup,0,null// (0 - timeup)
+	branch l2cap_malloc_next,positive//if(buff_cnt <= 0)goto next;
+	call l2cap_malloc_into_fifo
+	branch l2cap_malloc_rtn//return (pbuff);
+l2cap_malloc_next:
+	increase 128,regb//pbuff += BUFF_SIZE;//point to next buff
+	increase 1,queue
+	setarg 8//BUFF_MAX_COUNT
+	isub queue,null //BUFF_MAX_COUNT - i
+	branch l2cap_malloc_loop,positive//while(i < buff_max_count)
+	arg 0,regb//return NULL
+l2cap_malloc_rtn:
+ifdef DEBUG_MALLOC
+	call l2cap_malloc_log_get_ptr
+	copy regb,pdata
+	istore 2,contw
+endif
+	copy regb,pdata
+	branch assert,blank
+	rtn//return pointer via pdata
+	
+/*********************************************************/
+//void* l2cap_malloc_fifo_out(void)
+//output:len -> temp
+//output:ptr ->pdata
+//only get ptr,not free
+/*********************************************************/
+l2cap_malloc_fifo_out:
+	set1 mark_ext_patch,mark
+	bpatch patch24_5,mem_patch24
+	call l2cap_malloc_fifo_get_first_ptr
+	increase 1,contr
+	ifetch 2,contr //ptr ->pdata
+	rtn 
+
+/*********************************************************/
+//void free_first_buff_in_fifo(void)
+//only free the first one
+/*********************************************************/
+l2cap_malloc_free:
+	set1 mark_ext_patch,mark
+	bpatch patch24_6,mem_patch24
+	call l2cap_malloc_fifo_get_first_ptr
+	copy contr,contw
+	copy contr,temp
+	setarg 0
+	istore 3,contw
+ifdef DEBUG_MALLOC
+	call l2cap_malloc_log_get_ptr
+	setarg 0xaa
+	istore 1,contw
+	istoret 1,contw
+endif
+	rtn
+/*********************************************************/
+//void l2cap_malloc_discard(void)
+//discard the latest malloc
+/*********************************************************/
+l2cap_malloc_discard:
+	set1 mark_ext_patch,mark
+	bpatch patch24_7,mem_patch24
+	call l2cap_malloc_is_fifo_empty
+	branch assert,blank
+	fetch 3,mem_tx_fifo2
+	store 3,mem_tx_fifo3
+	fetch 3,mem_tx_fifo1
+	store 3,mem_tx_fifo2
+	fetch 3,mem_tx_fifo0
+	store 3,mem_tx_fifo1
+	rtn
+/*********************************************************/
+//bool fifo_is_full(void)
+//blank == 1: not full
+//blank == 0: full
+/*********************************************************/
+l2cap_malloc_is_fifo_full:
+	fetch 3,mem_tx_fifo0
+	rtn
+/*********************************************************/
+//bool fifo_nearly_full(void)
+//blank == 1: nearly full
+//blank == 0: not nearly full
+/*********************************************************/
+l2cap_malloc_is_fifo_nearly_full:
+	fetch 3,mem_tx_fifo1
+	rtn
+/*********************************************************/
+//bool fifo_is_empty(void)
+//blank == 1: empty
+//blank == 0: not empty
+/*********************************************************/
+l2cap_malloc_is_fifo_empty:
+	fetch 3,mem_tx_fifo3
+	rtn
+/*********************************************************/
+//char* l2cap_malloc_fifo_get_first_ptr(void)
+//output:contr  -->ptr
+/*********************************************************/	
+l2cap_malloc_fifo_get_first_ptr:
+	call l2cap_malloc_is_fifo_empty
+	branch assert,blank // fifo is empty
+	arg mem_tx_fifo0,contr
+ifdef DEBUG_MALLOC
+	arg 5,loopcnt
+l2cap_malloc_free_loop:
+	increase -1,loopcnt
+	copy loopcnt,pdata
+	branch assert,blank
+else
+l2cap_malloc_free_loop:
+endif
+	ifetch 3,contr
+	branch l2cap_malloc_free_loop,blank
+	increase -3,contr
+	rtn
+
+/*********************************************************/
+//char* l2cap_malloc_get_full_map(void)
+//output:mem_used_map  -->full_map
+//add all maps into one
+/*********************************************************/	
+l2cap_malloc_get_full_map:
+	set1 mark_ext_patch,mark
+	bpatch patch25_0,mem_patch25
+	arg 4,loopcnt
+	arg mem_tx_fifo0_map,contr
+	arg 0,temp
+l2cap_malloc_get_full_map_loop:	
+	ifetch 3,contr
+	and pdata,0xff,pdata
+	ior temp,temp
+	loop l2cap_malloc_get_full_map_loop
+	storet 1,mem_used_map
+	rtn
+/*********************************************************/
+//void buff_into_fifo(char buff_index, char buff_cnt, short len)
+//input: rega -> len
+//input: regc -> buff_index
+//input: timeup -> buff_cnt
+//val:temp ->   (fifo->map)
+/*********************************************************/
+l2cap_malloc_into_fifo:
+	set1 mark_ext_patch,mark
+	bpatch patch25_1,mem_patch25
+	call l2cap_malloc_is_fifo_full
+	nbranch assert,blank //fifo full
+	call l2cap_malloc_is_fifo_empty
+	branch l2cap_malloc_into_fifo_no_push,blank//fifo empty, no need to push
+	fetch 3,mem_tx_fifo1
+	store 3,mem_tx_fifo0
+	ifetch 3,contr//mem_tx_fifo2
+	istore 3,contw//mem_tx_fifo1
+	ifetch 3,contr//mem_tx_fifo3
+	istore 3,contw//mem_tx_fifo2
+	setarg 0
+	istore 3,contw//mem_tx_fifo3
+l2cap_malloc_into_fifo_no_push:
+	arg 0,temp
+	copy timeup,pdata
+	iadd queue,pdata
+l2cap_malloc_into_fifo_loop:
+	qset1 temp//fifo->map |= 1 << i;
+	increase 1,queue
+	isub queue,null
+	nbranch l2cap_malloc_into_fifo_loop,zero
+	//map in temp
+	lshift8 regb,pdata
+	ior temp,pdata
+	store 3,mem_tx_fifo3
+	rtn
+
+/*********************************************************/
+//char is_size_enough(char buff_index, short len)
+//input: rega -> len
+//input: queue -> buff_index
+//rtn: timeup -> buff_cnt
+//val: max_size_fom_buff_index -> temp
+//val: i -> loopcnt
+/*********************************************************/
+l2cap_malloc_enough:
+	set1 mark_ext_patch,mark
+	bpatch patch25_2,mem_patch25
+	call l2cap_malloc_get_full_map
+	copy queue,regc//restore buff_index to regc
+	arg 0,temp
+	arg 0,timeup//default return val
+	//increase 1,queue
+l2cap_malloc_enough_loop:
+	copy queue,pdata
+	beq 8,l2cap_malloc_enough_end
+	fetch 1,mem_used_map
+	qisolate1 pdata
+	branch l2cap_malloc_enough_end,true
+	increase 128,temp
+	increase 1,queue
+	copy rega,pdata
+	isub temp,null
+	branch l2cap_malloc_enough_end,zero//(max_size_fom_buff_index ==  len)
+	branch l2cap_malloc_enough_loop,positive//(max_size_fom_buff_index <  len)
+l2cap_malloc_enough_end:
+	copy temp,pdata
+	isub rega,null
+	nbranch l2cap_malloc_enough_rtn,positive// max_size_fom_buff_index - len > 0
+	copy queue,pdata//i
+	copy regc,temp//buff_index
+	isub temp,timeup//return (i - buff_index)
+l2cap_malloc_enough_rtn:
+	copy regc,queue//restore buff_index to queue
+	rtn
+	
+ifdef DEBUG_MALLOC
+l2cap_malloc_log_get_ptr:
+	fetch 2,mem_tx_malloc_log
+	increase 2,pdata
+	store 2,mem_tx_malloc_log
+	sub pdata,62,null
+	nbranch l2cap_malloc_log_clean,positive
+	increase -2,pdata
+	iadd contw,contw
+	rtn
+l2cap_malloc_log_clean:
+	jam 0x00,mem_tx_malloc_log
+	branch l2cap_malloc_log_get_ptr	
+endif
+
+l2cap_malloc_signal_channel:
+	set1 mark_ext_patch,mark
+	bpatch patch25_3,mem_patch25
+	arg L2CAP_SIGNAL_MALLOC_SIZE,rega
+	call l2cap_malloc
+	store 2,mem_l2cap_signal_tx_buff_ptr
+	increase 4,pdata
+	store 2,mem_l2cap_signal_tx_payload_ptr
+	setarg 0
+	store 2,mem_l2cap_signal_tx_length
+	rtn
+
+l2cap_get_signal_tx_buff:
+	fetch 2,mem_l2cap_signal_tx_buff_ptr
+	branch l2cap_util_pdata_to_contw
+
+l2cap_get_signal_tx_payload:
+	fetch 2,mem_l2cap_signal_tx_payload_ptr
+	branch l2cap_util_pdata_to_contw
+
+
+l2cap_malloc_sdp_channel:
+	set1 mark_ext_patch,mark
+	bpatch patch25_4,mem_patch25
+	arg SDP_MALLOC_SIZE,rega
+	call l2cap_malloc
+	store 2,mem_sdp_tx_buff_ptr
+	increase 4,pdata
+	store 2,mem_sdp_tx_payload_ptr
+	setarg 0
+	store 2,mem_sdp_tx_pkt_length
+	rtn
+
+l2cap_get_sdp_tx_buff:
+	fetch 2,mem_sdp_tx_buff_ptr
+	branch l2cap_util_pdata_to_contw
+
+l2cap_get_sdp_tx_payload:
+	fetch 2,mem_sdp_tx_payload_ptr
+	branch l2cap_util_pdata_to_contw
+
+
+l2cap_malloc_rfcomm_channel:
+	set1 mark_ext_patch,mark
+	bpatch patch25_5,mem_patch25
+	call push_stack
+	jam RFCOMM_MALLOC_FAIL,mem_rfcomm_malloc_fail_flag
+	call l2cap_malloc_is_fifo_full
+	nrtn blank
+	arg RFCOMM_MALLOC_SIZE,rega
+	call l2cap_malloc
+	store 2,mem_rfcomm_tx_buff_ptr
+	increase 4,pdata
+	store 2,mem_rfcomm_tx_payload_ptr
+	setarg 0
+	store 2,mem_rfcomm_tx_pkt_length
+	jam RFCOMM_MALLOC_SUCCEED,mem_rfcomm_malloc_fail_flag
+	branch pop_stack
+
+l2cap_get_rfcomm_tx_buff:
+	fetch 2,mem_rfcomm_tx_buff_ptr
+	branch l2cap_util_pdata_to_contw
+	
+l2cap_get_rfcomm_tx_payload:
+	fetch 2,mem_rfcomm_tx_payload_ptr
+	//fall through
+l2cap_util_pdata_to_contw:
+	branch assert,blank
+	copy pdata,contw
+	rtn
+	
+
+l2cap_lpm_save_calc_len:
+	set1 mark_ext_patch,mark
+	bpatch patch25_6,mem_patch25
+	arg 0,regb
+	arg mem_tx_fifo0_map,rega
+	increase -2,rega
+l2cap_lpm_save_calc_len_loop:
+	increase 2,rega
+	setarg mem_tx_fifo_end
+	isub rega,null
+	branch l2cap_lpm_save_calc_len_end,zero //end of 2lcap tx fifo
+	ifetch 1,rega
+	increase 1,rega
+	branch l2cap_lpm_save_calc_len_loop,blank
+	ifetcht 2,rega
+	ifetch 2,temp
+	iadd regb,regb
+	increase 4,regb //l2cap header len
+	branch l2cap_lpm_save_calc_len_loop
+l2cap_lpm_save_calc_len_end:
+	copy regb,pdata
+	rtn
+
+
+l2cap_lpm_get_wake_lock:
+	arg wake_lock_l2cap_tx,queue
+	branch lpm_get_wake_lock
+
+l2cap_lpm_put_wake_lock:
+	arg wake_lock_l2cap_tx,queue
+	branch lpm_put_wake_lock
+	
+l2cap_lpm_save_txbuf:
+	set1 mark_ext_patch,mark
+	bpatch patch25_7,mem_patch25
+	call l2cap_malloc_get_full_map
+	fetch 1,mem_used_map
+	rtn blank
+	call l2cap_lpm_save_calc_len
+	arg l2cap_lpm_txbuf_len,temp
+	isub temp,null
+	branch l2cap_lpm_get_wake_lock,positive //no enougth space to save l2cap tx data
+	call l2cap_lpm_put_wake_lock
+	arg mem_l2cap_lpm_txbuf,contw
+	arg mem_tx_fifo0,rega
+l2cap_lpm_save_txbuf_loop:
+	setarg mem_tx_fifo_end
+	isub rega,null
+	rtn zero //end of 2lcap tx fifo
+	ifetch 1,rega  //mem_tx_fifoX_map
+	increase 1,rega
+	nbranch l2cap_lpm_save_txbuf_nempty,blank
+	istore 2,contw // length = 0
+	increase 2,rega
+	branch l2cap_lpm_save_txbuf_loop
+l2cap_lpm_save_txbuf_nempty:
+	ifetch 2,rega //ptr
+	increase 2,rega
+	copy pdata,contr
+	ifetch 2,contr  //l2cap len
+	istore 2,contw
+	copy pdata,loopcnt
+	increase 2,loopcnt //add CID len
+	call memcpy
+	branch l2cap_lpm_save_txbuf_loop
+	
+l2cap_lpm_load_txbuf:
+	set1 mark_ext_patch,mark
+	bpatch patch26_0,mem_patch26
+	call l2cap_malloc_get_full_map
+	fetch 1,mem_used_map
+	rtn blank
+	arg mem_tx_fifo0_ptr,rega
+	increase -3,rega //mem_tx_fifo0_ptr -3
+	arg mem_l2cap_lpm_txbuf,contr
+l2cap_lpm_load_txbuf_loop:
+	increase 3,rega //mem_tx_fifoX_ptr
+	setarg mem_tx_fifo_end+1
+	isub rega,null
+	rtn zero //end of 2lcap tx fifo
+	ifetch 2,contr
+	branch l2cap_lpm_load_txbuf_loop,blank
+	increase 4,pdata //l2cap header len
+	copy pdata,loopcnt
+	copy contr,regb
+	ifetch 2,rega //ptr
+	copy pdata,contw
+	copy regb,contr
+	increase -2,contr
+	call memcpy
+	branch l2cap_lpm_load_txbuf_loop
+	
+
+
+	
Index: btkb/program/le.prog
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/btkb/program/le.prog	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/btkb/program/le.prog	(working copy)
@@ -0,0 +1,2711 @@
+ifdef COMPILE_LE
+//******************************************//
+//*************LE INIT ****************//
+//******************************************//
+le_init_param:
+	rtn wake
+	setarg param_le_scan_interval
+	store 2,mem_le_scan_interval
+	setarg param_le_scan_window
+	store 2,mem_le_scan_window
+	rtn
+
+le_init_att:
+	arg notify_handle,temp
+	call le_att_get_handle_ptr
+	add contr,1,pdata
+	store 2,mem_le_notify_attr_start
+	rtn
+
+le_init_conn:
+	set1 mark_ext_patch,mark
+	bpatch patch26_2,mem_patch26
+	disable wake
+	jam 1,mem_app_state
+	jam 1,mem_le_conn_handle
+	jam 3,mem_le_state
+	jam 1,mem_le_arq
+	setarg -1
+	store 2,mem_le_event_count
+	force 0,pdata
+	store 1,mem_le_conn_sm
+	store 1,mem_le_ch
+	store 1,mem_le_op
+	store 3,mem_sniff_rcv
+	store 3,mem_sniff_lost
+	store 5,mem_le_pcnt_tx
+	set1 39,pdata
+	store 5,mem_le_pcnt_rx
+	branch le_supervision_flush
+
+le_init_master:
+	set1 mark_ext_patch,mark
+	bpatch patch26_3,mem_patch26
+	enable master
+	jam lemode_master,mem_le_mode
+	jam 1,mem_le_att_handle
+	jam 1,mem_le_search_handle_start
+	setarg 0xffff
+	store 2,mem_le_search_handle_end
+	force 0,pdata
+	store 5,mem_le_pcnt_rx
+	set1 39,pdata
+	store 5,mem_le_pcnt_tx	
+	branch le_init_conn
+
+
+le_init_slave:
+	set1 mark_ext_patch,mark
+	bpatch patch26_4,mem_patch26
+	disable master
+	jam lemode_slave,mem_le_mode
+	jam 0,mem_le_adv_enable
+	jam 0,mem_lpm_current_mult
+	branch le_init_conn
+	
+
+//******************************************//
+//*************LE main process*********//
+//******************************************//
+le_dispatch:
+	call le_enable
+	call le_scan
+	call le_adv
+	branch le_disable
+
+le_conn_dispatch:
+	set1 mark_ext_patch,mark
+	bpatch patch26_5,mem_patch26
+	call le_enable
+	call app_process_ble
+	fetch 1,mem_le_mode
+	beq lemode_master,le_master_dispatch
+	branch le_slave_dispatch
+	
+//******************************************//
+//***********LE master process*********//
+//******************************************//
+	
+le_master_dispatch:
+	set1 mark_ext_patch,mark
+	bpatch patch26_6,mem_patch26
+	enable master
+	call le_supervision_update
+	branch le_master_disconn,positive
+	call check_ble_disabled
+	call le_setup
+	call le_prepare_tx
+	disable match
+	call le_transmit_receive_sifs
+	nrtn match
+	set1 mark_ext_patch,mark
+	bpatch patch26_7,mem_patch26
+	fetch 1,mem_le_conn_rcv
+	increase 1,pdata
+	store 1,mem_le_conn_rcv
+	call le_acknowledge
+	call le_conn_sm_master
+	disable master
+	rtn
+	
+le_master_disconn:
+	call le_disconnect
+	disable master
+	rtn
+	
+//******************************************//
+//***********LE slave process***********//
+//******************************************//
+le_slave_dispatch:
+	set1 mark_ext_patch,mark
+	bpatch patch27_0,mem_patch27
+	disable attempt
+	call le_supervision_update
+	branch le_slave_disconn,positive
+	call check_ble_disabled
+	call le_setup
+	call le_receive_slave
+	nbranch le_slave_unsync,match
+le_slave_match:
+	set1 mark_ext_patch,mark
+	bpatch patch27_1,mem_patch27
+	call le_got_first_packet
+	call le_acknowledge
+	call le_prepare_tx
+	fetch 1,mem_le_rxbuf
+	bbit1 md,le_slave_more_data //more data to rx
+	call le_xtype_fifo_is_empty
+	nbranch le_slave_more_data,blank// more data to tx
+le_slave_transmit_last:
+	set1 mark_ext_patch,mark
+	bpatch patch27_2,mem_patch27
+	call le_transmit_norx
+le_slave_cont:
+	call check_51cmd
+	fetch 1,mem_le_op
+	bbit1 op_disconn,le_slave_disconn
+le_slave_unsync:
+	set1 mark_ext_patch,mark
+	bpatch patch27_3,mem_patch27
+	call le_savelist
+	call le_lpm_set_mult
+	call le_update_channel_map
+	call le_update_param
+	branch calc_clke_offset
+
+le_slave_more_data:
+	set1 mark_ext_patch,mark
+	bpatch patch27_4,mem_patch27
+	enable attempt
+	call le_transmit_receive_sifs
+	branch le_slave_match,match
+	branch le_slave_cont
+
+le_slave_disconn:
+
+	//fall through
+le_disconnect:
+	set1 mark_ext_patch,mark
+	bpatch patch27_5,mem_patch27
+	call le_clear_connection_info
+	call app_disconn_reason_collect_ble
+	jam BT_EVT_LE_DISCONNECTED,mem_fifo_temp
+	branch ui_ipc_send_event
+
+le_clear_connection_info:
+	fetcht 1,mem_le_conn_handle
+	jam HCI_ERROR_CONNECTION_TIMEOUT,mem_hci_disconn_reason
+	call hci_send_disconn_complete
+	jam 0,mem_le_conn_handle
+	jam lemode_idle,mem_le_mode
+	jam 0,mem_le_state
+	jam 0,mem_app_state
+	rtn
+	
+le_got_first_packet:
+	fetch 1,mem_le_conn_rcv
+	increase 1,pdata
+	store 1,mem_le_conn_rcv
+	fetch 1,mem_le_state
+	rtnbit1 lestate_got_first_packet
+	set1 lestate_got_first_packet
+	store 1,mem_le_state
+	setarg 0
+	store 4,mem_le_transmit_window
+	rtn
+
+
+
+
+le_enable:
+	set1 mark_ext_patch,mark
+	bpatch patch27_6,mem_patch27
+	enable le
+	hjam 7,rfen_ulp			/* enable ulp */
+	branch check_ble_disabled
+
+le_disable:
+	set1 mark_ext_patch,mark
+	bpatch patch27_7,mem_patch27
+	disable le
+	hjam 3,rfen_ulp
+	arg 0,stop_watch
+	rtn
+	
+le_prep:
+	disable enable_crc
+	disable enable_white
+	fetch 3,mem_le_crcinit
+	iforce crc24_init
+	fetch 1,mem_le_ch_mapped
+	reverse pdata,temp
+	set1 1,temp
+	rshift temp,white_init
+	rtn
+	
+
+lerx_setfreq:
+	call le_setfreq
+	call set_freq_rx
+	setarg param_pll_setup
+	call sleep
+	branch rf_rx_enable
+
+letx_setfreq:
+	branch txon,match
+	call le_setfreq
+	branch set_freq_tx
+le_setfreq:
+	set1 mark_ext_patch,mark
+	bpatch patch28_0,mem_patch28
+	call set_sync_on
+	fetch 1, mem_le_testtype
+	nbranch le_ctf_test,blank
+	fetch 1,mem_le_ch_mapped
+	sub pdata,36,null
+	branch le_ctf_normal,positive
+	force 0,temp
+	rtneq 37
+	force 24,temp
+	rtneq 38
+	force 78,temp
+	rtn
+	
+le_ctf_normal:
+	sub pdata,10,null
+	branch le_ctf_low,positive
+	increase 1,pdata
+	
+le_ctf_low:	
+	lshift pdata,pdata
+	add pdata,2,temp
+	rtn
+	
+le_ctf_test:
+	fetch 1,mem_le_ch_mapped
+	lshift pdata,temp
+	rtn
+
+le_sca_map:
+	arg 500,temp
+	rtn blank
+	arg 250,temp
+	rtneq 1
+	arg 150,temp
+	rtneq 2
+	arg 100,temp
+	rtneq 3
+	arg 75,temp
+	rtneq 4
+	arg 50,temp
+	rtneq 5
+	arg 40,temp
+	rtneq 6
+	arg 20,temp
+	rtn
+
+
+	
+le_adv_access:
+	setarg 0x8e89be
+	lshift8 pdata,pdata
+	or_into 0xd6,pdata
+	iforce access
+	setarg 0x555555
+	store 3,mem_le_crcinit
+	rtn
+
+le_setup:
+	set1 mark_ext_patch,mark
+	bpatch patch28_1,mem_patch28
+	enable swfine
+	fetch 4,mem_le_access
+	iforce access
+	call le_map_channel
+	setarg 0x200
+	branch le_setup_master,master
+	fetch 2,mem_le_receive_window
+	rshift pdata,pdata
+le_setup_master:
+	arg param_pll_setup,temp
+	iadd temp,pdata
+	call ahead_window
+	deposit clke
+	store 6,mem_le_rxon_ts
+	rtn
+
+le_next_adv_channel:
+	set1 mark_ext_patch,mark
+	bpatch patch28_2,mem_patch28
+	fetch 1,mem_le_ch_mapped
+	increase 1,pdata
+	store 1,mem_le_ch_mapped
+	rtnne 40
+	jam 37,mem_le_ch_mapped
+	rtn	
+
+le_context_nexthop:
+	set1 mark_ext_patch,mark
+	bpatch patch28_3,mem_patch28
+	add rega,coffset_mode,contr
+	ifetch 1,contr
+	rtnbit0 mode_le
+	add rega,coffset_le_event_cnt,contw
+	ifetch 2,contw
+	increase 1,pdata
+	istore 2,contw
+	add rega,coffset_le_hop,contr
+	ifetch 1,contr
+	add rega,coffset_le_ch,contw
+	ifetcht 1,contw
+	iadd temp,pdata
+	sub pdata,36,null
+	branch le_nexthop_nowrap,positive
+	increase -37,pdata
+le_nexthop_nowrap:
+	istore 1,contw
+	rtn
+
+
+le_calc_channel_map:
+	set1 mark_ext_patch,mark
+	bpatch patch28_4,mem_patch28
+	fetch 5,mem_le_channel_map
+	force 0,temp
+	force 37,loopcnt
+le_count_channels_loop:
+	bbit0 0,le_count_channels_notused
+	increase 1,temp
+le_count_channels_notused:
+	rshift pdata,pdata
+	loop le_count_channels_loop
+	add temp,-1,pdata
+	store 1,mem_le_channels
+	rtn
+
+le_map_channel:
+	set1 mark_ext_patch,mark
+	bpatch patch28_5,mem_patch28
+	fetch 1,mem_le_ch
+	iforce queue
+	fetcht 5,mem_le_channel_map
+	qisolate1 temp
+	branch le_map_channel_end,true
+le_map_channel_next:
+	set1 mark_ext_patch,mark
+	bpatch patch28_6,mem_patch28
+	fetch 1,mem_le_channels
+	isub queue,pdata
+	branch le_map_channel_cont,positive
+	sub pdata,-1,queue
+	branch le_map_channel_next
+le_map_channel_cont:
+	copy queue,loopcnt
+	force 0,queue
+le_map_channel_loop:
+	qisolate1 temp
+	branch le_map_channel_skip,true
+	increase 1,loopcnt
+le_map_channel_skip:
+	deposit loopcnt
+	branch le_map_channel_end,blank
+	increase 1,queue
+	increase -1,loopcnt
+	branch le_map_channel_loop
+le_map_channel_end:
+	deposit queue
+	store 1,mem_le_ch_mapped
+	rtn
+
+
+le_wait_tx:
+	branch le_wait_master,master
+	until null,timeout
+	rtn
+	
+le_wait_master:
+	arg 0xea0,timeup
+	until clkn_rt,meet
+	rtn
+
+le_receive_adv:
+	disable swfine
+	fetch 2,mem_le_scan_window
+	copy pdata,timeup
+	branch le_receive_packet
+
+
+le_receive_slave:
+	set1 mark_ext_patch,mark
+	bpatch patch28_7,mem_patch28
+	enable swfine
+	fetch 2,mem_le_receive_window
+	fetcht 4,mem_le_transmit_window
+	iadd temp,timeup
+le_receive_packet:
+	call lerx_setfreq
+le_receive_rxon:
+	set1 mark_ext_patch,mark
+	bpatch patch29_0,mem_patch29
+	call le_prep
+	disable match
+	enable decode_fec0
+	enable is_rx
+	disable is_tx
+	copy timeup,stop_watch
+	correlate null,timeout
+	branch le_receive_on_attempt,attempt
+	copy clke,temp
+	storet 6,mem_sync_clke
+le_receive_on_attempt:
+	nbranch end_of_packet,sync
+	branch le_receive_skip,attempt
+	arg param_clke_cal_le,clke_rt
+	copy bt_clk,clke_bt
+	fetch 1,mem_le_state
+	bbit0 lestate_got_first_packet,le_receive_skip
+	call lpm_adjust_clk,wake
+le_receive_skip:
+	set1 mark_ext_patch,mark
+	bpatch patch29_1,mem_patch29
+	call save_rssi
+	enable enable_white
+	enable enable_crc
+	parse demod,bucket,8
+	rshift3 pwindow,pdata
+	store 1,mem_le_rxbuf
+	parse demod,bucket,8
+	rshift3 pwindow,pdata
+	istore 1,contw
+	and pdata,0x3f,loopcnt
+	branch lerx_nopayload,zero
+	
+lerx_loop:
+	parse demod,bucket,8
+	rshift3 pwindow,pdata
+	istore 1,contw
+	loop lerx_loop
+	
+lerx_nopayload:
+	set1 mark_ext_patch,mark
+	bpatch patch29_2,mem_patch29
+	parse demod,bucket,24	
+	enable swfine
+	arg param_sifs,stop_watch		// start SIFS timer after last bit of crc
+	rshift32 pdata,pdata
+	rshift16 pdata,pdata
+	istore 3,contw
+	branch end_of_packet,crc_failed
+	enable match
+	fetch 1,mem_last_freq
+	add pdata,2,rega
+	call rf_write_freq				/* set frequency to tx mode freq */
+	disable decode_fec0
+	branch set_sync_on
+
+le_transmit_receive_sifs:
+	set1 mark_ext_patch,mark
+	bpatch patch29_3,mem_patch29
+	call le_transmit
+	fetcht 1,mem_last_freq
+	call set_freq_rx
+	call rf_rx_enable
+	enable swfine
+	arg 5000,timeup	// about 417us
+	branch le_receive_rxon
+
+le_transmit_norx:
+	call le_transmit
+	branch end_of_packet
+	
+le_transmit:
+	set1 mark_ext_patch,mark
+	bpatch patch29_4,mem_patch29
+	call le_prep
+	call letx_setfreq
+	set1 TXGFSK,radio_ctrl
+	enable encode_fec0
+	enable is_tx
+	disable is_rx
+	call le_wait_tx
+	rshift16 access,pdata
+	rshift8 pdata,pdata
+	rshift4 pdata,pdata
+	inject mod,40
+	enable enable_white
+	enable enable_crc
+	set1 mark_ext_patch,mark
+	bpatch patch29_5,mem_patch29
+	fetch 1,mem_le_txheader
+	inject mod,8
+	ifetch 1,contr
+	and pdata,0x3f,loopcnt
+	inject mod,8
+	branch letr_nopayload,zero
+letr_loop:
+	ifetch 1,contr
+	inject mod,8
+	loop letr_loop
+	
+letr_nopayload:
+	enable enable_parity
+	inject mod,24
+	disable enable_parity
+	until null,tx_clear
+	nop 100          /* flush out the last bit */
+	disable encode_fec0
+	rtn
+	
+le_send_adv_ind:
+	set1 mark_ext_patch,mark
+	bpatch patch29_6,mem_patch29
+	fetch 1,mem_le_adv_type
+	beq ADV_DIRECT_IND,le_send_adv_direct_ind
+	fetch 1,mem_le_adv_own_addr_type
+	lshift4 pdata,pdata
+	lshift2 pdata,pdata
+	store 1,mem_le_txheader
+	fetcht 1,mem_le_adv_data_len
+	add temp,6,pdata
+	store 1,mem_le_txlen
+	fetch 6,mem_le_lap
+	store 6,mem_le_txpayload
+	copy temp,loopcnt
+	arg mem_le_adv_data,contr
+	call memcpy
+	branch le_send_adv_transmit
+le_send_adv_direct_ind:
+	fetcht 2,mem_le_notify_handle
+	call le_att_check_notification_enable
+	copy rega,contw
+	setarg 1
+	istore 1,contw
+	fetch 1,mem_le_adv_direct_addr_type
+	lshift4 pdata,pdata
+	lshift2 pdata,pdata
+	increase 1,pdata
+	store 1,mem_le_txheader
+	setarg 12
+	store 1,mem_le_txlen
+	fetch 6,mem_le_lap
+	store 6,mem_le_txpayload
+	fetch 6,mem_hci_plap
+	istore 6,contw
+le_send_adv_transmit:
+	set1 mark_ext_patch,mark
+	bpatch patch29_7,mem_patch29
+	fetch 1,mem_le_adv_transmit
+	increase 1,pdata
+	store 1,mem_le_adv_transmit
+	arg 1800,stop_watch
+	disable match
+	branch le_transmit_receive_sifs
+	
+le_send_scan_request:
+	set1 mark_ext_patch,mark
+	bpatch patch2a_0,mem_patch2a
+	fetch 1,mem_le_scan_type
+	rtnne LE_SCAN_TYPE_ACTIVE,pdata
+	fetch 1,mem_le_adv_transmit
+	increase 1,pdata
+	store 1,mem_le_adv_transmit
+	arg 0x0c03,temp// length + SCAN_REQ PDU
+	fetch 1,mem_le_scan_own_addr_type
+	nsetflag blank,LE_SENDER_ADDR_BIT,temp
+	copy rega,pdata
+	nsetflag blank,LE_RECEIVER_ADDR_BIT,temp	
+	storet 2,mem_le_txheader
+	fetch 6,mem_le_lap
+	istore 6,contw
+	fetch 6,mem_le_plap
+	istore 6,contw
+	branch le_transmit_receive_sifs
+
+
+le_send_scan_response:
+	set1 mark_ext_patch,mark
+	bpatch patch2a_1,mem_patch2a
+	arg SCAN_RSP,temp
+	fetch 1,mem_le_adv_own_addr_type
+	nsetflag blank,LE_SENDER_ADDR_BIT,temp
+	storet 1,mem_le_txheader
+	fetcht 1,mem_le_scan_data_len
+	add temp,6,pdata
+	store 1,mem_le_txlen
+	fetch 6,mem_le_lap
+	store 6,mem_le_txpayload
+	arg mem_le_scan_data,contr
+	copy temp,loopcnt
+	call memcpy
+	branch le_transmit_norx
+
+
+le_connect_request:
+	set1 mark_ext_patch,mark
+	bpatch patch2a_2,mem_patch2a
+	force -1,pdata
+	setsect 2,1
+	store 5,mem_le_channel_map
+	call le_calc_channel_map	
+	force 4,loopcnt
+	arg mem_le_access,contw
+	call generate_random_loop	
+	fetch 2,mem_le_conn_superto
+	store 2,mem_le_superto
+le_con_req_hop_retry:
+	random pdata
+	and_into 0xf,pdata
+	sub pdata,4,null
+	branch le_con_req_hop_retry,positive
+	store 1,mem_le_hop
+	store 1,mem_tmp1
+	set1 mark_ext_patch,mark
+	bpatch patch2a_3,mem_patch2a
+	fetcht 2,mem_le_conn_interval
+	storet 2,mem_le_tsniff	
+	copy temp,regc			// tsniff in regc
+	add clkn_bt,7,pdata			// leave space for offset
+	idiv regc
+	call wait_div_end
+	remainder rega
+	isub rega,pdata
+	iadd regc,pdata
+	fetcht 2,mem_le_dsniff
+	iadd temp,pdata
+	store 4,mem_le_anchor
+	isub clkn_bt,rega
+	increase -6,rega			// window offset
+	arg 0x2205,regb			// length & CONN_REQ PDU
+	fetch 1,mem_le_conn_own_addr_type
+	nsetflag blank,LE_SENDER_ADDR_BIT,regb
+	fetch 1,mem_le_conn_peer_addr_type
+	nsetflag blank,LE_RECEIVER_ADDR_BIT,regb
+	copy regb,pdata
+	store 2,mem_le_txheader
+	fetch 6,mem_le_lap
+	istore 6,contw//own addr
+	fetch 6,mem_le_plap
+	istore 6,contw// peer addr
+	fetch 4,mem_le_access
+	istore 4,contw
+	random pdata
+	istore 2,contw				/* crc init */
+	random pdata
+	istore 1,contw
+	force 2,pdata				/* window size */	
+	istore 1,contw
+	rshift2 rega,pdata
+	istore 2,contw				/* window offset */
+	rshift2 regc,pdata			
+	istore 2,contw				/* conn Interval */
+	set1 mark_ext_patch,mark
+	bpatch patch2a_4,mem_patch2a
+	fetch 2,mem_le_conn_latency			/* slave latency */
+	istore 2,contw
+	fetch 2,mem_le_conn_superto
+	istore 2,contw
+	fetch 5,mem_le_channel_map
+	istore 5,contw				/* channel map */
+	fetch 1,mem_le_hop
+	arg param_le_sca,temp
+	ior temp,pdata
+	istore 1,contw
+	call le_transmit_norx
+	setarg mem_le_txheader
+	add pdata,18,contr
+	ifetch 3,contr
+	store 3,mem_le_crcinit
+	rtn
+		
+le_init_adv:
+	set1 mark_ext_patch,mark
+	bpatch patch2a_5,mem_patch2a
+	disable master
+	branch le_adv_access
+	
+
+
+le_update_param:
+	set1 mark_ext_patch,mark
+	bpatch patch2a_6,mem_patch2a
+	fetch 1,mem_le_state
+	rtnbit0 lestate_update_param
+	fetch 2,mem_le_event_count
+	fetcht 2,mem_le_instant
+	isub temp,pdata
+	nrtn positive
+	fetch 1,mem_le_state
+	set0 lestate_update_param,pdata
+	set0 lestate_got_first_packet,pdata
+	store 1,mem_le_state
+	fetch 4,mem_le_anchor
+	fetcht 2,mem_le_tsniff
+	isub temp,rega
+	set1 mark_ext_patch,mark
+	bpatch patch2a_7,mem_patch2a
+	fetch 1,mem_le_new_param
+	store 1,mem_le_window_size
+	ifetcht 2,contr
+	ifetch 2,contr
+	lshift2 pdata,pdata
+	store 2,mem_le_tsniff
+	lshift2 temp,temp
+	iadd temp,pdata
+	ifetcht 4,contr
+	storet 4,mem_le_slave_latency	// and superTO
+	iadd rega,pdata
+	store 4,mem_le_anchor
+	branch le_receive_window_size
+
+le_update_channel_map:
+	set1 mark_ext_patch,mark
+	bpatch patch2b_0,mem_patch2b
+	fetch 1,mem_le_state
+	rtnbit0 lestate_update_map
+	fetch 2,mem_le_event_count
+	fetcht 2,mem_le_instant
+	isub temp,pdata
+	nrtn positive
+	fetch 1,mem_le_state
+	set0 lestate_update_map,pdata
+	store 1,mem_le_state
+ 	fetch 5,mem_le_new_map
+	store 5,mem_le_channel_map
+	branch le_calc_channel_map	
+	
+	
+le_acknowledge:
+	set1 mark_ext_patch,mark
+	bpatch patch2b_1,mem_patch2b
+	call le_supervision_flush
+	call le_check_wak
+	fetch 1,mem_le_rxbuf
+	rshift pdata,pdata
+	ixor temp,pdata
+	isolate1 nesn,pdata
+	setflag true,mark_old_packet,mark	/* retransmit */
+	fetch 1,mem_le_rxbuf+1			
+	branch le_ack_unenc,blank		/* empty packet, no decryption */
+	fetch 1,mem_le_state
+	bbit0 lestate_encryption,le_ack_unenc
+	call load_sk
+	call le_decrypt
+	nrtn blank
+le_ack_unenc:
+	rtnmark1 mark_old_packet
+	fetcht 1,mem_le_arq
+	setflip nesn,temp
+	storet 1,mem_le_arq
+	branch le_parse
+	
+le_check_wak:
+	set1 mark_ext_patch,mark
+	bpatch patch2b_2,mem_patch2b
+	fetcht 1,mem_le_arq
+	isolate0 wak,temp
+	rtn true
+	fetch 1,mem_le_rxbuf
+	lshift pdata,pdata
+	ixor temp,pdata
+	rtnbit0 sn			/* received NESN is same as SN, NAK */
+	set0 wak,temp
+	setflip sn,temp
+	storet 1,mem_le_arq
+	compare 3,temp,3
+	nrtn true
+	fetch 1,mem_le_txpayload
+	rtnne LL_START_ENC_REQ
+	fetch 1,mem_le_state
+	set1 lestate_encryption,pdata
+	store 1,mem_le_state
+	rtn	
+	
+le_wait_adv:
+	set1 mark_ext_patch,mark
+	bpatch patch2b_3,mem_patch2b
+	call le_next_adv_channel
+	call le_receive_adv
+	fetch 1,mem_le_adv_waitcnt
+	increase 1,pdata
+	store 1,mem_le_adv_waitcnt
+	rtn
+
+le_scan:
+	set1 mark_ext_patch,mark
+	bpatch patch2b_4,mem_patch2b
+	fetch 1,mem_le_scan_enable
+	rtnne LE_SCAN_ENABLE
+	arg le_scan_interval_timer,queue
+	call timer_check
+	nrtn blank
+	fetch 2,mem_le_scan_interval
+	fetcht 2,mem_le_scan_window
+	isub temp,pdata
+	arg le_scan_interval_timer,queue
+	call timer_init
+	disable master
+	call le_init_adv
+	call le_wait_adv
+	nrtn match
+	set1 mark_ext_patch,mark
+	bpatch patch2b_5,mem_patch2b
+	fetch 6,mem_le_rxbuf+2
+	store 6,mem_le_plap
+	call le_scan_dongle
+	call le_scan_addr_to_uart
+
+	fetch 1,mem_le_adv_rcv
+	increase 1,pdata
+	store 1,mem_le_adv_rcv
+	call le_create_conn
+	rtn master
+	call hci_send_le_adv_report_event
+	call le_send_scan_request
+	nrtn match
+	set1 mark_ext_patch,mark
+	bpatch patch2b_6,mem_patch2b
+	fetch 1,mem_le_scanrsp_rcv
+	increase 1,pdata
+	store 1,mem_le_scanrsp_rcv
+	fetch 9,mem_le_rxbuf+8
+	store 9,mem_tmp_buffer
+	branch hci_send_le_adv_report_event
+	
+le_create_conn:
+	set1 mark_ext_patch,mark
+	bpatch patch2b_7,mem_patch2b
+	fetch 1,mem_cmd_le_create_conn
+	rtnne hci_cmd_le_create_conn,pdata
+	fetch 6,mem_le_plap
+	fetcht 6,mem_le_conn_peer_addr
+	isub temp,null
+	nrtn zero
+	call context_new
+	nrtn zero
+	call le_connect_request
+	call le_init_master
+	set1 mark_ext_patch,mark
+	bpatch patch2c_0,mem_patch2c
+	jam 0,mem_hci_cmd
+	jam 0,mem_le_peer_sca
+	fetch 1,mem_device_option
+	bne dvc_op_dongle,le_create_conn_ndongle
+	jam CONN_SM_SEND_WRITE_REQ,mem_le_conn_sm
+le_create_conn_ndongle:
+	arg 0,temp//status successful
+	call hci_send_le_conn_complete
+	jam 0,mem_le_scan_enable
+	jam 0,mem_cmd_le_create_conn
+	jam XT_LL_VERSION_IND,mem_fifo_temp
+	call le_xtype_fifo_in
+	branch context_save
+	
+le_scan_check_sender_addr_type:
+	arg 1,rega// sender_addr_type
+	fetch 1,mem_le_rxbuf
+	rtnbit1 LE_SENDER_ADDR_BIT
+	arg 0,rega
+	rtn
+
+le_xtype_fifo_count:
+	arg mem_le_xtype_fifo,contr
+	branch fifo_content_count
+	
+le_xtype_fifo_is_empty:
+	arg mem_le_xtype_fifo,rega
+	branch fifo_is_empty
+	
+le_xtype_fifo_is_full:
+	arg mem_le_xtype_fifo,rega
+	branch fifo_is_full
+	
+le_xtype_fifo_is_near_full:
+	arg mem_le_xtype_fifo,rega
+	branch fifo_is_near_full
+	
+le_xtype_fifo_in:
+	arg mem_le_xtype_fifo,rega	
+	branch fifo_in
+	
+le_prepare_tx:
+	set1 mark_ext_patch,mark
+	bpatch patch2c_1,mem_patch2c
+	fetch 1,mem_le_arq
+	rtnbit1 wak
+	arg mem_le_xtype_fifo,rega
+	call fifo_out
+	nbranch le_prepare_tx_cmd,blank
+	fetch 1,mem_device_option
+	bne dvc_op_hci,le_send_empty
+	arg 0,type
+	call hci_rx_packet //check acl packet
+	copy type,pdata
+	nrtn blank
+	branch le_send_empty
+le_prepare_tx_cmd:
+	copy pdata,temp
+	set1 mark_ext_patch,mark
+	bpatch patch2c_2,mem_patch2c
+	copy temp,pdata
+	bbit0 5,le_prepare_l2cap
+	force 3,type
+	set0 5,pdata
+	store 1,mem_le_txpayload
+	set1 mark_ext_patch,mark
+	bpatch patch2c_3,mem_patch2c
+	fetch 1,mem_le_txpayload
+	beq LL_CONNECTION_UPDATE_REQ,le_send_connection_update_req
+	beq LL_CHANNEL_MAP_REQ,le_send_channel_map_req
+	beq LL_TERMINATE_IND,le_send_terminate_ind
+	beq LL_ENC_REQ,le_send_enc_req
+	beq LL_ENC_RSP,le_send_enc_rsp
+	beq LL_START_ENC_REQ,le_send_start_enc_req
+	beq LL_START_ENC_RSP,le_send_start_enc_rsp
+	beq LL_UNKNOWN_RSP,le_send_unknown_rsp
+	beq LL_FEATURE_REQ,le_send_feature
+	beq LL_FEATURE_RSP,le_send_feature
+	beq LL_PAUSE_ENC_REQ,le_send_pause_enc_req
+	beq LL_PAUSE_ENC_RSP,le_send_pause_enc_rsp
+	beq LL_VERSION_IND,le_send_version_ind
+	beq LL_REJECT_IND,le_send_reject_ind
+	beq LL_CONNECTION_PARAM_REQ,le_send_conn_param_req  //ACL PACKET
+	branch assert
+	
+le_prepare_l2cap:
+	jam 0,mem_le_txcid+1
+	force 2,type
+	bbit0 6,le_prepare_att
+	beq ATTOP_WRITE_COMMAND,le_prepare_att
+	beq ATTOP_SIGNED_WRITE_COMMAND,le_prepare_att
+	jam LE_L2CAP_CID_SMP,mem_le_txcid
+	set0 6,pdata
+	store 1,mem_le_l2cap
+le_prepare_smp:
+	set1 mark_ext_patch,mark
+	bpatch patch2c_4,mem_patch2c
+	fetch 1,mem_le_l2cap
+le_prepare_smp0:
+	beq SMP_PAIRING_REQUEST,le_send_smp_pairing_request             
+	beq SMP_PAIRING_RESPONSE,le_send_smp_pairing_response            
+	beq SMP_PAIRING_CONFIRM,le_send_smp_pairing_confirm             
+	beq SMP_PAIRING_RANDOM,le_send_smp_pairing_random              
+	beq SMP_PAIRING_FAILED,le_send_smp_pairing_failed              
+	beq SMP_ENCRYPTION_INFORMATION,le_send_smp_encryption_information      
+	beq SMP_MASTER_IDENTIFICATION,le_send_smp_master_identification       
+	beq SMP_IDENTITY_INFORMATION,le_send_smp_identity_information        
+	beq SMP_IDENTITY_ADDRESS_INFORMATION,le_send_smp_identity_address_information
+	beq SMP_SIGNING_INFORMATION,le_send_smp_signing_information         
+	beq SMP_SECURITY_REQUEST,le_send_smp_security_request            
+	branch assert
+	
+le_prepare_att:
+	jam LE_L2CAP_CID_ATT,mem_le_txcid
+	store 1,mem_le_l2cap
+	set1 mark_ext_patch,mark
+	bpatch patch2c_5,mem_patch2c
+le_prepare_att0:
+	fetch 1,mem_le_l2cap
+	beq ATTOP_ERROR_RESPONSE,le_send_att_error_response
+	beq ATTOP_EXCHANGE_MTU_REQUEST,le_send_att_exchange_mtu
+	beq ATTOP_EXCHANGE_MTU_RESPONSE,le_send_att_exchange_mtu
+	beq ATTOP_FIND_INFORMATION_REQUEST,le_send_att_find_information_request
+	beq ATTOP_FIND_INFORMATION_RESPONSE,le_send_att_find_information_response
+	beq ATTOP_FIND_BY_TYPE_VALUE_REQUEST,le_send_att_find_by_type_value_request
+	beq ATTOP_FIND_BY_TYPE_VALUE_RESPONSE,le_send_att_find_by_type_value_response
+	beq ATTOP_READ_BY_TYPE_REQUEST,le_send_att_read_by_type_request
+	beq ATTOP_READ_BY_TYPE_RESPONSE,le_send_att_read_by_type_response
+	beq ATTOP_READ_REQUEST,le_send_att_read_request
+	beq ATTOP_READ_RESPONSE,le_send_att_read_response
+	beq ATTOP_READ_BLOB_REQUEST,le_send_att_read_blob_request
+	beq ATTOP_READ_BLOB_RESPONSE,le_send_att_read_blob_response
+	beq ATTOP_READ_MULTIPLE_REQUEST,le_send_att_read_multiple_request
+	beq ATTOP_READ_MULTIPLE_RESPONSE,le_send_att_read_multiple_response
+	beq ATTOP_READ_BY_GROUP_TYPE_REQUEST,le_send_att_read_by_group_type_request
+	beq ATTOP_READ_BY_GROUP_TYPE_RESPONSE,le_send_att_read_by_group_type_response
+	beq ATTOP_WRITE_REQUEST,le_send_att_write_request
+	beq ATTOP_WRITE_RESPONSE,le_send_att_write_response
+	beq ATTOP_PREPARE_WRITE_REQUEST,le_send_att_prepare_write_request
+	beq ATTOP_PREPARE_WRITE_RESPONSE,le_send_att_prepare_write_response
+	beq ATTOP_EXECUTE_WRITE_REQUEST,le_send_att_execute_write_request
+	beq ATTOP_EXECUTE_WRITE_RESPONSE,le_send_att_execute_write_response
+	beq ATTOP_HANDLE_VALUE_NOTIFICATION,le_send_att_handle_value_notification
+	beq ATTOP_HANDLE_VALUE_INDICATION,le_send_att_handle_value_indication
+	beq ATTOP_HANDLE_VALUE_CONFIRMATION,le_send_att_handle_value_confirmation
+	beq ATTOP_WRITE_COMMAND,le_send_att_write_command
+	beq ATTOP_SIGNED_WRITE_COMMAND,le_send_att_signed_write_command
+	beq EMPTY_LE_DATA_PRE,le_send_empty_le_data_pre
+	beq EMPTY_LE_DATA,le_send_empty_le_data
+	branch assert
+	
+le_send_empty_le_data_pre:
+	jam ATTOP_READ_BY_GROUP_TYPE_REQUEST,mem_fifo_temp
+	call le_xtype_fifo_in
+	
+le_send_empty_le_data:
+	setarg 0x0011
+	store 2,mem_le_txheader
+	fetch 1,mem_le_arq
+	set1 wak,pdata
+	store 1,mem_le_arq
+	jam ATTOP_WRITE_REQUEST,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+le_send_connection_update_req:
+	force 12,temp
+	branch le_send_packet
+	
+le_send_channel_map_req:
+	force 8,temp
+	branch le_send_packet
+	
+le_send_terminate_ind:
+	force 2,temp
+	branch le_send_packet
+	
+le_send_enc_req:
+	force 0,pdata
+	istore 8,contw					/* RAND=0 */
+	istore 2,contw					/* EDIV=0 */
+	copy contw,temp
+	arg mem_le_skdm,contw
+	force 8,loopcnt
+	call generate_random_loop
+	fetch 8,mem_le_skdm
+	istore 8,temp					/* SKDm */
+	copy contw,temp
+	arg mem_le_ivm,contw
+	force 4,loopcnt
+	call generate_random_loop
+	fetch 4,mem_le_ivm
+	istore 4,temp					/* IVm */
+	force 23,temp
+	branch le_send_packet
+	
+le_send_enc_rsp:
+	copy contw,temp
+	arg mem_le_skds,contw
+	force 8,loopcnt
+	call generate_random_loop
+	fetch 8,mem_le_skds
+	istore 8,temp					/* SKDs */
+	copy contw,temp
+	arg mem_le_ivs,contw
+	force 4,loopcnt
+	call generate_random_loop
+	fetch 4,mem_le_ivs
+	istore 4,temp					/* IVs */
+	call generate_sk
+	jam XT_LL_START_ENC_REQ,mem_fifo_temp
+	call le_xtype_fifo_in
+	force 13,temp
+	branch le_send_packet
+	
+le_send_start_enc_req:
+	force 1,temp
+	branch le_send_packet
+	
+le_send_start_enc_rsp:
+	force 1,temp
+	branch le_send_packet,master
+	jam XT_SMP_ENCRYPTION_INFORMATION,mem_fifo_temp
+	call le_xtype_fifo_in
+	force 1,temp
+	branch le_send_packet
+	
+le_send_unknown_rsp:
+	force 2,temp
+	branch le_send_packet
+	
+le_send_feature:
+	setarg param_le_features
+	istore 8,contw
+	force 9,temp
+	branch le_send_packet
+	
+le_send_pause_enc_req:
+	force 6,temp
+	branch le_send_packet
+	
+le_send_pause_enc_rsp:
+	force 6,temp
+	branch le_send_packet
+	
+le_send_version_ind:
+	setarg param_le_version
+	istore 3,contw
+	setarg param_le_subversion
+	istore 2,contw
+	force 6,temp
+	branch le_send_packet
+	
+le_send_reject_ind:
+	force 2,temp
+	branch le_send_packet
+
+le_send_conn_param_req:
+	increase -1,contw
+	setarg 0x000c
+	istore 2,contw //Length
+	setarg 0x0005
+	istore 2,contw	//CID
+	setarg 0xb412
+	istore 2,contw		
+	setarg 0x0008
+	istore 2,contw
+	setarg 0x0008
+	istore 2,contw //min interval
+	setarg 0x0010
+	istore 2,contw //max interval
+	setarg 0
+	istore 2,contw //latency
+	setarg 0x012c
+	istore 2,contw //timeout	
+	call le_send_autolen
+	force 2,type
+	branch le_send_packet
+
+le_send_smp_pairing_request:
+	setarg 0x1000401
+	store 4,mem_le_preq
+	setarg 0x070710
+	istore 3,contw
+	fetch 6,mem_le_preq+1
+	store 6,mem_le_l2cap_response
+	force 11,temp
+	branch le_send_packet
+	
+le_send_smp_pairing_response:
+	setarg param_smp_paring_response	
+	store 4,mem_le_pres
+	setarg param_smp_key_dist
+	istore 3,contw
+	fetch 6,mem_le_pres+1
+	store 6,mem_le_l2cap_response
+	force 11,temp
+	branch le_send_packet
+	
+le_send_smp_pairing_confirm:
+	call generate_confirm
+	arg mem_le_l2cap_response,contw
+	call store_aes_result
+	force 21,temp
+	branch le_send_packet
+	
+le_send_smp_pairing_random:
+	fetch 8,mem_le_mrand
+	branch le_send_smp_mrandom,master
+	fetch 8,mem_le_srand
+	
+le_send_smp_mrandom:
+	call le_send_smp_128
+	branch le_send_packet
+	
+le_send_smp_pairing_failed:
+	force 6,temp
+	branch le_send_packet
+	
+le_send_smp_encryption_information:
+	jam BT_EVT_LE_ENC_INFO,mem_fifo_temp
+	call ui_ipc_send_event
+	jam XT_SMP_MASTER_IDENTIFICATION,mem_fifo_temp
+	call le_xtype_fifo_in
+	arg mem_le_my_ltk,contw
+	call generate_random
+	fetch 8,mem_le_my_ltk
+	fetch 8,mem_le_ltk
+	call le_send_smp_128
+	branch le_send_packet
+	
+le_send_smp_master_identification:
+	jam XT_SMP_IDENTITY_INFORMATION,mem_fifo_temp
+	call le_xtype_fifo_in
+	arg mem_le_l2cap_response,contw
+	force 8,loopcnt
+	call generate_random_loop
+	force 15,temp
+	branch le_send_packet
+	
+le_send_smp_identity_information:
+	jam XT_SMP_IDENTITY_ADDRESS_INFORMATION,mem_fifo_temp
+	call le_xtype_fifo_in
+	arg mem_le_l2cap_response,contw
+	call generate_random
+	branch le_send_autolen
+	
+le_send_smp_identity_address_information:
+	jam XT_SMP_SIGNING_INFORMATION,mem_fifo_temp
+	call le_xtype_fifo_in
+	force 0,pdata						/* address type:PUBLIC */
+	store 1,mem_le_l2cap_response
+	fetch 6,mem_le_lap
+	istore 6,contw
+	branch le_send_autolen
+	
+le_send_smp_signing_information:
+	arg mem_le_l2cap_response,contw
+	call generate_random
+	branch le_send_autolen
+	
+le_send_smp_security_request:
+	force 6,temp
+	branch le_send_packet
+	
+le_send_smp_128:
+	store 8,mem_le_l2cap_response
+	ifetch 8,contr
+	istore 8,contw
+	force 21,temp
+	rtn
+
+le_send_att_error_response_notfound:	
+	jam ATT_ERR_ATTRIBUTE_NOT_FOUND,mem_le_err_code
+le_send_att_error_response:	
+	jam ATTOP_ERROR_RESPONSE,mem_le_l2cap
+	fetch 3,mem_le_att_opcode
+	store 3,mem_le_l2cap_response
+	fetch 1,mem_le_err_code
+	istore 1,contw
+	branch le_send_autolen
+	
+le_send_att_exchange_mtu:
+	setarg param_le_mtu
+	istore 2,contw
+	branch le_send_autolen
+	
+le_send_att_find_information_request:
+	fetch 2,mem_le_search_handle_start
+	store 2,mem_le_l2cap_response
+	fetch 2,mem_le_search_handle_end
+	istore 2,contw
+	branch le_send_autolen
+	
+	
+
+le_send_att_find_information_response:
+	force 1,pdata
+	store 1,mem_le_l2cap_response
+	call le_init_attlist_search
+le_send_att_find_information_res_loop:
+	call le_att_handle_inrange
+	branch le_send_att_find_information_res_end,blank
+	nbranch le_send_att_find_information_res_next,positive
+	disable user
+	istore 2,contw
+	ifetch 2,contr
+	istore 2,contw
+le_send_att_find_information_res_cont:
+	ifetch 1,contr
+	iadd contr,contr
+	branch le_send_att_find_information_res_loop
+le_send_att_find_information_res_next:
+	increase 2,contr
+	branch le_send_att_find_information_res_cont
+le_send_att_find_information_res_end:
+	branch le_send_att_error_response_notfound,user
+	branch le_send_autolen
+
+	
+le_send_att_find_by_type_value_request:
+	fetch 2,mem_le_search_handle_start
+	branch le_send_empty_le_data,blank
+	store 2,mem_le_l2cap_response
+	fetch 2,mem_le_search_handle_end
+	//setarg 0xffff
+	istore 2,contw
+	fetch 2,mem_le_uuid
+	//setarg 0x2800
+	istore 2,contw
+	fetch 2,mem_le_search_att_type
+	//setarg 0x1801
+	istore 2,contw
+	branch le_send_autolen
+
+	
+le_send_att_find_by_type_value_response:
+	call le_start_end_handle_check_1
+	rtn user
+	fetcht 2,mem_le_uuid
+	setarg UUID_GATT_PRIMARY_SERVICE
+	isub temp,null
+	branch le_send_att_find_by_type_value_res_primary,zero
+	setarg UUID_GATT_SECONDARY_SERVICE
+	isub temp,null
+	branch le_send_att_error_response_notfound,zero
+	setarg UUID_GATT_INCLUDE
+	isub temp,null
+	branch le_send_att_error_response_notfound,zero
+	setarg UUID_GATT_CHARACTERISTIC
+	isub temp,null
+	branch le_send_att_error_response_notfound,zero
+	branch le_send_att_error_response_notfound
+	
+le_send_att_find_by_type_value_res_primary:
+	fetcht 2,mem_le_search_att_type
+	increase 2,contr
+	ifetch 1,contr
+	icopy regc //primary service number
+	increase 1,regc
+	
+le_send_att_find_by_type_value_res_primary_search_loop:
+         increase -1,regc
+         branch le_send_att_error_response_notfound,zero
+         ifetch 2,contr
+	isub temp,null
+	branch le_send_att_find_by_type_value_res_primary_search_end,zero
+	increase 4,contr
+	branch le_send_att_find_by_type_value_res_primary_search_loop
+	
+le_send_att_find_by_type_value_res_primary_search_end:
+	ifetch 2,contr
+	icopy rega//handle start
+	ifetch 2,contr
+	icopy regb//handle end	
+	call le_start_end_handle_check_2
+	rtn user
+	jam ATTOP_FIND_BY_TYPE_VALUE_RESPONSE,mem_le_l2cap
+	deposit rega
+	store 2,mem_le_l2cap_response
+	deposit regb
+	istore 2,contw
+	force 9,temp
+	branch le_send_packet
+	
+
+
+
+le_start_end_handle_check_1:
+	disable user
+	fetcht 2,mem_le_search_handle_start
+	fetch 2,mem_le_search_handle_end
+	isub temp,null
+	nbranch le_start_end_handle_check_1_fail,positive
+	deposit temp
+	rtnne 0
+         
+le_start_end_handle_check_1_fail:
+	enable user
+le_send_att_invalid_handle:
+	jam ATT_ERR_INVALID_HANDLE,mem_le_err_code
+	branch le_send_att_error_response
+	
+le_start_end_handle_check_2:
+	disable user
+	fetcht 2,mem_le_search_handle_start
+	deposit rega
+	isub temp,null
+	nbranch le_start_end_handle_check_2_fail,positive
+	fetch 2,mem_le_search_handle_end
+	isub regb,null
+	nbranch le_start_end_handle_check_2_fail,positive
+	deposit regb
+	isub rega,null
+	nbranch le_start_end_handle_check_2_fail,positive
+	rtn
+         
+le_start_end_handle_check_2_fail:
+	enable user
+	branch le_send_att_error_response_notfound
+
+	
+le_send_att_read_by_type_request:
+	fetch 2,mem_le_search_handle_start
+//	setarg 0x0001
+	istore 2,contw
+	fetch 2,mem_le_search_handle_end
+//	setarg 0x0018
+	istore 2,contw
+	fetch 2,mem_le_search_att_type
+	istore 2,contw
+	force 11,temp
+	branch le_send_packet
+
+	
+le_send_att_read_by_type_response:
+	fetcht 2,mem_le_search_att_type
+	setarg UUID_GATT_CHARACTERISTIC
+	isub temp,null
+	setarg 7
+	branch le_send_att_read_by_type_res_cont,zero
+	setarg UUID_GATT_PRIMARY_SERVICE
+	isub temp,null
+	setarg 6
+	branch le_send_att_read_by_type_res_cont,zero
+	branch le_send_att_error_response_notfound
+le_send_att_read_by_type_res_cont:
+	store 1,mem_le_l2cap_response
+	call le_init_attlist_search
+	force 3,alarm
+le_send_att_read_by_type_res_loop:
+	call le_att_handle_inrange
+	branch le_send_att_read_by_type_res_end,blank
+	nbranch le_send_att_read_by_type_res_next,positive
+	iforce rega
+	ifetch 2,contr
+	isub temp,null
+	nbranch le_send_att_read_by_type_res_next2,zero
+	disable user
+	deposit rega
+	istore 2,contw
+	ifetch 1,contr
+	add pdata,4,loopcnt
+	call memcpy
+	increase -1,alarm
+	branch le_send_att_read_by_type_res_end,zero
+	branch le_send_att_read_by_type_res_next2
+le_send_att_read_by_type_res_next:
+	increase 2,contr
+le_send_att_read_by_type_res_next2:
+	ifetch 1,contr
+	iadd contr,contr
+	branch le_send_att_read_by_type_res_loop
+le_send_att_read_by_type_res_end:
+	branch le_send_att_error_response_notfound,user
+	branch le_send_autolen
+
+	
+le_send_att_read_request:
+	fetch 1,mem_le_temp
+	//branch le_send_att_read_req_end,blank
+         increase -1,pdata
+         store 1,mem_le_temp
+         lshift pdata,pdata
+         //increase -2,pdata
+         iadd contr,contr
+         ifetcht 2,contr
+         storet 2,mem_le_l2cap_response
+	branch le_send_autolen
+	
+le_send_att_read_response:
+	fetcht 2,mem_le_att_handle
+	call le_att_get_handle_ptr
+	branch le_send_att_error_response_notfound,blank
+	ifetch 1,contr
+	branch le_send_autolen,blank
+	sub pdata,22,null
+	branch le_send_att_read_response_less,positive
+	force 22,pdata
+le_send_att_read_response_less:
+	icopy loopcnt
+	call memcpy
+	branch le_send_autolen
+
+	
+le_send_att_read_blob_request:
+	setarg 0x0003
+	store 2,mem_le_l2cap_response
+	setarg 0x0008
+	istore 2,contw
+	branch le_send_autolen
+	
+le_send_att_read_blob_response:
+	fetch 2,mem_le_att_offset
+	iforce rega
+	fetcht 2,mem_le_att_handle
+	call le_att_get_handle_ptr 
+	branch le_send_att_error_response_notfound,blank
+	ifetch 1,contr
+	isub rega,loopcnt
+	nbranch le_send_att_error_response_notfound,positive
+	sub loopcnt,22,null
+	branch le_send_att_read_blob_response_less,positive
+	force 22,loopcnt
+le_send_att_read_blob_response_less:
+	deposit rega
+	iadd contr,contr
+	call memcpy	
+	branch le_send_autolen
+	
+le_send_att_read_multiple_request:
+	setarg 0x0003
+	istore 2,contw
+	setarg 0x0007
+	istore 2,contw
+	setarg 0x0009
+	istore 2,contw
+	branch le_send_autolen
+	
+le_send_att_read_multiple_response:
+	fetch 1,mem_le_temp
+	icopy regc//handle number
+	arg mem_le_rxbuf+7,rega
+	arg mem_le_l2cap_response,regb
+	arg 0,timeup
+	disable user7
+
+le_send_att_read_multiple_response_loop:
+	copy rega,contr
+	ifetcht 2,contr
+	copy contr,rega
+	call le_att_get_handle_ptr 
+	branch le_send_att_read_multiple_response_end,blank
+	ifetch 1,contr
+	icopy loopcnt
+	iadd timeup,timeup
+	//deposit timeup
+	//store 1,0x1ff3
+	//branch loop	
+	sub timeup,24,null
+	nbranch le_send_att_read_multiple_response_end_1,positive
+	copy regb,contw
+	
+le_copy_att_value_loop_3:
+	ifetch 1,contr
+	istore 1,contw
+	loop le_copy_att_value_loop_3
+	copy contw,regb
+	enable user7
+	increase -1,regc
+	branch le_send_att_read_multiple_response_end,zero
+	branch le_send_att_read_multiple_response_loop
+
+le_send_att_read_multiple_response_end:
+	nbranch le_send_att_read_multiple_response_fail,user7
+	disable user7
+	copy timeup,temp
+	increase 5,temp
+	branch le_send_packet
+	
+le_send_att_read_multiple_response_end_1:
+	nbranch le_send_att_read_multiple_response_fail,user7
+	disable user7
+	deposit timeup
+	isub loopcnt,temp
+	increase 5,temp
+	branch le_send_packet
+	
+le_send_att_read_multiple_response_fail:
+	jam ATT_ERR_UNSUPPORTED_GROUP_TYPE,mem_le_err_code
+	branch le_send_att_error_response
+
+	
+le_send_att_read_by_group_type_request:
+	fetch 2,mem_le_att_handle
+	branch le_send_empty_le_data,blank
+	istore 2,contw
+	setarg 0xffff
+	istore 2,contw
+	setarg 0x2800
+	istore 2,contw
+	branch le_send_autolen
+
+	
+le_send_att_read_by_group_type_response:
+	setarg 0x06
+	store 1,mem_le_l2cap_response
+	fetch 2,mem_le_search_att_type
+	iforce rega
+	call le_init_attlist_search
+	force 3,loopcnt
+le_send_att_read_by_group_type_response_loop:
+	call le_att_handle_inrange
+	branch le_send_att_read_by_group_type_response_last,blank
+	nbranch le_send_att_read_by_group_type_response_next,positive
+	iforce alarm
+	ifetch 2,contr
+	isub rega,null			/* same type? */
+	nbranch le_send_att_read_by_group_type_response_cont,zero
+	deposit alarm
+	branch le_send_att_read_by_group_type_response_first,user
+	increase -1,pdata
+	istore 2,contw			/* end handle */
+	istoret 2,contw			/* type uuid */
+	increase 1,pdata
+	increase -1,loopcnt
+	branch le_send_autolen,zero
+le_send_att_read_by_group_type_response_first:
+	disable user
+	istore 2,contw			/* start handle */
+	increase 1,contr
+	ifetcht 2,contr
+	increase -3,contr
+	branch le_send_att_read_by_group_type_response_cont
+le_send_att_read_by_group_type_response_last:
+	branch le_send_att_error_response_notfound,user
+	force -1,pdata
+	istore 2,contw
+	istoret 2,contw
+	branch le_send_autolen
+le_send_att_read_by_group_type_response_next:
+	increase 2,contr
+le_send_att_read_by_group_type_response_cont:
+	ifetch 1,contr
+	iadd contr,contr
+	branch le_send_att_read_by_group_type_response_loop
+	
+
+	
+le_send_att_write_request:
+	fetch 2,mem_le_notify_handle
+	store 2,mem_le_l2cap_response
+	fetch 1,mem_le_handle_data_len
+	copy pdata,loopcnt
+	arg mem_le_handle_data,contr
+	call memcpy
+	branch le_send_autolen
+	
+le_send_att_write_response:
+	fetcht 2,mem_le_att_handle
+	call le_att_get_handle_ptr
+	branch le_send_att_write_response_go,blank
+	increase -2,contr
+	ifetcht 2,contr
+	setarg UUID_CLIENT_CHARACTERISTIC
+	isub temp,null
+	nbranch le_send_att_write_response_go,zero
+	increase 1,contr
+	ifetcht 2,contr
+	setarg 0x0001
+	isub temp,null
+	branch le_send_att_write_response_notify,zero
+	setarg 0x0000
+	isub temp,null
+	nbranch le_send_att_write_response_go,zero
+	branch le_send_att_write_response_go
+	
+le_send_att_write_response_notify:
+	increase -7,contr
+	ifetch 2,contr
+	increase -1,pdata
+	store 2,mem_le_notify_handle	
+	jam ATTOP_HANDLE_VALUE_NOTIFICATION,mem_fifo_temp
+	call le_xtype_fifo_in
+//	jam	CONN_SM_NOTIFY,mem_le_conn_sm
+
+le_send_att_write_response_go:
+	force 5,temp
+	branch le_send_packet
+
+le_send_att_prepare_write_request:
+	force 6,temp
+	branch le_send_packet
+	
+le_send_att_prepare_write_response:
+	force 6,temp
+	branch le_send_packet
+	
+le_send_att_execute_write_request:
+	force 6,temp
+	branch le_send_packet
+	
+le_send_att_execute_write_response:
+	force 6,temp
+	branch le_send_packet
+
+le_att_check_notification_enable: // temp ->handle,output-> pdata,output :contr->rega
+	set1 mark_ext_patch,mark
+	bpatch patch2c_6,mem_patch2c
+	increase 1,temp
+	call le_att_get_handle_ptr
+	increase -2,contr
+	ifetch 2,contr
+	arg CLIENT_CHARACTERTIC_CONFIGURATION,temp
+	isub temp,null
+	nrtn zero
+	increase 1,contr
+	copy contr,rega
+	ifetch 1,contr
+	rtn
+	
+le_send_att_handle_value_notification:
+	jam 0,mem_le_notify_len
+	fetch 2,mem_cb_update_notify_value
+	call callback_func
+	arg mem_le_l2cap,contw
+	increase 1,contw
+	fetcht 2,mem_le_notify_handle
+	istoret 2,contw
+	call le_att_get_handle_ptr 
+	ifetch 1,contr
+	icopy loopcnt
+	call memcpy
+	fetcht 1,mem_le_notify_len
+	increase 7,temp
+	call le_send_packet
+	branch le_clear_notify_att
+
+le_send_att_handle_value_indication:
+	force 6,temp
+	branch le_send_packet
+	
+le_send_att_handle_value_confirmation:
+	force 6,temp
+	branch le_send_packet
+	
+le_send_att_write_command:
+	force 6,temp
+	branch le_send_packet
+	
+le_send_att_signed_write_command:
+	force 6,temp
+	branch le_send_packet
+
+
+le_send_autolen:
+	set1 mark_ext_patch,mark
+	bpatch patch2c_7,mem_patch2c
+	setarg mem_le_txpayload
+	isub contw,pdata
+	sub pdata,0,temp
+	branch le_send_packet
+
+
+le_send_empty:
+	force 0,temp
+	force 1,type
+	
+le_send_packet:
+	set1 mark_ext_patch,mark
+	bpatch patch2d_0,mem_patch2d
+	storet 1,mem_le_txlen
+	compare 2,type,3
+	nbranch le_send_non_l2cap,true
+	add temp,-4,pdata
+	store 2,mem_le_txpayload
+	
+le_send_non_l2cap:
+	fetcht 1,mem_le_arq
+	call le_xtype_fifo_is_empty
+	nsetflag blank,md,temp
+	set1 wak,temp
+	and temp,0xfc,pdata
+	ior type,pdata
+	store 1,mem_le_arq
+	and_into 0x1f,pdata
+	store 1,mem_le_txheader
+	set1 mark_ext_patch,mark
+	bpatch patch2d_1,mem_patch2d
+	fetch 1,mem_le_txheader
+	compare 1,type,3
+	rtn true
+	fetch 7,mem_le_txheader+1
+	fetch 1,mem_le_state
+	rtnbit0 lestate_encryption
+	call load_sk
+	branch le_encrypt
+	
+le_parse:
+	set1 mark_ext_patch,mark
+	bpatch patch2d_2,mem_patch2d
+	call le_xtype_fifo_is_full
+	nbranch assert,blank
+	nrtn blank // xtype fifo full
+	fetch 1,mem_le_rxbuf+1
+	rtn blank
+	fetch 1,mem_le_rxbuf
+	compare 1,pdata,3
+	branch le_parse_l2cap,true //ACL-U continue or empty packet
+	fetch 7,mem_le_rxbuf+1
+	fetch 1,mem_le_rxbuf
+	compare 2,pdata,3
+	branch le_parse_l2cap,true
+	fetch 1,mem_le_rxbuf+2
+	store 1,mem_le_rx_ll_opcode
+	copy pdata,regc
+	set1 mark_ext_patch,mark
+	bpatch patch2d_3,mem_patch2d
+	copy regc,pdata
+	beq LL_CONNECTION_UPDATE_REQ,le_parse_connection_update_req
+	beq LL_CHANNEL_MAP_REQ,le_parse_channel_map_req
+	beq LL_TERMINATE_IND,le_parse_terminate_ind
+	beq LL_ENC_REQ,le_parse_enc_req
+	beq LL_ENC_RSP,le_parse_enc_rsp
+	beq LL_START_ENC_REQ,le_parse_start_enc_req
+	beq LL_START_ENC_RSP,le_parse_start_enc_rsp
+	beq LL_UNKNOWN_RSP,le_parse_unknown_rsp
+	beq LL_FEATURE_REQ,le_parse_feature_req
+	beq LL_FEATURE_RSP,le_parse_feature_rsp
+	beq LL_PAUSE_ENC_REQ,le_parse_pause_enc_req
+	beq LL_PAUSE_ENC_RSP,le_parse_pause_enc_rsp
+	beq LL_VERSION_IND,le_parse_version_ind
+	beq LL_REJECT_IND,le_parse_reject_ind
+	branch assert
+	
+le_parse_l2cap:
+	fetch 1,mem_le_rxbuf+1
+	and pdata,0x1f,pdata //get length
+	rtn blank//empty packet
+	fetch 1,mem_device_option
+	beq dvc_op_hci,le_acl_upgoing
+	fetch 2,mem_le_rxbuf+4//CID
+	beq LE_L2CAP_CID_ATT,le_parse_att
+	beq LE_L2CAP_CID_SMP,le_parse_smp
+	rtn
+
+le_acl_upgoing: //upgoing ACL, from air to host
+	set1 mark_ext_patch,mark
+	bpatch patch2d_4,mem_patch2d
+	call hci_get_packet_ptr
+	fetch 1,mem_le_conn_handle
+	fetcht 1,mem_le_rxbuf//LLID low 2 bits
+	and_into 3,temp
+	lshift8 temp,temp
+	lshift4 temp,temp
+	ior temp,pdata
+	istore 2,contwu
+	fetcht 1,mem_le_rxbuf+1
+	and temp,0x1f,temp
+	istoret 2,contwu //length
+	copy temp,loopcnt
+	call uart_copy_tx_bytes
+	add temp,4,loopcnt
+	call h4_send_packet_acl
+	branch h4_send_acl_trigger
+
+le_acl_downgoing: //downgoing ACL, from host to air
+	set1 mark_ext_patch,mark
+	bpatch patch2d_5,mem_patch2d
+	arg 0x2,type
+	ifetch 2,contru
+	ifetch 2,contru //length
+	branch assert,blank
+	copy pdata,loopcnt
+	arg mem_le_txpayload,contw
+	call uart_copy_rx_bytes	
+	branch le_send_autolen
+	
+le_parse_smp:
+	set1 mark_ext_patch,mark
+	bpatch patch2d_6,mem_patch2d
+	ifetch 1,contr
+	beq SMP_PAIRING_REQUEST,le_parse_smp_pairing_request
+	beq SMP_PAIRING_RESPONSE,le_parse_smp_pairing_response
+	beq SMP_PAIRING_CONFIRM,le_parse_smp_pairing_confirm
+	beq SMP_PAIRING_RANDOM,le_parse_smp_pairing_random
+	beq SMP_PAIRING_FAILED,le_parse_smp_pairing_failed
+	beq SMP_ENCRYPTION_INFORMATION,le_parse_smp_encryption_information
+	beq SMP_MASTER_IDENTIFICATION,le_parse_smp_master_identification
+	beq SMP_IDENTITY_INFORMATION,le_parse_smp_identity_information
+	beq SMP_IDENTITY_ADDRESS_INFORMATION,le_parse_smp_identity_address_information
+	beq SMP_SIGNING_INFORMATION,le_parse_smp_signing_information
+	beq SMP_SECURITY_REQUEST,le_parse_smp_security_request
+	branch assert
+	
+le_parse_att:
+	set1 mark_ext_patch,mark
+	bpatch patch2d_7,mem_patch2d
+	ifetch 3,contr
+	store 3,mem_le_att_opcode
+le_parse_att_p:
+	beq ATTOP_ERROR_RESPONSE,le_parse_att_error_response
+	beq ATTOP_EXCHANGE_MTU_REQUEST,le_parse_att_exchange_mtu_request
+	beq ATTOP_EXCHANGE_MTU_RESPONSE,le_parse_att_exchange_mtu_response
+	beq ATTOP_FIND_INFORMATION_REQUEST,le_parse_att_find_information_request
+	beq ATTOP_FIND_INFORMATION_RESPONSE,le_parse_att_find_information_response
+	beq ATTOP_FIND_BY_TYPE_VALUE_REQUEST,le_parse_att_find_by_type_value_request
+	beq ATTOP_FIND_BY_TYPE_VALUE_RESPONSE,le_parse_att_find_by_type_value_response
+	beq ATTOP_READ_BY_TYPE_REQUEST,le_parse_att_read_by_type_request
+	beq ATTOP_READ_BY_TYPE_RESPONSE,le_parse_att_read_by_type_response
+	beq ATTOP_READ_REQUEST,le_parse_att_read_request
+	beq ATTOP_READ_RESPONSE,le_parse_att_read_response
+	beq ATTOP_READ_BLOB_REQUEST,le_parse_att_read_blob_request
+	beq ATTOP_READ_BLOB_RESPONSE,le_parse_att_read_blob_response
+	beq ATTOP_READ_MULTIPLE_REQUEST,le_parse_att_read_multiple_request
+	beq ATTOP_READ_MULTIPLE_RESPONSE,le_parse_att_read_multiple_response
+	beq ATTOP_READ_BY_GROUP_TYPE_REQUEST,le_parse_att_read_by_group_type_request
+	beq ATTOP_READ_BY_GROUP_TYPE_RESPONSE,le_parse_att_read_by_group_type_response
+	beq ATTOP_WRITE_REQUEST,le_parse_att_write_request
+	beq ATTOP_WRITE_RESPONSE,le_parse_att_write_response
+	beq ATTOP_PREPARE_WRITE_REQUEST,le_parse_att_prepare_write_request
+	beq ATTOP_PREPARE_WRITE_RESPONSE,le_parse_att_prepare_write_response
+	beq ATTOP_EXECUTE_WRITE_REQUEST,le_parse_att_execute_write_request
+	beq ATTOP_EXECUTE_WRITE_RESPONSE,le_parse_att_execute_write_response
+	beq ATTOP_HANDLE_VALUE_NOTIFICATION,le_parse_att_handle_value_notification
+	beq ATTOP_HANDLE_VALUE_INDICATION,le_parse_att_handle_value_indication
+	beq ATTOP_HANDLE_VALUE_CONFIRMATION,le_parse_att_handle_value_confirmation
+	beq ATTOP_WRITE_COMMAND,le_parse_att_write_command
+	beq ATTOP_SIGNED_WRITE_COMMAND,le_parse_att_signed_write_command
+	branch assert
+
+
+le_parse_connection_update_req:
+	ifetch 9,contr
+	store 9,mem_le_new_param
+	ifetch 2,contr
+	store 2,mem_le_instant
+	fetch 1,mem_le_state
+	set1 lestate_update_param,pdata
+	store 1,mem_le_state
+	rtn
+	
+le_parse_channel_map_req:
+	ifetch 5,contr
+	store 5,mem_le_new_map
+	ifetch 2,contr
+	store 2,mem_le_instant
+	fetch 1,mem_le_state
+	set1 lestate_update_map,pdata
+	store 1,mem_le_state
+	rtn
+	
+le_parse_terminate_ind:
+	fetch 1,mem_le_op
+	set1 op_disconn,pdata
+	store 1,mem_le_op
+	rtn
+	
+le_parse_enc_req:
+	increase 10,contr
+	ifetch 8,contr
+	store 8,mem_le_skdm
+	ifetch 4,contr
+	store 4,mem_le_ivm
+	jam XT_LL_ENC_RSP,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+le_parse_enc_rsp:
+	ifetch 8,contr
+	store 8,mem_le_skds
+	ifetch 4,contr
+	store 4,mem_le_ivs
+	branch generate_sk
+	
+le_parse_start_enc_req:
+	fetch 1,mem_le_state
+	set1 lestate_encryption,pdata
+	store 1,mem_le_state
+	jam XT_LL_START_ENC_RSP,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+le_parse_start_enc_rsp:
+	rtn master
+	jam XT_LL_START_ENC_RSP,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+le_parse_unknown_rsp:
+	rtn
+	
+le_parse_feature_req:
+	jam XT_LL_FEATURE_RSP,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+le_parse_feature_rsp:
+	rtn
+	
+le_parse_pause_enc_req:
+	rtn
+	
+le_parse_pause_enc_rsp:
+	rtn
+	
+le_parse_version_ind:
+	rtn master
+	jam XT_LL_VERSION_IND,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+le_parse_reject_ind:
+	rtn
+
+
+le_parse_smp_pairing_request:
+	store 1,mem_le_preq
+	ifetch 6,contr
+	istore 6,contw
+	jam XT_SMP_PAIRING_RESPONSE,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+le_parse_smp_pairing_response:
+	store 1,mem_le_pres
+	ifetch 6,contr
+	istore 6,contw
+	jam XT_SMP_PAIRING_CONFIRM,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+le_parse_smp_pairing_confirm:
+	arg mem_le_rconfirm,contw
+	call memcpy16
+	jam XT_SMP_PAIRING_RANDOM,mem_fifo_temp
+	branch  le_xtype_fifo_in,master
+	jam XT_SMP_PAIRING_CONFIRM,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+le_parse_smp_pairing_random:
+	call authenticate_rconfirm
+	branch le_parse_smp_pairing_random_success,zero
+	jam XT_SMP_PAIRING_FAILED,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+le_parse_smp_pairing_random_success:
+	call generate_stk
+	jam XT_LL_ENC_REQ,mem_fifo_temp
+	branch le_xtype_fifo_in,master
+	jam XT_SMP_PAIRING_RANDOM,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+le_parse_smp_pairing_failed:
+	rtn
+	
+le_parse_smp_encryption_information:
+	arg mem_le_peer_ltk,contw
+	branch memcpy16
+	
+le_parse_smp_master_identification:
+	rtn
+	
+le_parse_smp_identity_information:
+	rtn
+	
+le_parse_smp_identity_address_information:
+	rtn
+	
+le_parse_smp_signing_information:
+	rtn
+	
+le_parse_smp_security_request:
+	rtn
+
+le_parse_att_error_response:
+	increase -2,contr
+	ifetcht 1,contr
+	setarg ATTOP_FIND_BY_TYPE_VALUE_REQUEST
+	isub temp,null
+	branch le_parse_att_error_res_find_by_type_value,zero
+	setarg ATTOP_FIND_INFORMATION_REQUEST
+	isub temp,null
+	branch le_parse_att_error_res_find_info,zero
+	setarg ATTOP_READ_BY_TYPE_REQUEST
+	isub temp,null
+	branch le_parse_att_error_res_read_by_type,zero
+	setarg ATTOP_READ_BLOB_REQUEST
+	isub temp,null
+	branch le_parse_att_error_res_read_blob,zero
+	setarg ATTOP_READ_MULTIPLE_REQUEST
+	isub temp,null
+	branch le_parse_att_error_res_read_multiple,zero
+	rtn
+	
+le_parse_att_error_res_find_by_type_value:
+	rtn
+	
+le_parse_att_error_res_find_info:
+	rtn
+	
+le_parse_att_error_res_read_by_type:
+	rtn
+	
+le_parse_att_error_res_read_blob:
+	rtn
+	
+le_parse_att_error_res_read_multiple:
+	rtn
+
+	
+le_parse_att_exchange_mtu_request:
+	jam ATTOP_EXCHANGE_MTU_RESPONSE,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+le_parse_att_exchange_mtu_response:
+	rtn
+	
+le_parse_att_find_information_request:
+	rshift8 pdata,pdata
+	store 2,mem_le_search_handle_start
+	ifetch 2,contr
+	store 2,mem_le_search_handle_end
+	jam ATTOP_FIND_INFORMATION_RESPONSE,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+le_parse_att_find_information_response:
+	rtn
+	
+le_parse_att_find_info_res_multi:
+	rtn
+	
+le_parse_att_find_info_res_error:
+	rtn
+	
+le_parse_att_find_by_type_value_request:
+	rshift8 pdata,pdata
+	store 2,mem_le_search_handle_start
+	ifetch 2,contr
+	store 2,mem_le_search_handle_end
+	ifetch 2,contr
+	store 2,mem_le_uuid//type
+	ifetch 2,contr
+	store 2,mem_le_search_att_type//value
+	jam ATTOP_FIND_BY_TYPE_VALUE_RESPONSE,mem_fifo_temp
+	branch le_xtype_fifo_in
+
+	
+le_parse_att_find_by_type_value_response:
+	rtn
+	
+le_parse_att_read_by_type_request:
+	rshift8 pdata,pdata
+	store 2,mem_le_search_handle_start
+	ifetch 2,contr
+	store 2,mem_le_search_handle_end
+	ifetch 2,contr
+	store 2,mem_le_search_att_type
+	jam ATTOP_READ_BY_TYPE_RESPONSE,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+le_parse_att_read_by_type_response:
+	rtn
+	
+le_parse_att_read_request:
+	fetch 2,mem_le_rxbuf+7
+	store 2,mem_le_att_handle
+	jam ATTOP_READ_RESPONSE,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+le_parse_att_read_response:
+	rtn
+	
+le_send_att_read_res_end:
+	rtn
+	
+le_prepare_descriptor:
+	rtn
+
+	
+le_parse_att_read_blob_request:
+	ifetch 2,contr
+	store 2,mem_le_att_offset
+	jam ATTOP_READ_BLOB_RESPONSE,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+le_parse_att_read_blob_response: 
+	rtn
+	
+le_parse_att_read_multiple_request:
+	fetch 1,mem_le_rxbuf+1
+	increase -5,pdata
+	rshift pdata,pdata
+	store 1,mem_le_temp
+	jam ATTOP_READ_MULTIPLE_RESPONSE,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+le_parse_att_read_multiple_response:
+	rtn
+	
+le_parse_att_read_by_group_type_request:
+	rshift8 pdata,pdata
+	store 2,mem_le_search_handle_start
+	ifetch 2,contr
+	store 2,mem_le_search_handle_end
+	ifetch 2,contr
+	store 2,mem_le_search_att_type
+	jam ATTOP_READ_BY_GROUP_TYPE_RESPONSE,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+le_parse_att_read_by_group_type_response:
+	rtn
+	
+le_parse_att_write_request:
+	fetch 1,mem_le_rxbuf+1
+	increase -7,pdata
+	icopy loopcnt
+	fetcht 2,mem_le_att_handle
+	call le_att_get_handle_ptr
+	branch le_parse_att_write_request_fail,blank
+	ifetch 1,contr
+	isub loopcnt,null
+	nbranch le_parse_att_write_request_fail,positive
+	copy contr,contw
+
+	arg mem_le_rxbuf+9,contr
+	call memcpy
+	jam BT_EVT_LE_WRITE_REQUEST,mem_fifo_temp
+	call ui_ipc_send_event
+le_parse_att_write_request_fail:
+	jam ATTOP_WRITE_RESPONSE,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+le_parse_att_write_response:
+	fetch 1,mem_le_conn_sm
+	rtn
+	
+le_parse_att_prepare_write_request:
+	rtn
+	
+le_parse_att_prepare_write_response:
+	rtn
+	
+le_parse_att_execute_write_request:
+	rtn
+	
+le_parse_att_execute_write_response:
+	rtn
+	
+le_parse_att_handle_value_notification:
+	//copy contr,rega
+	//fetcht 6,mem_le_plap
+	//fetch 6,mem_le_addr_slave1
+	//isub temp,null
+	//branch le_kb_handle_value_notification,zero
+	//copy rega,contr
+	ifetch 5,contr
+	store 5,mem_mouse_data
+	jam SEND_MOUSE_DATA_CMD,mem_mcmd
+	//jam 3,0x4905
+	call usb_isr
+	rtn
+le_kb_handle_value_notification:
+	copy rega,contr
+	ifetch 8,contr
+	store 8,mem_mouse_data
+	jam SEND_KB_DATA_CMD,mem_mcmd
+	call usb_isr
+	rtn
+	
+le_parse_att_handle_value_indication:
+	rtn
+	
+le_parse_att_handle_value_confirmation:
+	rtn
+	
+le_parse_att_write_command:
+	fetch 1,mem_le_rxbuf+1
+	increase -7,pdata
+	icopy loopcnt
+	fetcht 2,mem_le_att_handle
+	call le_att_get_handle_ptr
+	branch le_parse_att_write_command_fail,blank
+	ifetch 1,contr
+	isub loopcnt,null
+	nbranch le_parse_att_write_command_fail,positive
+	copy contr,contw
+	copy contr,rega
+	copy loopcnt,regb
+	arg mem_le_rxbuf+9,contr
+	call memcpy
+	jam PRCP_LE,mem_prcp
+	call le_writeatt_cb
+le_parse_att_write_command_fail:
+	rtn
+
+	/* rega pointers to data, regb is length */
+le_writeatt_cb:
+	fetch 2,mem_cb_att_write
+	rtn blank
+	iforce pc
+
+
+le_parse_att_signed_write_command:
+	rtn
+
+le_supervision_update:
+	fetcht 4,mem_le_supervision_timer
+	call get_clkbt
+	isub temp,timeup					/* and to 28 bits */
+	deposit timeup
+	fetcht 2,mem_le_superto
+	lshift4 temp,temp
+	lshift temp,temp
+	isub temp,pdata
+	rtn
+	
+le_supervision_flush:
+	call get_clkbt
+	store 4,mem_le_supervision_timer
+	rtn
+	
+	
+	
+le_adv:
+	set1 mark_ext_patch,mark
+	bpatch patch2e_0,mem_patch2e
+	fetch 1,mem_le_adv_enable
+	rtn blank
+	arg le_adv_interval_timer,queue
+	call timer_check
+	nrtn blank
+	disable master
+	enable swfine
+	call le_init_adv
+	call le_next_adv_channel
+	call le_send_adv_ind
+	nbranch le_adv_not_match,match
+	set1 mark_ext_patch,mark
+	bpatch patch2e_1,mem_patch2e
+	fetch 1,mem_le_req_rcv
+	increase 1,pdata
+	store 1,mem_le_req_rcv
+	fetch 1,mem_le_rxbuf
+	and pdata,0x0f,pdata
+	beq SCAN_REQ,le_send_scan_response
+	beq CONNECT_REQ,parse_connect_req
+le_adv_not_match:
+	nop 10000
+	fetch 1,mem_le_ch_mapped
+	bne 39,le_adv
+	call le_ledoff
+	arg le_adv_interval_timer,queue
+	fetch 2,mem_le_adv_interval_max
+	branch timer_init
+	
+
+le_receive_window_size:
+	set1 mark_ext_patch,mark
+	bpatch patch2e_2,mem_patch2e
+	fetch 1,mem_le_peer_sca
+	call le_sca_map
+	fetch 2,mem_le_tsniff
+	imul32 temp,pdata
+	arg 375,temp
+	imul32 temp,pdata
+	arg 100000,temp
+	idiv temp
+	fetch 1,mem_le_window_size
+	arg 20000,temp
+	imul32 temp,pdata
+	store 4,mem_le_transmit_window
+	set1 mark_ext_patch,mark
+	bpatch patch2e_3,mem_patch2e
+	fetch 2,mem_rx_window_sniff
+	call wait_div_end
+	quotient temp
+	iadd temp,pdata
+	store 2,mem_le_receive_window
+	rtn
+
+parse_connect_req:
+	set1 mark_ext_patch,mark
+	bpatch patch2e_4,mem_patch2e
+	fetch 6,mem_le_rxbuf+8
+	fetcht 6,mem_le_lap
+	isub temp,null
+	nrtn zero
+	call le_scan_check_sender_addr_type
+	copy rega,pdata
+	store 1,mem_le_conn_peer_addr_type
+	fetch 7,mem_le_rxbuf+21
+	store 7,mem_tmp_buffer
+	ifetch 8,contr
+	istore 8,contw
+	fetch 6,mem_le_rxbuf+2
+	store 6,mem_le_plap
+	set1 mark_ext_patch,mark
+	bpatch patch2e_5,mem_patch2e
+	increase 6,contr
+	ifetch 8,contr
+	store 8,mem_le_access 	// and crcinit & window size
+	ifetcht 2,contr				// transmit offset
+	lshift2 temp,temp			
+	ifetch 2,contr				// connInterval
+	lshift2 pdata,pdata
+	store 2,mem_le_tsniff
+	store 4,mem_le_anchor
+	isub temp,pdata
+	add pdata,-2,clke_bt
+	ifetch 9,contr
+	store 9,mem_le_slave_latency// and super to & channel map
+	set1 mark_ext_patch,mark
+	bpatch patch2e_6,mem_patch2e
+	ifetch 1,contr
+	rshift4 pdata,temp
+	rshift temp,temp
+	storet 1,mem_le_peer_sca
+	and_into 0x1f,pdata
+	store 1,mem_le_hop
+	call le_receive_window_size
+	call le_calc_channel_map
+	call le_init_slave
+	call context_new
+	nrtn zero
+	set1 mark_ext_patch,mark
+	bpatch patch2e_7,mem_patch2e
+	arg 0,temp//status successful
+	call hci_send_le_conn_complete
+	call calc_clke_offset
+	jam BT_EVT_LE_CONNECTED,mem_fifo_temp
+	call ui_ipc_send_event
+//	call app_get_lpm_wake_lock
+	branch context_save
+	
+
+le_init_attlist_search:
+	set1 mark_ext_patch,mark
+	bpatch patch2f_0,mem_patch2f
+	fetch 2,mem_le_search_handle_start
+	iforce regb
+	fetch 2,mem_le_search_handle_end
+	iforce regc
+	arg mem_le_att_list,contr
+	enable user
+	rtn
+
+	/* return handle in pdata, blank:end of list, positive:in range */
+le_att_handle_inrange:
+	ifetch 2,contr
+	rtn blank
+	isub regb,null			/* less than start ? */
+	nrtn positive
+	isub regc,null			/* greater than end ? */
+	rtn zero
+	branch le_att_handle_blank,positive
+	force 1,null
+	rtn
+le_att_handle_blank:
+	force 0,pdata
+	rtn
+
+	/* handle in temp, return pointer in contr to length, blank not found */	
+le_att_get_handle_ptr:
+	arg mem_le_att_list,contr
+le_att_get_handle_loop:
+	ifetch 2,contr
+	rtn blank
+	increase 2,contr
+	isub temp,null
+	rtn zero
+	ifetch 1,contr			/* length */
+	iadd contr,contr
+	branch le_att_get_handle_loop
+	
+le_data_send_write_req:
+	jam 0x2,mem_le_handle_data_len
+	setarg 0x0001
+	store 2,mem_le_handle_data
+	jam CONN_SM_WAIT_WRITE_RES,mem_le_conn_sm
+	jam ATTOP_WRITE_REQUEST,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+le_data_wait_write_res:
+	rtn
+le_data_wait_write_res1:
+	rtn
+le_conn_sm_master:
+	set1 mark_ext_patch,mark
+	bpatch patch2f_1,mem_patch2f
+	fetch 1,mem_device_option
+	rtnne dvc_op_dongle
+	fetch 1,mem_le_conn_sm
+	beq CONN_SM_SEND_WRITE_REQ,le_data_send_write_req
+	beq CONN_SM_WAIT_WRITE_RES,le_data_wait_write_res
+	beq CONN_SM_WAIT_WRITE_RES1,le_data_wait_write_res1
+	rtn
+
+le_ukey_init:
+	setarg le_ukey
+	store 2,mem_cb_le_process
+	hjam uart_ctrl_normal,core_uart_ctrl
+	setarg uart_baud_115200
+	hstore uart_baud_len,core_uart_baud
+	hjam uartclk_dpll,core_uart_clksel
+	hjam 0x4,core_gpio_sel1
+	setarg le_ukey_wcb
+	store 2,mem_cb_att_write
+	call le_init_att
+	rtn wake
+	branch eeprom_load_reconn_info
+	
+	
+le_ukey:
+	fetch 1,mem_le_mode
+	compare lemode_slave,pdata,0xff
+	setarg 5
+	call set_pwm_steadyon,true
+	ncall set_pwm_blink,true
+	call uartd_prepare_rx
+	branch le_ukey_senddata,blank
+	fetch 2,mem_le_notify_attr_start
+	iforce contw
+	sub loopcnt,20,null
+	branch le_ukey_loop,positive
+	force 20,loopcnt
+le_ukey_loop:
+	ifetch 1,contru
+	istore 1,contw
+	loop le_ukey_loop
+	call uartd_rxdone
+le_ukey_senddata:
+	jam notify_handle,mem_le_notify_handle
+	fetcht 2,mem_le_notify_attr_start
+	ifetch 1,temp
+	rtn blank
+	call le_xtype_fifo_is_full
+	nrtn blank
+	jam ATTOP_HANDLE_VALUE_NOTIFICATION,mem_fifo_temp 
+	branch le_xtype_fifo_in
+
+le_ukey_wcb:
+	copy regb,temp
+	call uartd_prepare_tx
+	copy rega,contr
+	copy regb,loopcnt
+le_writeatt_cb_loop:
+	ifetch 1,contr
+	istore 1,contwu
+	loop le_writeatt_cb_loop
+	branch uartd_send
+
+le_clear_notify_att:
+	fetch 1,mem_device_option
+	rtnne dvc_op_ukey
+	fetch 2,mem_le_notify_handle
+	rtnne notify_handle
+	fetcht 2,mem_le_notify_attr_start
+	setarg 0
+	istore 9,temp
+	istore 9,contw
+	istore 2,contw
+	rtn
+
+
+le_ledoff:
+	fetcht 1,mem_le_adv_led
+	setflip gpio_active_bit,temp
+	branch gpio_out
+
+	
+le_modified_name:
+	set1 mark_ext_patch,mark
+	bpatch patch2f_2,mem_patch2f
+	call le_modified_name_att_list
+	branch le_modified_name_adv
+
+le_modified_name_att_list:
+	fetch 1,mem_le_name_len
+	copy pdata,loopcnt
+	arg UUID_CHRCTR_DEVICE_NAME,temp
+	call le_att_get_uuid_ptr
+	increase 1,contr
+	copy contr,contw
+	arg mem_le_name,contr
+	call memcpy
+	fetch 1,mem_le_name_len
+	sub pdata,MAX_NAME_LEN,loopcnt
+	copy loopcnt,temp
+	copy loopcnt,pdata
+	ncall memcpy_empty,blank	
+	rtn
+
+le_modified_name_adv:	
+	fetch 1,mem_le_adv_data_len
+	fetcht 1,mem_le_adv_data
+	isub temp,pdata
+	copy pdata,loopcnt
+	copy pdata,rega
+	fetch 1,mem_le_adv_data
+	increase 1,pdata
+	arg mem_le_adv_data,contr
+	iadd contr,contr
+	arg mem_le_adv_temp,contw
+	call memcpy
+	set1 mark_ext_patch,mark
+	bpatch patch2f_3,mem_patch2f
+	fetch 1,mem_le_name_len
+	copy pdata,loopcnt
+	increase 1,pdata
+	store 1,mem_le_adv_data
+	arg mem_le_adv_data+2,contw
+	arg mem_le_name,contr
+	call memcpy
+	copy rega,loopcnt
+	arg mem_le_adv_temp,contr
+	call memcpy
+	fetch 1,mem_le_adv_data
+	iadd rega,pdata
+	store 1,mem_le_adv_data_len
+	rtn
+
+
+le_get_device_name:
+	set1 mark_ext_patch,mark
+	bpatch patch2f_4,mem_patch2f
+	arg UUID_CHRCTR_DEVICE_NAME,temp
+	branch le_att_get_uuid_ptr
+
+	// temp is uuid to search
+le_att_get_uuid_ptr:
+	arg mem_le_att_list,contr
+le_att_get_uuid_loop:
+	ifetch 2,contr			// handle
+	branch assert,blank
+	ifetch 2,contr			// uuid
+	isub temp,null
+	rtn zero
+	ifetch 1,contr			// length 
+	iadd contr,contr
+	branch le_att_get_uuid_loop
+
+	
+memcpy_empty:
+	setarg SPACE
+	istore 1,contw
+	loop memcpy_empty
+	rtn
+
+
+le_lpm_set_mult:
+	set1 mark_ext_patch,mark
+	bpatch patch2f_5,mem_patch2f
+	disable wake
+	branch le_lpm_set_mult_attempt,attempt
+	nbranch le_lpm_lost,match
+le_lpm_set_mult_attempt:
+	call lpm_match
+	fetch 2,mem_rx_window_sniff
+	store 2,mem_le_receive_window
+	fetch 1,mem_le_rxbuf
+	compare 1,pdata,3
+	nbranch lpm_mult_short,true		// rx not empty, short interval
+	fetch 1,mem_le_txheader
+	compare 1,pdata,3
+	nbranch lpm_mult_short,true		// tx not empty, short interval
+	fetch 1,mem_le_state
+	bbit1 lestate_update_param,lpm_mult_short
+	branch lpm_mult_wait_timeout
+	
+le_lpm_lost:
+	fetcht 2,mem_rx_window_sniff
+	rshift temp,temp
+	fetch 2,mem_le_receive_window
+	iadd temp,pdata
+	store 2,mem_le_receive_window
+	branch lpm_lost
+
+le_clean_att_list_handle_enable:
+	set1 mark_ext_patch,mark
+	bpatch patch2f_6,mem_patch2f
+	jam 0,mem_le_switch_send_data
+	fetcht 2,mem_le_notify_handle
+	call le_att_check_notification_enable
+	copy rega,contw
+	setarg 0
+	istore 1,contw
+	rtn
+le_scan_addr_to_uart:
+	fetch 1,mem_device_option
+	rtnne dvc_op_module 
+	call get_uart_twptr
+	arg mem_le_plap,rega
+	call adss_hex2string_to_uart
+	setarg 0x2c
+	istore 1,contwu
+	call at_rssi_result
+	branch uartd_send
+	
+//input:regb  prcp_tx_len
+prcp_le_tx:
+	arg PRCP_TX_LE,temp
+	call le_att_check_notification_enable
+	rtnbit0 0
+	call le_xtype_fifo_is_full
+	nrtn blank
+	arg PRCP_TX_LE,temp
+	storet 2,mem_le_notify_handle
+	call le_att_get_handle_ptr
+	branch assert,blank
+	add contr,1,contw
+	arg PRCP_TX_DATA_LEN,loopcnt
+	arg mem_prcp_data,contr
+	call memcpy
+	jam ATTOP_HANDLE_VALUE_NOTIFICATION,mem_fifo_temp
+	branch le_xtype_fifo_in
+prcp_tx:
+	rtn
+
+	/* rega = ad type to search, return zero when found */
+le_search_adtype:
+	set1 mark_ext_patch,mark
+	bpatch patch2f_7,mem_patch2f
+	fetch 1,mem_le_rxbuf + 1
+	arg mem_le_rxbuf + 8,contr
+	iadd contr,loopcnt
+le_search_adtype_loop:
+	ifetcht 1,contr
+	ifetch 1,contr
+	isub rega,null
+	rtn zero
+	add temp,-1,pdata
+	iadd contr,contr
+	deposit loopcnt
+	isub contr,null
+	branch le_search_adtype_loop,positive
+	force 1,null
+	rtn
+	
+
+else
+le_disable:
+le_dispatch:
+le_context_nexthop:
+le_acl_downgoing:
+le_clear_connection_info:
+le_scan_check_sender_addr_type:
+le_conn_dispatch:
+le_ukey_init:
+	rtn
+endif
Index: btkb/program/lmp.prog
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/btkb/program/lmp.prog	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/btkb/program/lmp.prog	(working copy)
@@ -0,0 +1,2669 @@
+	
+/******************************************/
+/*************   LMP Parse   **************/
+/******************************************/
+init_lmp:
+	rtn wake
+init_lmp_work:
+	setarg 0
+	store 1,mem_lmp_to_send
+	store 1,mem_conn_sm
+	store 1,mem_lmo_opcode1
+	store 1,mem_lmo_opcode2
+	store 1,mem_esco_addr
+	store 1,mem_auth_enable
+	store 1,mem_connection_options
+	store 1,mem_pairing_auth
+	jam SWITCH_FLAG_INIT,mem_switch_flag
+	jam 0,mem_switch_fail_master_count
+	jam NULL_ENCRYP,mem_wait_encryption
+init_lmp_reinit:	
+	set1 mark_ext_patch,mark
+	bpatch patch3c_0,mem_patch3c
+	jam 0,mem_pairing_auth
+	jam 0,mem_sp_localsm
+	jam 0,mem_lmp_conn_state
+	fetch 1,mem_device_option
+	rtnne dvc_op_hci,pdata
+	jam 0,mem_link_key_exists
+	//fall through
+parse_rx_done:
+	rtn
+
+parse_lmp:
+	set1 mark_ext_patch,mark
+	bpatch patch3c_1,mem_patch3c
+	call setlocalsm_master,master	//use this flag in hci
+	ncall setlocalsm_slave,master
+	fetch 1,mem_lmo_opcode2
+	ncall lmo_fifo_process,blank
+	fetch 1,mem_lmo_opcode2
+	nrtn blank
+	fetch 1,mem_state_map
+	rtnbit0 smap_rxlmp
+	set0 smap_rxlmp,pdata
+	set0 mark_rxbuf_inuse,mark
+	store 1,mem_state_map
+	fetch 1,mem_rxbuf
+	fetcht 1,mem_state_map
+	isolate1 smap_lmptidinit,pdata
+	setflag true,smap_lmptid,temp
+	storet 1,mem_state_map
+	and_into 0x2,temp //smap_lmptid only
+	storet 1,mem_lmo_tid2
+	fetcht 1,mem_state_map
+	rshift pdata,pdata			/* align lmp_opcode */
+  	store 1,mem_lmi_opcode2
+	set1 mark_ext_patch,mark
+	bpatch patch3c_2,mem_patch3c
+  	fetch 1,mem_lmi_opcode2
+  	beq LMP_ESCAPE,parse_lmp_escape//multi
+  	beq LMP_ACCEPTED,parse_lmp_accepted//multi
+	beq LMP_NOT_ACCEPTED,parse_lmp_not_accepted//multi
+  	beq LMP_SET_AFH, parse_lmp_set_afh
+  	beq LMP_CLKOFFSET_REQ, parse_lmp_clkoffset_req
+ 	beq LMP_ENCRYPTION_MODE_REQ, parse_lmp_encryption_mode_req
+ 	beq LMP_ENCRYPTION_KEY_SIZE_REQ,parse_lmp_crypt_key
+	beq LMP_AUTO_RATE,parse_lmp_auto_rate
+	beq LMP_TEST_CONTROL,parse_lmp_test_control//multi
+	beq LMP_TEST_ACTIVATE,parse_lmp_test_activate
+	beq LMP_SETUP_COMPLETE,parse_lmp_setup_complete
+	beq LMP_SUPERVISION_TIMEOUT,parse_lmp_supervision_timeout
+	beq LMP_FEATURES_REQ,parse_lmp_features_req
+	beq LMP_HOST_CONNECTION_REQ,parse_lmp_conn_req
+	beq LMP_VERSION_REQ,parse_lmp_version_req
+	beq LMP_VERSION_RES,parse_lmp_version_res
+	beq LMP_DETACH,parse_lmp_detach
+	beq LMP_MAX_SLOT,parse_lmp_max_slot
+	beq LMP_MAX_SLOT_REQ,parse_lmp_max_slot_req
+	beq LMP_NAME_REQ,parse_lmp_name_req
+	beq LMP_NAME_RES,parse_lmp_name_res
+	beq LMP_FEATURES_RES,parse_lmp_features_res
+	beq LMP_COMB_KEY,parse_lmp_comb_key
+	beq LMP_AU_RAND, parse_lmp_au_rand
+	beq LMP_IN_RAND,parse_lmp_in_rand
+	beq LMP_SRES,parse_lmp_sres
+	beq LMP_INCR_POWER_REQ,parse_lmp_incr_power
+	beq LMP_DECR_POWER_REQ,parse_lmp_decr_power
+	beq LMP_MAX_POWER, parse_lmp_max_power
+	beq LMP_MIN_POWER, parse_lmp_min_power
+	beq LMP_PAGE_MODE_REQ, parse_lmp_page_mode_req
+	beq LMP_PAGE_SCAN_MODE_REQ, parse_lmp_page_scan_mode_req
+	beq LMP_PREFERRED_RATE, parse_lmp_preferred_rate
+	beq LMP_REMOVE_SCO_LINK_REQ, parse_lmp_remove_sco_link_req
+	beq LMP_SCO_LINK_REQ, parse_lmp_sco_link_req
+	beq LMP_SLOT_OFFSET, parse_lmp_slot_offset
+	beq LMP_SNIFF_REQ, parse_lmp_sniff_req
+	beq LMP_START_ENCRYPTION_REQ, parse_lmp_start_encryption_req
+	beq LMP_STOP_ENCRYPTION_REQ, parse_lmp_stop_encryption_req
+	beq LMP_SWITCH_REQ, parse_lmp_switch_req
+	beq LMP_TEMP_RAND, parse_lmp_temp_rand
+	beq LMP_TEMP_KEY, parse_lmp_temp_key
+	beq LMP_TIMING_ACCURACY_REQ, parse_lmp_timing_accuracy_req
+	beq LMP_TIMING_ACCURACY_RES, parse_lmp_timing_accuracy_res
+	beq LMP_UNIT_KEY, parse_lmp_unit_key
+	beq LMP_UNSNIFF_REQ, parse_lmp_unsniff_req
+	beq LMP_USE_SEMI_PERMANENT_KEY, parse_lmp_use_semi_permanend_key
+	beq  LMP_ENCAPSULATED_HEADER,parse_lmp_encapsulated_header
+	beq  LMP_ENCAPSULATED_PAYLOAD,parse_lmp_encapsulated_payload
+	beq	LMP_SIMPLE_PAIRING_CONFIRM,parse_simple_pairing_confirm
+	beq  LMP_SIMPLE_PAIRING_NUMBER,parse_lmp_simple_pairing_number
+	beq  LMP_DHKEY_CHECK,parse_dhkey_check
+	beq LMP_CLKOFFSET_RES, parse_lmp_clkoffset_res
+	beq LMP_ENC_KEY_SIZE_MASK_REQ,parse_enc_key_size_mask_req
+/* lmp is not recognized, check to see if we respond to all messages */ 
+/* rejecting the unrecognized message with PDU not recognized */
+reject_unknown_packet:
+	jam UNKNOWN_LMP_PDU,mem_lmo_reason2
+reject_lmp_packet:
+	jam LMP_NOT_ACCEPTED,mem_lmo_opcode2
+	rtn
+
+parse_lmp_clkoffset_req:
+	jam LMP_CLKOFFSET_RES,mem_lmo_opcode2
+	rtn	
+
+parse_enc_key_size_mask_req:
+	jam LMP_ENC_KEY_SIZE_MASK_RES,mem_lmo_opcode2
+	rtn
+	
+parse_lmp_set_afh:
+	fetch 4,mem_rxbuf+1
+	lshift pdata,pdata
+	store 4,mem_afh_instant
+	fetch 1,mem_rxbuf+5
+	store 1,mem_afh_new_mod
+	fetch 5,mem_rxbuf+6
+	store 5,mem_afh_map_new
+	fetch 5,mem_rxbuf+11
+	istore 5,contw
+	fetch 1,mem_mode
+	set1 afh_change,pdata
+	store 1,mem_mode
+	rtn
+parse_lmp_escape:
+	fetch 1,mem_rxbuf+1
+	set1 7,pdata
+	store 1,mem_lmi_opcode2
+	beq LMP_EXT_ACCEPTED,parse_lmpext_accepted
+	beq LMP_NOT_ACCEPTED_EXT,parse_lmpext_not_accepted
+	beq LMP_SNIFF_SUBRATING_REQ, parse_lmp_sniff_subrating_req
+	beq LMP_SNIFF_SUBRATING_RES, parse_lmp_sniff_subrating_res
+	beq LMP_PACKET_TYPE_TABLE_REQ,parse_lmpext_packet_type_table_req
+	beq LMP_EXT_FEATURES_REQ,parse_lmpext_features_req
+	beq LMP_EXT_FEATURES_RES,parse_lmpext_features_res
+	beq LMP_EXT_CHN_CLASSIFICATION_REQ,parse_lmpext_chn_classification_req
+	beq LMP_PAUSE_ENCRYPTION_REQ,parse_lmpext_pause_encrypt
+	beq LMP_RESUME_ENCRYPTION_REQ,parse_lmpext_resume_encrypt
+	beq LMP_IO_CAP_REQ,parse_lmpext_iocap_req
+	beq LMP_IO_CAP_RES,parse_lmpext_iocap_res
+	beq LMP_EXT_REMOVE_ESCO_REQ,parse_lmpext_remove_esco_req
+	beq LMP_EXT_ESCO_LINK_REQ,parse_lmpext_esco_link_req
+	rtneq LMP_EXT_FEATURES_RES
+
+
+reject_unknown_ext_packet:
+	jam LMP_NOT_ACCEPTED_EXT,mem_lmo_opcode2
+	jam UNKNOWN_LMP_PDU,mem_lmo_reason2
+	
+	rtn
+parse_lmpext_chn_classification_req:
+	jam LMP_NOT_ACCEPTED_EXT,mem_lmo_opcode2
+	jam NOT_SUPPORT_CHN_CLASSIFICATION,mem_lmo_reason2
+	rtn
+	
+parse_lmpext_esco_link_req:	
+	fetch 1,mem_rxbuf+2
+	store 1,mem_sco_handle
+	fetch 1,mem_rxbuf+3
+	store 1,mem_esco_addr
+	fetch 1,mem_rxbuf+5
+	store 1,mem_esco_desco
+	fetch 1,mem_rxbuf+9
+	store 1,mem_esco_type
+	fetch 1,mem_rxbuf+14
+	store 1,mem_air_mode
+	bmark1 mark_esco,check_esco_prarm
+	set1 mark_esco,mark
+	call push_tid_follow
+	store 1,mem_accptsco_tid
+	force 0,temp
+	branch hci_send_conn_req_event
+
+parse_lmpext_esco_link_req_change_param:
+	jam LMP_EXT_ESCO_LINK_REQ,mem_lmo_opcode2
+	jam prarm_neogotiation,mem_neogotiation_state
+	branch cmd_exit
+
+check_esco_prarm:
+	fetch 1,mem_esco_type
+	bne type_hv3,reject_esco_prarm	
+	jam LMP_EXT_ACCEPTED,mem_lmo_opcode2
+	branch esco_prarm_common
+reject_esco_prarm:
+	set0 mark_esco,mark
+	jam LMP_NOT_ACCEPTED_EXT,mem_lmo_opcode2
+	force HCI_ERROR_UNKNOWN_HCI_COMMAND,temp //sco fail
+	call hci_send_sco_complete
+esco_prarm_common:
+	jam LMP_EXT_ESCO_LINK_REQ,mem_lmi_opcode2
+	rtn
+
+	
+parse_lmpext_remove_esco_req:
+	jam LMP_EXT_ACCEPTED,mem_lmo_opcode2
+	jam LMP_EXT_REMOVE_ESCO_REQ,mem_lmi_opcode2
+	branch stop_esco
+	
+parse_lmpext_iocap_req:
+	call iocap_lmpext_load
+	fetch 1,mem_device_option
+	beq dvc_op_hci,iocap_lmpext_hci
+	jam LMP_IO_CAP_RES,mem_lmo_opcode2
+	rtn
+
+parse_lmpext_iocap_res:
+	call iocap_lmpext_load
+	fetch 1,mem_device_option
+	beq dvc_op_hci,iocap_lmpext_hci
+	branch iocap_lmpext_common
+	
+iocap_lmpext_load:
+	arg      mem_sp_iocap_remote,contw
+	fetch 3, mem_rxbuf+2
+	istore    3,contw
+	rtn
+	
+iocap_lmpext_hci:
+	call hci_send_io_cap_response_event
+iocap_lmpext_common:
+	call check_localsm
+	ncall hci_send_io_cap_req_event,true
+ifdef SIMPLE_PAIRING
+	branch master_set_mem_master_sp_flag,true//is un very ok to use master flag,but we have to add many codes if wo don't
+endif
+	rtn
+parse_lmpext_accepted:
+	fetch 1,mem_rxbuf+3
+	set1 7,pdata
+	store 1,mem_lmi_accepted_opcode
+	beq LMP_PACKET_TYPE_TABLE_REQ,parse_lmpext_accepted_ptt
+	beq LMP_EXT_ESCO_LINK_REQ,play_sco
+	beq LMP_EXT_REMOVE_ESCO_REQ,parse_lmpext_stop_esco
+	rtn
+
+parse_lmpext_stop_esco:
+	branch stop_esco
+	
+parse_lmpext_not_accepted:
+	fetch 1,mem_rxbuf+3
+	set1 7,pdata
+	store 1,mem_lmi_accepted_opcode
+	beq LMP_PACKET_TYPE_TABLE_REQ,parse_lmpext_not_accepted_ptt
+	beq LMP_EXT_ESCO_LINK_REQ,parse_lmpext_not_accepted_esco
+	rtn
+
+parse_lmpext_not_accepted_esco:
+	set0 mark_esco,mark
+	rtn
+
+parse_lmpext_accepted_ptt:
+	fetch 1,mem_ptt
+	fetcht 1,mem_state_map
+	nsetflag blank,smap_edr,temp
+	storet 1,mem_state_map
+parse_lmpext_not_accepted_ptt:
+	fetch 1,mem_state
+	rtnbit0 state_init_seq
+	set0 state_init_seq,pdata
+	store 1,mem_state
+	fetch 1,mem_auth_enable
+	nbranch hci_send_linkkey_req,blank
+	jam LMP_SETUP_COMPLETE,mem_lmo_opcode2
+	rtn
+
+parse_lmpext_pause_encrypt:
+	nbranch parse_lmpext_pause_encrypt_slave, master
+	jam LMP_STOP_ENCRYPTION_REQ,mem_lmo_opcode2
+	branch tid_reply
+
+parse_lmpext_pause_encrypt_slave:	
+	jam LMP_PAUSE_ENCRYPTION_REQ, mem_lmo_opcode2
+	rtn
+
+parse_lmpext_resume_encrypt:
+//trans file to pc may cause pause/resume encrypt
+//if ms is conn_sm_wait_end the controllor won't send ack after recieved start_encypt_accept
+	call tid_reply
+	branch lmp_start_encryption
+
+parse_lmpext_features_req:
+	jam LMP_EXT_FEATURES_RES,mem_lmo_opcode2
+	rtn
+
+parse_lmpext_features_res:
+	fetcht 1,mem_rxbuf+4
+	and temp,0x1,temp
+	storet 1,mem_remote_sppcap
+	fetch 1,mem_hci_cmd
+	bne hci_cmd_wait_remote_ext_feature,parse_lmpext_features_res_not_hci
+	jam 0,mem_hci_cmd
+	call hci_send_remote_ext_features_event
+parse_lmpext_features_res_not_hci:
+	fetch 1,mem_conn_sm
+	rtnne CONN_SM_WAIT_FEATURES_EXT
+	jam CONN_SM_SEND_CONN_REQ,mem_conn_sm
+	branch process_conn_sm
+
+parse_lmp_accepted:
+	fetch 1,mem_rxbuf+1
+	store 1,mem_lmi_accepted_opcode
+	beq LMP_HOST_CONNECTION_REQ,parse_lmp_accepted_hostconn//ok
+	beq LMP_IN_RAND,parse_lmp_accepted_inrand//ok
+	beq LMP_ENCRYPTION_MODE_REQ,parse_lmp_accepted_enc_mode//ok
+	beq LMP_ENCRYPTION_KEY_SIZE_REQ,parse_lmp_accepted_enc_keysize//ok
+	beq LMP_START_ENCRYPTION_REQ,parse_lmp_accepted_start_enc//ok
+	beq LMP_STOP_ENCRYPTION_REQ,parse_lmp_accepted_stop_enc//ok
+	beq LMP_UNSNIFF_REQ,parse_lmp_accepted_unsniff_req//ok
+	beq LMP_SNIFF_REQ,parse_lmp_accepted_sniff_req//ok
+	beq LMP_SCO_LINK_REQ,play_sco
+//	beq LMP_REMOVE_SCO_LINK_REQ,stop_sco
+	beq LMP_SWITCH_REQ,parse_lmp_accepted_switch
+	// simple pairing 
+	beq LMP_ENCAPSULATED_HEADER,parse_lmp_accepted_encapsulated_header//ok
+	beq LMP_ENCAPSULATED_PAYLOAD,parse_lmp_accepted_encapsulated_payload//ok
+	beq LMP_SIMPLE_PAIRING_NUMBER,parse_lmp_accepted_simple_pairing_number//ok
+	beq LMP_DHKEY_CHECK,parse_lmp_accepted_dhkey_check//ok
+	rtn
+	
+parse_lmp_not_accepted:
+	fetch 1,mem_rxbuf+1
+	store 1,mem_lmi_accepted_opcode
+	beq LMP_NAME_REQ,parse_lmp_not_accepted_name_req//ok
+	beq LMP_HOST_CONNECTION_REQ,parse_lmp_not_accepted_hostconn//ok
+	beq LMP_AU_RAND,parse_lmp_not_accepted_aurand//ok
+	beq LMP_SCO_LINK_REQ,parse_lmp_not_accepted_sco_link_req//ok
+	beq LMP_IN_RAND,parse_lmp_not_accepted_inrand//ok
+	beq LMP_SWITCH_REQ,parse_lmp_not_accepted_switch//ok
+	/* simple pairing support */
+	beq  LMP_SIMPLE_PAIRING_NUMBER,parse_lmp_not_accepted_simple_pairing_number//ok
+	beq  LMP_DHKEY_CHECK,parse_lmp_not_accepted_dhkey_check//ok
+	beq LMP_UNSNIFF_REQ,parse_lmp_not_accepted_unsniff_req
+	beq LMP_SNIFF_REQ,parse_lmp_not_acdcept_sniff_req
+	rtn
+
+parse_lmp_accepted_switch:
+	jam BT_EVT_SWITCH_ACCEPT,mem_fifo_temp
+	call ui_ipc_send_event
+	branch role_switch_prepare0
+parse_lmp_not_accepted_switch:
+	jam BT_EVT_SWITCH_NOT_ACCEPT,mem_fifo_temp
+	call ui_ipc_send_event
+	jam SWITCH_FLAG_NOT_ACCEPT,mem_switch_flag
+	setarg TIMER_SWITCH_WAITE
+	arg switch_wait_timer,queue
+	branch timer_init
+
+
+parse_lmp_accepted_hostconn:
+	//fetch 1,mem_state
+	//rtnbit0 state_init_seq
+	fetch 1,mem_lmp_conn_state
+	set1 RECEIVED_CONN_REQ,pdata
+	store 1,mem_lmp_conn_state
+	jam BT_EVT_BB_CONNECTED,mem_fifo_temp
+	call ui_ipc_send_event
+	jam LMP_PACKET_TYPE_TABLE_REQ,mem_lmo_opcode2
+	//nbranch parse_lmp_accepted_hostconn_ctn,master
+parse_lmp_accepted_hostconn_ctn:
+	/* checking to see if we requested host connection */
+	fetch 1,mem_conn_sm
+	bne CONN_SM_WAIT_CONN_ACCEPT, parse_rx_done
+	//branch parse_lmp_accepted_hostconn_master,master
+	/* continuing on with host connection state machine */
+	jam CONN_SM_AUTH_PAIR,mem_conn_sm
+	rtn
+	//branch host_create_conn_auth_pair
+
+	/* we need to move fast and send au_rand...jumping to next part of state machine for conn */
+//parse_lmp_accepted_hostconn_master:
+	//jam CONN_SM_AUTH_PAIR ,mem_conn_sm
+//	rtn
+
+parse_lmp_not_accepted_hostconn:
+	jam ACL_CONNECTION_ALREADY_EXISTS,mem_disconn_reason_send
+	jam LMP_DETACH,mem_lmo_opcode2
+	force HCI_ERROR_HOST_TIMEOUT,temp
+	call hci_send_connection_error
+	/* clearing connection state machine */
+	jam CONN_SM_STANDBY,mem_conn_sm
+	/* sending error message to host */
+	branch parse_rx_done,true
+	rtn
+	
+parse_lmp_not_accepted_sco_link_req:
+	jam LMP_SCO_LINK_REQ,mem_lmo_opcode2
+	rtn
+
+
+parse_lmp_accepted_inrand:
+	fetch 1,mem_link_key_exists
+	nrtn blank
+	call clear_linkkey
+	call  lmp_generate_key
+	rtn master
+	set1 mark_slave_in_rand_accepted,mark
+	rtn
+
+parse_lmp_accepted_enc_mode:
+	nrtn master
+	jam LMP_ENCRYPTION_KEY_SIZE_REQ,mem_lmo_opcode2
+	fetch 1,mem_state_map
+	rtnbit0 smap_encryption
+	jam LMP_STOP_ENCRYPTION_REQ,mem_lmo_opcode2
+	rtn
+
+parse_lmp_accepted_enc_keysize:
+	branch lmp_start_encryption
+	
+parse_lmp_accepted_start_enc:
+	call send_create_conn_start_l2cap_timer_sm
+	fetch 1,mem_state
+	rtnbit1 state_conn_comp
+	jam LMP_SETUP_COMPLETE,mem_lmo_opcode2
+	fetch 1,mem_conn_sm
+	rtnne CONN_SM_ENCRYPT_WAIT
+	jam CONN_SM_ENCRYPT_WAIT_CLEAR,mem_conn_sm
+	rtn
+	
+parse_lmp_accepted_stop_enc:
+	/* again this won't work with multipoint. keep track of anyone else encrypting */
+	//jam HOST_STOP_ENCRYPTION,message_queue_B0
+	//jam 1,message_queue_B1
+	//jam HOST_RETURN_SUCCESS,message_queue_B2
+	//fetch 1,mem_lmp_state2
+	//set1 MESSAGE_QUEUE,pdata
+	//store 1,mem_lmp_state2
+	rtn
+
+parse_lmp_not_accepted_aurand:
+	fetch 1,mem_device_option
+	bne dvc_op_hci,parse_lmp_not_accepted_aurand_send_detach
+	fetch 1,mem_link_key_exists
+	rtn blank
+	fetcht 1,mem_conn_sm
+	jam 0,mem_conn_sm
+	jam 0,mem_link_key_exists
+	fetch 1,mem_rxbuf+2
+	rtnne KEY_MISSING
+	storet 1,mem_conn_sm
+	jam LOCAL_STATEMACHINE,mem_sp_localsm
+	fetch 2,mem_lmpext_ssp_enable
+	fetcht 1,mem_remote_sppcap
+	iand temp,pdata
+	branch cmd_pair,blank
+	branch cmd_ssp
+	
+parse_lmp_not_accepted_aurand_send_detach:	
+	jam LMP_DETACH,mem_lmo_opcode2
+	jam OTHER_END_TERMINATED,mem_disconn_reason_send
+	rtn
+/*in pair remote cancel the pair*/
+parse_lmp_not_accepted_inrand:
+	fetch 1,mem_rxbuf+2
+	beq KEY_MISSING,parse_lmp_inrand_key_missing
+	rtnne PAIRING_NOT_ALLOWED
+	jam PAIRING_NOT_ALLOWED,mem_disconn_reason_send
+	jam LMP_DETACH,mem_lmo_opcode2
+	rtn	
+parse_lmp_inrand_key_missing:
+	jam KEY_MISSING,mem_disconn_reason_send
+	jam LMP_DETACH,mem_lmo_opcode2
+	rtn
+	
+parse_lmp_not_accepted_name_req:
+	rtn
+	
+parse_lmp_not_accepted_simple_pairing_number:
+	jam      SP_STAT_NULL,mem_sp_state
+	jam LMP_DETACH,mem_lmo_opcode2
+	branch   parse_rx_done
+	
+parse_lmp_not_accepted_dhkey_check:
+ifdef LMP_DBG
+	call ice_break
+endif
+	jam      SP_STAT_NULL,mem_sp_state
+	jam LMP_DETACH,mem_lmo_opcode2
+	branch   parse_rx_done
+parse_lmp_not_accepted_unsniff_req:
+	jam BT_EVT_UNSNIFF_NOT_ACCEPT,mem_fifo_temp
+	branch ui_ipc_send_event
+	
+parse_lmp_accepted_unsniff_req:
+	jam BT_EVT_UNSNIFF_ACCEPT,mem_fifo_temp
+	call ui_ipc_send_event
+	call sniff_exit
+	force 0,temp
+	branch hci_send_mode_change
+	
+parse_lmp_accepted_sniff_req:
+	jam BT_EVT_SNIFF_ACCEPT,mem_fifo_temp
+	call ui_ipc_send_event
+	force 0x02,temp
+	call hci_send_mode_change
+	setarg 0
+	store 2,mem_dsniff
+	fetch 2,mem_sniff_param_interval
+	lshift pdata,pdata
+	store 2,mem_tsniff
+	fetch 1,mem_sniff_param_attempt
+	store 1,mem_sniff_attempt
+	fetch 1,mem_sniff_param_timeout
+	store 1,mem_sniff_timeout
+	branch sniff_init
+	
+parse_lmp_not_acdcept_sniff_req:
+	jam BT_EVT_SNIFF_NOT_ACCEPT,mem_fifo_temp
+	branch ui_ipc_send_event
+	
+parse_lmp_crypt_key:
+	fetcht 1,mem_rxbuf+1
+	storet 1,mem_key_size
+	branch accept_lmp_msg
+	
+parse_lmp_setup_complete:
+	fetch 1,mem_lmp_conn_state
+	set1 RECEIVED_SETUP_COMPLETE,pdata
+	store 1,mem_lmp_conn_state
+	rtnbit1 SENT_SETUP_COMPLETE
+	jam LMP_SETUP_COMPLETE,mem_lmo_opcode2
+	branch parse_rx_done
+	
+parse_lmp_max_slot:
+	//jam LMP_MAX_SLOT,mem_lmi_opcode2
+	//branch accept_lmp_msg
+	rtn
+	
+parse_lmp_max_slot_req:
+	fetch 1,mem_max_slot
+	fetcht 1,mem_rxbuf+1
+	isub temp,null
+	//jam LMP_MAX_SLOT_REQ,mem_lmi_opcode2
+	branch accept_lmp_msg,positive
+	jam LMP_NOT_ACCEPTED,mem_lmo_opcode2
+	jam UNSPECIFIED_ERROR,mem_lmo_reason2
+	jam LMP_MAX_SLOT_REQ,mem_lmi_opcode2
+	rtn
+	
+parse_lmp_detach:
+	call prepare_disconnect
+	branch accept_lmp_msg
+	
+accept_lmp_msg:
+	jam LMP_ACCEPTED,mem_lmo_opcode2
+	rtn
+
+parse_lmp_incr_power:
+	jam LMP_MAX_POWER,mem_lmo_opcode2
+	rtn
+
+parse_lmp_decr_power:
+	jam LMP_MIN_POWER,mem_lmo_opcode2
+	rtn
+	
+parse_lmp_version_res:
+	fetch 1,mem_conn_sm
+	rtneq CONN_SM_WAIT_VERSION
+	/* continuing on with host connection state machine */
+	jam CONN_SM_SEND_FEATURES ,mem_conn_sm
+	/* we need to move fast and send au_rand...jumping to next part of state machine for conn */
+	rtn
+
+
+parse_lmp_auto_rate:
+	rtn	
+
+parse_lmp_in_rand:
+	call lmp_copy_rand
+	jam pincode_state_wait_pincode,mem_pincode_state
+	fetch 1,mem_device_option
+	beq dvc_op_hci,parse_lmp_in_rand_hci	
+	jam BT_EVT_PINCODE_REQ,mem_fifo_temp
+	call ui_ipc_send_event
+parse_lmp_in_rand_hci:
+	call hci_send_pincode_req
+	call tid_check
+	nbranch lmp_accept_inrand,true
+	nbranch parse_lmp_inrand_res,master // ignore this because of not ssp temporary
+	jam LMP_NOT_ACCEPTED,mem_lmo_opcode2
+	jam LMP_IN_RAND,mem_lmi_opcode2
+	jam TRANSACTION_COLLISION,mem_lmo_reason2
+	rtn
+parse_lmp_inrand_res:
+	fetch 1,mem_op
+	set1 op_inrand_req,pdata
+	store 1,mem_op
+	rtn
+
+//store current tid
+pop_tid_follow:
+	fetcht 1,mem_state_map
+	nsetflag blank,smap_lmptid,temp
+	storet 1,mem_state_map
+	rtn
+	
+//restore current tid
+push_tid_follow:
+	fetch 1,mem_lmo_tid2
+	rshift pdata,pdata
+	and_into 1,pdata
+	rtn
+	
+parse_lmp_au_rand:
+	call push_tid_follow
+	store 1,mem_sres_tid
+	call lmp_copy_rand
+	jam LMP_SRES,mem_lmo_opcode2
+	fetch 1,mem_link_key_exists
+	nrtn blank
+	fetch 1,mem_state
+	rtnbit1 state_combkey		/* we have comb key, but not verified */
+	jam KEY_MISSING,mem_lmo_reason2
+	fetch 1,mem_device_option
+	bne dvc_op_hci,reject_lmp_packet
+	fetch 1,mem_auth_enable
+	nbranch reject_lmp_packet,blank
+	jam 0,mem_lmo_opcode2
+parse_lmp_inrand_sres:
+	fetch 1,mem_op
+	set1 op_send_sres,pdata
+	store 1,mem_op
+	branch hci_send_linkkey_req
+	
+parse_lmp_sres:	
+	arg mem_plap,rega
+	call function_e1
+	fetch 4,mem_rxbuf+1
+	fetcht 4,mem_input_store
+	isub temp,null
+	branch authentication_ok,zero
+	jam LMP_DETACH,mem_lmo_opcode2
+	jam AUTHENTICATION_FAILURE_ERROR,mem_disconn_reason_send	
+	rtn
+authentication_ok:
+	call copy_aco
+	call linkkey_ready///save link key
+	fetch 1,mem_op
+	isolate1 op_auth_req,pdata
+	set0 op_auth_req,pdata
+	store 1,mem_op
+	call hci_send_auth_complete,true
+	fetch 1,mem_conn_sm
+	beq CONN_SM_AUTH_WAIT,authentication_ok_conn_sm
+	beq CONN_SM_PAIRING_WAIT,authentication_ok_conn_sm
+	rtn
+authentication_ok_conn_sm:
+	fetch 1,mem_pairing_auth
+	rtnne DEFALT_PAIRING_AUTH
+	fetch 1,mem_state_map
+	rtnbit1 smap_encryption
+	branch host_create_conn_encrypt
+
+parse_lmp_comb_key:
+	arg mem_rxbuf+1,rega
+	arg mem_kinit,regb
+	arg mem_random_number,contw
+	call xor16
+	arg mem_plap,rega
+	call generate_linkkey
+	jam LMP_AU_RAND,mem_lmo_opcode2
+	fetch 1,mem_state
+	bbit0 state_combkey,lmp_generate_key
+	rtn
+	
+parse_lmp_name_res:
+	fetch 2,mem_len
+	add pdata,-3,loopcnt	//for remote name length error
+	fetcht 1,mem_rxbuf+1
+	setarg mem_tmp_buffer
+	iadd temp,contw
+	arg mem_rxbuf+3,contr
+	call memcpy
+	fetcht 1,mem_name_offset
+	fetch 1,mem_rxbuf+2
+	isub temp,pdata
+	sub pdata,14,null
+	branch parse_lmp_name_res_end,positive
+	add temp,14,pdata
+	store 1,mem_name_offset
+	jam LMP_NAME_REQ,mem_lmo_opcode2
+	rtn
+parse_lmp_name_res_end:
+	fetch 1,mem_state_map
+	set1 smap_name_res,pdata
+	store 1,mem_state_map
+	bbit1 smap_name_req,lmp_disconnect
+	//force HCI_SUCCESS,queue
+	//branch hci_send_name
+	rtn
+parse_lmp_name_req:
+	fetch 1,mem_rxbuf+1
+	store 1,mem_lmi_opcode2 //offset 
+	jam LMP_NAME_RES,mem_lmo_opcode2
+	rtn
+
+parse_lmp_conn_req:
+	fetch 1,mem_device_option
+	bne dvc_op_hci,accept_lmp_msg
+	force 1,temp
+	branch hci_send_conn_req_event	
+	
+parse_lmp_timing_accuracy_req:
+	jam LMP_TIMING_ACCURACY_RES,mem_lmo_opcode2
+	rtn
+
+parse_lmp_features_req:
+	jam LMP_FEATURES_RES,mem_lmo_opcode2
+	rtn
+
+parse_lmp_version_req:
+	jam LMP_VERSION_RES,mem_lmo_opcode2
+	rtn
+
+parse_lmp_supervision_timeout:
+//	fetch 2,mem_rxbuf+1
+//	store 2,mem_supervision_to
+	rtn
+	
+
+
+parse_lmp_sniff_subrating_req:
+	fetch 2,mem_tsniff
+	iforce temp
+	fetch 1,mem_rxbuf+2
+	store 1,mem_subsniff_rate
+	imul32 temp,temp
+	fetch 2,mem_rxbuf+3
+	lshift pdata,pdata
+	store 2,mem_subsniff_tcmax
+	fetch 4,mem_rxbuf+5
+	lshift pdata,pdata
+ 	store 4,mem_subsniff_instant
+	//product pdata
+	deposit temp
+	store 2,mem_subsniff_tsniff
+	rtn
+parse_lmpext_packet_type_table_req:
+	fetcht 1,mem_ptt
+	fetch 1,mem_rxbuf+2
+	ixor temp,null
+	nbranch reject_unknown_ext_packet,zero
+	isolate1 0,pdata
+	fetch 1,mem_state_map
+	setflag true,smap_edr,pdata
+	store 1,mem_state_map
+	jam LMP_EXT_ACCEPTED,mem_lmo_opcode2
+	jam LMP_PACKET_TYPE_TABLE_REQ,mem_lmi_opcode2
+	rtn
+
+	
+parse_lmp_sniff_subrating_res:
+	rtn
+
+parse_lmp_max_power:
+	rtn
+parse_lmp_min_power:
+	rtn
+parse_lmp_page_mode_req:
+	//jam LMP_PAGE_MODE_REQ,mem_lmi_opcode2
+	branch accept_lmp_msg
+parse_lmp_page_scan_mode_req:
+	//this can influence connection. need accepted
+	//jam LMP_PAGE_SCAN_MODE_REQ,mem_lmi_opcode2
+	branch accept_lmp_msg
+parse_lmp_preferred_rate:
+	rtn
+parse_lmp_remove_sco_link_req:
+	call stop_sco
+	jam LMP_REMOVE_SCO_LINK_REQ,mem_lmi_opcode2
+	branch accept_lmp_msg
+
+
+parse_lmp_sco_link_req:
+	fetch 1,mem_rxbuf+1
+	store 1,mem_sco_handle
+	fetch 1,mem_rxbuf+3
+	store 1,mem_esco_desco
+	fetch 1,mem_rxbuf+6
+	store 1,mem_air_mode
+	call push_tid_follow
+	store 1,mem_accptsco_tid
+	force 0,temp
+	branch hci_send_conn_req_event
+	
+parse_lmp_slot_offset:
+	fetch 2,mem_rxbuf+1
+	store 2,mem_slot_offset
+	rtn
+	
+parse_lmp_sniff_req:
+	fetch 1,mem_state
+	bbit1 state_insniff,lmp_reject_sniff
+	fetch 2,mem_rxbuf+2 /* dsniff */
+	lshift pdata,pdata
+	store 2,mem_dsniff	
+	fetch 2,mem_rxbuf+4 /* tsniff */
+	lshift pdata,pdata
+	store 2,mem_tsniff
+	fetch 2,mem_rxbuf+6 /* sniff attempt */
+	store 1,mem_sniff_attempt
+	iforce temp
+	fetch 2,mem_rxbuf+8 /* sniff timeout */
+	store 1,mem_sniff_timeout
+	isub temp,null
+	nbranch set_big_value_to_attempt,positive
+	store 1,mem_sniff_attempt
+set_big_value_to_attempt:	
+	//call sniff_init
+	jam LMP_ACCEPTED,mem_lmo_opcode2
+	jam LMP_SNIFF_REQ,mem_lmi_opcode2
+	rtn
+
+lmp_reject_sniff:
+	jam PDU_NOT_ALLOWED,mem_lmo_reason2
+	branch reject_lmp_packet
+
+parse_lmp_start_encryption_req:
+	call accept_lmp_msg
+	call lmp_copy_rand
+	call function_e3
+	branch start_encryption
+	
+parse_lmp_stop_encryption_req:
+	call accept_lmp_msg
+	branch stop_encryption
+	
+
+parse_lmp_switch_req:
+	fetch 4,mem_rxbuf+1
+	lshift pdata,pdata
+	//branch parse_lmp_switch_req_not_accept
+	branch parse_lmp_switch_accept,master
+	fetcht 1,mem_link_key_exists
+	nbranch parse_lmp_switch_req_clear_mark,blank
+parse_lmp_switch_req_not_accept:
+	jam LMP_NOT_ACCEPTED,mem_lmo_opcode2
+	jam LMP_SWITCH_REQ,mem_lmi_opcode2
+	jam PDU_NOT_ALLOWED,mem_lmo_reason2
+	rtn
+parse_lmp_switch_req_clear_mark:
+	jam LMP_SLOT_OFFSET,mem_lmo_opcode2
+	jam 0,mem_conn_sm
+	branch role_switch_prepare
+
+parse_lmp_switch_accept:
+	call role_switch_prepare
+	set1 mark_reconn_recieve_switch,mark
+	fetch 1,mem_connection_options
+	set0 CONNECTION_SWITCH,pdata
+	store 1,mem_connection_options
+	branch accept_lmp_msg
+
+	
+
+parse_lmp_temp_rand:
+	rtn
+parse_lmp_temp_key:
+	rtn
+parse_lmp_timing_accuracy_res:
+	rtn
+	
+parse_lmp_unit_key:
+	
+	rtn
+
+	
+parse_lmp_unsniff_req:
+	jam LMP_ACCEPTED,mem_lmo_opcode2
+	jam LMP_UNSNIFF_REQ,mem_lmi_opcode2
+	jam BT_EVT_REMOTE_UNSNIFF,mem_fifo_temp
+	call ui_ipc_send_event
+	force 0,temp
+	call hci_send_mode_change
+	branch sniff_exit
+parse_lmp_use_semi_permanend_key:
+	rtn
+	
+parse_lmp_encapsulated_header:
+	fetch 1,mem_rxbuf+1
+	bne ENCAPSULATED_MAJOR_TYPE_P192,parse_lmp_encapsulated_header_reject
+	fetch 1,mem_rxbuf+2
+	bne ENCAPSULATED_MINOR_TYPE_P192,parse_lmp_encapsulated_header_reject
+	fetch 1,mem_rxbuf+3
+	bne ENCAPSULATED_LEN_P192,parse_lmp_encapsulated_header_reject
+	call check_localsm
+	branch parse_lmp_encapsulated_header_master,true
+	jam SP_STAT_KEY_RECV,mem_sp_state
+parse_lmp_encapsulated_header_master:
+	jam LMP_ACCEPTED,mem_lmo_opcode2
+	jam LMP_ENCAPSULATED_HEADER,mem_lmi_opcode2
+	branch parse_rx_done
+	
+parse_lmp_encapsulated_header_reject:
+	jam      PDU_NOT_ALLOWED,mem_lmo_reason2
+	branch   reject_lmp_packet
+	
+parse_lmp_accepted_encapsulated_header:
+	//jam LMP_ENCAPSULATED_PAYLOAD,mem_lmi_opcode2
+	//branch   accept_lmp_msg  	
+	jam LMP_ENCAPSULATED_PAYLOAD,mem_lmo_opcode2
+      //   branch   accept_lmp_msg  	
+         rtn
+parse_lmp_accepted_simple_pairing_number:
+	call check_localsm
+	rtn true
+	jam      SP_STAT_CONFIRM_RECV,mem_sp_state
+	rtn
+
+parse_lmp_accepted_dhkey_check:
+	//here must be change***  shyd
+	call check_localsm
+ifdef SIMPLE_PAIRING
+	ncall g_noninit,true	//when be master  call g_init
+	call g_init,true
+endif
+	call hci_send_user_confirmation_req
+	call hci_send_ssp_complete		//un very good put here
+	call check_localsm
+	rtn true
+	jam SP_STAT_LINK_KEY_CALC,mem_sp_state
+	jam SP_FLAG_COMMIT,mem_sp_flag
+	rtn
+
+parse_simple_pairing_confirm:
+	arg mem_sp_confirm_remote,contw
+	fetch 8,mem_rxbuf+1
+	istore   8,contw
+	fetch 8,mem_rxbuf+9
+	istore   8,contw
+ifdef SIMPLE_PAIRING
+	branch master_set_mem_master_sp_flag
+endif
+	
+parse_lmp_encapsulated_payload:
+	fetch 1,mem_master_sp_state
+	beq SP_STAT_RANDOM_SEND,parse_encapsulated_payload_master
+	fetch    1,mem_sp_state
+	bne SP_STAT_KEY_RECV,parse_lmp_encapsulated_payload_reject
+parse_encapsulated_payload_master:
+	fetch    1,mem_sp_remote_key_recv_count
+	sub      pdata,0x20,contw
+	nbranch  parse_lmp_encapsulated_payload_reject,positive
+	arg      mem_sp_pubkey_remote,contw
+	iadd     contw,contw
+	fetch 8,mem_rxbuf+1
+	istore   8,contw
+	fetch 8,mem_rxbuf+9
+	istore   8,contw
+	fetch    1,mem_sp_remote_key_recv_count
+	increase 16,pdata
+	store    1,mem_sp_remote_key_recv_count
+	bne ENCAPSULATED_LEN_P192,accept_lmp_msg
+parse_lmp_encapsulated_payload_completed:
+	call check_localsm
+	branch accept_lmp_msg,true
+	jam      SP_KEY_VALID,mem_sp_remote_key_invalid
+	jam      SP_STAT_KEY_GENERATE,mem_sp_state
+	jam      SP_FLAG_COMMIT,mem_sp_flag  
+	branch   accept_lmp_msg
+parse_lmp_encapsulated_payload_reject:
+	jam      PDU_NOT_ALLOWED,mem_lmo_reason2
+	branch   reject_lmp_packet	
+parse_lmp_accepted_encapsulated_payload: 
+	fetch 1,mem_sp_local_key_send_count
+	beq	ENCAPSULATED_LEN_P192,parse_LMP_ENCAPSULATED_PAYLOAD_all_accepted
+	jam LMP_ENCAPSULATED_PAYLOAD,mem_lmo_opcode2
+	branch   parse_rx_done  	
+parse_lmp_encapsulated_payload_all_accepted:   
+	call check_localsm
+	branch parse_lmp_encapsulated_payload_all_accepted_master,true
+	jam      SP_FLAG_COMMIT,mem_sp_flag
+	jam      SP_STAT_COMMIT_CALC,mem_sp_state 
+	branch   parse_rx_done 
+parse_lmp_encapsulated_payload_all_accepted_master:
+	//call sp_master_generate_local_key
+	branch   parse_rx_done   
+
+parse_lmp_simple_pairing_number:
+	fetch 1,mem_master_sp_state
+	beq SP_STAT_RANDOM_SEND,parse_lmp_simple_pairing_number_master
+	fetch    1,mem_sp_state
+	bne SP_STAT_RANDOM_RECV,parse_lmp_simple_pairing_number_reject
+parse_lmp_simple_pairing_number_master:
+	arg      mem_sp_random_remote,contw
+	fetch 8,mem_rxbuf+1
+	istore   8,contw
+	fetch 8,mem_rxbuf+9
+	istore   8,contw
+	call check_localsm
+	branch parse_lmp_simple_pairing_number_master0,true
+	jam      SP_STAT_RANDOM_SEND,mem_sp_state
+	jam      SP_FLAG_COMMIT,mem_sp_flag
+	branch accept_lmp_msg  
+parse_lmp_simple_pairing_number_master0:
+	jam SP_STAT_COMMIT_CALC,mem_master_sp_state
+ifdef SIMPLE_PAIRING
+	branch master_set_mem_master_sp_flag
+endif
+	//jam LMP_SIMPLE_PAIRING_NUMBER,mem_lmi_opcode2
+	//branch accept_lmp_msg  
+parse_lmp_simple_pairing_number_reject:
+	jam      PDU_NOT_ALLOWED,mem_lmo_reason2
+	branch reject_lmp_packet
+	
+parse_dhkey_check:
+	fetch    1,mem_master_sp_state
+	beq SP_STAT_CONFIRM_SEND,parse_dhkey_check_master
+	fetch    1,mem_sp_state
+	bne SP_STAT_CONFIRM_RECV,parse_lmp_dhkey_check_reject
+parse_dhkey_check_master:
+	arg      mem_sp_check_result,contw
+	fetch 8,mem_rxbuf+1
+	istore   8,contw
+	fetch 8,mem_rxbuf+9
+	istore   8,contw
+	call check_localsm
+	branch parse_dhkey_check_master0,true
+	jam      SP_STAT_CONFIRM_CHECK,mem_sp_state
+	jam      SP_FLAG_COMMIT,mem_sp_flag
+	branch   parse_rx_done
+parse_dhkey_check_master0:
+	jam      SP_STAT_CONFIRM_CHECK,mem_master_sp_state
+	jam      SP_FLAG_COMMIT,mem_master_sp_flag
+	branch   parse_rx_done
+parse_lmp_dhkey_check_reject:
+	jam      PDU_NOT_ALLOWED,mem_lmo_reason2
+	branch reject_lmp_packet
+	
+parse_lmp_clkoffset_res:
+	branch parse_rx_done
+		
+parse_lmp_encryption_mode_req:
+	fetch 1,mem_connection_options
+	set0 CONNECTION_ENCRYPT
+	store 1,mem_connection_options
+	call accept_lmp_msg
+	nrtn master					/* do sth only if we're master */
+	fetch 1,mem_rxbuf+1
+	fetcht 1,mem_op
+	setflag blank,op_stop_enc,temp
+	nsetflag blank,op_start_enc,temp
+	storet 1,mem_op
+	rtn 
+	
+parse_lmp_features_res:
+	fetcht 8,mem_rxbuf+1		/*fix bcp(baoshijie) err*/
+	fetch 1,mem_hci_cmd
+	bne hci_cmd_wait_remote_feature,parse_lmp_features_res_not_hci
+	jam 0,mem_hci_cmd
+	call hci_send_remote_features
+parse_lmp_features_res_not_hci:	
+	fetch 1,mem_conn_sm
+	rtnne CONN_SM_WAIT_FEATURES_RES
+	fetch 1,mem_device_option
+	beq dvc_op_hci,parse_lmp_feature_ext_sm
+	fetch 1,mem_connection_options
+	bbit0 CONNECTION_FEATURE_EXT,parse_lmp_send_conn
+parse_lmp_feature_ext_sm:
+	jam CONN_SM_SEND_FEATURES_EXT,mem_conn_sm
+	rtn
+parse_lmp_send_conn:
+	jam CONN_SM_SEND_CONN_REQ,mem_conn_sm
+	rtn
+parse_lmp_test_activate:
+	fetch 1,mem_debug_config
+	store 1,mem_test_mode_old_debug_config
+	jam LMP_ACCEPTED,mem_lmo_opcode2
+	jam LMP_TEST_ACTIVATE,mem_lmi_opcode2
+	rtn
+parse_lmp_test_control:
+	/* the 9 test control parameters are XORed with 0x55 */
+	/* doing the XOR here and storing in mem_temp_payload */
+	jam LMP_ACCEPTED,mem_lmo_opcode2
+	jam LMP_TEST_CONTROL,mem_lmi_opcode2
+	force 9,loopcnt
+	arg mem_rxbuf+1,contr
+	arg mem_temp_payload,contw
+parse_lmp_test_xor:
+	ifetch 1,contr
+	xor_into 0x55,pdata
+	istore 1,contw
+	loop parse_lmp_test_xor
+	fetch 1,test_mode_scenario
+	fetcht 1,mem_tester_emulate
+	set0 tester_no_whitening,temp
+	set0 tester_pattern_test,temp
+	beq EXIT_TEST_MODE,	 parse_lmp_test_control_exit
+	beq PAUSE_TEST_MODE,	 parse_lmp_test_control_pause
+	beq CLOSED_LOOP_BACK_ACL,	 parse_lmp_test_control_loopback
+	beq ACL_WITHOUT_WHITENING,	 parse_lmp_test_control_loopback_nowhite
+	beq CLOSED_LOOP_BACK_SCO,	 parse_lmp_test_control_loopback
+	beq SCO_WITHOUT_WHITENING,	 parse_lmp_test_control_loopback_nowhite
+	beq ZERO_PATTERN,	 parse_lmp_test_control_pattern
+	beq ONE_PATTERN,	 parse_lmp_test_control_pattern
+	beq ALT_PATTERN,	 parse_lmp_test_control_pattern
+	beq ALT2_PATTERN,	 parse_lmp_test_control_pattern
+	beq PSEUDORANDOM,	 parse_lmp_test_control_pattern
+	rtn
+parse_lmp_test_control_exit:
+	/* restoring old parameters */
+	fetch 1,mem_tester_emulate
+	set1 tester_exit,pdata
+	set1 tester_change,pdata
+	store 1,mem_tester_emulate
+	rtn
+parse_lmp_test_control_pattern:
+	set1 tester_pattern_test,temp
+	jam 5,mem_lch_code
+	fetch 2,test_mode_data_length
+	iforce loopcnt
+	store 2,mem_len
+	arg mem_rxbuf,contw
+	call pn9
+parse_lmp_test_control_loopback_nowhite:
+	set1 tester_no_whitening,temp
+parse_lmp_test_control_loopback:
+	set1 tester_change,temp
+	force 0,pdata
+	store 1,mem_slave_rcvcnt
+	store 2,mem_tst_pktcnt_crc
+	store 2,mem_tst_pktcnt_dmh
+	store 2,mem_tst_pktcnt_hec
+	store 2,mem_tst_pktcnt_sync
+	fetch 1,test_mode_hopping_mode
+	compare FIXED_FREQ,pdata,0xff
+	setflag true,tester_fixed_freq,temp
+	storet 1,mem_tester_emulate
+	rtn
+
+parse_lmp_test_control_pause:
+	set0 mark_testmode,mark
+	jam 0,mem_tester_emulate
+	fetch 1,mem_debug_config
+	set0 debug_tx_pattern,pdata
+	store 1,mem_debug_config
+	rtn
+
+check_test_cond:
+	fetch 1,mem_tester_emulate
+	rtnbit0 tester_change
+	fetch 1,mem_tester_cnt
+	increase 1,pdata
+	store 1,mem_tester_cnt
+	rtnne 5
+	jam 0,mem_tester_cnt
+	fetch 1,mem_tester_emulate
+	set0 tester_change,pdata
+	store 1,mem_tester_emulate
+	bbit1 tester_exit,check_test_exit
+	isolate1 tester_no_whitening,pdata
+	call test_no_white,true
+	ncall test_enable_white,true
+	fetch 1,test_mode_packet_type
+	compare 0x20,pdata,0x30
+	fetch 1,mem_state_map
+	setflag true,smap_edr,pdata
+	store 1,mem_state_map
+	fetch 1,mem_tester_emulate
+	fetcht 1,mem_debug_config
+	isolate1 tester_pattern_test,pdata
+	setflag true,debug_tx_pattern,temp
+	isolate1 tester_fixed_freq,pdata
+	setflag true,debug_tx_fixed_freq,temp
+	setflag true,debug_rx_fixed_freq,temp
+	storet 1,mem_debug_config
+	fetch 1,test_mode_tx_freq
+	store 1,mem_tx_fixed_freq
+	fetch 1,test_mode_rx_freq
+	store 1,mem_rx_fixed_freq
+	set1 mark_testmode,mark
+	rtn
+	
+check_test_exit:
+	set0 mark_testmode,mark
+	jam 0,mem_tester_emulate
+	fetch 1,mem_test_mode_old_debug_config
+	store 1,mem_debug_config
+	hfetch 1,core_config
+	and_into 0xfb,pdata			/* whitening on */
+	hstore 1,core_config	
+	rtn
+	
+
+lmp_copy_rand:	
+	arg mem_rxbuf+1,contr
+	arg mem_random_number,contw
+	branch memcpy16
+
+lmp_generate_key:
+	jam LMP_COMB_KEY,mem_lmo_opcode2
+	rtn
+
+lmp_start_encryption:
+	nrtn master
+	jam LMP_START_ENCRYPTION_REQ,mem_lmo_opcode2
+	rtn
+	
+lmp_accept_inrand:
+	arg mem_lap,rega
+	call generate_kinit
+	jam LMP_ACCEPTED,mem_lmo_opcode2
+	jam LMP_IN_RAND,mem_lmi_opcode2
+	rtn
+
+lmp_disconnect:
+	jam 10,mem_conn_timer
+	jam LMP_DETACH,mem_lmo_opcode2
+	jam LOCAL_HOST,mem_disconn_reason_send	
+	rtn
+
+/*********************************/
+/*********lmp send*************/
+/********************************/
+	/* enable user if a lmp packet is to send */
+send_lmp:
+	set1 mark_ext_patch,mark
+	bpatch patch3c_3,mem_patch3c
+	disable user
+	call lmo_fifo_process
+	fetch 1,mem_lmp_to_send
+	rtn blank
+/* lmp message to be processed. this will either be because host??? */
+/* wants to send a lmp message or because one resulted from the LMP */
+/* processing section */
+/********* outgoing lmp lookup table *************/
+	bbit1 7,send_lmp_escape
+	beq LMP_NAME_REQ,	 send_lmp_name_req
+	beq LMP_NAME_RES,	 send_lmp_name_res
+	beq LMP_ACCEPTED,	 send_lmp_accepted
+	beq LMP_NOT_ACCEPTED,	 send_lmp_not_accepted
+	beq LMP_FEATURES_REQ,	 send_lmp_features_req
+	beq LMP_FEATURES_RES,	 send_lmp_features_res
+	beq LMP_TIMING_ACCURACY_RES,	 send_lmp_timing_accuracy_res
+	beq LMP_VERSION_REQ,	 send_lmp_version_req
+	beq LMP_VERSION_RES,	 send_lmp_version_res
+	beq LMP_SETUP_COMPLETE,	 send_lmp_setup_complete
+	beq LMP_SUPERVISION_TIMEOUT,	 send_lmp_superto
+	beq LMP_HOST_CONNECTION_REQ,send_lmp_no_payload
+	beq LMP_IN_RAND,send_lmp_inrand
+	beq LMP_COMB_KEY,send_lmp_comb_key
+	beq LMP_AU_RAND,send_lmp_aurand
+	beq LMP_SRES,send_lmp_sres
+	beq LMP_ENCRYPTION_MODE_REQ,send_lmp_encryption_mode_req
+	beq LMP_ENCRYPTION_KEY_SIZE_REQ,send_lmp_encryption_key_size_req
+	beq LMP_START_ENCRYPTION_REQ,send_lmp_start_encryption
+	beq LMP_DETACH,send_lmp_detach
+	beq LMP_QUALITY_OF_SERVICE_REQ, send_lmp_quality_of_service_req
+	beq LMP_UNIT_KEY,send_lmp_unit_key
+	//Optional (O)
+	beq LMP_SCO_LINK_REQ, send_lmp_sco_link_req	
+	beq LMP_CLKOFFSET_RES, send_lmp_clkoffset_res	
+	beq LMP_MAX_POWER,send_lmp_nopayload_reply
+	beq LMP_MAX_SLOT, send_lmp_max_slot
+	beq LMP_MAX_SLOT_REQ, send_lmp_max_slot_req
+	beq LMP_MIN_POWER,send_lmp_nopayload_reply
+	beq LMP_REMOVE_SCO_LINK_REQ, send_lmp_remove_sco_link_req	
+	beq LMP_SLOT_OFFSET, send_lmp_slot_offset
+	beq LMP_SWITCH_REQ, send_lmp_switch_req
+	beq LMP_SNIFF_REQ, send_lmp_sniff_req
+	beq LMP_STOP_ENCRYPTION_REQ, send_lmp_stop_encryption_req	
+	beq LMP_TIMING_ACCURACY_REQ, send_lmp_timing_accuracy_req
+	beq LMP_UNSNIFF_REQ, send_lmp_unsniff_req
+	beq LMP_ENCAPSULATED_HEADER,send_lmp_encapsulated_header
+	beq LMP_ENCAPSULATED_PAYLOAD,send_lmp_encapsulated_payload
+	beq LMP_SIMPLE_PAIRING_CONFIRM,send_lmp_simple_pairing_comfirm
+	beq LMP_SIMPLE_PAIRING_NUMBER,send_lmp_simple_pairing_number
+	beq LMP_DHKEY_CHECK,send_lmp_dhkey_check
+	beq LMP_AUTO_RATE,send_lmp_auto_rate
+	beq LMP_ENC_KEY_SIZE_MASK_RES,send_lmp_enc_key_size_mask_res
+	//master only must(M)
+	beq LMP_CLKOFFSET_REQ, send_lmp_clkoffset_req
+	beq LMP_QUALITY_OF_SERVICE, send_lmp_quality_of_service
+	beq LMP_TEST_ACTIVATE, send_lmp_test_activate
+	beq LMP_TEST_CONTROL, send_lmp_test_control
+send_lmp_error:
+	branch assert
+	rtn
+send_lmp_escape:
+	beq LMP_EXT_ESCO_LINK_REQ,send_lmpext_esco_req
+	beq LMP_EXT_REMOVE_ESCO_REQ,send_lmpext_remove_esco
+	beq LMP_EXT_ACCEPTED,send_lmpext_accepted
+	beq LMP_EXT_FEATURES_RES,send_lmpext_features_res
+	beq LMP_NOT_ACCEPTED_EXT,send_lmpext_not_accepted
+	beq LMP_EXT_FEATURES_REQ,send_lmpext_features_req
+	beq LMP_PACKET_TYPE_TABLE_REQ,send_lmpext_packet_type_table_req
+	beq LMP_PAUSE_ENCRYPTION_REQ,send_lmpext_pause_encryption_req
+	beq LMP_IO_CAP_REQ,send_lmp_io_cap_req
+	beq LMP_IO_CAP_RES,send_lmpext_io_cap_res
+	beq LMP_SNIFF_SUBRATING_REQ,send_lmpext_sniff_subrating_req
+	beq LMP_SNIFF_SUBRATING_RES,send_lmpext_sniff_subrating_res
+	branch assert
+
+
+/******** LMP follow messages **********/
+/****** TID follow received packet  *******/
+
+send_lmp_accepted:
+	force 2,pdata
+	call msg_send_lmp
+	fetch 1,mem_lmi_opcode
+	istore 1,contw
+	beq LMP_SCO_LINK_REQ,send_lmp_accptsco
+	call send_lmp_follow
+	fetch 1,mem_lmi_opcode
+	beq LMP_IN_RAND,send_lmp_accepted_inrand
+	beq LMP_ENCRYPTION_MODE_REQ,send_lmp_accepted_enc_mode
+	beq LMP_ENCRYPTION_KEY_SIZE_REQ,send_lmp_accepted_enc_key
+	beq LMP_SNIFF_REQ,send_lmp_accept_sniff_req
+	beq LMP_HOST_CONNECTION_REQ,send_lmp_accepted_connection
+	beq LMP_REMOVE_SCO_LINK_REQ,send_lmp_accept_remove_sco_link_req
+	beq LMP_DHKEY_CHECK,send_lmp_accept_dhkey_check
+	beq LMP_START_ENCRYPTION_REQ,send_create_conn_start_l2cap_timer_sm  
+	rtn	
+	
+send_create_conn_start_l2cap_timer_sm:
+	fetch 1,mem_conn_sm
+	rtn blank
+	jam CONN_SM_WAIT_DONE,mem_conn_sm
+	setarg TIMER_ENPT_WAITE
+	arg enpt_delay_timer,queue
+	branch timer_init
+	
+send_lmp_accept_sniff_req:
+	force 0x02,temp
+	call hci_send_mode_change
+	branch sniff_init
+send_lmp_not_accepted:
+	force 3,pdata
+	call msg_send_lmp
+	fetch 1,mem_lmi_opcode
+	beq LMP_AU_RAND,send_not_accept_aurand
+	istore 1,contw
+	fetch 1,mem_lmo_reason
+	istore 1,contw
+	branch send_lmp_follow
+
+send_not_accept_aurand:
+	istore 1,contw
+	fetch 1,mem_lmo_reason
+	istore 1,contw
+	arg mem_sres_tid,temp
+	branch special_tid_store
+
+send_lmpext_accepted:	
+	force 4,queue
+	call send_lmpext
+	setarg LMP_ESCAPE
+	istore 1,contw
+	fetch 1,mem_lmi_opcode
+	set0 7,pdata
+	istore 1,contw
+	fetch 1,mem_lmi_opcode
+	beq LMP_EXT_ESCO_LINK_REQ,send_lmp_accptsco
+	call send_lmp_follow
+	fetch 1,mem_lmi_opcode
+	beq LMP_EXT_REMOVE_ESCO_REQ,send_lmp_accept_remove_sco_link_req
+	rtn
+
+send_lmpext_not_accepted:
+	force 5,queue
+	call send_lmpext
+	setarg LMP_ESCAPE
+	istore 1,contw
+	fetch 1,mem_lmi_opcode
+	set0 7,pdata
+	istore 1,contw
+	fetch 1,mem_lmo_reason
+	istore 1,contw
+	branch send_lmp_follow
+
+send_lmp_accptsco:
+	call play_sco
+	arg mem_accptsco_tid,temp
+	branch special_tid_store
+	
+
+send_lmp_accepted_inrand:
+	call clear_linkkey
+	call tid_check	
+	rtn true
+	branch lmp_generate_key
+
+send_lmp_accepted_enc_mode:
+	fetch 1,mem_op
+	bbit1 op_start_enc,send_lmp_accepted_enc_start
+	rtnbit0 op_stop_enc
+	jam LMP_STOP_ENCRYPTION_REQ,mem_lmo_opcode2
+	set0 op_stop_enc,pdata
+	call tid_reply
+	branch send_lmp_accepted_enc_exit
+send_lmp_accepted_enc_start:
+	jam LMP_ENCRYPTION_KEY_SIZE_REQ,mem_lmo_opcode2
+	set0 op_start_enc,pdata
+send_lmp_accepted_enc_exit:
+	store 1,mem_op
+	rtn
+
+send_lmp_accepted_enc_key:
+	call check_localsm
+	branch lmp_start_encryption,true
+	rtn
+
+send_lmp_accepted_connection:
+	//jam LMP_SETUP_COMPLETE,mem_lmo_opcode2
+	fetch 1,mem_lmp_conn_state
+	set1 RECEIVED_CONN_REQ,pdata
+	store 1,mem_lmp_conn_state
+	jam BT_EVT_BB_CONNECTED,mem_fifo_temp
+	branch ui_ipc_send_event
+
+/*distroy sco handle 0xe00*/
+send_lmp_accept_remove_sco_link_req:
+	rtn
+
+send_lmp_accept_dhkey_check:
+	rtn
+/******** LMP reply messages **********/
+/****** TID always set to remote  *******/
+
+send_lmpext_features_res:
+	force 12,queue
+	call send_lmpext
+	setarg 0x01
+	istore 1,contw
+	fetch 2,mem_lmpext_ssp_enable
+	istore 2,contw
+	setarg 0
+	istore 3,contw
+	setarg 0x00
+	istore 4,contw
+	branch send_lmp_reply
+send_lmpext_io_cap_res:
+         
+         force 5,queue
+         call send_lmpext
+         fetch 1,mem_device_option
+         beq dvc_op_hci,send_lmpext_io_cap_res_hci
+         setarg 0x040003
+         istore 3,contw
+         store 3,mem_sp_iocap_local
+         branch send_lmp_reply
+send_lmpext_io_cap_res_hci:
+	fetch 3,mem_sp_iocap_local
+	istore 3,contw
+	branch send_lmp_reply
+         
+send_lmp_io_cap_req:
+	force 5,queue
+	call send_lmpext
+	fetch 3,mem_sp_iocap_local
+	istore 3,contw
+	branch send_lmp_request
+	
+
+send_lmpext_sniff_subrating_req: 
+
+	rtn
+send_lmpext_sniff_subrating_res: 
+         force 9,queue
+         call send_lmpext
+         fetch 1,mem_subsniff_rate
+         istore 1,contw
+         fetch 2,mem_subsniff_tcmax
+         istore 2,contw
+         fetch 4,mem_subsniff_instant
+         istore 4,contw
+	branch send_lmp_reply
+
+send_lmp_name_res:
+	force 17,pdata
+	call msg_send_lmp
+	fetch 1,mem_lmi_opcode  /* loading name offset */
+	copy pdata,temp
+	beq 0x00,send_lmp_name_res_offset_ok
+	beq 0x0e,send_lmp_name_res_offset_ok
+	beq 0x1c,send_lmp_name_res_offset_ok
+	rtn
+send_lmp_name_res_offset_ok:
+	istore 1,contw	/* writing name offset */
+	fetch 1,mem_local_name_length
+	istore 1,contw	/* writing name length */
+	copy pdata,loopcnt
+	setarg mem_local_name
+	iadd temp,contr	/* setting read location */
+	call memcpy
+	branch send_lmp_reply
+
+
+send_lmp_timing_accuracy_res:
+	force 3,pdata
+	call msg_send_lmp
+	setarg 0x0114
+	istore 2,contw
+	branch send_lmp_reply
+
+send_lmp_clkoffset_res:
+	// dopod s505 must wait for this res
+	force 3,pdata
+	call msg_send_lmp
+	fetch 4,mem_clke_bt
+	isub clkn_bt,pdata
+	branch send_lmp_clkoffset_res_master,master
+	sub pdata,0,pdata		/* our role is slave */
+send_lmp_clkoffset_res_master:	
+	// bit 16-2 of clkslave-clkmaster
+	rshift2 pdata,pdata
+	set0 15,pdata
+	istore 2,contw
+	branch send_lmp_reply
+
+send_lmp_version_res:
+	force 6,pdata
+	call msg_send_lmp
+	fetch 5,mem_lmp_version
+	istore 5,contw
+	branch send_lmp_reply
+
+send_lmp_features_res:
+	force 9,pdata
+	call msg_send_lmp
+	fetch 8,mem_features
+	istore 8,contw
+	branch send_lmp_reply  
+
+
+/******** LMP request messages **********/
+/****** TID always set to local initiated *******/
+	
+send_lmpext_esco_req:
+	branch send_lmpext_esco_req_master,master
+	//jam 0x00,mem_sco_handle
+	//jam 0x7,mem_esco_addr
+	branch send_lmpext_esco_req_slave
+send_lmpext_esco_req_master:
+	jam 0x07,mem_esco_addr
+send_lmpext_esco_req_slave:
+	jam 0,mem_esco_desco
+	force 16,queue
+	call send_lmpext
+	fetch 1,mem_sco_handle
+	istore 1,contw
+	fetch 1,mem_esco_addr
+	istore 1,contw
+	setarg 0
+	istore 1,contw			/* timing ctrl */
+	fetch 1,mem_esco_desco
+	istore 1,contw			/* Desco */
+	setarg 6
+	istore 1,contw			/* Tesco */
+	setarg 2
+	istore 1,contw			/* Wesco */
+	setarg 7
+	istore 1,contw			/* M packet type EV3 */
+	istore 1,contw			/* S packet type EV3 */
+	setarg 30
+	istore 2,contw			/* M packet size */
+	istore 2,contw			/* S packet size */
+	fetch 1,mem_air_mode
+	istore 1,contw
+	fetch 1,mem_neogotiation_state
+	istore 1,contw			/* neogotiation state */
+	nbranch send_lmp_reply,blank
+	branch send_lmp_reply,master
+	branch send_lmp_request
+	
+send_lmpext_remove_esco:
+	force 4,queue
+	call send_lmpext
+	fetch 1,mem_sco_handle
+	istore 1,contw
+	fetch 1,mem_disconn_reason_send
+	istore 1,contw
+	fetch 1,mem_esco_saved_arq
+	store 1,mem_arq 
+	branch send_lmp_request
+	
+
+send_lmpext_features_req:
+	force 12,queue
+	call send_lmpext
+	setarg 0x01
+	istore 1,contw
+	fetch 2,mem_lmpext_ssp_enable
+	istore 2,contw
+	setarg 0
+	istore 3,contw
+	setarg 0x00
+	istore 4,contw
+	branch send_lmp_request
+
+send_lmpext_packet_type_table_req:
+	force 3,queue
+	call send_lmpext
+	fetch 1,mem_ptt
+	istore 1,contw
+	disable user
+	call send_lmp_request
+	nrtn user
+	nrtn master
+	fetch 1,mem_afh_cfg
+	rtnbit0 AFH_CFG_ON
+	call afh_init
+	branch afh_open_all_channels
+	
+//default:featrue is enable,extfeature is disable
+ssp_enable:
+	fetch 1,mem_features+6
+	set1 param_featrue_ssp,pdata
+	store 1,mem_features+6
+	setarg param_lmpext_ssp_enable
+	store 2,mem_lmpext_ssp_enable
+	rtn
+
+ssp_disable:
+	fetch 1,mem_features+6
+	set0 param_featrue_ssp,pdata
+	store 1,mem_features+6
+	setarg 0
+	store 2,mem_lmpext_ssp_enable
+	rtn
+	
+afh_init:
+	jam 0x3,mem_afh_cfg
+	setarg 0
+	store 4,mem_afh_timer
+	arg mem_afh_map_lo,contw
+	call afh_reset_map
+	arg mem_afh_map_new,contw
+	call afh_reset_map
+	arg mem_afh_classify_channel_map,contw
+	call afh_reset_map
+	branch afh_clear_error_counter
+afh_open_all_channels:
+	arg mem_afh_map_new,contw
+	call afh_reset_map
+	call afh_clear_error_counter
+	branch afh_set_send_flag
+
+
+afh_open_classify_map:
+	fetch 5,mem_afh_classify_channel_map
+	store 5,mem_afh_map_new
+	ifetch 5,contr
+	istore 5,contw
+	call afh_clear_error_counter
+	branch afh_set_send_flag
+	
+afh_reset_map:
+	setarg 0xffffff
+	istore 3,contw
+	istore 3,contw
+	istore 3,contw
+	setarg 0x7f
+	istore 1,contw
+	rtn
+afh_clear_error_counter:
+	setarg 0
+	store 2,mem_afh_error_total
+	rtn
+afh_set_send_flag:
+	fetch 1,mem_afh_cfg
+	set1 send_lmp_set_afh,pdata
+	store 1,mem_afh_cfg
+	rtn
+send_set_afh:
+	nrtn master
+	force 16,pdata
+	call msg_send_lmp
+	deposit clkn_bt
+	arg 476,temp
+	iadd temp,pdata
+	rshift pdata,pdata
+	increase 1,pdata
+	set0 0,pdata
+	istore 4,contw
+	copy pdata,temp
+	setarg 1
+	istore 1,contw
+	fetch 5,mem_afh_map_new
+	istore 5,contw
+	ifetch 5,contr
+	istore 5,contw
+	lshift temp,temp
+	storet 4,mem_afh_instant
+	call send_lmp_request
+	fetch 1,mem_mode
+	set1 afh_change,pdata
+	store 1,mem_mode
+	jam 1,mem_afh_new_mod
+	fetch 4,mem_afh_instant
+	arg TIMER_ONE_MINUTE,temp //set ahf_reset_timer
+	iadd temp,pdata
+	store 4,mem_afh_timer
+	fetch 1,mem_afh_cfg
+	rtnbit1 AFH_CFG_MASTER_SENT_REQ
+	jam LMP_EXT_CHN_CLASSIFICATION_REQ,mem_lmo_opcode2
+	rtn
+
+
+send_lmpext_pause_encryption_req:
+	force 2,queue
+	call send_lmpext
+	nbranch send_lmp_reply,master
+	// assume slave will not send pause req firstly???
+	branch send_lmp_request
+
+
+	
+send_lmp_detach:
+	force 2,pdata
+	call msg_send_lmp
+	fetch 1,mem_disconn_reason_send
+	istore 1,contw
+	call send_lmp_request
+prepare_disconnect:
+	fetch 1,mem_op
+	set1 op_disconn,pdata
+	store 1,mem_op
+	jam 50,mem_conn_timer
+	rtn
+	
+
+send_lmp_no_payload:
+	force 1,pdata
+	call msg_send_lmp
+	branch send_lmp_request
+send_lmp_nopayload_reply:
+	force 1,pdata
+	call msg_send_lmp
+	branch send_lmp_reply
+	
+	
+send_lmp_encryption_mode_req:
+	force 2,pdata
+	call msg_send_lmp
+	fetch 1,mem_state_map
+	isolate0 smap_encryption,pdata
+	setflag true,0,pdata
+	and_into 1,pdata
+	istore 1,contw
+	branch send_lmp_request
+
+
+send_lmp_superto:
+	force 3,pdata
+	call msg_send_lmp
+	fetch 2,mem_supervision_to
+	istore 2,contw
+	branch send_lmp_request
+
+send_lmp_name_req:
+	jam 250,mem_conn_timer
+	force 2,pdata
+	call msg_send_lmp
+	fetch 1,mem_name_offset
+	istore 1,contw
+	branch send_lmp_request
+
+send_lmp_test_control:
+	force 10,pdata
+	call msg_send_lmp
+	arg mem_temp_payload,contr
+	force 9,loopcnt
+send_lmp_test_control_loop:	
+	ifetch 1,contr
+	xor_into 0x55,pdata
+	istore 1,contw
+	loop send_lmp_test_control_loop
+	branch send_lmp_request  
+
+send_lmp_quality_of_service_req:
+	branch send_lmp_request
+send_lmp_unit_key:
+	branch send_lmp_request
+
+send_lmp_slot_offset:
+	rtn master
+	call calc_slot_offset
+	force 9,pdata
+	call msg_send_lmp
+	fetch 2,mem_slot_offset
+	istore 2,contw
+	fetch 3,mem_lap
+	istore 3,contw
+	fetch 1,mem_uap
+	istore 1,contw
+	fetch 2,mem_nap
+	istore 2,contw
+	bmark0 mark_switch_initiated,send_lmp_slot_offset_reply
+	set0 mark_switch_initiated,mark
+	call send_lmp_request
+	jam LMP_SWITCH_REQ,mem_lmo_opcode2
+	rtn
+send_lmp_slot_offset_reply:
+	call send_lmp_reply
+	jam LMP_ACCEPTED,mem_lmo_opcode2
+	jam LMP_SWITCH_REQ,mem_lmi_opcode2
+	rtn
+	
+send_lmp_switch_req:
+	arg 0x200,temp
+	branch switch_on_native,master
+	deposit clke_bt
+	branch switch_slack
+switch_on_native:
+	deposit clkn_bt
+switch_slack:
+	deposit bt_clk
+	iadd temp,pdata
+	and_into 0x1fc,pdata
+	store 4,mem_sniff_anchor
+	force 5,pdata
+	call msg_send_lmp
+	fetch 4,mem_sniff_anchor		/* reused as switch instant */
+	rshift pdata,pdata
+	istore 4,contw
+	branch send_lmp_request
+	
+send_lmp_sniff_req:
+	force 10,pdata
+	call msg_send_lmp
+	arg mem_sniff_payload,contr
+	ifetch 9,contr
+	istore 9,contw
+	branch send_lmp_request
+
+	
+send_lmp_timing_accuracy_req:
+/* default to TID_NORM_SEND */
+	force 3,pdata
+	call msg_send_lmp
+	setarg 0x0114
+	istore 2,contw
+	branch send_lmp_request
+	
+send_lmp_unsniff_req:
+//--------------------need to completa
+	force 1,pdata
+	call msg_send_lmp
+	//fetch 1,mem_unsniff_pending
+	//nbranch send_msg_done,blank
+	//jam 1,mem_unsniff_pending
+	//fetch 2,mem_sniff_attempt
+	//fetch 2,mem_nsniff_attempt
+	//lshift3 pdata,pdata
+	//lshift pdata,pdata
+	//store 1,mem_unsniff_cnt
+	branch send_lmp_request
+
+send_lmp_sco_link_req:
+	branch send_lmp_sco_link_master,master
+	jam 0x00,mem_sco_handle
+	fetch 1,mem_mode
+	set1 send_sco_when_slave,pdata
+	store 1,mem_mode
+send_lmp_sco_link_master:
+	jam 0,mem_esco_desco
+	force 7,pdata
+	call msg_send_lmp
+	fetch 1,mem_sco_handle
+	istore 1,contw
+	setarg 0x00		/*timing ctrl flags*/
+	istore 1,contw
+	fetch 1,mem_esco_desco		/*Dsco*/
+	istore 1,contw
+	setarg 0x06		/*Tsco*/
+	istore 1,contw
+	setarg 0x02		/*HV3*/
+	istore 1,contw
+	fetch 1,mem_air_mode
+	istore 1,contw
+	branch send_lmp_reply,master
+	branch send_lmp_tid
+	
+send_lmp_remove_sco_link_req:
+	/* default to TID_NORM_SEND */
+	force 3,pdata
+	call msg_send_lmp
+	fetch 1,mem_sco_handle
+	istore 1,contw
+	force OTHER_END_TERMINATED,pdata
+	istore 1,contw
+	branch send_lmp_request
+	
+send_lmp_max_slot:
+	force 2,pdata
+	call msg_send_lmp
+	fetch 1,mem_max_slot
+	istore 1,contw
+	branch send_lmp_request
+	
+	
+send_lmp_max_slot_req:
+	force 2,pdata
+	call msg_send_lmp
+	setarg 0x05		/*5 slot*/
+	istore 1,contw
+	branch send_lmp_request
+
+send_lmp_setup_complete:
+	fetch 1,mem_state
+	set1 state_conn_comp,pdata
+	store 1,mem_state
+	copy clkn_bt,pdata
+	store 4,mem_aurand_send_delay_time
+	fetch 1,mem_lmp_conn_state
+	bbit1 SENT_SETUP_COMPLETE,send_lmp_setup_complete_has_sent
+	set1 SENT_SETUP_COMPLETE,pdata
+	store 1,mem_lmp_conn_state
+	jam BT_EVT_SETUP_COMPLETE,mem_fifo_temp
+	call ui_ipc_send_event
+	call hci_send_connection_complete
+	force 1,pdata
+	call msg_send_lmp
+	branch send_lmp_request
+send_lmp_setup_complete_has_sent:
+	jam 0,mem_lmp_to_send
+	rtn
+	
+send_lmp_version_req:
+	force 6,pdata
+	call msg_send_lmp
+	fetch 5,mem_lmp_version
+	istore 5,contw
+	branch send_lmp_request
+
+send_lmp_features_req:
+	force 9,pdata
+	call msg_send_lmp
+	fetch 8,mem_features
+	istore 8,contw
+	branch send_lmp_request  
+
+sp_master_send_io_cap_get:
+	call hci_send_io_cap_req_event
+	fetch 1,mem_device_option
+	beq dvc_op_hci,sp_master_send_io_cap_get_hci
+	jam SP_FLAG_COMMIT,mem_master_sp_flag
+	fetch 1,mem_sp_local_key_invalid
+	rtnne SP_KEY_VALID
+sp_master_send_io_cap_get_hci:
+	jam SP_MASTER_STAT_START_DONE,mem_master_sp_state
+	rtn
+
+sp_master_send_io_cap_send:
+	call tid_initiate
+	jam LMP_IO_CAP_REQ,mem_lmo_opcode2
+	jam SP_STAT_KEY_SEND,mem_master_sp_state
+	rtn
+	
+	
+sp_master_send_LMP_ENCAPSULATED_HEADER:
+	call tid_initiate
+	jam      LMP_ENCAPSULATED_HEADER,mem_lmo_opcode2
+	jam SP_STAT_RANDOM_SEND,mem_master_sp_state
+	rtn
+	
+sp_master_commitment_compare:
+	arg mem_sp_calc_result_high,rega
+	arg mem_sp_confirm_remote,regb
+	arg 16,loopcnt
+	call string_compare
+	branch sp_master_commitment_compare_success,zero
+	jam SP_STAT_NULL,mem_master_sp_state
+ifdef SIMPLE_PAIRING
+	call master_clear_mem_master_sp_flag
+endif
+	jam   PDU_NOT_ALLOWED,mem_lmo_reason2
+	jam 	LMP_SIMPLE_PAIRING_NUMBER,mem_lmi_opcode2 
+ifdef LMP_DBG
+	call ice_break
+endif
+	branch reject_lmp_packet
+sp_master_commitment_compare_success:
+	jam 	SP_STAT_CONFIRM_CALC,mem_master_sp_state
+ifdef SIMPLE_PAIRING
+	call master_set_mem_master_sp_flag
+endif
+	jam LMP_SIMPLE_PAIRING_NUMBER,mem_lmi_opcode2
+	branch accept_lmp_msg  
+	
+
+	
+sp_master_send_lmp_simple_pairing_number:
+	jam LMP_SIMPLE_PAIRING_NUMBER,mem_lmo_opcode2
+	rtn
+	
+
+
+sp_send_lmp_encapsulated_header:
+	// calculate the private & public key here
+	//jam      LMP_ENCAPSULATED_HEADER,mem_lmp_to_send
+	jam      LMP_ENCAPSULATED_HEADER,mem_lmo_opcode2
+	//jam      TID_PAIRING,mem_lmp_tid
+	rtn
+	//fetch 1,mem_tid_table
+	//set1 TID_PAIRING,pdata
+	//store 1,mem_tid_table
+     
+    
+send_lmp_encapsulated_header: 
+	jam 0,mem_sp_local_key_send_count
+	force 4,pdata
+	call msg_send_lmp
+	force ENCAPSULATED_MAJOR_TYPE_P192,pdata
+	istore 1,contw
+	force ENCAPSULATED_MINOR_TYPE_P192,pdata
+	istore 1,contw  
+	force ENCAPSULATED_LEN_P192,pdata
+	istore 1,contw 
+	call check_localsm
+	branch send_lmp_request,true
+	branch send_lmp_reply
+
+send_lmp_encapsulated_payload:
+	//jam      TID_PAIRING,mem_lmp_tid
+	 force 17,pdata
+	call msg_send_lmp
+	fetch 1,mem_sp_local_key_send_count
+	arg mem_sp_pubkey_local,contr
+	iadd contr,contr    
+	ifetch   8,contr
+	istore   8,contw
+	ifetch   8,contr
+	istore   8,contw
+	fetch    1,mem_sp_local_key_send_count
+	increase 16,pdata
+	store    1,mem_sp_local_key_send_count
+	call check_localsm
+	branch send_lmp_request,true
+	branch send_lmp_reply
+	//branch send_lmp_request
+	
+sp_send_lmp_simple_pairing_comfirm:
+        jam      SP_STAT_RANDOM_RECV,mem_sp_state
+        jam      LMP_SIMPLE_PAIRING_CONFIRM,mem_lmo_opcode2
+        rtn
+send_lmp_simple_pairing_comfirm:
+        //jam      SP_STAT_RANDOM_RECV,mem_sp_state
+        //jam      TID_PAIRING,mem_lmp_tid
+        force    17,pdata
+        call msg_send_lmp   
+        arg      mem_sp_calc_result_high,contr
+        ifetch   8,contr
+        istore   8,contw
+        ifetch   8,contr
+        istore   8,contw 
+        branch send_lmp_reply
+
+sp_send_lmp_simple_pairing_number:
+	call lmo_fifo_process
+	//if lmo_fifo(0,1,3) is full,we should add code for stop jam NEW LMP to mem_lmo_opcode2
+	jam      LMP_SIMPLE_PAIRING_NUMBER,mem_lmo_opcode2
+	rtn
+
+send_lmp_simple_pairing_number:
+	//jam      TID_PAIRING,mem_lmp_tid
+	call check_localsm
+ifdef SIMPLE_PAIRING
+	call sp_local_random_key_generator,true
+endif
+	force    17,pdata
+	call msg_send_lmp
+	arg      mem_sp_random_local,contr
+	ifetch   8,contr
+	istore   8,contw
+	ifetch   8,contr
+	istore   8,contw
+	call check_localsm
+	nbranch send_lmp_reply,true
+	branch send_lmp_request,true
+
+master_sp_sm_end:
+	//jam DEFAULT_STATEMACHINE,mem_sp_localsm
+	jam SP_STAT_DONE,mem_master_sp_state
+sp_aurand_send:
+	call tid_initiate
+	jam LMP_AU_RAND,mem_lmo_opcode2
+	call check_localsm_master
+ifdef SIMPLE_PAIRING
+	branch sp_master_key_prarm_push,true
+	branch sp_link_key_prarm_push
+endif
+master_sp_send_lmp_dhkey_check:
+	call tid_reply
+sp_send_lmp_dhkey_check: 
+	jam      LMP_DHKEY_CHECK,mem_lmo_opcode2
+	rtn
+send_lmp_dhkey_check: 
+	//jam      TID_PAIRING,mem_lmp_tid
+	force    17,pdata
+	call     msg_send_lmp
+	arg      mem_sp_calc_result_high,contr
+	ifetch   8,contr
+	istore   8,contw
+	ifetch   8,contr
+	istore   8,contw 
+	call check_localsm
+	nbranch send_lmp_reply,true
+	branch send_lmp_request,true
+
+send_lmp_enc_key_size_mask_res:
+	force 3,pdata
+	call msg_send_lmp   
+	setarg 0xfffe //enc key size mask
+	istore 2,contw
+	branch send_lmp_reply
+
+send_lmp_auto_rate:
+	branch send_lmp_request
+send_lmp_clkoffset_req:
+	branch send_lmp_request
+send_lmp_quality_of_service:
+	branch send_lmp_request
+send_lmp_test_activate:
+	branch send_lmp_request
+
+/******** LMP request/reply messages **********/
+/****** TID transaction specific *******/
+
+send_lmp_comb_key:
+	call generate_random_number
+	arg mem_lap,rega
+	call generate_linkkey
+	force 17,pdata
+	call msg_send_lmp
+	arg mem_kinit,rega
+	arg mem_random_number,regb
+	call xor16
+	nbranch send_lmp_follow,master
+	branch send_lmp_tid
+
+send_lmp_inrand:
+	call generate_random_number
+	arg mem_plap,rega
+	call generate_kinit
+send_lmp_rand:	/* used by in_rand,au_rand,start_encrypt */
+	force 17,pdata
+	call msg_send_lmp
+	arg mem_random_number,contr
+	call memcpy16
+	fetch 1,mem_conn_sm 
+	beq CONN_SM_AUTH_WAIT,send_lmp_request
+	beq CONN_SM_PAIRING_WAIT,send_lmp_request
+	branch send_lmp_tid
+
+send_lmp_aurand:
+	fetch 1,mem_pairing_auth
+	branch send_lmp_aurand_notpairing,blank
+	call check_localsm
+	call tid_initiate,true
+	ncall tid_reply,true
+	branch send_lmp_aurand_common
+send_lmp_aurand_notpairing:
+	call tid_initiate
+send_lmp_aurand_common:
+	call generate_random_number
+	branch send_lmp_rand
+
+send_lmp_sres:
+	arg mem_lap,rega
+	call function_e1
+	force 5,pdata
+	call msg_send_lmp
+	fetch 4,mem_input_store
+	istore 4,contw
+	arg mem_sres_tid,temp
+	call special_tid_store
+	call copy_aco
+	call check_localsm
+	branch send_lmp_sres_master,true
+	jam DONE_ENCRYP,mem_wait_encryption
+	fetch 1,mem_pairing_auth
+	rtn blank
+	jam LMP_AU_RAND,mem_lmo_opcode2
+send_lmp_sres_master:
+	fetch 1,mem_link_key_exists
+	rtn blank
+	call check_localsm
+	call hci_send_linkkey_notification,true
+send_lmp_sres_startenc:
+	call check_localsm
+	nbranch send_lmp_sres_startenc_slave,true
+	fetch 1,mem_auth_enable
+	rtn blank
+	jam LMP_ENCRYPTION_MODE_REQ, mem_lmo_opcode2
+	rtn
+send_lmp_sres_startenc_slave:
+	rtnmark0 mark_slave_in_rand_accepted
+	set0 mark_slave_in_rand_accepted,mark
+	jam LMP_ENCRYPTION_MODE_REQ, mem_lmo_opcode2
+	rtn
+	
+
+	
+send_lmp_start_encryption:
+	call generate_random_number
+	call function_e3
+	force 17,pdata
+	call msg_send_lmp
+	arg mem_random_number,contr
+	call memcpy16
+	branch send_lmp_tid
+
+send_lmp_stop_encryption_req:
+	force 1,pdata
+	call msg_send_lmp
+	branch send_lmp_tid
+
+send_lmp_encryption_key_size_req:
+	force 2,pdata
+	call msg_send_lmp
+	force 16,pdata
+	istore 1,contw
+	store 1,mem_key_size
+	branch send_lmp_tid
+
+msg_send_lmp:
+/* FLOW is set high and LMP is indicated */
+	lshift3 pdata,pdata
+	or_into 0x07,pdata
+	store 1,mem_lmo_header_length
+	arg 17,loopcnt
+	arg mem_lmo_payload,contw
+	call clear_mem
+	arg mem_lmo_payload,contw
+	rtn
+
+send_lmpext:
+	and pdata,0x7f,rega
+	jam LMP_ESCAPE,mem_lmp_to_send
+	deposit queue
+	call msg_send_lmp
+	deposit rega
+	istore 1,contw
+	rtn
+
+send_lmp_follow:
+	fetch 1,mem_lmp_to_send
+	lshift pdata,pdata
+	fetcht 1,mem_state_map
+	isolate1 smap_lmptid,temp
+	setflag true,0,pdata
+	branch send_lmp_exit
+
+
+send_lmp_tid:
+	fetcht 1,mem_state_map
+	and_into 1,temp
+	branch send_lmp_end
+
+send_lmp_reply:
+	force 0,temp
+	branch send_lmp_end
+	
+send_lmp_request:
+	force 1,temp
+send_lmp_end:
+	fetch 1,mem_lmp_to_send
+	lshift pdata,pdata
+	setflag master,0,pdata
+	ixor temp,pdata
+send_lmp_exit:
+	store 1,mem_lmo_header_opcode
+	jam 0,mem_lmp_to_send
+	call lmo_fifo_process_lmo0empty
+	enable user
+	rtn
+	
+lmo_fifo_process:
+	set1 mark_ext_patch,mark
+	bpatch patch3c_4,mem_patch3c
+	fetch 1,mem_lmp_to_send
+	branch lmo_fifo_process_lmo0empty,blank
+	fetch 1,mem_lmo_opcode1
+	nrtn blank
+	branch lmo_fifo_process_lmo2to1
+lmo_fifo_process_lmo0empty:
+	fetch 1,mem_lmo_opcode1
+	branch lmo_fifo_process_lmo1_empty,blank
+	fetch 3,mem_lmo_opcode1
+	store 3,mem_lmp_to_send//1=>0
+	fetcht 1,mem_lmo_tid1
+	fetch 1,mem_state_map
+	set0 smap_lmptid,pdata
+	ior temp,pdata
+	store 1,mem_state_map
+	jam 0,mem_lmo_opcode1
+lmo_fifo_process_lmo2to1:
+	fetch 1,mem_lmo_opcode2
+	rtn blank
+	fetch 4,mem_lmo_opcode2
+	store 4,mem_lmo_opcode1//2=>1
+	jam 0,mem_lmo_opcode2
+	rtn
+lmo_fifo_process_lmo1_empty:
+	fetch 1,mem_lmo_opcode2
+	rtn blank
+	fetch 3,mem_lmo_opcode2
+	store 3,mem_lmp_to_send//2=>0	
+	fetcht 1,mem_lmo_tid2
+	fetch 1,mem_state_map
+	set0 smap_lmptid,pdata
+	ior temp,pdata
+	store 1,mem_state_map
+	jam 0,mem_lmo_opcode2
+	rtn
+	
+//input:temp
+special_tid_store:
+	set1 mark_ext_patch,mark
+	bpatch patch3c_5,mem_patch3c
+	fetch 1,mem_state_map
+	copy pdata,regc
+	ifetch 1,temp
+	call pop_tid_follow
+	call send_lmp_follow
+	copy regc,pdata
+	store 1,mem_state_map
+	rtn
+	
+tid_reply:
+	fetcht 1,mem_state_map
+	set0 smap_lmptidinit,temp
+	storet 1,mem_state_map
+	rtn
+	
+tid_initiate:
+	fetcht 1,mem_state_map
+	set1 smap_lmptidinit,temp
+	storet 1,mem_state_map
+	rtn
+	
+	/* true if transaction from remote */
+tid_check:
+	nsetflag master,smap_lmptid,pdata //it is ok
+	fetcht 1,mem_state_map
+	ixor temp,pdata
+	isolate1 smap_lmptid,pdata
+	rtn	
+
+	/* set to remote */
+tid_set_reply:
+	fetch 1,mem_state_map
+	setflag master,smap_lmptid,pdata //it is ok
+	store 1,mem_state_map
+	rtn
+
+	/*rtn true when we lead lmp*/
+check_localsm:
+	fetch 1,mem_sp_localsm
+	compare 	LOCAL_STATEMACHINE,pdata,0x7f
+	rtn
+setlocalsm_master:
+	fetch 1,mem_sp_localsm
+	set1 7,pdata
+	store 1,mem_sp_localsm
+	rtn
+setlocalsm_slave:
+	fetch 1,mem_sp_localsm
+	set0 7,pdata
+	store 1,mem_sp_localsm
+	rtn
+check_localsm_master:
+	fetch 1,mem_sp_localsm
+	isolate1 7,pdata
+	store 1,mem_sp_localsm
+	rtn
+	
+generate_random_number:
+	/* generating a 16 byte random number,storing in ape_random_number */
+	arg mem_random_number,contw
+generate_random:
+	force 16,loopcnt
+generate_random_another:
+generate_random_loop:
+	random pdata
+	istore 1,contw
+	loop generate_random_another
+	rtn
+
+generate_linkkey:
+	call function_e21
+	arg mem_link_key,rega
+	arg mem_input_store,regb
+	ifetch 8,rega					/* check if already got comb key */
+	fetcht 1,mem_state
+	nsetflag blank,state_combkey,temp
+	storet 1,mem_state
+	copy rega,contw
+	call  xor16
+	branch generate_linkkey_continue
+
+/*********************************/
+/*********lmp send*************/
+/********************************/
+
+process_conn_sm:
+	//nrtn master
+	set1 mark_ext_patch,mark
+	bpatch patch3c_6,mem_patch3c
+	fetch 1,mem_lmo_opcode2
+	branch process_conn_sm_continue,blank
+	call lmo_fifo_process
+	fetch 1,mem_lmo_opcode2
+	nrtn blank
+process_conn_sm_continue:
+	fetch 1,mem_conn_sm
+	rtn blank
+	/* state machine begins in standby */
+	//beq CONN_SM_STANDBY, host_create_conn_begin
+	//beq CONN_SM_WAIT_PAGE, host_create_conn_wait_page
+	beq CONN_SM_SEND_CONN_REQ, host_create_conn_send_conn_req
+	beq CONN_SM_WAIT_CONN_ACCEPT, host_create_conn_wait_accept
+	beq CONN_SM_SEND_FEATURES, host_create_conn_send_features
+	beq CONN_SM_WAIT_FEATURES_RES, host_create_conn_waiting
+	beq CONN_SM_SEND_SWITCH,host_create_conn_send_switch
+	beq CONN_SM_AUTH_PAIR, host_create_conn_auth_pair
+	beq CONN_SM_AUTH_PAIR_WAIT, host_create_conn_auth_pair_wait
+	beq CONN_SM_ENCRYPT, host_create_conn_encrypt
+	beq CONN_SM_ENCRYPT_WAIT, host_create_conn_encrypt_wait
+	beq CONN_SM_ENCRYPT_WAIT_CLEAR, host_create_conn_encrypt_wait_clear
+	beq CONN_SM_SEND_SETUP_COMPLETE, host_create_conn_send_setup_complete
+	beq CONN_SM_WAIT_SETUP_COMPLETE, host_create_conn_wait_setup_complete
+	beq CONN_SM_DETACH_DELAY,host_create_conn_master_detach
+	beq CONN_SM_SEND_VERSION, host_create_conn_send_version
+	beq CONN_SM_WAIT_VERSION, host_create_conn_waiting
+	beq CONN_SM_WAIT_SWITCH_AFTER_HOST_CONNECTION, host_creat_conn_wait_switch
+	beq CONN_SM_SEND_FEATURES_EXT,host_creat_conn_send_feat_ext
+	beq CONN_SM_WAIT_FEATURES_EXT,host_create_conn_waiting
+	beq CONN_SM_PAIRING,host_create_conn_pairing
+	beq CONN_SM_PAIRING_WAIT,host_create_conn_pairing_wait
+	beq CONN_SM_AUTH,host_create_conn_auth
+	beq CONN_SM_AUTH_WAIT,host_create_conn_auth_wait
+	beq CONN_SM_DONE,host_create_conn_done
+	beq CONN_SM_WAIT_DONE,host_create_conn_done_wait
+	jam CONN_SM_STANDBY,mem_conn_sm
+	/* sending error message to host */
+	rtn
+host_create_conn_done:
+	fetch 1,mem_lmp_conn_state		
+	rtnbit0 RECEIVED_SETUP_COMPLETE
+	rtnbit0 SENT_SETUP_COMPLETE
+	jam CONN_SM_STANDBY,mem_conn_sm
+	call host_conn_judge_encrypt
+	branch scheduler_start_upper_sm
+	
+host_conn_judge_encrypt:
+	fetch 1,mem_connection_options
+	rtnbit0 CONNECTION_ENCRYPT
+	jam CONN_SM_ENCRYPT_WAIT,mem_conn_sm
+	rtn
+
+host_create_conn_done_wait:
+	arg enpt_delay_timer,queue
+	call timer_check
+	nrtn blank
+	jam CONN_SM_DONE,mem_conn_sm
+	rtn
+	
+host_create_conn_auth:
+	fetch 1,mem_connection_options
+	set0 CONNECTION_AUTH,pdata
+	store 1,mem_connection_options
+	jam CONN_SM_AUTH_WAIT,mem_conn_sm
+	jam LMP_AU_RAND,mem_lmo_opcode2
+	rtn 
+host_create_conn_auth_wait:
+	rtn
+host_create_conn_pairing:
+	fetch 1,mem_pincode_state
+	rtnne pincode_state_pincode_ready //wait for pincode
+	call host_auth
+	jam CONN_SM_PAIRING_WAIT,mem_conn_sm
+	rtn
+
+host_create_conn_pairing_wait:
+	rtn
+host_creat_conn_send_feat_ext:
+	jam CONN_SM_WAIT_FEATURES_EXT,mem_conn_sm
+	jam LMP_EXT_FEATURES_REQ,mem_lmo_opcode2
+	rtn
+host_create_conn_send_version:
+	jam CONN_SM_WAIT_VERSION,mem_conn_sm
+	jam LMP_VERSION_REQ,mem_lmo_opcode2
+	rtn 
+	
+host_creat_conn_wait_switch:
+	fetch 1,mem_switch_flag
+	rtneq SWITCH_FLAG_INIT
+	beq SWITCH_FLAG_ACCEPT,host_create_conn_switch_accept
+	arg switch_wait_timer,queue
+	call timer_check
+	nrtn blank
+	jam SWITCH_FLAG_INIT,mem_switch_flag
+	branch host_create_conn_switch
+host_create_conn_switch_accept:
+	rtn master
+	branch host_create_conn_auth_pair
+
+host_create_conn_send_features:
+	jam CONN_SM_WAIT_FEATURES_RES,mem_conn_sm
+	jam LMP_FEATURES_REQ,mem_lmo_opcode2
+	rtn 
+host_create_conn_send_switch:
+	jam LMP_SWITCH_REQ,mem_lmo_opcode2
+	set1 mark_switch_initiated,mark
+	jam CONN_SM_WAIT_CONN_ACCEPT,mem_conn_sm
+	setarg 0x1ff
+	store 2, mem_soft_timer
+	rtn
+host_create_conn_send_conn_req:
+	jam CONN_SM_WAIT_CONN_ACCEPT,mem_conn_sm
+	jam 0xff,mem_soft_timer
+	set0 mark_reconn_recieve_switch,mark
+	jam LMP_HOST_CONNECTION_REQ,mem_lmo_opcode2
+	branch init_lmp_reinit
+host_create_conn_wait_accept:
+	rtnmark1 mark_reconn_recieve_switch
+	fetch 2,mem_soft_timer
+	sub pdata,1,pdata
+	branch host_create_conn_resend,zero
+	store 2, mem_soft_timer
+	rtn
+host_create_conn_resend:
+	jam CONN_SM_SEND_SWITCH,mem_conn_sm
+	rtn
+host_create_conn_waiting:
+	/* we will exit waiting for connection request accepted, features res, or other commands to finish */
+	rtn 
+
+host_create_conn_switch:
+	fetch 1,mem_lmp_conn_state
+	rtnbit0 SENT_SETUP_COMPLETE
+	rtnbit0 RECEIVED_SETUP_COMPLETE
+	fetch 1,mem_connection_options
+	set0 CONNECTION_SWITCH,pdata
+	store 1,mem_connection_options
+	jam LMP_SWITCH_REQ,mem_lmo_opcode2
+	jam CONN_SM_WAIT_SWITCH_AFTER_HOST_CONNECTION,mem_conn_sm
+	rtn 
+
+host_create_conn_send_setup_complete:
+	jam CONN_SM_WAIT_SETUP_COMPLETE,mem_conn_sm	
+	jam LMP_SETUP_COMPLETE,mem_lmo_opcode2
+	rtn 
+
+host_create_conn_wait_setup_complete:
+	fetch 1,mem_lmp_conn_state
+	rtnbit0 RECEIVED_SETUP_COMPLETE
+	jam CONN_SM_STANDBY,mem_conn_sm	
+
+	rtn
+host_create_conn_wait_setup_complete_rtn:	
+	jam CONN_SM_AUTH_PAIR ,mem_conn_sm
+	rtn
+
+host_create_conn_master_detach:
+	fetch 1, mem_soft_timer
+	increase -1,pdata
+	branch host_create_conn_send_detach,blank//detach
+	store 1, mem_soft_timer
+	rtn 
+host_create_conn_send_detach:
+	jam LMP_DETACH,mem_lmo_opcode2
+	jam LOCAL_HOST,mem_disconn_reason_send
+	jam 0,mem_conn_sm
+	rtn
+host_create_conn_auth_pair:
+	/* checking whether or not to do m/s switch */
+	fetch 1,mem_connection_options
+	bbit1 CONNECTION_SWITCH,host_create_conn_switch
+	bbit1 CONNECTION_AUTH,host_create_conn_auth_pair_true
+host_create_conn_sm_done:
+	jam CONN_SM_DONE,mem_conn_sm
+	rtn
+host_create_conn_auth_pair_true:
+	fetch 1,mem_link_key_exists
+	branch host_create_conn_auth_pair_nokey,blank
+	fetch 1,mem_lmp_conn_state
+	rtnbit0 SENT_SETUP_COMPLETE
+	rtnbit0 RECEIVED_SETUP_COMPLETE
+	fetch 4,mem_aurand_send_delay_time
+	arg 100,temp
+	iadd temp,temp
+	copy clkn_bt,pdata
+	isub temp,null
+	nrtn positive
+	branch host_create_conn_auth
+
+
+
+host_create_conn_auth_pair_nokey:
+	jam CONN_SM_PAIRING,mem_conn_sm
+	jam 4,mem_pin_length
+	setarg 0x3030
+	store 2,mem_pin
+	istore 2,contw
+	jam pincode_state_pincode_ready,mem_pincode_state
+	branch host_create_conn_pairing
+
+host_create_conn_auth_pair_wait:
+	rtn
+host_create_conn_encrypt:
+	fetch 1,mem_connection_options
+	bbit1 CONNECTION_ENCRYPT,host_create_conn_encrypt_start
+	jam CONN_SM_DONE,mem_conn_sm
+	rtn 
+
+host_create_conn_encrypt_start:
+	fetch 1,mem_connection_options
+	set0 CONNECTION_ENCRYPT,pdata
+	store 1,mem_connection_options
+	jam LMP_ENCRYPTION_MODE_REQ,mem_lmo_opcode2  
+	rtn
+
+host_create_conn_encrypt_wait:
+	fetch 1, mem_wait_encryption
+	rtn blank
+	jam CONN_SM_STANDBY,mem_conn_sm
+	branch host_create_conn_encrypt_start 
+
+host_create_conn_encrypt_wait_clear:
+	jam CONN_SM_SEND_SETUP_COMPLETE,mem_conn_sm
+	rtn 
+
+host_auth:
+	fetch 1,mem_op
+	bbit1 op_inrand_req,remote_auth
+	call tid_initiate
+	jam LMP_IN_RAND,mem_lmo_opcode2
+	branch cmd_exit
+remote_auth:
+	fetch 1,mem_op
+	set0 op_inrand_req,pdata
+	store 1,mem_op
+	call lmp_accept_inrand
+	call tid_set_reply
+	branch cmd_exit
+
+pincode_reinit:
+	setarg 4
+	store 1,mem_pin_length
+	setarg 0x3030
+	istore 2,contw
+	istore 2,contw
+	rtn
+	
+
Index: btkb/program/module.prog
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/btkb/program/module.prog	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/btkb/program/module.prog	(working copy)
@@ -0,0 +1,548 @@
+
+ifdef COMPILE_MODULE
+
+
+
+
+module_init:
+	rtn wake
+	jam 0,mem_module_task
+	call module_gpio_init
+	call module_init_static_string
+	setarg module_process_idle
+	store 2,mem_cb_idle_process
+	setarg module_conn_process
+	store 2,mem_cb_bt_process
+	setarg module_process_bb_event
+	store 2,mem_cb_bb_event_process
+	setarg module_le_rx
+	store 2,mem_cb_att_write
+	setarg module_conn_process
+	store 2,mem_cb_le_process
+	set1 mark_ext_patch,mark
+	bpatch patch30_0,mem_patch30
+	setarg module_lpm_lock
+	store 2,mem_cb_check_wakelock
+	setarg module_le_tx_update_data
+	store 2,mem_cb_update_notify_value
+	setarg 0
+	store 4,mem_last_uart_clock
+	store 2,mem_module_prepare_tx_len
+	call module_hardware_init
+	call init_module_environment
+	call check_module_disabled
+	branch eeprom_load_reconn_info
+
+module_hardware_init:
+	rtn wake
+	setarg uart_baud_115200
+	store uart_baud_len,mem_baud
+module_lpm_uart_init:
+	call init_filter_ram
+	setarg mem_module_rx_buf
+	hstore 2,core_uart_rsaddr
+	setarg mem_module_rx_buf_end
+	hstore 2,core_uart_readdr
+	setarg mem_module_tx_buf
+	hstore 2,core_uart_tsaddr
+	setarg mem_module_tx_buf_end
+	hstore 2,core_uart_teaddr
+	hjam 0x4,core_gpio_sel1
+	jam 0xff,mem_ucode_id_local
+	hjam 0x0,core_uart_ctrl
+ 	setarg mem_module_tx_buf
+	hstore 2,core_uart_twptr
+	hstore 2,core_uart_trptrp
+	setarg mem_module_rx_buf
+	hstore 2,core_uart_rrptr
+	branch hci_init_common 
+
+
+module_lpm_init:
+	call module_lpm_uart_init
+	branch module_gpio_init
+	
+module_gpio_init:
+	//module state pin
+	call ui_led_init	
+	call app_led_start_blink
+	//module conn state pin
+	fetcht 1,mem_module_connect_state_gpio
+	call gpio_config_output
+	call module_set_conn_pin_low
+	
+	fetcht 1,mem_module_wake_up_gpio
+	call gpio_config_input
+	fetcht 1,mem_at_gpio
+	branch gpio_config_input_without_wake
+
+module_lpm_lock:
+	fetcht 1,mem_module_wake_up_gpio
+	call gpio_get_bit
+	nbranch app_put_lpm_wake_lock,true
+	branch app_get_lpm_wake_lock
+
+	
+/*************at dispatch*******************/
+module_process_idle:
+	branch module_app_dispatch
+module_conn_process:
+	branch module_app_dispatch
+module_app_dispatch:
+	set1 mark_ext_patch,mark
+	bpatch patch30_1,mem_patch30
+	call module_control_air_flow
+	call module_uart_set
+	call l2cap_malloc_is_fifo_full
+	nrtn blank
+	branch module_process
+module_process_bb_event:
+	copy regc,pdata
+	beq BT_EVT_PINCODE_REQ,module_process_evt_pincode_req
+	beq BT_EVT_RECONN_FAILED,module_reconn_fail
+	beq BT_EVT_RECONN_PAGE_TIMEOUT,module_page_time_out
+	beq BT_EVT_BB_DISCONNECTED,module_process_bb_event_disconned
+	beq BT_EVT_SWITCH_NOT_ACCEPT,module_process_switch_not_accept
+	beq BT_EVT_SWITCH_ACCEPT,module_process_switch_accept
+	beq BT_EVT_SNIFF_ACCEPT,module_process_sniff_accept
+	beq BT_EVT_SNIFF_NOT_ACCEPT,module_process_sniff_not_accept
+	beq BT_EVT_UNSNIFF_ACCEPT,module_process_unsniff_accept
+	beq BT_EVT_UNSNIFF_NOT_ACCEPT,module_process_unsniff_not_accept
+	beq BT_EVT_LE_CONNECTED,module_process_le_conn
+	beq BT_EVT_BB_CONNECTED,module_process_bb_conn
+	beq BT_EVT_LE_DISCONNECTED,module_process_bb_even_le_disconn
+	beq BT_EVT_SETUP_COMPLETE,module_process_setup_complete
+	beq BT_EVT_ENTER_SNIFF,module_sniff_param_check
+	beq BT_EVT_EXIT_SNIFF,app_lpm_mult_disable
+	and pdata,0x0f,temp
+	and_into BT_EVT_TIMER_MASK,pdata
+	beq BT_EVT_TIMER_INIT,module_bb_event_timer
+	rtn
+
+module_process_bb_event_disconned:
+	call module_disconn_start
+	fetch APP_DISC_RSN_SIZE,mem_app_disconn_reason
+	rtnbit0 APP_DISC_AFTER_SETUP_DONE
+	arg 3,loopcnt
+	arg mem_prarm_dis,contr
+	branch send_mem_to_uart
+	
+module_sniff_param_check:
+	//fetch 1,mem_context
+	//rtnbit0 state_insniff
+	fetch 2,mem_context+coffset_tsniff
+	rshift pdata,pdata
+	fetcht 2,mem_sniff_param_interval
+	isub temp,null
+	nbranch module_sniff_param_check_unsniff,zero
+	branch app_lpm_mult_enable
+module_sniff_param_check_unsniff:
+	fetch 1,mem_module_task
+	rtnbit1 AT_TASK_UNSINFF
+	hfetch 2,core_uart_rxitems    //*
+	ncall at_set_unsniff_task_flag,blank    //*加这两句话
+	branch app_bt_sniff_exit
+ 	
+module_process_setup_complete:
+	call module_conn_start
+	call module_check_cmode
+	branch module_uart_send_conn,zero
+	branch  app_bt_disconnect
+module_uart_send_conn:
+	arg 4,loopcnt
+	arg mem_prarm_conn,contr
+	branch send_mem_to_uart
+	
+module_process_bb_even_le_disconn:
+	call module_disconn_start
+	arg 5,loopcnt
+	arg mem_prarm_bledis,contr
+	branch send_mem_to_uart
+
+module_process_evt_pincode_req:
+	call at_restore_pin_code
+	branch  app_bt_set_pincode
+module_process_switch_not_accept:
+	fetch 1,mem_module_task
+	rtnbit0 AT_TASK_SWITCH
+	set0 AT_TASK_SWITCH,pdata
+	store 1,mem_module_task
+	branch at_error_rev_end
+	
+module_process_switch_accept:
+	fetch 1,mem_module_task
+	rtnbit0 AT_TASK_SWITCH
+	set0 AT_TASK_SWITCH,pdata
+	store 1,mem_module_task
+	branch at_nomal_rev_end
+
+module_process_sniff_accept:
+	rtn
+
+module_process_sniff_not_accept:
+	rtn
+	
+module_process_unsniff_accept:
+	fetch 1,mem_module_task
+	bbit0 AT_TASK_UNSINFF,app_bt_enter_sniff
+	branch at_clear_unsniff_task_flag
+	
+module_process_unsniff_not_accept:
+	rtn
+	
+module_process_le_conn:
+	call module_conn_start
+	arg mem_le_plap,regb
+	call module_check_cmode
+	branch module_uart_send_leconn,zero
+	branch  app_ble_disconnect
+module_uart_send_leconn:
+	arg 6,loopcnt
+	arg mem_prarm_bleconn,contr
+	branch  send_mem_to_uart
+
+module_process_bb_conn:
+	rtn
+
+
+module_reconn_fail:
+	arg 7,loopcnt
+	arg mem_prarm_recfail,contr
+	call send_mem_to_uart
+	branch module_disconn_start
+module_page_time_out:
+	arg 7,loopcnt
+	arg mem_prarm_pageout,contr
+	call send_mem_to_uart
+module_disconn_start:
+	call module_start_adv_discovery
+	branch module_set_conn_pin_high
+
+module_start_adv_discovery:
+	fetch 1,mem_module_state
+	isolate1 AT_STATE_SET30,pdata
+	call app_bt_start_discovery,true
+	fetch 1,mem_module_state
+	isolate1 AT_STATE_SET40,pdata
+	call app_ble_start_adv,true
+	rtn
+module_set_conn_pin_high:
+	fetcht 1,mem_module_connect_state_gpio
+	branch gpio_out_active
+
+module_conn_start:
+	call module_stop_adv_discovery
+	branch module_set_conn_pin_low
+	
+module_stop_adv_discovery:
+	fetch 1,mem_module_state
+	isolate1 AT_STATE_SET30,pdata
+	call app_bt_stop_discovery,true
+	fetch 1,mem_module_state
+	isolate1 AT_STATE_SET40,pdata
+	call app_ble_stop_adv,true
+	rtn
+module_set_conn_pin_low:
+	fetcht 1,mem_module_connect_state_gpio
+	branch gpio_out_inactive
+
+
+	
+
+module_process:
+	fetch 1,mem_device_option
+	rtnne dvc_op_module
+	hfetch 2,core_uart_rxitems
+	rtn blank
+	store 2,mem_current_packet_length
+
+	call spp_mode
+	branch at_process,true
+	call at_ckeck_send_buff
+	branch module_tx_packet
+
+
+spp_mode:    //true=1透传\true=0 不透传
+	fetcht 1,mem_at_gpio
+	branch gpio_get_bit
+
+
+module_exit_sniff:
+	fetch 1,mem_module_task
+	rtnbit1 AT_TASK_UNSINFF
+	call at_set_unsniff_task_flag	
+	branch app_bt_sniff_exit
+
+module_tx_packet:
+	fetch 1,mem_context
+	bbit0 state_inconn,spp_send_end
+	fetch 1,mem_context+coffset_mode
+	bbit1 mode_le,modle_le_tx
+	call app_check_sniff
+	branch module_exit_sniff,true
+	branch spp_tx_rfcomm_packet
+
+module_le_rx:
+	call le_att_get_handle_ptr
+	ifetch 1,contr
+	copy contr,rega
+	call get_uart_twptr
+	copy regb,loopcnt
+	copy rega,contr
+	call uart_copy_tx_bytes
+	branch uartd_send
+
+
+module_le_tx_update_data:
+	//get tx len
+	fetch 2,mem_module_prepare_tx_len
+	rtn blank
+	arg DM_LE_BUFF_LEN,temp
+	call not_greater_than
+	store 2,mem_module_temp_len
+	//reduced mem_module_prepare_tx_len
+	copy pdata,temp
+	fetch 2,mem_module_prepare_tx_len
+	isub temp,pdata
+	store 2,mem_module_prepare_tx_len
+	nbranch assert,positive
+	//get destination for copy
+	arg PRCP_TX_LE,temp
+	storet 2,mem_le_notify_handle
+	call le_att_get_handle_ptr
+	branch assert,blank
+	add contr,1,contw
+	//copy len
+	fetch 2,mem_module_temp_len
+	copy pdata,loopcnt
+	//get source for copy
+	call get_uart_rrptr
+	//copy
+	call uart_copy_rx_bytes
+	//release and clean
+	fetch 2,mem_module_temp_len
+	store 2,mem_current_packet_length
+	store 2,mem_le_notify_len
+	branch spp_send_end 
+
+
+modle_le_tx:
+	rtnmark0 mark_context
+	call modle_le_tx_once // 3 times
+	call modle_le_tx_once
+modle_le_tx_once:
+	call le_xtype_fifo_is_near_full
+	nrtn blank
+	hfetch 2,core_uart_rxitems
+	rtn blank
+	fetcht 2,mem_module_prepare_tx_len
+	isub temp,pdata    //uart_rx_len - data_in_ble_tx_fifo
+	nbranch assert,positive
+	store 2,mem_current_packet_length
+	rtn blank
+	call at_ckeck_send_buff_le
+	fetch 2,mem_module_prepare_tx_len
+	fetcht 2,mem_current_packet_length
+	iadd temp,pdata
+	store 2,mem_module_prepare_tx_len
+	fetcht 2,mem_module_prepare_tx_len
+	hfetch 2,core_uart_rxitems
+	isub temp,rega
+	nbranch assert,positive
+	jam ATTOP_HANDLE_VALUE_NOTIFICATION,mem_fifo_temp
+	branch le_xtype_fifo_in
+
+module_bb_event_timer:
+	storet 1,mem_app_evt_timer_count
+module_bb_event_100ms_loop:
+	fetch 1,mem_app_evt_timer_count
+	rtn blank
+	increase -1,pdata
+	store 1,mem_app_evt_timer_count
+	call module_bb_event_hud_ms
+	branch module_bb_event_100ms_loop
+	
+module_bb_event_hud_ms:
+	fetch 2,mem_at_scan_time
+	rtn blank
+	increase -1,pdata
+	store 2,mem_at_scan_time
+	nrtn blank
+	fetch 1,mem_at_using_flag
+	jam 0,mem_at_using_flag
+	bbit1 AT_FLAG_LEINQ,modue_le_inq
+	bbit1 AT_FLAG_INQ,module_inq
+	branch assert
+modue_le_inq:
+	branch app_ble_stop_scan
+module_inq:
+	jam hci_cmd_inquiry_cancel,mem_hci_cmd
+	rtn
+
+at_ckeck_send_buff:
+	fetch 1,mem_context+coffset_mode
+	bbit1 mode_le,at_ckeck_send_buff_le
+	fetch 2,mem_current_packet_length
+	arg DM_REFCOM_BUFF_LEN,temp
+	/*long packet*/
+	call not_greater_than
+	store 2,mem_current_packet_length
+	rtn
+at_ckeck_send_buff_le:
+	fetch 2,mem_current_packet_length
+	arg DM_LE_BUFF_LEN,temp
+	call not_greater_than
+	store 2,mem_current_packet_length
+	rtn
+
+at_set_unsniff_task_flag:
+	fetch 1,mem_module_task
+	set1 AT_TASK_UNSINFF,pdata
+	store 1,mem_module_task
+	rtn
+
+at_clear_unsniff_task_flag:
+	fetch 1,mem_module_task
+	set0 AT_TASK_UNSINFF,pdata
+	store 1,mem_module_task
+	rtn
+
+at_set_cmd_task_flag:
+	fetch 1,mem_module_task
+	set1 AT_TASK_CMD_FLAG,pdata
+	store 1,mem_module_task
+	rtn
+
+at_clear_cmd_task_flag:
+	fetch 1,mem_module_task
+	set0 AT_TASK_CMD_FLAG,pdata
+	store 1,mem_module_task
+	rtn
+
+module_control_air_flow:
+	set1 mark_ext_patch,mark
+	bpatch patch30_2,mem_patch30
+	call check_uart_tx_buff
+	branch app_l2cap_flow_control_enable,positive
+	branch app_l2cap_flow_control_disable
+
+module_uart_set:
+	call spp_mode
+	branch module_set_baud_115200,true
+	hfetcht uart_baud_len,core_uart_baud
+	fetch 2,mem_baud
+	isub temp,null
+	rtn zero
+	branch uart_set_baud_by_mem
+
+
+module_set_baud_115200:
+	hfetcht uart_baud_len,core_uart_baud
+	setarg AT_baud_115200
+	isub temp,null
+	rtn zero
+	hstore uart_baud_len,core_uart_baud
+	rtn
+
+module_check_cmode:
+	set1 mark_ext_patch,mark
+	bpatch patch30_3,mem_patch30
+	fetch 1,mem_module_state
+	isolate0 AT_STATE_CMODE,pdata
+	branch module_check_cmode_close,true
+	arg mem_cmode_addr,rega
+	arg 6,loopcnt
+	branch string_compare
+module_check_cmode_close:
+	force 0,null
+	rtn
+
+module_init_static_string:
+	set1 mark_ext_patch,mark
+	bpatch patch30_4,mem_patch30
+	arg mem_prarm_pswd,contw
+	setsect 0,0x35350
+	setsect 1,0x15115
+	setsect 2,0x12415
+	setsect 3,0x10951
+	istore 9,contw
+	setsect 0,0x2454c
+	setsect 1,0x35053
+	setsect 2,0x2454
+	setsect 3,0x11531
+	istore 9,contw
+	setsect 0,0x34441
+	setsect 1,0x194d4
+	setsect 2,0x12455
+	setsect 3,0x10d4d
+	istore 9,contw
+	setsect 0,0x3414c
+	setsect 1,0xd4d4
+	setsect 2,0x124c4
+	setsect 3,0x13119
+	istore 9,contw
+	setsect 0,0x15247
+	setsect 1,0x3d0d1
+	setsect 2,0xe4e4
+	setsect 3,0x11531
+	istore 9,contw
+	setsect 0,0x34944
+	setsect 1,0x114d4
+	setsect 2,0xe535
+	setsect 3,0x15105
+	istore 9,contw
+	setsect 0,0x14c2b
+	setsect 1,0x114d2
+	setsect 2,0xf525
+	setsect 3,0x11531
+	istore 9,contw
+	setsect 0,0x14e53
+	setsect 1,0x19192
+	setsect 2,0x44c4
+	setsect 3,0x15915
+	istore 9,contw
+	setsect 0,0x35352
+	setsect 1,0xd254
+	setsect 2,0x5444
+	setsect 3,0x10959
+	istore 9,contw
+	setsect 0,0x1454c
+	setsect 1,0x5392
+	setsect 2,0x3525
+	setsect 3,0x13d35
+	istore 9,contw
+	setsect 0,0x14544
+	setsect 1,0x113d3
+	setsect 2,0x4454
+	setsect 3,0x14d35
+	istore 9,contw
+	setsect 0,0x4154
+	setsect 1,0x11155
+	setsect 2,0x13494
+	setsect 3,0x13d0d
+	istore 9,contw
+	setsect 0,0x4f56
+	setsect 1,0x31055
+	setsect 2,0x3454
+	setsect 3,0x1393d
+	istore 9,contw
+	setsect 0,0x1504e
+	setsect 1,0x151d0
+	setsect 2,0x154f4
+	setsect 3,0x14951
+	istore 9,contw
+	setsect 0,0x24345
+	setsect 1,0x25051
+	setsect 2,0x4c4
+	istore 6,contw
+	rtn
+/*************at end*******************/
+		
+else
+module_init:
+module_process_idle:
+module_conn_process:
+module_lpm_init:
+module_init_static_string:
+	branch assert
+endif
Index: btkb/program/mouse.prog
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/btkb/program/mouse.prog	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/btkb/program/mouse.prog	(working copy)
@@ -0,0 +1,751 @@
+
+ifdef COMPILE_MOUSE
+mouse_init:
+	setarg le_mouse
+	store 2,mem_cb_le_process
+	setarg mouse_send_process
+	store 2,mem_cb_bt_process
+	setarg mouse_process_lpm_before
+	store 2,mem_cb_before_lpm
+	setarg mouse_priority_bb_event
+	store 2,mem_cb_bb_event_process
+	setarg mouse_idle
+	store 2,mem_cb_idle_process
+	setarg mouse_le_notify_update_data
+	store 2,mem_cb_update_notify_value
+	jam 0,mem_sp_flag
+	jam 0,mem_master_sp_flag
+	set0 mark_ext_patch,mark
+	bpatch patch18_0,mem_patch18
+	call mouse_init_common
+	rtn wake
+	call mouse_init_environment
+	call mouse_dpi_init
+	setarg mouse_before_hibernate
+	store 2,mem_cb_before_hibernate
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BTN_DOWN,mouse_start_discovery
+	branch mouse_check_reconn_target
+
+mouse_init_environment:
+	call app_initflag_check
+	branch mouse_load_eeprom_param,zero
+	call eeprom_store_le_local_addr
+	call eeprom_store_mouse_dpi
+	branch app_initflag_store
+mouse_load_eeprom_param:
+	call eeprom_load_reconn_info
+	call eeprom_load_le_loacal_addr
+	branch eeprom_load_mouse_dpi
+
+mouse_dpi_init:
+	jam DPI_BUTTON_STATE_UP,mem_mouse_dpi_button_state
+	branch mouse_modified_dpi
+
+mouse_idle:
+	call ui_check_paring_button
+	call mouse_check_dpi
+	branch mouse_wheel_check
+
+mouse_check_dpi:
+	fetcht 1,mem_dpi_button_gpio
+	call gpio_get_bit
+	nbranch mouse_dpi_up,true
+mouse_dpi_down:
+	fetch 1,mem_mouse_dpi_button_state
+	rtneq DPI_BUTTON_STATE_DOWN
+	jam DPI_BUTTON_STATE_DOWN,mem_mouse_dpi_button_state
+	rtn
+mouse_dpi_up:
+	fetch 1,mem_mouse_dpi_button_state
+	rtneq DPI_BUTTON_STATE_UP
+	jam DPI_BUTTON_STATE_UP,mem_mouse_dpi_button_state
+	fetch 1,mem_mouse_dpi
+	increase 1,pdata
+	and pdata,0x03,pdata
+	store 1,mem_mouse_dpi
+	branch mouse_modified_dpi
+mouse_modified_dpi:
+	setarg MOUSE_DPI_ADDRESS
+	call twspi_read
+	and pdata,0xfc,temp
+	fetch 1,mem_mouse_dpi
+	iadd temp,pdata
+	lshift8 pdata,pdata
+	add pdata,MOUSE_DPI_ADDRESS,pdata
+	call twspi_write
+	branch eeprom_store_mouse_dpi
+
+mouse_init_common:
+	call mouse_init_sunt
+	call mouse_gpio_init
+	hfetch 2,core_clkoff
+	set0 CLOCK_OFF_QDECODER,pdata
+	hstore 2,core_clkoff
+	rtn
+	
+mouse_gpio_init:
+	call lpm_disable_exen_output
+	fetcht 1,mem_whee_a_data_gpio
+	call gpio_config_input
+	fetcht 1,mem_whee_b_data_gpio
+	call gpio_config_input
+	fetcht 1,mem_lbutton_gpio
+	call gpio_config_input
+	fetcht 1,mem_rbutton_gpio
+	call gpio_config_input
+	fetcht 1,mem_mbutton_gpio
+	call gpio_config_input
+	fetcht 1,mem_sensor_data_gpio
+	call gpio_config_input
+	fetcht 1,mem_dpi_button_gpio
+	call gpio_config_input
+	hfetch 1,core_gpio_pu3
+	or_into 0x18,pdata
+	hstore 1,core_gpio_pu3
+	hfetch 1,core_gpio_pd2+1
+	and_into 0xe7,pdata
+	hstore 1,core_gpio_pd2+1
+	rtn 	 
+
+	
+mouse_before_hibernate:
+	setarg 0xbc05
+	call twspi_write
+	jam 1,mem_lpm_current_mult
+
+mouse_process_lpm_before:
+	call mouse_wheel_check
+	arg 25,temp					// set sclk high
+	call gpio_config_output
+	hjam 0,core_gpio_sel1
+	fetcht 1,mem_whee_a_data_gpio
+	call gpio_set_wake_by_current_state
+	fetcht 1,mem_whee_b_data_gpio
+	call gpio_set_wake_by_current_state
+	fetcht 1,mem_lbutton_gpio
+	call gpio_set_wake_by_current_state
+	fetcht 1,mem_rbutton_gpio
+	call gpio_set_wake_by_current_state
+	fetcht 1,mem_mbutton_gpio
+	call gpio_set_wake_by_current_state
+	fetcht 1,mem_sensor_data_gpio
+	call gpio_set_wake
+	fetch 1,mem_lpm_current_mult
+	nrtn blank					// 7.5ms, no gpio wakeup
+	branch gpio_clr_wake
+	
+mouse_wheel_check:
+	set0 mark_ext_patch,mark
+	bpatch patch18_1,mem_patch18
+	arg 0,rega
+	fetcht 1,mem_whee_a_data_gpio
+	call gpio_get_bit
+	setflag true,0,rega
+	fetcht 1,mem_whee_b_data_gpio
+	call gpio_get_bit
+	setflag true,1,rega
+	copy rega,pdata
+
+	and_into  0x3,pdata
+	fetcht 1,mem_mouse_z_now
+	store 1,mem_mouse_z_now
+	isub temp,null
+	branch mouse_wheel_clear,zero
+	fetch 1,mem_mouse_z_before
+	store 1,mem_mouse_z_last
+	storet 1,mem_mouse_z_before
+	fetch 1,mem_mouse_z_now
+	lshift4 pdata,pdata
+	fetcht 1,mem_mouse_z_before
+	lshift2 temp,temp
+	iadd temp,pdata
+	fetcht 1,mem_mouse_z_last
+	iadd temp,pdata
+	beq 0x38,mouse_wheel_forward
+	beq 0x34,mouse_wheel_back
+	beq 0x0b,mouse_wheel_back
+	beq 0x07,mouse_wheel_forward
+	rtn
+
+mouse_wheel_clear:
+	rtn
+	
+mouse_wheel_forward:
+	fetch 1,mem_mouse_z_data
+	increase 1,pdata
+	store 1,mem_mouse_z_data
+	rtn
+	
+mouse_wheel_back:
+	fetch 1,mem_mouse_z_data
+	increase -1,pdata
+	store 1,mem_mouse_z_data
+	rtn
+		
+mouse_process_ble:
+
+	rtn
+mouse_sleep_sensor:
+	setarg 0xB805
+	branch twspi_write
+
+mouse_bb_connected:
+	rtn
+	
+le_mouse_bb_event_write_request:
+	call app_ble_store_reconn_info
+	jam MOUSE_MODE_STATE_BLE,mem_mouse_mode_state
+	call app_lpm_mult_enable
+le_mouse_bb_event_enc_info:
+	branch app_ble_start_write
+
+le_hibernate_timer:
+	fetch 2,mem_le_hibernate_timer
+	rtn blank
+	increase -1,pdata
+	store 2,mem_le_hibernate_timer
+	nrtn blank
+	branch app_enter_hibernate
+	
+mouse_hid_connected:
+	setarg HID_HANDSHAKE_TIMEOUT
+	store 1,mem_hid_handshake_timer_count
+	rtn
+	
+mouse_send_process:
+	fetch 1,mem_app_handshake_flag
+	rtn blank
+	call l2cap_malloc_is_fifo_nearly_full
+	nrtn blank
+	call mouse_motion
+	nrtn user
+	call mouse_no_data_timer_init
+	call mouse_send_blank_packet_timer_init
+mouse_send_data:
+	arg 8,rega
+	call hid_malloc_tx_buff
+	fetch 2,mem_hid_int_remote_cid
+	istore 2,contw
+	setarg 0x02a1
+	istore 2,contw
+	fetch 1,mem_mouse_key
+	istore 1,contw
+	fetch 2,mem_mouse_x
+	arg 0xfff,temp
+	iand temp,pdata
+	fetcht 2,mem_mouse_y
+	lshift4 temp,temp
+	lshift8 temp,temp
+	ior temp,pdata
+	istore 3,contw
+	fetch 1,mem_mouse_z
+	istore 1,contw
+	setarg 0
+	istore 1,contw
+	jam 8,mem_UI_data_txbuff_length
+	rtn
+
+
+mouse_send_blank_packet_timer:
+	set0 mark_ext_patch,mark
+	bpatch patch18_2,mem_patch18
+	fetch 1,mem_mouse_send_blank_timer
+	rtn blank
+	increase -1,pdata
+	store 1,mem_mouse_send_blank_timer
+	nrtn blank
+	call l2cap_malloc_is_fifo_empty
+	nrtn blank
+	setarg 0
+	store 5,mem_mouse_x
+	call mouse_send_data
+	jam  MOUSE_SEND_BLANK_TIMER,mem_mouse_send_blank_timer
+	rtn
+mouse_send_blank_packet_timer_init:
+	fetch 2,mem_mouse_blank_data_timeout
+	store 2,mem_mouse_blank_data_timer
+	jam  MOUSE_SEND_BLANK_TIMER,mem_mouse_send_blank_timer
+	rtn
+	
+mouse_no_data_timer_init:
+	fetch 2,mem_mouse_no_data_timeout
+	store 2,mem_mouse_no_data_timer
+	rtn
+
+	
+mouse_le_notify_update_data:
+	fetcht 2, mem_le_notify_handle
+	call le_att_get_handle_ptr 
+	ifetch 1,contr
+	store 1,mem_le_notify_len
+	rtn
+
+	
+mouse_fill_data_le:
+	set0 mark_ext_patch,mark
+	bpatch patch18_3,mem_patch18
+	fetcht 2, mem_le_notify_handle
+	call le_att_get_handle_ptr
+	add contr,1,contw
+mouse_fill_data:
+	fetch 1,mem_mouse_key
+	istore 1,contw
+	fetch 2,mem_mouse_x
+	arg 0xfff,temp
+	iand temp,pdata
+	fetcht 2,mem_mouse_y
+	lshift4 temp,temp
+	lshift8 temp,temp
+	ior temp,pdata
+	istore 3,contw
+	fetch 1,mem_mouse_z
+	istore 1,contw
+	rtn
+
+mouse_motion:
+	set0 mark_ext_patch,mark
+	bpatch patch18_4,mem_patch18
+	disable user
+	setarg 0
+	store 5,mem_mouse_x
+	call p3204_motion
+	call p3204_sdio_low
+	call mouse_zwheel
+	branch mouse_key
+	
+p3204_motion:
+	fetch 1,mem_sensor_type
+	rtnne SENSOR_TYPE_P3204
+	fetch 1,mem_mouse_move_flag
+	call p3204_clear_data,blank
+	jam 1,mem_mouse_move_flag
+	disable user
+	fetcht 1,mem_sensor_data_gpio
+	call gpio_get_bit
+	nrtn true
+	setarg 0
+	call twspi_read
+	bne P3204_ID,twspi_reset
+	setarg 2
+	call twspi_read
+	rtnbit0 7
+	setarg 3
+	call twspi_read
+	call extsign
+	store 2,mem_mouse_x
+	setarg 4
+	call twspi_read
+	call extsign
+	sub pdata,0,pdata
+	store 2,mem_mouse_y
+	fetch 4,mem_mouse_x
+	enable user
+	rtn
+mouse_zwheel:
+	fetch 1,mem_mouse_z_data
+	rtn blank	
+	store 1,mem_mouse_z
+	jam 0,mem_mouse_z_data
+	enable user
+	rtn
+mouse_key:
+	arg 0,rega
+	fetcht 1,mem_lbutton_gpio
+	call gpio_get_bit
+	setflag true,0,rega
+	fetcht 1,mem_rbutton_gpio
+	call gpio_get_bit
+	setflag true,1,rega
+	fetcht 1,mem_mbutton_gpio
+	call gpio_get_bit
+	setflag true,2,rega
+	deposit rega
+	fetcht 1,mem_mouse_key
+	store 1,mem_mouse_key	
+	ixor temp,pdata
+	sub pdata,0,null
+	rtn zero
+	enable user
+	rtn
+	
+
+
+	/* sdio high will cost extra 9mA */
+p3204_sdio_low:
+	arg 26,temp
+	call gpio_get_bit
+	rtn true
+	setarg 0
+	call twspi_read
+	branch p3204_sdio_low
+
+p3204_clear_data:
+	arg 0,loopcnt
+p3204_clear_data_loop:
+	setarg 2
+	call twspi_read
+	nop 100
+	increase 1,loopcnt
+	fetcht 1,mem_sensor_data_gpio
+	call gpio_get_bit	
+	branch p3204_clear_data_loop,true
+	deposit loopcnt
+	store 2,mem_init_cnt
+	rtn
+mouse_init_sunt:
+	call spid_init
+	rtn wake
+	
+mouse_init_p3204:	
+	setarg 0
+	call twspi_read
+	store 1,mem_sensor_id
+	beq P3204_ID,mouse_init_p3204_cont
+	call twspi_reset
+	nop 10000
+	branch mouse_init_p3204
+mouse_init_p3204_cont:
+	setarg 0x8006
+	call twspi_write
+	nop 1000
+	jam SENSOR_TYPE_P3204,mem_sensor_type
+	rtn
+
+
+
+extsign:
+	rtnbit0 7
+	arg 0xff00,temp
+	ior temp,pdata
+	rtn
+
+
+
+le_mouse:
+	call le_xtype_fifo_is_near_full
+	nrtn blank
+	fetcht 2,mem_le_notify_handle
+	call le_att_check_notification_enable
+	rtnbit0 0
+	fetch 1,mem_le_switch_send_data
+	rtnbit0 0
+	call mouse_motion
+//	call mouse_test
+	nrtn user
+	call mouse_no_data_timer_init
+	//call app_lpm_wake_auto_lock
+	jam ATTOP_HANDLE_VALUE_NOTIFICATION,mem_fifo_temp
+	call le_xtype_fifo_in
+	branch mouse_fill_data_le
+
+mouse_test:
+	rtn user
+	fetch 1,mem_mouse_test_cnt
+	increase 1,pdata
+	store 1,mem_mouse_test_cnt
+	arg 1,temp
+	bbit0 7,mouse_test_pos
+	arg 0xffff,temp
+mouse_test_pos:
+	storet 5,mem_mouse_x
+	enable user
+	rtn
+
+mouse_check_mode_state:
+	disable user
+	fetch 1,mem_mouse_mode_state
+	rtneq MOUSE_MODE_STATE_BLE
+	enable user
+	rtn
+	
+mouse_priority_bb_event:	
+	copy regc,pdata
+	beq BT_EVT_LE_CONNECTED,le_mouse_bb_event_connected
+	beq BT_EVT_BB_CONNECTED,mouse_stop_discovery
+	beq BT_EVT_LE_DISCONNECTED,mouse_bb_disconnected
+	beq BT_EVT_BB_DISCONNECTED,mouse_bb_disconnected
+	beq BT_EVT_SETUP_COMPLETE,mouse_bt_event_setup_complete
+	beq BT_EVT_BUTTON_LONG_PRESSED,mouse_bb_event_discovery_btn
+	beq BT_EVT_HID_HANDSHAKE,mouse_bt_hid_handshake
+	beq BT_EVT_HID_CONNECTED,mouse_bt_hid_connected
+	beq BT_EVT_LE_WRITE_REQUEST,le_mouse_bb_event_write_request
+	beq BT_EVT_LE_ENC_INFO,le_mouse_bb_event_enc_info
+	beq BT_EVT_RECONN_FAILED,mouse_bb_event_reconn_failed
+	beq BT_EVT_RECONN_PAGE_TIMEOUT,mouse_bb_event_reconn_failed
+	beq BT_EVT_PINCODE_REQ,mouse_bb_event_pincode
+	beq BT_EVT_REMOTE_UNSNIFF,app_start_auto_sniff
+	and pdata,0x0f,temp
+	and_into BT_EVT_TIMER_MASK,pdata
+	beq BT_EVT_TIMER_INIT,mouse_bb_event_timer
+	rtn
+
+le_mouse_bb_event_connected:
+	fetch APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	set0 APP_DISC_BY_BUTTON ,pdata
+	store APP_DISC_RSN_SIZE,mem_app_disconn_reason_flag
+	setarg 0
+	store 2,mem_mouse_direct_timer
+	fetch 1,mem_conn_cnt
+	increase 1,pdata
+	store 1,mem_conn_cnt
+	branch mouse_stop_discovery
+
+mouse_bb_event_pincode:
+	call pincode_reinit
+	branch app_bt_set_pincode
+	
+mouse_bb_event_reconn_failed:
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BTN_DOWN,mouse_start_discovery
+	branch app_bb_hibernate
+
+	
+mouse_bt_hid_connected:
+	call mouse_hid_connected
+	rtn
+mouse_bt_event_setup_complete:
+	rtn
+
+mouse_bb_disconnected:
+	set0 mark_ext_patch,mark
+	bpatch patch18_5,mem_patch18
+	call mouse_bb_discon_clear_stack
+	fetch APP_DISC_RSN_SIZE,mem_app_disconn_reason
+ifdef DEBUG_LIGHT_STATE
+	store 1,0x4c00
+endif
+	bbit1 APP_DISC_BLE,mouse4_0_event_bb_disconn
+	bbit1 APP_DISC_BY_BUTTON,app_disconn_reason_clear
+	bbit1 APP_DISC_AFTER_PAIRING,mouse_event_light_state_pairing
+	bbit1 APP_DISC_AFTER_RECONN,mouse_event_light_state_hibernate
+	bbit1 APP_DISC_AFTER_SNIFF,mouse_event_light_state_hibernate
+	branch mouse_start_discovery
+mouse_bb_discon_clear_stack:
+	setarg 0
+	store 4,mem_mouse_z_last
+	jam 0,mem_mouse_send_blank_timer
+	jam 0,mem_mouse_move_flag
+	jam APP_HANDSHAKE_NULL,mem_app_handshake_flag
+	jam 0,mem_ltk_exists
+	jam 0,mem_mouse_mode_state
+	jam 0,mem_reconnect_timeout
+	rtn
+
+mouse_event_light_state_pairing:
+	bbit1 APP_DISC_AFTER_HANDSHAKE,mouse_event_light_state_hibernate
+	bbit1 APP_DISC_AFTER_SNIFF,mouse_event_light_state_hibernate
+	branch mouse_start_discovery
+mouse_event_light_state_hibernate:
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BTN_DOWN,mouse_start_discovery
+	branch app_bb_hibernate
+
+mouse4_0_event_bb_disconn:
+	call le_clean_att_list_handle_enable
+	fetch APP_DISC_RSN_SIZE,mem_app_disconn_reason
+	bbit1 APP_DISC_BY_BUTTON,app_disconn_reason_clear
+	branch app_bb_hibernate
+
+mouse_bb_event_timer:
+	set0 mark_ext_patch,mark
+	bpatch patch18_6,mem_patch18
+	storet 1,mem_app_evt_timer_count
+mouse_bb_event_100ms_loop:
+	fetch 1,mem_app_evt_timer_count
+	rtn blank
+	increase -1,pdata
+	store 1,mem_app_evt_timer_count
+	//common part
+	//call app_lpm_wake_auto_lock_timer
+	call mouse_check_hid_handshake_timer
+	call mouse_check_discovery_timeout_timer
+	call mouse_check_direct_timeout_timer
+	call mouse_check_no_data_timeout_timer
+	//process for different mode, BT or BLE
+	fetch 1,mem_mouse_mode_state
+	compare MOUSE_MODE_STATE_BLE,pdata,0xff
+	call mouse4_0_bb_event_100ms,true
+	fetch 1,mem_mouse_mode_state
+	compare MOUSE_MODE_STATE_BT,pdata,0xff
+	call mouse3_0_bb_event_100ms,true
+	branch mouse_bb_event_100ms_loop
+	
+mouse3_0_bb_event_100ms: 
+	//flag user cannot bt changed!!!!
+	call mouse_check_blank_data_timeout_timer
+	branch mouse_send_blank_packet_timer
+	
+mouse4_0_bb_event_100ms:
+	//flag user cannot bt changed!!!!
+	rtn
+	
+mouse_check_hid_handshake_timer:
+	fetch 1,mem_hid_handshake_timer_count
+	rtn blank
+	increase -1,pdata
+	store 1,mem_hid_handshake_timer_count
+	nrtn blank
+	branch mouse_bt_hid_handshake
+
+mouse_check_discovery_timeout_timer:	
+	fetch 2,mem_mouse_discovery_timer
+	rtn blank
+	increase -1,pdata
+	store 2,mem_mouse_discovery_timer
+	nrtn blank
+	call mouse_stop_discovery
+	branch app_enter_hibernate
+
+mouse_check_direct_timeout_timer:
+	fetch 2,mem_mouse_direct_timer
+	rtn blank
+	increase -1,pdata
+	store 2,mem_mouse_direct_timer
+	nrtn blank
+	call app_ble_stop_direct_adv
+	branch app_enter_hibernate
+
+mouse_check_blank_data_timeout_timer:
+	fetch 2,mem_mouse_blank_data_timer
+	rtn blank
+	increase -1,pdata
+	store 2,mem_mouse_blank_data_timer
+	nrtn blank
+	jam 0,mem_mouse_send_blank_timer
+	rtn
+
+mouse_check_no_data_timeout_timer:
+	fetch 2,mem_mouse_no_data_timer
+	rtn blank
+	increase -1,pdata
+	store 2,mem_mouse_no_data_timer
+	nrtn blank
+	branch mouse_disconnect
+	
+mouse_bb_event_discovery_btn:
+	set0 mark_ext_patch,mark
+	bpatch patch18_7,mem_patch18
+	jam 0,mem_mouse_send_blank_timer
+	jam 1,mem_reconnect_timeout
+	setarg 0
+	store 2,mem_mouse_direct_timer
+	call mouse_disconnect
+	fetch 1,mem_device_option
+	isolate1 MODE_4_MOUSE,pdata
+	call mouse4_0_bb_event_discovery_btn,true
+	fetch 1,mem_device_option
+	isolate1 MODE_3_MOUSE,pdata
+	call mouse3_0_bb_event_discovery_btn,true
+	call app_lpm_mult_disable
+	branch mouse_start_discovery
+
+
+
+mouse3_0_check_reconn_target:
+	fetch 6,mem_hci_plap
+	branch app_bt_start_discovery_short,blank	
+	branch app_bt_start_reconnect
+	
+mouse4_0_check_reconn_target:
+	fetch 6,mem_hci_plap
+	branch mouse4_0_no_reconn_target,blank
+	fetch 2,mem_mouse_direct_timeout
+	store 2,mem_mouse_direct_timer
+	call app_lpm_mult_enable
+	branch app_ble_start_direct_adv
+mouse4_0_no_reconn_target:
+	call app_led_start_blink
+	branch app_ble_start_adv
+
+mouse3_0_bb_event_discovery_btn:
+	fetch 2,mem_ui_state_map
+	isolate1 UI_STATE_BT_RECONNECT,pdata
+	call app_bt_reconnect_cancel,true
+	rtn
+mouse4_0_bb_event_discovery_btn:
+	call le_clean_att_list_handle_enable
+	rtn
+	
+mouse_bt_hid_handshake:
+	jam APP_HANDSHAKE_DONE,mem_app_handshake_flag
+	call app_lpm_mult_enable
+	call app_bt_store_reconn_info
+	jam MOUSE_MODE_STATE_BT,mem_mouse_mode_state
+	setarg 0
+	store 2,mem_discovery_timeout_timer_count
+	store 1,mem_hid_handshake_timer_count
+	call app_bt_enter_sniff
+	branch mouse_send_blank_packet_timer_init
+
+mouse_check_reconn_target:
+	fetch 1,mem_xrecord_mode
+	beq REC_3_MODE,mouse3_0_check_reconn_target
+	beq REC_4_MODE,mouse4_0_check_reconn_target	
+	branch mouse_start_discovery
+
+mouse_start_discovery:
+	set0 mark_ext_patch,mark
+	bpatch patch19_0,mem_patch19
+	fetch 1,mem_le_lap
+	increase 1,pdata
+	store 1,mem_le_lap
+	call app_lpm_mult_disable
+	fetch 2,mem_discovery_timeout
+	store 2,mem_mouse_discovery_timer
+	fetch 1,mem_device_option
+	isolate1 MODE_4_MOUSE,pdata
+	call app_ble_start_adv,true
+	fetch 1,mem_device_option
+	isolate1 MODE_3_MOUSE,pdata
+	call app_bt_start_discovery,true
+	branch app_led_start_blink
+
+mouse_stop_discovery:
+	set0 mark_ext_patch,mark
+	bpatch patch19_1,mem_patch19
+	setarg 0
+	store 2,mem_mouse_discovery_timer
+	fetch 1,mem_device_option
+	isolate1 MODE_4_MOUSE,pdata
+	call app_ble_stop_adv,true
+	fetch 1,mem_device_option
+	isolate1 MODE_3_MOUSE,pdata
+	call app_bt_stop_discovery,true
+	branch app_led_stop_blink
+
+mouse_disconnect:
+	set0 mark_ext_patch,mark
+	bpatch patch19_2,mem_patch19
+	setarg 0
+	store 2,mem_mouse_no_data_timer
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BLE_CONNECTED,app_ble_disconnect
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BT_CONNECTED,app_bt_disconnect
+	rtn
+
+eeprom_store_mouse_dpi:
+	set0 mark_ext_patch,mark
+	bpatch patch19_3,mem_patch19
+	arg 1,temp
+	arg mem_mouse_dpi,rega
+	arg mouse_dpi_eeprom_addr,regb
+	branch iicd_write_eep_data
+
+eeprom_load_mouse_dpi:
+	set0 mark_ext_patch,mark
+	bpatch patch19_4,mem_patch19
+	arg 1,temp
+	arg mem_mouse_dpi,rega
+	arg mouse_dpi_eeprom_addr,regb
+	branch iicd_read_eep_data
+
+else
+mouse_init:
+	branch assert
+
+endif
+
+
+
Index: btkb/program/patch.prog
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/btkb/program/patch.prog	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/btkb/program/patch.prog	(working copy)
@@ -0,0 +1,3048 @@
+define BT_30
+define BLE
+//define BLE_PINCODE
+define P24G
+//define GPIO_TEST_01
+define TX_POWER_MAX
+//define LE_BATTERY_LEVEL_DISPLAY
+define WAKE_DEV
+
+	bmark1 mark_ext_patch,patch_ext
+	beq patch00_0,p_soft_reset
+	beq patch00_3,p_main_loop
+	beq patch00_5,p_main_loop_end
+	beq patch00_6,p_connection_incontext
+	beq patch01_2,p_idle_page_mode_r0
+ifdef BT_30		
+	beq patch04_7,p_role_switch_check
+	beq patch05_0,p_role_switch_prepare0_0
+	beq patch05_3,p_roles_replyto_fhs
+	beq patch08_2,p_slave_loop
+	beq patch08_3,p_slave_notmatch
+	beq patch0a_0,p_prepare_tx_not_sco
+	beq patch0a_4,p_tx_l2cap_type
+endif 	
+	beq patch06_1,p_context_new
+	beq patch06_3,p_context_search
+	beq patch12_0,p_shutdown_radio
+	beq patch12_2,p_set_freq_rx
+	beq patch12_4,p_set_freq_tx
+	beq patch12_5,p_initialize_radio_cont
+	beq patch16_0,p_lpm_sleep
+	beq patch16_1,p_lpm_recover_clk
+	beq patch16_2,p_lpm_dispatch
+	beq patch16_3,p_lpm_dispatch_next
+	beq patch16_6,p_lpm_dispatch_unconn
+	beq patch17_1,p_lpm_cal_xtal_startup
+	branch assert
+
+patch_ext:
+ifdef BT_30
+  	beq patch23_0,p_l2cap_rx_multiplexing
+  	beq patch23_3,p_l2cap_process_one_signal
+	beq patch24_3,p_ml2cap_call_proc_signal
+  	beq patch24_4,p_l2cap_malloc
+endif 	
+ifdef BLE	
+  	beq patch26_2,p_le_init_conn
+	beq patch27_3,le_slave_unsync + 3
+endif	
+	beq patch27_6,p_le_enable
+	beq patch27_7,p_le_disable
+ifdef BLE
+	beq patch29_2,p_lerx_nopayload
+	beq patch29_3,p_le_transmit_receive_sifs
+	beq patch29_4,p_le_transmit
+	beq patch29_6,p_le_send_adv_ind
+	beq patch2a_6,p_le_update_param
+	beq patch2c_1,p_le_prepare_tx
+	beq patch2c_3,p_le_prepare_tx_cmd
+	beq patch2c_4,p_le_prepare_smp
+	beq patch2c_5,p_le_prepare_att
+	beq patch2d_1,p_le_send_non_l2cap
+	beq patch2d_2,p_le_parse
+	beq patch2d_3,p_le_parse_ll
+	beq patch2d_6,p_le_parse_smp
+	beq patch2d_7,p_le_parse_att
+endif
+	beq patch30_7,p_ui_timer_check
+	beq patch31_5,p_check_51cmd_once
+	beq patch31_6,p_check_51cmd_once_continue
+	beq patch31_7,p_check_enter_hibernate	
+	beq patch37_5,p_fifo_in
+	beq patch39_5,p_kb_init
+	beq patch39_7,p_app_process_bb_event
+	beq patch3a_0,p_kb_bb_event_timer
+ifdef BT_30	
+	beq patch33_4,p_hid_rx_process
+	beq patch33_7,p_scheduler_process_sdp_succ
+	beq patch3c_2,p_parse_lmp
+	beq patch3c_3,p_send_lmp
+	beq patch3c_6,p_process_conn_sm
+endif	
+	branch assert
+
+
+p_context_search:
+	arg mem_context,rega
+	force 1,loopcnt
+	branch context_search_loop
+
+p_context_new:
+	arg mem_context,contw
+	arg 10,loopcnt
+	call memset0
+	branch context_new+2
+	
+	
+p_soft_reset: 
+	hfetch 1,0x813b
+	store 1,mem_wakup_from_power_flag
+	hjam lock_otp,core_misc_ctrl
+	branch soft_reset+2
+
+
+
+p_main_loop:	
+	call p_ipc_timer_check
+	call p_ui_check_timer_setup
+	call p_ipc_rx
+	call p_bt_status_handle
+	branch main_loop+2
+
+p_bt_status_handle:
+	fetcht 2,mem_ui_state_map
+	fetch 1, mem_le_adv_enable
+	nsetflag blank,UI_STATE_BLE_ADV,temp
+	fetch 1,mem_scan_mode
+	nsetflag blank,UI_STATE_BT_DISCOVERY,temp
+	storet 2, mem_ui_state_map
+	rtn	
+
+p_main_loop_end:
+	call inquiry_scan_dispatch
+	call page_scan_dispatch
+	call connection_dispatch 
+ifdef P24G
+	call p_g24_dispatch
+endif
+ifdef SIMPLE_PAIRING
+	branch main_loop+15
+else
+	branch main_loop+14
+endif
+
+
+p_ipc_rx:
+	fetch 1,mem_ssp_enable
+	branch p_ipc_rx0,blank
+	fetch 1,mem_sp_local_key_invalid	// simple pairing is not ready
+	rtn blank
+p_ipc_rx0:
+	call p_check_ipc_2bt
+	rtn user
+	byteswap pdata,pdata
+	copy pdata,contr
+	call p_ipc_rx_byte
+	store 1,mem_ipc_rx_type
+	beq IPC_TYPE_CMD,p_ipc_rx_cmd
+ifdef P24G
+	beq IPC_TYPE_24G,p_ipc_rx_24g
+endif
+	copy pdata,temp
+	copy contr,rega
+	fetch 1,mem_context
+	bbit0 state_inconn,p_ipc_abondon_rx_data
+	copy rega,contr
+	rtnmark0 mark_context
+	copy temp,pdata
+ifdef BT_30
+	beq IPC_TYPE_HID,p_ipc_rx_hid
+endif
+ifdef BLE
+	beq IPC_TYPE_BLE,p_ipc_rx_ble
+endif
+	branch assert
+
+p_ipc_abondon_rx_data:
+	copy rega,contr
+	arg mem_tst_pktcnt_sync,contw
+	branch p_ipc_rx_cpy
+
+p_ipc_rx_cmd:
+	call p_ipc_rx_byte
+	call p_ipc_rx_byte
+	store 1,mem_fifo_temp
+	call p_ipc_next_rx
+	branch ui_ipc_send_cmd
+p_ipc_next_rx:
+	call p_ipc_rx_updata_contr
+	copy contr,temp
+	byteswap temp,temp
+	storet 2,mem_ipc_2bt_read_index
+	rtn
+	
+ifdef P24G
+p_ipc_rx_24g:
+	arg mem_24g_txbuf_new,contw
+	branch p_ipc_rx_cpy
+endif
+
+ifdef BT_30
+p_ipc_rx_hid:
+	call p_ipc_rx_byte
+	copy pdata,rega
+	copy contr,pdata
+	store 2,mem_contr
+	call l2cap_malloc_is_fifo_nearly_full
+	nbranch p_ipc_rx_hid0,blank
+	increase 1,rega
+	call hid_malloc_tx_buff
+	branch p_ipc_rx_hid1
+p_ipc_rx_hid0:
+	arg mem_uart_packet,contw
+	copy rega,loopcnt
+	fetch 2,mem_contr
+	copy pdata,contr
+	branch p_ipc_copy
+
+p_ipc_rx_hid1:	
+	add contw,-2,regb
+	fetch 2,mem_hid_int_remote_cid
+	istore 2,contw
+	setarg 0xa1
+	istore 1,contw
+	add rega,-1,loopcnt
+	fetch 2,mem_contr
+	copy pdata,contr
+	call p_ipc_copy
+	copy regb,contr
+	ifetch 2,contr
+	store 2,mem_kb_last_data
+	add pdata,2,loopcnt
+	call memcpy
+	jam 100,mem_kb_wake_timer
+	rtn	
+endif
+ifdef BLE
+p_ipc_rx_ble:	
+	copy contr,rega
+p_ipc_rx_ble_read_fifo:
+	fetch 1,mem_queue_write
+	add pdata,1,temp
+	and temp,0x03,temp
+	storet 1,mem_queue_write
+	mul32 pdata,7,pdata
+	arg mem_uart_packet,contw
+	iadd contw,contw
+	
+	copy rega,contr
+	call p_ipc_rx_byte
+	copy contr,rega
+	increase -1,pdata
+	copy pdata,loopcnt
+	increase 7,pdata
+	store 1,mem_le51_tx_length
+	copy rega,contr
+	call p_ipc_rx_byte
+	copy contr,rega
+	beq 01,p_report1
+	beq 02,p_report2
+	beq 03,p_report3
+	beq 04,p_report4
+	beq 06,p_report6
+	beq 08,p_report8
+p_report1:
+	fetch 2,mem_att_report_standard_key	
+p_set_report:
+	istore 2,contw
+	copy rega,contr
+	call p_ipc_copy
+	call le_xtype_fifo_is_near_full
+	nrtn blank
+	jam ATTOP_HANDLE_VALUE_NOTIFICATION,mem_fifo_temp
+	branch le_xtype_fifo_in
+
+p_report2:
+	fetch 2,mem_att_report_media_key
+	branch p_set_report
+p_report3:
+	fetch 2,mem_att_report_system_ctrl
+	branch p_set_report
+p_report6:
+	fetch 2,mem_att_report_game
+	branch p_set_report
+p_report8:
+	fetch 2,mem_att_report_game
+	branch p_set_report
+
+	
+p_report4:
+	fetch 2,mem_att_report_battery
+ifndef LE_BATTERY_LEVEL_DISPLAY
+	istore 2,contw
+	copy rega,contr
+	branch p_ipc_copy
+else	
+	branch p_set_report
+endif	
+
+endif
+
+
+p_ui_check_timer_setup:
+	fetcht 4,mem_ui_check_timer_setup
+	copy clkn_bt,pdata
+	isub temp,pdata
+	fetcht 2,mem_customize_timer_setup		// * 0.3125ms
+	idiv temp
+	call wait_div_end
+	quotient pdata
+	rtn blank
+	copy clkn_bt,temp
+	storet 4,mem_ui_check_timer_setup
+	fetch 1,mem_customize_timer
+	increase 1,pdata
+	store 1,mem_customize_timer
+	rtn
+
+
+
+//1600 == 500ms
+p_ipc_timer_check:
+	fetcht 4,mem_ipc_last_check_timer
+	copy clkn_bt,pdata
+	isub temp,pdata
+	//arg 3200,temp
+	arg 1600,temp
+	idiv temp
+	call wait_div_end
+	quotient pdata
+	rtn blank
+	copy clkn_bt,temp
+	storet 4,mem_ipc_last_check_timer
+	fetcht 2,mem_ipc_bt_timer
+	byteswap temp,temp
+	iadd temp,pdata
+	byteswap pdata,pdata
+	store 2,mem_ipc_bt_timer
+	byteswap pdata,pdata
+	and pdata,0x3,pdata
+	rtnne 0
+p_adc_check_hvin:
+	hjam 0xaf,rf_adc_mode	//read HVIN voltage directly
+p_read_adc:
+	hfetch 1,core_uart_baud + 1
+	set1 7,pdata
+	hstore 1,core_uart_baud + 1 
+	hfetch 1,rf_adc_ch
+	or_into 0x30,pdata
+	hstore 1,rf_adc_ch
+	hjam 0x74,rfen_adc
+	hjam 0x7c,rfen_adc
+	hjam 0xaa,rf_adc_gc
+	nop 5000
+	hfetcht 2,core_adc_sum
+	hfetch 1,core_uart_baud + 1
+	set0 7,pdata
+	hstore 1,core_uart_baud + 1
+	byteswap temp,temp
+	storet 2,mem_adc_current_value
+	rtn
+
+p_ipc_rx_cpy:
+	call p_ipc_rx_byte
+	copy pdata,loopcnt
+p_ipc_copy:
+	call p_ipc_cpy_loop
+	branch p_ipc_next_rx
+	
+p_ipc_cpy_loop:
+	call p_ipc_rx_byte
+	istore 1,contw
+	loop p_ipc_cpy_loop
+	rtn
+
+p_ipc_rx_byte:
+	call p_ipc_rx_updata_contr
+	ifetch 1,contr
+	rtn
+
+p_ipc_rx_updata_contr:
+	setarg mem_ipc_2bt_fifo_end
+	isub contr,null
+	nrtn zero
+	arg mem_ipc_2bt_fifo_head,contr
+	rtn
+
+p_ipc_tx_evt:
+	arg 3,loopcnt
+	arg mem_ipc_tx_evt_buff,contr
+p_ipc_tx_cpy:
+	copy contr,rega
+	fetch 2,mem_ipc_2C51_write_index
+	byteswap pdata,pdata
+	copy pdata,contw
+	copy rega,contr
+p_ipc_tx_loop:
+	ifetch 1,contr
+	istore 1,contw
+	call p_ipc_tx_updata_contw
+	loop p_ipc_tx_loop
+	copy contw,pdata
+	byteswap pdata,pdata
+	store 2,mem_ipc_2C51_write_index
+	rtn
+p_ipc_tx_updata_contw:
+	setarg mem_ipc_2C51_fifo_end
+	isub contw,null
+	nrtn zero
+	arg mem_ipc_2C51_fifo_head,contw
+	rtn
+
+//user: no data
+p_check_ipc_2c51:
+	fetch 2,mem_ipc_2C51_read_index
+	fetcht 2,mem_ipc_2C51_write_index
+	branch p_check_ipc_common
+p_check_ipc_2bt:
+	fetch 2,mem_ipc_2bt_read_index
+	fetcht 2,mem_ipc_2bt_write_index
+p_check_ipc_common:
+	isub temp,null
+	branch enable_usr,zero
+	branch disable_usr
+
+
+p_ui_timer_check:				// 100ms_event   clock overflow
+	copy clkn_bt,pdata
+	store 4,mem_ui_timer_last_btclk_temp
+	fetcht 1,mem_ui_timer_last_btclk+3
+	fetch 1,mem_ui_timer_last_btclk_temp+3
+	isub temp,null
+	ncall p_ui_timer_reinit,positive
+	branch ui_timer_check+2
+
+p_ui_timer_reinit:
+	fetcht 4,mem_ui_timer_last_btclk_temp
+	storet 4,mem_ui_timer_last_btclk
+	storet 4,mem_ipc_last_check_timer
+	storet 4,mem_ui_check_timer_setup
+	rtn
+ 
+	
+p_app_process_bb_event:
+	arg mem_ipc_fifo_bt2c51,rega
+	call fifo_out
+	rtn blank
+	//reaching here mains c51 cannot get bb event.
+	copy pdata,regc
+	call p_app_event_normal_process
+	branch app_process_bb_event_priority
+p_app_event_normal_process:
+	rtneq BT_EVT_LINKKEY_GENERATE
+ifdef BLE	
+	beq BT_EVT_LE_CONNECTED,scale_process_le_conn
+	beq BT_EVT_LE_DISCONNECTED,scale_process_le_discon
+endif	
+	beq BT_EVT_HID_CONNECTED,mouse_bt_hid_connected
+	beq BT_EVT_BB_DISCONNECTED,p_app_bb_event_bb_disconn
+	branch app_event_normal_process
+
+p_app_bb_event_bb_disconn:
+	jam 0,mem_unsniff2sniff_timer_count
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BT_RECONNECT,app_bb_event_bb_reconn_disconn
+	isolate0 UI_STATE_BT_SETUP_COMPLETE,pdata
+ 	call p_app_discard_event,true
+	branch app_bb_event_bb_reconn_disconn
+
+
+p_app_discard_event:
+	fetch 1,mem_pincode_state
+	rtneq pincode_state_pincode_ready
+	branch app_discard_event
+
+
+// 1clkn_bt = 0.3125ms
+p_kb_bb_event_timer:
+	storet 1,mem_app_evt_timer_count
+	fetch 1,mem_ipc_bt_100ms_timer
+	increase 1,pdata
+	store 1,mem_ipc_bt_100ms_timer
+p_kb_bb_event_100ms_loop:
+	fetch 1,mem_app_evt_timer_count
+	rtn blank
+	increase -1,pdata
+	store 1,mem_app_evt_timer_count
+	call p_kb_check_hid_handshake_timer
+	call p_kb_long_sleep_timer
+ifdef WAKE_DEV
+	call p_kb_wake_remote_dev
+endif
+	branch p_kb_bb_event_100ms_loop
+	
+ifdef WAKE_DEV
+p_kb_wake_remote_dev:
+	fetch 1,mem_suspend_flag
+	nrtn blank
+	fetch 1,mem_kb_wake_timer
+	rtn blank
+	increase -1,pdata
+	store 1,mem_kb_wake_timer
+	rtnne 1
+	jam 100,mem_kb_wake_timer
+	//call app_check_sniff
+	//nrtn true
+	fetch 2,mem_ui_state_map
+	//rtnbit0 UI_STATE_BT_HID_HANDSHAKE
+	rtnbit0 UI_STATE_BT_SNIFF
+	fetch 2,mem_kb_last_data
+	rtn blank
+	call l2cap_malloc_is_fifo_empty
+	nrtn blank
+	fetch 2,mem_kb_last_data
+	copy pdata,rega
+	call hid_malloc_tx_buff
+	add rega,2,loopcnt
+	arg mem_kb_last_data+2,contr
+	branch memcpy
+endif
+	
+p_kb_check_hid_handshake_timer:
+	fetch 1,mem_hid_handshake_timer_count
+	rtn blank
+	increase -1,pdata
+	store 1,mem_hid_handshake_timer_count
+	nrtn blank
+	call app_evt_hid_handshake
+	branch hid_handshake_event
+
+p_kb_long_sleep_timer:
+	fetch 1,mem_24g_enter_lpm_timer
+	rtn blank
+	increase -1,pdata
+	store 1,mem_24g_enter_lpm_timer
+	rtn
+	
+
+p_c51_user_event:
+	copy regc,pdata
+	and_into BT_EVT_TIMER_MASK,pdata
+	rtneq BT_EVT_TIMER_INIT
+ifdef WAKE_DEV
+	call p_c51_ext_evt
+endif
+	copy regc,pdata
+	rtn blank
+	store 1,mem_ipc_tx_evt
+	branch p_ipc_tx_evt
+ifdef WAKE_DEV
+p_c51_ext_evt:
+	copy regc,pdata
+	beq BT_EVT_ENTER_SNIFF,p_kb_wake_enable
+	beq BT_EVT_BB_DISCONNECTED,p_bk_wake_disable
+	rtn
+p_kb_wake_enable:
+	jam 40,mem_kb_wake_timer
+	setarg 0x0a
+	store 2,mem_kb_last_data
+	fetch 2,mem_hid_int_remote_cid
+	istore 2,contw
+	setarg 0x01a1
+	istore 2,contw
+	rtn
+p_bk_wake_disable:
+	jam 0,mem_kb_wake_timer
+	arg 20,loopcnt
+	arg mem_kb_last_data,contw
+	branch clear_mem
+endif	
+	
+
+/*
+****************************************************************************************************
+* All Timer End
+****************************************************************************************************
+*/
+
+p_lpm_recover_clk:
+	jam 0x7f,mem_seqi
+	call lpm_recover_clk+2
+	fetch 1,mem_hibernate_flag
+	rtn blank
+	jam 0,mem_hibernate_flag
+	copy clkn_bt,pdata
+	store 4,mem_ipc_last_check_timer
+	rtn
+
+
+
+p_lpm_cal_xtal_startup:
+	fetch 1,mem_lpm_xtalcnt
+	nrtn blank
+	hjam clksel_rc,core_clksel
+	setarg 0xf0c
+	call lpm_write_config
+	setarg 200000
+	call sleep
+	until null,lpo_edge
+	copy lpo_time,alarm
+	call xtal_fast_wake
+	nop 5000
+	branch lpm_cal_xtal_startup+12
+
+
+p_lpm_dispatch:
+	rtnmark1 mark_24g
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BLE_CONNECTED,lpm_dispatch+2
+	call lpo_calibration
+	fetch 3,mem_clks_per_lpo
+	rtn blank
+	//fetch 2,mem_context + coffset_tsniff
+	//rtn blank										/* role switch */
+	fetch 1,mem_lpm_mode
+	rtn blank
+
+	call l2cap_malloc_is_fifo_empty
+	nrtn blank
+	call lpm_check_wake_lock
+	nrtn blank
+	call xtal_fast_wake
+	fetch 1,mem_ssp_enable
+	branch lpm_dispatch0,blank
+	fetch 1,mem_sp_local_key_invalid	// simple pairing is not ready
+	rtn blank
+	branch lpm_dispatch0
+
+p_check_IPC_for_LPM:
+	call p_check_ipc_2bt
+	nrtn user
+	call p_check_ipc_2c51
+	nrtn user
+	jam 1,mem_c51_lpm_lock
+	jam SYC_TASK_LPM,mem_c51_flag
+	call p_c51_wait
+	branch p_check_ipc_2bt
+	
+p_lpm_dispatch_next:
+	call p_check_IPC_for_LPM
+	nrtn user
+	fetch 1,mem_c51_lpm_lock
+	nrtn blank
+	branch lpm_dispatch1
+
+p_c51_wait:
+	fetch 1,mem_c51_flag
+	nop 10
+	bne 0,p_c51_wait
+	rtn
+
+
+p_lpm_dispatch_unconn:
+	call p_check_IPC_for_LPM
+	nrtn user
+	fetch 1,mem_c51_lpm_lock
+	nrtn blank
+	branch lpm_dispatch_unconn + 2
+
+
+
+p_initialize_radio_cont:
+	call p_switchto_dpllclk
+	branch initialize_radio_cont + 4	
+p_switchto_dpllclk:
+	fetch 1,mem_lpm_xtalcnt
+	nbranch p_switchdpll_nocal,blank
+	call lpm_cal_xtal_startup
+	nop 30000
+	nop 30000
+	nop 30000
+p_switchdpll_nocal:
+	call switchto_dpllclk
+	hjam clksel_xtal,core_clksel
+	hfetch 1,rf_clkpll_frac+2
+	and_into 0xcf,pdata
+	hstore 1,rf_clkpll_frac+2
+	or_into 0x30,pdata
+	hstore 1,rf_clkpll_frac+2
+	rtn
+
+
+
+p_set_freq_rx:
+	storet 1,mem_last_freq
+	add temp,rx_freq_offset,rega			/* index to frequency */
+	branch set_freq_rx + 4	
+
+p_set_freq_tx_common:
+	storet 1,mem_last_freq
+	add temp,0,rega			// 0--2M 1--1M 2--M  index to frequency 
+	branch rf_write_freq
+	
+p_set_freq_tx:
+	call p_set_freq_tx_common
+	setarg param_pll_setup
+	call sleep
+p_txon:
+	hjam 0x1,rfen_adc
+	hjam 0x3c,rfen_rx
+	hjam 0xe0,rfen_tx
+	hjam 0x12,0x96d   /*Max added, for best Pout*/
+	nop 10 /* wait LDOs to turn ON*/
+	hjam 0x01, rfen_mdm
+	hjam 0x3d, rfen_mdm
+	nop 10 /* wait tx blocks to turn ON*/
+	hjam 0xb7,rfen_sn
+	nop 10 /* wait tx lo buffer to turn ON*/
+	hjam 0x7d, rfen_mdm
+	fetch 1,mem_24g_pairing_sm
+	bne STATE_24G_PAIRING_SUCCESS,p_txpower_0dbm
+	fetch 5,mem_5db_tx_power_param
+	istore 5,contw
+	ifetch 5,contr
+	istore 5,contw
+	hjam 0xdf, 0x956
+	call p_set_tx_step_power
+	hjam 0xdf, 0x955
+	rtn
+
+p_txpower_0dbm:
+	fetch 5,mem_24g_paring_tx_power_param
+	istore 5,contw
+	ifetch 5,contr
+	istore 5,contw
+ 	hjam 0xc2, 0x956
+ 	hjam 0xd0, 0x955
+	rtn
+
+	
+	//pout ramp up
+	//c0 ~df	
+p_set_tx_step_power:
+	//hjam 0xff, 0x956   //hjam 0xce, 0x956 only for yc1021C1_#7, BQB, -2.9dBm. changed for ramp_up/down
+	nop 4
+	hjam 0xd1, 0x955
+	nop 4
+	hjam 0xd2, 0x955
+	nop 4
+	hjam 0xd4, 0x955
+	nop 4
+	//d0~df
+	//hjam 0xdf, 0x955  //hjam 0xd7, 0x955 only for yc1021C1_#7, BQB, -2.9dBm. changed for ramp_up/down
+ 	rtn
+
+p_tx_ramp_down_common:
+	hjam 0xd4, 0x955
+	nop 4
+	hjam 0xd2, 0x955
+	nop 4
+	hjam 0xd1, 0x955
+	nop 4 
+	hjam 0xd0, 0x955  //hjam 0xd8, 0x955 only for yc1021C1_#7, BQB, -2.9dBm. changed for ramp_up/down
+	hjam 0xc0, 0x956
+	rtn
+
+p_shutdown_radio:
+	branch shutdown_radio+2,is_rx
+	call p_tx_ramp_down_common
+	branch shutdown_radio+2
+
+p_kb_send_process:	
+	call l2cap_malloc_is_fifo_nearly_full
+	nrtn blank
+	branch p_ipc_rx
+
+p_kb_before_hibernate: 
+	enable user
+	hfetch 4,0x8138
+	setflag user,26,pdata
+	hstore 4,core_lpm_reg
+	call  lpm_write_ctrl
+	jam 1,mem_lpm_current_mult
+p_kb_bt_lpm_before:
+	rtn
+
+p_kb_init:
+	fetch 1,mem_le_name_len
+	increase 2,pdata
+	store 1,mem_le_scan_data_len	//update scan_rsp len
+	jam 0,mem_c51_flag
+	jam 6,mem_connection_options
+	call app_lpm_mult_enable
+	setarg p_kb_send_process
+	store 2,mem_cb_bt_process
+	setarg p_kb_bt_lpm_before
+	store 2,mem_cb_before_lpm
+	setarg p_c51_user_event
+	store 2,mem_cb_bb_event_process
+	setarg p_mouse_idle
+	store 2,mem_cb_idle_process
+	setarg p_ipc_rx
+	store 2,mem_cb_le_process
+	setarg p_kb_before_hibernate
+	store 2,mem_cb_before_hibernate
+	setarg mem_ipc_2bt_fifo_head
+	byteswap pdata,pdata
+	store 2,mem_ipc_2bt_read_index
+	store 2,mem_ipc_2bt_write_index
+	call lpm_disable_exen_output
+	setarg mem_ipc_2C51_fifo_head
+	byteswap pdata,pdata
+	store 2,mem_ipc_2C51_read_index
+	store 2,mem_ipc_2C51_write_index
+	fetch 1,mem_hibernate_flag
+	beq 0x5a,p_device_init_init_hibwake
+	branch p_deveice_init_wake,wake
+	fetch 2,mem_adc_0v
+	byteswap pdata,pdata
+	store 2,mem_adc_0v
+	fetch 2,mem_adc_3v
+	byteswap pdata,pdata
+	store 2,mem_adc_3v
+	call p_init_adc_from_otp
+	fetch 8,mem_temp
+	nbranch p_deveice_init_reset,blank
+	fetch 2,0x4ad4
+	byteswap pdata,pdata
+	branch p_deveice_init_reset,blank
+	store 2,mem_adc_3v
+p_deveice_init_reset:
+	call p_le_queue_init
+	jam BT_EVT_RESET,mem_ipc_tx_evt
+p_device_init_common:
+	call p_ipc_tx_evt
+	jam 0,mem_hibernate_flag
+	hjam START_C51_CORE,core_docd_ctrl
+	rtn
+p_deveice_init_wake:
+	jam BT_EVT_WAKEUP,mem_ipc_tx_evt
+	branch p_device_init_common
+p_device_init_init_hibwake:
+	copy auxcnt,pdata
+	branch p_enter_hibernate_continue,blank
+	call init_lmp_work
+	call l2cap_init_work
+	setarg 0
+	store 8,mem_context
+	store 2,mem_ui_state_map
+	copy clkn_bt,pdata
+	store 4,mem_ipc_last_check_timer
+	jam BT_EVT_HIBERNATE_WAKE,mem_ipc_tx_evt
+	branch p_device_init_common
+
+p_init_adc_from_otp:
+	call otp_enable_chgpump
+	setarg 0x7e0
+	arg mem_temp,rega
+	arg 14,temp
+	call otpd_read_data
+	call otp_disable_chgpump
+	fetch 1,mem_temp
+	bbit1 0,assert		// limit 1086 1085
+	fetch 8,mem_temp+2
+	rtn blank
+p_calc_adc_base_hvin:
+	fetcht 2,mem_temp + 4
+	fetch 2,mem_temp + 10
+	copy temp,regb
+	copy pdata,rega
+	isub temp,regc
+	rshift2 regc,regc
+	copy regb,pdata
+	isub regc,pdata
+	byteswap pdata,pdata
+	store 2,mem_adc_0v
+	lshift regc,regc
+	copy rega,pdata
+	isub regc,pdata
+	byteswap pdata,pdata
+	store 2,mem_adc_3v
+	rtn
+
+
+p_le_enable:
+	jam 39,mem_le_ch_mapped
+	hjam 0x36,0x90f        /*For BLE, tune AGC_gain_offset, Max added*/
+	hjam 0x5f,0x90b        //for BLE
+	branch le_enable+2
+p_le_disable:
+	hjam 0x2e,0x90f        /*For BR/EDR, tune AGC_gain_offset, Max added*/
+	hjam 0xff,0x90b         //for EDR&BR
+	branch le_disable+2
+
+
+p_mouse_idle:
+	rtn
+p_check_enter_hibernate:
+	fetch 2,mem_ipc_2C51_write_index
+	store 2,mem_ipc_2C51_read_index
+	fetch 2,mem_ipc_2bt_write_index
+	store 2,mem_ipc_2bt_read_index
+	jam SYC_TASK_HIBERNATE,mem_c51_flag
+	call p_c51_wait
+p_enter_hibernate_continue:
+//	branch lpm_hibernate
+	
+	jam 0x5a,mem_hibernate_flag
+	call lpm_write_gpio_wakeup
+	hfetch 4,core_lpm_ctrl
+	set0 15,pdata					
+	hstore 4,core_lpm_reg
+	call lpm_write_ctrl
+	arg param_hibernate_clks,temp
+	branch lpm_sleep
+
+p_fifo_in:
+	ifetcht UTIL_FIFO_LEN,rega
+	and temp,0xff,pdata
+	nbranch p_fifo_in_push,blank
+	rshift8 temp,pdata
+	istore UTIL_FIFO_LEN,rega
+p_fifo_in_push:
+	increase UTIL_FIFO_LEN+UTIL_FIFO_OFFSET,rega
+	ifetch 1,rega
+	nrtn,blank //fifo full
+	branch fifo_in_push+3
+
+
+	
+ 
+p_check_51cmd_once:
+	call ui_ipc_get_lock
+	arg mem_ipc_fifo_c512bt,rega
+	call fifo_out
+	copy pdata,temp
+	call ui_ipc_put_lock
+	copy temp,pdata
+	rtn blank 
+ifdef P24G
+	beq BT_CMD_START_24G,p_check_51cmd_start24g
+	beq BT_CMD_STOP_24G,p_check_51cmd_stop24g
+	beq BT_CMD_PAIR_24G,p_g24_start_pairing_sm1
+
+endif	
+ifdef BLE_PINCODE
+	beq BT_CMD_LE_SET_PINCODE,p_check51_cmd_le_set_pincode
+endif	
+	beq BT_CMD_START_DISCOVERY,p_check_51cmd_start_discovery
+	beq BT_CMD_START_ADV,p_check_51cmd_start_adv
+	beq BT_CMD_START_ADV_DISCOVERY,p_check_51cmd_start_adv_discovery
+	beq BT_CMD_START_ADV_REC,p_handle_adv_1
+	beq BT_CMD_RECONNECT,p_check_51cmd_reconnect
+	beq BT_CMD_SET_RECONNECT_INIT,p_disconnect_connected_device
+	beq BT_CMD_LE_UPDATE_CONN,BT_CMD_LE_UPDATE_CONN_1
+	branch check_51cmd_once+9
+ifdef P24G
+p_check_51cmd_start24g:
+	jam STATE_24G_PAIRING_SUCCESS,mem_24g_pairing_sm
+	branch p_g24_start_24g_mode
+p_check_51cmd_stop24g:
+	set0 mark_24g,mark
+	jam STATE_24G_PAIRING_SUCCESS,mem_24g_pairing_sm
+	branch p_g24_stop_g24_mode
+
+endif
+
+p_slave_ble_disconnect:
+	jam XT_LL_TERMINATE_IND,mem_fifo_temp
+	branch le_xtype_fifo_in
+
+p_check_51cmd_once_continue:
+	fetch 1,mem_lmo_opcode2
+	branch p_check_51cmd_once_continue0,blank
+	call lmo_fifo_process
+	fetch 1,mem_lmo_opcode2
+	nbranch check_51cmd_restore,blank  //process this cmd next time while lmo fifo is full
+p_check_51cmd_once_continue0:
+	fetch 1,mem_fifo_temp
+	bmark0 mark_context,check_51cmd_check_idle
+	beq BT_CMD_DISCONNECT,p_check_51cmd_disconnect
+	beq BT_CMD_LE_DISCONNECT,p_slave_ble_disconnect
+	beq BT_CMD_UPDATE_SUPERVISION_TO,p_check_51cmd_update_supervision_to
+	branch check_51cmd_once_continue0
+p_check_51cmd_disconnect:
+	fetch 2,mem_ui_state_map
+	bbit0 UI_STATE_BT_HID_HANDSHAKE,p_check_51cmd_quick_disconnect
+	branch check_51cmd_disconnect
+p_check_51cmd_quick_disconnect:
+	setarg 10
+	store 4,mem_supervision_to
+	branch check_51cmd_disconnect
+
+p_check_51cmd_update_supervision_to:
+	jam LMP_SUPERVISION_TIMEOUT,mem_lmo_opcode2
+	fetch 2,mem_new_supervision_to
+	store 2,mem_supervision_to
+	rtn
+
+p_check_51cmd_start_adv_discovery:
+	call p_check_51cmd_start_discovery
+p_check_51cmd_start_adv:	
+	call app_clear_reconnect_flag
+	call check_51cmd_bb_reconn_cancel
+	jam 0,mem_lpm_mode
+	random pdata					//random ble addr
+	store 1,mem_le_lap
+p_handle_adv_0:
+	jam 5,mem_le_adv_data+2
+	setarg 0x181203		
+	store 3,mem_le_adv_data+8
+	
+	arg 7,temp				// mem_le_adv_swift_pair
+	call p_le_adv_data_update
+	branch check_51cmd_adv
+
+p_handle_adv_1:
+	jam 4,mem_le_adv_data+2
+	setarg 0x0000ff		//  ios bluetooth list will display device name when reconnect 
+	store 3,mem_le_adv_data+8
+
+	arg 0,temp
+	call p_le_adv_data_update
+	branch check_51cmd_adv
+	
+p_le_adv_data_update:
+	fetch 1,mem_le_scan_data_len  //  mem_le_name_len + 2 
+	iadd temp,pdata
+	add pdata,11,pdata
+	sub pdata,0x1f,null
+	nbranch p_le_adv_data_overflow,positive
+	store 1,mem_le_adv_data_len
+
+	arg mem_le_adv_data+11,contw
+	copy temp,pdata
+	ncall p_handle_adv_swift_pair,blank
+	
+	fetch 1,mem_le_scan_data_len
+	copy pdata,loopcnt
+	arg mem_le_scan_data,contr
+	branch memcpy
+	
+
+p_handle_adv_swift_pair:
+	copy pdata,loopcnt
+	arg mem_le_adv_swift_pair,contr
+	branch memcpy
+	
+p_le_adv_data_overflow:
+	fetch 1,mem_le_scan_data_len
+	add pdata,11,pdata
+	store 1,mem_le_adv_data_len
+	rtn
+	
+p_check_51cmd_start_discovery:
+	call app_clear_reconnect_flag
+	jam 6,mem_connection_options
+	branch check_51cmd_start_discovery
+p_check_51cmd_reconnect:
+	call init_param
+	call l2cap_init
+	call init_lmp
+	jam 6,mem_connection_options
+	fetch 1,mem_ssp_enable
+	beq 0,p_check_51cmd_reconnect_common
+	jam 0x17,mem_connection_options
+p_check_51cmd_reconnect_common:
+	jam 1,mem_link_key_exists
+	branch check_51cmd_reconnect
+
+p_disconnect_connected_device:
+	//jam 10,mem_recon_count
+	fetch 2,mem_ui_state_map
+	bbit1 UI_STATE_BLE_CONNECTED,app_ble_disconnect
+	bbit1 UI_STATE_BT_CONNECTED,p_disconnect_bt
+	bbit1 UI_STATE_BT_RECONNECT,check_51cmd_bb_reconn_cancel
+ifdef P24G	
+	bmark1 mark_24g,p_g24_stop_g24_mode
+endif	
+	jam OFF,mem_le_adv_enable
+	call app_bt_stop_discovery
+	//call mouse3_0_bb_event_discovery_btn
+	jam BT_EVT_RECONNECT_STANDY,mem_fifo_temp
+	branch ui_ipc_send_event
+
+	
+p_disconnect_bt:
+	call app_clear_reconnect_flag
+	call check_51cmd_bb_reconn_cancel
+	//jam 1,mem_gpio_reconnect_flag
+	branch app_bt_disconnect
+	
+
+
+p_lpm_sleep:
+	call xtal_fast_wake
+	branch lpm_sleep+2
+
+
+p_connection_incontext:
+	call p_context_search_insniff
+	branch connection_incontext+3
+p_context_search_insniff:
+	arg p_context_search_sniff,regc
+	branch context_search
+	
+p_context_search_sniff:
+	bbit0 state_insniff,context_search_next
+p_context_search_sniff_loop:
+	call context_get_anchor
+	call sign_pdata_temp
+	isub temp,pdata
+	increase 1,pdata
+	branch p_context_search_sniff_miss,positive
+	branch context_search_sniff_cont+3
+p_context_search_sniff_miss:
+	iforce regb
+	add rega,coffset_tsniff,contr
+	ifetch 2,contr
+	branch context_search_meet,blank
+	call context_next_anchor
+	branch p_context_search_sniff_loop
+
+    // process 0-fffffff or fffffff-0
+sign_pdata_temp:
+	rshift16 pdata,timeup
+	rshift8 timeup,timeup
+	branch sign_pdata_temp_p0,zero
+	compare 0xf,timeup,0xf
+	nrtn true
+	rshift16 temp,timeup
+	rshift8 timeup,timeup
+	nrtn zero
+	set1 28,temp
+	rtn
+sign_pdata_temp_p0:
+	rshift16 temp,timeup
+	rshift8 timeup,timeup
+	compare 0xf,timeup,0xf
+	nrtn true
+	set1 28,pdata
+	rtn
+
+
+p_idle_page_mode_r0:
+	storet 8,mem_temp
+	call timer_check
+	fetcht 8,mem_temp
+	branch idle_page_mode_r0+13
+
+	
+ifdef BT_30
+p_role_switch_check:
+	disable user
+	fetch 2,mem_tsniff
+	arg 0xffff,temp
+	isub temp,null
+	nrtn zero
+	fetch 4,mem_sniff_anchor
+	branch p_role_switch_clkn,clknt
+	isub clke_bt,pdata
+	branch p_role_switch_clke
+
+p_role_switch_clkn:
+	isub clkn_bt,pdata
+p_role_switch_clke:
+	sub pdata,4,null
+	nrtn positive
+	force 0,pdata
+	store 2,mem_tsniff
+	branch enable_user
+	
+
+p_parse_lmp_accepted_switch:
+	jam BT_EVT_SWITCH_ACCEPT,mem_fifo_temp
+	call ui_ipc_send_event
+	branch p_role_switch_prepare0
+//branch role_switch_prepare0
+p_role_switch_prepare0_0:
+//	set0 mark_ext_patch,mark
+//	bpatch patch05_0,mem_patch05
+	storet 4,mem_sniff_anchor
+p_role_switch_prepare0:
+	jam SWITCH_FLAG_ACCEPT,mem_switch_flag
+	setarg 0xffff
+	store 2,mem_tsniff
+	jam 1,mem_sniff_attempt
+	rtn
+
+p_roles_replyto_fhs:
+	call rf_setup_time_slave_slot
+	call p_master_send_packet
+	branch roles_replyto_fhs + 4
+
+p_master_send_packet:
+	add clkn_bt,1,bt_clk          /* master start to use native clock */
+	call fetch_self_bt_adr
+	force 0x03,freq_mode          /* we are in connection!! */
+	call tx_radio_freq
+	call start_transmitter	/* get ready for that id packet */
+	call start_tx_native
+	call send_access_word
+	branch end_of_packet
+
+
+	
+p_slave_loop:
+	call check_bt_disabled
+	call scheduler_process
+	call slave_conn_recv_packet	/* go listen for a packet */
+	branch slave_loop+6
+
+	
+p_slave_notmatch:
+	call lpm_set_mult
+	call supervision_update
+	branch slave_disconnect,positive
+	call check_disconnect_timeout
+	nbranch slave_disconnect,user
+	call check_attempt
+	nbranch p_slave_loop + 1,blank
+	rtn
+
+
+p_prepare_tx_not_sco:
+	call context_check_all_wack			 //abandon mark_retransmit, use context_check_all_wack instead.
+	nbranch prepare_tx_no_retransmit,zero
+	fetch 1,mem_arq
+	bbit0 wack,prepare_tx_pollnull
+	fetch 1,mem_last_type
+	beq type_lmp,prepare_tx_retransmit+7
+	fetch 2,mem_last_txlen
+	sub pdata,20,null
+	nbranch prepare_tx_retransmit+7,positive 
+	store 2,mem_tx_len
+	fetch 1,mem_last_txlch
+	store 1,mem_tx_lch
+	setarg mem_last_txdata
+	store 2,mem_txptr
+	branch prepare_tx_retransmit+7	
+
+
+p_tx_l2cap_type:
+	fetch 2,mem_tx_len
+	store 2,mem_last_txlen
+	sub pdata,20,null
+	nbranch tx_l2cap_type + 2,positive 
+	iforce loopcnt
+	fetch 1,mem_tx_lch
+	store 1,mem_last_txlch
+	fetch 2,mem_txptr
+	iforce contr
+	arg mem_last_txdata,contw
+	call memcpy
+	branch tx_l2cap_type + 2
+
+
+p_l2cap_rx_multiplexing:
+	fetch 2, mem_l2cap_rx_pkt_length
+	branch l2cap_rx_reset_state,blank
+	fetch 1,mem_l2cap_rx_cid
+	beq L2CAP_signal_channel,p_l2cap_call_proc_signal
+	branch l2cap_rx_multiplexing0
+p_l2cap_call_proc_signal:
+	call l2cap_malloc_is_fifo_full
+	nrtn blank
+	branch l2cap_call_proc_signal0
+
+
+p_l2cap_process_one_signal:
+	ifetch 1,contr
+	beq signal_info_req,p_l2cap_proc_signal_info_req
+	branch l2cap_process_one_signal+3
+p_l2cap_proc_signal_info_req:
+	ifetch 1,contr //IDs
+	copy pdata,queue
+	ifetch 2,contr //length
+	copy pdata,rega
+	copy regc,pdata
+	isub rega,regc
+	setarg signal_info_rsp
+	istore 1,contw
+	copy queue,pdata
+	istore 1, contw
+	ifetch 2,contr 
+p_l2cap_proc_signal_info_req_reply:
+	beq L2CAP_SIG_EXT_FEATRUE,p_l2cap_proc_signal_info_req_ext
+	beq L2CAP_SIG_FIX_FEATRUE,p_l2cap_proc_signal_info_req_fix
+	branch assert
+p_l2cap_proc_signal_info_req_ext:
+	setarg 0x020008
+	istore 6, contw
+	setarg 0x0200
+	istore 4, contw
+	force 12,pdata
+	iadd regb,regb
+	branch l2cap_process_one_signal_rtn
+p_l2cap_proc_signal_info_req_fix:
+	setarg 0x3000c
+	istore 6, contw
+	setarg 0x0006
+	istore 8, contw
+	force 16,pdata
+	iadd regb,regb
+	branch l2cap_process_one_signal_rtn
+
+	
+p_ml2cap_call_proc_signal:
+	call l2cap_malloc_signal_channel
+	force 0,regb
+	call l2cap_get_signal_tx_payload
+	copy pdata,contw
+	fetch 2,mem_l2cap_rx_pkt_length
+	copy pdata,regc
+	fetch 2,mem_l2cap_payload_ptr
+	iforce contr
+	call p_ml2cap_proc_one_comm
+	branch ml2cap_proc_one_comm_loop+1
+p_ml2cap_proc_one_comm:
+	ifetch 1,contr
+	beq signal_info_req,p_ml2cap_proc_signal_info_req
+	branch ml2cap_proc_one_comm+1
+p_ml2cap_proc_signal_info_req:
+	ifetch 1,contr //IDs
+	copy pdata,queue
+	ifetch 2,contr //length
+	copy pdata,rega
+	ifetch 2,contr
+	store 2,mem_temp
+	copy regc,pdata
+	isub rega,regc 
+	call l2cap_get_signal_tx_payload
+	setarg signal_info_rsp
+	istore 1,contw
+	copy queue,pdata
+	istore 1,contw 
+	fetch 2,mem_temp
+	branch p_l2cap_proc_signal_info_req_reply
+	
+
+p_l2cap_malloc:
+	arg 0,regb
+	call l2cap_malloc_is_fifo_full
+	nrtn blank//assert when fifo full
+	branch l2cap_malloc+5
+
+p_hid_rx_process:
+	fetch 2,mem_l2cap_payload_ptr
+	copy pdata,contr
+	ifetch 1,contr
+	and pdata,0x0f,temp
+	rshift4 pdata,pdata //hidtype
+//	beq hid_type_set_idle,hid_rx_process_handshake
+//	beq hid_type_set_protocol,hid_rx_process_handshake
+	beq hid_type_data,p_hid_rx_process_data
+	beq HID_TYPE_SET_REPORT,p_hid_rx_process_set_report
+	//beq HID_TYPE_CONTROL,hid_rx_process_hid_control
+	beq HID_TYPE_CONTROL,p_hid_rx_process_hid_control
+	beq HID_TYPE_GET_REPORT,hid_rx_process_handshake
+	branch hid_rx_process+7
+
+
+p_hid_rx_process_hid_control:
+	copy temp,pdata
+	beq HID_CONTROL_P_VIRTUALCABLEUNPLUG,hid_rx_process_virtual_cable_unplug
+	jam 1,mem_suspend_flag
+	beq HID_CONTROL_P_SUSPEND,hid_rx_process_handshake
+	jam 0,mem_suspend_flag
+	beq HID_CONTROL_P_EXITSUSPEND,hid_rx_process_handshake
+	rtn
+
+
+p_hid_rx_process_set_report:
+	call p_hid_rx_process_data
+	branch hid_rx_process_set_report
+p_hid_rx_process_data:
+	ifetch 1,contr	
+	beq HID_REPORT_ID_KB,p_hid_rx_process_data_hid_kb	
+	rtn
+
+p_scheduler_process_sdp_succ:
+	call l2cap_malloc_is_fifo_full
+	nrtn blank
+	//for conn to MTK 
+	call p_l2cap_call_proc_sigal_pending
+	branch scheduler_process1
+
+p_l2cap_call_proc_sigal_pending:
+	fetch 1,mem_device_option
+	rtneq dvc_op_hci
+	fetch 1,mem_l2cap_pending_item
+	rtn blank
+	copy pdata,rega
+	jam 0,mem_l2cap_pending_item
+	copy rega,pdata
+	beq L2CAP_SDP_channel,l2cap_sdp_conn_succ
+	rtn
+
+	
+p_parse_lmp:
+	fetch 1,mem_lmi_opcode2
+	beq LMP_ACCEPTED,p_parse_lmp_accepted
+	beq LMP_DETACH,p_parse_lmp_detach
+//	beq LMP_ENCRYPTION_KEY_SIZE_REQ,p_parse_lmp_crypt_key 
+	branch parse_lmp+26
+p_parse_lmp_accepted:
+	fetch 1,mem_rxbuf+1
+	store 1,mem_lmi_accepted_opcode
+	beq LMP_SWITCH_REQ,p_parse_lmp_accepted_switch
+	beq LMP_HOST_CONNECTION_REQ,p_parse_lmp_accepted_hostconn//ok
+	branch parse_lmp_accepted + 2	
+p_parse_lmp_accepted_hostconn:
+	//fetch 1,mem_state
+	//rtnbit0 state_init_seq
+	fetch 1,mem_lmp_conn_state
+	set1 RECEIVED_CONN_REQ,pdata
+	store 1,mem_lmp_conn_state
+	jam BT_EVT_BB_CONNECTED,mem_fifo_temp
+	call ui_ipc_send_event
+	branch parse_lmp_accepted_hostconn_ctn
+
+
+p_parse_lmp_detach:
+	fetch 1,mem_rxbuf + 1
+	store 1,mem_disconn_reason_send
+	branch parse_lmp_detach
+
+/*
+p_parse_lmp_crypt_key:
+	fetcht 1,mem_rxbuf+1
+	sub temp,6,null
+	branch p_reject_lmp_packet_pdu_not_allowed,positive
+	storet 1,mem_key_size
+	branch accept_lmp_msg
+ 
+p_reject_lmp_packet_pdu_not_allowed:
+	jam PDU_NOT_ALLOWED,mem_lmo_reason2
+	branch reject_lmp_packet
+*/
+
+
+p_send_lmp:
+	disable user
+	call lmo_fifo_process
+	fetch 1,mem_lmp_to_send
+	rtn blank
+	bbit1 7,send_lmp_escape
+	beq LMP_NAME_RES,p_send_lmp_name_res
+	beq LMP_DETACH,p_send_lmp_detach
+	branch send_lmp+7
+p_send_lmp_name_res:
+	force 17,pdata
+	call msg_send_lmp
+	fetch 1,mem_lmi_opcode /* loading name offset */
+	copy pdata,temp
+	beq 0x00,p_send_lmp_name_res_offset_ok
+	beq 0x0e,p_send_lmp_name_res_offset_ok
+	beq 0x1c,p_send_lmp_name_res_offset_ok
+	rtn
+p_send_lmp_name_res_offset_ok:
+	istore 1,contw /* writing name offset */
+	fetch 1,mem_local_name_length
+	istore 1,contw /* writing name length */
+	setarg 14
+	branch send_lmp_name_res_offset_ok+3
+
+p_send_lmp_detach:
+	call send_lmp_detach
+	jam 100,mem_conn_timer		// ios power fast off on acl error 
+	rtn
+	
+
+p_process_conn_sm:
+	fetch 1,mem_lmo_opcode2
+	branch p_process_conn_sm_continue,blank
+	call lmo_fifo_process
+	fetch 1,mem_lmo_opcode2
+	nrtn blank
+p_process_conn_sm_continue:
+	fetch 1,mem_conn_sm
+	rtn blank
+	beq CONN_SM_AUTH_PAIR, p_host_create_conn_auth_pair
+	beq CONN_SM_WAIT_SWITCH_AFTER_HOST_CONNECTION, p_host_creat_conn_wait_switch
+	branch process_conn_sm_continue + 2
+
+p_host_creat_conn_wait_switch:
+	fetch 1,mem_switch_flag
+	rtneq SWITCH_FLAG_INIT
+	beq SWITCH_FLAG_ACCEPT,p_host_create_conn_switch_accept
+	arg switch_wait_timer,queue
+	call timer_check
+	nrtn blank
+	jam SWITCH_FLAG_INIT,mem_switch_flag
+	branch host_create_conn_switch
+p_host_create_conn_switch_accept:
+	rtn master
+	branch p_host_create_conn_auth_pair
+
+p_host_create_conn_auth_pair:
+	fetch 1,mem_connection_options
+	bbit1 CONNECTION_SWITCH,host_create_conn_switch
+	bbit1 CONNECTION_AUTH,p_host_create_conn_auth_pair_true
+p_host_create_conn_auth_pair_true:
+	fetch 1,mem_link_key_exists
+	branch host_create_conn_auth_pair_nokey,blank
+	fetch 1,mem_lmp_conn_state
+	rtnbit0 SENT_SETUP_COMPLETE
+	rtnbit0 RECEIVED_SETUP_COMPLETE
+	fetch 4,mem_aurand_send_delay_time
+	arg 800,temp
+	iadd temp,temp
+	copy clkn_bt,pdata
+	isub temp,null
+	nrtn positive
+	branch host_create_conn_auth
+endif
+
+p_hid_rx_process_data_hid_kb:
+	ifetch 1,contr
+	store 1,mem_caps_num_lock
+	rtn	
+
+
+ifdef BLE
+
+ifdef BLE_PINCODE
+p_check51_cmd_le_set_pincode:
+	fetch 1,mem_le_pin_code
+	fetcht 1,mem_le_pin_code+3
+	store 1,mem_le_pin_code+3
+	storet 1,mem_le_pin_code
+	
+	fetch 1,mem_le_pin_code+1
+	fetcht 1,mem_le_pin_code+2
+	store 1,mem_le_pin_code+2
+	storet 1,mem_le_pin_code+1
+
+	jam XT_SMP_PAIRING_CONFIRM,mem_fifo_temp
+	branch le_xtype_fifo_in
+endif
+
+p_le_transmit_receive_sifs:
+	call le_transmit
+	fetcht 1,mem_last_freq
+	call set_freq_rx
+	call rf_rx_enable
+	enable swfine
+	arg 5500,timeup	// about 417us
+	//call ice_break
+	branch le_receive_rxon
+
+p_le_init_conn:
+	jam 0x01,mem_le_txheader
+	jam  0,mem_le_txlen
+	branch le_init_conn+2
+
+p_le_transmit:
+	call le_prep
+	call p_letx_setfreq
+	branch le_transmit+4
+
+p_letx_setfreq:
+	branch p_txon,match
+	call le_setfreq
+	branch set_freq_tx
+
+p_le_send_adv_ind:
+	fetch 1,mem_le_rx_window
+	store 4,mem_le_transmit_window// init first packate rx window
+	fetch 1,mem_le_adv_type
+	beq ADV_DIRECT_IND,p_le_send_adv_direct_ind
+	branch le_send_adv_ind+2
+p_le_send_adv_direct_ind:
+	jam 0,mem_le_adv_type
+	branch le_send_adv_direct_ind
+
+p_le_update_param:
+	fetch 1,mem_le_state
+	rtnbit0 lestate_update_param
+	fetch 2,mem_le_event_count
+	fetcht 2,mem_le_instant
+	isub temp,pdata
+	nrtn positive
+	branch le_update_param+8
+
+
+p_le_prepare_tx: 
+	fetch 1,mem_le_arq  
+	rtnbit1 wak 
+
+	fetch 1,mem_le_rxbuf + 1  
+	branch le_prepare_tx + 4,blank  
+	branch le_send_empty      // send empty data when got non empty packet
+
+
+
+
+
+p_le_prepare_tx_cmd:
+	fetch 1,mem_le_txpayload
+	beq LL_UNKNOWN_RSP,p_le_send_unknown_rsp
+	beq LL_CONNECTION_PARAM_REQ,p_le_send_conn_param_req
+	beq LL_START_ENC_RSP,p_le_send_start_enc_rsp
+//	beq LL_VERSION_IND,p_le_send_version_ind
+	beq LL_TERMINATE_IND,p_le_send_terminate_ind
+	beq LL_PING_RSP,p_le_send_ping_rsp
+	branch le_prepare_tx_cmd+10
+
+p_le_send_ping_rsp:
+	force 1,temp
+	branch le_send_packet
+
+p_le_send_terminate_ind:
+	setarg 10 // 100ms
+	store 2,mem_le_superto
+	branch le_send_terminate_ind
+
+p_le_send_start_enc_rsp:
+	jam BT_CMD_LE_UPDATE_CONN,mem_fifo_temp
+	call  ui_ipc_send_cmd
+	force 1,temp
+	branch le_send_packet,master
+	jam BT_EVT_LE_PROTOCOL_CONNECTED,mem_fifo_temp
+	call ui_ipc_send_event
+	fetch 1,mem_le_pairing_state
+	beq FLAG_LE_PAIRING_AFTER_AUTH,p_le_send_start_enc_rsp0
+	branch p_le_send_start_enc_rsp_end
+p_le_send_start_enc_rsp0:
+	jam XT_SMP_ENCRYPTION_INFORMATION,mem_fifo_temp
+	call le_xtype_fifo_in
+p_le_send_start_enc_rsp_end:
+	force 1,temp
+	branch le_send_packet
+
+/*	
+p_le_send_version_ind:		logitch version ind
+	setarg 0x005907
+	istore 3,contw
+	setarg 0x005a
+	branch le_send_version_ind+3
+*/
+
+p_le_send_unknown_rsp:
+	fetch 1,mem_le_ll_unknown_type
+	istore 1,contw
+	force 2,temp
+	branch le_send_packet
+
+p_le_send_conn_param_req:
+	increase -1,contw
+	fetch 8,mem_le_connection_updata_param
+	istore 8,contw
+	ifetch 8,contr
+	istore 8,contw
+	force 2,type
+	branch le_send_autolen
+
+p_le_prepare_smp:
+	fetch 1,mem_le_l2cap
+	beq SMP_IDENTITY_ADDRESS_INFORMATION,le_send_smp_identity_address_information + 2
+	beq SMP_PAIRING_RESPONSE,p_le_send_smp_pairing_response
+ifdef BLE_PINCODE	
+	beq SMP_PAIRING_CONFIRM,p_le_send_smp_pairing_confirm 
+endif	
+	beq SMP_MASTER_IDENTIFICATION,le_send_smp_master_identification+2
+	branch le_prepare_smp0
+	
+
+
+p_le_send_smp_pairing_response:
+ifdef BLE_PINCODE
+	setarg 0x000202
+else	
+	setarg param_smp_paring_response
+endif	
+	store 3,mem_le_pres
+ifdef BLE_PINCODE
+	setarg 0x05
+else
+	setarg 0x01
+endif	
+	istore 1,contw
+	setarg param_smp_key_dist0
+	istore 3,contw
+	branch le_send_smp_pairing_response + 4
+
+
+ifdef BLE_PINCODE
+p_le_send_smp_pairing_confirm:
+	call p_generate_confirm
+	arg mem_le_l2cap_response,contw
+	call store_aes_result
+	force 21,temp
+	branch le_send_packet
+
+p_generate_confirm:
+	arg mem_le_mrand,rega
+	branch p_generate_mrand,master
+	arg mem_le_srand,rega
+p_generate_mrand:
+	copy rega,contw
+	call generate_random
+	branch p_function_c1
+
+p_function_c1:
+	fetch 6,mem_le_lap
+	fetcht 6,mem_le_plap
+	branch p_function_c1_master,master
+	fetch 6,mem_le_plap
+	fetcht 6,mem_le_lap
+p_function_c1_master:
+	force regidx_xor,regext_index
+	copy temp,regext
+	increase 1,regext_index
+	rshift32 temp,regext
+	lshift16 pdata,pdata
+	ior regext,regext
+	increase 1,regext_index
+	rshift32 pdata,regext
+	increase 1,regext_index
+	force 0,regext					/* p2 = ia || ra */
+	force 0,pdata
+	fetch 1,mem_le_conn_peer_addr_type
+	fetcht 1,mem_le_adv_own_addr_type
+	nbranch p_function_c1_irat,master
+	//conn as master
+	fetch 1,mem_le_conn_own_addr_type
+	fetcht 1,mem_le_conn_peer_addr_type
+p_function_c1_irat:
+	store 1,mem_le_iat
+	storet 1,mem_le_rat
+	force regidx_data,regext_index
+	arg mem_le_iat,regb
+	force 4,loopcnt
+p_function_c1_loop1:
+	ifetch 4,rega		
+	ifetcht 4,regb
+	ixor temp,regext
+	increase 1,regext_index
+	increase 4,rega
+	increase 4,regb
+	loop p_function_c1_loop1		/* p1 ^ r */
+
+	call aes_clear				/* k = 0 */
+
+	increase -4,regext_index
+	fetch 4,mem_le_pin_code
+	copy pdata,regext
+	increase 4,regext_index
+	branch function_c1_loop1 + 8
+endif
+	
+
+
+p_lerx_nopayload:
+	parse 3,0,24	
+	enable swfine
+	arg param_sifs,27
+	rshift32 pdata,pdata
+	rshift16 pdata,pdata
+	istore 3,contw
+	branch end_of_packet,6
+	enable match
+	fetch 1,mem_last_freq
+	add pdata,0,rega
+	branch lerx_nopayload+12
+
+p_le_parse_att:
+	ifetch 3,contr
+	store 3,mem_le_att_opcode
+	//beq ATTOP_WRITE_REQUEST,p_le_parse_att_write_request
+	beq ATTOP_WRITE_COMMAND,p_le_parse_att_write_command
+	//beq ATTOP_PREPARE_WRITE_REQUEST,p_le_parse_att_prepare_write_request
+	//beq ATTOP_EXECUTE_WRITE_REQUEST,p_le_parse_att_execute_write_request
+	beq ATTOP_EXCHANGE_MTU_REQUEST,p_le_parse_att_exchange_mtu_request
+	beq ATTOP_WRITE_REQUEST,p_le_parse_att_write_request
+	branch le_parse_att_p
+
+p_le_parse_att_write_command:
+	jam 1,mem_reconnect_continue
+	fetch 2,mem_le_att_handle
+	beq HANDLE_UUID_CHRCTR_REPORT_ID1_OUTPUT,p_handle_num
+	branch le_parse_att_write_command
+p_handle_num:
+	//fetch 1,mem_le_rxbuf
+	arg mem_le_rxbuf+9,contr 
+	branch p_hid_rx_process_data_hid_kb
+
+p_le_parse_att_write_request:
+	fetch 2,mem_le_att_handle				//MAC  CAPS
+	sub pdata,HANDLE_UUID_CHRCTR_REPORT_ID1_OUTPUT,null
+	call p_handle_num,zero
+	fetch 2,mem_le_att_handle			
+	sub pdata,HANDLE_UUID_END,null
+	call p_set_lpm_mode,zero	
+	fetch 2,mem_le_att_handle
+	fetcht 2,mem_att_report_game
+	increase 1,temp
+	isub temp,null
+	branch p_key_data_send,zero
+	branch le_parse_att_write_request
+p_key_data_send:
+	jam BT_EVT_LE_PROTOCOL_CONNECTED,mem_fifo_temp
+	call ui_ipc_send_event
+	branch le_parse_att_write_request
+
+
+p_set_lpm_mode:
+	jam 1,mem_lpm_mode
+	rtn
+
+
+p_le_parse_att_exchange_mtu_request:
+	jam ATTOP_EXCHANGE_MTU_RESPONSE,mem_fifo_temp
+	branch le_xtype_fifo_in
+
+p_le_prepare_att:
+	fetch 1,mem_le_l2cap
+	beq ATTOP_HANDLE_VALUE_NOTIFICATION,p_le_send_att_handle_value_notification
+	beq ATTOP_HANDLE_VALUE_INDICATION,p_le_send_att_handle_value_indication
+	beq ATTOP_READ_BY_GROUP_TYPE_RESPONSE,p_le_send_att_read_by_group_type_response
+	beq ATTOP_READ_BY_TYPE_RESPONSE,p_le_send_att_read_by_type_response
+	beq ATTOP_FIND_INFORMATION_RESPONSE,p_le_send_att_find_information_response
+	beq ATTOP_FIND_BY_TYPE_VALUE_RESPONSE,p_le_send_att_find_by_type_value_response
+	beq ATTOP_WRITE_RESPONSE,le_send_att_write_response_go
+	beq ATTOP_EXCHANGE_MTU_RESPONSE,p_le_send_att_exchange_mtu_rsp
+	beq ATTOP_READ_RESPONSE, p_le_send_att_read_response
+	beq ATTOP_READ_BLOB_RESPONSE,p_le_send_att_read_blob_response
+	branch le_prepare_att0
+
+p_le_send_att_read_blob_response:
+	fetch 2,mem_le_att_handle
+	beq HANDLE_UUID_CHRCTR_DEVICE_NAME,p_le_send_att_read_blob_response_error
+	branch le_send_att_read_blob_response
+
+p_le_send_att_read_blob_response_error:
+	jam ATT_ERR_INVALID_OFFSET,mem_le_err_code
+	branch le_send_att_error_response
+
+p_le_send_att_exchange_mtu_rsp:
+//	branch p_le_send_att_exchange_mtu_req
+	//branch p_ng_event_remote_mtu_res
+p_le_send_att_exchange_mtu_req:
+	fetch 2,mem_le_local_mtu
+	istore 2,contw
+	branch le_send_autolen
+
+p_le_send_att_read_response:
+	fetch 2,mem_le_att_handle
+	//beq 27,p_le_send_att_read_response_error
+ifndef LE_BATTERY_LEVEL_DISPLAY	
+	beq HANDLE_UUID_BATTERY_LEVEL,le_send_att_error_response_notfound
+endif	
+	beq HANDLE_UUID_CHRCTR_MANUFACTURER_NAME,p_le_send_att_read_response_error
+//	beq HANDLE_UUID_PNP_ID,p_le_send_att_read_response_error
+	branch le_send_att_read_response
+
+p_le_send_att_read_response_error:
+	fetch 1,mem_le_pairing_state
+	bne FLAG_LE_PAIRING_NULL,le_send_att_read_response
+	fetch 1,mem_ltk_states
+	beq LTK_NOT_LOST,le_send_att_read_response	
+	//fetch 1,mem_ltk_exists
+	//nbranch le_send_att_read_response,blank
+	copy contw,temp
+	jam FLAG_LE_PAIRING_START,mem_le_pairing_state	
+	copy temp,contw
+	jam ATT_ERR_INSUFFICIENT_AUTHENTICATION,mem_le_err_code
+	branch le_send_att_error_response
+
+p_le_send_att_find_by_type_value_response:
+	call le_start_end_handle_check_1
+	rtn user
+	fetcht 2,mem_le_search_att_type
+	setarg UUID_SERVICE_HIDS
+	isub temp,null
+	branch p_le_send_att_find_value_by_type_hid,zero
+	setarg UUID_SERVICE_BATTERY
+	isub temp,null
+	branch p_le_send_att_find_value_by_type_battery,zero	
+	setarg UUID_SERVICE_DEVICE_INFO
+	isub temp,null
+	branch p_le_send_att_find_value_by_type_device_info,zero
+	setarg UUID_SERVICE_GENERIC_ATT
+	isub temp,null
+	branch p_le_send_att_find_value_by_type_gatt,zero
+	branch le_send_att_find_by_type_value_response+2
+
+p_le_send_find_value_by_type:
+	fetch 1,mem_shutter_find_type_value_flag
+	arg 0,temp
+	qset1 temp
+	iand temp,pdata
+	bne 0,le_send_att_error_response_notfound
+	fetch 1,mem_shutter_find_type_value_flag
+	qset1 pdata
+	store 1,mem_shutter_find_type_value_flag
+	branch p_le_send_att_find_value_by_type_command
+
+p_le_send_att_find_value_by_type_hid:
+	arg LE_FIND_TYPE_VALUE_HID_BIT,queue
+	branch p_le_send_find_value_by_type
+
+p_le_send_att_find_value_by_type_battery:
+	arg LE_FIND_TYPE_VALUE_BATTERY_BIT,queue
+	branch p_le_send_find_value_by_type
+
+p_le_send_att_find_value_by_type_gatt:
+	arg LE_FIND_TYPE_VALUE_GATT_BIT,queue
+	branch p_le_send_find_value_by_type
+p_le_send_att_find_value_by_type_device_info:
+	arg LE_FIND_TYPE_VALUE_DEVICE_INFO_BIT,queue
+	branch p_le_send_find_value_by_type
+p_le_send_att_find_value_by_type_command:
+	fetch 2,mem_le_search_att_type
+	copy pdata,rega
+	fetcht 2,mem_le_uuid
+	copy temp,regb
+	call p_find_type_value_start_handle
+	branch p_le_save_find_value_handle,zero
+	branch le_send_att_error_response_notfound	
+
+p_find_type_value_start_handle:
+	arg mem_le_att_list,contr
+p_find_type_value_start_handle_loop:
+	ifetch 2,contr
+	rtn blank
+	ifetch 3,contr
+	ifetch 2,contr			// length
+	isub rega,null
+	rtn zero
+	increase -3,contr
+	ifetch 1,contr
+	iadd contr,contr
+	branch p_find_type_value_start_handle_loop
+
+p_le_save_find_value_handle:
+	increase -7,contr
+	ifetch 2,contr
+	store 2,mem_le_find_type_value_start_handle
+	call p_find_type_value_end_handle
+	branch le_send_att_error_response_notfound,blank
+	increase -4,contr
+	ifetch 2,contr
+	increase -1,pdata
+	store 2,mem_le_find_type_value_end_handle
+	jam ATTOP_FIND_BY_TYPE_VALUE_RESPONSE,mem_le_l2cap
+	fetch 4,mem_le_find_type_value_start_handle
+	store 4,mem_le_l2cap_response
+	//fetch 2,mem_le_find_type_value_end_handle
+	//istore 2,contw
+	force 9,temp
+	branch le_send_packet
+	
+p_find_type_value_end_handle:
+	ifetch 2,contr
+	ifetch 1,contr
+	iadd contr,contr
+p_find_type_value_end_handle_loop:
+	ifetch 2,contr
+	rtn blank
+	ifetch 2,contr
+	isub regb,null
+	rtn zero
+	ifetch 1,contr
+	iadd contr,contr
+	branch p_find_type_value_end_handle_loop
+
+p_le_send_att_find_information_response:
+	arg 3,timeup
+	force 1,pdata
+	store 1,mem_le_l2cap_response
+	call le_init_attlist_search
+p_le_send_att_find_information_res_loop:
+	call le_att_handle_inrange
+	branch le_send_att_find_information_res_end,blank
+	nbranch p_le_send_att_find_information_res_next,positive
+	disable user
+	istore 2,contw
+	ifetch 2,contr
+	istore 2,contw
+	increase -1,timeup
+	branch le_send_att_find_information_res_end,zero
+p_le_send_att_find_information_res_cont:
+	ifetch 1,contr
+	iadd contr,contr
+	branch p_le_send_att_find_information_res_loop
+p_le_send_att_find_information_res_next:
+	increase 2,contr
+	branch p_le_send_att_find_information_res_cont
+
+
+
+p_le_send_att_read_by_type_response:
+	fetcht 2,mem_le_search_att_type
+	setarg UUID_CHRCTR_DEVICE_NAME
+	isub temp,null
+	branch p_le_send_att_read_by_type_res_device_name,zero	
+	setarg UUID_PNP_ID
+	isub temp,null
+	branch p_le_send_att_read_by_type_res_pnp_id,zero	
+	setarg UUID_GATT_CHARACTERISTIC
+	isub temp,null
+	nbranch le_send_att_error_response_notfound,zero
+	fetch 2,mem_le_search_handle_start
+	store 2,mem_temp
+	enable user
+p_le_send_att_read_by_type_response_loop:
+	call p_le_att_handle_inrange
+	nbranch p_le_send_att_read_by_type_response_end,positive
+	fetcht 2,mem_temp
+	call p_le_att_get_handle_info
+	beq 1,p_le_send_att_read_by_type_response_end
+	call p_le_att_same_type
+	nbranch p_le_send_att_read_by_type_response_next_handle,zero
+	disable user
+	call p_le_send_att_read_by_type_write_properties
+	call p_le_att_next_handle
+	call p_le_att_get_handle_info
+	call p_le_send_att_read_by_type_write_uuid
+	branch p_le_send_att_read_by_type_response_end
+p_le_send_att_read_by_type_response_next_handle:
+	call p_le_att_next_handle
+	branch p_le_send_att_read_by_type_response_loop
+p_le_send_att_read_by_type_response_end:
+	branch le_send_att_error_response_notfound,user
+	branch p_le_send_auto_len_by_mem
+p_le_send_att_read_by_type_write_properties:
+	fetch 2,mem_temp
+	store 2,mem_le_l2cap_response+1
+	fetch 1,mem_le_search_len
+	copy pdata,loopcnt
+	call p_get_contr
+	arg mem_le_l2cap_response+3,contw
+	call memcpy
+	branch p_store_contw
+p_le_send_att_read_by_type_write_uuid:
+	fetcht 2,mem_le_cur_att_type
+	rshift8 temp,pdata
+	bne 0x05,p_le_send_att_read_by_type_write_short_uuid
+	call p_get_contw
+	fetch 2,mem_temp
+	istore 2,contw
+	call p_store_contw
+	setarg mem_le_att_list
+	iadd temp,contr
+	ifetch 1,contr
+	copy contr,temp
+	copy pdata,loopcnt
+	increase 5,pdata
+	store 1,mem_le_l2cap_response
+	call p_get_contw
+	copy temp,contr
+	call memcpy
+	branch p_store_contw
+p_le_send_att_read_by_type_write_short_uuid:
+	call p_get_contw
+	fetch 2,mem_temp
+	istore 2,contw
+	fetch 2,mem_le_cur_att_type
+	istore 2,contw
+	call p_store_contw
+	jam 7,mem_le_l2cap_response
+	rtn
+p_le_send_att_read_by_type_res_device_name:
+	call le_get_device_name
+p_le_send_att_read_by_type_res_packet:
+	ifetch 1,contr // length
+	copy pdata,loopcnt
+	increase 2,pdata
+	store 1,mem_le_l2cap_response // att packet length
+	increase -5,contr // point to handle
+	ifetch 2,contr
+	istore 2,contw // handle
+	increase 3,contr // point to name
+	call memcpy
+	branch le_send_autolen
+	
+p_le_send_att_read_by_type_res_pnp_id:
+	arg UUID_PNP_ID,temp
+	call le_att_get_uuid_ptr
+	branch p_le_send_att_read_by_type_res_packet
+
+p_le_send_att_read_by_group_type_response:
+	//call ice_break
+	arg 2,timeup
+	fetch 2,mem_le_search_handle_start
+	store 2,mem_temp
+	jam 0,mem_le_search_res
+	enable user
+p_le_send_att_read_by_group_type_response_loop:
+	call p_le_att_handle_inrange
+	nbranch p_le_send_att_read_by_group_type_end0,positive
+	fetcht 2,mem_temp
+	call p_le_att_get_handle_info
+	beq 1,p_le_send_att_read_by_group_type_end1
+	call p_le_att_same_type
+	nbranch p_le_send_att_read_by_group_type_next_handle,zero
+	fetch 1,mem_le_search_res
+	beq 1,p_le_send_att_read_by_group_type_end1
+	nbranch p_le_send_att_read_by_group_type_store_write_record,user		//un first
+	disable user
+	fetch 1,mem_le_search_len
+	increase 4,pdata
+	store 1,mem_le_l2cap_response
+	call p_store_contw
+	branch p_le_send_att_read_by_group_type_store_record
+p_le_send_att_read_by_group_type_store_write_record:
+	fetch 1,mem_le_search_len
+	sub pdata,0x10,null
+	branch p_le_send_att_read_by_group_type_end1,zero
+	fetch 1,mem_le_l2cap_response
+	sub pdata,0x10,null
+	branch p_le_send_att_read_by_group_type_end1,zero
+	fetch 2,mem_temp
+	increase -1,pdata
+	store 2,mem_le_cur_handle_end
+	call p_le_write_att_record
+p_le_send_att_read_by_group_type_store_record:
+	fetch 2,mem_temp
+	store 2,mem_le_cur_handle_start
+	call p_le_store_att_record
+	increase -1,timeup
+	branch p_le_send_att_read_by_group_type_last_find,zero		
+p_le_send_att_read_by_group_type_next_handle:
+	call p_le_att_next_handle
+	branch p_le_send_att_read_by_group_type_response_loop
+p_le_send_att_read_by_group_type_last_find:
+	jam 1,mem_le_search_res
+	branch p_le_send_att_read_by_group_type_next_handle
+p_le_send_att_read_by_group_type_end0:	//> att handle end
+	fetch 2,mem_temp
+	store 2,mem_le_cur_handle_end
+	branch p_le_send_att_read_by_group_type_end_common
+p_le_send_att_read_by_group_type_end1:	//>att max list handle or diff len 
+	fetch 2,mem_temp
+	increase -1,pdata
+	store 2,mem_le_cur_handle_end
+	branch p_le_send_att_read_by_group_type_end_common
+p_le_send_att_read_by_group_type_end_common:
+	branch le_send_att_error_response_notfound,user
+	call p_le_write_att_record
+	branch p_le_send_auto_len_by_mem
+
+p_le_att_next_handle:
+	fetcht 2,mem_temp
+	increase 1,temp
+	storet 2,mem_temp
+	rtn
+
+p_le_store_att_record:
+	fetch 1,mem_le_search_len
+	store 1, mem_tmp_buffer
+	copy pdata,loopcnt
+	call p_get_contr
+	branch memcpy
+	
+p_le_write_att_record:
+	call p_get_contw
+	fetch 2,mem_le_cur_handle_start
+	istore 2,contw
+	fetch 2,mem_le_cur_handle_end
+	istore 2,contw
+	fetch 1,mem_tmp_buffer
+	copy pdata,loopcnt
+	call memcpy
+	branch p_store_contw
+
+
+p_le_att_handle_inrange:
+	fetcht 2,mem_temp
+	fetch 2,mem_le_search_handle_end
+	isub temp,null
+	rtn
+
+p_le_att_same_type:
+	fetch 2,mem_le_search_att_type
+	fetcht 2,mem_le_cur_att_type
+	isub temp,null
+	rtn
+
+p_le_att_get_handle_info:
+	arg mem_le_att_list,contr
+	copy temp,rega
+p_le_att_get_handle_loop:
+	ifetch 2,contr
+	branch p_le_att_unfind_handle,blank
+	ifetcht 2,contr
+	storet 2,mem_le_cur_att_type
+	isub rega,null
+	branch p_le_att_finded_handle, zero
+	ifetch 1,contr			/* length */
+	iadd contr,contr
+	branch p_le_att_get_handle_loop
+p_le_att_unfind_handle:
+	setarg 1
+	rtn
+p_le_att_finded_handle:
+	ifetch 1,contr
+	store 1,mem_le_search_len
+	call p_store_contr
+	setarg 0
+	rtn
+p_get_contw:
+	fetch 2,mem_contw
+	copy pdata,contw
+	rtn
+p_get_contr:
+	fetch 2,mem_contr
+	copy pdata,contr
+	rtn
+p_store_contw:
+	copy contw,pdata
+	store 2,mem_contw
+	rtn
+p_store_contr:
+	copy contr,pdata
+	store 2,mem_contr
+	rtn
+
+p_le_send_auto_len_by_mem:
+	call p_get_contw
+	branch le_send_autolen	
+
+p_le_send_att_handle_value_indication:
+p_le_send_att_handle_value_notification:
+	fetch 1,mem_queue_read
+	add pdata,1,temp
+	and temp,0x03,temp
+	storet 1,mem_queue_read
+	mul32 pdata,7,pdata
+	arg mem_uart_packet,contr
+	iadd contr,contr
+	fetch 1,mem_le51_tx_length
+	increase -5,pdata
+	copy pdata,loopcnt
+	arg mem_le_l2cap+1,contw
+	call memcpy
+	fetcht 1,mem_le51_tx_length
+	branch le_send_packet
+	
+p_le_parse:
+	call le_xtype_fifo_is_full
+	branch le_parse+4
+
+
+p_le_parse_ll:
+	copy regc,pdata
+	beq LL_ENC_REQ,p_le_parse_enc_req
+	beq LL_PAUSE_ENC_REQ,p_le_parse_pause_enc_rsq
+//	beq LL_CONNECTION_UPDATE_REQ,p_le_parse_connection_update_req
+	beq LL_PING_REQ,p_le_parse_ping_req
+	beq LL_TERMINATE_IND,p_le_parse_terminate_ind
+	sub pdata,0x0d,null
+	branch le_parse+20,positive
+	store 1,mem_le_ll_unknown_type
+	jam XT_LL_UNKNOWN_RSP,mem_fifo_temp
+	branch le_xtype_fifo_in	
+//p_le_parse_connection_update_req:
+
+//	call le_parse_connection_update_req
+//	fetch 2,mem_le_new_param+3	// interval
+//	mul32 pdata,4,temp
+//	storet 2,mem_customize_timer_setup
+//	rtn
+
+p_le_parse_enc_req:
+	jam DEFAULT_STATES,mem_ltk_states
+	branch le_parse_enc_req
+
+p_le_parse_ping_req:
+	jam XT_LL_PING_RSP,mem_fifo_temp
+	branch le_xtype_fifo_in
+	
+p_le_parse_pause_enc_rsq:
+	jam XT_LL_PAUSE_ENC_RSP,mem_fifo_temp
+	branch le_xtype_fifo_in
+
+p_le_parse_terminate_ind:
+	setarg 20 // 200ms
+	store 2,mem_le_superto
+	rtn
+
+p_le_send_non_l2cap:
+	fetch 1,mem_le_txheader
+	compare 1,type,3
+	branch p_le_send_non_l2cap1,true
+	branch le_send_non_l2cap+14
+p_le_send_non_l2cap1:
+	fetch 1,mem_le_txlen
+	branch p_le_send_empty_clear_md,blank
+	branch le_send_non_l2cap+14
+
+p_le_send_empty_clear_md:		// HUAWEI M5 pair fail
+	fetch 1,mem_le_txheader
+	set0 md,pdata
+	store 1,mem_le_txheader
+	rtn
+
+p_le_parse_smp:
+	ifetch 1,contr
+	beq SMP_PAIRING_REQUEST,p_le_parse_smp_pairing_request
+	beq SMP_PAIRING_RANDOM,p_le_parse_smp_pairing_random
+ifdef BLE_PINCODE	
+	beq SMP_PAIRING_CONFIRM,p_le_parse_smp_pairing_confirm
+endif	
+	beq SMP_IDENTITY_ADDRESS_INFORMATION,p_le_parse_smp_identity_address_information
+	branch le_parse_smp + 4
+
+
+p_le_parse_smp_identity_address_information:
+	jam FLAG_LE_PAIRING_END,mem_le_pairing_state
+	branch le_parse_smp_identity_address_information
+
+p_le_parse_smp_pairing_request:
+	jam 1,mem_le_send_security_request_flag
+	store 1,mem_le_preq
+	ifetch 6,contr
+	istore 6,contw
+	jam XT_SMP_PAIRING_RESPONSE,mem_fifo_temp
+ifdef BLE_PINCODE	
+	call le_xtype_fifo_in
+	jam BT_EVT_LE_PINCODE_REQ,mem_fifo_temp
+	branch ui_ipc_send_event
+else	
+	branch le_xtype_fifo_in
+endif	
+
+p_le_parse_smp_pairing_random:
+ifdef BLE_PINCODE
+	call p_authenticate_rconfirm
+else
+	call authenticate_rconfirm
+endif	
+	branch p_le_parse_smp_pairing_random_success,zero
+	branch le_parse_smp_pairing_random + 2
+p_le_parse_smp_pairing_random_success:
+	jam FLAG_LE_PAIRING_AFTER_AUTH,mem_le_pairing_state
+ifdef BLE_PINCODE
+	branch p_le_parse_smp_pairing_random_success1
+else
+	branch le_parse_smp_pairing_random_success
+endif	
+
+ifdef BLE_PINCODE
+	/* contr = rand pointer */
+p_authenticate_rconfirm:
+	arg mem_le_srand,contw
+	branch p_authenticate_mconfirm,master
+	arg mem_le_mrand,contw
+p_authenticate_mconfirm:
+	copy contr,rega
+	call memcpy16
+	call p_function_c1
+	arg mem_le_rconfirm,contr
+	branch compare_res
+
+
+p_le_parse_smp_pairing_random_success1:
+	call p_generate_stk
+	jam XT_LL_ENC_REQ,mem_fifo_temp
+	branch le_xtype_fifo_in,master
+	jam XT_SMP_PAIRING_RANDOM,mem_fifo_temp
+	branch le_xtype_fifo_in
+
+p_generate_stk:
+	call p_function_s1
+	arg mem_le_ltk,contw
+	branch store_aes_result
+
+p_function_s1:
+	force regidx_data,regext_index
+	fetch 4,mem_le_mrand
+	iforce regext
+	increase 1,regext_index
+	ifetch 4,contr
+	iforce regext
+	increase 1,regext_index
+	fetch 4,mem_le_srand
+	iforce regext
+	increase 1,regext_index
+	ifetch 4,contr
+	iforce regext
+	increase 1,regext_index
+	call aes_clear
+	//arg mem_le_pin_code,contr
+	//call load_key
+	increase -4,regext_index
+	fetch 4,mem_le_pin_code
+	copy pdata,regext
+	increase 4,regext_index
+	force 0x38,aes_ctrl
+	force 0x8,aes_ctrl
+	branch wait_aes
+
+p_le_parse_smp_pairing_confirm:
+	arg mem_le_rconfirm,contw
+	call memcpy16
+	jam XT_SMP_PAIRING_RANDOM,mem_fifo_temp
+	branch  le_xtype_fifo_in,master
+	rtn
+endif
+
+/*
+p_le_modified_name:
+	arg UUID_CHRCTR_DEVICE_NAME,temp
+	call le_att_get_uuid_ptr
+	ifetch 1,contr						// attribute length
+	copy contr,contw
+	fetcht 1,mem_le_name_len
+	copy temp,loopcnt
+	isub temp,temp
+	arg mem_new_le_name,contr
+	call memcpy
+	copy temp,loopcnt
+	ncall memcpy_empty,zero
+p_le_modified_scan:
+	fetcht 1,mem_le_name_len
+	copy temp,loopcnt
+	increase 1,temp
+	storet 1,mem_le_scan_data
+	increase 1,temp
+	increase 1,contw
+	arg mem_new_le_name,contr
+	call memcpy
+	sub temp,0x1f,loopcnt
+	branch clear_mem	
+*/
+
+
+scale_process_le_conn:
+	jam PAIR_UNKNOWN,mem_pair_state
+	call app_ble_stop_adv
+	call app_bt_stop_discovery
+	call  app_lpm_mult_enable
+	branch app_le_event_bb_connected
+
+
+scale_process_le_discon:
+	jam 0,mem_lpm_mult
+	jam 0,mem_ltk_exists
+	jam DEFAULT_STATES,mem_ltk_states
+	jam FLAG_LE_PAIRING_NULL,mem_le_pairing_state
+	jam 0,mem_shutter_find_type_value_flag
+	jam PAIR_UNKNOWN,mem_pair_state
+	branch app_le_event_bb_disconn
+endif
+	
+
+p_le_queue_init:
+	setarg 0
+	store 4,mem_queue_write
+	rtn
+
+		
+ifdef P24G
+p_g24_dispatch:
+	rtnmark0 mark_24g
+	fetch 4,mem_24g_enter_hibernate
+	store 4,mem_24g_enter_hibernate_setup
+	call p_g24_txdata_prep
+	nbranch p_g24_long_sleep,user
+	jam 10,mem_24g_enter_lpm_timer
+	call p_g24_transmit_packet
+	fetch 1,mem_24g_pairing_sm
+	rtnne STATE_24G_PAIRING_SUCCESS
+p_g24_short_sleep:
+	fetch 1,mem_mouse_retry_flag
+	nrtn blank
+	call p_check_IPC_for_LPM
+	nrtn user
+	fetch 1,mem_c51_lpm_lock
+	nrtn blank
+	call lpo_calibration
+	fetch 3,mem_clks_per_lpo
+	rtn blank
+	fetch 1,mem_lpm_mode
+	rtn blank
+p_g24_short_sleep_1:	
+	//setarg 0x120000
+	//setarg 0x0a0000
+	fetch 3,mem_24g_short_sleep_counter
+p_g24_short_sleep_2:	
+	call clk2lpo
+ 	storet 4,mem_sleep_counter
+ 	branch lpm_sleep
+
+p_g24_long_sleep:
+	call p_check_IPC_for_LPM
+	nrtn user
+	fetch 1,mem_c51_lpm_lock
+	nrtn blank
+	call lpo_calibration
+	fetch 3,mem_clks_per_lpo
+	rtn blank
+	fetch 1,mem_lpm_mode
+	rtn blank
+	fetch 1,mem_24g_enter_lpm_timer
+	nbranch p_g24_short_sleep_1,blank	
+	fetch 4,mem_24g_enter_hibernate_setup
+  	branch p_g24_short_sleep_2
+
+p_g24_txdata_prep:
+	fetch 1,mem_24g_pairing_sm
+	bne STATE_24G_PAIRING_SUCCESS,p_g24_pairing_sm	
+ifdef OTA_ENABLE
+	fetch 1,mem_24g_ota_enable
+	beq 1,p_g24_txdata_skip_short_lpm
+endif	
+	call p_g24_package_data
+	call p_g24_get_package_data,user
+	call p_g24_transmit_prep,user
+p_g24_txdata_enable_tx:
+	jam ENSURE_ON_24G,mem_24g_ensure
+	rtn
+
+p_g24_package_data:
+	disable user
+	jam 2,mem_24g_data_type
+	fetch 1,mem_24g_txbuf_new
+	beq 0x04,p_g24_dataready			
+	beq 0x05,p_g24_dataready_mk	
+	beq 0x06,p_g24_dataready_ms
+	beq 0x07,p_g24_dataready_sys
+	beq 0x08,p_g24_dataready_game 
+	fetch 1,mem_mouse_retry_flag
+	ncall enable_user,blank
+	rtn
+p_g24_dataready:				
+	jam 0x00,mem_24g_txbuf_new				//standard key 0x00
+	jam 10,mem_24g_datalen		// 02 + 00 + 8 payload
+	branch p_g24_package_data_rtn
+
+p_g24_dataready_game:  //game key
+	jam 0x08,mem_24g_txbuf_new				
+	jam 16,mem_24g_datalen		// 02 + 08 + 14
+	branch p_g24_package_data_rtn
+	
+p_g24_dataready_mk:			
+	jam 0x03,mem_24g_txbuf_new				//multi key 0x03
+	jam 4,mem_24g_datalen		// 02 + 03 + 2 payload
+	branch p_g24_package_data_rtn
+p_g24_dataready_sys:
+	jam 0x02,mem_24g_txbuf_new				//system key 0x02
+	jam 3,mem_24g_datalen		// 02 + 02 + 1 payload
+	branch p_g24_package_data_rtn
+p_g24_dataready_ms:
+	jam 1,mem_24g_data_type		// mouse
+	jam 8,mem_24g_datalen		// 01 + 7 payload
+p_g24_package_data_rtn:	
+	jam 0,mem_24g_get_ack_fail
+	branch enable_user
+
+
+p_g24_get_package_data:
+	arg mem_24g_txbuf,contw
+	arg mem_24g_txbuf_new,contr
+	arg 20,loopcnt
+	branch memcpy
+
+
+p_g24_transmit_packet:
+	jam 0,mem_24g_retry
+p_g24_transmit_loop:
+	arg param_rx_setup,timeup
+	until clkn_rt,meet
+	call p_g24_transmit_receive_ack
+	nbranch p_g24_retransmit,user3
+	call p_g24_ackpayload_parse	
+	fetch 1,mem_24g_pid
+	increase 1,pdata
+	store 1,mem_24g_pid
+	jam 0,mem_mouse_retry_flag
+	fetch 1,mem_24g_pairing_sm
+	bne STATE_24G_PAIRING_SUCCESS,p_g24_paring_mode_start
+p_g24_transmit_abandon:
+	call p_g24_clear_txbuf
+	jam 0,mem_24g_get_ack_fail
+	jam ENSURE_OFF_24G,mem_24g_ensure
+	rtn
+
+
+p_g24_retransmit:
+	jam 1,mem_mouse_retry_flag
+	fetch 1,mem_24g_get_ack_fail
+	increase 1,pdata
+	store 1,mem_24g_get_ack_fail
+	fetch 1,mem_24g_pairing_sm
+	bne STATE_24G_PAIRING_SUCCESS,p_g24_tx_paring_retry
+	fetch 1,mem_24g_get_ack_fail
+	beq  0xff,p_g24_stop_g24_mode
+	fetch 1,mem_24g_get_ack_fail
+	arg 16,temp
+	isub temp,null
+	branch p_g24_ch,positive
+	fetch 1,mem_24g_retry
+	increase 1,pdata
+	store 1,mem_24g_retry
+	nop 10
+	bne retry_24g,p_g24_transmit_loop
+	branch p_g24_ch
+	
+
+p_g24_clear_txbuf:
+	setarg 0
+	store 20,mem_24g_txbuf
+	store 20,mem_24g_txbuf_new
+	rtn
+
+/*
+p_g24_long_sleep_setup:
+	jam 0,mem_mouse_retry_flag
+	call p_g24_clear_txbuf
+	jam 0,mem_24g_get_ack_fail
+	fetch 4,mem_24g_enter_hibernate_max
+	store 4,mem_24g_enter_hibernate
+	rtn
+*/
+
+p_g24_paring_mode_start:
+	branch p_g24_paring_mode
+
+p_g24_transmit_receive_ack:
+	disable user3
+	call p_g24_transmit
+//	fetch 1,mem_24g_no_ack
+//	beq no_ack_24g,p_g24_transmit_no_ack	//tx no ack
+	force 0,radio_ctrl
+	fetch 4,mem_24g_addr
+	iforce access
+	fetcht 1,mem_last_freq
+	call set_freq_rx
+	call rf_rx_enable
+	call p_g24_receive_rxon
+	call p_g24_end_of_packet,user3
+	rtn
+//p_g24_transmit_no_ack:
+//	jam 0,mem_24g_rxbuf+1
+//	enable user3
+//	branch p_g24_end_of_packet
+
+
+p_g24_tx_paring_retry:
+	rtn
+//	fetch 1,mem_24g_get_ack_fail
+//	rtnne 0xff
+//	jam 0,mem_24g_get_ack_fail
+p_g24_stop_g24_mode:
+	jam 0,mem_mouse_retry_flag
+	jam BT_EVT_24G_ATTEMPT_FAIL,mem_fifo_temp
+	branch ui_ipc_send_event
+
+
+p_g24_ackpayload_parse:
+	call p_g24_read_len_pid_crc
+	fetch 1,mem_24g_rxbuf
+	rtnne 0x02					// mem_24g_data_type : 0x02 keyboard	
+	fetch 1,mem_24g_rxdata_length	//ack payload length 
+	rtn blank
+	iforce loopcnt
+	arg mem_24g_rxbuf+2,contr
+	arg mem_24g_rxpayload,contw	//ack payload buffer 
+	call memcpy
+	fetch 1,mem_24g_rxbuf+1
+	compare 0x08,pdata,0xf8
+	nrtn true
+	fetch 1,mem_24g_rxbuf+2
+	beq 0xff,p_pc_sleep_mode	//pc enter sleep mode
+	store 1,mem_caps_num_lock
+//	jam 0,mem_24g_led_flag
+	rtn
+
+p_pc_sleep_mode:
+	jam 1,mem_pc_sleep_flag
+	rtn
+	
+
+	
+p_g24_start_pairing_sm1:
+	set1 mark_24g,mark
+	call p_g24_pair_init
+	call p_g24_transmit_abandon
+	jam STATE_24G_PAIRING_1,mem_24g_pairing_sm
+	rtn
+
+p_g24_pair_init:
+	jam 0,mem_24g_pid
+	jam G24_PAIR_CH,mem_24g_ch
+	fetch 4,mem_24g_paring_addr
+	branch p_g24_update_addr_and_synccrc8
+
+p_g24_pairing_sm:
+	call p_g24_pair_init
+	fetch 1,mem_24g_ensure
+	beq ENSURE_ON_24G,enable_user
+	fetch 1,mem_24g_pairing_sm
+	beq STATE_24G_PAIRING_1,p_g24_pairing_sm_1
+	beq STATE_24G_PAIRING_2,p_g24_pairing_sm_2
+	beq STATE_24G_PAIRING_3,p_g24_pairing_sm_3
+	branch assert
+
+p_g24_pairing_sm_1:
+	jam STATE_24G_PAIRING_1_WAITING_ACK,mem_24g_pairing_sm
+	jam 0xaa,mem_24g_common_temp
+	branch p_g24_pairing_sm_common
+p_g24_pairing_sm_2:
+	jam STATE_24G_PAIRING_2_WAITING_ACK,mem_24g_pairing_sm
+	jam 0x55,mem_24g_common_temp
+	branch p_g24_pairing_sm_common
+p_g24_pairing_sm_3:
+	jam STATE_24G_PAIRING_3_WAITING_ACK,mem_24g_pairing_sm
+	jam 0x22,mem_24g_common_temp
+p_g24_pairing_sm_common:
+	//fetch 1,mem_24g_data_type
+	//and_into bits_data,pdata
+	//store 1,mem_24g_common_temp+1
+	jam 0x02,mem_24g_common_temp+1	// mem_24g_data_type: 02 keyboard
+	fetch 4,mem_24g_device_addr
+	store 4,mem_24g_common_temp+2
+	jam 0,mem_24g_common_temp+6
+	arg mem_24g_common_temp,rega
+	arg 7,temp
+	call p_g24_put_data_in_buff
+	call p_g24_transmit_prep
+	call p_g24_txdata_enable_tx
+	branch enable_user
+
+p_g24_paring_mode:
+	fetch 1,mem_24g_pairing_sm
+	rtneq STATE_24G_PAIRING_SUCCESS
+	beq STATE_24G_PAIRING_1_WAITING_ACK,p_g24_pairing_sm_1_waiting_ack
+	beq STATE_24G_PAIRING_2_WAITING_ACK,p_g24_pairing_sm_2_waiting_ack
+	beq STATE_24G_PAIRING_3_WAITING_ACK,p_g24_pairing_sm_3_waiting_ack
+	rtn
+
+
+p_g24_pairing_sm_1_waiting_ack:
+	jam STATE_24G_PAIRING_2,mem_24g_pairing_sm
+	branch p_g24_transmit_abandon
+p_g24_pairing_sm_2_waiting_ack:
+	jam STATE_24G_PAIRING_3,mem_24g_pairing_sm
+	branch p_g24_transmit_abandon
+p_g24_pairing_sm_3_waiting_ack:
+	jam STATE_24G_PAIRING_SUCCESS,mem_24g_pairing_sm
+	jam BT_EVT_24G_PAIRING_COMPLETE,mem_fifo_temp
+	call ui_ipc_send_event	
+	fetch 4,mem_24g_rxpayload+2
+	call p_g24_update_addr_and_synccrc8
+	branch p_g24_transmit_abandon
+
+p_g24_start_24g_mode:
+//	rtnmark1 mark_24g
+	set1 mark_24g,mark
+	call p_g24_syncword_crc8
+	call p_g24_ch
+	fetch 1,mem_24g_pairing_sm
+	rtnne STATE_24G_PAIRING_SUCCESS
+	call p_g24_tx_attemp_data_prep
+	setarg 0
+	store 2,mem_24g_check_dongle_times
+p_g24_tx_attemp_dongle_loop:
+	call lpo_calibration
+	nop 2000
+	fetch 1,mem_24g_check_dongle_times
+	beq 0xff,p_g24_stop_g24_mode	//
+	call p_g24_transmit_receive_ack
+	nbranch p_g24_attemp_txdata_retry,user3
+p_g24_tx_attemp_dongle_succ:
+	call p_g24_clear_txbuf
+	set1 mark_24g,mark
+	jam BT_EVT_24G_ATTEMPT_SUCCESS,mem_fifo_temp
+	branch ui_ipc_send_event
+
+
+p_g24_tx_attemp_data_prep:
+	jam 0xff,mem_24g_common_temp
+	fetch 1,mem_24g_data_type
+	store 1,mem_24g_common_temp+1
+	fetch 4,mem_24g_device_addr
+	store 4,mem_24g_common_temp+2
+	arg 6,temp
+	arg mem_24g_common_temp,rega
+	call p_g24_put_data_in_buff
+	branch p_g24_transmit_prep
+	
+p_g24_attemp_txdata_retry:
+	fetch 2,mem_24g_check_dongle_times
+	increase 1,pdata
+	store 2,mem_24g_check_dongle_times
+	call p_g24_ch
+	branch p_g24_tx_attemp_dongle_loop
+
+
+p_g24_put_data_in_buff:
+	storet 1,mem_24g_datalen
+	copy temp,loopcnt
+	arg mem_24g_txbuf,contw
+	copy rega,contr
+	branch memcpy
+
+p_g24_read_len_pid_crc:
+//read control
+	fetch 1,mem_24g_rxbuf+1
+	rshift3 pdata,pdata
+	store 1,mem_24g_rxdata_length
+	rtn
+
+p_rssi_signal:
+	fetcht 1,mem_rssi_signal_index
+	setarg mem_rssi_signal_buf
+	iadd temp,contw
+	copy rega,pdata
+	istore 1,contw
+	increase 1,temp
+	and_into RSSI_BUF_LEN_SIGNAL,temp
+	storet 1,mem_rssi_signal_index
+	rtn
+
+//p_rssi_noise:
+//	call save_rssi
+//	rtn blank
+//	fetcht 1,mem_rssi_noise_index
+//	arg mem_rssi_noise_buf,rega
+//	call p_rssi_store
+//	storet 1,mem_rssi_noise_index
+//	rtn
+//	
+//p_rssi_store:
+//	copy rega,pdata
+//	iadd temp,contw
+//	fetch 1,mem_rssi
+//	istore 1,contw
+//	increase 1,temp
+//	and_into RSSI_BUF_LEN_SIGNAL,temp
+//	rtn
+
+p_g24_update_addr_and_synccrc8:	
+	store 4,mem_24g_addr
+
+//output: 1BYTE crc8
+p_g24_syncword_crc8:
+	arg 0,rega
+	arg 4,loopcnt
+	arg mem_24g_addr,contr
+p_g24_syncword_crc8_loop:
+	ifetch 1,contr
+	iadd rega,rega
+	loop p_g24_syncword_crc8_loop
+	copy rega,pdata
+	store 2,mem_24g_syncword
+	fetch 1,mem_24g_syncword
+	fetcht 1,mem_24g_syncword+1
+	iadd temp,pdata
+	store 1,mem_24g_syncword_crc8
+	rtn
+
+
+p_g24_transmit_prep:
+// total length
+	fetch 1,mem_24g_datalen
+	increase 2,pdata
+	store 1,mem_24g_txlen
+// data type
+	fetch 1,mem_24g_data_type
+	store 1,mem_24g_txpayload
+//prepare 5bit payload length, 2bit PID, 1bit NO_ACK
+	fetch 1,mem_24g_datalen
+	lshift3 pdata,pdata
+	fetcht 1,mem_24g_pid
+	and temp,0x03,temp
+	lshift temp,temp
+	ior temp,pdata
+	fetcht 1,mem_24g_no_ack
+	iadd temp,pdata
+	istore 1,contw
+//prepare payload data
+	fetch 1,mem_24g_pairing_sm
+	bne STATE_24G_PAIRING_SUCCESS,p_g24_transmit_prep_pair
+	fetch 1,mem_24g_data_type
+	istore 1,contw
+p_g24_transmit_prep_pair:	
+	fetch 1,mem_24g_datalen
+	iforce loopcnt
+	fetch 1,mem_24g_data_type
+	beq 1,p_g24_transmit_prep_mouse
+	arg mem_24g_txbuf,contr
+	call memcpy
+// type == 2 && mem_24g_txbuf[0] == 0x03  : multi	
+// type == 1 && mem_24g_txbuf[0] == 0x03  : mouse
+// if transmit fail,next package will send mouse data
+	fetch 1,mem_24g_txbuf	
+	beq 0x03,p_g24_multi_key_setup
+	rtn
+p_g24_multi_key_setup:
+	jam 0x02,mem_24g_txbuf
+	rtn
+
+
+p_g24_transmit_prep_mouse:
+	arg mem_24g_txbuf+1,contr
+	branch memcpy
+
+p_g24_ch:
+	fetcht 1,mem_24g_current_ch_number
+	call p_g24_ch_calc
+	increase 1,temp
+	and_into 3,temp //map size =4
+	storet 1,mem_24g_current_ch_number
+	rtn
+
+p_g24_ch_calc:
+	fetch 1,mem_24g_addr	
+	and_into 0x03,pdata
+	mul32 pdata,4,rega			//24addr low bit0 bit1 ,00-map1,01-map2,10-map3,11-map4
+	setarg mem_24g_ch_map1
+	iadd rega,pdata
+	iadd temp,contr
+	ifetch 1,contr
+	store 1,mem_24g_ch
+	rtn
+
+p_g24_prep:
+	disable enable_crc
+	disable enable_white
+	setarg 0x555555
+	iforce crc24_init
+	fetch 1,mem_24g_ch
+	reverse pdata,temp
+	set1 1,temp
+	rshift temp,white_init
+	rtn
+
+p_g24_receive_rxon:
+	call p_g24_prep
+	enable decode_fec0	
+	enable is_rx
+	disable is_tx
+	enable swfine
+	fetch 2,mem_24g_rx_window
+	iforce stop_watch
+	correlate null,timeout
+	nbranch p_g24_sync_timeout,sync
+	disable decode_fec0
+	enable decode_fec1
+	enable enable_white
+	enable enable_crc
+	parse demod,bucket,8
+	rshift3 pwindow,pdata
+	store 1,mem_24g_get_syncword_crc8
+	fetcht 1,mem_24g_syncword_crc8
+	isub temp,null
+	nbranch p_g24_end_of_packet,zero
+	parse demod,bucket,8
+	rshift3 pwindow,pdata
+	store 1,mem_24g_rxbuf	//device id
+//	fetch 1,mem_24g_mode
+//	sub pdata,rx_24g,null
+//	branch p_g24_receive_skip,zero
+	fetch 1,mem_24g_rxbuf
+	fetcht 1,mem_24g_data_type
+	icompare bits_data,temp
+	nbranch p_g24_end_of_packet,true
+p_g24_receive_skip:
+	parse demod,bucket,8
+	rshift3 pwindow,pdata
+	istore 1,contw
+	rshift3 pdata,pdata
+	and pdata,0x1f,loopcnt	//max payload: 32bytes
+	branch p_g24rx_nopayload,zero
+p_g24rx_loop:
+	parse demod,bucket,8
+	rshift3 pwindow,pdata
+	istore 1,contw
+	loop p_g24rx_loop
+p_g24rx_nopayload:
+	//receive rssi hex
+	copy contw,rega
+	parse demod,bucket,8
+	rshift3 pwindow,pdata
+	store 1,mem_rssi_hex_received
+	copy rega,contw
+	parse demod,bucket,24
+	enable swfine
+	arg param_sifs,stop_watch	
+	rshift32 pdata,pdata
+	rshift16 pdata,pdata
+	istore 3,contw
+	disable decode_fec1
+	branch p_g24_end_of_packet,crc_failed
+	enable user3
+	fetch 1,mem_last_freq
+	add pdata,0,rega
+	call rf_write_freq
+	disable decode_fec0
+	call set_sync_on
+	fetch 1,mem_rssi_hex_received
+	copy pdata,rega
+	branch p_rssi_signal
+	
+
+p_g24_sync_timeout:
+//	call p_rssi_noise
+//	branch p_g24_end_of_packet
+p_g24_end_of_packet:
+	disable encode_fec1
+	disable decode_fec1
+	branch end_of_packet
+
+p_g24_set_freq_tx:
+	call set_sync_on
+	fetcht 1,mem_24g_ch
+	branch set_freq_tx
+
+p_g24_transmit:
+	call le_enable
+	fetch 4,mem_24g_addr
+	iforce access
+	call p_g24_prep
+	call p_g24_set_freq_tx
+	set1 TXGFSK,radio_ctrl
+	enable encode_fec0
+	enable is_tx
+	disable is_rx
+	rshift16 access,pdata
+	rshift8 pdata,pdata
+	rshift4 pdata,pdata
+	inject mod,40
+	disable encode_fec0
+	enable encode_fec1
+	enable enable_white
+	enable enable_crc
+	fetch 1,mem_24g_syncword_crc8
+	inject mod,8
+	fetch 1,mem_24g_txlen
+	iforce loopcnt
+	arg mem_24g_txpayload,contr
+p_g24tr_loop:
+	ifetch 1,contr
+	inject mod,8
+	loop p_g24tr_loop
+	enable enable_parity
+	inject mod,24	//crc
+	disable enable_parity
+	until null,tx_clear
+	nop 100
+	disable encode_fec0
+	disable encode_fec1
+	branch set_sync_on
+
+
+endif
+
+ifdef GPIO_TEST_01	
+p_test_gpio_blink:
+	fetch 1,mem_24g_txfail_cnt
+	branch p_test_io_on,blank
+	branch p_test_io_off
+
+p_test_io_on:
+	jam 1,mem_24g_txfail_cnt
+	arg 0x10,temp
+	branch gpio_out_active
+p_test_io_off:
+	jam 0,mem_24g_txfail_cnt
+	arg 0x10,temp
+	branch gpio_out_inactive
+endif
+	
Index: btkb/program/peripherals.prog
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/btkb/program/peripherals.prog	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/btkb/program/peripherals.prog	(working copy)
@@ -0,0 +1,1330 @@
+
+/* ===================== two wire SPI gpio ======================= */
+
+twspi_reset:
+	set0 mark_ext_patch,mark
+	bpatch patch1f_6,mem_patch1f
+	hfetch 1,core_gpio_oe3
+	arg 0x06,temp
+	ior temp,pdata
+	hstore 1,core_gpio_oe3
+	hfetch 1,core_gpio_out3
+	ior temp,pdata
+	hstore 1,core_gpio_out3
+	hjam 0,core_gpio_sel1	
+	hfetch 1,core_gpio_out3
+	set0 1,pdata
+	set0 2,pdata
+	hstore 1,core_gpio_out3	
+	nop 30
+	hjam 1,core_gpio_sel1	
+	rtn
+twspi_write:
+	branch spid_write_reg
+
+twspi_read:
+	branch spid_read_reg
+
+
+
+/* ===================== code loading ======================= */
+
+
+read_function_aes:
+	nbranch read_function,user
+	hfetch 1,core_gpio_key2
+	or_into 0x20,pdata   	// enable aes 
+	hstore 1,core_gpio_key2
+read_function:
+	copy temp,null
+	branch read_fuction_zero,zero
+	copy regc,pc
+read_fuction_zero:
+	isolate0 0,null
+	branch set_ucode_status
+	
+/* return temp = block length */
+get_block_header:
+	force 4,temp
+get_block_header0:
+	arg mem_ucode_buf,rega
+	hfetch 1,core_gpio_key2
+	and_into 0xdf,pdata   	// disable aes for header
+	hstore 1,core_gpio_key2
+	call read_function
+	arg 0x55aa,rega
+	fetch 2,mem_ucode_buf
+	ifetcht 2,contr
+	isub rega,null
+	rtn	
+
+read_first_block:
+	arg 2,temp
+	arg mem_ucode_ptr,rega
+	call read_function
+	fetch 2,mem_ucode_ptr
+	store 2,mem_addr_mi
+	call get_iv,user
+	rtn
+	
+get_iv:
+	arg 16,temp
+	arg mem_ucode_keybuf,rega
+	hfetch 1,core_gpio_key2
+	and_into 0xdf,pdata   // disable aes for iv
+	hstore 1,core_gpio_key2
+	call read_function
+	arg mem_ucode_keybuf,contr
+	arg 16,loopcnt
+	call aes_load_data
+	call aes_init
+	call aes_clear_data
+	branch do_aes_cbc					/* generate first IV */
+
+load_storage:
+	disable match
+	call get_block_header
+	nrtn zero
+	enable match
+	hjam 0x80, core_ucode_ctrl
+	hjam 0,core_ucode_hi
+	hjam 0,core_ucode_low
+	arg core_ucode_data,rega
+	call read_function_aes
+	hjam 0x0, core_ucode_ctrl
+	call get_block_header
+	nrtn zero
+	force 0,pdata
+	hstore 2,core_docd_paddr
+	arg core_docd_pdata,rega
+	call read_function_aes
+load_storage_loop:
+	arg 6,temp
+	call get_block_header0
+	nrtn zero
+	ifetch 2,contr
+	iforce rega
+	call read_function
+	branch load_storage_loop
+
+
+
+	
+	/* only load memory data from eeprom */
+reload_eeprom:
+	call clean_mem
+	setarg 0x1000
+	store 2,mem_addr_mi
+	arg iicd_read_eep,regc
+	arg 2,loopcnt
+reload_eeprom_loop:
+	call get_block_header
+	nrtn zero
+	fetch 2,mem_addr_mi
+	byteswap pdata,pdata
+	iadd temp,pdata
+	byteswap pdata,pdata
+	store 2,mem_addr_mi
+	loop reload_eeprom_loop
+	branch load_storage_loop
+	
+loadcode:
+	hjam 0x25,core_clkoff			// disable debug uart
+	hjam 5,core_docd_ctrl
+	call clean_mem
+loadcode_lpm:
+	disable user
+	call otp_enable_chgpump
+	setarg otp_ucode_flag
+	arg mem_otp_ucode_flag,rega
+	arg 2,temp
+	call otpd_read_data
+	fetch 2,mem_otp_ucode_flag
+	bbit0 otp_uflag_aes, loadcode_otp
+	setarg otp_ucode_aeskey
+	arg mem_ucode_keybuf,rega
+	arg 16,temp
+	call otpd_read_data
+	hjam lock_otp,core_misc_ctrl	// disable further read/write of key
+	arg mem_ucode_keybuf,contr
+	call load_key
+	enable user					// set user for aes
+loadcode_otp:
+	fetch 2,mem_otp_ucode_flag
+	byteswap pdata,pdata
+	arg 0x7ff,temp
+	iand temp,pdata
+	branch loadcode_spi, zero
+	call otp_set_addr
+	arg otpd_read_code,regc
+	call get_iv,user
+	call load_storage
+	fetch 1,mem_ucode_status
+	compare 3,pdata,3
+	nbranch loadcode_otp,true	// crc error, try again
+loadcode_spi:
+	call otp_disable_chgpump
+	fetch 1,mem_otp_ucode_flag
+	bbit1 otp_uflag_skip_flash, loadcode_iic
+	setarg 0x0
+	store 3,mem_addr_hi
+	call spid_init_flash
+	arg spid_read_flash,regc
+	call read_first_block
+	call load_storage
+	nbranch loadcode_iic,match
+	fetch 1,mem_ucode_status
+	compare 3,pdata,3
+	nbranch loadcode_spi,true	// crc error, try again
+loadcode_iic:
+	fetch 1,mem_otp_ucode_flag
+	bbit1 otp_uflag_skip_eep,loadcode_hci
+	setarg 0x0
+	store 2,mem_addr_mi
+	arg iicd_read_eep,regc
+	call iicd_init_12m
+	call read_first_block
+	call load_storage
+	nbranch loadcode_hci,match
+	fetch 1,mem_ucode_status
+	compare 3,pdata,3
+	nbranch loadcode_iic,true	// crc error, try again
+loadcode_hci:
+	hjam 0x21,core_clkoff			// enable debug uart
+	fetch 1,mem_otp_ucode_flag
+	rtnbit0 otp_uflag_hci
+	call hci_init
+loadcode_hci_loop:
+	call hci_rx_packet
+	branch loadcode_hci_loop
+
+/* true flag is set into status */
+set_ucode_status:
+	fetch 1,mem_ucode_status
+	lshift pdata,pdata
+	setflag true,0,pdata
+	isolate0 15,rega
+	rtn true
+	store 1,mem_ucode_status
+	rtn
+
+	/* queue is bit position of hw done status */
+decrypt_code:
+	hfetch 1,core_gpio_key2
+	rtnbit0 5
+	branch decrypt_code_skip	/* skip to key generation at first for speed */
+decrypt_code_loop:
+	hfetch 1,core_dma_status
+	qisolate1 pdata
+	rtn true
+decrypt_code_skip:
+	hfetch 1,core_misc_status
+	bbit0 1,decrypt_code_loop
+	call do_aes_cbc
+	branch decrypt_code_loop
+
+
+	/* loopcnt is ucode instruction count, pdata is buffer ptr */
+save_ucode:
+	copy loopcnt,temp
+	storet 2,mem_patch_len
+	hjam 0x80, core_ucode_ctrl
+	hjam 0,core_ucode_hi
+	hjam 0,core_ucode_low
+	store 2,mem_patch_ptr
+	iforce contw
+	lshift2 loopcnt,loopcnt
+save_ucode_loop:
+	hfetch 1,core_ucode_data
+	istore 1,contw
+	loop save_ucode_loop
+	hjam 0x0, core_ucode_ctrl
+	rtn
+
+load_ucode:
+	fetch 2,mem_patch_ptr
+	rtn blank
+	hjam 0x80, core_ucode_ctrl
+	hjam 0,core_ucode_hi
+	hjam 0,core_ucode_low
+	fetcht 2,mem_patch_len
+	lshift2 temp,loopcnt
+	iforce contr
+load_ucode_loop:
+	ifetch 1,contr
+	hstore 1,core_ucode_data
+	loop load_ucode_loop
+	hjam 0x0, core_ucode_ctrl
+	rtn
+
+
+/* ===================== SPI dma ======================= */
+
+spid_init:
+	set0 mark_ext_patch,mark
+	bpatch patch1f_7,mem_patch1f
+	hjam 0x75,core_spid_ctrl	// A7530 should at least 34, or write fail
+	hjam 10,core_spid_delay	// 4us delay
+	setarg mem_spid_tbuf
+	hstore 2,core_spid_txaddr
+	setarg mem_spid_rbuf
+	hstore 2,core_spid_rxaddr
+	hfetch 1,core_gpio_sel1
+	set1 0,pdata
+	set0 1,pdata
+	hstore 1,core_gpio_sel1
+	rtn
+
+spid_reset:
+	hfetch 1,core_spid_ctrl
+	set1 7,pdata
+	hstore 1,core_spid_ctrl
+	set0 7,pdata
+	hstore 1,core_spid_ctrl
+	rtn
+
+
+/* pdata 6:0 is reg address, 15:8 is data to write */
+spid_write_reg:
+	set1 7,pdata
+	store 2,mem_spid_tbuf
+	set1 mark_ext_patch,mark
+	bpatch patch20_0,mem_patch20
+	hjam 2,core_spid_txlen
+	hjam 0,core_spid_rxlen
+	hjam spid_start,core_misc_ctrl
+	branch wait_spid_done
+
+/* pdata 6:0 is reg address */
+spid_read_reg:
+	force 1,temp
+/* pdata 6:0 is burst reg address, temp is bytes to read */
+spid_read_regs:
+//	nop 100
+	store 1,mem_spid_tbuf
+	set1 mark_ext_patch,mark
+	bpatch patch20_1,mem_patch20
+	hjam 1,core_spid_txlen
+	hstoret 2,core_spid_rxlen
+	hjam spid_start,core_misc_ctrl
+	call wait_spid_done
+	fetch 1,mem_spid_rbuf
+	rtn
+
+wait_spid_done:
+	fetch 2,mem_afh_error_total
+	increase 1,pdata
+	store 2,mem_afh_error_total
+	hfetch 1,core_dma_status
+	bbit0 spid_done,wait_spid_done
+	rtn
+
+spid_init_flash:
+	hjam 0x40,core_spid_ctrl
+	hjam 0x0,core_spid_delay
+	hfetch 1,core_gpio_sel1
+	set0 0,pdata
+	set1 1,pdata
+	hstore 1,core_gpio_sel1
+	setarg 0
+	store 4,mem_spid_tbuf
+	rtn
+
+spid_unlock_flash:
+	setarg 0
+	hstore 2,core_spid_rxlen
+	setarg 1
+	hstore 1,core_spid_txlen
+	setarg mem_spid_tbuf
+	hstore 2,core_spid_txaddr
+	jam 6,mem_spid_tbuf
+	hjam spid_start,core_misc_ctrl
+	branch wait_spid_done
+
+
+	/* pdata is flash address, rega pointers to txdata(4 ahead bytes should be left), temp is length */
+spid_write_flash:
+	increase 4,temp
+	hstoret 2,core_spid_txlen
+	increase -4,rega
+	arg 2,temp
+	istoret 1,rega
+	rshift16 pdata,temp
+	istoret 1,contw
+	rshift8 pdata,temp
+	istoret 1,contw
+	istore 1,contw
+	deposit rega
+	hstore 2,core_spid_txaddr
+	setarg 0
+	hstore 2,core_spid_rxlen
+	hjam spid_start,core_misc_ctrl
+	branch wait_spid_done
+	
+
+/* temp is length, rega pointers to buf */
+spid_read_flash:
+	hstoret 2,core_spid_rxlen
+	setarg 4
+	hstore 2,core_spid_txlen
+	jam 3,mem_spid_tbuf
+	setarg mem_spid_tbuf
+	hstore 2,core_spid_txaddr
+	deposit rega
+	hstore 2,core_spid_rxaddr
+	hfetch 1,core_spid_ctrl
+	isolate0 15,rega
+	setflag true,6,pdata
+	hstore 1,core_spid_ctrl
+	hjam spid_start,core_misc_ctrl
+spi_read_flash_wait:
+	hfetch 1,core_dma_status
+	bbit1 7,spi_read_flash_wait			// waiting for spid write
+	arg spid_done,queue
+	call decrypt_code
+	call wait_spid_done
+	isolate1 spid_crcok,pdata
+	call set_ucode_status
+	fetch 1,mem_addr_hi
+	lshift16 pdata,regb
+	fetch 1,mem_addr_mi
+	lshift8 pdata,pdata
+	ior regb,regb
+	fetch 1,mem_addr_lo
+	ior regb,pdata
+	iadd temp,pdata
+	store 1,mem_addr_lo
+	rshift8 pdata,pdata
+	store 1,mem_addr_mi
+	rshift8 pdata,pdata
+	store 1,mem_addr_hi
+	rtn
+
+
+/* ===================== I2C dma ======================= */
+iicd_init_5m:
+	hjam 0xa,core_clksel			// use 5M rc clock to load eeprom
+	hjam 2,core_iicd_scl_low
+ 	hjam 3,core_iicd_scl_high
+	hjam 3,core_iicd_start_setup
+	hjam 3,core_iicd_start_hold
+	hjam 3,core_iicd_stop_setup
+	hjam 2,core_iicd_data_setup
+	rtn
+
+iicd_init_12m:
+	hjam 5,core_iicd_scl_low
+ 	hjam 7,core_iicd_scl_high
+	hjam 7,core_iicd_start_setup
+	hjam 7,core_iicd_start_hold
+	hjam 7,core_iicd_stop_setup
+	hjam 5,core_iicd_data_setup
+	rtn
+
+
+
+wait_iicd_done:
+	hfetch 1,core_dma_status
+	bbit0 iicd_done,wait_iicd_done
+	rtn
+
+	/* pdata is iic addr, rega points to buf, temp is length */
+iicd_read_data:
+	store 1,mem_iicd_tbuf
+	setarg mem_iicd_tbuf
+	hstore 2,core_iicd_txaddr
+	setarg 1
+	hstore 2,core_iicd_txlen
+	hstoret 2,core_iicd_rxlen
+	deposit rega
+	hstore 2,core_iicd_rxaddr
+	hjam 1,core_iicd_ctrl
+	hjam iicd_start,core_misc_ctrl
+	branch wait_iicd_done
+
+byteswap_addr_mi:
+	byteswap pdata,pdata
+	store 2,mem_addr_mi
+	rtn
+
+
+//length:temp 
+//mem ptr:rega
+//eeprom addr offset:regb
+iicd_read_eep_data:
+	set1 mark_ext_patch,mark
+	bpatch patch20_2,mem_patch20
+	fetch 2,mem_eeprom_base
+	iadd regb,pdata
+
+/* pdata:eeprom address, rega pointers to buf, temp is length  */
+iicd_read_eep_adr:
+	byteswap pdata,pdata
+	store 2,mem_addr_mi
+
+/* rega pointers to buf, temp is length  */
+iicd_read_eep:
+	set1 mark_ext_patch,mark
+	bpatch patch20_3,mem_patch20
+	setarg 4
+	hstore 2,core_iicd_txlen
+	jam 0xa0,mem_iicd_tbuf
+	jam 0xa1,mem_iicd_tbuf+3
+	setarg mem_iicd_tbuf
+	hstore 2,core_iicd_txaddr
+	hstoret 2,core_iicd_rxlen
+	deposit rega
+	hstore 2,core_iicd_rxaddr
+	setarg 2
+	isolate0 15,rega
+	setflag true,0,pdata
+	hstore 1,core_iicd_ctrl
+	hjam iicd_start,core_misc_ctrl
+	arg iicd_done,queue
+	call decrypt_code
+	call wait_iicd_done
+	isolate1 iicd_crcok,pdata	
+	call set_ucode_status
+	fetch 2,mem_addr_mi
+	byteswap pdata,pdata
+	iadd temp,pdata
+	byteswap pdata,pdata
+	store 2,mem_addr_mi
+	rtn
+
+	
+//length:temp 
+//mem ptr:rega
+//eeprom addr offset:regb
+iicd_write_eep_data:
+	set1 mark_ext_patch,mark
+	bpatch patch20_4,mem_patch20
+	fetch 2,mem_eeprom_base
+	iadd regb,pdata
+
+//cuur ptr:pdata length:temp buf:rega
+iicd_write_ota_data:
+	store 2,mem_pdatatemp //curr ptr
+	set1 mark_ext_patch,mark
+	bpatch patch20_5,mem_patch20
+	storet 2,mem_temp	//len
+	copy rega,pdata
+	store 2,mem_contr
+iicd_write_eep_loop:
+	call iicd_eep_transparency
+
+	fetcht 2,mem_regb
+	fetch 2,mem_contr
+	copy pdata,rega
+	fetch 2,mem_pdatatemp
+	
+	call iicd_write_eep
+
+	fetch 2,mem_regb
+	fetcht 2,mem_contr
+	iadd temp,temp
+	storet 2,mem_contr
+	fetcht 2,mem_pdatatemp
+	iadd temp,temp
+	storet 2,mem_pdatatemp
+	fetch 2,mem_temp
+	nbranch iicd_write_eep_loop,blank
+	rtn
+	
+//in:
+//1.size 2.len 3.src 4.des
+//mem_regc page's area
+//mem_pdatatemp curr ptr
+//mem_temp all len      
+//mem_regb curr len
+iicd_eep_transparency:
+	set1 mark_ext_patch,mark
+	bpatch patch20_6,mem_patch20
+	fetch 2,mem_eeprom_block_size
+	increase -1,pdata
+	fetcht 2,mem_pdatatemp
+	ior temp,pdata
+	increase 1,pdata
+	store 3,mem_regc
+
+	fetch 2,mem_temp
+	iadd temp,pdata
+
+	fetcht 3,mem_regc
+	isub temp,pdata
+	nbranch iicd_eep_deal_short_packet,positive
+	store 2,mem_temp
+	fetch 3,mem_regc
+	fetcht 2,mem_pdatatemp
+	isub temp,pdata
+	store 2,mem_regb
+	rtn
+iicd_eep_deal_short_packet:
+	fetch 2,mem_temp
+	store 2,mem_regb
+	setarg 0
+	store 2,mem_temp
+	rtn
+
+
+
+	/* pdata is eeprom address, rega pointers to txdata(3 ahead bytes should be left), temp is length */
+iicd_write_eep:
+	copy pdata,regb
+	set1 mark_ext_patch,mark
+	bpatch patch20_7,mem_patch20
+	copy regb,pdata
+	increase 3,temp
+	hstoret 2,core_iicd_txlen
+	increase -3,rega
+	ifetcht 3,rega
+	copy temp,regb
+	arg 0xa0,temp
+	istoret 1,rega
+	byteswap pdata,pdata
+	istore 2,contw
+	deposit rega
+	hstore 2,core_iicd_txaddr
+	setarg 0
+	hstore 2,core_iicd_rxlen
+	hjam 1,core_iicd_ctrl
+	hjam iicd_start,core_misc_ctrl
+	call wait_iicd_done
+	copy regb,pdata
+	istore 3,rega
+	nop 10000
+	nop 10000
+	nop 10000
+	rtn
+
+/* ===================== OTP ======================= */
+
+otp_enable_chgpump:
+	hjam 0x70,rfen_chgpump
+	nop param_chgpump_delay
+	rtn
+
+otp_disable_chgpump:
+	hjam 0x30,rfen_chgpump
+	rtn
+	
+otp_set_addr:
+	lshift3 pdata,pdata
+	hstore 2,core_otp_addr
+	hjam 0,core_otpd_ctrl
+	rtn	
+
+/* pdata = otp address, rega pointers data, loopcnt is count */
+otp_write:
+	call otp_set_addr
+	call otp_ce
+otp_program:
+	ifetcht 1,rega
+	increase 1,rega
+	force 0,queue
+otp_program_bit:
+	qisolate0 temp
+	branch otp_skip_0,true
+	hfetch 1,core_otp_din
+	set1 6,pdata				/* din */
+	set1 7,pdata				/* dle */
+	hstore 1,core_otp_din
+	hjam 0x02,core_otp_ctrl	/* web */
+	hjam 0x82,core_otp_ctrl
+	set0 7,pdata				/* dle */
+	hstore 1,core_otp_din
+	hjam 0x8a,core_otp_ctrl	/* pgmen */
+	nop 11
+	hjam 0xca,core_otp_ctrl	/* vppen */
+	nop 33
+	hjam 0x4a,core_otp_ctrl	/* web 2nd */
+	nop 44
+	hjam 0xca,core_otp_ctrl	/* release web */
+	nop 22
+	hjam 0x8a,core_otp_ctrl	/* release vppen */
+	nop 33
+	hjam 0x82,core_otp_ctrl	/* release pgmen */
+	nop 1
+	hjam 0x92,core_otp_ctrl	/* pgmvfy */
+	nop 10
+	hjam 0xb2,core_otp_ctrl	/* readen */
+	hfetch 1,core_otp_rdata
+	hjam 0x92,core_otp_ctrl	/* release readen */
+	nop 1
+	hjam 0x82,core_otp_ctrl	/* release pgmvfy */
+	qisolate0 pdata
+	branch otp_program_bit,true	/* program error */
+otp_skip_0:
+	hfetch 2,core_otp_addr
+	increase 1,pdata
+	hstore 2,core_otp_addr
+	increase 1,queue
+	compare 8,queue,0xf
+	nbranch otp_program_bit,true
+	loop otp_program
+	hjam 0x83,core_otp_ctrl
+	rtn
+
+otp_ce:
+	hjam 0x82,core_otp_ctrl	/* ceb */
+	nop 12
+	hjam 0x80,core_otp_ctrl	/* rstn */
+	hjam 0x82,core_otp_ctrl	/* release rstn */
+	nop 150					/* waiting for vdd25 stable */
+	rtn
+
+	/* rega points to data, temp is count */
+otpd_read_init:
+	call otp_ce
+otpd_read_special:
+	hjam 0xa2,core_otp_ctrl	/* readen */
+	deposit rega
+	hstore 2,core_otpd_addr
+	set1 11,temp
+	isolate0 15,pdata
+	setflag true,15,temp
+	hstoret 2,core_otpd_len
+	hjam otpd_start,core_misc_ctrl
+	rtn
+
+otpd_wait_end:
+	hfetch 1,core_dma_status
+	bbit0 otpd_done,otpd_wait_end
+	rtn
+	
+	/* pdata=otp address, rega points to data, temp is count */
+otpd_read_data:
+	call otp_set_addr
+	call otpd_read_init
+	call otpd_wait_end
+	hjam 0x83,core_otp_ctrl	/* release ceb */
+	rtn
+
+
+
+/* rega pointers to buf, temp is length */
+otpd_read_code:	
+	hfetch 2,core_current_otp_addr
+	hstore 2,core_otp_addr
+	call otpd_read_init
+	arg otpd_done,queue
+	call decrypt_code
+	call otpd_wait_end
+	isolate1 otpd_crcok,pdata	
+	call set_ucode_status
+	hjam 0x83,core_otp_ctrl	/* release ceb */
+	rtn
+
+/* ===================== uart dma ======================= */
+uartd_rx_cnt_got_first_byte:
+	jam 1,mem_uartd_rxitems_got_data
+	force uart_rx_timer,queue
+	fetch 2,mem_uartd_rx_timeout
+	branch timer_init
+uartd_rx_cnt_with_threshold:
+	hfetch 2,core_uart_rxitems
+	rtn blank
+	fetcht 1,mem_uartd_rxitems_threshold
+	isub temp,null
+	branch uartd_rx_cnt_rtn_value,positive
+	fetch 1,mem_uartd_rxitems_got_data
+	branch uartd_rx_cnt_got_first_byte,blank
+	arg uart_rx_timer,queue
+	call timer_check
+	branch uartd_rx_cnt_rtn_value,blank
+	setarg 0
+	rtn
+uartd_rx_cnt_rtn_value:
+	force uart_rx_timer,queue
+	call timer_stop
+	jam 0,mem_uartd_rxitems_got_data
+	hfetch 2,core_uart_rxitems
+	rtn
+	
+
+
+
+	
+	/* temp=bytes to send */	
+uartd_prepare_tx:
+	hfetch 2,core_uart_twptr
+	iforce contwu
+	rtn
+
+uartd_send:
+	deposit contwu
+	hstore 2,core_uart_twptr
+	rtn
+
+uartd_prepare_rx:
+	hfetch 2,core_uart_rxitems
+	rtn blank
+	iforce loopcnt
+	hfetch 2,core_uart_rrptr
+	iforce contru
+	rtn
+
+	//len in temp
+uartd_rxdone_by_len:
+	hfetch 2,core_uart_rrptr
+	iadd temp,pdata
+	copy pdata,contru
+uartd_rxdone:
+	deposit contru
+	hstore 2,core_uart_rrptr
+	rtn
+
+uart_set_baud_by_mem:
+	fetch uart_baud_len,mem_baud
+	hstore uart_baud_len,core_uart_baud
+	rtn
+
+/* ===================== eeprom data ======================= */
+
+eeprom_store_le_reconn_info:
+	fetch 6,mem_le_plap
+	store 6,mem_temp_lap
+	jam REC_4_MODE,mem_record_bt_mode
+	branch eeprom_store_reconn_info
+eeprom_store_bd_reconn_info:
+	fetch 6,mem_plap
+	store 6,mem_temp_lap
+	jam REC_3_MODE,mem_record_bt_mode
+eeprom_store_reconn_info:
+	set1 mark_ext_patch,mark
+	bpatch patch21_0,mem_patch21
+	call eeprom_store_remote_bdaddr
+	call eeprom_store_last_record_index
+	fetch 1,mem_record_bt_mode
+	beq REC_4_MODE,eeprom_store_rec_4_mode
+	beq REC_3_MODE,eeprom_store_link_key
+	rtn
+eeprom_store_rec_4_mode:
+	call eeprom_store_le_ltl
+	branch eeprom_store_le_local_addr
+	
+//
+eeprom_load_reconn_info:
+	set1 mark_ext_patch,mark
+	bpatch patch21_1,mem_patch21
+	call eeprom_load_reconn_bdaddr
+	fetch 1,mem_select_list_item
+	rtneq 0xff
+	fetch 6,mem_temp_lap
+	store 6,mem_hci_plap
+	fetch 1,mem_record_bt_mode
+	store 1,mem_xrecord_mode
+	beq REC_3_MODE,eeprom_load_rec_3_mode
+	beq REC_4_MODE,eeprom_load_rec_4_mode
+	rtn
+eeprom_load_reconn_bdaddr:
+	call eeprom_load_last_record_index
+	fetch 1,mem_select_list_item
+	rtneq 0xff
+	branch eeprom_load_remote_bdaddr
+eeprom_load_rec_3_mode:
+	call eeprom_load_link_key
+	branch check_link_key_load
+eeprom_load_rec_4_mode:
+	call eeprom_load_ltk_key
+	branch check_ltk_load
+eeprom_clear_bd_reconn_info:
+	call eeprom_load_bdaddr_list
+	disable user
+	call find_addr_from_bd_list
+	nbranch at_error_rev_end,user
+eeprom_clear_reconn_info_common:
+	fetcht 2,mem_list_item_ptr
+	increase -1,temp
+	setarg 0
+	istore 7,temp
+	arg 28,temp
+	arg mem_bdaddr_list_buff+7,rega
+	arg eeprom_bdaddr_list,regb
+	branch iicd_write_eep_data
+
+eeprom_clear_all_reconn_info:
+	set1 mark_ext_patch,mark
+	bpatch patch21_2,mem_patch21
+	arg mem_bdaddr_list_buff,contw
+	force 4,loopcnt
+	call memset0
+	arg 28,temp
+	arg mem_bdaddr_list_buff,rega
+	arg eeprom_bdaddr_list,regb
+	branch iicd_write_eep_data
+
+eeprom_erase_reconn_info:
+	set1 mark_ext_patch,mark
+	bpatch patch21_3,mem_patch21
+	setarg 0x0
+	store 3,mem_plap
+	istore 3,contw
+	branch eeprom_store_remote_bdaddr
+	
+eeprom_load_last_record_index:
+	arg 1,temp
+	arg mem_select_list_item,rega
+	arg eeprom_last_record,regb
+	branch iicd_read_eep_data
+
+eeprom_store_last_record_index:
+	arg 1,temp
+	arg mem_select_list_item,rega
+	arg eeprom_last_record,regb
+	branch iicd_write_eep_data
+
+
+eeprom_store_remote_bdaddr:
+	set1 mark_ext_patch,mark
+	bpatch patch21_4,mem_patch21
+	call eeprom_load_bdaddr_list
+	disable user
+	call find_addr_from_bd_list
+	rtn user
+eeprom_store_remote_addr_unfind:
+	jam 0,mem_select_list_item
+	fetch 6,mem_temp_lap
+	store 6,mem_bdaddr_list_buff+1
+	fetch 1,mem_record_bt_mode
+	store 1,mem_bdaddr_list_buff
+	arg 28,temp
+	arg mem_bdaddr_list_buff,rega
+	arg eeprom_bdaddr_list,regb
+	branch iicd_write_eep_data
+
+
+eeprom_store_le_local_addr:
+	arg 6,temp
+	arg mem_le_lap,rega
+	arg eeprom_le_reconn_local_addr,regb
+	branch iicd_write_eep_data
+	
+eeprom_load_le_loacal_addr:
+	arg 6,temp
+	arg mem_le_lap,rega
+	arg eeprom_le_reconn_local_addr,regb
+	branch iicd_read_eep_data
+
+
+eeprom_load_remote_bdaddr:
+	set1 mark_ext_patch,mark
+	bpatch patch21_5,mem_patch21
+	arg 7,temp
+	arg mem_temp_reconn_record,rega
+	arg eeprom_bdaddr_list,regb
+	fetch 1,mem_select_list_item
+	mul32 pdata,7,pdata
+	iadd regb,regb
+	branch iicd_read_eep_data
+
+eeprom_linkkey_addr:
+	arg 0x10,temp
+	arg eeprom_linkkey_list,regb
+	fetch 1,mem_select_list_item
+	lshift4 pdata,pdata
+	iadd regb,regb
+	rtn
+	
+eeprom_store_le_ltl:
+	arg mem_le_ltk,rega
+	branch eeprom_store_link_key_common
+eeprom_store_link_key:
+	arg mem_link_key,rega
+eeprom_store_link_key_common:
+	set1 mark_ext_patch,mark
+	bpatch patch21_6,mem_patch21
+	call eeprom_linkkey_addr
+	branch iicd_write_eep_data
+
+eeprom_load_ltk_key:
+	arg mem_le_ltk,rega
+	branch eeprom_load_link_key_common
+eeprom_load_link_key:
+	arg mem_link_key,rega
+eeprom_load_link_key_common:
+	set1 mark_ext_patch,mark
+	bpatch patch21_7,mem_patch21
+	call eeprom_linkkey_addr
+	branch iicd_read_eep_data
+
+
+	
+eeprom_load_bdaddr_list:
+	arg 28,temp
+	arg mem_bdaddr_list_buff+7,rega
+	arg eeprom_bdaddr_list,regb
+	branch iicd_read_eep_data
+
+find_addr_from_bd_list:
+	set1 mark_ext_patch,mark
+	bpatch patch22_0,mem_patch22
+	setarg mem_bdaddr_list_buff+7
+	store 2,mem_list_item_ptr
+	jam 0,mem_select_list_item
+	arg 4,loopcnt
+find_addr_from_list:
+	copy loopcnt,pdata
+	store 1,mem_pdatatemp
+	fetch 2,mem_list_item_ptr
+	copy pdata,rega
+	call find_addr_from_list_compare
+	rtn user
+	fetch 2,mem_list_item_ptr
+	increase 7,pdata
+	store 2,mem_list_item_ptr
+	fetch 1,mem_select_list_item
+	increase 1,pdata
+	store 1,mem_select_list_item
+	fetch 1,mem_pdatatemp
+	copy pdata,loopcnt
+	loop find_addr_from_list
+	rtn
+
+check_link_key_load:
+	fetch 8,mem_link_key
+	fetcht 8,mem_link_key+8
+	ior temp,pdata
+	rtn blank
+	jam 1,mem_link_key_exists
+	rtn
+check_ltk_load:
+	fetch 6,mem_hci_plap
+	rtn blank
+	jam 1,mem_ltk_exists
+	rtn
+
+find_addr_from_list_compare:
+	arg mem_temp_reconn_record,regb
+	arg 7,loopcnt
+	call string_compare
+	branch enable_usr,zero
+	rtn
+enable_usr:
+	enable user
+	rtn
+le_eeprom_load_reconn_info:
+	branch assert
+
+
+/* =============== GPIO CONTROL ================= */
+
+
+	//temp [4:0]=GPIO number, 0-31, 
+gpio_set_wake_by_current_state:
+	set1 mark_ext_patch,mark
+	bpatch patch22_1,mem_patch22
+	set1 7,temp
+	call gpio_get_bit
+	nsetflag true,7,temp
+	//branch gpio_set_wake
+	//fall through
+	
+	//temp [4:0]=GPIO number, 0-31, [7]=0, low active
+gpio_set_wake:
+	set1 mark_ext_patch,mark
+	bpatch patch22_2,mem_patch22
+	isolate0 7,temp
+	and temp,0x1f,queue
+	fetch 4,mem_gpio_wakeup_low
+	qsetflag true,pdata
+	store 4,mem_gpio_wakeup_low
+	fetch 4,mem_gpio_wakeup_high
+	nqsetflag true,pdata
+	store 4,mem_gpio_wakeup_high
+	rtn
+	
+	//temp [4:0]=GPIO number, 0-31, [7]=0, low active
+gpio_clr_wake:
+	set1 mark_ext_patch,mark
+	bpatch patch22_3,mem_patch22
+	isolate0 7,temp
+	and temp,0x1f,queue
+	fetch 4,mem_gpio_wakeup_low
+	qset0 pdata
+	store 4,mem_gpio_wakeup_low
+	fetch 4,mem_gpio_wakeup_high
+	qset0 pdata
+	store 4,mem_gpio_wakeup_high
+	rtn
+
+
+gpio_config_input_nowake:
+	call gpio_clr_wake
+	branch gpio_config_input_without_wake
+
+	//temp [4:0]=GPIO number, 0-31, [7]=0, low active
+gpio_config_input:
+	ncall gpio_set_wake,wake
+
+gpio_config_input_without_wake:
+	arg core_gpio_pd0,contw
+	call gpio_set_bit
+	setflip gpio_active_bit,temp
+	arg core_gpio_pu0,contw
+	call gpio_set_bit
+	set0 gpio_active_bit,temp
+	arg core_gpio_oe0,contw
+	branch gpio_set_bit
+	
+	//temp [4:0]=GPIO number, 0-31, [7]=0, low active. set gpio to inactive state
+gpio_config_output:	
+	setflip gpio_active_bit,temp
+	call gpio_out
+	set1 gpio_active_bit,temp
+	arg core_gpio_oe0,contw
+	branch gpio_set_bit
+	
+gpio_common:
+	and temp,0x07,queue
+	rshift3 temp,pdata
+	and_into 3,pdata
+	iadd contw,contw
+	ifetch 1,contw
+	rtn
+
+	
+	/* temp is gpio number, return true if gpio active */
+gpio_get_bit:
+	arg core_gpio_in,contw
+	call gpio_common
+	isolate1 gpio_active_bit,temp
+	branch gpio_get_bit_reverse,true
+	qisolate0 pdata
+	rtn
+gpio_get_bit_reverse:
+	qisolate1 pdata
+	rtn
+
+gpio_out_inactive:
+	isolate1 7,null
+	branch gpio_out_flag
+
+gpio_out_active:
+	isolate0 7,null
+
+	/* temp is gpio number,  [7]=1,set out equa true flag if gpio active */
+gpio_out_flag:
+	setarg 0
+	nsetflag true,gpio_active_bit,pdata
+	ixor temp,temp
+	
+	/* temp is gpio number,0-31, [7]=out bit value */
+gpio_out:
+	arg core_gpio_out0,contw
+
+	//temp [4:0]=GPIO number, 0-31, [7]=bit value; contw is gpio reg base
+gpio_set_bit:
+	call gpio_common
+	isolate1 gpio_active_bit,temp
+	qsetflag true,pdata
+	istore 1,contw
+	rtn
+
+gpio_test:
+	fetch 1,mem_seqi
+	rtneq 0x7f
+	hjam 0,core_gpio_out3
+	nop 30
+	hjam 8,core_gpio_out3
+	rtn
+
+
+/* ===================== PWM ======================= */
+
+set_pwm_blink:
+	lshift8 pdata,pdata
+	lshift4 pdata,pdata
+	hstore 2,core_pwm_ncnt0
+	hstore 2,core_pwm_pcnt0
+	rtn
+
+set_pwm_steadyon:
+	setarg 0
+	hstore 2,core_pwm_ncnt0
+	setarg 1
+	hstore 2,core_pwm_pcnt0
+	rtn
+
+set_pwm_off:
+	setarg 0
+	hstore 2,core_pwm_ncnt0
+	hstore 2,core_pwm_pcnt0
+	rtn
+
+	
+/* ===================== CODEC ======================= */
+
+init_filter_ram:
+ifdef COMPILE_HCI_BCSP
+	arg 0x8800,contw
+	arg 0x20,loopcnt
+	call memset0
+	setarg 0x4f9
+	hstore 2,0x8848
+	hstore 2,0x884a
+	hstore 2,0x884c
+	hstore 2,0x886c
+	hstore 2,0x888c
+	hstore 2,0x88ac
+	setarg 0x204
+	hstore 2,0x88ae
+	setarg 0x0506
+	hstore 2,0x88b0
+	setarg 0x0504
+	hstore 2,0x88b2
+	setarg 0x0200
+	hstore 2,0x88b4
+	setarg 0xFEFB
+	hstore 2,0x88b6
+	setarg 0xFAF9
+	hstore 2,0x88b8
+	setarg 0xFAFB
+	hstore 2,0x88ba
+	setarg 0xFD00
+	hstore 2,0x88bc
+	setarg 0x0408
+	hstore 2,0x88be
+	setarg 0x0A0C
+	hstore 2,0x88c0
+	setarg 0x0B09
+	hstore 2,0x88c2
+	setarg 0x0500
+	hstore 2,0x88c4
+	setarg 0xF8F1
+	hstore 2,0x88c6
+	setarg 0xECE8
+	hstore 2,0x88c8
+	setarg 0xE9EB
+	hstore 2,0x88ca
+	setarg 0xF500
+	hstore 2,0x88cc
+	setarg 0x1223
+	hstore 2,0x88ce
+	setarg 0x374B
+	hstore 2,0x88d0
+	setarg 0x5E71
+	hstore 2,0x88d2
+	setarg 0x787F
+	hstore 2,0x88d4
+endif
+	rtn
+
+enable_pcm:
+	set1 mark_ext_patch,mark
+	bpatch patch22_4,mem_patch22
+	hfetch 2,core_clkoff
+	set0 CLOCK_OFF_CODEC,pdata
+	hstore 2,core_clkoff
+	hjam 0x11,core_enc_ctrl
+	hjam 0x1,core_cvsd_ctrl
+	hjam 0x1,core_codec_ctrl
+	hjam 0x11,core_dec_ctrl
+	rtn
+
+disable_pcm:
+	set1 mark_ext_patch,mark
+	bpatch patch22_5,mem_patch22
+	hfetch 2,core_clkoff
+	set1 CLOCK_OFF_CODEC,pdata
+	hstore 2,core_clkoff
+	hjam 0x4,core_enc_ctrl
+	hjam 0x4,core_dec_ctrl
+	hjam 0x0,core_cvsd_ctrl
+	hjam 0x0,core_codec_ctrl
+	rtn
+
+
+
+get_sco_data:
+	fetch 1,mem_state
+	rtnbit0 state_insco
+	arg mem_sco_obuf,contw
+	arg 30,loopcnt
+get_sco_data_loop:
+	hfetch 1,core_pcminfifo
+	istore 1,contw
+	loop get_sco_data_loop
+	rtn
+	
+
+process_sco_data:
+	fetch 1,mem_state
+	rtnbit0 state_insco
+	arg mem_sco_ibuf,contr
+	force 30,loopcnt
+process_sco_loop:
+	ifetch 1,contr
+	hstore 1,core_pcmoutfifo
+	loop process_sco_loop
+	rtn
+
+init_sched:
+	rtn
+
+
+
+/* ===================== sniff GPIO CONTROL ======================= */
+gpio_cfg_uart_tx_output:
+	call gpio_uart2gpio
+	arg UART_WAKEUP_TX,temp
+	branch gpio_config_output
+
+gpio_pu_uart_tx:
+	call gpio_cfg_uart_tx_output
+	arg UART_WAKEUP_TX,temp
+	branch gpio_out_inactive
+
+gpio_pd_uart_tx:
+	call gpio_cfg_uart_tx_output
+	arg UART_WAKEUP_TX,temp
+	branch gpio_out_active
+
+gpio_cfg_uart_rx_output:
+	call gpio_uart2gpio
+	arg UART_WAKEUP_RX,temp
+	branch gpio_config_output
+
+gpio_pu_uart_rx:
+	call gpio_cfg_uart_rx_output
+	arg UART_WAKEUP_RX,temp
+	branch gpio_out_inactive
+
+gpio_pd_uart_rx:
+	call gpio_cfg_uart_rx_output
+	arg UART_WAKEUP_RX,temp
+	branch gpio_out_active
+
+gpio_tx_config_input_with_pu:
+	call gpio_uart2gpio
+	hfetch 1, core_gpio_pu0
+	set1 UART_WAKEUP_TX,pdata
+	hstore 1,core_gpio_pu0
+	arg UART_WAKEUP_TX,temp
+	branch gpio_config_input
+
+gpio_rx_config_input_with_pu:
+	call gpio_uart2gpio
+	hfetch 1, core_gpio_pu0
+	set1 UART_WAKEUP_RX,pdata
+	hstore 1,core_gpio_pu0
+	arg UART_WAKEUP_RX,temp
+	branch gpio_config_input
+	
+gpio_gpio2uart:
+	hfetch 1,core_gpio_sel1
+	or_into 0x04,pdata
+	hstore 1,core_gpio_sel1
+	rtn
+
+gpio_uart2gpio:
+	hfetch 1,core_gpio_sel1
+	and_into 0xfb,pdata
+	hstore 1,core_gpio_sel1
+	rtn
+
+gpio_check_uart_state:
+	hfetch 1,core_gpio_sel1
+	isolate1 2,pdata
+	rtn
+	
Index: btkb/program/prcp.prog
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/btkb/program/prcp.prog	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/btkb/program/prcp.prog	(working copy)
@@ -0,0 +1,297 @@
+
+ifdef COMPILE_PRCP
+prcp_init:
+	setarg prcp_process
+	store 2,mem_cb_att_write
+	rtn
+prcp_process:
+	call clear_prcp_sendbuff
+	fetch 1,mem_prcp
+	beq PRCP_LE,le_prcp
+	beq PRCP_SSP,prcp
+	branch assert
+le_prcp:
+	arg PRCP_RX_LE,temp
+	storet 2,mem_le_notify_handle
+	call le_att_get_handle_ptr
+	ifetch 1,contr
+	call prcp_parse
+	branch prcp_le_tx
+prcp:
+	call prcp_parse
+	branch prcp_tx
+prcp_parse:
+	copy contr,rega
+	set1 mark_ext_patch,mark
+	bpatch patch26_1,mem_patch26
+	ifetch 1,contr
+	beq COMMON_RES,prcp_parse_common_res
+	beq READ_REGISTERS_REQ,prcp_parse_read_registers_req
+	beq READ_REGISTERS_RES,prcp_parse_read_registers_res
+	beq WRITE_REGISTERS_REQ,prcp_parse_write_registers_req
+	beq I2C_CONFIG_REQ,prcp_parse_i2c_config_req
+	beq I2C_READ_REQ,prcp_parse_i2c_read_req
+	beq I2C_READ_RES,prcp_parse_i2c_read_res
+	beq I2C_WRITE_REQ,prcp_parse_i2c_write_req
+	beq SPI_CONFIG_REQ,prcp_parse_spi_config_req
+	beq SPI_READ_REQ,prcp_parse_spi_read_req
+	beq SPI_READ_RES,prcp_parse_spi_read_res
+	beq SPI_WRITE_REQ,prcp_parse_spi_write_req
+	beq PWM_CONFIG_REQ,prcp_parse_pwm_config_req
+	beq PWM_WRITE_REQ,prcp_parse_pwm_write_req
+	beq GPIO_CONFIG_REQ,prcp_parse_gpio_config_req
+	beq GPIO_READ_REQ,prcp_parse_gpio_read_req
+	beq GPIO_READ_RES,prcp_parse_gpio_read_res
+	beq GPIO_WRITE_REQ,prcp_parse_gpio_write_req
+	beq OTA_WRITE_REQ,prcp_parse_ota_write_req
+	beq OTA_END_CMD,prcp_parse_ota_end_cmd
+	rtn
+
+
+prcp_parse_common_res:
+	copy rega,contr
+    	ifetch 1,contr
+    	lshift8 pdata,pdata
+    	store 3,mem_prcp_data
+	rtn
+prcp_parse_read_registers_req:
+	rtn
+prcp_parse_read_registers_res:
+	rtn
+prcp_parse_write_registers_req:
+	rtn
+/*********************************************/
+/************** prcp_spi********************/
+/*********************************************/
+prcp_parse_spi_config_req:
+	rtn
+prcp_parse_spi_read_req:
+	rtn
+prcp_parse_spi_read_res:
+	rtn
+prcp_parse_spi_write_req:
+	rtn
+/***********************************************/
+/************** prcp_pwm********************/
+/***********************************************/
+prcp_parse_pwm_config_req:
+	ifetch 4,contr
+	hstore 1,core_gpio_sel2
+	rshift8 pdata,pdata
+	hfetcht 1,core_gpio_sel1
+	and_into 0x7f,temp
+	ior temp,temp
+	hstoret 1,core_gpio_sel1
+	rshift8 pdata,pdata
+	hfetcht 1,core_clkoff+1
+	and_into 0xdf,temp
+	ior temp,temp
+	hstoret 1,core_clkoff+1
+	rshift8 pdata,pdata
+	hfetcht 1,core_clksel
+	and_into 0x3f,temp
+	ior temp,temp
+	hstoret 1,core_clksel
+	branch prcp_parse_common_res
+prcp_parse_pwm_write_req:
+	ifetch 9,contr
+    hfetcht 1,core_gpio_key2//PWM_enable
+    and_into 0x3f,temp
+	ior temp,temp
+	hstoret 1,core_gpio_key2
+	rshift8 pdata,pdata
+	hstore 2,core_pwm_pcnt0
+	rshift16 pdata,pdata
+	hstore 2,core_pwm_ncnt0
+	rshift16 pdata,pdata
+	hstore 2,core_pwm_pcnt1
+	rshift16 pdata,pdata
+	hstore 2,core_pwm_ncnt1
+	branch prcp_parse_common_res
+/**********************************************/
+/************** prcp_gpio********************/
+/***********************************************/
+prcp_parse_gpio_config_req:
+	ifetch 4,contr
+    	hstore 4,core_gpio_oe0
+    	ifetch 4,contr
+    	hstore 4,core_gpio_pu0
+   	ifetch 4,contr
+    	hstore 4,core_gpio_pd0
+    	ifetch 1,contr
+    	hstore 1,core_gpio_sel
+    	ifetch 1,contr
+    	hstore 1,core_gpio_sel1
+  	ifetch 1,contr
+    	hstore 1,core_gpio_sel2
+    	branch prcp_parse_common_res
+prcp_parse_gpio_read_req:
+	branch prcp_parse_gpio_read_res
+prcp_parse_gpio_read_res:
+	jam 0x10,mem_prcp_data
+    	arg mem_prcp_data+1,contw
+   	hfetch 4,core_gpio_out0
+    	istore 4,contw
+    	hfetch 4,core_gpio_in
+    	istore 4,contw
+    	rtn
+prcp_parse_gpio_write_req:
+	ifetcht 1,contr
+    	ifetch 1,contr
+   	lshift3 pdata,pdata
+   	lshift4 pdata,pdata
+   	ior temp,temp
+  	call gpio_out
+    	branch prcp_parse_common_res
+
+/*********************************************/
+/************** prcp_i2c********************/
+/*********************************************/
+prcp_parse_i2c_read_req:
+	ifetcht 1,contr
+	hstoret 1,iic_slave_addr
+	ifetch 1,contr
+	compare 1,pdata,0xff
+	ifetch 1,contr
+	hstore 1,iic_fifo
+	branch iic_read_data_len,true
+	ifetch 1,contr
+	hstore 1,iic_fifo
+iic_read_data_len:
+	ifetch 1,contr
+	copy pdata,loopcnt
+	increase -1,pdata
+	or_into 0x90,pdata
+	hstore 1,iic_ctr//read byte
+	hjam 2,iic_cr//
+	nop 1
+	//call iic_wait
+	arg mem_prcp_data ,contw
+iic_read_loop:
+	hfetch 1,iic_fifo
+	istore 1,contw
+	loop iic_read_loop
+	rtn
+
+clear_prcp_sendbuff:
+	setarg 0
+	store 4,mem_prcp_data
+	istore 8,contw
+	istore 8,contw
+	rtn
+	
+/*********************************************/
+/************** prcp_ota********************/
+/* rxbuf:[0]head,[1-2]offset,[3]len,[4-19]data]*/
+//rega points to rxbuf
+prcp_parse_ota_write_req:
+        copy rega,pdata//copy contr,pdata
+        increase 1,pdata//
+        store 2,rx_buf_data_ptr
+        fetch 2, mem_eeprom_ota_base_addr
+        beq 0x0000,prcp_parse_ota_start1
+prcp_parse_ota_load:    
+        fetch 2, mem_eeprom_ota_base_addr
+        fetcht 2,rx_buf_data_ptr
+        ifetcht 2,temp
+        iadd temp,pdata
+        fetcht 2,rx_buf_data_ptr
+        increase 2,temp
+        copy temp,contr
+        ifetcht 1,contr  // data_len =>temp 
+        copy contr,rega //data_buf to rega
+        branch iicd_write_ota_data 
+
+prcp_parse_ota_start1:   /*compute the bytes of code*/    
+	setarg 0x0002
+	byteswap pdata,pdata
+	store 2,mem_addr_mi
+	arg iicd_read_eep,regc
+	arg 0x2,loopcnt
+prcp_parse_ota_loop1:
+         call get_block_header
+	nbranch prcp_parse_ota_start2, zero
+	fetch 2,mem_addr_mi
+	byteswap pdata,pdata
+	iadd temp,pdata
+	store 2,mem_eeprom_ota_base_addr
+	byteswap pdata,pdata
+	store 2,mem_addr_mi
+	loop prcp_parse_ota_loop1
+prcp_parse_ota_start2: /*compute the bytes of init-mem*/  
+	fetch 2, mem_eeprom_ota_base_addr
+	byteswap pdata,pdata
+	store 2,mem_addr_mi
+	arg iicd_read_eep,regc
+	arg 0xffff,loopcnt
+prcp_parse_ota_loop2:
+         call get_block_header
+	nbranch prcp_parse_ota_load, zero
+	fetch 2,mem_addr_mi
+	byteswap pdata,pdata
+	iadd temp,pdata
+	increase 2,pdata
+	store 2,mem_eeprom_ota_base_addr
+	byteswap pdata,pdata
+	store 2,mem_addr_mi
+	loop prcp_parse_ota_loop2
+
+prcp_parse_ota_end_cmd:  /*end of ota*/
+         fetch 2,mem_eeprom_ota_base_addr
+         increase 2,pdata
+         byteswap pdata,pdata
+         store 2,mem_eeprom_ota_base_addr
+	arg mem_eeprom_ota_base_addr,rega  
+         arg 0x02,temp  
+         arg  0x0000,pdata
+         call  iicd_write_ota_data
+         setarg 0x0000
+         store 2,mem_eeprom_ota_base_addr
+	rtn
+
+prcp_parse_i2c_config_req:
+	rtn
+prcp_parse_i2c_read_res:
+	rtn
+prcp_parse_i2c_write_req:
+	rtn	
+	
+	
+else
+prcp_init:
+prcp_process:
+le_prcp:
+prcp:
+prcp_parse:
+prcp_parse_common_res:
+prcp_parse_read_registers_req:
+prcp_parse_read_registers_res:
+prcp_parse_write_registers_req:
+prcp_parse_spi_config_req:
+prcp_parse_spi_read_req:
+prcp_parse_spi_read_res:
+prcp_parse_spi_write_req:
+prcp_parse_pwm_config_req:
+prcp_parse_pwm_write_req:
+prcp_parse_gpio_config_req:
+prcp_parse_gpio_read_req:
+prcp_parse_gpio_read_res:
+prcp_parse_gpio_write_req:
+prcp_parse_i2c_read_req:
+iic_read_data_len:
+iic_read_loop:
+prcp_parse_i2c_config_req:
+prcp_parse_i2c_read_res:
+prcp_parse_i2c_write_req:
+clear_prcp_sendbuff:
+prcp_parse_ota_write_req:
+prcp_parse_ota_load: 
+prcp_parse_ota_start1: 
+prcp_parse_ota_loop1:
+prcp_parse_ota_start2:
+prcp_parse_ota_loop2:
+prcp_parse_ota_end_cmd:
+
+	branch assert
+endif
+
Index: btkb/program/rfcomm.prog
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/btkb/program/rfcomm.prog	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/btkb/program/rfcomm.prog	(working copy)
@@ -0,0 +1,846 @@
+
+ifdef COMPILE_RFCOMM
+rfcomm_init:
+	rtn wake
+	jam 0,mem_rfcomm_send_more_pkt
+	jam BITS9600,memRemoteRPNBitRate        
+	jam DATABITS8,memRemotePRNDataBits      
+	jam 0x11,memRemotePRNXon
+	jam 0x13,memRemotePRNXoff
+	setarg 0
+	store 3,memRemotePRNStopBit
+	store 1,mem_spp_state                  
+	jam 0,memui_reconnect_mode
+	//branch rfcomm_init_spp
+rfcomm_init_spp:
+	set1 mark_ext_patch,mark
+	bpatch patch37_7,mem_patch37
+	setarg 0
+	store 1,mem_spp_state
+	store 1,mem_remote_spp_channel
+	store 1,mem_pn_dlci
+	jam 0x50,mem_credit_given
+	rtn
+
+set_CR_bit:
+	or_into 0x02,temp
+	rtn
+
+
+/*below added by koufan*/
+
+/*rfcomm_send */
+
+
+
+	/*rfcomm_calculate_FCS_sabm*/
+	/*input: address in temp*/
+	/*output: FCS in pdata  */
+rfcomm_calculate_FCS_sabm:
+	copy temp,pdata
+	reverse pdata,pdata //address
+	store 1,memFCStemp3
+	force INI_TX_SABM,pdata
+	reverse pdata,pdata
+	store 1,memFCStemp2
+	force 0x01,pdata                        
+	reverse pdata,pdata
+	store 1,memFCStemp1
+	call caculate_fcs
+	copy temp,pdata                        
+	rtn
+rfcomm_calculate_FCS_ua:
+	reverse pdata,pdata //address
+	store 1,memFCStemp3
+	force   RSP_TX_UA, pdata
+	reverse pdata, pdata
+	store   1, memFCStemp2
+	force   0x01, pdata
+	reverse pdata, pdata
+	store   1, memFCStemp1
+	branch caculate_fcs
+	/* FCS return from temp                */
+rfcomm_calculate_FCS_dlci0:
+	fetch 1,mem_rfcomm_initiator
+	branch rfcomm_calculate_FCS_dlci0_res,blank
+	setarg 0x70 //FCS of initiator
+	rtn
+rfcomm_calculate_FCS_dlci0_res:
+	setarg 0xaa//FCS of responder
+	rtn
+	
+rfcomm_save_FCS_uih:
+	reverse pdata, pdata //address 
+	store 1,memFCStemp3                     /* contw distroided                    */
+	force RSP_RX_UIH,pdata 
+	call caculate_UIHdata_fcs
+	fetcht 2,mem_contw_temp
+	copy temp,contw
+	istore 1,contw                      /* save FCS for later use              */
+	copy contw,temp
+	storet 2,mem_contw_temp
+	force RSP_RX_UIH_WDATA,pdata             /* P/F =1 + RSP_RX_UIH                 */
+	call caculate_UIHdata_fcs
+	fetcht 2,mem_contw_temp
+	copy temp,contw
+	istore 1,contw             /* save FCS for later use              */
+	rtn	
+/**********************************************************************/
+/* This subroutine caculates the FCS for UIH data                     */
+/* Input:                                                             */
+/*        the address byte at memFCStemp3(bit reversed), control byte */
+/*        at pdata (not bit reversed)                                 */
+/* Output:                                                            */
+/*        pdata: the FCS                                              */
+/**********************************************************************/  
+caculate_UIHdata_fcs:
+	reverse pdata,pdata
+	store   1,memFCStemp2
+	fetch   2, memFCStemp2                     
+	lshift8 pdata,pdata
+	store 3,mem_mod2div_temp
+	arg     0x107,rega
+	arg 0xf,regb
+	call mod2div
+	xor_into     0xd7, pdata
+	invert  pdata,pdata
+	reverse pdata,pdata
+	rtn
+	
+/**********************************************************************/
+/* This subroutine caculates the FCS                                  */
+/* Input:                                                             */
+/*        the address byte at memFCStemp3, control byte at memFCStemp2*/  
+/*        lenght at memFCStemp1 (all above data are bit reversed)     */
+/* Output:                                                            */
+/*        temp: the FCS                                               */
+/**********************************************************************/     
+caculate_fcs:
+	fetch 3, memFCStemp1                    /* load 3 bytes start at memFCStemp1   */
+	store 3,mem_mod2div_temp
+	arg 0x107,rega
+	arg 0xf,regb  //24bit(memFCStemp1+..+memFCStemp3) - 9bit(rega) = 15bit
+	call mod2div
+	lshift8 pdata,pdata 
+	arg 0x7, regb  //16bit(lshift8 pdata,pdata ) - 9bit(rega) = 7bit
+	call mod2div
+	xor_into     0x2b, pdata		//0x3d
+	invert  pdata, pdata                        
+	reverse pdata, pdata                      /* FCS at pdata                        */
+	copy    pdata, temp
+	rtn
+
+mod2div:
+	arg 0,regc
+	copy regb,loopcnt
+	call right_shift_n // right shift pdata (regb)bit
+	icopy temp
+mod2div_loop:
+	//jam 1,0x1fff
+//mod2div_loop1:
+	//fetch 1,0x1fff
+	//nbranch mod2div_loop1,blank
+	copy temp,pdata
+	lshift regc,regc//quotient
+	bbit0 8, mod2div_not_enough_reduction//the high bit of 0x107
+	ixor rega,temp// temp----remainer
+	increase 1,regc// quotient
+mod2div_not_enough_reduction: //Minuend smaller than Subtrahend
+	lshift temp,temp
+	fetch 3,mem_mod2div_temp
+	increase -1,regb
+	compare 0xff,regb,0xff
+	branch mod2div_end,true
+	copy regb,loopcnt
+	call right_shift_n // right shift pdata (regb)bit
+	isolate1 0,pdata
+	setflag true,0,temp //move a new bit from Dividend(queue) into Minuend(pdata)
+	branch mod2div_loop
+mod2div_end:
+	//output:remainer in pdata
+	rshift  temp,pdata
+	rtn
+
+get_rfcomm_snd_adss:
+	fetcht 1,mem_pn_dlci
+dlci_to_address_cmd:
+	//input DLCI from temp
+	lshift2 temp,temp
+	set1 RFCOMM_ADDRESS_EXT_LEN,temp
+	fetch 1,mem_rfcomm_initiator
+	ncall set_CR_bit,blank
+	storet 1,mem_rfcomm_send_adss
+	rtn
+
+dlci_to_address_res:
+	//input DLCI from temp
+	lshift2 temp,temp
+	set1 RFCOMM_ADDRESS_EXT_LEN,temp
+	fetch 1,mem_rfcomm_initiator
+	call set_CR_bit,blank
+	rtn
+channel_to_dlci:
+	//input channel from temp
+	lshift temp,temp
+	fetch 1,mem_rfcomm_initiator
+	setflag blank,0,temp //direction in dlci
+	//output dlci to temp
+	rtn
+rfcomm_rx_process_DLCI0_sabm:
+	fetcht 1,mem_current_channel //address
+	jam 0xd7,mem_current_fcs //FCS
+	call rfcomm_send_ua
+	fetch 1,mem_rfcomm_state
+	set1 L2CAP_CHANNEL_RFCOMM_ONLY_SABM,pdata
+	set1 L2CAP_CHANNEL_RFCOMM_ONLY_UA,pdata
+	store 1,mem_rfcomm_state
+	jam 0,mem_rfcomm_initiator
+	branch rfcomm_rx_process_end
+rfcomm_rx_process_DLCI0_ua:
+	fetch 1,mem_rfcomm_state
+	set1 L2CAP_CHANNEL_RFCOMM_ONLY_UA,pdata
+	store 1,mem_rfcomm_state
+	branch rfcomm_rx_process_end
+
+	
+rfcomm_rx_process:
+	set1 mark_ext_patch,mark
+	bpatch patch38_0,mem_patch38
+	fetch 1,memui_reconnect_mode
+	beq NO_RECONNECTION,rfcomm_rx_process_remote_page
+	branch rfcomm_rx_process_reconn
+
+rfcomm_rx_process_remote_page:
+	fetch 2,mem_l2cap_payload_ptr
+	copy pdata,contr
+	call get_rfcomm_head_struct
+	fetch 1,mem_current_channel
+	beq 0,parse_dlci0_rp
+	branch parse_uih_rp
+parse_dlci0_rp:
+	set1 mark_ext_patch,mark
+	bpatch patch38_1,mem_patch38
+	fetch 1,mem_current_frame_type
+	beq RFCOMM_FRAME_TYPE_SABM,rfcomm_rx_process_DLCI0_sabm
+	beq RFCOMM_FRAME_TYPE_UA,rfcomm_rx_process_DLCI0_ua
+	beq RFCOMM_FRAME_TYPE_UIH,parse_DLCI0_rp_uih
+	rtneq RFCOMM_FRAME_TYPE_DISCONN
+	branch assert
+
+
+parse_DLCI0_rp_uih:
+	fetch 2,mem_rfcomm_uih_payload_ptr
+	copy pdata,contr
+	call get_rfcomm_uih_head_struct
+	fetch 1,mem_uih_cmd_type
+	beq UIH_PARAM_NEG_CMD,parse_DLCI0_rp_uih_pn_cmd
+	beq UIH_PARAM_NEG_RES,parse_DLCI0_rp_uih_pn_res
+	beq UIH_MODEM_STATUS_CMD,parse_DLCI0_rp_uih_ms_cmd
+	beq UIH_MODEM_STATUS_RES,parse_DLCI0_rp_uih_ms_res
+	branch rfcomm_rx_process_end
+	
+parse_DLCI0_rp_uih_pn_cmd:
+	call parse_DLCI0_rp_uih_pn_res_common
+	fetch 1,mem_pn_dlci
+	rshift pdata,pdata
+	sub pdata,SPP_SLAVE_CHANNEL,null
+	branch parse_DLCI0_rp_uih_pn_cmd_spp,zero
+	branch assert
+parse_DLCI0_rp_uih_pn_cmd_spp:
+	fetch 1,mem_spp_state
+	set1 RFCOMM_CHANNEL_STATE_PN_CMD,pdata
+	set1 RFCOMM_CHANNEL_STATE_PN_RES,pdata
+	store 1,mem_spp_state
+	call rfcomm_send_param_neg_res
+	branch rfcomm_rx_process_end
+	
+parse_DLCI0_rp_uih_pn_res:
+	call parse_DLCI0_rp_uih_pn_res_common
+	branch rfcomm_rx_process_end
+
+parse_DLCI0_rp_uih_pn_res_common:
+	call get_param_payload_ptr
+	branch  get_rfcomm_prarmer_negotiation
+
+get_rfcomm_param_modem_status:
+	call get_param_payload_ptr
+	ifetch 1,contr
+	rshift3 pdata,pdata
+	store 1,mem_ms_channel
+	ifetch 1,contr
+	store 1,mem_ms_param
+	rtn
+
+
+get_rfcomm_head_struct:
+	ifetch 1,contr
+	store 1,mem_current_adss
+	rshift3 pdata,pdata
+	store 1,mem_current_channel
+	ifetch 1,contr
+	store 1,mem_current_frame_type
+get_rfcomm_current_length:
+	call get_rfcomm_length_common
+	storet 2,mem_current_length
+	copy contr,pdata
+	store 2,mem_rfcomm_uih_payload_ptr
+	rtn
+
+get_rfcomm_uih_head_struct:
+	ifetch 1,contr
+	rshift pdata,pdata
+	store 1,mem_uih_cmd_type
+	call get_rfcomm_length_common
+	storet 2,mem_uih_length
+	copy contr,pdata
+	store 2,mem_param_payload_ptr
+	rtn
+
+
+get_param_payload_ptr:
+	fetch 2,mem_param_payload_ptr
+	copy pdata,contr
+	rtn
+
+get_rfcomm_param_length_common:
+	fetch 2,mem_param_payload_ptr
+	copy pdata,contr
+get_rfcomm_length_common:
+	ifetch 1,contr
+	copy pdata,temp
+	rshift temp,temp
+	rtnbit1 0
+	ifetch 1,contr
+	lshift3 pdata,pdata
+	lshift4 pdata,pdata
+	iadd temp,temp
+	rtn
+
+get_rfcomm_prarmer_negotiation:
+	ifetch 1,contr
+	store 1,mem_pn_dlci
+	ifetch 1,contr
+	store 1,mem_pn_credit_flow_type_info
+	ifetch 1,contr
+	store 1,mem_pn_priority
+	ifetch 1,contr
+	store 1,mem_pn_acknowledg_timer
+	ifetch 2,contr
+	store 2,mem_pn_max_frame_size
+	ifetch 1,contr
+	store 1,mem_pn_max_retrans
+	ifetch 1,contr
+	store 1,mem_remote_credits
+	rtn
+
+
+parse_DLCI0_rp_uih_ms_cmd:
+	call get_rfcomm_param_modem_status
+	fetch 1,mem_ms_channel
+	sub pdata,1,null
+	branch parse_DLCI0_rp_uih_ms_cmd_spp,zero
+	branch assert
+parse_DLCI0_rp_uih_ms_cmd_spp:
+	fetch 1,mem_spp_state
+	set1 RFCOMM_CHANNEL_STATE_RCV_MS_CMD,pdata
+	set1 RFCOMM_CHANNEL_STATE_SND_MS_RES,pdata
+	store 1,mem_spp_state
+	fetcht 1,mem_pn_dlci
+	lshift2 temp,temp
+	or_into 3,temp
+	call rfcomm_send_modem_status_res
+	jam MORE_PKT_MSC_CMD_SPP,mem_rfcomm_send_more_pkt
+	branch rfcomm_rx_process_end
+	
+parse_DLCI0_rp_uih_ms_res:
+	call get_rfcomm_param_modem_status
+	fetch 1,mem_ms_channel
+	sub pdata,1,null
+	branch parse_DLCI0_rp_uih_MS_RES_spp,zero
+	branch assert
+parse_DLCI0_rp_uih_ms_res_spp:
+	fetch 1,mem_spp_state
+	set1 RFCOMM_CHANNEL_STATE_RCV_MS_RES,pdata
+	store 1,mem_spp_state
+	branch rfcomm_rx_process_end
+
+parse_uih_rp:
+	fetch 1,mem_current_channel
+	sub pdata,SPP_SLAVE_CHANNEL,null
+	branch parse_uih_rp_spp,zero
+	branch assert
+parse_uih_rp_spp:
+	fetch 1,mem_current_frame_type
+	beq RFCOMM_FRAME_TYPE_UA,parse_uih_rp_spp_ua
+	beq RFCOMM_FRAME_TYPE_SABM,parse_uih_rp_spp_sabm
+	beq RFCOMM_FRAME_TYPE_UIH,parse_uih_spp_uih
+	beq RFCOMM_FRAME_TYPE_UIH_CREDITS,parse_uih_spp_uih_credits
+	beq RFCOMM_FRAME_TYPE_DISCONN,parse_uih_rp_spp_disconn
+	branch assert
+parse_uih_rp_spp_ua:
+	fetch 1,mem_spp_state
+	set1 RFCOMM_CHANNEL_STATE_UA,pdata
+	store 1,mem_spp_state
+	branch rfcomm_rx_process_end
+parse_uih_rp_spp_sabm:
+	fetch 1,mem_spp_state
+	set1 RFCOMM_CHANNEL_STATE_UA,pdata
+	set1 RFCOMM_CHANNEL_STATE_SABM,pdata
+	store 1,mem_spp_state
+	fetch 1,mem_current_adss
+	call rfcomm_calculate_FCS_ua
+	store 1,mem_current_fcs
+	call rfcomm_send_ua
+	fetch 1,mem_current_adss
+	rshift2 pdata,pdata
+	store 1,mem_pn_dlci
+	lshift2 pdata,pdata
+	set0 RFCOMM_ADDRESS_CR,pdata
+	set1 RFCOMM_ADDRESS_EXT_LEN,pdata 
+	arg mem_HIUfcs_spp,temp // mem_HIUfcs_HF_WCredits in regb++
+	storet 2,mem_contw_temp
+	call rfcomm_save_FCS_uih
+	branch rfcomm_rx_process_end
+	
+parse_uih_spp_uih_credits:
+	fetch 2,mem_rfcomm_uih_payload_ptr
+	copy pdata,contr
+	increase 1,pdata
+	store 2,mem_rfcomm_uih_payload_ptr
+	ifetch 1,contr //remote credits
+	fetcht 1,mem_remote_credits
+	iadd temp,pdata
+	store 1,mem_remote_credits
+parse_uih_spp_uih:
+	call rfcomm_increase_credit_given
+parse_uih_spp_uih_cont:
+	call get_rfcomm_snd_adss
+	call rfcomm_send_uih_without_payload
+	call spp_process_rx_data
+	branch rfcomm_rx_process_end
+	
+parse_uih_rp_spp_disconn:
+	call rfcomm_init_spp
+	fetch 1,mem_current_adss
+	call rfcomm_calculate_FCS_ua
+	store 1,mem_current_fcs
+	call rfcomm_send_ua
+	branch rfcomm_rx_process_end
+	
+///////////////////////////////////////////
+///////////////////////////////////////////
+///////////////////////////////////////////
+rfcomm_rx_process_reconn:
+	fetch 2,mem_l2cap_payload_ptr
+	copy pdata,contr
+	call get_rfcomm_head_struct
+	fetch 1,mem_current_channel
+	beq 0,parse_DLCI0_reconn
+	branch parse_uih_reconn
+		
+parse_DLCI0_reconn:
+	set1 mark_ext_patch,mark
+	bpatch patch38_2,mem_patch38
+	fetch 1,mem_current_frame_type
+	beq RFCOMM_FRAME_TYPE_SABM,rfcomm_rx_process_DLCI0_sabm
+	beq RFCOMM_FRAME_TYPE_UA,rfcomm_rx_process_DLCI0_ua
+	beq RFCOMM_FRAME_TYPE_UIH,parse_DLCI0_reconn_uih
+	branch rfcomm_rx_process_end
+parse_DLCI0_reconn_uih:
+	fetch 2,mem_rfcomm_uih_payload_ptr
+	copy pdata,contr
+	call get_rfcomm_uih_head_struct
+	fetch 1,mem_uih_cmd_type
+	beq UIH_PARAM_NEG_CMD,parse_DLCI0_reconn_uih_pn_cmd
+	beq UIH_PARAM_NEG_RES,parse_DLCI0_reconn_uih_pn_cmd
+	beq UIH_MODEM_STATUS_CMD,parse_DLCI0_reconn_uih_ms_cmd
+	beq UIH_MODEM_STATUS_RES,parse_DLCI0_reconn_uih_ms_res
+	branch rfcomm_rx_process_end
+
+parse_DLCI0_reconn_uih_pn_cmd:
+	call parse_DLCI0_rp_uih_pn_res_common
+	fetch 1,mem_pn_dlci
+	rshift pdata,pdata
+	fetcht 1,mem_remote_spp_channel
+	isub temp,null
+	branch parse_DLCI0_reconn_uih_pn_cmd_spp,zero
+	branch assert
+parse_DLCI0_reconn_uih_pn_cmd_spp:
+	fetch 1,mem_spp_state
+	set1 RFCOMM_CHANNEL_STATE_PN_RES,pdata
+	store 1,mem_spp_state
+	branch rfcomm_rx_process_end
+
+parse_DLCI0_reconn_uih_ms_cmd:
+	call get_rfcomm_param_modem_status
+	fetch 1,mem_ms_channel
+	fetcht 1,mem_remote_spp_channel
+	isub temp,null
+	branch parse_DLCI0_reconn_uih_ms_cmd_spp,zero
+	branch assert
+	branch rfcomm_rx_process_end
+parse_DLCI0_reconn_uih_ms_cmd_spp:
+	fetch 1,mem_spp_state
+	set1 RFCOMM_CHANNEL_STATE_RCV_MS_CMD,pdata
+	set1 RFCOMM_CHANNEL_STATE_SND_MS_RES,pdata
+	store 1,mem_spp_state
+	fetcht 1,mem_pn_dlci
+	lshift2 temp,temp
+	or_into 3,temp
+	call rfcomm_send_modem_status_res
+	branch rfcomm_rx_process_end
+	
+parse_DLCI0_reconn_uih_ms_res:
+	call get_rfcomm_param_modem_status
+	fetch 1,mem_ms_channel
+	fetcht 1,mem_remote_spp_channel
+	isub temp,null
+	branch parse_DLCI0_reconn_uih_ms_res_spp,zero
+	branch assert
+parse_DLCI0_reconn_uih_ms_res_spp:
+	fetch 1,mem_spp_state
+	set1 RFCOMM_CHANNEL_STATE_RCV_MS_RES,pdata
+	store 1,mem_spp_state
+	branch rfcomm_rx_process_end
+
+parse_uih_reconn:
+	fetch 1,mem_current_channel
+	fetcht 1,mem_remote_spp_channel
+	isub temp,null
+	branch parse_uih_reconn_spp,zero
+	branch assert
+	branch rfcomm_rx_process_end
+
+parse_uih_reconn_spp:
+	fetch 1,mem_current_frame_type
+	beq RFCOMM_FRAME_TYPE_UA,parse_uih_reconn_spp_ua
+	beq RFCOMM_FRAME_TYPE_UIH,parse_uih_spp_uih
+	beq RFCOMM_FRAME_TYPE_UIH_CREDITS,parse_uih_spp_uih_credits
+	beq RFCOMM_FRAME_TYPE_DISCONN,parse_uih_reconn_spp_disconn
+parse_uih_reconn_spp_ua:
+	fetch 1,mem_spp_state
+	set1 RFCOMM_CHANNEL_STATE_UA,pdata
+	store 1,mem_spp_state
+	branch rfcomm_rx_process_end
+parse_uih_reconn_spp_sabm:
+	branch parse_uih_reconn_spp_sabm//loop
+parse_uih_reconn_spp_disconn:
+	branch parse_uih_rp_spp_disconn
+rfcomm_rx_process_end:
+	rtn
+	
+rfcomm_send_more_pkt:
+	fetch 1,mem_rfcomm_send_more_pkt
+	rtn blank
+	beq MORE_PKT_MSC_CMD_SPP,rfcomm_send_more_pkt_msc_cmd_spp
+	branch assert
+	
+rfcomm_send_more_pkt_msc_cmd_spp:
+	jam 0,mem_rfcomm_send_more_pkt
+	call l2cap_malloc_rfcomm_channel
+	arg SPP_SLAVE_CHANNEL,temp
+	lshift3 temp,temp
+rfcomm_send_more_pkt_msc_cmd_spp0:
+	or_into 0x03,temp
+	arg 0xaa,rega
+	call rfcomm_send_modem_status_cmd
+	call l2cap_get_rfcomm_tx_buff
+	copy contw,contr
+	ifetch 2, contr
+	branch assert,blank
+	rtn
+
+rfcomm_send_sabm:
+	set1 mark_ext_patch,mark
+	bpatch patch38_3,mem_patch38
+	call l2cap_get_rfcomm_tx_buff
+	setarg 0x0004
+	istore 2,contw //l2cap len
+	fetch 2,mem_rfcomm_remote_cid
+	istore 2,contw//cid
+	fetch 1,mem_current_adss
+	istore 1,contw //address
+	setarg 0x013f
+	istore 2,contw
+	fetch 1,mem_current_fcs
+	istore 1,contw
+	rtn
+rfcomm_send_ua:
+	set1 mark_ext_patch,mark
+	bpatch patch38_4,mem_patch38
+	call l2cap_malloc_rfcomm_channel
+	call l2cap_get_rfcomm_tx_buff
+	setarg 0x0004
+	istore 2,contw //l2cap len
+	fetch 2,mem_rfcomm_remote_cid
+	istore 2,contw//cid
+	fetch 1,mem_current_adss
+	istore 1,contw //address
+	setarg 0x0173
+	istore 2,contw
+	fetch 1,mem_current_fcs
+	istore 1,contw
+	rtn
+rfcomm_send_param_neg_cmd:
+	set1 mark_ext_patch,mark
+	bpatch patch38_5,mem_patch38
+	call l2cap_get_rfcomm_tx_buff
+	setarg 0x000e
+	istore 2,contw //l2cap len
+	fetch 2,mem_rfcomm_remote_cid
+	istore 2,contw//cid
+	fetch 1,mem_rfcomm_initiator
+	lshift pdata,pdata
+	set1 0,pdata //ext len
+	istore 1,contw //DLCI0 address
+	setarg 0x15ef
+	istore 2,contw
+	setarg 0x1183
+	istore 2,contw
+	copy temp,pdata //DLCI in temp
+	istore 1,contw
+	setarg 0x0000f0
+	istore 3,contw
+	setarg RFCOMM_MAX_FRAME_SIZE
+	istore 2,contw
+	setarg 0
+	istore 1,contw
+	setarg 0x01		//change here later
+	istore 1,contw
+	call rfcomm_calculate_FCS_dlci0
+	istore 1,contw
+	jam 0x10,mem_credit_given
+	rtn
+rfcomm_send_param_neg_res:
+	set1 mark_ext_patch,mark
+	bpatch patch38_6,mem_patch38
+	call l2cap_malloc_rfcomm_channel
+	call l2cap_get_rfcomm_tx_buff
+	setarg 0x000e
+	istore 2,contw //l2cap len
+	fetch 2,mem_rfcomm_remote_cid
+	istore 2,contw//cid
+	fetch 1,mem_rfcomm_initiator
+	lshift pdata,pdata
+	set1 0,pdata //ext len
+	istore 1,contw //DLCI0 address
+	setarg 0x15ef
+	istore 2,contw
+	setarg 0x1181
+	istore 2,contw
+	fetch 1,mem_pn_dlci
+	istore 1,contw //DLCI
+	setarg 0x0000e0
+	istore 3,contw
+	setarg RFCOMM_MAX_FRAME_SIZE //max frame size
+	istore 2,contw 
+	setarg 0x00 //max retrans
+	istore 1,contw
+	setarg 0x07
+	istore 1,contw // init credits
+	call rfcomm_calculate_FCS_dlci0
+	istore 1,contw
+	rtn
+rfcomm_send_modem_status_cmd:
+	set1 mark_ext_patch,mark
+	bpatch patch38_7,mem_patch38
+	call l2cap_get_rfcomm_tx_buff
+	setarg 0x0008
+	istore 2,contw //l2cap len
+	fetch 2,mem_rfcomm_remote_cid
+	istore 2,contw//cid
+	fetch 1,mem_rfcomm_initiator
+	lshift pdata,pdata
+	set1 0,pdata //ext len
+	istore 1,contw //DLCI0 address
+	setarg 0x09ef
+	istore 2,contw
+	setarg 0x05e3
+	istore 2,contw
+	copy temp,pdata //DLCI adress
+	istore 1,contw
+	setarg 0x8d
+	istore 1,contw
+	call rfcomm_calculate_FCS_dlci0
+	istore 1,contw
+	rtn
+
+rfcomm_send_modem_status_res:
+	set1 mark_ext_patch,mark
+	bpatch patch39_0,mem_patch39
+	call l2cap_malloc_rfcomm_channel
+	call l2cap_get_rfcomm_tx_buff
+	setarg 0x0008
+	istore 2,contw //l2cap len
+	fetch 2,mem_rfcomm_remote_cid
+	istore 2,contw//cid
+	copy temp,timeup
+	fetch 1,mem_rfcomm_initiator
+	lshift pdata,pdata
+	set1 0,pdata //ext len
+	istore 1,contw //DLCI0 address
+	setarg 0x09ef
+	istore 2,contw
+	setarg 0x05e1
+	istore 2,contw
+	copy timeup,pdata //DLCI address in temp
+	istore 1,contw
+	setarg 0x8d
+	istore 1,contw
+	call rfcomm_calculate_FCS_dlci0
+	istore 1,contw
+	rtn
+
+rfcomm_send_uih_without_payload:
+	set1 mark_ext_patch,mark
+	bpatch patch39_1,mem_patch39
+	fetch 1,mem_credit_given
+	rtn blank
+	hfetch 2,core_uart_rxitems
+	nrtn blank
+	copy rega,pdata
+	store 1,mem_pdatatemp+1
+	storet 1,mem_pdatatemp
+	call l2cap_malloc_is_fifo_full
+	nrtn blank
+	call l2cap_malloc_rfcomm_channel
+	call l2cap_get_rfcomm_tx_buff
+	setarg 0x05
+	istore 2,contw
+	fetch 2,mem_RFCOMM_remote_CID
+	istore 2,contw
+	fetch 1,mem_rfcomm_send_adss
+	istore 1,contw
+	setarg 0x01ff
+	istore 2,contw
+	fetch 1,mem_credit_given
+	istore 1,contw
+	fetch 1,mem_HIUfcs_SPP_WCredits
+	istore 1,contw
+	jam 0,mem_credit_given
+	rtn
+	
+rfcomm_increase_credit_given:
+	fetch 2,mem_current_length
+	rtn blank
+	fetch 1,mem_credit_given
+	increase 1,pdata
+	store 1,mem_credit_given
+	rtn
+
+spp_process_rx_data:
+	set1 mark_ext_patch,mark
+	bpatch patch39_2,mem_patch39
+	fetch 2,mem_current_length
+	copy pdata,loopcnt
+	call uartd_prepare_tx
+	fetch 2,mem_rfcomm_uih_payload_ptr
+	copy pdata,contr
+	call uart_copy_tx_bytes
+	branch uartd_send
+
+spp_tx_rfcomm_packet:
+	set1 mark_ext_patch,mark
+	bpatch patch39_3,mem_patch39
+	//credit
+	fetch 1,mem_remote_credits
+	rtn blank
+	increase -1,pdata
+	store 1,mem_remote_credits
+	fetch 2,mem_pn_max_frame_size
+	fetcht 2,mem_current_packet_length
+	isub temp,null
+	branch spp_tx_rfcomm_from_uart,positive
+	store 2,mem_current_packet_length
+spp_tx_rfcomm_from_uart:
+	fetch 1,mem_credit_given
+	branch spp_tx_rfcomm_from_uart_without_credit,blank
+	jam 1,mem_rfcomm_send_offset
+	fetch 1,mem_HIUfcs_SPP_WCredits
+	store 1,mem_rfcomm_send_fcs
+	setarg RSP_RX_UIH_WDATA
+	store 1,mem_rfcomm_send_frame_type
+	branch spp_tx_rfcomm_from_uart_common
+spp_tx_rfcomm_from_uart_without_credit:
+	jam 0,mem_rfcomm_send_offset
+	fetch 1,mem_HIUfcs_SPP
+	store 1,mem_rfcomm_send_fcs
+	setarg RSP_TX_UIH
+	store 1,mem_rfcomm_send_frame_type
+spp_tx_rfcomm_from_uart_common:
+	set1 mark_ext_patch,mark
+	bpatch patch39_4,mem_patch39
+	fetch 1,mem_current_packet_length
+	sub pdata,127,null
+	branch spp_tx_rfcomm_from_uart_common0,positive
+	fetch 1,mem_rfcomm_send_offset
+	increase 1,pdata
+	store 1,mem_rfcomm_send_offset
+spp_tx_rfcomm_from_uart_common0:
+	call get_rfcomm_snd_adss
+	fetch 2,mem_current_packet_length
+	increase 8,pdata	//fcs + rfcommhead + l2caphead == 8
+	fetcht 1,mem_rfcomm_send_offset
+	iadd temp,rega
+	//rfcomm payload
+	call l2cap_malloc
+	store 2,mem_rfcomm_tx_buff_ptr
+	increase 4,pdata
+	store 2,mem_rfcomm_tx_payload_ptr
+	copy pdata,contw
+	fetch 1,mem_rfcomm_send_adss
+	istore 1,contw
+	fetch 1,mem_rfcomm_send_frame_type
+	istore 1,contw
+	call spp_tx_write_length
+	call spp_tx_write_given_credit
+	call get_uart_rrptr	
+	fetch 1,mem_current_packet_length
+	copy pdata,loopcnt
+	call uart_copy_rx_bytes
+	fetch 1,mem_rfcomm_send_fcs
+	istore 1,contw
+	fetch 2,mem_rfcomm_tx_buff_ptr
+	copy pdata,contw
+	fetch 2,mem_current_packet_length
+	fetcht 1,mem_rfcomm_send_offset
+	iadd temp,pdata
+	increase 4,pdata
+	istore 2,contw
+	fetch 2,mem_rfcomm_remote_cid
+	istore 2,contw
+	jam 0,mem_credit_given	//whatever mem_credit_given is set to 0
+	branch spp_send_end
+	
+spp_tx_write_length:
+	fetch 2,mem_current_packet_length
+	sub pdata,0x7f,null
+	nbranch spp_tx_write_long_packet,positive
+	lshift pdata,pdata
+	set1 0,pdata
+	istore 1,contw
+	rtn
+spp_tx_write_long_packet:
+	fetch 2,mem_current_packet_length
+	rshift3 pdata,pdata
+	rshift4 pdata,temp
+	and_into 0x7f,pdata
+	lshift pdata,pdata
+	set0 0,pdata
+	istore 1,contw
+	istoret 1,contw
+	rtn
+spp_tx_write_given_credit:
+	fetch 1,mem_credit_given
+	rtn blank
+	istore 1,contw
+	rtn
+
+	
+
+
+else
+
+rfcomm_init:
+	rtn
+endif
Index: btkb/program/scheduler.prog
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/btkb/program/scheduler.prog	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/btkb/program/scheduler.prog	(working copy)
@@ -0,0 +1,491 @@
+scheduler_process:
+	set1 mark_ext_patch,mark
+	bpatch patch33_5,mem_patch33
+	call check_51cmd
+	call app_process_bb_event
+	call process_conn_sm
+/* check the connection state sequence byte */
+	set1 mark_ext_patch,mark
+	bpatch patch33_6,mem_patch33
+ifdef SIMPLE_PAIRING
+	call sp_calc_sequence
+	call simple_pairing_sequence
+	call master_simple_paring_sequence
+endif
+//return if it is hci mode. 'cause the following is host part.
+	set1 mark_ext_patch,mark
+	bpatch patch33_7,mem_patch33
+	fetch 1,mem_device_option
+	rtneq dvc_op_hci
+//notify BB to tx a l2cap packet
+	call l2cap_malloc_is_fifo_full
+	nrtn blank
+	//for conn to MTK 
+	call l2cap_call_proc_sigal_pending
+scheduler_process1:
+	call l2cap_malloc_is_fifo_full
+	nrtn blank
+	set1 mark_ext_patch,mark
+	bpatch patch34_0,mem_patch34
+//to generat a new l2cap packet
+	call process_upper_sm
+	call l2cap_send_config_req
+ifdef COMPILE_RFCOMM
+	call rfcomm_send_more_pkt//use this function to send msc_cmd after msc_rep sent
+endif
+scheduler_process0:
+	call scheduler_tx_disconnect_hid //may not used
+	set1 mark_ext_patch,mark
+	bpatch patch34_1,mem_patch34
+	call l2cap_malloc_is_fifo_full
+	nrtn blank
+	branch app_process_bt
+	
+scheduler_tx_disconnect_hid:
+	set1 mark_ext_patch,mark
+	bpatch patch34_2,mem_patch34
+	fetch 1,mem_CONTROL_tasks		
+	bbit1 L2CAP_DISCONNECT_INTERRUPT,L2CAP_disconnect_interrupt_req
+	bbit1 L2CAP_DISCONNECT_CONTROL,L2CAP_disconnect_control_req
+	rtn
+	
+scheduler_tx_l2cap_pkt:
+	set1 mark_ext_patch,mark
+	bpatch patch34_3,mem_patch34
+	call l2cap_malloc_is_fifo_empty
+	rtn blank //empty
+	fetch 1,mem_op
+	rtnbit1 op_txl2cap
+	call l2cap_malloc_fifo_out
+	store 2,mem_txptr
+	copy pdata,contr
+	ifetch 2,contr
+	increase 4,pdata
+	store 2,mem_tx_len
+	jam 6,mem_tx_lch//start pkt
+	set1 mark_ext_patch,mark
+	bpatch patch34_4,mem_patch34
+	fetch 2,mem_l2cap_tx_multi_offset
+	branch scheduler_tx_l2cap_start_pkt,blank
+	fetch 1,mem_op
+	rtnbit0 op_pkt_comp
+	set0 op_pkt_comp,pdata
+	store 1,mem_op
+	jam 5,mem_tx_lch//continue pkt
+	fetcht 2,mem_l2cap_tx_multi_offset
+	fetch 2,mem_txptr
+	iadd temp,pdata
+	store 2,mem_txptr
+	fetch 2,mem_tx_len
+	isub temp,pdata
+	store 2,mem_tx_len
+scheduler_tx_l2cap_start_pkt:
+	set1 mark_ext_patch,mark
+	bpatch patch34_5,mem_patch34
+	fetch 2,mem_tx_len
+	branch assert,blank
+	arg l2cap_max_pkt_len,temp //max len of dh3 pkt
+	isub temp,pdata
+	nbranch scheduler_Tx_l2cap_last_pkt,positive
+	set1 mark_ext_patch,mark
+	bpatch patch34_6,mem_patch34
+	storet 2,mem_tx_len //l2cap_max_pkt_len
+	fetch 2,mem_l2cap_tx_multi_offset
+	iadd temp,pdata
+	store 2,mem_l2cap_tx_multi_offset
+	branch scheduler_Tx_l2cap_pkt_end
+scheduler_Tx_l2cap_last_pkt:
+	setarg 0
+	store 2,mem_l2cap_tx_multi_offset
+scheduler_Tx_l2cap_pkt_end:
+	fetch 1,mem_op
+	set1 op_txl2cap,pdata
+	store 1,mem_op
+	rtn
+
+scheduler_start_upper_sm:
+	fetch 1,mem_UI_profile_supported
+	bbit1 support_HID,scheduler_start_upper_sm_hid
+	jam UPPERSM_RECONN_SDP_CONN,mem_upper_sm_reconn
+	rtn
+scheduler_start_upper_sm_hid:
+	jam UPPERSM_RECONN_HID_CTRL_CONN,mem_upper_sm_reconn
+	rtn
+	
+process_upper_sm:
+	fetch 1,memui_reconnect_mode
+	nbranch process_upper_sm_reconn,blank
+process_upper_sm_remote_page:
+	fetch 1,mem_upper_sm_remote_page
+	//beq UPPERSM_RP_IDLE,process_upper_sm_rp_idle
+	rtn blank
+	//nothing to do when remote page to create a connection.
+	jam 0,mem_upper_sm_remote_page
+process_upper_sm_rp_wait:
+	rtn
+
+
+process_upper_sm_reconn:
+	set1 mark_ext_patch,mark
+	bpatch patch34_7,mem_patch34
+	fetch 1,mem_upper_sm_reconn
+	rtn blank
+	beq UPPERSM_RECONN_SDP_CONN,process_upper_sm_reconn_sdp_conn
+	beq UPPERSM_RECONN_SDP_CONN_WAIT,process_upper_sm_reconn_sdp_conn_wait
+	beq UPPERSM_RECONN_SDP_CFG,process_upper_sm_reconn_sdp_cfg
+	beq UPPERSM_RECONN_SDP_CFG_WAIT,process_upper_sm_reconn_sdp_cfg_wait
+	beq UPPERSM_RECONN_SS_SPP,process_upper_sm_reconn_ss_spp
+	beq UPPERSM_RECONN_SS_SPP_WAIT,process_upper_sm_reconn_ss_spp_wait
+	beq UPPERSM_RECONN_SDP_DISCONN,process_upper_sm_reconn_sdp_disconn
+	beq UPPERSM_RECONN_SDP_DISCONN_WAIT,process_upper_sm_reconn_sdp_disconn_wait
+	beq UPPERSM_RECONN_HID_CTRL_CONN,process_upper_sm_reconn_hid_ctrl_conn
+	beq UPPERSM_RECONN_HID_CTRL_CONN_WAIT,process_upper_sm_reconn_hid_ctrl_conn_wait
+	beq UPPERSM_RECONN_HID_CTRL_CFG,process_upper_sm_reconn_hid_ctrl_cfg
+	beq UPPERSM_RECONN_HID_CTRL_CFG_WAIT,process_upper_sm_reconn_hid_ctrl_cfg_wait
+	beq UPPERSM_RECONN_HID_INT_CONN,process_upper_sm_reconn_hid_int_conn
+	beq UPPERSM_RECONN_HID_INT_CONN_WAIT,process_upper_sm_reconn_hid_int_conn_wait
+	beq UPPERSM_RECONN_HID_INT_CFG,process_upper_sm_reconn_hid_int_cfg
+	beq UPPERSM_RECONN_HID_INT_CFG_WAIT,process_upper_sm_reconn_hid_int_cfg_wait
+	beq UPPERSM_RECONN_RFCOMM_CONN,process_upper_sm_reconn_rfcomm_conn
+	beq UPPERSM_RECONN_RFCOMM_CONN_WAIT,process_upper_sm_reconn_rfcomm_conn_wait
+	beq UPPERSM_RECONN_RFCOMM_CFG,process_upper_sm_reconn_rfcomm_cfg
+	beq UPPERSM_RECONN_RFCOMM_CFG_WAIT,process_upper_sm_reconn_rfcomm_cfg_wait
+	beq UPPERSM_RECONN_RFCOMM_SABM,process_upper_sm_reconn_rfcomm_sabm
+	beq UPPERSM_RECONN_RFCOMM_SABM_WAIT,process_upper_sm_reconn_rfcomm_sabm_wait
+	beq UPPERSM_RECONN_SPP_CMD_PN,process_upper_sm_reconn_spp_cmd_pn
+	beq UPPERSM_RECONN_SPP_CMD_PN_WAIT,process_upper_sm_reconn_spp_cmd_pn_wait
+	beq UPPERSM_RECONN_SPP_SABM,process_upper_sm_reconn_spp_sabm
+	beq UPPERSM_RECONN_SPP_SABM_WAIT,process_upper_sm_reconn_spp_sabm_wait
+	beq UPPERSM_RECONN_SPP_CMD_MS,process_upper_sm_reconn_spp_cmd_ms
+	beq UPPERSM_RECONN_SPP_CMD_MS_WAIT,process_upper_sm_reconn_spp_cmd_ms_wait
+process_upper_sm_reconn_wait:
+	rtn
+process_upper_sm_reconn_sdp_conn:
+	call upper_sm_send_sdp_conn //return n-user if sending failed
+	jam UPPERSM_RECONN_SDP_CONN_WAIT,mem_upper_sm_reconn
+	fetch 1,mem_sdp_state
+	set1 L2CAP_CHANNEL_STATE_CONN_REQ,pdata
+	store 1,mem_sdp_state
+	rtn
+process_upper_sm_reconn_sdp_cfg:
+	jam UPPERSM_RECONN_SDP_CFG_WAIT,mem_upper_sm_reconn
+	fetch 1,mem_sdp_state
+	rtnbit1 L2CAP_CHANNEL_STATE_SND_CFG_REQ
+	jam UPPERSM_RECONN_SDP_CFG,mem_upper_sm_reconn
+	call upper_sm_send_sdp_cfg //return n-user if sending failed
+	jam UPPERSM_RECONN_SDP_CFG_WAIT,mem_upper_sm_reconn
+	fetch 1,mem_sdp_state
+	set1 L2CAP_CHANNEL_STATE_SND_CFG_REQ,pdata
+	store 1,mem_sdp_state
+	rtn
+process_upper_sm_reconn_ss_spp:
+	call l2cap_malloc_is_fifo_empty
+	nrtn blank
+	call upper_sm_send_ss_spp
+	jam UPPERSM_RECONN_SS_SPP_WAIT,mem_upper_sm_reconn
+	rtn
+process_upper_sm_reconn_sdp_disconn:
+	call upper_sm_send_sdp_disconn
+	jam UPPERSM_RECONN_SDP_DISCONN_WAIT,mem_upper_sm_reconn
+	rtn
+process_upper_sm_reconn_hid_ctrl_conn:
+	call upper_sm_send_hid_ctrl_conn
+	jam UPPERSM_RECONN_HID_CTRL_CONN_WAIT,mem_upper_sm_reconn
+	fetch 1,mem_hid_control_state
+	set1 L2CAP_CHANNEL_STATE_CONN_REQ,pdata
+	store 1,mem_hid_control_state
+	rtn
+process_upper_sm_reconn_hid_ctrl_cfg:    
+	call upper_sm_send_hid_ctrl_cfg
+	jam UPPERSM_RECONN_HID_CTRL_CFG_WAIT,mem_upper_sm_reconn
+	fetch 1,mem_hid_control_state
+	set1 L2CAP_CHANNEL_STATE_SND_CFG_REQ,pdata
+	store 1,mem_hid_control_state
+	rtn
+process_upper_sm_reconn_hid_int_conn:
+	call upper_sm_send_hid_int_conn
+	jam UPPERSM_RECONN_HID_INT_CONN_WAIT,mem_upper_sm_reconn
+	fetch 1,mem_hid_interrupt_state
+	set1 L2CAP_CHANNEL_STATE_CONN_REQ,pdata
+	store 1,mem_hid_interrupt_state
+	rtn
+process_upper_sm_reconn_hid_int_cfg:    
+	call upper_sm_send_hid_int_cfg
+	jam UPPERSM_RECONN_HID_INT_CFG_WAIT,mem_upper_sm_reconn
+	fetch 1,mem_hid_interrupt_state
+	set1 L2CAP_CHANNEL_STATE_SND_CFG_REQ,pdata
+	store 1,mem_hid_interrupt_state
+	rtn
+process_upper_sm_reconn_rfcomm_conn:
+	call upper_sm_send_rfcomm_conn
+	jam UPPERSM_RECONN_RFCOMM_CONN_WAIT,mem_upper_sm_reconn
+	fetch 1,mem_rfcomm_state
+	set1 L2CAP_CHANNEL_STATE_CONN_REQ,pdata
+	store 1,mem_rfcomm_state
+	rtn
+process_upper_sm_reconn_rfcomm_cfg: 
+	call upper_sm_send_rfcomm_cfg
+	jam UPPERSM_RECONN_RFCOMM_CFG_WAIT,mem_upper_sm_reconn
+	fetch 1,mem_rfcomm_state
+	set1 L2CAP_CHANNEL_STATE_SND_CFG_REQ,pdata
+	store 1,mem_rfcomm_state
+	rtn
+process_upper_sm_reconn_rfcomm_sabm:
+	call upper_sm_send_rfcomm_sabm
+	jam UPPERSM_RECONN_RFCOMM_SABM_WAIT,mem_upper_sm_reconn
+	fetch 1,mem_rfcomm_state
+	set1 L2CAP_CHANNEL_RFCOMM_ONLY_SABM,pdata
+	store 1,mem_rfcomm_state
+	rtn
+process_upper_sm_reconn_spp_cmd_pn: 
+	call upper_sm_send_spp_cmd_pn
+	fetch 1,mem_spp_state
+	set1 RFCOMM_CHANNEL_STATE_PN_CMD
+	store 1,mem_spp_state
+	jam UPPERSM_RECONN_SPP_CMD_PN_WAIT,mem_upper_sm_reconn
+	rtn
+process_upper_sm_reconn_spp_sabm:   
+	call upper_sm_send_spp_sabm
+	fetch 1,mem_spp_state
+	set1 RFCOMM_CHANNEL_STATE_SABM
+	store 1,mem_spp_state
+	jam UPPERSM_RECONN_SPP_SABM_WAIT,mem_upper_sm_reconn
+	fetch 1,mem_remote_spp_channel //address in pdata
+	lshift3 pdata,pdata
+	or_into 3,pdata
+	arg mem_HIUfcs_SPP,temp // mem_HIUfcs_spp_WCredits in regb++
+	storet 2,mem_contw_temp
+	branch rfcomm_save_FCS_uih
+process_upper_sm_reconn_spp_cmd_ms: 
+	call upper_sm_send_spp_cmd_ms
+	fetch 1,mem_spp_state
+	set1 RFCOMM_CHANNEL_STATE_SND_MS_CMD
+	store 1,mem_spp_state
+	jam UPPERSM_RECONN_SPP_CMD_MS_WAIT,mem_upper_sm_reconn
+	rtn
+
+process_upper_sm_reconn_sdp_conn_wait:
+	fetch 1,mem_sdp_state
+	rtnbit0 L2CAP_CHANNEL_STATE_CONN_RES
+	jam UPPERSM_RECONN_SDP_CFG,mem_upper_sm_reconn
+	branch process_upper_sm_reconn
+process_upper_sm_reconn_sdp_cfg_wait:
+	fetch 1,mem_sdp_state
+	rtnne L2CAP_CHANNEL_SETUP_COMPLETE
+	jam UPPERSM_RECONN_SS_SPP ,mem_upper_sm_reconn
+process_upper_sm_reconn_ss_spp_wait:
+	fetch 1,mem_message_to_uppersm
+	rtnne RECIEVE_SS_REASULT_HF
+	jam 0,mem_message_to_uppersm
+	jam UPPERSM_RECONN_SDP_DISCONN,mem_upper_sm_reconn
+	branch process_upper_sm_reconn
+process_upper_sm_reconn_sdp_disconn_wait:
+	fetch 1,mem_sdp_state
+	nrtn blank
+	fetch 1,mem_UI_profile_supported
+	bbit1 support_HID,process_upper_sm_reconn_setup_hid
+	bbit1 support_SPP,process_upper_sm_reconn_setup_rfcomm
+	branch process_upper_sm_reconn_termination
+process_upper_sm_reconn_hid_ctrl_conn_wait:
+	fetch 1,mem_hid_control_state
+	rtnbit0 L2CAP_CHANNEL_STATE_CONN_RES
+	jam UPPERSM_RECONN_HID_CTRL_CFG,mem_upper_sm_reconn
+	branch process_upper_sm_reconn
+process_upper_sm_reconn_hid_ctrl_cfg_wait:
+	fetch 1,mem_hid_control_state
+	rtnne L2CAP_CHANNEL_SETUP_COMPLETE
+	jam UPPERSM_RECONN_HID_INT_CONN,mem_upper_sm_reconn
+	branch process_upper_sm_reconn
+process_upper_sm_reconn_hid_int_conn_wait:  
+	fetch 1,mem_hid_interrupt_state
+	rtnbit0 L2CAP_CHANNEL_STATE_CONN_RES
+	jam UPPERSM_RECONN_HID_INT_CFG,mem_upper_sm_reconn
+	branch process_upper_sm_reconn
+process_upper_sm_reconn_hid_int_cfg_wait:  
+	fetch 1,mem_hid_interrupt_state
+	rtnne L2CAP_CHANNEL_SETUP_COMPLETE
+	fetch 1,mem_UI_profile_supported
+	bbit1 support_SPP,process_upper_sm_reconn_setup_rfcomm
+	branch process_upper_sm_reconn_termination
+process_upper_sm_reconn_rfcomm_conn_wait: 
+	fetch 1,mem_rfcomm_state
+	rtnbit0 L2CAP_CHANNEL_STATE_CONN_RES
+	jam UPPERSM_RECONN_RFCOMM_CFG,mem_upper_sm_reconn
+	branch process_upper_sm_reconn
+process_upper_sm_reconn_rfcomm_cfg_wait:
+	fetch 1,mem_rfcomm_state
+	rtnne L2CAP_CHANNEL_SETUP_COMPLETE
+	jam UPPERSM_RECONN_RFCOMM_SABM,mem_upper_sm_reconn
+	branch process_upper_sm_reconn
+process_upper_sm_reconn_rfcomm_sabm_wait:  
+	fetch 1,mem_rfcomm_state
+	rtnne L2CAP_CHANNEL_RFCOMM_DLCI0_OPENED
+	fetch 1,mem_UI_profile_supported
+	bbit1 support_SPP,process_upper_sm_reconn_setup_spp
+	branch process_upper_sm_reconn_termination
+process_upper_sm_reconn_spp_cmd_pn_wait:
+	fetch 1,mem_spp_state
+	rtnbit0 RFCOMM_CHANNEL_STATE_PN_RES
+	jam UPPERSM_RECONN_SPP_SABM,mem_upper_sm_reconn
+	branch process_upper_sm_reconn
+process_upper_sm_reconn_spp_sabm_wait:
+	fetch 1,mem_spp_state
+	rtnbit0 RFCOMM_CHANNEL_STATE_UA
+	jam UPPERSM_RECONN_SPP_CMD_MS ,mem_upper_sm_reconn
+	branch process_upper_sm_reconn
+process_upper_sm_reconn_spp_cmd_ms_wait: 
+	fetch 1,mem_spp_state
+	rtnne RFCOMM_CHANNEL_SETUP_COMPLETE
+	branch process_upper_sm_reconn_termination
+
+process_upper_sm_reconn_setup_hid:
+	jam UPPERSM_RECONN_HID_CTRL_CONN,mem_upper_sm_reconn
+	branch process_upper_sm_reconn
+
+process_upper_sm_reconn_setup_rfcomm:
+	jam UPPERSM_RECONN_RFCOMM_CONN,mem_upper_sm_reconn
+	branch process_upper_sm_reconn
+process_upper_sm_reconn_setup_spp:
+	jam UPPERSM_RECONN_SPP_CMD_PN,mem_upper_sm_reconn
+	branch process_upper_sm_reconn
+
+
+
+process_upper_sm_reconn_termination:
+	jam 0,mem_upper_sm_reconn
+	rtn
+upper_sm_send_sdp_conn:
+	set1 mark_ext_patch,mark
+	bpatch patch35_0,mem_patch35
+	call l2cap_malloc_signal_channel
+	setarg PSM_SDP
+	copy pdata,temp
+	setarg L2CAP_SDP_channel
+	copy pdata,timeup
+	branch ML2CAP_send_signal_connect_req
+	
+upper_sm_send_sdp_cfg:
+	set1 mark_ext_patch,mark
+	bpatch patch35_1,mem_patch35
+	call l2cap_malloc_signal_channel
+	fetch 2,mem_SDP_remote_CID
+	copy pdata,temp
+	branch ML2CAP_send_signal_config_req
+	
+upper_sm_send_sdp_disconn:
+	set1 mark_ext_patch,mark
+	bpatch patch35_2,mem_patch35
+	call l2cap_malloc_signal_channel
+	fetch 2,mem_SDP_remote_CID
+	copy pdata,temp
+	arg L2CAP_SDP_channel,timeup
+	call ML2CAP_send_signal_disconn_req
+	fetch 1,mem_sdp_state
+	set0 L2CAP_CHANNEL_STATE_RCV_CFG_RES ,pdata
+	store 1,mem_sdp_state
+	rtn
+//service search
+upper_sm_send_ss_spp:
+	set1 mark_ext_patch,mark
+	bpatch patch35_3,mem_patch35
+	call l2cap_malloc_sdp_channel
+	call sdp_send_spp_request
+	branch MSDP_send_req_done
+
+upper_sm_send_rfcomm_conn:
+	set1 mark_ext_patch,mark
+	bpatch patch35_4,mem_patch35
+	call l2cap_malloc_signal_channel
+	setarg PSM_RFCOMM
+	copy pdata,temp
+	setarg L2CAP_RFCOMM_channel
+	copy pdata,timeup
+	branch ML2CAP_send_signal_connect_req
+
+upper_sm_send_rfcomm_cfg:
+	set1 mark_ext_patch,mark
+	bpatch patch35_5,mem_patch35
+	call l2cap_malloc_signal_channel
+	fetch 2,mem_rfcomm_remote_cid
+	copy pdata,temp
+	branch ML2CAP_send_signal_config_req
+
+upper_sm_send_hid_ctrl_conn:
+	set1 mark_ext_patch,mark
+	bpatch patch35_6,mem_patch35
+	call l2cap_malloc_signal_channel
+	setarg PSM_HID_control
+	copy pdata,temp
+	setarg L2CAP_HID_Control_channel
+	copy pdata,timeup
+	branch ML2CAP_send_signal_connect_req
+
+upper_sm_send_hid_ctrl_cfg:
+	set1 mark_ext_patch,mark
+	bpatch patch35_7,mem_patch35
+	call l2cap_malloc_signal_channel
+	fetch 2,mem_hid_ctrl_remote_cid
+	copy pdata,temp
+	branch ML2CAP_send_signal_config_req
+
+upper_sm_send_hid_int_conn:
+	set1 mark_ext_patch,mark
+	bpatch patch36_0,mem_patch36
+	call l2cap_malloc_signal_channel
+	setarg PSM_HID_interrupt
+	copy pdata,temp
+	setarg L2CAP_HID_interrupt_channel
+	copy pdata,timeup
+	branch ML2CAP_send_signal_connect_req
+	
+upper_sm_send_hid_int_cfg:
+	set1 mark_ext_patch,mark
+	bpatch patch36_1,mem_patch36
+	call l2cap_malloc_signal_channel
+	fetch 2,mem_hid_int_remote_cid
+	copy pdata,temp
+	branch ML2CAP_send_signal_config_req
+
+upper_sm_send_rfcomm_sabm:
+	set1 mark_ext_patch,mark
+	bpatch patch36_2,mem_patch36
+	call l2cap_malloc_rfcomm_channel
+	//force 3,temp //address
+	jam 3,mem_current_adss
+	jam 0x1c,mem_current_fcs
+	call rfcomm_send_sabm
+	jam 1,mem_rfcomm_initiator
+	rtn
+
+upper_sm_send_spp_cmd_pn:
+	set1 mark_ext_patch,mark
+	bpatch patch36_3,mem_patch36
+	call l2cap_malloc_rfcomm_channel
+	fetcht 1,mem_remote_spp_channel
+	call channel_to_dlci
+	storet 1,mem_pn_dlci
+	branch rfcomm_send_param_neg_cmd
+
+upper_sm_send_spp_sabm:
+	set1 mark_ext_patch,mark
+	bpatch patch36_4,mem_patch36
+	call l2cap_malloc_rfcomm_channel
+	fetcht 1,mem_pn_dlci
+	call dlci_to_address_cmd
+	call rfcomm_calculate_FCS_sabm //sabm fcs use once only,not need to save
+	store 1,mem_current_fcs
+	fetcht 1,mem_pn_dlci
+	call dlci_to_address_cmd
+	storet 1,mem_current_adss
+	branch rfcomm_send_sabm
+
+upper_sm_send_spp_cmd_ms:
+	set1 mark_ext_patch,mark
+	bpatch patch36_5,mem_patch36
+	call l2cap_malloc_rfcomm_channel
+	fetcht 1,mem_pn_dlci
+	call dlci_to_address_cmd //address in temp
+	branch rfcomm_send_modem_status_cmd
+
+
+
Index: btkb/program/sdp.prog
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/btkb/program/sdp.prog	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/btkb/program/sdp.prog	(working copy)
@@ -0,0 +1,1315 @@
+/**********************************************************************/
+/* Subroutine: sdp_process                                         */
+/* Process Service Discovery Request                                  */
+/* Called from L2CAP, check PDUID, branch to different req processings*/
+/*                                                                    */  
+/* Input:       mem_L2CAP_Rx_payload                                  */
+/* Output:      mem_SDP_Tx_payload, mem_SDP_Tx_pkt_length	      */
+/*                                                                    */
+/**********************************************************************/     
+sdp_process:
+	set1 mark_ext_patch,mark
+	bpatch patch3c_7,mem_patch3c
+	fetch 2,mem_l2cap_payload_ptr
+	iforce contr
+	ifetch 1,contr
+	copy pdata,regb				/* PDUID */
+	store 1,mem_sdp_pduid
+	ifetch 2,contr
+	store 2,mem_sdp_transactionid			/* save transaction id */
+	ifetch 1,contr				/* higher byte of parameter length */
+	lshift8 pdata,timeup				
+	ifetch 1,contr				/* lower byte of parameter length */
+	iadd timeup,timeup				/* parameter length stored in "timeup" */
+	set1 mark_ext_patch,mark
+	bpatch patch3d_0,mem_patch3d
+	deposit regb						/* PDUID  */
+	beq SDP_SERVICE_SEARCH_REQUEST,servicesearch_req			
+	beq SDP_SERVICE_ATTRIBUTE_REQUEST,serviceattribute_req
+	beq SDP_SERVICE_SEARCH_ATTRIBUTE_REQUEST,servicesearchattribute_req
+	beq SDP_SERVICE_SEARCH_ATTRIBUTE_RESPONSE,servicesearchattribute_res
+	branch sdp_insufficient_resource
+
+/**********************************************************************/
+/* servicesearch_req			                              */
+/* Processing Service Search Request                                  */
+/* Call: ask_serviceclassid, empty_response                     */
+/*                                                                    */  
+/* Input:       mem_L2CAP_Rx_payload pointer in contr                 */
+/* Output:      mem_SDP_Tx_payload, mem_SDP_Tx_pkt_length	      */
+/*                                                                    */
+/**********************************************************************/     
+servicesearch_req:
+	call ask_serviceclassid
+	compare 1,temp,0xff
+	branch empth_sa_rsp,true
+	compare 0xff,temp,0xff
+	branch sdp_invalid_reqest_syntax,true
+
+	ifetch 2,contr				/* max aservice record count */
+	store 2,mem_sdp_record_maxcnt
+	increase -2,timeup
+
+	increase -1,timeup				/* continuation state 1 byte (0) */
+	nbranch sdp_invalid_pdu_size,zero		/* invalid pdu size */
+	arg mem_uuid_search_pat,timeup
+	ifetch 2,timeup
+	rtn blank
+	increase 2,timeup
+	call search_uuid
+	call l2cap_get_sdp_tx_payload			/* put the pointer to Tx buffer  */
+	force 3,pdata						/* PDUID 3, Service Search Response */
+	istore 1,contw
+	fetch 2,mem_sdp_transactionid			/* write transaction id */
+	istore 2,contw
+	lshift2 queue,pdata
+	add pdata,5,pdata
+	add pdata,5,regc
+	byteswap pdata,pdata
+	istore 2,contw							/* write parLength */
+	deposit queue
+	byteswap pdata,pdata
+	istore 2,contw							/* write TotSrvRecCount */
+	istore 2,contw							/* write CurSrvRecCount */
+	arg mem_handle_list,contr
+	copy queue,loopcnt
+	branch servicesearch_req_blank,zero
+servicesearch_req_loop:	
+	ifetch 4,contr
+	istore 4,contw
+	loop servicesearch_req_loop
+servicesearch_req_blank:	
+	force 0,pdata
+	istore 1,contw							/* continuation state */
+	deposit regc
+	store 1,mem_sdp_tx_pkt_length
+	branch assert,blank
+	rtn
+
+/**********************************************************************/
+/* serviceattribute_req			                              */
+/* Processing Service Attribute Request                               */
+/* Call: ask_attributeid, empty_response (if 3 stored attr.     */
+/* not asked) or answer_attributelist                              */  
+/* Input:       mem_L2CAP_Rx_payload pointer in contr                 */
+/* Output:      mem_SDP_Tx_payload, mem_SDP_Tx_pkt_length	      */
+/*                                                                    */
+/**********************************************************************/     
+serviceattribute_req:
+	ifetch 4,contr				/* service record handle */
+	store 4,mem_sdp_record_handle	 
+	increase -4,timeup
+	iforce temp
+	ifetch 2,contr				/* max attribute byte count */
+	byteswap pdata,pdata
+	increase -18,pdata	
+	store 2,mem_sdp_attribute_maxbyte
+	increase -2,timeup
+	call dataelementtype6		/* result: data size stored in rega */
+	branch sdp_invalid_reqest_syntax,zero
+	compare 5,rega,0xff
+	//branch serviceattribute_req_all,true
+	branch serviceattribute_judge_WholeRangle,true
+serviceattribute_isnot_wholerangle:
+	arg mem_attrib_list,contw
+	force 0,queue
+	branch serviceattribute_req_loop
+serviceattribute_judge_wholerangle:
+	ifetch 1,contr
+	bne 0xa,sdp_invalid_reqest_syntax
+	ifetch 2,contr
+	nbranch serviceattribute_judge_WholeRangle_false1,blank
+	ifetch 1,contr
+	bne 0xff,serviceattribute_judge_WholeRangle_false2
+	ifetch 1,contr
+	bne 0xff,serviceattribute_judge_WholeRangle_false3		//also exist potential bug because mem_attrib_list length is only 7f
+	increase -5,contr
+	branch serviceattribute_req_all
+serviceattribute_judge_wholerangle_false3:
+	increase -5,contr
+	branch serviceattribute_isnot_wholerangle
+serviceattribute_judge_wholerangle_false2:
+	increase -4,contr
+	branch serviceattribute_isnot_wholerangle
+serviceattribute_judge_wholerangle_false1:
+	increase -3,contr
+	branch serviceattribute_isnot_wholerangle
+serviceattribute_req_loop:	
+	ifetch 1,contr
+	beq 0x09, serviceattribute_req_one_id
+	beq 0x0a, serviceattribute_req_range_id
+serviceattribute_req_range_id:
+	ifetch 2, contr
+	istore 2, contw
+	increase 1,queue
+	byteswap pdata,regb
+	ifetch 2, contr
+	byteswap pdata,pdata
+serviceattribute_req_range_id_increase:	
+	increase 1, regb
+	isub regb, null
+	nbranch serviceattribute_req_range_id_finish,positive
+	copy pdata, regc
+	byteswap regb,pdata
+	istore 2, contw
+	increase 1,queue
+	copy regc, pdata
+	branch serviceattribute_req_range_id_increase
+serviceattribute_req_range_id_finish:
+	increase -5,timeup
+	increase -5,rega
+	branch serviceattribute_req_check_next_id
+serviceattribute_req_one_id:
+	ifetch 2,contr
+	istore 2,contw //save the attribute id in mem_attrib_list
+	increase 1,queue
+	increase -3,timeup
+	increase -3,rega
+serviceattribute_req_check_next_id:	
+	nbranch sdp_invalid_reqest_syntax,positive
+	nbranch serviceattribute_req_loop,zero
+	increase -1,timeup
+	nbranch sdp_invalid_reqest_syntax,zero
+	
+	call l2cap_get_sdp_tx_payload
+	increase 10,contw//arg mem_SDP_Tx_payload+10,contw
+	arg mem_attrib_list,rega
+answer_handle_attributelist_next:
+	copy queue,pdata
+	branch answer_handle_attributelist_end,blank
+	ifetch 2,rega
+	branch answer_handle_attributelist_end,blank
+	iforce regb /* regb is the attribute ID */
+	fetch 4,mem_sdp_record_handle	
+	iforce temp
+	call search_handle_attrib
+	branch answer_handle_attributelist_notfound,blank
+	increase -3,contr
+	ifetch 3,contr
+	istore 3,contw
+	call sdp_data_len_obs
+	branch answer_handle_attributelist_notfound,blank
+	iforce loopcnt	
+	call memcpy
+answer_handle_attributelist_notfound:
+	increase 2,rega
+	increase -1, queue
+	branch answer_handle_attributelist_next
+
+answer_handle_attributelist_end:
+	force 0,pdata
+	istore 1,contw
+	increase -1,contw
+	fetcht 2,mem_sdp_tx_payload_ptr
+	add temp,10,pdata//setarg mem_SDP_Tx_payload+10
+	isub contw,pdata
+	sub pdata,0,rega
+	byteswap rega, pdata
+	add temp,8,regb//store 2,mem_SDP_Tx_payload+8
+	istore 2,regb
+	increase 3,rega
+	byteswap rega, pdata
+	add temp,5,regb//store 2,mem_SDP_Tx_payload+5
+	istore 2,regb
+	increase 3,rega
+	byteswap rega, pdata
+	add temp,3,regb//store 2,mem_SDP_Tx_payload+3// ParLength
+	istore 2,regb	
+	increase 5,rega
+	copy rega,pdata
+	store 2,mem_sdp_tx_pkt_length
+	setarg 0x36
+	add temp,7,regb//jam 0x36, mem_SDP_Tx_payload+7
+	istore 1,regb
+	setarg 5
+	istore 1,temp//jam 5,mem_SDP_Tx_payload	// PDU ID
+	fetch 2,mem_sdp_transactionid
+	add temp,1,regb//store 2,mem_SDP_Tx_payload+1
+	istore 2,regb
+	rtn
+serviceattribute_req_all:	
+	ifetch 1,contr
+	bne 0xa,sdp_invalid_reqest_syntax
+	ifetch 2,contr
+	nbranch sdp_invalid_reqest_syntax,blank
+	ifetch 1,contr
+	bne 0xff,sdp_invalid_reqest_syntax
+	ifetch 1,contr
+	bne 0xff,sdp_invalid_reqest_syntax
+	increase -5,timeup
+	ifetch 1, contr
+	beq 0, continue_zero
+	beq 1, continue_one_byte
+	beq 2, continue_two_byte
+continue_zero:	
+	store 2, mem_sdp_continue_byte
+	increase -1,timeup				/* continuation state byte (0) */
+	branch continue_end
+continue_one_byte:
+	ifetch 1, contr
+	store 2, mem_sdp_continue_byte
+	increase -2,timeup				/* continuation state byte (1) */
+	branch continue_end
+continue_two_byte:
+	ifetch 2, contr
+	byteswap pdata,pdata
+	store 2, mem_sdp_continue_byte	
+	increase -3,timeup				/* continuation state byte (2) */
+continue_end:
+	nbranch sdp_invalid_pdu_size,zero		/* invalid pdu size */
+	call 	search_handle
+	nbranch sdp_invalid_service_record_handle,zero
+	copy contr,rega
+	call l2cap_get_sdp_tx_payload
+	copy rega,contr
+	increase 3,contw//arg mem_SDP_Tx_payload+3,contw
+	copy contr,timeup //sdp start pointer
+	call sdp_get_data
+	copy pdata, rega //sdp total length
+	fetch 2, mem_sdp_continue_byte
+	copy pdata, regb
+	copy rega,pdata
+	isub regb,regb //total_length - continue_byte in regb
+	fetch 2, mem_sdp_attribute_maxbyte
+	isub regb, null
+	nbranch fragment_sdp, positive
+	// the last fragment
+	disable user
+	fetch 2, mem_sdp_continue_byte
+	branch fisrt_fragment,blank
+	iadd timeup, contr //set the read pointer
+	increase 3,regb //include the total length field, 3 bytes
+	copy regb, loopcnt
+	copy loopcnt, pdata
+	increase 3, pdata
+	byteswap pdata,pdata
+	istore 2, contw
+	copy loopcnt, pdata
+	byteswap pdata,pdata
+	istore 2, contw
+	branch answer_attributelist_full_loop
+fisrt_fragment:
+	add rega,6,loopcnt
+	branch parlength_continue_byte, user
+	byteswap loopcnt,pdata
+	branch parlength_continue_byte_end
+parlength_continue_byte:
+	copy loopcnt, pdata
+	increase 2, pdata
+	byteswap pdata,pdata
+parlength_continue_byte_end:
+	istore 2,contw				/* ParLength */
+	increase -3,loopcnt
+	byteswap loopcnt,pdata			
+	istore 2,contw				/* AttrListByteCount */
+	copy timeup,contr
+	branch answer_attributelist_full_loop
+fragment_sdp:
+	enable user
+	fetch 2, mem_sdp_attribute_maxbyte
+	copy pdata, rega
+	copy pdata, loopcnt
+	fetch 2, mem_sdp_continue_byte
+	branch fisrt_fragment,blank
+	iadd timeup, contr
+	copy rega,pdata
+	increase 5,pdata
+	byteswap pdata,pdata	
+	istore 2, contw
+	copy rega,pdata
+	byteswap pdata,pdata
+	istore 2, contw
+answer_attributelist_full_loop:	
+	ifetch 1,contr
+	istore 1,contw
+	loop answer_attributelist_full_loop
+	nbranch last_frag_continue, user
+	force 2,pdata
+	istore 1,contw
+	copy contr, pdata
+	isub timeup, pdata
+	byteswap pdata,pdata
+	istore 2, contw
+	branch sdp_frag_end
+last_frag_continue:
+	force 0,pdata
+	istore 1,contw
+sdp_frag_end:	
+	fetch 2,mem_sdp_tx_payload_ptr//setarg mem_SDP_Tx_payload
+	isub contw,pdata
+	sub pdata,0,pdata
+	store 2,mem_sdp_tx_pkt_length
+	call l2cap_get_sdp_tx_payload//jam 5,mem_SDP_Tx_payload
+	setarg 5
+	istore 1,contw
+	fetch 2,mem_sdp_transactionid
+	istore 2,contw//store 2,mem_SDP_Tx_payload+1
+	rtn			
+/**********************************************************************/
+/* servicesearchattribute_req                          		      */
+/* Processing Service Search Attribute Request                        */
+/* Call: ask_serviceclassid, ask_attributeid, empty_response */
+/*       or answer_attributelist                                   */  
+/* Input:       contr                                                 */
+/* Output:      mem_SDP_Tx_payload, mem_SDP_Tx_pkt_length             */
+/*                                                                    */
+/**********************************************************************/     
+servicesearchattribute_req:
+	//compare 29,timeup,0xff
+	//branch empty_ssa_rsp,true
+	call ask_serviceclassid
+	compare 0xff,temp,0xff
+	branch servicesearchattribute_req_all,true
+	ifetch 2,contr				/* max attribute byte count */
+	store 2,mem_sdp_attribute_maxbyte
+	increase -2,timeup
+	call dataelementtype6
+	arg mem_attrib_list,contw
+	force 0,queue
+servicesearchattribute_req_loop:	
+	ifetch 3,contr //service recorde handle 0x0a0000ffff
+	bne 0x09,servicesearchattribute_req_all
+servicesearchattribute_req_uuid:
+	rshift8 pdata,pdata
+	istore 2,contw //save the attribute id in mem_attrib_list
+	increase 1,queue
+	increase -3,timeup
+	increase -3,rega
+	nbranch sdp_invalid_reqest_syntax,positive
+	nbranch servicesearchattribute_req_loop,zero
+	increase -1,timeup
+	nbranch sdp_invalid_reqest_syntax,zero
+servicesearchattribute_req_search:
+	call l2cap_get_sdp_tx_payload
+	increase 13,contw//arg mem_SDP_Tx_payload+13,contw
+	fetch 2,mem_uuid_search_pat
+	iforce regc
+	arg mem_attrib_list,rega
+answer_attributelist_next:	
+	ifetch 4,rega
+	branch answer_attributelist_end,blank
+	ifetch 2,rega
+	iforce regb						/* regb is the attribute ID */
+	call search_attrib
+	branch answer_attributelist_notfound,blank
+	increase -3,contr
+	ifetch 3,contr
+	istore 3,contw
+	call sdp_data_len_obs
+	iforce loopcnt	
+answer_attributelist_attrib_loop:
+	ifetch 1,contr
+	istore 1,contw
+	loop answer_attributelist_attrib_loop
+answer_attributelist_notfound:
+	increase 2,rega
+	branch answer_attributelist_next
+servicesearchattribute_req_all:
+	//bne 0x0a,sdp_invalid_reqest_syntax
+	//rshift8 pdata,pdata
+	//nbranch sdp_invalid_reqest_syntax,blank
+	ifetch 1,contr
+	//bne 0xff,sdp_invalid_reqest_syntax
+	ifetch 1,contr
+	//bne 0xff,sdp_invalid_reqest_syntax
+	increase -5,timeup
+	increase -5,rega
+	nbranch sdp_invalid_reqest_syntax,positive
+	arg mem_uuid_search_pat,timeup
+	ifetch 2,timeup
+	//rtn blank
+	increase 2,timeup
+	call search_uuid  //handle number in queue
+	deposit queue
+	store 1,mem_handle_humber
+	branch empty_ssa_rsp,blank
+	arg 0,queue
+	call l2cap_get_sdp_tx_payload
+	increase 10,contw//arg mem_SDP_Tx_payload+10,contw
+	branch servicesearchattribute_req_next_handle
+answer_attributelist_end:
+	force 0,pdata
+	istore 1,contw
+	increase -1,contw
+	fetcht 2,mem_sdp_tx_payload_ptr
+	add temp,13,pdata//setarg mem_SDP_Tx_payload+13
+	isub contw,pdata
+	branch no_attribute_return,zero
+	sub pdata,0,pdata
+	add temp,12,regb//store 1,mem_SDP_Tx_payload+12
+	istore 1,regb
+	increase 3,pdata
+	add temp,9,regb//store 1,mem_SDP_Tx_payload+9
+	istore 1,regb
+	increase 3,pdata
+	byteswap pdata,pdata
+	add temp,5,regb//store 2,mem_SDP_Tx_payload+5
+	istore 2,regb		/* AttrListByteCount */
+	rshift8 pdata,pdata
+	increase 3,pdata
+	byteswap pdata,pdata
+	add temp,3,regb//store 2,mem_SDP_Tx_payload+3
+	istore 2,regb		/* ParLength */
+	rshift8 pdata,pdata
+	increase 5,pdata
+	store 1,mem_sdp_tx_pkt_length	/*packet length*/
+	
+	fetch 2,mem_sdp_transactionid
+	add temp,1,regb//mem_SDP_Tx_payload+1
+	istore 2,regb
+	setarg 7
+	istore 1,temp//jam 7,mem_SDP_Tx_payload//PDU ID 
+	//jam 0,mem_SDP_Tx_payload+8		
+	//jam 0x36,mem_SDP_Tx_payload+7
+	//jam 0,mem_SDP_Tx_payload+11		
+	//jam 0x36,mem_SDP_Tx_payload+10
+	setarg 0x0036
+	add temp,7,regb
+	istore 2,regb
+	add temp,10,regb
+	istore 2,regb
+	rtn
+no_attribute_return:
+	jam 10,mem_sdp_tx_pkt_length
+	call l2cap_get_sdp_tx_payload
+	//jam 7,mem_SDP_Tx_payload	//PDU ID
+	setarg 7
+	istore 1,contw 
+	fetch 2,mem_sdp_transactionid
+	istore 2,contw
+	//store 2,mem_SDP_Tx_payload+1
+	//jam 0,mem_SDP_Tx_payload+3
+	//jam 5,mem_SDP_Tx_payload+4	 //ParLength =5
+	setarg 0x0500
+	istore 2,contw
+	//jam 0,mem_SDP_Tx_payload+5
+	//jam 2,mem_SDP_Tx_payload+6	// AttrListByteCount =2
+	setarg 0x0200
+	istore 2,contw
+	//jam 0x35,mem_SDP_Tx_payload+7
+	//jam 0,mem_SDP_Tx_payload+8
+	//jam 0,mem_SDP_Tx_payload+9
+	setarg 0x000035
+	istore 3,contw
+	rtn
+	
+servicesearchattribute_req_attributelist_loop:	
+	ifetch 1,contr
+	istore 1,contw
+	increase 1, regb //mem_sdp_continue_byte
+	increase -1, rega  //mem_sdp_attribute_maxbyte
+	branch servicesearchattribute_req_check_next_ctn,zero
+	loop servicesearchattribute_req_attributelist_loop
+servicesearchattribute_req_check_next_ctn:	
+	copy contw, timeup
+	copy regb, pdata
+	store 2, mem_sdp_continue_byte
+	copy rega, pdata
+	store 2, mem_sdp_attribute_maxbyte
+	branch answer_attributelist_with_ctn_bytes,blank
+	branch answer_attributelist_with_ctn_end, user
+	copy timeup,contw
+servicesearchattribute_req_check_handle:	
+	increase 1,queue
+	fetch 1, mem_handle_humber
+	isub queue,null
+	nbranch servicesearchattribute_req_next_handle,zero
+	branch answer_attributelist_end_long
+servicesearchattribute_req_next_handle:	
+	arg mem_handle_list,contr
+	lshift2 queue,pdata
+	iadd contr,contr
+	ifetch 4, contr //handle in pdata
+	iforce temp
+	call 	search_handle
+	copy contr,timeup
+	call sdp_get_data
+	add pdata,3,loopcnt
+	fetch 2, mem_sdp_attribute_maxbyte
+	copy pdata, rega
+	fetch 2, mem_sdp_continue_byte
+	copy pdata, regb
+	copy timeup,contr
+	branch servicesearchattribute_req_attributelist_loop
+answer_attributelist_with_ctn_bytes:
+	arg 0, queue
+	arg 0, regb
+answer_attributelist_calc_attribute_length:	
+	arg mem_handle_list,contr
+	lshift2 queue,pdata
+	iadd contr,contr
+	ifetch 4, contr //handle in pdata
+	iforce temp
+	call 	search_handle
+	call sdp_get_data
+	add pdata,3,pdata
+	iadd regb, regb
+	increase 1,queue
+	fetch 1, mem_handle_humber
+	isub queue,null
+	nbranch answer_attributelist_calc_attribute_length,zero
+	
+	copy timeup,contw
+	force 2,pdata
+	istore 1,contw
+	fetch 2, mem_sdp_continue_byte
+	byteswap pdata,pdata
+	istore 2, contw
+	increase -3,contw
+	fetcht 2,mem_sdp_tx_payload_ptr
+	add temp,10,pdata //setarg mem_SDP_Tx_payload+10
+	isub contw,pdata
+	sub pdata,0,pdata
+	iforce rega
+
+	deposit regb //no longer use regb??
+	add temp,9,regb//store 1,mem_SDP_Tx_payload+9
+	istore 1,regb
+	rshift8 pdata,pdata
+	add temp,8,regb
+	istore 1,regb//store 1,mem_SDP_Tx_payload+8
+	increase 3,rega
+	deposit rega
+	add temp,6,regb
+	istore 1,regb//store 1,mem_SDP_Tx_payload+6	/* AttrListByteCount */
+	rshift8 pdata,pdata
+	add temp,5,regb
+	istore 1,regb//store 1,mem_SDP_Tx_payload+5
+	increase 5,rega
+	deposit rega
+	add temp,4,regb
+	istore 1,regb//store 1,mem_SDP_Tx_payload+4	/* ParLength */
+	rshift8 pdata,pdata
+	add temp,3,regb
+	istore 1,regb//store 1,mem_SDP_Tx_payload+3
+	increase 5,rega
+	deposit rega
+	store 2,mem_sdp_tx_pkt_length	
+	setarg 7
+	istore 1,temp//jam 7,mem_SDP_Tx_payload	 //PDU ID
+	setarg 0x36
+	add temp,7,regb//jam 0x36,mem_SDP_Tx_payload+7
+	istore 1,regb
+	add temp,1,regb//store 2,mem_SDP_Tx_payload+1
+	fetch 2,mem_sdp_transactionid
+	istore 2,regb
+	rtn
+answer_attributelist_with_ctn_end:
+	copy timeup,contw
+	force 0,pdata
+	istore 1,contw
+	increase -1, contw
+	fetcht 2,mem_sdp_tx_payload_ptr
+	add temp,7,pdata//setarg mem_SDP_Tx_payload+7
+	isub contw,pdata
+	sub pdata,0,pdata
+	iforce rega
+
+	deposit rega
+	add temp,6,regb//store 1,mem_SDP_Tx_payload+6
+	istore 1,regb
+	rshift8 pdata,pdata
+	add temp,5,regb//store 1,mem_SDP_Tx_payload+5  /* AttrListByteCount */
+	istore 1,regb
+	increase 3,rega
+	deposit rega
+	add temp,4,regb//store 1,mem_SDP_Tx_payload+4	/* ParLength */
+	istore 1,regb
+	rshift8 pdata,pdata
+	add temp,3,regb//store 1,mem_SDP_Tx_payload+3
+	istore 1,regb
+	increase 5,rega
+	deposit rega
+	store 2,mem_sdp_tx_pkt_length	
+
+	setarg 7
+	istore 1,temp//jam 7,mem_SDP_Tx_payload	/* PDU ID */
+	
+	fetch 2,mem_sdp_transactionid
+	add temp,1,regb//store 2,mem_SDP_Tx_payload+1
+	istore 2,regb
+	rtn
+	
+answer_attributelist_end_long:
+	force 0,pdata
+	istore 1,contw
+	increase -1,contw
+	fetcht 2,mem_sdp_tx_payload_ptr
+	add temp,10,pdata//setarg mem_SDP_Tx_payload+10
+	isub contw,pdata
+	sub pdata,0,pdata
+	iforce rega
+
+	deposit rega
+	add temp,9,regb//store 1,mem_SDP_Tx_payload+9
+	istore 1,regb
+	rshift8 pdata,pdata
+	add temp,8,regb//store 1,mem_SDP_Tx_payload+8
+	istore 1,regb
+	
+	increase 3,rega
+	deposit rega
+	add temp,6,regb//store 1,mem_SDP_Tx_payload+6	/* AttrListByteCount */
+	istore 1,regb
+	rshift8 pdata,pdata
+	add temp,5,regb//store 1,mem_SDP_Tx_payload+5
+	istore 1,regb
+	increase 3,rega
+	deposit rega
+	add temp,4,regb//store 1,mem_SDP_Tx_payload+4	/* ParLength */
+	istore 1,regb
+	rshift8 pdata,pdata
+	add temp,3,regb//store 1,mem_SDP_Tx_payload+3
+	istore 1,regb
+	increase 5,rega
+	deposit rega
+	store 2,mem_sdp_tx_pkt_length	
+	setarg 0x36
+	add temp,7,regb
+	istore 1,regb//jam 0x36,mem_SDP_Tx_payload+7
+	setarg 7
+	istore 1,temp//jam 7,mem_SDP_Tx_payload	/* PDU ID */
+	fetch 2,mem_sdp_transactionid
+	add temp,1,regb//store 2,mem_SDP_Tx_payload+1
+	istore 2,regb
+	rtn	
+sdp_data_len_obs:
+	copy contr,timeup
+	ifetch 1,contr
+	and pdata,0x07,loopcnt
+	rshift3 pdata,pdata
+	beq 6,sdp_data_len_6_obs
+	beq 1,sdp_data_len_1
+	beq 4,sdp_data_len_6
+	beq 5,sdp_data_len_5
+	branch sdp_data_len_rtn
+sdp_data_len_6_obs:
+	call sdp_get_data_6_obs
+	branch sdp_data_len_rtn
+sdp_get_data_6_obs:
+	deposit loopcnt
+	beq 5,sdp_get_data_6_8bit_obs
+	beq 6,sdp_get_data_6_16bit_obs
+	force 3,loopcnt
+	branch sdp_get_data_1
+sdp_get_data_6_8bit_obs:
+	ifetch 1,contr
+	increase 2,pdata
+	rtn
+sdp_get_data_6_16bit_obs:
+	ifetch 2,contr
+	byteswap pdata,pdata
+	increase 3,pdata
+	rtn
+
+sdp_send_spp_request:
+	call l2cap_get_sdp_tx_payload
+	copy pdata,contw
+	setarg 6//Search Attr Req
+	istore 1,contw
+	setarg sdp_tid_spp					
+	istore 2,contw
+	setarg 0x0f00 //length15
+	istore 2,contw
+	setarg 0x1a0535
+	istore 3,contw
+	setarg 0x0111
+	lshift16 pdata,pdata //UUID
+	istore 4,contw
+	setarg 0x2600 //max return len
+	istore 2,contw
+	setarg 0x0335
+	istore 2,contw
+	setarg 0x0009
+	istore 2,contw
+	setarg 0x0004
+	istore 2,contw
+	jam 0x14,mem_sdp_tx_pkt_length
+	rtn
+
+/**********************************************************************/
+/* servicesearchattribute_res			                      */
+/* Processing Service Search Attribute Response                       */
+/* Call: dataelementtype6, attribute_reading                    */
+/* Input:       contr                                                 */
+/* Output:      mem_sdp_record_handle,mem_sdp_search_failed           */
+/*                                                                    */
+/**********************************************************************/     
+servicesearchattribute_res:
+	copy contr,temp				/* save reading pointer */
+	fetch 2,mem_sdp_transactionid			/* check if this is the response for   */
+	beq sdp_tid_spp,servicesearchattribute_res_spp
+	//no profiles now, hs,hf,pbap,avtarg were cut off
+	//maybe add something about spp
+	branch srchfail
+
+servicesearchattribute_res_spp:
+	copy temp,contr
+	increase -3,timeup
+	copy timeup,pdata
+	beq 2,srchfail// empty response
+	call find_rfcomm_channel_number
+	rtn user
+	store 1,mem_remote_spp_channel
+	jam RECIEVE_SS_REASULT_HF,mem_message_to_uppersm
+	rtn
+
+srchfail:
+	rtn
+	/* find_rfcomm_channel_number	*/
+	/* input att_list_lenth in pdata   	*/
+	/* input att_list_ptr in contr		*/
+	/* output channel_number in pdata	*/
+	/* output failed while user was set	*/
+find_rfcomm_channel_number:
+	enable user
+	copy pdata,loopcnt
+	arg 0x0400,temp //att_descriptor_list
+find_rfcomm_channel_number_loop://find att_descriptor_list
+	ifetch 2,contr
+	isub temp,null
+	branch find_rfcomm_channel_number_find_adl,zero
+	increase -1,contr
+	loop find_rfcomm_channel_number_loop
+	rtn
+find_rfcomm_channel_number_find_adl:
+	arg 0x0300,temp
+find_rfcomm_channel_number_loop2:
+	ifetch 2,contr
+	isub temp,null
+	branch find_rfcomm_channel_number_find_rfcomm,zero
+	increase -1,contr
+	loop find_rfcomm_channel_number_loop2
+	rtn
+find_rfcomm_channel_number_find_rfcomm:
+	ifetch 1,contr
+	ifetch 1,contr
+	disable user
+	rtn
+/**********************************************************************/
+/* Subroutine: attribute_reading                                   */
+/* Reading each Data Element Sequence inside one Attribute List       */
+/* Called from servicesearchattribute_res                             */
+/* Call dataelementtype6                                           */  
+/* Input:       contr,timeup                                          */
+/* Output:      timeup,mem_sdp_LACAP_found,mem_sdp_RFCOMM_found      */
+/*                                                                    */
+/*                                                                    */
+/**********************************************************************/     
+attribute_reading:
+	call dataelementtype6		/* decode data element sequence */
+	branch rdnortn,zero  
+	force 0,regb					/* regb to be used as 128 bit uuid flag */
+	ifetch 1,contr
+	increase -1,rega  
+	increase -1,timeup  
+	compare 0x18,pdata,0xf8			/* 5 MSB: b00011, uuid */
+	nbranch rduuid3,true
+	compare 0x04,pdata,0x07			/* 3 LSB: b100, 128 bits uuid */
+	nbranch is032,true
+	force 1,regb					/* mark it as 128 bit uuid */
+skp2bytes:
+	increase 2,contr				/* skip 2 bytes */
+	increase -2,rega	
+	increase -2,timeup
+	branch rduuid1				/* add 126 bits  */
+is032:
+	compare 0x02,pdata,0x07			/* 3 LSB: b010 32 bits uuid */
+	nbranch is016,true
+	branch skp2bytes			
+is016:
+	compare 0x01,pdata,0x07			/* 3 LSB: b001 16 bit uuid */
+	nbranch rduuid3,true
+rduuid1:
+	ifetch 1,contr				/* get higher order byte */
+	increase -1,rega
+	increase -1,timeup
+	bne 0x01, rduuid2
+	ifetch 1,contr				/* get lower order byte */
+	increase -1,rega
+	increase -1,timeup
+	bne 0x00, rduuid3
+	jam 0xff,mem_sdp_LACAP_found			/* set L2CAP found parameter */
+	branch rduuid3
+rduuid2:
+	bne 0x00, rduuid3
+	ifetch 1,contr				/* get lower order byte */
+	increase -1,rega
+	increase -1,timeup
+	bne 0x03, rduuid3
+	copy regb,null
+	branch not16by,zero				/* 128 bit uuid, skip 12 bytes */
+	increase -12,contr	
+	increase -12,timeup
+not16by:		
+	force 0xff,pdata
+	store 1,mem_sdp_RFCOMM_found			/* set RFCOMM found parameter */
+	ifetch 1,contr
+	increase -1,rega
+	increase -1,timeup
+	compare 0x08,pdata,0xf8		//b00001	
+	nbranch rduuid3,true
+	compare 0x00,pdata,0x07
+	branch unsign1,true
+	compare 0x01,pdata,0x07
+	branch unsign2,true
+	compare 0x02,pdata,0x07
+	branch unsign4,true
+	compare 0x03,pdata,0x07
+	branch unsign8,true
+	compare 0x04,pdata,0x07
+	nbranch rduuid3,true
+	increase 8,contr
+	increase -8,rega
+	increase -8,timeup
+unsign8:  
+	increase 4,contr
+	increase -4,rega
+	increase -4,timeup
+unsign4:  
+	increase 2,contr
+	increase -2,rega
+	increase -2,timeup
+unsign2:  
+	increase 1,contr
+	increase -1,rega
+	increase -1,timeup
+unsign1:  
+	ifetch 1,contr
+	increase -1,rega
+	increase -1,timeup
+rduuid3:
+	increase -1,timeup
+	increase -1,rega
+	branch rduuid3,positive			/* if rega=0, done */
+	increase 1,timeup				/* return byte count */
+	force 0x01,pdata
+	rtn,
+rdnortn:
+	force 0x00,pdata
+	rtn,						    
+
+sdp_invalid_service_record_handle:		
+	setarg 0x0200
+	store 2,mem_sdp_error_code
+	branch sdp_error_rsp
+sdp_invalid_pdu_size:				
+	setarg 0x0400
+	store 2,mem_sdp_error_code
+	branch sdp_error_rsp
+sdp_insufficient_resource:			
+	setarg 0x0600
+	store 2,mem_sdp_error_code
+	branch sdp_error_rsp
+sdp_invalid_reqest_syntax:			
+	setarg 0x0300
+	store 2,mem_sdp_error_code
+sdp_error_rsp:	
+	call l2cap_get_sdp_tx_payload
+	istore 1,contw
+	fetch 2,mem_sdp_transactionid			
+	istore 2,contw
+	setarg 0x0200					
+	istore 2,contw
+	fetch 2,mem_sdp_error_code			
+	istore 2,contw
+	jam  7,mem_sdp_tx_pkt_length
+	rtn
+
+ask_serviceclassid:  
+	force 0,temp					/* use "temp" to mark syntax error or to mark 128 bit uuid */
+	arg mem_uuid_search_pat,contw
+	call dataelementtype6
+	branch asksrv_error,zero
+classidloop:
+	ifetch 1,contr
+	increase -1,rega
+	increase -1,timeup
+	compare 0x18,pdata,0xf8			/* 5 MSB: b00011: uuid */
+	nbranch asksrv_error,true
+	compare 0x04,pdata,0x07			/* 3 LSB: b100 128 bits uuid */
+	nbranch cmp032,true
+	force 1,temp					/* mark it as 128 bit uuid */
+skip2bytes:
+	ifetch 1,contr
+	increase -1,rega	
+	increase -1,timeup
+	bne 0x00, frstbwrong
+	ifetch 1,contr
+	increase -1,rega	
+	increase -1,timeup
+	beq 0x00, cmpuuid
+	branch scndbwrong
+frstbwrong:  
+	increase 1,contr
+	increase -1,rega	
+	increase -1,timeup
+scndbwrong:  
+	increase 2,contr				/* skip 2 bytes, first 2 bytes already wrong */
+	increase -2,rega	
+	increase -2,timeup
+	compare 0x00,temp,0xff                        /* 128 bits or 32 bits ? */
+	branch loopornot,true
+	increase 12,contr				/* skip 12 bytes, first 2 bytes already wrong */
+	increase -12,rega	
+	increase -12,timeup
+	branch loopornot
+cmp032:
+	compare 0x02,pdata,0x07			/* 3 LSB: b010 32 bits uuid */
+	nbranch cmp016,true
+	branch skip2bytes			
+cmp016:
+	compare 0x01,pdata,0x07			/* 3 LSB: b001 16 bit uuid */
+	nbranch asksrv_error,true
+cmpuuid:
+	ifetch 2,contr				/* higher order byte */
+	increase -2,rega
+	increase -2,timeup
+	istore 2,contw
+uuidsize:
+	compare 0x00,temp,0xff			/* is this 128 bits uuid */
+	branch loopornot,true
+	copy contr,temp
+	ifetch 1,contr
+	bne 0x00, wrong12b
+	ifetch 1,contr
+	bne 0x00, wrong12b
+	ifetch 1,contr
+	bne 0x10, wrong12b
+	ifetch 1,contr
+	bne 0x00, wrong12b
+	ifetch 1,contr
+	bne 0x80, wrong12b
+	ifetch 1,contr
+	bne 0x00, wrong12b
+	ifetch 1,contr
+	bne 0x00, wrong12b
+	ifetch 1,contr
+	bne 0x80, wrong12b
+	ifetch 1,contr
+	bne 0x5f, wrong12b
+	ifetch 1,contr
+	bne 0x9b, wrong12b
+	ifetch 1,contr
+	bne 0x34, wrong12b
+	ifetch 1,contr
+	beq 0xfb, chck12dn
+wrong12b:
+	copy temp,contr  
+wrong12b1:
+	increase 12,contr				/* skip 12 bytes */
+	force 0x00,queue
+	force 0x00,temp
+	branch chck12dn
+noclass:
+	ifetch 1,contr
+	increase -1,rega
+	increase -1,timeup
+	branch uuidsize
+chck12dn:
+	increase -12,timeup
+	increase -12,rega
+loopornot:
+	compare 0x00,rega,0xff
+	nbranch classidloop,true
+	force 0,pdata
+	istore 2,contw			/* end list with null */
+	rtn,
+asksrv_error:
+	arg 0xff,temp
+	rtn
+
+/**********************************************************************/
+/* Subroutine: dataelementtype6                                    */
+/* Parse Data Element Sequence, obtain the data size                  */
+/* Input:  SDP Rx Buf Pointer in contr, parameter count in timeup     */
+/* Output: data size in rega, SDP Rx Buf Pointer in contr             */
+/*         and  parameter count in timeup, return with zero flag set: */
+/*         syntax error                                               */
+/**********************************************************************/     
+dataelementtype6:
+	ifetch 1,contr
+	increase -1,timeup
+	compare 0x30,pdata,0xf8			/* 5 MSB: b00110: type 6 */
+	nbranch dsize_error,true
+	compare 0x07,pdata,0x07			/* 3 LSB: b111: 32 bits */
+	branch dsize32,true
+	compare 0x06,pdata,0x07			/* 3 LSB: b110: 16 bits */
+	branch dsize16,true
+	compare 0x05,pdata,0x07			/* 3 LSB: b101: 8 bits */
+	nbranch dsize_error,true
+	ifetch 1,contr
+	copy pdata,rega				/* data in reg A */
+	increase -1,timeup
+	branch dsize
+dsize32:
+	increase 2,contr				/* just move pointer +2, zero in 2 high byte */
+	increase -2,timeup
+dsize16:
+	ifetch 2,contr
+	byteswap pdata,rega
+	increase -2,timeup
+set_nblank:
+dsize:
+	force 0x01,pdata
+	rtn
+set_blank:
+dsize_error:
+	force 0x00,pdata
+	rtn
+
+/**********************************************************************/
+/* Subroutine: empty_response                                      */
+/* Send empty response                                                */
+/*                                                                    */
+/* Input:       mem_sdp_pduid, mem_sdp_transactionid                  */
+/* Output:      mem_SDP_Tx_payload, mem_SDP_Tx_pkt_length             */
+/*                                                                    */
+/**********************************************************************/     
+empth_sa_rsp:
+	setarg 0x03
+	store 1, mem_sdp_pduid
+	branch empty_response
+empty_ssa_rsp:
+	setarg 0x07
+	store 1, mem_sdp_pduid
+empty_response:
+	call l2cap_get_sdp_tx_payload			/* empty attribute list */
+	fetch 1,mem_sdp_pduid				/* PDUID */
+	istore 1,contw
+	copy pdata,regb
+	fetch 2,mem_sdp_transactionid			/* copy back transaction id */
+	istore 2,contw
+	
+	setarg 0x0500
+	istore 2, contw
+	compare 0x05,regb,0xff			/* pduid 3 */
+	branch fullsearch,true
+	compare 0x07,regb,0xff			/* pduid 3 */
+	branch fullsearch,true
+	setarg 0x000000
+	istore 3,contw
+	istore 2,contw
+	branch outempty
+
+fullsearch:					/* pduid must be 5 or 7 */
+	//force 0x00,pdata
+	//istore 1,contw
+	//force 0x02,pdata
+	//istore 1,contw
+	//force 0x35,pdata
+	//istore 1,contw
+	setarg 0x350200
+	istore 3,contw
+	//force 0x00,pdata
+	//istore 1,contw
+	//force 0x00,pdata
+	//istore 1,contw
+	setarg 0
+	istore 2, contw
+outempty:
+	jam 10,mem_sdp_tx_pkt_length
+	rtn
+
+sdp_data_len:
+	copy contr,timeup
+	ifetch 1,contr
+	and pdata,0x7,loopcnt
+	rshift3 pdata,pdata
+	beq 6,sdp_data_len_6
+	beq 1,sdp_data_len_1
+	beq 4,sdp_data_len_6
+	beq 5,sdp_data_len_5
+sdp_data_len_rtn:	
+	copy timeup,contr
+	rtn
+sdp_data_len_1:
+	call sdp_data_size
+	increase 1,pdata
+	branch sdp_data_len_rtn
+sdp_data_len_5:
+	force 2,pdata
+	branch sdp_data_len_rtn
+sdp_data_len_6:
+	call sdp_get_data_6
+	increase 2,pdata
+	branch sdp_data_len_rtn
+	
+sdp_get_data:
+	ifetch 1,contr
+	and pdata,0x7,loopcnt
+	rshift3 pdata,pdata
+	beq 6,sdp_get_data_6
+	beq 1,sdp_get_data_1
+	beq 5,sdp_get_data_6_8bit
+	rtn
+sdp_get_data_1:
+	call sdp_data_size
+	iforce loopcnt
+	force 0,temp
+sdp_get_data_1_loop:	
+	lshift8 temp,temp
+	ifetch 1,contr
+	ior temp,temp
+	loop sdp_get_data_1_loop
+	rtn
+sdp_get_data_6:
+	deposit loopcnt
+	beq 5,sdp_get_data_6_8bit
+	beq 6,sdp_get_data_6_16bit
+	force 3,loopcnt
+	branch sdp_get_data_1
+sdp_get_data_6_8bit:
+	ifetch 1,contr
+	rtn
+sdp_get_data_6_16bit:
+	ifetch 2,contr
+	byteswap pdata,pdata
+	rtn
+
+	/* get data size according to size index in loopcnt */
+sdp_data_size:
+	force 1,pdata
+	copy loopcnt,null
+	rtn zero
+sdp_data_size_loop:
+	lshift pdata,pdata
+	loop sdp_data_size_loop
+	rtn
+
+
+
+	/* return handles in queue if found */
+search_uuid:
+	iforce regc
+	set1 mark_ext_patch,mark
+	bpatch patch3d_1,mem_patch3d
+	force 0,queue
+	fetch 2, memui_uuid_table
+	iforce contr
+	arg mem_handle_list,contw
+search_uuid_next:
+	disable user
+	ifetch 1,contr
+	rtn blank
+	iforce loopcnt
+search_uuid_loop:	
+	ifetch 2,contr
+	isub regc,null
+	nbranch search_uuid_not_found,zero
+	enable user					/* uuid match */
+search_uuid_not_found:
+	loop search_uuid_loop
+	ifetch 4,contr					/* get handle */
+	nbranch search_uuid_nomatch,user
+	istore 4,contw
+	increase 1,queue
+search_uuid_nomatch:	
+	call sdp_get_data
+	iadd contr,contr			/* next paragraph */
+	branch search_uuid_next
+
+	/* return handle in pdata if found, 0 if not */
+search_handle:
+	fetch 2,memui_uuid_table
+	iforce contr
+search_handle_loop:	
+	ifetch 1,contr
+	rtn blank
+	lshift pdata,pdata
+	iadd contr,contr
+	ifetch 4,contr
+	isub temp,null
+	rtn zero
+	call sdp_get_data
+	iadd contr,contr
+	branch search_handle_loop
+
+/**
+* input regb and regc.regb is the attribute ID and regc is UUID.
+* set contr if find attribute or 0 if not
+*/
+	
+search_attrib:
+	set1 mark_ext_patch,mark
+	bpatch patch3d_2,mem_patch3d
+	fetch 2,memui_uuid_table
+	iforce contr
+search_attrib_next:
+	ifetch 1,contr
+	branch search_attrib_end, blank
+	iforce loopcnt
+search_attrib_loop:	
+	ifetch 2,contr
+	isub regc,null						/* regc is UUID, compare it */
+	branch search_attrib_found_uuid,zero
+	loop search_attrib_loop
+	increase 4,contr
+	call sdp_get_data
+	iadd contr,contr			/* next paragraph */
+	branch search_attrib_next	
+search_attrib_found_uuid:
+	increase -1,loopcnt
+	lshift loopcnt,pdata
+	iadd contr,contr
+	increase 4,contr
+	call sdp_get_data
+	iadd contr,temp					/* attribute list end */
+search_attrib_loop_attribs:	
+	increase 1,contr
+	ifetch 2,contr
+	isub regb,timeup
+	//force 0x1,pdata,zero
+	setflag zero, 0,pdata
+	copy timeup, timeup
+	rtn zero							/* attribute found */
+	call sdp_data_len
+	iadd contr,contr
+	deposit temp
+	isub contr,null
+	branch search_attrib_end, zero /*attribute end, not found the attribute, return contr = 0*/
+	branch search_attrib_loop_attribs	
+search_attrib_end:
+	force 0,contr
+	force 0,pdata
+	rtn
+	
+
+//search the attribute according the record handle
+//record handle in temp, attribute in regb
+//set the contr to zero if not found
+search_handle_attrib:	
+	set1 mark_ext_patch,mark
+	bpatch patch3d_3,mem_patch3d
+	fetch 2,memui_uuid_table
+	iforce contr
+search_handle_attrib_next:
+	ifetch 1,contr
+	branch search_handle_attrib_end, blank
+	lshift pdata,pdata
+	iadd contr, contr
+	ifetch 4,contr
+	isub temp,null						/* regc is UUID, compare it */
+	branch search_handl_attrib_found_handle,zero
+	call sdp_get_data
+	iadd contr,contr			/* next paragraph */
+	branch search_handle_attrib_next	
+search_handl_attrib_found_handle:
+	call sdp_get_data
+	iadd contr,temp					/* attribute list end */
+search_handle_attrib_loop_attribs:	
+	increase 1,contr
+	ifetch 2,contr
+	isub regb,null
+	rtn zero							/* attribute found */
+	call sdp_data_len
+	iadd contr,contr
+	deposit temp
+	isub contr,null
+	branch search_handle_attrib_end, zero /*attribute end, not found the attribute, return contr = 0*/
+	branch search_handle_attrib_loop_attribs
+search_handle_attrib_end:
+	force 0,contr
+	rtn	
+
+	
Index: btkb/program/security.prog
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/btkb/program/security.prog	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/btkb/program/security.prog	(working copy)
@@ -0,0 +1,1140 @@
+generate_kinit:
+	call function_e22
+	arg mem_input_store,contr
+	arg mem_kinit,contw		/* Kinit is ready */
+	branch memcpy16
+
+
+function_e21:	/* rega pointers to bdaddr */
+	disable user
+	call function_expand
+	arg mem_random_number,contr
+	arg mem_x,contw
+	force 15,loopcnt
+	call memcpy			
+	ifetch 1,contr
+	xor_into 6,pdata
+	istore 1,contw
+	setarg mem_y
+	store 2,memp_ar_input
+	setarg mem_x
+	store 2,memp_ar_key
+	set1 mark_ar2,mark
+	branch function_ar
+
+
+	
+function_e22:		/* rega pointers to bdaddr */
+	fetcht 1,mem_pin_length
+	force 16,regb			/* total 16 bytes */
+	add temp,6,regc		/* regc is l' */
+	sub regc,16,null		
+	branch function_e22_pin_init,positive 
+	force 16,regc
+function_e22_pin_init:			/* generate x from pin and bdaddr */
+	arg mem_x,contw
+function_e22_genx_pin:
+	arg mem_pin,contr
+	copy temp,loopcnt
+	disable user
+function_e22_genx_loop:
+	ifetch 1,contr
+	istore 1,contw
+	increase -1,regb
+	branch function_e22_genx_end,zero
+	loop function_e22_genx_loop
+	branch function_e22_genx_pin,user
+	enable user
+	force 6,loopcnt
+	copy rega,contr
+	branch function_e22_genx_loop
+function_e22_genx_end:
+	arg mem_random_number,contr
+	arg mem_y,contw
+	call memcpy16
+	fetch 1,mem_y15
+	ixor regc,pdata
+	store 1,mem_y15	/* inpy[15] = rand_num[15]^l'; */
+	setarg mem_y
+	store 2,memp_ar_input
+	setarg mem_x
+	store 2,memp_ar_key
+	set1 mark_ar2,mark
+	branch function_ar
+
+
+
+
+function_e1:	/* rega pointers to bdaddr */
+	disable user
+	call function_expand
+	branch function_hash
+
+function_e3:
+	arg mem_aco,rega
+	enable user
+	call function_expand
+	call function_hash
+	arg mem_input_store,contr
+	arg mem_kc,contw
+	branch memcpy16
+
+	/* costs 41769 clocks */
+function_hash:
+	setarg mem_random_number
+	store 2,memp_ar_input
+	setarg mem_link_key
+	store 2,memp_ar_key
+	set0 mark_ar2,mark
+	call function_ar
+	arg mem_input_store,rega
+	arg mem_random_number,regb
+	arg mem_x,contw
+	call xor16
+	arg mem_x,rega
+	arg mem_y,regb
+	copy regb,contw
+	enable user
+	call add16
+	call key_offset
+	setarg mem_y
+	store 2,memp_ar_input
+	setarg mem_x
+	store 2,memp_ar_key
+	set1 mark_ar2,mark
+	branch function_ar
+	
+
+	/* totally costs 20700 clocks */
+function_ar:
+	jam 0,mem_ar_hround
+	fetch 2,memp_ar_key
+	iforce contr
+	arg mem_key_store,contw
+	call memcpy16
+	fetch 2,memp_ar_input
+	iforce contr
+	arg mem_input_store,contw
+	call memcpy16
+	
+function_ar_loop:
+	call key_scheduling
+	disable user
+	bmark0 mark_ar2,function_ar_original
+	fetch 1,mem_ar_hround
+	bne 4,function_ar_original
+	fetch 2,memp_ar_input
+	iforce regb
+	call xor_mod32_ar2
+function_ar_original:
+	call xor_mod32
+	call el_boxes
+	fetch 1,mem_ar_hround
+	increase 1,pdata
+	store 1,mem_ar_hround
+
+	call key_scheduling
+	enable user
+	call xor_mod32
+	call pht
+	call permute
+	call pht
+	call permute
+	call pht
+	call permute
+	call pht
+	fetch 1,mem_ar_hround
+	increase 1,pdata
+	store 1,mem_ar_hround
+	bne 16,function_ar_loop
+	call key_scheduling
+	disable user
+	branch xor_mod32
+	
+/* input round number and temp key in mem_key_store, and output the next temp key in mem_key_store */
+/* round key is generated and store in mem_round_key */
+key_scheduling:
+	fetch 1,mem_ar_hround
+	arg mem_key_store,contr
+	branch key_sched_zero,blank
+	iforce regb      			/* regb is half round */
+	force 17,loopcnt
+	copy contr,contw
+key_rotateloop:
+	ifetch 1,contr
+	lshift3 pdata,temp
+	rshift2 pdata,pdata
+	rshift3 pdata,pdata
+	ior temp,pdata
+	istore 1,contw
+	loop key_rotateloop
+	setarg mem_key_store
+	iadd regb,contr
+	force 16,loopcnt    
+	arg mem_round_key,contw
+key_select_octet_loop:
+	ifetch 1,contr
+	istore 1,contw
+	compare mem_key_store_end,contr,0xff
+	nbranch key_select_octet_nwrap,true
+	increase -17,contr
+key_select_octet_nwrap:
+	loop key_select_octet_loop
+	force 0,rega         /* rega is index of octet within row */
+	add regb,-1,regc    /* this is the row index, half_round#1 is 0 */
+	lshift2 regc,regc
+	lshift2 regc,regc
+	call enable_authrom
+	setarg mem_b_box
+	iadd regc,regc       /* regc hold the starting address of the row */
+	arg mem_round_key,contw
+	force 16,loopcnt
+bias_round_key_loop:
+	ifetcht 1,regc
+	ifetch 1,contw
+	iadd temp,pdata
+	istore 1,contw
+	increase 1,regc
+	loop bias_round_key_loop
+	branch disable_authrom
+
+key_sched_zero:    /* round 0, key1 */
+	force 16,loopcnt
+	force 0,temp
+create_byte_16_loop:
+	ifetch 1,contr
+	ixor temp,temp
+	loop create_byte_16_loop
+	deposit temp
+	istore 1,contr    	/* store the byte #16 */
+	arg mem_key_store,contr
+	arg mem_round_key,contw
+	branch memcpy16
+
+xor_mod32:     /* xor on 0,3, add on 1,2. if user is set, invert. x in rega and y in regb, out in contw */
+	arg mem_round_key,regb
+xor_mod32_ar2:
+	force 16,loopcnt
+	arg mem_input_store,rega
+	copy rega,contw
+xor_mod32_loop:	
+	ifetcht 1,rega
+	ifetch 1,regb
+	ixor temp,alarm
+	and loopcnt,3,regc
+	nbranch xor_mod32_invert,user
+	xor_into 3,regc
+xor_mod32_invert:
+	sub regc,1,regc
+	branch xor_even,positive
+	iadd temp,alarm
+xor_even:
+	deposit alarm
+	istore 1,contw
+	increase 1,rega
+	increase 1,regb
+	loop xor_mod32_loop
+	rtn
+
+el_boxes:
+	call enable_authrom
+	force 16,loopcnt
+	arg mem_input_store,rega
+el_box_loop:	
+	ifetch 1,rega
+	arg mem_e_box,contr
+	and loopcnt,3,regc
+	sub regc,1,null
+	branch e_boxes,positive
+	arg mem_l_box,contr
+e_boxes:
+	iadd contr,contr
+	ifetch 1,contr
+	istore 1,rega
+	increase 1,rega
+	loop el_box_loop
+	branch disable_authrom
+
+pht:				
+	force 8,loopcnt
+	arg mem_input_store,contr
+	copy contr,contw
+pht_loop:
+	ifetch 1,contr
+	iforce rega
+	ifetch 1,contr
+	iforce regb
+	lshift rega,pdata
+	iadd regb,pdata
+	istore 1,contw
+	deposit rega
+	iadd regb,pdata
+	istore 1,contw
+	loop pht_loop
+	rtn
+
+/* 8 11 12 15 2 1 6 5 10 9 14 13 0 7 4 3 */
+permute:			
+	setarg 0x8ae42c
+	iforce temp
+	force 7,loopcnt
+	call permute_exchange
+	setarg 0xd751b
+	iforce temp
+	force 5,loopcnt
+	call permute_exchange
+	fetch 1,mem_input_store+15
+	iforce rega
+	fetch 1,mem_input_store+3
+	store 1,mem_input_store+15
+	deposit rega
+	store 1,mem_input_store+3
+	rtn
+
+permute_exchange:
+	and temp,0xf,regb
+permute_loop:
+	and temp,0xf,pdata
+	arg mem_input_store,contw
+	iadd contw,contw
+	ifetch 1,contw
+	iforce regc
+	deposit rega
+	istore 1,contw
+	copy regc,rega
+	rshift4 temp,temp
+	loop permute_loop	
+	setarg mem_input_store
+	iadd regb,contw
+	deposit rega
+	istore 1,contw
+	rtn
+
+add16:
+	enable user
+	branch xor_add16
+
+xor16:
+	disable user
+xor_add16:	/* if user is set, do add, else do xor */
+	force 16,loopcnt	/* rega and regb pointers to src, contw is result */
+xoradd_loop:
+	ifetcht 1,rega
+	ifetch 1,regb
+	branch xoradd_add,user
+	ixor temp,pdata
+	branch xoradd_store
+xoradd_add:	
+	iadd temp,pdata
+xoradd_store:	
+	istore 1,contw
+	increase 1,rega
+	increase 1,regb
+	loop xoradd_loop
+	rtn
+
+	
+function_expand:		/* rega pointers to bdaddr, or aco and user is set */
+	arg mem_y,contw
+	ifetch 6,rega
+	istore 6,contw
+	branch expand_12,user
+	ifetch 6,rega
+	branch expand_cont
+expand_12:
+	ifetch 6,contr
+expand_cont:
+	istore 6,contw
+	ifetch 4,rega
+	istore 4,contw
+	rtn
+
+key_offset:
+	arg mem_link_key,contr
+	arg mem_x,contw
+	arg 0,temp
+	setarg 0x8395a7
+	call concatenate_temp24
+	setarg 0xb3c1df
+	call concatenate_temp24
+	setarg 0xe5e9
+	call concatenate_temp16
+	copy temp,regab
+	disable user
+	call key_addxor
+	copy regab,temp
+	enable user
+	branch key_addxor
+
+key_addxor:
+	force 8,loopcnt
+key_addxor_loop:	
+	ifetch 1,contr
+	compare 1,loopcnt,1
+	branch key_high,user
+	branch key_xor,true
+key_add:	
+	iadd temp,pdata
+	branch key_store
+key_high:
+	branch key_add,true
+key_xor:
+	ixor temp,pdata
+key_store:
+	istore 1,contw
+	rshift8 temp,temp
+	loop key_addxor_loop
+	rtn
+
+copy_aco:
+	fetch 6,mem_input_store+4
+	store 6,mem_aco
+	ifetch 6,contr
+	istore 6,contw
+	rtn
+	
+concatenate_temp24:
+	lshift8 temp,temp
+concatenate_temp16:
+	lshift16 temp,temp
+	ior temp,temp
+	rtn
+
+ifdef TESTING
+test_security:
+	fetch 1,0xff
+	branch test_security,blank
+
+	/* inrand */
+	setarg 0x1BC683
+	store 3,0x0
+	setarg 0x122980
+	istore 3,contw
+	setarg 0xD0DB17
+	istore 3,contw
+	setarg 0x2B1D78
+	istore 3,contw
+	setarg 0x2743A6
+	istore 3,contw
+	setarg 0xD8
+	istore 1,contw
+
+	/* comb A */
+	setarg 0xA6D0C9
+	store 3,0x10
+	setarg 0xA9E86C
+	istore 3,contw
+	setarg 0x9E89D5
+	istore 3,contw
+	setarg 0xC61838
+	istore 3,contw
+	setarg 0x6F0318
+	istore 3,contw
+	setarg 0x9F
+	istore 1,contw
+
+	/* comb B */
+	setarg 0x7F6833
+	store 3,0x20
+	setarg 0xE62E1B
+	istore 3,contw
+	setarg 0x9F67FC
+	istore 3,contw
+	setarg 0x8D3712
+	istore 3,contw
+	setarg 0x0B846C
+	istore 3,contw
+	setarg 0x4A
+	istore 1,contw
+
+	/* auth rand A */
+	setarg 0xFBB686
+	store 3,0x30
+	setarg 0x19FE7F
+	istore 3,contw
+	setarg 0x16A439
+	istore 3,contw
+	setarg 0xF4F6A4
+	istore 3,contw
+	setarg 0x10D61D
+	istore 3,contw
+	setarg 0xDE
+	istore 1,contw
+
+	/* auth rand B */
+	setarg 0x735B0C
+	store 3,0x40
+	setarg 0xA7F06B
+	istore 3,contw
+	setarg 0x04625E
+	istore 3,contw
+	setarg 0x3463B0
+	istore 3,contw
+	setarg 0xB8F17A
+	istore 3,contw
+	setarg 0x7C
+	istore 1,contw
+
+	/* address A */
+	setarg 0xf91330
+	store 3,0xb0
+	setarg 0x664c7d
+	istore 3,contw
+
+	/* address B */
+	setarg 0xdc7100
+	store 3,0xb8
+	setarg 0x2ea003
+	istore 3,contw
+
+	/* sres A */
+	setarg 0x2EEE19
+	store 3,0x50
+	setarg 0x7E
+	istore 1,contw
+
+	/* sres B */
+	setarg 0x4231A4
+	store 3,0x58
+	setarg 0xD1
+	istore 1,contw
+
+	/* linkA */
+	setarg 0xa6a026
+	store 3,0x60
+	setarg 0x2569d2
+	istore 3,contw
+	setarg 0xab4a9d
+	istore 3,contw
+	setarg 0x5e87c0
+	istore 3,contw
+	setarg 0x792aa9
+	istore 3,contw
+	setarg 0x4b
+	istore 1,contw
+
+	/* linkB */
+	setarg 0xa1f07d
+	store 3,0x70
+	setarg 0xec97a6
+	istore 3,contw
+	setarg 0xae31eb
+	istore 3,contw
+	setarg 0x6fe3c4
+	istore 3,contw
+	setarg 0xa1ae1a
+	istore 3,contw
+	setarg 0x3a
+	istore 1,contw
+
+	/* linkkey */
+	setarg 0x07505b
+	store 3,0x80
+	setarg 0xc9fe74
+	istore 3,contw
+	setarg 0x057b76
+	istore 3,contw
+	setarg 0x316404
+	istore 3,contw
+	setarg 0xd884b3
+	istore 3,contw
+	setarg 0x71
+	istore 1,contw
+
+	/* K */
+	setarg 0x0c333f
+	store 3,0x90
+	setarg 0x41de70
+	istore 3,contw
+	setarg 0x9b05a2
+	istore 3,contw
+	setarg 0xb954a2
+	istore 3,contw
+	setarg 0xb37516
+	istore 3,contw
+	setarg 0x36
+	istore 1,contw
+
+	/* kinit */
+	setarg 0x5ff91a
+	store 3,0xa0
+	setarg 0x39b5a4
+	istore 3,contw
+	setarg 0x258f2d
+	istore 3,contw
+	setarg 0x5d4a85
+	istore 3,contw
+	setarg 0x656ad3
+	istore 3,contw
+	setarg 0xab
+	istore 1,contw
+
+	arg 0,contr
+	arg mem_random_number,contw
+	call memcpy16
+	setarg 0x3131
+	store 2,mem_pin
+	istore 2,contw
+	jam 4,mem_pin_length
+	arg 0xb8,rega
+	call function_e22
+	arg mem_input_store,contr
+	arg mem_kinit,contw
+	call memcpy16
+	arg 0x10,rega
+	arg mem_kinit,regb
+	arg mem_random_number,contw
+	call xor16
+	arg 0xb0,rega
+	call function_e21
+	arg 0x60,regb
+	call compare16
+error_lka:
+	nbranch error_lka,zero
+	arg mem_input_store,contr
+	arg mem_link_key,contw	
+	call memcpy16
+	arg 0x20,rega
+	arg mem_kinit,regb
+	arg mem_random_number,contw
+	call xor16
+	arg 0xb8,rega
+	call function_e21
+	arg 0x70,regb
+	call compare16
+error_lkb:
+	nbranch error_lkb,zero
+	arg mem_input_store,rega
+	arg mem_link_key,regb
+	arg mem_link_key,contw
+	call xor16
+	arg 0x30,contr
+	arg mem_random_number,contw
+	call memcpy16
+	arg 0xb8,rega
+	call function_e1
+	arg 0x50,regb
+	force 4,loopcnt
+	call compare_key
+error_sresa:
+	nbranch error_sresa,zero
+	arg 0x40,contr
+	arg mem_random_number,contw
+	call memcpy16
+	arg 0xb0,rega
+	call function_e1
+	arg 0x58,regb
+	force 4,loopcnt
+	call compare_key
+error_sresb:
+	nbranch error_sresb,zero
+	branch loop1
+	
+	arg 0,contr
+	arg mem_random_number,contw
+	call memcpy16
+	force 12,loopcnt
+	call memcpy
+	arg 0x1c,contr
+	arg mem_link_key,contw
+	call memcpy16
+	arg 0x10,rega
+	call function_e3
+	branch loop1
+
+compare16:
+	force 16,loopcnt
+compare_key:
+	arg mem_input_store,rega
+compare_loop:
+	ifetch 1,rega
+	ifetcht 1,regb
+	isub temp,null
+	nrtn zero
+	increase 1,rega
+	increase 1,regb
+	loop compare_loop
+	force 0,pdata
+	rtn
+	
+endif
+
+loop1:	
+	branch loop1
+
+/* ==================== LE security ================= */
+
+generate_stk:
+	call function_s1
+	arg mem_le_ltk,contw
+	branch store_aes_result
+
+	/* contr = rand pointer */
+authenticate_rconfirm:
+	arg mem_le_srand,contw
+	branch authenticate_mconfirm,master
+	arg mem_le_mrand,contw
+authenticate_mconfirm:
+	copy contr,rega
+	call memcpy16
+	call function_c1
+	arg mem_le_rconfirm,contr
+	branch compare_res
+
+generate_confirm:
+	arg mem_le_mrand,rega
+	branch generate_mrand,master
+	arg mem_le_srand,rega
+generate_mrand:
+	copy rega,contw
+	call generate_random
+	branch function_c1
+
+generate_sk:
+	arg mem_le_skdm,contr
+	call load_data128
+	arg mem_le_ltk,contr
+	call load_regext
+	force 0x38,aes_ctrl
+	force 0x0,aes_ctrl
+	call wait_aes
+	arg mem_le_sk,contw
+	branch store_aes_result
+
+	/* temp=packet counter, rega = length or block counter*/
+first_block_counter:
+	force 0x49,pdata
+	branch first_block
+first_block_data:
+	force 1,pdata
+first_block:
+	force regidx_data,regext_index			/* B0 */
+	lshift8 temp,regext
+	ior regext,regext
+	increase 1,regext_index
+	rshift8 temp,regext
+	rshift16 regext,regext
+	fetch 2,mem_le_ivm
+	lshift16,pdata,pdata
+	ior regext,regext				/* octet3&octet4 of counter and low 16 bit of IV */
+	increase 1,regext_index
+	ifetch 4,contr					/* IV2-IV5 */
+	iforce regext
+	increase 1,regext_index
+	ifetch 2,contr					/* IV6-IV7 */
+	byteswap rega,regext
+	lshift16 regext,regext
+	ior regext,regext
+	increase 1,regext_index
+	rtn
+
+
+	/* temp=packet counter, regc pointers to data */	
+generate_mic:
+	add regc,1,contr
+	ifetch 1,contr
+	iforce rega
+	call first_block_counter
+	call do_aes_ocb
+
+	force regidx_data,regext_index			/* B1 */
+	ifetch 1,regc
+	and_into 0x3,pdata
+	lshift16 pdata,regext
+	set1 8,regext
+	call clear_hidata
+	call do_aes_cbc
+
+	copy rega,loopcnt
+	add regc,2,contr
+	call padding_data
+generate_mic_loop:
+	call aes_load_data
+	call do_aes_cbc
+	deposit loopcnt
+	branch generate_mic_end,blank
+	branch generate_mic_loop
+generate_mic_end:
+	force regidx_result,regext_index
+	deposit regext
+	store 4,mem_le_mic
+	rtn
+
+aes_crypt_data:
+	increase 1,rega
+	call first_block_data
+	copy regc,contr
+	call aes_load_xor
+	call do_aes_ctr
+	call store_enc_data
+	increase 16,regc
+	increase -16,regb
+	branch aes_crypt_data,positive
+	rtn
+	
+le_encrypt:
+	arg mem_le_txheader,regc
+	fetcht 5,mem_le_pcnt_tx
+	call generate_mic
+	force regidx_xor,regext_index
+	iforce regext
+	force 0,rega					/* rega is block counter */
+	call first_block_data
+	call do_aes_ctr
+	arg mem_le_txpayload,regc
+	fetch 1,mem_le_txlen
+	add pdata,-1,regb
+	iadd regc,contw
+	force regidx_result,regext_index
+	deposit regext
+	istore 4,contw	
+	call aes_crypt_data
+	fetch 1,mem_le_txlen
+	increase 4,pdata
+	store 1,mem_le_txlen
+	fetcht 5,mem_le_pcnt_tx
+	increase 1,temp
+	storet 5,mem_le_pcnt_tx
+	rtn
+
+le_decrypt:
+	fetch 1,mem_le_rxbuf+1
+	sub pdata,20,null
+	branch le_dec_cont,positive
+le_dec_cont:
+	arg mem_le_rxbuf+2,regc
+	add pdata,-1,regb
+	increase -4,pdata				/* mic will be discarded */
+	store 1,mem_le_rxbuf+1
+	iadd regc,contr
+	ifetch 4,contr
+	force regidx_xor,regext_index
+	iforce regext
+	force 0,rega					/* rega is block counter */
+	fetcht 5,mem_le_pcnt_rx
+	call first_block_data
+	call do_aes_ctr
+	force regidx_result,regext_index
+	deposit regext
+	store 4,mem_le_peer_mic
+	call aes_crypt_data
+	arg mem_le_rxbuf,regc
+	call generate_mic
+	fetcht 4,mem_le_peer_mic
+	isub temp,pdata				/* MIC ok? */
+	nrtn blank
+	fetch 4,mem_le_last_mic			/* reduntdant packet? */
+	isub temp,pdata
+	rtn blank
+	storet 4,mem_le_last_mic
+	fetch 5,mem_le_pcnt_rx
+	increase 1,pdata
+	store 5,mem_le_pcnt_rx
+	force 0,pdata
+	rtn
+
+wait_aes:
+	nbranch wait_aes,aes_ready
+	rtn
+
+do_aes_ocb:
+	force 0x30,aes_ctrl
+	force 0x0,aes_ctrl
+	branch wait_aes
+
+do_aes_cbc:
+	force 0x32,aes_ctrl
+	force 0x2,aes_ctrl
+	branch wait_aes
+
+do_aes_ctr:
+	force 0x34,aes_ctrl
+	force 0x4,aes_ctrl
+	branch wait_aes
+
+do_aes_cfb:
+	force 0x36,aes_ctrl
+	force 0x6,aes_ctrl
+	branch wait_aes
+	
+aes_init:
+	force 1,aes_ctrl
+	force 0,aes_ctrl
+	rtn
+function_s1:
+	force regidx_data,regext_index
+	fetch 4,mem_le_mrand
+	iforce regext
+	increase 1,regext_index
+	ifetch 4,contr
+	iforce regext
+	increase 1,regext_index
+	fetch 4,mem_le_srand
+	iforce regext
+	increase 1,regext_index
+	ifetch 4,contr
+	iforce regext
+	increase 1,regext_index
+	call aes_clear
+	force 0x38,aes_ctrl
+	force 0x8,aes_ctrl
+	branch wait_aes
+
+	/* rega pointers to random number */
+function_c1:
+	fetch 6,mem_le_lap
+	fetcht 6,mem_le_plap
+	branch function_c1_master,master
+	fetch 6,mem_le_plap
+	fetcht 6,mem_le_lap
+function_c1_master:
+	force regidx_xor,regext_index
+	copy temp,regext
+	increase 1,regext_index
+	rshift32 temp,regext
+	lshift16 pdata,pdata
+	ior regext,regext
+	increase 1,regext_index
+	rshift32 pdata,regext
+	increase 1,regext_index
+	force 0,regext					/* p2 = ia || ra */
+	force 0,pdata
+	fetch 1,mem_le_conn_peer_addr_type
+	fetcht 1,mem_le_adv_own_addr_type
+	nbranch function_c1_irat,master
+	//conn as master
+	fetch 1,mem_le_conn_own_addr_type
+	fetcht 1,mem_le_conn_peer_addr_type
+function_c1_irat:
+	store 1,mem_le_iat
+	storet 1,mem_le_rat
+	force regidx_data,regext_index
+	arg mem_le_iat,regb
+	force 4,loopcnt
+function_c1_loop1:
+	ifetch 4,rega		
+	ifetcht 4,regb
+	ixor temp,regext
+	increase 1,regext_index
+	increase 4,rega
+	increase 4,regb
+	loop function_c1_loop1		/* p1 ^ r */
+	call aes_clear				/* k = 0 */
+	force 0x38,aes_ctrl
+	force 0xc,aes_ctrl
+	call wait_aes
+
+	call aes_clear_data
+	force 0x3a,aes_ctrl
+	force 0x8,aes_ctrl
+	branch wait_aes
+
+padding_data:
+	compare 0,loopcnt,3
+	rtn true
+	deposit contr
+	iadd loopcnt,contw
+	force 0,pdata
+padding_loop:
+	istore 1,contw
+	increase 1,loopcnt
+	compare 0,loopcnt,3
+	rtn true
+	branch padding_loop
+
+aes_load_data:
+	force regidx_data,regext_index
+load_data_loop:
+	deposit loopcnt
+	branch load_data_padding,blank
+	ifetch 4,contr
+	increase -4,loopcnt
+load_data_padding:
+	iforce regext
+	increase 1,regext_index
+	compare regidx_key,regext_index,0xf
+	rtn true
+	branch load_data_loop
+
+aes_load_xor:
+	force regidx_xor,regext_index
+	branch load_regext
+load_key:
+	force regidx_key,regext_index
+	branch load_regext
+load_data128:
+	force regidx_data,regext_index
+load_regext:
+	force 4,loopcnt
+load_regext_loop:
+	ifetch 4,contr
+	iforce regext
+	increase 1,regext_index
+	loop load_regext_loop
+	rtn
+
+load_sk:
+	arg mem_le_sk,contr
+	branch load_key
+
+clear_hidata:
+	force 4,loopcnt
+	branch clear_data_rest
+
+aes_clear_data:
+	force regidx_data,regext_index
+aes_clear:
+	force 4,loopcnt
+clear_loop:
+	force 0,regext
+clear_data_rest:
+	increase 1,regext_index
+	loop clear_loop
+	rtn
+
+store_aes_result:
+	force regidx_result,regext_index
+	force 4,loopcnt
+send_aes_result_loop:
+	deposit regext
+	istore 4,contw
+	increase 1,regext_index
+	loop send_aes_result_loop
+	rtn
+
+store_enc_data:
+	force regidx_result,regext_index
+	copy regc,contw
+	add regb,1,loopcnt
+	sub loopcnt,15,null
+	branch store_enc_loop,positive
+	force 16,loopcnt
+store_enc_loop:
+	deposit regext
+	sub loopcnt,3,null
+	branch store_enc_byte,positive
+	istore 4,contw
+	increase -4,loopcnt
+	rtn zero
+	increase 1,regext_index
+	branch store_enc_loop
+store_enc_byte:
+	istore 1,contw
+	rshift8 pdata,pdata
+	loop store_enc_byte
+	rtn
+	
+	/* contr pointers to value to be compared */
+compare_res:
+	force regidx_result,regext_index
+	force 4,loopcnt
+compare_res_loop:
+	ifetch 4,contr
+	isub regext,null
+	nrtn zero
+	increase 1,regext_index
+	loop compare_res_loop
+	force 0,null
+	rtn
+
+enable_authrom:
+	hfetch 1,core_clkoff
+	set0 CLOCK_OFF_AUTH_ROM,pdata
+	hstore 1,core_clkoff
+	rtn
+
+disable_authrom:
+	hfetch 1,core_clkoff
+	set1 CLOCK_OFF_AUTH_ROM,pdata
+	hstore 1,core_clkoff
+	rtn
+
+init_memp:
+	arg mem_p,contw
+	setsect 0,0x3ffff
+	setsect 1,0x3ffff
+	setsect 2,0x3ffff
+	setsect 3,0x3fbff
+	istore 9,contw
+	setsect 0,0x3ffff
+	setsect 1,0x3ffff
+	setsect 2,0x3ffff
+	setsect 3,0x3ffff
+	istore 9,contw
+	setsect 0,0x3ffff
+	setsect 1,0x3ffff
+	setsect 2,0x3cfff
+	setsect 3,0x3ffff
+	istore 9,contw
+	setsect 0,0x3ffff
+	setsect 1,0x3ffff
+	setsect 2,0x3ffef
+	setsect 3,0x3ffff
+	istore 9,contw
+	setsect 0,0x3ffff
+	setsect 1,0x3ffff
+	setsect 2,0x3ffff
+	setsect 3,0x3ffff
+	istore 9,contw
+	setsect 0,0x3ffff
+	setsect 1,0x26c7f
+	setsect 2,0x146b
+	setsect 3,0x37bb3
+	istore 9,contw
+	setsect 0,0x1feb8
+	setsect 1,0x10c12
+	setsect 2,0x2b722
+	setsect 3,0x29fa6
+	istore 9,contw
+	setsect 0,0xe70f
+	setsect 1,0x16720
+	setsect 2,0x519e
+	setsect 3,0x19084
+	istore 9,contw
+	setsect 0,0x31012
+	setsect 1,0x360bf
+	setsect 2,0x3f0af
+	setsect 3,0x3d3
+	istore 9,contw
+	setsect 0,0x3a188
+	setsect 1,0x3ad0
+	setsect 2,0x3cbf2
+	setsect 3,0x243d9
+	istore 9,contw
+	setsect 0,0x2b030
+	setsect 1,0x36a03
+	setsect 2,0x11188
+	setsect 3,0x1e520
+	istore 9,contw
+	setsect 0,0x3a11e
+	setsect 1,0xfe5d
+	setsect 2,0xdd57
+	setsect 3,0x1ac93
+	istore 9,contw
+	setsect 0,0x11ed
+	setsect 1,0x218c4
+	setsect 2,0x8da7
+	setsect 3,0x257ff
+	istore 9,contw
+	setsect 0,0x3192b
+	setsect 1,0x34641
+	setsect 2,0x1be0c
+	setsect 3,0x366ad
+	istore 9,contw
+	setsect 0,0x1f83
+	setsect 1,0x15a23
+	setsect 2,0x3f9b0
+	setsect 3,0x3949
+	istore 9,contw
+	setsect 0,0x13a51
+	setsect 1,0x153fd
+	setsect 2,0x3372a
+	setsect 3,0xf1bb
+	istore 9,contw
+	setsect 0,0x3ae85
+	setsect 1,0x1eed9
+	setsect 2,0x9e66
+	setsect 3,0x1a8
+	istore 8,contw
+	rtn
+
Index: btkb/program/shutter.prog
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/btkb/program/shutter.prog	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/btkb/program/shutter.prog	(working copy)
@@ -0,0 +1,343 @@
+
+ifdef COMPILE_SHUTTER
+
+shutter_init:	
+	setarg shutter_send_process
+	store 2,mem_cb_bt_process
+	setarg shutter_process_idle
+	store 2,mem_cb_idle_process
+	setarg shutter_process_bb_event
+	store 2,mem_cb_bb_event_process
+	setarg shutter_process_lpm_before
+	store 2,mem_cb_before_lpm
+	setarg shutter_discovery_timeout_sleep
+	store 2,mem_cb_discovry_timeout
+	set1 mark_ext_patch,mark
+	bpatch patch3f_1,mem_patch3f
+	rtn wake
+
+	hjam 0x00,core_gpio_sel1//1: GPIO[26:25] is two wire SPI, 2: GPIO[26:23] is SPI, 3: GPIO[26:23] is PCM
+	call shutter_key_and_wake_gpio_setup
+	
+	setarg shutter_before_hibernate
+	store 2,mem_cb_before_hibernate
+	
+	jam FLAG_SHUTTER_1KEY_SEND_NULL,mem_shutter_1key_send_sm
+	jam 0,mem_shutter_key
+	jam FLAG_SHUTTER_DEFAULT,mem_shutter_flag
+	setarg 0
+	store 4,mem_shutter_send_data
+	call app_check_reconn_target
+	branch app_bt_start_discovery_short,blank
+	call app_led_on	
+	call app_bt_stop_discovery
+	branch app_bt_start_reconnect
+	
+shutter_key_and_wake_gpio_setup:
+	fetcht 1,mem_shutter_iphonekey_gpio
+	call gpio_config_input
+	fetcht 1,mem_shutter_androidkey_gpio
+	branch gpio_config_input	
+
+shutter_cancel_key_shake:
+	set1 mark_ext_patch,mark
+	bpatch patch3f_2,mem_patch3f
+	fetcht 4,mem_shutter_clkn_bt_last
+	deposit clkn_bt
+	store 4,mem_shutter_clkn_bt_last
+	isub temp,pdata	
+	nrtn positive 
+	sub pdata,200,pdata
+	rtn
+	
+shutter_send_process:
+	fetch 1,mem_hid_interrupt_state
+	rtnne 0x3f	
+shutter_scan_key_start:
+	set1 mark_ext_patch,mark
+	bpatch patch3f_3,mem_patch3f
+	fetch 1,mem_device_option
+	rtnne dvc_op_shutter	
+	disable user
+	call shutter_scan_key	
+	nrtn user
+	disable user
+	fetch 1,mem_scan_mode
+	beq 0x03,shutter_reconnect_scan_2
+	
+	fetch 1,mem_shutter_flag
+	beq FLAG_SHUTTER_IPHONEKEY_SEND,shutter_iphonekey_release 
+	beq FLAG_SHUTTER_ANDROIDKEY_SEND,shutter_androidkey_release 
+	call shutter_cancel_key_shake
+	branch  shutter_send_process_end,positive
+
+	fetch 1,mem_shutter_key
+	bbit1 FLAG_SHUTTER_IPHONEKEY_PRESS,shutter_iphonekey_press
+	bbit1 FLAG_SHUTTER_ANDROIDKEY_PRESS,shutter_androidkey_press
+	
+shutter_send_process_end:
+	jam 0,mem_shutter_key
+	jam FLAG_SHUTTER_DEFAULT,mem_shutter_flag
+	rtn
+
+	
+shutter_iphonekey_release:
+	jam FLAG_SHUTTER_DEFAULT,mem_shutter_flag
+	call ui_led_blink_stop
+	fetch 1,mem_shutter_key_number
+	beq FLAG_SHUTTER_1KEY,shutter_1key_iphonekey_release
+shutter_2key_iphonekey_release:
+shutter_iphonekey_release_package:
+	jam 0x05,mem_shutter_send_length
+	jam 0x03,mem_shutter_send_data
+	branch shutter_send_keydata
+shutter_1key_iphonekey_release:
+	jam FLAG_SHUTTER_1KEY_SEND_NULL,mem_shutter_1key_send_sm
+	branch shutter_1key_send_step1
+
+shutter_1key_send_step1:
+	jam FLAG_SHUTTER_1KEY_SEND_STEP2,mem_shutter_1key_send_sm
+	branch shutter_androidkey_press_package
+shutter_1key_send_step2:
+	jam FLAG_SHUTTER_1KEY_SEND_STEP3,mem_shutter_1key_send_sm
+	branch shutter_androidkey_release_package
+shutter_1key_send_step3:
+	jam FLAG_SHUTTER_1KEY_SEND_STEP4,mem_shutter_1key_send_sm
+	branch shutter_iphonekey_press_package
+shutter_1key_send_step4:
+	jam FLAG_SHUTTER_1KEY_SEND_NULL,mem_shutter_1key_send_sm
+	branch shutter_iphonekey_release_package
+	
+shutter_iphonekey_press:
+	jam FLAG_SHUTTER_IPHONEKEY_SEND,mem_shutter_flag	
+	call ui_led_on
+	fetch 1,mem_shutter_key_number
+	beq FLAG_SHUTTER_1KEY,shutter_1key_iphonekey_press
+shutter_2key_iphonekey_press:
+shutter_iphonekey_press_package:
+	jam 0x05,mem_shutter_send_length
+	setarg 0x20003
+	store 3,mem_shutter_send_data
+	branch shutter_send_keydata
+shutter_1key_iphonekey_press:
+	rtn
+	
+shutter_androidkey_release:
+	jam FLAG_SHUTTER_DEFAULT,mem_shutter_flag
+	call ui_led_blink_stop
+shutter_androidkey_release_package:
+	jam 0x0a,mem_shutter_send_length
+	jam 0x01,mem_shutter_send_data
+	branch shutter_send_keydata
+shutter_androidkey_press:
+	jam FLAG_SHUTTER_ANDROIDKEY_SEND,mem_shutter_flag
+	call ui_led_on
+shutter_androidkey_press_package:
+	jam 0x0a,mem_shutter_send_length	
+	jam 0x01,mem_shutter_send_data	
+	setarg 0x280000
+	store 3,mem_shutter_send_data+1
+	
+shutter_send_keydata:
+	set1 mark_ext_patch,mark
+	bpatch patch3f_4,mem_patch3f
+	fetch 1,mem_shutter_send_length
+	copy pdata,rega
+	call hid_malloc_tx_buff
+	fetch 2,mem_hid_int_remote_cid
+	istore 2,contw
+	setarg 0xa1
+	istore 1,contw
+	fetcht 4,mem_shutter_send_data
+	istoret 8,contw	
+	setarg 0
+	istore 1,contw	
+	store 4,mem_shutter_send_data
+	
+	fetch 1,mem_shutter_1key_send_sm
+	beq FLAG_SHUTTER_1KEY_SEND_STEP2,shutter_1key_send_step2
+  	beq FLAG_SHUTTER_1KEY_SEND_STEP3,shutter_1key_send_step3
+ 	beq FLAG_SHUTTER_1KEY_SEND_STEP4,shutter_1key_send_step4
+	rtn			
+	
+shutter_scan_key:
+	fetcht 1, mem_shutter_iphonekey_gpio
+	call gpio_get_bit
+	setarg 0
+	setflag true,FLAG_SHUTTER_IPHONEKEY_PRESS,pdata
+	store 1,mem_shutter_key_temp
+	fetcht 1,mem_shutter_androidkey_gpio
+	call gpio_get_bit
+	setarg 0
+	setflag true,FLAG_SHUTTER_ANDROIDKEY_PRESS,pdata
+	fetcht 1,mem_shutter_key_temp
+	ior temp,pdata
+	fetcht 1,mem_shutter_key
+	store 1,mem_shutter_key
+	ixor temp,null
+	rtn zero
+	enable user
+	rtn
+
+shutter_process_bb_event:
+	copy regc,pdata
+	beq BT_EVT_SETUP_COMPLETE,shutter_bb_event_setup_complete
+	beq BT_EVT_HID_CONNECTED,shutter_bb_event_hid_connected
+	beq BT_EVT_HID_DISCONNECTED,shutter_bb_event_hid_disconn
+	beq BT_EVT_VIRTUAL_CABLE_UNPLUG,shutter_bb_event_unplug
+	beq BT_EVT_BB_DISCONNECTED,shutter_bb_event_bb_disconn
+	beq BT_EVT_RECONN_FAILED,shutter_bb_event_reconn_failed
+	beq BT_EVT_RECONN_PAGE_TIMEOUT,shutter_bb_event_reconn_failed
+	beq BT_EVT_BB_CONNECTED,shutter_process_bb_conn
+	beq BT_EVT_HID_HANDSHAKE,shutter_event_hid_handshake
+	beq BT_EVT_REMOTE_UNSNIFF,app_start_auto_sniff
+	and pdata,0x0f,temp
+	and_into BT_EVT_TIMER_MASK,pdata
+	beq BT_EVT_TIMER_INIT,shutter_bb_event_timer
+	rtn
+	
+shutter_hid_handshake_timer:
+	fetch 1,mem_hid_handshake_timer_count
+	rtn blank
+	increase -1,pdata
+	store 1,mem_hid_handshake_timer_count
+	nrtn blank
+shutter_event_hid_handshake:
+	jam APP_HANDSHAKE_DONE,mem_app_handshake_flag
+	call app_lpm_mult_enable
+	call app_bt_store_reconn_info
+	call app_bt_stop_discovery
+	call app_led_off
+	branch app_bt_enter_sniff
+
+	
+shutter_process_bb_conn:
+	jam 0,mem_shutter_hid_disconn_count
+	jam 0,mem_shutter_cable_unplug_conut	
+	rtn	
+	
+shutter_bb_event_bb_disconn:
+	set1 mark_ext_patch,mark
+	bpatch patch3f_5,mem_patch3f
+	jam 0,mem_unsniff2sniff_timer_count
+	jam 0,mem_shutter_cable_unplug_conut	
+	jam 0,mem_shutter_hid_disconn_count
+	fetch APP_DISC_RSN_SIZE,mem_app_disconn_reason
+	bbit0 APP_DISC_AFTER_SNIFF,shutter_check_pairing
+shutter_bb_event_reconn_failed:
+	//call ice_break
+	fetch 2,mem_discovery_timeout
+	store 2,mem_discovery_timeout_timer_count
+shutter_discovery_on_not_renew_timer://when pairing does not renew discovery timer
+	call app_disconn_reason_clear
+	branch app_bt_start_discovery_led_blink
+
+shutter_check_pairing:
+	bbit0 APP_DISC_AFTER_PAIRING,shutter_check_reconn
+	branch shutter_bb_event_reconn_failed
+	
+shutter_check_reconn:
+	bbit0 APP_DISC_AFTER_RECONN,shutter_discovery_on_not_renew_timer
+	branch shutter_bb_event_reconn_failed
+
+
+shutter_bb_event_setup_complete:
+	call app_bt_stop_discovery
+	branch app_led_stop_blink
+
+shutter_bb_event_hid_connected:
+	setarg HID_HANDSHAKE_TIMEOUT
+	store 1,mem_hid_handshake_timer_count
+	rtn
+	
+shutter_bb_event_hid_disconn: 
+	jam 0,mem_shutter_cable_unplug_conut	
+	setarg FLAG_SHUTTER_HID_DISCONN_TIMEOUT
+	store 1,mem_shutter_hid_disconn_count
+	rtn
+	
+shutter_bb_event_unplug:	
+	setarg FLAG_SHUTTER_CABLE_UNPLUG_TIMEOUT
+	store 1,mem_shutter_cable_unplug_conut
+	rtn
+
+shutter_bb_event_timer:
+	set1 mark_ext_patch,mark
+	bpatch patch3f_6,mem_patch3f
+	storet 1,mem_app_evt_timer_count
+shutter_bb_event_100ms_loop:
+	fetch 1,mem_app_evt_timer_count
+	rtn blank
+	increase -1,pdata
+	store 1,mem_app_evt_timer_count
+	call shutter_check_unplug_timer
+	call shutter_hid_handshake_timer
+	call shutter_check_hid_disconn_timer
+	branch shutter_bb_event_100ms_loop
+	
+shutter_check_unplug_timer:
+	fetch 1,mem_shutter_cable_unplug_conut
+	rtn blank
+	fetch 1,mem_shutter_cable_unplug_conut
+	increase -1,pdata
+	store 1,mem_shutter_cable_unplug_conut
+	nrtn blank
+	fetch 1,mem_CONTROL_tasks
+	set1  L2CAP_DISCONNECT_INTERRUPT, pdata
+	set1  L2CAP_DISCONNECT_CONTROL, pdata
+	store 1,mem_CONTROL_tasks	
+	rtn
+
+shutter_check_hid_disconn_timer:
+	fetch 1,mem_shutter_hid_disconn_count
+	rtn blank
+	fetch 1,mem_shutter_hid_disconn_count
+	increase -1,pdata
+	store 1,mem_shutter_hid_disconn_count
+	nrtn blank
+	branch app_bt_disconnect	
+ 
+shutter_reconnect_scan:
+	set1 mark_ext_patch,mark
+	bpatch patch3f_7,mem_patch3f
+	fetch 1,mem_scan_mode
+	rtnne 0x03
+	branch shutter_scan_key_start
+shutter_reconnect_scan_2:
+	call shutter_cancel_key_shake
+	rtn positive
+	fetch 1,mem_shutter_key
+	rtn blank
+	call app_check_reconn_target
+	branch app_bt_start_discovery_short,blank
+	call app_led_on		
+	call app_bt_stop_discovery
+	branch app_bt_start_reconnect
+
+
+shutter_process_idle:
+	branch shutter_reconnect_scan
+
+
+shutter_process_lpm_before:
+	fetcht 1, mem_shutter_iphonekey_gpio
+	call gpio_set_wake_by_current_state
+	fetch 1,mem_shutter_key_number
+	bne FLAG_SHUTTER_1KEY,shutter_process_lpm_before_key2
+	rtn
+shutter_process_lpm_before_key2:	
+	fetcht 1, mem_shutter_androidkey_gpio
+	branch gpio_set_wake_by_current_state
+
+shutter_before_hibernate:
+	branch shutter_key_and_wake_gpio_setup
+
+
+shutter_discovery_timeout_sleep:	
+	branch app_enter_hibernate
+		
+else
+shutter_init:
+        branch assert
+	
+endif
Index: btkb/program/sim.prog
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/btkb/program/sim.prog	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/btkb/program/sim.prog	(working copy)
@@ -0,0 +1,350 @@
+simstart:
+	force 8,radio_ctrl
+	force 0,radio_ctrl
+	hjam 0xe0,0x907			// set if_phase=7 for simulation environment
+	hjam 0xe0,0x90a
+	hjam 0x25,0x912
+	hjam 0xff,rfen_ck
+	hjam 5,core_clksel
+//	branch sim_usb
+//	branch sim_iic
+//	branch sim_clk
+//	call sim_uart
+//	branch sim_lpm
+//	branch sim_c1
+//	branch loop
+//	call sim_spi
+//	call sim_eep
+//	branch test_tx
+//	branch sim_le
+//	branch sim_250k
+	branch sim_main
+sim_lpm:
+	hfetch 1,1
+	bbit1 7,sim_assert
+	hfetch 1,core_lpm_xtalcnt
+	nbranch sim_lpm_sleep,blank
+	setarg 0
+	set1 31,pdata
+	store 8,mem_gpio_wakeup_low
+	branch lpm_hibernate
+sim_lpm_sleep:
+	jam 1,mem_context
+	branch sim_lpm_wait,wake
+	hjam 0x70,core_bist_ctrl
+	hjam ccnt_start,core_misc_ctrl
+sim_lpm_wait:
+	call lpo_calibration
+	fetch 3,mem_clks_per_lpo
+	branch sim_lpm_wait,blank
+	call lpm_recover_clk,wake
+	jam 0x1b,mem_lpm_ldocnt
+	setarg mem_le_att_list
+	arg sim_assert,loopcnt
+	call save_ucode
+	hfetch 1,core_gpio_wakeup_low+2
+	bbit0 2,sim_lpm_loop
+	until null,lpo_edge
+	hjam 0x20,core_misc_ctrl
+	until null,lpo_edge
+sim_lpm_loop:
+	hfetch 1,core_misc_status
+	bbit1 6,sim_lpm_loop
+	hfetch 1,core_gpio_in+3
+	compare 0x20,pdata,0x20
+	setarg 0
+	setflag true,29,pdata
+	setflag true,30,pdata
+	store 4,mem_gpio_wakeup_low
+	setarg 0
+	nsetflag true,29,pdata
+	nsetflag true,30,pdata
+	store 4,mem_gpio_wakeup_high
+	arg 300,temp
+	branch lpm_sleep
+
+sim_assert:
+	branch sim_assert
+
+
+sim_main:
+	call init_param
+	setarg 0
+	hstore 2,core_clkoff
+	setarg 0xff00
+	hstore 2,core_lpm_reg+2
+	hjam lpmreg_sel_ctrl2,core_lpm_wr
+	hfetch 1,1
+	bbit1 7,sim_slave
+	call codec_init
+	jam dvc_op_hci,mem_device_option
+	fetch 6,mem_lap
+	store 6,mem_hci_plap
+	setarg 0xbdbdbd
+	store 3,mem_lap
+	istore 3,contw
+	jam hci_cmd_create_conn,mem_hci_cmd
+	force 0x10,pdata
+	add pdata,-2,clkn_bt
+	store 4,mem_page_clk
+	rshift clkn_bt,pdata
+	store 4,mem_last_clkn
+	jam 0,mem_scan_mode
+sim_loop:
+	call codec_loop
+	call idle_dispatch
+	fetch 1,mem_context
+	bbit0 state_inconn,sim_skip
+	set1 mark_tx_l2cap,mark
+	fetch 1,mem_context + coffset_state_map
+	set1 smap_edr,pdata
+	store 1,mem_context + coffset_state_map
+	fetch 1,mem_context + coffset_op		
+	set1 op_txl2cap,pdata
+	store 1,mem_context + coffset_op
+	jam 0,mem_context + coffset_lmp_to_send
+	jam 0,mem_lmo_opcode2
+	setarg 700
+	store 2,mem_tx_len
+	setarg mem_tmp_buffer
+	store 2,mem_txptr
+	jam 6,mem_tx_lch
+	jam 1,mem_hci_conn_handle
+sim_skip:
+	call connection_dispatch
+	branch sim_loop		
+
+sim_slave:
+	jam 2,mem_scan_mode
+	call page_scan_dispatch
+	branch sim_loop
+
+codec_loop:
+	hfetch 1,core_pcminfifo_remain
+	rtn blank
+	hfetch 1,core_pcminfifo
+	hstore 1,core_pcmoutfifo
+	branch codec_loop
+
+codec_init:
+	call init_filter_ram
+	hjam 0x11,core_enc_ctrl
+	hjam 0x11,core_dec_ctrl
+	hjam 0x1,core_cvsd_ctrl
+	hjam 0x1,core_codec_ctrl
+	hjam 0x80,core_gpio_oe3
+	hjam 0x3,core_gpio_sel1
+	rtn
+
+sim_iic:
+	call iicd_init_12m
+	setarg 3
+	hstore 2,core_iicd_txlen
+	setarg 0x1f051e
+	store 3,mem_iicd_addr
+	setarg mem_iicd_addr
+	hstore 2,core_iicd_txaddr
+	setarg 1
+	hstore 2,core_iicd_rxlen
+	hjam 3,core_iicd_ctrl
+	hjam iicd_start,core_misc_ctrl
+	call wait_iicd_done
+	nop 300
+	setarg 0xd321d2
+	store 3,mem_iicd_addr
+	hjam iicd_start,core_misc_ctrl
+	call wait_iicd_done
+s_loop:
+	branch s_loop
+
+sim_usb:
+	call usb_init
+sim_usb_loop:
+	call usb_isr
+	branch sim_usb_loop
+
+ifdef NULL
+sim_250k:
+	call init_250k
+	hfetch 1,1
+	bbit1 7,sim_250k_rx
+	call tx_radio_freq
+	call start_transmitter	/* get ready for that id packet */
+	nop 600
+	enable encode_fec0
+	set1 TXGFSK,radio_ctrl
+	force 0,pdata
+	inject mod,9
+	setarg 0xaa
+	inject mod,8
+	preload access
+	inject mod,32
+	setarg 0x1da861
+	inject mod,24
+	setarg 0x94445b
+	inject mod,24
+	setarg 0x1275f
+	inject mod,24
+	branch loop
+sim_250k_rx:
+	call rx_radio_freq
+	call start_receiver	/* wait for that id packet from master */
+	enable decode_fec0
+	correlate null,never
+	parse demod,bucket,72
+	branch loop
+
+	
+
+
+
+sim_uart:
+	setarg mem_le_test_uart_rxbuf
+	hstore 2,core_uart_tsaddr
+	hstore 2,core_uart_twptr
+	hstore 2,core_uart_trptrp
+	increase 0x80,pdata
+	hstore 2,core_uart_teaddr
+	hstore 2,core_uart_rsaddr
+	hstore 2,core_uart_rrptr
+	increase 0x80,pdata
+	hstore 2,core_uart_readdr
+	increase 1,pdata
+	hjam 0x84,core_gpio_sel1
+	hjam 0x80,core_gpio_pu2
+	hjam 0xe5,core_uart_ctrl
+	setarg 0x30
+	hstore 2,core_uart_baud
+	hfetch 1,1
+	bbit1 7,sim_uart_wait
+	setarg 0x1357d9a
+	store 4,mem_le_test_uart_rxbuf
+	setarg 0x55aa69
+	istore 3,contw
+	setarg 0xfedcb3
+	istore 3,contw
+	deposit contw
+	hstore 2,core_uart_twptr
+sim_uart_wait:
+	nop 20000
+	rtn
+
+sim_spi:
+	call spid_init_flash
+	call spid_unlock_flash
+	call spid_init
+	setarg 0x35
+	call spid_read_reg
+	nop 200
+	force 4,temp
+	setarg 0x42
+	branch spid_read_regs
+
+sim_eep:
+	call iicd_init_12m
+	setarg 3
+	hstore 2,core_iicd_txlen
+	setarg 0x1f051e
+	store 3,mem_iicd_addr
+	setarg mem_iicd_addr
+	hstore 2,core_iicd_txaddr
+	setarg 1
+	hstore 2,core_iicd_rxlen
+	hjam 3,core_iicd_ctrl
+	hjam iicd_start,core_misc_ctrl
+	call wait_iicd_done
+	nop 200
+	setarg 0x18f7a3b
+	store 4,mem_iicd_addr
+	arg mem_iicd_addr,rega
+	arg 4,temp
+	setarg 0x1235
+	call iicd_write_eep
+	nop 300
+	arg mem_ucode_keybuf,rega
+	arg 1,temp
+	setarg 0x3512
+	store 2,mem_addr_mi
+	call iicd_read_eep
+	arg 1,temp
+	setarg 0x3512
+	store 2,mem_addr_mi
+	call iicd_read_eep
+	nop 200
+	setarg 0xa1
+	arg 3,temp
+	arg mem_ucode_keybuf,rega
+	branch iicd_read_data
+
+sim_otp:
+	setarg 0x123456
+	store 3,0x800
+	setarg 0x10
+	arg 0x800,rega
+	arg 0x10,loopcnt
+	branch otp_write
+
+sim_clk:
+	add lpo_time,12,alarm
+	snooze
+clock_loop:
+	nop 100
+	hjam 1,core_config
+	setflag user,0,pdata
+	random pdata
+	and_into 0x1f,pdata
+	hstore 1,core_clksel
+	nop 70
+	hjam 2,core_kick
+	nop 200
+	branch clock_loop
+	hjam 2,core_clksel
+	setarg 1500
+	call sleep
+	hjam 0x42,core_clksel
+	add lpo_time,200,alarm
+	snooze
+	branch 0x4000
+
+sim_c1:
+	setarg 0xb4b5b6
+	store 3,mem_le_lap
+	setarg 0xb1b2b3
+	istore 3,contw
+	setarg 0xa4a5a6
+	store 3,mem_le_plap
+	setarg 0xa1a2a3
+	istore 3,contw
+	setarg 0x101
+	store 4,mem_le_preq
+	setarg 0x70710
+	istore 3,contw
+	setarg 0x302
+	store 4,mem_le_pres
+	setarg 0x50008
+	istore 3,contw
+
+	arg regidx_key,regext_index
+	arg 4,loopcnt
+sim_clear_key_loop:
+	arg 0,regext
+	increase 1,regext_index
+	loop sim_clear_key_loop
+
+	setarg 0x702EE0
+	store 3,mem_le_rconfirm
+	setarg 0x274EC6
+	istore 3,contw
+	setarg 0x0E6388
+	istore 3,contw
+	setarg 0x56AD6F
+	istore 3,contw
+	setarg 0x83D521
+	istore 3,contw
+	setarg 0x57	
+	istore 1,contw
+	arg mem_le_rconfirm,rega
+	call aes_init
+	call function_c1
+	branch loop
+endif
Index: btkb/program/simple_pairing.prog
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/btkb/program/simple_pairing.prog	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/btkb/program/simple_pairing.prog	(working copy)
@@ -0,0 +1,1402 @@
+
+
+ifdef SIMPLE_PAIRING
+sp_initialize:
+	set1 mark_ext_patch,mark
+	bpatch patch3e_2,mem_patch3e
+	fetch 1,mem_ssp_enable	//set in ssp.rom
+	branch ssp_disable, blank
+	call ssp_enable
+	setarg 0
+	store 8,mem_sp_state_start
+	store 4,mem_sp_flag_start
+	
+	arg mem_sp_iocap_remote,contw
+	istore 7,contw
+	jam DEFAULT_STATEMACHINE,mem_sp_localsm
+	branch sp_pubkey_calc 
+
+sp_generate_local_key:
+	jam SP_FLAG_COMMIT,mem_sp_flag  
+	branch sp_generate_local_key0
+sp_master_generate_local_key:
+	fetch 1,mem_sp_local_key_invalid
+	beq SP_KEY_VALID,sp_dhkey_calc
+	branch assert
+sp_generate_local_key0:
+	fetch 1,mem_sp_local_key_invalid
+	beq SP_KEY_VALID,sp_start_send_pubkey
+	branch sp_pubkey_calc
+    
+sp_start_send_pubkey:
+	call sp_dhkey_calc
+	fetch 1,mem_master_sp_state
+	nrtn blank
+	jam SP_STAT_KEY_SEND,mem_sp_state
+	rtn
+    
+sp_calculate_commitment:
+	fetch 1,mem_sp_calc
+	bne SP_CALC_STANDBY,sp_calculate_commitment_wait_dhkey_calc
+	call sp_local_random_key_generator
+	arg mem_sp_prarm_stack,contw
+	setarg mem_sp_random_local_end
+	istore 2,contw
+	setarg mem_sp_pubkey_local_x_end
+	istore 2,contw
+	setarg mem_sp_pubkey_remote_x_end
+	istore 2,contw
+	branch sp_calculate_commitment0
+master_sp_calculate_commitment:
+	arg mem_sp_prarm_stack,contw
+	setarg mem_sp_random_remote_end
+	istore 2,contw
+	setarg mem_sp_pubkey_remote_x_end
+	istore 2,contw
+	setarg mem_sp_pubkey_local_x_end
+	istore 2,contw
+sp_calculate_commitment0:
+	call function_f1
+	fetch 1,mem_master_sp_state
+	beq SP_STAT_COMMIT_CALC,master_sp_calculate_commitment0
+	jam SP_FLAG_COMMIT,mem_sp_flag
+	jam SP_STAT_COMMIT_SEND,mem_sp_state
+	rtn
+master_sp_calculate_commitment0:
+	jam SP_STAT_COMMITMENT_COMPARE,mem_master_sp_state
+	call sp_master_generate_local_key
+	branch master_set_mem_master_sp_flag 
+
+sp_local_random_key_generator:
+	arg mem_sp_random_local,contw
+	force 8,queue
+	branch random_generator
+  
+sp_calculate_commitment_wait_dhkey_calc:
+	jam      SP_FLAG_COMMIT,mem_sp_flag
+	rtn
+    
+sp_confirm_check:
+    /* calculate Ea here */
+	arg      mem_addr_value,contw
+	fetch    6,mem_lap
+	istore   6,contw
+	fetch    6,mem_plap
+	istore   6,contw
+	fetch    3,mem_sp_iocap_remote
+	istore   3,contw 
+
+	call     function_f3a
+
+	arg      mem_sp_calc_result_high,rega
+	arg      mem_sp_check_result,regb    
+	force    4,queue 
+	call     compare4
+	nbranch  sp_confirm_check_failed,true  
+    
+sp_confirm_check_success:
+	fetch 1,mem_master_sp_state
+	beq SP_STAT_CONFIRM_CHECK,sp_confirm_check_success_master
+	jam SP_STAT_CONFIRM_CALC,mem_sp_state
+	jam SP_FLAG_COMMIT,mem_sp_flag  
+	jam LMP_ACCEPTED,mem_lmo_opcode2
+	rtn
+sp_confirm_check_success_master:
+	jam LMP_ACCEPTED,mem_lmo_opcode2
+	jam SP_STATE_END,mem_master_sp_state
+	branch master_set_mem_master_sp_flag
+	//accept opcode?
+	
+sp_confirm_check_failed:
+	fetch 1,mem_master_sp_state
+	beq SP_STAT_CONFIRM_CHECK,sp_confirm_check_failed_master
+	jam SP_STAT_NULL,mem_sp_state
+	jam LMP_NOT_ACCEPTED,mem_lmo_opcode2
+	//accept opcode?
+	jam      AUTHENTICATION_FAILURE_ERROR,mem_lmo_reason2 
+	rtn
+sp_confirm_check_failed_master:
+	jam LMP_NOT_ACCEPTED,mem_lmo_opcode2
+	jam SP_STAT_NULL,mem_master_sp_state
+	rtn
+    
+sp_confirm_calc:
+	fetch 1,mem_sp_dh_ready
+	beq SP_FLAG_COMMIT, sp_confirm_calc_ready
+	jam 	SP_STAT_CONFIRM_CALC,mem_master_sp_state
+	branch master_set_mem_master_sp_flag
+sp_confirm_calc_ready:
+	arg      mem_addr_value,contw
+	fetch    6,mem_plap
+	istore   6,contw
+	fetch    6,mem_lap
+	istore   6,contw
+	fetch    3,mem_sp_iocap_local
+	istore   3,contw 
+
+	call     function_f3b
+	fetch 1,mem_master_sp_state
+	beq SP_STAT_CONFIRM_CALC,sp_confirm_calc_master
+	jam      SP_STAT_CONFIRM_SEND,mem_sp_state
+	jam      SP_FLAG_COMMIT,mem_sp_flag
+	rtn
+sp_confirm_calc_master:
+	jam      SP_STAT_CONFIRM_SEND,mem_master_sp_state
+	jam      SP_FLAG_COMMIT,mem_master_sp_flag
+	rtn   
+
+sp_master_key_prarm_push:
+	arg mem_sp_prarm_stack,contw
+	fetch    6,mem_plap
+	istore   6,contw
+	fetch    6,mem_lap
+	istore   6,contw
+	setarg mem_sp_random_local_end
+	istore 2,contw
+	setarg mem_sp_random_remote_end
+	istore 2,contw
+	branch sp_link_key_calc
+sp_link_key_prarm_push:
+	jam      SP_STAT_DONE,mem_sp_state    
+	arg mem_sp_prarm_stack,contw
+	fetch    6,mem_lap
+	istore   6,contw
+	fetch    6,mem_plap
+	istore   6,contw
+	setarg mem_sp_random_remote_end
+	istore 2,contw
+	setarg mem_sp_random_local_end
+	istore 2,contw
+sp_link_key_calc:
+    /*calculate Link key here */
+	arg      mem_addr_value,contw
+	fetch    6,mem_sp_prarm_stack
+	istore   6,contw
+	fetch    6,mem_sp_prarm_stack+6
+	istore   6,contw
+	
+	call     function_f2    
+
+	/*handle linkkey  */
+	jam 1,mem_link_key_exists
+	arg mem_link_key,contw
+	arg mem_sp_calc_result_high,contr
+	call memcpy16
+	branch  generate_linkkey_continue
+
+    
+sp_pubkey_calc:
+	set1 mark_ext_patch,mark
+	bpatch patch3e_3,mem_patch3e
+	fetch    1,mem_sp_local_key_invalid
+	rtnne SP_KEY_INVALID
+	fetch    1,mem_sp_calc
+	rtnne  SP_CALC_STANDBY
+	arg      mem_sp_private_key,contw 
+	force    11,queue
+	call     random_generator
+	random   pdata
+	rshift   pdata,pdata
+	istore   2,contw 
+/* we don't need fixed private key,generate random key instead */ 
+	arg      mem_k,contw
+	arg      mem_sp_private_key,contr	
+	call     memcpy24 //mem_sp_private_key=>mem_k 24BYTES
+
+	arg      mem_ax,contw
+	arg      mem_gx,contr
+	call     memcpy48 //mem_gx=>mem_ax 48bytes
+
+	arg      mem_az,contw
+	call     bn_zero
+	jam      1,mem_az //0=>mem_az 24bytes
+
+	call     eckp_calc_init
+	jam SP_CALC_PUBKEY,mem_sp_calc
+	rtn    
+	
+sp_pubkey_generated:
+	arg      mem_sp_pubkey_local,contw
+	arg      mem_bx,contr
+	call     memcpy48   
+	jam      SP_KEY_VALID,mem_sp_local_key_invalid
+	jam      SP_CALC_STANDBY,mem_sp_calc
+	rtn
+
+sp_dhkey_calc:
+	set1 mark_ext_patch,mark
+	bpatch patch3e_4,mem_patch3e
+	fetch    1,mem_sp_dhkey_invalid
+	rtnne  SP_KEY_INVALID
+	fetch    1,mem_sp_calc
+	rtnne  SP_CALC_STANDBY
+
+	arg      mem_k,contw
+	arg      mem_sp_private_key,contr	
+	call     memcpy24
+
+	arg      mem_ax,contw
+	arg      mem_sp_pubkey_remote,contr
+	call     memcpy48
+
+	arg      mem_az,contw
+	call     bn_zero
+	jam      1,mem_az
+
+	call     eckp_calc_init
+	jam      SP_CALC_DHKEY,mem_sp_calc
+	rtn 	
+	
+sp_dhkey_generated:
+	jam SP_FLAG_COMMIT,mem_sp_dh_ready
+	arg mem_sp_dhkey,contw
+	arg mem_bx,contr
+	call memcpy24
+	jam SP_KEY_VALID,mem_sp_dhkey_invalid
+	jam SP_CALC_STANDBY,mem_sp_calc
+	rtn
+
+random_generator:
+	increase -1,queue
+	nrtn     positive
+	random   pdata
+	istore   2,contw  
+	branch   random_generator
+compare4:
+	increase -1,queue
+	nbranch  compare4_success,positive
+	ifetch   4,rega
+	copy     pdata,temp
+	ifetch   4,regb
+	iflip    temp,pdata
+	nbranch  compare4_failed,zero
+	increase 4,rega
+	increase 4,regb
+	branch   compare4
+compare4_failed:
+	disable  true
+	rtn
+compare4_success:
+	enable   true
+	rtn
+
+/*************************************************/
+/** Message state machine routines ***************/
+/*************************************************/
+// simple pairing support 
+
+simple_pairing_sequence:
+	set1 mark_ext_patch,mark
+	bpatch patch3e_5,mem_patch3e
+         fetch 1,mem_sp_flag
+         rtn blank
+	jam      SP_FLAG_STANDBY,mem_sp_flag
+	fetch    1,mem_sp_state
+	beq  SP_STAT_KEY_SEND,sp_send_LMP_ENCAPSULATED_HEADER
+	beq  SP_STAT_COMMIT_SEND,sp_send_LMP_SIMPLE_PAIRING_COMFIRM
+	beq  SP_STAT_RANDOM_SEND,sp_send_LMP_SIMPLE_PAIRING_NUMBER
+	beq  SP_STAT_CONFIRM_SEND,sp_send_LMP_DHKEY_CHECK
+	beq  SP_STAT_KEY_GENERATE,sp_generate_local_key
+	beq  SP_STAT_COMMIT_CALC,sp_calculate_commitment
+	beq  SP_STAT_CONFIRM_CHECK,sp_confirm_check
+	beq  SP_STAT_CONFIRM_CALC,sp_confirm_calc
+	beq  SP_STAT_LINK_KEY_CALC,sp_link_key_prarm_push
+	//beq  SP_STAT_FEATURE_EXT_SEND,send_LMP_FEATURES_REQ_EXT
+	rtn  
+
+master_simple_paring_sequence:
+	set1 mark_ext_patch,mark
+	bpatch patch3e_6,mem_patch3e
+	fetch 1,mem_master_sp_flag
+	rtn blank
+	jam SP_FLAG_STANDBY,mem_master_sp_flag
+	fetch 1,mem_master_sp_state
+	beq SP_MASTER_STAT_START_SKIP,sp_master_send_io_cap_get
+	beq SP_MASTER_STAT_START_DONE,sp_master_send_io_cap_send
+	beq SP_STAT_KEY_SEND,sp_master_send_LMP_ENCAPSULATED_HEADER
+	beq SP_STAT_COMMIT_CALC,master_sp_calculate_commitment
+	beq SP_STAT_COMMITMENT_COMPARE,sp_master_commitment_compare
+	beq SP_STAT_RANDOM_SEND,sp_master_send_LMP_SIMPLE_PAIRING_NUMBER
+	beq SP_STAT_CONFIRM_CALC,sp_confirm_calc
+	beq SP_STAT_CONFIRM_SEND,master_sp_send_lmp_dhkey_check
+	beq SP_STAT_CONFIRM_CHECK,sp_confirm_check
+	beq SP_STATE_END,master_sp_sm_end
+	rtn
+
+master_set_mem_master_sp_flag:
+	jam SP_FLAG_COMMIT,mem_master_sp_flag
+	rtn
+	
+master_clear_mem_master_sp_flag:
+	jam SP_FLAG_STANDBY,mem_master_sp_flag
+	rtn
+sp_calc_sequence:
+	set1 mark_ext_patch,mark
+	bpatch patch3e_7,mem_patch3e
+	fetch 1,mem_sp_calc
+	rtn blank
+	increase 0x80,pdata
+	store    1,mem_sp_calc
+	rtnbit1 7
+	fetch    1,mem_ec_loopc
+	branch   sp_calc_sequence_done,blank
+	branch   eckp_calc
+
+sp_calc_sequence_done:    
+	call ecunmapz
+	fetch 1,mem_sp_calc
+	beq  SP_CALC_PUBKEY,sp_pubkey_generated
+	beq  SP_CALC_DHKEY,sp_dhkey_generated
+	rtn
+
+
+bn_testbit:
+	and pdata,7,queue
+	rshift3 pdata,pdata
+	iadd contr,contr
+	ifetch 1,contr
+	qisolate0 pdata
+	rtn
+
+
+ec_copy:
+	call memcpy24
+	call memcpy24
+	branch memcpy24
+	
+	
+bn_eq_zero:
+	ifetch 8,contr
+	nrtn blank
+	ifetch 8,contr
+	nrtn blank
+	ifetch 8,contr
+	rtn
+	
+	
+	/* return zero if eq */
+bn_eq:
+	force 6,loopcnt
+bn_eq_0:	
+	ifetch 4,rega
+	iforce temp
+	ifetch 4,regb
+	isub temp,null
+	nrtn zero
+	increase 4,rega
+	increase 4,regb
+	loop bn_eq_0
+	rtn
+
+	/* return positive if A >= B */
+bn_bigeq:
+	force 6,loopcnt
+	increase 20,rega
+	increase 20,regb
+bn_bigeq_0:	
+	ifetch 4,regb
+	iforce temp
+	ifetch 4,rega
+	isub temp,pdata
+	nrtn positive
+	nrtn blank
+	increase -4,rega
+	increase -4,regb
+	loop bn_bigeq_0
+	rtn
+
+bn_add:
+	force 6,loopcnt
+	force 0,regc
+bn_add_0:	
+	ifetch 4,rega
+	iforce temp
+	ifetch 4,regb
+	iadd temp,pdata
+	iadd regc,pdata
+	istore 4,contw
+	isolate1 32,pdata
+	setflag true,0,regc
+	increase 4,rega
+	increase 4,regb
+	loop bn_add_0
+	rtn
+
+bn_sub:
+	force 6,loopcnt
+	force 0,regc
+bn_sub_0:	
+	ifetch 4,regb
+	iforce temp
+	ifetch 4,rega
+	isub temp,pdata
+	isub regc,pdata
+	istore 4,contw
+	isolate1 32,pdata
+	setflag true,0,regc
+	increase 4,rega
+	increase 4,regb
+	loop bn_sub_0
+	rtn
+
+bn_rshift6:
+	force 6,loopcnt
+	increase 20,rega
+bn_rshift:
+	force 0,regc
+bn_rshift_0:	
+	ifetch 4,rega
+	isolate1 0,pdata
+	setflag true,1,regc
+	rshift pdata,pdata
+	isolate1 0,regc
+	setflag true,31,pdata
+	istore 4,rega
+	increase -4,rega
+	rshift regc,regc
+	loop bn_rshift_0
+	rtn
+
+bn_lshift:
+	force 6,loopcnt
+	force 0,regc
+bn_lshift_0:	
+	ifetch 4,rega
+	isolate1 31,pdata
+	setflag true,1,regc
+	lshift pdata,pdata
+	isolate1 0,regc
+	setflag true,0,pdata
+	istore 4,rega
+	increase 4,rega
+	rshift regc,regc
+	loop bn_lshift_0
+	rtn
+	
+bn_lshiftmod:
+	call bn_lshift
+bn_lshiftmod_ismod:	
+	isolate1 0,regc
+	branch bn_lshiftmod_0,true
+	arg mem_p,regb
+	copy rega,regc
+	increase -24,rega
+	call bn_bigeq
+	nrtn positive
+	copy regc,rega
+bn_lshiftmod_0:
+	increase -24,rega
+	arg mem_p,regb
+	copy rega,contw
+	branch bn_sub
+	
+
+bn_addmod:
+	call bn_add
+	copy contw,rega
+	branch bn_lshiftmod_ismod
+	
+bn_submod:
+	call bn_sub
+	isolate0 0,regc
+	rtn true
+	arg mem_p,regb
+	add contw,-24,rega
+	copy rega,contw
+	branch bn_add
+	
+
+bn_p192mod:
+	copy contw,timeup				/* save result ptr */
+	copy rega,alarm				/* temp save rega */
+	arg mem_tmp2,regb
+	copy regb,contw
+	add rega,24,contr
+	ifetch 8,contr
+	istore 8,contw
+	istore 8,contw
+	force 0,pdata
+	istore 8,contw
+	copy timeup,contw
+	call bn_addmod
+	arg mem_tmp2,regb
+	copy regb,contw
+	force 0,pdata
+	istore 8,contw
+	add alarm,32,contr
+	ifetch 8,contr
+	istore 8,contw
+	istore 8,contw
+	copy timeup,rega
+	copy rega,contw
+	call bn_addmod
+	arg mem_tmp2,regb
+	copy regb,contw
+	add alarm,40,contr
+	ifetch 8,contr
+	istore 8,contw
+	istore 8,contw
+	istore 8,contw
+	copy timeup,rega
+	copy rega,contw
+	branch bn_addmod
+		
+
+bn_load:
+	force 6,loopcnt
+bn_load_0:	
+	ifetch 4,contr
+	iforce regext
+	increase 1,regext_index
+	loop bn_load_0
+	rtn
+
+
+	/* cost 1562 clks */	
+bn_mulmod:
+	copy contw,timeup					/* save result ptr */
+	arg mem_tmp1,contw
+	call bn_zero
+	arg mem_tmp1,contw
+	copy rega,contr
+	force 0,regext_index
+	call bn_load
+	copy regb,contr
+	call bn_load
+	force 0,regb
+bn_mulmod_1:	
+	force 0,temp
+	force 6,regc
+bn_mulmod_0:
+	ifetch 4,contw					/* d[i+j] */
+	iforce rega
+	copy regb,regext_index
+	deposit regext
+	copy regc,regext_index
+	imul32 regext,pdata
+	iadd rega,pdata					/* uv = a[i]*b[j] + d[i+j] */
+	iadd temp,pdata					/* uv += u */
+	istore 4,contw					/* ->d[i+j] */
+	rshift32 pdata,temp				/* temp = u = uv >> 32 */
+	increase 1,regc
+	compare 12,regc,0xff
+	nbranch bn_mulmod_0,true
+	deposit temp
+	istore 4,contw					/* d[i + 12] = u */
+	increase -24,contw
+	increase 1,regb
+	compare 6,regb,0xff
+	nbranch bn_mulmod_1,true
+	arg mem_tmp1,rega
+	copy timeup,contw
+	branch bn_p192mod
+
+	
+bn_sqrmod:
+	copy rega,regb
+	branch bn_mulmod
+
+bn_rshifteven:
+	copy rega,alarm
+bn_rshifteven_1:
+	copy alarm,rega
+	ifetch 1,rega
+	isolate1 0,pdata
+	rtn true
+	call bn_rshift6
+	ifetch 1,regb
+	isolate0 0,pdata
+	branch bn_rshifteven_0,true
+	arg mem_p,rega
+	copy regb,contw
+	call bn_add
+	ifetch 1,regb
+	iadd regc,pdata
+	istore 1,regb						/* [6] */
+	increase -24,regb
+bn_rshifteven_0:
+	add regb,24,rega
+	force 7,loopcnt
+	call bn_rshift
+	branch bn_rshifteven_1
+
+	/* cost 141910 clks */
+bn_invmod:
+	copy contw,timeup					/* save result ptr */
+	arg mem_tmp0,contw				/* x */
+	call bn_zero
+	force 0,pdata
+	store 4,mem_tmp5
+	store 4,mem_t2
+	jam 1,mem_tmp0
+	arg mem_tmp1,contw				/* y */
+	call bn_zero
+	arg mem_p,contr
+	arg mem_tmp2,contw				/* a */
+	call memcpy24
+	copy rega,contr
+	arg mem_tmp3,contw				/* b */
+	call memcpy24
+bn_invmod_2:	
+	arg mem_tmp3,contr
+	call bn_eq_zero
+	branch bn_invmod_0,blank
+	arg mem_tmp3,rega
+	arg mem_tmp0,regb
+	call bn_rshifteven
+
+	arg mem_tmp2,rega
+	arg mem_tmp1,regb
+	call bn_rshifteven
+	arg mem_tmp3,rega
+	arg mem_tmp2,regb
+	call bn_bigeq
+	branch bn_invmod_1,positive
+	arg mem_tmp2,rega
+	arg mem_tmp3,regb
+	copy rega,contw
+	call bn_sub
+	arg mem_tmp0,rega
+	arg mem_tmp1,regb
+	copy regb,contw
+	call bn_add
+	ifetch 1,rega
+	iadd regc,regc
+	ifetch 1,regb
+	iadd regc,pdata
+	istore 1,regb
+	branch bn_invmod_2
+bn_invmod_1:
+	arg mem_tmp3,rega
+	arg mem_tmp2,regb
+	copy rega,contw
+	call bn_sub
+	arg mem_tmp1,rega
+	arg mem_tmp0,regb
+	copy regb,contw
+	call bn_add
+	ifetch 1,rega
+	iadd regc,regc
+	ifetch 1,regb
+	iadd regc,pdata
+	istore 1,regb
+	branch bn_invmod_2
+bn_invmod_0:
+	arg mem_tmp0,contw
+	call bn_zero
+	fetch 1,mem_tmp5
+	store 1,mem_tmp0
+	store 1,mem_tmp0a
+	arg mem_tmp0,rega
+	arg mem_tmp1,regb
+	copy regb,contw
+	call bn_addmod
+	arg mem_p,rega
+	arg mem_tmp1,regb
+	copy timeup,contw
+	branch bn_submod
+	
+
+
+	/* cost 64742 clks */
+ecdbl:
+	arg mem_cz,rega
+	arg mem_t2,contw
+	call bn_sqrmod
+	arg mem_t2,rega
+	arg mem_t3,contw
+	call bn_sqrmod
+	arg mem_a,rega
+	arg mem_t3,regb
+	arg mem_t3,contw
+	call bn_mulmod		/* t3=a*z4	*/
+	arg mem_cx,rega
+	arg mem_t2,contw
+	call bn_sqrmod
+	arg mem_t2,contr
+	arg mem_t1,contw
+	call memcpy24
+	arg mem_t1,rega
+	call bn_lshiftmod
+	arg mem_t2,rega
+	arg mem_t1,regb
+	arg mem_t2,contw
+	call bn_addmod
+	arg mem_t2,rega
+	arg mem_t3,regb
+	arg mem_t2,contw
+	call bn_addmod		/* t2=3*x2 + z*z4		D  */
+	arg mem_cx,contr
+	arg mem_t1,contw
+	call memcpy24
+	arg mem_cy,rega
+	arg mem_t3,contw
+	call bn_sqrmod
+	arg mem_t1,rega
+	call bn_lshiftmod
+	arg mem_t1,rega
+	call bn_lshiftmod
+	arg mem_t1,rega		
+	arg mem_t3,regb
+	arg mem_t1,contw
+	call bn_mulmod		/* t1=4x*y2	B	*/
+	arg mem_t3,rega
+	arg mem_t0,contw
+	call bn_sqrmod
+	arg mem_t0,rega
+	call bn_lshiftmod
+	arg mem_t0,rega
+	call bn_lshiftmod		
+	arg mem_t0,rega		
+	call bn_lshiftmod		/* t0=8*y4		C */
+	arg mem_cy,contr
+	arg mem_t3,contw
+	call memcpy24
+	arg mem_t3,rega
+	call bn_lshiftmod
+	arg mem_t3,rega
+	arg mem_cz,regb
+	arg mem_cz,contw
+	call bn_mulmod		
+	arg mem_t2,rega
+	arg mem_t3,contw
+	call bn_sqrmod
+	arg mem_t3,rega
+	arg mem_t1,regb
+	arg mem_t3,contw
+	call bn_submod
+	arg mem_t3,rega
+	arg mem_t1,regb
+	arg mem_cx,contw
+	call bn_submod
+	arg mem_t1,rega
+	arg mem_cx,regb
+	arg mem_t3,contw
+	call bn_submod
+	arg mem_t3,rega
+	arg mem_t2,regb
+	arg mem_t3,contw
+	call bn_mulmod		
+	arg mem_t3,rega
+	arg mem_t0,regb
+	arg mem_cy,contw
+	branch bn_submod
+	
+
+	/* cost 104904	clks */
+ecadd:
+	arg mem_az,rega
+	arg mem_t7,contw
+	call bn_sqrmod
+	arg mem_cx,rega
+	arg mem_t7,regb
+	arg mem_t0,contw
+	call bn_mulmod		/* n1=t0=xa*zb2  */
+	arg mem_az,rega
+	arg mem_t7,regb
+	arg mem_t7,contw
+	call bn_mulmod	
+	arg mem_cy,rega
+	arg mem_t7,regb
+	arg mem_t1,contw
+	call bn_mulmod		/* n2=t1=ya*zb3 */
+	arg mem_cz,rega
+	arg mem_t7,contw
+	call bn_sqrmod
+	arg mem_ax,rega
+	arg mem_t7,regb
+	arg mem_t2,contw
+	call bn_mulmod		/* n3=t2=xb*za2 */
+	arg mem_cz,rega
+	arg mem_t7,regb
+	arg mem_t7,contw
+	call bn_mulmod	
+	arg mem_ay,rega
+	arg mem_t7,regb
+	arg mem_t3,contw
+	call bn_mulmod		/* n4=t3=yb*za3 */
+	arg mem_t0,rega
+	arg mem_t2,regb
+	arg mem_t7,contw
+	call bn_submod		/* n5=t7=n1-n3=t0-t2 */
+	arg mem_t0,rega
+	arg mem_t2,regb
+	arg mem_t0,contw
+	call bn_addmod		/* n7=t0=n1+n3=t0+t2 */
+	arg mem_t1,rega
+	arg mem_t3,regb
+	arg mem_t2,contw
+	call bn_submod		/* n6=t2=n2-n4=t1-t3 */
+	arg mem_t1,rega
+	arg mem_t3,regb
+	arg mem_t1,contw
+	call bn_addmod		/* n8=t1=n2+n4=t1+t3 */
+	arg mem_t1,rega
+	arg mem_t7,regb
+	arg mem_t1,contw
+	call bn_mulmod		/* t1=n8*n5 */
+	arg mem_cz,rega
+	arg mem_az,regb
+	arg mem_t3,contw
+	call bn_mulmod	
+	arg mem_t3,rega
+	arg mem_t7,regb
+	arg mem_cz,contw
+	call bn_mulmod		/* z=za*zb*n5 */
+	arg mem_t7,rega
+	arg mem_t7,contw
+	call bn_sqrmod		/* t7=n5^2 */
+	arg mem_t7,rega
+	arg mem_t0,regb
+	arg mem_t3,contw
+	call bn_mulmod		/* t3=n5^2*n7 */
+	arg mem_t7,rega
+	arg mem_t1,regb
+	arg mem_t1,contw
+	call bn_mulmod		/* t1=n8*n5^3 */
+	arg mem_t2,rega
+	arg mem_cx,contw
+	call bn_sqrmod		
+	arg mem_cx,rega
+	arg mem_t3,regb
+	arg mem_cx,contw
+	call bn_submod		/* x=n6^2-n5^2*n7 */
+	arg mem_cx,contr
+	arg mem_t7,contw
+	call memcpy24
+	arg mem_t7,rega
+	call bn_lshiftmod		/* t7=2*x */
+	arg mem_t3,rega
+	arg mem_t7,regb
+	arg mem_t3,contw
+	call bn_submod		/* t3=n9 */
+	arg mem_t3,rega
+	arg mem_t2,regb
+	arg mem_t2,contw
+	call bn_mulmod		/* t2=n9*n6 */
+	arg mem_t2,rega
+	arg mem_t1,regb
+	arg mem_cy,contw
+	call bn_submod	
+	arg mem_cy,rega
+	arg mem_p,regb
+	arg mem_cy,contw
+	force 0,regc
+	fetch 1,mem_cy
+	isolate1 0,pdata
+	call bn_add,true
+	copy regc,alarm
+	arg mem_cy,rega
+	call bn_rshift6
+	fetch 1,mem_cy5
+	isolate1 0,alarm
+	setflag true,7,pdata
+	store 1,mem_cy5
+	rtn
+
+	/* cost 22276983 clks */
+eckp:
+	jam 192,mem_ec_loopc
+	jam 1,mem_ec_infinite
+eckp_0:	
+	fetch 1,mem_ec_loopc
+	increase -1,pdata
+	nrtn positive
+	store 1,mem_ec_loopc
+	fetch 1,mem_ec_infinite
+	call ecdbl,blank
+	fetch 1,mem_ec_loopc
+	arg mem_k,contr
+	call bn_testbit
+	branch eckp_0,true
+	fetch 1,mem_ec_infinite
+	nbranch eckp_1,blank
+	call ecadd
+	branch eckp_0
+eckp_1:
+	jam 0,mem_ec_infinite
+	arg mem_ax,contr
+	arg mem_cx,contw
+	call ec_copy
+	branch eckp_0
+
+	/* cost 162522 clks */
+ecunmapz:
+	arg mem_cz,rega
+	arg mem_t3,contw
+	call bn_invmod			/* t3 = 1/z */
+	arg mem_t3,rega
+	arg mem_t1,contw		
+	call bn_sqrmod			/* t1 = 1/z2 */
+	arg mem_cx,rega
+	arg mem_t1,regb
+	arg mem_bx,contw
+	call bn_mulmod
+	arg mem_t3,rega
+	arg mem_t1,regb
+	arg mem_t2,contw			
+	call bn_mulmod			/* t2 = 1/z3 */
+	arg mem_cy,rega
+	arg mem_t2,regb
+	arg mem_by,contw
+	branch bn_mulmod		
+	
+	
+sha_endian_swap:
+	force 16,loopcnt
+sha_endian_swap2:	
+	ifetch 4,contr
+	force 4,rega
+	increase 3,contw
+sha_endian_loop:	
+	istore 1,contw
+	rshift8 pdata,pdata
+	increase -2,contw
+	increase -1,rega
+	nbranch sha_endian_loop,zero
+	increase 5,contw
+	loop sha_endian_swap2
+	rtn	
+
+
+sha_getw:
+	lshift2 queue,pdata
+	iadd timeup,contr
+	ifetch 4,contr
+	rtn
+	
+sha_r:
+	force 16,alarm
+	arg memdat,timeup
+sha_r_loop:	
+	add alarm,-7,queue
+	call sha_getw
+	iforce temp						/* W[t - 7] */
+	add alarm,-16,queue
+	call sha_getw
+	iadd temp,temp					/* W[t-7] + W[t-16] */
+	add alarm,-2,queue
+	call sha_getw
+	shasx pdata,1,pdata
+	iadd temp,temp					/* S1(W[t -  2]) + W[t-7] + W[t-16] */
+	add alarm,-15,queue
+	call sha_getw
+	shasx pdata,0,pdata
+	iadd temp,temp					/* S0(W[t - 15]) + S1(W[t -  2]) + W[t-7] + W[t-16] */
+	lshift2 alarm,pdata
+	iadd timeup,contw
+	istoret 4,contw
+	increase 1,alarm
+	compare 64,alarm,0xff
+	nbranch sha_r_loop,true
+	rtn
+	
+
+sha_init:
+	arg memh0,contr
+	force 7,regext_index
+sha_init_0:	
+	ifetch 4,contr
+	iforce regext
+	increase -1,regext_index
+	branch sha_init_0,positive
+	rtn
+
+sha:
+	set1 mark_ext_patch,mark
+	bpatch patch3f_0,mem_patch3f
+	call sha_r		/* preprocessing data into R() */
+	arg memahbak,contw
+	force 0,regext_index
+sha_0:	
+	deposit regext
+	istore 4,contw
+	increase 1,regext_index
+	compare 8,regext_index,0xff
+	nbranch sha_0,true
+	call enable_authrom
+	arg memk,timeup
+	arg memdat,alarm
+	force 64,loopcnt
+sha_loop:	
+	ifetcht 4,alarm
+	ifetch 4,timeup
+	increase 4,timeup
+	increase 4,alarm
+	iadd temp,pdata			/* x+K */
+	force 7,regext_index
+	iadd regext,temp			/* x+K+h */
+	force 4,regext_index
+	shasx regext,3,pdata
+	iadd temp,temp			/* temp = s3(e)+x+K+h */
+	force 5,regext_index
+	deposit regext
+	force 6,regext_index
+	ixor regext,pdata
+	force 4,regext_index
+	iand regext,pdata			/* (e & (f ^ g)) */
+	force 6,regext_index
+	ixor regext,pdata			/* F1(e, f, g) = g ^ (e & (f ^ g)) */
+	iadd temp,temp			/* temp1 = h + S3(e) + F1(e,f,g) + K + x */
+	force 7,regext_index
+	copy temp,regext			/* save to H */
+	force 3,regext_index
+	deposit regext
+	iadd temp,regext			/* save to D */
+	force 0,regext_index
+	deposit regext
+	force 1,regext_index
+	iand regext,temp			/* a & b */
+	ior regext,pdata			/* a | b */			
+	force 2,regext_index
+	iand regext,pdata			/* (c & (a | b)) */
+	ior temp,temp				/* F0:(a & b) | (c & (a | b)) */
+	force 0,regext_index
+	shasx regext,2,pdata
+	iadd temp,pdata			/* temp2 = S2(a) + F0(a,b,c) */
+	force 7,regext_index
+	iadd regext,regext			/* h = temp1 + temp2 */
+	regexrot					/* rotate move h,a-g => a-h */
+	loop sha_loop
+	arg memahbak,contr
+	force 0,regext_index
+sha_1:	
+	ifetch 4,contr
+	iadd regext,regext
+	increase 1,regext_index
+	compare 8,regext_index,0xff
+	nbranch sha_1,true
+	branch disable_authrom
+
+	
+sha_result:
+	arg   memresult,contw
+	force 7,regext_index
+sha_regext_save:
+	deposit regext
+	istore  4,contw 
+	increase -1,regext_index
+	branch   sha_regext_save,positive
+	rtn	
+
+pad_xor:
+//	arg memx_end,contr
+	arg      memdat,contw
+	increase -4,contr
+	sub      loopcnt,16,rega
+pad_xor_0:	    
+	ifetch   4,contr
+	ixor     temp,pdata
+	istore   4,contw	
+	increase -8,contr	
+	loop  pad_xor_0
+	copy     rega,loopcnt
+	deposit  temp
+pad_xor_1:	
+	istore 4,contw
+	loop pad_xor_1
+	rtn
+	
+g_noninit:
+ 	arg      mem_sp_pubkey_remote_x_end,contr
+	arg      memdat,contw
+	force    6,loopcnt
+	call     memcpy_dword_swap
+	arg      mem_sp_pubkey_local_x_end,contr
+	force    6,loopcnt
+	call     memcpy_dword_swap
+	arg      mem_sp_random_remote_end,contr
+	call     memcpy_dword_swap4
+	call     sha_init
+	call     sha	
+ 	arg      mem_sp_random_local_end,contr
+	arg      memdat,contw
+	branch g_common
+	
+g_init:
+ 	arg      mem_sp_pubkey_local_x_end,contr
+	arg      memdat,contw
+	force    6,loopcnt
+	call     memcpy_dword_swap
+	arg      mem_sp_pubkey_remote_x_end,contr
+	force    6,loopcnt
+	call     memcpy_dword_swap
+	arg      mem_sp_random_local_end,contr
+	call     memcpy_dword_swap4
+	call     sha_init
+	call     sha	
+ 	arg      mem_sp_random_remote_end,contr
+	arg      memdat,contw	
+g_common:	
+	call     memcpy_dword_swap4
+	setarg   0x800000
+	lshift8  pdata,pdata 
+	istore   4,contw
+	force    5,loopcnt
+	call memset0
+	setarg 640
+	istore 4,contw
+	call sha
+
+	fetch 4,memresult
+//	store 4,mem_sp_gkey
+	arg 1000,rega
+	idiv rega
+	call wait_div_end
+	remainder pdata
+	store 4,mem_sp_gkey
+	quotient pdata
+	arg 1000,rega
+	idiv rega
+	call wait_div_end
+	remainder pdata
+	arg 1000,rega
+	imul32 rega,pdata
+	fetcht 4,mem_sp_gkey
+	iadd temp,pdata
+	store 4,mem_sp_gkey
+	rtn
+	
+function_f1:
+	setarg   0x363636
+	lshift8  pdata,temp
+	or_into       0x36,temp
+	fetch 2,mem_sp_prarm_stack
+	copy pdata,contr
+	force    4,loopcnt
+	call     pad_xor
+	call     sha_init
+	call     sha
+	fetch 2,mem_sp_prarm_stack+2
+	copy pdata,contr
+	arg      memdat,contw
+	force    6,loopcnt
+	call     memcpy_dword_swap
+	fetch 2,mem_sp_prarm_stack+4
+	copy pdata,contr
+	force    6,loopcnt
+	call     memcpy_dword_swap
+	setarg   0x800000
+	istore   3,contw
+	force    0,pdata  
+	istore   1,contw
+	force    0,pdata
+	istore   8,contw
+	setarg   0x0388
+	istore   4,contw
+	call     sha
+	call     sha_result
+	arg      memresult,contr
+	arg      memahsave,contw 
+	call     memcpy32
+    
+	setarg   0x5c5c5c
+	lshift8  pdata,temp
+	or_into       0x5c,temp
+	fetch 2,mem_sp_prarm_stack
+	copy pdata,contr
+	force    4,loopcnt
+	call     pad_xor
+	call     sha_init
+	call     sha
+	arg      memahsave_end,contr
+	arg      memdat,contw
+	force    8,loopcnt
+	call     memcpy_dword_swap
+	setarg   0x800000
+	lshift8  pdata,pdata 
+	istore   4,contw
+	call		bn_zero
+	setarg   0x0300
+	istore   4,contw
+	call     sha
+	branch     sha_result
+	
+	
+function_f2:
+	setarg   0x363636
+	lshift8  pdata,temp
+	or_into       0x36,temp
+	arg      mem_sp_dhkey_end,contr
+	force    6,loopcnt
+	call     pad_xor
+	call     sha_init
+	call     sha
+	fetch 2,mem_sp_prarm_stack+12
+	copy pdata,contr
+	arg      memdat,contw
+	call     memcpy_dword_swap4
+	fetch 2,mem_sp_prarm_stack+14
+	copy pdata,contr
+	call     memcpy_dword_swap4
+
+	setarg   0x62746c
+	lshift8  pdata,pdata
+	or_into       0x6b,pdata       
+	istore   4,contw
+	arg      mem_addr_value_end,contr
+	force    3,loopcnt
+	call     memcpy_dword_swap
+	
+	setarg   0x800000
+	lshift8  pdata,pdata 
+	istore   4,contw
+	force    0,pdata
+	istore   8,contw
+	setarg   0x0380
+	istore   4,contw
+	call     sha
+
+	call     sha_result
+	arg      memresult,contr
+	arg      memahsave,contw 
+	call     memcpy32
+    
+	setarg   0x5c5c5c
+	lshift8  pdata,temp
+	or_into       0x5c,temp
+	arg      mem_sp_dhkey_end,contr 
+	force    6,loopcnt
+	call     pad_xor
+	call     sha_init
+	call     sha
+	arg      memahsave_end,contr
+	arg      memdat,contw
+	force    8,loopcnt
+	call     memcpy_dword_swap
+	setarg   0x800000
+	lshift8  pdata,pdata 
+	istore   4,contw
+	call bn_zero
+	setarg   0x0300
+	istore   4,contw
+	call     sha
+	branch     sha_result
+	
+
+function_f3a:
+	setarg   0x363636
+	lshift8  pdata,temp
+	or_into       0x36,temp
+	arg      mem_sp_dhkey_end,contr
+	force    6,loopcnt
+	call     pad_xor
+	call     sha_init
+	call     sha
+	arg      mem_sp_random_remote_end,contr
+	arg      memdat,contw
+	call     memcpy_dword_swap4
+	arg      mem_sp_random_local_end,contr
+	call     memcpy_dword_swap4
+	branch function_f3b_common
+
+function_f3b:
+	setarg   0x363636
+	lshift8  pdata,temp
+	or_into       0x36,temp
+	arg      mem_sp_dhkey_end,contr
+	force    6,loopcnt
+	call     pad_xor
+	call     sha_init
+	call     sha
+
+	arg      mem_sp_random_local_end,contr
+	arg      memdat,contw
+	call     memcpy_dword_swap4
+	arg      mem_sp_random_remote_end,contr
+	call     memcpy_dword_swap4
+function_f3b_common:    
+	setarg   0x0    
+	istore   8,contw
+	istore   8,contw
+    
+	copy     contw,temp
+	jam      0x80,mem_addr_padding
+	copy     temp,contw
+	arg      mem_addr_iocap_end,contr
+	call     memcpy_dword_swap4
+
+	call     sha
+    
+	arg      memdat,contw
+	force 7,loopcnt
+	call memset0
+	istore   4,contw
+	setarg   0x03F8
+	istore   4,contw
+	call     sha
+	call     sha_result
+	
+	arg      memresult,contr
+	arg      memahsave,contw 
+	call     memcpy32
+    
+	setarg   0x5c5c5c
+	lshift8  pdata,temp
+	or_into       0x5c,temp
+	arg      mem_sp_dhkey_end,contr 
+	force    6,loopcnt
+	call     pad_xor
+	call     sha_init
+	call     sha
+	arg      memahsave_end,contr
+	arg      memdat,contw
+	force    8,loopcnt
+	call     memcpy_dword_swap
+	setarg   0x800000
+	lshift8  pdata,pdata 
+	istore   4,contw
+	call bn_zero
+	setarg   0x0300
+	istore   4,contw
+	call     sha	
+	branch     sha_result
+		
+/*
+eckp:
+	jam 192,mem_ec_loopc
+	jam 1,mem_ec_infinite
+*/
+eckp_calc_init:
+	jam      192,mem_ec_loopc
+eckp_calc_init_1:    
+	fetch    1,mem_ec_loopc
+	rtn      blank
+	increase -1,pdata
+	store    1,mem_ec_loopc 	
+	arg      mem_k,contr
+	call     bn_testbit
+	branch eckp_calc_init_1,true
+	arg      mem_ax,contr
+	arg      mem_cx,contw
+	branch     ec_copy	
+	
+eckp_calc:
+	call     ecdbl  
+	fetch    1,mem_ec_loopc
+	increase -1,pdata
+	store    1,mem_ec_loopc
+	arg      mem_k,contr
+	call     bn_testbit
+	rtn	true
+	branch     ecadd                
+	             
+eckp_cp_1:
+	jam 0,mem_ec_infinite
+	arg mem_ax,contr
+	arg mem_cx,contw
+	branch ec_copy
+
+memcpy_dword_swap4:
+	force 4,loopcnt
+memcpy_dword_swap:
+	increase -4,contr
+memcpy_dword_swap_loop:
+	ifetch   4,contr
+	istore   4,contw
+	increase -8,contr
+	loop   memcpy_dword_swap_loop 
+    	rtn
+endif
+
+
Index: btkb/program/ui.prog
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/btkb/program/ui.prog	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/btkb/program/ui.prog	(working copy)
@@ -0,0 +1,435 @@
+ui_init:
+	rtn wake
+	call ui_button_init
+	call ui_timer_init
+	branch ui_led_init
+
+ui_dispatch:
+	fetch 1,mem_device_option
+	rtneq dvc_op_hci
+	call ui_led_blink_polling
+	
+	branch ui_timer_check
+	
+ui_button_init:
+	fetch 1,mem_ui_button_gpio
+	rtneq UI_BUTTON_GPIO_DISABLE
+	iforce temp
+	call gpio_config_output
+	fetcht 1,mem_ui_button_gpio
+	call gpio_out_inactive
+	nop 100
+	fetcht 1,mem_ui_button_gpio
+	call gpio_config_input
+	branch ui_button_polling
+
+ui_button_disable:
+	jam UI_BUTTON_GPIO_DISABLE,mem_ui_button_gpio
+	rtn
+	
+ui_button_polling:
+	set1 mark_ext_patch,mark
+	bpatch patch30_5,mem_patch30
+	fetch 1,mem_ui_button_gpio
+	rtneq UI_BUTTON_GPIO_DISABLE
+	copy pdata,temp
+	call gpio_get_bit
+	nbranch ui_button_up,true
+	//fall through
+ui_button_down:
+	call ui_button_check_long_press
+	fetch 2,mem_ui_state_map
+	set1 UI_STATE_BTN_DOWN
+	store 2,mem_ui_state_map
+	fetch 1,mem_ui_button_last_state
+	rtneq UI_BUTTON_STATE_DOWN
+	jam UI_BUTTON_STATE_DOWN,mem_ui_button_last_state
+	//Down Edge
+	fetch 1,mem_ui_button_timeout
+	store 1,mem_ui_button_timer //start long press timer
+	call lpm_button_get_wake_lock
+	jam BT_EVT_BUTTON_DOWN,mem_fifo_temp
+	branch ui_ipc_send_event
+ui_button_up:
+	fetch 2,mem_ui_state_map
+	set0 UI_STATE_BTN_DOWN
+	store 2,mem_ui_state_map
+	fetch 1,mem_ui_button_last_state
+	rtneq UI_BUTTON_STATE_UP
+	jam UI_BUTTON_STATE_UP,mem_ui_button_last_state
+	//Up Edge
+	jam 0,mem_ui_button_timer//stop long press timer
+	call lpm_button_clean_wake_lock
+	jam BT_EVT_BUTTON_UP,mem_fifo_temp
+	branch ui_ipc_send_event
+
+ui_button_check_long_press:
+	fetch 1,mem_ui_button_timer
+	rtn blank
+	increase -1,pdata
+	store 1,mem_ui_button_timer
+	nrtn blank
+	//Long Press
+	jam BT_EVT_BUTTON_LONG_PRESSED,mem_fifo_temp
+	branch ui_ipc_send_event
+
+lpm_button_get_wake_lock:
+	arg wake_lock_button,queue
+	branch lpm_get_wake_lock
+	
+lpm_button_clean_wake_lock:
+	arg wake_lock_button,queue
+	branch lpm_put_wake_lock
+
+ui_led_init:
+	fetch 1,mem_led_gpio
+	rtneq UI_BUTTON_GPIO_DISABLE
+	iforce temp
+	call gpio_config_output
+	branch ui_led_off
+	
+ui_led_blink_stop:
+	fetch 2,mem_ui_state_map
+	set0 UI_STATE_LED_BLINK
+	store 2,mem_ui_state_map
+	jam ui_led_stop,mem_led_switch
+ui_led_off:
+	fetch 2,mem_ui_state_map
+	set0 UI_STATE_LED_ON
+	store 2,mem_ui_state_map
+	fetcht 1,mem_led_gpio
+	branch gpio_out_inactive
+
+ui_led_on:
+	fetch 2,mem_ui_state_map
+	set1 UI_STATE_LED_ON
+	store 2,mem_ui_state_map
+	jam ui_led_stop,mem_led_switch
+	fetcht 1,mem_led_gpio
+	branch gpio_out_active
+
+ui_led_blink_start:
+	fetch 2,mem_ui_state_map
+	set1 UI_STATE_LED_BLINK
+	store 2,mem_ui_state_map
+	jam ui_led_start,mem_led_switch
+	rtn
+	
+ui_led_blink_polling:
+	set1 mark_ext_patch,mark
+	bpatch patch30_6,mem_patch30
+	fetch 1,mem_led_switch
+	rtneq ui_led_stop
+	arg ui_led_blink,queue
+	call timer_check
+	nrtn blank
+	fetch 1,mem_led_switch
+	beq ui_led_dark_time,ui_led_blink_polling_dark
+	call ui_led_on
+	jam ui_led_dark_time,mem_led_switch
+	fetch 2,mem_led_light_time
+	branch ui_led_blink_timer_start
+ui_led_blink_polling_dark:
+	call ui_led_off
+	jam ui_led_light_time,mem_led_switch
+	fetch 2,mem_led_dark_time
+ui_led_blink_timer_start:
+	arg ui_led_blink,queue
+	branch timer_init	
+
+	
+ui_timer_check:
+	set1 mark_ext_patch,mark
+	bpatch patch30_7,mem_patch30
+	arg 0,rega
+	fetcht 4,mem_ui_timer_last_btclk
+	copy clkn_bt,regb
+	//call ice_break
+ui_timer_check_loop:
+	copy regb,pdata
+	increase 160,temp    //320btclk = 100ms
+	increase 160,temp
+	isub temp,null
+	nbranch ui_timer_check_end,positive
+	increase 1,rega   //increase 1 every 100ms count
+	and rega,0x0f,pdata
+	nbranch ui_timer_check_loop,blank
+	arg 0,rega  //reset timer if it's longer than 1.5s between 2 checks
+	call ui_timer_check_send_evt
+ui_timer_init:
+	copy clkn_bt,pdata
+	store 4,mem_ui_timer_last_btclk
+	rtn
+ui_timer_check_end:
+	set1 mark_ext_patch,mark
+	bpatch patch31_0,mem_patch31
+	copy rega,pdata
+	rtn blank
+	increase -160,temp    //320btclk = 100ms
+	increase -160,temp
+	storet 4,mem_ui_timer_last_btclk
+ui_timer_check_send_evt:
+	increase BT_EVT_TIMER_INIT,pdata
+	store 1,mem_fifo_temp
+	branch ui_ipc_send_event
+	
+
+//**********************************************************//
+//************UI Inter-Processor Communication*******//
+//**********************************************************//
+ui_ipc_get_lock:
+	jam 1,mem_ipc_lock_bt
+ui_ipc_get_lock_wait:
+	fetch 1,mem_ipc_lock_c51
+	nbranch ui_ipc_get_lock_wait,blank
+	rtn
+	
+ui_ipc_put_lock:
+	jam 0,mem_ipc_lock_bt
+	rtn
+	
+ui_ipc_fifo_out:
+	branch fifo_out
+
+
+	
+ui_ipc_send_event:
+	set1 mark_ext_patch,mark
+	bpatch patch31_1,mem_patch31
+	fetch 1,mem_device_option
+	rtneq dvc_op_hci
+	call ui_ipc_get_lock
+	copy rega,pdata
+	store 4,mem_ipc_rega_temp
+	arg mem_ipc_fifo_bt2c51,rega
+	call fifo_in
+	fetch 4,mem_ipc_rega_temp
+	copy pdata,rega
+	branch ui_ipc_put_lock
+
+ui_ipc_send_cmd:
+	set1 mark_ext_patch,mark
+	bpatch patch31_2,mem_patch31
+	fetch 1,mem_device_option
+	rtneq dvc_op_hci
+	call ui_ipc_get_lock
+	copy rega,pdata
+	store 4,mem_ipc_rega_temp	
+	arg mem_ipc_fifo_c512bt,rega
+	call fifo_in
+	fetch 4,mem_ipc_rega_temp
+	copy pdata,rega	
+	branch ui_ipc_put_lock
+
+ui_ipc_clean_all_fifo:
+	set1 mark_ext_patch,mark
+	bpatch patch31_3,mem_patch31
+	setarg 0
+	store UTIL_FIFO_LEN,mem_ipc_fifo_c512bt
+	store UTIL_FIFO_LEN,mem_ipc_fifo_bt2c51
+	rtn
+	
+check_51cmd:
+	set1 mark_ext_patch,mark
+	bpatch patch31_4,mem_patch31
+	fetch 1,mem_hci_cmd
+	nrtn blank
+	arg mem_ipc_fifo_c512bt,rega
+	call fifo_is_empty
+	rtn blank
+	jam IPC_CONTINUE_PROCESS,mem_ipc_skip_continue_proc
+	call check_51cmd_once
+	fetch 1,mem_ipc_skip_continue_proc
+	branch check_51cmd,blank
+	rtn
+
+check_51cmd_once:
+	set1 mark_ext_patch,mark
+	bpatch patch31_5,mem_patch31
+	call ui_ipc_get_lock
+	arg mem_ipc_fifo_c512bt,rega
+	call fifo_out
+	copy pdata,temp
+	call ui_ipc_put_lock
+	copy temp,pdata
+	rtn blank
+ 	beq BT_CMD_START_DISCOVERY,check_51cmd_start_discovery
+  	beq BT_CMD_STOP_DISCOVERY,check_51cmd_stop_discovery
+  	beq BT_CMD_RECONNECT,check_51cmd_reconnect
+  	beq BT_CMD_ENTER_SNIFF_SUBRATING,check_51cmd_enter_sniff_subrating
+  	beq BT_CMD_EXIT_SNIFF_SUBRATING,check_51cmd_exit_sniff_subrating
+  	beq BT_CMD_SNIFF_TEST,check_51cmd_sniff_test
+	beq BT_CMD_START_INQUIRY,check_51cmd_inq
+	beq BT_CMD_STOP_INQUIRY,check_51cmd_stop_inq
+	beq BT_CMD_START_ADV,check_51cmd_adv
+	beq BT_CMD_STOP_ADV,check_51cmd_stop_adv
+	beq BT_CMD_START_DIRECT_ADV,check_51cmd_direct_adv
+	beq BT_CMD_STOP_DIRECT_ADV,check_51cmd_stop_direct_adv
+	beq BT_CMD_LE_UPDATE_CONN,check_51cmd_le_update_conn
+	beq BT_CMD_LED_BLINK,ui_led_blink_start
+	beq BT_CMD_LED_ON,ui_led_on
+	beq BT_CMD_LED_OFF,ui_led_blink_stop
+	beq BT_CMD_LE_START_CONN,check_51cmd_le_start_con
+	beq BT_CMD_LE_START_SCAN,check_51cmd_start_scan
+	beq BT_CMD_LE_STOP_SCAN,check_51cmd_stop_scan
+	beq BT_CMD_ENTER_HIBERNATE,check_51cmd_hibernate
+	beq BT_CMD_LE_SMP_SECURITY_REQUEST,check_51cmd_le_smp_sec_req
+	beq BT_CMD_LE_START_WRITE,check_51cmd_le_start_write
+	beq BT_CMD_BB_RECONN_CANCEL,check_51cmd_bb_reconn_cancel
+	//context related, process in context
+	store 1,mem_fifo_temp
+	set1 mark_ext_patch,mark
+	bpatch patch31_6,mem_patch31
+	fetch 1,mem_lmo_opcode2
+	branch check_51cmd_once_continue,blank
+	call lmo_fifo_process
+	fetch 1,mem_lmo_opcode2
+	nbranch check_51cmd_restore,blank  //process this cmd next time while lmo fifo is full
+check_51cmd_once_continue:
+	fetch 1,mem_fifo_temp
+	bmark0 mark_context,check_51cmd_check_idle
+check_51cmd_once_continue0:
+  	beq BT_CMD_ENTER_SNIFF,cmd_in_sniff
+  	beq BT_CMD_EXIT_SNIFF,cmd_exit_sniff
+  	beq BT_CMD_SET_PIN_CODE,check_51cmd_pincode
+	beq BT_CMD_DISCONNECT,check_51cmd_disconnect
+	beq BT_CMD_LE_DISCONNECT,check_51cmd_le_disconnect
+	beq BT_CMD_ROLE_SWITCH,check_51cmd_role_switch
+	beq BT_CMD_STORE_RECONN_INFO_LE,eeprom_store_le_reconn_info
+	beq BT_CMD_STORE_RECONN_INFO_BT,eeprom_store_bd_reconn_info
+	beq BT_CMD_LE_UPDATE_CONN,BT_CMD_LE_UPDATE_CONN_1
+  	rtn
+
+
+BT_CMD_LE_UPDATE_CONN_1:
+	jam XT_LL_CONNECTION_PARAM_REQ,mem_fifo_temp
+	branch le_xtype_fifo_in
+check_51cmd_check_idle:
+	store 1,mem_fifo_temp
+  	call context_check_idle
+	branch check_51cmd_restore,zero
+	call context_search_plap
+	nrtn zero
+check_51cmd_restore:
+	jam IPC_SKIP_CONTINUE_PROCESS,mem_ipc_skip_continue_proc
+	branch ui_ipc_send_cmd
+
+
+check_51cmd_role_switch:
+  	jam LMP_SLOT_OFFSET,mem_lmo_opcode2
+	set1 mark_switch_initiated,mark
+	nrtn master
+	jam SWITCH_FLAG_INIT,mem_switch_flag
+	jam LMP_SWITCH_REQ ,mem_lmo_opcode2
+	fetch 1,mem_connection_options
+	set0 CONNECTION_SWITCH,pdata
+	store 1,mem_connection_options
+	rtn
+	
+check_51cmd_start_discovery:
+	fetch 2,mem_ui_state_map
+	set1 UI_STATE_BT_DISCOVERY
+	store 2,mem_ui_state_map
+	jam 3,mem_scan_mode
+	rtn
+	
+check_51cmd_stop_discovery:
+	jam 0,mem_hid_handshake_timer_count
+	jam 0,mem_scan_mode
+	fetch 2,mem_ui_state_map
+	set0 UI_STATE_BT_DISCOVERY
+	store 2,mem_ui_state_map
+	rtn
+	
+check_51cmd_reconnect:	
+	jam hci_cmd_create_conn,mem_hci_cmd
+	rtn
+	
+check_51cmd_disconnect:
+	jam LMP_DETACH,mem_lmo_opcode2
+	jam OTHER_END_TERMINATED,mem_disconn_reason_send
+	rtn
+	
+	
+check_51cmd_enter_sniff_subrating:
+	rtn
+	
+check_51cmd_exit_sniff_subrating:
+	rtn	
+	
+check_51cmd_sniff_test:
+	rtn
+	
+check_51cmd_pincode:
+	jam pincode_state_pincode_ready,mem_pincode_state
+	branch cmd_pair
+
+check_51cmd_inq:
+	rtn
+check_51cmd_stop_inq:
+	rtn
+check_51cmd_adv:
+	jam ON,mem_le_adv_enable
+	jam ADV_IND,mem_le_adv_type
+	rtn
+check_51cmd_stop_adv:
+	jam OFF,mem_le_adv_enable
+	rtn
+check_51cmd_direct_adv:
+	jam ON,mem_le_adv_enable
+	jam ADV_DIRECT_IND,mem_le_adv_type
+	rtn
+check_51cmd_stop_direct_adv:
+	jam OFF,mem_le_adv_enable
+	rtn
+check_51cmd_le_disconnect:
+	setarg 1
+	store 2,mem_le_superto
+	rtn
+check_51cmd_le_update_conn:
+	rtn
+check_51cmd_le_start_con:
+	jam ON,mem_le_scan_enable
+	jam hci_cmd_le_create_conn,mem_hci_cmd
+	fetch 6,mem_app_peer_addr
+	store 6,mem_le_conn_peer_addr
+	rtn
+check_51cmd_start_scan:
+	jam ON,mem_le_scan_enable
+	rtn
+check_51cmd_stop_scan:
+	jam OFF,mem_le_scan_enable
+	jam 0,mem_hci_cmd
+	rtn
+check_51cmd_le_smp_sec_req:
+	jam XT_SMP_SECURITY_REQUEST,mem_fifo_temp
+	branch le_xtype_fifo_in
+check_51cmd_hibernate:
+	set1 mark_ext_patch,mark
+	bpatch patch31_7,mem_patch31
+	fetch 2,mem_cb_before_hibernate
+	call callback_func
+	fetch 1,mem_ui_button_gpio
+	beq UI_BUTTON_GPIO_DISABLE,check_51cmd_hibernate_btn_disabled
+	copy pdata,temp
+	call gpio_config_input
+check_51cmd_hibernate_btn_disabled:
+	call ui_led_off
+	call ui_ipc_clean_all_fifo
+	branch lpm_hibernate
+	
+check_51cmd_le_start_write:
+	jam 1,mem_le_switch_send_data
+	rtn
+
+check_51cmd_bb_reconn_cancel:
+	force page_length_timer,queue
+	branch timer_stop
+
+ui_check_paring_button:
+	fetch 1,mem_ui_state_map
+	rtnbit0 UI_STATE_BTN_DOWN
+	rtnbit0 UI_STATE_BT_RECONNECT
+	branch check_51cmd_bb_reconn_cancel
+
+
Index: btkb/program/usb.prog
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/btkb/program/usb.prog	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/btkb/program/usb.prog	(working copy)
@@ -0,0 +1,374 @@
+ifdef COMPILE_USB
+
+usb_isr:
+	set1 mark_ext_patch,mark
+	bpatch patch3a_5,mem_patch3a
+	call usb_tx_test
+	hfetch 1,core_usb_status
+	store 1,mem_usb_status
+	hfetch 1,core_usb_fifo_empty
+	store 1,mem_usb_fifo_empty
+	hjam 0xe0,core_usb_status
+	fetch 1,mem_usb_fifo_empty
+	compare 0x1,pdata,0x1 
+	call usb0_fifo_empty,true
+	set1 mark_ext_patch,mark
+	bpatch patch3a_6,mem_patch3a
+	fetch 1,mem_usb_status	
+	compare 0x1,pdata,0x1  
+	call usb_status1,true
+	fetch 1,mem_usb_state
+	bne USB_CONNECTED,usb_tx
+	fetch 2,mem_usb_idle_cnt
+	increase 1,pdata
+	store 2,mem_usb_idle_cnt
+	fetcht 2,mem_usb_idle_timeout
+	isub temp,null
+	branch usb_init,positive
+	fetch 1,mem_usb_status	
+	bbit0 USB_STATUS_NAK,usb_tx
+	setarg 0
+	store 2,mem_usb_idle_cnt
+	branch usb_tx
+	
+
+usb_status1:
+	set1 mark_ext_patch,mark
+	bpatch patch3a_7,mem_patch3a
+	hjam 0x11,core_usb_status
+	hfetch 1,core_usb_ep_len
+	store 1,mem_usb_read_len
+	copy pdata,loopcnt
+	branch usb_rx_no_data,blank
+	arg mem_usb_setup,contw
+	call usb_rx_read
+	fetch 1,mem_usb_read_len
+	sub pdata,7,null
+	rtn positive
+usb_class_type:
+	set1 mark_ext_patch,mark
+	bpatch patch3b_0,mem_patch3b
+	fetch 1,mem_usb_setup_bmRequestType
+	beq HCI_CLASS_REQUEST_TYPE,usb_hci_class_req_type
+	beq HID_CLASS_REQUEST_TYPE,usb_hid_class_req_type
+	beq ZERO_CLASS_REQUEST_TYPE,usb_zero_class_req_type
+	fetch 1,mem_usb_setup_bRequest
+	beq SET_ADDRESS,usb0_request_set_address
+	beq GET_DESCRIPTOR,usb0_request_get_descriptor
+	beq SET_CONFIGURATION,usb0_request_set_configuration
+	beq SET_INTERFACE,usb0_request_set_interface
+	branch usb0_force_stall
+
+usb_zero_class_req_type:
+	fetch 1,mem_usb_setup_bRequest
+	beq CLEAR_FEATURE,usb0_request_clear_feature
+	beq SET_FEATURE,usb0_request_set_feature
+	beq SET_CONFIGURATION,usb0_reply_zerolen
+	beq SET_ADDRESS,usb0_request_set_address
+	branch usb0_force_stall
+usb_hci_class_req_type:
+	call usb0_reply_zerolen
+	rtn
+
+usb_rx_no_data:
+	fetch 1,mem_usb_status
+	bbit1 USB_STATUS_SETUP,usb_class_type
+	rtn
+usb_set_protocol_req:
+	fetch 1,mem_usb_set_protocol_count
+	increase 1,pdata
+	store 1,mem_usb_set_protocol_count
+	compare 2,pdata,0xff
+	nbranch usb0_reply_zerolen,true	
+	jam 1,mem_usb_desc
+	branch usb0_reply_zerolen
+usb_hid_class_req_type:
+	fetch 1,mem_usb_setup_bRequest
+	beq SET_IDLE,usb_set_idle
+	beq SET_REPORT,usb_set_report
+	beq SET_PROTOCOL,usb_set_protocol_req	
+	branch usb0_force_stall
+usb_set_idle:
+	fetch 1,mem_usb_state
+	beq USB_SETIDLE_1,usb_set_idle_connected
+	bne USB_RESUME,usb0_reply_zerolen
+	jam USB_SETIDLE_1,mem_usb_state
+	branch usb0_reply_zerolen
+usb_set_idle_connected:
+	jam USB_CONNECTED,mem_usb_state
+	branch usb0_reply_zerolen
+	
+usb_set_report:
+	jam 1,mem_usb_desc
+	arg mem_usb_desc,rega
+	arg 1,regb
+	branch usb0_respond
+usb0_force_stall:
+	hjam 1,core_usb_stall
+	rtn
+usb0_reply_zerolen:
+	hjam 0x40,core_usb_clear
+	rtn
+
+usb_rx_read:
+	hfetch 1,core_usb_ep
+	istore 1,contw
+	loop usb_rx_read
+	rtn
+
+usb0_fifo_empty:
+	hjam 0x1,core_usb_fifo_empty
+	call usb0_tx
+	rtn
+
+usb0_request_get_descriptor:
+	set1 mark_ext_patch,mark
+	bpatch patch3b_1,mem_patch3b
+	set0 mark_isstr,mark
+	fetch 1,mem_usb_setup_bValueH
+	beq DSC_DEVICE,dsc_device_info
+	beq DSC_CONFIG,dsc_config_info	
+	beq DSC_STRING,dsc_string_info
+	beq DSC_HID,dsc_hid_info
+	beq DSC_HID_REPORT,dsc_hid_report_info
+	rtn
+	
+dsc_device_info:
+	arg mem_devicedesc,rega
+	branch usb0_respond_length
+dsc_config_info:
+	arg mem_confdesc,rega
+	branch usb0_respond_length
+dsc_string_info:
+	fetch 1,mem_usb_setup_bValue
+	and_into 3,pdata
+	arg mem_string0,rega
+	beq 0,usb0_respond_length	
+	set1 mark_isstr,mark
+	arg mem_string1,rega
+	beq 1,usb0_respond_length
+	arg mem_string2,rega
+	beq 2,usb0_respond_length
+	arg mem_string3,rega
+	beq 3,usb0_respond_length
+	branch assert
+dsc_hid_info:
+	arg mem_confdesc+18,rega
+	fetch 1,mem_confdesc+18
+	copy pdata,regb
+	branch usb0_respond
+dsc_hid_report_info:
+	fetch 2,mem_usb_setup_wIndex
+	beq 1,dsc_hid_report_info0
+	arg mem_hidreportdesc_kb,rega
+	branch usb0_respond_length
+dsc_hid_report_info0:
+	jam USB_GOT_REPORT_REQ,mem_usb_state
+	arg mem_hidreportdesc_m,rega
+	branch usb0_respond_length
+
+usb0_respond_length:
+	ifetch 1,rega
+	iforce regb
+	increase 1,rega
+	
+//rega=*buff,reb=size	
+usb0_respond:
+	set1 mark_ext_patch,mark
+	bpatch patch3b_2,mem_patch3b
+	bmark0 mark_isstr,usb0_respond0
+	add regb,1,pdata
+	lshift pdata,pdata
+	hstore 1,core_usb_dfifo0 
+	hjam 3,core_usb_dfifo0
+	fetch 1,mem_usb_setup_bLength
+	increase -2,pdata
+	rshift pdata,pdata
+	store 1,mem_usb_setup_bLength
+	beq 0,usb_no_respond_data
+usb0_respond0:
+	fetch 1,mem_usb_setup_bLength
+	isub regb,null
+	branch usb0_respond1,positive
+	copy pdata,regb	
+usb0_respond1:
+	copy rega,pdata
+	store 2,mem_bufptr
+	copy regb,pdata
+	store 1,mem_remain
+	branch usb0_tx
+
+usb_no_respond_data:
+	arg 0,queue
+	branch usb_trig
+
+
+//mem_bufptr=*buff,mem_remain=size,loopcnt=i,rega=len
+usb0_tx:
+	set1 mark_ext_patch,mark
+	bpatch patch3b_3,mem_patch3b
+	fetch 1,mem_remain
+	rtn blank
+	copy pdata,loopcnt
+	sub pdata,EP0_PACKET_SIZE,null
+	branch usb0_tx_info,positive
+	arg EP0_PACKET_SIZE,loopcnt	
+usb0_tx_info:
+	fetch 1,mem_remain
+	isub loopcnt,pdata
+	store 1,mem_remain//mem_remain -= len
+	fetch 2,mem_bufptr
+	copy pdata,contr	
+usb0_tx0:
+	ifetch 1,contr
+	hstore 1,core_usb_dfifo0
+	bmark0 mark_isstr,usb0_tx1
+	hjam 0,core_usb_dfifo0
+usb0_tx1:
+	loop usb0_tx0
+	copy contr,pdata
+	store 2,mem_bufptr//mem_bufptr += len
+	arg 0,queue
+	call usb_trig
+	fetch 1,mem_remain
+	nrtn blank
+	fetch 1,mem_usb_state
+	rtnne USB_GOT_REPORT_REQ
+	jam USB_CONNECTED,mem_usb_state
+	rtn
+
+
+usb0_request_set_configuration:
+	fetch 1,mem_usb_setup_bValue
+	sub pdata,1,null
+	nbranch usb0_force_stall,positive
+usb0_request_set_address:
+	fetch 1,mem_usb_setup_bmRequestType
+	bne IN_DEVICE,usb0_force_stall
+	fetch 2,mem_usb_setup_wIndex
+	bne 0,usb0_force_stall
+	fetch 1,mem_usb_setup_bLength
+	bne 0,usb0_force_stall
+	branch usb0_reply_zerolen
+
+usb0_request_set_interface:
+	fetch 1,mem_usb_setup_bmRequestType
+	bne IN_INTERFACE,usb0_force_stall
+	fetch 1,mem_usb_setup_bValue
+	bne 0,usb0_force_stall
+	fetch 1,mem_usb_setup_bValueH
+	bne 0,usb0_force_stall
+	fetch 1,mem_usb_setup_bLength
+	bne 0,usb0_force_stall
+	branch usb0_reply_zerolen
+
+usb0_request_set_feature:
+	fetch 1,mem_usb_setup_bValue
+	bne 1,usb0_force_stall
+	jam USB_SLEEP,mem_usb_state
+	branch usb0_reply_zerolen
+
+usb0_request_clear_feature:
+	fetch 1,mem_usb_setup_bValue
+	bne 1,usb0_force_stall
+	branch usb0_reply_zerolen
+	
+usb_init:
+	set1 mark_ext_patch,mark
+	bpatch patch3b_4,mem_patch3b
+	hjam 0x00,core_usb_config
+	nop 10000
+	hjam 0xc0,core_usb_trig
+	hfetch 2,core_clkoff
+	set0 CLOCK_OFF_USB,pdata
+	hstore 2,core_clkoff
+	hjam 0x3c,core_usb_config
+	hjam 0xff,core_usb_status
+	hjam 0xff,core_usb_fifo_empty
+	jam 0,mem_mcmd
+	jam 0,mem_usb_state
+	setarg 0
+	store 2,mem_usb_idle_cnt
+	rtn
+
+
+usb_tx:
+	set1 mark_ext_patch,mark
+	bpatch patch3b_5,mem_patch3b
+	fetch 1,mem_mcmd
+	rtn blank
+	fetch 1,mem_usb_state
+	beq USB_SLEEP,usb_wakeup
+	rtnne USB_CONNECTED
+	fetch 1,mem_mcmd
+	jam 0,mem_mcmd
+	arg 6,loopcnt	
+	arg mem_mouse_data,contr
+	beq SEND_KB_DATA_CMD,usb_tx_ep1
+	beq SEND_MOUSE_DATA_CMD,usb_tx_ep2
+	branch assert
+	
+usb_tx_ep1:
+	arg core_usb_dfifo1,rega
+	arg 1,queue
+usb_tx_loop:
+	ifetch 1,contr
+	istore 1,rega
+	loop usb_tx_loop
+usb_trig:
+	set1 mark_ext_patch,mark
+	bpatch patch3b_6,mem_patch3b
+	disable swfine
+	fetch 2,mem_usb_trig_timeout
+	iforce stop_watch
+	hjam 0x40,core_usb_status
+usb_trig_waitnak_loop:
+	hfetch 1,core_usb_status
+	branch usb_init,timeout
+	bbit0 USB_STATUS_NAK,usb_trig_waitnak_loop
+	fetch 2,mem_usb_trig_timeout
+	iforce stop_watch
+	arg 0,temp
+	qset1 temp
+	hstoret 1,core_usb_fifo_empty
+usb_trig_loop:
+	branch usb_init,timeout
+	hstoret 1,core_usb_trig
+	hfetch 1,core_usb_fifo_empty
+	qisolate0 pdata
+	branch usb_trig_loop,true
+	rtn
+
+
+usb_tx_ep2:
+	arg 2,queue
+	arg core_usb_dfifo2,rega
+	branch usb_tx_loop
+
+
+usb_wakeup:
+	set1 mark_ext_patch,mark
+	bpatch patch3b_7,mem_patch3b
+	hjam 0xfc,core_usb_config
+	nop 10000
+	hjam 0x3c,core_usb_config
+	jam USB_RESUME,mem_usb_state
+	rtn
+
+usb_tx_test:
+	fetch 1,mem_mcmd
+	nrtn blank
+	fetch 2,mem_usb_cnt
+	rtn blank
+	increase -1,pdata
+	store 2,mem_usb_cnt
+	jam SEND_MOUSE_DATA_CMD,mem_mcmd
+	rtn	
+	
+else
+
+usb_init:
+usb_isr:
+usb_tx:
+	rtn
+endif
Index: btkb/program/utility.prog
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/btkb/program/utility.prog	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/btkb/program/utility.prog	(working copy)
@@ -0,0 +1,654 @@
+
+right_shift_n: //rshiftN pdata,pdata
+	sub loopcnt,0,null
+	rtn zero
+right_shift_n_loop: 
+	rshift pdata,pdata
+	loop right_shift_n_loop
+	rtn
+	
+push_stack:
+	deposit contw
+	store 2, mem_contw
+	storet 8,mem_temp
+	deposit timeup
+	store 4,mem_timeup
+	deposit rega
+	store 4, mem_rega
+	deposit regb
+	store 4, mem_regb
+	deposit regc
+	store 3, mem_regc
+	deposit contr
+	store 2, mem_contr
+	rtn
+pop_stack:
+	fetcht 8,mem_temp
+	fetch 4,mem_timeup
+	iforce timeup
+	fetch 4, mem_rega
+	iforce rega
+	fetch 4, mem_regb
+	iforce regb
+	fetch 3,mem_regc
+	iforce regc
+	fetch 2, mem_contw
+	iforce contw
+	fetch 2, mem_contr
+	iforce contr
+	rtn
+	
+	
+	
+
+//
+save_cont_pointers:
+	copy contw,pdata
+	store 2,mem_hold_contw
+	copy contr,pdata
+	store 2,mem_hold_contr
+	rtn
+load_cont_pointers:
+	fetch 2,mem_hold_contw
+	copy pdata,contw
+	fetch 2,mem_hold_contr
+	copy pdata,contr
+	rtn
+
+
+
+delay_10ms:
+	copy clkn_bt,pdata
+	increase 16,pdata
+	increase 16,pdata
+delay_ms_wait:
+	copy clkn_bt,temp
+	isub temp,null
+	branch delay_ms_wait,positive
+	rtn
+
+memcpy48:
+	ifetch 8,contr
+	istore 8,contw
+	ifetch 8,contr
+	istore 8,contw
+memcpy32:
+	ifetch 8,contr
+	istore 8,contw
+memcpy24:
+	ifetch 8,contr
+	istore 8,contw
+memcpy16:
+	ifetch 8,contr
+	istore 8,contw
+	ifetch 8,contr
+	istore 8,contw
+	rtn
+
+bn_zero:
+	force 3,loopcnt
+memset0:
+	force 0,pdata
+memset8:
+	istore   8,contw
+	loop   memset8
+	rtn
+
+
+clear_mem:
+	deposit loopcnt
+	rtn blank
+	setarg 0
+clear_mem_loop:
+	istore 1,contw
+	loop clear_mem_loop
+	rtn
+	
+	
+
+memcpy:
+	deposit loopcnt
+	rtn blank
+memcpy_loop:
+	ifetch 1,contr
+	istore 1,contw
+	loop memcpy_loop
+	rtn
+
+timer_stop:
+	setarg 0
+timer_init:
+	arg mem_timers,contw
+	iforce temp
+	lshift queue,pdata
+	iadd contw,contw
+	istoret 2,contw
+	rtn
+
+timer_reinit:
+	arg 0,queue
+timer_check:
+	set1 mark_ext_patch,mark
+	bpatch patch37_4,mem_patch37
+	fetcht 4,mem_last_clkn
+	rshift clkn_bt,pdata
+	store 4,mem_last_clkn
+	isub temp,timeup
+	copy timeup,temp
+	arg mem_timers,contr
+	copy contr,contw
+	arg 16,loopcnt
+timer_loop:
+	ifetch 2,contr
+	isub temp,pdata
+	branch timer_counting,positive
+	force 0,pdata
+timer_counting:
+	istore 2,contw
+	loop timer_loop	
+	arg mem_timers,contr
+	lshift queue,pdata
+	iadd contr,contr
+	ifetch 2,contr
+	rtn
+
+	/* lshift pdata 8*queue */
+lshift8_queue:
+	increase 1,queue
+lshift8_queue_loop:
+	increase -1,queue
+	rtn zero
+	lshift8 pdata,pdata
+	branch lshift8_queue_loop
+
+
+	/* pdata 28+16 bit add temp 26+16 bit, result in temp */
+clk_add:
+	iadd temp,temp
+	copy temp, loopcnt
+	setarg 3750
+	isub loopcnt,pdata
+	rtn positive
+	sub pdata,0,pdata
+	rshift16 temp,temp
+	increase 1,temp
+	lshift16 temp,temp
+	ior temp,temp
+	rtn
+
+clk_diff_rt:
+	call clk_diff
+	branch clk2rt
+
+/* pdata -temp -> pdata, all are 28+16 bits, set user if negative */
+clk_diff:
+	disable user
+	isub temp,pdata
+	branch clk_diff_pos,positive
+	enable user
+	sub pdata,0,pdata
+clk_diff_pos:
+	rtnbit0 15
+	arg -61786,temp
+	iadd temp,pdata
+	set0 64,pdata
+	rtn
+
+clk2rt:
+	iforce contr
+	rshift16 pdata,pdata
+	arg 3750,temp
+	imul32 temp,pdata
+	iadd contr,pdata
+	rtn
+
+	/* pdata = clks in, temp = lpo out */
+clk2lpo:
+	lshift8 pdata,pdata
+	lshift4 pdata,pdata
+	fetcht 3,mem_clks_per_lpo
+	idiv temp
+	call wait_div_end
+	quotient temp
+	rtn
+
+	/* rt clk -> bt+rt clk */
+clk2bt:
+	arg 3750,temp
+	idiv temp
+	call wait_div_end
+	quotient pdata
+	lshift16 pdata,pdata
+	remainder temp
+	ior temp,temp
+	rtn
+
+
+mem3_hex2string_to_uart:
+	arg 3,loopcnt
+	branch hex2string_to_uart0
+mem2_hex2string_to_uart:
+	arg 2,loopcnt
+	branch hex2string_to_uart0
+//input:src:rega des:contwu
+//len of src:loopcnt
+//ex:0x123456 to str //using:temp rega regb
+adss_hex2string_to_uart:
+	arg 6,loopcnt
+hex2string_to_uart0:
+	ifetch 1,rega
+	copy pdata,temp
+	rshift4 pdata,pdata
+	call dialog2uchar
+	istore 1,contwu
+	copy temp,pdata
+	and pdata,0xf,pdata
+	call dialog2uchar
+	istore 1,contwu
+	increase 1,rega
+	loop hex2string_to_uart0
+	rtn
+dialog2uchar:
+	sub pdata,9,null
+	branch dialog2uchar0to9,positive
+	increase 87,pdata
+	rtn
+dialog2uchar0to9:
+	add pdata,0x30,pdata
+	rtn
+
+
+//input:contru 
+//output:temp
+//used register: temp regc
+string2dec_from_uart:
+	arg 0,temp
+string2dec_from_uart_done:
+         copy temp,regc
+	ifetch 1,contru
+	sub pdata,AT_COMMA,null 
+	rtn zero
+	call uchar2dialog	
+	copy regc,temp
+	call swap
+	arg 10,regb
+	imul32 regb,pdata
+	iadd temp,pdata
+	copy pdata,temp
+	branch string2dec_from_uart_done
+
+
+mem2_string2hex_from_uart:
+	arg 2,loopcnt
+	branch string2hex_from_uart
+adss_string2hex_from_uart:
+	arg 6,loopcnt
+//input:contru contw
+//len of src:loopcnt
+//ex:123456 to 0x12 0x34 0x56
+string2hex_from_uart:
+	ifetch 1,contru
+	call uchar2dialog
+	lshift4 pdata,regc
+	ifetch 1,contru
+	call uchar2dialog
+	iadd regc,pdata
+	istore 1,contw
+	loop string2hex_from_uart
+	rtn
+
+uchar2dialog:
+	arg 0x3a,temp
+	isub temp,null
+	nbranch uchar2dialog_number,positive
+	arg 0x61,temp
+	isub temp,null
+	branch uchar2dialog_a2f,positive
+	arg 0x37,temp
+	isub temp,pdata
+	rtn
+uchar2dialog_number:
+	arg 0x30,temp
+	isub temp,pdata
+	rtn
+uchar2dialog_a2f:
+	arg 0x57,temp
+	isub temp,pdata
+	rtn
+
+pn9:
+	copy temp,alarm
+	setarg 0x1ff
+	force 0,regb
+pn9_loop:	
+	rshift3 pdata,rega
+	rshift rega,rega
+	ixor rega,rega
+	isolate1 0,rega
+	setflag true,9,pdata
+	rshift temp,temp
+	isolate1 0,pdata
+	setflag true,7,temp
+	rshift pdata,pdata
+	increase 1,regb
+	compare 0,regb,0x7
+	nbranch pn9_loop,true
+	istoret 1,contw
+	loop pn9_loop
+	copy alarm,temp
+	rtn
+
+bcd_byte:
+	div pdata,10
+	call wait_div_end
+	quotient pdata
+	lshift2 pdata,rega
+	lshift2 rega,rega
+	remainder pdata
+	ior rega,pdata
+	rtn
+
+bcd_pack:
+	isolate1 0,rega
+	branch bcd_pack_hi,true
+	iforce regb
+	rtn
+bcd_pack_hi:
+	lshift2 pdata,pdata
+	lshift2 pdata,pdata
+	ior regb,pdata
+	istore 1,contw
+	increase -2,contw
+	rtn
+
+wait_div_end:	
+	rtn modone
+	branch wait_div_end
+
+
+bcd2:
+	store 8,mem_pdatatemp
+	force 0x20,pdata
+	force 8,loopcnt
+	arg mem_bcd,contw
+lpo_clear:	
+	istore 1,contw
+	loop lpo_clear
+	arg mem_bcd,contw
+	increase 7,contw
+	fetch 8,mem_pdatatemp
+bcd_loop:
+	div pdata,10
+	call wait_div_end
+	remainder pdata
+	or_into 0x30,pdata
+	istore 1,contw
+	increase -2,contw
+	quotient pdata
+	rtn blank
+	branch bcd_loop
+
+
+
+/* store as packed bcd digits */
+bcd:
+	store 8,mem_pdatatemp
+	force 0,pdata
+	store 8,mem_bcd
+	arg mem_bcd,contw
+	increase 7,contw
+	fetch 8,mem_pdatatemp
+	force 0,rega
+bcd_pack_loop:
+	div pdata,10
+	call wait_div_end
+	remainder pdata
+	call 	bcd_pack
+	increase 1,rega
+	quotient pdata
+	sub pdata,9,null
+	nbranch bcd_pack_loop,positive
+	call bcd_pack
+	isolate1 0,rega
+	rtn true
+	istore 1,contw
+	rtn
+	
+//input:
+//	count:loopcnt str1:rega str2:regb
+//output:
+//	same:set falg true ,diff set falg false
+// using:
+//	reg:temp null flag:zero
+string_compare:
+	ifetch 1,rega
+	ifetcht 1,regb
+	isub temp,null
+	nrtn zero
+	increase 1,rega
+	increase 1,regb
+	loop string_compare
+	force 0,null
+	rtn
+
+	/* pdata = temp if pdata > temp */
+ceiling:
+	isub temp,null
+	nrtn positive
+	deposit temp
+	rtn
+	
+swap:
+	iadd temp,pdata
+	isub temp,temp
+	isub temp,pdata
+	rtn
+
+clean_mem:
+	arg 0x200,loopcnt
+	arg 0x4000,contw
+	branch memset0				// clear xram at boot
+
+slave_savelist:
+	fetch 5,mem_sync_clke
+	store 5,mem_pdatatemp
+	fetch 2,mem_clks_per_lpo
+	istore 2,contw
+	setarg 0
+	setflag match,7,pdata
+	setflag wake,6,pdata
+	setflag sync,5,pdata
+	setflag attempt,4,pdata
+	istore 1,contw
+	branch savelist_2
+
+
+le_savelist:
+	fetch 5,mem_sync_clke
+	store 5,mem_pdatatemp
+	fetch 1,mem_le_ch_mapped
+	istore 1,contw
+	fetch 2,mem_le_event_count
+	arg 0x0fff,contr
+	iand contr,pdata
+	setflag match,15,pdata
+	setflag wake,14,pdata
+	setflag sync,13,pdata
+	setflag attempt,12,pdata
+	istore 2,contw
+	branch savelist_2
+savelist:		
+	store 8,mem_pdatatemp
+savelist_2:
+	fetch 1,mem_seqi
+	rtneq 0x7f
+	and_into 0x7f,pdata
+	lshift3 pdata,pdata
+	arg mem_savelist,contw
+	iadd contw,contw
+	fetch 8,mem_pdatatemp
+	istore 8,contw
+	fetch 1,mem_seqi
+	isolate1 7,pdata
+	increase 1,pdata
+	and_into 0x7f,pdata
+	setflag true,7,pdata
+	store 1,mem_seqi
+	fetch 8,mem_pdatatemp
+	rtn	
+
+dirty_mem:
+	arg 0x800,loopcnt
+	arg 0,contw
+	setarg 0x01010101
+	branch memset8
+
+	//cb function ptr in pdata
+callback_func:
+	rtn blank
+	copy pdata,pc	//rtn through cb functon.
+	//branch assert
+
+wait_uarttx:
+	hfetch 2,core_uart_txitems
+	nbranch wait_uarttx,blank
+	rtn
+
+get_uart_rrptr:
+	hfetch 2,core_uart_rrptr
+	copy pdata,contru
+	rtn 
+
+get_uart_twptr:
+	hfetch 2,core_uart_twptr
+	copy pdata,contwu
+	rtn
+//input:contr loopcnt
+send_mem_to_uart:
+	copy contr,rega
+	call get_uart_twptr
+	copy rega,contr
+send_mem_to_uart0:
+	call uart_copy_tx_bytes
+	call  uartd_send
+	branch wait_uarttx
+
+ice_break:
+	hjam 0x1,core_ice_ctrl
+	rtn
+
+ice_setbp:
+	hstore 2,core_ice_break0
+	hfetch 1,core_ice_ctrl
+	set1 4,pdata
+	hstore 1,core_ice_ctrl
+	rtn
+ice_setbp2:
+	hstore 2,core_ice_break1
+	hfetch 1,core_ice_ctrl
+	set1 6,pdata
+	hstore 1,core_ice_ctrl
+	rtn
+	
+ice_set_write_bp:
+	hstore 2,core_ice_break0
+	hjam 0x30,core_ice_ctrl
+	rtn
+	
+test_no_white:
+	hfetch 1,core_config
+	set1 whiteoff_bit,pdata
+	hstore 1,core_config			/* whitening off */
+	rtn
+
+test_enable_white:
+	hfetch 1,core_config
+	set0 whiteoff_bit,pdata
+	hstore 1,core_config			/* whitening on */
+	rtn
+
+check_uart_tx_buff:
+	hfetch 2,core_uart_txitems
+	arg UART_AIR_CONTROL_THRESHOLD,temp
+pdata_sub_temp:
+	isub temp,null
+	rtn
+
+	//fuction fifo_in
+	//rega pointer to fifo memory , *(rega+len) is the end of fifo
+	//mem_fifo_temp data into fifo
+	//assert if fifo was full
+fifo_in:
+	set1 mark_ext_patch,mark
+	bpatch patch37_5,mem_patch37
+	ifetcht UTIL_FIFO_LEN,rega
+	and temp,0xff,pdata
+	nbranch fifo_in_push,blank
+	rshift8 temp,pdata
+	istore UTIL_FIFO_LEN,rega
+fifo_in_push:
+	increase UTIL_FIFO_LEN+UTIL_FIFO_OFFSET,rega
+	ifetch 1,rega
+	nbranch assert,blank //fifo full
+	fetch 1,mem_fifo_temp
+	istore 1,rega
+	rtn
+	
+	//fuction fifo_out
+	//rega pointer to fifo memory
+	//pdata  data from fifo, blank mains fifo empty
+fifo_out:
+	set1 mark_ext_patch,mark
+	bpatch patch37_6,mem_patch37
+	arg UTIL_FIFO_LEN,loopcnt
+	ifetch UTIL_FIFO_LEN,rega
+	rtn blank
+fifo_out_loop:
+	ifetch 1,rega
+	nbranch fifo_out_end,blank
+	increase 1,rega
+	loop fifo_out_loop
+	branch assert
+fifo_out_end:
+	arg 0,temp
+	istoret 1,rega
+	rtn
+
+	//fuction fifo_is_empty
+	//rega pointer to fifo memory
+	//blank--- fifo is empty
+fifo_is_empty:
+	ifetch UTIL_FIFO_LEN,rega
+	rtn
+
+	//fuction fifo_is_full
+	//rega pointer to fifo memory
+	//blank--- fifo is NOT full
+fifo_is_full:
+	ifetch 1,rega
+	rtn
+	//rega pointer to fifo memory
+	//blank--- fifo is NOT near full
+fifo_is_near_full:
+	ifetch 2,rega
+	rtn
+
+	//rega pointer to fifo memory
+	//count output via pdata
+fifo_content_count:
+	arg 0,temp
+fifo_content_count_loop:
+	fetch 1,contr
+	loop fifo_content_count_loop,blank
+	increase 1,temp
+	loop fifo_content_count_loop
+	copy temp,pdata
+	rtn
+	
+not_greater_than:
+	isub temp,null
+	nrtn positive
+	copy temp,pdata
+	rtn
+
+
Index: btkb/sched/kb.dat
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/btkb/sched/kb.dat	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/btkb/sched/kb.dat	(working copy)
@@ -0,0 +1,528 @@
+mem_patch00:
+69   #mem_patch00
+04   #mem_patch01
+00   #mem_patch02
+00   #mem_patch03
+80   #mem_patch04
+09   #mem_patch05
+0a   #mem_patch06
+00   #mem_patch07
+0c   #mem_patch08
+00   #mem_patch09
+11   #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
+09   #mem_patch23
+18   #mem_patch24
+00   #mem_patch25
+04   #mem_patch26
+c8   #mem_patch27
+00   #mem_patch28
+5c   #mem_patch29
+40   #mem_patch2A
+00   #mem_patch2B
+3a   #mem_patch2C
+ce   #mem_patch2D
+00   #mem_patch2E
+00   #mem_patch2F
+80   #mem_patch30
+e0   #mem_patch31
+00   #mem_patch32
+90   #mem_patch33
+00   #mem_patch34
+00   #mem_patch35
+00   #mem_patch36
+20   #mem_patch37
+00   #mem_patch38
+a0   #mem_patch39
+01   #mem_patch3A
+00   #mem_patch3B
+4c   #mem_patch3C
+00   #mem_patch3D
+00   #mem_patch3E
+00   #mem_patch3F
+
+
+mem_customize_timer_setup:   50 00		# 20:10ms  30:15ms
+
+mem_lpm_mode:01
+mem_lpm_mult:40
+mem_lpm_mult_timeout:03
+mem_lpm_overhead:0a
+mem_lpm_interval:10 00
+mem_scan_mode:00
+
+mem_class: 40 25 00
+
+mem_lap:36 28 52 08 66 2a    
+mem_local_name_length:
+'BT3.0 Keyboard
+mem_sniff_param_interval:0e 00
+mem_sniff_param_attempt:01
+mem_sniff_param_timeout:01
+mem_unsniff2sniff_timer:0a
+mem_ssp_enable:01
+mem_ui_profile_supported:01
+
+mem_eir_enable:01
+
+mem_all_uuid_16bits:
+06
+03#Type: Complete list of 16-bit UUIDs
+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
+3601a2
+
+#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 3591 358f 0822 258b
+
+# 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)
+26ff00 # 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
+
+#25
+0501 # Usage Page(Generic Desktop)
+0906 # Usage(Keyboard)
+a101 # Collection(Application)
+8508 # Report ID(8)    
+9570 # Report Count(112)
+7501 # Report Size(1)
+1500 # Logical Minimum(0)
+2501 # Logical Maximum(1)
+0507 # Usage Page(Keyboard/Keypad)
+1900 # Usage Minimum(01)
+29ff # Usage Maximum(255)
+8102 # Input(Data Variable Absolute) ; Modifier byte
+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
+
+#23
+05 01	#Usage Page (Generic Desktop),
+09 80	#USAGE (3-D Digitizer)
+a1 01	#Collection (Application),
+85 03	#Report ID (3)
+19 81	#Usage Minimum (), 
+29 88	#Usage Maximum (),
+15 00	#Logical Minimum (0),
+25 01	#Logical Maximum (1),
+95 08	#Report Count (8),
+75 01	#Report Size (1),
+81 06	#Input (Data,Var,Rel)
+c0		#END_COLLECTION
+
+090207 3508 3506 090409 090100
+09020b 090100
+09020c 091f40
+09020d 2800
+09020e 2801
+09020f 090012
+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
+0904e8
+090202#ProductID
+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
+9d
+59
+82
+
+#bluetootch param init
+mem_sp_flag:00
+mem_lpm_current_mult:00
+mem_master_sp_flag:00
+mem_le_ch_mapped:27
+
+mem_ui_button_gpio:ff
+mem_led_gpio:ff
+
+mem_seqi:80
+
+
+mem_ipc_tx_evt_buff:02 01
+
+
+#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 
+'BT5.0 KB
+
+#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
+
+#Primary Service: Device Information
+0c 00 00 28 02 0a 18
+#Manufacturer Name
+0d 00 03 28 01 02
+0e 00 29 2a 06 59 69 43 68 69 70			#IOS 13.5.1
+#Characteristic: pnp id
+0f 00 03 28 01 02
+10 00 50 2a 07 02 e8 04 21 70 01 00		# SAMSUNG soft keyboard,setup shortcuts
+
+#Primary service: HID
+11 00 00 28 02 12 18
+#Characteristic:Protocol mode
+12 00 03 28 01 06
+13 00 4e 2a 01 01
+#Characteristic: hid report
+14 00 03 28 01 12   
+15 00 4d 2a 08 00 00 00 00 00 00 00 00	#hid report	led handle write
+16 00 02 29 02 00 00	
+17 00 08 29 02 01 01	#Report ID: 1	Report Type: Input
+
+#Characteristic:hid report
+18 00 03 28 01 12  
+19 00 4d 2a 02 00 00
+1a 00 02 29 02 00 00
+1b 00 08 29 02 03 01	#Report ID: 3	Report Type: Input
+
+#Characteristic:hid report
+1c 00 03 28 01 12   
+1d 00 4d 2a 02 00 00 	#hid report	led handle write
+1e 00 02 29 02 00 00	
+1f 00 08 29 02 02 01	#Report ID: 2	Report Type: Input
+
+#Characteristic:hid report
+20 00 03 28 01 0e   
+21 00 4d 2a 02 00	00	#hid report	led handle write
+22 00 02 29 02 00 00	
+23 00 08 29 02 01 02	#Report ID: 1	Report Type: Output
+
+#Characteristic:hid report
+24 00 03 28 01 12  
+25 00 4d 2a 0d 00 00 00 00 00 00 00 00 00 00 00 00 00
+26 00 02 29 02 00 00
+27 00 08 29 02 08 01	#Report ID: 8	Report Type: Input   game keyboard
+
+
+#Characteristic:Report map
+28 00 03 28 01 0a
+29 00 4b 2a 8b
+
+#66
+05 01
+09 06
+a1 01
+85 01
+75 01 
+95 08
+05 07
+19 e0 
+29 e7 
+15 00
+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 
+26 ff 00
+05 07
+19 00
+29 ff 
+81 00
+c0 
+
+#25
+0501 # Usage Page(Generic Desktop)
+0906 # Usage(Keyboard)
+a101 # Collection(Application)
+8508 # Report ID(8)    
+9570 # Report Count(112)
+7501 # Report Size(1)
+1500 # Logical Minimum(0)
+2501 # Logical Maximum(1)
+0507 # Usage Page(Keyboard/Keypad)
+1900 # Usage Minimum(01)
+29ff # Usage Maximum(255)
+8102 # Input(Data Variable Absolute) ; Modifier byte
+c0 # End Collection
+
+#25
+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
+
+#23
+05 01	#Usage Page (Generic Desktop),
+09 80	#USAGE (3-D Digitizer)
+a1 01	#Collection (Application),
+85 03	#Report ID (3)
+19 81	#Usage Minimum (), 
+29 88	#Usage Maximum (),
+15 00	#Logical Minimum (0),
+25 01	#Logical Maximum (1),
+95 08	#Report Count (8),
+75 01	#Report Size (1),
+81 06	#Input (Data,Var,Rel)
+c0		#END_COLLECTION
+
+#Characteristic:Hid information
+2a 00 03 28 01 02
+2b 00 4a 2a 04 11 01 00 01        
+#Characteristic
+2c 00 03 28 01 04
+2d 00 4c 2a 01 00
+
+#Primary Service: BAS
+2e 00 00 28 02 0f 18 
+#Characteristic: Battery Level
+2f 00 03 28 01 12 
+30 00 19 2a 01 64 
+#Client Characteristic Configuration
+31 00 02 29 02 00 00 
+#End of Attribute list
+00 00
+
+
+mem_le_local_mtu:17
+mem_le_transmit_window:50
+mem_le_notify_handle:14
+mem_le_lap:11 46 34 54 77 dd
+
+
+mem_empty_count:00
+mem_att_report_standard_key:15 00
+mem_att_report_system_ctrl:19 00
+mem_att_report_media_key:1d 00
+mem_att_report_game:25 00
+mem_att_report_battery:30 00
+mem_le_rx_window:50
+
+mem_le_connection_updata_param:
+0c 00 #Length
+05 00 #CID
+12 b4 
+08 00 
+08 00 #min interval
+08 00 #max interval
+00 00 #latency
+2c 01 #timeout
+
+mem_le_name_len:
+'BT5.0 KB
+
+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
+mem_le_adv_swift_pair:
+#microsoft swift pair
+06 ff 06 00 03 00 80
+
+mem_le_scan_data_len:1f
+mem_le_scan_data:
+'\09BT5.0 KB
+
+mem_version_yy_mm_dd:20 22 03 022		#version data 202203022
+
+mem_adc_0v:9f 3e
+mem_adc_3v:cd 4d
+mem_adc_config_flag:02    #01 VINLPM      #02 HVIN      #04 GPIO
+
+#24g init
+mem_24g_data_type:02        #mouse 1,kb 2
+mem_24g_no_ack:00#with ack
+mem_24g_rx_window:c0 12     #400us 
+mem_24g_ch_map1:00 13 2c 42
+mem_24g_ch_map2:06 15 36 48
+mem_24g_ch_map3:0f 1a 3a 4c
+mem_24g_ch_map4:11 23 31 4d
+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 #10 min
+mem_24g_enter_hibernate_max:ff ff ff ff
+mem_24g_short_sleep_counter:e8 fd 00 #00 00 0a
+
Index: btkb/sched/kb.dat.bak
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/btkb/sched/kb.dat.bak	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/btkb/sched/kb.dat.bak	(working copy)
@@ -0,0 +1,528 @@
+mem_patch00:
+69   #mem_patch00
+04   #mem_patch01
+00   #mem_patch02
+00   #mem_patch03
+80   #mem_patch04
+09   #mem_patch05
+0a   #mem_patch06
+00   #mem_patch07
+0c   #mem_patch08
+00   #mem_patch09
+11   #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
+09   #mem_patch23
+18   #mem_patch24
+00   #mem_patch25
+04   #mem_patch26
+c8   #mem_patch27
+00   #mem_patch28
+5c   #mem_patch29
+40   #mem_patch2A
+00   #mem_patch2B
+3a   #mem_patch2C
+ce   #mem_patch2D
+00   #mem_patch2E
+00   #mem_patch2F
+80   #mem_patch30
+e0   #mem_patch31
+00   #mem_patch32
+90   #mem_patch33
+00   #mem_patch34
+00   #mem_patch35
+00   #mem_patch36
+20   #mem_patch37
+00   #mem_patch38
+a0   #mem_patch39
+01   #mem_patch3A
+00   #mem_patch3B
+4c   #mem_patch3C
+00   #mem_patch3D
+00   #mem_patch3E
+00   #mem_patch3F
+
+
+mem_customize_timer_setup:   50 00		# 20:10ms  30:15ms
+
+mem_lpm_mode:01
+mem_lpm_mult:40
+mem_lpm_mult_timeout:03
+mem_lpm_overhead:0a
+mem_lpm_interval:10 00
+mem_scan_mode:00
+
+mem_class: 40 25 00
+
+mem_lap:36 28 52 08 66 2a    
+mem_local_name_length:
+'BT3.0 Keyboard
+mem_sniff_param_interval:0e 00
+mem_sniff_param_attempt:01
+mem_sniff_param_timeout:01
+mem_unsniff2sniff_timer:0a
+mem_ssp_enable:01
+mem_ui_profile_supported:01
+
+mem_eir_enable:01
+
+mem_all_uuid_16bits:
+06
+03#Type: Complete list of 16-bit UUIDs
+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
+3601a2
+
+#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 3591 358f 0822 258b
+
+# 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)
+26ff00 # 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
+
+#25
+0501 # Usage Page(Generic Desktop)
+0906 # Usage(Keyboard)
+a101 # Collection(Application)
+8508 # Report ID(8)    
+9570 # Report Count(112)
+7501 # Report Size(1)
+1500 # Logical Minimum(0)
+2501 # Logical Maximum(1)
+0507 # Usage Page(Keyboard/Keypad)
+1900 # Usage Minimum(01)
+29ff # Usage Maximum(255)
+8102 # Input(Data Variable Absolute) ; Modifier byte
+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
+
+#23
+05 01	#Usage Page (Generic Desktop),
+09 80	#USAGE (3-D Digitizer)
+a1 01	#Collection (Application),
+85 03	#Report ID (3)
+19 81	#Usage Minimum (), 
+29 88	#Usage Maximum (),
+15 00	#Logical Minimum (0),
+25 01	#Logical Maximum (1),
+95 08	#Report Count (8),
+75 01	#Report Size (1),
+81 06	#Input (Data,Var,Rel)
+c0		#END_COLLECTION
+
+090207 3508 3506 090409 090100
+09020b 090100
+09020c 091f40
+09020d 2800
+09020e 2801
+09020f 090012
+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
+0904e8
+090202#ProductID
+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
+9d
+59
+82
+
+#bluetootch param init
+mem_sp_flag:00
+mem_lpm_current_mult:00
+mem_master_sp_flag:00
+mem_le_ch_mapped:27
+
+mem_ui_button_gpio:ff
+mem_led_gpio:ff
+
+mem_seqi:80
+
+
+mem_ipc_tx_evt_buff:02 01
+
+
+#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 
+'BT5.0 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
+
+#Primary Service: Device Information
+0c 00 00 28 02 0a 18
+#Manufacturer Name
+0d 00 03 28 01 02
+0e 00 29 2a 06 59 69 43 68 69 70			#IOS 13.5.1
+#Characteristic: pnp id
+0f 00 03 28 01 02
+10 00 50 2a 07 02 e8 04 21 70 01 00		# SAMSUNG soft keyboard,setup shortcuts
+
+#Primary service: HID
+11 00 00 28 02 12 18
+#Characteristic:Protocol mode
+12 00 03 28 01 06
+13 00 4e 2a 01 01
+#Characteristic: hid report
+14 00 03 28 01 12   
+15 00 4d 2a 08 00 00 00 00 00 00 00 00	#hid report	led handle write
+16 00 02 29 02 00 00	
+17 00 08 29 02 01 01	#Report ID: 1	Report Type: Input
+
+#Characteristic:hid report
+18 00 03 28 01 12  
+19 00 4d 2a 02 00 00
+1a 00 02 29 02 00 00
+1b 00 08 29 02 03 01	#Report ID: 3	Report Type: Input
+
+#Characteristic:hid report
+1c 00 03 28 01 12   
+1d 00 4d 2a 02 00 00 	#hid report	led handle write
+1e 00 02 29 02 00 00	
+1f 00 08 29 02 02 01	#Report ID: 2	Report Type: Input
+
+#Characteristic:hid report
+20 00 03 28 01 0e   
+21 00 4d 2a 02 00	00	#hid report	led handle write
+22 00 02 29 02 00 00	
+23 00 08 29 02 01 02	#Report ID: 1	Report Type: Output
+
+#Characteristic:hid report
+24 00 03 28 01 12  
+25 00 4d 2a 0d 00 00 00 00 00 00 00 00 00 00 00 00 00
+26 00 02 29 02 00 00
+27 00 08 29 02 08 01	#Report ID: 8	Report Type: Input   game keyboard
+
+
+#Characteristic:Report map
+28 00 03 28 01 0a
+29 00 4b 2a 8b
+
+#66
+05 01
+09 06
+a1 01
+85 01
+75 01 
+95 08
+05 07
+19 e0 
+29 e7 
+15 00
+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 
+26 ff 00
+05 07
+19 00
+29 ff 
+81 00
+c0 
+
+#25
+0501 # Usage Page(Generic Desktop)
+0906 # Usage(Keyboard)
+a101 # Collection(Application)
+8508 # Report ID(8)    
+9570 # Report Count(112)
+7501 # Report Size(1)
+1500 # Logical Minimum(0)
+2501 # Logical Maximum(1)
+0507 # Usage Page(Keyboard/Keypad)
+1900 # Usage Minimum(01)
+29ff # Usage Maximum(255)
+8102 # Input(Data Variable Absolute) ; Modifier byte
+c0 # End Collection
+
+#25
+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
+
+#23
+05 01	#Usage Page (Generic Desktop),
+09 80	#USAGE (3-D Digitizer)
+a1 01	#Collection (Application),
+85 03	#Report ID (3)
+19 81	#Usage Minimum (), 
+29 88	#Usage Maximum (),
+15 00	#Logical Minimum (0),
+25 01	#Logical Maximum (1),
+95 08	#Report Count (8),
+75 01	#Report Size (1),
+81 06	#Input (Data,Var,Rel)
+c0		#END_COLLECTION
+
+#Characteristic:Hid information
+2a 00 03 28 01 02
+2b 00 4a 2a 04 11 01 00 01        
+#Characteristic
+2c 00 03 28 01 04
+2d 00 4c 2a 01 00
+
+#Primary Service: BAS
+2e 00 00 28 02 0f 18 
+#Characteristic: Battery Level
+2f 00 03 28 01 12 
+30 00 19 2a 01 64 
+#Client Characteristic Configuration
+31 00 02 29 02 00 00 
+#End of Attribute list
+00 00
+
+
+mem_le_local_mtu:17
+mem_le_transmit_window:50
+mem_le_notify_handle:14
+mem_le_lap:11 46 34 54 77 dd
+
+
+mem_empty_count:00
+mem_att_report_standard_key:15 00
+mem_att_report_system_ctrl:19 00
+mem_att_report_media_key:1d 00
+mem_att_report_game:25 00
+mem_att_report_battery:30 00
+mem_le_rx_window:50
+
+mem_le_connection_updata_param:
+0c 00 #Length
+05 00 #CID
+12 b4 
+08 00 
+08 00 #min interval
+08 00 #max interval
+00 00 #latency
+2c 01 #timeout
+
+mem_le_name_len:
+'BT5.0 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
+mem_le_adv_swift_pair:
+#microsoft swift pair
+06 ff 06 00 03 00 80
+
+mem_le_scan_data_len:1f
+mem_le_scan_data:
+'\09BT5.0 Keyboard
+
+mem_version_yy_mm_dd:20 22 03 022		#version data 202203022
+
+mem_adc_0v:9f 3e
+mem_adc_3v:cd 4d
+mem_adc_config_flag:02    #01 VINLPM      #02 HVIN      #04 GPIO
+
+#24g init
+mem_24g_data_type:02        #mouse 1,kb 2
+mem_24g_no_ack:00#with ack
+mem_24g_rx_window:c0 12     #400us 
+mem_24g_ch_map1:00 13 2c 42
+mem_24g_ch_map2:06 15 36 48
+mem_24g_ch_map3:0f 1a 3a 4c
+mem_24g_ch_map4:11 23 31 4d
+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 #10 min
+mem_24g_enter_hibernate_max:ff ff ff ff
+mem_24g_short_sleep_counter:e8 fd 00 #00 00 0a
+
Index: btkb/sched/kb_keyboard.dat
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/btkb/sched/kb_keyboard.dat	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/btkb/sched/kb_keyboard.dat	(working copy)
@@ -0,0 +1,494 @@
+mem_patch00:
+69   #mem_patch00
+04   #mem_patch01
+00   #mem_patch02
+00   #mem_patch03
+80   #mem_patch04
+09   #mem_patch05
+00   #mem_patch06
+00   #mem_patch07
+0c   #mem_patch08
+00   #mem_patch09
+11   #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
+09   #mem_patch23
+18   #mem_patch24
+00   #mem_patch25
+04   #mem_patch26
+c8   #mem_patch27
+00   #mem_patch28
+5c   #mem_patch29
+40   #mem_patch2A
+00   #mem_patch2B
+3a   #mem_patch2C
+ce   #mem_patch2D
+00   #mem_patch2E
+00   #mem_patch2F
+80   #mem_patch30
+e0   #mem_patch31
+00   #mem_patch32
+90   #mem_patch33
+00   #mem_patch34
+00   #mem_patch35
+00   #mem_patch36
+20   #mem_patch37
+00   #mem_patch38
+a0   #mem_patch39
+01   #mem_patch3A
+00   #mem_patch3B
+4c   #mem_patch3C
+00   #mem_patch3D
+00   #mem_patch3E
+00   #mem_patch3F
+
+
+mem_customize_timer_setup:  20 00		# 20:10ms  30:15ms
+
+mem_lpm_mode:01
+mem_lpm_mult:40
+mem_lpm_mult_timeout:03
+mem_lpm_overhead:0a
+mem_lpm_interval:10 00
+mem_scan_mode:00
+mem_test:00 00
+
+mem_class: 40 25 00
+
+mem_lap:36 08 c2 08 66 22    
+mem_local_name_length:
+'BT3.0 Keyboard
+mem_sniff_param_interval:0e 00
+mem_sniff_param_attempt:01
+mem_sniff_param_timeout:01
+mem_unsniff2sniff_timer:0a
+mem_ssp_enable:00
+mem_ui_profile_supported:01
+
+mem_eir_enable:01
+
+mem_all_uuid_16bits:
+06
+03#Type: Complete list of 16-bit UUIDs
+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
+360189
+
+#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 3578 3576 0822 2572
+
+# 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)
+26ff00 # 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
+
+#23
+05 01	#Usage Page (Generic Desktop),
+09 80	#USAGE (3-D Digitizer)
+a1 01	#Collection (Application),
+85 03	#Report ID (3)
+19 81	#Usage Minimum (), 
+29 88	#Usage Maximum (),
+15 00	#Logical Minimum (0),
+25 01	#Logical Maximum (1),
+95 08	#Report Count (8),
+75 01	#Report Size (1),
+81 06	#Input (Data,Var,Rel)
+c0		#END_COLLECTION
+
+090207 3508 3506 090409 090100
+09020b 090100
+09020c 091f40
+09020d 2800
+09020e 2801
+09020f 090012
+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
+0904e8
+090202#ProductID
+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
+9d
+59
+82
+
+#bluetootch param init
+mem_sp_flag:00
+mem_lpm_current_mult:00
+mem_master_sp_flag:00
+mem_le_ch_mapped:27
+
+mem_ui_button_gpio:ff
+mem_led_gpio:ff
+
+mem_seqi:80
+
+
+mem_ipc_tx_evt_buff:02 01
+
+
+#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
+
+#Primary Service: Device Information
+0c 00 00 28 02 0a 18
+#Manufacturer Name
+0d 00 03 28 01 02
+0e 00 29 2a 06 59 69 43 68 69 70			#IOS 13.5.1
+#Characteristic: pnp id
+0f 00 03 28 01 02
+10 00 50 2a 07 02 e8 04 21 70 01 00		# SAMSUNG soft keyboard,setup shortcuts
+
+#Primary service: HID
+11 00 00 28 02 12 18
+#Characteristic:Protocol mode
+12 00 03 28 01 06
+13 00 4e 2a 01 01
+#Characteristic: hid report
+14 00 03 28 01 12   
+15 00 4d 2a 08 00 00 00 00 00 00 00 00	#hid report	led handle write
+16 00 02 29 02 00 00	
+17 00 08 29 02 01 01	#Report ID: 1	Report Type: Input
+
+#Characteristic:hid report
+18 00 03 28 01 12  
+19 00 4d 2a 02 00 00
+1a 00 02 29 02 00 00
+1b 00 08 29 02 03 01	#Report ID: 3	Report Type: Input
+
+#Characteristic:hid report
+1c 00 03 28 01 12   
+1d 00 4d 2a 02 00 00 	#hid report	led handle write
+1e 00 02 29 02 00 00	
+1f 00 08 29 02 02 01	#Report ID: 2	Report Type: Input
+
+#Characteristic:hid report
+20 00 03 28 01 0e   
+21 00 4d 2a 02 00	00	#hid report	led handle write
+22 00 02 29 02 00 00	
+23 00 08 29 02 01 02	#Report ID: 1	Report Type: output
+
+#Characteristic:Report map
+24 00 03 28 01 02
+25 00 4b 2a 72
+#66
+05 01
+09 06
+a1 01
+85 01
+75 01 
+95 08
+05 07
+19 e0 
+29 e7 
+15 00
+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 
+26 ff 00
+05 07
+19 00
+29 ff 
+81 00
+c0 
+
+#25
+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
+
+#23
+05 01	#Usage Page (Generic Desktop),
+09 80	#USAGE (3-D Digitizer)
+a1 01	#Collection (Application),
+85 03	#Report ID (3)
+19 81	#Usage Minimum (), 
+29 88	#Usage Maximum (),
+15 00	#Logical Minimum (0),
+25 01	#Logical Maximum (1),
+95 08	#Report Count (8),
+75 01	#Report Size (1),
+81 06	#Input (Data,Var,Rel)
+c0		#END_COLLECTION
+
+#Characteristic:Hid information
+26 00 03 28 01 02
+27 00 4a 2a 04 11 01 00 01        
+#Characteristic
+28 00 03 28 01 04
+29 00 4c 2a 01 00
+
+#Primary Service: BAS
+2a 00 00 28 02 0f 18 
+#Characteristic: Battery Level
+2b 00 03 28 01 12 
+2c 00 19 2a 01 64 
+#Client Characteristic Configuration
+2d 00 02 29 02 00 00 
+#End of Attribute list
+00 00
+
+
+mem_le_local_mtu:17
+mem_le_transmit_window:50
+mem_le_notify_handle:14
+mem_le_lap:11 46 34 54 77 dd
+
+
+mem_empty_count:00
+mem_att_report1:15 00
+mem_att_report2:1d 00
+mem_att_report3:19 00
+mem_att_report_battery:2c 00
+mem_le_rx_window:50
+
+mem_le_connection_updata_param:
+0c 00 #Length
+05 00 #CID
+12 b4 
+08 00 
+08 00 #min interval
+08 00 #max interval
+00 00 #latency
+2c 01 #timeout
+
+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
+mem_le_adv_swift_pair:
+#microsoft swift pair
+06 ff 06 00 03 00 80
+
+mem_le_scan_data_len:1f
+mem_le_scan_data:
+'\09BT4.2 Keyboard
+
+mem_version_yy_mm_dd:20 21 12 24		#version data 20211224
+
+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
+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_ch_map1:00 13 2c 42
+mem_24g_ch_map2:06 15 36 48
+mem_24g_ch_map3:0f 1a 3a 4c
+mem_24g_ch_map4:11 23 31 4d
+mem_24g_pairing_sm:ff
+mem_24g_paring_addr:20 15 10 05
+mem_pair_state:c2
+mem_24g_common_temp:00 00 00 00 00 00 00 00 00 00
+mem_24g_enter_hibernate:00 48 5d 00 #10 min
+mem_24g_enter_hibernate_max:ff ff ff ff
+mem_24g_short_sleep_counter:e8 fd 00 #00 00 0a
+
+
Index: btkb/sched/rf.dat
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/btkb/sched/rf.dat	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/btkb/sched/rf.dat	(working copy)
@@ -0,0 +1,107 @@
+mem_lpm_config:8f 10 ce
+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
+mem_fcomp_mul:02
+mem_fcomp_div:24
+mem_iscan_window:12 00
+mem_iscan_interval:00 02
+mem_pscan_window:12 00
+mem_pscan_interval:00 02
+mem_inq_window:20 00
+mem_page_window:20 00
+mem_page_to:00 20
+mem_rx_window_init:80 03
+mem_rx_window_sniff:00 06
+mem_new_supervision_to:00 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
+0a fb
+0b ff 
+
+#agc table
+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
+
+# tx power
+55 d0
+56 c0
+57 4c
+58 6c
+59 50
+
+#dpll
+68 e4
+69 00
+6a 00
+6b 30
+ff
+mem_rf_init_ptr:70 4f
+
+mem_5db_tx_power_param:
+55 d0
+56 c0
+57 4c
+58 6c
+59 50
+
+mem_24g_paring_tx_power_param:
+55 d0
+56 c0
+57 4c
+58 6c
+59 50
+
Index: btkb/util/memalloc.pl
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/btkb/util/memalloc.pl	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/btkb/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: btkb/util/mergepatch.pl
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/btkb/util/mergepatch.pl	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/btkb/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: btkb/util/transform_memmap2btreg.pl
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/btkb/util/transform_memmap2btreg.pl	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/btkb/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);
+
Index: c51/Makefile
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/c51/Makefile	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/c51/Makefile	(working copy)
@@ -0,0 +1,112 @@
+	comma:= ,
+empty:=
+space:= $(empty) $(empty)
+bracketl:= (
+bracketl0:= \(
+bracketr:= )
+bracketr0:= \)
+
+
+OUTDIR = output
+ROOT_PATH =D:\Keil
+
+UTIL_PATH = ..\rom\util
+
+C51BIN = $(ROOT_PATH)\c51\bin
+C51   = $(C51BIN)\c51
+A51   = $(C51BIN)\ax51
+BL51  = $(C51BIN)\lx51
+OH51  = $(C51BIN)\Ohx51
+OC51  = $(C51BIN)\oc51
+LIB51 = $(C51BIN)\libx51
+
+TARGET = $(OUTDIR)\fw
+TARGETHEX = $(TARGET).hex
+
+
+RAMTARGET = $(OUTDIR)\fwram
+
+RAMTARGETHEX = $(addsuffix .hex, $(RAMTARGET))
+
+############################## IMPORTANT ####################################
+#   opt level greater than 7 cannot be used, or the ram code and the rom code will be different
+##############################################################################
+OPT_LEVEL=7
+
+LIST_FILE_CTL=PR($(@:obj=lst))
+
+C_OPTS = object($@) OBJECTADVANCED  browse DF(ENABLE_APE) $(LIST_FILE_CTL) \
+OT($(OPT_LEVEL),SPEED) large
+
+#ASM_OPTS =  $(LIST_FILE_CTL) object($@)
+ASM_OPTS = SET (large) DEBUG EP $(LIST_FILE_CTL) object($@)
+
+LINK_OPTS = \
+	CLASSES (XDATA (X:0x4dd0-X:0x4f40),\
+	CODE(C:0-C:0xffff), DATA(D:0x10-0x7f), IDATA(I:0x80-0xcf)) \
+	SEGMENTS($(DATA_MAP)) \
+	NOOVERLAY \
+	PAGELENGTH(60000) \
+	CODE
+
+DATA_MAP = ?STACK(D:0xD0)
+CODE_MAP = ?PR?RAMENTRY?JUMPTABLE(C:0x0), ?PR?*, ?C*
+
+LINK_OBJ_RAM = bluetooth global_variable kb_process keyscan led sys adc ram pwm ipc gpio iic utilities
+
+#LINK_OBJ_LIB = 
+
+LINK_OBJ_TMP_RAM = $(addsuffix .obj,$(LINK_OBJ_LIB) $(LINK_OBJ_RAM))
+LINK_OBJ_DEPENDENCIES_RAM = $(addprefix $(OUTDIR)/, $(LINK_OBJ_TMP_RAM))
+LINK_OBJ_FILES_RAM = $(subst $(space),$(comma),$(LINK_OBJ_DEPENDENCIES_RAM))
+
+LINK_OBJ_TMP_ROM = $(addsuffix .obj,$(LINK_OBJ_ROM))
+LINK_OBJ_DEPENDENCIES_ROM = $(addprefix $(OUTDIR)/, $(LINK_OBJ_TMP_ROM))
+LINK_OBJ_FILES_ROM = $(subst $(space),$(comma),$(LINK_OBJ_DEPENDENCIES_ROM))
+
+
+.SUFFIXES: .a51
+RAM_BIN = $(RAMTARGET).rom
+
+
+PROG_FILE = ..\rom\program\c51.prog
+RAM_FILES = $(RAM_MIF) $(RAM_BIN) $(EEPROM_FILE) $(PROG_FILE)
+
+$(OUTDIR)/%.obj : %.c hwreg.h
+	$(C51) $< "$(C_OPTS)"
+
+$(OUTDIR)/%.obj : %.a51
+	$(A51) $< "$(ASM_OPTS)"
+
+all : $(RAM_FILES) 
+
+
+$(TARGET) : $(LINK_OBJ_DEPENDENCIES_RAM)
+	$(BL51) $(LINK_OBJ_FILES_RAM) TO $@ "$(LINK_OPTS)"
+
+$(TARGETHEX) : $(TARGET)
+	$(OH51) $(TARGET)
+
+
+$(RAM_BIN) : $(TARGETHEX)
+
+
+$(RAM_MIF) : $(TARGETHEX)
+	perl $(UTIL_PATH)\hex2mif.pl < $< rammif > $@
+
+
+$(EEPROM_FILE) : $(RAM_BIN)
+	cd ..\rom\output; ..\util\geneep.exe; cp eeprom.dat ..\..\sim 
+
+$(PROG_FILE) : $(RAM_BIN)
+#	perl $(UTIL_PATH)\setarg.pl $< c51 > $@
+
+clean:  
+	del /Q $(OUTDIR)\*.* 
+
+
+lib:
+	$(LIB51) TRANSFER $(OUTDIR)\ipc.obj TO $(OUTDIR)\yichip.LIB
+	
+ext:
+	$(LIB51) EXTRACT $(OUTDIR)\yichip.LIB (ipc) TO $(OUTDIR)\ipc.obj
Index: c51/Makefile.bak
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/c51/Makefile.bak	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/c51/Makefile.bak	(working copy)
@@ -0,0 +1,112 @@
+	comma:= ,
+empty:=
+space:= $(empty) $(empty)
+bracketl:= (
+bracketl0:= \(
+bracketr:= )
+bracketr0:= \)
+
+
+OUTDIR = output
+ROOT_PATH =h:\Keil
+
+UTIL_PATH = ..\rom\util
+
+C51BIN = $(ROOT_PATH)\c51\bin
+C51   = $(C51BIN)\c51
+A51   = $(C51BIN)\ax51
+BL51  = $(C51BIN)\lx51
+OH51  = $(C51BIN)\Ohx51
+OC51  = $(C51BIN)\oc51
+LIB51 = $(C51BIN)\libx51
+
+TARGET = $(OUTDIR)\fw
+TARGETHEX = $(TARGET).hex
+
+
+RAMTARGET = $(OUTDIR)\fwram
+
+RAMTARGETHEX = $(addsuffix .hex, $(RAMTARGET))
+
+############################## IMPORTANT ####################################
+#   opt level greater than 7 cannot be used, or the ram code and the rom code will be different
+##############################################################################
+OPT_LEVEL=7
+
+LIST_FILE_CTL=PR($(@:obj=lst))
+
+C_OPTS = object($@) OBJECTADVANCED  browse DF(ENABLE_APE) $(LIST_FILE_CTL) \
+OT($(OPT_LEVEL),SPEED) large
+
+#ASM_OPTS =  $(LIST_FILE_CTL) object($@)
+ASM_OPTS = SET (large) DEBUG EP $(LIST_FILE_CTL) object($@)
+
+LINK_OPTS = \
+	CLASSES (XDATA (X:0x4dd0-X:0x4f40),\
+	CODE(C:0-C:0xffff), DATA(D:0x10-0x7f), IDATA(I:0x80-0xcf)) \
+	SEGMENTS($(DATA_MAP)) \
+	NOOVERLAY \
+	PAGELENGTH(60000) \
+	CODE
+
+DATA_MAP = ?STACK(D:0xD0)
+CODE_MAP = ?PR?RAMENTRY?JUMPTABLE(C:0x0), ?PR?*, ?C*
+
+LINK_OBJ_RAM = bluetooth global_variable kb_process keyscan led sys adc ram pwm ipc gpio iic utilities
+
+#LINK_OBJ_LIB = 
+
+LINK_OBJ_TMP_RAM = $(addsuffix .obj,$(LINK_OBJ_LIB) $(LINK_OBJ_RAM))
+LINK_OBJ_DEPENDENCIES_RAM = $(addprefix $(OUTDIR)/, $(LINK_OBJ_TMP_RAM))
+LINK_OBJ_FILES_RAM = $(subst $(space),$(comma),$(LINK_OBJ_DEPENDENCIES_RAM))
+
+LINK_OBJ_TMP_ROM = $(addsuffix .obj,$(LINK_OBJ_ROM))
+LINK_OBJ_DEPENDENCIES_ROM = $(addprefix $(OUTDIR)/, $(LINK_OBJ_TMP_ROM))
+LINK_OBJ_FILES_ROM = $(subst $(space),$(comma),$(LINK_OBJ_DEPENDENCIES_ROM))
+
+
+.SUFFIXES: .a51
+RAM_BIN = $(RAMTARGET).rom
+
+
+PROG_FILE = ..\rom\program\c51.prog
+RAM_FILES = $(RAM_MIF) $(RAM_BIN) $(EEPROM_FILE) $(PROG_FILE)
+
+$(OUTDIR)/%.obj : %.c hwreg.h
+	$(C51) $< "$(C_OPTS)"
+
+$(OUTDIR)/%.obj : %.a51
+	$(A51) $< "$(ASM_OPTS)"
+
+all : $(RAM_FILES) 
+
+
+$(TARGET) : $(LINK_OBJ_DEPENDENCIES_RAM)
+	$(BL51) $(LINK_OBJ_FILES_RAM) TO $@ "$(LINK_OPTS)"
+
+$(TARGETHEX) : $(TARGET)
+	$(OH51) $(TARGET)
+
+
+$(RAM_BIN) : $(TARGETHEX)
+
+
+$(RAM_MIF) : $(TARGETHEX)
+	perl $(UTIL_PATH)\hex2mif.pl < $< rammif > $@
+
+
+$(EEPROM_FILE) : $(RAM_BIN)
+	cd ..\rom\output; ..\util\geneep.exe; cp eeprom.dat ..\..\sim 
+
+$(PROG_FILE) : $(RAM_BIN)
+#	perl $(UTIL_PATH)\setarg.pl $< c51 > $@
+
+clean:  
+	del /Q $(OUTDIR)\*.* 
+
+
+lib:
+	$(LIB51) TRANSFER $(OUTDIR)\ipc.obj TO $(OUTDIR)\yichip.LIB
+	
+ext:
+	$(LIB51) EXTRACT $(OUTDIR)\yichip.LIB (ipc) TO $(OUTDIR)\ipc.obj
Index: c51/YCkbTool.bat
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/c51/YCkbTool.bat	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/c51/YCkbTool.bat	(working copy)
@@ -0,0 +1,76 @@
+@echo off
+title %~0
+:start
+set/p cmd=Please enter cmd, c/C for compiling, and d/D for downloading:
+if /I "%cmd%" equ "a" (goto compile_all)
+if /I "%cmd%" equ "A" (goto compile_all)
+if /I "%cmd%" equ "c" (goto compile)
+if /I "%cmd%" equ "C" (goto compile)
+if /I "%cmd%" equ "d" (goto download)
+if /I "%cmd%" equ "D" (goto download)
+if /I "%cmd%" equ "k" (goto reset)
+if /I "%cmd%" equ "K" (goto reset)
+if "%cmd%" equ "" (goto error)  else (goto error)
+
+:compile_all
+cd ..\btkb
+call do eep
+cd ..\c51
+
+:compile
+make clean
+make
+
+util\hex2mif.exe < output\fw.hex ram > output\fwram.rom
+copy .\patch\kb.dat + .\patch\rf.dat .\patch\sch.rom 
+
+cd util
+
+perl transform_name2addr.pl ..\patch\sch.rom ..\output\sched.rom ..\patch\memmap.format
+cd ..
+
+copy .\patch\ramcode.rom .\output\
+copy .\patch\geneep.exe .\output\
+copy .\output\*.obj .\patch\*.obj
+
+copy .\util\eeprom2fulleeprom.exe .\eeprom2fulleeprom.exe
+copy .\util\crc16.exe .\crc16.exe
+
+cd output
+geneep geneep ramcode.rom fwram.rom sched.rom
+del *.lst
+del *.obj
+
+copy eeprom.dat ..\eeprom.dat
+cd ..
+eeprom2fulleeprom.exe eeprom.dat 256>compare2.dat
+crc16.exe compare2.dat 2 >.\output\eeprom.dat
+del eeprom.dat
+del compare2.dat
+del eeprom2fulleeprom.exe
+del crc16.exe
+
+:end
+set cmd=0
+echo/
+goto start
+
+:error
+echo Cmd error, enter again
+goto end
+
+:reset
+e pu
+e ku
+goto end
+
+:download
+e p
+e pu
+e ep
+e k
+e ku
+e a
+e au
+goto end
+
Index: c51/adc.h
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/c51/adc.h	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/c51/adc.h	(working copy)
@@ -0,0 +1,56 @@
+#ifndef _ADC_H
+#define _ADC_H
+#include "common.h"
+
+#define ADC_ENABLE
+/***need to modify  mem_adc_config_flag in kb.dat at the same time****/
+//#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				0x33	
+
+
+#define BAT_STATUS_NONE			0
+#define BAT_STATUS_LOW				1
+#define BAT_STATUS_SHUT_DOWN		2
+
+//battery check
+#define BATTERY_CHECK_INTERVAL 		5			// 500ms*5 = 2.5s
+#define INIT_BATTERY_VALUE   				0x5454
+#define INIT_BATTERY_VALUE_GPIO			0x6262
+#define INIT_BATTERY_VALUE_VINLPM		0x5151
+#define LOW_BATTERY_FLASH_INTERVAL	24	
+
+// battery to gpio R = 1M
+#define LOW_BATTER_COEFFICIENT_1V5   	0.61
+#define LOW_BATTER_COEFFICIENT_1V1   	0.33
+#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_3V9   	1.33
+#define LOW_BATTER_COEFFICIENT_3V8   	1.29
+#define LOW_BATTER_COEFFICIENT_3V7   	1.24
+#define LOW_BATTER_COEFFICIENT_3V6   	1.21
+#define LOW_BATTER_COEFFICIENT_3V5   	1.17
+#define LOW_BATTER_COEFFICIENT_3V4   	1.14
+#define LOW_BATTER_COEFFICIENT_3V3   	1.11
+#define LOW_BATTER_COEFFICIENT_3V2       1.07
+#define LOW_BATTER_COEFFICIENT_3V1	1.04
+#define LOW_BATTER_COEFFICIENT_3V0	1.01
+#define LOW_BATTER_COEFFICIENT_2V9	0.98
+
+
+void YC_adc_check_timer500ms();
+void YC_adc_check() ;
+void YC_adc_init();
+
+#endif /* YC_ADC_H */
+
+
Index: c51/adc.c
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/c51/adc.c	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/c51/adc.c	(working copy)
@@ -0,0 +1,119 @@
+#include "adc.h"
+
+void YC_adc_init()
+{
+#ifdef  ADC_ENABLE
+	byte i;
+	
+	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;
+	}
+//	g_variable.battery_level_full = (m_adc3vValue - m_adc0vBase)*LOW_BATTER_COEFFICIENT_3V7+m_adc0vBase;
+	g_variable.battery_level_low = (m_adc3vValue - m_adc0vBase)*LOW_BATTER_COEFFICIENT_3V3+m_adc0vBase;
+	g_variable.battery_level_shutdown = (m_adc3vValue - m_adc0vBase)*LOW_BATTER_COEFFICIENT_3V1+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_full = m_adc3vValue;
+		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;
+	}
+	g_variable.battery_level_full = (m_adc3vValue - m_adc0vBase)*LOW_BATTER_COEFFICIENT_1V5+m_adc0vBase;
+	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;
+
+	if(!m_adcCurrentValue)
+		return;
+
+	g_variable.battery_value[g_variable.battery_value_index++] = m_adcCurrentValue;
+	if (g_variable.battery_value_index >= BAT_ARRAY_LEN)
+		g_variable.battery_value_index = 0;
+	for (i = 0; i < BAT_ARRAY_LEN; i++)
+	{
+		batValue += g_variable.battery_value[i];
+	}
+	batValue = batValue/BAT_ARRAY_LEN;
+
+/*
+	if(batValue <= g_variable.battery_level_shutdown)
+		g_variable.battery_level_percentage = 0;
+	else	if(batValue >= g_variable.battery_level_full)
+		g_variable.battery_level_percentage = 100;
+	else	
+		g_variable.battery_level_percentage = (byte)(((batValue - g_variable.battery_level_shutdown)*100)/(g_variable.battery_level_full -g_variable.battery_level_shutdown) );
+*/	
+	if(batValue < g_variable.battery_level_shutdown)
+	{
+		g_variable.battery_status = BAT_STATUS_SHUT_DOWN;
+		if(g_variable.last_battery_status != BAT_STATUS_SHUT_DOWN)
+		{
+			g_variable.battery_shutdown_flag = 1;
+			g_variable.battery_flash_timer = STANDBY_TIMER_10S;
+			IIC_WriteBlock(EEPROM_BATTERY_SHUTDOWN_FLAG ,1 ,(byte *)&g_variable.battery_shutdown_flag);
+		}		
+	}
+	else
+	{
+		if(g_variable.last_battery_status == BAT_STATUS_SHUT_DOWN)
+		{
+			g_variable.battery_shutdown_flag = 0;
+			IIC_WriteBlock(EEPROM_BATTERY_SHUTDOWN_FLAG ,1 ,(byte *)&g_variable.battery_shutdown_flag);
+		}	
+		if (batValue < g_variable.battery_level_low)
+		{
+			g_variable.battery_status = BAT_STATUS_LOW;
+			g_variable.battery_level_low = (m_adc3vValue - m_adc0vBase)*LOW_BATTER_COEFFICIENT_3V3+m_adc0vBase;
+		}
+		else
+		{
+			g_variable.battery_status = BAT_STATUS_NONE;
+			g_variable.battery_level_low = (m_adc3vValue - m_adc0vBase)*LOW_BATTER_COEFFICIENT_3V1+m_adc0vBase;
+		}
+	}
+
+	g_variable.last_battery_status = g_variable.battery_status;
+#endif	
+}
+
+
+void YC_adc_check_timer500ms()
+{
+#ifdef  ADC_ENABLE
+	// adc check timer	
+	if (g_variable.battery_check_interval)
+	{
+		g_variable.battery_check_interval--;
+		if (g_variable.battery_check_interval == 0)
+		{
+			g_variable.battery_check_interval = BATTERY_CHECK_INTERVAL;
+			YC_adc_check();
+		}
+	}
+#endif	
+}
+
+
Index: c51/bluetooth.h
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/c51/bluetooth.h	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/c51/bluetooth.h	(working copy)
@@ -0,0 +1,40 @@
+#ifndef _BLUETOOTH_H
+#define _BLUETOOTH_H
+#include "common.h"
+
+#ifndef BT_FAST_CONNECT_ENABLE
+#define BLE_FAST_CONNECT_ENABLE
+#endif
+
+#ifndef BLE_FAST_CONNECT_ENABLE
+#define BT_FAST_CONNECT_ENABLE
+#endif
+
+#define DEVICE_MODE_BT_ONLY	0
+#define DEVICE_MODE_BLE_ONLY	0
+#define DEVICE_MODE_BT_BLE		1
+
+#define TYPE_BLE			0x01
+#define TYPE_BT			0x02
+#define TYPE_24G			0x03
+
+
+void YC_load_record_list(byte index);
+void YC_store_record_list(byte link_type,byte index);
+byte YC_check_is_connected();
+byte YC_check_need_reconnected();
+byte YC_cancel_reconnect();
+void YC_clear_reconnect_flag();
+byte YC_disconnect_all_link();
+byte YC_g24_mode_discovery();
+void YC_start_reconnect();
+void YC_update_eeprom_data();
+
+
+void YC_get_ble_ramdon_lap();
+void  YC_clear_BT_same_address_record();
+
+
+#endif /* _BLUETOOTH_H */
+
+
Index: c51/bluetooth.c
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/c51/bluetooth.c	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/c51/bluetooth.c	(working copy)
@@ -0,0 +1,305 @@
+#include "bluetooth.h"
+
+
+void YC_load_record_list(byte index)
+{
+	if (g_variable.recon_count == 0)
+		return;
+	g_variable.recon_count--;
+	ble_reconnect_flag = 0;
+	fast_connect_flag = 0;
+	if (bd_key_record_list[index].device_type == TYPE_BLE)		
+	{
+		xmemcpy(m_reconn_addr,bd_key_record_list[index].device_addr,6);
+		xmemcpy(m_le_ltk,bd_key_record_list[index].device_link_key,16);
+		xmemcpy(m_le_lap,bd_key_record_list[index].local_addr,6);
+		IPC_TxControlCmd(IPC_CMD_START_ADV_REC);		//ble reconnect
+		ble_reconnect_flag = 1;
+		g_variable.recon_count = 0;
+		m_ltk_exists = 1;
+	}
+	else if (bd_key_record_list[index].device_type == TYPE_BT)
+	{
+		xmemcpy(m_reconn_addr,bd_key_record_list[index].device_addr,6);
+		xmemcpy(m_linkkey,bd_key_record_list[index].device_link_key,16);
+		IPC_TxControlCmd(IPC_CMD_RECONNECT);
+		m_link_key_exists = 1;
+	}
+	else		
+	{
+		fast_connect_flag = 1;
+	#ifdef BLE_FAST_CONNECT_ENABLE
+			m_le_lap[0] = 0x0F;
+			m_le_lap[1] = 0x0F;
+			m_le_lap[2] = 0x0F;
+			m_le_lap[3] = 0x0F;
+			m_le_lap[4] = 0x0F;
+			m_le_lap[5] = 0x0F;
+			ble_fast_connect_flag =1;
+			IPC_TxControlCmd(IPC_CMD_START_ADV_REC);
+			m_link_key_exists = 1;
+	#endif
+	#ifdef BT_FAST_CONNECT_ENABLE
+			m_reconn_addr[0] = 0xFF;
+			m_reconn_addr[1] = 0xFF;
+			m_reconn_addr[2] = 0xFF;
+			m_reconn_addr[3] = 0xFF;
+			m_reconn_addr[4] = 0xFF;
+			m_reconn_addr[5] = 0xFF;
+			xmemclear_ff((byte *)m_linkkey,16); 
+			IPC_TxControlCmd(IPC_CMD_RECONNECT);
+			m_link_key_exists = 1;	
+			g_variable.fast_connect_send_name = 1;
+	#endif
+	}	
+}
+
+
+
+void YC_store_record_list(byte link_type,byte index)
+{
+	if (link_type == TYPE_BLE) 
+	{
+		bd_key_record_list[index].device_type = TYPE_BLE;
+		xmemcpy(bd_key_record_list[index].device_addr,m_remote_le_addr,6);
+		xmemcpy(bd_key_record_list[index].device_link_key,m_le_ltk,16);
+		xmemcpy(bd_key_record_list[index].local_addr,m_le_lap,6);
+	}
+	else if (link_type == TYPE_BT)
+	{
+		bd_key_record_list[index].device_type = TYPE_BT;
+		xmemcpy(bd_key_record_list[index].device_addr,m_remote_addr,6);
+		xmemcpy(bd_key_record_list[index].device_link_key,m_linkkey,16);
+	}
+}
+
+
+byte YC_check_is_connected()
+{
+	if (g_variable.br_currentState == CHANGE_TO_BR_CONNECTED
+		|| g_variable.ble_currentState == CHANGE_TO_BLE_CONNECTED
+		|| g_variable.g24_currentState == CHANGE_TO_24G_CONNECTED)
+	{
+		return 1;
+	}
+	return 0;
+}
+
+byte YC_check_need_reconnected()
+{
+	byte return_val = 0;
+	 if (g_variable.ble_currentSubState == CHANGE_TO_BLE_SUB_PINCODE 
+		|| g_variable.br_currentSubState == CHANGE_TO_BR_SUB_PINCODE)
+		return return_val;
+#if DEVICE_MODE_BT_ONLY
+	if ((m_ui_state_map & 0x4000) == 0x4000)
+#elif DEVICE_MODE_BLE_ONLY	
+	if ((m_ui_state_map & 0x0008) == 0x0008)
+#else	
+	if ((m_ui_state_map & 0x4008) == 0x4008)		//ADV and DISCOVERY
+#endif		
+		return return_val;
+
+	if(g_variable.pairing_g24_timeout)
+		return return_val;
+
+	if ( g_variable.br_currentState == CHANGE_TO_BR_DISCONNECT
+		&& g_variable.ble_currentState == CHANGE_TO_BLE_DISCONNECT
+		&& g_variable.g24_currentState != CHANGE_TO_24G_CONNECTED
+	)
+	{
+		if(g_variable.recon_delay == 0)
+		{
+			g_variable.recon_delay = 10;
+			if ((g_variable.recon_count == 0)
+			&& (power_on_flag == 2))
+			{				
+				if (g_variable.current_device_num >= 1 && g_variable.current_device_num <= 3)
+				{
+					YC_key_action_handle(g_variable.current_device_num);
+				}
+				else
+				{
+					YC_key_action_handle(KEY_OPEN_24G);
+					return_val = 1;
+				}
+			}
+		}
+	}
+	else
+	{
+		g_variable.release_data = 0;
+		return_val = 1;
+	}
+	return return_val;
+}
+
+
+byte YC_cancel_reconnect()
+{
+	if (g_variable.br_currentState == CHANGE_TO_BR_RECONNECT)
+	{
+		IPC_TxControlCmd(IPC_CMD_BB_RECONN_CANCEL);
+		return 1;
+	}
+
+	if (g_variable.ble_currentState == CHANGE_TO_BLE_DIRECT_ADV)
+	{
+		//stop adv
+		IPC_TxControlCmd(IPC_CMD_STOP_ADV);
+		return 1;
+	}
+	return 0;
+}
+
+
+void YC_clear_reconnect_flag()  
+{
+	g_variable.recon_count = 0;
+	ble_reconnect_flag = 0;
+}
+
+
+byte YC_disconnect_all_link()
+{
+	if (g_variable.br_currentState == CHANGE_TO_BR_CONNECTED 
+		||g_variable.br_currentState == CHANGE_TO_BR_CONNECTING)
+	{
+		IPC_TxControlCmd(IPC_CMD_DISCONNECT);
+		return 1;
+	}
+	if (g_variable.ble_currentState == CHANGE_TO_BLE_CONNECTED 
+		||g_variable.ble_currentState == CHANGE_TO_BLE_CONNECTING)
+	{
+		IPC_TxControlCmd(IPC_CMD_LE_DISCONNECT);
+		return 1;
+	}
+	if (g_variable.g24_currentState == CHANGE_TO_24G_CONNECTED 
+		||g_variable.g24_currentState == CHANGE_TO_24G_CONNECTING)
+	{
+		IPC_TxControlCmd(IPC_CMD_STOP_24G);
+		return 1;
+	}
+	return 0;
+}
+
+byte YC_g24_mode_discovery()
+{
+	if (g_variable.last_device_num == 0xfe ||g_variable.last_device_num == 0x00)
+	{
+		IPC_TxControlCmd(IPC_CMD_STOP_24G);
+		return 1;
+	}
+	return 0;
+}
+
+
+
+void YC_start_reconnect()
+{
+	power_on_flag = 2;
+
+	IIC_Read(EEPROM_RECON_INFO_BASE ,sizeof(BD_KEY_RECORD)*3, (byte *)bd_key_record_list);
+	Delay1ms(10);
+	IIC_Read(EEPROM_RECON_INFO_BASE_6+2,4 , (byte *)m_24g_addr);
+	Delay1ms(10);
+	IIC_Read(EEPROM_RECON_INFO_G24_SYTEM_MODE ,1 ,(byte *)&g_variable.system_mode);
+	Delay1ms(10);
+	
+	if (g_variable.current_device_num <= 3 && g_variable.current_device_num >= 1)
+	{
+		g_variable.system_mode = bd_key_record_list[g_variable.current_device_num - 1].system_mode;
+		YC_key_action_handle(g_variable.current_device_num);
+	}
+	else	
+	{	
+		YC_key_action_handle(KEY_START_24G);
+	}
+}
+
+
+
+void YC_get_ble_ramdon_lap()		
+{
+	IIC_Read(EEPROM_RECON_INFO_RAMDON_LE_LAP1 ,2 ,(byte *)&g_variable.ble_ramdon_lap1);
+	g_variable.ble_ramdon_lap1++;
+	g_variable.ble_ramdon_lap2++;
+	m_le_lap[1] = g_variable.ble_ramdon_lap1;
+	m_le_lap[2] = g_variable.ble_ramdon_lap2;
+	m_le_lap[3] = le_lap_temp[0];
+	m_le_lap[4] = le_lap_temp[1];
+	m_le_lap[5] = le_lap_temp[2];
+}
+
+
+void  YC_clear_BT_same_address_record()
+{
+	byte record_index;
+	//if (pinCode_flag == 1)			//clear the same BT3.0 device address record
+	{
+		record_index = g_variable.current_device_num-1;
+		pinCode_flag= 0;
+		YC_store_record_list(2, record_index);
+
+		if(record_index != 0)
+		{
+			if(bd_key_record_list[0].device_type == 2) 
+			{
+				if (compare_str(bd_key_record_list[0].device_addr,bd_key_record_list[record_index].device_addr,6))
+					xmemclear_ff((byte *)(&bd_key_record_list[0]), sizeof(BD_KEY_RECORD));
+			}
+		}
+
+		if(record_index != 1)
+		{
+			if(bd_key_record_list[1].device_type == 2) 
+			{
+				if (compare_str(bd_key_record_list[1].device_addr,bd_key_record_list[record_index].device_addr,6))
+					xmemclear_ff((byte *)(&bd_key_record_list[1]), sizeof(BD_KEY_RECORD));
+			}
+		}
+
+		if(record_index != 2)
+		{
+			if(bd_key_record_list[2].device_type == 2) 
+			{
+				if (compare_str(bd_key_record_list[2].device_addr,bd_key_record_list[record_index].device_addr,6))
+					xmemclear_ff((byte *)(&bd_key_record_list[2]), sizeof(BD_KEY_RECORD));
+			}
+		}	
+	}
+}
+
+
+
+void YC_update_eeprom_data()
+{
+	if (g_variable.update_eeprom_flag)				//bt3.0  bt4.2 record information save
+	{
+		#ifdef  ADC_ENABLE
+		if(m_adcCurrentValue < g_variable.battery_level_shutdown)
+			return;
+		#else
+		if (g_variable.update_eeprom_flag == EEPROM_STORE_TYPE_NORMAL)
+			Delay1ms(200);
+		#endif
+		
+
+		GPIO_Setout(EEPROM_WP_GPIO,0);
+		if (g_variable.update_eeprom_flag == EEPROM_STORE_TYPE_G24)
+		{
+			IIC_WriteBlock(EEPROM_RECON_INFO_BASE_6+2,4 , (byte *)m_24g_addr);
+			IIC_WriteBlock(EEPROM_RECON_INFO_G24_SYTEM_MODE ,1 ,(byte *)&g_variable.system_mode);
+		}	
+		else if (g_variable.update_eeprom_flag == EEPROM_STORE_TYPE_BT)
+			IIC_WriteBlock(EEPROM_RECON_INFO_BASE ,(sizeof(BD_KEY_RECORD)*3) , (byte *)&bd_key_record_list);
+		
+		IIC_WriteBlock(EEPROM_RECON_INFO_LAST_DEVICE ,1 ,(byte *)&g_variable.last_device_num);
+		IIC_WriteBlock(EEPROM_RECON_INFO_RAMDON_LE_LAP1 ,2 ,(byte *)&g_variable.ble_ramdon_lap1);
+
+		GPIO_Setout(EEPROM_WP_GPIO,1);
+		Delay1ms(10);
+		g_variable.update_eeprom_flag = 0;
+	}
+}
+
Index: c51/btreg.h
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/c51/btreg.h	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/c51/btreg.h	(working copy)
@@ -0,0 +1,1127 @@
+#ifndef _BT_REG_H_
+#define _BT_REG_H_
+#define	mem_le_adv_transmit                     	0x0000
+#define	mem_le_adv_waitcnt                      	0x0001
+#define	mem_le_adv_rcv                          	0x0002
+#define	mem_le_req_rcv                          	0x0003
+#define	mem_le_scanrsp_rcv                      	0x0004
+#define	mem_le_conn_rcv                         	0x0005
+#define	mem_inquiryscan_waitcnt                 	0x0006
+#define	mem_inquiryscan_rcvcnt                  	0x0007
+#define	mem_pagescan_waitcnt                    	0x0008
+#define	mem_pagescan_rcvcnt                     	0x0009
+#define	mem_pagescan_rcvfhscnt                  	0x000a
+#define	mem_slave_rcvcnt                        	0x000b
+#define	mem_page_transmit                       	0x000c
+#define	mem_page_rcv                            	0x000d
+#define	mem_page_rcv_fhs                        	0x000e
+#define	mem_master_rcvcnt                       	0x000f
+#define	mem_fhs_wait_counter                    	0x0010
+#define	mem_newconnto_counter                   	0x0011
+#define	mem_inquiry_transmit                    	0x0012
+#define	mem_inquiry_rcv                         	0x0013
+#define	mem_fw_ver                              	0x0014
+#define	mem_current_context                     	0x0015
+#define	mem_le_ch_mapped                        	0x0016
+#define	mem_last_freq                           	0x0017
+#define	mem_rssi                                	0x0018
+#define	mem_rx_type                             	0x0019
+#define	mem_rx_hec_err                          	0x001a
+#define	mem_rx_crc_err                          	0x001c
+#define	mem_context_ptr                         	0x001e
+#define	mem_display                             	0x0020
+#define	mem_bcd                                 	0x0028
+#define	mem_state                               	0x0030
+#define	mem_mode                                	0x0031
+#define	mem_tsniff                              	0x0032
+#define	mem_sniff_anchor                        	0x0034
+#define	mem_clk_offset                          	0x0038
+#define	mem_rx_window                           	0x003e
+#define	mem_plap                                	0x0040
+#define	mem_puap                                	0x0043
+#define	mem_pnap                                	0x0044
+#define	mem_conn_handle                         	0x0046
+#define	mem_arq                                 	0x0047
+#define	mem_lmp_to_send                         	0x0048
+#define	mem_lmi_opcode                          	0x0049
+#define	mem_lmo_reason                          	0x004a
+#define	mem_op                                  	0x004b
+#define	mem_state_map                           	0x004c
+#define	mem_supervision_timer                   	0x004d
+#define	mem_supervision_to                      	0x0051
+#define	mem_name_offset                         	0x0053
+#define	mem_key_size                            	0x0054
+#define	mem_conn_sm                             	0x0055
+#define	mem_aco                                 	0x0056
+#define	mem_kc                                  	0x0062
+#define	mem_conn_timer                          	0x0072
+#define	mem_sniff_attempt                       	0x0073
+#define	mem_sniff_timeout                       	0x0074
+#define	mem_dsniff                              	0x0075
+#define	mem_amaddr                              	0x0077
+#define	mem_lmo_opcode1                         	0x0078
+#define	mem_lmi_opcode1                         	0x0079
+#define	mem_lmo_reason1                         	0x007a
+#define	mem_lmo_tid1                            	0x007b
+#define	mem_lmo_opcode2                         	0x007c
+#define	mem_lmi_opcode2                         	0x007d
+#define	mem_lmo_reason2                         	0x007e
+#define	mem_lmo_tid2                            	0x007f
+#define	mem_hci_version                         	0x0080
+#define	mem_acl_pktlen                          	0x0083
+#define	mem_sco_pktlen                          	0x0085
+#define	mem_acl_pktcnt                          	0x0086
+#define	mem_sco_pktcnt                          	0x0088
+#define	mem_current_sniff_attempt               	0x008a
+#define	mem_current_sniff_timeout               	0x008b
+#define	mem_nfreq_index_inq                     	0x008c
+#define	mem_nfreq_index_page                    	0x008d
+#define	mem_ninqy_index                         	0x008e
+#define	mem_fhs_misc                            	0x008f
+#define	mem_tx_lch                              	0x0090
+#define	mem_tx_len                              	0x0091
+#define	mem_subsniff_instant                    	0x0093
+#define	mem_subsniff_rate                       	0x0097
+#define	mem_subsniff_tcmax                      	0x0098
+#define	mem_subsniff_tsniff                     	0x009a
+#define	mem_lpm_adjust                          	0x009b
+#define	mem_sync_clke                           	0x009c
+#define	mem_lpm_current_mult                    	0x00a2
+#define	mem_gpio_wakeup_low                     	0x00a3
+#define	mem_gpio_wakeup_high                    	0x00a7
+#define	mem_air_mode                            	0x00ab
+#define	mem_sco_asso_handle                     	0x00ac
+#define	mem_sco_handle                          	0x00ad
+#define	mem_esco_desco                          	0x00af
+#define	mem_esco_type                           	0x00b0
+#define	mem_neogotiation_state                  	0x00b1
+#define	mem_saved_amaddr                        	0x00b2
+#define	mem_esco_arq                            	0x00b3
+#define	mem_esco_saved_arq                      	0x00b4
+#define	mem_sco_obuf                            	0x00b5
+#define	mem_sco_ibuf                            	0x00d3
+#define	mem_sco_poll                            	0x00f1
+#define	mem_npage_index                         	0x00f2
+#define	mem_page_mode                           	0x00f3
+#define	mem_page_clk                            	0x00f4
+#define	mem_tst_pktcnt_sync                     	0x00f8
+#define	mem_tst_pktcnt_hec                      	0x00fa
+#define	mem_tst_pktcnt_crc                      	0x00fc
+#define	mem_tst_pktcnt_dmh                      	0x00fe
+#define	mem_tmp_buffer_head                     	0x0100
+#define	mem_tmp_buffer                          	0x0103
+#define	mem_tester_emulate                      	0x0153
+#define	mem_temp_payload                        	0x0154
+#define	test_mode_scenario                      	0x0154
+#define	test_mode_hopping_mode                  	0x0155
+#define	test_mode_tx_freq                       	0x0156
+#define	test_mode_rx_freq                       	0x0157
+#define	test_mode_power_mode                    	0x0158
+#define	test_mode_poll_period                   	0x0159
+#define	test_mode_packet_type                   	0x015a
+#define	test_mode_data_length                   	0x015b
+#define	mem_test_mode_old_debug_config          	0x015d
+#define	mem_tester_cnt                          	0x015e
+#define	mem_temp_am_addr                        	0x015f
+#define	mem_temp_arq                            	0x0160
+#define	mem_pdatatemp                           	0x0161
+#define	mem_len                                 	0x0169
+#define	mem_clkn_bt                             	0x016b
+#define	mem_clke_bt                             	0x016f
+#define	mem_dpll_clkn                           	0x0173
+#define	mem_connection_options                  	0x0177
+#define	mem_nameres_cnt                         	0x0178
+#define	mem_txptr                               	0x0179
+#define	mem_slot_offset                         	0x017b
+#define	extm_fhs_misc                           	0x017d
+#define	extm_newconn_am_addr                    	0x017e
+#define	extm_class                              	0x017f
+#define	extm_lap                                	0x0182
+#define	extm_uap                                	0x0185
+#define	extm_nap                                	0x0186
+#define	mem_debug_config                        	0x0189
+#define	mem_lch_code                            	0x018a
+#define	mem_fhs_am_addr                         	0x018b
+#define	mem_dpll_error                          	0x018c
+#define	mem_bdaddr_list_buff                    	0x018e
+#define	mem_select_list_item                    	0x01b2
+#define	mem_temp_reconn_record                  	0x01b3
+#define	mem_record_bt_mode                      	0x01b3
+#define	mem_temp_lap                            	0x01b4
+#define	mem_list_item_ptr                       	0x01ba
+#define	mem_eir                                 	0x01bc
+#define	mem_ucode_status                        	0x0220
+#define	mem_otp_ucode_flag                      	0x0221
+#define	mem_spid_tbuf                           	0x0223
+#define	mem_iicd_tbuf                           	0x0224
+#define	mem_addr_hi                             	0x0224
+#define	mem_addr_mi                             	0x0225
+#define	mem_addr_lo                             	0x0226
+#define	mem_iicd_addr                           	0x0227
+#define	mem_spid_rbuf                           	0x0228
+#define	mem_ucode_buf                           	0x022c
+#define	mem_ucode_len                           	0x022e
+#define	mem_sched_addr                          	0x0230
+#define	mem_ucode_ptr                           	0x0232
+#define	mem_ucode_keybuf                        	0x0234
+#define	mem_check_plap_temp                     	0x0244
+#define	mem_sensor_id                           	0x0256
+#define	mem_reconnect_flag                      	0x0257
+#define	mem_switch_fail_master_count            	0x0258
+#define	mem_app_evt_timer_count                 	0x0259
+#define	mem_dongle_count                        	0x025a
+#define	mem_le_addr_slave1                      	0x025b
+#define	mem_le_addr_slave2                      	0x0261
+#define	mem_le_peer_state                       	0x0267
+#define	mem_app_peer_addr                       	0x0268
+#define	mem_dongle_peers                        	0x026e
+#define	mem_dongle_pairing_cnt                  	0x026f
+#define	mem_dongle_signature                    	0x0270
+#define	mem_h5rx_ackcnt                         	0x0272
+#define	mem_check_err_acl_cont                  	0x0273
+#define	mem_rp_packets                          	0x0274
+#define	mem_packet_type                         	0x0275
+#define	mem_hci_sniff_conn_handle               	0x0277
+#define	mem_hci_sniff_max_interval              	0x0279
+#define	mem_hci_sniff_min_interval              	0x027b
+#define	mem_hci_sniff_attempt                   	0x027d
+#define	mem_hci_sniff_timeout                   	0x027f
+#define	mem_voice_setting                       	0x0281
+#define	mem_retransmission_effort               	0x0283
+#define	mem_sco_ptype                           	0x0284
+#define	mem_extm_uap_restore                    	0x0286
+#define	mem_h5rx_rptr                           	0x0289
+#define	mem_h5rx_ack                            	0x028b
+#define	mem_h5tx_ack                            	0x028c
+#define	mem_h5tx_rptr                           	0x028d
+#define	mem_h5tx_wptr                           	0x028f
+#define	mem_h5tx_free                           	0x0291
+#define	mem_h5rx_tmp                            	0x0293
+#define	mem_h5tx_seq                            	0x0294
+#define	mem_hci_acl_queue_wptr                  	0x0295
+#define	mem_hci_acl_queue_rptr                  	0x0297
+#define	mem_hci_acl_queue_end                   	0x0299
+#define	mem_hci_acl_queue_wcnt                  	0x029b
+#define	mem_hci_acl_cnt                         	0x029c
+#define	mem_hci_acl_tx_trigger_wptr             	0x029d
+#define	mem_ucode_id_local                      	0x029f
+#define	mem_temp                                	0x02a0
+#define	mem_timeup                              	0x02a8
+#define	mem_rega                                	0x02ac
+#define	mem_regb                                	0x02b0
+#define	mem_regc                                	0x02b4
+#define	mem_contr                               	0x02b7
+#define	mem_contw                               	0x02b9
+#define	mem_ucode_id_remote                     	0x02bb
+#define	mem_check_sum                           	0x02bc
+#define	mem_ucode_temp                          	0x02bd
+#define	mem_ucode_temp1                         	0x02be
+#define	mem_lock_in_enc                         	0x02bf
+#define	mem_hci_disconn_reason                  	0x02c0
+#define	mem_hci_curr_len                        	0x02c1
+#define	mem_hci_curr_target                     	0x02c2
+#define	mem_l2cap_mem_start                     	0x02c4
+#define	mem_l2cap_rxbuff1_len                   	0x02c4
+#define	mem_l2cap_rxbuff2_len                   	0x02c6
+#define	mem_l2cap_rxbuff_new                    	0x02c8
+#define	mem_l2cap_rxbuff_inuse                  	0x02ca
+#define	mem_l2cap_payload_ptr                   	0x02cb
+#define	mem_l2cap_rx_pkt_length                 	0x02cd
+#define	mem_l2cap_rx_cid                        	0x02cf
+#define	mem_l2cap_rx_done                       	0x02d1
+#define	mem_l2cap_signal_tx_buff_ptr            	0x02d2
+#define	mem_l2cap_signal_tx_payload_ptr         	0x02d4
+#define	mem_l2cap_signal_tx_length              	0x02d6
+#define	mem_sdp_tx_buff_ptr                     	0x02d8
+#define	mem_sdp_tx_payload_ptr                  	0x02da
+#define	mem_sdp_tx_pkt_length                   	0x02dc
+#define	mem_rfcomm_tx_buff_ptr                  	0x02de
+#define	mem_rfcomm_tx_payload_ptr               	0x02e0
+#define	mem_rfcomm_tx_pkt_length                	0x02e2
+#define	memL2CAP_T1                             	0x02e4
+#define	mem_CONTROL_tasks                       	0x02e6
+#define	mem_send_config_req                     	0x02e7
+#define	mem_config_identifier                   	0x02e8
+#define	mem_config_req_dest_CID                 	0x02e9
+#define	mem_rfcomm_malloc_fail_flag             	0x02eb
+#define	mem_message_to_uppersm                  	0x02ec
+#define	mem_upper_sm_remote_page                	0x02ed
+#define	mem_upper_sm_reconn                     	0x02ee
+#define	mem_upper_sm_ss                         	0x02ef
+#define	mem_tx_malloc_log                       	0x02f0
+#define	mem_l2cap_mem_end                       	0x0330
+#define	mem_scid                                	0x0330
+#define	mem_cmd_length                          	0x0332
+#define	mem_tt2                                 	0x0334
+#define	mem_tt3                                 	0x0336
+#define	mem_id                                  	0x0338
+#define	mem_psm                                 	0x033a
+#define	mem_l2cap_sdpres_delay_time             	0x033c
+#define	mem_le_rxbuf                            	0x0340
+#define	mem_le_mic                              	0x0378
+#define	mem_le_peer_mic                         	0x037c
+#define	mem_le_skdm                             	0x0380
+#define	mem_le_skds                             	0x0388
+#define	mem_le_peer_ltk                         	0x0390
+#define	mem_le_my_ltk                           	0x03a0
+#define	mem_le_mrand                            	0x03b0
+#define	mem_le_state                            	0x03c0
+#define	mem_le_mode                             	0x03c1
+#define	mem_le_tsniff                           	0x03c2
+#define	mem_le_anchor                           	0x03c4
+#define	mem_le_clk_offset                       	0x03c8
+#define	mem_le_receive_window                   	0x03ce
+#define	mem_le_plap                             	0x03d0
+#define	mem_le_conn_handle                      	0x03d6
+#define	mem_le_arq                              	0x03d7
+#define	mem_le_ch                               	0x03d8
+#define	mem_le_hop                              	0x03d9
+#define	mem_le_event_count                      	0x03da
+#define	mem_le_supervision_timer                	0x03dc
+#define	mem_le_instant                          	0x03e0
+#define	mem_le_channels                         	0x03e2
+#define	mem_le_conn_sm                          	0x03e3
+#define	mem_le_op                               	0x03e4
+#define	mem_le_access                           	0x03e5
+#define	mem_le_crcinit                          	0x03e9
+#define	mem_le_window_size                      	0x03ec
+#define	mem_le_slave_latency                    	0x03ed
+#define	mem_le_superto                          	0x03ef
+#define	mem_le_channel_map                      	0x03f1
+#define	mem_le_no_using                         	0x03f6
+#define	mem_le_peer_sca                         	0x03f8
+#define	mem_le_att_opcode                       	0x03f9
+#define	mem_le_att_handle                       	0x03fa
+#define	mem_le_err_code                         	0x03fc
+#define	mem_le_sk                               	0x03fd
+#define	mem_le_testtype                         	0x040d
+#define	mem_le_test_sync                        	0x040e
+#define	mem_le_test_pcnt                        	0x0410
+#define	mem_le_rxon_ts                          	0x0412
+#define	mem_le_rx_ll_opcode                     	0x0418
+#define	mem_le_notify_attr_start                	0x0419
+#define	mem_le_notify_len                       	0x041b
+#define	mem_cmd_le_create_conn                  	0x041c
+#define	mem_le_adv_temp                         	0x041d
+#define	mem_24g_id                              	0x0431
+#define	mem_lmo_header_length                   	0x0432
+#define	mem_lmo_header_opcode                   	0x0433
+#define	mem_lmo_payload                         	0x0434
+#define	mem_lmi_accepted_opcode                 	0x0445
+#define	mem_disconn_reason_send                 	0x0446
+#define	mem_tx_fixed_freq                       	0x0447
+#define	mem_rx_fixed_freq                       	0x0448
+#define	mem_ext_features_page                   	0x0449
+#define	mem_lmpext_ssp_enable                   	0x044a
+#define	mem_remote_sppcap                       	0x044c
+#define	mem_lmp_conn_state                      	0x044d
+#define	mem_soft_timer                          	0x044e
+#define	mem_pincode_state                       	0x0450
+#define	mem_sres_tid                            	0x0451
+#define	mem_accptsco_tid                        	0x0452
+#define	mem_auth_enable                         	0x0453
+#define	mem_wait_encryption                     	0x0454
+#define	mem_sniff_payload                       	0x0455
+#define	mem_aurand_send_delay_time              	0x0465
+#define	mem_module_temp_len                     	0x0469
+#define	mem_init_cnt                            	0x046b
+#define	mem_prcp_data                           	0x046d
+#define	mem_prcp                                	0x0481
+#define	mem_prcp_tx_len                         	0x0482
+#define	rx_buf_data_ptr                         	0x0483
+#define	memRemoteRPNBitRate                     	0x0485
+#define	memRemotePRNDataBits                    	0x0486
+#define	memRemotePRNStopBit                     	0x0487
+#define	memRemotePRNParity                      	0x0488
+#define	memRemotePRNFlowControl                 	0x0489
+#define	memRemotePRNXon                         	0x048a
+#define	memRemotePRNXoff                        	0x048b
+#define	mem_mod2div_temp                        	0x048c
+#define	mem_contw_temp                          	0x048f
+#define	mem_attrib_list                         	0x0491
+#define	mem_current_adss                        	0x0493
+#define	mem_current_channel                     	0x0494
+#define	mem_current_frame_type                  	0x0495
+#define	mem_current_fcs                         	0x0496
+#define	mem_current_length                      	0x0497
+#define	mem_rfcomm_uih_payload_ptr              	0x0499
+#define	mem_uih_cmd_type                        	0x049b
+#define	mem_uih_length                          	0x049c
+#define	mem_param_payload_ptr                   	0x049e
+#define	mem_ms_param                            	0x04a0
+#define	mem_pn_credit_flow_type_info            	0x04a1
+#define	mem_pn_priority                         	0x04a2
+#define	mem_pn_acknowledg_timer                 	0x04a3
+#define	mem_pn_max_retrans                      	0x04a4
+#define	mem_rfcomm_send_adss                    	0x04a5
+#define	mem_rfcomm_send_frame_type              	0x04a6
+#define	mem_rfcomm_send_fcs                     	0x04a7
+#define	mem_rfcomm_send_offset                  	0x04a8
+#define	mem_sdp_mem_start                       	0x04a9
+#define	mem_uuid_search_pat                     	0x04a9
+#define	mem_sdp_continue_byte                   	0x04ad
+#define	mem_sdp_pduid                           	0x04af
+#define	mem_sdp_transactionid                   	0x04b0
+#define	mem_sdp_attribute_maxbyte               	0x04b2
+#define	mem_sdp_record_maxcnt                   	0x04b4
+#define	mem_sdp_error_code                      	0x04b6
+#define	mem_sdp_record_handle                   	0x04be
+#define	mem_sdp_search_failed                   	0x04c2
+#define	mem_sdp_LACAP_found                     	0x04c3
+#define	mem_sdp_RFCOMM_found                    	0x04c4
+#define	mem_handle_list                         	0x04c5
+#define	mem_handle_humber                       	0x04dd
+#define	mem_sdp_mem_end                         	0x04de
+#define	mem_rxbuf                               	0x04de
+#define	mem_random_number                       	0x04ef
+#define	mem_round_key                           	0x04ff
+#define	mem_kinit                               	0x050f
+#define	mem_input_store                         	0x051f
+#define	mem_x                                   	0x052f
+#define	mem_y                                   	0x053f
+#define	mem_y15                                 	0x054e
+#define	mem_pin_length                          	0x054f
+#define	mem_pin                                 	0x0550
+#define	mem_key_store                           	0x0560
+#define	mem_key_store_end                       	0x0571
+#define	memp_ar_key                             	0x0572
+#define	memp_ar_input                           	0x0574
+#define	mem_ar_hround                           	0x0576
+#define	mem_ec_infinite                         	0x0580
+#define	mem_ec_loopc                            	0x0581
+#define	memdat                                  	0x0582
+#define	mem_ax                                  	0x0582
+#define	mem_ay                                  	0x059a
+#define	mem_az                                  	0x05b2
+#define	mem_bx                                  	0x05ca
+#define	mem_by                                  	0x05e2
+#define	mem_bz                                  	0x05fa
+#define	mem_cx                                  	0x0612
+#define	mem_cy                                  	0x062a
+#define	mem_cy5                                 	0x0641
+#define	mem_cz                                  	0x0642
+#define	mem_k                                   	0x065a
+#define	mem_align                               	0x0672
+#define	mem_tmp1                                	0x0682
+#define	memahbak                                	0x0682
+#define	mem_tmp5                                	0x069a
+#define	memahsave                               	0x06a2
+#define	mem_tmp2                                	0x06b2
+#define	memahsave_end                           	0x06c2
+#define	mem_addr_padding                        	0x06c2
+#define	mem_addr_value                          	0x06c3
+#define	mem_tmp3                                	0x06ca
+#define	mem_t1                                  	0x06ca
+#define	mem_addr_value_end                      	0x06cf
+#define	mem_addr_iocap_end                      	0x06d2
+#define	mem_tmp0                                	0x06e2
+#define	mem_t0                                  	0x06e2
+#define	mem_tmp0a                               	0x06ea
+#define	mem_t2                                  	0x06fa
+#define	mem_t3                                  	0x0712
+#define	mem_t7                                  	0x072a
+#define	mem_p                                   	0x0742
+#define	mem_a                                   	0x075a
+#define	mem_b                                   	0x0772
+#define	mem_gx                                  	0x078a
+#define	mem_gy                                  	0x07a2
+#define	memh0                                   	0x07ba
+#define	mem_sp_state_start                      	0x07da
+#define	mem_sp_state                            	0x07da
+#define	mem_master_sp_state                     	0x07db
+#define	mem_sp_flag                             	0x07dc
+#define	mem_master_sp_flag                      	0x07dd
+#define	mem_sp_calc                             	0x07de
+#define	mem_sp_dh_ready                         	0x07df
+#define	mem_sp_localsm                          	0x07e0
+#define	mem_pairing_auth                        	0x07e1
+#define	mem_sp_flag_start                       	0x07e2
+#define	mem_sp_local_key_send_count             	0x07e2
+#define	mem_sp_remote_key_recv_count            	0x07e3
+#define	mem_sp_remote_key_invalid               	0x07e4
+#define	mem_sp_dhkey_invalid                    	0x07e5
+#define	mem_sp_iocap_local                      	0x07e6
+#define	mem_sp_iocap_remote                     	0x07e9
+#define	mem_sp_gkey                             	0x07ec
+#define	mem_sp_pubkey_remote                    	0x07f0
+#define	mem_sp_pubkey_remote_x                  	0x07f0
+#define	mem_sp_pubkey_remote_x_end              	0x0808
+#define	mem_sp_pubkey_remote_y                  	0x0808
+#define	mem_sp_dhkey                            	0x0820
+#define	mem_sp_dhkey_end                        	0x0838
+#define	mem_sp_random_local                     	0x0838
+#define	mem_sp_random_local_end                 	0x0848
+#define	mem_sp_random_remote                    	0x0848
+#define	mem_sp_random_remote_end                	0x0858
+#define	memresult                               	0x0858
+#define	mem_sp_calc_result                      	0x0858
+#define	memh                                    	0x0858
+#define	memg                                    	0x085c
+#define	memf                                    	0x0860
+#define	meme                                    	0x0864
+#define	mem_sp_calc_result_high                 	0x0868
+#define	memd                                    	0x0868
+#define	memc                                    	0x086c
+#define	memb                                    	0x0870
+#define	mema                                    	0x0874
+#define	mem_sp_check_result                     	0x0878
+#define	mem_sp_confirm_remote                   	0x0888
+#define	mem_sp_prarm_stack                      	0x0898
+#define	mem_UI_data_txbuff_length               	0x08a8
+#define	mem_ipc_skip_continue_proc              	0x08aa
+#define	mem_ui_timer_temp                       	0x08ab
+#define	mem_ipc_rega_temp                       	0x08ab
+#define	mem_usb_status                          	0x08af
+#define	mem_usb_fifo_empty                      	0x08b0
+#define	mem_usb_read_len                        	0x08b1
+#define	mem_usb_rxbuf                           	0x08b2
+#define	mem_usb_cnt                             	0x08f2
+#define	mem_usb_tx_enable                       	0x08f4
+#define	mem_usb_tx_count                        	0x08f5
+#define	mem_usb_set_protocol_count              	0x08f6
+#define	mem_usb_desc                            	0x08f7
+#define	mem_usb_state                           	0x08f8
+#define	mem_usb_idle_cnt                        	0x08f9
+#define	mem_usb_idle_timeout                    	0x08fb
+#define	mem_usb_trig_timeout                    	0x08fd
+#define	mem_usb_setup                           	0x08ff
+#define	mem_usb_setup_bmRequestType             	0x08ff
+#define	mem_usb_setup_bRequest                  	0x0900
+#define	mem_usb_setup_bValue                    	0x0901
+#define	mem_usb_setup_bValueH                   	0x0902
+#define	mem_usb_setup_wIndex                    	0x0903
+#define	mem_usb_setup_bLength                   	0x0905
+#define	mem_usb_setup_bLengthH                  	0x0906
+#define	mem_usb0_setup                          	0x0907
+#define	mem_bufptr                              	0x090f
+#define	mem_remain                              	0x0911
+#define	mem_devicedesc                          	0x0912
+#define	mem_hidreportdesc_kb                    	0x0926
+#define	mem_hidreportdesc_m                     	0x09ee
+#define	mem_confdesc                            	0x0ab6
+#define	mem_string0                             	0x0b1a
+#define	mem_string1                             	0x0b1f
+#define	mem_string2                             	0x0b3d
+#define	mem_string3                             	0x0b5b
+#define	mem_hold_contr                          	0x0b79
+#define	mem_hold_contw                          	0x0b7b
+#define	mem_fifo_temp                           	0x0b7d
+#define	mem_c51_flag                            	0x0b7e
+#define	mem_c51_lpm_lock                        	0x0b7f
+#define	mem_c51_wait_lpm                        	0x0b80
+#define	mem_wakup_from_power_flag               	0x0b81
+#define	mem_lmp_bb_disconnect_reason            	0x0b82
+#define	mem_c51_eeprom_buf                      	0x0b83
+#define	mem_c51_ipc_txbuf                       	0x0be7
+#define	mem_c51_ipc_rxbuf                       	0x0c4b
+#define	mem_c51_iicd_buf                        	0x0caf
+#define	mem_24g_rxbuf                           	0x0cb3
+#define	mem_24g_txbuf                           	0x0cd5
+#define	mem_24g_txpayload                       	0x0cf5
+#define	mem_24g_rxpayload                       	0x0d17
+#define	mem_24g_common_temp                     	0x0d37
+#define	mem_packet_length_temp                  	0x0d57
+#define	mem_le_cur_handle_start                 	0x0d58
+#define	mem_le_cur_handle_end                   	0x0d5a
+#define	mem_le_search_res                       	0x0d5c
+#define	mem_patch00                             	0x4000
+#define	mem_patch01                             	0x4001
+#define	mem_patch02                             	0x4002
+#define	mem_patch03                             	0x4003
+#define	mem_patch04                             	0x4004
+#define	mem_patch05                             	0x4005
+#define	mem_patch06                             	0x4006
+#define	mem_patch07                             	0x4007
+#define	mem_patch08                             	0x4008
+#define	mem_patch09                             	0x4009
+#define	mem_patch0a                             	0x400a
+#define	mem_patch0b                             	0x400b
+#define	mem_patch0c                             	0x400c
+#define	mem_patch0d                             	0x400d
+#define	mem_patch0e                             	0x400e
+#define	mem_patch0f                             	0x400f
+#define	mem_patch10                             	0x4010
+#define	mem_patch11                             	0x4011
+#define	mem_patch12                             	0x4012
+#define	mem_patch13                             	0x4013
+#define	mem_patch14                             	0x4014
+#define	mem_patch15                             	0x4015
+#define	mem_patch16                             	0x4016
+#define	mem_patch17                             	0x4017
+#define	mem_patch18                             	0x4018
+#define	mem_patch19                             	0x4019
+#define	mem_patch1a                             	0x401a
+#define	mem_patch1b                             	0x401b
+#define	mem_patch1c                             	0x401c
+#define	mem_patch1d                             	0x401d
+#define	mem_patch1e                             	0x401e
+#define	mem_patch1f                             	0x401f
+#define	mem_patch20                             	0x4020
+#define	mem_patch21                             	0x4021
+#define	mem_patch22                             	0x4022
+#define	mem_patch23                             	0x4023
+#define	mem_patch24                             	0x4024
+#define	mem_patch25                             	0x4025
+#define	mem_patch26                             	0x4026
+#define	mem_patch27                             	0x4027
+#define	mem_patch28                             	0x4028
+#define	mem_patch29                             	0x4029
+#define	mem_patch2a                             	0x402a
+#define	mem_patch2b                             	0x402b
+#define	mem_patch2c                             	0x402c
+#define	mem_patch2d                             	0x402d
+#define	mem_patch2e                             	0x402e
+#define	mem_patch2f                             	0x402f
+#define	mem_patch30                             	0x4030
+#define	mem_patch31                             	0x4031
+#define	mem_patch32                             	0x4032
+#define	mem_patch33                             	0x4033
+#define	mem_patch34                             	0x4034
+#define	mem_patch35                             	0x4035
+#define	mem_patch36                             	0x4036
+#define	mem_patch37                             	0x4037
+#define	mem_patch38                             	0x4038
+#define	mem_patch39                             	0x4039
+#define	mem_patch3a                             	0x403a
+#define	mem_patch3b                             	0x403b
+#define	mem_patch3c                             	0x403c
+#define	mem_patch3d                             	0x403d
+#define	mem_patch3e                             	0x403e
+#define	mem_patch3f                             	0x403f
+#define	mem_context                             	0x4040
+#define	mem_current_amaddr                      	0x4130
+#define	mem_lpm_mode                            	0x4131
+#define	mem_device_option                       	0x4132
+#define	mem_scan_mode                           	0x4133
+#define	mem_last_clkn                           	0x4134
+#define	mem_features                            	0x4138
+#define	mem_lap                                 	0x4140
+#define	mem_uap                                 	0x4143
+#define	mem_nap                                 	0x4144
+#define	mem_npage                               	0x4146
+#define	mem_glap                                	0x4147
+#define	mem_class                               	0x414a
+#define	mem_iscan_window                        	0x414d
+#define	mem_iscan_interval                      	0x414f
+#define	mem_pscan_window                        	0x4151
+#define	mem_pscan_interval                      	0x4153
+#define	mem_page_interval                       	0x4155
+#define	mem_page_window                         	0x4157
+#define	mem_page_to                             	0x4159
+#define	mem_inq_window                          	0x415b
+#define	mem_fcomp_mul                           	0x415d
+#define	mem_fcomp_div                           	0x415e
+#define	mem_rx_window_init                      	0x415f
+#define	mem_rx_window_sniff                     	0x4161
+#define	mem_rf_init_ptr                         	0x4163
+#define	mem_last_type                           	0x4165
+#define	mem_last_type_esco                      	0x4166
+#define	mem_last_type_saved                     	0x4167
+#define	mem_retransmission_cnt                  	0x4168
+#define	mem_next_btclk                          	0x416a
+#define	mem_seqi                                	0x416e
+#define	mem_rf_rccal                            	0x416f
+#define	mem_handle_num                          	0x4170
+#define	mem_max_slot                            	0x4171
+#define	mem_eir_enable                          	0x4172
+#define	mem_afh_instant                         	0x4173
+#define	mem_afh_error_total                     	0x4177
+#define	mem_afh_cfg                             	0x4179
+#define	mem_afh_new_mod                         	0x417a
+#define	mem_afh_map_lo                          	0x417b
+#define	mem_afh_map_hi                          	0x4180
+#define	mem_afh_used                            	0x4185
+#define	mem_afh_index                           	0x4186
+#define	mem_afh_map_new                         	0x4188
+#define	mem_afh_map                             	0x4193
+#define	mem_afh_timer                           	0x41e3
+#define	mem_afh_classify_channel_map            	0x41e7
+#define	mem_chip_functions                      	0x41f1
+#define	mem_lpm_wake_lock                       	0x41f3
+#define	mem_lpm_interval                        	0x41f5
+#define	mem_lpm_overhead                        	0x41f7
+#define	mem_lpm_hibernate_switch                	0x41f8
+#define	mem_esco_addr                           	0x41f9
+#define	mem_sniff_unint_lost                    	0x41fa
+#define	mem_ptt                                 	0x41fb
+#define	mem_sleep_counter                       	0x41fc
+#define	mem_sleep_counter_all                   	0x4200
+#define	mem_sleep_clkn                          	0x4204
+#define	mem_sniff_rcv                           	0x420a
+#define	mem_sniff_lost                          	0x420d
+#define	mem_clks_per_lpo                        	0x4210
+#define	mem_lpm_mult                            	0x4213
+#define	mem_lpm_mult_timeout                    	0x4214
+#define	mem_lpm_mult_cnt                        	0x4215
+#define	mem_lpm_config                          	0x4216
+#define	mem_lpm_xtalcnt                         	0x4219
+#define	mem_lpm_buckcnt                         	0x421a
+#define	mem_lpm_ldocnt                          	0x421b
+#define	mem_lpm_isogate                         	0x421c
+#define	mem_lpm_isogate_final                   	0x421d
+#define	mem_saved_gpio                          	0x421e
+#define	mem_saved_gsel                          	0x422e
+#define	mem_saved_mark                          	0x4231
+#define	mem_saved_spidctrl                      	0x4239
+#define	mem_patch_ptr                           	0x423a
+#define	mem_patch_len                           	0x423c
+#define	mem_timers                              	0x423e
+#define	mem_link_key_exists                     	0x425e
+#define	mem_link_key_eeprom_head                	0x425f
+#define	mem_link_key                            	0x4262
+#define	mem_hci_cmd                             	0x4272
+#define	mem_hci_conn_handle                     	0x4273
+#define	mem_hci_plap                            	0x4274
+#define	mem_hci_puap                            	0x4277
+#define	mem_hci_pnap                            	0x4278
+#define	mem_uartd_rxitems_got_data              	0x427a
+#define	mem_uartd_rxitems_threshold             	0x427b
+#define	mem_uartd_rx_timeout                    	0x427c
+#define	mem_app_state                           	0x427e
+#define	mem_app_handshake_flag                  	0x427f
+#define	mem_sniff_param_interval                	0x4280
+#define	mem_sniff_param_attempt                 	0x4282
+#define	mem_sniff_param_timeout                 	0x4284
+#define	mem_cb_check_wakelock                   	0x4286
+#define	mem_cb_before_hibernate                 	0x4288
+#define	mem_cb_before_lpm                       	0x428a
+#define	mem_cb_le_process                       	0x428c
+#define	mem_cb_bt_process                       	0x428e
+#define	mem_cb_idle_process                     	0x4290
+#define	mem_cb_bb_event_process                 	0x4292
+#define	mem_cb_discovry_timeout                 	0x4294
+#define	mem_cb_att_write                        	0x4296
+#define	mem_cb_update_notify_value              	0x4298
+#define	mem_device_nums                         	0x429a
+#define	mem_eeprom_base                         	0x429b
+#define	mem_unsniff2sniff_timer_count           	0x429d
+#define	mem_wake_up_delay_timer                 	0x429e
+#define	mem_app_connection_options              	0x429f
+#define	mem_app_disconn_reason                  	0x42a0
+#define	mem_app_disconn_reason_flag             	0x42a2
+#define	mem_at_using_flag                       	0x42a4
+#define	mem_lpm_delay_after_sniff               	0x42a5
+#define	mem_xrecord_mode                        	0x42a9
+#define	mem_eeprom_block_size                   	0x42aa
+#define	mem_baud                                	0x42ac
+#define	mem_hci_lt_rx_state                     	0x42ae
+#define	mem_l2cap_xmem_start                    	0x42af
+#define	mem_l2cap_tx_multi_offset               	0x42af
+#define	mem_sdp_remote_cid                      	0x42b1
+#define	mem_rfcomm_remote_cid                   	0x42b3
+#define	mem_hid_ctrl_remote_cid                 	0x42b5
+#define	mem_hid_int_remote_cid                  	0x42b7
+#define	mem_sdp_state                           	0x42b9
+#define	mem_rfcomm_state                        	0x42ba
+#define	mem_hid_control_state                   	0x42bb
+#define	mem_hid_interrupt_state                 	0x42bc
+#define	mem_spp_state                           	0x42bd
+#define	mem_ML2CAP_comm_id                      	0x42be
+#define	mem_used_map                            	0x42bf
+#define	mem_tx_fifo0                            	0x42c0
+#define	mem_tx_fifo0_map                        	0x42c0
+#define	mem_tx_fifo0_ptr                        	0x42c1
+#define	mem_tx_fifo1                            	0x42c3
+#define	mem_tx_fifo1_map                        	0x42c3
+#define	mem_tx_fifo1_ptr                        	0x42c4
+#define	mem_tx_fifo2                            	0x42c6
+#define	mem_tx_fifo2_map                        	0x42c6
+#define	mem_tx_fifo2_ptr                        	0x42c7
+#define	mem_tx_fifo3                            	0x42c9
+#define	mem_tx_fifo3_map                        	0x42c9
+#define	mem_tx_fifo3_ptr                        	0x42ca
+#define	mem_tx_fifo_end                         	0x42cc
+#define	mem_l2cap_lpm_txbuf                     	0x42cc
+#define	mem_l2cap_flow_ctrl_flag                	0x43cc
+#define	mem_l2cap_pending_item                  	0x43cd
+#define	mem_l2cap_xmem_end                      	0x43ce
+#define	mem_le_dsniff                           	0x43ce
+#define	mem_le_conn_interval                    	0x43d0
+#define	mem_le_scan_enable                      	0x43d2
+#define	mem_le_scan_interval                    	0x43d3
+#define	mem_le_scan_window                      	0x43d5
+#define	mem_le_adv_led                          	0x43d7
+#define	mem_le_adv_enable                       	0x43d8
+#define	mem_le_adv_data_len                     	0x43d9
+#define	mem_le_adv_data                         	0x43da
+#define	mem_le_scan_data_len                    	0x43f9
+#define	mem_le_scan_data                        	0x43fa
+#define	mem_le_name_len                         	0x4419
+#define	mem_le_name                             	0x441a
+#define	mem_le_led_on_time                      	0x442e
+#define	mem_le_new_map                          	0x442f
+#define	mem_le_new_param                        	0x4434
+#define	mem_le_new_window                       	0x4434
+#define	mem_le_new_offset                       	0x4435
+#define	mem_le_new_interval                     	0x4437
+#define	mem_le_new_latency                      	0x4439
+#define	mem_le_new_timeout                      	0x443b
+#define	mem_le_temp                             	0x443d
+#define	mem_le_txheader                         	0x443e
+#define	mem_le_txlen                            	0x443f
+#define	mem_le_txpayload                        	0x4440
+#define	mem_le_txcid                            	0x4442
+#define	mem_le_l2cap                            	0x4444
+#define	mem_le_l2cap_response                   	0x4445
+#define	mem_le_txbdy                            	0x4446
+#define	mem_le_pcnt_tx                          	0x4465
+#define	mem_le_pcnt_rx                          	0x446a
+#define	mem_le_last_mic                         	0x446f
+#define	mem_le_ivm                              	0x4473
+#define	mem_le_ivs                              	0x4477
+#define	mem_le_ltk                              	0x447b
+#define	mem_ltk_exists                          	0x448b
+#define	mem_le_rconfirm                         	0x448c
+#define	mem_le_srand                            	0x449c
+#define	mem_le_iat                              	0x44ac
+#define	mem_le_rat                              	0x44ad
+#define	mem_le_preq                             	0x44ae
+#define	mem_le_pres                             	0x44b5
+#define	mem_le_search_handle_start              	0x44bc
+#define	mem_le_search_handle_end                	0x44be
+#define	mem_le_att_offset                       	0x44c0
+#define	mem_le_search_att_type                  	0x44c0
+#define	mem_le_notify_handle                    	0x44c2
+#define	mem_le_uuid                             	0x44c4
+#define	mem_le_handle_data_len                  	0x44c6
+#define	mem_le_handle_data                      	0x44c7
+#define	mem_le_adv_param                        	0x44d7
+#define	mem_le_adv_interval_min                 	0x44d7
+#define	mem_le_adv_interval_max                 	0x44d9
+#define	mem_le_adv_type                         	0x44db
+#define	mem_le_adv_own_addr_type                	0x44dc
+#define	mem_le_adv_direct_addr_type             	0x44dd
+#define	mem_le_adv_direct_addr                  	0x44de
+#define	mem_le_adv_channel_map                  	0x44e4
+#define	mem_le_adv_filter_policy                	0x44e5
+#define	mem_le_conn_param                       	0x44e6
+#define	mem_le_conn_peer_addr_type              	0x44e6
+#define	mem_le_conn_peer_addr                   	0x44e7
+#define	mem_le_conn_own_addr_type               	0x44ed
+#define	mem_le_conn_interval_min                	0x44ee
+#define	mem_le_conn_interval_max                	0x44f0
+#define	mem_le_conn_latency                     	0x44f2
+#define	mem_le_conn_superto                     	0x44f4
+#define	mem_le_scan_params                      	0x44f6
+#define	mem_le_scan_type                        	0x44f6
+#define	mem_le_scan_own_addr_type               	0x44f7
+#define	mem_le_scan_filter_policy               	0x44f8
+#define	mem_le_lap                              	0x44f9
+#define	mem_le_uap                              	0x44fc
+#define	mem_le_nap                              	0x44fd
+#define	mem_le_xtype_fifo                       	0x44ff
+#define	mem_le_att_list                         	0x4504
+#define	mem_le_switch_send_data                 	0x46f8
+#define	mem_le_transmit_window                  	0x46f9
+#define	mem_lmp_version                         	0x46fd
+#define	mem_lmp_subversion                      	0x4700
+#define	mem_local_name_length                   	0x4702
+#define	mem_local_name                          	0x4703
+#define	mem_local_name2                         	0x4706
+#define	mem_local_name_end                      	0x4746
+#define	mem_unsniff2sniff_timer                 	0x4747
+#define	mem_switch_flag                         	0x4748
+#define	mem_eeprom_ota_base_addr                	0x4749
+#define	mem_pn_dlci                             	0x474b
+#define	mem_pn_max_frame_size                   	0x474c
+#define	memFCStemp1                             	0x474e
+#define	memFCStemp2                             	0x474f
+#define	memFCStemp3                             	0x4750
+#define	mem_rfcomm_initiator                    	0x4751
+#define	mem_remote_spp_channel                  	0x4752
+#define	mem_HIUfcs_SPP                          	0x4753
+#define	mem_HIUfcs_SPP_WCredits                 	0x4754
+#define	mem_rfcomm_send_more_pkt                	0x4755
+#define	mem_remote_credits                      	0x4756
+#define	mem_credit_given                        	0x4757
+#define	mem_ms_channel                          	0x4758
+#define	memui_uuid_table                        	0x4759
+#define	mem_all_uuid_16bits                     	0x475b
+#define	mem_all_uuid_128bits                    	0x4771
+#define	mem_sp_local_key_invalid                	0x4793
+#define	mem_sp_private_key                      	0x4794
+#define	mem_sp_pubkey_local                     	0x47ac
+#define	mem_sp_pubkey_local_x                   	0x47ac
+#define	mem_sp_pubkey_local_x_end               	0x47c4
+#define	mem_sp_pubkey_local_y                   	0x47c4
+#define	mem_ssp_enable                          	0x47dc
+#define	mem_ipc_lock_bt                         	0x47dd
+#define	mem_ipc_lock_c51                        	0x47de
+#define	mem_ipc_fifo_bt2c51                     	0x47df
+#define	mem_ipc_fifo_c512bt                     	0x47e4
+#define	mem_led_switch                          	0x47e9
+#define	mem_ui_button_timer                     	0x47ea
+#define	mem_ui_button_last_state                	0x47eb
+#define	mem_ui_timer_last_btclk                 	0x47ec
+#define	mem_discovery_timeout_timer_count       	0x47f0
+#define	mem_hid_handshake_timer_count           	0x47f2
+#define	memui_reconnect_mode                    	0x47f3
+#define	mem_ui_state_map                        	0x47f4
+#define	mem_ui_profile_supported                	0x47f6
+#define	mem_led_gpio                            	0x47f7
+#define	mem_led_dark_time                       	0x47f8
+#define	mem_led_light_time                      	0x47fa
+#define	mem_ui_button_timeout                   	0x47fc
+#define	mem_ui_button_gpio                      	0x47fd
+#define	mem_discovery_timeout                   	0x47fe
+#define	mem_ir_ptr                              	0x4800
+#define	mem_ir_type                             	0x4802
+#define	mem_ir_cmd                              	0x4803
+#define	mem_ir_play_count                       	0x4804
+#define	mem_ir_report_len                       	0x4805
+#define	mem_ir_pulse_zero                       	0x4807
+#define	mem_ir_pulse_one                        	0x4808
+#define	mem_ir_pulses                           	0x4809
+#define	mem_ir_sequence_len                     	0x4825
+#define	mem_ir_sequence                         	0x4826
+#define	mem_acl_credits                         	0x4800
+#define	mem_allow_switch                        	0x4802
+#define	mem_hci_acl_queue_start                 	0x4803
+#define	mem_hci_wake_clk                        	0x4807
+#define	mem_kb_state                            	0x4800
+#define	mem_kb_report_data                      	0x4802
+#define	mem_kb_keys                             	0x4808
+#define	mem_kb_rcv_led_data                     	0x4809
+#define	mem_kb_fast_wake_last                   	0x480a
+#define	mem_led_cap_gpio                        	0x480e
+#define	mem_led_num_gpio                        	0x480f
+#define	mem_led_scl_gpio                        	0x4810
+#define	mem_kb_map                              	0x4811
+#define	mem_kb_uuid_list                        	0x4811
+#define	mem_24g_paring_tx_power_param           	0x4a87
+#define	mem_5db_tx_power_param                  	0x4a91
+#define	mem_current_event                       	0x4a9b
+#define	mem_ipc_lock_rx_data_bt                 	0x4a9c
+#define	mem_ipc_lock_rx_data_c51                	0x4a9d
+#define	mem_ipc_lock_tx_data_bt                 	0x4a9e
+#define	mem_ipc_lock_tx_data_c51                	0x4a9f
+#define	mem_ipc_2bt_fifo_head                   	0x4aa0
+#define	mem_ipc_2bt_fifo_end                    	0x4b36
+#define	mem_ipc_2C51_fifo_head                  	0x4b36
+#define	mem_ipc_2C51_fifo_end                   	0x4b9a
+#define	mem_ipc_2bt_read_index                  	0x4b9a
+#define	mem_ipc_2bt_write_index                 	0x4b9c
+#define	mem_ipc_2C51_read_index                 	0x4b9e
+#define	mem_ipc_2C51_write_index                	0x4ba0
+#define	mem_ipc_tx_evt_buff                     	0x4ba2
+#define	mem_ipc_tx_evt                          	0x4ba4
+#define	mem_ipc_bt_timer                        	0x4ba5
+#define	mem_ipc_rx_type                         	0x4ba7
+#define	mem_queue_ele_num                       	0x4ba8
+#define	mem_queue_write                         	0x4ba9
+#define	mem_queue_read                          	0x4bab
+#define	mem_queue_start                         	0x4bad
+#define	mem_uart_packet                         	0x4bad
+#define	mem_data_ele0                           	0x4bb9
+#define	mem_data_ele1                           	0x4bc5
+#define	mem_data_ele2                           	0x4bd1
+#define	mem_queue_end                           	0x4bdd
+#define	mem_queue_temp                          	0x4bdd
+#define	mem_24g_rxdata_length                   	0x4bdf
+#define	mem_24g_pid                             	0x4be0
+#define	mem_24g_datalen                         	0x4be1
+#define	mem_24g_data_type                       	0x4be2
+#define	mem_24g_txlen                           	0x4be3
+#define	mem_24g_rx_window                       	0x4be4
+#define	mem_24g_ensure                          	0x4be6
+#define	mem_24g_get_ack_fail                    	0x4be7
+#define	mem_24g_retry                           	0x4be8
+#define	mem_24g_ch                              	0x4be9
+#define	mem_24g_current_ch_number               	0x4bea
+#define	mem_24g_paring_addr                     	0x4beb
+#define	mem_24g_pairing_sm                      	0x4bef
+#define	mem_24g_ch_map1                         	0x4bf0
+#define	mem_24g_ch_map2                         	0x4bf4
+#define	mem_24g_ch_map3                         	0x4bf8
+#define	mem_24g_ch_map4                         	0x4bfc
+#define	mem_24g_addr                            	0x4c00
+#define	mem_24g_check_dongle_times              	0x4c04
+#define	mem_24g_device_addr                     	0x4c06
+#define	mem_24g_no_ack                          	0x4c0a
+#define	mem_24g_enter_lpm_timer                 	0x4c0b
+#define	mem_24g_syncword                        	0x4c0c
+#define	mem_24g_syncword_crc8                   	0x4c0e
+#define	mem_24g_get_syncword_crc8               	0x4c0f
+#define	mem_rssi_hex_received                   	0x4c10
+#define	mem_rssi_signal_buf                     	0x4c11
+#define	mem_rssi_noise_buf                      	0x4c19
+#define	mem_rssi_noise_index                    	0x4c21
+#define	mem_rssi_signal_index                   	0x4c22
+#define	mem_last_txlch                          	0x4c23
+#define	mem_last_txlen                          	0x4c24
+#define	mem_last_txdata                         	0x4c26
+#define	mem_ipc_last_check_timer                	0x4c3a
+#define	mem_ipc_c51_timer                       	0x4c3e
+#define	mem_le_rx_window                        	0x4c40
+#define	mem_le_find_type_value_start_handle     	0x4c41
+#define	mem_le_find_type_value_end_handle       	0x4c43
+#define	mem_le_cur_att_type                     	0x4c45
+#define	mem_le_search_len                       	0x4c47
+#define	mem_le_ll_unknown_type                  	0x4c48
+#define	mem_le_pairing_state                    	0x4c49
+#define	mem_le_local_mtu                        	0x4c4a
+#define	mem_le_connection_updata_param          	0x4c4c
+#define	mem_ltk_states                          	0x4c5c
+#define	mem_pair_state                          	0x4c5d
+#define	mem_empty_count                         	0x4c5e
+#define	mem_shutter_find_type_value_flag        	0x4c5f
+#define	mem_le51_payload_len                    	0x4c60
+#define	mem_le51_cmd                            	0x4c61
+#define	mem_le51_tx_length                      	0x4c62
+#define	mem_le51_txbuff_inuse                   	0x4c63
+#define	mem_le51_txbuf                          	0x4c64
+#define	mem_ipc_bt_100ms_timer                  	0x4c6d
+#define	mem_ipc_c51_100ms_timer                 	0x4c6e
+#define	mem_adc_config_flag                     	0x4c6f
+#define	mem_adc_channel                         	0x4c70
+#define	mem_adc_0v                              	0x4c71
+#define	mem_adc_3v                              	0x4c73
+#define	mem_adc_current_value                   	0x4c75
+#define	mem_hibernate_flag                      	0x4c77
+#define	mem_new_supervision_to                  	0x4c78
+#define	mem_kb_wake_timer                       	0x4c7a
+#define	mem_kb_last_data                        	0x4c7b
+#define	mem_power_on_flag                       	0x4c8f
+#define	mem_caps_num_lock                       	0x4c90
+#define	mem_att_report_standard_key             	0x4c91
+#define	mem_att_report_media_key                	0x4c93
+#define	mem_att_report_system_ctrl              	0x4c95
+#define	mem_att_report_battery                  	0x4c97
+#define	mem_att_report_game                     	0x4c99
+#define	mem_att_report_mouse                    	0x4c9b
+#define	mem_suspend_flag                        	0x4c9d
+#define	mem_32asm_data_end                      	0x4c9e
+#define	mem_store_ltk_timer                     	0x4d16
+#define	mem_reconnect_continue                  	0x4d17
+#define	mem_le_pin_code                         	0x4d18
+#define	mem_le_send_security_request_flag       	0x4d1c
+#define	mem_24g_enter_hibernate                 	0x4d1d
+#define	mem_24g_txfail_cnt                      	0x4d21
+#define	mem_mouse_retry_flag                    	0x4d22
+#define	mem_24g_led_flag                        	0x4d23
+#define	mem_ui_timer_last_btclk_temp            	0x4d24
+#define	mem_ui_check_timer_setup                	0x4d28
+#define	mem_customize_timer_setup               	0x4d2c
+#define	mem_customize_timer                     	0x4d2e
+#define	mem_ios_mode_flag                       	0x4d2f
+#define	mem_version_yy_mm_dd                    	0x4d30
+#define	mem_24g_txbuf_new                       	0x4d34
+#define	mem_le_adv_swift_pair                   	0x4d48
+#define	mem_24g_enter_hibernate_setup           	0x4d4f
+#define	mem_24g_enter_hibernate_max             	0x4d53
+#define	mem_24g_short_sleep_counter             	0x4d57
+#define	mem_pc_sleep_flag                       	0x4d5a
+#define	mem_at_gpio                             	0x4800
+#define	mem_module_wake_up_gpio                 	0x4801
+#define	mem_module_state_gpio                   	0x4802
+#define	mem_module_connect_state_gpio           	0x4803
+#define	mem_module_version                      	0x4804
+#define	mem_last_uart_clock                     	0x480a
+#define	mem_current_packet_length               	0x480e
+#define	mem_module_prepare_tx_len               	0x4810
+#define	mem_module_state                        	0x4812
+#define	mem_module_task                         	0x4813
+#define	mem_cmode_addr                          	0x4814
+#define	mem_at_scan_time                        	0x481a
+#define	mem_prarm_pswd                          	0x481c
+#define	mem_prarm_uart                          	0x4820
+#define	mem_prarm_blename                       	0x4824
+#define	mem_prarm_name                          	0x4827
+#define	mem_prarm_bleadss                       	0x482b
+#define	mem_prarm_adss                          	0x482e
+#define	mem_prarm_vers                          	0x4832
+#define	mem_prarm_class                         	0x4836
+#define	mem_prarm_clrflg                        	0x483b
+#define	mem_prarm_reconn                        	0x4841
+#define	mem_prarm_bledis                        	0x4847
+#define	mem_prarm_dis                           	0x4849
+#define	mem_prarm_stsn                          	0x484c
+#define	mem_prarm_atp                           	0x4850
+#define	mem_prarm_list                          	0x4853
+#define	mem_prarm_role                          	0x4857
+#define	mem_prarm_sniff                         	0x485b
+#define	mem_prarm_ldev                          	0x4860
+#define	mem_prarm_rssi                          	0x4864
+#define	mem_prarm_cdev                          	0x4868
+#define	mem_prarm_bleinqr                       	0x486c
+#define	mem_prarm_inqr                          	0x486f
+#define	mem_prarm_cmode                         	0x4873
+#define	mem_prarm_mode                          	0x4878
+#define	mem_prarm_dmstate                       	0x487c
+#define	mem_prarm_discov                        	0x4883
+#define	mem_prarm_ota                           	0x4889
+#define	mem_prarm_bleconn                       	0x488c
+#define	mem_prarm_conn                          	0x488e
+#define	mem_prarm_pageout                       	0x4892
+#define	mem_prarm_recfail                       	0x4899
+#define	mem_module_uuid_list                    	0x48a0
+#define	mem_mouse_x                             	0x4800
+#define	mem_mouse_y                             	0x4802
+#define	mem_mouse_z                             	0x4804
+#define	mem_mouse_key                           	0x4805
+#define	mem_mouse_z_last                        	0x4806
+#define	mem_mouse_z_before                      	0x4807
+#define	mem_mouse_z_now                         	0x4808
+#define	mem_mouse_z_data                        	0x4809
+#define	mem_mouse_move_flag                     	0x480a
+#define	mem_reconnect_timeout                   	0x480b
+#define	mem_mouse_direct_timeout                	0x480c
+#define	mem_mouse_no_data_timeout               	0x480e
+#define	mem_mouse_blank_data_timeout            	0x4810
+#define	mem_mouse_discovery_timer               	0x4812
+#define	mem_mouse_direct_timer                  	0x4814
+#define	mem_mouse_no_data_timer                 	0x4816
+#define	mem_mouse_blank_data_timer              	0x4818
+#define	mem_mouse_send_blank_timer              	0x481a
+#define	mem_mouse_dpi                           	0x481b
+#define	mem_mouse_dpi_button_state              	0x481c
+#define	mem_mouse_test_cnt                      	0x481d
+#define	mem_le_hibernate_timer                  	0x481e
+#define	mem_mouse_mode_state                    	0x4820
+#define	mem_sensor_type                         	0x4821
+#define	mem_lbutton_gpio                        	0x4822
+#define	mem_rbutton_gpio                        	0x4823
+#define	mem_mbutton_gpio                        	0x4824
+#define	mem_dpi_button_gpio                     	0x4825
+#define	mem_sensor_data_gpio                    	0x4826
+#define	mem_whee_a_data_gpio                    	0x4827
+#define	mem_whee_b_data_gpio                    	0x4828
+#define	mem_conn_cnt                            	0x4829
+#define	mem_mouse_uuid_list                     	0x482a
+#define	mem_shutter_send_data                   	0x4800
+#define	mem_shutter_key_temp                    	0x4804
+#define	mem_shutter_send_length                 	0x4805
+#define	mem_shutter_clkn_bt_last                	0x4806
+#define	mem_shutter_key                         	0x480a
+#define	mem_shutter_flag                        	0x480b
+#define	mem_shutter_cable_unplug_conut          	0x480c
+#define	mem_shutter_hid_disconn_count           	0x480d
+#define	mem_shutter_1key_send_sm                	0x480e
+#define	mem_shutter_iphonekey_gpio              	0x480f
+#define	mem_shutter_androidkey_gpio             	0x4810
+#define	mem_shutter_key_number                  	0x4811
+#define	mem_shutter_uuid_list                   	0x4812
+#define	mem_mcmd                                	0xff0
+#define	mem_mouse_data                          	0xff1
+#define	mem_l2cap_rxbuff1                       	0x1000
+#define	mem_l2cap_rxbuff2                       	0x1400
+#define	mem_tx_buff0                            	0x1800
+#define	mem_tx_buff1                            	0x1880
+#define	mem_tx_buff2                            	0x1900
+#define	mem_tx_buff3                            	0x1980
+#define	mem_tx_buff4                            	0x1a00
+#define	mem_tx_buff5                            	0x1a80
+#define	mem_tx_buff6                            	0x1b00
+#define	mem_tx_buff7                            	0x1b80
+#define	mem_h5rx_buf                            	0x1800
+#define	mem_h5rx_buf_end                        	0x1bff
+#define	mem_h5tx_buf                            	0x1c00
+#define	mem_h5tx_buf_end                        	0x1fff
+#define	mem_module_rx_buf                       	0x4a00
+#define	mem_module_rx_buf_end                   	0x4fff
+#define	mem_module_tx_buf                       	0x1c00
+#define	mem_module_tx_buf_end                   	0x1fff
+#define	mem_ir_record                           	0x1800
+#define	mem_ir_record_max                       	0x1c
+#define	memk                                    	0x4b00
+#endif
Index: c51/c.bat
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/c51/c.bat	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/c51/c.bat	(working copy)
@@ -0,0 +1,10 @@
+perl util\hex2mif.pl < output\fw.hex ram > output\fwram.rom
+copy .\patch\kb.dat + .\patch\rf.dat .\patch\sch.rom 
+perl util\transform_name2addr.pl .\patch\sch.rom .\output\sched.rom .\patch\memmap.format
+copy .\patch\ramcode.rom .\output\
+copy .\patch\geneep.exe .\output\
+@rem copy .\patch\*.obj .\output\*.obj
+cd output
+geneep geneep ramcode.rom fwram.rom sched.rom
+cd ..
+:end
Index: c51/common.h
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/c51/common.h	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/c51/common.h	(working copy)
@@ -0,0 +1,20 @@
+#ifndef _YC_INCLUDE_H_
+#define _YC_INCLUDE_H_
+#include "type.h"
+#include "btreg.h"
+#include "hwreg.h"
+#include "sys.h"
+#include "utilities.h"
+#include "kbhid.h"
+#include "global_variable.h"
+#include "keyscan.h"
+#include "gpio.h"
+#include "led.h"
+#include "pwm.h"
+#include "bluetooth.h"
+#include "kb_process.h"
+#include "ipc.h"
+#include "iic.h"
+#include "adc.h"
+#endif
+
Index: c51/global_variable.h
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/c51/global_variable.h	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/c51/global_variable.h	(working copy)
@@ -0,0 +1,214 @@
+#ifndef _GLOBAL_VARIABLE_H_
+#define _GLOBAL_VARIABLE_H_
+#include "common.h"
+
+#define BAT_ARRAY_LEN				4
+
+typedef struct c51_device_state
+{
+	 byte currentState ;
+	 byte currentSubState;
+	 byte currentStateBefore;
+}DEVICE_STATE;
+
+typedef enum device_mode
+{
+	DEVICE_24G_MODE,
+	DEVICE_BLE_MODE,
+	DEVICE_BR_MODE,
+	DEVICE_MODE_NUM,
+}DEVICE_CURRENT_MODE;
+
+
+typedef enum led_type
+{
+	STYLE_NONE,
+	STYLE_BT_PAIRING,
+	STYLE_LOW_BAT,
+	STYLE_DEVICE_1,
+	STYLE_DEVICE_2,
+	STYLE_DEVICE_3,
+	STYLE_24G_PAIRING,
+	STYLE_BT_RECON,
+}EVT_LED_STYLE;
+
+typedef struct device_recode{
+	byte  device_type;
+	byte  device_addr[6];
+	byte  device_link_key[16] ;
+	byte  local_addr[6];
+	byte  system_mode;
+}BD_KEY_RECORD;
+
+
+typedef struct c51_global_variable		// 0x4cbf
+{
+	 byte update_eeprom_flag;		// 0x4cbf
+	 byte last_device_num;			// 0x4cc0
+	 byte system_mode;			// 0x4cc1
+	 byte power_on_action;			// 0x4cc2
+	 byte current_device_num;		// 0x4cc3
+	 byte temp_device_num;		// 0x4cc4
+
+	 byte g24_currentState;			// 0x4cc5
+	 byte g24_currentSubState;		// 0x4cc6
+	 byte ble_currentState;			// 0x4cc7
+	 byte ble_currentSubState;		// 0x4cc8
+	 byte br_currentState;			// 0x4cc9
+	 byte br_currentSubState;		// 0x4cca
+	 byte history_state;			// 0x4ccb
+
+	 byte button_reconnect_flag;	// 0x4ccc
+	 byte button_24G_rec_flag;		// 0x4ccd
+	 byte button_flag;				// 0x4cce
+	 byte button_timer[4];			// 0x4ccf~0x4cd2
+ 
+	 byte battery_check_interval;			// 0x4cd3
+	 byte battery_value_index;				// 0x4cd4
+	 byte battery_status;					// 0x4cd5
+	 word battery_value[BAT_ARRAY_LEN];	// 0x4cd6~0x4cdd
+	 word battery_level_low;				// 0x4cde
+	 word battery_level_shutdown;			// 0x4ce0
+
+	 byte battery_low_led_flash_interval;		// 0x4ce2
+
+		 
+	 word sleepTimer;						// 0x4ce3
+	 byte powerOn_timer;					// 0x4ce5
+	 byte sys_numlockled_on_timer;			// 0x4ce6
+	 byte sys_capslockled_on_timer;			// 0x4ce7
+	 byte sys_scrolllockled_on_timer;		// 0x4ce8
+	 byte pairing_timeout;					// 0x4ce9
+	 byte delay_enter_lpm_timer;			// 0x4cea
+	 
+	 byte release_data;					// 0x4ceb
+	 byte lockLpm;	 					// 0x4cec
+	 byte key_action;						// 0x4ced
+
+	 byte pairing_g24_timeout;				//0x4cee
+	 byte recon_delay;						// 0x4cef
+	 byte recon_count;						// 0x4cf0
+	 byte recon_continue;					// 0x4cf1
+	 byte ble_ramdon_lap1;					// 0x4cf2
+	 byte ble_ramdon_lap2;					// 0x4cf3 
+	 byte key_combination_step;			// 0x4cf4
+	 byte key_combination_ctrl;				// 0x4cf5
+	 byte key_combination_keyvalue;		// 0x4cf6
+	 byte battery_low_led_flash_flag;		// 0x4cf7
+	 byte one_key_press_wait_release_timer;	// 0x4cf8
+	 byte battery_level_percentage;			// 0x4cf9
+	 word battery_level_full;				// 0x4cfa
+	 byte fast_connect_send_name;
+	 byte system_mode_last;
+	 byte connect_button_temp;
+	 byte last_battery_status;
+	 byte system_win_app_lock_flag; 
+	 byte pwm_lpm_mode_flag;
+	 byte battery_shutdown_flag;
+	 byte backlight_level;
+	 byte backlight_speed;
+	 byte backlight_step;
+	 word backlight_switch_timer;
+	 byte backlight_duty_level;
+	 byte backlight_breathe_step_1;			//0x4c
+	 byte backlight_breathe_step_2;	
+	 byte backlight_breathe_step_3;	
+	 byte backlight_breathe_flag_1;			//0x4cea
+	 byte backlight_breathe_flag_2;	
+	 byte backlight_breathe_flag_3;	
+	 byte backlight_flag;
+	 byte backlight_breathe_step_flag;
+	 byte backlight_none_flag_R;
+	 byte backlight_none_flag_G;
+	 byte backlight_none_flag_B;
+	 byte backlight_none_step_R;
+	 byte backlight_none_step_G;
+	 byte backlight_none_step_B;
+	 byte g24_long_sleep_flag;
+ 	 byte backlight_kind;
+ 	 byte backlight_pattern;
+ 	 byte backlight_led;
+	 word battery_flash_timer; 	 
+	 byte test_buff;
+	
+}G_VARIABLE_MAP;
+
+
+
+extern G_VARIABLE_MAP xdata g_variable;
+
+extern BD_KEY_RECORD xdata bd_key_record_list[3] ;
+
+ extern xbyte m_caps_num_lock_last;
+
+ extern xbyte iOS_rec_pinCode;
+ extern xbyte pinCode_flag;
+ extern xbyte le_pin_code_len;
+ extern xbyte power_on_flag;
+ extern xbyte repeat_send_24g;
+ extern xbyte get_24g_led_send;
+ extern xbyte ble_reconnect_flag;
+ extern xbyte ble_fast_connect_flag;
+ extern xbyte press_long_time_flag;
+ extern xbyte long_press_flag;
+ extern xbyte standard_key_release_flag;
+ extern xbyte fast_connect_flag;
+ extern xbyte fn_flag;
+ extern xbyte fn_tx_flag;
+ extern xbyte fn_flag_last;
+ extern xbyte ksSelMapOld[];
+ extern xbyte ksSelMapCheck[];
+ extern xbyte ksSelMapCurr[]; 
+ extern xbyte le_lap_temp[3];
+ extern xbyte multikey[9];
+ extern xbyte mult_key_value;
+ extern  xbyte keyCount;
+ extern xbyte mult_key_status;
+ extern xbyte key_value_temp;
+ extern xbyte system_key_press;
+ extern xbyte recon_index;
+ extern xbyte le_send_battery_level_flag;
+ extern xbyte le_send_battery_level_delay_count;
+
+ extern xbyte delayChgInvTimer;
+ extern xbyte action_timeout;
+ extern xbyte switch_role_timer;
+ extern xbyte ble_send_secutiry_request_timer;
+  extern xbyte m_customize_timer_last;
+
+
+extern xbyte hidBuff[10] ;
+extern xbyte  m_link_key_exists  ;
+extern xbyte  m_ltk_exists  ;
+extern xbyte m_remote_le_addr[6]  ;
+extern xword m_ui_state_map  ;
+extern xbyte m_linkkey[16]   ;
+extern xbyte m_remote_addr[6]  ;
+extern xbyte m_reconn_addr[6]  ;
+extern xbyte m_le_ltk[16]  ;
+extern byte m_24g_addr[4] ;
+extern byte m_24g_paring_addr[4];
+extern byte kscurrmult;
+extern xbyte m_le_lap[6];
+extern xbyte m_reset_reg;
+extern xbyte m_lpm_mode;
+extern ulong le_pin_code;
+extern xword m_adcCurrentValue;
+extern xword m_adc3vValue; 
+extern xword m_adc0vBase;
+extern volatile xbyte m_adc_config_flag;
+extern volatile xbyte m_24g_enter_hibernate[4];
+extern volatile xbyte m_24g_pairing_sm;
+extern volatile xbyte  m_power_on_flag;
+extern volatile xbyte m_caps_num_lock;
+extern volatile xbyte m_reconnect_continue;
+extern volatile xbyte m_adc_channel;
+extern volatile xbyte m_wakup_from_power_flag;
+extern volatile xbyte m_le_send_security_request_flag;
+extern volatile xbyte m_local_name_length;
+extern volatile xbyte m_customize_timer;
+extern volatile xbyte m_24g_led_flag;
+extern volatile xbyte m_pc_sleep_flag;
+extern volatile xbyte bitkey[15];
+
+#endif //_GLOBAL_VARIABLE_H_
Index: c51/global_variable.c
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/c51/global_variable.c	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/c51/global_variable.c	(working copy)
@@ -0,0 +1,300 @@
+#include "global_variable.h"
+#include "Btreg.h"
+
+ 
+G_VARIABLE_MAP xdata g_variable _at_ mem_32asm_data_end;
+BD_KEY_RECORD xdata bd_key_record_list[3] ;
+
+
+// xbyte data random at 4dd0 to 4f40: makefile
+ xbyte m_caps_num_lock_last;
+ xbyte iOS_rec_pinCode;
+ xbyte pinCode_flag;
+ xbyte le_pin_code_len;
+ xbyte power_on_flag;
+ xbyte repeat_send_24g;
+ xbyte get_24g_led_send;
+ xbyte ble_reconnect_flag;
+ xbyte ble_fast_connect_flag;
+ xbyte press_long_time_flag;
+ xbyte long_press_flag;
+ xbyte standard_key_release_flag;
+ xbyte fast_connect_flag;
+ xbyte fn_flag;
+ xbyte fn_flag_last;
+ xbyte fn_tx_flag;
+ xbyte le_lap_temp[3];
+ xbyte multikey[9];
+ xbyte mult_key_value;
+ xbyte mult_key_status;
+ xbyte system_key_press;
+ xbyte key_value_temp;
+ xbyte keyCount;
+ xbyte recon_index;
+ xbyte le_send_battery_level_flag;
+ xbyte le_send_battery_level_delay_count; 
+
+ xbyte delayChgInvTimer;
+ xbyte action_timeout;
+ xbyte switch_role_timer;
+ xbyte ble_send_secutiry_request_timer;
+ xbyte m_customize_timer_last;
+
+
+volatile xbyte ksSelMapOld[KB_KSCAN_COL_NUM] _at_ 0x4d93;
+volatile xbyte ksSelMapCheck[KB_KSCAN_COL_NUM] _at_ 0x4da8;	// 4d93+20 = 4da8
+volatile xbyte ksSelMapCurr[KB_KSCAN_COL_NUM] _at_ 0x4dbc; 	// 4da8+20 = 4dbc
+volatile xbyte hidBuff[10] _at_ mem_mouse_x;
+volatile xbyte  m_link_key_exists _at_ mem_link_key_exists;
+volatile xbyte m_linkkey[16] _at_ mem_link_key ;
+volatile xbyte  m_ltk_exists _at_ mem_ltk_exists;
+volatile xbyte m_le_ltk[16] _at_ mem_le_ltk;
+volatile xbyte m_remote_le_addr[6] _at_ mem_le_plap;
+volatile xbyte m_remote_addr[6] _at_ mem_plap;
+volatile xbyte m_reconn_addr[6] _at_ mem_hci_plap;
+volatile byte m_24g_addr[4] _at_ mem_24g_addr;
+volatile byte m_24g_paring_addr[4] _at_ mem_24g_paring_addr;
+
+volatile xbyte m_le_lap[6] _at_ mem_le_lap;
+
+volatile byte kscurrmult _at_ mem_lpm_mult;
+volatile xword m_ui_state_map _at_ mem_ui_state_map;
+volatile xbyte m_reset_reg _at_ 0x8010;
+volatile xbyte m_lpm_mode _at_ mem_lpm_mode;
+volatile ulong le_pin_code _at_ mem_le_pin_code;
+volatile xword m_adcCurrentValue _at_ mem_adc_current_value;
+volatile xword m_adc3vValue _at_ mem_adc_3v;
+volatile xword m_adc0vBase _at_ mem_adc_0v;
+volatile xbyte m_adc_config_flag _at_ mem_adc_config_flag;
+volatile xbyte m_24g_enter_hibernate[4] _at_ mem_24g_enter_hibernate;
+volatile xbyte m_24g_pairing_sm _at_ mem_24g_pairing_sm;
+volatile xbyte  m_power_on_flag _at_ mem_power_on_flag;
+volatile xbyte m_caps_num_lock _at_ mem_caps_num_lock;
+volatile xbyte m_reconnect_continue _at_ mem_reconnect_continue;
+volatile xbyte m_adc_channel _at_ mem_adc_channel;
+volatile xbyte m_wakup_from_power_flag _at_ mem_wakup_from_power_flag;
+volatile xbyte m_le_send_security_request_flag _at_ mem_le_send_security_request_flag;
+volatile xbyte m_local_name_length _at_ mem_local_name_length;
+volatile xbyte m_customize_timer _at_ mem_customize_timer;
+volatile xbyte m_24g_led_flag _at_ mem_24g_led_flag;
+volatile xbyte m_pc_sleep_flag _at_ mem_pc_sleep_flag;
+
+volatile xbyte bitkey[15];
+
+code byte col[KB_KSCAN_COL_NUM+1]=
+{
+26,    		//C0
+8,    			//C1
+9,    			//C2
+10,    		//C3
+11,    		//C4
+12,    		//C5
+13,    		//C6
+14,    		//C7
+24,	    		//C8	
+25,    		//C9
+23,    		//C10
+18,    		//C11
+17,    		//C12
+16,    		//C13
+15,    		//C14
+22,			//C15
+27,			//C16
+28,			//C17
+};
+
+
+code byte  ksMap[KS_KEY_MAP_LEN]=
+{
+//c0
+HID_KEY_PAUSE, 				//R0
+HID_KEY_POWER, 				//R1
+HID_KEY_NULL, 				//R2
+HID_SYSTEM_KEY_SLEEP,				//R3
+HID_KEY_RIGHT_CTL, 			//R4
+HID_SYSTEM_KEY_WAKE_UP, 				//R5
+HID_KEY_LEFT_CTL, 			//R6
+HID_KEY_F5, 					//R7
+
+//c1
+HID_KEY_Q, 					//R0
+HID_KEY_TAB, 				//R1
+HID_KEY_A, 					//R2
+HID_KEY_ESC, 				//R3
+HID_KEY_Z,					//R4
+HID_KEY_NULL, 				//R5
+HID_KEY_TILDE, 				//R6
+HID_KEY_1, 					//R7
+
+//c2
+HID_KEY_W,					//R0
+HID_KEY_CAPS_LOCK, 		//R1
+HID_KEY_S, 					//R2
+HID_KEY_K45, 				//R3
+HID_KEY_X, 					//R4
+HID_KEY_NULL, 				//R5
+HID_KEY_F1,					//R6
+HID_KEY_2, 					//R7
+
+//C3
+HID_KEY_E, 					//R0
+HID_KEY_F3, 					//R1
+HID_KEY_D,					//R2
+HID_KEY_F4, 					//R3
+HID_KEY_C,					//R4
+HID_KEY_NULL,				//R5
+HID_KEY_F2,					//R6
+HID_KEY_3,					//R7
+
+//c4
+HID_KEY_R,					//R0		
+HID_KEY_T, 					//R1
+HID_KEY_F, 					//R2
+HID_KEY_G, 					//R3
+HID_KEY_V, 					//R4
+HID_KEY_B, 					//R5
+HID_KEY_5, 					//R6
+HID_KEY_4,					//R7
+
+//c5
+HID_KEY_U, 					//R0
+HID_KEY_Y,					//R1
+HID_KEY_J, 					//R2
+HID_KEY_H, 					//R3
+HID_KEY_M, 					//R4
+HID_KEY_N,					//R5
+HID_KEY_6, 					//R6
+HID_KEY_7, 					//R7
+
+//c6						
+HID_KEY_I, 					//R0
+HID_KEY_RIGHT_BRACKET, 	//R1
+HID_KEY_K, 					//R2
+HID_KEY_F6, 					//R3
+HID_KEY_LESS_THAN,			//R4
+HID_KEY_K56, 				//R5
+HID_KEY_EQUAL,				//R6
+HID_KEY_8, 					//R7
+
+
+//c7
+HID_KEY_O, 					//R0
+HID_KEY_F7,					//R1
+HID_KEY_L, 					//R2
+HID_KEY_NULL, 				//R3
+HID_KEY_GREAT_THAN, 		//R4
+HID_KEY_APP, 				//R5
+HID_KEY_F8, 					//R6
+HID_KEY_9,					//R7
+
+//c8
+HID_KEY_P,					//R0
+HID_KEY_LEFT_BRACKET,		//R1
+HID_KEY_SEMICOLON,		//R2
+HID_KEY_QUOTE,				//R3
+HID_KEY_K42,				//R4
+HID_KEY_SLASH,				//R5
+HID_KEY_MINUS, 				//R6
+HID_KEY_0,					//R7
+
+//c9
+HID_KEY_SCROLL_LOCK,		//R0
+HID_KEY_NULL,				//R1
+HID_KEY_NULL, 				//R2
+HID_KEY_LEFT_ALT, 			//R3
+HID_KEY_NULL,				//R4
+HID_KEY_RIGHT_ALT, 			//R5
+HID_KEY_QUOTE,				//R6
+HID_KEY_PRINT_SCREEN,  		//R7
+
+//c10 
+HID_KEY_K14, 				//R0
+HID_KEY_BACKSPACE, 		//R1	
+HID_KEY_BACK_SLASH, 		//R2
+HID_KEY_F11, 				//R3
+HID_KEY_ENTER, 				//R4
+HID_KEY_F12, 				//R5
+HID_KEY_F9, 					//R6
+HID_KEY_F10, 				//R7
+
+//c11 
+HID_KEY_KP_7, 				//R0
+HID_KEY_KP_4,				//R1
+HID_KEY_KP_1, 				//R2
+HID_KEY_SPACE, 				//R3
+HID_KEY_NUM_LOCK,			//R4
+HID_KEY_DOWN_ARROW, 		//R5
+HID_KEY_DELETE, 			//R6
+HID_KEY_POWER, 				//R7
+
+//c12 
+HID_KEY_KP_8, 				//R0
+HID_KEY_KP_5,				//R1
+HID_KEY_KP_2,				//R2
+HID_KEY_KP_0, 				//R3
+HID_KEY_KP_SLASH,			//R4
+HID_KEY_RIGHT_ARROW,		//R5
+HID_KEY_INSERT,				//R6
+HID_SYSTEM_KEY_SLEEP, 				//R7
+
+//c13 
+HID_KEY_KP_9, 				//R0
+HID_KEY_KP_6, 				//R1	
+HID_KEY_KP_3, 				//R2
+HID_KEY_KP_DEL, 			//R3
+HID_KEY_KP_ASTERISK, 		//R4
+HID_KEY_KP_MINUS, 			//R5
+HID_KEY_PAGE_UP, 			//R6
+HID_KEY_PAGE_DOWN, 		//R7
+
+//c14 
+HID_KEY_KP_PLUS,			//R0
+HID_KEY_NULL, 		//R1
+HID_KEY_KP_ENTER, 			//R2
+HID_KEY_UP_ARROW, 		//R3
+HID_KEY_PAUSE, 			//R4
+HID_KEY_LEFT_ARROW, 		//R5
+HID_KEY_HOME,				//R6
+HID_KEY_END,				//R7
+
+//c15 
+HID_SYSTEM_KEY_WAKE_UP,			//R0
+HID_KEY_LEFT_SHIFT, 		//R1
+HID_KEY_RIGHT_SHIFT, 			//R2
+HID_MULTIKEY_VOL_DOWN, 		//R3
+HID_MULTIKEY_VOL_UP, 			//R4
+HID_MULTIKEY_NEXT_TRACK, 		//R5
+HID_MULTIKEY_PRE_TRACK,				//R6
+HID_MULTIKEY_MEDIA,				//R7
+
+//c16 
+HID_MULTIKEY_MAIL,			//R0
+HID_KEY_FN, 		//R1
+HID_MULTIKEY_AC_FORWARD, 			//R2
+HID_MULTIKEY_AC_STOP, 		//R3
+HID_MULTIKEY_AC_BACK, 			//R4
+HID_MULTIKEY_AC_REFRESH, 		//R5
+HID_MULTIKEY_MUTE,				//R6
+HID_MULTIKEY_AC_SEARCH,				//R7
+
+//c17 
+HID_KEY_NULL,			//R0
+HID_MULTIKEY_AC_FAVORITES, 		//R1
+HID_KEY_RIGHT_GUI, 			//R2
+HID_MULTIKEY_MY_COMPUTER, 		//R3
+HID_MULTIKEY_STOP, 			//R4
+HID_MULTIKEY_CALCULATOR, 		//R5
+HID_MULTIKEY_AC_HOME,				//R6
+HID_KEY_NULL,				//R7
+
+//c18 
+HID_KEY_G,			//R0
+HID_KEY_NULL, 		//R1
+HID_KEY_NULL, 			//R2
+HID_KEY_NULL, 		//R3
+HID_KEY_NULL, 			//R4
+HID_KEY_NULL, 		//R5
+HID_KEY_B,				//R6
+HID_KEY_M,				//R7
+};
+
Index: c51/gpio.h
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/c51/gpio.h	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/c51/gpio.h	(working copy)
@@ -0,0 +1,83 @@
+
+#ifndef _GPIO_H
+#define _GPIO_H
+#include "type.h"
+#include "Hwreg.h"
+
+extern volatile xbyte YC_GPIOWakeupL[4];
+extern volatile xbyte YC_GPIOWakeupH[4];
+
+#define GPIO_SetBit(gpio_num,reg_base, bit_val) if(bit_val)  \
+		*(reg_base + (gpio_num >> 3 & 3)) |= 1<<(gpio_num & 7);	\
+	else	\
+		*(reg_base + (gpio_num >> 3 & 3)) &= ~(1<<(gpio_num & 7))
+
+/**
+ * This function gpio get input status.0 low,1high
+ * 
+ * @param gpio_num
+ * 
+ * @return none.
+*/
+bool GPIO_GetInputStatus(byte gpio_num);
+/**
+ * This function set gpio out.
+ * 
+ * @param gpio_num,bit_val bit_val 0 low, 1high
+ * 
+ * @return none.
+*/
+void GPIO_Setout(byte gpio_num, bool bit_val);
+/**
+ * This function set gpio input
+ * 
+ * @param gpio_num,st 1 pull down ,0 pull up.
+ * 
+ * @return none.
+*/
+void GPIO_SetInput(byte gpio_num,bit  st);
+
+/**
+ * This function set gpio input
+ * 
+ * @param gpio_num,st 1 high ,0 low.
+ * 
+ * @return none.
+*/
+void GPIO_SetOutput(byte gpio_num,bit  st);
+/**
+ * This function set gpio wake.This function must use with GPIO_SetInput.
+ * 
+ * @param gpio_num, st 1 high wake,0 low wake.
+ * 
+ * @return none.
+*/
+void GPIO_SetWakeup(byte gpio_num,bit  st);
+
+/**
+ * This function set gpio wake by curent state for fast wake mcu.
+ * 
+ * @param gpio_num, st 1 high wake,0 low wake.
+ * 
+ * @return none.
+*/
+void GPIO_SetWakeupByCurrentState(byte gpio_num);
+
+/**
+ * This function Flip output state.
+ * 
+ * @param gpio_num.
+ * 
+ * @return none.
+*/
+void GPIO_FlipOutBit(byte gpio_num);
+
+/* make all gpios into pd state if not output or pullhigh */
+void GPIO_fillpd();
+void GPIO_SetPd(byte gpio_num, bool bit_val);
+void GPIO_Setoe(byte gpio_num, bool bit_val);
+void GPIO_SetPu(byte gpio_num, bool bit_val);
+
+#endif /* YC_GPIO_H */
+
+
Index: c51/gpio.c
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/c51/gpio.c	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/c51/gpio.c	(working copy)
@@ -0,0 +1,137 @@
+#include "gpio.h"
+#include "Hwreg.h"
+#include "btreg.h"
+#include "utilities.h"
+
+volatile xbyte YC_GPIOWakeupL[4] _at_ mem_gpio_wakeup_low;
+volatile xbyte YC_GPIOWakeupH[4] _at_ mem_gpio_wakeup_high;
+
+static void gpioSetBit(byte gpio_num, char *reg_base, bool bit_val)
+{
+	byte queue = 0;
+	byte group = 0;
+
+	queue = (gpio_num & 7);
+	group = gpio_num >> 3 & 3;
+
+	if (bit_val) {
+		*(reg_base + group) |= 1 << queue;
+	}
+
+	else {
+		*(reg_base + group) &= ~(1 << queue);
+	}
+}
+
+static bool gpioGetBit(byte gpio_num, char *reg_base)
+{
+	byte queue = 0;
+	byte group = 0;
+
+	queue = (gpio_num & 7);
+	group = gpio_num >> 3 & 3;
+	return (*(reg_base + group) & (1 << queue));
+
+}
+
+bool GPIO_GetInputStatus(byte gpio_num)
+{
+	return gpioGetBit(gpio_num, &REG_GPIO_IN(0));
+}
+
+void GPIO_Setout(byte gpio_num, bool bit_val)
+{
+	if(gpio_num == 0xff)
+		return;
+	gpioSetBit(gpio_num, &REG_GPIO_OUT(0), bit_val);
+}
+
+void GPIO_SetPu(byte gpio_num, bool bit_val)
+{
+	if(gpio_num == 0xff)
+		return;
+	gpioSetBit(gpio_num, &REG_GPIO_PUP(0), bit_val);
+}
+
+void GPIO_SetPd(byte gpio_num, bool bit_val)
+{
+	if(gpio_num == 0xff)
+		return;
+	gpioSetBit(gpio_num, &REG_GPIO_PDN(0), bit_val);
+}
+
+void GPIO_Setoe(byte gpio_num, bool bit_val)
+{
+	if(gpio_num == 0xff)
+		return;
+	gpioSetBit(gpio_num, &REG_GPIO_OE(0), bit_val);
+}
+
+void GPIO_SetInput(byte gpio_num, bit st)
+{
+	if(gpio_num == 0xff)
+		return;
+	GPIO_SetPd(gpio_num, st);
+	GPIO_SetPu(gpio_num, ~st);
+	GPIO_Setoe(gpio_num, 0);
+}
+
+void GPIO_SetOutput(byte gpio_num, bit st)
+{
+	if(gpio_num == 0xff)
+		return;
+	GPIO_Setoe(gpio_num, 1);
+	GPIO_Setout(gpio_num, st);
+	GPIO_SetPu(gpio_num, 0);
+}
+
+void GPIO_SetWakeup(byte gpio_num, bit st)
+{
+	byte queue, group;
+
+	if(gpio_num == 0xff)
+		return;
+	queue = (gpio_num & 7);
+	group = (gpio_num >> 3 & 3);
+	if (st) {
+		*(YC_GPIOWakeupL + group) &= ~(1 << queue);
+		*(YC_GPIOWakeupH + group) |= 1 << queue;	//high wakeup
+	}
+
+	else {
+		*(YC_GPIOWakeupL + group) |= 1 << queue;	//low wakeup
+		*(YC_GPIOWakeupH + group) &= ~(1 << queue);
+	}
+}
+
+void GPIO_ClearWakeup(byte gpio_num)
+{
+	byte queue, group;
+	
+	if(gpio_num == 0xff)
+		return;
+	queue = (gpio_num & 7);
+	group = (gpio_num >> 3 & 3);
+	*(YC_GPIOWakeupL + group) &= ~(1 << queue);
+	*(YC_GPIOWakeupH + group) &= ~(1 << queue);
+}
+
+void GPIO_SetWakeupByCurrentState(byte gpio_num)
+{
+	bool st = GPIO_GetInputStatus(gpio_num);
+	GPIO_SetWakeup(gpio_num, ~st);
+}
+
+void GPIO_FlipOutBit(byte gpio_num)
+{
+	bool st = gpioGetBit(gpio_num, &REG_GPIO_OUT(0));
+	GPIO_Setout(gpio_num, ~st);
+}
+
+void GPIO_fillpd()
+{
+	byte i;
+	for(i = 0;i < 4;i++)
+		REG_GPIO_PDN(i) = ~(REG_GPIO_OE(i) | REG_GPIO_PUP(i));
+}
+
Index: c51/hwreg.h
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/c51/hwreg.h	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/c51/hwreg.h	(working copy)
@@ -0,0 +1,214 @@
+#ifndef _HWREG_H_
+#define _HWREG_H_
+
+
+#define HWRITED(reg, dword)	do{HWRITE(reg, (dword) & 0xff); \
+							HWRITE(reg + 1, (dword) >> 8 & 0xff); \
+							HWRITE(reg + 2, (dword) >> 16 & 0xff); \
+							HWRITE(reg + 3, (dword) >> 24 & 0xff); \
+							}while(0)
+
+#define HREADD(reg)			((u32_t)HREAD(reg)  | (u32_t)HREAD(reg + 1) << 8 | (u32_t)HREAD(reg + 2) << 16 | (u32_t)HREAD(reg + 3) << 24)
+
+#define ESWAP(word)			((word) >> 8 & 0xff | (word) << 8 & 0xff00)
+#define min(x,y) 				((x) < (y) ? (x) : (y))
+#define HREADW(reg)			(*((volatile unsigned int xdata *)(reg)))
+#define HWRITEW(mem, word)	HREADW(mem) = ESWAP(word)
+#define HREADWS(reg)			ESWAP(HREADW(reg))
+
+#define HREAD(reg)			(*(volatile unsigned char xdata *)(reg))
+#define HWRITE(reg, value)		*((volatile unsigned char xdata *)(reg)) = value
+
+#define SETBIT(reg, value)		HWRITE(reg,( (HREAD(reg)) | (value)))
+#define CLRBIT(reg, value)		HWRITE(reg, (HREAD(reg) & (~(value))))
+#define READBIT(reg, value)		((HREAD(reg)) & (value))
+#define BIT(x)					(1 << (x))
+
+
+#define PWM_EN			0x8084
+
+#define GPIO_OE(X)      0x8070 + X
+#define GPIO_OUT(X)     0x8074 + X
+#define GPIO_PUP(X)     0x8078 + X
+#define GPIO_PDN(X)     0x807c + X
+#define GPIO_SEL(X)     0x8080 + X
+#define GPIO_KEY(X)     0x8083 + X
+
+#define GPIO_IN(X)      0x811c + X
+
+
+#define PWM_PCOUNT(X)	(0x80a0 + X*4)
+#define PWM_NCOUNT(X)	(0x80a2 + X*4)
+
+#define CLOCK_SEL			0x8044
+#define CLOCK_SEL_12M		9
+
+#define LPM_EXENOE		0x813e
+
+// math cordic
+#define CORDIC_TYPE    	0x8053
+#define CORDIC_A     		0x80a8
+#define CORDIC_B     		0x80ac
+#define PERF_STATUS		0x812d
+#define CORDIC_RESULT     	0x8120
+
+#define YC_TYPE_SIN		0
+#define YC_TYPE_ATAN	1
+#define YC_TYPE_MULT	2
+#define YC_TYPE_DIV		3
+#define YC_TYPE_ASIN	         4
+#define YC_TYPE_SQRT	5
+#define YC_TYPE_COS		6
+#define YC_TYPE_TAN		7
+
+// DMA UART
+#define UART_BAUD     0x8052
+#define UART_RSADDR   0x8054
+#define UART_READDR   0x8056 
+#define UART_RRPTR    0x8058
+#define UART_TSADDR   0x805a 
+#define UART_TEADDR   0x805c 
+#define UART_TWPTR    0x805e
+#define UART_TRPTRP   0x8060 
+#define UART_CTRL     0x8062 
+#define CLKN	0x8100
+
+#define UART_STATUS  0x810c
+#define UART_RBAUD   0x810d 
+#define UART_TXITEMS 0x810e 
+#define UART_TRPTR   0x8110 
+#define UART_RXITEMS 0x8112 
+#define UART_RDPTR   0x8114 
+#define UART_RWPTR   0x8116 
+
+#define KSCN_KSCTRL                 	0x8063
+#define KSCN_RCTC                    	0x8064
+#define KSCN_ROW_MASK                	0x806f
+
+#define KSCN_EVENT_BUF           	0x811a
+#define KSCN_EVENT_NUM           	0x811b
+
+
+#define  CPUA_ICE_CTRL (*(volatile unsigned char xdata *)(0x8280))
+
+#define CPUB_ICE_BK0_LO			0x8205
+#define CPUB_ICE_BK0_HI			0x8206
+
+#define IIC_ADDR_START		0x8300
+#define IIC_PRER_LOW			0x8300
+#define IIC_SLAVE_ADDR		0x8301
+#define IIC_CTR				0x8302
+#define IIC_CR				0x8303
+#define IIC_RXR				0x8304
+#define IIC_TXR				0x8305
+#define IIC_SR				0x8306
+#define IIC_FIFO				0x8307
+
+#define USB_CONFIG		0x8c00
+#define USB_INT_MASK(x)	(0x8c01 + x)
+#define USB_TRG			0x8c10
+#define USB_STALL		0x8c11
+#define USB_CLEAR		0x8c12
+#define USB_EP(x)			(0x8c18 + x)
+#define USB_EP_LEN(x)		(0x8c20 + x)
+
+
+#define USB_STATUS		0x8c26
+#define USB_FIFO_EMPTY	0x8c27
+
+sfr DFIFO0     = 0x94;
+sfr DFIFO1     = 0x95;
+sfr DFIFO2     = 0x96;
+
+
+#define PWM_CLOCK           5 
+#define REG_CLK_OFF(n)		(*(volatile unsigned char xdata *)(0x8050 + n))
+
+#define REG_PWM_ENABLE   	(*(volatile unsigned char xdata *)0x8085)
+#define REG_PWM_CLK_SEL 	(*(volatile unsigned char xdata *)0x8042)
+#define REG_PWM_PCOUNT(n) 	(*(volatile unsigned char xdata *)(0x80a0 + n*4))
+#define REG_PWM_NCOUNT(n) 	(*(volatile unsigned char xdata *)(0x80a2 + n*4))
+
+
+#define REG_UART_CLK_SEL	(*(volatile unsigned char xdata *)0x8043)
+#define REG_UART_BAUD		(*(volatile unsigned short xdata *)0x8052)
+#define REG_UART_BAUD_HI		(*(volatile unsigned char xdata *)0x8053)
+#define REG_UART_RX_ADDR_S	(*(volatile unsigned short xdata *)0x8054)
+#define REG_UART_RX_ADDR_E 	(*(volatile unsigned short xdata *)0x8056)
+#define REG_UART_RX_PTR_R	(*(volatile unsigned short xdata *)0x8058)
+#define REG_UART_TX_ADDR_S	(*(volatile unsigned short xdata *)0x805a)
+#define REG_UART_TX_ADDR_E	(*(volatile unsigned short xdata *)0x805c)
+#define REG_UART_TX_PTR_W	(*(volatile unsigned short xdata *)0x805e)
+#define REG_UART_TX_PTRP_R	(*(volatile unsigned short xdata *)0x8060)
+#define REG_UART_CTRL		(*(volatile unsigned char xdata *)0x8062)
+
+//read only
+#define REG_UART_STATUS		(*(volatile unsigned char xdata *)0x810c)
+#define REG_UART_DET_BAUD	(*(volatile unsigned char xdata *)0x810d)
+#define REG_UART_TX_ITEMS	(*(volatile unsigned short xdata *)0x810e)
+#define REG_UART_TX_PTR_R	(*(volatile unsigned short xdata *)0x8110)
+#define REG_UART_RX_ITEMS	(*(volatile unsigned short xdata *)0x8112)
+#define REG_UART_RX_DPTR_R	(*(volatile unsigned short xdata *)0x8114)
+#define REG_UART_RX_PTR_W	(*(volatile unsigned short xdata *)0x8116)
+
+#define REG_GPIO_SELECT(n)	(*(volatile unsigned char xdata *)(0x8080 + n))
+
+#define REG_GPIO_OE(n) 	(*(volatile unsigned char xdata *)(0x8070 + n))
+#define REG_GPIO_OUT(n)	(*(volatile unsigned char xdata *)(0x8074 + n))
+#define REG_GPIO_PUP(n) 	(*(volatile unsigned char xdata *)(0x8078 + n))
+#define REG_GPIO_PDN(n)	(*(volatile unsigned char xdata *)(0x807c + n))
+#define REG_GPIO_SEL(n) 	(*(volatile unsigned char xdata *)(0x8080 + n))
+#define REG_GPIO_KEY(n) 	(*(volatile unsigned char xdata *)(0x8083 + n))
+
+#define REG_GPIO_IN(n)	(*(volatile unsigned char xdata *)(0x811c + n))	//n=0,1,2,3
+
+#define REG_MISC_CTRL			(*(volatile unsigned char xdata *)(0x8006))
+
+
+#define REG_SPID_CTRL  			(*(volatile unsigned char xdata *)(0x8086))
+#define REG_SPID_DELAY  		(*(volatile unsigned char xdata *)(0x8087))
+#define REG_SPID_TXADDR			(*(volatile unsigned short xdata *)(0x808a))
+#define REG_SPID_RXADDR			(*(volatile unsigned short xdata *)(0x808c))
+#define REG_SPID_TXLEN			(*(volatile unsigned short xdata *)(0x8088))
+#define REG_SPID_RXLEN			(*(volatile unsigned short xdata *)(0x808e))
+
+#define REG_IICD_CTRL			(*(volatile unsigned char xdata *)(0x8090))
+#define REG_IICD_SCL_LOW		(*(volatile unsigned char xdata *)(0x8091))
+#define REG_IICD_SCL_HIGH		(*(volatile unsigned char xdata *)(0x8092))
+#define REG_IICD_START_SETUP		(*(volatile unsigned char xdata *)(0x8093))
+#define REG_IICD_START_HOLD		(*(volatile unsigned char xdata *)(0x8094))
+#define REG_IICD_STOP_SETUP		(*(volatile unsigned char xdata *)(0x8095))
+#define REG_IICD_DATA_SETUP		(*(volatile unsigned char xdata *)(0x8096))
+#define REG_IICD_DATA_HOLD		(*(volatile unsigned char xdata *)(0x8097))
+#define REG_IICD_TXLEN			(*(volatile unsigned short xdata *)(0x8098))
+#define REG_IICD_TXADDR			(*(volatile unsigned short xdata *)(0x809a))
+#define REG_IICD_RXADDR			(*(volatile unsigned short xdata *)(0x809c))
+#define REG_IICD_RXLEN			(*(volatile unsigned short xdata *)(0x809e))
+#define REG_CLKN					(*(volatile unsigned long xdata *)(0x8100))
+#define REG_DMA_STATUS			(*(volatile unsigned char xdata *)(0x812c))
+
+#define REG_RFEN_ADC			(*(volatile unsigned char xdata *)(0x8906))
+#define REG_ADC_IN				(*(volatile unsigned short xdata *)(0x812e))
+#define REG_RF_ADC_GC			(*(volatile unsigned char xdata *)(0x8972))
+#define REG_RFEN_CHGPUMP		(*(volatile unsigned char xdata *)(0x8973))
+#define REG_RF_ADC_MODE		(*(volatile unsigned char xdata *)(0x8971))
+#define CORE_ADC_SUM		(*(volatile unsigned short xdata *)(0x8150))
+
+#define REG_KSCAN_KSCTRL				(*(volatile unsigned char xdata *)(0x8063))
+#define REG_KSCAN_RCTC				(*(volatile unsigned char xdata *)(0x8064))
+#define REG_KSCAN_SCANCYCLE_TIMER_L	(*(volatile unsigned char xdata *)(0x8065))
+#define REG_KSCAN_SCANCYCLE_TIMER_H	(*(volatile unsigned char xdata *)(0x8066))
+
+
+#define REG_KSCAN_KSTAT				(*(volatile unsigned char xdata *)(0x8119))
+#define REG_KSCAN_EVENT				(*(volatile unsigned char xdata *)(0x811a))
+#define REG_KSCAN_EVENT_NUM			(*(volatile unsigned char xdata *)(0x811b))
+
+#define REG_KSCAN_M_DEBOUNCE		(*(volatile unsigned char xdata *)(0x8067))
+#define REG_KSCAN_MODKEY				(*(volatile unsigned char xdata *)(0x8068))
+#define REG_KSCAN_ROWMASK			(*(volatile unsigned char xdata *)(0x806f))
+#define REG_CONFIG						(*(volatile unsigned char xdata *)(0x8043))
+
+
+
+#endif
Index: c51/iic.h
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/c51/iic.h	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/c51/iic.h	(working copy)
@@ -0,0 +1,46 @@
+/*
+ * Copyright 2016, yichip Semiconductor(shenzhen office)
+ * All Rights Reserved.
+ *
+ * This is UNPUBLISHED PROPRIETARY SOURCE CODE of Yichip Semiconductor;
+ * the contents of this file may not be disclosed to third parties, copied
+ * or duplicated in any form, in whole or in part, without the prior
+ * written permission of Yichip Semiconductor.
+ */
+ 
+ /** @file
+ *
+ * IIC support for application
+ */
+#ifndef __DEV_EEP_H_
+#define __DEV_EEP_H_
+#include "type.h"
+#include "btreg.h"
+#include "hwreg.h"
+
+/**
+ * This function read data by IIC,Warning:pbuff can't not piont to address > 0x4000.
+ * 
+ * @param addr IIC address ,len length to read,pbuff pointer to restore data
+ * 
+ * @return none.
+*/
+void IIC_Read(word addr, word len, byte* pbuff);
+/**
+ * This function write data by IIC,Warning:pbuff can't not piont to address > 0x4000.
+ * 
+ * @param addr IIC address ,len length to write,pbuff pointer to store data
+ * 
+ * @return none.
+*/
+void IIC_write(word addr,word len, byte* pbuff);
+/**
+ * This function write data by IIC,can't ignore page of block device,Warning:pbuff can't not piont to address > 0x4000.
+ * 
+ * @param addr IIC address ,len length to read,pbuff pointer to store data
+ * 
+ * @return none.
+*/
+void IIC_WriteBlock(word addr, word len, byte* pbuff);
+#endif/* YC_IIC_H */
+
Index: c51/iic.c
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/c51/iic.c	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/c51/iic.c	(working copy)
@@ -0,0 +1,61 @@
+#include "iic.h"
+#include "utilities.h"
+
+#define EEP_PAGE_SIZE  16
+#define EEP_DEV_ADDR	(0 << 1) & 6
+#define IIC_TEMP_BUFF_LEN 100
+
+static xbyte IIC_TempBuff[IIC_TEMP_BUFF_LEN] _at_ mem_c51_eeprom_buf;
+static xbyte YC_IICDTbuf[4] _at_ mem_c51_iicd_buf;
+
+static void IIcWaitDone(void)
+{
+	while (!(REG_DMA_STATUS & (1 << 5))) ;
+}
+
+void IIC_Read(word addr, word len, byte * pbuff)
+{
+	word mem_src = addr;
+	REG_IICD_TXLEN = ESWAP(4);
+	YC_IICDTbuf[0] = 0xa0 | EEP_DEV_ADDR;
+	*(word *) (YC_IICDTbuf + 1) = mem_src;
+	YC_IICDTbuf[3] = 0xa1 | EEP_DEV_ADDR;
+	REG_IICD_TXADDR = ESWAP((word) & YC_IICDTbuf);
+	REG_IICD_RXLEN = ESWAP(len);
+	REG_IICD_RXADDR = ESWAP((word) IIC_TempBuff);
+	REG_IICD_CTRL = 2;
+	if (!(REG_IICD_RXADDR & (1 << 7))) {
+		REG_IICD_CTRL |= 1;
+	}
+	REG_MISC_CTRL |= 1 << 2;	//start iic dma
+	IIcWaitDone();
+	xmemcpy(pbuff, IIC_TempBuff, len);
+}
+
+void IIC_write(word addr, word len, byte * pbuff)
+{
+	dmemcpy(IIC_TempBuff + 3, pbuff, len);
+	IIC_TempBuff[0] = 0xa0;
+	(word) IIC_TempBuff[1] = addr;
+	REG_IICD_TXLEN = ESWAP(len + 3);
+	REG_IICD_TXADDR = ESWAP((word) IIC_TempBuff);
+	REG_IICD_RXLEN = 0;
+	REG_IICD_CTRL = 1;
+	REG_MISC_CTRL |= 1 << 2;	//start iic dma
+	IIcWaitDone();
+}
+
+void IIC_WriteBlock(word addr, word len, byte * pbuff)
+{
+	word cris, curr_len;
+	while (len) {
+		cris = (addr | (EEP_PAGE_SIZE - 1)) + 1;
+		curr_len = cris - addr;
+		curr_len = min(curr_len, len);
+		len -= curr_len;
+		IIC_write(addr, curr_len, pbuff);
+		Delay1ms(10);
+		pbuff += curr_len;
+		addr += curr_len;
+	};
+}
Index: c51/ipc.h
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/c51/ipc.h	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/c51/ipc.h	(working copy)
@@ -0,0 +1,313 @@
+/*
+ * Copyright 2016, yichip Semiconductor(shenzhen office)
+ * All Rights Reserved.
+ *
+ * This is UNPUBLISHED PROPRIETARY SOURCE CODE of Yichip Semiconductor;
+ * the contents of this file may not be disclosed to third parties, copied
+ * or duplicated in any form, in whole or in part, without the prior
+ * written permission of Yichip Semiconductor.
+ */
+ 
+ /** @file
+ *
+ * ipc support for application
+ */
+#ifndef _YC_IPC_H_
+#define _YC_IPC_H_
+#include "type.h"
+#include "btreg.h"
+
+#define BUG_FIX
+#ifdef BUG_FIX
+#define FIX_ENTER_LPM	0x01
+#define FIX_ENTER_HIBERNATE	0x03
+#define FIX_LEAVE_LPM	0x05
+
+#endif
+
+
+/* IPC tx hardware address */
+#define IPC_TX_HEAD	mem_ipc_2bt_fifo_head
+#define IPC_TX_END	mem_ipc_2bt_fifo_end
+
+/*IPC rx hardware address*/
+#define IPC_RX_HEAD	mem_ipc_2C51_fifo_head
+#define IPC_RX_END	mem_ipc_2C51_fifo_end
+
+/*IPC data type*/
+#define IPC_CONTROL_CMD		0x01
+#define IPC_CONTROL_EVT		0x02
+#define IPC_HID_DATA			0x03
+#define IPC_SPP_DATA			0x04
+#define IPC_BLE_DATA			0x05
+#define IPC_24G_DATA			0x06
+
+/*IPC cmd type*/
+#define IPC_CMD_STANDBY                                  	0x00
+#define IPC_CMD_START_DISCOVERY                   	0x01
+#define IPC_CMD_STOP_DISCOVERY                      	0x02
+#define IPC_CMD_RECONNECT                              	0x03
+#define IPC_CMD_DISCONNECT                               0x04
+#define IPC_CMD_ENTER_SNIFF                              	0x05
+#define IPC_CMD_EXIT_SNIFF                               	0x06
+#define IPC_CMD_ENTER_SNIFF_SUBRATING         0x07
+#define IPC_CMD_EXIT_SNIFF_SUBRATING             0x08
+#define IPC_CMD_SNIFF_TEST                               	0x09
+#define IPC_CMD_SET_PIN_CODE                           	0x0a
+#define IPC_CMD_START_INQUIRY                          0x0b
+#define IPC_CMD_STOP_INQUIRY                            0x0c
+#define IPC_CMD_START_ADV                                	0x0d
+#define IPC_CMD_STOP_ADV                                 	0x0e
+#define IPC_CMD_START_DIRECT_ADV                   0x0f
+#define IPC_CMD_STOP_DIRECT_ADV                    	0x10
+#define IPC_CMD_LE_DISCONNECT                        	0x11
+#define IPC_CMD_LE_UPDATE_CONN                     	0x12
+#define IPC_CMD_LED_OFF                                  	0x13
+#define IPC_CMD_LED_ON                                   	0x14
+#define IPC_CMD_LED_BLINK                                	0x15
+#define IPC_CMD_LE_START_CONN                     	0x16
+#define IPC_CMD_LE_START_SCAN                      	0x17
+#define IPC_CMD_LE_STOP_SCAN                         	0x18
+#define IPC_CMD_ENTER_HIBERNATE                    	0x19
+#define IPC_CMD_LE_SMP_SECURITY_REQUEST   0x1b
+#define IPC_CMD_LE_START_WRITE                      	0x1c
+#define IPC_CMD_ROLE_SWITCH                          	0x1d
+#define IPC_CMD_BB_RECONN_CANCEL              	0x1e
+#define IPC_CMD_STORE_RECONN_INFO_LE        	0x1f
+#define IPC_CMD_STORE_RECONN_INFO_BT        	0x20
+#define IPC_CMD_START_24G                                	0x21
+#define IPC_CMD_STOP_24G                                 	0x22
+#define IPC_CMD_PAIR_24G                                 	0x23
+#define IPC_CMD_UPDATE_SUPERVISION_TO     	0x28
+#define IPC_CMD_LE_SET_PINCODE                      	0x29
+#define IPC_CMD_SET_RECONNECT_INIT          	0x2a
+#define IPC_CMD_START_ADV_REC                      	0x2b
+#define IPC_CMD_START_ADV_DISCOVERY            0x2c
+
+
+/*IPC event type*/
+#define IPC_EVT_NULL                                     		0x00
+#define IPC_EVT_BB_CONNECTED                       	0x01
+#define IPC_EVT_BB_DISCONNECTED                   	0x02
+#define IPC_EVT_RECONN_STARTED                     	0x03
+#define IPC_EVT_RECONN_FAILED                       	0x04
+#define IPC_EVT_SETUP_COMPLETE                     	0x05
+#define IPC_EVT_HID_CONNECTED                       	0x06
+#define IPC_EVT_HID_DISCONNECTED                   	0x07
+#define IPC_EVT_SPP_CONNECTED                     	0x08
+#define IPC_EVT_SPP_DISCONNECTED                  	0x09
+#define IPC_EVT_PINCODE_REQ                           	0x0A
+#define IPC_EVT_ENTER_SNIFF                              	0x0B
+#define IPC_EVT_EXIT_SNIFF                               	0x0C
+#define IPC_EVT_ENTER_SNIFF_SUB                     	0x0D
+#define IPC_EVT_EXIT_SNIFF_SUB                      	0x0E
+#define IPC_EVT_DISCOVERY_STOPED                 	0x0F
+#define IPC_EVT_BUTTON_LONG_PRESSED         	0x10
+#define IPC_EVT_HID_HANDSHAKE                         	0x12
+#define IPC_EVT_RECONN_PAGE_TIMEOUT          	0x13
+#define IPC_EVT_LE_CONNECTED                         	0x14
+#define IPC_EVT_LE_DISCONNECTED                    	0x15
+#define IPC_EVT_ML2CAP_CONN_REFUSED           	0x16
+#define IPC_EVT_BUTTON_ENTER_HIBERNATE     	0x17
+#define IPC_EVT_LINKKEY_GENERATE                   	0x18
+#define IPC_EVT_SWITCH_NOT_ACCEPT                	0x19
+#define IPC_EVT_SWITCH_ACCEPT                         	0x20
+#define IPC_EVT_SNIFF_NOT_ACCEPT                    0x21
+#define IPC_EVT_SNIFF_ACCEPT                             0x22
+#define IPC_EVT_UNSNIFF_ACCEPT                        	0x23
+#define IPC_EVT_UNSNIFF_NOT_ACCEPT               	0x24
+#define IPC_EVT_BUTTON_ADJUST_DPI                 	0x25
+#define IPC_EVT_SEND_UNSNIFF_ACCEPT            	0x26
+#define IPC_EVT_VIRTUAL_CABLE_UNPLUG          	0x27
+#define IPC_EVT_LE_WRITE_REQUEST                  	0x28
+#define IPC_EVT_LE_ENC_INFO                              	0x29
+#define IPC_EVT_SWITCH_FAIL_MASTER               	0x2a
+#define IPC_EVT_SWITCH_SUCCESS_MASTER       	0x2b
+#define IPC_EVT_BUTTON_DOWN                           	0x2c
+#define IPC_EVT_BUTTON_UP                                	0x2d
+#define IPC_EVT_REMOTE_UNSNIFF                      	0x2e
+#define IPC_EVT_RESET                                    	0x2f
+#define IPC_EVT_WAKEUP                                   	0x30
+#define IPC_EVT_24G_PAIRING_COMPLETE          	0x31
+#define IPC_EVT_24G_ATTEMPT_FAIL                   	0x32
+#define IPC_EVT_HIBERNATE_WAKE                      	0x33
+#define IPC_EVT_LE_PROTOCOL_CONNECTED    	0x34
+#define IPC_EVT_LE_PINCODE_REQ				0x35
+#define IPC_EVT_RECONNECT_STANDY                	0x37
+#define IPC_EVT_CLEAR_LINKKEY                         	0x39
+#define IPC_EVT_24G_ATTEMPT_SUCCESS           	0x3c
+#define IPC_EVT_TIMER_INIT                               	0x50
+#define IPC_EVT_TIMER_MASK                               	0xF0
+#define IPC_EVT_TIMER_100MS                              	0x51
+#define IPC_EVT_TIMER_200MS                             	0x52
+#define IPC_EVT_TIMER_300MS                              	0x53
+#define IPC_EVT_TIMER_400MS                              	0x54
+#define IPC_EVT_TIMER_500MS                              	0x55
+#define IPC_EVT_TIMER_600MS                              	0x56
+#define IPC_EVT_TIMER_700MS                              	0x57
+#define IPC_EVT_TIMER_800MS                              	0x58
+#define IPC_EVT_TIMER_900MS                              	0x59
+#define IPC_EVT_TIMER_1KMS                               	0x5A
+#define IPC_EVT_TIMER_1K1MS                              	0x5B
+#define IPC_EVT_TIMER_1K2MS                              	0x5C
+#define IPC_EVT_TIMER_1K3MS                              	0x5D
+#define IPC_EVT_TIMER_1K4MS                              	0x5E
+#define IPC_EVT_TIMER_1K5MS                              	0x5F
+
+
+/*IPC EVT callback function type*/
+typedef void (*tIPCEventCb)(byte);
+
+/*IPC SPP callback function type*/
+typedef void (*tIPCSppCb)(byte*, word);
+
+/*IPC BLE callback function type*/
+typedef void (*tIPCBleCb)(byte*, word);
+
+/*IPC timer(1s) callback function type*/
+typedef void (*tIPCTimer)(void);
+
+/*IPC Hid callback function type*/
+typedef void (*tIPCHidCb)(byte*, word);
+
+/*IPC control block type*/
+typedef struct IPCContolBlock {
+	tIPCEventCb evtcb;		/*<ipc evt call back*/
+	tIPCSppCb sppcb;		/*<ipc spp call back*/
+	tIPCTimer timercb;		/*<ipc timer call back*/
+	tIPCTimer stimercb;
+	tIPCBleCb blecb;
+	tIPCHidCb hidcb;
+}tIPCControlBlock;
+
+
+typedef enum IPCRejReason{
+	AUTHENTICATION_FAILURE_ERROR = 0x05,
+	KEY_MISSING = 0x06,
+	ACL_CONNECTION_ALREADY_EXISTS = 0x0b,
+	OTHER_END_TERMINATED = 0x13,
+	ABOUT_TO_POEWR_OFF = 0x15,
+	LOCAL_HOST= 0x16,
+	PAIRING_NOT_ALLOWED = 0x18,
+	UNKNOWN_LMP_PDU = 0x19,
+	UNSUPPORTED_LMP_FEATURE = 0x1A,
+	UNSPECIFIED_ERROR = 0x1F,
+	UNSUPPORTED_PARAMETERS = 0x20,
+	SWITCH_NOT_ALLOWED = 0x21,
+	TRANSACTION_COLLISION = 0x23,
+	PDU_NOT_ALLOWED = 0x24,
+	ENCRYPTION_MODE_NOT_ACCEPTABLE = 0x25,
+	NOT_SUPPORT_CHN_CLASSIFICATION = 0x2e,
+	NOT_SUPPORT_SSP = 0x37,
+}tIPCREJREASON;
+
+/*IPC syc task type*/
+
+#define BT_PIN_CODE_MAX_LEN 16
+extern xbyte ipcPinlen;
+extern xbyte ipcPin[BT_PIN_CODE_MAX_LEN];
+extern xbyte current_task;
+
+/*IPC set pincode*/
+#define IPC_SetPincode(p,l)	ipcPinlen= l,\
+							xmemcpy(ipcPin, p, ipcPinlen)
+
+/**
+ * This function rigist IPC Control Block.
+ * 
+ * @param cb the IPC control block.
+ * 
+ * @return none.
+*/
+void IPC_Initialize(tIPCControlBlock *cb);
+
+/**
+ * This function deal IPC Single process, callback the rigisted IPC control function.
+ * 
+ * @param none.
+ * 
+ * @return none.
+*/
+void IPC_DealSingleStep(void);
+
+/**
+ * This function tx control IPC command.
+ * 
+ * @param cmd IPC command want to send.
+ * 
+ * @return none.
+*/
+void IPC_TxControlCmd(byte cmd);
+/**
+ * This function tx HID IPC command,Cpu will block when TxBuffer is not Empty.
+ * 
+ * @param dt IPC HID data want to send,len length of hid data
+ * 
+ * @return none.
+*/
+void IPC_TxBREDRHidData(byte* dt, byte len);
+
+/**
+ * This function tx 24G IPC command,Cpu will block when TxBuffer is not Empty.
+ * 
+ * @param dt IPC HID data want to send,len length of hid data
+ * 
+ * @return none.
+*/
+void IPC_Tx24GData(byte* dt, byte len);
+
+/**
+ * This function tx SPP IPC command,Cpu will block when TxBuffer is not Empty.
+ * 
+ * @param dt IPC SPP data want to send,len length of SPP data
+ * 
+ * @return none.
+*/
+void IPC_TxSppData(byte* dt, byte len);
+
+/**
+ * This function tx BLE IPC command,Cpu will block when TxBuffer is not Empty.
+ * 
+ * @param dt IPC BLE data want to send,len length of BLE data
+ * 
+ * @return none.
+*/
+void IPC_TxBleData(byte* dt, byte len);
+
+/**
+ * This function will do nothing wait enter lpm.
+ * 
+ * @param none.
+ * 
+ * @return none.
+*/
+void IPC_WaitLpm(void);
+
+/**
+ * This function will do nothing abandon lpm this time.
+ * 
+ * @param none.
+ * 
+ * @return none.
+*/
+void IPC_AbandonLpm(void);
+
+/**
+ * This function will do nothing wait enter lpm.
+ * 
+ * @param none.
+ * 
+ * @return none.
+*/
+bit IPC_IsTxBuffEmpty(void);
+
+/**
+ * This function get reject reason.
+ * 
+ * @param none.
+ * 
+ * @return none.
+*/
+tIPCREJREASON IPC_GetBBDIsconnectReason();
+
+#endif /* YC_IPC_H */
Index: c51/ipc.c
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/c51/ipc.c	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/c51/ipc.c	(working copy)
@@ -0,0 +1,192 @@
+/*
+ * Copyright 2016, Yichip Semiconductor(shenzhen office)
+ * All Rights Reserved.
+ *
+ * This is UNPUBLISHED PROPRIETARY SOURCE CODE of Yichip Semiconductor;
+ * the contents of this file may not be disclosed to third parties, copied
+ * or duplicated in any form, in whole or in part, without the prior
+ * written permission of Yichip Semiconductor.
+ */
+
+/** @file
+ *
+ * IPC Application for c51 devices
+ *
+ */
+ 
+#include "ipc.h"
+#include "utilities.h"
+
+#define IPC_BUFF_LEN		100
+#define IPC_HEAD_LEN 3
+#define IPC_CMD_LEN 3
+#define IPC_HID_LEN 10
+
+static const xword ipcTxReadPtr _at_ mem_ipc_2bt_read_index;	/*< read only */
+static const xword ipcRxWritePtr _at_ mem_ipc_2C51_write_index;	/*< read only */
+static xword ipcTxWritePtr _at_ mem_ipc_2bt_write_index;	/*<read and wite */
+static xword ipcRxReadPtr _at_ mem_ipc_2C51_read_index;	/*<read and write */
+static tIPCControlBlock xdata ipcCb;
+static xbyte bbDisReason _at_ mem_disconn_reason_send;
+
+xbyte ipcPinlen _at_ mem_pin_length;
+xbyte ipcPin[BT_PIN_CODE_MAX_LEN] _at_ mem_pin;
+xbyte ipcReadBuff[IPC_BUFF_LEN] _at_ mem_c51_ipc_rxbuf;
+xbyte ipcSendBuff[IPC_BUFF_LEN] _at_ mem_c51_ipc_txbuf;
+xbyte current_task _at_  mem_c51_flag;
+xbyte lpm_flag _at_ mem_c51_lpm_lock;
+xword bttimer _at_ mem_ipc_bt_timer;
+xword c51timer _at_ mem_ipc_c51_timer;
+xbyte btstimer _at_ mem_ipc_bt_100ms_timer;
+xbyte c51stimer _at_ mem_ipc_c51_100ms_timer;
+
+	/* remain buffer byte count */
+static byte bufsize(xword rptr, xword wptr, byte buflen)
+{
+	return rptr > wptr ? rptr - wptr : buflen - (wptr - rptr);
+}
+
+static void ipcRx(xbyte * dest, byte len)
+{
+	xbyte* src = (xbyte *)ipcRxReadPtr;
+	while(len--) {
+		*dest++ = *src++;
+		if ((word)src == IPC_RX_END) {
+			src = (xbyte *)IPC_RX_HEAD;
+		}
+	}
+	ipcRxReadPtr = (word)src;
+}
+
+static void ipcTx(byte* src, byte len)
+{
+	xbyte *dest = (xbyte *) ipcTxWritePtr;
+	while(bufsize(ipcTxReadPtr, ipcTxWritePtr, IPC_BUFF_LEN) < len);
+	while (len--) {
+		*dest++ = *src++;
+		if ((word) dest == IPC_TX_END) {
+			dest = (xbyte *) IPC_TX_HEAD;
+		}
+	}
+	ipcTxWritePtr = (word) dest;
+}
+
+void IPC_TxControlCmd(byte cmd)
+{
+	byte cmdBuff[IPC_CMD_LEN] = {
+		IPC_CONTROL_CMD, 0x01
+	};
+	cmdBuff[IPC_CMD_LEN - 1] = cmd;
+	ipcTx(cmdBuff, IPC_CMD_LEN);
+}
+
+void IPC_TxData(byte * dt, byte len)
+{
+	ipcSendBuff[1] = len;
+	xmemcpy(&ipcSendBuff[2], dt, len);
+	ipcTx(ipcSendBuff, len + 2);
+}
+
+void IPC_TxBREDRHidData(byte * dt, byte len)
+{
+	ipcSendBuff[0] = IPC_HID_DATA;
+	if (len == 0) return;
+	IPC_TxData(dt, len);
+}
+
+void IPC_Tx24GData(byte * dt, byte len)
+{
+	ipcSendBuff[0] = IPC_24G_DATA;
+	IPC_TxData(dt, len);
+}
+
+void IPC_TxSppData(byte* dt, byte len)
+{
+	ipcSendBuff[0] = IPC_SPP_DATA;
+	IPC_TxData(dt, len);
+}
+
+void IPC_TxBleData(byte* dt, byte len)
+{
+	ipcSendBuff[0] = IPC_BLE_DATA;
+	IPC_TxData(dt, len);
+}
+
+byte IPC_GetBBDIsconnectReason()
+{
+	return bbDisReason;
+}
+
+void IPC_Initialize(tIPCControlBlock *cb)
+{
+	ipcCb = *cb;
+}
+
+void IPC_WaitLpm()
+{
+	lpm_flag = 0;
+	current_task = 0;
+	Delay1ms(1);
+}
+
+void IPC_AbandonLpm()
+{
+	lpm_flag = 1;
+	current_task = 0;
+}
+
+bit IPC_IsTxBuffEmpty()
+{
+	if (ipcTxReadPtr == ipcTxWritePtr)
+		return 1;
+	return 0;
+}
+
+
+void IPC_DealSingleStep()
+{
+	byte *pbuff = ipcReadBuff;
+	if (ipcRxReadPtr == ipcRxWritePtr)
+		goto IPC_TIMER;
+	ipcRx(ipcReadBuff, IPC_HEAD_LEN);
+	if (*pbuff == IPC_CONTROL_EVT) {
+		pbuff += 2;
+		ipcCb.evtcb(*pbuff);
+	}
+	else if (*pbuff == IPC_SPP_DATA) {
+		pbuff ++ ;
+		ipcRx(ipcReadBuff+3, *pbuff -1);
+		ipcCb.sppcb(pbuff+1, *pbuff);
+	}
+	else if (*pbuff == IPC_BLE_DATA) {
+		pbuff ++ ;
+		ipcRx(ipcReadBuff+3, *pbuff -1);
+		ipcCb.blecb(pbuff+1, *pbuff);
+	}
+	else if (*pbuff == IPC_HID_DATA) {
+		pbuff ++ ;
+		ipcRx(ipcReadBuff+3, *pbuff -1);
+		ipcCb.hidcb(pbuff+1, *pbuff);
+	}
+	else {
+		while(1);
+	}
+IPC_TIMER:
+	while (c51timer != bttimer) {
+		if (ipcCb.timercb == NULL)
+			return;
+		ipcCb.timercb();
+		//c51timer ++;
+		c51timer = bttimer;
+	}
+	while (c51stimer!= btstimer) {
+		if (ipcCb.stimercb == NULL)
+			return;
+		ipcCb.stimercb();
+		//c51stimer ++;
+		c51stimer = btstimer;
+	}
+	//other app process
+}
+
+
Index: c51/kb_process.h
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/c51/kb_process.h	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/c51/kb_process.h	(working copy)
@@ -0,0 +1,143 @@
+#ifndef _KB_PROCESS_H
+#define _KB_PROCESS_H
+#include "common.h"
+
+#define KEY_STANDBY					0x00
+#define KEY_MULIT_PRESS				0x01
+#define KEY_SYSTEM_PRESS			0x04
+#define KEY_WAIT_RELEASE			0x02
+#define KEY_RELEASE					0x03
+#define KEY_2G4_FN_TX				0x04
+
+#define KB_PC_KEYSEL_NUMLOCK		0x01
+#define KB_PC_KEYSEL_CAPSLOCK		0x02
+#define KB_PC_KEYSEL_SCROLLLOCK 	0x04
+
+#define KEY_FLAG_BTKEY_PRESS				0x01
+#define KEY_FLAG_SAME_KEY_PRESS			0x02
+#define KEY_FLAG_STOP_DISCOVERY			0x04
+#define KEY_FLAG_FN_DEVICE_BUTTON			0x08
+#define KEY_FLAG_FN_24G_DEVICE_BUTTON		0x10
+#define KEY_FLAG_FN_SYSTEM_MODE_BUTTON	0x20
+
+#define CAMBINATION_KEY_FREE				0
+#define CAMBINATION_KEY_PRESS				1
+#define CAMBINATION_KEY_HOLD				2
+#define CAMBINATION_KEY_COMPLETE			3
+#define CAMBINATION_KEY_WAIT_RELEASE 		4
+#define CAMBINATION_KEY_RELEASE			5	
+#define CAMBINATION_KEY_NULL				6
+
+
+#define BACKLIGHT_OFF						0
+#define BACKLIGHT_BREATH					1
+#define BACKLIGHT_SWITCH					2
+#define BACKLIGHT_ON						3
+
+
+#define BACKLIGHT_DUTY_LEVEL_00			0
+#define BACKLIGHT_DUTY_LEVEL_25			1
+#define BACKLIGHT_DUTY_LEVEL_50			2
+#define BACKLIGHT_DUTY_LEVEL_75			3
+#define BACKLIGHT_DUTY_LEVEL_100			4
+
+
+#define BACKLIGHT_SPEED_LEVEL_100MS		1
+#define BACKLIGHT_SPEED_LEVEL_200MS		2
+#define BACKLIGHT_SPEED_LEVEL_300MS		3
+#define BACKLIGHT_SPEED_LEVEL_400MS		4
+#define BACKLIGHT_SPEED_LEVEL_500MS		5
+
+#define BACLIGHT_ON_STEP_1					0
+#define BACLIGHT_ON_STEP_2					1
+#define BACLIGHT_ON_STEP_3					2
+#define BACLIGHT_ON_STEP_4					3
+#define BACLIGHT_ON_STEP_5					4
+#define BACLIGHT_ON_STEP_6					5
+#define BACLIGHT_ON_STEP_7					6
+#define BACLIGHT_ON_STEP_8					7
+
+#define BACLIGHT_LED_1					0
+#define BACLIGHT_LED_2					1
+#define BACLIGHT_LED_3					2
+#define BACLIGHT_LED_4					3
+#define BACLIGHT_LED_5					4
+#define BACLIGHT_LED_6					5
+#define BACLIGHT_LED_7					6
+
+#define OSMODE_WINDOWS	0x00
+#define OSMODE_ANDROID		0x01
+#define OSMODE_IOS			0x02
+//gipo
+#define EEPROM_WP_GPIO			0xff
+
+#define CAPS_LED_GPIO		  	29
+#define WIN_LOCK_LED_GPIO		0xff
+#define LOWPOWER_LED_GPIO		30
+#define NUM_LOCK_LED_GPIO		31
+#define G24_LED_GPIO			30
+#define BT_BUTTON_GPIO			30
+#define BACKLIGHT_PWM_GPIO		0xff
+
+#define RLED_GPIO			21
+#define GLED_GPIO			20
+#define BLED_GPIO			19
+
+
+//eeprom address base
+#define EEPROM_RECON_INFO_BASE_6  					0x7F50
+#define EEPROM_RECON_INFO_G24_FN_LOCK			(EEPROM_RECON_INFO_BASE_6+6)
+#define EEPROM_RECON_INFO_G24_SYTEM_MODE		(EEPROM_RECON_INFO_BASE_6+7)
+#define EEPROM_RECON_INFO_BASE					0x7F60		// bd_key_record_list = 31*3 = 93
+#define EEPROM_RECON_INFO_LAST_DEVICE 			(EEPROM_RECON_INFO_BASE+93)
+//#define EEPROM_RECON_INFO_POWER_ACTION 			(EEPROM_RECON_INFO_BASE+94)
+#define EEPROM_RECON_INFO_RAMDON_LE_LAP1		(EEPROM_RECON_INFO_BASE+94)
+#define EEPROM_RECON_INFO_RAMDON_LE_LAP2		(EEPROM_RECON_INFO_BASE+95)
+#define EEPROM_BATTERY_SHUTDOWN_FLAG			(EEPROM_RECON_INFO_BASE+98)
+#define EEPROM_RECON_INFO_SYTEM_MODE 			(EEPROM_RECON_INFO_BASE+96)
+
+
+#define EEPROM_STORE_TYPE_NORMAL	1
+#define EEPROM_STORE_TYPE_G24			2
+#define EEPROM_STORE_TYPE_BT			3
+
+
+#define KS_KEY_MAP_LEN					158
+#define KB_KSCAN_COL_NUM				20
+
+#define KB_24G_LED_ACK_TYPE			3
+
+byte key_fn_function(byte state ,byte key_value);
+
+
+typedef enum c51_user_key_action
+{
+	KEY_NONE= 0,
+	KEY_RECON_0=1,
+	KEY_RECON_1=2,
+	KEY_RECON_2=3,
+	KEY_ENTER_ADV,
+	KEY_DISCOVERY,
+	KEY_DISCONNECT_ALL,
+	KEY_CLEAR_RECORD,
+	KEY_START_24G,
+	KEY_OPEN_24G,
+	KEY_PAIRING_24G,
+	KEY_STOP_24G,
+	KEY_USB,
+	KEY_STOP_DISCOVERY,
+}C51_KEY_ACTION;
+
+
+
+void IPC_TxHidData(byte* dt, byte len);
+void kb_need_keyscan();
+void YC_key_action_handle(byte key_num);
+void kb_motion_keyscan(tKSEVENT *pEvt);
+byte kb_device_select(tKSEVENT *pEvt);
+void kb_multikey_setup(tKSEVENT *pEvt);
+byte key_fn_function(byte state ,byte key_value);
+
+
+#endif
+
Index: c51/kb_process.c
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/c51/kb_process.c	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/c51/kb_process.c	(working copy)
@@ -0,0 +1,1006 @@
+#include "kb_process.h"
+
+void YC_key_action_handle(byte key_num)
+{
+	switch (key_num)
+	{
+	case KEY_RECON_0:
+	case KEY_RECON_1:
+	case KEY_RECON_2:
+		if (g_variable.g24_currentState == CHANGE_TO_24G_CONNECTED 
+			||g_variable.g24_currentState == CHANGE_TO_24G_CONNECTING)
+		{
+			IPC_TxControlCmd(IPC_CMD_STOP_24G);
+			g_variable.key_action = key_num;
+		}
+		else
+		{
+			recon_index = key_num-1;
+			kscurrmult = 0x05;
+			g_variable.recon_count = 5;
+			IPC_TxControlCmd(IPC_CMD_DISCONNECT);
+			Delay1ms(10);
+			IPC_TxControlCmd(IPC_CMD_SET_RECONNECT_INIT);
+			g_variable.key_action = KEY_NONE;
+		}
+		break;
+	case KEY_STOP_DISCOVERY:
+		IPC_TxControlCmd(IPC_CMD_STOP_ADV);
+		IPC_TxControlCmd(IPC_CMD_STOP_DISCOVERY);
+		break;
+	case KEY_DISCOVERY:
+		g_variable.recon_count = 0;
+		if (YC_disconnect_all_link() || YC_cancel_reconnect() || YC_g24_mode_discovery())
+		{
+			g_variable.key_action = key_num;
+			action_timeout = 3;
+		}
+		else
+		{
+			YC_clear_reconnect_flag();
+				ble_send_secutiry_request_timer = 0;
+				ble_fast_connect_flag = 0;
+				fast_connect_flag = 0;
+			#if DEVICE_MODE_BT_ONLY
+				IPC_TxControlCmd(IPC_CMD_START_DISCOVERY);
+			#elif DEVICE_MODE_BLE_ONLY	
+//				m_lpm_mode = 0;
+				YC_get_ble_ramdon_lap();
+				IPC_TxControlCmd(IPC_CMD_START_ADV);
+			#else	
+				YC_get_ble_ramdon_lap();
+				IPC_TxControlCmd(IPC_CMD_START_ADV_DISCOVERY);
+			#endif
+			g_variable.key_action = KEY_NONE;
+		}
+		break;
+	case KEY_DISCONNECT_ALL:
+		YC_disconnect_all_link();
+		g_variable.key_action = KEY_NONE;
+		break;
+	case KEY_CLEAR_RECORD:
+		xmemclear_ff((byte *)bd_key_record_list,sizeof(BD_KEY_RECORD)*3);
+		g_variable.last_device_num = 0xff;
+		g_variable.system_mode = 0xff;
+		g_variable.update_eeprom_flag = EEPROM_STORE_TYPE_BT;
+		g_variable.key_action = KEY_NONE;
+		break;
+	case KEY_START_24G:
+	case KEY_OPEN_24G:
+		g_variable.recon_count = 0;
+		if ( YC_cancel_reconnect())
+		{
+			g_variable.key_action = key_num;
+		}
+		else
+		{
+			IIC_Read(EEPROM_RECON_INFO_BASE_6+2,4 , (byte *)m_24g_addr);
+			Delay1ms(10);
+			fast_connect_flag = 0;
+			if (m_24g_addr[0] == 0xff && m_24g_addr[1] == 0xff && m_24g_addr[2] == 0xff && m_24g_addr[3] == 0xff)
+			{
+				m_24g_addr[0] = 0x0f;
+				m_24g_addr[1] = 0x0f;
+				m_24g_addr[2] = 0x0f;
+				m_24g_addr[3] = 0x0f;
+				fast_connect_flag = 1;
+			}
+				
+			IPC_TxControlCmd(IPC_CMD_START_24G);
+			
+			g_variable.g24_currentState = CHANGE_TO_24G_CONNECTING;
+			g_variable.g24_currentSubState = CHANGE_TO_24G_SUB_NONE;
+			g_variable.key_action = KEY_NONE;
+		}
+		break;
+	case KEY_PAIRING_24G:
+		g_variable.recon_count = 0;
+		if (YC_disconnect_all_link() || YC_cancel_reconnect())
+		{
+			g_variable.key_action = key_num;
+		}
+		else
+		{
+			if (g_variable.g24_currentState != CHANGE_TO_24G_PAIRING)
+			{
+				fast_connect_flag = 0;
+				IPC_TxControlCmd(IPC_CMD_PAIR_24G);
+				g_variable.g24_currentState = CHANGE_TO_24G_PAIRING;
+				g_variable.g24_currentSubState = CHANGE_TO_24G_SUB_NONE;
+				g_variable.pairing_g24_timeout = BT_PAIRING_TIME_OUT_30S;
+				g_variable.pairing_timeout = 0;
+			}
+			g_variable.key_action = KEY_NONE;
+		}
+		break;
+	default:
+		g_variable.key_action = KEY_NONE;
+		break;
+	}
+}
+
+
+
+void IPC_TxHidData(byte* dt, byte len)
+{
+	xbyte tx_hid_buff[10];
+	byte i=0;
+
+	for(i==0; i< len; i++)
+	{
+		tx_hid_buff[i] = dt[i];
+	}
+	
+	if(!YC_check_need_reconnected()) 
+		return;
+	if (g_variable.release_data)
+		return;
+
+	if (g_variable.br_currentState == CHANGE_TO_BR_CONNECTED)
+	{	
+		IPC_TxBREDRHidData(tx_hid_buff,len);
+	}
+	if ((g_variable.ble_currentState == CHANGE_TO_BLE_CONNECTED) ||
+	((g_variable.ble_currentState == CHANGE_TO_BLE_CONNECTING) && ble_fast_connect_flag))
+	{
+		IPC_TxBleData(tx_hid_buff,len);
+
+	}
+	if (g_variable.g24_currentState == CHANGE_TO_24G_CONNECTED)
+	{
+		if(tx_hid_buff[0] == HID_REPORTID_KEY_STANDARD)
+		{
+			tx_hid_buff[0] = 4;
+			if (tx_hid_buff[1] == 0 && tx_hid_buff[3] == 00 && tx_hid_buff[4] == 00 && tx_hid_buff[5] == 0)
+				repeat_send_24g = 0;
+			else
+				repeat_send_24g = 1;			
+		}
+		else if(tx_hid_buff[0] == HID_REPORTID_MEDIA_KEY)
+		{
+			tx_hid_buff[0] = 5;
+			if (tx_hid_buff[1] == 00 && tx_hid_buff[2] == 00)
+			{
+				repeat_send_24g = 0;
+			}
+			else
+			{
+				repeat_send_24g = 1;
+			}
+		}
+		else if(tx_hid_buff[0] == HID_REPORTID_SYSTEM_CTRL)
+		{
+			tx_hid_buff[0] = 7;
+		}
+		IPC_Tx24GData(tx_hid_buff,len);
+	}
+}
+
+
+void kb_set_multikey(word multikey_value)
+{
+	if(mult_key_status != KEY_WAIT_RELEASE)
+	{
+		mult_key_status = KEY_MULIT_PRESS;
+		multikey[0] = HID_REPORTID_MEDIA_KEY;
+		multikey[1] = (multikey_value&0xff);
+		multikey[2] = ((multikey_value>>8)&0xff);
+	}
+}
+
+#ifdef SYSTEM_CONTROL_ENABLE
+void kb_set_systemkey(byte systemkey_value)
+{
+	if(mult_key_status != KEY_WAIT_RELEASE)
+	{
+		mult_key_status = KEY_SYSTEM_PRESS;
+		system_key_press = 1;
+		multikey[0] = HID_REPORTID_SYSTEM_CTRL;
+		multikey[1] = systemkey_value;
+	}
+}
+#endif
+
+void kb_send_combination_key(byte ctrl_value,byte key_value)
+{
+	xmemclear(hidBuff,9);
+	hidBuff[0] = HID_REPORTID_KEY_STANDARD;
+	hidBuff[1] |= ctrl_value;
+	hidBuff[3] = key_value; 
+	IPC_TxHidData(hidBuff, 9);
+}
+
+/*
+//touch data send
+void kb_set_mouse_data()
+{
+	multikey[0] = HID_REPORTID_MOUSE;
+	multikey[1] = g_variable.sensor_key;
+	multikey[2] = g_variable.sensor_x_l;
+	multikey[3] = g_variable.sensor_x_h;
+	multikey[4] = g_variable.sensor_y_l;
+	multikey[5] = g_variable.sensor_y_h;
+	multikey[6] = g_variable.sensor_wheel;
+	multikey[7] = g_variable.sensor_titl;
+	IPC_TxHidData(multikey, 8);
+	xmemclear(multikey,9);
+}
+*/
+
+
+void kb_bt_pincode_enter()
+{
+	tKSEVENT *pEvt = NULL;
+	pEvt = KS_GetCurrentEvt();
+	if (pEvt == NULL)
+		return;
+	if (pEvt->ksPool[0] != 0) {
+		if (pEvt->ksPool[0] == HID_KEY_ENTER ||pEvt->ksPool[0] == HID_KEY_KP_ENTER) {
+			if (	g_variable.ble_currentSubState == CHANGE_TO_BLE_SUB_PINCODE)
+			{
+				IPC_TxControlCmd(IPC_CMD_LE_SET_PINCODE);
+				g_variable.ble_currentSubState = CHANGE_TO_BLE_SUB_PINCODE_OK;
+				le_pin_code_len = 0;
+			}
+
+			if (	g_variable.br_currentSubState ==  CHANGE_TO_BR_SUB_PINCODE)
+			{	
+				m_link_key_exists = 1;
+				IPC_TxControlCmd(IPC_CMD_SET_PIN_CODE);
+				g_variable.br_currentSubState = CHANGE_TO_BR_SUB_PINCODE_OK;
+			}
+		}
+		else
+		{
+			if (pEvt->ksPool[0] <=HID_KEY_KP_0 && pEvt->ksPool[0] >= HID_KEY_KP_1)
+			{
+				if (pEvt->ksPool[0] == HID_KEY_KP_0) 
+				{
+					ipcPin[ipcPinlen ++] = 0x30;	//ascii code: 0     x030
+					le_pin_code = le_pin_code*10;
+					le_pin_code_len++;
+				}
+				else 
+				{
+					ipcPin[ipcPinlen ++] = pEvt->ksPool[0]  - 0x28;  // ascii :0x31-0x39
+					le_pin_code = (le_pin_code*10)+(pEvt->ksPool[0]  - 0x58);
+					le_pin_code_len++;
+				}
+			}
+			else if (pEvt->ksPool[0] <=HID_KEY_0 && pEvt->ksPool[0] >= HID_KEY_1)
+			{
+				if (pEvt->ksPool[0] == HID_KEY_0) 
+				{
+					ipcPin[ipcPinlen ++] = 0x30;	//0
+					le_pin_code = le_pin_code*10;
+					le_pin_code_len++;
+				}
+				else 
+				{
+					ipcPin[ipcPinlen ++] = pEvt->ksPool[0]  - (HID_KEY_1 -1) + 0x30;
+					le_pin_code = (le_pin_code*10)+(pEvt->ksPool[0]  - (HID_KEY_1 -1));
+					le_pin_code_len++;
+				}
+			}
+			else if(pEvt->ksPool[0] == HID_KEY_BACKSPACE) 
+			{
+				if(ipcPinlen)
+					ipcPin[ipcPinlen --] = 0;
+				if(le_pin_code_len)
+				{
+					le_pin_code = le_pin_code /10;
+					le_pin_code_len--;
+				}	
+			}
+			else
+			{
+				kb_motion_keyscan(pEvt);
+			}
+		}
+	}
+}
+
+
+
+void kb_24g_get_led_status()		//get RF Ack for get numlock/capslock status
+{
+	if((m_24g_led_flag)&& (repeat_send_24g == 0))
+	{
+		if (g_variable.g24_currentState == CHANGE_TO_24G_CONNECTED)
+		{
+			xmemclear(hidBuff,9);
+
+			mult_key_status = 0;
+			hidBuff[0] = HID_REPORTID_KEY_STANDARD;		// standard key send
+			hidBuff[2] = m_24g_led_flag;
+			IPC_TxHidData(hidBuff, 9);
+		}	
+	}
+
+}
+
+
+
+static void kb_motion()
+{
+	tKSEVENT *pEvt = NULL;
+	
+	if (!IPC_IsTxBuffEmpty())
+		return;
+	pEvt = KS_GetCurrentEvt();
+
+	if (pEvt == NULL)
+	{
+		m_power_on_flag = 1;
+		kb_24g_get_led_status();
+		return;
+	}
+	kb_motion_keyscan(pEvt);
+}
+
+
+
+void kb_need_keyscan()
+{
+	 if (g_variable.ble_currentSubState == CHANGE_TO_BLE_SUB_PINCODE 
+		|| g_variable.br_currentSubState == CHANGE_TO_BR_SUB_PINCODE)
+	{
+		kb_bt_pincode_enter();
+	}
+	else
+	{
+		/*
+		  if ((GPIO_GetInputStatus(INT_GPIO) == 0) )//&& (tperr == 0))
+		  {
+			g_variable.mouse_data_send_flag = 0;
+			g_variable.delay_enter_lpm_timer = 10;
+		  	
+		 	if (g_variable.ble_currentState == CHANGE_TO_BLE_CONNECTED)
+		 	{
+				if(m_customize_timer != g_variable.send_timer)
+				{
+					g_variable.send_timer = m_customize_timer;
+				}
+				else 
+					return;
+			}
+			Touch_data_get();
+			kb_set_mouse_data();
+		}
+		else
+		*/
+		{
+		//	g_variable.sensor_x_l = 0;
+		//	g_variable.sensor_x_h = 0;
+		//	g_variable.sensor_y_l = 0;
+		//	g_variable.sensor_y_h = 0;
+		//	g_variable.sensor_wheel = 0;
+		//	g_variable.sensor_titl = 0;
+			
+		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
+		{
+			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;
+				if(!g_variable.one_key_press_wait_release_timer)
+					g_variable.key_combination_step = CAMBINATION_KEY_NULL;
+				else
+					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;
+			}
+		}
+		}
+	}
+}
+
+
+
+void kb_motion_keyscan(tKSEVENT *pEvt)
+{
+	byte temp = 0;
+	byte i=0;
+	
+	fn_flag = 0;
+	for(i=0; i < KS_BUFF_POLL_LEN-1; i++)
+	{
+		if (pEvt->ksPool[i] == HID_KEY_FN) 		// Fn key check
+		{
+			fn_flag = 1;
+		}
+	}
+
+	
+	if(kb_device_select(pEvt))		// select device or discovery
+		return;
+	if (pEvt == NULL)
+		return;
+
+#ifdef PC_SLEEP_STATUS_GET
+	if(m_pc_sleep_flag)		// wake from pc sleep,get led status
+	{
+		m_pc_sleep_flag = 0;
+		m_24g_led_flag = KB_24G_LED_ACK_TYPE;	
+	}
+#endif
+	
+	if (g_variable.ble_currentState == CHANGE_TO_BLE_CONNECTED ||g_variable.br_currentState == CHANGE_TO_BR_CONNECTED)
+	{
+		kscurrmult = 0x3;
+	}
+	delayChgInvTimer = 10;
+	g_variable.sleepTimer = 0;
+	g_variable.g24_long_sleep_flag = 0;
+	
+	if(g_variable.backlight_level != BACKLIGHT_OFF)
+	{
+		m_24g_enter_hibernate[0]	= 0x00;
+		m_24g_enter_hibernate[1]	= 0x48;
+		m_24g_enter_hibernate[2]	= 0x12;		// 100ms
+		m_24g_enter_hibernate[3]	= 0x00;
+	}
+	else
+	{
+		m_24g_enter_hibernate[0]	= 0x00;
+		m_24g_enter_hibernate[1]	= 0x48;
+		m_24g_enter_hibernate[2]   = 0x5d;		// 510ms
+		m_24g_enter_hibernate[3]	= 0x00;
+	}
+	xmemclear(hidBuff,9);
+	xmemclear(multikey,9);
+
+	////////////////////////////2.4g pairing////////////////////////////////////
+	/*if ((pEvt->ksPool[0]  == HID_KEY_FN && pEvt->ksPool[1]  == HID_KEY_R) 
+		||(pEvt->ksPool[0]  == HID_KEY_R && pEvt->ksPool[1]  == HID_KEY_FN) 
+		)
+	{
+		if (g_variable.g24_currentState != CHANGE_TO_24G_PAIRING)
+		{
+			g_variable.button_flag |= KEY_FLAG_FN_24G_DEVICE_BUTTON;
+		}
+		else
+		{
+			g_variable.button_flag &= ~KEY_FLAG_FN_24G_DEVICE_BUTTON;
+		}
+	}
+	else
+	{
+		g_variable.button_flag &= ~KEY_FLAG_FN_24G_DEVICE_BUTTON;
+	}*/
+
+	m_power_on_flag = 1;
+	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))
+	{
+		return;
+	}
+
+	// get 24g led status
+	if (g_variable.g24_currentState == CHANGE_TO_24G_CONNECTED)
+	{
+		for(i=0; i < KS_BUFF_POLL_LEN-1; i++)
+		{
+			if ((pEvt->ksPool[i] == HID_KEY_CAPS_LOCK) || (pEvt->ksPool[i] == HID_KEY_NUM_LOCK) 
+			|| (pEvt->ksPool[i] == HID_KEY_SCROLL_LOCK))
+			{
+				m_24g_led_flag = KB_24G_LED_ACK_TYPE;
+
+			}
+		}
+	}
+
+	kb_multikey_setup(pEvt);
+	
+	if (mult_key_status == KEY_MULIT_PRESS) 
+	{
+		mult_key_status = KEY_WAIT_RELEASE;
+		multikey[0] = HID_REPORTID_MEDIA_KEY;
+		IPC_TxHidData(multikey, 3);
+	}
+#ifdef SYSTEM_CONTROL_ENABLE	
+	else if (mult_key_status == KEY_SYSTEM_PRESS) 
+	{
+		mult_key_status = KEY_WAIT_RELEASE;
+		multikey[0] = HID_REPORTID_SYSTEM_CTRL;
+		IPC_TxHidData(multikey, 3);
+	}
+#endif	
+	else if((mult_key_status == KEY_RELEASE) || (mult_key_status == KEY_WAIT_RELEASE && (!keyCount)))
+	{
+		mult_key_status = KEY_STANDBY;
+		mult_key_value = 0;
+#ifdef SYSTEM_CONTROL_ENABLE		
+		if(system_key_press)
+		{
+			system_key_press = 0;
+			multikey[0] = HID_REPORTID_SYSTEM_CTRL;
+		}
+		else
+#endif		
+			multikey[0] = HID_REPORTID_MEDIA_KEY;
+		IPC_TxHidData(multikey, 3);
+	}
+	else 
+	{
+		if(!keyCount)
+		{
+			xmemclear(pEvt->ksPool,6);
+			xmemclear(bitkey,15);
+			pEvt->standardSel = 0;
+		}
+	
+		hidBuff[0] = HID_REPORTID_KEY_STANDARD;		// standard key send
+		hidBuff[1] = pEvt->standardSel;
+		if (g_variable.g24_currentState == CHANGE_TO_24G_CONNECTED)
+			hidBuff[2] = m_24g_led_flag;
+		else
+			hidBuff[2] = 0;
+
+		standard_key_release_flag = 0;
+		if(!fast_connect_flag)
+		{
+			if (pEvt->ksPool[0] == HID_KEY_FN)
+				xmemcpy(&hidBuff[3], &pEvt->ksPool[1], 5);
+			else
+				xmemcpy(&hidBuff[3], pEvt->ksPool, 6);
+			
+			for(i = 3; i<9;i++)
+			{
+				if (hidBuff[i] == HID_KEY_FN)
+					hidBuff[i] = 0;
+			}
+		}
+		else	
+			xmemcpy(&hidBuff[3], pEvt->ksPool, 6);
+		IPC_TxHidData(hidBuff, 9);
+		bitkey[0] = HID_REPORTID_GAME;
+		IPC_TxHidData(bitkey, 15);
+	}
+	return;
+}
+/////////////////////////////////////////////////////////////////
+
+
+byte kb_device_select(tKSEVENT *pEvt)
+{
+	byte temp = 0;
+	byte i=0;
+	
+	if (fn_flag == 1) 
+	{
+		i = KS_BUFF_POLL_LEN-1;
+
+		while (i--) 
+		{
+			temp = pEvt->ksPool[i];
+
+			if (temp >= HID_KEY_1 && temp <= HID_KEY_3)
+			{
+				switch(temp)
+				{
+					case HID_KEY_1:
+					case HID_KEY_2:	//BT
+						g_variable.delay_enter_lpm_timer = 10;
+						
+						g_variable.button_flag |= KEY_FLAG_FN_DEVICE_BUTTON;
+						g_variable.button_flag &= ~KEY_FLAG_FN_24G_DEVICE_BUTTON;
+						if((g_variable.current_device_num != (temp-(HID_KEY_1 - 2))) ||(g_variable.g24_currentState == CHANGE_TO_24G_CONNECTED))
+						{
+							g_variable.current_device_num = temp-(HID_KEY_1 - 2);
+							g_variable.button_reconnect_flag = 1;		// long press = 3s enter discovery
+							g_variable.powerOn_timer = 0;
+						}
+
+						break;
+					case HID_KEY_3: 			//g24 switch
+						g_variable.delay_enter_lpm_timer = 10;
+						g_variable.button_flag &= ~KEY_FLAG_FN_DEVICE_BUTTON;
+						g_variable.button_flag |= KEY_FLAG_FN_24G_DEVICE_BUTTON;
+						if( (g_variable.current_device_num != 0) && (g_variable.current_device_num != 0xfe))
+						{
+							g_variable.button_flag &= ~KEY_FLAG_FN_DEVICE_BUTTON;
+							g_variable.current_device_num =0;
+							YC_key_action_handle(KEY_STOP_DISCOVERY);
+							g_variable.release_data = 1;
+							g_variable.last_device_num = g_variable.current_device_num;
+							g_variable.power_on_action = 1;
+							g_variable.update_eeprom_flag = 1;
+							YC_update_eeprom_data();
+							System_Reset_Connect();
+						}
+						break;
+				}
+				return 1;
+			}
+			else
+			{
+				g_variable.button_flag &= ~(KEY_FLAG_FN_DEVICE_BUTTON |KEY_FLAG_FN_24G_DEVICE_BUTTON);
+			}
+		}
+	}
+	else
+	{
+		g_variable.button_flag &= ~(KEY_FLAG_FN_DEVICE_BUTTON |KEY_FLAG_FN_24G_DEVICE_BUTTON) ;
+		g_variable.button_flag &= ~KEY_FLAG_FN_SYSTEM_MODE_BUTTON;
+	}
+	return 0;
+}
+
+
+
+
+void kb_combination_key_press(byte press_state,byte special_key,byte standrad_key)
+{
+	g_variable.key_combination_ctrl = special_key;	
+	g_variable.key_combination_keyvalue = standrad_key;
+
+	if(press_state & 1)
+	{
+		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
+	{
+		g_variable.key_combination_step = CAMBINATION_KEY_WAIT_RELEASE;
+	}
+
+}
+
+
+byte key_fn_function(byte state ,byte key_value)
+{
+	byte temp = 0;
+
+	if(state & 1)
+		g_variable.one_key_press_wait_release_timer = 0;
+
+	temp = key_value;
+	if(fn_flag == 1)			// Fn lock
+	{
+			if((key_value == HID_KEY_Q) || (key_value == HID_KEY_W) || (key_value == HID_KEY_E)|| (key_value == HID_KEY_S))
+			{
+				if(key_value == HID_KEY_Q)
+				{
+					g_variable.system_mode = OSMODE_ANDROID;
+				}
+				else if(key_value == HID_KEY_E)
+				{
+					g_variable.system_mode = OSMODE_IOS;
+	
+				}
+				else if(key_value == HID_KEY_S)
+				{
+					g_variable.system_mode = OSMODE_WINDOWS;
+	
+				}	
+				temp = HID_KEY_NULL;
+				IIC_WriteBlock(EEPROM_RECON_INFO_SYTEM_MODE ,1 ,(byte *)&g_variable.system_mode);
+			}			
+		switch (key_value)
+		{ 
+			case HID_KEY_F1:
+				temp = HID_MULTIKEY_MEDIA;
+				break;
+			case HID_KEY_F2:
+				temp = HID_MULTIKEY_VOL_DOWN;
+				break;
+			case HID_KEY_F3:
+				temp = HID_MULTIKEY_VOL_UP;
+				break;	
+			case HID_KEY_F4:
+				temp = HID_MULTIKEY_MUTE;
+				break;
+			case HID_KEY_F5:
+				temp = HID_MULTIKEY_STOP;
+				break;
+			case HID_KEY_F6:
+				temp = HID_MULTIKEY_PRE_TRACK;
+				break;
+			case HID_KEY_F7:
+				temp = HID_MULTIKEY_PALY;
+				break;
+			case HID_KEY_F8:
+				temp = HID_MULTIKEY_NEXT_TRACK;
+				break;
+			case HID_KEY_F9:
+				temp = HID_MULTIKEY_MAIL;
+				break;
+			case HID_KEY_F10:
+				temp = HID_MULTIKEY_AC_HOME;
+				break;
+			case HID_KEY_EQUAL:
+				if(state & 1)
+				{
+					if(g_variable.backlight_duty_level != BACKLIGHT_DUTY_LEVEL_00)
+						g_variable.backlight_duty_level--;
+				}
+				temp = HID_KEY_NULL;
+				break;
+			case HID_KEY_MINUS:
+				if(state & 1)
+				{
+					if(g_variable.backlight_duty_level < BACKLIGHT_DUTY_LEVEL_100)
+						g_variable.backlight_duty_level++;
+				}
+				temp = HID_KEY_NULL;
+				break;
+			case HID_KEY_LESS_THAN:			//++
+				if(state & 1)
+				{
+					if(g_variable.backlight_speed > BACKLIGHT_SPEED_LEVEL_100MS)
+						g_variable.backlight_speed--;
+				}
+				temp = HID_KEY_NULL;
+				break;	
+			case HID_KEY_GREAT_THAN:		// --
+				if(state & 1)
+				{
+					if(g_variable.backlight_speed < BACKLIGHT_SPEED_LEVEL_500MS)
+						g_variable.backlight_speed++;
+				}
+				temp = HID_KEY_NULL;
+				break;
+			case HID_KEY_APP:
+				if(state & 1)
+				{
+					if(g_variable.backlight_pattern == 0)
+					{
+						g_variable.backlight_pattern++;
+						g_variable.backlight_level = BACKLIGHT_BREATH;
+					}
+					else if(g_variable.backlight_pattern ==1)
+					{
+						g_variable.backlight_level = BACKLIGHT_ON;
+						g_variable.backlight_pattern=0;
+
+					}
+				}
+				temp = HID_KEY_NULL;
+				break;			
+			case HID_KEY_BACKSPACE:
+				if(state & 1)
+				{
+					g_variable.backlight_level = BACKLIGHT_SWITCH;
+					if(g_variable.backlight_kind <= BACLIGHT_LED_7)
+						g_variable.backlight_kind++;
+					if(g_variable.backlight_kind > BACLIGHT_LED_7)
+						g_variable.backlight_kind=0;
+				}
+				temp = HID_KEY_NULL;
+				break;	
+			case HID_KEY_SCROLL_LOCK:
+				if(state & 1)
+				{
+					g_variable.backlight_level = BACKLIGHT_OFF;
+					g_variable.backlight_pattern=0;
+				}
+				temp = HID_KEY_NULL;
+				break;					
+			/*case HID_KEY_3:
+				if(state & 1)
+				{
+				g_variable.backlight_level = BACKLIGHT_OFF;
+				}
+				temp = HID_KEY_NULL;
+				break;					
+			case HID_KEY_LEFT_GUI:
+			case HID_KEY_RIGHT_GUI:
+				if(state & 1)
+					g_variable.system_win_app_lock_flag = ~g_variable.system_win_app_lock_flag;
+				temp = HID_KEY_NULL;
+				break;
+			case HID_KEY_A:
+				temp = HID_MULTIKEY_PALY;
+				break;
+			case HID_KEY_S:
+				temp = HID_MULTIKEY_PRE_TRACK;
+				break;
+			case HID_KEY_D:
+				temp = HID_MULTIKEY_NEXT_TRACK;
+				break;	
+			case HID_KEY_F:
+				temp = HID_MULTIKEY_VOL_DOWN;
+				break;
+			case HID_KEY_G:
+				temp = HID_MULTIKEY_VOL_UP;
+				break;
+			case HID_KEY_H:
+				temp = HID_MULTIKEY_MUTE;
+				break;
+			case HID_KEY_U:
+				temp = HID_KEY_PRINT_SCREEN;
+				break;
+			case HID_KEY_I:
+				temp = HID_KEY_SCROLL_LOCK;
+				break;
+			case HID_KEY_O:
+				temp = HID_KEY_PAUSE;
+				break;
+			case HID_KEY_J:
+				temp = HID_KEY_INSERT;
+				break;
+			case HID_KEY_K:
+				temp = HID_KEY_HOME;
+				break;
+			case HID_KEY_L:
+				temp = HID_KEY_PAGE_UP;
+				break;
+			case HID_KEY_M:
+				temp = HID_KEY_DELETE;
+				break;
+			case HID_KEY_LESS_THAN:
+				temp = HID_KEY_END;
+				break;
+			case HID_KEY_GREAT_THAN:
+				temp = HID_KEY_PAGE_DOWN;
+				break;
+			case HID_KEY_SLASH:
+				temp = HID_KEY_UP_ARROW;
+				break;
+			case HID_KEY_RIGHT_CTL:
+				temp = HID_KEY_RIGHT_ARROW;
+				break;
+			case HID_KEY_RIGHT_ALT:
+				temp = HID_KEY_LEFT_ARROW;
+				break;				
+			case HID_KEY_APP:
+				temp = HID_KEY_DOWN_ARROW;
+				break;	*/
+			default :
+				break;
+		}
+	}
+
+	if(g_variable.system_win_app_lock_flag)
+	{
+		if((temp == HID_KEY_APP) || (temp == HID_KEY_LEFT_GUI) ||(temp == HID_KEY_RIGHT_GUI))
+			temp = HID_KEY_NULL;
+	}
+
+
+
+	return temp;
+}
+
+
+
+void kb_multikey_setup(tKSEVENT *pEvt)
+{
+	byte i = 0;
+	
+	for (i = 0;i < 6;i++)
+	{		
+		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
+			{ 
+				kb_set_multikey(0x00cd);
+			}
+			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);
+			}
+			else if (pEvt->ksPool[i] ==  HID_MULTIKEY_NEXT_TRACK) //next Track
+			{
+				kb_set_multikey(0x00b5);
+			}
+			else if (pEvt->ksPool[i] ==  HID_MULTIKEY_VOL_DOWN) //vol-
+			{
+				kb_set_multikey(0x00ea);
+			}
+			else if (pEvt->ksPool[i] ==  HID_MULTIKEY_VOL_UP) //vol+
+			{
+				kb_set_multikey(0x00e9);
+			}
+			else	if (pEvt->ksPool[i] ==  HID_MULTIKEY_MUTE) //mute
+			{
+				kb_set_multikey(0x00e2);
+			}
+			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
+			{
+				kb_set_multikey(0x0192);
+			}
+			else if (pEvt->ksPool[i] ==  HID_MULTIKEY_AC_FAVORITES) 
+			{
+				kb_set_multikey(0x022a);//www Favorites
+			}
+			else if (pEvt->ksPool[i] ==  HID_MULTIKEY_AC_FORWARD)  
+			{
+				kb_set_multikey(0x0225);
+			}
+			else if (pEvt->ksPool[i] ==  HID_MULTIKEY_AC_STOP)  //www Stop
+			{
+				kb_set_multikey(0x0226);
+			}
+			else if (pEvt->ksPool[i] ==  HID_MULTIKEY_AC_BACK)  
+			{
+				kb_set_multikey(0x0224);
+			}
+			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)
+			{
+				kb_set_multikey(0x0223);
+			} 	
+			else if (pEvt->ksPool[i] ==  HID_MULTIKEY_LIGHT_DOWN)
+			{
+				kb_set_multikey(0x0070);
+			}
+			else if (pEvt->ksPool[i] ==  HID_MULTIKEY_LIGHT_UP)
+			{
+				kb_set_multikey(0x006f);
+			}
+		#ifdef SYSTEM_CONTROL_ENABLE
+		      	else if (pEvt->ksPool[i] ==  HID_SYSTEM_KEY_POWER_DOWN)
+		      	{
+		        	kb_set_systemkey(0x01);
+		      	}
+		      	else if (pEvt->ksPool[i] ==  HID_SYSTEM_KEY_SLEEP)
+		      	{
+		        	kb_set_systemkey(0x02);
+		      	}
+		      	else if (pEvt->ksPool[i] ==  HID_SYSTEM_KEY_WAKE_UP)
+		      	{
+		        	kb_set_systemkey(0x04);
+		      	}
+		#endif
+			
+			if(mult_key_status == KEY_WAIT_RELEASE)
+			{
+				mult_key_value = pEvt->ksPool[i];
+				pEvt->ksPool[i] = 0;
+			}
+		}
+	}
+}
+
Index: c51/kbhid.h
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/c51/kbhid.h	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/c51/kbhid.h	(working copy)
@@ -0,0 +1,296 @@
+#ifndef _KB_KEY_HID_
+#define _KB_KEY_HID_
+
+
+    /// KB USB usages
+enum UsbUsage {
+        HID_KEY_A 	= 0x04,
+        HID_KEY_B 	= 0x05,
+        HID_KEY_C 	= 0x06,
+        HID_KEY_D 	= 0x07,
+        HID_KEY_E 	= 0x08,
+        HID_KEY_F 	= 0x09,
+        HID_KEY_G 	= 0x0a,
+        HID_KEY_H 	= 0x0b,
+        HID_KEY_I  	= 0x0c,
+        HID_KEY_J 	= 0x0d,
+        HID_KEY_K 	= 0x0e,
+        HID_KEY_L 	= 0x0f,
+        HID_KEY_M 	= 0x10,
+        HID_KEY_N 	= 0x11,
+        HID_KEY_O	= 0x12,
+        HID_KEY_P	= 0x13,
+        HID_KEY_Q	= 0x14,
+        HID_KEY_R	= 0x15,
+        HID_KEY_S	= 0x16,
+        HID_KEY_T	= 0x17,
+        HID_KEY_U	= 0x18,
+        HID_KEY_V	= 0x19,
+        HID_KEY_W 	= 0x1a,
+        HID_KEY_X	= 0x1b,
+        HID_KEY_Y	= 0x1c,
+        HID_KEY_Z	= 0x1d,
+    
+        HID_KEY_1	= 0x1e,
+        HID_KEY_2	= 0x1f,
+        HID_KEY_3	= 0x20,
+        HID_KEY_4	= 0x21,
+        HID_KEY_5	= 0x22,
+        HID_KEY_6	= 0x23,
+        HID_KEY_7	= 0x24,
+        HID_KEY_8	= 0x25,
+        HID_KEY_9	= 0x26,
+        HID_KEY_0	= 0x27,
+    
+        HID_KEY_ENTER 				= 0x28,
+        HID_KEY_ESC				= 0x29,
+        HID_KEY_BACKSPACE		= 0x2a,
+        HID_KEY_TAB				= 0x2b,
+        HID_KEY_SPACE 				= 0x2c,
+        HID_KEY_MINUS				= 0x2d,		// -_
+        HID_KEY_EQUAL				= 0x2e,		// =+
+        HID_KEY_LEFT_BRACKET 		= 0x2f,		// [{
+        HID_KEY_RIGHT_BRACKET 	= 0x30,		// ]}
+        HID_KEY_BACK_SLASH 		= 0x31,		// \|
+    
+        HID_KEY_K42				= 0x32,
+        HID_KEY_SEMICOLON			= 0x33,		// ;:
+        HID_KEY_QUOTE				= 0x34,		// ' "
+        HID_KEY_TILDE				= 0x35,		// `~
+        HID_KEY_LESS_THAN			= 0x36,		// ,<
+        HID_KEY_GREAT_THAN		= 0x37,		// .>
+        HID_KEY_SLASH				= 0x38,		// /?
+        HID_KEY_CAPS_LOCK			= 0x39,
+
+        HID_KEY_F1		= 0x3a,
+        HID_KEY_F2		= 0x3b,
+        HID_KEY_F3		= 0x3c,
+        HID_KEY_F4		= 0x3d,
+        HID_KEY_F5		= 0x3e,
+        HID_KEY_F6		= 0x3f,
+        HID_KEY_F7		= 0x40,
+        HID_KEY_F8		= 0x41,
+        HID_KEY_F9		= 0x42,
+        HID_KEY_F10	= 0x43,
+        HID_KEY_F11	= 0x44,
+        HID_KEY_F12	= 0x45,
+    
+        HID_KEY_PRINT_SCREEN	= 0x46,
+        HID_KEY_SCROLL_LOCK	= 0x47,
+        HID_KEY_PAUSE			= 0x48,
+        HID_KEY_INSERT			= 0x49,
+        HID_KEY_HOME			= 0x4a,
+        HID_KEY_PAGE_UP		= 0x4b,
+        HID_KEY_DELETE		= 0x4c,
+        HID_KEY_END			= 0x4d,
+        HID_KEY_PAGE_DOWN	= 0x4e,
+        
+        HID_KEY_RIGHT_ARROW	= 0x4f,
+        HID_KEY_LEFT_ARROW	= 0x50,
+        HID_KEY_DOWN_ARROW	= 0x51,
+        HID_KEY_UP_ARROW		= 0x52,
+        
+        HID_KEY_NUM_LOCK		= 0x53,
+        HID_KEY_KP_SLASH		= 0x54,
+        HID_KEY_KP_ASTERISK	= 0x55,
+        HID_KEY_KP_MINUS		= 0x56,
+        HID_KEY_KP_PLUS		= 0x57,
+        HID_KEY_KP_ENTER		= 0x58,
+        HID_KEY_KP_1			= 0x59,
+        HID_KEY_KP_2			= 0x5a,
+        HID_KEY_KP_3			= 0x5b,
+        HID_KEY_KP_4			= 0x5c,
+        HID_KEY_KP_5			= 0x5d,
+        HID_KEY_KP_6			= 0x5e,
+        HID_KEY_KP_7			= 0x5f,
+        HID_KEY_KP_8			= 0x60,
+        HID_KEY_KP_9			= 0x61,
+        HID_KEY_KP_0			= 0x62,
+        HID_KEY_KP_DEL		= 0x63,
+  
+        HID_KEY_K45			= 0x64,
+        HID_KEY_APP			= 0x65,
+        HID_KEY_POWER			= 0x66,
+        HID_KEY_KP_EQUAL		= 0x67,
+        
+        HID_KEY_F13			= 0x68,
+        HID_KEY_F14			= 0x69,
+        HID_KEY_F15			= 0x6A,
+        HID_KEY_F16			= 0x6B,
+        HID_KEY_F17			= 0x6C,
+        HID_KEY_F18			= 0x6D,
+        HID_KEY_F19			= 0x6E,
+        HID_KEY_F20			= 0x6F,
+        HID_KEY_F21			= 0x70,
+        HID_KEY_F22			= 0x71,
+        HID_KEY_F23			= 0x72,
+        HID_KEY_F24			= 0x73,
+        
+        HID_KEY_EXECUTE		= 0x74,
+        HID_KEY_HELP			= 0x75,
+        HID_KEY_MENU			= 0x76,
+        HID_KEY_SELECT		= 0x77,
+    
+        HID_KEY_STOP			= 0x78,
+        HID_KEY_AGAIN			= 0x79,
+        HID_KEY_UNDO			= 0x7a,
+        HID_KEY_CUT			= 0x7b,
+        HID_KEY_COPY			= 0x7c,
+        HID_KEY_PASTE			= 0x7d,
+        HID_KEY_FIND			= 0x7e,
+        HID_KEY_MUTE			= 0x7f,
+        HID_KEY_VOL_UP		= 0x80,
+        HID_KEY_VOL_DOWN		= 0x81,
+    
+        HID_KEY_LOCKING_CAPS_LOCK		= 0x82,
+        HID_KEY_LOCKING_NUM_LOCK		= 0x83,
+        HID_KEY_LOCKING_SCROLL_LOCK		= 0x84,
+        HID_KEY_KP_COMMA					= 0x85,
+        HID_KEY_KP_EQUAL_AS400			= 0x86,
+        
+        HID_KEY_K56				= 0x87,
+        HID_KEY_K133  				= 0x88,
+        HID_KEY_K14  				= 0x89,
+        HID_KEY_K132  				= 0x8a,
+        HID_KEY_K131 				= 0x8b,
+    
+        HID_KEY_INTL_6				= 0x8c,
+        HID_KEY_INTL_7				= 0x8d,
+        HID_KEY_INTL_8				= 0x8e,
+        HID_KEY_INTL_9				= 0x8f,
+        HID_KEY_KR_R  				= 0x90,
+        HID_KEY_KR_L  				= 0x91,
+        HID_KEY_LANG_3			= 0x92,
+        HID_KEY_LANG_4			= 0x93,
+        HID_KEY_LANG_5			= 0x94,
+        HID_KEY_LANG_6			= 0x95,
+    
+        HID_KEY_LANG_7			= 0x96,
+        HID_KEY_LANG_8			= 0x97,
+        HID_KEY_LANG_9			= 0x98,
+        HID_KEY_ALT_ERASE			= 0x99,
+        HID_KEY_SYS_REQ			= 0x9a,
+        HID_KEY_CANCEL			= 0x9b,
+        HID_KEY_CLEAR				= 0x9c,
+        HID_KEY_PRIOR				= 0x9d,
+        HID_KEY_RETURN			= 0x9e,
+        HID_KEY_SEPARATOR		= 0x9f,
+    
+        HID_KEY_OUT				= 0xa0,
+        HID_KEY_OPER				= 0xa1,
+        HID_KEY_CLEAR_AGAIN		= 0xa2,
+        HID_KEY_CRSEL				= 0xa3,
+        HID_KEY_EXSEL				= 0xa4,
+    
+        // Reserved 0xa5~0xaf
+        HID_KEY_KP_00						= 0xb0,
+        HID_KEY_KP_000						= 0xb1,
+        HID_KEY_THOUSANDS_SEPERATOR	= 0xb2,
+        HID_KEY_DECIMAL_SEPERATOR		= 0xb3,
+        HID_KEY_CURRENCY_UNIT			= 0xb4,
+        HID_KEY_CURRENCY_SUB_UNIT		= 0xb5,
+        HID_KEY_KP_LEFT_PAREN			= 0xb6,
+        HID_KEY_KP_RIGHT_PAREN			= 0xb7,
+        HID_KEY_KP_LEFT_CURLY_BRACE		= 0xb8,
+        HID_KEY_KP_RIGHT_CURLY_BRACE	= 0xb9,
+        HID_KEY_KP_TAB					= 0xba,
+        HID_KEY_KP_BACKSPACE				= 0xbb,
+        HID_KEY_KP_A						= 0xbc,
+        HID_KEY_KP_B						= 0xbd,
+        HID_KEY_KP_C						= 0xbe,
+        HID_KEY_KP_D						= 0xbf,
+        HID_KEY_KP_E						= 0xc0,
+        HID_KEY_KP_F						= 0xc1,
+        HID_KEY_KP_XOR					= 0xc2,
+        HID_KEY_KP_CARET					= 0xc3,
+        HID_KEY_KP_PERCENT				= 0xc4,
+        HID_KEY_KP_LESS_THAN				= 0xc5,
+        HID_KEY_KP_GREATER_THAN			= 0xc6,
+        HID_KEY_KP_AMPERSAND				= 0xc7,
+    
+        HID_KEY_KP_DOUBLE_AMPERSAND	= 0xc8,
+        HID_KEY_KP_VERTICAL_BAR			= 0xc9,
+        HID_KEY_KP_DOUBLE_VERTICAL_BAR	= 0xca,
+        HID_KEY_KP_COLON					= 0xcb,
+        HID_KEY_KP_HASH					= 0xcc,
+        HID_KEY_KP_SPACE					= 0xcd,
+        HID_KEY_KP_AT						= 0xce,
+        HID_KEY_KP_EXCLAMATION			= 0xcf,
+        HID_KEY_KP_MEM_STORE			= 0xd0,
+        HID_KEY_KP_MEM_RECALL			= 0xd1,
+    
+        HID_KEY_KP_MEM_CLEAR				= 0xd2,
+        HID_KEY_KP_MEM_ADD				= 0xd3,
+        HID_KEY_KP_MEM_SUBTRACT			= 0xd4,
+        HID_KEY_KP_MEM_MULTIPLY			= 0xd5,
+        HID_KEY_KP_MEM_DIVIDE				= 0xd6,
+        HID_KEY_KP_PLUS_MINUS				= 0xd7,
+        HID_KEY_KP_CLEAR					= 0xd8,
+        HID_KEY_KP_CLEAR_ENTRY			= 0xd9,
+        HID_KEY_KP_BINARY					= 0xda,
+        HID_KEY_KP_OCTAL					= 0xdb,
+    
+        HID_KEY_KP_DECIMAL				= 0xdc,
+        HID_KEY_KP_HEX					= 0xdd,
+        // 0xde~0xdf reserved
+        
+        HID_KEY_LEFT_CTL			= 0xe0,
+        HID_KEY_LEFT_SHIFT			= 0xe1,
+        HID_KEY_LEFT_ALT 			= 0xe2,
+        HID_KEY_LEFT_GUI 			= 0xe3,
+        HID_KEY_RIGHT_CTL			= 0xe4,
+        HID_KEY_RIGHT_SHIFT		= 0xe5,
+        HID_KEY_RIGHT_ALT			= 0xe6,
+        HID_KEY_RIGHT_GUI			= 0xe7,
+        // 0xe8~0xff reserved
+        HID_KEY_FN 					= 0x7f,
+        HID_KEY_PB					= 0xef,
+        HID_KEY_NULL 				= 0x00,
+};
+
+enum multKey{
+//mult key
+	HID_MULTIKEY_MEDIA		= 0xF1,
+ 	HID_MULTIKEY_PALY		= 0xF2,
+ 	HID_MULTIKEY_STOP		= 0xF3,
+ 	HID_MULTIKEY_PRE_TRACK	= 0xF4,
+ 	HID_MULTIKEY_NEXT_TRACK	= 0xF5,
+ 	HID_MULTIKEY_VOL_DOWN	= 0xF6,
+ 	HID_MULTIKEY_VOL_UP		= 0xF7,
+ 	HID_MULTIKEY_MUTE			= 0xF8,
+ 	HID_MULTIKEY_MY_COMPUTER 	= 0xF9,
+ 	HID_MULTIKEY_MAIL			= 0xFA,
+ 	HID_MULTIKEY_CALCULATOR	= 0xFB,
+
+
+ 	HID_MULTIKEY_AC_FAVORITES	= 0xD0,
+ 	HID_MULTIKEY_AC_FORWARD	= 0xD1,
+ 	HID_MULTIKEY_AC_BACK		= 0xD2,
+ 	HID_MULTIKEY_AC_STOP		= 0xD3,
+ 	HID_MULTIKEY_AC_REFRESH	= 0xD4,
+ 	HID_MULTIKEY_AC_SEARCH	= 0xD5,
+ 	HID_MULTIKEY_AC_HOME		= 0xD6,
+ 	HID_MULTIKEY_LIGHT_DOWN	= 0xD7,
+ 	HID_MULTIKEY_LIGHT_UP		= 0xD8,
+	
+	HID_SYSTEM_KEY_POWER_DOWN 	= 0xDD,
+	HID_SYSTEM_KEY_SLEEP 			= 0xDE,
+	HID_SYSTEM_KEY_WAKE_UP		= 0xDF
+};
+
+enum hidReportId{
+	HID_REPORTID_KEY_STANDARD = 0x01,
+	HID_REPORTID_MEDIA_KEY = 0x02,
+	HID_REPORTID_SYSTEM_CTRL = 0x03,
+	HID_REPORTID_BATTERY = 0x04,
+	HID_REPORTID_FAST_CONN_NAME = 0x05,
+	HID_REPORTID_MOUSE = 0x06,
+	HID_REPORTID_GAME = 0x08
+};
+
+enum hidReportLen{
+	HID_REPORTLEN_1 = 0x09,
+	HID_REPORTLEN_2 = 0x05
+};
+
+#endif
Index: c51/keyscan.h
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/c51/keyscan.h	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/c51/keyscan.h	(working copy)
@@ -0,0 +1,61 @@
+/*
+ * Copyright 2016, yichip Semiconductor(shenzhen office)
+ * All Rights Reserved.
+ *
+ * This is UNPUBLISHED PROPRIETARY SOURCE CODE of Yichip Semiconductor;
+ * the contents of this file may not be disclosed to third parties, copied
+ * or duplicated in any form, in whole or in part, without the prior
+ * written permission of Yichip Semiconductor.
+ */
+#include "common.h"
+
+#ifndef _KEYSCAN_
+#define _KEYSCAN_
+
+#define KS_SEL_RGUI					0x80
+#define KS_SEL_RALT					0x40
+#define KS_SEL_RSHIFT				0x20
+#define KS_SEL_RCTRL				0x10
+#define KS_SEL_LGUI					0x08
+#define KS_SEL_LALT					0x04
+#define KS_SEL_LSHIFT				0x02
+#define KS_SEL_LCTRL				0x01
+
+#define KS_BUFF_POLL_LEN 6
+typedef struct {
+	byte standardSel;
+	byte ksPool[KS_BUFF_POLL_LEN];
+}tKSEVENT;
+
+/**
+ * This function initlialize key scan hardware.
+ * 
+ * @param none.
+ * 
+ * @return none.
+*/
+void KS_Initialize(void);
+
+/**
+ * This function Get Keyscan event message.
+ * 
+ * @param none.
+ * 
+ * @return ptr of keyscan event.
+*/
+tKSEVENT *KS_GetCurrentEvt();
+
+/**
+ * This function scan ks matrix.
+ * 
+ * @param none.
+ * 
+ * @return ptr of keyscan event.
+*/
+void KS_ScanMatrix();
+
+void KS_Unistall();
+
+
+#endif
+ 
\ No newline at end of file
Index: c51/keyscan.c
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/c51/keyscan.c	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/c51/keyscan.c	(working copy)
@@ -0,0 +1,352 @@
+#include "keyscan.h"
+
+
+extern code byte col[KB_KSCAN_COL_NUM+1];
+extern code byte  ksMap[KS_KEY_MAP_LEN];
+
+
+#define GET_RAW_KEY_SEL(y, g, n)	REG_GPIO_PUP (g) &= ~n; \
+	REG_GPIO_OE(g) |= n; \
+	REG_GPIO_OUT(g) &= ~n;	\
+	y = ~ REG_GPIO_IN(0);	\
+	REG_GPIO_PUP(g) |= n;	\
+	REG_GPIO_OE(g) &= ~n
+
+
+#define GET_RAW_KEY_SEL0(y,x)		GPIO_SetOutput(x, 0); \
+		y = ~ REG_GPIO_IN(0);	\
+		GPIO_SetInput(x, 0)
+
+tKSEVENT xdata ksEvtPool;
+
+#define MAX(a,b) ((a)>(b)?(a):(b))
+
+static byte bit_count(byte v)
+{
+	unsigned char c;
+	for (c = 0; v; c++) {
+    	v &= v - 1;
+    }
+    return c;
+}
+
+
+//byte col[] = {25,26};
+static void keyIn(byte key)
+{
+	byte i = 0,full_flag = 0,full=0,temp_chu=0;
+
+	if(key >= HID_KEY_LEFT_CTL && key <= HID_KEY_RIGHT_GUI)
+	{
+		ksEvtPool.standardSel  |=  0x01 << (key & 0x07);
+		return;
+	}
+
+	for(i=0;i<6;i++)
+	{
+		if(ksEvtPool.ksPool[i] != 0)
+		{
+			full_flag++;
+		}
+	}
+
+
+	//special key
+
+	for (i=0 ; i<KS_BUFF_POLL_LEN ; i++) 
+	{
+		if (ksEvtPool.ksPool[i] == key && full_flag==6)
+		{
+			full=1;
+			break;
+		}
+		if (ksEvtPool.ksPool[i] == 0) 
+		{
+			if(mult_key_value != key)
+				ksEvtPool.ksPool[i] = key;
+			break;
+		}
+	}
+
+
+	if(full_flag == 6 && full ==0)
+	{
+		if(key <= 112)
+		{
+			temp_chu = (key)/8;
+			bitkey[temp_chu+1]  |=  (1<<((key)%8)); 
+		}
+	}
+	
+}
+
+static void keyOut(byte key)
+{
+	byte i = 0,full_flag=0, temp_chu=0;
+	byte found = 0;
+
+	if ((key &0xF0) == 0xf0 || (key &0xD0) == 0xD0)
+	{
+		if(mult_key_status == KEY_WAIT_RELEASE)
+		{
+			mult_key_status = KEY_RELEASE;
+		}
+	}
+	else
+		standard_key_release_flag = 1;
+
+	if(key >= HID_KEY_LEFT_CTL && key <= HID_KEY_RIGHT_GUI)
+	{
+		ksEvtPool.standardSel  &= ~(0x01 << (key & 0x07));
+		return;
+	}
+	
+
+	for (i=0 ; i<KS_BUFF_POLL_LEN ; i++) 
+	{
+		if (found == 0) 
+		{
+			if (ksEvtPool.ksPool[i] == key) {
+				if (i == KS_BUFF_POLL_LEN-1) {
+					ksEvtPool.ksPool[i] = 0;
+				}
+				found = 1;
+			}
+		}
+		else 
+		{
+			ksEvtPool.ksPool[i-1] = ksEvtPool.ksPool[i];
+			if (ksEvtPool.ksPool[i] == 0)
+				break;
+			if (i == KS_BUFF_POLL_LEN-1) {
+				ksEvtPool.ksPool[i] = 0;
+			}
+		}
+	}
+
+
+	if(key <= 112)
+	{
+		temp_chu = (key)/8;
+		bitkey[temp_chu+1]  &=  ~(1<<((key)%8)); 
+	}
+	
+}
+
+static void ksRawInitialize()
+{
+	byte i = 0;
+	
+	for (i=0; i<8; i++) {
+		GPIO_SetInput(i, 0);
+	}
+}
+
+static void ksColInitialize()
+{
+	byte i = 0;
+	for (i=0; col[i]!=0; i++) {
+		GPIO_SetInput(col[i], 0);
+	}
+}
+
+void KS_Initialize()
+{
+	REG_GPIO_SELECT(0) = 0;
+	REG_GPIO_SELECT(1) = 0;
+	REG_GPIO_SELECT(2) = 0;
+	ksRawInitialize();
+	ksColInitialize();
+}
+
+void KS_Unistall()
+{
+	byte i = 0;
+	byte temp = 0;
+	byte tgroup = 0;
+	byte tgpionum = 0;
+	for (i=0; col[i]!=0; i++) {
+		tgroup = col[i]  >> 3;
+		tgpionum = 1 << (col[i] & 7);
+		REG_GPIO_PUP (tgroup) &= ~tgpionum;
+		REG_GPIO_OE(tgroup) |= tgpionum;
+		REG_GPIO_OUT(tgroup) &= ~tgpionum;
+	}
+	
+	GPIO_fillpd();
+	
+	temp = REG_GPIO_IN(0);
+
+	if(long_press_flag)
+	{
+		GPIO_SetWakeupByCurrentState(0);
+		GPIO_SetWakeupByCurrentState(1);
+		GPIO_SetWakeupByCurrentState(2);
+		GPIO_SetWakeupByCurrentState(3);
+		GPIO_SetWakeupByCurrentState(4);
+		GPIO_SetWakeupByCurrentState(5);
+		GPIO_SetWakeupByCurrentState(6);
+		GPIO_SetWakeupByCurrentState(7);
+	}
+	else
+	{
+		YC_GPIOWakeupL[0] = temp;
+		YC_GPIOWakeupH[0] = ~temp;
+	}
+
+}
+
+
+void KS_ScanMatrix()
+{
+	byte i = 0;
+	byte j = 0;
+	byte tgroup = 0;
+	byte tgpionum = 0;
+	byte temp = 0;
+	byte check = 0;
+	for (i=0; col[i]!=0; i++) {
+		tgroup = col[i]  >> 3;
+		tgpionum = 1 << (col[i] & 7);
+		GET_RAW_KEY_SEL(ksSelMapCurr[i], tgroup, tgpionum);
+	}
+
+	for (i=0; col[i]!=0; i++) {
+		tgroup = col[i]  >> 3;
+		tgpionum = 1 << (col[i] & 7);
+		GET_RAW_KEY_SEL(ksSelMapCheck[i], tgroup, tgpionum);
+	}
+
+	for (i=0; col[i]!=0; i++) {
+		if (ksSelMapCheck[i]!=ksSelMapCurr[i]) {
+			ksSelMapCurr[i] &= ksSelMapCheck[i];
+		}
+	}
+}
+
+byte array_is_empty(byte * str1,byte len)
+{
+	byte i;
+	for (i=0;i < len;i++)
+	{
+		if (str1[i] != 0)
+			return 0x00;
+	}
+	return 0x01;
+}
+
+
+tKSEVENT *KS_GetCurrentEvt()
+{
+	//
+	byte i = 0;
+	byte j = 0;
+	byte k = 0;
+	byte temp = 0;
+	byte flag = 0;
+	byte offset = 0;
+	byte state = 0;
+	byte keyCounttemp = 0;
+	byte key_value_temp = 0;
+	byte ghost = 0;
+	byte rawCount = 0;
+	
+	KS_ScanMatrix();
+
+	if (compare_str(ksSelMapCurr,ksSelMapCheck,KB_KSCAN_COL_NUM) 
+		&& !array_is_empty(ksSelMapCurr,KB_KSCAN_COL_NUM))
+	{
+		g_variable.button_flag |= 0x02;
+	}
+	else
+	{	
+		g_variable.button_flag &= 0xFD;
+		g_variable.button_timer[1] = 0;
+	}
+
+	for (i=0; col[i]!=0; i++) 
+	{
+		temp = ksSelMapCurr[i];
+		rawCount = bit_count(temp);
+		if(rawCount >= 2)		// col[i] has more than two key press
+		{
+			for(j=0 ; j<8 ;j++)
+			{
+				if(temp & (1<<j))	// Ci_Rj press
+				{
+					for(k=0 ; col[k]!=0; k++)
+					{
+						if(k!= i)
+						{
+							if(ksSelMapCurr[k] & (1<<j))	// R line has another key press
+							{
+								ghost = 1;
+								break;
+							}	
+						}
+					}
+				}
+			}
+		}
+		
+		if (temp!=0)
+		{
+			keyCounttemp += bit_count(temp);
+		}
+	}
+	keyCount = keyCounttemp;
+	
+	for (i=0; col[i]!=0; i++)
+	{
+		temp = ksSelMapCurr[i] ^ ksSelMapOld[i];
+		state = ksSelMapCurr[i];
+		if (temp == 0) 
+		{
+			continue;
+		}
+		else 
+		{
+
+			if (ghost) 
+				return NULL;
+			ksSelMapOld[i] = ksSelMapCurr[i];
+			for (j = 0 ; j<8 ; j++) 
+			{
+				if (temp&1)
+				{
+					offset = i<<3 |j;
+					key_value_temp = key_fn_function(state,ksMap[offset]);
+					if (state & 1)
+					{
+						keyIn(key_value_temp);
+					}
+					else
+					{
+						keyOut(key_value_temp);
+					}
+				}
+				temp = temp >>1;
+				state = state>>1;
+			}
+			flag = 1;
+		}
+	}
+	
+	if((mult_key_status == KEY_RELEASE) && (standard_key_release_flag == 1))
+	{
+		standard_key_release_flag = 2;		//media key and standard key  release the same time
+	}
+
+	
+	if (flag || standard_key_release_flag == 2) 
+	{
+		return &ksEvtPool;
+	}
+	else
+	{
+		return NULL;
+	}
+	
+
+}
+
Index: c51/led.h
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/c51/led.h	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/c51/led.h	(working copy)
@@ -0,0 +1,23 @@
+#ifndef _LED_H
+#define _LED_H
+#include "common.h"
+
+#define LED_ON 1
+#define LED_OFF 0
+
+#define LED_ON_0  	0
+#define LED_OFF_1 	1
+
+
+void LED_all_shutdown();
+void LED_backlight_neno();
+void backlight_led_process();
+void LED_handle();
+void LED_device_poweron();
+void LED_device_poweroff();
+void LED_Breath_1();
+void LED_Breath_2();
+void LED_Breath_3();
+#endif /* YC_LED_H */
+
+
Index: c51/output/FW
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: c51/output/FW
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: c51/led.c
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/c51/led.c	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/c51/led.c	(working copy)
@@ -0,0 +1,334 @@
+#include "led.h"
+
+
+void LED_all_shutdown()
+{
+	GPIO_SetOutput(CAPS_LED_GPIO,LED_OFF);
+	GPIO_SetOutput(WIN_LOCK_LED_GPIO,LED_OFF);
+	GPIO_SetOutput(LOWPOWER_LED_GPIO, LED_OFF);
+	GPIO_SetOutput(G24_LED_GPIO, LED_OFF);
+	GPIO_SetOutput(BT_BUTTON_GPIO, LED_OFF);
+	GPIO_SetOutput(NUM_LOCK_LED_GPIO, LED_OFF);
+}
+
+void LED_device_poweron()
+	{
+
+			GPIO_Setout(BT_BUTTON_GPIO,LED_ON);
+
+	}
+
+
+void LED_device_poweroff()
+	{
+
+			GPIO_Setout(BT_BUTTON_GPIO,LED_OFF);
+	}
+void LED_handle()
+{
+	if (power_on_flag != 2)
+		return;
+
+	if(g_variable.system_win_app_lock_flag)
+		GPIO_SetOutput(WIN_LOCK_LED_GPIO,LED_OFF);
+	else
+		GPIO_SetOutput(WIN_LOCK_LED_GPIO,LED_ON);
+
+
+	if(!g_variable.pairing_timeout && !g_variable.pairing_g24_timeout)
+	{
+		backlight_led_process();
+		//low battery LED process
+		if (g_variable.battery_status == BAT_STATUS_SHUT_DOWN)
+		{
+			System_long_sleep();
+		}
+		else if (g_variable.battery_status == BAT_STATUS_LOW)
+		{
+			if (g_variable.battery_low_led_flash_flag == 0)
+			{
+				g_variable.battery_low_led_flash_interval = LOW_BATTERY_FLASH_INTERVAL;
+				g_variable.battery_low_led_flash_flag = 1;
+			}
+		}
+		else
+		{
+			if (g_variable.battery_low_led_flash_flag == 1)
+			{
+				g_variable.battery_low_led_flash_flag = 0;
+				g_variable.battery_low_led_flash_interval = 0;
+				GPIO_Setout(LOWPOWER_LED_GPIO, LED_OFF);
+			}
+		}
+
+		//capslock  numlock  scrolllock LED process
+		if (YC_check_is_connected())
+		{			
+				if (g_variable.sleepTimer < KB_NUM_CAPS_LED_ON_TIMER)
+				{
+				
+					if(m_caps_num_lock & KB_PC_KEYSEL_NUMLOCK)
+					{
+						GPIO_Setout(NUM_LOCK_LED_GPIO, LED_ON);
+					}
+					else
+					{
+						GPIO_Setout(NUM_LOCK_LED_GPIO, LED_OFF);
+					}
+					
+					if(m_caps_num_lock & KB_PC_KEYSEL_CAPSLOCK)
+					{
+						GPIO_Setout(CAPS_LED_GPIO, LED_ON);
+					}
+					else 
+					{
+						GPIO_Setout(CAPS_LED_GPIO, LED_OFF);
+					}	
+
+				}
+				else
+				{
+					GPIO_Setout(CAPS_LED_GPIO, LED_OFF);
+					GPIO_Setout(NUM_LOCK_LED_GPIO, LED_OFF);
+				}
+			}
+		else
+		{
+			GPIO_Setout(CAPS_LED_GPIO, LED_OFF);
+		}
+	}
+	else
+	{
+		GPIO_Setout(CAPS_LED_GPIO, LED_OFF);
+	}
+
+}
+
+void LED_backlight_neno()
+{
+			YC_PWM_disable(7);
+			GPIO_SetOutput(RLED_GPIO,LED_OFF);
+			GPIO_SetOutput(GLED_GPIO,LED_OFF);	
+			GPIO_SetOutput(BLED_GPIO,LED_OFF);
+
+}
+
+void LED_backlight_breath()
+{
+#ifdef PWM_ENABLE
+	if(m_customize_timer_last != m_customize_timer)
+	{
+		m_customize_timer_last = m_customize_timer;
+		if((g_variable.battery_status != BAT_STATUS_NONE))
+		{
+			YC_PWM_disable(7);	
+
+			
+			return;
+		}
+
+		
+		if(g_variable.backlight_level == BACKLIGHT_BREATH)
+		{
+
+if((g_variable.backlight_breathe_flag_1)&&(!g_variable.backlight_breathe_flag_2)&&(!g_variable.backlight_breathe_flag_3))
+	{
+
+		if(g_variable.backlight_flag)
+			{
+				if((g_variable.backlight_breathe_step_1 >= 85))
+				{
+						g_variable.backlight_breathe_step_1--;
+						g_variable.backlight_flag=0;
+				}
+					
+				else if((g_variable.backlight_breathe_step_1 < 85)&&(g_variable.backlight_breathe_step_1 > 0))
+					g_variable.backlight_breathe_step_1++;
+			}	
+		else
+			{
+				 if((g_variable.backlight_breathe_step_1!= 5))
+					g_variable.backlight_breathe_step_1--;
+				else
+						{
+							g_variable.backlight_breathe_flag_1=0;
+							g_variable.backlight_breathe_flag_2=1;
+							g_variable.backlight_breathe_flag_3=0;
+							g_variable.backlight_flag=1;
+							g_variable.backlight_breathe_step_flag=2;
+						}
+			}
+	}	
+else if((!g_variable.backlight_breathe_flag_1)&&(g_variable.backlight_breathe_flag_2)&&(!g_variable.backlight_breathe_flag_3))	
+	{
+	
+	if(g_variable.backlight_flag)
+		{
+			if(g_variable.backlight_breathe_step_2 >= 85)
+			{
+			g_variable.backlight_breathe_step_2--;
+			g_variable.backlight_flag=0;
+			}
+			else if((g_variable.backlight_breathe_step_2 < 85)&&(g_variable.backlight_breathe_step_2> 0))
+				g_variable.backlight_breathe_step_2++;
+			
+		}
+	else
+		{
+			 if((g_variable.backlight_breathe_step_2!= 5))
+				g_variable.backlight_breathe_step_2--;
+			else
+				{
+					g_variable.backlight_breathe_flag_2=0;
+					g_variable.backlight_breathe_flag_1=0;
+					g_variable.backlight_breathe_flag_3=1;
+					g_variable.backlight_flag=1;
+					g_variable.backlight_breathe_step_flag=3;
+				}
+		}	
+	}
+else if((!g_variable.backlight_breathe_flag_1)&&(!g_variable.backlight_breathe_flag_2)&&(g_variable.backlight_breathe_flag_3))	
+	{
+	
+	if(g_variable.backlight_flag)
+		{
+			if(g_variable.backlight_breathe_step_3 >= 85)
+			{
+			g_variable.backlight_breathe_step_3--;
+			g_variable.backlight_flag=0;
+			}
+			else if((g_variable.backlight_breathe_step_3 < 85)&&(g_variable.backlight_breathe_step_3> 0))
+				g_variable.backlight_breathe_step_3++;
+		}
+	else
+		{
+			 if((g_variable.backlight_breathe_step_3!= 5))
+				g_variable.backlight_breathe_step_3--;
+			else
+				{
+					g_variable.backlight_breathe_flag_3=0;
+					g_variable.backlight_breathe_flag_1=0;
+					g_variable.backlight_breathe_flag_1=1;
+					g_variable.backlight_flag=1;
+					g_variable.backlight_breathe_step_flag=1;
+				}
+		}	
+	}
+	
+else
+	{
+			g_variable.backlight_flag=1;
+			g_variable.backlight_breathe_flag_1=1;
+			g_variable.backlight_breathe_flag_2=0;
+			g_variable.backlight_breathe_flag_3=0;
+			g_variable.backlight_breathe_step_1=80;
+			g_variable.backlight_breathe_step_2=85;
+			g_variable.backlight_breathe_step_3=50;
+	}
+
+			m_lpm_mode = 0;
+			g_variable.pwm_lpm_mode_flag = 1;
+	if(g_variable.backlight_breathe_step_flag==1)
+	LED_Breath_1();	
+	 else if(g_variable.backlight_breathe_step_flag==2)
+	 LED_Breath_2();
+	 else if(g_variable.backlight_breathe_step_flag==3)
+	 LED_Breath_3();	 
+	 else
+	 g_variable.backlight_breathe_step_flag=0;
+}
+		else
+		{
+			YC_PWM_set_duty(7,g_variable.backlight_duty_level);	
+		}
+	}
+#endif	
+}
+
+
+void LED_Breath_1()
+{
+		YC_PWM_init(3);
+	REG_PWM_PCOUNT(0) = g_variable.backlight_breathe_step_1;
+	REG_PWM_NCOUNT(0) = (100 - g_variable.backlight_breathe_step_1);
+	REG_PWM_ENABLE |= 0x40;	
+}
+void LED_Breath_2()
+{					
+		YC_PWM_init(5);
+	REG_PWM_PCOUNT(0) = g_variable.backlight_breathe_step_2;
+	REG_PWM_NCOUNT(0) = (100 - g_variable.backlight_breathe_step_2);
+	REG_PWM_ENABLE |= 0x40;			
+
+}
+void LED_Breath_3()
+{				
+		YC_PWM_init(6);
+	REG_PWM_PCOUNT(0) = g_variable.backlight_breathe_step_3;
+	REG_PWM_NCOUNT(0) = (100 - g_variable.backlight_breathe_step_3);
+	REG_PWM_ENABLE |= 0x40;			
+
+}
+
+void backlight_led_process()
+{
+	g_variable.backlight_switch_timer++;
+	if((g_variable.backlight_switch_timer % g_variable.backlight_speed) == 0)
+	{
+		switch(g_variable.backlight_level)
+		{
+			case BACKLIGHT_ON:
+			YC_PWM_set_duty(7,g_variable.backlight_duty_level);
+				break;
+			case BACKLIGHT_BREATH:
+			LED_backlight_breath();
+				break;
+			case BACKLIGHT_SWITCH:
+			if(g_variable.backlight_kind== BACLIGHT_LED_1)
+			{
+				YC_PWM_set_duty(7,BACKLIGHT_DUTY_LEVEL_00);
+				YC_PWM_set_duty(1,g_variable.backlight_duty_level);	
+			}
+			if(g_variable.backlight_kind== BACLIGHT_LED_2)
+			{
+				YC_PWM_set_duty(7,BACKLIGHT_DUTY_LEVEL_00);
+				YC_PWM_set_duty(2,g_variable.backlight_duty_level);	
+			}
+			if(g_variable.backlight_kind== BACLIGHT_LED_3)
+			{
+				YC_PWM_set_duty(7,BACKLIGHT_DUTY_LEVEL_00);
+				YC_PWM_set_duty(3,g_variable.backlight_duty_level);	
+			}
+			if(g_variable.backlight_kind== BACLIGHT_LED_4)	
+			{
+				YC_PWM_set_duty(7,BACKLIGHT_DUTY_LEVEL_00);
+				YC_PWM_set_duty(4,g_variable.backlight_duty_level);	
+			}	
+			if(g_variable.backlight_kind== BACLIGHT_LED_5)
+			{
+				YC_PWM_set_duty(7,BACKLIGHT_DUTY_LEVEL_00);
+				YC_PWM_set_duty(5,g_variable.backlight_duty_level);	
+			}			
+			if(g_variable.backlight_kind== BACLIGHT_LED_6)	
+			{
+				YC_PWM_set_duty(7,BACKLIGHT_DUTY_LEVEL_00);
+				YC_PWM_set_duty(6,g_variable.backlight_duty_level);	
+			}	
+			if(g_variable.backlight_kind== BACLIGHT_LED_7)
+			{
+				YC_PWM_set_duty(7,BACKLIGHT_DUTY_LEVEL_00);
+				YC_PWM_set_duty(7,g_variable.backlight_duty_level);	
+			}			
+			break;					
+			case BACKLIGHT_OFF:
+			default:		
+			YC_PWM_set_duty(7,BACKLIGHT_DUTY_LEVEL_00);		
+				break;
+				
+
+		}
+	}
+}
+
+
+
Index: c51/output/FW.COD
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/c51/output/FW.COD	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/c51/output/FW.COD	(working copy)
@@ -0,0 +1,13150 @@
+LX51 LINKER/LOCATER V4.41                                                               05/26/2022  10:54:57  PAGE 1
+
+
+
+
+
+ASSEMBLER CODE PACKING OF MODULE:  OUTPUT\FW (BLUETOOTH)
+
+
+----- FUNCTION _YC_load_record_list (BEGIN) -----
+ FILE: 'bluetooth.c'
+    4: void YC_load_record_list(byte index)
+    5: {
+00078C 904F18            MOV     DPTR,#index
+00078F EF                MOV     A,R7
+000790 F0                MOVX    @DPTR,A
+    6: 	if (g_variable.recon_count == 0)
+    7: 		return;
+000791 904CCF            MOV     DPTR,#g_variable+031H
+000794 E0                MOVX    A,@DPTR
+000795 7003              JNZ     $ + 5H
+000797 0208B2            LJMP    ?C0002?BLUETOOTH
+00079A         ?C0001?BLUETOOTH:
+    8: 	g_variable.recon_count--;
+00079A 904CCF            MOV     DPTR,#g_variable+031H
+00079D E0                MOVX    A,@DPTR
+00079E 14                DEC     A
+00079F F0                MOVX    @DPTR,A
+    9: 	ble_reconnect_flag = 0;
+0007A0 E4                CLR     A
+0007A1 904DF5            MOV     DPTR,#ble_reconnect_flag
+0007A4 F0                MOVX    @DPTR,A
+   10: 	fast_connect_flag = 0;
+0007A5 904E61            MOV     DPTR,#fast_connect_flag
+0007A8 F0                MOVX    @DPTR,A
+   11: 	if (bd_key_record_list[index].device_type == TYPE_BLE)		
+0007A9 904F18            MOV     DPTR,#index
+0007AC E0                MOVX    A,@DPTR
+0007AD FF                MOV     R7,A
+0007AE 75F01E            MOV     B,#01EH
+0007B1 A4                MUL     AB
+0007B2 24FD              ADD     A,#LOW bd_key_record_list
+0007B4 F582              MOV     DPL,A
+0007B6 E4                CLR     A
+0007B7 344D              ADDC    A,#HIGH bd_key_record_list
+0007B9 F583              MOV     DPH,A
+0007BB E0                MOVX    A,@DPTR
+0007BC 6401              XRL     A,#01H
+0007BE 706F              JNZ     ?C0003?BLUETOOTH
+   12: 	{
+   13: 		xmemcpy(m_reconn_addr,bd_key_record_list[index].device_addr,6);
+0007C0 EF                MOV     A,R7
+0007C1 75F01E            MOV     B,#01EH
+0007C4 A4                MUL     AB
+0007C5 24FE              ADD     A,#LOW bd_key_record_list+01H
+0007C7 F9                MOV     R1,A
+0007C8 744D              MOV     A,#HIGH bd_key_record_list+01H
+0007CA 35F0              ADDC    A,B
+0007CC FA                MOV     R2,A
+0007CD 7B01              MOV     R3,#01H
+0007CF 7E42              MOV     R6,#HIGH m_reconn_addr
+0007D1 7F74              MOV     R7,#LOW m_reconn_addr
+0007D3 904ED0            MOV     DPTR,#?_xmemcpy?BYTE+05H
+0007D6 7406              MOV     A,#06H
+0007D8 F0                MOVX    @DPTR,A
+0007D9 1210C8            LCALL   _xmemcpy
+   14: 		xmemcpy(m_le_ltk,bd_key_record_list[index].device_link_key,16);
+0007DC 904F18            MOV     DPTR,#index
+0007DF E0                MOVX    A,@DPTR
+0007E0 75F01E            MOV     B,#01EH
+0007E3 A4                MUL     AB
+0007E4 2404              ADD     A,#LOW bd_key_record_list+07H
+0007E6 F9                MOV     R1,A
+0007E7 744E              MOV     A,#HIGH bd_key_record_list+07H
+0007E9 35F0              ADDC    A,B
+0007EB FA                MOV     R2,A
+0007EC 7B01              MOV     R3,#01H
+0007EE 7E44              MOV     R6,#HIGH m_le_ltk
+0007F0 7F7B              MOV     R7,#LOW m_le_ltk
+0007F2 904ED0            MOV     DPTR,#?_xmemcpy?BYTE+05H
+0007F5 7410              MOV     A,#010H
+0007F7 F0                MOVX    @DPTR,A
+0007F8 1210C8            LCALL   _xmemcpy
+   15: 		xmemcpy(m_le_lap,bd_key_record_list[index].local_addr,6);
+0007FB 904F18            MOV     DPTR,#index
+0007FE E0                MOVX    A,@DPTR
+0007FF 75F01E            MOV     B,#01EH
+000802 A4                MUL     AB
+000803 2414              ADD     A,#LOW bd_key_record_list+017H
+000805 F9                MOV     R1,A
+000806 744E              MOV     A,#HIGH bd_key_record_list+017H
+000808 35F0              ADDC    A,B
+00080A FA                MOV     R2,A
+00080B 7B01              MOV     R3,#01H
+00080D 7E44              MOV     R6,#HIGH m_le_lap
+00080F 7FF9              MOV     R7,#LOW m_le_lap
+000811 904ED0            MOV     DPTR,#?_xmemcpy?BYTE+05H
+000814 7406              MOV     A,#06H
+000816 F0                MOVX    @DPTR,A
+000817 1210C8            LCALL   _xmemcpy
+   16: 		IPC_TxControlCmd(IPC_CMD_START_ADV_REC);		//ble reconnect
+00081A 7F2B              MOV     R7,#02BH
+00081C 11B3              ACALL   _IPC_TxControlCmd
+   17: 		ble_reconnect_flag = 1;
+00081E 904DF5            MOV     DPTR,#ble_reconnect_flag
+000821 7401              MOV     A,#01H
+000823 F0                MOVX    @DPTR,A
+   18: 		g_variable.recon_count = 0;
+000824 E4                CLR     A
+000825 904CCF            MOV     DPTR,#g_variable+031H
+000828 F0                MOVX    @DPTR,A
+   19: 		m_ltk_exists = 1;
+000829 90448B            MOV     DPTR,#m_ltk_exists
+00082C 04                INC     A
+00082D F0                MOVX    @DPTR,A
+   20: 	}
+00082E 22                RET     
+00082F         ?C0003?BLUETOOTH:
+   21: 	else if (bd_key_record_list[index].device_type == TYPE_BT)
+00082F 904F18            MOV     DPTR,#index
+000832 E0                MOVX    A,@DPTR
+000833 FF                MOV     R7,A
+000834 75F01E            MOV     B,#01EH
+000837 A4                MUL     AB
+000838 24FD              ADD     A,#LOW bd_key_record_list
+00083A F582              MOV     DPL,A
+00083C E4                CLR     A
+00083D 344D              ADDC    A,#HIGH bd_key_record_list
+00083F F583              MOV     DPH,A
+000841 E0                MOVX    A,@DPTR
+000842 6402              XRL     A,#02H
+000844 7046              JNZ     ?C0005?BLUETOOTH
+   22: 	{
+   23: 		xmemcpy(m_reconn_addr,bd_key_record_list[index].device_addr,6);
+000846 EF                MOV     A,R7
+000847 75F01E            MOV     B,#01EH
+00084A A4                MUL     AB
+00084B 24FE              ADD     A,#LOW bd_key_record_list+01H
+00084D F9                MOV     R1,A
+00084E 744D              MOV     A,#HIGH bd_key_record_list+01H
+000850 35F0              ADDC    A,B
+000852 FA                MOV     R2,A
+000853 7B01              MOV     R3,#01H
+000855 7E42              MOV     R6,#HIGH m_reconn_addr
+000857 7F74              MOV     R7,#LOW m_reconn_addr
+000859 904ED0            MOV     DPTR,#?_xmemcpy?BYTE+05H
+00085C 7406              MOV     A,#06H
+00085E F0                MOVX    @DPTR,A
+00085F 1210C8            LCALL   _xmemcpy
+   24: 		xmemcpy(m_linkkey,bd_key_record_list[index].device_link_key,16);
+000862 904F18            MOV     DPTR,#index
+000865 E0                MOVX    A,@DPTR
+000866 75F01E            MOV     B,#01EH
+000869 A4                MUL     AB
+00086A 2404              ADD     A,#LOW bd_key_record_list+07H
+00086C F9                MOV     R1,A
+00086D 744E              MOV     A,#HIGH bd_key_record_list+07H
+00086F 35F0              ADDC    A,B
+000871 FA                MOV     R2,A
+000872 7B01              MOV     R3,#01H
+000874 7E42              MOV     R6,#HIGH m_linkkey
+000876 7F62              MOV     R7,#LOW m_linkkey
+000878 904ED0            MOV     DPTR,#?_xmemcpy?BYTE+05H
+00087B 7410              MOV     A,#010H
+00087D F0                MOVX    @DPTR,A
+00087E 1210C8            LCALL   _xmemcpy
+   25: 		IPC_TxControlCmd(IPC_CMD_RECONNECT);
+000881 7F03              MOV     R7,#03H
+000883 11B3              ACALL   _IPC_TxControlCmd
+   26: 		m_link_key_exists = 1;
+000885 90425E            MOV     DPTR,#m_link_key_exists
+000888 7401              MOV     A,#01H
+00088A F0                MOVX    @DPTR,A
+   27: 	}
+00088B 22                RET     
+00088C         ?C0005?BLUETOOTH:
+   28: 	else		
+   29: 	{
+   30: 		fast_connect_flag = 1;
+00088C 904E61            MOV     DPTR,#fast_connect_flag
+00088F 7401              MOV     A,#01H
+000891 F0                MOVX    @DPTR,A
+   31: 	#ifdef BLE_FAST_CONNECT_ENABLE
+   32: 			m_le_lap[0] = 0x0F;
+000892 9044F9            MOV     DPTR,#m_le_lap
+000895 740F              MOV     A,#0FH
+000897 F0                MOVX    @DPTR,A
+   33: 			m_le_lap[1] = 0x0F;
+000898 A3                INC     DPTR
+000899 F0                MOVX    @DPTR,A
+   34: 			m_le_lap[2] = 0x0F;
+00089A A3                INC     DPTR
+00089B F0                MOVX    @DPTR,A
+   35: 			m_le_lap[3] = 0x0F;
+00089C A3                INC     DPTR
+00089D F0                MOVX    @DPTR,A
+   36: 			m_le_lap[4] = 0x0F;
+00089E A3                INC     DPTR
+00089F F0                MOVX    @DPTR,A
+   37: 			m_le_lap[5] = 0x0F;
+0008A0 A3                INC     DPTR
+0008A1 F0                MOVX    @DPTR,A
+   38: 			ble_fast_connect_flag =1;
+0008A2 904DE2            MOV     DPTR,#ble_fast_connect_flag
+0008A5 7401              MOV     A,#01H
+0008A7 F0                MOVX    @DPTR,A
+   39: 			IPC_TxControlCmd(IPC_CMD_START_ADV_REC);
+0008A8 7F2B              MOV     R7,#02BH
+0008AA 11B3              ACALL   _IPC_TxControlCmd
+   40: 			m_link_key_exists = 1;
+0008AC 90425E            MOV     DPTR,#m_link_key_exists
+0008AF 7401              MOV     A,#01H
+0008B1 F0                MOVX    @DPTR,A
+   41: 	#endif
+   42: 	#ifdef BT_FAST_CONNECT_ENABLE
+   43: 			m_reconn_addr[0] = 0xFF;
+   44: 			m_reconn_addr[1] = 0xFF;
+   45: 			m_reconn_addr[2] = 0xFF;
+   46: 			m_reconn_addr[3] = 0xFF;
+   47: 			m_reconn_addr[4] = 0xFF;
+   48: 			m_reconn_addr[5] = 0xFF;
+   49: 			xmemclear_ff((byte *)m_linkkey,16); 
+   50: 			IPC_TxControlCmd(IPC_CMD_RECONNECT);
+   51: 			m_link_key_exists = 1;	
+   52: 			g_variable.fast_connect_send_name = 1;
+   53: 	#endif
+   54: 	}	
+   55: }
+0008B2         ?C0002?BLUETOOTH:
+0008B2 22                RET     
+----- FUNCTION _YC_load_record_list (END) -------
+
+
+----- FUNCTION _IPC_TxControlCmd (BEGIN) -----
+ FILE: 'ipc.c'
+   74: void IPC_TxControlCmd(byte cmd)
+   75: {
+0008B3 904EF1            MOV     DPTR,#cmd
+0008B6 EF                MOV     A,R7
+0008B7 F0                MOVX    @DPTR,A
+   76: 	byte cmdBuff[IPC_CMD_LEN] = {
+   77: 		IPC_CONTROL_CMD, 0x01
+0008B8 78F2              MOV     R0,#LOW cmdBuff
+0008BA 7C4E              MOV     R4,#HIGH cmdBuff
+0008BC 7D01              MOV     R5,#01H
+0008BE 7BFF              MOV     R3,#0FFH
+0008C0 7A07              MOV     R2,#HIGH _?ix1000
+0008C2 7989              MOV     R1,#LOW _?ix1000
+0008C4 7E00              MOV     R6,#00H
+0008C6 7F03              MOV     R7,#03H
+0008C8 120390            LCALL   ?C?COPY
+   78: 	};
+   79: 	cmdBuff[IPC_CMD_LEN - 1] = cmd;
+0008CB 904EF1            MOV     DPTR,#cmd
+0008CE E0                MOVX    A,@DPTR
+0008CF 904EF4            MOV     DPTR,#cmdBuff+02H
+0008D2 F0                MOVX    @DPTR,A
+   80: 	ipcTx(cmdBuff, IPC_CMD_LEN);
+0008D3 7B01              MOV     R3,#01H
+0008D5 7A4E              MOV     R2,#HIGH cmdBuff
+0008D7 79F2              MOV     R1,#LOW cmdBuff
+0008D9 7D03              MOV     R5,#03H
+;----                  JMP     _ipcTx
+   81: }
+----- FUNCTION _IPC_TxControlCmd (END) -------
+
+
+----- FUNCTION _ipcTx (BEGIN) -----
+ FILE: 'ipc.c'
+   61: static void ipcTx(byte* src, byte len)
+   62: {
+0008DB 904EC5            MOV     DPTR,#src
+0008DE EB                MOV     A,R3
+0008DF F0                MOVX    @DPTR,A
+0008E0 A3                INC     DPTR
+0008E1 EA                MOV     A,R2
+0008E2 F0                MOVX    @DPTR,A
+0008E3 A3                INC     DPTR
+0008E4 E9                MOV     A,R1
+0008E5 F0                MOVX    @DPTR,A
+0008E6 A3                INC     DPTR
+0008E7 ED                MOV     A,R5
+0008E8 F0                MOVX    @DPTR,A
+   63: 	xbyte *dest = (xbyte *) ipcTxWritePtr;
+   64: 	while(bufsize(ipcTxReadPtr, ipcTxWritePtr, IPC_BUFF_LEN) < len);
+0008E9 904B9C            MOV     DPTR,#ipcTxWritePtr
+0008EC E0                MOVX    A,@DPTR
+0008ED FF                MOV     R7,A
+0008EE A3                INC     DPTR
+0008EF E0                MOVX    A,@DPTR
+0008F0 904EC9            MOV     DPTR,#dest
+0008F3 CF                XCH     A,R7
+0008F4 F0                MOVX    @DPTR,A
+0008F5 A3                INC     DPTR
+0008F6 EF                MOV     A,R7
+0008F7 F0                MOVX    @DPTR,A
+0008F8         ?C0008?IPC:
+   65: 	while (len--) {
+0008F8 904B9A            MOV     DPTR,#ipcTxReadPtr
+0008FB E0                MOVX    A,@DPTR
+0008FC FE                MOV     R6,A
+0008FD A3                INC     DPTR
+0008FE E0                MOVX    A,@DPTR
+0008FF FF                MOV     R7,A
+000900 904B9C            MOV     DPTR,#ipcTxWritePtr
+000903 E0                MOVX    A,@DPTR
+000904 FC                MOV     R4,A
+000905 A3                INC     DPTR
+000906 E0                MOVX    A,@DPTR
+000907 FD                MOV     R5,A
+000908 7B64              MOV     R3,#064H
+00090A 123D97            LCALL   _bufsize
+00090D 904EC8            MOV     DPTR,#len
+000910 E0                MOVX    A,@DPTR
+000911 FE                MOV     R6,A
+000912 EF                MOV     A,R7
+000913 C3                CLR     C
+000914 9E                SUBB    A,R6
+000915 40E1              JC      ?C0008?IPC
+000917         ?C0009?IPC:
+000917         ?C0010?IPC:
+   66: 		*dest++ = *src++;
+000917 904EC8            MOV     DPTR,#len
+00091A E0                MOVX    A,@DPTR
+00091B FF                MOV     R7,A
+00091C 14                DEC     A
+00091D F0                MOVX    @DPTR,A
+00091E EF                MOV     A,R7
+00091F 603F              JZ      ?C0011?IPC
+   67: 		if ((word) dest == IPC_TX_END) {
+000921 904EC5            MOV     DPTR,#src
+000924 E0                MOVX    A,@DPTR
+000925 FB                MOV     R3,A
+000926 A3                INC     DPTR
+000927 E4                CLR     A
+000928 75F001            MOV     B,#01H
+00092B 120479            LCALL   ?C?ILDIX
+00092E A9F0              MOV     R1,B
+000930 FA                MOV     R2,A
+000931 1203B6            LCALL   ?C?CLDPTR
+000934 FF                MOV     R7,A
+000935 904EC9            MOV     DPTR,#dest
+000938 E4                CLR     A
+000939 75F001            MOV     B,#01H
+00093C 120479            LCALL   ?C?ILDIX
+00093F 85F082            MOV     DPL,B
+000942 F583              MOV     DPH,A
+000944 EF                MOV     A,R7
+000945 F0                MOVX    @DPTR,A
+   68: 			dest = (xbyte *) IPC_TX_HEAD;
+000946 904EC9            MOV     DPTR,#dest
+000949 E0                MOVX    A,@DPTR
+00094A FE                MOV     R6,A
+00094B A3                INC     DPTR
+00094C E0                MOVX    A,@DPTR
+00094D FF                MOV     R7,A
+00094E BE4BC6            CJNE    R6,#04BH,?C0010?IPC
+000951 BF36C3            CJNE    R7,#036H,?C0010?IPC
+   69: 		}
+000954 904EC9            MOV     DPTR,#dest
+000957 744A              MOV     A,#04AH
+000959 F0                MOVX    @DPTR,A
+00095A A3                INC     DPTR
+00095B 74A0              MOV     A,#0A0H
+00095D F0                MOVX    @DPTR,A
+   70: 	}
+   71: 	ipcTxWritePtr = (word) dest;
+00095E 80B7              SJMP    ?C0010?IPC
+000960         ?C0011?IPC:
+   72: }
+000960 904EC9            MOV     DPTR,#dest
+000963 E0                MOVX    A,@DPTR
+000964 FF                MOV     R7,A
+000965 A3                INC     DPTR
+000966 E0                MOVX    A,@DPTR
+000967 904B9C            MOV     DPTR,#ipcTxWritePtr
+00096A CF                XCH     A,R7
+00096B F0                MOVX    @DPTR,A
+00096C A3                INC     DPTR
+00096D EF                MOV     A,R7
+00096E F0                MOVX    @DPTR,A
+   73: 
+00096F 22                RET     
+----- FUNCTION _ipcTx (END) -------
+
+
+----- FUNCTION _YC_key_action_handle (BEGIN) -----
+ FILE: 'kb_process.c'
+    3: void YC_key_action_handle(byte key_num)
+    4: {
+000970 904F1B            MOV     DPTR,#key_num
+000973 EF                MOV     A,R7
+000974 F0                MOVX    @DPTR,A
+    5: 	switch (key_num)
+    6: 	{
+000975 14                DEC     A
+000976 B40D00            CJNE    A,#0DH,?C0252?KB_PROCESS
+000979         ?C0252?KB_PROCESS:
+000979 4002              JC      $ + 4H
+00097B 610D              AJMP    ?C0025?KB_PROCESS
+00097D 90098B            MOV     DPTR,#098BH
+000980 75F003            MOV     B,#03H
+000983 A4                MUL     AB
+000984 C583              XCH     A,DPH
+000986 25F0              ADD     A,B
+000988 C583              XCH     A,DPH
+00098A 73                JMP     @A+DPTR
+00098B         ?C0253?KB_PROCESS:
+00098B 0209B2            LJMP    ?C0004?KB_PROCESS
+00098E 0209B2            LJMP    ?C0004?KB_PROCESS
+000991 0209B2            LJMP    ?C0004?KB_PROCESS
+000994 020B0D            LJMP    ?C0025?KB_PROCESS
+000997 0209F9            LJMP    ?C0009?KB_PROCESS
+00099A 020A3A            LJMP    ?C0013?KB_PROCESS
+00099D 020A42            LJMP    ?C0014?KB_PROCESS
+0009A0 020A63            LJMP    ?C0016?KB_PROCESS
+0009A3 020A63            LJMP    ?C0016?KB_PROCESS
+0009A6 020ACA            LJMP    ?C0020?KB_PROCESS
+0009A9 020B0D            LJMP    ?C0025?KB_PROCESS
+0009AC 020B0D            LJMP    ?C0025?KB_PROCESS
+0009AF 0209F1            LJMP    ?C0008?KB_PROCESS
+    7: 	case KEY_RECON_0:
+    8: 	case KEY_RECON_1:
+    9: 	case KEY_RECON_2:
+   10: 		if (g_variable.g24_currentState == CHANGE_TO_24G_CONNECTED 
+0009B2         ?C0004?KB_PROCESS:
+   11: 			||g_variable.g24_currentState == CHANGE_TO_24G_CONNECTING)
+0009B2 904CA4            MOV     DPTR,#g_variable+06H
+0009B5 E0                MOVX    A,@DPTR
+0009B6 FF                MOV     R7,A
+0009B7 6403              XRL     A,#03H
+0009B9 6004              JZ      ?C0006?KB_PROCESS
+0009BB EF                MOV     A,R7
+0009BC B4020D            CJNE    A,#02H,?C0005?KB_PROCESS
+0009BF         ?C0006?KB_PROCESS:
+   12: 		{
+   13: 			IPC_TxControlCmd(IPC_CMD_STOP_24G);
+0009BF 7F22              MOV     R7,#022H
+0009C1 11B3              ACALL   _IPC_TxControlCmd
+   14: 			g_variable.key_action = key_num;
+0009C3 904F1B            MOV     DPTR,#key_num
+0009C6 E0                MOVX    A,@DPTR
+0009C7 904CCC            MOV     DPTR,#g_variable+02EH
+0009CA F0                MOVX    @DPTR,A
+   15: 		}
+0009CB 22                RET     
+0009CC         ?C0005?KB_PROCESS:
+   16: 		else
+   17: 		{
+   18: 			recon_index = key_num-1;
+0009CC 904F1B            MOV     DPTR,#key_num
+0009CF E0                MOVX    A,@DPTR
+0009D0 14                DEC     A
+0009D1 904DE5            MOV     DPTR,#recon_index
+0009D4 F0                MOVX    @DPTR,A
+   19: 			kscurrmult = 0x05;
+0009D5 904213            MOV     DPTR,#kscurrmult
+0009D8 7405              MOV     A,#05H
+0009DA F0                MOVX    @DPTR,A
+   20: 			g_variable.recon_count = 5;
+0009DB 904CCF            MOV     DPTR,#g_variable+031H
+0009DE F0                MOVX    @DPTR,A
+   21: 			IPC_TxControlCmd(IPC_CMD_DISCONNECT);
+0009DF 7F04              MOV     R7,#04H
+0009E1 11B3              ACALL   _IPC_TxControlCmd
+   22: 			Delay1ms(10);
+0009E3 7F0A              MOV     R7,#0AH
+0009E5 F16E              ACALL   _Delay1ms
+   23: 			IPC_TxControlCmd(IPC_CMD_SET_RECONNECT_INIT);
+0009E7 7F2A              MOV     R7,#02AH
+0009E9 11B3              ACALL   _IPC_TxControlCmd
+   24: 			g_variable.key_action = KEY_NONE;
+0009EB E4                CLR     A
+0009EC 904CCC            MOV     DPTR,#g_variable+02EH
+0009EF F0                MOVX    @DPTR,A
+   25: 		}
+   26: 		break;
+0009F0 22                RET     
+   27: 	case KEY_STOP_DISCOVERY:
+0009F1         ?C0008?KB_PROCESS:
+   28: 		IPC_TxControlCmd(IPC_CMD_STOP_ADV);
+0009F1 7F0E              MOV     R7,#0EH
+0009F3 11B3              ACALL   _IPC_TxControlCmd
+   29: 		IPC_TxControlCmd(IPC_CMD_STOP_DISCOVERY);
+0009F5 7F02              MOV     R7,#02H
+0009F7 01B3              AJMP    _IPC_TxControlCmd
+   30: 		break;
+   31: 	case KEY_DISCOVERY:
+0009F9         ?C0009?KB_PROCESS:
+   32: 		g_variable.recon_count = 0;
+0009F9 E4                CLR     A
+0009FA 904CCF            MOV     DPTR,#g_variable+031H
+0009FD F0                MOVX    @DPTR,A
+   33: 		if (YC_disconnect_all_link() || YC_cancel_reconnect() || YC_g24_mode_discovery())
+0009FE 7113              ACALL   YC_disconnect_all_link
+000A00 EF                MOV     A,R7
+000A01 700B              JNZ     ?C0011?KB_PROCESS
+000A03 7152              ACALL   YC_cancel_reconnect
+000A05 EF                MOV     A,R7
+000A06 7006              JNZ     ?C0011?KB_PROCESS
+000A08 122050            LCALL   YC_g24_mode_discovery
+000A0B EF                MOV     A,R7
+000A0C 600F              JZ      ?C0010?KB_PROCESS
+000A0E         ?C0011?KB_PROCESS:
+   34: 		{
+   35: 			g_variable.key_action = key_num;
+000A0E 904F1B            MOV     DPTR,#key_num
+000A11 E0                MOVX    A,@DPTR
+000A12 904CCC            MOV     DPTR,#g_variable+02EH
+000A15 F0                MOVX    @DPTR,A
+   36: 			action_timeout = 3;
+000A16 904DFB            MOV     DPTR,#action_timeout
+000A19 7403              MOV     A,#03H
+000A1B F0                MOVX    @DPTR,A
+   37: 		}
+000A1C 22                RET     
+000A1D         ?C0010?KB_PROCESS:
+   38: 		else
+   39: 		{
+   40: 			YC_clear_reconnect_flag();
+000A1D 1218C3            LCALL   YC_clear_reconnect_flag
+   41: 				ble_send_secutiry_request_timer = 0;
+000A20 E4                CLR     A
+000A21 904DE3            MOV     DPTR,#ble_send_secutiry_request_timer
+000A24 F0                MOVX    @DPTR,A
+   42: 				ble_fast_connect_flag = 0;
+000A25 904DE2            MOV     DPTR,#ble_fast_connect_flag
+000A28 F0                MOVX    @DPTR,A
+   43: 				fast_connect_flag = 0;
+000A29 904E61            MOV     DPTR,#fast_connect_flag
+000A2C F0                MOVX    @DPTR,A
+   44: 			#if DEVICE_MODE_BT_ONLY
+   45: 				IPC_TxControlCmd(IPC_CMD_START_DISCOVERY);
+   46: 			#elif DEVICE_MODE_BLE_ONLY	
+   47: //				m_lpm_mode = 0;
+   48: 				YC_get_ble_ramdon_lap();
+   49: 				IPC_TxControlCmd(IPC_CMD_START_ADV);
+   50: 			#else	
+   51: 				YC_get_ble_ramdon_lap();
+000A2D 122067            LCALL   YC_get_ble_ramdon_lap
+   52: 				IPC_TxControlCmd(IPC_CMD_START_ADV_DISCOVERY);
+000A30 7F2C              MOV     R7,#02CH
+000A32 11B3              ACALL   _IPC_TxControlCmd
+   53: 			#endif
+   54: 			g_variable.key_action = KEY_NONE;
+000A34 E4                CLR     A
+000A35 904CCC            MOV     DPTR,#g_variable+02EH
+000A38 F0                MOVX    @DPTR,A
+   55: 		}
+   56: 		break;
+000A39 22                RET     
+   57: 	case KEY_DISCONNECT_ALL:
+000A3A         ?C0013?KB_PROCESS:
+   58: 		YC_disconnect_all_link();
+000A3A 7113              ACALL   YC_disconnect_all_link
+   59: 		g_variable.key_action = KEY_NONE;
+000A3C E4                CLR     A
+000A3D 904CCC            MOV     DPTR,#g_variable+02EH
+000A40 F0                MOVX    @DPTR,A
+   60: 		break;
+000A41 22                RET     
+   61: 	case KEY_CLEAR_RECORD:
+000A42         ?C0014?KB_PROCESS:
+   62: 		xmemclear_ff((byte *)bd_key_record_list,sizeof(BD_KEY_RECORD)*3);
+000A42 7B01              MOV     R3,#01H
+000A44 7A4D              MOV     R2,#HIGH bd_key_record_list
+000A46 79FD              MOV     R1,#LOW bd_key_record_list
+000A48 7D5A              MOV     R5,#05AH
+000A4A 7C00              MOV     R4,#00H
+000A4C 122819            LCALL   _xmemclear_ff
+   63: 		g_variable.last_device_num = 0xff;
+000A4F 904C9F            MOV     DPTR,#g_variable+01H
+000A52 74FF              MOV     A,#0FFH
+000A54 F0                MOVX    @DPTR,A
+   64: 		g_variable.system_mode = 0xff;
+000A55 A3                INC     DPTR
+000A56 F0                MOVX    @DPTR,A
+   65: 		g_variable.update_eeprom_flag = EEPROM_STORE_TYPE_BT;
+000A57 904C9E            MOV     DPTR,#g_variable
+000A5A 7403              MOV     A,#03H
+000A5C F0                MOVX    @DPTR,A
+   66: 		g_variable.key_action = KEY_NONE;
+000A5D E4                CLR     A
+000A5E 904CCC            MOV     DPTR,#g_variable+02EH
+000A61 F0                MOVX    @DPTR,A
+   67: 		break;
+000A62 22                RET     
+   68: 	case KEY_START_24G:
+   69: 	case KEY_OPEN_24G:
+000A63         ?C0016?KB_PROCESS:
+   70: 		g_variable.recon_count = 0;
+000A63 E4                CLR     A
+000A64 904CCF            MOV     DPTR,#g_variable+031H
+000A67 F0                MOVX    @DPTR,A
+   71: 		if ( YC_cancel_reconnect())
+000A68 7152              ACALL   YC_cancel_reconnect
+000A6A EF                MOV     A,R7
+000A6B 6009              JZ      ?C0017?KB_PROCESS
+   72: 		{
+   73: 			g_variable.key_action = key_num;
+000A6D 904F1B            MOV     DPTR,#key_num
+000A70 E0                MOVX    A,@DPTR
+000A71 904CCC            MOV     DPTR,#g_variable+02EH
+000A74 F0                MOVX    @DPTR,A
+   74: 		}
+000A75 22                RET     
+000A76         ?C0017?KB_PROCESS:
+   75: 		else
+   76: 		{
+   77: 			IIC_Read(EEPROM_RECON_INFO_BASE_6+2,4 , (byte *)m_24g_addr);
+000A76 7B01              MOV     R3,#01H
+000A78 7A4C              MOV     R2,#HIGH m_24g_addr
+000A7A 7900              MOV     R1,#LOW m_24g_addr
+000A7C 7D04              MOV     R5,#04H
+000A7E 7C00              MOV     R4,#00H
+000A80 7F52              MOV     R7,#052H
+000A82 7E7F              MOV     R6,#07FH
+000A84 121ECF            LCALL   _IIC_Read
+   78: 			Delay1ms(10);
+000A87 7F0A              MOV     R7,#0AH
+000A89 F16E              ACALL   _Delay1ms
+   79: 			fast_connect_flag = 0;
+000A8B E4                CLR     A
+000A8C 904E61            MOV     DPTR,#fast_connect_flag
+000A8F F0                MOVX    @DPTR,A
+   80: 			if (m_24g_addr[0] == 0xff && m_24g_addr[1] == 0xff && m_24g_addr[2] == 0xff && m_24g_addr[3] == 0xff)
+000A90 904C00            MOV     DPTR,#m_24g_addr
+000A93 E0                MOVX    A,@DPTR
+000A94 F4                CPL     A
+000A95 7021              JNZ     ?C0019?KB_PROCESS
+000A97 A3                INC     DPTR
+000A98 E0                MOVX    A,@DPTR
+000A99 B4FF1C            CJNE    A,#0FFH,?C0019?KB_PROCESS
+000A9C A3                INC     DPTR
+000A9D E0                MOVX    A,@DPTR
+000A9E B4FF17            CJNE    A,#0FFH,?C0019?KB_PROCESS
+000AA1 A3                INC     DPTR
+000AA2 E0                MOVX    A,@DPTR
+000AA3 B4FF12            CJNE    A,#0FFH,?C0019?KB_PROCESS
+   81: 			{
+   82: 				m_24g_addr[0] = 0x0f;
+000AA6 904C00            MOV     DPTR,#m_24g_addr
+000AA9 740F              MOV     A,#0FH
+000AAB F0                MOVX    @DPTR,A
+   83: 				m_24g_addr[1] = 0x0f;
+000AAC A3                INC     DPTR
+000AAD F0                MOVX    @DPTR,A
+   84: 				m_24g_addr[2] = 0x0f;
+000AAE A3                INC     DPTR
+000AAF F0                MOVX    @DPTR,A
+   85: 				m_24g_addr[3] = 0x0f;
+000AB0 A3                INC     DPTR
+000AB1 F0                MOVX    @DPTR,A
+   86: 				fast_connect_flag = 1;
+000AB2 904E61            MOV     DPTR,#fast_connect_flag
+000AB5 7401              MOV     A,#01H
+000AB7 F0                MOVX    @DPTR,A
+   87: 			}
+000AB8         ?C0019?KB_PROCESS:
+   88: 				
+   89: 			IPC_TxControlCmd(IPC_CMD_START_24G);
+000AB8 7F21              MOV     R7,#021H
+000ABA 11B3              ACALL   _IPC_TxControlCmd
+   90: 			
+   91: 			g_variable.g24_currentState = CHANGE_TO_24G_CONNECTING;
+000ABC 904CA4            MOV     DPTR,#g_variable+06H
+000ABF 7402              MOV     A,#02H
+000AC1 F0                MOVX    @DPTR,A
+   92: 			g_variable.g24_currentSubState = CHANGE_TO_24G_SUB_NONE;
+000AC2 E4                CLR     A
+000AC3 A3                INC     DPTR
+000AC4 F0                MOVX    @DPTR,A
+   93: 			g_variable.key_action = KEY_NONE;
+000AC5 904CCC            MOV     DPTR,#g_variable+02EH
+000AC8 F0                MOVX    @DPTR,A
+   94: 		}
+   95: 		break;
+000AC9 22                RET     
+   96: 	case KEY_PAIRING_24G:
+000ACA         ?C0020?KB_PROCESS:
+   97: 		g_variable.recon_count = 0;
+000ACA E4                CLR     A
+000ACB 904CCF            MOV     DPTR,#g_variable+031H
+000ACE F0                MOVX    @DPTR,A
+   98: 		if (YC_disconnect_all_link() || YC_cancel_reconnect())
+000ACF 7113              ACALL   YC_disconnect_all_link
+000AD1 EF                MOV     A,R7
+000AD2 7005              JNZ     ?C0022?KB_PROCESS
+000AD4 7152              ACALL   YC_cancel_reconnect
+000AD6 EF                MOV     A,R7
+000AD7 6009              JZ      ?C0021?KB_PROCESS
+000AD9         ?C0022?KB_PROCESS:
+   99: 		{
+  100: 			g_variable.key_action = key_num;
+000AD9 904F1B            MOV     DPTR,#key_num
+000ADC E0                MOVX    A,@DPTR
+000ADD 904CCC            MOV     DPTR,#g_variable+02EH
+000AE0 F0                MOVX    @DPTR,A
+  101: 		}
+000AE1 22                RET     
+000AE2         ?C0021?KB_PROCESS:
+  102: 		else
+  103: 		{
+  104: 			if (g_variable.g24_currentState != CHANGE_TO_24G_PAIRING)
+000AE2 904CA4            MOV     DPTR,#g_variable+06H
+000AE5 E0                MOVX    A,@DPTR
+000AE6 6401              XRL     A,#01H
+000AE8 601D              JZ      ?C0024?KB_PROCESS
+  105: 			{
+  106: 				fast_connect_flag = 0;
+000AEA E4                CLR     A
+000AEB 904E61            MOV     DPTR,#fast_connect_flag
+000AEE F0                MOVX    @DPTR,A
+  107: 				IPC_TxControlCmd(IPC_CMD_PAIR_24G);
+000AEF 7F23              MOV     R7,#023H
+000AF1 11B3              ACALL   _IPC_TxControlCmd
+  108: 				g_variable.g24_currentState = CHANGE_TO_24G_PAIRING;
+000AF3 904CA4            MOV     DPTR,#g_variable+06H
+000AF6 7401              MOV     A,#01H
+000AF8 F0                MOVX    @DPTR,A
+  109: 				g_variable.g24_currentSubState = CHANGE_TO_24G_SUB_NONE;
+000AF9 E4                CLR     A
+000AFA A3                INC     DPTR
+000AFB F0                MOVX    @DPTR,A
+  110: 				g_variable.pairing_g24_timeout = BT_PAIRING_TIME_OUT_30S;
+000AFC 904CCD            MOV     DPTR,#g_variable+02FH
+000AFF 743C              MOV     A,#03CH
+000B01 F0                MOVX    @DPTR,A
+  111: 				g_variable.pairing_timeout = 0;
+000B02 E4                CLR     A
+000B03 904CC8            MOV     DPTR,#g_variable+02AH
+000B06 F0                MOVX    @DPTR,A
+  112: 			}
+000B07         ?C0024?KB_PROCESS:
+  113: 			g_variable.key_action = KEY_NONE;
+000B07 E4                CLR     A
+000B08 904CCC            MOV     DPTR,#g_variable+02EH
+000B0B F0                MOVX    @DPTR,A
+  114: 		}
+  115: 		break;
+000B0C 22                RET     
+  116: 	default:
+000B0D         ?C0025?KB_PROCESS:
+  117: 		g_variable.key_action = KEY_NONE;
+000B0D E4                CLR     A
+000B0E 904CCC            MOV     DPTR,#g_variable+02EH
+000B11 F0                MOVX    @DPTR,A
+  118: 		break;
+  119: 	}
+  120: }
+000B12 22                RET     
+----- FUNCTION _YC_key_action_handle (END) -------
+
+
+----- FUNCTION YC_disconnect_all_link (BEGIN) -----
+ FILE: 'bluetooth.c'
+  163: byte YC_disconnect_all_link()
+  164: {
+  165: 	if (g_variable.br_currentState == CHANGE_TO_BR_CONNECTED 
+  166: 		||g_variable.br_currentState == CHANGE_TO_BR_CONNECTING)
+000B13 904CA8            MOV     DPTR,#g_variable+0AH
+000B16 E0                MOVX    A,@DPTR
+000B17 FF                MOV     R7,A
+000B18 6404              XRL     A,#04H
+000B1A 6004              JZ      ?C0030?BLUETOOTH
+000B1C EF                MOV     A,R7
+000B1D B40307            CJNE    A,#03H,?C0029?BLUETOOTH
+000B20         ?C0030?BLUETOOTH:
+  167: 	{
+  168: 		IPC_TxControlCmd(IPC_CMD_DISCONNECT);
+000B20 7F04              MOV     R7,#04H
+000B22 11B3              ACALL   _IPC_TxControlCmd
+  169: 		return 1;
+000B24 7F01              MOV     R7,#01H
+000B26 22                RET     
+  170: 	}
+000B27         ?C0029?BLUETOOTH:
+  171: 	if (g_variable.ble_currentState == CHANGE_TO_BLE_CONNECTED 
+000B27 904CA6            MOV     DPTR,#g_variable+08H
+000B2A E0                MOVX    A,@DPTR
+000B2B FF                MOV     R7,A
+000B2C 6404              XRL     A,#04H
+000B2E 6004              JZ      ?C0033?BLUETOOTH
+000B30 EF                MOV     A,R7
+000B31 B40307            CJNE    A,#03H,?C0032?BLUETOOTH
+000B34         ?C0033?BLUETOOTH:
+  172: 		||g_variable.ble_currentState == CHANGE_TO_BLE_CONNECTING)
+  173: 	{
+  174: 		IPC_TxControlCmd(IPC_CMD_LE_DISCONNECT);
+000B34 7F11              MOV     R7,#011H
+000B36 11B3              ACALL   _IPC_TxControlCmd
+  175: 		return 1;
+000B38 7F01              MOV     R7,#01H
+000B3A 22                RET     
+  176: 	}
+000B3B         ?C0032?BLUETOOTH:
+  177: 	if (g_variable.g24_currentState == CHANGE_TO_24G_CONNECTED 
+000B3B 904CA4            MOV     DPTR,#g_variable+06H
+000B3E E0                MOVX    A,@DPTR
+000B3F FF                MOV     R7,A
+000B40 6403              XRL     A,#03H
+000B42 6004              JZ      ?C0035?BLUETOOTH
+000B44 EF                MOV     A,R7
+000B45 B40207            CJNE    A,#02H,?C0034?BLUETOOTH
+000B48         ?C0035?BLUETOOTH:
+  178: 		||g_variable.g24_currentState == CHANGE_TO_24G_CONNECTING)
+  179: 	{
+  180: 		IPC_TxControlCmd(IPC_CMD_STOP_24G);
+000B48 7F22              MOV     R7,#022H
+000B4A 11B3              ACALL   _IPC_TxControlCmd
+  181: 		return 1;
+000B4C 7F01              MOV     R7,#01H
+000B4E 22                RET     
+  182: 	}
+000B4F         ?C0034?BLUETOOTH:
+  183: 	return 0;
+000B4F 7F00              MOV     R7,#00H
+  184: }
+000B51 22                RET     
+----- FUNCTION YC_disconnect_all_link (END) -------
+
+
+----- FUNCTION YC_cancel_reconnect (BEGIN) -----
+ FILE: 'bluetooth.c'
+  138: byte YC_cancel_reconnect()
+  139: {
+  140: 	if (g_variable.br_currentState == CHANGE_TO_BR_RECONNECT)
+  141: 	{
+000B52 904CA8            MOV     DPTR,#g_variable+0AH
+000B55 E0                MOVX    A,@DPTR
+000B56 B40207            CJNE    A,#02H,?C0025?BLUETOOTH
+  142: 		IPC_TxControlCmd(IPC_CMD_BB_RECONN_CANCEL);
+  143: 		return 1;
+000B59 7F1E              MOV     R7,#01EH
+000B5B 11B3              ACALL   _IPC_TxControlCmd
+  144: 	}
+000B5D 7F01              MOV     R7,#01H
+000B5F 22                RET     
+  145: 
+000B60         ?C0025?BLUETOOTH:
+  146: 	if (g_variable.ble_currentState == CHANGE_TO_BLE_DIRECT_ADV)
+000B60 904CA6            MOV     DPTR,#g_variable+08H
+000B63 E0                MOVX    A,@DPTR
+000B64 B40207            CJNE    A,#02H,?C0027?BLUETOOTH
+  147: 	{
+  148: 		//stop adv
+  149: 		IPC_TxControlCmd(IPC_CMD_STOP_ADV);
+000B67 7F0E              MOV     R7,#0EH
+000B69 11B3              ACALL   _IPC_TxControlCmd
+  150: 		return 1;
+000B6B 7F01              MOV     R7,#01H
+000B6D 22                RET     
+  151: 	}
+000B6E         ?C0027?BLUETOOTH:
+  152: 	return 0;
+000B6E 7F00              MOV     R7,#00H
+  153: }
+000B70 22                RET     
+----- FUNCTION YC_cancel_reconnect (END) -------
+
+
+----- FUNCTION kb_button_press_timer500ms (BEGIN) -----
+ FILE: 'sys.c'
+  719: void kb_button_press_timer500ms()
+  720: {
+  721: 	
+  722: //key status 
+  723: 	if (g_variable.button_flag & KEY_FLAG_SAME_KEY_PRESS)
+000B71 904CAD            MOV     DPTR,#g_variable+0FH
+000B74 E0                MOVX    A,@DPTR
+000B75 30E13D            JNB     ACC.1,?C0120?SYS
+  724: 	{
+  725: 			if (g_variable.button_timer[1] < 250)
+000B78 904CAF            MOV     DPTR,#g_variable+011H
+000B7B E0                MOVX    A,@DPTR
+000B7C C3                CLR     C
+000B7D 94FA              SUBB    A,#0FAH
+000B7F 5003              JNC     ?C0121?SYS
+  726: 			g_variable.button_timer[1]++;
+000B81 E0                MOVX    A,@DPTR
+000B82 04                INC     A
+000B83 F0                MOVX    @DPTR,A
+000B84         ?C0121?SYS:
+  727: 		if (g_variable.button_timer[1] == 180)			// 500ms*180*3 = 4min30s
+000B84 904CAF            MOV     DPTR,#g_variable+011H
+000B87 E0                MOVX    A,@DPTR
+000B88 64B4              XRL     A,#0B4H
+000B8A 7036              JNZ     ?C0126?SYS
+  728: 		{
+  729: 			press_long_time_flag++;
+000B8C 904DF2            MOV     DPTR,#press_long_time_flag
+000B8F E0                MOVX    A,@DPTR
+000B90 04                INC     A
+000B91 F0                MOVX    @DPTR,A
+  730: 			if(press_long_time_flag <= 2)
+000B92 E0                MOVX    A,@DPTR
+000B93 D3                SETB    C
+000B94 9402              SUBB    A,#02H
+000B96 5007              JNC     ?C0123?SYS
+  731: 			{
+  732: 			g_variable.button_timer[1] = 0;
+000B98 E4                CLR     A
+000B99 904CAF            MOV     DPTR,#g_variable+011H
+000B9C F0                MOVX    @DPTR,A
+  733: 			}
+000B9D 8023              SJMP    ?C0126?SYS
+000B9F         ?C0123?SYS:
+  734: 			else if(press_long_time_flag == 3)
+000B9F 904DF2            MOV     DPTR,#press_long_time_flag
+000BA2 E0                MOVX    A,@DPTR
+000BA3 B4031C            CJNE    A,#03H,?C0126?SYS
+  735: 			{
+  736: 				long_press_flag = 1;
+000BA6 904DEB            MOV     DPTR,#long_press_flag
+000BA9 7401              MOV     A,#01H
+000BAB F0                MOVX    @DPTR,A
+  737: 				g_variable.button_timer[1] = 0;
+000BAC E4                CLR     A
+000BAD 904CAF            MOV     DPTR,#g_variable+011H
+000BB0 F0                MOVX    @DPTR,A
+  738: 				System_long_sleep();
+000BB1 F1D8              ACALL   System_long_sleep
+  739: 			}
+  740: 		}
+  741: 	}
+000BB3 800D              SJMP    ?C0126?SYS
+000BB5         ?C0120?SYS:
+  742: 	else
+  743: 	{
+  744: 		press_long_time_flag = 0;
+000BB5 E4                CLR     A
+000BB6 904DF2            MOV     DPTR,#press_long_time_flag
+000BB9 F0                MOVX    @DPTR,A
+  745: 		long_press_flag = 0;
+000BBA 904DEB            MOV     DPTR,#long_press_flag
+000BBD F0                MOVX    @DPTR,A
+  746: 		g_variable.button_timer[1] = 0;
+000BBE 904CAF            MOV     DPTR,#g_variable+011H
+000BC1 F0                MOVX    @DPTR,A
+  747: 	}
+000BC2         ?C0126?SYS:
+  748: 		
+  749: 	if (g_variable.button_flag & KEY_FLAG_FN_24G_DEVICE_BUTTON)		// G24 pairing
+000BC2 904CAD            MOV     DPTR,#g_variable+0FH
+000BC5 E0                MOVX    A,@DPTR
+000BC6 30E436            JNB     ACC.4,?C0127?SYS
+  750: 	{
+  751: 		g_variable.delay_enter_lpm_timer = 10;
+000BC9 904CC9            MOV     DPTR,#g_variable+02BH
+000BCC 740A              MOV     A,#0AH
+000BCE F0                MOVX    @DPTR,A
+  752: 		if (g_variable.button_timer[2] < 250)
+000BCF 904CB0            MOV     DPTR,#g_variable+012H
+000BD2 E0                MOVX    A,@DPTR
+000BD3 C3                CLR     C
+000BD4 94FA              SUBB    A,#0FAH
+000BD6 5003              JNC     ?C0128?SYS
+  753: 		g_variable.button_timer[2]++;
+000BD8 E0                MOVX    A,@DPTR
+000BD9 04                INC     A
+000BDA F0                MOVX    @DPTR,A
+000BDB         ?C0128?SYS:
+  754: 		if (g_variable.button_timer[2] == 6)
+000BDB 904CB0            MOV     DPTR,#g_variable+012H
+000BDE E0                MOVX    A,@DPTR
+000BDF 6406              XRL     A,#06H
+000BE1 7046              JNZ     ?C0132?SYS
+  755: 		{
+  756: 			if( !g_variable.current_device_num || (g_variable.current_device_num == 0xfe))
+000BE3 904CA2            MOV     DPTR,#g_variable+04H
+000BE6 E0                MOVX    A,@DPTR
+000BE7 FF                MOV     R7,A
+000BE8 6004              JZ      ?C0131?SYS
+000BEA 64FE              XRL     A,#0FEH
+000BEC 703B              JNZ     ?C0132?SYS
+000BEE         ?C0131?SYS:
+  757: 			{
+  758: 				g_variable.button_24G_rec_flag = 0;
+000BEE E4                CLR     A
+000BEF 904CAC            MOV     DPTR,#g_variable+0EH
+000BF2 F0                MOVX    @DPTR,A
+  759: 				YC_disconnect_all_link();
+000BF3 7113              ACALL   YC_disconnect_all_link
+  760: 				Delay1ms(10);
+000BF5 7F0A              MOV     R7,#0AH
+000BF7 F16E              ACALL   _Delay1ms
+  761: 				YC_key_action_handle(KEY_PAIRING_24G);
+000BF9 7F0A              MOV     R7,#0AH
+000BFB 3170              ACALL   _YC_key_action_handle
+  762: 			}
+  763: 		}
+  764: 	}
+000BFD 802A              SJMP    ?C0132?SYS
+000BFF         ?C0127?SYS:
+  765: 	else
+  766: 	{
+  767: 		if(g_variable.button_24G_rec_flag)
+000BFF 904CAC            MOV     DPTR,#g_variable+0EH
+000C02 E0                MOVX    A,@DPTR
+000C03 601F              JZ      ?C0133?SYS
+  768: 		{
+  769: 			g_variable.button_24G_rec_flag = 0;
+000C05 E4                CLR     A
+000C06 F0                MOVX    @DPTR,A
+  770: 			YC_key_action_handle(KEY_STOP_DISCOVERY);
+000C07 7F0D              MOV     R7,#0DH
+000C09 3170              ACALL   _YC_key_action_handle
+  771: 			g_variable.release_data = 1;
+000C0B 904CCA            MOV     DPTR,#g_variable+02CH
+000C0E 7401              MOV     A,#01H
+000C10 F0                MOVX    @DPTR,A
+  772: 			g_variable.last_device_num = g_variable.current_device_num;
+000C11 904CA2            MOV     DPTR,#g_variable+04H
+000C14 E0                MOVX    A,@DPTR
+000C15 904C9F            MOV     DPTR,#g_variable+01H
+000C18 F0                MOVX    @DPTR,A
+  773: 			g_variable.update_eeprom_flag = EEPROM_STORE_TYPE_NORMAL;
+000C19 904C9E            MOV     DPTR,#g_variable
+000C1C 7401              MOV     A,#01H
+000C1E F0                MOVX    @DPTR,A
+  774: 			YC_update_eeprom_data();
+000C1F 121D8A            LCALL   YC_update_eeprom_data
+  775: 			System_Reset_Connect();
+000C22 F1DC              ACALL   System_Reset_Connect
+  776: 		}
+000C24         ?C0133?SYS:
+  777: 		g_variable.button_timer[2] = 0;
+000C24 E4                CLR     A
+000C25 904CB0            MOV     DPTR,#g_variable+012H
+000C28 F0                MOVX    @DPTR,A
+  778: 	}
+000C29         ?C0132?SYS:
+  779: 
+  780: 	
+  781: 	if (g_variable.button_flag & KEY_FLAG_FN_DEVICE_BUTTON)
+000C29 904CAD            MOV     DPTR,#g_variable+0FH
+000C2C E0                MOVX    A,@DPTR
+000C2D 30E346            JNB     ACC.3,?C0134?SYS
+  782: 	{
+  783: 		g_variable.delay_enter_lpm_timer = 10;
+000C30 904CC9            MOV     DPTR,#g_variable+02BH
+000C33 740A              MOV     A,#0AH
+000C35 F0                MOVX    @DPTR,A
+  784: 		if (g_variable.button_timer[3] < 250)
+000C36 904CB1            MOV     DPTR,#g_variable+013H
+000C39 E0                MOVX    A,@DPTR
+000C3A C3                CLR     C
+000C3B 94FA              SUBB    A,#0FAH
+000C3D 5003              JNC     ?C0135?SYS
+  785: 		g_variable.button_timer[3]++;
+000C3F E0                MOVX    A,@DPTR
+000C40 04                INC     A
+000C41 F0                MOVX    @DPTR,A
+000C42         ?C0135?SYS:
+  786: 		if (g_variable.button_timer[3] == 6)
+000C42 904CB1            MOV     DPTR,#g_variable+013H
+000C45 E0                MOVX    A,@DPTR
+000C46 6406              XRL     A,#06H
+000C48 705F              JNZ     ?C0140?SYS
+  787: 		{
+  788: 			//do discoverable
+  789: 			g_variable.pairing_timeout = BT_PAIRING_TIME_OUT_30S;
+000C4A 904CC8            MOV     DPTR,#g_variable+02AH
+000C4D 743C              MOV     A,#03CH
+000C4F F0                MOVX    @DPTR,A
+  790: 			g_variable.pairing_g24_timeout = 0;
+000C50 E4                CLR     A
+000C51 904CCD            MOV     DPTR,#g_variable+02FH
+000C54 F0                MOVX    @DPTR,A
+  791: 			YC_key_action_handle(KEY_DISCOVERY);
+000C55 7F05              MOV     R7,#05H
+000C57 3170              ACALL   _YC_key_action_handle
+  792: 			LED_all_shutdown();
+000C59 91AC              ACALL   LED_all_shutdown
+  793: 			g_variable.button_reconnect_flag = 0;
+000C5B E4                CLR     A
+000C5C 904CAB            MOV     DPTR,#g_variable+0DH
+000C5F F0                MOVX    @DPTR,A
+  794: 			g_variable.release_data = 1;
+000C60 904CCA            MOV     DPTR,#g_variable+02CH
+000C63 04                INC     A
+000C64 F0                MOVX    @DPTR,A
+  795: 			g_variable.temp_device_num = g_variable.last_device_num;
+000C65 904C9F            MOV     DPTR,#g_variable+01H
+000C68 E0                MOVX    A,@DPTR
+000C69 904CA3            MOV     DPTR,#g_variable+05H
+000C6C F0                MOVX    @DPTR,A
+  796: 			g_variable.last_device_num = g_variable.current_device_num;
+000C6D 904CA2            MOV     DPTR,#g_variable+04H
+000C70 E0                MOVX    A,@DPTR
+000C71 904C9F            MOV     DPTR,#g_variable+01H
+000C74 F0                MOVX    @DPTR,A
+  797: 		}
+  798: 	}
+000C75 22                RET     
+000C76         ?C0134?SYS:
+  799: 	else
+  800: 	{
+  801: 		if (g_variable.button_reconnect_flag)
+000C76 904CAB            MOV     DPTR,#g_variable+0DH
+000C79 E0                MOVX    A,@DPTR
+000C7A 6028              JZ      ?C0138?SYS
+  802: 		{
+  803: 			g_variable.button_reconnect_flag = 0;
+000C7C E4                CLR     A
+000C7D F0                MOVX    @DPTR,A
+  804: 
+  805: 			if(g_variable.last_device_num !=g_variable.current_device_num)		//switch device,
+000C7E 904CA2            MOV     DPTR,#g_variable+04H
+000C81 E0                MOVX    A,@DPTR
+000C82 FF                MOV     R7,A
+000C83 904C9F            MOV     DPTR,#g_variable+01H
+000C86 E0                MOVX    A,@DPTR
+000C87 6F                XRL     A,R7
+000C88 601A              JZ      ?C0138?SYS
+  806: 			{
+  807: 				g_variable.release_data = 1;
+000C8A 904CCA            MOV     DPTR,#g_variable+02CH
+000C8D 7401              MOV     A,#01H
+000C8F F0                MOVX    @DPTR,A
+  808: 				LED_all_shutdown();
+000C90 91AC              ACALL   LED_all_shutdown
+  809: 				g_variable.last_device_num = g_variable.current_device_num;
+000C92 904CA2            MOV     DPTR,#g_variable+04H
+000C95 E0                MOVX    A,@DPTR
+000C96 904C9F            MOV     DPTR,#g_variable+01H
+000C99 F0                MOVX    @DPTR,A
+  810: 				g_variable.update_eeprom_flag = EEPROM_STORE_TYPE_NORMAL;
+000C9A 904C9E            MOV     DPTR,#g_variable
+000C9D 7401              MOV     A,#01H
+000C9F F0                MOVX    @DPTR,A
+  811: 				
+  812: 				YC_disconnect_all_link();
+000CA0 7113              ACALL   YC_disconnect_all_link
+  813: 				YC_update_eeprom_data();
+000CA2 F1D9              ACALL   ?L?COM0002
+  814: 				System_Reset_Connect();
+  815: 			}
+  816: 		}
+000CA4         ?C0138?SYS:
+  817: 		g_variable.button_timer[3] = 0;
+000CA4 E4                CLR     A
+000CA5 904CB1            MOV     DPTR,#g_variable+013H
+000CA8 F0                MOVX    @DPTR,A
+  818: 	}
+  819: }
+000CA9         ?C0140?SYS:
+000CA9 22                RET     
+----- FUNCTION kb_button_press_timer500ms (END) -------
+
+
+----- FUNCTION ?L?COM0001 (BEGIN) -----
+000CAA F19C              ACALL   _YC_PWM_disable
+----- FUNCTION LED_all_shutdown (BEGIN) -----
+ FILE: 'led.c'
+    4: void LED_all_shutdown()
+    5: {
+    6: 	GPIO_SetOutput(CAPS_LED_GPIO,LED_OFF);
+    7: 	GPIO_SetOutput(WIN_LOCK_LED_GPIO,LED_OFF);
+000CAC C206              CLR     ?_GPIO_SetOutput?BIT
+000CAE 7F1D              MOV     R7,#01DH
+000CB0 91CE              ACALL   _GPIO_SetOutput
+    8: 	GPIO_SetOutput(LOWPOWER_LED_GPIO, LED_OFF);
+000CB2 C206              CLR     ?_GPIO_SetOutput?BIT
+000CB4 7FFF              MOV     R7,#0FFH
+000CB6 91CE              ACALL   _GPIO_SetOutput
+    9: 	GPIO_SetOutput(G24_LED_GPIO, LED_OFF);
+000CB8 C206              CLR     ?_GPIO_SetOutput?BIT
+000CBA 7F1E              MOV     R7,#01EH
+000CBC 91CE              ACALL   _GPIO_SetOutput
+   10: 	GPIO_SetOutput(BT_BUTTON_GPIO, LED_OFF);
+000CBE C206              CLR     ?_GPIO_SetOutput?BIT
+000CC0 7F1E              MOV     R7,#01EH
+000CC2 91CE              ACALL   _GPIO_SetOutput
+   11: 	GPIO_SetOutput(NUM_LOCK_LED_GPIO, LED_OFF);
+000CC4 C206              CLR     ?_GPIO_SetOutput?BIT
+000CC6 7F1E              MOV     R7,#01EH
+000CC8 91CE              ACALL   _GPIO_SetOutput
+   12: }
+000CCA C206              CLR     ?_GPIO_SetOutput?BIT
+000CCC 7F1F              MOV     R7,#01FH
+;----                  JMP     _GPIO_SetOutput
+----- FUNCTION LED_all_shutdown (END) -------
+
+
+----- FUNCTION _GPIO_SetOutput (BEGIN) -----
+ FILE: 'gpio.c'
+   79: void GPIO_SetOutput(byte gpio_num, bit st)
+   80: {
+;---- Variable 'gpio_num' assigned to Register 'R4' ----
+000CCE AC07              MOV     R4,AR7
+   81: 	if(gpio_num == 0xff)
+   82: 		return;
+000CD0 EC                MOV     A,R4
+000CD1 F4                CPL     A
+000CD2 6016              JZ      ?C0017?GPIO
+000CD4         ?C0016?GPIO:
+   83: 	GPIO_Setoe(gpio_num, 1);
+000CD4 AF04              MOV     R7,AR4
+000CD6 D204              SETB    ?_GPIO_Setoe?BIT
+000CD8 1236EF            LCALL   _GPIO_Setoe
+   84: 	GPIO_Setout(gpio_num, st);
+000CDB AF04              MOV     R7,AR4
+000CDD A206              MOV     C,st
+000CDF 9201              MOV     ?_GPIO_Setout?BIT,C
+000CE1 F15C              ACALL   _GPIO_Setout
+   85: 	GPIO_SetPu(gpio_num, 0);
+000CE3 AF04              MOV     R7,AR4
+000CE5 C202              CLR     ?_GPIO_SetPu?BIT
+000CE7 1236CD            LCALL   _GPIO_SetPu
+   86: }
+000CEA         ?C0017?GPIO:
+000CEA 22                RET     
+----- FUNCTION _GPIO_SetOutput (END) -------
+
+
+----- FUNCTION _YC_PWM_set_duty (BEGIN) -----
+ FILE: 'pwm.c'
+   32: void YC_PWM_set_duty(byte LED,byte pwm_duty_level)
+   33: {
+000CEB 904EE9            MOV     DPTR,#LED
+000CEE EF                MOV     A,R7
+000CEF F0                MOVX    @DPTR,A
+000CF0 A3                INC     DPTR
+000CF1 ED                MOV     A,R5
+000CF2 F0                MOVX    @DPTR,A
+   34: 	word pwm_duty;
+   35: //RLED set duty
+   36: 	g_variable.backlight_led = LED;
+000CF3 904CF9            MOV     DPTR,#g_variable+05BH
+000CF6 EF                MOV     A,R7
+000CF7 F0                MOVX    @DPTR,A
+   37: 	
+   38: 
+   39: 		if((pwm_duty_level == BACKLIGHT_DUTY_LEVEL_00)||(g_variable.battery_status != BAT_STATUS_NONE))
+000CF8 ED                MOV     A,R5
+000CF9 6006              JZ      ?C0006?PWM
+000CFB 904CB4            MOV     DPTR,#g_variable+016H
+000CFE E0                MOVX    A,@DPTR
+000CFF 6030              JZ      ?C0005?PWM
+000D01         ?C0006?PWM:
+   40: 		{
+   41: 			YC_PWM_disable(g_variable.backlight_led);
+000D01 904CF9            MOV     DPTR,#g_variable+05BH
+000D04 E0                MOVX    A,@DPTR
+000D05 FF                MOV     R7,A
+000D06 F19C              ACALL   _YC_PWM_disable
+   42: 			if(LED & 0x01 )
+000D08 904EE9            MOV     DPTR,#LED
+000D0B E0                MOVX    A,@DPTR
+000D0C 30E006            JNB     ACC.0,?C0007?PWM
+   43: 			GPIO_SetOutput(RLED_GPIO,LED_OFF);
+000D0F C206              CLR     ?_GPIO_SetOutput?BIT
+000D11 7F15              MOV     R7,#015H
+000D13 91CE              ACALL   _GPIO_SetOutput
+000D15         ?C0007?PWM:
+   44: 			if(LED & 0x02 )
+000D15 904EE9            MOV     DPTR,#LED
+000D18 E0                MOVX    A,@DPTR
+000D19 30E106            JNB     ACC.1,?C0008?PWM
+   45: 			GPIO_SetOutput(GLED_GPIO,LED_OFF);
+000D1C C206              CLR     ?_GPIO_SetOutput?BIT
+000D1E 7F14              MOV     R7,#014H
+000D20 91CE              ACALL   _GPIO_SetOutput
+000D22         ?C0008?PWM:
+   46: 			if(LED & 0x04 )
+000D22 904EE9            MOV     DPTR,#LED
+000D25 E0                MOVX    A,@DPTR
+000D26 20E202            JB      ACC.2,$ + 5H
+000D29 A1BC              AJMP    ?C0010?PWM
+   47: 			GPIO_SetOutput(BLED_GPIO,LED_OFF);
+000D2B C206              CLR     ?_GPIO_SetOutput?BIT
+000D2D 7F13              MOV     R7,#013H
+000D2F 809D              SJMP    _GPIO_SetOutput
+   48: 			return;
+   49: 		}
+000D31         ?C0005?PWM:
+   50: 		else if(pwm_duty_level == BACKLIGHT_DUTY_LEVEL_100)
+000D31 904EEA            MOV     DPTR,#pwm_duty_level
+000D34 E0                MOVX    A,@DPTR
+000D35 6404              XRL     A,#04H
+000D37 702E              JNZ     ?C0012?PWM
+   51: 		{
+   52: 			YC_PWM_disable(g_variable.backlight_led);
+000D39 904CF9            MOV     DPTR,#g_variable+05BH
+000D3C E0                MOVX    A,@DPTR
+000D3D FF                MOV     R7,A
+000D3E F19C              ACALL   _YC_PWM_disable
+   53: 			if(LED & 0x01 )
+000D40 904EE9            MOV     DPTR,#LED
+000D43 E0                MOVX    A,@DPTR
+000D44 30E006            JNB     ACC.0,?C0013?PWM
+   54: 			GPIO_SetOutput(RLED_GPIO,LED_ON);
+000D47 D206              SETB    ?_GPIO_SetOutput?BIT
+000D49 7F15              MOV     R7,#015H
+000D4B 91CE              ACALL   _GPIO_SetOutput
+000D4D         ?C0013?PWM:
+   55: 			if(LED & 0x02 )
+000D4D 904EE9            MOV     DPTR,#LED
+000D50 E0                MOVX    A,@DPTR
+000D51 30E106            JNB     ACC.1,?C0014?PWM
+   56: 			GPIO_SetOutput(GLED_GPIO,LED_ON);
+000D54 D206              SETB    ?_GPIO_SetOutput?BIT
+000D56 7F14              MOV     R7,#014H
+000D58 91CE              ACALL   _GPIO_SetOutput
+000D5A         ?C0014?PWM:
+   57: 			if(LED & 0x04 )
+000D5A 904EE9            MOV     DPTR,#LED
+000D5D E0                MOVX    A,@DPTR
+000D5E 30E25B            JNB     ACC.2,?C0010?PWM
+   58: 			GPIO_SetOutput(BLED_GPIO,LED_ON);
+000D61 D206              SETB    ?_GPIO_SetOutput?BIT
+000D63 7F13              MOV     R7,#013H
+000D65 81CE              AJMP    _GPIO_SetOutput
+   59: 			return;
+   60: 		}
+000D67         ?C0012?PWM:
+   61: 		else
+   62: 		{
+   63: 			if(pwm_duty_level == BACKLIGHT_DUTY_LEVEL_75)
+000D67 904EEA            MOV     DPTR,#pwm_duty_level
+000D6A E0                MOVX    A,@DPTR
+000D6B FF                MOV     R7,A
+000D6C B40309            CJNE    A,#03H,?C0017?PWM
+   64: 				pwm_duty = 75;
+000D6F A3                INC     DPTR
+000D70 E4                CLR     A
+000D71 F0                MOVX    @DPTR,A
+000D72 A3                INC     DPTR
+000D73 744B              MOV     A,#04BH
+000D75 F0                MOVX    @DPTR,A
+000D76 8018              SJMP    ?C0011?PWM
+000D78         ?C0017?PWM:
+   65: 			else if(pwm_duty_level == BACKLIGHT_DUTY_LEVEL_50)
+000D78 EF                MOV     A,R7
+000D79 B4020B            CJNE    A,#02H,?C0019?PWM
+   66: 				pwm_duty = 50;
+000D7C 904EEB            MOV     DPTR,#pwm_duty
+000D7F E4                CLR     A
+000D80 F0                MOVX    @DPTR,A
+000D81 A3                INC     DPTR
+000D82 7432              MOV     A,#032H
+000D84 F0                MOVX    @DPTR,A
+000D85 8009              SJMP    ?C0011?PWM
+000D87         ?C0019?PWM:
+   67: 			else
+   68: 				pwm_duty = 25;
+000D87 904EEB            MOV     DPTR,#pwm_duty
+000D8A E4                CLR     A
+000D8B F0                MOVX    @DPTR,A
+000D8C A3                INC     DPTR
+000D8D 7419              MOV     A,#019H
+000D8F F0                MOVX    @DPTR,A
+   69: 		}
+000D90         ?C0011?PWM:
+   70: 	
+   71: 	m_lpm_mode = 0;
+000D90 E4                CLR     A
+000D91 904131            MOV     DPTR,#m_lpm_mode
+000D94 F0                MOVX    @DPTR,A
+   72: 	g_variable.pwm_lpm_mode_flag = 1;
+000D95 904CE0            MOV     DPTR,#g_variable+042H
+000D98 04                INC     A
+000D99 F0                MOVX    @DPTR,A
+   73: 	YC_PWM_init(g_variable.backlight_led);
+000D9A 904CF9            MOV     DPTR,#g_variable+05BH
+000D9D E0                MOVX    A,@DPTR
+000D9E FF                MOV     R7,A
+000D9F 123954            LCALL   _YC_PWM_init
+   74: 	REG_PWM_PCOUNT(0) = pwm_duty;
+000DA2 904EEB            MOV     DPTR,#pwm_duty
+000DA5 E0                MOVX    A,@DPTR
+000DA6 A3                INC     DPTR
+000DA7 E0                MOVX    A,@DPTR
+000DA8 FF                MOV     R7,A
+000DA9 9080A0            MOV     DPTR,#080A0H
+000DAC F0                MOVX    @DPTR,A
+   75: 	REG_PWM_NCOUNT(0) = (100 - pwm_duty );
+000DAD C3                CLR     C
+000DAE 7464              MOV     A,#064H
+000DB0 9F                SUBB    A,R7
+000DB1 9080A2            MOV     DPTR,#080A2H
+000DB4 F0                MOVX    @DPTR,A
+   76: 	
+   77: 	REG_PWM_ENABLE |= 0x40;
+000DB5 908085            MOV     DPTR,#08085H
+000DB8 E0                MOVX    A,@DPTR
+000DB9 4440              ORL     A,#040H
+000DBB F0                MOVX    @DPTR,A
+   78: }	
+000DBC         ?C0010?PWM:
+000DBC 22                RET     
+----- FUNCTION _YC_PWM_set_duty (END) -------
+
+
+----- FUNCTION backlight_led_process (BEGIN) -----
+ FILE: 'led.c'
+  273: void backlight_led_process()
+  274: {
+  275: 	g_variable.backlight_switch_timer++;
+  276: 	if((g_variable.backlight_switch_timer % g_variable.backlight_speed) == 0)
+000DBD 904CE6            MOV     DPTR,#g_variable+048H
+000DC0 E0                MOVX    A,@DPTR
+000DC1 04                INC     A
+000DC2 F0                MOVX    @DPTR,A
+000DC3 7006              JNZ     ?C0081?LED
+000DC5 904CE5            MOV     DPTR,#g_variable+047H
+000DC8 E0                MOVX    A,@DPTR
+000DC9 04                INC     A
+000DCA F0                MOVX    @DPTR,A
+000DCB         ?C0081?LED:
+  277: 	{
+000DCB 904CE3            MOV     DPTR,#g_variable+045H
+000DCE E0                MOVX    A,@DPTR
+000DCF FD                MOV     R5,A
+000DD0 7C00              MOV     R4,#00H
+000DD2 904CE5            MOV     DPTR,#g_variable+047H
+000DD5 E0                MOVX    A,@DPTR
+000DD6 FE                MOV     R6,A
+000DD7 A3                INC     DPTR
+000DD8 E0                MOVX    A,@DPTR
+000DD9 FF                MOV     R7,A
+000DDA 12040E            LCALL   ?C?UIDIV
+000DDD ED                MOV     A,R5
+000DDE 4C                ORL     A,R4
+000DDF 6002              JZ      $ + 4H
+000DE1 C19C              AJMP    ?C0080?LED
+  278: 		switch(g_variable.backlight_level)
+  279: 		{
+000DE3 904CE2            MOV     DPTR,#g_variable+044H
+000DE6 E0                MOVX    A,@DPTR
+000DE7 14                DEC     A
+000DE8 6011              JZ      ?C0069?LED
+000DEA 14                DEC     A
+000DEB 6011              JZ      ?C0070?LED
+000DED 14                DEC     A
+000DEE 6002              JZ      $ + 4H
+000DF0 C196              AJMP    ?C0079?LED
+  280: 			case BACKLIGHT_ON:
+  281: 			YC_PWM_set_duty(7,g_variable.backlight_duty_level);
+000DF2         ?C0068?LED:
+  282: 				break;
+000DF2 904CE7            MOV     DPTR,#g_variable+049H
+000DF5 E0                MOVX    A,@DPTR
+000DF6 FD                MOV     R5,A
+000DF7 7F07              MOV     R7,#07H
+000DF9 81EB              AJMP    _YC_PWM_set_duty
+  283: 			case BACKLIGHT_BREATH:
+  284: 			LED_backlight_breath();
+000DFB         ?C0069?LED:
+  285: 				break;
+000DFB 023761            LJMP    LED_backlight_breath
+  286: 			case BACKLIGHT_SWITCH:
+  287: 			if(g_variable.backlight_kind== BACLIGHT_LED_1)
+000DFE         ?C0070?LED:
+  288: 			{
+000DFE 904CF7            MOV     DPTR,#g_variable+059H
+000E01 E0                MOVX    A,@DPTR
+000E02 700E              JNZ     ?C0071?LED
+  289: 				YC_PWM_set_duty(7,BACKLIGHT_DUTY_LEVEL_00);
+  290: 				YC_PWM_set_duty(1,g_variable.backlight_duty_level);	
+000E04 FD                MOV     R5,A
+000E05 7F07              MOV     R7,#07H
+000E07 91EB              ACALL   _YC_PWM_set_duty
+  291: 			}
+000E09 904CE7            MOV     DPTR,#g_variable+049H
+000E0C E0                MOVX    A,@DPTR
+000E0D FD                MOV     R5,A
+000E0E 7F01              MOV     R7,#01H
+000E10 91EB              ACALL   _YC_PWM_set_duty
+  292: 			if(g_variable.backlight_kind== BACLIGHT_LED_2)
+000E12         ?C0071?LED:
+  293: 			{
+000E12 904CF7            MOV     DPTR,#g_variable+059H
+000E15 E0                MOVX    A,@DPTR
+000E16 B4010F            CJNE    A,#01H,?C0072?LED
+  294: 				YC_PWM_set_duty(7,BACKLIGHT_DUTY_LEVEL_00);
+  295: 				YC_PWM_set_duty(2,g_variable.backlight_duty_level);	
+000E19 E4                CLR     A
+000E1A FD                MOV     R5,A
+000E1B 7F07              MOV     R7,#07H
+000E1D 91EB              ACALL   _YC_PWM_set_duty
+  296: 			}
+000E1F 904CE7            MOV     DPTR,#g_variable+049H
+000E22 E0                MOVX    A,@DPTR
+000E23 FD                MOV     R5,A
+000E24 7F02              MOV     R7,#02H
+000E26 91EB              ACALL   _YC_PWM_set_duty
+  297: 			if(g_variable.backlight_kind== BACLIGHT_LED_3)
+000E28         ?C0072?LED:
+  298: 			{
+000E28 904CF7            MOV     DPTR,#g_variable+059H
+000E2B E0                MOVX    A,@DPTR
+000E2C B4020F            CJNE    A,#02H,?C0073?LED
+  299: 				YC_PWM_set_duty(7,BACKLIGHT_DUTY_LEVEL_00);
+  300: 				YC_PWM_set_duty(3,g_variable.backlight_duty_level);	
+000E2F E4                CLR     A
+000E30 FD                MOV     R5,A
+000E31 7F07              MOV     R7,#07H
+000E33 91EB              ACALL   _YC_PWM_set_duty
+  301: 			}
+000E35 904CE7            MOV     DPTR,#g_variable+049H
+000E38 E0                MOVX    A,@DPTR
+000E39 FD                MOV     R5,A
+000E3A 7F03              MOV     R7,#03H
+000E3C 91EB              ACALL   _YC_PWM_set_duty
+  302: 			if(g_variable.backlight_kind== BACLIGHT_LED_4)	
+000E3E         ?C0073?LED:
+  303: 			{
+000E3E 904CF7            MOV     DPTR,#g_variable+059H
+000E41 E0                MOVX    A,@DPTR
+000E42 B4030F            CJNE    A,#03H,?C0074?LED
+  304: 				YC_PWM_set_duty(7,BACKLIGHT_DUTY_LEVEL_00);
+  305: 				YC_PWM_set_duty(4,g_variable.backlight_duty_level);	
+000E45 E4                CLR     A
+000E46 FD                MOV     R5,A
+000E47 7F07              MOV     R7,#07H
+000E49 91EB              ACALL   _YC_PWM_set_duty
+  306: 			}	
+000E4B 904CE7            MOV     DPTR,#g_variable+049H
+000E4E E0                MOVX    A,@DPTR
+000E4F FD                MOV     R5,A
+000E50 7F04              MOV     R7,#04H
+000E52 91EB              ACALL   _YC_PWM_set_duty
+  307: 			if(g_variable.backlight_kind== BACLIGHT_LED_5)
+000E54         ?C0074?LED:
+  308: 			{
+000E54 904CF7            MOV     DPTR,#g_variable+059H
+000E57 E0                MOVX    A,@DPTR
+000E58 B4040F            CJNE    A,#04H,?C0075?LED
+  309: 				YC_PWM_set_duty(7,BACKLIGHT_DUTY_LEVEL_00);
+  310: 				YC_PWM_set_duty(5,g_variable.backlight_duty_level);	
+000E5B E4                CLR     A
+000E5C FD                MOV     R5,A
+000E5D 7F07              MOV     R7,#07H
+000E5F 91EB              ACALL   _YC_PWM_set_duty
+  311: 			}			
+000E61 904CE7            MOV     DPTR,#g_variable+049H
+000E64 E0                MOVX    A,@DPTR
+000E65 FD                MOV     R5,A
+000E66 7F05              MOV     R7,#05H
+000E68 91EB              ACALL   _YC_PWM_set_duty
+  312: 			if(g_variable.backlight_kind== BACLIGHT_LED_6)	
+000E6A         ?C0075?LED:
+  313: 			{
+000E6A 904CF7            MOV     DPTR,#g_variable+059H
+000E6D E0                MOVX    A,@DPTR
+000E6E B4050F            CJNE    A,#05H,?C0076?LED
+  314: 				YC_PWM_set_duty(7,BACKLIGHT_DUTY_LEVEL_00);
+  315: 				YC_PWM_set_duty(6,g_variable.backlight_duty_level);	
+000E71 E4                CLR     A
+000E72 FD                MOV     R5,A
+000E73 7F07              MOV     R7,#07H
+000E75 91EB              ACALL   _YC_PWM_set_duty
+  316: 			}	
+000E77 904CE7            MOV     DPTR,#g_variable+049H
+000E7A E0                MOVX    A,@DPTR
+000E7B FD                MOV     R5,A
+000E7C 7F06              MOV     R7,#06H
+000E7E 91EB              ACALL   _YC_PWM_set_duty
+  317: 			if(g_variable.backlight_kind== BACLIGHT_LED_7)
+000E80         ?C0076?LED:
+  318: 			{
+000E80 904CF7            MOV     DPTR,#g_variable+059H
+000E83 E0                MOVX    A,@DPTR
+000E84 B40615            CJNE    A,#06H,?C0080?LED
+  319: 				YC_PWM_set_duty(7,BACKLIGHT_DUTY_LEVEL_00);
+  320: 				YC_PWM_set_duty(7,g_variable.backlight_duty_level);	
+000E87 E4                CLR     A
+000E88 FD                MOV     R5,A
+000E89 7F07              MOV     R7,#07H
+000E8B 91EB              ACALL   _YC_PWM_set_duty
+  321: 			}			
+000E8D 904CE7            MOV     DPTR,#g_variable+049H
+000E90 E0                MOVX    A,@DPTR
+000E91 FD                MOV     R5,A
+000E92 7F07              MOV     R7,#07H
+000E94 81EB              AJMP    _YC_PWM_set_duty
+  322: 			break;					
+  323: 			case BACKLIGHT_OFF:
+  324: 			default:		
+  325: 			YC_PWM_set_duty(7,BACKLIGHT_DUTY_LEVEL_00);		
+000E96         ?C0079?LED:
+  326: 				break;
+000E96 E4                CLR     A
+000E97 FD                MOV     R5,A
+000E98 7F07              MOV     R7,#07H
+000E9A 91EB              ACALL   _YC_PWM_set_duty
+  327: 				
+  328: 
+  329: 		}
+  330: 	}
+  331: }
+000E9C         ?C0080?LED:
+000E9C 22                RET     
+----- FUNCTION backlight_led_process (END) -------
+
+
+----- FUNCTION LED_handle (BEGIN) -----
+ FILE: 'led.c'
+   27: void LED_handle()
+   28: {
+   29: 	if (power_on_flag != 2)
+   30: 		return;
+000E9D 904DFA            MOV     DPTR,#power_on_flag
+000EA0 E0                MOVX    A,@DPTR
+000EA1 6402              XRL     A,#02H
+000EA3 6002              JZ      $ + 4H
+000EA5 E15B              AJMP    ?C0005?LED
+000EA7         ?C0004?LED:
+   31: 
+   32: 	if(g_variable.system_win_app_lock_flag)
+000EA7 904CDF            MOV     DPTR,#g_variable+041H
+000EAA E0                MOVX    A,@DPTR
+000EAB 6008              JZ      ?C0006?LED
+   33: 		GPIO_SetOutput(WIN_LOCK_LED_GPIO,LED_OFF);
+000EAD C206              CLR     ?_GPIO_SetOutput?BIT
+000EAF 7FFF              MOV     R7,#0FFH
+000EB1 91CE              ACALL   _GPIO_SetOutput
+000EB3 8006              SJMP    ?C0007?LED
+000EB5         ?C0006?LED:
+   34: 	else
+   35: 		GPIO_SetOutput(WIN_LOCK_LED_GPIO,LED_ON);
+000EB5 D206              SETB    ?_GPIO_SetOutput?BIT
+000EB7 7FFF              MOV     R7,#0FFH
+000EB9 91CE              ACALL   _GPIO_SetOutput
+000EBB         ?C0007?LED:
+   36: 
+   37: 
+   38: 	if(!g_variable.pairing_timeout && !g_variable.pairing_g24_timeout)
+000EBB 904CC8            MOV     DPTR,#g_variable+02AH
+000EBE E0                MOVX    A,@DPTR
+000EBF 6002              JZ      $ + 4H
+000EC1 E155              AJMP    ?C0008?LED
+000EC3 904CCD            MOV     DPTR,#g_variable+02FH
+000EC6 E0                MOVX    A,@DPTR
+000EC7 6002              JZ      $ + 4H
+000EC9 E155              AJMP    ?C0008?LED
+   39: 	{
+   40: 		backlight_led_process();
+000ECB B1BD              ACALL   backlight_led_process
+   41: 		//low battery LED process
+   42: 		if (g_variable.battery_status == BAT_STATUS_SHUT_DOWN)
+000ECD 904CB4            MOV     DPTR,#g_variable+016H
+000ED0 E0                MOVX    A,@DPTR
+000ED1 B40204            CJNE    A,#02H,?C0009?LED
+   43: 		{
+   44: 			System_long_sleep();
+000ED4 F1D8              ACALL   System_long_sleep
+   45: 		}
+000ED6 802E              SJMP    ?C0010?LED
+000ED8         ?C0009?LED:
+   46: 		else if (g_variable.battery_status == BAT_STATUS_LOW)
+000ED8 904CB4            MOV     DPTR,#g_variable+016H
+000EDB E0                MOVX    A,@DPTR
+000EDC B40114            CJNE    A,#01H,?C0011?LED
+   47: 		{
+   48: 			if (g_variable.battery_low_led_flash_flag == 0)
+000EDF 904CD6            MOV     DPTR,#g_variable+038H
+000EE2 E0                MOVX    A,@DPTR
+000EE3 7021              JNZ     ?C0010?LED
+   49: 			{
+   50: 				g_variable.battery_low_led_flash_interval = LOW_BATTERY_FLASH_INTERVAL;
+000EE5 904CC1            MOV     DPTR,#g_variable+023H
+000EE8 7418              MOV     A,#018H
+000EEA F0                MOVX    @DPTR,A
+   51: 				g_variable.battery_low_led_flash_flag = 1;
+000EEB 904CD6            MOV     DPTR,#g_variable+038H
+000EEE 7401              MOV     A,#01H
+000EF0 F0                MOVX    @DPTR,A
+   52: 			}
+   53: 		}
+000EF1 8013              SJMP    ?C0010?LED
+000EF3         ?C0011?LED:
+   54: 		else
+   55: 		{
+   56: 			if (g_variable.battery_low_led_flash_flag == 1)
+000EF3 904CD6            MOV     DPTR,#g_variable+038H
+000EF6 E0                MOVX    A,@DPTR
+000EF7 B4010C            CJNE    A,#01H,?C0010?LED
+   57: 			{
+   58: 				g_variable.battery_low_led_flash_flag = 0;
+000EFA E4                CLR     A
+000EFB F0                MOVX    @DPTR,A
+   59: 				g_variable.battery_low_led_flash_interval = 0;
+000EFC 904CC1            MOV     DPTR,#g_variable+023H
+000EFF F0                MOVX    @DPTR,A
+   60: 				GPIO_Setout(LOWPOWER_LED_GPIO, LED_OFF);
+000F00 C201              CLR     ?_GPIO_Setout?BIT
+000F02 7F1E              MOV     R7,#01EH
+000F04 F15C              ACALL   _GPIO_Setout
+   61: 			}
+   62: 		}
+000F06         ?C0010?LED:
+   63: 
+   64: 		//capslock  numlock  scrolllock LED process
+   65: 		if (YC_check_is_connected())
+000F06 12180D            LCALL   YC_check_is_connected
+000F09 EF                MOV     A,R7
+000F0A 6043              JZ      ?C0015?LED
+   66: 		{			
+   67: 				if (g_variable.sleepTimer < KB_NUM_CAPS_LED_ON_TIMER)
+000F0C C3                CLR     C
+000F0D 904CC3            MOV     DPTR,#g_variable+025H
+000F10 E0                MOVX    A,@DPTR
+000F11 9414              SUBB    A,#014H
+000F13 904CC2            MOV     DPTR,#g_variable+024H
+000F16 E0                MOVX    A,@DPTR
+000F17 9400              SUBB    A,#00H
+000F19 5028              JNC     ?C0016?LED
+   68: 				{
+   69: 				
+   70: 					if(m_caps_num_lock & KB_PC_KEYSEL_NUMLOCK)
+000F1B 904C90            MOV     DPTR,#m_caps_num_lock
+000F1E E0                MOVX    A,@DPTR
+000F1F 30E008            JNB     ACC.0,?C0017?LED
+   71: 					{
+   72: 						GPIO_Setout(NUM_LOCK_LED_GPIO, LED_ON);
+000F22 D201              SETB    ?_GPIO_Setout?BIT
+000F24 7F1F              MOV     R7,#01FH
+000F26 F15C              ACALL   _GPIO_Setout
+   73: 					}
+000F28 8006              SJMP    ?C0018?LED
+000F2A         ?C0017?LED:
+   74: 					else
+   75: 					{
+   76: 						GPIO_Setout(NUM_LOCK_LED_GPIO, LED_OFF);
+000F2A C201              CLR     ?_GPIO_Setout?BIT
+000F2C 7F1F              MOV     R7,#01FH
+000F2E F15C              ACALL   _GPIO_Setout
+   77: 					}
+000F30         ?C0018?LED:
+   78: 					
+   79: 					if(m_caps_num_lock & KB_PC_KEYSEL_CAPSLOCK)
+000F30 904C90            MOV     DPTR,#m_caps_num_lock
+000F33 E0                MOVX    A,@DPTR
+000F34 30E106            JNB     ACC.1,?C0019?LED
+   80: 					{
+   81: 						GPIO_Setout(CAPS_LED_GPIO, LED_ON);
+000F37 D201              SETB    ?_GPIO_Setout?BIT
+000F39 7F1D              MOV     R7,#01DH
+000F3B 801F              SJMP    _GPIO_Setout
+   82: 					}
+000F3D         ?C0019?LED:
+   83: 					else 
+   84: 					{
+   85: 						GPIO_Setout(CAPS_LED_GPIO, LED_OFF);
+000F3D C201              CLR     ?_GPIO_Setout?BIT
+000F3F 7F1D              MOV     R7,#01DH
+000F41 8019              SJMP    _GPIO_Setout
+   86: 					}	
+   87: 
+   88: 				}
+000F43         ?C0016?LED:
+   89: 				else
+   90: 				{
+   91: 					GPIO_Setout(CAPS_LED_GPIO, LED_OFF);
+000F43 C201              CLR     ?_GPIO_Setout?BIT
+000F45 7F1D              MOV     R7,#01DH
+000F47 F15C              ACALL   _GPIO_Setout
+   92: 					GPIO_Setout(NUM_LOCK_LED_GPIO, LED_OFF);
+000F49 C201              CLR     ?_GPIO_Setout?BIT
+000F4B 7F1F              MOV     R7,#01FH
+000F4D 800D              SJMP    _GPIO_Setout
+   93: 				}
+   94: 			}
+000F4F         ?C0015?LED:
+   95: 		else
+   96: 		{
+   97: 			GPIO_Setout(CAPS_LED_GPIO, LED_OFF);
+000F4F C201              CLR     ?_GPIO_Setout?BIT
+000F51 7F1D              MOV     R7,#01DH
+000F53 8007              SJMP    _GPIO_Setout
+   98: 		}
+   99: 	}
+000F55         ?C0008?LED:
+  100: 	else
+  101: 	{
+  102: 		GPIO_Setout(CAPS_LED_GPIO, LED_OFF);
+000F55 C201              CLR     ?_GPIO_Setout?BIT
+000F57 7F1D              MOV     R7,#01DH
+000F59 F15C              ACALL   _GPIO_Setout
+  103: 	}
+  104: 
+  105: }
+000F5B         ?C0005?LED:
+000F5B 22                RET     
+----- FUNCTION LED_handle (END) -------
+
+
+----- FUNCTION _GPIO_Setout (BEGIN) -----
+ FILE: 'gpio.c'
+   42: void GPIO_Setout(byte gpio_num, bool bit_val)
+   43: {
+;---- Variable 'gpio_num' assigned to Register 'R7' ----
+   44: 	if(gpio_num == 0xff)
+   45: 		return;
+000F5C EF                MOV     A,R7
+000F5D F4                CPL     A
+000F5E 600D              JZ      ?C0007?GPIO
+000F60         ?C0006?GPIO:
+   46: 	gpioSetBit(gpio_num, &REG_GPIO_OUT(0), bit_val);
+000F60 7B01              MOV     R3,#01H
+000F62 7A80              MOV     R2,#080H
+000F64 7974              MOV     R1,#074H
+000F66 A201              MOV     C,bit_val
+000F68 9200              MOV     ?_gpioSetBit?BIT,C
+000F6A 123700            LCALL   _gpioSetBit
+   47: }
+000F6D         ?C0007?GPIO:
+000F6D 22                RET     
+----- FUNCTION _GPIO_Setout (END) -------
+
+
+----- FUNCTION _Delay1ms (BEGIN) -----
+ FILE: 'utilities.c'
+   46: void Delay1ms(byte Time)
+   47: {
+;---- Variable 'Time' assigned to Register 'R7' ----
+   48: 	word j;
+   49: 	for (; Time > 0; Time--) {
+000F6E         ?C0014?UTILITIES:
+000F6E EF                MOV     A,R7
+000F6F D3                SETB    C
+000F70 9400              SUBB    A,#00H
+000F72 4011              JC      ?C0020?UTILITIES
+   50: 		for (j = 0; j < 1190; j++) ;
+;---- Variable 'j' assigned to Register 'R4/R5' ----
+000F74 E4                CLR     A
+000F75 FD                MOV     R5,A
+000F76 FC                MOV     R4,A
+000F77         ?C0017?UTILITIES:
+000F77 0D                INC     R5
+000F78 BD0001            CJNE    R5,#00H,?C0028?UTILITIES
+000F7B 0C                INC     R4
+000F7C         ?C0028?UTILITIES:
+000F7C BC04F8            CJNE    R4,#04H,?C0017?UTILITIES
+000F7F BDA6F5            CJNE    R5,#0A6H,?C0017?UTILITIES
+   51: 	}
+000F82         ?C0016?UTILITIES:
+000F82 1F                DEC     R7
+000F83 80E9              SJMP    ?C0014?UTILITIES
+   52: }
+000F85         ?C0020?UTILITIES:
+000F85 22                RET     
+----- FUNCTION _Delay1ms (END) -------
+
+
+----- FUNCTION LED_backlight_neno (BEGIN) -----
+ FILE: 'led.c'
+  107: void LED_backlight_neno()
+  108: {
+  109: 			YC_PWM_disable(7);
+  110: 			GPIO_SetOutput(RLED_GPIO,LED_OFF);
+000F86 7F07              MOV     R7,#07H
+000F88 F19C              ACALL   _YC_PWM_disable
+  111: 			GPIO_SetOutput(GLED_GPIO,LED_OFF);	
+000F8A C206              CLR     ?_GPIO_SetOutput?BIT
+000F8C 7F15              MOV     R7,#015H
+000F8E 91CE              ACALL   _GPIO_SetOutput
+  112: 			GPIO_SetOutput(BLED_GPIO,LED_OFF);
+000F90 C206              CLR     ?_GPIO_SetOutput?BIT
+000F92 7F14              MOV     R7,#014H
+000F94 91CE              ACALL   _GPIO_SetOutput
+  113: 
+000F96 C206              CLR     ?_GPIO_SetOutput?BIT
+000F98 7F13              MOV     R7,#013H
+000F9A 81CE              AJMP    _GPIO_SetOutput
+  114: }
+----- FUNCTION LED_backlight_neno (END) -------
+
+
+----- FUNCTION _YC_PWM_disable (BEGIN) -----
+ FILE: 'pwm.c'
+   81: void YC_PWM_disable(byte LED)
+   82: {
+;---- Variable 'LED' assigned to Register 'R7' ----
+   83: 	if((g_variable.pairing_timeout == 0) && (g_variable.pwm_lpm_mode_flag == 1))
+   84: 	{
+000F9C 904CC8            MOV     DPTR,#g_variable+02AH
+000F9F E0                MOVX    A,@DPTR
+000FA0 7009              JNZ     ?C0021?PWM
+000FA2 904CE0            MOV     DPTR,#g_variable+042H
+000FA5 E0                MOVX    A,@DPTR
+000FA6 B40102            CJNE    A,#01H,?C0021?PWM
+   85: 		g_variable.pwm_lpm_mode_flag = 0;
+   86: 		//m_lpm_mode = 1;
+000FA9 E4                CLR     A
+000FAA F0                MOVX    @DPTR,A
+   87: 	}
+000FAB         ?C0021?PWM:
+   88: 	REG_CLK_OFF(1)  |= 0x20;	//turn on PWM clock
+000FAB 908051            MOV     DPTR,#08051H
+000FAE E0                MOVX    A,@DPTR
+000FAF 4420              ORL     A,#020H
+000FB1 F0                MOVX    @DPTR,A
+   89: 	REG_CLK_OFF(1)  |= 0x20;	//turn on PWM clock
+000FB2 E0                MOVX    A,@DPTR
+000FB3 4420              ORL     A,#020H
+000FB5 F0                MOVX    @DPTR,A
+   90: 	if(LED & 0x01 )
+000FB6 EF                MOV     A,R7
+000FB7 30E007            JNB     ACC.0,?C0022?PWM
+   91: 	{
+   92: 
+   93: 	REG_GPIO_SEL(2)  &= ~0x40;	//set gpio22 to PWM
+000FBA 908082            MOV     DPTR,#08082H
+000FBD E0                MOVX    A,@DPTR
+000FBE 54BF              ANL     A,#0BFH
+000FC0 F0                MOVX    @DPTR,A
+   94: 
+   95: 	}
+000FC1         ?C0022?PWM:
+   96: 	if(LED & 0x02 )
+000FC1 EF                MOV     A,R7
+000FC2 30E107            JNB     ACC.1,?C0023?PWM
+   97: 	{
+   98: 
+   99: 	REG_GPIO_SEL(2)  &= ~0x20;	//set gpio22 to PWM
+000FC5 908082            MOV     DPTR,#08082H
+000FC8 E0                MOVX    A,@DPTR
+000FC9 54DF              ANL     A,#0DFH
+000FCB F0                MOVX    @DPTR,A
+  100: 
+  101: 	}
+000FCC         ?C0023?PWM:
+  102: 	if(LED & 0x04 )
+000FCC EF                MOV     A,R7
+000FCD 30E207            JNB     ACC.2,?C0025?PWM
+  103: 	{
+  104: 
+  105: 	REG_GPIO_SEL(2)  &= ~0x10;	//set gpio22 to PWM
+000FD0 908082            MOV     DPTR,#08082H
+000FD3 E0                MOVX    A,@DPTR
+000FD4 54EF              ANL     A,#0EFH
+000FD6 F0                MOVX    @DPTR,A
+  106: 
+  107: 	}		
+  108: 
+  109: }
+000FD7         ?C0025?PWM:
+000FD7 22                RET     
+----- FUNCTION _YC_PWM_disable (END) -------
+
+
+----- FUNCTION System_long_sleep (BEGIN) -----
+ FILE: 'sys.c'
+   83: void System_long_sleep()
+   84: { 
+   85: 	return;
+   86: 	//m_lpm_mode = 1;
+   87: 	m_reconnect_continue = 0;
+   88: 	YC_PWM_disable(7);
+   89: 
+   90: 	LED_all_shutdown();
+   91: 	IPC_TxControlCmd(IPC_CMD_ENTER_HIBERNATE);
+   92: }
+000FD8 22                RET     
+----- FUNCTION System_long_sleep (END) -------
+
+
+----- FUNCTION ?L?COM0002 (BEGIN) -----
+000FD9 121D8A            LCALL   YC_update_eeprom_data
+----- FUNCTION System_Reset_Connect (BEGIN) -----
+ FILE: 'sys.c'
+  117: void System_Reset_Connect()
+;----                  JMP     System_Hardware_reset
+  118: {
+  119: 	System_Hardware_reset();
+----- FUNCTION System_Reset_Connect (END) -------
+
+
+----- FUNCTION System_Hardware_reset (BEGIN) -----
+ FILE: 'sys.c'
+   77: static void System_Hardware_reset()
+   78: {
+   79: 	m_reset_reg = 1;
+   80: 	while(1);
+000FDC 908010            MOV     DPTR,#m_reset_reg
+000FDF 7401              MOV     A,#01H
+000FE1 F0                MOVX    @DPTR,A
+000FE2         ?C0005?SYS:
+   81: }
+000FE2 80FE              SJMP    ?C0005?SYS
+000FE4 22                RET     
+----- FUNCTION System_Hardware_reset (END) -------
+
+
+----- FUNCTION LED_device_poweron (BEGIN) -----
+ FILE: 'led.c'
+   14: void LED_device_poweron()
+   15: 	{
+   16: 
+   17: 			GPIO_Setout(BT_BUTTON_GPIO,LED_ON);
+000FE5 D201              SETB    ?_GPIO_Setout?BIT
+000FE7 7F1E              MOV     R7,#01EH
+000FE9 E15C              AJMP    _GPIO_Setout
+   18: 
+----- FUNCTION LED_device_poweron (END) -------
+
+
+----- FUNCTION LED_device_poweroff (BEGIN) -----
+ FILE: 'led.c'
+   22: void LED_device_poweroff()
+   23: 	{
+   24: 
+   25: 			GPIO_Setout(BT_BUTTON_GPIO,LED_OFF);
+000FEB C201              CLR     ?_GPIO_Setout?BIT
+000FED 7F1E              MOV     R7,#01EH
+000FEF E15C              AJMP    _GPIO_Setout
+   26: 	}
+----- FUNCTION LED_device_poweroff (END) -------
+
+
+----- FUNCTION _YC_store_record_list (BEGIN) -----
+ FILE: 'bluetooth.c'
+   59: void YC_store_record_list(byte link_type,byte index)
+   60: {
+000FF1 904F11            MOV     DPTR,#index
+000FF4 ED                MOV     A,R5
+000FF5 F0                MOVX    @DPTR,A
+000FF6 904F10            MOV     DPTR,#link_type
+000FF9 EF                MOV     A,R7
+000FFA F0                MOVX    @DPTR,A
+   61: 	if (link_type == TYPE_BLE) 
+   62: 	{
+000FFB 6401              XRL     A,#01H
+000FFD 7070              JNZ     ?C0007?BLUETOOTH
+   63: 		bd_key_record_list[index].device_type = TYPE_BLE;
+   64: 		xmemcpy(bd_key_record_list[index].device_addr,m_remote_le_addr,6);
+000FFF A3                INC     DPTR
+001000 E0                MOVX    A,@DPTR
+001001 FF                MOV     R7,A
+001002 75F01E            MOV     B,#01EH
+001005 A4                MUL     AB
+001006 24FD              ADD     A,#LOW bd_key_record_list
+001008 F582              MOV     DPL,A
+00100A E4                CLR     A
+00100B 344D              ADDC    A,#HIGH bd_key_record_list
+00100D F583              MOV     DPH,A
+00100F 7401              MOV     A,#01H
+001011 F0                MOVX    @DPTR,A
+   65: 		xmemcpy(bd_key_record_list[index].device_link_key,m_le_ltk,16);
+001012 EF                MOV     A,R7
+001013 75F01E            MOV     B,#01EH
+001016 A4                MUL     AB
+001017 24FE              ADD     A,#LOW bd_key_record_list+01H
+001019 F582              MOV     DPL,A
+00101B E4                CLR     A
+00101C 344D              ADDC    A,#HIGH bd_key_record_list+01H
+00101E AF82              MOV     R7,DPL
+001020 FE                MOV     R6,A
+001021 7B01              MOV     R3,#01H
+001023 7A03              MOV     R2,#HIGH m_remote_le_addr
+001025 79D0              MOV     R1,#LOW m_remote_le_addr
+001027 904ED0            MOV     DPTR,#?_xmemcpy?BYTE+05H
+00102A 7406              MOV     A,#06H
+00102C F0                MOVX    @DPTR,A
+00102D 11C8              ACALL   _xmemcpy
+   66: 		xmemcpy(bd_key_record_list[index].local_addr,m_le_lap,6);
+00102F 904F11            MOV     DPTR,#index
+001032 E0                MOVX    A,@DPTR
+001033 75F01E            MOV     B,#01EH
+001036 A4                MUL     AB
+001037 2404              ADD     A,#LOW bd_key_record_list+07H
+001039 F582              MOV     DPL,A
+00103B E4                CLR     A
+00103C 344E              ADDC    A,#HIGH bd_key_record_list+07H
+00103E AF82              MOV     R7,DPL
+001040 FE                MOV     R6,A
+001041 7B01              MOV     R3,#01H
+001043 7A44              MOV     R2,#HIGH m_le_ltk
+001045 797B              MOV     R1,#LOW m_le_ltk
+001047 904ED0            MOV     DPTR,#?_xmemcpy?BYTE+05H
+00104A 7410              MOV     A,#010H
+00104C F0                MOVX    @DPTR,A
+00104D 11C8              ACALL   _xmemcpy
+   67: 	}
+00104F 904F11            MOV     DPTR,#index
+001052 E0                MOVX    A,@DPTR
+001053 75F01E            MOV     B,#01EH
+001056 A4                MUL     AB
+001057 2414              ADD     A,#LOW bd_key_record_list+017H
+001059 F582              MOV     DPL,A
+00105B E4                CLR     A
+00105C 344E              ADDC    A,#HIGH bd_key_record_list+017H
+00105E AF82              MOV     R7,DPL
+001060 FE                MOV     R6,A
+001061 7B01              MOV     R3,#01H
+001063 7A44              MOV     R2,#HIGH m_le_lap
+001065 79F9              MOV     R1,#LOW m_le_lap
+001067 904ED0            MOV     DPTR,#?_xmemcpy?BYTE+05H
+00106A 7406              MOV     A,#06H
+00106C F0                MOVX    @DPTR,A
+00106D 8059              SJMP    _xmemcpy
+   68: 	else if (link_type == TYPE_BT)
+00106F         ?C0007?BLUETOOTH:
+   69: 	{
+00106F 904F10            MOV     DPTR,#link_type
+001072 E0                MOVX    A,@DPTR
+001073 6402              XRL     A,#02H
+001075 7050              JNZ     ?C0010?BLUETOOTH
+   70: 		bd_key_record_list[index].device_type = TYPE_BT;
+   71: 		xmemcpy(bd_key_record_list[index].device_addr,m_remote_addr,6);
+001077 A3                INC     DPTR
+001078 E0                MOVX    A,@DPTR
+001079 FF                MOV     R7,A
+00107A 75F01E            MOV     B,#01EH
+00107D A4                MUL     AB
+00107E 24FD              ADD     A,#LOW bd_key_record_list
+001080 F582              MOV     DPL,A
+001082 E4                CLR     A
+001083 344D              ADDC    A,#HIGH bd_key_record_list
+001085 F583              MOV     DPH,A
+001087 7402              MOV     A,#02H
+001089 F0                MOVX    @DPTR,A
+   72: 		xmemcpy(bd_key_record_list[index].device_link_key,m_linkkey,16);
+00108A EF                MOV     A,R7
+00108B 75F01E            MOV     B,#01EH
+00108E A4                MUL     AB
+00108F 24FE              ADD     A,#LOW bd_key_record_list+01H
+001091 F582              MOV     DPL,A
+001093 E4                CLR     A
+001094 344D              ADDC    A,#HIGH bd_key_record_list+01H
+001096 AF82              MOV     R7,DPL
+001098 FE                MOV     R6,A
+001099 7B01              MOV     R3,#01H
+00109B 7A00              MOV     R2,#HIGH m_remote_addr
+00109D 7940              MOV     R1,#LOW m_remote_addr
+00109F 904ED0            MOV     DPTR,#?_xmemcpy?BYTE+05H
+0010A2 7406              MOV     A,#06H
+0010A4 F0                MOVX    @DPTR,A
+0010A5 11C8              ACALL   _xmemcpy
+   73: 	}
+0010A7 904F11            MOV     DPTR,#index
+0010AA E0                MOVX    A,@DPTR
+0010AB 75F01E            MOV     B,#01EH
+0010AE A4                MUL     AB
+0010AF 2404              ADD     A,#LOW bd_key_record_list+07H
+0010B1 F582              MOV     DPL,A
+0010B3 E4                CLR     A
+0010B4 344E              ADDC    A,#HIGH bd_key_record_list+07H
+0010B6 AF82              MOV     R7,DPL
+0010B8 FE                MOV     R6,A
+0010B9 7B01              MOV     R3,#01H
+0010BB 7A42              MOV     R2,#HIGH m_linkkey
+0010BD 7962              MOV     R1,#LOW m_linkkey
+0010BF 904ED0            MOV     DPTR,#?_xmemcpy?BYTE+05H
+0010C2 7410              MOV     A,#010H
+0010C4 F0                MOVX    @DPTR,A
+0010C5 11C8              ACALL   _xmemcpy
+   74: }
+   75: 
+0010C7         ?C0010?BLUETOOTH:
+0010C7 22                RET     
+----- FUNCTION _YC_store_record_list (END) -------
+
+
+----- FUNCTION _xmemcpy (BEGIN) -----
+ FILE: 'utilities.c'
+    9: void xmemcpy(pxbyte dest, byte * src, byte len)
+   10: {
+0010C8 904ECB            MOV     DPTR,#dest
+0010CB EE                MOV     A,R6
+0010CC F0                MOVX    @DPTR,A
+0010CD A3                INC     DPTR
+0010CE EF                MOV     A,R7
+0010CF F0                MOVX    @DPTR,A
+0010D0 A3                INC     DPTR
+0010D1 EB                MOV     A,R3
+0010D2 F0                MOVX    @DPTR,A
+0010D3 A3                INC     DPTR
+0010D4 EA                MOV     A,R2
+0010D5 F0                MOVX    @DPTR,A
+0010D6 A3                INC     DPTR
+0010D7 E9                MOV     A,R1
+0010D8 F0                MOVX    @DPTR,A
+   11: 	while (len--)
+0010D9         ?C0002?UTILITIES:
+   12: 		*dest++ = *src++;
+0010D9 904ED0            MOV     DPTR,#len
+0010DC E0                MOVX    A,@DPTR
+0010DD FF                MOV     R7,A
+0010DE 14                DEC     A
+0010DF F0                MOVX    @DPTR,A
+0010E0 EF                MOV     A,R7
+0010E1 6027              JZ      ?C0004?UTILITIES
+   13: 	return;
+0010E3 904ECD            MOV     DPTR,#src
+0010E6 E0                MOVX    A,@DPTR
+0010E7 FB                MOV     R3,A
+0010E8 A3                INC     DPTR
+0010E9 E4                CLR     A
+0010EA 75F001            MOV     B,#01H
+0010ED 120479            LCALL   ?C?ILDIX
+0010F0 A9F0              MOV     R1,B
+0010F2 FA                MOV     R2,A
+0010F3 1203B6            LCALL   ?C?CLDPTR
+0010F6 FF                MOV     R7,A
+0010F7 904ECB            MOV     DPTR,#dest
+0010FA E4                CLR     A
+0010FB 75F001            MOV     B,#01H
+0010FE 120479            LCALL   ?C?ILDIX
+001101 85F082            MOV     DPL,B
+001104 F583              MOV     DPH,A
+001106 EF                MOV     A,R7
+001107 F0                MOVX    @DPTR,A
+001108 80CF              SJMP    ?C0002?UTILITIES
+   14: }
+00110A         ?C0004?UTILITIES:
+00110A 22                RET     
+----- FUNCTION _xmemcpy (END) -------
+
+
+----- FUNCTION _kb_motion_keyscan (BEGIN) -----
+ FILE: 'kb_process.c'
+  421: void kb_motion_keyscan(tKSEVENT *pEvt)
+  422: {
+00110B 904ED1            MOV     DPTR,#pEvt
+00110E EB                MOV     A,R3
+00110F F0                MOVX    @DPTR,A
+001110 A3                INC     DPTR
+001111 EA                MOV     A,R2
+001112 F0                MOVX    @DPTR,A
+001113 A3                INC     DPTR
+001114 E9                MOV     A,R1
+001115 F0                MOVX    @DPTR,A
+  423: 	byte temp = 0;
+  424: 	byte i=0;
+001116 E4                CLR     A
+001117 A3                INC     DPTR
+001118 F0                MOVX    @DPTR,A
+  425: 	
+001119 A3                INC     DPTR
+00111A F0                MOVX    @DPTR,A
+  426: 	fn_flag = 0;
+00111B 904DF1            MOV     DPTR,#fn_flag
+00111E F0                MOVX    @DPTR,A
+  427: 	for(i=0; i < KS_BUFF_POLL_LEN-1; i++)
+00111F 904ED5            MOV     DPTR,#i
+001122 F0                MOVX    @DPTR,A
+001123         ?C0093?KB_PROCESS:
+001123 904ED5            MOV     DPTR,#i
+001126 E0                MOVX    A,@DPTR
+001127 FF                MOV     R7,A
+001128 C3                CLR     C
+001129 9405              SUBB    A,#05H
+00112B 502C              JNC     ?C0094?KB_PROCESS
+  428: 	{
+  429: 		if (pEvt->ksPool[i] == HID_KEY_FN) 		// Fn key check
+00112D 904ED1            MOV     DPTR,#pEvt
+001130 E0                MOVX    A,@DPTR
+001131 FB                MOV     R3,A
+001132 A3                INC     DPTR
+001133 E0                MOVX    A,@DPTR
+001134 FA                MOV     R2,A
+001135 A3                INC     DPTR
+001136 E0                MOVX    A,@DPTR
+001137 2401              ADD     A,#01H
+001139 F9                MOV     R1,A
+00113A E4                CLR     A
+00113B 3A                ADDC    A,R2
+00113C FA                MOV     R2,A
+00113D 7E00              MOV     R6,#00H
+00113F E9                MOV     A,R1
+001140 2F                ADD     A,R7
+001141 F9                MOV     R1,A
+001142 EE                MOV     A,R6
+001143 3A                ADDC    A,R2
+001144 FA                MOV     R2,A
+001145 1203B6            LCALL   ?C?CLDPTR
+001148 B47F06            CJNE    A,#07FH,?C0095?KB_PROCESS
+  430: 		{
+  431: 			fn_flag = 1;
+00114B 904DF1            MOV     DPTR,#fn_flag
+00114E 7401              MOV     A,#01H
+001150 F0                MOVX    @DPTR,A
+  432: 		}
+  433: 	}
+001151         ?C0095?KB_PROCESS:
+001151 904ED5            MOV     DPTR,#i
+001154 E0                MOVX    A,@DPTR
+001155 04                INC     A
+001156 F0                MOVX    @DPTR,A
+001157 80CA              SJMP    ?C0093?KB_PROCESS
+001159         ?C0094?KB_PROCESS:
+  434: 
+  435: 	
+  436: 	if(kb_device_select(pEvt))		// select device or discovery
+001159 904ED1            MOV     DPTR,#pEvt
+00115C E0                MOVX    A,@DPTR
+00115D FB                MOV     R3,A
+00115E A3                INC     DPTR
+00115F E0                MOVX    A,@DPTR
+001160 FA                MOV     R2,A
+001161 A3                INC     DPTR
+001162 E0                MOVX    A,@DPTR
+001163 F9                MOV     R1,A
+001164 12336B            LCALL   _kb_device_select
+001167 EF                MOV     A,R7
+001168 6002              JZ      $ + 4H
+00116A 61E9              AJMP    ?C0098?KB_PROCESS
+00116C         ?C0097?KB_PROCESS:
+  437: 		return;
+  438: 	if (pEvt == NULL)
+00116C 904ED1            MOV     DPTR,#pEvt
+00116F E0                MOVX    A,@DPTR
+001170 A3                INC     DPTR
+001171 E0                MOVX    A,@DPTR
+001172 FA                MOV     R2,A
+001173 A3                INC     DPTR
+001174 E0                MOVX    A,@DPTR
+001175 4A                ORL     A,R2
+001176 7002              JNZ     $ + 4H
+001178 61E9              AJMP    ?C0098?KB_PROCESS
+00117A         ?C0099?KB_PROCESS:
+  439: 		return;
+  440: 
+  441: #ifdef PC_SLEEP_STATUS_GET
+  442: 	if(m_pc_sleep_flag)		// wake from pc sleep,get led status
+00117A 904D5A            MOV     DPTR,#m_pc_sleep_flag
+00117D E0                MOVX    A,@DPTR
+00117E 6008              JZ      ?C0100?KB_PROCESS
+  443: 	{
+  444: 		m_pc_sleep_flag = 0;
+001180 E4                CLR     A
+001181 F0                MOVX    @DPTR,A
+  445: 		m_24g_led_flag = KB_24G_LED_ACK_TYPE;	
+001182 904D23            MOV     DPTR,#m_24g_led_flag
+001185 7403              MOV     A,#03H
+001187 F0                MOVX    @DPTR,A
+  446: 	}
+001188         ?C0100?KB_PROCESS:
+  447: #endif
+  448: 	
+  449: 	if (g_variable.ble_currentState == CHANGE_TO_BLE_CONNECTED ||g_variable.br_currentState == CHANGE_TO_BR_CONNECTE
+>> D)
+001188 904CA6            MOV     DPTR,#g_variable+08H
+00118B E0                MOVX    A,@DPTR
+00118C 6404              XRL     A,#04H
+00118E 6007              JZ      ?C0102?KB_PROCESS
+001190 904CA8            MOV     DPTR,#g_variable+0AH
+001193 E0                MOVX    A,@DPTR
+001194 B40406            CJNE    A,#04H,?C0101?KB_PROCESS
+001197         ?C0102?KB_PROCESS:
+  450: 	{
+  451: 		kscurrmult = 0x3;
+001197 904213            MOV     DPTR,#kscurrmult
+00119A 7403              MOV     A,#03H
+00119C F0                MOVX    @DPTR,A
+  452: 	}
+00119D         ?C0101?KB_PROCESS:
+  453: 	delayChgInvTimer = 10;
+00119D 904DF6            MOV     DPTR,#delayChgInvTimer
+0011A0 740A              MOV     A,#0AH
+0011A2 F0                MOVX    @DPTR,A
+  454: 	g_variable.sleepTimer = 0;
+0011A3 E4                CLR     A
+0011A4 904CC2            MOV     DPTR,#g_variable+024H
+0011A7 F0                MOVX    @DPTR,A
+0011A8 A3                INC     DPTR
+0011A9 F0                MOVX    @DPTR,A
+  455: 	g_variable.g24_long_sleep_flag = 0;
+0011AA 904CF6            MOV     DPTR,#g_variable+058H
+0011AD F0                MOVX    @DPTR,A
+  456: 	
+  457: 	if(g_variable.backlight_level != BACKLIGHT_OFF)
+0011AE 904CE2            MOV     DPTR,#g_variable+044H
+0011B1 E0                MOVX    A,@DPTR
+0011B2 6012              JZ      ?C0103?KB_PROCESS
+  458: 	{
+  459: 		m_24g_enter_hibernate[0]	= 0x00;
+0011B4 E4                CLR     A
+0011B5 904D1D            MOV     DPTR,#m_24g_enter_hibernate
+0011B8 F0                MOVX    @DPTR,A
+  460: 		m_24g_enter_hibernate[1]	= 0x48;
+0011B9 A3                INC     DPTR
+0011BA 7448              MOV     A,#048H
+0011BC F0                MOVX    @DPTR,A
+  461: 		m_24g_enter_hibernate[2]	= 0x12;		// 100ms
+0011BD A3                INC     DPTR
+0011BE 7412              MOV     A,#012H
+0011C0 F0                MOVX    @DPTR,A
+  462: 		m_24g_enter_hibernate[3]	= 0x00;
+0011C1 E4                CLR     A
+0011C2 A3                INC     DPTR
+0011C3 F0                MOVX    @DPTR,A
+  463: 	}
+0011C4 8010              SJMP    ?C0104?KB_PROCESS
+0011C6         ?C0103?KB_PROCESS:
+  464: 	else
+  465: 	{
+  466: 		m_24g_enter_hibernate[0]	= 0x00;
+0011C6 E4                CLR     A
+0011C7 904D1D            MOV     DPTR,#m_24g_enter_hibernate
+0011CA F0                MOVX    @DPTR,A
+  467: 		m_24g_enter_hibernate[1]	= 0x48;
+0011CB A3                INC     DPTR
+0011CC 7448              MOV     A,#048H
+0011CE F0                MOVX    @DPTR,A
+  468: 		m_24g_enter_hibernate[2]   = 0x5d;		// 510ms
+0011CF A3                INC     DPTR
+0011D0 745D              MOV     A,#05DH
+0011D2 F0                MOVX    @DPTR,A
+  469: 		m_24g_enter_hibernate[3]	= 0x00;
+0011D3 E4                CLR     A
+0011D4 A3                INC     DPTR
+0011D5 F0                MOVX    @DPTR,A
+  470: 	}
+0011D6         ?C0104?KB_PROCESS:
+  471: 	xmemclear(hidBuff,9);
+0011D6 7B01              MOV     R3,#01H
+0011D8 7A48              MOV     R2,#HIGH hidBuff
+0011DA 7900              MOV     R1,#LOW hidBuff
+0011DC 7D09              MOV     R5,#09H
+0011DE 7C00              MOV     R4,#00H
+0011E0 91D8              ACALL   _xmemclear
+  472: 	xmemclear(multikey,9);
+0011E2 7B01              MOV     R3,#01H
+0011E4 7A4E              MOV     R2,#HIGH multikey
+0011E6 7958              MOV     R1,#LOW multikey
+0011E8 7D09              MOV     R5,#09H
+0011EA 7C00              MOV     R4,#00H
+0011EC 91D8              ACALL   _xmemclear
+  473: 
+  474: 	////////////////////////////2.4g pairing////////////////////////////////////
+  475: 	/*if ((pEvt->ksPool[0]  == HID_KEY_FN && pEvt->ksPool[1]  == HID_KEY_R) 
+  476: 		||(pEvt->ksPool[0]  == HID_KEY_R && pEvt->ksPool[1]  == HID_KEY_FN) 
+  477: 		)
+  478: 	{
+  479: 		if (g_variable.g24_currentState != CHANGE_TO_24G_PAIRING)
+  480: 		{
+  481: 			g_variable.button_flag |= KEY_FLAG_FN_24G_DEVICE_BUTTON;
+  482: 		}
+  483: 		else
+  484: 		{
+  485: 			g_variable.button_flag &= ~KEY_FLAG_FN_24G_DEVICE_BUTTON;
+  486: 		}
+  487: 	}
+  488: 	else
+  489: 	{
+  490: 		g_variable.button_flag &= ~KEY_FLAG_FN_24G_DEVICE_BUTTON;
+  491: 	}*/
+  492: 
+  493: 	m_power_on_flag = 1;
+0011EE 904C8F            MOV     DPTR,#m_power_on_flag
+0011F1 7401              MOV     A,#01H
+0011F3 F0                MOVX    @DPTR,A
+  494: 	if( (g_variable.key_combination_step == CAMBINATION_KEY_PRESS) ||
+0011F4 904CD3            MOV     DPTR,#g_variable+035H
+0011F7 E0                MOVX    A,@DPTR
+0011F8 FF                MOV     R7,A
+0011F9 6401              XRL     A,#01H
+0011FB 7002              JNZ     $ + 4H
+0011FD 61E9              AJMP    ?C0098?KB_PROCESS
+0011FF EF                MOV     A,R7
+001200 6404              XRL     A,#04H
+001202 7002              JNZ     $ + 4H
+001204 61E9              AJMP    ?C0098?KB_PROCESS
+001206 EF                MOV     A,R7
+001207 6402              XRL     A,#02H
+001209 7002              JNZ     $ + 4H
+00120B 61E9              AJMP    ?C0098?KB_PROCESS
+  495: 	    (g_variable.key_combination_step == CAMBINATION_KEY_WAIT_RELEASE) ||
+  496: 	    (g_variable.key_combination_step == CAMBINATION_KEY_HOLD))
+  497: 	{
+  498: 		return;
+  499: 	}
+00120D         ?C0105?KB_PROCESS:
+  500: 
+  501: 	// get 24g led status
+  502: 	if (g_variable.g24_currentState == CHANGE_TO_24G_CONNECTED)
+00120D 904CA4            MOV     DPTR,#g_variable+06H
+001210 E0                MOVX    A,@DPTR
+001211 6403              XRL     A,#03H
+001213 7045              JNZ     ?C0107?KB_PROCESS
+  503: 	{
+  504: 		for(i=0; i < KS_BUFF_POLL_LEN-1; i++)
+001215 904ED5            MOV     DPTR,#i
+001218 F0                MOVX    @DPTR,A
+001219         ?C0108?KB_PROCESS:
+001219 904ED5            MOV     DPTR,#i
+00121C E0                MOVX    A,@DPTR
+00121D FF                MOV     R7,A
+00121E C3                CLR     C
+00121F 9405              SUBB    A,#05H
+001221 5037              JNC     ?C0107?KB_PROCESS
+  505: 		{
+  506: 			if ((pEvt->ksPool[i] == HID_KEY_CAPS_LOCK) || (pEvt->ksPool[i] == HID_KEY_NUM_LOCK) 
+001223 904ED1            MOV     DPTR,#pEvt
+001226 E0                MOVX    A,@DPTR
+001227 FB                MOV     R3,A
+001228 A3                INC     DPTR
+001229 E0                MOVX    A,@DPTR
+00122A FA                MOV     R2,A
+00122B A3                INC     DPTR
+00122C E0                MOVX    A,@DPTR
+00122D 2401              ADD     A,#01H
+00122F F9                MOV     R1,A
+001230 E4                CLR     A
+001231 3A                ADDC    A,R2
+001232 FA                MOV     R2,A
+001233 7E00              MOV     R6,#00H
+001235 E9                MOV     A,R1
+001236 2F                ADD     A,R7
+001237 F9                MOV     R1,A
+001238 EE                MOV     A,R6
+001239 3A                ADDC    A,R2
+00123A FA                MOV     R2,A
+00123B 1203B6            LCALL   ?C?CLDPTR
+00123E FF                MOV     R7,A
+00123F 6439              XRL     A,#039H
+001241 6009              JZ      ?C0112?KB_PROCESS
+001243 EF                MOV     A,R7
+001244 6453              XRL     A,#053H
+001246 6004              JZ      ?C0112?KB_PROCESS
+001248 EF                MOV     A,R7
+001249 B44706            CJNE    A,#047H,?C0110?KB_PROCESS
+00124C         ?C0112?KB_PROCESS:
+  507: 			|| (pEvt->ksPool[i] == HID_KEY_SCROLL_LOCK))
+  508: 			{
+  509: 				m_24g_led_flag = KB_24G_LED_ACK_TYPE;
+00124C 904D23            MOV     DPTR,#m_24g_led_flag
+00124F 7403              MOV     A,#03H
+001251 F0                MOVX    @DPTR,A
+  510: 
+  511: 			}
+  512: 		}
+001252         ?C0110?KB_PROCESS:
+001252 904ED5            MOV     DPTR,#i
+001255 E0                MOVX    A,@DPTR
+001256 04                INC     A
+001257 F0                MOVX    @DPTR,A
+001258 80BF              SJMP    ?C0108?KB_PROCESS
+  513: 	}
+00125A         ?C0107?KB_PROCESS:
+  514: 
+  515: 	kb_multikey_setup(pEvt);
+00125A 904ED1            MOV     DPTR,#pEvt
+00125D E0                MOVX    A,@DPTR
+00125E FB                MOV     R3,A
+00125F A3                INC     DPTR
+001260 E0                MOVX    A,@DPTR
+001261 FA                MOV     R2,A
+001262 A3                INC     DPTR
+001263 E0                MOVX    A,@DPTR
+001264 F9                MOV     R1,A
+001265 122E2D            LCALL   _kb_multikey_setup
+  516: 	
+  517: 	if (mult_key_status == KEY_MULIT_PRESS) 
+001268 904E57            MOV     DPTR,#mult_key_status
+00126B E0                MOVX    A,@DPTR
+00126C B40111            CJNE    A,#01H,?C0113?KB_PROCESS
+  518: 	{
+  519: 		mult_key_status = KEY_WAIT_RELEASE;
+00126F 7402              MOV     A,#02H
+001271 F0                MOVX    @DPTR,A
+  520: 		multikey[0] = HID_REPORTID_MEDIA_KEY;
+001272 904E58            MOV     DPTR,#multikey
+001275 F0                MOVX    @DPTR,A
+  521: 		IPC_TxHidData(multikey, 3);
+001276 7B01              MOV     R3,#01H
+001278 7A4E              MOV     R2,#HIGH multikey
+00127A 7958              MOV     R1,#LOW multikey
+00127C 7D03              MOV     R5,#03H
+00127E 61EA              AJMP    _IPC_TxHidData
+  522: 	}
+001280         ?C0113?KB_PROCESS:
+  523: #ifdef SYSTEM_CONTROL_ENABLE	
+  524: 	else if (mult_key_status == KEY_SYSTEM_PRESS) 
+001280 904E57            MOV     DPTR,#mult_key_status
+001283 E0                MOVX    A,@DPTR
+001284 B40411            CJNE    A,#04H,?C0115?KB_PROCESS
+  525: 	{
+  526: 		mult_key_status = KEY_WAIT_RELEASE;
+001287 7402              MOV     A,#02H
+001289 F0                MOVX    @DPTR,A
+  527: 		multikey[0] = HID_REPORTID_SYSTEM_CTRL;
+00128A 904E58            MOV     DPTR,#multikey
+00128D 04                INC     A
+00128E F0                MOVX    @DPTR,A
+  528: 		IPC_TxHidData(multikey, 3);
+00128F 7B01              MOV     R3,#01H
+001291 7A4E              MOV     R2,#HIGH multikey
+001293 7958              MOV     R1,#LOW multikey
+001295 FD                MOV     R5,A
+001296 61EA              AJMP    _IPC_TxHidData
+  529: 	}
+001298         ?C0115?KB_PROCESS:
+  530: #endif	
+  531: 	else if((mult_key_status == KEY_RELEASE) || (mult_key_status == KEY_WAIT_RELEASE && (!keyCount)))
+001298 904E57            MOV     DPTR,#mult_key_status
+00129B E0                MOVX    A,@DPTR
+00129C 6403              XRL     A,#03H
+00129E 600B              JZ      ?C0118?KB_PROCESS
+0012A0 E0                MOVX    A,@DPTR
+0012A1 6402              XRL     A,#02H
+0012A3 702F              JNZ     ?C0117?KB_PROCESS
+0012A5 904DF4            MOV     DPTR,#keyCount
+0012A8 E0                MOVX    A,@DPTR
+0012A9 7029              JNZ     ?C0117?KB_PROCESS
+0012AB         ?C0118?KB_PROCESS:
+  532: 	{
+  533: 		mult_key_status = KEY_STANDBY;
+0012AB E4                CLR     A
+0012AC 904E57            MOV     DPTR,#mult_key_status
+0012AF F0                MOVX    @DPTR,A
+  534: 		mult_key_value = 0;
+0012B0 904DFC            MOV     DPTR,#mult_key_value
+0012B3 F0                MOVX    @DPTR,A
+  535: #ifdef SYSTEM_CONTROL_ENABLE		
+  536: 		if(system_key_press)
+0012B4 904DF8            MOV     DPTR,#system_key_press
+0012B7 E0                MOVX    A,@DPTR
+0012B8 600A              JZ      ?C0119?KB_PROCESS
+  537: 		{
+  538: 			system_key_press = 0;
+0012BA E4                CLR     A
+0012BB F0                MOVX    @DPTR,A
+  539: 			multikey[0] = HID_REPORTID_SYSTEM_CTRL;
+0012BC 904E58            MOV     DPTR,#multikey
+0012BF 7403              MOV     A,#03H
+0012C1 F0                MOVX    @DPTR,A
+  540: 		}
+0012C2 8006              SJMP    ?C0120?KB_PROCESS
+0012C4         ?C0119?KB_PROCESS:
+  541: 		else
+  542: #endif		
+  543: 			multikey[0] = HID_REPORTID_MEDIA_KEY;
+0012C4 904E58            MOV     DPTR,#multikey
+0012C7 7402              MOV     A,#02H
+0012C9 F0                MOVX    @DPTR,A
+0012CA         ?C0120?KB_PROCESS:
+  544: 		IPC_TxHidData(multikey, 3);
+0012CA 7B01              MOV     R3,#01H
+0012CC 7A4E              MOV     R2,#HIGH multikey
+0012CE 7958              MOV     R1,#LOW multikey
+0012D0 7D03              MOV     R5,#03H
+0012D2 61EA              AJMP    _IPC_TxHidData
+  545: 	}
+0012D4         ?C0117?KB_PROCESS:
+  546: 	else 
+  547: 	{
+  548: 		if(!keyCount)
+0012D4 904DF4            MOV     DPTR,#keyCount
+0012D7 E0                MOVX    A,@DPTR
+0012D8 7031              JNZ     ?C0122?KB_PROCESS
+  549: 		{
+  550: 			xmemclear(pEvt->ksPool,6);
+0012DA 904ED1            MOV     DPTR,#pEvt
+0012DD E0                MOVX    A,@DPTR
+0012DE FB                MOV     R3,A
+0012DF A3                INC     DPTR
+0012E0 E0                MOVX    A,@DPTR
+0012E1 FA                MOV     R2,A
+0012E2 A3                INC     DPTR
+0012E3 E0                MOVX    A,@DPTR
+0012E4 2401              ADD     A,#01H
+0012E6 F9                MOV     R1,A
+0012E7 E4                CLR     A
+0012E8 3A                ADDC    A,R2
+0012E9 FA                MOV     R2,A
+0012EA 7D06              MOV     R5,#06H
+0012EC 7C00              MOV     R4,#00H
+0012EE 91D8              ACALL   _xmemclear
+  551: 			xmemclear(bitkey,15);
+0012F0 7B01              MOV     R3,#01H
+0012F2 7A4D              MOV     R2,#HIGH bitkey
+0012F4 79D3              MOV     R1,#LOW bitkey
+0012F6 7D0F              MOV     R5,#0FH
+0012F8 7C00              MOV     R4,#00H
+0012FA 91D8              ACALL   _xmemclear
+  552: 			pEvt->standardSel = 0;
+0012FC 904ED1            MOV     DPTR,#pEvt
+0012FF E0                MOVX    A,@DPTR
+001300 FB                MOV     R3,A
+001301 A3                INC     DPTR
+001302 E0                MOVX    A,@DPTR
+001303 FA                MOV     R2,A
+001304 A3                INC     DPTR
+001305 E0                MOVX    A,@DPTR
+001306 F9                MOV     R1,A
+001307 E4                CLR     A
+001308 1203FC            LCALL   ?C?CSTPTR
+  553: 		}
+00130B         ?C0122?KB_PROCESS:
+  554: 	
+  555: 		hidBuff[0] = HID_REPORTID_KEY_STANDARD;		// standard key send
+00130B 904800            MOV     DPTR,#hidBuff
+00130E 7401              MOV     A,#01H
+001310 F0                MOVX    @DPTR,A
+  556: 		hidBuff[1] = pEvt->standardSel;
+001311 904ED1            MOV     DPTR,#pEvt
+001314 E0                MOVX    A,@DPTR
+001315 FB                MOV     R3,A
+001316 A3                INC     DPTR
+001317 E0                MOVX    A,@DPTR
+001318 FA                MOV     R2,A
+001319 A3                INC     DPTR
+00131A E0                MOVX    A,@DPTR
+00131B F9                MOV     R1,A
+00131C 1203B6            LCALL   ?C?CLDPTR
+00131F 904801            MOV     DPTR,#hidBuff+01H
+001322 F0                MOVX    @DPTR,A
+  557: 		if (g_variable.g24_currentState == CHANGE_TO_24G_CONNECTED)
+001323 904CA4            MOV     DPTR,#g_variable+06H
+001326 E0                MOVX    A,@DPTR
+001327 B4030A            CJNE    A,#03H,?C0123?KB_PROCESS
+  558: 			hidBuff[2] = m_24g_led_flag;
+00132A 904D23            MOV     DPTR,#m_24g_led_flag
+00132D E0                MOVX    A,@DPTR
+00132E 904802            MOV     DPTR,#hidBuff+02H
+001331 F0                MOVX    @DPTR,A
+001332 8005              SJMP    ?C0124?KB_PROCESS
+001334         ?C0123?KB_PROCESS:
+  559: 		else
+  560: 			hidBuff[2] = 0;
+001334 E4                CLR     A
+001335 904802            MOV     DPTR,#hidBuff+02H
+001338 F0                MOVX    @DPTR,A
+001339         ?C0124?KB_PROCESS:
+  561: 
+  562: 		standard_key_release_flag = 0;
+001339 E4                CLR     A
+00133A 904DEE            MOV     DPTR,#standard_key_release_flag
+00133D F0                MOVX    @DPTR,A
+  563: 		if(!fast_connect_flag)
+00133E 904E61            MOV     DPTR,#fast_connect_flag
+001341 E0                MOVX    A,@DPTR
+001342 706F              JNZ     ?C0125?KB_PROCESS
+  564: 		{
+  565: 			if (pEvt->ksPool[0] == HID_KEY_FN)
+001344 900001            MOV     DPTR,#01H
+001347 1203CF            LCALL   ?C?CLDOPTR
+00134A B47F15            CJNE    A,#07FH,?C0126?KB_PROCESS
+  566: 				xmemcpy(&hidBuff[3], &pEvt->ksPool[1], 5);
+00134D 7E48              MOV     R6,#HIGH hidBuff+03H
+00134F 7F03              MOV     R7,#LOW hidBuff+03H
+001351 E9                MOV     A,R1
+001352 2402              ADD     A,#02H
+001354 F9                MOV     R1,A
+001355 E4                CLR     A
+001356 3A                ADDC    A,R2
+001357 FA                MOV     R2,A
+001358 904ED0            MOV     DPTR,#?_xmemcpy?BYTE+05H
+00135B 7405              MOV     A,#05H
+00135D F0                MOVX    @DPTR,A
+00135E 11C8              ACALL   _xmemcpy
+001360 801C              SJMP    ?C0127?KB_PROCESS
+001362         ?C0126?KB_PROCESS:
+  567: 			else
+  568: 				xmemcpy(&hidBuff[3], pEvt->ksPool, 6);
+001362 7E48              MOV     R6,#HIGH hidBuff+03H
+001364 7F03              MOV     R7,#LOW hidBuff+03H
+001366 904ED1            MOV     DPTR,#pEvt
+001369 E0                MOVX    A,@DPTR
+00136A FB                MOV     R3,A
+00136B A3                INC     DPTR
+00136C E0                MOVX    A,@DPTR
+00136D FA                MOV     R2,A
+00136E A3                INC     DPTR
+00136F E0                MOVX    A,@DPTR
+001370 2401              ADD     A,#01H
+001372 F9                MOV     R1,A
+001373 E4                CLR     A
+001374 3A                ADDC    A,R2
+001375 FA                MOV     R2,A
+001376 904ED0            MOV     DPTR,#?_xmemcpy?BYTE+05H
+001379 7406              MOV     A,#06H
+00137B F0                MOVX    @DPTR,A
+00137C 11C8              ACALL   _xmemcpy
+00137E         ?C0127?KB_PROCESS:
+  569: 			
+  570: 			for(i = 3; i<9;i++)
+00137E 904ED5            MOV     DPTR,#i
+001381 7403              MOV     A,#03H
+001383 F0                MOVX    @DPTR,A
+001384         ?C0128?KB_PROCESS:
+001384 904ED5            MOV     DPTR,#i
+001387 E0                MOVX    A,@DPTR
+001388 FF                MOV     R7,A
+001389 C3                CLR     C
+00138A 9409              SUBB    A,#09H
+00138C 5041              JNC     ?C0132?KB_PROCESS
+  571: 			{
+  572: 				if (hidBuff[i] == HID_KEY_FN)
+00138E 7400              MOV     A,#LOW hidBuff
+001390 2F                ADD     A,R7
+001391 F582              MOV     DPL,A
+001393 E4                CLR     A
+001394 3448              ADDC    A,#HIGH hidBuff
+001396 F583              MOV     DPH,A
+001398 E0                MOVX    A,@DPTR
+001399 B47F0F            CJNE    A,#07FH,?C0130?KB_PROCESS
+  573: 					hidBuff[i] = 0;
+00139C 904ED5            MOV     DPTR,#i
+00139F E0                MOVX    A,@DPTR
+0013A0 2400              ADD     A,#LOW hidBuff
+0013A2 F582              MOV     DPL,A
+0013A4 E4                CLR     A
+0013A5 3448              ADDC    A,#HIGH hidBuff
+0013A7 F583              MOV     DPH,A
+0013A9 E4                CLR     A
+0013AA F0                MOVX    @DPTR,A
+  574: 			}
+0013AB         ?C0130?KB_PROCESS:
+0013AB 904ED5            MOV     DPTR,#i
+0013AE E0                MOVX    A,@DPTR
+0013AF 04                INC     A
+0013B0 F0                MOVX    @DPTR,A
+0013B1 80D1              SJMP    ?C0128?KB_PROCESS
+  575: 		}
+0013B3         ?C0125?KB_PROCESS:
+  576: 		else	
+  577: 			xmemcpy(&hidBuff[3], pEvt->ksPool, 6);
+0013B3 7E48              MOV     R6,#HIGH hidBuff+03H
+0013B5 7F03              MOV     R7,#LOW hidBuff+03H
+0013B7 904ED1            MOV     DPTR,#pEvt
+0013BA E0                MOVX    A,@DPTR
+0013BB FB                MOV     R3,A
+0013BC A3                INC     DPTR
+0013BD E0                MOVX    A,@DPTR
+0013BE FA                MOV     R2,A
+0013BF A3                INC     DPTR
+0013C0 E0                MOVX    A,@DPTR
+0013C1 2401              ADD     A,#01H
+0013C3 F9                MOV     R1,A
+0013C4 E4                CLR     A
+0013C5 3A                ADDC    A,R2
+0013C6 FA                MOV     R2,A
+0013C7 904ED0            MOV     DPTR,#?_xmemcpy?BYTE+05H
+0013CA 7406              MOV     A,#06H
+0013CC F0                MOVX    @DPTR,A
+0013CD 11C8              ACALL   _xmemcpy
+0013CF         ?C0132?KB_PROCESS:
+  578: 		IPC_TxHidData(hidBuff, 9);
+0013CF 7B01              MOV     R3,#01H
+0013D1 7A48              MOV     R2,#HIGH hidBuff
+0013D3 7900              MOV     R1,#LOW hidBuff
+0013D5 7D09              MOV     R5,#09H
+0013D7 71EA              ACALL   _IPC_TxHidData
+  579: 		bitkey[0] = HID_REPORTID_GAME;
+0013D9 904DD3            MOV     DPTR,#bitkey
+0013DC 7408              MOV     A,#08H
+0013DE F0                MOVX    @DPTR,A
+  580: 		IPC_TxHidData(bitkey, 15);
+0013DF 7B01              MOV     R3,#01H
+0013E1 7A4D              MOV     R2,#HIGH bitkey
+0013E3 79D3              MOV     R1,#LOW bitkey
+0013E5 7D0F              MOV     R5,#0FH
+0013E7 71EA              ACALL   _IPC_TxHidData
+  581: 	}
+  582: 	return;
+  583: }
+0013E9         ?C0098?KB_PROCESS:
+0013E9 22                RET     
+----- FUNCTION _kb_motion_keyscan (END) -------
+
+
+----- FUNCTION _IPC_TxHidData (BEGIN) -----
+ FILE: 'kb_process.c'
+  124: void IPC_TxHidData(byte* dt, byte len)
+  125: {
+0013EA 904E86            MOV     DPTR,#dt
+0013ED EB                MOV     A,R3
+0013EE F0                MOVX    @DPTR,A
+0013EF A3                INC     DPTR
+0013F0 EA                MOV     A,R2
+0013F1 F0                MOVX    @DPTR,A
+0013F2 A3                INC     DPTR
+0013F3 E9                MOV     A,R1
+0013F4 F0                MOVX    @DPTR,A
+0013F5 A3                INC     DPTR
+0013F6 ED                MOV     A,R5
+0013F7 F0                MOVX    @DPTR,A
+  126: 	xbyte tx_hid_buff[10];
+  127: 	byte i=0;
+;---- Variable 'i' assigned to Register 'R7' ----
+0013F8 E4                CLR     A
+0013F9 FF                MOV     R7,A
+  128: 
+  129: 	for(i==0; i< len; i++)
+0013FA         ?C0027?KB_PROCESS:
+0013FA 904E89            MOV     DPTR,#len
+0013FD E0                MOVX    A,@DPTR
+0013FE FE                MOV     R6,A
+0013FF EF                MOV     A,R7
+001400 C3                CLR     C
+001401 9E                SUBB    A,R6
+001402 5023              JNC     ?C0028?KB_PROCESS
+  130: 	{
+  131: 		tx_hid_buff[i] = dt[i];
+001404 904E86            MOV     DPTR,#dt
+001407 E0                MOVX    A,@DPTR
+001408 FB                MOV     R3,A
+001409 A3                INC     DPTR
+00140A E0                MOVX    A,@DPTR
+00140B FA                MOV     R2,A
+00140C A3                INC     DPTR
+00140D E0                MOVX    A,@DPTR
+00140E F9                MOV     R1,A
+00140F 8F82              MOV     DPL,R7
+001411 758300            MOV     DPH,#00H
+001414 1203CF            LCALL   ?C?CLDOPTR
+001417 FE                MOV     R6,A
+001418 748A              MOV     A,#LOW tx_hid_buff
+00141A 2F                ADD     A,R7
+00141B F582              MOV     DPL,A
+00141D E4                CLR     A
+00141E 344E              ADDC    A,#HIGH tx_hid_buff
+001420 F583              MOV     DPH,A
+001422 EE                MOV     A,R6
+001423 F0                MOVX    @DPTR,A
+  132: 	}
+001424 0F                INC     R7
+001425 80D3              SJMP    ?C0027?KB_PROCESS
+001427         ?C0028?KB_PROCESS:
+  133: 	
+  134: 	if(!YC_check_need_reconnected()) 
+001427 12182A            LCALL   YC_check_need_reconnected
+00142A EF                MOV     A,R7
+00142B 7002              JNZ     $ + 4H
+00142D 81D7              AJMP    ?C0031?KB_PROCESS
+00142F         ?C0030?KB_PROCESS:
+  135: 		return;
+  136: 	if (g_variable.release_data)
+00142F 904CCA            MOV     DPTR,#g_variable+02CH
+001432 E0                MOVX    A,@DPTR
+001433 6002              JZ      $ + 4H
+001435 81D7              AJMP    ?C0031?KB_PROCESS
+001437         ?C0032?KB_PROCESS:
+  137: 		return;
+  138: 
+  139: 	if (g_variable.br_currentState == CHANGE_TO_BR_CONNECTED)
+001437 904CA8            MOV     DPTR,#g_variable+0AH
+00143A E0                MOVX    A,@DPTR
+00143B B4040E            CJNE    A,#04H,?C0033?KB_PROCESS
+  140: 	{	
+  141: 		IPC_TxBREDRHidData(tx_hid_buff,len);
+00143E 7B01              MOV     R3,#01H
+001440 7A4E              MOV     R2,#HIGH tx_hid_buff
+001442 798A              MOV     R1,#LOW tx_hid_buff
+001444 904E89            MOV     DPTR,#len
+001447 E0                MOVX    A,@DPTR
+001448 FD                MOV     R5,A
+001449 123DF1            LCALL   _IPC_TxBREDRHidData
+  142: 	}
+00144C         ?C0033?KB_PROCESS:
+  143: 	if ((g_variable.ble_currentState == CHANGE_TO_BLE_CONNECTED) ||
+00144C 904CA6            MOV     DPTR,#g_variable+08H
+00144F E0                MOVX    A,@DPTR
+001450 FF                MOV     R7,A
+001451 6404              XRL     A,#04H
+001453 600A              JZ      ?C0035?KB_PROCESS
+001455 EF                MOV     A,R7
+001456 B40314            CJNE    A,#03H,?C0034?KB_PROCESS
+001459 904DE2            MOV     DPTR,#ble_fast_connect_flag
+00145C E0                MOVX    A,@DPTR
+00145D 600E              JZ      ?C0034?KB_PROCESS
+00145F         ?C0035?KB_PROCESS:
+  144: 	((g_variable.ble_currentState == CHANGE_TO_BLE_CONNECTING) && ble_fast_connect_flag))
+  145: 	{
+  146: 		IPC_TxBleData(tx_hid_buff,len);
+00145F 7B01              MOV     R3,#01H
+001461 7A4E              MOV     R2,#HIGH tx_hid_buff
+001463 798A              MOV     R1,#LOW tx_hid_buff
+001465 904E89            MOV     DPTR,#len
+001468 E0                MOVX    A,@DPTR
+001469 FD                MOV     R5,A
+00146A 123E07            LCALL   _IPC_TxBleData
+  147: 
+  148: 	}
+00146D         ?C0034?KB_PROCESS:
+  149: 	if (g_variable.g24_currentState == CHANGE_TO_24G_CONNECTED)
+00146D 904CA4            MOV     DPTR,#g_variable+06H
+001470 E0                MOVX    A,@DPTR
+001471 6403              XRL     A,#03H
+001473 7062              JNZ     ?C0031?KB_PROCESS
+  150: 	{
+  151: 		if(tx_hid_buff[0] == HID_REPORTID_KEY_STANDARD)
+001475 904E8A            MOV     DPTR,#tx_hid_buff
+001478 E0                MOVX    A,@DPTR
+001479 6401              XRL     A,#01H
+00147B 7023              JNZ     ?C0037?KB_PROCESS
+  152: 		{
+  153: 			tx_hid_buff[0] = 4;
+00147D 7404              MOV     A,#04H
+00147F F0                MOVX    @DPTR,A
+  154: 			if (tx_hid_buff[1] == 0 && tx_hid_buff[3] == 00 && tx_hid_buff[4] == 00 && tx_hid_buff[5] == 0)
+001480 A3                INC     DPTR
+001481 E0                MOVX    A,@DPTR
+001482 7014              JNZ     ?C0038?KB_PROCESS
+001484 904E8D            MOV     DPTR,#tx_hid_buff+03H
+001487 E0                MOVX    A,@DPTR
+001488 700E              JNZ     ?C0038?KB_PROCESS
+00148A A3                INC     DPTR
+00148B E0                MOVX    A,@DPTR
+00148C 700A              JNZ     ?C0038?KB_PROCESS
+00148E A3                INC     DPTR
+00148F E0                MOVX    A,@DPTR
+001490 7006              JNZ     ?C0038?KB_PROCESS
+  155: 				repeat_send_24g = 0;
+001492 904DEC            MOV     DPTR,#repeat_send_24g
+001495 F0                MOVX    @DPTR,A
+001496 8032              SJMP    ?C0040?KB_PROCESS
+001498         ?C0038?KB_PROCESS:
+  156: 			else
+  157: 				repeat_send_24g = 1;			
+001498 904DEC            MOV     DPTR,#repeat_send_24g
+00149B 7401              MOV     A,#01H
+00149D F0                MOVX    @DPTR,A
+  158: 		}
+00149E 802A              SJMP    ?C0040?KB_PROCESS
+0014A0         ?C0037?KB_PROCESS:
+  159: 		else if(tx_hid_buff[0] == HID_REPORTID_MEDIA_KEY)
+0014A0 904E8A            MOV     DPTR,#tx_hid_buff
+0014A3 E0                MOVX    A,@DPTR
+0014A4 B40219            CJNE    A,#02H,?C0041?KB_PROCESS
+  160: 		{
+  161: 			tx_hid_buff[0] = 5;
+0014A7 7405              MOV     A,#05H
+0014A9 F0                MOVX    @DPTR,A
+  162: 			if (tx_hid_buff[1] == 00 && tx_hid_buff[2] == 00)
+0014AA A3                INC     DPTR
+0014AB E0                MOVX    A,@DPTR
+0014AC 700A              JNZ     ?C0042?KB_PROCESS
+0014AE A3                INC     DPTR
+0014AF E0                MOVX    A,@DPTR
+0014B0 7006              JNZ     ?C0042?KB_PROCESS
+  163: 			{
+  164: 				repeat_send_24g = 0;
+0014B2 904DEC            MOV     DPTR,#repeat_send_24g
+0014B5 F0                MOVX    @DPTR,A
+  165: 			}
+0014B6 8012              SJMP    ?C0040?KB_PROCESS
+0014B8         ?C0042?KB_PROCESS:
+  166: 			else
+  167: 			{
+  168: 				repeat_send_24g = 1;
+0014B8 904DEC            MOV     DPTR,#repeat_send_24g
+0014BB 7401              MOV     A,#01H
+0014BD F0                MOVX    @DPTR,A
+  169: 			}
+  170: 		}
+0014BE 800A              SJMP    ?C0040?KB_PROCESS
+0014C0         ?C0041?KB_PROCESS:
+  171: 		else if(tx_hid_buff[0] == HID_REPORTID_SYSTEM_CTRL)
+0014C0 904E8A            MOV     DPTR,#tx_hid_buff
+0014C3 E0                MOVX    A,@DPTR
+0014C4 B40303            CJNE    A,#03H,?C0040?KB_PROCESS
+  172: 		{
+  173: 			tx_hid_buff[0] = 7;
+0014C7 7407              MOV     A,#07H
+0014C9 F0                MOVX    @DPTR,A
+  174: 		}
+0014CA         ?C0040?KB_PROCESS:
+  175: 		IPC_Tx24GData(tx_hid_buff,len);
+0014CA 7B01              MOV     R3,#01H
+0014CC 7A4E              MOV     R2,#HIGH tx_hid_buff
+0014CE 798A              MOV     R1,#LOW tx_hid_buff
+0014D0 904E89            MOV     DPTR,#len
+0014D3 E0                MOVX    A,@DPTR
+0014D4 FD                MOV     R5,A
+0014D5 F1E1              ACALL   _IPC_Tx24GData
+  176: 	}
+  177: }
+0014D7         ?C0031?KB_PROCESS:
+0014D7 22                RET     
+----- FUNCTION _IPC_TxHidData (END) -------
+
+
+----- FUNCTION _xmemclear (BEGIN) -----
+ FILE: 'utilities.c'
+   23: void xmemclear(byte * dest, word len)
+   24: {
+0014D8 904F0A            MOV     DPTR,#dest
+0014DB EB                MOV     A,R3
+0014DC F0                MOVX    @DPTR,A
+0014DD A3                INC     DPTR
+0014DE EA                MOV     A,R2
+0014DF F0                MOVX    @DPTR,A
+0014E0 A3                INC     DPTR
+0014E1 E9                MOV     A,R1
+0014E2 F0                MOVX    @DPTR,A
+;---- Variable 'len' assigned to Register 'R4/R5' ----
+   25: 	while (len--)
+0014E3         ?C0008?UTILITIES:
+   26: 		*dest++ = 0x00;
+0014E3 ED                MOV     A,R5
+0014E4 1D                DEC     R5
+0014E5 AE04              MOV     R6,AR4
+0014E7 7001              JNZ     ?C0026?UTILITIES
+0014E9 1C                DEC     R4
+0014EA         ?C0026?UTILITIES:
+0014EA 4E                ORL     A,R6
+0014EB 6016              JZ      ?C0010?UTILITIES
+   27: 	return;
+0014ED 904F0A            MOV     DPTR,#dest
+0014F0 E0                MOVX    A,@DPTR
+0014F1 FB                MOV     R3,A
+0014F2 A3                INC     DPTR
+0014F3 E4                CLR     A
+0014F4 75F001            MOV     B,#01H
+0014F7 120479            LCALL   ?C?ILDIX
+0014FA A9F0              MOV     R1,B
+0014FC FA                MOV     R2,A
+0014FD E4                CLR     A
+0014FE 1203FC            LCALL   ?C?CSTPTR
+001501 80E0              SJMP    ?C0008?UTILITIES
+   28: }
+001503         ?C0010?UTILITIES:
+001503 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);
+001504 7B01              MOV     R3,#01H
+001506 7A4C              MOV     R2,#HIGH g_variable
+001508 799E              MOV     R1,#LOW g_variable
+00150A 7D5F              MOV     R5,#05FH
+00150C 7C00              MOV     R4,#00H
+00150E 91D8              ACALL   _xmemclear
+   15: 	xmemclear(ksSelMapCheck,KB_KSCAN_COL_NUM);
+001510 7B01              MOV     R3,#01H
+001512 7A4D              MOV     R2,#HIGH ksSelMapOld
+001514 7993              MOV     R1,#LOW ksSelMapOld
+001516 7D14              MOV     R5,#014H
+001518 7C00              MOV     R4,#00H
+00151A 91D8              ACALL   _xmemclear
+   16: 	xmemclear(ksSelMapCurr,KB_KSCAN_COL_NUM);
+00151C 7B01              MOV     R3,#01H
+00151E 7A4D              MOV     R2,#HIGH ksSelMapCheck
+001520 79A8              MOV     R1,#LOW ksSelMapCheck
+001522 7D14              MOV     R5,#014H
+001524 7C00              MOV     R4,#00H
+001526 91D8              ACALL   _xmemclear
+   17: 	xmemclear(hidBuff,9);
+001528 7B01              MOV     R3,#01H
+00152A 7A4D              MOV     R2,#HIGH ksSelMapCurr
+00152C 79BC              MOV     R1,#LOW ksSelMapCurr
+00152E 7D14              MOV     R5,#014H
+001530 7C00              MOV     R4,#00H
+001532 91D8              ACALL   _xmemclear
+   18: 	xmemclear(multikey,9);
+001534 7B01              MOV     R3,#01H
+001536 7A48              MOV     R2,#HIGH hidBuff
+001538 7900              MOV     R1,#LOW hidBuff
+00153A 7D09              MOV     R5,#09H
+00153C 7C00              MOV     R4,#00H
+00153E 91D8              ACALL   _xmemclear
+   19:  
+001540 7B01              MOV     R3,#01H
+001542 7A4E              MOV     R2,#HIGH multikey
+001544 7958              MOV     R1,#LOW multikey
+001546 7D09              MOV     R5,#09H
+001548 7C00              MOV     R4,#00H
+00154A 91D8              ACALL   _xmemclear
+   20: 	delayChgInvTimer = 0;
+00154C E4                CLR     A
+00154D 904DF6            MOV     DPTR,#delayChgInvTimer
+001550 F0                MOVX    @DPTR,A
+   21: 	action_timeout = 0;
+001551 904DFB            MOV     DPTR,#action_timeout
+001554 F0                MOVX    @DPTR,A
+   22: 	switch_role_timer = 0;
+001555 904DE8            MOV     DPTR,#switch_role_timer
+001558 F0                MOVX    @DPTR,A
+   23: 
+   24: 	iOS_rec_pinCode = 0;
+001559 904DF0            MOV     DPTR,#iOS_rec_pinCode
+00155C F0                MOVX    @DPTR,A
+   25: 	pinCode_flag = 0;
+00155D 904DED            MOV     DPTR,#pinCode_flag
+001560 F0                MOVX    @DPTR,A
+   26: 	power_on_flag = 0;
+001561 904DFA            MOV     DPTR,#power_on_flag
+001564 F0                MOVX    @DPTR,A
+   27: 	repeat_send_24g = 0;
+001565 904DEC            MOV     DPTR,#repeat_send_24g
+001568 F0                MOVX    @DPTR,A
+   28: 	get_24g_led_send = 0;
+001569 904DE4            MOV     DPTR,#get_24g_led_send
+00156C F0                MOVX    @DPTR,A
+   29: 	ble_reconnect_flag = 0;
+00156D 904DF5            MOV     DPTR,#ble_reconnect_flag
+001570 F0                MOVX    @DPTR,A
+   30: 	press_long_time_flag = 0;
+001571 904DF2            MOV     DPTR,#press_long_time_flag
+001574 F0                MOVX    @DPTR,A
+   31: 	mult_key_status = 0;
+001575 904E57            MOV     DPTR,#mult_key_status
+001578 F0                MOVX    @DPTR,A
+   32: 	long_press_flag = 0;
+001579 904DEB            MOV     DPTR,#long_press_flag
+00157C F0                MOVX    @DPTR,A
+   33: 	standard_key_release_flag = 0;
+00157D 904DEE            MOV     DPTR,#standard_key_release_flag
+001580 F0                MOVX    @DPTR,A
+   34: 	fn_flag = 0;
+001581 904DF1            MOV     DPTR,#fn_flag
+001584 F0                MOVX    @DPTR,A
+   35: 	fn_flag_last = 0;
+001585 904DF9            MOV     DPTR,#fn_flag_last
+001588 F0                MOVX    @DPTR,A
+   36: 	fn_tx_flag = 0;
+001589 904DE7            MOV     DPTR,#fn_tx_flag
+00158C F0                MOVX    @DPTR,A
+   37: 
+   38: 	mult_key_value = 0;
+00158D 904DFC            MOV     DPTR,#mult_key_value
+001590 F0                MOVX    @DPTR,A
+   39: 	m_caps_num_lock = 0xf0;
+001591 904C90            MOV     DPTR,#m_caps_num_lock
+001594 74F0              MOV     A,#0F0H
+001596 F0                MOVX    @DPTR,A
+   40: 	m_caps_num_lock_last = 0xf0; 
+001597 904DEF            MOV     DPTR,#m_caps_num_lock_last
+00159A F0                MOVX    @DPTR,A
+   41: 	m_reconnect_continue = 0;
+00159B E4                CLR     A
+00159C 904D17            MOV     DPTR,#m_reconnect_continue
+00159F F0                MOVX    @DPTR,A
+   42: 	ble_send_secutiry_request_timer = 0;
+0015A0 904DE3            MOV     DPTR,#ble_send_secutiry_request_timer
+0015A3 F0                MOVX    @DPTR,A
+   43: }
+0015A4 22                RET     
+----- FUNCTION System_clear_mem (END) -------
+
+
+----- FUNCTION _kb_send_combination_key (BEGIN) -----
+ FILE: 'kb_process.c'
+  204: void kb_send_combination_key(byte ctrl_value,byte key_value)
+  205: {
+0015A5 904F12            MOV     DPTR,#ctrl_value
+0015A8 EF                MOV     A,R7
+0015A9 F0                MOVX    @DPTR,A
+0015AA A3                INC     DPTR
+0015AB ED                MOV     A,R5
+0015AC F0                MOVX    @DPTR,A
+  206: 	xmemclear(hidBuff,9);
+  207: 	hidBuff[0] = HID_REPORTID_KEY_STANDARD;
+0015AD 7B01              MOV     R3,#01H
+0015AF 7A48              MOV     R2,#HIGH hidBuff
+0015B1 7900              MOV     R1,#LOW hidBuff
+0015B3 7D09              MOV     R5,#09H
+0015B5 7C00              MOV     R4,#00H
+0015B7 91D8              ACALL   _xmemclear
+  208: 	hidBuff[1] |= ctrl_value;
+0015B9 904800            MOV     DPTR,#hidBuff
+0015BC 7401              MOV     A,#01H
+0015BE F0                MOVX    @DPTR,A
+  209: 	hidBuff[3] = key_value; 
+0015BF A3                INC     DPTR
+0015C0 E0                MOVX    A,@DPTR
+0015C1 FF                MOV     R7,A
+0015C2 904F12            MOV     DPTR,#ctrl_value
+0015C5 E0                MOVX    A,@DPTR
+0015C6 FE                MOV     R6,A
+0015C7 EF                MOV     A,R7
+0015C8 4E                ORL     A,R6
+0015C9 904801            MOV     DPTR,#hidBuff+01H
+0015CC F0                MOVX    @DPTR,A
+  210: 	IPC_TxHidData(hidBuff, 9);
+0015CD 904F13            MOV     DPTR,#key_value
+0015D0 E0                MOVX    A,@DPTR
+0015D1 904803            MOV     DPTR,#hidBuff+03H
+0015D4 F0                MOVX    @DPTR,A
+  211: }
+0015D5 7B01              MOV     R3,#01H
+0015D7 7A48              MOV     R2,#HIGH hidBuff
+0015D9 7900              MOV     R1,#LOW hidBuff
+0015DB 7D09              MOV     R5,#09H
+0015DD 61EA              AJMP    _IPC_TxHidData
+----- FUNCTION _kb_send_combination_key (END) -------
+
+
+----- FUNCTION kb_need_keyscan (BEGIN) -----
+ FILE: 'kb_process.c'
+  343: void kb_need_keyscan()
+  344: {
+  345: 	 if (g_variable.ble_currentSubState == CHANGE_TO_BLE_SUB_PINCODE 
+  346: 		|| g_variable.br_currentSubState == CHANGE_TO_BR_SUB_PINCODE)
+0015DF 904CA7            MOV     DPTR,#g_variable+09H
+0015E2 E0                MOVX    A,@DPTR
+0015E3 6402              XRL     A,#02H
+0015E5 6007              JZ      ?C0078?KB_PROCESS
+0015E7 904CA9            MOV     DPTR,#g_variable+0BH
+0015EA E0                MOVX    A,@DPTR
+0015EB B40203            CJNE    A,#02H,?C0077?KB_PROCESS
+0015EE         ?C0078?KB_PROCESS:
+  347: 	{
+  348: 		kb_bt_pincode_enter();
+0015EE 0230F8            LJMP    kb_bt_pincode_enter
+  349: 	}
+0015F1         ?C0077?KB_PROCESS:
+  350: 	else
+  351: 	{
+  352: 		/*
+  353: 		  if ((GPIO_GetInputStatus(INT_GPIO) == 0) )//&& (tperr == 0))
+  354: 		  {
+  355: 			g_variable.mouse_data_send_flag = 0;
+  356: 			g_variable.delay_enter_lpm_timer = 10;
+  357: 		  	
+  358: 		 	if (g_variable.ble_currentState == CHANGE_TO_BLE_CONNECTED)
+  359: 		 	{
+  360: 				if(m_customize_timer != g_variable.send_timer)
+  361: 				{
+  362: 					g_variable.send_timer = m_customize_timer;
+  363: 				}
+  364: 				else 
+  365: 					return;
+  366: 			}
+  367: 			Touch_data_get();
+  368: 			kb_set_mouse_data();
+  369: 		}
+  370: 		else
+  371: 		*/
+  372: 		{
+  373: 		//	g_variable.sensor_x_l = 0;
+  374: 		//	g_variable.sensor_x_h = 0;
+  375: 		//	g_variable.sensor_y_l = 0;
+  376: 		//	g_variable.sensor_y_h = 0;
+  377: 		//	g_variable.sensor_wheel = 0;
+  378: 		//	g_variable.sensor_titl = 0;
+  379: 			
+  380: 		if((g_variable.key_combination_step == CAMBINATION_KEY_FREE)
+0015F1 904CD3            MOV     DPTR,#g_variable+035H
+0015F4 E0                MOVX    A,@DPTR
+0015F5 FF                MOV     R7,A
+0015F6 6008              JZ      ?C0081?KB_PROCESS
+0015F8 6403              XRL     A,#03H
+0015FA 6004              JZ      ?C0081?KB_PROCESS
+0015FC EF                MOV     A,R7
+0015FD B40502            CJNE    A,#05H,?C0080?KB_PROCESS
+001600         ?C0081?KB_PROCESS:
+  381: 		||(g_variable.key_combination_step == CAMBINATION_KEY_COMPLETE)
+  382: 		|| (g_variable.key_combination_step == CAMBINATION_KEY_RELEASE)
+  383: 		)
+  384: 			kb_motion();
+001600 8072              SJMP    kb_motion
+001602         ?C0080?KB_PROCESS:
+  385: 		else
+  386: 		{
+  387: 			if(g_variable.key_combination_step == CAMBINATION_KEY_PRESS)
+001602 904CD3            MOV     DPTR,#g_variable+035H
+001605 E0                MOVX    A,@DPTR
+001606 B4010E            CJNE    A,#01H,?C0083?KB_PROCESS
+  388: 			{
+  389: 				kb_send_combination_key(g_variable.key_combination_ctrl,0);
+001609 A3                INC     DPTR
+00160A E0                MOVX    A,@DPTR
+00160B FF                MOV     R7,A
+00160C E4                CLR     A
+00160D FD                MOV     R5,A
+00160E B1A5              ACALL   _kb_send_combination_key
+  390: 				g_variable.key_combination_step = CAMBINATION_KEY_HOLD;
+001610 904CD3            MOV     DPTR,#g_variable+035H
+001613 7402              MOV     A,#02H
+001615 F0                MOVX    @DPTR,A
+  391: 			}
+001616 22                RET     
+001617         ?C0083?KB_PROCESS:
+  392: 			else if(g_variable.key_combination_step == CAMBINATION_KEY_HOLD)
+001617 904CD3            MOV     DPTR,#g_variable+035H
+00161A E0                MOVX    A,@DPTR
+00161B B4020B            CJNE    A,#02H,?C0085?KB_PROCESS
+  393: 			{	
+  394: 				g_variable.key_combination_step = CAMBINATION_KEY_COMPLETE;
+00161E 7403              MOV     A,#03H
+001620 F0                MOVX    @DPTR,A
+  395: 				kb_send_combination_key(g_variable.key_combination_ctrl,g_variable.key_combination_keyvalue);
+001621 A3                INC     DPTR
+001622 E0                MOVX    A,@DPTR
+001623 FF                MOV     R7,A
+001624 A3                INC     DPTR
+001625 E0                MOVX    A,@DPTR
+001626 FD                MOV     R5,A
+001627 A1A5              AJMP    _kb_send_combination_key
+  396: 			}
+001629         ?C0085?KB_PROCESS:
+  397: 			else if(g_variable.key_combination_step == CAMBINATION_KEY_WAIT_RELEASE)
+001629 904CD3            MOV     DPTR,#g_variable+035H
+00162C E0                MOVX    A,@DPTR
+00162D B40427            CJNE    A,#04H,?C0087?KB_PROCESS
+  398: 			{
+  399: 				g_variable.key_combination_keyvalue = 0;
+001630 E4                CLR     A
+001631 904CD5            MOV     DPTR,#g_variable+037H
+001634 F0                MOVX    @DPTR,A
+  400: 				kb_send_combination_key(g_variable.key_combination_ctrl,g_variable.key_combination_keyvalue);
+001635 904CD4            MOV     DPTR,#g_variable+036H
+001638 E0                MOVX    A,@DPTR
+001639 FF                MOV     R7,A
+00163A E4                CLR     A
+00163B FD                MOV     R5,A
+00163C B1A5              ACALL   _kb_send_combination_key
+  401: 				g_variable.key_combination_ctrl = 0;
+00163E E4                CLR     A
+00163F 904CD4            MOV     DPTR,#g_variable+036H
+001642 F0                MOVX    @DPTR,A
+  402: 				if(!g_variable.one_key_press_wait_release_timer)
+001643 904CD7            MOV     DPTR,#g_variable+039H
+001646 E0                MOVX    A,@DPTR
+001647 7007              JNZ     ?C0088?KB_PROCESS
+  403: 					g_variable.key_combination_step = CAMBINATION_KEY_NULL;
+001649 904CD3            MOV     DPTR,#g_variable+035H
+00164C 7406              MOV     A,#06H
+00164E F0                MOVX    @DPTR,A
+00164F 22                RET     
+001650         ?C0088?KB_PROCESS:
+  404: 				else
+  405: 					g_variable.key_combination_step = CAMBINATION_KEY_RELEASE;
+001650 904CD3            MOV     DPTR,#g_variable+035H
+001653 7405              MOV     A,#05H
+001655 F0                MOVX    @DPTR,A
+  406: 			}
+001656 22                RET     
+001657         ?C0087?KB_PROCESS:
+  407: 			else if(g_variable.key_combination_step == CAMBINATION_KEY_NULL)
+001657 904CD3            MOV     DPTR,#g_variable+035H
+00165A E0                MOVX    A,@DPTR
+00165B B40615            CJNE    A,#06H,?C0092?KB_PROCESS
+  408: 			{
+  409: 				g_variable.key_combination_keyvalue = 0;
+00165E E4                CLR     A
+00165F 904CD5            MOV     DPTR,#g_variable+037H
+001662 F0                MOVX    @DPTR,A
+  410: 				g_variable.key_combination_ctrl = 0;
+001663 904CD4            MOV     DPTR,#g_variable+036H
+001666 F0                MOVX    @DPTR,A
+  411: 				kb_send_combination_key(g_variable.key_combination_ctrl,g_variable.key_combination_keyvalue);
+001667 A3                INC     DPTR
+001668 E0                MOVX    A,@DPTR
+001669 FD                MOV     R5,A
+00166A E4                CLR     A
+00166B FF                MOV     R7,A
+00166C B1A5              ACALL   _kb_send_combination_key
+  412: 				g_variable.key_combination_step = CAMBINATION_KEY_FREE;
+00166E E4                CLR     A
+00166F 904CD3            MOV     DPTR,#g_variable+035H
+001672 F0                MOVX    @DPTR,A
+  413: 			}
+  414: 		}
+  415: 		}
+  416: 	}
+  417: }
+001673         ?C0092?KB_PROCESS:
+001673 22                RET     
+----- FUNCTION kb_need_keyscan (END) -------
+
+
+----- FUNCTION kb_motion (BEGIN) -----
+ FILE: 'kb_process.c'
+  324: static void kb_motion()
+  325: {
+  326: 	tKSEVENT *pEvt = NULL;
+  327: 	
+001674 904EF8            MOV     DPTR,#pEvt
+001677 E4                CLR     A
+001678 F0                MOVX    @DPTR,A
+001679 A3                INC     DPTR
+00167A F0                MOVX    @DPTR,A
+00167B A3                INC     DPTR
+00167C F0                MOVX    @DPTR,A
+  328: 	if (!IPC_IsTxBuffEmpty())
+00167D 123E16            LCALL   IPC_IsTxBuffEmpty
+001680 5025              JNC     ?C0075?KB_PROCESS
+001682         ?C0074?KB_PROCESS:
+  329: 		return;
+  330: 	pEvt = KS_GetCurrentEvt();
+001682 122890            LCALL   KS_GetCurrentEvt
+001685 904EF8            MOV     DPTR,#pEvt
+001688 EB                MOV     A,R3
+001689 F0                MOVX    @DPTR,A
+00168A A3                INC     DPTR
+00168B EA                MOV     A,R2
+00168C F0                MOVX    @DPTR,A
+00168D A3                INC     DPTR
+00168E E9                MOV     A,R1
+00168F F0                MOVX    @DPTR,A
+  331: 
+  332: 	if (pEvt == NULL)
+001690 4A                ORL     A,R2
+001691 7007              JNZ     ?C0076?KB_PROCESS
+  333: 	{
+  334: 		m_power_on_flag = 1;
+001693 904C8F            MOV     DPTR,#m_power_on_flag
+001696 04                INC     A
+001697 F0                MOVX    @DPTR,A
+  335: 		kb_24g_get_led_status();
+001698 800E              SJMP    kb_24g_get_led_status
+  336: 		return;
+  337: 	}
+00169A         ?C0076?KB_PROCESS:
+  338: 	kb_motion_keyscan(pEvt);
+00169A 904EF8            MOV     DPTR,#pEvt
+00169D E0                MOVX    A,@DPTR
+00169E FB                MOV     R3,A
+00169F A3                INC     DPTR
+0016A0 E0                MOVX    A,@DPTR
+0016A1 FA                MOV     R2,A
+0016A2 A3                INC     DPTR
+0016A3 E0                MOVX    A,@DPTR
+0016A4 F9                MOV     R1,A
+0016A5 310B              ACALL   _kb_motion_keyscan
+  339: }
+0016A7         ?C0075?KB_PROCESS:
+0016A7 22                RET     
+----- FUNCTION kb_motion (END) -------
+
+
+----- FUNCTION kb_24g_get_led_status (BEGIN) -----
+ FILE: 'kb_process.c'
+  305: void kb_24g_get_led_status()		//get RF Ack for get numlock/capslock status
+  306: {
+  307: 	if((m_24g_led_flag)&& (repeat_send_24g == 0))
+  308: 	{
+0016A8 904D23            MOV     DPTR,#m_24g_led_flag
+0016AB E0                MOVX    A,@DPTR
+0016AC 6035              JZ      ?C0073?KB_PROCESS
+0016AE 904DEC            MOV     DPTR,#repeat_send_24g
+0016B1 E0                MOVX    A,@DPTR
+0016B2 702F              JNZ     ?C0073?KB_PROCESS
+  309: 		if (g_variable.g24_currentState == CHANGE_TO_24G_CONNECTED)
+  310: 		{
+0016B4 904CA4            MOV     DPTR,#g_variable+06H
+0016B7 E0                MOVX    A,@DPTR
+0016B8 B40328            CJNE    A,#03H,?C0073?KB_PROCESS
+  311: 			xmemclear(hidBuff,9);
+  312: 
+0016BB 7B01              MOV     R3,#01H
+0016BD 7A48              MOV     R2,#HIGH hidBuff
+0016BF 7900              MOV     R1,#LOW hidBuff
+0016C1 7D09              MOV     R5,#09H
+0016C3 7C00              MOV     R4,#00H
+0016C5 91D8              ACALL   _xmemclear
+  313: 			mult_key_status = 0;
+0016C7 E4                CLR     A
+0016C8 904E57            MOV     DPTR,#mult_key_status
+0016CB F0                MOVX    @DPTR,A
+  314: 			hidBuff[0] = HID_REPORTID_KEY_STANDARD;		// standard key send
+0016CC 904800            MOV     DPTR,#hidBuff
+0016CF 04                INC     A
+0016D0 F0                MOVX    @DPTR,A
+  315: 			hidBuff[2] = m_24g_led_flag;
+0016D1 904D23            MOV     DPTR,#m_24g_led_flag
+0016D4 E0                MOVX    A,@DPTR
+0016D5 904802            MOV     DPTR,#hidBuff+02H
+0016D8 F0                MOVX    @DPTR,A
+  316: 			IPC_TxHidData(hidBuff, 9);
+0016D9 7B01              MOV     R3,#01H
+0016DB 7A48              MOV     R2,#HIGH hidBuff
+0016DD 7900              MOV     R1,#LOW hidBuff
+0016DF 7D09              MOV     R5,#09H
+0016E1 71EA              ACALL   _IPC_TxHidData
+  317: 		}	
+  318: 	}
+  319: 
+  320: }
+0016E3         ?C0073?KB_PROCESS:
+0016E3 22                RET     
+----- FUNCTION kb_24g_get_led_status (END) -------
+
+
+----- FUNCTION YC_connect_timeout_500ms (BEGIN) -----
+ FILE: 'sys.c'
+  552: void YC_connect_timeout_500ms()
+  553: {
+  554: 
+  555: 	if(le_send_battery_level_delay_count)
+0016E4 904DEA            MOV     DPTR,#le_send_battery_level_delay_count
+0016E7 E0                MOVX    A,@DPTR
+0016E8 600B              JZ      ?C0090?SYS
+  556: 	{
+  557: 		le_send_battery_level_delay_count--;
+0016EA E0                MOVX    A,@DPTR
+0016EB 14                DEC     A
+0016EC F0                MOVX    @DPTR,A
+  558: 		if(!le_send_battery_level_delay_count)
+0016ED E0                MOVX    A,@DPTR
+0016EE 7005              JNZ     ?C0090?SYS
+  559: 		{	
+  560: 			///m_lpm_mode = 1;
+  561: 			le_send_battery_level_flag = 1;
+0016F0 904DE9            MOV     DPTR,#le_send_battery_level_flag
+0016F3 04                INC     A
+0016F4 F0                MOVX    @DPTR,A
+  562: 		}
+  563: 	}
+0016F5         ?C0090?SYS:
+  564: 	
+  565: //system long sleep timer
+  566: 	if (g_variable.br_currentState == CHANGE_TO_BR_CONNECTED ||
+0016F5 904CA8            MOV     DPTR,#g_variable+0AH
+0016F8 E0                MOVX    A,@DPTR
+0016F9 6404              XRL     A,#04H
+0016FB 6007              JZ      ?C0093?SYS
+0016FD 904CA6            MOV     DPTR,#g_variable+08H
+001700 E0                MOVX    A,@DPTR
+001701 B40429            CJNE    A,#04H,?C0092?SYS
+001704         ?C0093?SYS:
+  567: 		g_variable.ble_currentState == CHANGE_TO_BLE_CONNECTED)
+  568: 	{
+  569: 	/*
+  570: 		if (g_variable.ble_currentState == CHANGE_TO_BLE_CONNECTED)
+  571: 		{
+  572: 			if(le_send_battery_level_flag || (g_variable.sleepTimer && !(g_variable.sleepTimer & 0x1f)))		// ble battery l
+>> evel updata each 16 second
+  573: 			{
+  574: 				le_send_battery_level_flag = 0;
+  575: 				multikey[0] = HID_REPORTID_BATTERY;	
+  576: 				multikey[1] = g_variable.battery_level_percentage;	
+  577: 				IPC_TxHidData(multikey, 2);
+  578: 			}
+  579: 		}
+  580: 	*/	
+  581: 		if (g_variable.sleepTimer == STANDBY_TIMER_6MIN) 
+001704 904CC2            MOV     DPTR,#g_variable+024H
+001707 E0                MOVX    A,@DPTR
+001708 B40208            CJNE    A,#02H,?C0094?SYS
+00170B A3                INC     DPTR
+00170C E0                MOVX    A,@DPTR
+00170D B4D003            CJNE    A,#0D0H,?C0094?SYS
+  582: 		{
+  583: 			LED_all_shutdown();
+001710 120CAC            LCALL   LED_all_shutdown
+  584: 
+  585: 		}
+001713         ?C0094?SYS:
+  586: 		if (g_variable.sleepTimer == STANDBY_TIMER_10MIN) 
+001713 904CC2            MOV     DPTR,#g_variable+024H
+001716 E0                MOVX    A,@DPTR
+001717 6404              XRL     A,#04H
+001719 7004              JNZ     ?C0189?SYS
+00171B A3                INC     DPTR
+00171C E0                MOVX    A,@DPTR
+00171D 64B0              XRL     A,#0B0H
+00171F         ?C0189?SYS:
+00171F 6002              JZ      $ + 4H
+001721 E1A5              AJMP    ?C0106?SYS
+  587: 		{
+  588: 			YC_disconnect_all_link();
+001723 120B13            LCALL   YC_disconnect_all_link
+  589: 			g_variable.lockLpm = 1;
+001726 904CCB            MOV     DPTR,#g_variable+02DH
+001729 7401              MOV     A,#01H
+00172B F0                MOVX    @DPTR,A
+  590: 		}
+  591: 	}
+00172C 22                RET     
+00172D         ?C0092?SYS:
+  592: 	else if(g_variable.g24_currentState == CHANGE_TO_24G_CONNECTED)
+00172D 904CA4            MOV     DPTR,#g_variable+06H
+001730 E0                MOVX    A,@DPTR
+001731 6403              XRL     A,#03H
+001733 7039              JNZ     ?C0097?SYS
+  593: 	{
+  594: #ifdef PC_SLEEP_STATUS_GET	
+  595: 		if((g_variable.sleepTimer & 0x1f) == 0x10)	// search dongle each 8s
+001735 904CC3            MOV     DPTR,#g_variable+025H
+001738 E0                MOVX    A,@DPTR
+001739 541F              ANL     A,#01FH
+00173B 6410              XRL     A,#010H
+00173D 701E              JNZ     ?C0098?SYS
+  596: 		{
+  597: 			xmemclear(hidBuff,9);
+00173F 7B01              MOV     R3,#01H
+001741 7A48              MOV     R2,#HIGH hidBuff
+001743 7900              MOV     R1,#LOW hidBuff
+001745 7D09              MOV     R5,#09H
+001747 FC                MOV     R4,A
+001748 91D8              ACALL   _xmemclear
+  598: 
+  599: 			mult_key_status = 0;
+00174A E4                CLR     A
+00174B 904E57            MOV     DPTR,#mult_key_status
+00174E F0                MOVX    @DPTR,A
+  600: 			hidBuff[0] = HID_REPORTID_KEY_STANDARD;		// standard key send
+00174F 904800            MOV     DPTR,#hidBuff
+001752 04                INC     A
+001753 F0                MOVX    @DPTR,A
+  601: 			IPC_TxHidData(hidBuff, 9);
+001754 FB                MOV     R3,A
+001755 7A48              MOV     R2,#HIGH hidBuff
+001757 7900              MOV     R1,#LOW hidBuff
+001759 7D09              MOV     R5,#09H
+00175B 71EA              ACALL   _IPC_TxHidData
+  602: 		}
+00175D         ?C0098?SYS:
+  603: #endif	
+  604: 		if (g_variable.sleepTimer >= STANDBY_TIMER_10MIN)
+00175D C3                CLR     C
+00175E 904CC3            MOV     DPTR,#g_variable+025H
+001761 E0                MOVX    A,@DPTR
+001762 94B0              SUBB    A,#0B0H
+001764 904CC2            MOV     DPTR,#g_variable+024H
+001767 E0                MOVX    A,@DPTR
+001768 9404              SUBB    A,#04H
+00176A 4039              JC      ?C0106?SYS
+  605: 		{
+  606: 			System_G24_long_lpm();
+00176C 8038              SJMP    System_G24_long_lpm
+  607: 		}
+  608: 	}
+00176E         ?C0097?SYS:
+  609: 	else if(g_variable.g24_currentState == CHANGE_TO_24G_PAIRING)
+00176E 904CA4            MOV     DPTR,#g_variable+06H
+001771 E0                MOVX    A,@DPTR
+001772 B40111            CJNE    A,#01H,?C0101?SYS
+  610: 	{
+  611: 		if (g_variable.sleepTimer >= BT_PAIRING_TIME_OUT_30S)
+001775 C3                CLR     C
+001776 904CC3            MOV     DPTR,#g_variable+025H
+001779 E0                MOVX    A,@DPTR
+00177A 943C              SUBB    A,#03CH
+00177C 904CC2            MOV     DPTR,#g_variable+024H
+00177F E0                MOVX    A,@DPTR
+001780 9400              SUBB    A,#00H
+001782 4021              JC      ?C0106?SYS
+  612: 		{
+  613: 			System_G24_long_lpm();
+001784 8020              SJMP    System_G24_long_lpm
+  614: 		}
+  615: 	}
+001786         ?C0101?SYS:
+  616: 	else
+  617: 	{
+  618: 		if (g_variable.sleepTimer >= RECONNECT_TIMER_10S)
+001786 C3                CLR     C
+001787 904CC3            MOV     DPTR,#g_variable+025H
+00178A E0                MOVX    A,@DPTR
+00178B 9414              SUBB    A,#014H
+00178D 904CC2            MOV     DPTR,#g_variable+024H
+001790 E0                MOVX    A,@DPTR
+001791 9400              SUBB    A,#00H
+001793 4010              JC      ?C0106?SYS
+  619: 		{
+  620: 			if(ble_reconnect_flag)
+001795 904DF5            MOV     DPTR,#ble_reconnect_flag
+001798 E0                MOVX    A,@DPTR
+001799 6007              JZ      ?C0105?SYS
+  621: 			{
+  622: 				ble_reconnect_flag = 0;
+00179B E4                CLR     A
+00179C F0                MOVX    @DPTR,A
+  623: 				IPC_TxControlCmd(IPC_CMD_STOP_ADV);
+00179D 7F0E              MOV     R7,#0EH
+00179F 1208B3            LCALL   _IPC_TxControlCmd
+  624: 			}
+0017A2         ?C0105?SYS:
+  625: 			System_long_sleep();
+0017A2 120FD8            LCALL   System_long_sleep
+  626: 		}
+  627: 	}
+  628: }
+0017A5         ?C0106?SYS:
+0017A5 22                RET     
+----- FUNCTION YC_connect_timeout_500ms (END) -------
+
+
+----- FUNCTION System_G24_long_lpm (BEGIN) -----
+ FILE: 'sys.c'
+   94: void System_G24_long_lpm()
+   95: {
+   96: 	g_variable.g24_long_sleep_flag = 1;
+   97: #ifdef PC_SLEEP_STATUS_GET	
+0017A6 904CF6            MOV     DPTR,#g_variable+058H
+0017A9 7401              MOV     A,#01H
+0017AB F0                MOVX    @DPTR,A
+   98: 	g_variable.sys_numlockled_on_timer = 0;
+0017AC E4                CLR     A
+0017AD 904CC5            MOV     DPTR,#g_variable+027H
+0017B0 F0                MOVX    @DPTR,A
+   99: 	g_variable.sys_capslockled_on_timer = 0;
+0017B1 A3                INC     DPTR
+0017B2 F0                MOVX    @DPTR,A
+  100: 	g_variable.sys_scrolllockled_on_timer = 0;
+0017B3 A3                INC     DPTR
+0017B4 F0                MOVX    @DPTR,A
+  101: 	m_caps_num_lock = 0xf0;
+0017B5 904C90            MOV     DPTR,#m_caps_num_lock
+0017B8 74F0              MOV     A,#0F0H
+0017BA F0                MOVX    @DPTR,A
+  102: 	m_caps_num_lock_last = 0xf0; 
+0017BB 904DEF            MOV     DPTR,#m_caps_num_lock_last
+0017BE F0                MOVX    @DPTR,A
+  103: #endif
+  104: 	g_variable.backlight_level = 0;
+0017BF E4                CLR     A
+0017C0 904CE2            MOV     DPTR,#g_variable+044H
+0017C3 F0                MOVX    @DPTR,A
+  105: 	g_variable.battery_low_led_flash_flag = 0;
+0017C4 904CD6            MOV     DPTR,#g_variable+038H
+0017C7 F0                MOVX    @DPTR,A
+  106: 	g_variable.battery_low_led_flash_interval = 0;		
+0017C8 904CC1            MOV     DPTR,#g_variable+023H
+0017CB F0                MOVX    @DPTR,A
+  107: 	m_24g_pairing_sm = 0xff;
+0017CC 904BEF            MOV     DPTR,#m_24g_pairing_sm
+0017CF 74FF              MOV     A,#0FFH
+0017D1 F0                MOVX    @DPTR,A
+  108: 	m_24g_enter_hibernate[0]	= 0xff;
+0017D2 904D1D            MOV     DPTR,#m_24g_enter_hibernate
+0017D5 F0                MOVX    @DPTR,A
+  109: 	m_24g_enter_hibernate[1]	= 0xff;
+0017D6 A3                INC     DPTR
+0017D7 F0                MOVX    @DPTR,A
+  110: 	m_24g_enter_hibernate[2]	= 0xff;
+0017D8 A3                INC     DPTR
+0017D9 F0                MOVX    @DPTR,A
+  111: 	m_24g_enter_hibernate[3]	= 0xff;
+0017DA A3                INC     DPTR
+0017DB F0                MOVX    @DPTR,A
+  112: 	YC_PWM_disable(7);
+0017DC 7F07              MOV     R7,#07H
+0017DE 020CAA            LJMP    ?L?COM0001
+  113: 
+  114: 	LED_all_shutdown();
+----- FUNCTION System_G24_long_lpm (END) -------
+
+
+----- FUNCTION _IPC_Tx24GData (BEGIN) -----
+ FILE: 'ipc.c'
+   97: void IPC_Tx24GData(byte * dt, byte len)
+   98: {
+;---- Variable 'len' assigned to Register 'R5' ----
+;---- Variable 'dt' assigned to Register 'R1/R2/R3' ----
+   99: 	ipcSendBuff[0] = IPC_24G_DATA;
+  100: 	IPC_TxData(dt, len);
+0017E1 900BE7            MOV     DPTR,#ipcSendBuff
+0017E4 7406              MOV     A,#06H
+0017E6 F0                MOVX    @DPTR,A
+;----                  JMP     _IPC_TxData
+  101: }
+----- FUNCTION _IPC_Tx24GData (END) -------
+
+
+----- FUNCTION _IPC_TxData (BEGIN) -----
+ FILE: 'ipc.c'
+   83: void IPC_TxData(byte * dt, byte len)
+   84: {
+0017E7 904F21            MOV     DPTR,#len
+0017EA ED                MOV     A,R5
+0017EB F0                MOVX    @DPTR,A
+;---- Variable 'dt' assigned to Register 'R1/R2/R3' ----
+   85: 	ipcSendBuff[1] = len;
+   86: 	xmemcpy(&ipcSendBuff[2], dt, len);
+0017EC E0                MOVX    A,@DPTR
+0017ED FD                MOV     R5,A
+0017EE 900BE8            MOV     DPTR,#ipcSendBuff+01H
+0017F1 F0                MOVX    @DPTR,A
+   87: 	ipcTx(ipcSendBuff, len + 2);
+0017F2 7E0B              MOV     R6,#HIGH ipcSendBuff+02H
+0017F4 7FE9              MOV     R7,#LOW ipcSendBuff+02H
+0017F6 904ED0            MOV     DPTR,#?_xmemcpy?BYTE+05H
+0017F9 ED                MOV     A,R5
+0017FA F0                MOVX    @DPTR,A
+0017FB 11C8              ACALL   _xmemcpy
+   88: }
+0017FD 7B01              MOV     R3,#01H
+0017FF 7A0B              MOV     R2,#HIGH ipcSendBuff
+001801 79E7              MOV     R1,#LOW ipcSendBuff
+001803 904F21            MOV     DPTR,#len
+001806 E0                MOVX    A,@DPTR
+001807 2402              ADD     A,#02H
+001809 FD                MOV     R5,A
+00180A 0208DB            LJMP    _ipcTx
+----- FUNCTION _IPC_TxData (END) -------
+
+
+----- FUNCTION YC_check_is_connected (BEGIN) -----
+ FILE: 'bluetooth.c'
+   77: byte YC_check_is_connected()
+   78: {
+   79: 	if (g_variable.br_currentState == CHANGE_TO_BR_CONNECTED
+   80: 		|| g_variable.ble_currentState == CHANGE_TO_BLE_CONNECTED
+00180D 904CA8            MOV     DPTR,#g_variable+0AH
+001810 E0                MOVX    A,@DPTR
+001811 6404              XRL     A,#04H
+001813 600F              JZ      ?C0012?BLUETOOTH
+001815 904CA6            MOV     DPTR,#g_variable+08H
+001818 E0                MOVX    A,@DPTR
+001819 6404              XRL     A,#04H
+00181B 6007              JZ      ?C0012?BLUETOOTH
+00181D 904CA4            MOV     DPTR,#g_variable+06H
+001820 E0                MOVX    A,@DPTR
+001821 B40303            CJNE    A,#03H,?C0011?BLUETOOTH
+001824         ?C0012?BLUETOOTH:
+   81: 		|| g_variable.g24_currentState == CHANGE_TO_24G_CONNECTED)
+   82: 	{
+   83: 		return 1;
+001824 7F01              MOV     R7,#01H
+001826 22                RET     
+   84: 	}
+001827         ?C0011?BLUETOOTH:
+   85: 	return 0;
+001827 7F00              MOV     R7,#00H
+   86: }
+001829 22                RET     
+----- FUNCTION YC_check_is_connected (END) -------
+
+
+----- FUNCTION YC_check_need_reconnected (BEGIN) -----
+ FILE: 'bluetooth.c'
+   88: byte YC_check_need_reconnected()
+   89: {
+   90: 	byte return_val = 0;
+   91: 	 if (g_variable.ble_currentSubState == CHANGE_TO_BLE_SUB_PINCODE 
+00182A E4                CLR     A
+00182B 904F19            MOV     DPTR,#return_val
+00182E F0                MOVX    @DPTR,A
+   92: 		|| g_variable.br_currentSubState == CHANGE_TO_BR_SUB_PINCODE)
+00182F 904CA7            MOV     DPTR,#g_variable+09H
+001832 E0                MOVX    A,@DPTR
+001833 6402              XRL     A,#02H
+001835 6007              JZ      ?C0015?BLUETOOTH
+001837 904CA9            MOV     DPTR,#g_variable+0BH
+00183A E0                MOVX    A,@DPTR
+00183B B40206            CJNE    A,#02H,?C0014?BLUETOOTH
+00183E         ?C0015?BLUETOOTH:
+   93: 		return return_val;
+00183E 904F19            MOV     DPTR,#return_val
+001841 E0                MOVX    A,@DPTR
+001842 FF                MOV     R7,A
+001843 22                RET     
+001844         ?C0014?BLUETOOTH:
+   94: #if DEVICE_MODE_BT_ONLY
+   95: 	if ((m_ui_state_map & 0x4000) == 0x4000)
+   96: #elif DEVICE_MODE_BLE_ONLY	
+   97: 	if ((m_ui_state_map & 0x0008) == 0x0008)
+   98: #else	
+   99: 	if ((m_ui_state_map & 0x4008) == 0x4008)		//ADV and DISCOVERY
+001844 9047F4            MOV     DPTR,#m_ui_state_map
+001847 E0                MOVX    A,@DPTR
+001848 5440              ANL     A,#040H
+00184A FE                MOV     R6,A
+00184B A3                INC     DPTR
+00184C E0                MOVX    A,@DPTR
+00184D 5408              ANL     A,#08H
+00184F FF                MOV     R7,A
+001850 BE4009            CJNE    R6,#040H,?C0017?BLUETOOTH
+001853 BF0806            CJNE    R7,#08H,?C0017?BLUETOOTH
+  100: #endif		
+  101: 		return return_val;
+001856 904F19            MOV     DPTR,#return_val
+001859 E0                MOVX    A,@DPTR
+00185A FF                MOV     R7,A
+00185B 22                RET     
+00185C         ?C0017?BLUETOOTH:
+  102: 
+  103: 	if(g_variable.pairing_g24_timeout)
+00185C 904CCD            MOV     DPTR,#g_variable+02FH
+00185F E0                MOVX    A,@DPTR
+001860 6006              JZ      ?C0018?BLUETOOTH
+  104: 		return return_val;
+001862 904F19            MOV     DPTR,#return_val
+001865 E0                MOVX    A,@DPTR
+001866 FF                MOV     R7,A
+001867 22                RET     
+001868         ?C0018?BLUETOOTH:
+  105: 
+  106: 	if ( g_variable.br_currentState == CHANGE_TO_BR_DISCONNECT
+001868 904CA8            MOV     DPTR,#g_variable+0AH
+00186B E0                MOVX    A,@DPTR
+00186C 7045              JNZ     ?C0019?BLUETOOTH
+00186E 904CA6            MOV     DPTR,#g_variable+08H
+001871 E0                MOVX    A,@DPTR
+001872 703F              JNZ     ?C0019?BLUETOOTH
+001874 904CA4            MOV     DPTR,#g_variable+06H
+001877 E0                MOVX    A,@DPTR
+001878 6403              XRL     A,#03H
+00187A 6037              JZ      ?C0019?BLUETOOTH
+  107: 		&& g_variable.ble_currentState == CHANGE_TO_BLE_DISCONNECT
+  108: 		&& g_variable.g24_currentState != CHANGE_TO_24G_CONNECTED
+  109: 	)
+  110: 	{
+  111: 		if(g_variable.recon_delay == 0)
+00187C 904CCE            MOV     DPTR,#g_variable+030H
+00187F E0                MOVX    A,@DPTR
+001880 703B              JNZ     ?C0024?BLUETOOTH
+  112: 		{
+  113: 			g_variable.recon_delay = 10;
+001882 740A              MOV     A,#0AH
+001884 F0                MOVX    @DPTR,A
+  114: 			if ((g_variable.recon_count == 0)
+001885 A3                INC     DPTR
+001886 E0                MOVX    A,@DPTR
+001887 7034              JNZ     ?C0024?BLUETOOTH
+001889 904DFA            MOV     DPTR,#power_on_flag
+00188C E0                MOVX    A,@DPTR
+00188D 6402              XRL     A,#02H
+00188F 702C              JNZ     ?C0024?BLUETOOTH
+  115: 			&& (power_on_flag == 2))
+  116: 			{				
+  117: 				if (g_variable.current_device_num >= 1 && g_variable.current_device_num <= 3)
+001891 904CA2            MOV     DPTR,#g_variable+04H
+001894 E0                MOVX    A,@DPTR
+001895 FF                MOV     R7,A
+001896 C3                CLR     C
+001897 9401              SUBB    A,#01H
+001899 400B              JC      ?C0022?BLUETOOTH
+00189B EF                MOV     A,R7
+00189C D3                SETB    C
+00189D 9403              SUBB    A,#03H
+00189F 5005              JNC     ?C0022?BLUETOOTH
+  118: 				{
+  119: 					YC_key_action_handle(g_variable.current_device_num);
+0018A1 120970            LCALL   _YC_key_action_handle
+  120: 				}
+0018A4 8017              SJMP    ?C0024?BLUETOOTH
+0018A6         ?C0022?BLUETOOTH:
+  121: 				else
+  122: 				{
+  123: 					YC_key_action_handle(KEY_OPEN_24G);
+0018A6 7F09              MOV     R7,#09H
+0018A8 120970            LCALL   _YC_key_action_handle
+  124: 					return_val = 1;
+0018AB 904F19            MOV     DPTR,#return_val
+0018AE 7401              MOV     A,#01H
+0018B0 F0                MOVX    @DPTR,A
+  125: 				}
+  126: 			}
+  127: 		}
+  128: 	}
+0018B1 800A              SJMP    ?C0024?BLUETOOTH
+0018B3         ?C0019?BLUETOOTH:
+  129: 	else
+  130: 	{
+  131: 		g_variable.release_data = 0;
+0018B3 E4                CLR     A
+0018B4 904CCA            MOV     DPTR,#g_variable+02CH
+0018B7 F0                MOVX    @DPTR,A
+  132: 		return_val = 1;
+0018B8 904F19            MOV     DPTR,#return_val
+0018BB 04                INC     A
+0018BC F0                MOVX    @DPTR,A
+  133: 	}
+0018BD         ?C0024?BLUETOOTH:
+  134: 	return return_val;
+0018BD 904F19            MOV     DPTR,#return_val
+0018C0 E0                MOVX    A,@DPTR
+0018C1 FF                MOV     R7,A
+  135: }
+0018C2 22                RET     
+----- FUNCTION YC_check_need_reconnected (END) -------
+
+
+----- FUNCTION YC_clear_reconnect_flag (BEGIN) -----
+ FILE: 'bluetooth.c'
+  156: void YC_clear_reconnect_flag()  
+  157: {
+  158: 	g_variable.recon_count = 0;
+  159: 	ble_reconnect_flag = 0;
+0018C3 E4                CLR     A
+0018C4 904CCF            MOV     DPTR,#g_variable+031H
+0018C7 F0                MOVX    @DPTR,A
+  160: }
+0018C8 904DF5            MOV     DPTR,#ble_reconnect_flag
+0018CB F0                MOVX    @DPTR,A
+  161: 
+0018CC 22                RET     
+----- FUNCTION YC_clear_reconnect_flag (END) -------
+
+
+----- FUNCTION _kb_cb_event (BEGIN) -----
+ FILE: 'sys.c'
+  136: static void kb_cb_event(byte evt)
+  137: {
+0018CD 904F20            MOV     DPTR,#evt
+0018D0 EF                MOV     A,R7
+0018D1 F0                MOVX    @DPTR,A
+  138: #ifdef BT_FAST_CONNECT_ENABLE
+  139: 	xbyte *bt_name_string;
+  140: #endif	
+  141: 
+  142: 	switch (evt) 
+0018D2 120608            LCALL   ?C?CCASE
+0018D5 1AFA              DW      ?C0040?SYS
+0018D7 01                DB      01H
+0018D8 1BF3              DW      ?C0053?SYS
+0018DA 02                DB      02H
+0018DB 1BE4              DW      ?C0051?SYS
+0018DD 04                DB      04H
+0018DE 1B1C              DW      ?C0042?SYS
+0018E0 06                DB      06H
+0018E1 1BAC              DW      ?C0047?SYS
+0018E3 0A                DB      0AH
+0018E4 1BE4              DW      ?C0051?SYS
+0018E6 13                DB      013H
+0018E7 1C95              DW      ?C0063?SYS
+0018E9 14                DB      014H
+0018EA 1D42              DW      ?C0069?SYS
+0018EC 15                DB      015H
+0018ED 1A1A              DW      ?C0026?SYS
+0018EF 27                DB      027H
+0018F0 1D09              DW      ?C0067?SYS
+0018F2 29                DB      029H
+0018F3 1BA2              DW      ?C0046?SYS
+0018F5 2A                DB      02AH
+0018F6 1918              DW      ?C0015?SYS
+0018F8 2F                DB      02FH
+0018F9 1A10              DW      ?C0024?SYS
+0018FB 30                DB      030H
+0018FC 1A51              DW      ?C0030?SYS
+0018FE 31                DB      031H
+0018FF 1ABC              DW      ?C0036?SYS
+001901 32                DB      032H
+001902 1918              DW      ?C0015?SYS
+001904 33                DB      033H
+001905 1CE4              DW      ?C0066?SYS
+001907 34                DB      034H
+001908 1D23              DW      ?C0068?SYS
+00190A 35                DB      035H
+00190B 1A49              DW      ?C0028?SYS
+00190D 37                DB      037H
+00190E 1A1A              DW      ?C0026?SYS
+001910 39                DB      039H
+001911 1A51              DW      ?C0030?SYS
+001913 3C                DB      03CH
+001914 0000              DW      00H
+001916 1D89              DW      ?C0049?SYS
+  143: 	{
+  144: 
+  145: case IPC_EVT_HIBERNATE_WAKE:
+  146: case IPC_EVT_RESET:
+001918         ?C0015?SYS:
+  147: 		System_Hardware_init();
+001918 F1B8              ACALL   System_Hardware_init
+  148: 		System_Software_init();
+00191A 123984            LCALL   System_Software_init
+  149: 
+  150: 		IIC_Read(EEPROM_BATTERY_SHUTDOWN_FLAG ,1 ,(byte *)&g_variable.battery_shutdown_flag);	
+00191D 7B01              MOV     R3,#01H
+00191F 7A4C              MOV     R2,#HIGH g_variable+043H
+001921 79E1              MOV     R1,#LOW g_variable+043H
+001923 7D01              MOV     R5,#01H
+001925 7C00              MOV     R4,#00H
+001927 7FC2              MOV     R7,#0C2H
+001929 7E7F              MOV     R6,#07FH
+00192B D1CF              ACALL   _IIC_Read
+  151: 		if(g_variable.battery_shutdown_flag == 1)
+00192D 904CE1            MOV     DPTR,#g_variable+043H
+001930 E0                MOVX    A,@DPTR
+001931 B40137            CJNE    A,#01H,?C0016?SYS
+  152: 		{	
+001934         ?C0017?SYS:
+  153: 			while(!m_adcCurrentValue) 
+001934 904C75            MOV     DPTR,#m_adcCurrentValue
+001937 E0                MOVX    A,@DPTR
+001938 7002              JNZ     ?C0187?SYS
+00193A A3                INC     DPTR
+00193B E0                MOVX    A,@DPTR
+00193C         ?C0187?SYS:
+00193C 7004              JNZ     ?C0018?SYS
+  154: 			{
+  155: 				IPC_WaitLpm();
+00193E F17F              ACALL   IPC_WaitLpm
+  156: 			}
+001940 80F2              SJMP    ?C0017?SYS
+001942         ?C0018?SYS:
+  157: 
+  158: 
+  159: 			if(m_adcCurrentValue < g_variable.battery_level_shutdown)
+001942 904CBF            MOV     DPTR,#g_variable+021H
+001945 E0                MOVX    A,@DPTR
+001946 FE                MOV     R6,A
+001947 A3                INC     DPTR
+001948 E0                MOVX    A,@DPTR
+001949 FF                MOV     R7,A
+00194A C3                CLR     C
+00194B 904C76            MOV     DPTR,#m_adcCurrentValue+01H
+00194E E0                MOVX    A,@DPTR
+00194F 9F                SUBB    A,R7
+001950 904C75            MOV     DPTR,#m_adcCurrentValue
+001953 E0                MOVX    A,@DPTR
+001954 9E                SUBB    A,R6
+001955 5014              JNC     ?C0016?SYS
+  160: 			{
+  161: 				g_variable.battery_status = BAT_STATUS_SHUT_DOWN;
+001957 904CB4            MOV     DPTR,#g_variable+016H
+00195A 7402              MOV     A,#02H
+00195C F0                MOVX    @DPTR,A
+  162: 				g_variable.powerOn_timer = 0;
+00195D E4                CLR     A
+00195E 904CC4            MOV     DPTR,#g_variable+026H
+001961 F0                MOVX    @DPTR,A
+  163: 				g_variable.battery_flash_timer = STANDBY_TIMER_10S;
+001962 904CFA            MOV     DPTR,#g_variable+05CH
+001965 F0                MOVX    @DPTR,A
+001966 A3                INC     DPTR
+001967 7464              MOV     A,#064H
+001969 F0                MOVX    @DPTR,A
+  164: //				IPC_TxControlCmd(IPC_CMD_ENTER_HIBERNATE);
+  165: 				break;
+00196A 22                RET     
+  166: 			}
+  167: 		}		
+00196B         ?C0016?SYS:
+  168: 		IIC_Read(EEPROM_RECON_INFO_LAST_DEVICE ,1 ,(byte *)&g_variable.last_device_num);
+00196B 7B01              MOV     R3,#01H
+00196D 7A4C              MOV     R2,#HIGH g_variable+01H
+00196F 799F              MOV     R1,#LOW g_variable+01H
+001971 7D01              MOV     R5,#01H
+001973 7C00              MOV     R4,#00H
+001975 7FBD              MOV     R7,#0BDH
+001977 7E7F              MOV     R6,#07FH
+001979 D1CF              ACALL   _IIC_Read
+  169: 		if(g_variable.last_device_num > 3)
+00197B 904C9F            MOV     DPTR,#g_variable+01H
+00197E E0                MOVX    A,@DPTR
+00197F D3                SETB    C
+001980 9403              SUBB    A,#03H
+001982 4002              JC      ?C0020?SYS
+  170: 			g_variable.last_device_num = 0;
+001984 E4                CLR     A
+001985 F0                MOVX    @DPTR,A
+001986         ?C0020?SYS:
+  171: 		g_variable.current_device_num = g_variable.last_device_num;
+001986 904C9F            MOV     DPTR,#g_variable+01H
+001989 E0                MOVX    A,@DPTR
+00198A 904CA2            MOV     DPTR,#g_variable+04H
+00198D F0                MOVX    @DPTR,A
+  172: 		LED_device_poweron();
+00198E 120FE5            LCALL   LED_device_poweron
+  173: 		Delay1ms(10);		
+001991 7F0A              MOV     R7,#0AH
+001993 120F6E            LCALL   _Delay1ms
+  174: 		IIC_Read(EEPROM_RECON_INFO_RAMDON_LE_LAP1 ,2 ,(byte *)&g_variable.ble_ramdon_lap1);
+001996 7B01              MOV     R3,#01H
+001998 7A4C              MOV     R2,#HIGH g_variable+033H
+00199A 79D1              MOV     R1,#LOW g_variable+033H
+00199C 7D02              MOV     R5,#02H
+00199E 7C00              MOV     R4,#00H
+0019A0 7FBE              MOV     R7,#0BEH
+0019A2 7E7F              MOV     R6,#07FH
+0019A4 D1CF              ACALL   _IIC_Read
+  175: 		if(g_variable.ble_ramdon_lap1 == 0xff && g_variable.ble_ramdon_lap2 == 0xff)
+0019A6 904CD1            MOV     DPTR,#g_variable+033H
+0019A9 E0                MOVX    A,@DPTR
+0019AA B4FF19            CJNE    A,#0FFH,?C0021?SYS
+0019AD A3                INC     DPTR
+0019AE E0                MOVX    A,@DPTR
+0019AF B4FF14            CJNE    A,#0FFH,?C0021?SYS
+  176: 		{
+  177: 			g_variable.ble_ramdon_lap1 = m_adc3vValue;
+0019B2 904C73            MOV     DPTR,#m_adc3vValue
+0019B5 E0                MOVX    A,@DPTR
+0019B6 A3                INC     DPTR
+0019B7 E0                MOVX    A,@DPTR
+0019B8 904CD1            MOV     DPTR,#g_variable+033H
+0019BB F0                MOVX    @DPTR,A
+  178: 			g_variable.ble_ramdon_lap2 = m_adc0vBase;
+0019BC 904C71            MOV     DPTR,#m_adc0vBase
+0019BF E0                MOVX    A,@DPTR
+0019C0 A3                INC     DPTR
+0019C1 E0                MOVX    A,@DPTR
+0019C2 904CD2            MOV     DPTR,#g_variable+034H
+0019C5 F0                MOVX    @DPTR,A
+  179: 		}
+0019C6         ?C0021?SYS:
+  180: 	#ifdef MULTISYSTEM_ENABLE	
+  181: 		IIC_Read(EEPROM_RECON_INFO_SYTEM_MODE ,1 ,(byte *)&g_variable.system_mode);
+0019C6 7B01              MOV     R3,#01H
+0019C8 7A4C              MOV     R2,#HIGH g_variable+02H
+0019CA 79A0              MOV     R1,#LOW g_variable+02H
+0019CC 7D01              MOV     R5,#01H
+0019CE 7C00              MOV     R4,#00H
+0019D0 7FC0              MOV     R7,#0C0H
+0019D2 7E7F              MOV     R6,#07FH
+0019D4 D1CF              ACALL   _IIC_Read
+  182: 		Delay1ms(10);
+0019D6 7F0A              MOV     R7,#0AH
+0019D8 120F6E            LCALL   _Delay1ms
+  183: 		if(g_variable.system_mode > OSMODE_IOS)
+0019DB 904CA0            MOV     DPTR,#g_variable+02H
+0019DE E0                MOVX    A,@DPTR
+0019DF D3                SETB    C
+0019E0 9402              SUBB    A,#02H
+0019E2 4011              JC      ?C0022?SYS
+  184: 		{
+  185: 			g_variable.system_mode = OSMODE_WINDOWS;
+0019E4 E4                CLR     A
+0019E5 F0                MOVX    @DPTR,A
+  186: 			IIC_WriteBlock(EEPROM_RECON_INFO_SYTEM_MODE ,1 ,(byte *)&g_variable.system_mode);
+0019E6 7B01              MOV     R3,#01H
+0019E8 7A4C              MOV     R2,#HIGH g_variable+02H
+0019EA 79A0              MOV     R1,#LOW g_variable+02H
+0019EC 7D01              MOV     R5,#01H
+0019EE FC                MOV     R4,A
+0019EF 7FC0              MOV     R7,#0C0H
+0019F1 7E7F              MOV     R6,#07FH
+0019F3 D120              ACALL   _IIC_WriteBlock
+  187: 		}
+0019F5         ?C0022?SYS:
+  188: 	#endif		
+  189: 		power_on_flag = 2;
+0019F5 904DFA            MOV     DPTR,#power_on_flag
+0019F8 7402              MOV     A,#02H
+0019FA F0                MOVX    @DPTR,A
+  190: 		if(g_variable.last_device_num > 2)
+0019FB 904C9F            MOV     DPTR,#g_variable+01H
+0019FE E0                MOVX    A,@DPTR
+0019FF D3                SETB    C
+001A00 9402              SUBB    A,#02H
+001A02 4002              JC      ?C0023?SYS
+  191: 			g_variable.last_device_num = 0;
+001A04 E4                CLR     A
+001A05 F0                MOVX    @DPTR,A
+001A06         ?C0023?SYS:
+  192: 		g_variable.current_device_num = g_variable.last_device_num;	
+001A06 904C9F            MOV     DPTR,#g_variable+01H
+001A09 E0                MOVX    A,@DPTR
+001A0A 904CA2            MOV     DPTR,#g_variable+04H
+001A0D F0                MOVX    @DPTR,A
+  193: 		//GPIO_SetOutput(BACKLIGHT_PWM_GPIO,LED_ON);
+  194: 		YC_start_reconnect();
+001A0E E1DA              AJMP    YC_start_reconnect
+  195: 		break;
+  196: 	case IPC_EVT_WAKEUP:
+001A10         ?C0024?SYS:
+  197: 		System_IIC_clk_setup();
+001A10 F1BF              ACALL   System_IIC_clk_setup
+  198: 		KS_Initialize();
+001A12 F18D              ACALL   KS_Initialize
+  199: 		g_variable.g24_long_sleep_flag = 0;
+001A14 E4                CLR     A
+001A15 904CF6            MOV     DPTR,#g_variable+058H
+001A18 F0                MOVX    @DPTR,A
+  200: 		break;
+001A19 22                RET     
+  201: 
+  202: // connection event
+  203: 	case IPC_EVT_VIRTUAL_CABLE_UNPLUG:
+  204: 	case IPC_EVT_CLEAR_LINKKEY:
+001A1A         ?C0026?SYS:
+  205: 		if ((g_variable.current_device_num > 0) && (g_variable.current_device_num < 4))
+001A1A 904CA2            MOV     DPTR,#g_variable+04H
+001A1D E0                MOVX    A,@DPTR
+001A1E D3                SETB    C
+001A1F 9400              SUBB    A,#00H
+001A21 5002              JNC     $ + 4H
+001A23 A189              AJMP    ?C0049?SYS
+001A25 E0                MOVX    A,@DPTR
+001A26 9404              SUBB    A,#04H
+001A28 4002              JC      $ + 4H
+001A2A A189              AJMP    ?C0049?SYS
+  206: 		{
+  207: 			xmemclear_ff((byte *)&bd_key_record_list[g_variable.current_device_num-1],sizeof(BD_KEY_RECORD));	
+001A2C E0                MOVX    A,@DPTR
+001A2D 75F01E            MOV     B,#01EH
+001A30 A4                MUL     AB
+001A31 24DF              ADD     A,#LOW bd_key_record_list-01EH
+001A33 F9                MOV     R1,A
+001A34 744D              MOV     A,#HIGH bd_key_record_list-01EH
+001A36 35F0              ADDC    A,B
+001A38 FA                MOV     R2,A
+001A39 7B01              MOV     R3,#01H
+001A3B 7D1E              MOV     R5,#01EH
+001A3D 7C00              MOV     R4,#00H
+001A3F 122819            LCALL   _xmemclear_ff
+  208: 			g_variable.update_eeprom_flag = EEPROM_STORE_TYPE_BT;
+001A42 904C9E            MOV     DPTR,#g_variable
+001A45 7403              MOV     A,#03H
+001A47 F0                MOVX    @DPTR,A
+  209: 		}
+  210: 		break;
+001A48 22                RET     
+  211: 	case IPC_EVT_RECONNECT_STANDY:
+001A49         ?C0028?SYS:
+  212: 		YC_load_record_list(recon_index);
+001A49 904DE5            MOV     DPTR,#recon_index
+001A4C E0                MOVX    A,@DPTR
+001A4D FF                MOV     R7,A
+001A4E 02078C            LJMP    _YC_load_record_list
+  213: 		break;		
+  214: 		
+  215: // 2.4G event	
+  216: 	case IPC_EVT_24G_PAIRING_COMPLETE:
+  217: 	case IPC_EVT_24G_ATTEMPT_SUCCESS:
+001A51         ?C0030?SYS:
+  218: 		g_variable.g24_currentState =  CHANGE_TO_24G_CONNECTED;
+001A51 904CA4            MOV     DPTR,#g_variable+06H
+001A54 7403              MOV     A,#03H
+001A56 F0                MOVX    @DPTR,A
+  219: 		g_variable.g24_currentSubState = CHANGE_TO_24G_SUB_NONE;
+001A57 E4                CLR     A
+001A58 A3                INC     DPTR
+001A59 F0                MOVX    @DPTR,A
+  220: 		YC_clear_reconnect_flag();
+001A5A 11C3              ACALL   YC_clear_reconnect_flag
+  221: 		g_variable.pairing_g24_timeout = 0;
+001A5C E4                CLR     A
+001A5D 904CCD            MOV     DPTR,#g_variable+02FH
+001A60 F0                MOVX    @DPTR,A
+  222: 		g_variable.release_data = 0;
+001A61 904CCA            MOV     DPTR,#g_variable+02CH
+001A64 F0                MOVX    @DPTR,A
+  223: 		g_variable.last_device_num = 0xfe;
+001A65 904C9F            MOV     DPTR,#g_variable+01H
+001A68 74FE              MOV     A,#0FEH
+001A6A F0                MOVX    @DPTR,A
+  224: 		g_variable.current_device_num = 0xfe;
+001A6B 904CA2            MOV     DPTR,#g_variable+04H
+001A6E F0                MOVX    @DPTR,A
+  225: 		g_variable.backlight_pattern=0;
+001A6F E4                CLR     A
+001A70 904CF8            MOV     DPTR,#g_variable+05AH
+001A73 F0                MOVX    @DPTR,A
+  226: 		m_24g_led_flag = KB_24G_LED_ACK_TYPE;
+001A74 904D23            MOV     DPTR,#m_24g_led_flag
+001A77 7403              MOV     A,#03H
+001A79 F0                MOVX    @DPTR,A
+  227: 		delayChgInvTimer = 10;
+001A7A 904DF6            MOV     DPTR,#delayChgInvTimer
+001A7D 740A              MOV     A,#0AH
+001A7F F0                MOVX    @DPTR,A
+  228: 
+  229: 		if(evt == IPC_EVT_24G_PAIRING_COMPLETE)
+001A80 904F20            MOV     DPTR,#evt
+001A83 E0                MOVX    A,@DPTR
+001A84 6431              XRL     A,#031H
+001A86 702B              JNZ     ?C0031?SYS
+  230: 		{
+  231: 			fast_connect_flag = 0;
+001A88 904E61            MOV     DPTR,#fast_connect_flag
+001A8B F0                MOVX    @DPTR,A
+  232: 			g_variable.powerOn_timer = KB_POWERON_LED_ON_TIMER;
+001A8C 904CC4            MOV     DPTR,#g_variable+026H
+001A8F 741E              MOV     A,#01EH
+001A91 F0                MOVX    @DPTR,A
+  233: 			if(m_24g_paring_addr[0] != 0x0f || m_24g_paring_addr[1] != 0x0f ||
+001A92 904BEB            MOV     DPTR,#m_24g_paring_addr
+001A95 E0                MOVX    A,@DPTR
+001A96 B40F12            CJNE    A,#0FH,?C0033?SYS
+001A99 A3                INC     DPTR
+001A9A E0                MOVX    A,@DPTR
+001A9B B40F0D            CJNE    A,#0FH,?C0033?SYS
+001A9E A3                INC     DPTR
+001A9F E0                MOVX    A,@DPTR
+001AA0 B40F08            CJNE    A,#0FH,?C0033?SYS
+001AA3 A3                INC     DPTR
+001AA4 E0                MOVX    A,@DPTR
+001AA5 640F              XRL     A,#0FH
+001AA7 7002              JNZ     $ + 4H
+001AA9 A189              AJMP    ?C0049?SYS
+001AAB         ?C0033?SYS:
+  234: 				m_24g_paring_addr[2] != 0x0f || m_24g_paring_addr[3] != 0x0f)
+  235: 				{
+  236: 					g_variable.update_eeprom_flag = EEPROM_STORE_TYPE_G24;
+001AAB 904C9E            MOV     DPTR,#g_variable
+001AAE 7402              MOV     A,#02H
+001AB0 F0                MOVX    @DPTR,A
+  237: 					YC_update_eeprom_data();
+001AB1 A18A              AJMP    YC_update_eeprom_data
+  238: 
+  239: 				}
+  240: 		}
+001AB3         ?C0031?SYS:
+  241: 		else
+  242: 		{
+  243: 			if(!g_variable.powerOn_timer)
+001AB3 904CC4            MOV     DPTR,#g_variable+026H
+001AB6 E0                MOVX    A,@DPTR
+001AB7 6002              JZ      $ + 4H
+001AB9 A189              AJMP    ?C0049?SYS
+  244: 			;//GPIO_Setout(G24_LED_GPIO,LED_OFF);
+  245: 		}
+  246: 		break;
+001ABB 22                RET     
+  247: 	
+  248: 	case IPC_EVT_24G_ATTEMPT_FAIL:	
+001ABC         ?C0036?SYS:
+  249: 		g_variable.g24_currentState =  CHANGE_TO_24G_DISCONNECTED;
+001ABC E4                CLR     A
+001ABD 904CA4            MOV     DPTR,#g_variable+06H
+001AC0 F0                MOVX    @DPTR,A
+  250: 		g_variable.g24_currentSubState = CHANGE_TO_24G_SUB_NONE;
+001AC1 A3                INC     DPTR
+001AC2 F0                MOVX    @DPTR,A
+  251: 		g_variable.sleepTimer = 0;
+001AC3 904CC2            MOV     DPTR,#g_variable+024H
+001AC6 F0                MOVX    @DPTR,A
+001AC7 A3                INC     DPTR
+001AC8 F0                MOVX    @DPTR,A
+  252: 		g_variable.release_data = 1;
+001AC9 904CCA            MOV     DPTR,#g_variable+02CH
+001ACC 04                INC     A
+001ACD F0                MOVX    @DPTR,A
+  253: 
+  254: 		if (g_variable.key_action != KEY_NONE)
+001ACE 904CCC            MOV     DPTR,#g_variable+02EH
+001AD1 E0                MOVX    A,@DPTR
+001AD2 600A              JZ      ?C0037?SYS
+  255: 		{
+  256: 			YC_clear_reconnect_flag();
+001AD4 11C3              ACALL   YC_clear_reconnect_flag
+  257: 			YC_key_action_handle(g_variable.key_action);
+001AD6 904CCC            MOV     DPTR,#g_variable+02EH
+001AD9 E0                MOVX    A,@DPTR
+001ADA FF                MOV     R7,A
+001ADB 020970            LJMP    _YC_key_action_handle
+  258: 			break;
+  259: 		}
+001ADE         ?C0037?SYS:
+  260: 
+  261: 		if (g_variable.lockLpm == 1)
+001ADE 904CCB            MOV     DPTR,#g_variable+02DH
+001AE1 E0                MOVX    A,@DPTR
+001AE2 B40105            CJNE    A,#01H,?C0038?SYS
+  262: 		{
+  263: 			g_variable.lockLpm =0;
+001AE5 E4                CLR     A
+001AE6 F0                MOVX    @DPTR,A
+  264: 			System_long_sleep();
+001AE7 020FD8            LJMP    System_long_sleep
+  265: 			break;
+  266: 		}
+001AEA         ?C0038?SYS:
+  267: 		if (g_variable.recon_count != 0)
+001AEA 904CCF            MOV     DPTR,#g_variable+031H
+001AED E0                MOVX    A,@DPTR
+001AEE 7002              JNZ     $ + 4H
+001AF0 A189              AJMP    ?C0049?SYS
+  268: 		{
+  269: 			YC_load_record_list(recon_index);
+001AF2 904DE5            MOV     DPTR,#recon_index
+001AF5 E0                MOVX    A,@DPTR
+001AF6 FF                MOV     R7,A
+001AF7 02078C            LJMP    _YC_load_record_list
+  270: 		}
+  271: 		break;
+  272: 
+  273: 
+  274: 		
+  275: // BT3.0 event
+  276: 	case IPC_EVT_BB_CONNECTED:
+001AFA         ?C0040?SYS:
+  277: 		g_variable.br_currentState = CHANGE_TO_BR_CONNECTING;
+001AFA 904CA8            MOV     DPTR,#g_variable+0AH
+001AFD 7403              MOV     A,#03H
+001AFF F0                MOVX    @DPTR,A
+  278: 		g_variable.br_currentSubState = CHANGE_TO_BR_SUB_INIT;
+001B00 A3                INC     DPTR
+001B01 7401              MOV     A,#01H
+001B03 F0                MOVX    @DPTR,A
+  279: 		g_variable.ble_currentState = CHANGE_TO_BLE_DISCONNECT;
+001B04 E4                CLR     A
+001B05 904CA6            MOV     DPTR,#g_variable+08H
+001B08 F0                MOVX    @DPTR,A
+  280: 		g_variable.ble_currentSubState = CHANGE_TO_BLE_SUB_NONE;
+001B09 A3                INC     DPTR
+001B0A F0                MOVX    @DPTR,A
+  281: 		if ((m_ui_state_map & 0x8000) == 0x8000)
+001B0B 9047F4            MOV     DPTR,#m_ui_state_map
+001B0E E0                MOVX    A,@DPTR
+001B0F A3                INC     DPTR
+001B10 20E702            JB      ACC.7,$ + 5H
+001B13 A189              AJMP    ?C0049?SYS
+  282: 		{
+  283: 			switch_role_timer = 50;
+001B15 904DE8            MOV     DPTR,#switch_role_timer
+001B18 7432              MOV     A,#032H
+001B1A F0                MOVX    @DPTR,A
+  284: 		}
+  285: 		break;
+001B1B 22                RET     
+  286: 	case IPC_EVT_HID_CONNECTED:
+001B1C         ?C0042?SYS:
+  287: 		g_variable.br_currentState = CHANGE_TO_BR_CONNECTED;
+001B1C 904CA8            MOV     DPTR,#g_variable+0AH
+001B1F 7404              MOV     A,#04H
+001B21 F0                MOVX    @DPTR,A
+  288: 		g_variable.br_currentSubState = CHANGE_TO_BR_SUB_NONE;
+001B22 E4                CLR     A
+001B23 A3                INC     DPTR
+001B24 F0                MOVX    @DPTR,A
+  289: 		IPC_TxControlCmd(IPC_CMD_STOP_ADV);
+001B25 7F0E              MOV     R7,#0EH
+001B27 1208B3            LCALL   _IPC_TxControlCmd
+  290: 		IPC_TxControlCmd(IPC_CMD_STOP_DISCOVERY);
+001B2A 7F02              MOV     R7,#02H
+001B2C 1208B3            LCALL   _IPC_TxControlCmd
+  291: 		//m_lpm_mode = 1;
+  292: 		
+  293: 		g_variable.last_device_num = g_variable.current_device_num;
+001B2F 904CA2            MOV     DPTR,#g_variable+04H
+001B32 E0                MOVX    A,@DPTR
+001B33 904C9F            MOV     DPTR,#g_variable+01H
+001B36 F0                MOVX    @DPTR,A
+  294: 	#ifdef BT_FAST_CONNECT_ENABLE				
+  295: 		if(g_variable.fast_connect_send_name)
+  296: 		{
+  297: 			g_variable.fast_connect_send_name = 0;
+  298: 
+  299: 			bt_name_string[0] = HID_REPORTID_FAST_CONN_NAME;
+  300: 			dmemcpy(bt_name_string+1, &m_local_name_length, m_local_name_length+1);
+  301: 			IPC_TxBREDRHidData(bt_name_string,m_local_name_length+2);
+  302: 		}
+  303: 		else
+  304: 	#endif	
+  305: 		{
+  306: 			if(g_variable.pairing_timeout)
+001B37 904CC8            MOV     DPTR,#g_variable+02AH
+001B3A E0                MOVX    A,@DPTR
+001B3B 6021              JZ      ?C0043?SYS
+  307: 			{
+  308: 				bd_key_record_list[g_variable.current_device_num - 1].system_mode = g_variable.system_mode;
+001B3D 904CA0            MOV     DPTR,#g_variable+02H
+001B40 E0                MOVX    A,@DPTR
+001B41 FF                MOV     R7,A
+001B42 904CA2            MOV     DPTR,#g_variable+04H
+001B45 E0                MOVX    A,@DPTR
+001B46 75F01E            MOV     B,#01EH
+001B49 A4                MUL     AB
+001B4A 24FC              ADD     A,#LOW bd_key_record_list-01H
+001B4C F582              MOV     DPL,A
+001B4E E4                CLR     A
+001B4F 344D              ADDC    A,#HIGH bd_key_record_list-01H
+001B51 F583              MOV     DPH,A
+001B53 EF                MOV     A,R7
+001B54 F0                MOVX    @DPTR,A
+  309: 				YC_clear_BT_same_address_record();
+001B55 12272F            LCALL   YC_clear_BT_same_address_record
+  310: 				g_variable.update_eeprom_flag = 3;
+001B58 904C9E            MOV     DPTR,#g_variable
+001B5B 7403              MOV     A,#03H
+001B5D F0                MOVX    @DPTR,A
+  311: 			}
+001B5E         ?C0043?SYS:
+  312: 		}
+  313: 
+  314: 		g_variable.sleepTimer = 0;
+001B5E E4                CLR     A
+001B5F 904CC2            MOV     DPTR,#g_variable+024H
+001B62 F0                MOVX    @DPTR,A
+001B63 A3                INC     DPTR
+001B64 F0                MOVX    @DPTR,A
+  315: 		g_variable.pairing_timeout = 0;
+001B65 904CC8            MOV     DPTR,#g_variable+02AH
+001B68 F0                MOVX    @DPTR,A
+  316: 		g_variable.backlight_pattern=0;
+001B69 904CF8            MOV     DPTR,#g_variable+05AH
+001B6C F0                MOVX    @DPTR,A
+  317: 		YC_clear_reconnect_flag();
+001B6D 11C3              ACALL   YC_clear_reconnect_flag
+  318: 		g_variable.release_data = 0;
+001B6F E4                CLR     A
+001B70 904CCA            MOV     DPTR,#g_variable+02CH
+001B73 F0                MOVX    @DPTR,A
+  319: 		switch_role_timer = 0;
+001B74 904DE8            MOV     DPTR,#switch_role_timer
+001B77 F0                MOVX    @DPTR,A
+  320: 		kscurrmult = 0x1a;
+001B78 904213            MOV     DPTR,#kscurrmult
+001B7B 741A              MOV     A,#01AH
+001B7D F0                MOVX    @DPTR,A
+  321: 		iOS_rec_pinCode = 0;	
+001B7E E4                CLR     A
+001B7F 904DF0            MOV     DPTR,#iOS_rec_pinCode
+001B82 F0                MOVX    @DPTR,A
+001B83         ?C0044?SYS:
+  322: 		
+  323: 		while( (m_remote_addr[0]==0)&&(m_remote_addr[1]==0)&&(m_remote_addr[2]==0)
+001B83 900040            MOV     DPTR,#m_remote_addr
+001B86 E0                MOVX    A,@DPTR
+001B87 7014              JNZ     ?C0045?SYS
+001B89 A3                INC     DPTR
+001B8A E0                MOVX    A,@DPTR
+001B8B 7010              JNZ     ?C0045?SYS
+001B8D A3                INC     DPTR
+001B8E E0                MOVX    A,@DPTR
+001B8F 700C              JNZ     ?C0045?SYS
+001B91 A3                INC     DPTR
+001B92 E0                MOVX    A,@DPTR
+001B93 7008              JNZ     ?C0045?SYS
+001B95 A3                INC     DPTR
+001B96 E0                MOVX    A,@DPTR
+001B97 7004              JNZ     ?C0045?SYS
+001B99 A3                INC     DPTR
+001B9A E0                MOVX    A,@DPTR
+001B9B 60E6              JZ      ?C0044?SYS
+001B9D         ?C0045?SYS:
+  324: 			&&(m_remote_addr[3]==0)&&(m_remote_addr[4]==0)&&(m_remote_addr[5]==0));
+  325: 		IPC_TxControlCmd(IPC_CMD_ENTER_SNIFF);
+001B9D 7F05              MOV     R7,#05H
+001B9F 0208B3            LJMP    _IPC_TxControlCmd
+  326: 		break;
+  327: 	case IPC_EVT_SWITCH_FAIL_MASTER:
+001BA2         ?C0046?SYS:
+  328: 		IPC_TxControlCmd(IPC_CMD_DISCONNECT);
+001BA2 7F04              MOV     R7,#04H
+001BA4 1208B3            LCALL   _IPC_TxControlCmd
+  329: 		Delay1ms(10);
+001BA7 7F0A              MOV     R7,#0AH
+001BA9 020F6E            LJMP    _Delay1ms
+  330: 		break;	
+  331: 	case IPC_EVT_PINCODE_REQ:
+001BAC         ?C0047?SYS:
+  332: 		ipcPinlen = 0;
+001BAC E4                CLR     A
+001BAD 90054F            MOV     DPTR,#ipcPinlen
+001BB0 F0                MOVX    @DPTR,A
+  333: 		pinCode_flag = 1;
+001BB1 904DED            MOV     DPTR,#pinCode_flag
+001BB4 04                INC     A
+001BB5 F0                MOVX    @DPTR,A
+  334: 		switch_role_timer = 0;
+001BB6 E4                CLR     A
+001BB7 904DE8            MOV     DPTR,#switch_role_timer
+001BBA F0                MOVX    @DPTR,A
+  335: 		if ((m_ui_state_map & 0x8000) == 0x8000)
+001BBB 9047F4            MOV     DPTR,#m_ui_state_map
+001BBE E0                MOVX    A,@DPTR
+001BBF A3                INC     DPTR
+001BC0 30E710            JNB     ACC.7,?C0048?SYS
+  336: 		{
+  337: 			iOS_rec_pinCode = 1;	
+001BC3 904DF0            MOV     DPTR,#iOS_rec_pinCode
+001BC6 7401              MOV     A,#01H
+001BC8 F0                MOVX    @DPTR,A
+  338: 			ipcPinlen = 4;
+001BC9 90054F            MOV     DPTR,#ipcPinlen
+001BCC 7404              MOV     A,#04H
+001BCE F0                MOVX    @DPTR,A
+  339: 			IPC_TxControlCmd(IPC_CMD_DISCONNECT);
+001BCF FF                MOV     R7,A
+001BD0 0208B3            LJMP    _IPC_TxControlCmd
+  340: 			return;
+  341: 		}
+001BD3         ?C0048?SYS:
+  342: 		g_variable.recon_count = 0;
+001BD3 E4                CLR     A
+001BD4 904CCF            MOV     DPTR,#g_variable+031H
+001BD7 F0                MOVX    @DPTR,A
+  343: 		g_variable.br_currentSubState =  CHANGE_TO_BR_SUB_PINCODE;
+001BD8 904CA9            MOV     DPTR,#g_variable+0BH
+001BDB 7402              MOV     A,#02H
+001BDD F0                MOVX    @DPTR,A
+  344: 		g_variable.br_currentState =CHANGE_TO_BR_CONNECTING;
+001BDE 904CA8            MOV     DPTR,#g_variable+0AH
+001BE1 04                INC     A
+001BE2 F0                MOVX    @DPTR,A
+  345: 		break;	
+001BE3 22                RET     
+  346: 	case IPC_EVT_RECONN_PAGE_TIMEOUT:
+  347: 	case IPC_EVT_RECONN_FAILED:
+001BE4         ?C0051?SYS:
+  348: 		if (g_variable.g24_currentState == CHANGE_TO_24G_CONNECTED)
+001BE4 904CA4            MOV     DPTR,#g_variable+06H
+001BE7 E0                MOVX    A,@DPTR
+001BE8 B40308            CJNE    A,#03H,?C0053?SYS
+  349: 		{
+  350: 			g_variable.br_currentState = CHANGE_TO_BR_DISCONNECT;
+001BEB E4                CLR     A
+001BEC 904CA8            MOV     DPTR,#g_variable+0AH
+001BEF F0                MOVX    @DPTR,A
+  351: 			g_variable.br_currentSubState = CHANGE_TO_BR_SUB_NONE;
+001BF0 A3                INC     DPTR
+001BF1 F0                MOVX    @DPTR,A
+001BF2 22                RET     
+  352: 			return;
+  353: 		}		
+  354: 	case IPC_EVT_BB_DISCONNECTED:
+001BF3         ?C0053?SYS:
+  355: 		g_variable.history_state = g_variable.br_currentState ;
+001BF3 904CA8            MOV     DPTR,#g_variable+0AH
+001BF6 E0                MOVX    A,@DPTR
+001BF7 904CAA            MOV     DPTR,#g_variable+0CH
+001BFA F0                MOVX    @DPTR,A
+  356: 		g_variable.br_currentState = CHANGE_TO_BR_DISCONNECT;
+001BFB E4                CLR     A
+001BFC 904CA8            MOV     DPTR,#g_variable+0AH
+001BFF F0                MOVX    @DPTR,A
+  357: 		g_variable.br_currentSubState = CHANGE_TO_BR_SUB_NONE;
+001C00 A3                INC     DPTR
+001C01 F0                MOVX    @DPTR,A
+  358: 		g_variable.release_data = 1;
+001C02 904CCA            MOV     DPTR,#g_variable+02CH
+001C05 04                INC     A
+001C06 F0                MOVX    @DPTR,A
+  359: 		switch_role_timer = 0;
+001C07 E4                CLR     A
+001C08 904DE8            MOV     DPTR,#switch_role_timer
+001C0B F0                MOVX    @DPTR,A
+  360: 		if (iOS_rec_pinCode == 1)
+001C0C 904DF0            MOV     DPTR,#iOS_rec_pinCode
+001C0F E0                MOVX    A,@DPTR
+001C10 6401              XRL     A,#01H
+001C12 702F              JNZ     ?C0054?SYS
+  361: 		{
+  362: 			if ((g_variable.current_device_num > 0) && (g_variable.current_device_num < 4))
+001C14 904CA2            MOV     DPTR,#g_variable+04H
+001C17 E0                MOVX    A,@DPTR
+001C18 D3                SETB    C
+001C19 9400              SUBB    A,#00H
+001C1B 4021              JC      ?C0055?SYS
+001C1D E0                MOVX    A,@DPTR
+001C1E 9404              SUBB    A,#04H
+001C20 501C              JNC     ?C0055?SYS
+  363: 			{
+  364: 				xmemclear_ff((byte *)&bd_key_record_list[g_variable.current_device_num-1],sizeof(BD_KEY_RECORD));	
+001C22 E0                MOVX    A,@DPTR
+001C23 75F01E            MOV     B,#01EH
+001C26 A4                MUL     AB
+001C27 24DF              ADD     A,#LOW bd_key_record_list-01EH
+001C29 F9                MOV     R1,A
+001C2A 744D              MOV     A,#HIGH bd_key_record_list-01EH
+001C2C 35F0              ADDC    A,B
+001C2E FA                MOV     R2,A
+001C2F 7B01              MOV     R3,#01H
+001C31 7D1E              MOV     R5,#01EH
+001C33 7C00              MOV     R4,#00H
+001C35 122819            LCALL   _xmemclear_ff
+  365: 				g_variable.update_eeprom_flag = EEPROM_STORE_TYPE_BT;
+001C38 904C9E            MOV     DPTR,#g_variable
+001C3B 7403              MOV     A,#03H
+001C3D F0                MOVX    @DPTR,A
+  366: 			}
+001C3E         ?C0055?SYS:
+  367: 			iOS_rec_pinCode = 0;
+001C3E E4                CLR     A
+001C3F 904DF0            MOV     DPTR,#iOS_rec_pinCode
+001C42 F0                MOVX    @DPTR,A
+  368: 		}
+001C43         ?C0054?SYS:
+  369: 
+  370: 		if (g_variable.lockLpm == 1)
+001C43 904CCB            MOV     DPTR,#g_variable+02DH
+001C46 E0                MOVX    A,@DPTR
+001C47 B40105            CJNE    A,#01H,?C0056?SYS
+  371: 		{
+  372: 			g_variable.lockLpm =0;
+001C4A E4                CLR     A
+001C4B F0                MOVX    @DPTR,A
+  373: 			System_long_sleep();
+001C4C 020FD8            LJMP    System_long_sleep
+  374: 			break;
+  375: 		}
+001C4F         ?C0056?SYS:
+  376: 
+  377: 		if (g_variable.key_action != KEY_NONE)
+001C4F 904CCC            MOV     DPTR,#g_variable+02EH
+001C52 E0                MOVX    A,@DPTR
+001C53 6004              JZ      ?C0057?SYS
+  378: 		{
+  379: 			YC_key_action_handle(g_variable.key_action);
+001C55 FF                MOV     R7,A
+001C56 020970            LJMP    _YC_key_action_handle
+  380: 			break;
+  381: 		}
+001C59         ?C0057?SYS:
+  382: 
+  383: 		if (g_variable.recon_count != 0)
+001C59 904CCF            MOV     DPTR,#g_variable+031H
+001C5C E0                MOVX    A,@DPTR
+001C5D 6008              JZ      ?C0058?SYS
+  384: 		{
+  385: 			YC_load_record_list(recon_index);
+001C5F 904DE5            MOV     DPTR,#recon_index
+001C62 E0                MOVX    A,@DPTR
+001C63 FF                MOV     R7,A
+001C64 02078C            LJMP    _YC_load_record_list
+  386: 			break;
+  387: 		}
+001C67         ?C0058?SYS:
+  388: 
+  389: 		if (g_variable.g24_currentState == CHANGE_TO_24G_PAIRING)
+001C67 904CA4            MOV     DPTR,#g_variable+06H
+001C6A E0                MOVX    A,@DPTR
+001C6B 6401              XRL     A,#01H
+001C6D 7002              JNZ     $ + 4H
+001C6F A189              AJMP    ?C0049?SYS
+  390: 		{
+  391: 			return;
+  392: 		}
+001C71         ?C0059?SYS:
+  393: 
+  394: 
+  395: 		if (evt == IPC_EVT_RECONN_PAGE_TIMEOUT)
+001C71 904F20            MOV     DPTR,#evt
+001C74 E0                MOVX    A,@DPTR
+001C75 6413              XRL     A,#013H
+001C77 7002              JNZ     $ + 4H
+001C79 A189              AJMP    ?C0049?SYS
+  396: 		{
+  397: 			break;
+  398: 		}
+001C7B         ?C0060?SYS:
+  399: 		
+  400: 		if (g_variable.history_state != CHANGE_TO_BR_CONNECTED)
+001C7B 904CAA            MOV     DPTR,#g_variable+0CH
+001C7E E0                MOVX    A,@DPTR
+001C7F 6404              XRL     A,#04H
+001C81 6007              JZ      ?C0061?SYS
+  401: 		{
+  402: 			YC_key_action_handle(KEY_DISCOVERY);
+001C83 7F05              MOV     R7,#05H
+001C85 120970            LCALL   _YC_key_action_handle
+  403: 		}
+001C88 8003              SJMP    ?C0062?SYS
+001C8A         ?C0061?SYS:
+  404: 		else
+  405: 		{
+  406: 			System_long_sleep();
+001C8A 120FD8            LCALL   System_long_sleep
+  407: 		}
+001C8D         ?C0062?SYS:
+  408: 		g_variable.sleepTimer = 0;
+001C8D E4                CLR     A
+001C8E 904CC2            MOV     DPTR,#g_variable+024H
+001C91 F0                MOVX    @DPTR,A
+001C92 A3                INC     DPTR
+001C93 F0                MOVX    @DPTR,A
+  409: 		break;		
+001C94 22                RET     
+  410: 
+  411: // BT 4.2 event
+  412: 	case IPC_EVT_LE_CONNECTED:
+001C95         ?C0063?SYS:
+  413: 		g_variable.ble_currentState = CHANGE_TO_BLE_CONNECTING;
+001C95 904CA6            MOV     DPTR,#g_variable+08H
+001C98 7403              MOV     A,#03H
+001C9A F0                MOVX    @DPTR,A
+  414: 		g_variable.ble_currentSubState = CHANGE_TO_BLE_SUB_INIT;
+001C9B A3                INC     DPTR
+001C9C 7401              MOV     A,#01H
+001C9E F0                MOVX    @DPTR,A
+  415: 		g_variable.br_currentState = CHANGE_TO_BR_DISCONNECT;
+001C9F E4                CLR     A
+001CA0 A3                INC     DPTR
+001CA1 F0                MOVX    @DPTR,A
+  416: 		g_variable.br_currentSubState = CHANGE_TO_BR_SUB_NONE;
+001CA2 A3                INC     DPTR
+001CA3 F0                MOVX    @DPTR,A
+  417: 		IPC_TxControlCmd(IPC_CMD_STOP_ADV);
+001CA4 7F0E              MOV     R7,#0EH
+001CA6 1208B3            LCALL   _IPC_TxControlCmd
+  418: 		IPC_TxControlCmd(IPC_CMD_STOP_DISCOVERY);
+001CA9 7F02              MOV     R7,#02H
+001CAB 1208B3            LCALL   _IPC_TxControlCmd
+  419: 		if(g_variable.pairing_timeout)
+001CAE 904CC8            MOV     DPTR,#g_variable+02AH
+001CB1 E0                MOVX    A,@DPTR
+001CB2 6018              JZ      ?C0064?SYS
+  420: 		{
+  421: 			bd_key_record_list[g_variable.current_device_num - 1].system_mode = g_variable.system_mode;
+001CB4 904CA0            MOV     DPTR,#g_variable+02H
+001CB7 E0                MOVX    A,@DPTR
+001CB8 FF                MOV     R7,A
+001CB9 904CA2            MOV     DPTR,#g_variable+04H
+001CBC E0                MOVX    A,@DPTR
+001CBD 75F01E            MOV     B,#01EH
+001CC0 A4                MUL     AB
+001CC1 24FC              ADD     A,#LOW bd_key_record_list-01H
+001CC3 F582              MOV     DPL,A
+001CC5 E4                CLR     A
+001CC6 344D              ADDC    A,#HIGH bd_key_record_list-01H
+001CC8 F583              MOV     DPH,A
+001CCA EF                MOV     A,R7
+001CCB F0                MOVX    @DPTR,A
+  422: 		}
+001CCC         ?C0064?SYS:
+  423: 		if(!ble_reconnect_flag)
+001CCC 904DF5            MOV     DPTR,#ble_reconnect_flag
+001CCF E0                MOVX    A,@DPTR
+001CD0 7006              JNZ     ?C0065?SYS
+  424: 			ble_send_secutiry_request_timer = 20;
+001CD2 904DE3            MOV     DPTR,#ble_send_secutiry_request_timer
+001CD5 7414              MOV     A,#014H
+001CD7 F0                MOVX    @DPTR,A
+001CD8         ?C0065?SYS:
+  425: 		g_variable.pairing_timeout = 0;
+001CD8 E4                CLR     A
+001CD9 904CC8            MOV     DPTR,#g_variable+02AH
+001CDC F0                MOVX    @DPTR,A
+  426: 		g_variable.sleepTimer = 0;
+001CDD 904CC2            MOV     DPTR,#g_variable+024H
+001CE0 F0                MOVX    @DPTR,A
+001CE1 A3                INC     DPTR
+001CE2 F0                MOVX    @DPTR,A
+  427: 		break;
+001CE3 22                RET     
+  428: 	case IPC_EVT_LE_PROTOCOL_CONNECTED:
+001CE4         ?C0066?SYS:
+  429: 	    	g_variable.ble_currentState = CHANGE_TO_BLE_CONNECTED;
+001CE4 904CA6            MOV     DPTR,#g_variable+08H
+001CE7 7404              MOV     A,#04H
+001CE9 F0                MOVX    @DPTR,A
+  430: 		g_variable.ble_currentSubState = CHANGE_TO_BLE_SUB_NONE;
+001CEA E4                CLR     A
+001CEB A3                INC     DPTR
+001CEC F0                MOVX    @DPTR,A
+  431: 		YC_clear_reconnect_flag();
+001CED 11C3              ACALL   YC_clear_reconnect_flag
+  432: 		g_variable.release_data = 0;
+001CEF E4                CLR     A
+001CF0 904CCA            MOV     DPTR,#g_variable+02CH
+001CF3 F0                MOVX    @DPTR,A
+  433: 		le_send_battery_level_delay_count = 10;
+001CF4 904DEA            MOV     DPTR,#le_send_battery_level_delay_count
+001CF7 740A              MOV     A,#0AH
+001CF9 F0                MOVX    @DPTR,A
+  434: 		g_variable.last_device_num = g_variable.current_device_num;
+001CFA 904CA2            MOV     DPTR,#g_variable+04H
+001CFD E0                MOVX    A,@DPTR
+001CFE 904C9F            MOV     DPTR,#g_variable+01H
+001D01 F0                MOVX    @DPTR,A
+  435: 		g_variable.update_eeprom_flag = EEPROM_STORE_TYPE_BT;
+001D02 904C9E            MOV     DPTR,#g_variable
+001D05 7403              MOV     A,#03H
+001D07 F0                MOVX    @DPTR,A
+  436: 		break;
+001D08 22                RET     
+  437: 	case IPC_EVT_LE_ENC_INFO:
+001D09         ?C0067?SYS:
+  438: 		YC_store_record_list(1, g_variable.current_device_num-1);
+001D09 904CA2            MOV     DPTR,#g_variable+04H
+001D0C E0                MOVX    A,@DPTR
+001D0D 14                DEC     A
+001D0E FD                MOV     R5,A
+001D0F 7F01              MOV     R7,#01H
+001D11 120FF1            LCALL   _YC_store_record_list
+  439: 		g_variable.last_device_num = g_variable.current_device_num;
+001D14 904CA2            MOV     DPTR,#g_variable+04H
+001D17 E0                MOVX    A,@DPTR
+001D18 904C9F            MOV     DPTR,#g_variable+01H
+001D1B F0                MOVX    @DPTR,A
+  440: 		g_variable.update_eeprom_flag = EEPROM_STORE_TYPE_BT;
+001D1C 904C9E            MOV     DPTR,#g_variable
+001D1F 7403              MOV     A,#03H
+001D21 F0                MOVX    @DPTR,A
+  441: 		break;
+001D22 22                RET     
+  442: 
+  443: 	case IPC_EVT_LE_PINCODE_REQ:
+001D23         ?C0068?SYS:
+  444: 		le_pin_code = 0;
+001D23 904D18            MOV     DPTR,#le_pin_code
+001D26 1205D7            LCALL   ?C?LSTKXDATA
+001D29 00                DB      00H
+001D2A 00                DB      00H
+001D2B 00                DB      00H
+001D2C 00                DB      00H
+  445: 		le_pin_code_len = 0;
+001D2D E4                CLR     A
+001D2E 904DE6            MOV     DPTR,#le_pin_code_len
+001D31 F0                MOVX    @DPTR,A
+  446: 		pinCode_flag = 1;
+001D32 904DED            MOV     DPTR,#pinCode_flag
+001D35 04                INC     A
+001D36 F0                MOVX    @DPTR,A
+  447: 		g_variable.ble_currentSubState =  CHANGE_TO_BLE_SUB_PINCODE;
+001D37 904CA7            MOV     DPTR,#g_variable+09H
+001D3A 04                INC     A
+001D3B F0                MOVX    @DPTR,A
+  448: 		g_variable.ble_currentState = CHANGE_TO_BLE_CONNECTING;
+001D3C 904CA6            MOV     DPTR,#g_variable+08H
+001D3F 04                INC     A
+001D40 F0                MOVX    @DPTR,A
+  449: 		break;
+001D41 22                RET     
+  450: 		
+  451: 	case IPC_EVT_LE_DISCONNECTED:	
+001D42         ?C0069?SYS:
+  452: 		g_variable.history_state = g_variable.ble_currentState ;
+001D42 904CA6            MOV     DPTR,#g_variable+08H
+001D45 E0                MOVX    A,@DPTR
+001D46 904CAA            MOV     DPTR,#g_variable+0CH
+001D49 F0                MOVX    @DPTR,A
+  453: 		g_variable.ble_currentState = CHANGE_TO_BLE_DISCONNECT;
+001D4A E4                CLR     A
+001D4B 904CA6            MOV     DPTR,#g_variable+08H
+001D4E F0                MOVX    @DPTR,A
+  454: 		g_variable.ble_currentSubState = CHANGE_TO_BLE_SUB_NONE;
+001D4F A3                INC     DPTR
+001D50 F0                MOVX    @DPTR,A
+  455: 		g_variable.release_data = 1;
+001D51 904CCA            MOV     DPTR,#g_variable+02CH
+001D54 04                INC     A
+001D55 F0                MOVX    @DPTR,A
+  456: 		m_le_send_security_request_flag = 0;
+001D56 E4                CLR     A
+001D57 904D1C            MOV     DPTR,#m_le_send_security_request_flag
+001D5A F0                MOVX    @DPTR,A
+  457: 		if (g_variable.lockLpm == 1)
+001D5B 904CCB            MOV     DPTR,#g_variable+02DH
+001D5E E0                MOVX    A,@DPTR
+001D5F B40105            CJNE    A,#01H,?C0070?SYS
+  458: 		{
+  459: 			g_variable.lockLpm =0;
+001D62 E4                CLR     A
+001D63 F0                MOVX    @DPTR,A
+  460: 			System_long_sleep();
+001D64 020FD8            LJMP    System_long_sleep
+  461: 			break;
+  462: 		}
+001D67         ?C0070?SYS:
+  463: 
+  464: 		if (g_variable.key_action != KEY_NONE)
+001D67 904CCC            MOV     DPTR,#g_variable+02EH
+001D6A E0                MOVX    A,@DPTR
+001D6B 6004              JZ      ?C0071?SYS
+  465: 		{
+  466: 			YC_key_action_handle(g_variable.key_action);
+001D6D FF                MOV     R7,A
+001D6E 020970            LJMP    _YC_key_action_handle
+  467: 			break;
+  468: 		}
+001D71         ?C0071?SYS:
+  469: 
+  470: 
+  471: 		if (g_variable.recon_count != 0)
+001D71 904CCF            MOV     DPTR,#g_variable+031H
+001D74 E0                MOVX    A,@DPTR
+001D75 6008              JZ      ?C0072?SYS
+  472: 		{
+  473: 			YC_load_record_list(recon_index);
+001D77 904DE5            MOV     DPTR,#recon_index
+001D7A E0                MOVX    A,@DPTR
+001D7B FF                MOV     R7,A
+001D7C 02078C            LJMP    _YC_load_record_list
+  474: 			break;
+  475: 		}
+001D7F         ?C0072?SYS:
+  476: 
+  477: 		System_long_sleep();		
+001D7F 120FD8            LCALL   System_long_sleep
+  478: 		g_variable.sleepTimer = 0;
+001D82 E4                CLR     A
+001D83 904CC2            MOV     DPTR,#g_variable+024H
+001D86 F0                MOVX    @DPTR,A
+001D87 A3                INC     DPTR
+001D88 F0                MOVX    @DPTR,A
+  479: 		break;
+  480: 	}
+  481: }
+001D89         ?C0049?SYS:
+001D89 22                RET     
+----- FUNCTION _kb_cb_event (END) -------
+
+
+----- FUNCTION YC_update_eeprom_data (BEGIN) -----
+ FILE: 'bluetooth.c'
+  275: void YC_update_eeprom_data()
+  276: {
+  277: 	if (g_variable.update_eeprom_flag)				//bt3.0  bt4.2 record information save
+  278: 	{
+001D8A 904C9E            MOV     DPTR,#g_variable
+001D8D E0                MOVX    A,@DPTR
+001D8E 7002              JNZ     $ + 4H
+001D90 C11F              AJMP    ?C0055?BLUETOOTH
+  279: 		#ifdef  ADC_ENABLE
+  280: 		if(m_adcCurrentValue < g_variable.battery_level_shutdown)
+001D92 904CBF            MOV     DPTR,#g_variable+021H
+001D95 E0                MOVX    A,@DPTR
+001D96 FE                MOV     R6,A
+001D97 A3                INC     DPTR
+001D98 E0                MOVX    A,@DPTR
+001D99 FF                MOV     R7,A
+001D9A C3                CLR     C
+001D9B 904C76            MOV     DPTR,#m_adcCurrentValue+01H
+001D9E E0                MOVX    A,@DPTR
+001D9F 9F                SUBB    A,R7
+001DA0 904C75            MOV     DPTR,#m_adcCurrentValue
+001DA3 E0                MOVX    A,@DPTR
+001DA4 9E                SUBB    A,R6
+001DA5 4078              JC      ?C0055?BLUETOOTH
+001DA7         ?C0054?BLUETOOTH:
+  281: 			return;
+  282: 		#else
+  283: 		if (g_variable.update_eeprom_flag == EEPROM_STORE_TYPE_NORMAL)
+  284: 			Delay1ms(200);
+  285: 		#endif
+  286: 		
+  287: 
+  288: 		GPIO_Setout(EEPROM_WP_GPIO,0);
+001DA7 C201              CLR     ?_GPIO_Setout?BIT
+001DA9 7FFF              MOV     R7,#0FFH
+001DAB 120F5C            LCALL   _GPIO_Setout
+  289: 		if (g_variable.update_eeprom_flag == EEPROM_STORE_TYPE_G24)
+001DAE 904C9E            MOV     DPTR,#g_variable
+001DB1 E0                MOVX    A,@DPTR
+001DB2 B40222            CJNE    A,#02H,?C0056?BLUETOOTH
+  290: 		{
+  291: 			IIC_WriteBlock(EEPROM_RECON_INFO_BASE_6+2,4 , (byte *)m_24g_addr);
+001DB5 7B01              MOV     R3,#01H
+001DB7 7A4C              MOV     R2,#HIGH m_24g_addr
+001DB9 7900              MOV     R1,#LOW m_24g_addr
+001DBB 7D04              MOV     R5,#04H
+001DBD 7C00              MOV     R4,#00H
+001DBF 7F52              MOV     R7,#052H
+001DC1 7E7F              MOV     R6,#07FH
+001DC3 D120              ACALL   _IIC_WriteBlock
+  292: 			IIC_WriteBlock(EEPROM_RECON_INFO_G24_SYTEM_MODE ,1 ,(byte *)&g_variable.system_mode);
+001DC5 7B01              MOV     R3,#01H
+001DC7 7A4C              MOV     R2,#HIGH g_variable+02H
+001DC9 79A0              MOV     R1,#LOW g_variable+02H
+001DCB 7D01              MOV     R5,#01H
+001DCD 7C00              MOV     R4,#00H
+001DCF 7F57              MOV     R7,#057H
+001DD1 7E7F              MOV     R6,#07FH
+001DD3 D120              ACALL   _IIC_WriteBlock
+  293: 		}	
+001DD5 8017              SJMP    ?C0057?BLUETOOTH
+001DD7         ?C0056?BLUETOOTH:
+  294: 		else if (g_variable.update_eeprom_flag == EEPROM_STORE_TYPE_BT)
+001DD7 904C9E            MOV     DPTR,#g_variable
+001DDA E0                MOVX    A,@DPTR
+001DDB B40310            CJNE    A,#03H,?C0057?BLUETOOTH
+  295: 			IIC_WriteBlock(EEPROM_RECON_INFO_BASE ,(sizeof(BD_KEY_RECORD)*3) , (byte *)&bd_key_record_list);
+001DDE 7B01              MOV     R3,#01H
+001DE0 7A4D              MOV     R2,#HIGH bd_key_record_list
+001DE2 79FD              MOV     R1,#LOW bd_key_record_list
+001DE4 7D5A              MOV     R5,#05AH
+001DE6 7C00              MOV     R4,#00H
+001DE8 7F60              MOV     R7,#060H
+001DEA 7E7F              MOV     R6,#07FH
+001DEC D120              ACALL   _IIC_WriteBlock
+001DEE         ?C0057?BLUETOOTH:
+  296: 		
+  297: 		IIC_WriteBlock(EEPROM_RECON_INFO_LAST_DEVICE ,1 ,(byte *)&g_variable.last_device_num);
+001DEE 7B01              MOV     R3,#01H
+001DF0 7A4C              MOV     R2,#HIGH g_variable+01H
+001DF2 799F              MOV     R1,#LOW g_variable+01H
+001DF4 7D01              MOV     R5,#01H
+001DF6 7C00              MOV     R4,#00H
+001DF8 7FBD              MOV     R7,#0BDH
+001DFA 7E7F              MOV     R6,#07FH
+001DFC D120              ACALL   _IIC_WriteBlock
+  298: 		IIC_WriteBlock(EEPROM_RECON_INFO_RAMDON_LE_LAP1 ,2 ,(byte *)&g_variable.ble_ramdon_lap1);
+001DFE 7B01              MOV     R3,#01H
+001E00 7A4C              MOV     R2,#HIGH g_variable+033H
+001E02 79D1              MOV     R1,#LOW g_variable+033H
+001E04 7D02              MOV     R5,#02H
+001E06 7C00              MOV     R4,#00H
+001E08 7FBE              MOV     R7,#0BEH
+001E0A 7E7F              MOV     R6,#07FH
+001E0C D120              ACALL   _IIC_WriteBlock
+  299: 
+  300: 		GPIO_Setout(EEPROM_WP_GPIO,1);
+001E0E D201              SETB    ?_GPIO_Setout?BIT
+001E10 7FFF              MOV     R7,#0FFH
+001E12 120F5C            LCALL   _GPIO_Setout
+  301: 		Delay1ms(10);
+001E15 7F0A              MOV     R7,#0AH
+001E17 120F6E            LCALL   _Delay1ms
+  302: 		g_variable.update_eeprom_flag = 0;
+001E1A E4                CLR     A
+001E1B 904C9E            MOV     DPTR,#g_variable
+001E1E F0                MOVX    @DPTR,A
+  303: 	}
+  304: }
+001E1F         ?C0055?BLUETOOTH:
+001E1F 22                RET     
+----- FUNCTION YC_update_eeprom_data (END) -------
+
+
+----- FUNCTION _IIC_WriteBlock (BEGIN) -----
+ FILE: 'iic.c'
+   48: void IIC_WriteBlock(word addr, word len, byte * pbuff)
+   49: {
+001E20 904E9F            MOV     DPTR,#addr
+001E23 EE                MOV     A,R6
+001E24 F0                MOVX    @DPTR,A
+001E25 A3                INC     DPTR
+001E26 EF                MOV     A,R7
+001E27 F0                MOVX    @DPTR,A
+001E28 A3                INC     DPTR
+001E29 EC                MOV     A,R4
+001E2A F0                MOVX    @DPTR,A
+001E2B A3                INC     DPTR
+001E2C ED                MOV     A,R5
+001E2D F0                MOVX    @DPTR,A
+001E2E A3                INC     DPTR
+001E2F EB                MOV     A,R3
+001E30 F0                MOVX    @DPTR,A
+001E31 A3                INC     DPTR
+001E32 EA                MOV     A,R2
+001E33 F0                MOVX    @DPTR,A
+001E34 A3                INC     DPTR
+001E35 E9                MOV     A,R1
+001E36 F0                MOVX    @DPTR,A
+   50: 	word cris, curr_len;
+001E37         ?C0007?IIC:
+   51: 	while (len) {
+001E37 904EA1            MOV     DPTR,#len
+001E3A E0                MOVX    A,@DPTR
+001E3B 7002              JNZ     ?C0012?IIC
+001E3D A3                INC     DPTR
+001E3E E0                MOVX    A,@DPTR
+001E3F         ?C0012?IIC:
+001E3F 7002              JNZ     $ + 4H
+001E41 C1CE              AJMP    ?C0011?IIC
+   52: 		cris = (addr | (EEP_PAGE_SIZE - 1)) + 1;
+001E43 904E9F            MOV     DPTR,#addr
+001E46 E0                MOVX    A,@DPTR
+001E47 FE                MOV     R6,A
+001E48 A3                INC     DPTR
+001E49 E0                MOVX    A,@DPTR
+001E4A FF                MOV     R7,A
+001E4B 440F              ORL     A,#0FH
+001E4D 2401              ADD     A,#01H
+001E4F FD                MOV     R5,A
+001E50 E4                CLR     A
+001E51 3E                ADDC    A,R6
+001E52 FC                MOV     R4,A
+;---- Variable 'cris' assigned to Register 'R4/R5' ----
+   53: 		curr_len = cris - addr;
+001E53 C3                CLR     C
+001E54 ED                MOV     A,R5
+001E55 9F                SUBB    A,R7
+001E56 FF                MOV     R7,A
+001E57 EC                MOV     A,R4
+001E58 9E                SUBB    A,R6
+001E59 FE                MOV     R6,A
+001E5A 904EA6            MOV     DPTR,#curr_len
+001E5D F0                MOVX    @DPTR,A
+001E5E A3                INC     DPTR
+001E5F EF                MOV     A,R7
+001E60 F0                MOVX    @DPTR,A
+   54: 		curr_len = min(curr_len, len);
+001E61 904EA1            MOV     DPTR,#len
+001E64 E0                MOVX    A,@DPTR
+001E65 FC                MOV     R4,A
+001E66 A3                INC     DPTR
+001E67 E0                MOVX    A,@DPTR
+001E68 FD                MOV     R5,A
+001E69 D3                SETB    C
+001E6A 9F                SUBB    A,R7
+001E6B EC                MOV     A,R4
+001E6C 9E                SUBB    A,R6
+001E6D 400A              JC      ?C0009?IIC
+001E6F 904EA6            MOV     DPTR,#curr_len
+001E72 E0                MOVX    A,@DPTR
+001E73 FE                MOV     R6,A
+001E74 A3                INC     DPTR
+001E75 E0                MOVX    A,@DPTR
+001E76 FF                MOV     R7,A
+001E77 8004              SJMP    ?C0010?IIC
+001E79         ?C0009?IIC:
+001E79 AE04              MOV     R6,AR4
+001E7B AF05              MOV     R7,AR5
+001E7D         ?C0010?IIC:
+001E7D 904EA6            MOV     DPTR,#curr_len
+001E80 EE                MOV     A,R6
+001E81 F0                MOVX    @DPTR,A
+001E82 FC                MOV     R4,A
+001E83 A3                INC     DPTR
+001E84 EF                MOV     A,R7
+001E85 F0                MOVX    @DPTR,A
+001E86 FD                MOV     R5,A
+   55: 		len -= curr_len;
+001E87 C3                CLR     C
+001E88 904EA2            MOV     DPTR,#len+01H
+001E8B E0                MOVX    A,@DPTR
+001E8C 9D                SUBB    A,R5
+001E8D F0                MOVX    @DPTR,A
+001E8E 904EA1            MOV     DPTR,#len
+001E91 E0                MOVX    A,@DPTR
+001E92 9C                SUBB    A,R4
+001E93 F0                MOVX    @DPTR,A
+   56: 		IIC_write(addr, curr_len, pbuff);
+001E94 904E9F            MOV     DPTR,#addr
+001E97 E0                MOVX    A,@DPTR
+001E98 FE                MOV     R6,A
+001E99 A3                INC     DPTR
+001E9A E0                MOVX    A,@DPTR
+001E9B FF                MOV     R7,A
+001E9C 904EA3            MOV     DPTR,#pbuff
+001E9F E0                MOVX    A,@DPTR
+001EA0 FB                MOV     R3,A
+001EA1 A3                INC     DPTR
+001EA2 E0                MOVX    A,@DPTR
+001EA3 FA                MOV     R2,A
+001EA4 A3                INC     DPTR
+001EA5 E0                MOVX    A,@DPTR
+001EA6 F9                MOV     R1,A
+001EA7 123E6D            LCALL   _IIC_write
+   57: 		Delay1ms(10);
+001EAA 7F0A              MOV     R7,#0AH
+001EAC 120F6E            LCALL   _Delay1ms
+   58: 		pbuff += curr_len;
+001EAF 904EA6            MOV     DPTR,#curr_len
+001EB2 E0                MOVX    A,@DPTR
+001EB3 FE                MOV     R6,A
+001EB4 A3                INC     DPTR
+001EB5 E0                MOVX    A,@DPTR
+001EB6 FF                MOV     R7,A
+001EB7 904EA4            MOV     DPTR,#pbuff+01H
+001EBA EE                MOV     A,R6
+001EBB 8FF0              MOV     B,R7
+001EBD 120463            LCALL   ?C?IILDX
+   59: 		addr += curr_len;
+001EC0 904EA0            MOV     DPTR,#addr+01H
+001EC3 E0                MOVX    A,@DPTR
+001EC4 2F                ADD     A,R7
+001EC5 F0                MOVX    @DPTR,A
+001EC6 904E9F            MOV     DPTR,#addr
+001EC9 E0                MOVX    A,@DPTR
+001ECA 3E                ADDC    A,R6
+001ECB F0                MOVX    @DPTR,A
+   60: 	};
+001ECC C137              AJMP    ?C0007?IIC
+   61: }
+001ECE         ?C0011?IIC:
+001ECE 22                RET     
+----- FUNCTION _IIC_WriteBlock (END) -------
+
+
+----- FUNCTION _IIC_Read (BEGIN) -----
+ FILE: 'iic.c'
+   16: void IIC_Read(word addr, word len, byte * pbuff)
+   17: {
+001ECF 904EE0            MOV     DPTR,#len
+001ED2 EC                MOV     A,R4
+001ED3 F0                MOVX    @DPTR,A
+001ED4 A3                INC     DPTR
+001ED5 ED                MOV     A,R5
+001ED6 F0                MOVX    @DPTR,A
+001ED7 A3                INC     DPTR
+001ED8 EB                MOV     A,R3
+001ED9 F0                MOVX    @DPTR,A
+001EDA A3                INC     DPTR
+001EDB EA                MOV     A,R2
+001EDC F0                MOVX    @DPTR,A
+001EDD A3                INC     DPTR
+001EDE E9                MOV     A,R1
+001EDF F0                MOVX    @DPTR,A
+;---- Variable 'addr' assigned to Register 'R6/R7' ----
+   18: 	word mem_src = addr;
+   19: 	REG_IICD_TXLEN = ESWAP(4);
+;---- Variable 'mem_src' assigned to Register 'R6/R7' ----
+   20: 	YC_IICDTbuf[0] = 0xa0 | EEP_DEV_ADDR;
+001EE0 908098            MOV     DPTR,#08098H
+001EE3 7404              MOV     A,#04H
+001EE5 F0                MOVX    @DPTR,A
+001EE6 A3                INC     DPTR
+001EE7 E4                CLR     A
+001EE8 F0                MOVX    @DPTR,A
+   21: 	*(word *) (YC_IICDTbuf + 1) = mem_src;
+001EE9 900CAF            MOV     DPTR,#YC_IICDTbuf
+001EEC 74A0              MOV     A,#0A0H
+001EEE F0                MOVX    @DPTR,A
+   22: 	YC_IICDTbuf[3] = 0xa1 | EEP_DEV_ADDR;
+001EEF A3                INC     DPTR
+001EF0 EE                MOV     A,R6
+001EF1 F0                MOVX    @DPTR,A
+001EF2 A3                INC     DPTR
+001EF3 EF                MOV     A,R7
+001EF4 F0                MOVX    @DPTR,A
+   23: 	REG_IICD_TXADDR = ESWAP((word) & YC_IICDTbuf);
+001EF5 900CB2            MOV     DPTR,#YC_IICDTbuf+03H
+001EF8 74A1              MOV     A,#0A1H
+001EFA F0                MOVX    @DPTR,A
+   24: 	REG_IICD_RXLEN = ESWAP(len);
+001EFB 7A0C              MOV     R2,#HIGH YC_IICDTbuf
+001EFD 79AF              MOV     R1,#LOW YC_IICDTbuf
+001EFF 7E0C              MOV     R6,#HIGH YC_IICDTbuf
+001F01 7FAF              MOV     R7,#LOW YC_IICDTbuf
+001F03 74AF              MOV     A,#LOW YC_IICDTbuf
+001F05 FC                MOV     R4,A
+001F06 740C              MOV     A,#HIGH YC_IICDTbuf
+001F08 FF                MOV     R7,A
+001F09 EC                MOV     A,R4
+001F0A FE                MOV     R6,A
+001F0B EF                MOV     A,R7
+001F0C 90809A            MOV     DPTR,#0809AH
+001F0F EE                MOV     A,R6
+001F10 F0                MOVX    @DPTR,A
+001F11 A3                INC     DPTR
+001F12 EF                MOV     A,R7
+001F13 F0                MOVX    @DPTR,A
+   25: 	REG_IICD_RXADDR = ESWAP((word) IIC_TempBuff);
+001F14 904EE0            MOV     DPTR,#len
+001F17 E0                MOVX    A,@DPTR
+001F18 FC                MOV     R4,A
+001F19 A3                INC     DPTR
+001F1A E0                MOVX    A,@DPTR
+001F1B FA                MOV     R2,A
+001F1C EC                MOV     A,R4
+001F1D FF                MOV     R7,A
+001F1E EA                MOV     A,R2
+001F1F FE                MOV     R6,A
+001F20 EF                MOV     A,R7
+001F21 90809E            MOV     DPTR,#0809EH
+001F24 EE                MOV     A,R6
+001F25 F0                MOVX    @DPTR,A
+001F26 A3                INC     DPTR
+001F27 EF                MOV     A,R7
+001F28 F0                MOVX    @DPTR,A
+   26: 	REG_IICD_CTRL = 2;
+001F29 7A0B              MOV     R2,#HIGH IIC_TempBuff
+001F2B 7983              MOV     R1,#LOW IIC_TempBuff
+001F2D 7E0B              MOV     R6,#HIGH IIC_TempBuff
+001F2F 7F83              MOV     R7,#LOW IIC_TempBuff
+001F31 7483              MOV     A,#LOW IIC_TempBuff
+001F33 FC                MOV     R4,A
+001F34 740B              MOV     A,#HIGH IIC_TempBuff
+001F36 FF                MOV     R7,A
+001F37 EC                MOV     A,R4
+001F38 FE                MOV     R6,A
+001F39 EF                MOV     A,R7
+001F3A 90809C            MOV     DPTR,#0809CH
+001F3D EE                MOV     A,R6
+001F3E F0                MOVX    @DPTR,A
+001F3F A3                INC     DPTR
+001F40 EF                MOV     A,R7
+001F41 F0                MOVX    @DPTR,A
+   27: 	if (!(REG_IICD_RXADDR & (1 << 7))) {
+001F42 908090            MOV     DPTR,#08090H
+001F45 7402              MOV     A,#02H
+001F47 F0                MOVX    @DPTR,A
+   28: 		REG_IICD_CTRL |= 1;
+001F48 90809C            MOV     DPTR,#0809CH
+001F4B A3                INC     DPTR
+001F4C E0                MOVX    A,@DPTR
+001F4D 20E707            JB      ACC.7,?C0004?IIC
+   29: 	}
+001F50 908090            MOV     DPTR,#08090H
+001F53 E0                MOVX    A,@DPTR
+001F54 4401              ORL     A,#01H
+001F56 F0                MOVX    @DPTR,A
+   30: 	REG_MISC_CTRL |= 1 << 2;	//start iic dma
+001F57         ?C0004?IIC:
+   31: 	IIcWaitDone();
+001F57 908006            MOV     DPTR,#08006H
+001F5A E0                MOVX    A,@DPTR
+001F5B 4404              ORL     A,#04H
+001F5D F0                MOVX    @DPTR,A
+   32: 	xmemcpy(pbuff, IIC_TempBuff, len);
+001F5E F1D2              ACALL   IIcWaitDone
+   33: }
+001F60 904EE2            MOV     DPTR,#pbuff
+001F63 E0                MOVX    A,@DPTR
+001F64 A3                INC     DPTR
+001F65 E0                MOVX    A,@DPTR
+001F66 FA                MOV     R2,A
+001F67 A3                INC     DPTR
+001F68 E0                MOVX    A,@DPTR
+001F69 AE02              MOV     R6,AR2
+001F6B FF                MOV     R7,A
+001F6C 7B01              MOV     R3,#01H
+001F6E 7A0B              MOV     R2,#HIGH IIC_TempBuff
+001F70 7983              MOV     R1,#LOW IIC_TempBuff
+001F72 904EE0            MOV     DPTR,#len
+001F75 E0                MOVX    A,@DPTR
+001F76 A3                INC     DPTR
+001F77 E0                MOVX    A,@DPTR
+001F78 904ED0            MOV     DPTR,#?_xmemcpy?BYTE+05H
+001F7B F0                MOVX    @DPTR,A
+001F7C 0210C8            LJMP    _xmemcpy
+----- FUNCTION _IIC_Read (END) -------
+
+
+----- FUNCTION IPC_WaitLpm (BEGIN) -----
+ FILE: 'ipc.c'
+  125: void IPC_WaitLpm()
+  126: {
+  127: 	lpm_flag = 0;
+  128: 	current_task = 0;
+001F7F E4                CLR     A
+001F80 900B7F            MOV     DPTR,#lpm_flag
+001F83 F0                MOVX    @DPTR,A
+  129: 	Delay1ms(1);
+001F84 900B7E            MOV     DPTR,#current_task
+001F87 F0                MOVX    @DPTR,A
+  130: }
+001F88 7F01              MOV     R7,#01H
+001F8A 020F6E            LJMP    _Delay1ms
+----- FUNCTION IPC_WaitLpm (END) -------
+
+
+----- FUNCTION KS_Initialize (BEGIN) -----
+ FILE: 'keyscan.c'
+  153: void KS_Initialize()
+  154: {
+  155: 	REG_GPIO_SELECT(0) = 0;
+  156: 	REG_GPIO_SELECT(1) = 0;
+001F8D 908080            MOV     DPTR,#08080H
+001F90 E4                CLR     A
+001F91 F0                MOVX    @DPTR,A
+  157: 	REG_GPIO_SELECT(2) = 0;
+001F92 A3                INC     DPTR
+001F93 F0                MOVX    @DPTR,A
+  158: 	ksRawInitialize();
+001F94 A3                INC     DPTR
+001F95 F0                MOVX    @DPTR,A
+  159: 	ksColInitialize();
+001F96 123692            LCALL   ksRawInitialize
+;----                  JMP     ksColInitialize
+  160: }
+----- FUNCTION KS_Initialize (END) -------
+
+
+----- FUNCTION ksColInitialize (BEGIN) -----
+ FILE: 'keyscan.c'
+  145: static void ksColInitialize()
+  146: {
+  147: 	byte i = 0;
+  148: 	for (i=0; col[i]!=0; i++) {
+001F99 E4                CLR     A
+001F9A 904F1E            MOV     DPTR,#i
+001F9D F0                MOVX    @DPTR,A
+  149: 		GPIO_SetInput(col[i], 0);
+001F9E F0                MOVX    @DPTR,A
+001F9F         ?C0039?KEYSCAN:
+001F9F 904F1E            MOV     DPTR,#i
+001FA2 E0                MOVX    A,@DPTR
+001FA3 9006D6            MOV     DPTR,#col
+001FA6 93                MOVC    A,@A+DPTR
+001FA7 FF                MOV     R7,A
+001FA8 600D              JZ      ?C0042?KEYSCAN
+  150: 	}
+001FAA C205              CLR     ?_GPIO_SetInput?BIT
+001FAC 1236AF            LCALL   _GPIO_SetInput
+  151: }
+001FAF 904F1E            MOV     DPTR,#i
+001FB2 E0                MOVX    A,@DPTR
+001FB3 04                INC     A
+001FB4 F0                MOVX    @DPTR,A
+001FB5 80E8              SJMP    ?C0039?KEYSCAN
+  152: 
+001FB7         ?C0042?KEYSCAN:
+001FB7 22                RET     
+----- FUNCTION ksColInitialize (END) -------
+
+
+----- FUNCTION System_Hardware_init (BEGIN) -----
+ FILE: 'sys.c'
+   55: static void System_Hardware_init()
+   56: {
+   57: 	System_IIC_clk_setup();
+   58: 	KS_Initialize();
+001FB8 F1BF              ACALL   System_IIC_clk_setup
+   59: 	LED_all_shutdown();
+001FBA F18D              ACALL   KS_Initialize
+   60: }
+001FBC 020CAC            LJMP    LED_all_shutdown
+----- FUNCTION System_Hardware_init (END) -------
+
+
+----- FUNCTION System_IIC_clk_setup (BEGIN) -----
+ FILE: 'sys.c'
+   45: static void System_IIC_clk_setup()		// 400KHz
+   46: {
+   47: 	REG_IICD_SCL_LOW  =  0x0d;
+   48:    	REG_IICD_SCL_HIGH  =  0x0e;
+001FBF 908091            MOV     DPTR,#08091H
+001FC2 740D              MOV     A,#0DH
+001FC4 F0                MOVX    @DPTR,A
+   49:    	REG_IICD_START_SETUP  = 0x0e;
+001FC5 A3                INC     DPTR
+001FC6 04                INC     A
+001FC7 F0                MOVX    @DPTR,A
+   50:    	REG_IICD_START_HOLD  = 0x0e;
+001FC8 A3                INC     DPTR
+001FC9 F0                MOVX    @DPTR,A
+   51:   	REG_IICD_STOP_SETUP  = 0x0e;
+001FCA A3                INC     DPTR
+001FCB F0                MOVX    @DPTR,A
+   52:    	REG_IICD_DATA_SETUP  = 0x0d;
+001FCC A3                INC     DPTR
+001FCD F0                MOVX    @DPTR,A
+   53: }
+001FCE A3                INC     DPTR
+001FCF 14                DEC     A
+001FD0 F0                MOVX    @DPTR,A
+   54: 
+001FD1 22                RET     
+----- FUNCTION System_IIC_clk_setup (END) -------
+
+
+----- FUNCTION IIcWaitDone (BEGIN) -----
+ FILE: 'iic.c'
+   11: static void IIcWaitDone(void)
+   12: {
+   13: 	while (!(REG_DMA_STATUS & (1 << 5))) ;
+001FD2         ?C0001?IIC:
+   14: }
+001FD2 90812C            MOV     DPTR,#0812CH
+001FD5 E0                MOVX    A,@DPTR
+001FD6 30E5F9            JNB     ACC.5,?C0001?IIC
+   15: 
+001FD9 22                RET     
+----- FUNCTION IIcWaitDone (END) -------
+
+
+----- FUNCTION YC_start_reconnect (BEGIN) -----
+ FILE: 'bluetooth.c'
+  198: void YC_start_reconnect()
+  199: {
+  200: 	power_on_flag = 2;
+  201: 
+001FDA 904DFA            MOV     DPTR,#power_on_flag
+001FDD 7402              MOV     A,#02H
+001FDF F0                MOVX    @DPTR,A
+  202: 	IIC_Read(EEPROM_RECON_INFO_BASE ,sizeof(BD_KEY_RECORD)*3, (byte *)bd_key_record_list);
+001FE0 7B01              MOV     R3,#01H
+001FE2 7A4D              MOV     R2,#HIGH bd_key_record_list
+001FE4 79FD              MOV     R1,#LOW bd_key_record_list
+001FE6 7D5A              MOV     R5,#05AH
+001FE8 7C00              MOV     R4,#00H
+001FEA 7F60              MOV     R7,#060H
+001FEC 7E7F              MOV     R6,#07FH
+001FEE D1CF              ACALL   _IIC_Read
+  203: 	Delay1ms(10);
+001FF0 7F0A              MOV     R7,#0AH
+001FF2 120F6E            LCALL   _Delay1ms
+  204: 	IIC_Read(EEPROM_RECON_INFO_BASE_6+2,4 , (byte *)m_24g_addr);
+001FF5 7B01              MOV     R3,#01H
+001FF7 7A4C              MOV     R2,#HIGH m_24g_addr
+001FF9 7900              MOV     R1,#LOW m_24g_addr
+001FFB 7D04              MOV     R5,#04H
+001FFD 7C00              MOV     R4,#00H
+001FFF 7F52              MOV     R7,#052H
+002001 7E7F              MOV     R6,#07FH
+002003 121ECF            LCALL   _IIC_Read
+  205: 	Delay1ms(10);
+002006 7F0A              MOV     R7,#0AH
+002008 120F6E            LCALL   _Delay1ms
+  206: 	IIC_Read(EEPROM_RECON_INFO_G24_SYTEM_MODE ,1 ,(byte *)&g_variable.system_mode);
+00200B 7B01              MOV     R3,#01H
+00200D 7A4C              MOV     R2,#HIGH g_variable+02H
+00200F 79A0              MOV     R1,#LOW g_variable+02H
+002011 7D01              MOV     R5,#01H
+002013 7C00              MOV     R4,#00H
+002015 7F57              MOV     R7,#057H
+002017 7E7F              MOV     R6,#07FH
+002019 121ECF            LCALL   _IIC_Read
+  207: 	Delay1ms(10);
+00201C 7F0A              MOV     R7,#0AH
+00201E 120F6E            LCALL   _Delay1ms
+  208: 	
+  209: 	if (g_variable.current_device_num <= 3 && g_variable.current_device_num >= 1)
+002021 904CA2            MOV     DPTR,#g_variable+04H
+002024 E0                MOVX    A,@DPTR
+002025 FF                MOV     R7,A
+002026 D3                SETB    C
+002027 9403              SUBB    A,#03H
+002029 5020              JNC     ?C0039?BLUETOOTH
+00202B EF                MOV     A,R7
+00202C C3                CLR     C
+00202D 9401              SUBB    A,#01H
+00202F 401A              JC      ?C0039?BLUETOOTH
+  210: 	{
+  211: 		g_variable.system_mode = bd_key_record_list[g_variable.current_device_num - 1].system_mode;
+002031 EF                MOV     A,R7
+002032 75F01E            MOV     B,#01EH
+002035 A4                MUL     AB
+002036 24FC              ADD     A,#LOW bd_key_record_list-01H
+002038 F582              MOV     DPL,A
+00203A E4                CLR     A
+00203B 344D              ADDC    A,#HIGH bd_key_record_list-01H
+00203D F583              MOV     DPH,A
+00203F E0                MOVX    A,@DPTR
+002040 904CA0            MOV     DPTR,#g_variable+02H
+002043 F0                MOVX    @DPTR,A
+  212: 		YC_key_action_handle(g_variable.current_device_num);
+002044 904CA2            MOV     DPTR,#g_variable+04H
+002047 E0                MOVX    A,@DPTR
+002048 020970            LJMP    _YC_key_action_handle
+  213: 	}
+00204B         ?C0039?BLUETOOTH:
+  214: 	else	
+  215: 	{	
+  216: 		YC_key_action_handle(KEY_START_24G);
+00204B 7F08              MOV     R7,#08H
+00204D 020970            LJMP    _YC_key_action_handle
+  217: 	}
+----- FUNCTION YC_start_reconnect (END) -------
+
+
+----- FUNCTION YC_g24_mode_discovery (BEGIN) -----
+ FILE: 'bluetooth.c'
+  186: byte YC_g24_mode_discovery()
+  187: {
+  188: 	if (g_variable.last_device_num == 0xfe ||g_variable.last_device_num == 0x00)
+  189: 	{
+002050 904C9F            MOV     DPTR,#g_variable+01H
+002053 E0                MOVX    A,@DPTR
+002054 FF                MOV     R7,A
+002055 64FE              XRL     A,#0FEH
+002057 6003              JZ      ?C0037?BLUETOOTH
+002059 EF                MOV     A,R7
+00205A 7008              JNZ     ?C0036?BLUETOOTH
+00205C         ?C0037?BLUETOOTH:
+  190: 		IPC_TxControlCmd(IPC_CMD_STOP_24G);
+  191: 		return 1;
+00205C 7F22              MOV     R7,#022H
+00205E 1208B3            LCALL   _IPC_TxControlCmd
+  192: 	}
+002061 7F01              MOV     R7,#01H
+002063 22                RET     
+  193: 	return 0;
+002064         ?C0036?BLUETOOTH:
+  194: }
+002064 7F00              MOV     R7,#00H
+  195: 
+002066 22                RET     
+----- FUNCTION YC_g24_mode_discovery (END) -------
+
+
+----- FUNCTION YC_get_ble_ramdon_lap (BEGIN) -----
+ FILE: 'bluetooth.c'
+  222: void YC_get_ble_ramdon_lap()		
+  223: {
+  224: 	IIC_Read(EEPROM_RECON_INFO_RAMDON_LE_LAP1 ,2 ,(byte *)&g_variable.ble_ramdon_lap1);
+  225: 	g_variable.ble_ramdon_lap1++;
+002067 7B01              MOV     R3,#01H
+002069 7A4C              MOV     R2,#HIGH g_variable+033H
+00206B 79D1              MOV     R1,#LOW g_variable+033H
+00206D 7D02              MOV     R5,#02H
+00206F 7C00              MOV     R4,#00H
+002071 7FBE              MOV     R7,#0BEH
+002073 7E7F              MOV     R6,#07FH
+002075 121ECF            LCALL   _IIC_Read
+  226: 	g_variable.ble_ramdon_lap2++;
+002078 904CD1            MOV     DPTR,#g_variable+033H
+00207B E0                MOVX    A,@DPTR
+00207C 04                INC     A
+00207D F0                MOVX    @DPTR,A
+  227: 	m_le_lap[1] = g_variable.ble_ramdon_lap1;
+00207E A3                INC     DPTR
+00207F E0                MOVX    A,@DPTR
+002080 04                INC     A
+002081 F0                MOVX    @DPTR,A
+  228: 	m_le_lap[2] = g_variable.ble_ramdon_lap2;
+002082 904CD1            MOV     DPTR,#g_variable+033H
+002085 E0                MOVX    A,@DPTR
+002086 9044FA            MOV     DPTR,#m_le_lap+01H
+002089 F0                MOVX    @DPTR,A
+  229: 	m_le_lap[3] = le_lap_temp[0];
+00208A 904CD2            MOV     DPTR,#g_variable+034H
+00208D E0                MOVX    A,@DPTR
+00208E 9044FB            MOV     DPTR,#m_le_lap+02H
+002091 F0                MOVX    @DPTR,A
+  230: 	m_le_lap[4] = le_lap_temp[1];
+002092 904DD0            MOV     DPTR,#le_lap_temp
+002095 E0                MOVX    A,@DPTR
+002096 9044FC            MOV     DPTR,#m_le_lap+03H
+002099 F0                MOVX    @DPTR,A
+  231: 	m_le_lap[5] = le_lap_temp[2];
+00209A 904DD1            MOV     DPTR,#le_lap_temp+01H
+00209D E0                MOVX    A,@DPTR
+00209E 9044FD            MOV     DPTR,#m_le_lap+04H
+0020A1 F0                MOVX    @DPTR,A
+  232: }
+0020A2 904DD2            MOV     DPTR,#le_lap_temp+02H
+0020A5 E0                MOVX    A,@DPTR
+0020A6 9044FE            MOV     DPTR,#m_le_lap+05H
+0020A9 F0                MOVX    @DPTR,A
+  233: 
+0020AA 22                RET     
+----- FUNCTION YC_get_ble_ramdon_lap (END) -------
+
+
+----- FUNCTION YC_wait_disconnect_timer500ms (BEGIN) -----
+ FILE: 'sys.c'
+  631: void YC_wait_disconnect_timer500ms()
+  632: {
+  633: //before discovery/adv,if current state is connected,wait disconnect done
+  634: 	if (action_timeout!=0)
+0020AB 904DFB            MOV     DPTR,#action_timeout
+0020AE E0                MOVX    A,@DPTR
+0020AF 6045              JZ      ?C0110?SYS
+  635: 	{
+  636: 		action_timeout--;
+0020B1 E0                MOVX    A,@DPTR
+0020B2 14                DEC     A
+0020B3 F0                MOVX    @DPTR,A
+  637: 		if(action_timeout == 0)
+0020B4 E0                MOVX    A,@DPTR
+0020B5 703F              JNZ     ?C0110?SYS
+  638: 		{
+  639: 			if(g_variable.key_action == KEY_DISCOVERY
+0020B7 904CCC            MOV     DPTR,#g_variable+02EH
+0020BA E0                MOVX    A,@DPTR
+0020BB B40538            CJNE    A,#05H,?C0110?SYS
+0020BE 9047F4            MOV     DPTR,#m_ui_state_map
+0020C1 E0                MOVX    A,@DPTR
+0020C2 5440              ANL     A,#040H
+0020C4 FE                MOV     R6,A
+0020C5 A3                INC     DPTR
+0020C6 E0                MOVX    A,@DPTR
+0020C7 5408              ANL     A,#08H
+0020C9 6408              XRL     A,#08H
+0020CB 7003              JNZ     ?C0190?SYS
+0020CD EE                MOV     A,R6
+0020CE 6440              XRL     A,#040H
+0020D0         ?C0190?SYS:
+0020D0 6024              JZ      ?C0110?SYS
+  640: 		#if DEVICE_MODE_BT_ONLY
+  641: 			&& (m_ui_state_map & 0x4000) != 0x4000)
+  642: 		#elif DEVICE_MODE_BLE_ONLY	
+  643: 			&& (m_ui_state_map & 0x0008) != 0x0008)
+  644: 		#else	
+  645: 			&& (m_ui_state_map & 0x4008) != 0x4008)
+  646: 		#endif
+  647: 			{
+  648: //				m_lpm_mode = 0;
+  649: 				ble_send_secutiry_request_timer = 0;
+0020D2 E4                CLR     A
+0020D3 904DE3            MOV     DPTR,#ble_send_secutiry_request_timer
+0020D6 F0                MOVX    @DPTR,A
+  650: 				g_variable.pairing_timeout = BT_PAIRING_TIME_OUT_30S;
+0020D7 904CC8            MOV     DPTR,#g_variable+02AH
+0020DA 743C              MOV     A,#03CH
+0020DC F0                MOVX    @DPTR,A
+  651: 				g_variable.pairing_g24_timeout = 0;
+0020DD E4                CLR     A
+0020DE 904CCD            MOV     DPTR,#g_variable+02FH
+0020E1 F0                MOVX    @DPTR,A
+  652: 				fast_connect_flag = 0;
+0020E2 904E61            MOV     DPTR,#fast_connect_flag
+0020E5 F0                MOVX    @DPTR,A
+  653: 				ble_fast_connect_flag = 0;
+0020E6 904DE2            MOV     DPTR,#ble_fast_connect_flag
+0020E9 F0                MOVX    @DPTR,A
+  654: 			#if DEVICE_MODE_BT_ONLY
+  655: 				IPC_TxControlCmd(IPC_CMD_START_DISCOVERY);
+  656: 			#elif DEVICE_MODE_BLE_ONLY	
+  657: 				YC_get_ble_ramdon_lap();
+  658: 				IPC_TxControlCmd(IPC_CMD_START_ADV);
+  659: 			#else	
+  660: 				YC_get_ble_ramdon_lap();
+0020EA 1167              ACALL   YC_get_ble_ramdon_lap
+  661: 				IPC_TxControlCmd(IPC_CMD_START_ADV_DISCOVERY);
+0020EC 7F2C              MOV     R7,#02CH
+0020EE 1208B3            LCALL   _IPC_TxControlCmd
+  662: 			#endif
+  663: 				g_variable.key_action = KEY_NONE;
+0020F1 E4                CLR     A
+0020F2 904CCC            MOV     DPTR,#g_variable+02EH
+0020F5 F0                MOVX    @DPTR,A
+  664: 			}
+  665: 		}
+  666: 	}
+  667: 
+  668: }
+0020F6         ?C0110?SYS:
+0020F6 22                RET     
+----- FUNCTION YC_wait_disconnect_timer500ms (END) -------
+
+
+----- FUNCTION kb_cb_Timer500ms (BEGIN) -----
+ FILE: 'sys.c'
+  823: static void kb_cb_Timer500ms()
+  824: {
+  825: 	LED_timer500ms();	
+  826: 
+0020F7 312A              ACALL   LED_timer500ms
+  827: 	g_variable.sleepTimer++;
+0020F9 904CC3            MOV     DPTR,#g_variable+025H
+0020FC E0                MOVX    A,@DPTR
+0020FD 04                INC     A
+0020FE F0                MOVX    @DPTR,A
+0020FF 7006              JNZ     ?C0191?SYS
+002101 904CC2            MOV     DPTR,#g_variable+024H
+002104 E0                MOVX    A,@DPTR
+002105 04                INC     A
+002106 F0                MOVX    @DPTR,A
+002107         ?C0191?SYS:
+  828: 
+  829: 	YC_adc_check_timer500ms();
+002107 5182              ACALL   YC_adc_check_timer500ms
+  830: 	YC_connect_timeout_500ms();
+002109 1216E4            LCALL   YC_connect_timeout_500ms
+  831: 	kb_button_press_timer500ms();
+00210C 120B71            LCALL   kb_button_press_timer500ms
+  832: 	YC_wait_disconnect_timer500ms();
+00210F 11AB              ACALL   YC_wait_disconnect_timer500ms
+  833: 	YC_pairing_timerout_500ms();
+002111 5107              ACALL   YC_pairing_timerout_500ms
+  834: 	
+  835: 	
+  836: 	if((g_variable.br_currentSubState ==  CHANGE_TO_BR_SUB_PINCODE)
+002113 904CA9            MOV     DPTR,#g_variable+0BH
+002116 E0                MOVX    A,@DPTR
+002117 6402              XRL     A,#02H
+002119 6007              JZ      ?C0142?SYS
+00211B 904CA7            MOV     DPTR,#g_variable+09H
+00211E E0                MOVX    A,@DPTR
+00211F B40207            CJNE    A,#02H,?C0143?SYS
+002122         ?C0142?SYS:
+  837: 	|| (g_variable.ble_currentSubState ==  CHANGE_TO_BLE_SUB_PINCODE))
+  838: 	{
+  839: 		g_variable.sleepTimer = 0;				//wait macOS enter pincode
+002122 E4                CLR     A
+002123 904CC2            MOV     DPTR,#g_variable+024H
+002126 F0                MOVX    @DPTR,A
+002127 A3                INC     DPTR
+002128 F0                MOVX    @DPTR,A
+  840: 	}
+  841: 	
+  842: 	return;
+  843: }
+002129         ?C0143?SYS:
+002129 22                RET     
+----- FUNCTION kb_cb_Timer500ms (END) -------
+
+
+----- FUNCTION LED_timer500ms (BEGIN) -----
+ FILE: 'sys.c'
+  484: void LED_timer500ms()
+  485: {
+  486: 	if (power_on_flag != 2)
+  487: 		return;
+00212A 904DFA            MOV     DPTR,#power_on_flag
+00212D E0                MOVX    A,@DPTR
+00212E 6402              XRL     A,#02H
+002130 6002              JZ      $ + 4H
+002132 21EA              AJMP    ?C0074?SYS
+002134         ?C0073?SYS:
+  488: 	if (g_variable.pairing_timeout != 0) //bt  pairing
+002134 904CC8            MOV     DPTR,#g_variable+02AH
+002137 E0                MOVX    A,@DPTR
+002138 604D              JZ      ?C0075?SYS
+  489: 	{
+  490: 			g_variable.sleepTimer = 0;
+00213A E4                CLR     A
+00213B 904CC2            MOV     DPTR,#g_variable+024H
+00213E F0                MOVX    @DPTR,A
+00213F A3                INC     DPTR
+002140 F0                MOVX    @DPTR,A
+  491: 			g_variable.fast_connect_send_name = 0;
+002141 904CDB            MOV     DPTR,#g_variable+03DH
+002144 F0                MOVX    @DPTR,A
+  492: 			g_variable.pairing_timeout--;
+002145 904CC8            MOV     DPTR,#g_variable+02AH
+002148 E0                MOVX    A,@DPTR
+002149 14                DEC     A
+00214A F0                MOVX    @DPTR,A
+  493: 			if (g_variable.pairing_timeout & 0x01)
+00214B E0                MOVX    A,@DPTR
+00214C 30E01C            JNB     ACC.0,?C0076?SYS
+  494: 			{
+  495: 				if (g_variable.button_reconnect_flag != 1)
+00214F 904CAB            MOV     DPTR,#g_variable+0DH
+002152 E0                MOVX    A,@DPTR
+002153 6401              XRL     A,#01H
+002155 6014              JZ      ?C0076?SYS
+  496: 				{
+  497: 					if((g_variable.current_device_num <= 2 && g_variable.current_device_num >= 1))
+002157 904CA2            MOV     DPTR,#g_variable+04H
+00215A E0                MOVX    A,@DPTR
+00215B FF                MOV     R7,A
+00215C D3                SETB    C
+00215D 9402              SUBB    A,#02H
+00215F 500A              JNC     ?C0076?SYS
+002161 EF                MOV     A,R7
+002162 C3                CLR     C
+002163 9401              SUBB    A,#01H
+002165 4004              JC      ?C0076?SYS
+  498: 					{
+  499: 						GPIO_FlipOutBit(BT_BUTTON_GPIO);
+002167 7F1E              MOV     R7,#01EH
+002169 31EB              ACALL   _GPIO_FlipOutBit
+  500: 				
+  501: 					}
+  502: 				}
+  503: 				
+  504: 			}
+00216B         ?C0076?SYS:
+  505: 			if (g_variable.pairing_timeout == 0)
+00216B 904CC8            MOV     DPTR,#g_variable+02AH
+00216E E0                MOVX    A,@DPTR
+00216F 703F              JNZ     ?C0080?SYS
+  506: 		{
+  507: 			g_variable.current_device_num = g_variable.temp_device_num;
+002171 904CA3            MOV     DPTR,#g_variable+05H
+002174 E0                MOVX    A,@DPTR
+002175 904CA2            MOV     DPTR,#g_variable+04H
+002178 F0                MOVX    @DPTR,A
+  508: 			g_variable.last_device_num = g_variable.current_device_num;
+002179 904C9F            MOV     DPTR,#g_variable+01H
+00217C F0                MOVX    @DPTR,A
+  509: 		
+  510: 			YC_key_action_handle(KEY_STOP_DISCOVERY);
+00217D 7F0D              MOV     R7,#0DH
+00217F 120970            LCALL   _YC_key_action_handle
+  511: 			System_long_sleep();
+002182 120FD8            LCALL   System_long_sleep
+  512: 		}
+  513: 	}
+002185 8029              SJMP    ?C0080?SYS
+002187         ?C0075?SYS:
+  514: 	else if (g_variable.pairing_g24_timeout != 0)
+002187 904CCD            MOV     DPTR,#g_variable+02FH
+00218A E0                MOVX    A,@DPTR
+00218B 6023              JZ      ?C0080?SYS
+  515: 	{
+  516: 			g_variable.sleepTimer = 0;
+00218D E4                CLR     A
+00218E 904CC2            MOV     DPTR,#g_variable+024H
+002191 F0                MOVX    @DPTR,A
+002192 A3                INC     DPTR
+002193 F0                MOVX    @DPTR,A
+  517: 			g_variable.pairing_g24_timeout--;
+002194 904CCD            MOV     DPTR,#g_variable+02FH
+002197 E0                MOVX    A,@DPTR
+002198 14                DEC     A
+002199 F0                MOVX    @DPTR,A
+  518: 			if (g_variable.pairing_g24_timeout & 0x01)
+00219A E0                MOVX    A,@DPTR
+00219B 30E004            JNB     ACC.0,?C0082?SYS
+  519: 			{
+  520: 				
+  521: 				GPIO_FlipOutBit(BT_BUTTON_GPIO);
+00219E 7F1E              MOV     R7,#01EH
+0021A0 31EB              ACALL   _GPIO_FlipOutBit
+  522: 			}
+0021A2         ?C0082?SYS:
+  523: 				if (g_variable.pairing_g24_timeout == 0)
+0021A2 904CCD            MOV     DPTR,#g_variable+02FH
+0021A5 E0                MOVX    A,@DPTR
+0021A6 7008              JNZ     ?C0080?SYS
+  524: 				{
+  525: 		//			IPC_TxControlCmd(IPC_CMD_STOP_24G);
+  526: 					Delay1ms(10);
+0021A8 7F0A              MOV     R7,#0AH
+0021AA 120F6E            LCALL   _Delay1ms
+  527: 					System_long_sleep();
+0021AD 120FD8            LCALL   System_long_sleep
+  528: 				}
+  529: 	
+  530: 		}
+0021B0         ?C0080?SYS:
+  531: if ((g_variable.pairing_timeout == 0) && (g_variable.pairing_g24_timeout == 0))  //  pairing
+0021B0 904CC8            MOV     DPTR,#g_variable+02AH
+0021B3 E0                MOVX    A,@DPTR
+0021B4 7034              JNZ     ?C0074?SYS
+0021B6 904CCD            MOV     DPTR,#g_variable+02FH
+0021B9 E0                MOVX    A,@DPTR
+0021BA 702E              JNZ     ?C0074?SYS
+  532: 	{
+  533: 		if(g_variable.battery_low_led_flash_interval)
+0021BC 904CC1            MOV     DPTR,#g_variable+023H
+0021BF E0                MOVX    A,@DPTR
+0021C0 6023              JZ      ?C0085?SYS
+  534: 		{
+  535: 			if (g_variable.sleepTimer < LOW_BETTREY_TIME_OUT_3S)
+0021C2 C3                CLR     C
+0021C3 904CC3            MOV     DPTR,#g_variable+025H
+0021C6 E0                MOVX    A,@DPTR
+0021C7 9406              SUBB    A,#06H
+0021C9 904CC2            MOV     DPTR,#g_variable+024H
+0021CC E0                MOVX    A,@DPTR
+0021CD 9400              SUBB    A,#00H
+0021CF 500E              JNC     ?C0086?SYS
+  536: 			{
+  537: 				g_variable.battery_low_led_flash_interval++;
+0021D1 904CC1            MOV     DPTR,#g_variable+023H
+0021D4 E0                MOVX    A,@DPTR
+0021D5 04                INC     A
+0021D6 F0                MOVX    @DPTR,A
+  538: 				if(g_variable.battery_low_led_flash_interval & 0x02)
+0021D7 E0                MOVX    A,@DPTR
+0021D8 30E10F            JNB     ACC.1,?C0074?SYS
+  539: 				{
+  540: 					GPIO_FlipOutBit(LOWPOWER_LED_GPIO);
+0021DB 7F1E              MOV     R7,#01EH
+0021DD 800C              SJMP    _GPIO_FlipOutBit
+  541: 				}
+  542: 			}
+0021DF         ?C0086?SYS:
+  543: 			else
+  544: 				g_variable.battery_low_led_flash_interval = 0;
+0021DF E4                CLR     A
+0021E0 904CC1            MOV     DPTR,#g_variable+023H
+0021E3 F0                MOVX    @DPTR,A
+  545: 		}
+0021E4 22                RET     
+0021E5         ?C0085?SYS:
+  546: 		else
+  547: 		g_variable.battery_low_led_flash_interval = 0;	
+0021E5 E4                CLR     A
+0021E6 904CC1            MOV     DPTR,#g_variable+023H
+0021E9 F0                MOVX    @DPTR,A
+  548: 	}
+  549: 
+  550: }
+0021EA         ?C0074?SYS:
+0021EA 22                RET     
+----- FUNCTION LED_timer500ms (END) -------
+
+
+----- FUNCTION _GPIO_FlipOutBit (BEGIN) -----
+ FILE: 'gpio.c'
+  125: void GPIO_FlipOutBit(byte gpio_num)
+  126: {
+0021EB 904F24            MOV     DPTR,#gpio_num
+0021EE EF                MOV     A,R7
+0021EF F0                MOVX    @DPTR,A
+  127: 	bool st = gpioGetBit(gpio_num, &REG_GPIO_OUT(0));
+  128: 	GPIO_Setout(gpio_num, ~st);
+0021F0 7B01              MOV     R3,#01H
+0021F2 7A80              MOV     R2,#080H
+0021F4 7974              MOV     R1,#074H
+0021F6 5194              ACALL   _gpioGetBit
+0021F8 9209              MOV     st,C
+  129: }
+0021FA 904F24            MOV     DPTR,#gpio_num
+0021FD E0                MOVX    A,@DPTR
+0021FE FF                MOV     R7,A
+0021FF A209              MOV     C,st
+002201 B3                CPL     C
+002202 9201              MOV     ?_GPIO_Setout?BIT,C
+002204 020F5C            LJMP    _GPIO_Setout
+----- FUNCTION _GPIO_FlipOutBit (END) -------
+
+
+----- FUNCTION YC_pairing_timerout_500ms (BEGIN) -----
+ FILE: 'sys.c'
+  671: void YC_pairing_timerout_500ms()
+  672: {
+  673: //pairing timer
+  674: 	if (g_variable.pairing_timeout != 0)
+002207 904CC8            MOV     DPTR,#g_variable+02AH
+00220A E0                MOVX    A,@DPTR
+00220B 604B              JZ      ?C0111?SYS
+  675: 	{
+  676: 		g_variable.sleepTimer = 0;
+00220D E4                CLR     A
+00220E 904CC2            MOV     DPTR,#g_variable+024H
+002211 F0                MOVX    @DPTR,A
+002212 A3                INC     DPTR
+002213 F0                MOVX    @DPTR,A
+  677: 		g_variable.fast_connect_send_name = 0;
+002214 904CDB            MOV     DPTR,#g_variable+03DH
+002217 F0                MOVX    @DPTR,A
+  678: 		g_variable.pairing_timeout--;
+002218 904CC8            MOV     DPTR,#g_variable+02AH
+00221B E0                MOVX    A,@DPTR
+00221C 14                DEC     A
+00221D F0                MOVX    @DPTR,A
+  679: 		if (g_variable.pairing_timeout & 0x01)
+00221E E0                MOVX    A,@DPTR
+00221F 30E01C            JNB     ACC.0,?C0112?SYS
+  680: 		{
+  681: 			if (g_variable.button_reconnect_flag != 1)
+002222 904CAB            MOV     DPTR,#g_variable+0DH
+002225 E0                MOVX    A,@DPTR
+002226 6401              XRL     A,#01H
+002228 6014              JZ      ?C0112?SYS
+  682: 			{
+  683: 				if((g_variable.current_device_num <= 2 && g_variable.current_device_num >= 1))
+00222A 904CA2            MOV     DPTR,#g_variable+04H
+00222D E0                MOVX    A,@DPTR
+00222E FF                MOV     R7,A
+00222F D3                SETB    C
+002230 9402              SUBB    A,#02H
+002232 500A              JNC     ?C0112?SYS
+002234 EF                MOV     A,R7
+002235 C3                CLR     C
+002236 9401              SUBB    A,#01H
+002238 4004              JC      ?C0112?SYS
+  684: 				{
+  685: 					GPIO_FlipOutBit(BT_BUTTON_GPIO);
+00223A 7F1E              MOV     R7,#01EH
+00223C 31EB              ACALL   _GPIO_FlipOutBit
+  686: 			
+  687: 				}
+  688: 			}
+  689: 			
+  690: 		}		
+00223E         ?C0112?SYS:
+  691: 		if (g_variable.pairing_timeout == 0)
+00223E 904CC8            MOV     DPTR,#g_variable+02AH
+002241 E0                MOVX    A,@DPTR
+002242 7014              JNZ     ?C0111?SYS
+  692: 		{
+  693: 			g_variable.current_device_num = g_variable.temp_device_num;
+002244 904CA3            MOV     DPTR,#g_variable+05H
+002247 E0                MOVX    A,@DPTR
+002248 904CA2            MOV     DPTR,#g_variable+04H
+00224B F0                MOVX    @DPTR,A
+  694: 			g_variable.last_device_num = g_variable.current_device_num;
+00224C 904C9F            MOV     DPTR,#g_variable+01H
+00224F F0                MOVX    @DPTR,A
+  695: 		
+  696: 			YC_key_action_handle(KEY_STOP_DISCOVERY);
+002250 7F0D              MOV     R7,#0DH
+002252 120970            LCALL   _YC_key_action_handle
+  697: 			System_long_sleep();
+002255 120FD8            LCALL   System_long_sleep
+  698: 		}
+  699: 	}
+002258         ?C0111?SYS:
+  700: 
+  701: 	if (g_variable.pairing_g24_timeout != 0)
+002258 904CCD            MOV     DPTR,#g_variable+02FH
+00225B E0                MOVX    A,@DPTR
+00225C 6023              JZ      ?C0119?SYS
+  702: 	{
+  703: 		g_variable.sleepTimer = 0;
+00225E E4                CLR     A
+00225F 904CC2            MOV     DPTR,#g_variable+024H
+002262 F0                MOVX    @DPTR,A
+002263 A3                INC     DPTR
+002264 F0                MOVX    @DPTR,A
+  704: 		g_variable.pairing_g24_timeout--;
+002265 904CCD            MOV     DPTR,#g_variable+02FH
+002268 E0                MOVX    A,@DPTR
+002269 14                DEC     A
+00226A F0                MOVX    @DPTR,A
+  705: 		if (g_variable.pairing_g24_timeout & 0x01)
+00226B E0                MOVX    A,@DPTR
+00226C 30E004            JNB     ACC.0,?C0117?SYS
+  706: 		{
+  707: 			
+  708: 			GPIO_FlipOutBit(BT_BUTTON_GPIO);
+00226F 7F1E              MOV     R7,#01EH
+002271 31EB              ACALL   _GPIO_FlipOutBit
+  709: 		}
+002273         ?C0117?SYS:
+  710: 		if (g_variable.pairing_g24_timeout == 0)
+002273 904CCD            MOV     DPTR,#g_variable+02FH
+002276 E0                MOVX    A,@DPTR
+002277 7008              JNZ     ?C0119?SYS
+  711: 		{
+  712: //			IPC_TxControlCmd(IPC_CMD_STOP_24G);
+  713: 			Delay1ms(10);
+002279 7F0A              MOV     R7,#0AH
+00227B 120F6E            LCALL   _Delay1ms
+  714: 			System_long_sleep();
+00227E 120FD8            LCALL   System_long_sleep
+  715: 		}
+  716: 	}
+  717: }
+002281         ?C0119?SYS:
+002281 22                RET     
+----- FUNCTION YC_pairing_timerout_500ms (END) -------
+
+
+----- FUNCTION YC_adc_check_timer500ms (BEGIN) -----
+ FILE: 'adc.c'
+  103: void YC_adc_check_timer500ms()
+  104: {
+  105: #ifdef  ADC_ENABLE
+  106: 	// adc check timer	
+  107: 	if (g_variable.battery_check_interval)
+002282 904CB2            MOV     DPTR,#g_variable+014H
+002285 E0                MOVX    A,@DPTR
+002286 600B              JZ      ?C0019?ADC
+  108: 	{
+  109: 		g_variable.battery_check_interval--;
+002288 14                DEC     A
+002289 F0                MOVX    @DPTR,A
+  110: 		if (g_variable.battery_check_interval == 0)
+00228A E0                MOVX    A,@DPTR
+00228B 7006              JNZ     ?C0019?ADC
+  111: 		{
+  112: 			g_variable.battery_check_interval = BATTERY_CHECK_INTERVAL;
+00228D 7405              MOV     A,#05H
+00228F F0                MOVX    @DPTR,A
+  113: 			YC_adc_check();
+002290 123BB5            LCALL   YC_adc_check
+  114: 		}
+  115: 	}
+  116: #endif	
+  117: }
+002293         ?C0019?ADC:
+002293 22                RET     
+----- FUNCTION YC_adc_check_timer500ms (END) -------
+
+
+----- FUNCTION _gpioGetBit (BEGIN) -----
+ FILE: 'gpio.c'
+   26: static bool gpioGetBit(byte gpio_num, char *reg_base)
+   27: {
+;---- Variable 'gpio_num' assigned to Register 'R5' ----
+002294 AD07              MOV     R5,AR7
+;---- Variable 'reg_base' assigned to Register 'R1/R2/R3' ----
+   28: 	byte queue = 0;
+   29: 	byte group = 0;
+002296 E4                CLR     A
+002297 904F22            MOV     DPTR,#queue
+00229A F0                MOVX    @DPTR,A
+   30: 
+;---- Variable 'group' assigned to Register 'R6' ----
+00229B FE                MOV     R6,A
+   31: 	queue = (gpio_num & 7);
+00229C EF                MOV     A,R7
+00229D 5407              ANL     A,#07H
+00229F F0                MOVX    @DPTR,A
+   32: 	group = gpio_num >> 3 & 3;
+0022A0 EF                MOV     A,R7
+0022A1 13                RRC     A
+0022A2 13                RRC     A
+0022A3 13                RRC     A
+0022A4 5403              ANL     A,#03H
+0022A6 FE                MOV     R6,A
+   33: 	return (*(reg_base + group) & (1 << queue));
+0022A7 F582              MOV     DPL,A
+0022A9 758300            MOV     DPH,#00H
+0022AC 1203CF            LCALL   ?C?CLDOPTR
+0022AF FD                MOV     R5,A
+0022B0 33                RLC     A
+0022B1 95E0              SUBB    A,ACC
+0022B3 FC                MOV     R4,A
+0022B4 904F22            MOV     DPTR,#queue
+0022B7 E0                MOVX    A,@DPTR
+0022B8 FF                MOV     R7,A
+0022B9 7401              MOV     A,#01H
+0022BB 7E00              MOV     R6,#00H
+0022BD A807              MOV     R0,AR7
+0022BF 08                INC     R0
+0022C0 8005              SJMP    ?C0035?GPIO
+0022C2         ?C0034?GPIO:
+0022C2 C3                CLR     C
+0022C3 33                RLC     A
+0022C4 CE                XCH     A,R6
+0022C5 33                RLC     A
+0022C6 CE                XCH     A,R6
+0022C7         ?C0035?GPIO:
+0022C7 D8F9              DJNZ    R0,?C0034?GPIO
+0022C9 FF                MOV     R7,A
+0022CA EE                MOV     A,R6
+0022CB 5C                ANL     A,R4
+0022CC FE                MOV     R6,A
+0022CD EF                MOV     A,R7
+0022CE 5D                ANL     A,R5
+0022CF 4E                ORL     A,R6
+0022D0 24FF              ADD     A,#0FFH
+   34: 
+   35: }
+0022D2 22                RET     
+----- FUNCTION _gpioGetBit (END) -------
+
+
+----- FUNCTION _GPIO_GetInputStatus (BEGIN) -----
+ FILE: 'gpio.c'
+   37: bool GPIO_GetInputStatus(byte gpio_num)
+   38: {
+;---- Variable 'gpio_num' assigned to Register 'R7' ----
+   39: 	return gpioGetBit(gpio_num, &REG_GPIO_IN(0));
+   40: }
+0022D3 7B01              MOV     R3,#01H
+0022D5 7A81              MOV     R2,#081H
+0022D7 791C              MOV     R1,#01CH
+0022D9 80B9              SJMP    _gpioGetBit
+----- FUNCTION _GPIO_GetInputStatus (END) -------
+
+
+----- FUNCTION _GPIO_SetWakeupByCurrentState (BEGIN) -----
+ FILE: 'gpio.c'
+  119: void GPIO_SetWakeupByCurrentState(byte gpio_num)
+  120: {
+0022DB 904F23            MOV     DPTR,#gpio_num
+0022DE EF                MOV     A,R7
+0022DF F0                MOVX    @DPTR,A
+  121: 	bool st = GPIO_GetInputStatus(gpio_num);
+  122: 	GPIO_SetWakeup(gpio_num, ~st);
+0022E0 51D3              ACALL   _GPIO_GetInputStatus
+0022E2 9208              MOV     st,C
+  123: }
+0022E4 904F23            MOV     DPTR,#gpio_num
+0022E7 E0                MOVX    A,@DPTR
+0022E8 FF                MOV     R7,A
+0022E9 A208              MOV     C,st
+0022EB B3                CPL     C
+0022EC 9207              MOV     ?_GPIO_SetWakeup?BIT,C
+;----                  JMP     _GPIO_SetWakeup
+----- FUNCTION _GPIO_SetWakeupByCurrentState (END) -------
+
+
+----- FUNCTION _GPIO_SetWakeup (BEGIN) -----
+ FILE: 'gpio.c'
+   88: void GPIO_SetWakeup(byte gpio_num, bit st)
+   89: {
+;---- Variable 'gpio_num' assigned to Register 'R7' ----
+   90: 	byte queue, group;
+   91: 
+   92: 	if(gpio_num == 0xff)
+0022EE EF                MOV     A,R7
+0022EF F4                CPL     A
+0022F0 7002              JNZ     $ + 4H
+0022F2 6179              AJMP    ?C0019?GPIO
+0022F4         ?C0018?GPIO:
+   93: 		return;
+   94: 	queue = (gpio_num & 7);
+0022F4 EF                MOV     A,R7
+0022F5 5407              ANL     A,#07H
+0022F7 FE                MOV     R6,A
+;---- Variable 'queue' assigned to Register 'R6' ----
+   95: 	group = (gpio_num >> 3 & 3);
+0022F8 EF                MOV     A,R7
+0022F9 13                RRC     A
+0022FA 13                RRC     A
+0022FB 13                RRC     A
+0022FC 5403              ANL     A,#03H
+0022FE FF                MOV     R7,A
+;---- Variable 'group' assigned to Register 'R7' ----
+   96: 	if (st) {
+0022FF 300743            JNB     st,?C0020?GPIO
+   97: 		*(YC_GPIOWakeupL + group) &= ~(1 << queue);
+002302 24A3              ADD     A,#LOW YC_GPIOWakeupL
+002304 F582              MOV     DPL,A
+002306 E4                CLR     A
+002307 3400              ADDC    A,#HIGH YC_GPIOWakeupL
+002309 F583              MOV     DPH,A
+00230B C083              PUSH    DPH
+00230D C082              PUSH    DPL
+00230F E0                MOVX    A,@DPTR
+002310 FD                MOV     R5,A
+002311 7401              MOV     A,#01H
+002313 A806              MOV     R0,AR6
+002315 08                INC     R0
+002316 8002              SJMP    ?C0037?GPIO
+002318         ?C0036?GPIO:
+002318 C3                CLR     C
+002319 33                RLC     A
+00231A         ?C0037?GPIO:
+00231A D8FC              DJNZ    R0,?C0036?GPIO
+00231C F4                CPL     A
+00231D 5D                ANL     A,R5
+00231E D082              POP     DPL
+002320 D083              POP     DPH
+002322 F0                MOVX    @DPTR,A
+   98: 		*(YC_GPIOWakeupH + group) |= 1 << queue;	//high wakeup
+002323 74A7              MOV     A,#LOW YC_GPIOWakeupH
+002325 2F                ADD     A,R7
+002326 F582              MOV     DPL,A
+002328 E4                CLR     A
+002329 3400              ADDC    A,#HIGH YC_GPIOWakeupH
+00232B F583              MOV     DPH,A
+00232D C083              PUSH    DPH
+00232F C082              PUSH    DPL
+002331 E0                MOVX    A,@DPTR
+002332 FF                MOV     R7,A
+002333 7401              MOV     A,#01H
+002335 A806              MOV     R0,AR6
+002337 08                INC     R0
+002338 8002              SJMP    ?C0039?GPIO
+00233A         ?C0038?GPIO:
+00233A C3                CLR     C
+00233B 33                RLC     A
+00233C         ?C0039?GPIO:
+00233C D8FC              DJNZ    R0,?C0038?GPIO
+00233E 4F                ORL     A,R7
+00233F D082              POP     DPL
+002341 D083              POP     DPH
+002343 F0                MOVX    @DPTR,A
+   99: 	}
+002344 22                RET     
+002345         ?C0020?GPIO:
+  100: 
+  101: 	else {
+  102: 		*(YC_GPIOWakeupL + group) |= 1 << queue;	//low wakeup
+002345 74A3              MOV     A,#LOW YC_GPIOWakeupL
+002347 2F                ADD     A,R7
+002348 F582              MOV     DPL,A
+00234A E4                CLR     A
+00234B 3400              ADDC    A,#HIGH YC_GPIOWakeupL
+00234D F583              MOV     DPH,A
+00234F C083              PUSH    DPH
+002351 C082              PUSH    DPL
+002353 E0                MOVX    A,@DPTR
+002354 FD                MOV     R5,A
+002355 7401              MOV     A,#01H
+002357 A806              MOV     R0,AR6
+002359 08                INC     R0
+00235A 8002              SJMP    ?C0041?GPIO
+00235C         ?C0040?GPIO:
+00235C C3                CLR     C
+00235D 33                RLC     A
+00235E         ?C0041?GPIO:
+00235E D8FC              DJNZ    R0,?C0040?GPIO
+002360 FC                MOV     R4,A
+002361 4D                ORL     A,R5
+002362 D082              POP     DPL
+002364 D083              POP     DPH
+002366 F0                MOVX    @DPTR,A
+  103: 		*(YC_GPIOWakeupH + group) &= ~(1 << queue);
+002367 74A7              MOV     A,#LOW YC_GPIOWakeupH
+002369 2F                ADD     A,R7
+00236A F582              MOV     DPL,A
+00236C E4                CLR     A
+00236D 3400              ADDC    A,#HIGH YC_GPIOWakeupH
+00236F F583              MOV     DPH,A
+002371 E0                MOVX    A,@DPTR
+002372 FF                MOV     R7,A
+002373 EC                MOV     A,R4
+002374 F4                CPL     A
+002375 FE                MOV     R6,A
+002376 EF                MOV     A,R7
+002377 5E                ANL     A,R6
+002378 F0                MOVX    @DPTR,A
+  104: 	}
+  105: }
+002379         ?C0019?GPIO:
+002379 22                RET     
+----- FUNCTION _GPIO_SetWakeup (END) -------
+
+
+----- FUNCTION KS_Unistall (BEGIN) -----
+ FILE: 'keyscan.c'
+  162: void KS_Unistall()
+  163: {
+  164: 	byte i = 0;
+  165: 	byte temp = 0;
+;---- Variable 'i' assigned to Register 'R7' ----
+00237A E4                CLR     A
+00237B FF                MOV     R7,A
+  166: 	byte tgroup = 0;
+00237C 904F1F            MOV     DPTR,#temp
+00237F F0                MOVX    @DPTR,A
+  167: 	byte tgpionum = 0;
+;---- Variable 'tgroup' assigned to Register 'R6' ----
+002380 FE                MOV     R6,A
+  168: 	for (i=0; col[i]!=0; i++) {
+;---- Variable 'tgpionum' assigned to Register 'R5' ----
+002381 FD                MOV     R5,A
+  169: 		tgroup = col[i]  >> 3;
+002382         ?C0044?KEYSCAN:
+002382 EF                MOV     A,R7
+002383 9006D6            MOV     DPTR,#col
+002386 93                MOVC    A,@A+DPTR
+002387 6049              JZ      ?C0045?KEYSCAN
+  170: 		tgpionum = 1 << (col[i] & 7);
+002389 EF                MOV     A,R7
+00238A 93                MOVC    A,@A+DPTR
+00238B FD                MOV     R5,A
+00238C 13                RRC     A
+00238D 13                RRC     A
+00238E 13                RRC     A
+00238F 541F              ANL     A,#01FH
+002391 FE                MOV     R6,A
+  171: 		REG_GPIO_PUP (tgroup) &= ~tgpionum;
+002392 ED                MOV     A,R5
+002393 5407              ANL     A,#07H
+002395 FD                MOV     R5,A
+002396 7401              MOV     A,#01H
+002398 A805              MOV     R0,AR5
+00239A 08                INC     R0
+00239B 8002              SJMP    ?C0108?KEYSCAN
+00239D         ?C0107?KEYSCAN:
+00239D C3                CLR     C
+00239E 33                RLC     A
+00239F         ?C0108?KEYSCAN:
+00239F D8FC              DJNZ    R0,?C0107?KEYSCAN
+0023A1 FD                MOV     R5,A
+  172: 		REG_GPIO_OE(tgroup) |= tgpionum;
+0023A2 EE                MOV     A,R6
+0023A3 2478              ADD     A,#078H
+0023A5 FB                MOV     R3,A
+0023A6 E4                CLR     A
+0023A7 3480              ADDC    A,#080H
+0023A9 8B82              MOV     DPL,R3
+0023AB F583              MOV     DPH,A
+0023AD E0                MOVX    A,@DPTR
+0023AE FC                MOV     R4,A
+0023AF ED                MOV     A,R5
+0023B0 F4                CPL     A
+0023B1 FB                MOV     R3,A
+0023B2 EC                MOV     A,R4
+0023B3 5B                ANL     A,R3
+0023B4 F0                MOVX    @DPTR,A
+  173: 		REG_GPIO_OUT(tgroup) &= ~tgpionum;
+0023B5 EE                MOV     A,R6
+0023B6 2470              ADD     A,#070H
+0023B8 F582              MOV     DPL,A
+0023BA E4                CLR     A
+0023BB 3480              ADDC    A,#080H
+0023BD F583              MOV     DPH,A
+0023BF E0                MOVX    A,@DPTR
+0023C0 4D                ORL     A,R5
+0023C1 F0                MOVX    @DPTR,A
+  174: 	}
+0023C2 EE                MOV     A,R6
+0023C3 2474              ADD     A,#074H
+0023C5 F582              MOV     DPL,A
+0023C7 E4                CLR     A
+0023C8 3480              ADDC    A,#080H
+0023CA F583              MOV     DPH,A
+0023CC E0                MOVX    A,@DPTR
+0023CD 5B                ANL     A,R3
+0023CE F0                MOVX    @DPTR,A
+  175: 	
+0023CF 0F                INC     R7
+0023D0 80B0              SJMP    ?C0044?KEYSCAN
+0023D2         ?C0045?KEYSCAN:
+  176: 	GPIO_fillpd();
+0023D2 D1FB              ACALL   GPIO_fillpd
+  177: 	
+  178: 	temp = REG_GPIO_IN(0);
+0023D4 90811C            MOV     DPTR,#0811CH
+0023D7 E0                MOVX    A,@DPTR
+0023D8 904F1F            MOV     DPTR,#temp
+0023DB F0                MOVX    @DPTR,A
+  179: 
+  180: 	if(long_press_flag)
+0023DC 904DEB            MOV     DPTR,#long_press_flag
+0023DF E0                MOVX    A,@DPTR
+0023E0 6020              JZ      ?C0047?KEYSCAN
+  181: 	{
+  182: 		GPIO_SetWakeupByCurrentState(0);
+0023E2 E4                CLR     A
+0023E3 FF                MOV     R7,A
+0023E4 51DB              ACALL   _GPIO_SetWakeupByCurrentState
+  183: 		GPIO_SetWakeupByCurrentState(1);
+0023E6 7F01              MOV     R7,#01H
+0023E8 51DB              ACALL   _GPIO_SetWakeupByCurrentState
+  184: 		GPIO_SetWakeupByCurrentState(2);
+0023EA 7F02              MOV     R7,#02H
+0023EC 51DB              ACALL   _GPIO_SetWakeupByCurrentState
+  185: 		GPIO_SetWakeupByCurrentState(3);
+0023EE 7F03              MOV     R7,#03H
+0023F0 51DB              ACALL   _GPIO_SetWakeupByCurrentState
+  186: 		GPIO_SetWakeupByCurrentState(4);
+0023F2 7F04              MOV     R7,#04H
+0023F4 51DB              ACALL   _GPIO_SetWakeupByCurrentState
+  187: 		GPIO_SetWakeupByCurrentState(5);
+0023F6 7F05              MOV     R7,#05H
+0023F8 51DB              ACALL   _GPIO_SetWakeupByCurrentState
+  188: 		GPIO_SetWakeupByCurrentState(6);
+0023FA 7F06              MOV     R7,#06H
+0023FC 51DB              ACALL   _GPIO_SetWakeupByCurrentState
+  189: 		GPIO_SetWakeupByCurrentState(7);
+0023FE 7F07              MOV     R7,#07H
+002400 41DB              AJMP    _GPIO_SetWakeupByCurrentState
+  190: 	}
+002402         ?C0047?KEYSCAN:
+  191: 	else
+  192: 	{
+  193: 		YC_GPIOWakeupL[0] = temp;
+002402 904F1F            MOV     DPTR,#temp
+002405 E0                MOVX    A,@DPTR
+002406 FF                MOV     R7,A
+002407 9000A3            MOV     DPTR,#YC_GPIOWakeupL
+00240A F0                MOVX    @DPTR,A
+  194: 		YC_GPIOWakeupH[0] = ~temp;
+00240B EF                MOV     A,R7
+00240C F4                CPL     A
+00240D 9000A7            MOV     DPTR,#YC_GPIOWakeupH
+002410 F0                MOVX    @DPTR,A
+  195: 	}
+  196: 
+  197: }
+002411 22                RET     
+----- FUNCTION KS_Unistall (END) -------
+
+
+----- FUNCTION YC_System_Main (BEGIN) -----
+ FILE: 'sys.c'
+  980: void YC_System_Main(void)
+  981: {
+  982: 	kb_cb_init();
+  983: 	while(1) {
+002412 D1DA              ACALL   kb_cb_init
+002414         ?C0173?SYS:
+  984: 		IPC_DealSingleStep();
+  985: 		if(!g_variable.battery_flash_timer)
+002414 9181              ACALL   IPC_DealSingleStep
+  986: 		{
+002416 904CFA            MOV     DPTR,#g_variable+05CH
+002419 E0                MOVX    A,@DPTR
+00241A 7002              JNZ     ?C0194?SYS
+00241C A3                INC     DPTR
+00241D E0                MOVX    A,@DPTR
+00241E         ?C0194?SYS:
+00241E 7003              JNZ     ?C0175?SYS
+  987: 			kb_need_keyscan();
+  988: 		}		
+002420 1215DF            LCALL   kb_need_keyscan
+  989: 		YC_update_eeprom_data();
+002423         ?C0175?SYS:
+  990: 		LED_handle();
+002423 121D8A            LCALL   YC_update_eeprom_data
+  991: #ifdef PC_SLEEP_STATUS_GET		
+002426 120E9D            LCALL   LED_handle
+  992: 		if(m_pc_sleep_flag)
+002429 904D5A            MOV     DPTR,#m_pc_sleep_flag
+00242C E0                MOVX    A,@DPTR
+00242D 6003              JZ      ?C0176?SYS
+  993: 		{
+  994: 			System_G24_long_lpm();
+00242F 1217A6            LCALL   System_G24_long_lpm
+  995: 		}
+002432         ?C0176?SYS:
+  996: #endif		
+  997: 		switch (current_task) {
+002432 900B7E            MOV     DPTR,#current_task
+002435 E0                MOVX    A,@DPTR
+002436 14                DEC     A
+002437 6013              JZ      ?C0181?SYS
+002439 24FE              ADD     A,#0FEH
+00243B 70D7              JNZ     ?C0173?SYS
+  998: 		case FIX_ENTER_HIBERNATE:
+00243D         ?C0178?SYS:
+  999: 			KS_Unistall();
+00243D 717A              ACALL   KS_Unistall
+ 1000: 			//GPIO_SetWakeupByCurrentState(BT_BUTTON_GPIO);
+ 1001: 			YC_PWM_disable(7);
+00243F 7F07              MOV     R7,#07H
+002441 120F9C            LCALL   _YC_PWM_disable
+ 1002: 
+ 1003: 			LED_all_shutdown();
+002444 120CAC            LCALL   LED_all_shutdown
+ 1004: 			IPC_WaitLpm();	/*<wait enter lpm,do nothing*/
+002447 121F7F            LCALL   IPC_WaitLpm
+00244A         ?C0179?SYS:
+ 1005: 			while(1);
+00244A 80FE              SJMP    ?C0179?SYS
+ 1006: 			break;
+ 1007: 			
+ 1008: 		case FIX_ENTER_LPM:
+00244C         ?C0181?SYS:
+ 1009: 			if (g_variable.delay_enter_lpm_timer ||g_variable.lockLpm  ||g_variable.battery_flash_timer||g_variable.one_ke
+>> y_press_wait_release_timer
+00244C 904CC9            MOV     DPTR,#g_variable+02BH
+00244F E0                MOVX    A,@DPTR
+002450 7016              JNZ     ?C0183?SYS
+002452 904CCB            MOV     DPTR,#g_variable+02DH
+002455 E0                MOVX    A,@DPTR
+002456 7010              JNZ     ?C0183?SYS
+002458 904CFA            MOV     DPTR,#g_variable+05CH
+00245B E0                MOVX    A,@DPTR
+00245C 7002              JNZ     ?C0195?SYS
+00245E A3                INC     DPTR
+00245F E0                MOVX    A,@DPTR
+002460         ?C0195?SYS:
+002460 7006              JNZ     ?C0183?SYS
+002462 904CD7            MOV     DPTR,#g_variable+039H
+002465 E0                MOVX    A,@DPTR
+002466 6004              JZ      ?C0182?SYS
+002468         ?C0183?SYS:
+ 1010: 			) 
+ 1011: 			{
+ 1012: 				IPC_AbandonLpm();
+002468 D1EF              ACALL   IPC_AbandonLpm
+ 1013: 				break;
+00246A 80A8              SJMP    ?C0173?SYS
+ 1014: 			}
+00246C         ?C0182?SYS:
+ 1015: 			else
+ 1016: 			{
+ 1017: 				KS_Unistall();
+00246C 717A              ACALL   KS_Unistall
+ 1018: 				if(g_variable.g24_long_sleep_flag)
+00246E 904CF6            MOV     DPTR,#g_variable+058H
+002471 E0                MOVX    A,@DPTR
+002472 6005              JZ      ?C0185?SYS
+ 1019: 				{
+ 1020: 				YC_PWM_disable(7);
+002474 7F07              MOV     R7,#07H
+002476 120CAA            LCALL   ?L?COM0001
+ 1021: 
+ 1022: 					LED_all_shutdown();
+ 1023: 				}	
+002479         ?C0185?SYS:
+ 1024: 				IPC_WaitLpm();	/*<wait enter lpm,do nothing*/
+002479 121F7F            LCALL   IPC_WaitLpm
+ 1025: 				break;
+00247C 8096              SJMP    ?C0173?SYS
+ 1026: 			}
+ 1027: 		}
+ 1028: 	}
+00247E 8094              SJMP    ?C0173?SYS
+002480 22                RET     
+----- FUNCTION YC_System_Main (END) -------
+
+
+----- FUNCTION IPC_DealSingleStep (BEGIN) -----
+ FILE: 'ipc.c'
+  146: void IPC_DealSingleStep()
+  147: {
+  148: 	byte *pbuff = ipcReadBuff;
+  149: 	if (ipcRxReadPtr == ipcRxWritePtr)
+002481 7A0C              MOV     R2,#HIGH ipcReadBuff
+002483 794B              MOV     R1,#LOW ipcReadBuff
+002485 904F04            MOV     DPTR,#pbuff
+002488 7401              MOV     A,#01H
+00248A F0                MOVX    @DPTR,A
+00248B A3                INC     DPTR
+00248C 740C              MOV     A,#HIGH ipcReadBuff
+00248E F0                MOVX    @DPTR,A
+00248F A3                INC     DPTR
+002490 744B              MOV     A,#LOW ipcReadBuff
+002492 F0                MOVX    @DPTR,A
+  150: 		goto IPC_TIMER;
+002493 904BA0            MOV     DPTR,#ipcRxWritePtr
+002496 E0                MOVX    A,@DPTR
+002497 FE                MOV     R6,A
+002498 A3                INC     DPTR
+002499 E0                MOVX    A,@DPTR
+00249A FF                MOV     R7,A
+00249B 904B9E            MOV     DPTR,#ipcRxReadPtr
+00249E E0                MOVX    A,@DPTR
+00249F 6E                XRL     A,R6
+0024A0 7003              JNZ     ?C0048?IPC
+0024A2 A3                INC     DPTR
+0024A3 E0                MOVX    A,@DPTR
+0024A4 6F                XRL     A,R7
+0024A5         ?C0048?IPC:
+0024A5 7002              JNZ     $ + 4H
+0024A7 C130              AJMP    ?C0039?IPC
+  151: 	ipcRx(ipcReadBuff, IPC_HEAD_LEN);
+0024A9         ?C0027?IPC:
+  152: 	if (*pbuff == IPC_CONTROL_EVT) {
+0024A9 7E0C              MOV     R6,#HIGH ipcReadBuff
+0024AB 7F4B              MOV     R7,#LOW ipcReadBuff
+0024AD 7D03              MOV     R5,#03H
+0024AF D18A              ACALL   _ipcRx
+  153: 		pbuff += 2;
+0024B1 904F04            MOV     DPTR,#pbuff
+0024B4 E0                MOVX    A,@DPTR
+0024B5 FB                MOV     R3,A
+0024B6 A3                INC     DPTR
+0024B7 E0                MOVX    A,@DPTR
+0024B8 FA                MOV     R2,A
+0024B9 A3                INC     DPTR
+0024BA E0                MOVX    A,@DPTR
+0024BB F9                MOV     R1,A
+0024BC 1203B6            LCALL   ?C?CLDPTR
+0024BF B4022B            CJNE    A,#02H,?C0029?IPC
+  154: 		ipcCb.evtcb(*pbuff);
+0024C2 904F05            MOV     DPTR,#pbuff+01H
+0024C5 E4                CLR     A
+0024C6 75F002            MOV     B,#02H
+0024C9 120463            LCALL   ?C?IILDX
+  155: 	}
+0024CC 904F04            MOV     DPTR,#pbuff
+0024CF E0                MOVX    A,@DPTR
+0024D0 FB                MOV     R3,A
+0024D1 A3                INC     DPTR
+0024D2 E0                MOVX    A,@DPTR
+0024D3 FA                MOV     R2,A
+0024D4 A3                INC     DPTR
+0024D5 E0                MOVX    A,@DPTR
+0024D6 F9                MOV     R1,A
+0024D7 1203B6            LCALL   ?C?CLDPTR
+0024DA FF                MOV     R7,A
+0024DB 904E74            MOV     DPTR,#ipcCb
+0024DE E0                MOVX    A,@DPTR
+0024DF A3                INC     DPTR
+0024E0 E0                MOVX    A,@DPTR
+0024E1 FA                MOV     R2,A
+0024E2 A3                INC     DPTR
+0024E3 E0                MOVX    A,@DPTR
+0024E4 F582              MOV     DPL,A
+0024E6 8A83              MOV     DPH,R2
+0024E8 120632            LCALL   ?C?ICALL2
+  156: 	else if (*pbuff == IPC_SPP_DATA) {
+0024EB C130              AJMP    ?C0039?IPC
+0024ED         ?C0029?IPC:
+  157: 		pbuff ++ ;
+0024ED 904F04            MOV     DPTR,#pbuff
+0024F0 E0                MOVX    A,@DPTR
+0024F1 FB                MOV     R3,A
+0024F2 A3                INC     DPTR
+0024F3 E0                MOVX    A,@DPTR
+0024F4 FA                MOV     R2,A
+0024F5 A3                INC     DPTR
+0024F6 E0                MOVX    A,@DPTR
+0024F7 F9                MOV     R1,A
+0024F8 1203B6            LCALL   ?C?CLDPTR
+0024FB 6404              XRL     A,#04H
+0024FD 7059              JNZ     ?C0031?IPC
+  158: 		ipcRx(ipcReadBuff+3, *pbuff -1);
+0024FF 904F05            MOV     DPTR,#pbuff+01H
+002502 75F001            MOV     B,#01H
+002505 120463            LCALL   ?C?IILDX
+  159: 		ipcCb.sppcb(pbuff+1, *pbuff);
+002508 7E0C              MOV     R6,#HIGH ipcReadBuff+03H
+00250A 7F4E              MOV     R7,#LOW ipcReadBuff+03H
+00250C 904F04            MOV     DPTR,#pbuff
+00250F E0                MOVX    A,@DPTR
+002510 FB                MOV     R3,A
+002511 A3                INC     DPTR
+002512 E0                MOVX    A,@DPTR
+002513 FA                MOV     R2,A
+002514 A3                INC     DPTR
+002515 E0                MOVX    A,@DPTR
+002516 F9                MOV     R1,A
+002517 1203B6            LCALL   ?C?CLDPTR
+00251A 14                DEC     A
+00251B FD                MOV     R5,A
+00251C D18A              ACALL   _ipcRx
+  160: 	}
+00251E 904F04            MOV     DPTR,#pbuff
+002521 E0                MOVX    A,@DPTR
+002522 FB                MOV     R3,A
+002523 A3                INC     DPTR
+002524 E0                MOVX    A,@DPTR
+002525 FA                MOV     R2,A
+002526 A3                INC     DPTR
+002527 E0                MOVX    A,@DPTR
+002528 2401              ADD     A,#01H
+00252A F9                MOV     R1,A
+00252B E4                CLR     A
+00252C 3A                ADDC    A,R2
+00252D FA                MOV     R2,A
+00252E C002              PUSH    AR2
+002530 C001              PUSH    AR1
+002532 904F04            MOV     DPTR,#pbuff
+002535 E0                MOVX    A,@DPTR
+002536 A3                INC     DPTR
+002537 E0                MOVX    A,@DPTR
+002538 FA                MOV     R2,A
+002539 A3                INC     DPTR
+00253A E0                MOVX    A,@DPTR
+00253B F9                MOV     R1,A
+00253C 1203B6            LCALL   ?C?CLDPTR
+00253F FD                MOV     R5,A
+002540 7C00              MOV     R4,#00H
+002542 904E77            MOV     DPTR,#ipcCb+03H
+002545 E0                MOVX    A,@DPTR
+002546 A3                INC     DPTR
+002547 E0                MOVX    A,@DPTR
+002548 FA                MOV     R2,A
+002549 A3                INC     DPTR
+00254A E0                MOVX    A,@DPTR
+00254B F582              MOV     DPL,A
+00254D 8A83              MOV     DPH,R2
+00254F D001              POP     AR1
+002551 D002              POP     AR2
+002553 120632            LCALL   ?C?ICALL2
+  161: 	else if (*pbuff == IPC_BLE_DATA) {
+002556 C130              AJMP    ?C0039?IPC
+002558         ?C0031?IPC:
+  162: 		pbuff ++ ;
+002558 904F04            MOV     DPTR,#pbuff
+00255B E0                MOVX    A,@DPTR
+00255C FB                MOV     R3,A
+00255D A3                INC     DPTR
+00255E E0                MOVX    A,@DPTR
+00255F FA                MOV     R2,A
+002560 A3                INC     DPTR
+002561 E0                MOVX    A,@DPTR
+002562 F9                MOV     R1,A
+002563 1203B6            LCALL   ?C?CLDPTR
+002566 6405              XRL     A,#05H
+002568 7059              JNZ     ?C0033?IPC
+  163: 		ipcRx(ipcReadBuff+3, *pbuff -1);
+00256A 904F05            MOV     DPTR,#pbuff+01H
+00256D 75F001            MOV     B,#01H
+002570 120463            LCALL   ?C?IILDX
+  164: 		ipcCb.blecb(pbuff+1, *pbuff);
+002573 7E0C              MOV     R6,#HIGH ipcReadBuff+03H
+002575 7F4E              MOV     R7,#LOW ipcReadBuff+03H
+002577 904F04            MOV     DPTR,#pbuff
+00257A E0                MOVX    A,@DPTR
+00257B FB                MOV     R3,A
+00257C A3                INC     DPTR
+00257D E0                MOVX    A,@DPTR
+00257E FA                MOV     R2,A
+00257F A3                INC     DPTR
+002580 E0                MOVX    A,@DPTR
+002581 F9                MOV     R1,A
+002582 1203B6            LCALL   ?C?CLDPTR
+002585 14                DEC     A
+002586 FD                MOV     R5,A
+002587 D18A              ACALL   _ipcRx
+  165: 	}
+002589 904F04            MOV     DPTR,#pbuff
+00258C E0                MOVX    A,@DPTR
+00258D FB                MOV     R3,A
+00258E A3                INC     DPTR
+00258F E0                MOVX    A,@DPTR
+002590 FA                MOV     R2,A
+002591 A3                INC     DPTR
+002592 E0                MOVX    A,@DPTR
+002593 2401              ADD     A,#01H
+002595 F9                MOV     R1,A
+002596 E4                CLR     A
+002597 3A                ADDC    A,R2
+002598 FA                MOV     R2,A
+002599 C002              PUSH    AR2
+00259B C001              PUSH    AR1
+00259D 904F04            MOV     DPTR,#pbuff
+0025A0 E0                MOVX    A,@DPTR
+0025A1 A3                INC     DPTR
+0025A2 E0                MOVX    A,@DPTR
+0025A3 FA                MOV     R2,A
+0025A4 A3                INC     DPTR
+0025A5 E0                MOVX    A,@DPTR
+0025A6 F9                MOV     R1,A
+0025A7 1203B6            LCALL   ?C?CLDPTR
+0025AA FD                MOV     R5,A
+0025AB 7C00              MOV     R4,#00H
+0025AD 904E80            MOV     DPTR,#ipcCb+0CH
+0025B0 E0                MOVX    A,@DPTR
+0025B1 A3                INC     DPTR
+0025B2 E0                MOVX    A,@DPTR
+0025B3 FA                MOV     R2,A
+0025B4 A3                INC     DPTR
+0025B5 E0                MOVX    A,@DPTR
+0025B6 F582              MOV     DPL,A
+0025B8 8A83              MOV     DPH,R2
+0025BA D001              POP     AR1
+0025BC D002              POP     AR2
+0025BE 120632            LCALL   ?C?ICALL2
+  166: 	else if (*pbuff == IPC_HID_DATA) {
+0025C1 806D              SJMP    ?C0039?IPC
+0025C3         ?C0033?IPC:
+  167: 		pbuff ++ ;
+0025C3 904F04            MOV     DPTR,#pbuff
+0025C6 E0                MOVX    A,@DPTR
+0025C7 FB                MOV     R3,A
+0025C8 A3                INC     DPTR
+0025C9 E0                MOVX    A,@DPTR
+0025CA FA                MOV     R2,A
+0025CB A3                INC     DPTR
+0025CC E0                MOVX    A,@DPTR
+0025CD F9                MOV     R1,A
+0025CE 1203B6            LCALL   ?C?CLDPTR
+0025D1 6403              XRL     A,#03H
+0025D3 7059              JNZ     ?C0037?IPC
+  168: 		ipcRx(ipcReadBuff+3, *pbuff -1);
+0025D5 904F05            MOV     DPTR,#pbuff+01H
+0025D8 75F001            MOV     B,#01H
+0025DB 120463            LCALL   ?C?IILDX
+  169: 		ipcCb.hidcb(pbuff+1, *pbuff);
+0025DE 7E0C              MOV     R6,#HIGH ipcReadBuff+03H
+0025E0 7F4E              MOV     R7,#LOW ipcReadBuff+03H
+0025E2 904F04            MOV     DPTR,#pbuff
+0025E5 E0                MOVX    A,@DPTR
+0025E6 FB                MOV     R3,A
+0025E7 A3                INC     DPTR
+0025E8 E0                MOVX    A,@DPTR
+0025E9 FA                MOV     R2,A
+0025EA A3                INC     DPTR
+0025EB E0                MOVX    A,@DPTR
+0025EC F9                MOV     R1,A
+0025ED 1203B6            LCALL   ?C?CLDPTR
+0025F0 14                DEC     A
+0025F1 FD                MOV     R5,A
+0025F2 D18A              ACALL   _ipcRx
+  170: 	}
+0025F4 904F04            MOV     DPTR,#pbuff
+0025F7 E0                MOVX    A,@DPTR
+0025F8 FB                MOV     R3,A
+0025F9 A3                INC     DPTR
+0025FA E0                MOVX    A,@DPTR
+0025FB FA                MOV     R2,A
+0025FC A3                INC     DPTR
+0025FD E0                MOVX    A,@DPTR
+0025FE 2401              ADD     A,#01H
+002600 F9                MOV     R1,A
+002601 E4                CLR     A
+002602 3A                ADDC    A,R2
+002603 FA                MOV     R2,A
+002604 C002              PUSH    AR2
+002606 C001              PUSH    AR1
+002608 904F04            MOV     DPTR,#pbuff
+00260B E0                MOVX    A,@DPTR
+00260C A3                INC     DPTR
+00260D E0                MOVX    A,@DPTR
+00260E FA                MOV     R2,A
+00260F A3                INC     DPTR
+002610 E0                MOVX    A,@DPTR
+002611 F9                MOV     R1,A
+002612 1203B6            LCALL   ?C?CLDPTR
+002615 FD                MOV     R5,A
+002616 7C00              MOV     R4,#00H
+002618 904E83            MOV     DPTR,#ipcCb+0FH
+00261B E0                MOVX    A,@DPTR
+00261C A3                INC     DPTR
+00261D E0                MOVX    A,@DPTR
+00261E FA                MOV     R2,A
+00261F A3                INC     DPTR
+002620 E0                MOVX    A,@DPTR
+002621 F582              MOV     DPL,A
+002623 8A83              MOV     DPH,R2
+002625 D001              POP     AR1
+002627 D002              POP     AR2
+002629 120632            LCALL   ?C?ICALL2
+  171: 	else {
+00262C 8002              SJMP    ?C0039?IPC
+  172: 		while(1);
+00262E         ?C0037?IPC:
+  173: 	}
+00262E 80FE              SJMP    ?C0037?IPC
+  174: IPC_TIMER:
+  175: 	while (c51timer != bttimer) {
+002630         IPC_TIMER:
+002630         ?C0039?IPC:
+  176: 		if (ipcCb.timercb == NULL)
+002630 904BA5            MOV     DPTR,#bttimer
+002633 E0                MOVX    A,@DPTR
+002634 FE                MOV     R6,A
+002635 A3                INC     DPTR
+002636 E0                MOVX    A,@DPTR
+002637 FF                MOV     R7,A
+002638 904C3E            MOV     DPTR,#c51timer
+00263B E0                MOVX    A,@DPTR
+00263C 6E                XRL     A,R6
+00263D 7003              JNZ     ?C0049?IPC
+00263F A3                INC     DPTR
+002640 E0                MOVX    A,@DPTR
+002641 6F                XRL     A,R7
+002642         ?C0049?IPC:
+002642 6022              JZ      ?C0043?IPC
+  177: 			return;
+002644 904E7A            MOV     DPTR,#ipcCb+06H
+002647 E0                MOVX    A,@DPTR
+002648 FB                MOV     R3,A
+002649 A3                INC     DPTR
+00264A E0                MOVX    A,@DPTR
+00264B FA                MOV     R2,A
+00264C A3                INC     DPTR
+00264D E0                MOVX    A,@DPTR
+00264E F9                MOV     R1,A
+00264F 4A                ORL     A,R2
+002650 6037              JZ      ?C0042?IPC
+002652         ?C0041?IPC:
+  178: 		ipcCb.timercb();
+002652 12062E            LCALL   ?C?ICALL
+  179: 		//c51timer ++;
+  180: 		c51timer = bttimer;
+002655 904BA5            MOV     DPTR,#bttimer
+002658 E0                MOVX    A,@DPTR
+002659 FF                MOV     R7,A
+00265A A3                INC     DPTR
+00265B E0                MOVX    A,@DPTR
+00265C 904C3E            MOV     DPTR,#c51timer
+00265F CF                XCH     A,R7
+002660 F0                MOVX    @DPTR,A
+002661 A3                INC     DPTR
+002662 EF                MOV     A,R7
+002663 F0                MOVX    @DPTR,A
+  181: 	}
+002664 80CA              SJMP    ?C0039?IPC
+002666         ?C0043?IPC:
+  182: 	while (c51stimer!= btstimer) {
+002666 904C6D            MOV     DPTR,#btstimer
+002669 E0                MOVX    A,@DPTR
+00266A FF                MOV     R7,A
+00266B A3                INC     DPTR
+00266C E0                MOVX    A,@DPTR
+00266D 6F                XRL     A,R7
+00266E 6019              JZ      ?C0042?IPC
+  183: 		if (ipcCb.stimercb == NULL)
+002670 904E7D            MOV     DPTR,#ipcCb+09H
+002673 E0                MOVX    A,@DPTR
+002674 FB                MOV     R3,A
+002675 A3                INC     DPTR
+002676 E0                MOVX    A,@DPTR
+002677 FA                MOV     R2,A
+002678 A3                INC     DPTR
+002679 E0                MOVX    A,@DPTR
+00267A F9                MOV     R1,A
+00267B 4A                ORL     A,R2
+00267C 600B              JZ      ?C0042?IPC
+00267E         ?C0045?IPC:
+  184: 			return;
+  185: 		ipcCb.stimercb();
+00267E 12062E            LCALL   ?C?ICALL
+  186: 		//c51stimer ++;
+  187: 		c51stimer = btstimer;
+002681 904C6D            MOV     DPTR,#btstimer
+002684 E0                MOVX    A,@DPTR
+002685 A3                INC     DPTR
+002686 F0                MOVX    @DPTR,A
+  188: 	}
+002687 80DD              SJMP    ?C0043?IPC
+  189: 	//other app process
+  190: }
+002689         ?C0042?IPC:
+002689 22                RET     
+----- FUNCTION IPC_DealSingleStep (END) -------
+
+
+----- FUNCTION _ipcRx (BEGIN) -----
+ FILE: 'ipc.c'
+   49: static void ipcRx(xbyte * dest, byte len)
+   50: {
+00268A 904F16            MOV     DPTR,#dest
+00268D EE                MOV     A,R6
+00268E F0                MOVX    @DPTR,A
+00268F A3                INC     DPTR
+002690 EF                MOV     A,R7
+002691 F0                MOVX    @DPTR,A
+;---- Variable 'len' assigned to Register 'R1' ----
+002692 A905              MOV     R1,AR5
+   51: 	xbyte* src = (xbyte *)ipcRxReadPtr;
+   52: 	while(len--) {
+002694 904B9E            MOV     DPTR,#ipcRxReadPtr
+002697 E0                MOVX    A,@DPTR
+002698 FE                MOV     R6,A
+002699 A3                INC     DPTR
+00269A E0                MOVX    A,@DPTR
+00269B FF                MOV     R7,A
+;---- Variable 'src' assigned to Register 'R6/R7' ----
+00269C         ?C0004?IPC:
+   53: 		*dest++ = *src++;
+00269C AD01              MOV     R5,AR1
+00269E 19                DEC     R1
+00269F ED                MOV     A,R5
+0026A0 602F              JZ      ?C0005?IPC
+   54: 		if ((word)src == IPC_RX_END) {
+0026A2 0F                INC     R7
+0026A3 EF                MOV     A,R7
+0026A4 AC06              MOV     R4,AR6
+0026A6 7001              JNZ     ?C0046?IPC
+0026A8 0E                INC     R6
+0026A9         ?C0046?IPC:
+0026A9 14                DEC     A
+0026AA F582              MOV     DPL,A
+0026AC 8C83              MOV     DPH,R4
+0026AE E0                MOVX    A,@DPTR
+0026AF FD                MOV     R5,A
+0026B0 904F16            MOV     DPTR,#dest
+0026B3 E4                CLR     A
+0026B4 75F001            MOV     B,#01H
+0026B7 120479            LCALL   ?C?ILDIX
+0026BA 85F082            MOV     DPL,B
+0026BD F583              MOV     DPH,A
+0026BF ED                MOV     A,R5
+0026C0 F0                MOVX    @DPTR,A
+   55: 			src = (xbyte *)IPC_RX_HEAD;
+0026C1 AD07              MOV     R5,AR7
+0026C3 AC06              MOV     R4,AR6
+0026C5 BC4BD4            CJNE    R4,#04BH,?C0004?IPC
+0026C8 BD9AD1            CJNE    R5,#09AH,?C0004?IPC
+   56: 		}
+0026CB 7E4B              MOV     R6,#04BH
+0026CD 7F36              MOV     R7,#036H
+   57: 	}
+   58: 	ipcRxReadPtr = (word)src;
+0026CF 80CB              SJMP    ?C0004?IPC
+0026D1         ?C0005?IPC:
+   59: }
+0026D1 904B9E            MOV     DPTR,#ipcRxReadPtr
+0026D4 EE                MOV     A,R6
+0026D5 F0                MOVX    @DPTR,A
+0026D6 A3                INC     DPTR
+0026D7 EF                MOV     A,R7
+0026D8 F0                MOVX    @DPTR,A
+   60: 
+0026D9 22                RET     
+----- FUNCTION _ipcRx (END) -------
+
+
+----- FUNCTION kb_cb_init (BEGIN) -----
+ FILE: 'sys.c'
+  973: static void kb_cb_init()
+  974: {
+  975: 	IPC_Initialize(&cb);
+  976: }
+0026DA 7B01              MOV     R3,#01H
+0026DC 7A4E              MOV     R2,#HIGH cb
+0026DE 7962              MOV     R1,#LOW cb
+;----                  JMP     _IPC_Initialize
+----- FUNCTION kb_cb_init (END) -------
+
+
+----- FUNCTION _IPC_Initialize (BEGIN) -----
+ FILE: 'ipc.c'
+  120: void IPC_Initialize(tIPCControlBlock *cb)
+  121: {
+;---- Variable 'cb' assigned to Register 'R1/R2/R3' ----
+  122: 	ipcCb = *cb;
+  123: }
+0026E0 7874              MOV     R0,#LOW ipcCb
+0026E2 7C4E              MOV     R4,#HIGH ipcCb
+0026E4 7D01              MOV     R5,#01H
+0026E6 7E00              MOV     R6,#00H
+0026E8 7F12              MOV     R7,#012H
+0026EA 020390            LJMP    ?C?COPY
+----- FUNCTION _IPC_Initialize (END) -------
+
+
+----- FUNCTION main (BEGIN) -----
+ FILE: 'ram.c'
+    5: void main()
+    6: {
+    7: 	YC_System_Main();
+    8: }
+0026ED 8112              AJMP    YC_System_Main
+----- FUNCTION main (END) -------
+
+
+----- FUNCTION IPC_AbandonLpm (BEGIN) -----
+ FILE: 'ipc.c'
+  132: void IPC_AbandonLpm()
+  133: {
+  134: 	lpm_flag = 1;
+  135: 	current_task = 0;
+0026EF 900B7F            MOV     DPTR,#lpm_flag
+0026F2 7401              MOV     A,#01H
+0026F4 F0                MOVX    @DPTR,A
+  136: }
+0026F5 E4                CLR     A
+0026F6 900B7E            MOV     DPTR,#current_task
+0026F9 F0                MOVX    @DPTR,A
+  137: 
+0026FA 22                RET     
+----- FUNCTION IPC_AbandonLpm (END) -------
+
+
+----- FUNCTION GPIO_fillpd (BEGIN) -----
+ FILE: 'gpio.c'
+  131: void GPIO_fillpd()
+  132: {
+  133: 	byte i;
+  134: 	for(i = 0;i < 4;i++)
+;---- Variable 'i' assigned to Register 'R7' ----
+0026FB E4                CLR     A
+0026FC FF                MOV     R7,A
+0026FD         ?C0026?GPIO:
+  135: 		REG_GPIO_PDN(i) = ~(REG_GPIO_OE(i) | REG_GPIO_PUP(i));
+0026FD EF                MOV     A,R7
+0026FE FD                MOV     R5,A
+0026FF 7C00              MOV     R4,#00H
+002701 2478              ADD     A,#078H
+002703 FB                MOV     R3,A
+002704 EC                MOV     A,R4
+002705 3480              ADDC    A,#080H
+002707 8B82              MOV     DPL,R3
+002709 F583              MOV     DPH,A
+00270B E0                MOVX    A,@DPTR
+00270C FE                MOV     R6,A
+00270D ED                MOV     A,R5
+00270E 2470              ADD     A,#070H
+002710 FD                MOV     R5,A
+002711 EC                MOV     A,R4
+002712 3480              ADDC    A,#080H
+002714 8D82              MOV     DPL,R5
+002716 F583              MOV     DPH,A
+002718 E0                MOVX    A,@DPTR
+002719 4E                ORL     A,R6
+00271A F4                CPL     A
+00271B FE                MOV     R6,A
+00271C EF                MOV     A,R7
+00271D 247C              ADD     A,#07CH
+00271F FD                MOV     R5,A
+002720 EC                MOV     A,R4
+002721 3480              ADDC    A,#080H
+002723 8D82              MOV     DPL,R5
+002725 F583              MOV     DPH,A
+002727 EE                MOV     A,R6
+002728 F0                MOVX    @DPTR,A
+002729 0F                INC     R7
+00272A EF                MOV     A,R7
+00272B B404CF            CJNE    A,#04H,?C0026?GPIO
+  136: }
+00272E 22                RET     
+----- FUNCTION GPIO_fillpd (END) -------
+
+
+----- FUNCTION YC_clear_BT_same_address_record (BEGIN) -----
+ FILE: 'bluetooth.c'
+  235: void  YC_clear_BT_same_address_record()
+  236: {
+  237: 	byte record_index;
+  238: 	//if (pinCode_flag == 1)			//clear the same BT3.0 device address record
+  239: 	{
+  240: 		record_index = g_variable.current_device_num-1;
+00272F 904CA2            MOV     DPTR,#g_variable+04H
+002732 E0                MOVX    A,@DPTR
+002733 14                DEC     A
+002734 904F1A            MOV     DPTR,#record_index
+002737 F0                MOVX    @DPTR,A
+  241: 		pinCode_flag= 0;
+002738 E4                CLR     A
+002739 904DED            MOV     DPTR,#pinCode_flag
+00273C F0                MOVX    @DPTR,A
+  242: 		YC_store_record_list(2, record_index);
+00273D 904F1A            MOV     DPTR,#record_index
+002740 E0                MOVX    A,@DPTR
+002741 FD                MOV     R5,A
+002742 7F02              MOV     R7,#02H
+002744 120FF1            LCALL   _YC_store_record_list
+  243: 
+  244: 		if(record_index != 0)
+002747 904F1A            MOV     DPTR,#record_index
+00274A E0                MOVX    A,@DPTR
+00274B FF                MOV     R7,A
+00274C 603E              JZ      ?C0043?BLUETOOTH
+  245: 		{
+  246: 			if(bd_key_record_list[0].device_type == 2) 
+00274E 904DFD            MOV     DPTR,#bd_key_record_list
+002751 E0                MOVX    A,@DPTR
+002752 6402              XRL     A,#02H
+002754 7036              JNZ     ?C0043?BLUETOOTH
+  247: 			{
+  248: 				if (compare_str(bd_key_record_list[0].device_addr,bd_key_record_list[record_index].device_addr,6))
+002756 EF                MOV     A,R7
+002757 75F01E            MOV     B,#01EH
+00275A A4                MUL     AB
+00275B 24FE              ADD     A,#LOW bd_key_record_list+01H
+00275D F9                MOV     R1,A
+00275E 744D              MOV     A,#HIGH bd_key_record_list+01H
+002760 35F0              ADDC    A,B
+002762 FA                MOV     R2,A
+002763 904EC1            MOV     DPTR,#?_compare_str?BYTE+03H
+002766 7401              MOV     A,#01H
+002768 F0                MOVX    @DPTR,A
+002769 A3                INC     DPTR
+00276A EA                MOV     A,R2
+00276B F0                MOVX    @DPTR,A
+00276C A3                INC     DPTR
+00276D E9                MOV     A,R1
+00276E F0                MOVX    @DPTR,A
+00276F A3                INC     DPTR
+002770 7406              MOV     A,#06H
+002772 F0                MOVX    @DPTR,A
+002773 7B01              MOV     R3,#01H
+002775 7A4D              MOV     R2,#HIGH bd_key_record_list+01H
+002777 79FE              MOV     R1,#LOW bd_key_record_list+01H
+002779 122846            LCALL   _compare_str
+00277C EF                MOV     A,R7
+00277D 600D              JZ      ?C0043?BLUETOOTH
+  249: 					xmemclear_ff((byte *)(&bd_key_record_list[0]), sizeof(BD_KEY_RECORD));
+00277F 7B01              MOV     R3,#01H
+002781 7A4D              MOV     R2,#HIGH bd_key_record_list
+002783 79FD              MOV     R1,#LOW bd_key_record_list
+002785 7D1E              MOV     R5,#01EH
+002787 7C00              MOV     R4,#00H
+002789 122819            LCALL   _xmemclear_ff
+  250: 			}
+  251: 		}
+00278C         ?C0043?BLUETOOTH:
+  252: 
+  253: 		if(record_index != 1)
+00278C 904F1A            MOV     DPTR,#record_index
+00278F E0                MOVX    A,@DPTR
+002790 FF                MOV     R7,A
+002791 6401              XRL     A,#01H
+002793 603E              JZ      ?C0046?BLUETOOTH
+  254: 		{
+  255: 			if(bd_key_record_list[1].device_type == 2) 
+002795 904E1B            MOV     DPTR,#bd_key_record_list+01EH
+002798 E0                MOVX    A,@DPTR
+002799 6402              XRL     A,#02H
+00279B 7036              JNZ     ?C0046?BLUETOOTH
+  256: 			{
+  257: 				if (compare_str(bd_key_record_list[1].device_addr,bd_key_record_list[record_index].device_addr,6))
+00279D EF                MOV     A,R7
+00279E 75F01E            MOV     B,#01EH
+0027A1 A4                MUL     AB
+0027A2 24FE              ADD     A,#LOW bd_key_record_list+01H
+0027A4 F9                MOV     R1,A
+0027A5 744D              MOV     A,#HIGH bd_key_record_list+01H
+0027A7 35F0              ADDC    A,B
+0027A9 FA                MOV     R2,A
+0027AA 904EC1            MOV     DPTR,#?_compare_str?BYTE+03H
+0027AD 7401              MOV     A,#01H
+0027AF F0                MOVX    @DPTR,A
+0027B0 A3                INC     DPTR
+0027B1 EA                MOV     A,R2
+0027B2 F0                MOVX    @DPTR,A
+0027B3 A3                INC     DPTR
+0027B4 E9                MOV     A,R1
+0027B5 F0                MOVX    @DPTR,A
+0027B6 A3                INC     DPTR
+0027B7 7406              MOV     A,#06H
+0027B9 F0                MOVX    @DPTR,A
+0027BA 7B01              MOV     R3,#01H
+0027BC 7A4E              MOV     R2,#HIGH bd_key_record_list+01FH
+0027BE 791C              MOV     R1,#LOW bd_key_record_list+01FH
+0027C0 122846            LCALL   _compare_str
+0027C3 EF                MOV     A,R7
+0027C4 600D              JZ      ?C0046?BLUETOOTH
+  258: 					xmemclear_ff((byte *)(&bd_key_record_list[1]), sizeof(BD_KEY_RECORD));
+0027C6 7B01              MOV     R3,#01H
+0027C8 7A4E              MOV     R2,#HIGH bd_key_record_list+01EH
+0027CA 791B              MOV     R1,#LOW bd_key_record_list+01EH
+0027CC 7D1E              MOV     R5,#01EH
+0027CE 7C00              MOV     R4,#00H
+0027D0 122819            LCALL   _xmemclear_ff
+  259: 			}
+  260: 		}
+0027D3         ?C0046?BLUETOOTH:
+  261: 
+  262: 		if(record_index != 2)
+0027D3 904F1A            MOV     DPTR,#record_index
+0027D6 E0                MOVX    A,@DPTR
+0027D7 FF                MOV     R7,A
+0027D8 6402              XRL     A,#02H
+0027DA 603C              JZ      ?C0052?BLUETOOTH
+  263: 		{
+  264: 			if(bd_key_record_list[2].device_type == 2) 
+0027DC 904E39            MOV     DPTR,#bd_key_record_list+03CH
+0027DF E0                MOVX    A,@DPTR
+0027E0 6402              XRL     A,#02H
+0027E2 7034              JNZ     ?C0052?BLUETOOTH
+  265: 			{
+  266: 				if (compare_str(bd_key_record_list[2].device_addr,bd_key_record_list[record_index].device_addr,6))
+0027E4 EF                MOV     A,R7
+0027E5 75F01E            MOV     B,#01EH
+0027E8 A4                MUL     AB
+0027E9 24FE              ADD     A,#LOW bd_key_record_list+01H
+0027EB F9                MOV     R1,A
+0027EC 744D              MOV     A,#HIGH bd_key_record_list+01H
+0027EE 35F0              ADDC    A,B
+0027F0 FA                MOV     R2,A
+0027F1 904EC1            MOV     DPTR,#?_compare_str?BYTE+03H
+0027F4 7401              MOV     A,#01H
+0027F6 F0                MOVX    @DPTR,A
+0027F7 A3                INC     DPTR
+0027F8 EA                MOV     A,R2
+0027F9 F0                MOVX    @DPTR,A
+0027FA A3                INC     DPTR
+0027FB E9                MOV     A,R1
+0027FC F0                MOVX    @DPTR,A
+0027FD A3                INC     DPTR
+0027FE 7406              MOV     A,#06H
+002800 F0                MOVX    @DPTR,A
+002801 7B01              MOV     R3,#01H
+002803 7A4E              MOV     R2,#HIGH bd_key_record_list+03DH
+002805 793A              MOV     R1,#LOW bd_key_record_list+03DH
+002807 1146              ACALL   _compare_str
+002809 EF                MOV     A,R7
+00280A 600C              JZ      ?C0052?BLUETOOTH
+  267: 					xmemclear_ff((byte *)(&bd_key_record_list[2]), sizeof(BD_KEY_RECORD));
+00280C 7B01              MOV     R3,#01H
+00280E 7A4E              MOV     R2,#HIGH bd_key_record_list+03CH
+002810 7939              MOV     R1,#LOW bd_key_record_list+03CH
+002812 7D1E              MOV     R5,#01EH
+002814 7C00              MOV     R4,#00H
+002816 1119              ACALL   _xmemclear_ff
+  268: 			}
+  269: 		}	
+  270: 	}
+  271: }
+002818         ?C0052?BLUETOOTH:
+002818 22                RET     
+----- FUNCTION YC_clear_BT_same_address_record (END) -------
+
+
+----- FUNCTION _xmemclear_ff (BEGIN) -----
+ FILE: 'utilities.c'
+   30: void xmemclear_ff(byte * dest, word len)
+   31: {
+002819 904F0D            MOV     DPTR,#dest
+00281C EB                MOV     A,R3
+00281D F0                MOVX    @DPTR,A
+00281E A3                INC     DPTR
+00281F EA                MOV     A,R2
+002820 F0                MOVX    @DPTR,A
+002821 A3                INC     DPTR
+002822 E9                MOV     A,R1
+002823 F0                MOVX    @DPTR,A
+;---- Variable 'len' assigned to Register 'R4/R5' ----
+   32: 	while (len--)
+002824         ?C0011?UTILITIES:
+   33: 		*dest++ = 0xff;
+002824 ED                MOV     A,R5
+002825 1D                DEC     R5
+002826 AE04              MOV     R6,AR4
+002828 7001              JNZ     ?C0027?UTILITIES
+00282A 1C                DEC     R4
+00282B         ?C0027?UTILITIES:
+00282B 4E                ORL     A,R6
+00282C 6017              JZ      ?C0013?UTILITIES
+   34: 	return;
+00282E 904F0D            MOV     DPTR,#dest
+002831 E0                MOVX    A,@DPTR
+002832 FB                MOV     R3,A
+002833 A3                INC     DPTR
+002834 E4                CLR     A
+002835 75F001            MOV     B,#01H
+002838 120479            LCALL   ?C?ILDIX
+00283B A9F0              MOV     R1,B
+00283D FA                MOV     R2,A
+00283E 74FF              MOV     A,#0FFH
+002840 1203FC            LCALL   ?C?CSTPTR
+002843 80DF              SJMP    ?C0011?UTILITIES
+   35: }
+002845         ?C0013?UTILITIES:
+002845 22                RET     
+----- FUNCTION _xmemclear_ff (END) -------
+
+
+----- FUNCTION _compare_str (BEGIN) -----
+ FILE: 'utilities.c'
+   54: byte compare_str(byte * str1, byte * str2, byte len)
+   55: {
+002846 904EBE            MOV     DPTR,#str1
+002849 EB                MOV     A,R3
+00284A F0                MOVX    @DPTR,A
+00284B A3                INC     DPTR
+00284C EA                MOV     A,R2
+00284D F0                MOVX    @DPTR,A
+00284E A3                INC     DPTR
+00284F E9                MOV     A,R1
+002850 F0                MOVX    @DPTR,A
+   56: 	byte i;
+   57: 	for (i = 0; i < len; i++) {
+;---- Variable 'i' assigned to Register 'R7' ----
+002851 E4                CLR     A
+002852 FF                MOV     R7,A
+002853         ?C0021?UTILITIES:
+002853 904EC4            MOV     DPTR,#len
+002856 E0                MOVX    A,@DPTR
+002857 FE                MOV     R6,A
+002858 EF                MOV     A,R7
+002859 C3                CLR     C
+00285A 9E                SUBB    A,R6
+00285B 5030              JNC     ?C0022?UTILITIES
+   58: 		if (str1[i] != str2[i])
+00285D 904EC1            MOV     DPTR,#str2
+002860 E0                MOVX    A,@DPTR
+002861 FB                MOV     R3,A
+002862 A3                INC     DPTR
+002863 E0                MOVX    A,@DPTR
+002864 FA                MOV     R2,A
+002865 A3                INC     DPTR
+002866 E0                MOVX    A,@DPTR
+002867 F9                MOV     R1,A
+002868 8F82              MOV     DPL,R7
+00286A 758300            MOV     DPH,#00H
+00286D 1203CF            LCALL   ?C?CLDOPTR
+002870 FE                MOV     R6,A
+002871 904EBE            MOV     DPTR,#str1
+002874 E0                MOVX    A,@DPTR
+002875 FB                MOV     R3,A
+002876 A3                INC     DPTR
+002877 E0                MOVX    A,@DPTR
+002878 FA                MOV     R2,A
+002879 A3                INC     DPTR
+00287A E0                MOVX    A,@DPTR
+00287B F9                MOV     R1,A
+00287C 8F82              MOV     DPL,R7
+00287E 758300            MOV     DPH,#00H
+002881 1203CF            LCALL   ?C?CLDOPTR
+002884 6E                XRL     A,R6
+002885 6003              JZ      ?C0023?UTILITIES
+   59: 			return 0x00;
+002887 7F00              MOV     R7,#00H
+002889 22                RET     
+   60: 	}
+00288A         ?C0023?UTILITIES:
+00288A 0F                INC     R7
+00288B 80C6              SJMP    ?C0021?UTILITIES
+00288D         ?C0022?UTILITIES:
+   61: 	return 0x01;
+00288D 7F01              MOV     R7,#01H
+   62: }
+00288F 22                RET     
+----- FUNCTION _compare_str (END) -------
+
+
+----- FUNCTION KS_GetCurrentEvt (BEGIN) -----
+ FILE: 'keyscan.c'
+  239: tKSEVENT *KS_GetCurrentEvt()
+  240: {
+  241: 	//
+  242: 	byte i = 0;
+002890 E4                CLR     A
+002891 904E94            MOV     DPTR,#i
+002894 F0                MOVX    @DPTR,A
+  243: 	byte j = 0;
+002895 A3                INC     DPTR
+002896 F0                MOVX    @DPTR,A
+  244: 	byte k = 0;
+002897 A3                INC     DPTR
+002898 F0                MOVX    @DPTR,A
+  245: 	byte temp = 0;
+002899 A3                INC     DPTR
+00289A F0                MOVX    @DPTR,A
+  246: 	byte flag = 0;
+00289B A3                INC     DPTR
+00289C F0                MOVX    @DPTR,A
+  247: 	byte offset = 0;
+00289D A3                INC     DPTR
+00289E F0                MOVX    @DPTR,A
+  248: 	byte state = 0;
+00289F A3                INC     DPTR
+0028A0 F0                MOVX    @DPTR,A
+  249: 	byte keyCounttemp = 0;
+0028A1 A3                INC     DPTR
+0028A2 F0                MOVX    @DPTR,A
+  250: 	byte key_value_temp = 0;
+0028A3 A3                INC     DPTR
+0028A4 F0                MOVX    @DPTR,A
+  251: 	byte ghost = 0;
+0028A5 A3                INC     DPTR
+0028A6 F0                MOVX    @DPTR,A
+  252: 	byte rawCount = 0;
+0028A7 A3                INC     DPTR
+0028A8 F0                MOVX    @DPTR,A
+  253: 	
+  254: 	KS_ScanMatrix();
+0028A9 91B4              ACALL   KS_ScanMatrix
+  255: 
+  256: 	if (compare_str(ksSelMapCurr,ksSelMapCheck,KB_KSCAN_COL_NUM) 
+0028AB 7A4D              MOV     R2,#HIGH ksSelMapCheck
+0028AD 79A8              MOV     R1,#LOW ksSelMapCheck
+0028AF 904EC1            MOV     DPTR,#?_compare_str?BYTE+03H
+0028B2 7401              MOV     A,#01H
+0028B4 F0                MOVX    @DPTR,A
+0028B5 A3                INC     DPTR
+0028B6 744D              MOV     A,#HIGH ksSelMapCheck
+0028B8 F0                MOVX    @DPTR,A
+0028B9 A3                INC     DPTR
+0028BA 74A8              MOV     A,#LOW ksSelMapCheck
+0028BC F0                MOVX    @DPTR,A
+0028BD A3                INC     DPTR
+0028BE 7414              MOV     A,#014H
+0028C0 F0                MOVX    @DPTR,A
+0028C1 7B01              MOV     R3,#01H
+0028C3 7A4D              MOV     R2,#HIGH ksSelMapCurr
+0028C5 79BC              MOV     R1,#LOW ksSelMapCurr
+0028C7 1146              ACALL   _compare_str
+0028C9 EF                MOV     A,R7
+0028CA 6016              JZ      ?C0066?KEYSCAN
+0028CC 7B01              MOV     R3,#01H
+0028CE 7A4D              MOV     R2,#HIGH ksSelMapCurr
+0028D0 79BC              MOV     R1,#LOW ksSelMapCurr
+0028D2 7D14              MOV     R5,#014H
+0028D4 51EA              ACALL   _array_is_empty
+0028D6 EF                MOV     A,R7
+0028D7 7009              JNZ     ?C0066?KEYSCAN
+  257: 		&& !array_is_empty(ksSelMapCurr,KB_KSCAN_COL_NUM))
+  258: 	{
+  259: 		g_variable.button_flag |= 0x02;
+0028D9 904CAD            MOV     DPTR,#g_variable+0FH
+0028DC E0                MOVX    A,@DPTR
+0028DD 4402              ORL     A,#02H
+0028DF F0                MOVX    @DPTR,A
+  260: 	}
+0028E0 800C              SJMP    ?C0067?KEYSCAN
+0028E2         ?C0066?KEYSCAN:
+  261: 	else
+  262: 	{	
+  263: 		g_variable.button_flag &= 0xFD;
+0028E2 904CAD            MOV     DPTR,#g_variable+0FH
+0028E5 E0                MOVX    A,@DPTR
+0028E6 54FD              ANL     A,#0FDH
+0028E8 F0                MOVX    @DPTR,A
+  264: 		g_variable.button_timer[1] = 0;
+0028E9 E4                CLR     A
+0028EA 904CAF            MOV     DPTR,#g_variable+011H
+0028ED F0                MOVX    @DPTR,A
+  265: 	}
+0028EE         ?C0067?KEYSCAN:
+  266: 
+  267: 	for (i=0; col[i]!=0; i++) 
+0028EE E4                CLR     A
+0028EF 904E94            MOV     DPTR,#i
+0028F2 F0                MOVX    @DPTR,A
+0028F3         ?C0068?KEYSCAN:
+0028F3 904E94            MOV     DPTR,#i
+0028F6 E0                MOVX    A,@DPTR
+0028F7 FF                MOV     R7,A
+0028F8 9006D6            MOV     DPTR,#col
+0028FB 93                MOVC    A,@A+DPTR
+0028FC 7002              JNZ     $ + 4H
+0028FE 21C0              AJMP    ?C0069?KEYSCAN
+  268: 	{
+  269: 		temp = ksSelMapCurr[i];
+002900 74BC              MOV     A,#LOW ksSelMapCurr
+002902 2F                ADD     A,R7
+002903 F582              MOV     DPL,A
+002905 E4                CLR     A
+002906 344D              ADDC    A,#HIGH ksSelMapCurr
+002908 F583              MOV     DPH,A
+00290A E0                MOVX    A,@DPTR
+00290B 904E97            MOV     DPTR,#temp
+00290E F0                MOVX    @DPTR,A
+  270: 		rawCount = bit_count(temp);
+00290F E0                MOVX    A,@DPTR
+002910 FF                MOV     R7,A
+002911 51DC              ACALL   _bit_count
+002913 904E9E            MOV     DPTR,#rawCount
+002916 EF                MOV     A,R7
+002917 F0                MOVX    @DPTR,A
+  271: 		if(rawCount >= 2)		// col[i] has more than two key press
+002918 C3                CLR     C
+002919 9402              SUBB    A,#02H
+00291B 5002              JNC     $ + 4H
+00291D 21A9              AJMP    ?C0071?KEYSCAN
+  272: 		{
+  273: 			for(j=0 ; j<8 ;j++)
+00291F E4                CLR     A
+002920 904E95            MOV     DPTR,#j
+002923 F0                MOVX    @DPTR,A
+002924         ?C0072?KEYSCAN:
+002924 904E95            MOV     DPTR,#j
+002927 E0                MOVX    A,@DPTR
+002928 FF                MOV     R7,A
+002929 C3                CLR     C
+00292A 9408              SUBB    A,#08H
+00292C 507B              JNC     ?C0071?KEYSCAN
+  274: 			{
+  275: 				if(temp & (1<<j))	// Ci_Rj press
+00292E 7401              MOV     A,#01H
+002930 7E00              MOV     R6,#00H
+002932 A807              MOV     R0,AR7
+002934 08                INC     R0
+002935 8005              SJMP    ?C0114?KEYSCAN
+002937         ?C0113?KEYSCAN:
+002937 C3                CLR     C
+002938 33                RLC     A
+002939 CE                XCH     A,R6
+00293A 33                RLC     A
+00293B CE                XCH     A,R6
+00293C         ?C0114?KEYSCAN:
+00293C D8F9              DJNZ    R0,?C0113?KEYSCAN
+00293E FF                MOV     R7,A
+00293F 904E97            MOV     DPTR,#temp
+002942 E0                MOVX    A,@DPTR
+002943 FD                MOV     R5,A
+002944 E4                CLR     A
+002945 EF                MOV     A,R7
+002946 5D                ANL     A,R5
+002947 6058              JZ      ?C0074?KEYSCAN
+  276: 				{
+  277: 					for(k=0 ; col[k]!=0; k++)
+002949 E4                CLR     A
+00294A 904E96            MOV     DPTR,#k
+00294D F0                MOVX    @DPTR,A
+00294E         ?C0076?KEYSCAN:
+00294E 904E96            MOV     DPTR,#k
+002951 E0                MOVX    A,@DPTR
+002952 FF                MOV     R7,A
+002953 9006D6            MOV     DPTR,#col
+002956 93                MOVC    A,@A+DPTR
+002957 6048              JZ      ?C0074?KEYSCAN
+  278: 					{
+  279: 						if(k!= i)
+002959 904E94            MOV     DPTR,#i
+00295C E0                MOVX    A,@DPTR
+00295D FE                MOV     R6,A
+00295E EF                MOV     A,R7
+00295F 6E                XRL     A,R6
+002960 6037              JZ      ?C0078?KEYSCAN
+  280: 						{
+  281: 							if(ksSelMapCurr[k] & (1<<j))	// R line has another key press
+002962 904E96            MOV     DPTR,#k
+002965 E0                MOVX    A,@DPTR
+002966 24BC              ADD     A,#LOW ksSelMapCurr
+002968 F582              MOV     DPL,A
+00296A E4                CLR     A
+00296B 344D              ADDC    A,#HIGH ksSelMapCurr
+00296D F583              MOV     DPH,A
+00296F E0                MOVX    A,@DPTR
+002970 FD                MOV     R5,A
+002971 7C00              MOV     R4,#00H
+002973 904E95            MOV     DPTR,#j
+002976 E0                MOVX    A,@DPTR
+002977 FF                MOV     R7,A
+002978 7401              MOV     A,#01H
+00297A 7E00              MOV     R6,#00H
+00297C A807              MOV     R0,AR7
+00297E 08                INC     R0
+00297F 8005              SJMP    ?C0116?KEYSCAN
+002981         ?C0115?KEYSCAN:
+002981 C3                CLR     C
+002982 33                RLC     A
+002983 CE                XCH     A,R6
+002984 33                RLC     A
+002985 CE                XCH     A,R6
+002986         ?C0116?KEYSCAN:
+002986 D8F9              DJNZ    R0,?C0115?KEYSCAN
+002988 FF                MOV     R7,A
+002989 EE                MOV     A,R6
+00298A 5C                ANL     A,R4
+00298B FE                MOV     R6,A
+00298C EF                MOV     A,R7
+00298D 5D                ANL     A,R5
+00298E 4E                ORL     A,R6
+00298F 6008              JZ      ?C0078?KEYSCAN
+  282: 							{
+  283: 								ghost = 1;
+002991 904E9D            MOV     DPTR,#ghost
+002994 7401              MOV     A,#01H
+002996 F0                MOVX    @DPTR,A
+  284: 								break;
+002997 8008              SJMP    ?C0074?KEYSCAN
+  285: 							}	
+  286: 						}
+  287: 					}
+002999         ?C0078?KEYSCAN:
+002999 904E96            MOV     DPTR,#k
+00299C E0                MOVX    A,@DPTR
+00299D 04                INC     A
+00299E F0                MOVX    @DPTR,A
+00299F 80AD              SJMP    ?C0076?KEYSCAN
+  288: 				}
+  289: 			}
+0029A1         ?C0074?KEYSCAN:
+0029A1 904E95            MOV     DPTR,#j
+0029A4 E0                MOVX    A,@DPTR
+0029A5 04                INC     A
+0029A6 F0                MOVX    @DPTR,A
+0029A7 2124              AJMP    ?C0072?KEYSCAN
+  290: 		}
+0029A9         ?C0071?KEYSCAN:
+  291: 		
+  292: 		if (temp!=0)
+0029A9 904E97            MOV     DPTR,#temp
+0029AC E0                MOVX    A,@DPTR
+0029AD FF                MOV     R7,A
+0029AE 6008              JZ      ?C0070?KEYSCAN
+  293: 		{
+  294: 			keyCounttemp += bit_count(temp);
+0029B0 51DC              ACALL   _bit_count
+0029B2 904E9B            MOV     DPTR,#keyCounttemp
+0029B5 E0                MOVX    A,@DPTR
+0029B6 2F                ADD     A,R7
+0029B7 F0                MOVX    @DPTR,A
+  295: 		}
+  296: 	}
+0029B8         ?C0070?KEYSCAN:
+0029B8 904E94            MOV     DPTR,#i
+0029BB E0                MOVX    A,@DPTR
+0029BC 04                INC     A
+0029BD F0                MOVX    @DPTR,A
+0029BE 01F3              AJMP    ?C0068?KEYSCAN
+0029C0         ?C0069?KEYSCAN:
+  297: 	keyCount = keyCounttemp;
+0029C0 904E9B            MOV     DPTR,#keyCounttemp
+0029C3 E0                MOVX    A,@DPTR
+0029C4 904DF4            MOV     DPTR,#keyCount
+0029C7 F0                MOVX    @DPTR,A
+  298: 	
+  299: 	for (i=0; col[i]!=0; i++)
+0029C8 E4                CLR     A
+0029C9 904E94            MOV     DPTR,#i
+0029CC F0                MOVX    @DPTR,A
+0029CD         ?C0082?KEYSCAN:
+0029CD 904E94            MOV     DPTR,#i
+0029D0 E0                MOVX    A,@DPTR
+0029D1 FF                MOV     R7,A
+0029D2 9006D6            MOV     DPTR,#col
+0029D5 93                MOVC    A,@A+DPTR
+0029D6 7002              JNZ     $ + 4H
+0029D8 41B0              AJMP    ?C0083?KEYSCAN
+  300: 	{
+  301: 		temp = ksSelMapCurr[i] ^ ksSelMapOld[i];
+0029DA 7493              MOV     A,#LOW ksSelMapOld
+0029DC 2F                ADD     A,R7
+0029DD F582              MOV     DPL,A
+0029DF E4                CLR     A
+0029E0 344D              ADDC    A,#HIGH ksSelMapOld
+0029E2 F583              MOV     DPH,A
+0029E4 E0                MOVX    A,@DPTR
+0029E5 FE                MOV     R6,A
+0029E6 74BC              MOV     A,#LOW ksSelMapCurr
+0029E8 2F                ADD     A,R7
+0029E9 F582              MOV     DPL,A
+0029EB E4                CLR     A
+0029EC 344D              ADDC    A,#HIGH ksSelMapCurr
+0029EE F583              MOV     DPH,A
+0029F0 E0                MOVX    A,@DPTR
+0029F1 6E                XRL     A,R6
+0029F2 904E97            MOV     DPTR,#temp
+0029F5 F0                MOVX    @DPTR,A
+  302: 		state = ksSelMapCurr[i];
+0029F6 904E94            MOV     DPTR,#i
+0029F9 E0                MOVX    A,@DPTR
+0029FA FF                MOV     R7,A
+0029FB 24BC              ADD     A,#LOW ksSelMapCurr
+0029FD F582              MOV     DPL,A
+0029FF E4                CLR     A
+002A00 344D              ADDC    A,#HIGH ksSelMapCurr
+002A02 F583              MOV     DPH,A
+002A04 E0                MOVX    A,@DPTR
+002A05 904E9A            MOV     DPTR,#state
+002A08 F0                MOVX    @DPTR,A
+  303: 		if (temp == 0) 
+002A09 904E97            MOV     DPTR,#temp
+002A0C E0                MOVX    A,@DPTR
+002A0D 7004              JNZ     ?C0085?KEYSCAN
+  304: 		{
+  305: 			continue;
+002A0F 41A8              AJMP    ?C0084?KEYSCAN
+  306: 		}
+002A11 41A8              AJMP    ?C0084?KEYSCAN
+002A13         ?C0085?KEYSCAN:
+  307: 		else 
+  308: 		{
+  309: 
+  310: 			if (ghost) 
+002A13 904E9D            MOV     DPTR,#ghost
+002A16 E0                MOVX    A,@DPTR
+002A17 6007              JZ      ?C0087?KEYSCAN
+  311: 				return NULL;
+002A19 7B00              MOV     R3,#00H
+002A1B 7A00              MOV     R2,#00H
+002A1D 7900              MOV     R1,#00H
+002A1F 22                RET     
+002A20         ?C0087?KEYSCAN:
+  312: 			ksSelMapOld[i] = ksSelMapCurr[i];
+002A20 74BC              MOV     A,#LOW ksSelMapCurr
+002A22 2F                ADD     A,R7
+002A23 F582              MOV     DPL,A
+002A25 E4                CLR     A
+002A26 344D              ADDC    A,#HIGH ksSelMapCurr
+002A28 F583              MOV     DPH,A
+002A2A E0                MOVX    A,@DPTR
+002A2B FE                MOV     R6,A
+002A2C 7493              MOV     A,#LOW ksSelMapOld
+002A2E 2F                ADD     A,R7
+002A2F F582              MOV     DPL,A
+002A31 E4                CLR     A
+002A32 344D              ADDC    A,#HIGH ksSelMapOld
+002A34 F583              MOV     DPH,A
+002A36 EE                MOV     A,R6
+002A37 F0                MOVX    @DPTR,A
+  313: 			for (j = 0 ; j<8 ; j++) 
+002A38 E4                CLR     A
+002A39 904E95            MOV     DPTR,#j
+002A3C F0                MOVX    @DPTR,A
+002A3D         ?C0089?KEYSCAN:
+002A3D 904E95            MOV     DPTR,#j
+002A40 E0                MOVX    A,@DPTR
+002A41 FF                MOV     R7,A
+002A42 C3                CLR     C
+002A43 9408              SUBB    A,#08H
+002A45 505B              JNC     ?C0090?KEYSCAN
+  314: 			{
+  315: 				if (temp&1)
+002A47 904E97            MOV     DPTR,#temp
+002A4A E0                MOVX    A,@DPTR
+002A4B 30E03C            JNB     ACC.0,?C0092?KEYSCAN
+  316: 				{
+  317: 					offset = i<<3 |j;
+002A4E 904E94            MOV     DPTR,#i
+002A51 E0                MOVX    A,@DPTR
+002A52 FE                MOV     R6,A
+002A53 33                RLC     A
+002A54 33                RLC     A
+002A55 33                RLC     A
+002A56 54F8              ANL     A,#0F8H
+002A58 FE                MOV     R6,A
+002A59 EF                MOV     A,R7
+002A5A 4E                ORL     A,R6
+002A5B 904E99            MOV     DPTR,#offset
+002A5E F0                MOVX    @DPTR,A
+  318: 					key_value_temp = key_fn_function(state,ksMap[offset]);
+002A5F A3                INC     DPTR
+002A60 E0                MOVX    A,@DPTR
+002A61 FF                MOV     R7,A
+002A62 904E99            MOV     DPTR,#offset
+002A65 E0                MOVX    A,@DPTR
+002A66 9006EB            MOV     DPTR,#ksMap
+002A69 93                MOVC    A,@A+DPTR
+002A6A FD                MOV     R5,A
+002A6B 123494            LCALL   _key_fn_function
+002A6E 904E9C            MOV     DPTR,#key_value_temp
+002A71 EF                MOV     A,R7
+002A72 F0                MOVX    @DPTR,A
+  319: 					if (state & 1)
+002A73 904E9A            MOV     DPTR,#state
+002A76 E0                MOVX    A,@DPTR
+002A77 30E009            JNB     ACC.0,?C0093?KEYSCAN
+  320: 					{
+  321: 						keyIn(key_value_temp);
+002A7A 904E9C            MOV     DPTR,#key_value_temp
+002A7D E0                MOVX    A,@DPTR
+002A7E FF                MOV     R7,A
+002A7F 711A              ACALL   _keyIn
+  322: 					}
+002A81 8007              SJMP    ?C0092?KEYSCAN
+002A83         ?C0093?KEYSCAN:
+  323: 					else
+  324: 					{
+  325: 						keyOut(key_value_temp);
+002A83 904E9C            MOV     DPTR,#key_value_temp
+002A86 E0                MOVX    A,@DPTR
+002A87 FF                MOV     R7,A
+002A88 71D3              ACALL   _keyOut
+  326: 					}
+  327: 				}
+002A8A         ?C0092?KEYSCAN:
+  328: 				temp = temp >>1;
+002A8A 904E97            MOV     DPTR,#temp
+002A8D E0                MOVX    A,@DPTR
+002A8E FF                MOV     R7,A
+002A8F C3                CLR     C
+002A90 13                RRC     A
+002A91 F0                MOVX    @DPTR,A
+  329: 				state = state>>1;
+002A92 904E9A            MOV     DPTR,#state
+002A95 E0                MOVX    A,@DPTR
+002A96 FF                MOV     R7,A
+002A97 C3                CLR     C
+002A98 13                RRC     A
+002A99 F0                MOVX    @DPTR,A
+  330: 			}
+002A9A 904E95            MOV     DPTR,#j
+002A9D E0                MOVX    A,@DPTR
+002A9E 04                INC     A
+002A9F F0                MOVX    @DPTR,A
+002AA0 809B              SJMP    ?C0089?KEYSCAN
+002AA2         ?C0090?KEYSCAN:
+  331: 			flag = 1;
+002AA2 904E98            MOV     DPTR,#flag
+002AA5 7401              MOV     A,#01H
+002AA7 F0                MOVX    @DPTR,A
+  332: 		}
+  333: 	}
+002AA8         ?C0084?KEYSCAN:
+002AA8 904E94            MOV     DPTR,#i
+002AAB E0                MOVX    A,@DPTR
+002AAC 04                INC     A
+002AAD F0                MOVX    @DPTR,A
+002AAE 21CD              AJMP    ?C0082?KEYSCAN
+002AB0         ?C0083?KEYSCAN:
+  334: 	
+  335: 	if((mult_key_status == KEY_RELEASE) && (standard_key_release_flag == 1))
+002AB0 904E57            MOV     DPTR,#mult_key_status
+002AB3 E0                MOVX    A,@DPTR
+002AB4 B4030A            CJNE    A,#03H,?C0095?KEYSCAN
+002AB7 904DEE            MOV     DPTR,#standard_key_release_flag
+002ABA E0                MOVX    A,@DPTR
+002ABB B40103            CJNE    A,#01H,?C0095?KEYSCAN
+  336: 	{
+  337: 		standard_key_release_flag = 2;		//media key and standard key  release the same time
+002ABE 7402              MOV     A,#02H
+002AC0 F0                MOVX    @DPTR,A
+  338: 	}
+002AC1         ?C0095?KEYSCAN:
+  339: 
+  340: 	
+  341: 	if (flag || standard_key_release_flag == 2) 
+002AC1 904E98            MOV     DPTR,#flag
+002AC4 E0                MOVX    A,@DPTR
+002AC5 7007              JNZ     ?C0097?KEYSCAN
+002AC7 904DEE            MOV     DPTR,#standard_key_release_flag
+002ACA E0                MOVX    A,@DPTR
+002ACB B40207            CJNE    A,#02H,?C0096?KEYSCAN
+002ACE         ?C0097?KEYSCAN:
+  342: 	{
+  343: 		return &ksEvtPool;
+002ACE 7B01              MOV     R3,#01H
+002AD0 7A4E              MOV     R2,#HIGH ksEvtPool
+002AD2 79B0              MOV     R1,#LOW ksEvtPool
+002AD4 22                RET     
+  344: 	}
+002AD5         ?C0096?KEYSCAN:
+  345: 	else
+  346: 	{
+  347: 		return NULL;
+002AD5 7B00              MOV     R3,#00H
+002AD7 7A00              MOV     R2,#00H
+002AD9 7900              MOV     R1,#00H
+  348: 	}
+  349: 	
+  350: 
+  351: }
+002ADB 22                RET     
+----- FUNCTION KS_GetCurrentEvt (END) -------
+
+
+----- FUNCTION _bit_count (BEGIN) -----
+ FILE: 'keyscan.c'
+   24: static byte bit_count(byte v)
+   25: {
+;---- Variable 'v' assigned to Register 'R7' ----
+   26: 	unsigned char c;
+   27: 	for (c = 0; v; c++) {
+;---- Variable 'c' assigned to Register 'R6' ----
+002ADC E4                CLR     A
+002ADD FE                MOV     R6,A
+002ADE         ?C0001?KEYSCAN:
+002ADE EF                MOV     A,R7
+002ADF 6006              JZ      ?C0002?KEYSCAN
+   28:     	v &= v - 1;
+002AE1 14                DEC     A
+002AE2 5F                ANL     A,R7
+002AE3 FF                MOV     R7,A
+   29:     }
+002AE4 0E                INC     R6
+002AE5 80F7              SJMP    ?C0001?KEYSCAN
+002AE7         ?C0002?KEYSCAN:
+   30:     return c;
+002AE7 AF06              MOV     R7,AR6
+   31: }
+002AE9 22                RET     
+----- FUNCTION _bit_count (END) -------
+
+
+----- FUNCTION _array_is_empty (BEGIN) -----
+ FILE: 'keyscan.c'
+  227: byte array_is_empty(byte * str1,byte len)
+  228: {
+002AEA 904F01            MOV     DPTR,#str1
+002AED EB                MOV     A,R3
+002AEE F0                MOVX    @DPTR,A
+002AEF A3                INC     DPTR
+002AF0 EA                MOV     A,R2
+002AF1 F0                MOVX    @DPTR,A
+002AF2 A3                INC     DPTR
+002AF3 E9                MOV     A,R1
+002AF4 F0                MOVX    @DPTR,A
+;---- Variable 'len' assigned to Register 'R5' ----
+  229: 	byte i;
+  230: 	for (i=0;i < len;i++)
+;---- Variable 'i' assigned to Register 'R7' ----
+002AF5 E4                CLR     A
+002AF6 FF                MOV     R7,A
+002AF7         ?C0061?KEYSCAN:
+002AF7 EF                MOV     A,R7
+002AF8 C3                CLR     C
+002AF9 9D                SUBB    A,R5
+002AFA 501B              JNC     ?C0062?KEYSCAN
+  231: 	{
+  232: 		if (str1[i] != 0)
+002AFC 904F01            MOV     DPTR,#str1
+002AFF E0                MOVX    A,@DPTR
+002B00 FB                MOV     R3,A
+002B01 A3                INC     DPTR
+002B02 E0                MOVX    A,@DPTR
+002B03 FA                MOV     R2,A
+002B04 A3                INC     DPTR
+002B05 E0                MOVX    A,@DPTR
+002B06 F9                MOV     R1,A
+002B07 8F82              MOV     DPL,R7
+002B09 758300            MOV     DPH,#00H
+002B0C 1203CF            LCALL   ?C?CLDOPTR
+002B0F 6003              JZ      ?C0063?KEYSCAN
+  233: 			return 0x00;
+002B11 7F00              MOV     R7,#00H
+002B13 22                RET     
+  234: 	}
+002B14         ?C0063?KEYSCAN:
+002B14 0F                INC     R7
+002B15 80E0              SJMP    ?C0061?KEYSCAN
+002B17         ?C0062?KEYSCAN:
+  235: 	return 0x01;
+002B17 7F01              MOV     R7,#01H
+  236: }
+002B19 22                RET     
+----- FUNCTION _array_is_empty (END) -------
+
+
+----- FUNCTION _keyIn (BEGIN) -----
+ FILE: 'keyscan.c'
+   35: static void keyIn(byte key)
+   36: {
+;---- Variable 'key' assigned to Register 'R7' ----
+   37: 	byte i = 0,full_flag = 0,full=0,temp_chu=0;
+   38: 
+;---- Variable 'i' assigned to Register 'R6' ----
+002B1A E4                CLR     A
+002B1B FE                MOV     R6,A
+;---- Variable 'full_flag' assigned to Register 'R5' ----
+002B1C FD                MOV     R5,A
+;---- Variable 'full' assigned to Register 'R1' ----
+002B1D F9                MOV     R1,A
+;---- Variable 'temp_chu' assigned to Register 'R4' ----
+002B1E FC                MOV     R4,A
+   39: 	if(key >= HID_KEY_LEFT_CTL && key <= HID_KEY_RIGHT_GUI)
+002B1F EF                MOV     A,R7
+002B20 C3                CLR     C
+002B21 94E0              SUBB    A,#0E0H
+002B23 4020              JC      ?C0005?KEYSCAN
+002B25 EF                MOV     A,R7
+002B26 D3                SETB    C
+002B27 94E7              SUBB    A,#0E7H
+002B29 501A              JNC     ?C0005?KEYSCAN
+   40: 	{
+   41: 		ksEvtPool.standardSel  |=  0x01 << (key & 0x07);
+002B2B 904EB0            MOV     DPTR,#ksEvtPool
+002B2E E0                MOVX    A,@DPTR
+002B2F FE                MOV     R6,A
+002B30 EF                MOV     A,R7
+002B31 5407              ANL     A,#07H
+002B33 FF                MOV     R7,A
+002B34 7401              MOV     A,#01H
+002B36 A807              MOV     R0,AR7
+002B38 08                INC     R0
+002B39 8002              SJMP    ?C0100?KEYSCAN
+002B3B         ?C0099?KEYSCAN:
+002B3B C3                CLR     C
+002B3C 33                RLC     A
+002B3D         ?C0100?KEYSCAN:
+002B3D D8FC              DJNZ    R0,?C0099?KEYSCAN
+002B3F 4E                ORL     A,R6
+002B40 904EB0            MOV     DPTR,#ksEvtPool
+002B43 F0                MOVX    @DPTR,A
+002B44 22                RET     
+   42: 		return;
+   43: 	}
+002B45         ?C0005?KEYSCAN:
+   44: 
+   45: 	for(i=0;i<6;i++)
+002B45 E4                CLR     A
+002B46 FE                MOV     R6,A
+002B47         ?C0007?KEYSCAN:
+   46: 	{
+   47: 		if(ksEvtPool.ksPool[i] != 0)
+002B47 74B1              MOV     A,#LOW ksEvtPool+01H
+002B49 2E                ADD     A,R6
+002B4A F582              MOV     DPL,A
+002B4C E4                CLR     A
+002B4D 344E              ADDC    A,#HIGH ksEvtPool+01H
+002B4F F583              MOV     DPH,A
+002B51 E0                MOVX    A,@DPTR
+002B52 6001              JZ      ?C0009?KEYSCAN
+   48: 		{
+   49: 			full_flag++;
+002B54 0D                INC     R5
+   50: 		}
+   51: 	}
+002B55         ?C0009?KEYSCAN:
+002B55 0E                INC     R6
+002B56 EE                MOV     A,R6
+002B57 B406ED            CJNE    A,#06H,?C0007?KEYSCAN
+002B5A         ?C0008?KEYSCAN:
+   52: 
+   53: 
+   54: 	//special key
+   55: 
+   56: 	for (i=0 ; i<KS_BUFF_POLL_LEN ; i++) 
+002B5A E4                CLR     A
+002B5B FE                MOV     R6,A
+002B5C         ?C0011?KEYSCAN:
+   57: 	{
+   58: 		if (ksEvtPool.ksPool[i] == key && full_flag==6)
+002B5C 74B1              MOV     A,#LOW ksEvtPool+01H
+002B5E 2E                ADD     A,R6
+002B5F F582              MOV     DPL,A
+002B61 E4                CLR     A
+002B62 344E              ADDC    A,#HIGH ksEvtPool+01H
+002B64 F583              MOV     DPH,A
+002B66 E0                MOVX    A,@DPTR
+002B67 B50708            CJNE    A,AR7,?C0014?KEYSCAN
+002B6A ED                MOV     A,R5
+002B6B B40604            CJNE    A,#06H,?C0014?KEYSCAN
+   59: 		{
+   60: 			full=1;
+002B6E 7901              MOV     R1,#01H
+   61: 			break;
+002B70 8027              SJMP    ?C0012?KEYSCAN
+   62: 		}
+002B72         ?C0014?KEYSCAN:
+   63: 		if (ksEvtPool.ksPool[i] == 0) 
+002B72 74B1              MOV     A,#LOW ksEvtPool+01H
+002B74 2E                ADD     A,R6
+002B75 F582              MOV     DPL,A
+002B77 E4                CLR     A
+002B78 344E              ADDC    A,#HIGH ksEvtPool+01H
+002B7A F583              MOV     DPH,A
+002B7C E0                MOVX    A,@DPTR
+002B7D 7015              JNZ     ?C0013?KEYSCAN
+   64: 		{
+   65: 			if(mult_key_value != key)
+002B7F 904DFC            MOV     DPTR,#mult_key_value
+002B82 E0                MOVX    A,@DPTR
+002B83 6F                XRL     A,R7
+002B84 6013              JZ      ?C0012?KEYSCAN
+   66: 				ksEvtPool.ksPool[i] = key;
+002B86 74B1              MOV     A,#LOW ksEvtPool+01H
+002B88 2E                ADD     A,R6
+002B89 F582              MOV     DPL,A
+002B8B E4                CLR     A
+002B8C 344E              ADDC    A,#HIGH ksEvtPool+01H
+002B8E F583              MOV     DPH,A
+002B90 EF                MOV     A,R7
+002B91 F0                MOVX    @DPTR,A
+   67: 			break;
+002B92 8005              SJMP    ?C0012?KEYSCAN
+   68: 		}
+   69: 	}
+002B94         ?C0013?KEYSCAN:
+002B94 0E                INC     R6
+002B95 EE                MOV     A,R6
+002B96 B406C3            CJNE    A,#06H,?C0011?KEYSCAN
+002B99         ?C0012?KEYSCAN:
+   70: 
+   71: 
+   72: 	if(full_flag == 6 && full ==0)
+002B99 ED                MOV     A,R5
+002B9A 6406              XRL     A,#06H
+002B9C 7034              JNZ     ?C0006?KEYSCAN
+002B9E E9                MOV     A,R1
+002B9F 7031              JNZ     ?C0006?KEYSCAN
+   73: 	{
+   74: 		if(key <= 112)
+002BA1 EF                MOV     A,R7
+002BA2 D3                SETB    C
+002BA3 9470              SUBB    A,#070H
+002BA5 502B              JNC     ?C0006?KEYSCAN
+   75: 		{
+   76: 			temp_chu = (key)/8;
+002BA7 EF                MOV     A,R7
+002BA8 13                RRC     A
+002BA9 13                RRC     A
+002BAA 13                RRC     A
+002BAB 541F              ANL     A,#01FH
+002BAD FC                MOV     R4,A
+   77: 			bitkey[temp_chu+1]  |=  (1<<((key)%8)); 
+002BAE 24D4              ADD     A,#LOW bitkey+01H
+002BB0 F582              MOV     DPL,A
+002BB2 E4                CLR     A
+002BB3 344D              ADDC    A,#HIGH bitkey+01H
+002BB5 F583              MOV     DPH,A
+002BB7 C083              PUSH    DPH
+002BB9 C082              PUSH    DPL
+002BBB E0                MOVX    A,@DPTR
+002BBC FE                MOV     R6,A
+002BBD EF                MOV     A,R7
+002BBE 5407              ANL     A,#07H
+002BC0 FF                MOV     R7,A
+002BC1 7401              MOV     A,#01H
+002BC3 A807              MOV     R0,AR7
+002BC5 08                INC     R0
+002BC6 8002              SJMP    ?C0102?KEYSCAN
+002BC8         ?C0101?KEYSCAN:
+002BC8 C3                CLR     C
+002BC9 33                RLC     A
+002BCA         ?C0102?KEYSCAN:
+002BCA D8FC              DJNZ    R0,?C0101?KEYSCAN
+002BCC 4E                ORL     A,R6
+002BCD D082              POP     DPL
+002BCF D083              POP     DPH
+002BD1 F0                MOVX    @DPTR,A
+   78: 		}
+   79: 	}
+   80: 	
+   81: }
+002BD2         ?C0006?KEYSCAN:
+002BD2 22                RET     
+----- FUNCTION _keyIn (END) -------
+
+
+----- FUNCTION _keyOut (BEGIN) -----
+ FILE: 'keyscan.c'
+   83: static void keyOut(byte key)
+   84: {
+;---- Variable 'key' assigned to Register 'R7' ----
+   85: 	byte i = 0,full_flag=0, temp_chu=0;
+   86: 	byte found = 0;
+;---- Variable 'i' assigned to Register 'R6' ----
+002BD3 E4                CLR     A
+002BD4 FE                MOV     R6,A
+002BD5 904F1C            MOV     DPTR,#full_flag
+002BD8 F0                MOVX    @DPTR,A
+;---- Variable 'temp_chu' assigned to Register 'R5' ----
+002BD9 FD                MOV     R5,A
+   87: 
+;---- Variable 'found' assigned to Register 'R4' ----
+002BDA FC                MOV     R4,A
+   88: 	if ((key &0xF0) == 0xf0 || (key &0xD0) == 0xD0)
+002BDB EF                MOV     A,R7
+002BDC 54F0              ANL     A,#0F0H
+002BDE 64F0              XRL     A,#0F0H
+002BE0 6007              JZ      ?C0020?KEYSCAN
+002BE2 EF                MOV     A,R7
+002BE3 54D0              ANL     A,#0D0H
+002BE5 FB                MOV     R3,A
+002BE6 BBD00C            CJNE    R3,#0D0H,?C0019?KEYSCAN
+002BE9         ?C0020?KEYSCAN:
+   89: 	{
+   90: 		if(mult_key_status == KEY_WAIT_RELEASE)
+002BE9 904E57            MOV     DPTR,#mult_key_status
+002BEC E0                MOVX    A,@DPTR
+002BED B4020B            CJNE    A,#02H,?C0022?KEYSCAN
+   91: 		{
+   92: 			mult_key_status = KEY_RELEASE;
+002BF0 7403              MOV     A,#03H
+002BF2 F0                MOVX    @DPTR,A
+   93: 		}
+   94: 	}
+002BF3 8006              SJMP    ?C0022?KEYSCAN
+002BF5         ?C0019?KEYSCAN:
+   95: 	else
+   96: 		standard_key_release_flag = 1;
+002BF5 904DEE            MOV     DPTR,#standard_key_release_flag
+002BF8 7401              MOV     A,#01H
+002BFA F0                MOVX    @DPTR,A
+002BFB         ?C0022?KEYSCAN:
+   97: 
+   98: 	if(key >= HID_KEY_LEFT_CTL && key <= HID_KEY_RIGHT_GUI)
+002BFB EF                MOV     A,R7
+002BFC C3                CLR     C
+002BFD 94E0              SUBB    A,#0E0H
+002BFF 4021              JC      ?C0023?KEYSCAN
+002C01 EF                MOV     A,R7
+002C02 D3                SETB    C
+002C03 94E7              SUBB    A,#0E7H
+002C05 501B              JNC     ?C0023?KEYSCAN
+   99: 	{
+  100: 		ksEvtPool.standardSel  &= ~(0x01 << (key & 0x07));
+002C07 904EB0            MOV     DPTR,#ksEvtPool
+002C0A E0                MOVX    A,@DPTR
+002C0B FE                MOV     R6,A
+002C0C EF                MOV     A,R7
+002C0D 5407              ANL     A,#07H
+002C0F FF                MOV     R7,A
+002C10 7401              MOV     A,#01H
+002C12 A807              MOV     R0,AR7
+002C14 08                INC     R0
+002C15 8002              SJMP    ?C0104?KEYSCAN
+002C17         ?C0103?KEYSCAN:
+002C17 C3                CLR     C
+002C18 33                RLC     A
+002C19         ?C0104?KEYSCAN:
+002C19 D8FC              DJNZ    R0,?C0103?KEYSCAN
+002C1B F4                CPL     A
+002C1C 5E                ANL     A,R6
+002C1D 904EB0            MOV     DPTR,#ksEvtPool
+002C20 F0                MOVX    @DPTR,A
+002C21 22                RET     
+  101: 		return;
+  102: 	}
+002C22         ?C0023?KEYSCAN:
+  103: 	
+  104: 
+  105: 	for (i=0 ; i<KS_BUFF_POLL_LEN ; i++) 
+002C22 E4                CLR     A
+002C23 FE                MOV     R6,A
+002C24         ?C0025?KEYSCAN:
+  106: 	{
+  107: 		if (found == 0) 
+002C24 EC                MOV     A,R4
+002C25 7021              JNZ     ?C0028?KEYSCAN
+  108: 		{
+  109: 			if (ksEvtPool.ksPool[i] == key) {
+002C27 74B1              MOV     A,#LOW ksEvtPool+01H
+002C29 2E                ADD     A,R6
+002C2A F582              MOV     DPL,A
+002C2C E4                CLR     A
+002C2D 344E              ADDC    A,#HIGH ksEvtPool+01H
+002C2F F583              MOV     DPH,A
+002C31 E0                MOVX    A,@DPTR
+002C32 6F                XRL     A,R7
+002C33 7047              JNZ     ?C0027?KEYSCAN
+  110: 				if (i == KS_BUFF_POLL_LEN-1) {
+002C35 EE                MOV     A,R6
+002C36 B4050B            CJNE    A,#05H,?C0030?KEYSCAN
+  111: 					ksEvtPool.ksPool[i] = 0;
+002C39 24B1              ADD     A,#LOW ksEvtPool+01H
+002C3B F582              MOV     DPL,A
+002C3D E4                CLR     A
+002C3E 344E              ADDC    A,#HIGH ksEvtPool+01H
+002C40 F583              MOV     DPH,A
+002C42 E4                CLR     A
+002C43 F0                MOVX    @DPTR,A
+  112: 				}
+002C44         ?C0030?KEYSCAN:
+  113: 				found = 1;
+002C44 7C01              MOV     R4,#01H
+  114: 			}
+  115: 		}
+002C46 8034              SJMP    ?C0027?KEYSCAN
+002C48         ?C0028?KEYSCAN:
+  116: 		else 
+  117: 		{
+  118: 			ksEvtPool.ksPool[i-1] = ksEvtPool.ksPool[i];
+002C48 74B1              MOV     A,#LOW ksEvtPool+01H
+002C4A 2E                ADD     A,R6
+002C4B F582              MOV     DPL,A
+002C4D E4                CLR     A
+002C4E 344E              ADDC    A,#HIGH ksEvtPool+01H
+002C50 F583              MOV     DPH,A
+002C52 E0                MOVX    A,@DPTR
+002C53 FB                MOV     R3,A
+002C54 74B0              MOV     A,#LOW ksEvtPool
+002C56 2E                ADD     A,R6
+002C57 F582              MOV     DPL,A
+002C59 E4                CLR     A
+002C5A 344E              ADDC    A,#HIGH ksEvtPool
+002C5C F583              MOV     DPH,A
+002C5E EB                MOV     A,R3
+002C5F F0                MOVX    @DPTR,A
+  119: 			if (ksEvtPool.ksPool[i] == 0)
+002C60 74B1              MOV     A,#LOW ksEvtPool+01H
+002C62 2E                ADD     A,R6
+002C63 F582              MOV     DPL,A
+002C65 E4                CLR     A
+002C66 344E              ADDC    A,#HIGH ksEvtPool+01H
+002C68 F583              MOV     DPH,A
+002C6A E0                MOVX    A,@DPTR
+002C6B 6014              JZ      ?C0026?KEYSCAN
+  120: 				break;
+002C6D         ?C0032?KEYSCAN:
+  121: 			if (i == KS_BUFF_POLL_LEN-1) {
+002C6D EE                MOV     A,R6
+002C6E B4050B            CJNE    A,#05H,?C0027?KEYSCAN
+  122: 				ksEvtPool.ksPool[i] = 0;
+002C71 24B1              ADD     A,#LOW ksEvtPool+01H
+002C73 F582              MOV     DPL,A
+002C75 E4                CLR     A
+002C76 344E              ADDC    A,#HIGH ksEvtPool+01H
+002C78 F583              MOV     DPH,A
+002C7A E4                CLR     A
+002C7B F0                MOVX    @DPTR,A
+  123: 			}
+  124: 		}
+  125: 	}
+002C7C         ?C0027?KEYSCAN:
+002C7C 0E                INC     R6
+002C7D EE                MOV     A,R6
+002C7E B406A3            CJNE    A,#06H,?C0025?KEYSCAN
+002C81         ?C0026?KEYSCAN:
+  126: 
+  127: 
+  128: 	if(key <= 112)
+002C81 EF                MOV     A,R7
+002C82 D3                SETB    C
+002C83 9470              SUBB    A,#070H
+002C85 502C              JNC     ?C0024?KEYSCAN
+  129: 	{
+  130: 		temp_chu = (key)/8;
+002C87 EF                MOV     A,R7
+002C88 13                RRC     A
+002C89 13                RRC     A
+002C8A 13                RRC     A
+002C8B 541F              ANL     A,#01FH
+002C8D FD                MOV     R5,A
+  131: 		bitkey[temp_chu+1]  &=  ~(1<<((key)%8)); 
+002C8E 24D4              ADD     A,#LOW bitkey+01H
+002C90 F582              MOV     DPL,A
+002C92 E4                CLR     A
+002C93 344D              ADDC    A,#HIGH bitkey+01H
+002C95 F583              MOV     DPH,A
+002C97 C083              PUSH    DPH
+002C99 C082              PUSH    DPL
+002C9B E0                MOVX    A,@DPTR
+002C9C FE                MOV     R6,A
+002C9D EF                MOV     A,R7
+002C9E 5407              ANL     A,#07H
+002CA0 FF                MOV     R7,A
+002CA1 7401              MOV     A,#01H
+002CA3 A807              MOV     R0,AR7
+002CA5 08                INC     R0
+002CA6 8002              SJMP    ?C0106?KEYSCAN
+002CA8         ?C0105?KEYSCAN:
+002CA8 C3                CLR     C
+002CA9 33                RLC     A
+002CAA         ?C0106?KEYSCAN:
+002CAA D8FC              DJNZ    R0,?C0105?KEYSCAN
+002CAC F4                CPL     A
+002CAD 5E                ANL     A,R6
+002CAE D082              POP     DPL
+002CB0 D083              POP     DPH
+002CB2 F0                MOVX    @DPTR,A
+  132: 	}
+  133: 	
+  134: }
+002CB3         ?C0024?KEYSCAN:
+002CB3 22                RET     
+----- FUNCTION _keyOut (END) -------
+
+
+----- FUNCTION KS_ScanMatrix (BEGIN) -----
+ FILE: 'keyscan.c'
+  200: void KS_ScanMatrix()
+  201: {
+  202: 	byte i = 0;
+  203: 	byte j = 0;
+;---- Variable 'i' assigned to Register 'R7' ----
+002CB4 E4                CLR     A
+002CB5 FF                MOV     R7,A
+  204: 	byte tgroup = 0;
+002CB6 904EFE            MOV     DPTR,#j
+002CB9 F0                MOVX    @DPTR,A
+  205: 	byte tgpionum = 0;
+;---- Variable 'tgroup' assigned to Register 'R6' ----
+002CBA FE                MOV     R6,A
+  206: 	byte temp = 0;
+;---- Variable 'tgpionum' assigned to Register 'R5' ----
+002CBB FD                MOV     R5,A
+  207: 	byte check = 0;
+002CBC A3                INC     DPTR
+002CBD F0                MOVX    @DPTR,A
+  208: 	for (i=0; col[i]!=0; i++) {
+002CBE A3                INC     DPTR
+002CBF F0                MOVX    @DPTR,A
+  209: 		tgroup = col[i]  >> 3;
+002CC0         ?C0050?KEYSCAN:
+002CC0 EF                MOV     A,R7
+002CC1 9006D6            MOV     DPTR,#col
+002CC4 93                MOVC    A,@A+DPTR
+002CC5 607C              JZ      ?C0051?KEYSCAN
+  210: 		tgpionum = 1 << (col[i] & 7);
+002CC7 EF                MOV     A,R7
+002CC8 93                MOVC    A,@A+DPTR
+002CC9 FD                MOV     R5,A
+002CCA 13                RRC     A
+002CCB 13                RRC     A
+002CCC 13                RRC     A
+002CCD 541F              ANL     A,#01FH
+002CCF FE                MOV     R6,A
+  211: 		GET_RAW_KEY_SEL(ksSelMapCurr[i], tgroup, tgpionum);
+002CD0 ED                MOV     A,R5
+002CD1 5407              ANL     A,#07H
+002CD3 FD                MOV     R5,A
+002CD4 7401              MOV     A,#01H
+002CD6 A805              MOV     R0,AR5
+002CD8 08                INC     R0
+002CD9 8002              SJMP    ?C0110?KEYSCAN
+002CDB         ?C0109?KEYSCAN:
+002CDB C3                CLR     C
+002CDC 33                RLC     A
+002CDD         ?C0110?KEYSCAN:
+002CDD D8FC              DJNZ    R0,?C0109?KEYSCAN
+002CDF FD                MOV     R5,A
+  212: 	}
+002CE0 EE                MOV     A,R6
+002CE1 2478              ADD     A,#078H
+002CE3 FB                MOV     R3,A
+002CE4 E4                CLR     A
+002CE5 3480              ADDC    A,#080H
+002CE7 8B82              MOV     DPL,R3
+002CE9 F583              MOV     DPH,A
+002CEB E0                MOVX    A,@DPTR
+002CEC FC                MOV     R4,A
+002CED ED                MOV     A,R5
+002CEE F4                CPL     A
+002CEF FB                MOV     R3,A
+002CF0 EC                MOV     A,R4
+002CF1 5B                ANL     A,R3
+002CF2 F0                MOVX    @DPTR,A
+002CF3 EE                MOV     A,R6
+002CF4 2470              ADD     A,#070H
+002CF6 F582              MOV     DPL,A
+002CF8 E4                CLR     A
+002CF9 3480              ADDC    A,#080H
+002CFB F583              MOV     DPH,A
+002CFD E0                MOVX    A,@DPTR
+002CFE 4D                ORL     A,R5
+002CFF F0                MOVX    @DPTR,A
+002D00 EE                MOV     A,R6
+002D01 2474              ADD     A,#074H
+002D03 F582              MOV     DPL,A
+002D05 E4                CLR     A
+002D06 3480              ADDC    A,#080H
+002D08 F583              MOV     DPH,A
+002D0A E0                MOVX    A,@DPTR
+002D0B 5B                ANL     A,R3
+002D0C F0                MOVX    @DPTR,A
+002D0D 90811C            MOV     DPTR,#0811CH
+002D10 E0                MOVX    A,@DPTR
+002D11 F4                CPL     A
+002D12 FC                MOV     R4,A
+002D13 74BC              MOV     A,#LOW ksSelMapCurr
+002D15 2F                ADD     A,R7
+002D16 F582              MOV     DPL,A
+002D18 E4                CLR     A
+002D19 344D              ADDC    A,#HIGH ksSelMapCurr
+002D1B F583              MOV     DPH,A
+002D1D EC                MOV     A,R4
+002D1E F0                MOVX    @DPTR,A
+002D1F EE                MOV     A,R6
+002D20 2478              ADD     A,#078H
+002D22 FB                MOV     R3,A
+002D23 E4                CLR     A
+002D24 3480              ADDC    A,#080H
+002D26 8B82              MOV     DPL,R3
+002D28 F583              MOV     DPH,A
+002D2A E0                MOVX    A,@DPTR
+002D2B 4D                ORL     A,R5
+002D2C F0                MOVX    @DPTR,A
+002D2D EE                MOV     A,R6
+002D2E 2470              ADD     A,#070H
+002D30 FB                MOV     R3,A
+002D31 E4                CLR     A
+002D32 3480              ADDC    A,#080H
+002D34 8B82              MOV     DPL,R3
+002D36 F583              MOV     DPH,A
+002D38 E0                MOVX    A,@DPTR
+002D39 FC                MOV     R4,A
+002D3A ED                MOV     A,R5
+002D3B F4                CPL     A
+002D3C FB                MOV     R3,A
+002D3D EC                MOV     A,R4
+002D3E 5B                ANL     A,R3
+002D3F F0                MOVX    @DPTR,A
+  213: 
+002D40 0F                INC     R7
+002D41 81C0              AJMP    ?C0050?KEYSCAN
+002D43         ?C0051?KEYSCAN:
+  214: 	for (i=0; col[i]!=0; i++) {
+002D43 E4                CLR     A
+002D44 FF                MOV     R7,A
+002D45         ?C0053?KEYSCAN:
+002D45 EF                MOV     A,R7
+002D46 9006D6            MOV     DPTR,#col
+002D49 93                MOVC    A,@A+DPTR
+002D4A 607C              JZ      ?C0054?KEYSCAN
+  215: 		tgroup = col[i]  >> 3;
+002D4C EF                MOV     A,R7
+002D4D 93                MOVC    A,@A+DPTR
+002D4E FD                MOV     R5,A
+002D4F 13                RRC     A
+002D50 13                RRC     A
+002D51 13                RRC     A
+002D52 541F              ANL     A,#01FH
+002D54 FE                MOV     R6,A
+  216: 		tgpionum = 1 << (col[i] & 7);
+002D55 ED                MOV     A,R5
+002D56 5407              ANL     A,#07H
+002D58 FD                MOV     R5,A
+002D59 7401              MOV     A,#01H
+002D5B A805              MOV     R0,AR5
+002D5D 08                INC     R0
+002D5E 8002              SJMP    ?C0112?KEYSCAN
+002D60         ?C0111?KEYSCAN:
+002D60 C3                CLR     C
+002D61 33                RLC     A
+002D62         ?C0112?KEYSCAN:
+002D62 D8FC              DJNZ    R0,?C0111?KEYSCAN
+002D64 FD                MOV     R5,A
+  217: 		GET_RAW_KEY_SEL(ksSelMapCheck[i], tgroup, tgpionum);
+002D65 EE                MOV     A,R6
+002D66 2478              ADD     A,#078H
+002D68 FB                MOV     R3,A
+002D69 E4                CLR     A
+002D6A 3480              ADDC    A,#080H
+002D6C 8B82              MOV     DPL,R3
+002D6E F583              MOV     DPH,A
+002D70 E0                MOVX    A,@DPTR
+002D71 FC                MOV     R4,A
+002D72 ED                MOV     A,R5
+002D73 F4                CPL     A
+002D74 FB                MOV     R3,A
+002D75 EC                MOV     A,R4
+002D76 5B                ANL     A,R3
+002D77 F0                MOVX    @DPTR,A
+002D78 EE                MOV     A,R6
+002D79 2470              ADD     A,#070H
+002D7B F582              MOV     DPL,A
+002D7D E4                CLR     A
+002D7E 3480              ADDC    A,#080H
+002D80 F583              MOV     DPH,A
+002D82 E0                MOVX    A,@DPTR
+002D83 4D                ORL     A,R5
+002D84 F0                MOVX    @DPTR,A
+002D85 EE                MOV     A,R6
+002D86 2474              ADD     A,#074H
+002D88 F582              MOV     DPL,A
+002D8A E4                CLR     A
+002D8B 3480              ADDC    A,#080H
+002D8D F583              MOV     DPH,A
+002D8F E0                MOVX    A,@DPTR
+002D90 5B                ANL     A,R3
+002D91 F0                MOVX    @DPTR,A
+002D92 90811C            MOV     DPTR,#0811CH
+002D95 E0                MOVX    A,@DPTR
+002D96 F4                CPL     A
+002D97 FC                MOV     R4,A
+002D98 74A8              MOV     A,#LOW ksSelMapCheck
+002D9A 2F                ADD     A,R7
+002D9B F582              MOV     DPL,A
+002D9D E4                CLR     A
+002D9E 344D              ADDC    A,#HIGH ksSelMapCheck
+002DA0 F583              MOV     DPH,A
+002DA2 EC                MOV     A,R4
+002DA3 F0                MOVX    @DPTR,A
+002DA4 EE                MOV     A,R6
+002DA5 2478              ADD     A,#078H
+002DA7 FB                MOV     R3,A
+002DA8 E4                CLR     A
+002DA9 3480              ADDC    A,#080H
+002DAB 8B82              MOV     DPL,R3
+002DAD F583              MOV     DPH,A
+002DAF E0                MOVX    A,@DPTR
+002DB0 4D                ORL     A,R5
+002DB1 F0                MOVX    @DPTR,A
+002DB2 EE                MOV     A,R6
+002DB3 2470              ADD     A,#070H
+002DB5 FB                MOV     R3,A
+002DB6 E4                CLR     A
+002DB7 3480              ADDC    A,#080H
+002DB9 8B82              MOV     DPL,R3
+002DBB F583              MOV     DPH,A
+002DBD E0                MOVX    A,@DPTR
+002DBE FC                MOV     R4,A
+002DBF ED                MOV     A,R5
+002DC0 F4                CPL     A
+002DC1 FB                MOV     R3,A
+002DC2 EC                MOV     A,R4
+002DC3 5B                ANL     A,R3
+002DC4 F0                MOVX    @DPTR,A
+  218: 	}
+002DC5 0F                INC     R7
+002DC6 A145              AJMP    ?C0053?KEYSCAN
+002DC8         ?C0054?KEYSCAN:
+  219: 
+  220: 	for (i=0; col[i]!=0; i++) {
+002DC8 E4                CLR     A
+002DC9 FF                MOV     R7,A
+002DCA         ?C0056?KEYSCAN:
+002DCA EF                MOV     A,R7
+002DCB 9006D6            MOV     DPTR,#col
+002DCE 93                MOVC    A,@A+DPTR
+002DCF 6040              JZ      ?C0060?KEYSCAN
+  221: 		if (ksSelMapCheck[i]!=ksSelMapCurr[i]) {
+002DD1 74BC              MOV     A,#LOW ksSelMapCurr
+002DD3 2F                ADD     A,R7
+002DD4 F582              MOV     DPL,A
+002DD6 E4                CLR     A
+002DD7 344D              ADDC    A,#HIGH ksSelMapCurr
+002DD9 F583              MOV     DPH,A
+002DDB E0                MOVX    A,@DPTR
+002DDC FE                MOV     R6,A
+002DDD 74A8              MOV     A,#LOW ksSelMapCheck
+002DDF 2F                ADD     A,R7
+002DE0 F582              MOV     DPL,A
+002DE2 E4                CLR     A
+002DE3 344D              ADDC    A,#HIGH ksSelMapCheck
+002DE5 F583              MOV     DPH,A
+002DE7 E0                MOVX    A,@DPTR
+002DE8 6E                XRL     A,R6
+002DE9 6023              JZ      ?C0058?KEYSCAN
+  222: 			ksSelMapCurr[i] &= ksSelMapCheck[i];
+002DEB 74BC              MOV     A,#LOW ksSelMapCurr
+002DED 2F                ADD     A,R7
+002DEE F582              MOV     DPL,A
+002DF0 E4                CLR     A
+002DF1 344D              ADDC    A,#HIGH ksSelMapCurr
+002DF3 F583              MOV     DPH,A
+002DF5 C083              PUSH    DPH
+002DF7 C082              PUSH    DPL
+002DF9 E0                MOVX    A,@DPTR
+002DFA FE                MOV     R6,A
+002DFB 74A8              MOV     A,#LOW ksSelMapCheck
+002DFD 2F                ADD     A,R7
+002DFE F582              MOV     DPL,A
+002E00 E4                CLR     A
+002E01 344D              ADDC    A,#HIGH ksSelMapCheck
+002E03 F583              MOV     DPH,A
+002E05 E0                MOVX    A,@DPTR
+002E06 FD                MOV     R5,A
+002E07 EE                MOV     A,R6
+002E08 5D                ANL     A,R5
+002E09 D082              POP     DPL
+002E0B D083              POP     DPH
+002E0D F0                MOVX    @DPTR,A
+  223: 		}
+  224: 	}
+002E0E         ?C0058?KEYSCAN:
+002E0E 0F                INC     R7
+002E0F 80B9              SJMP    ?C0056?KEYSCAN
+  225: }
+002E11         ?C0060?KEYSCAN:
+002E11 22                RET     
+----- FUNCTION KS_ScanMatrix (END) -------
+
+
+----- FUNCTION _kb_set_multikey (BEGIN) -----
+ FILE: 'kb_process.c'
+  180: void kb_set_multikey(word multikey_value)
+  181: {
+;---- Variable 'multikey_value' assigned to Register 'R4/R5' ----
+002E12 AD07              MOV     R5,AR7
+002E14 AC06              MOV     R4,AR6
+  182: 	if(mult_key_status != KEY_WAIT_RELEASE)
+  183: 	{
+002E16 904E57            MOV     DPTR,#mult_key_status
+002E19 E0                MOVX    A,@DPTR
+002E1A 6402              XRL     A,#02H
+002E1C 600E              JZ      ?C0047?KB_PROCESS
+  184: 		mult_key_status = KEY_MULIT_PRESS;
+  185: 		multikey[0] = HID_REPORTID_MEDIA_KEY;
+002E1E 7401              MOV     A,#01H
+002E20 F0                MOVX    @DPTR,A
+  186: 		multikey[1] = (multikey_value&0xff);
+002E21 904E58            MOV     DPTR,#multikey
+002E24 04                INC     A
+002E25 F0                MOVX    @DPTR,A
+  187: 		multikey[2] = ((multikey_value>>8)&0xff);
+002E26 EF                MOV     A,R7
+002E27 A3                INC     DPTR
+002E28 F0                MOVX    @DPTR,A
+  188: 	}
+002E29 EE                MOV     A,R6
+002E2A A3                INC     DPTR
+002E2B F0                MOVX    @DPTR,A
+  189: }
+  190: 
+002E2C         ?C0047?KB_PROCESS:
+002E2C 22                RET     
+----- FUNCTION _kb_set_multikey (END) -------
+
+
+----- FUNCTION _kb_multikey_setup (BEGIN) -----
+ FILE: 'kb_process.c'
+  892: void kb_multikey_setup(tKSEVENT *pEvt)
+  893: {
+002E2D 904EE5            MOV     DPTR,#pEvt
+002E30 EB                MOV     A,R3
+002E31 F0                MOVX    @DPTR,A
+002E32 A3                INC     DPTR
+002E33 EA                MOV     A,R2
+002E34 F0                MOVX    @DPTR,A
+002E35 A3                INC     DPTR
+002E36 E9                MOV     A,R1
+002E37 F0                MOVX    @DPTR,A
+  894: 	byte i = 0;
+  895: 	
+002E38 E4                CLR     A
+002E39 A3                INC     DPTR
+002E3A F0                MOVX    @DPTR,A
+  896: 	for (i = 0;i < 6;i++)
+002E3B F0                MOVX    @DPTR,A
+002E3C         ?C0200?KB_PROCESS:
+002E3C 904EE8            MOV     DPTR,#i
+002E3F E0                MOVX    A,@DPTR
+002E40 FF                MOV     R7,A
+002E41 C3                CLR     C
+002E42 9406              SUBB    A,#06H
+002E44 4003              JC      $ + 5H
+002E46 0230DC            LJMP    ?C0251?KB_PROCESS
+  897: 	{		
+  898: 		if ((pEvt->ksPool[i] &0xF0) == 0xf0 
+002E49 904EE5            MOV     DPTR,#pEvt
+002E4C E0                MOVX    A,@DPTR
+002E4D FB                MOV     R3,A
+002E4E A3                INC     DPTR
+002E4F E0                MOVX    A,@DPTR
+002E50 FA                MOV     R2,A
+002E51 A3                INC     DPTR
+002E52 E0                MOVX    A,@DPTR
+002E53 2401              ADD     A,#01H
+002E55 F9                MOV     R1,A
+002E56 E4                CLR     A
+002E57 3A                ADDC    A,R2
+002E58 FA                MOV     R2,A
+002E59 7E00              MOV     R6,#00H
+002E5B E9                MOV     A,R1
+002E5C 2F                ADD     A,R7
+002E5D F9                MOV     R1,A
+002E5E EE                MOV     A,R6
+002E5F 3A                ADDC    A,R2
+002E60 FA                MOV     R2,A
+002E61 1203B6            LCALL   ?C?CLDPTR
+002E64 FF                MOV     R7,A
+002E65 54F0              ANL     A,#0F0H
+002E67 64F0              XRL     A,#0F0H
+002E69 600A              JZ      ?C0204?KB_PROCESS
+002E6B EF                MOV     A,R7
+002E6C 54D0              ANL     A,#0D0H
+002E6E 64D0              XRL     A,#0D0H
+002E70 6003              JZ      $ + 5H
+002E72 0230D3            LJMP    ?C0202?KB_PROCESS
+002E75         ?C0204?KB_PROCESS:
+  899: 			|| (pEvt->ksPool[i] &0xD0) == 0xD0)
+  900: 		{
+  901: 			
+  902: 			if (pEvt->ksPool[i] ==  HID_MULTIKEY_MEDIA) //media select
+002E75 1203B6            LCALL   ?C?CLDPTR
+002E78 FB                MOV     R3,A
+002E79 B4F109            CJNE    A,#0F1H,?C0205?KB_PROCESS
+  903: 			{
+  904: 				kb_set_multikey(0x0183); 
+002E7C 7F83              MOV     R7,#083H
+002E7E 7E01              MOV     R6,#01H
+002E80 D112              ACALL   _kb_set_multikey
+  905: 			}
+002E82 0230A8            LJMP    ?C0206?KB_PROCESS
+002E85         ?C0205?KB_PROCESS:
+  906: 			else
+  907: 			if (pEvt->ksPool[i] ==  HID_MULTIKEY_PALY) //play / pause
+002E85 EB                MOV     A,R3
+002E86 B4F209            CJNE    A,#0F2H,?C0207?KB_PROCESS
+  908: 			{ 
+  909: 				kb_set_multikey(0x00cd);
+002E89 7FCD              MOV     R7,#0CDH
+002E8B 7E00              MOV     R6,#00H
+002E8D D112              ACALL   _kb_set_multikey
+  910: 			}
+002E8F 0230A8            LJMP    ?C0206?KB_PROCESS
+002E92         ?C0207?KB_PROCESS:
+  911: 			else if (pEvt->ksPool[i] ==  HID_MULTIKEY_STOP)  //stop
+002E92 904EE5            MOV     DPTR,#pEvt
+002E95 E0                MOVX    A,@DPTR
+002E96 FB                MOV     R3,A
+002E97 A3                INC     DPTR
+002E98 E0                MOVX    A,@DPTR
+002E99 FA                MOV     R2,A
+002E9A A3                INC     DPTR
+002E9B E0                MOVX    A,@DPTR
+002E9C 2401              ADD     A,#01H
+002E9E F9                MOV     R1,A
+002E9F E4                CLR     A
+002EA0 3A                ADDC    A,R2
+002EA1 FA                MOV     R2,A
+002EA2 A3                INC     DPTR
+002EA3 E0                MOVX    A,@DPTR
+002EA4 7E00              MOV     R6,#00H
+002EA6 29                ADD     A,R1
+002EA7 F9                MOV     R1,A
+002EA8 EE                MOV     A,R6
+002EA9 3A                ADDC    A,R2
+002EAA FA                MOV     R2,A
+002EAB 1203B6            LCALL   ?C?CLDPTR
+002EAE FB                MOV     R3,A
+002EAF B4F307            CJNE    A,#0F3H,?C0209?KB_PROCESS
+  912: 			{
+  913: 				kb_set_multikey(0x00b7);
+002EB2 7FB7              MOV     R7,#0B7H
+002EB4 D112              ACALL   _kb_set_multikey
+  914: 			}	
+002EB6 0230A8            LJMP    ?C0206?KB_PROCESS
+002EB9         ?C0209?KB_PROCESS:
+  915: 			else if (pEvt->ksPool[i] ==  HID_MULTIKEY_PRE_TRACK) //pre Track
+002EB9 EB                MOV     A,R3
+002EBA B4F409            CJNE    A,#0F4H,?C0211?KB_PROCESS
+  916: 			{
+  917: 				kb_set_multikey(0x00b6);
+002EBD 7FB6              MOV     R7,#0B6H
+002EBF 7E00              MOV     R6,#00H
+002EC1 D112              ACALL   _kb_set_multikey
+  918: 			}
+002EC3 0230A8            LJMP    ?C0206?KB_PROCESS
+002EC6         ?C0211?KB_PROCESS:
+  919: 			else if (pEvt->ksPool[i] ==  HID_MULTIKEY_NEXT_TRACK) //next Track
+002EC6 904EE5            MOV     DPTR,#pEvt
+002EC9 E0                MOVX    A,@DPTR
+002ECA FB                MOV     R3,A
+002ECB A3                INC     DPTR
+002ECC E0                MOVX    A,@DPTR
+002ECD FA                MOV     R2,A
+002ECE A3                INC     DPTR
+002ECF E0                MOVX    A,@DPTR
+002ED0 2401              ADD     A,#01H
+002ED2 F9                MOV     R1,A
+002ED3 E4                CLR     A
+002ED4 3A                ADDC    A,R2
+002ED5 FA                MOV     R2,A
+002ED6 A3                INC     DPTR
+002ED7 E0                MOVX    A,@DPTR
+002ED8 7E00              MOV     R6,#00H
+002EDA 29                ADD     A,R1
+002EDB F9                MOV     R1,A
+002EDC EE                MOV     A,R6
+002EDD 3A                ADDC    A,R2
+002EDE FA                MOV     R2,A
+002EDF 1203B6            LCALL   ?C?CLDPTR
+002EE2 FB                MOV     R3,A
+002EE3 B4F507            CJNE    A,#0F5H,?C0213?KB_PROCESS
+  920: 			{
+  921: 				kb_set_multikey(0x00b5);
+002EE6 7FB5              MOV     R7,#0B5H
+002EE8 D112              ACALL   _kb_set_multikey
+  922: 			}
+002EEA 0230A8            LJMP    ?C0206?KB_PROCESS
+002EED         ?C0213?KB_PROCESS:
+  923: 			else if (pEvt->ksPool[i] ==  HID_MULTIKEY_VOL_DOWN) //vol-
+002EED EB                MOV     A,R3
+002EEE B4F609            CJNE    A,#0F6H,?C0215?KB_PROCESS
+  924: 			{
+  925: 				kb_set_multikey(0x00ea);
+002EF1 7FEA              MOV     R7,#0EAH
+002EF3 7E00              MOV     R6,#00H
+002EF5 D112              ACALL   _kb_set_multikey
+  926: 			}
+002EF7 0230A8            LJMP    ?C0206?KB_PROCESS
+002EFA         ?C0215?KB_PROCESS:
+  927: 			else if (pEvt->ksPool[i] ==  HID_MULTIKEY_VOL_UP) //vol+
+002EFA 904EE5            MOV     DPTR,#pEvt
+002EFD E0                MOVX    A,@DPTR
+002EFE FB                MOV     R3,A
+002EFF A3                INC     DPTR
+002F00 E0                MOVX    A,@DPTR
+002F01 FA                MOV     R2,A
+002F02 A3                INC     DPTR
+002F03 E0                MOVX    A,@DPTR
+002F04 2401              ADD     A,#01H
+002F06 F9                MOV     R1,A
+002F07 E4                CLR     A
+002F08 3A                ADDC    A,R2
+002F09 FA                MOV     R2,A
+002F0A A3                INC     DPTR
+002F0B E0                MOVX    A,@DPTR
+002F0C 7E00              MOV     R6,#00H
+002F0E 29                ADD     A,R1
+002F0F F9                MOV     R1,A
+002F10 EE                MOV     A,R6
+002F11 3A                ADDC    A,R2
+002F12 FA                MOV     R2,A
+002F13 1203B6            LCALL   ?C?CLDPTR
+002F16 FB                MOV     R3,A
+002F17 B4F707            CJNE    A,#0F7H,?C0217?KB_PROCESS
+  928: 			{
+  929: 				kb_set_multikey(0x00e9);
+002F1A 7FE9              MOV     R7,#0E9H
+002F1C D112              ACALL   _kb_set_multikey
+  930: 			}
+002F1E 0230A8            LJMP    ?C0206?KB_PROCESS
+002F21         ?C0217?KB_PROCESS:
+  931: 			else	if (pEvt->ksPool[i] ==  HID_MULTIKEY_MUTE) //mute
+002F21 EB                MOV     A,R3
+002F22 B4F809            CJNE    A,#0F8H,?C0219?KB_PROCESS
+  932: 			{
+  933: 				kb_set_multikey(0x00e2);
+002F25 7FE2              MOV     R7,#0E2H
+002F27 7E00              MOV     R6,#00H
+002F29 D112              ACALL   _kb_set_multikey
+  934: 			}
+002F2B 0230A8            LJMP    ?C0206?KB_PROCESS
+002F2E         ?C0219?KB_PROCESS:
+  935: 			else	if (pEvt->ksPool[i] ==  HID_MULTIKEY_MY_COMPUTER) 
+002F2E 904EE5            MOV     DPTR,#pEvt
+002F31 E0                MOVX    A,@DPTR
+002F32 FB                MOV     R3,A
+002F33 A3                INC     DPTR
+002F34 E0                MOVX    A,@DPTR
+002F35 FA                MOV     R2,A
+002F36 A3                INC     DPTR
+002F37 E0                MOVX    A,@DPTR
+002F38 2401              ADD     A,#01H
+002F3A F9                MOV     R1,A
+002F3B E4                CLR     A
+002F3C 3A                ADDC    A,R2
+002F3D FA                MOV     R2,A
+002F3E A3                INC     DPTR
+002F3F E0                MOVX    A,@DPTR
+002F40 7E00              MOV     R6,#00H
+002F42 29                ADD     A,R1
+002F43 F9                MOV     R1,A
+002F44 EE                MOV     A,R6
+002F45 3A                ADDC    A,R2
+002F46 FA                MOV     R2,A
+002F47 1203B6            LCALL   ?C?CLDPTR
+002F4A FB                MOV     R3,A
+002F4B B4F908            CJNE    A,#0F9H,?C0221?KB_PROCESS
+  936: 			{
+  937: 				kb_set_multikey(0x0194);
+002F4E 7F94              MOV     R7,#094H
+002F50 0E                INC     R6
+002F51 D112              ACALL   _kb_set_multikey
+  938: 			}	
+002F53 0230A8            LJMP    ?C0206?KB_PROCESS
+002F56         ?C0221?KB_PROCESS:
+  939: 			else if (pEvt->ksPool[i] ==  HID_MULTIKEY_MAIL)  //mail
+002F56 EB                MOV     A,R3
+002F57 B4FA09            CJNE    A,#0FAH,?C0223?KB_PROCESS
+  940: 			{
+  941: 				kb_set_multikey(0x018a);//mail
+002F5A 7F8A              MOV     R7,#08AH
+002F5C 7E01              MOV     R6,#01H
+002F5E D112              ACALL   _kb_set_multikey
+  942: 			}
+002F60 0230A8            LJMP    ?C0206?KB_PROCESS
+002F63         ?C0223?KB_PROCESS:
+  943: 			else	if (pEvt->ksPool[i] ==  HID_MULTIKEY_CALCULATOR) //calculator
+002F63 904EE5            MOV     DPTR,#pEvt
+002F66 E0                MOVX    A,@DPTR
+002F67 FB                MOV     R3,A
+002F68 A3                INC     DPTR
+002F69 E0                MOVX    A,@DPTR
+002F6A FA                MOV     R2,A
+002F6B A3                INC     DPTR
+002F6C E0                MOVX    A,@DPTR
+002F6D 2401              ADD     A,#01H
+002F6F F9                MOV     R1,A
+002F70 E4                CLR     A
+002F71 3A                ADDC    A,R2
+002F72 FA                MOV     R2,A
+002F73 A3                INC     DPTR
+002F74 E0                MOVX    A,@DPTR
+002F75 7E00              MOV     R6,#00H
+002F77 29                ADD     A,R1
+002F78 F9                MOV     R1,A
+002F79 EE                MOV     A,R6
+002F7A 3A                ADDC    A,R2
+002F7B FA                MOV     R2,A
+002F7C 1203B6            LCALL   ?C?CLDPTR
+002F7F FB                MOV     R3,A
+002F80 B4FB08            CJNE    A,#0FBH,?C0225?KB_PROCESS
+  944: 			{
+  945: 				kb_set_multikey(0x0192);
+002F83 7F92              MOV     R7,#092H
+002F85 0E                INC     R6
+002F86 D112              ACALL   _kb_set_multikey
+  946: 			}
+002F88 0230A8            LJMP    ?C0206?KB_PROCESS
+002F8B         ?C0225?KB_PROCESS:
+  947: 			else if (pEvt->ksPool[i] ==  HID_MULTIKEY_AC_FAVORITES) 
+002F8B EB                MOV     A,R3
+002F8C B4D009            CJNE    A,#0D0H,?C0227?KB_PROCESS
+  948: 			{
+  949: 				kb_set_multikey(0x022a);//www Favorites
+002F8F 7F2A              MOV     R7,#02AH
+002F91 7E02              MOV     R6,#02H
+002F93 D112              ACALL   _kb_set_multikey
+  950: 			}
+002F95 0230A8            LJMP    ?C0206?KB_PROCESS
+002F98         ?C0227?KB_PROCESS:
+  951: 			else if (pEvt->ksPool[i] ==  HID_MULTIKEY_AC_FORWARD)  
+002F98 904EE5            MOV     DPTR,#pEvt
+002F9B E0                MOVX    A,@DPTR
+002F9C FB                MOV     R3,A
+002F9D A3                INC     DPTR
+002F9E E0                MOVX    A,@DPTR
+002F9F FA                MOV     R2,A
+002FA0 A3                INC     DPTR
+002FA1 E0                MOVX    A,@DPTR
+002FA2 2401              ADD     A,#01H
+002FA4 F9                MOV     R1,A
+002FA5 E4                CLR     A
+002FA6 3A                ADDC    A,R2
+002FA7 FA                MOV     R2,A
+002FA8 A3                INC     DPTR
+002FA9 E0                MOVX    A,@DPTR
+002FAA 7E00              MOV     R6,#00H
+002FAC 29                ADD     A,R1
+002FAD F9                MOV     R1,A
+002FAE EE                MOV     A,R6
+002FAF 3A                ADDC    A,R2
+002FB0 FA                MOV     R2,A
+002FB1 1203B6            LCALL   ?C?CLDPTR
+002FB4 FB                MOV     R3,A
+002FB5 B4D109            CJNE    A,#0D1H,?C0229?KB_PROCESS
+  952: 			{
+  953: 				kb_set_multikey(0x0225);
+002FB8 7F25              MOV     R7,#025H
+002FBA 7E02              MOV     R6,#02H
+002FBC D112              ACALL   _kb_set_multikey
+  954: 			}
+002FBE 0230A8            LJMP    ?C0206?KB_PROCESS
+002FC1         ?C0229?KB_PROCESS:
+  955: 			else if (pEvt->ksPool[i] ==  HID_MULTIKEY_AC_STOP)  //www Stop
+002FC1 EB                MOV     A,R3
+002FC2 B4D309            CJNE    A,#0D3H,?C0231?KB_PROCESS
+  956: 			{
+  957: 				kb_set_multikey(0x0226);
+002FC5 7F26              MOV     R7,#026H
+002FC7 7E02              MOV     R6,#02H
+002FC9 D112              ACALL   _kb_set_multikey
+  958: 			}
+002FCB 0230A8            LJMP    ?C0206?KB_PROCESS
+002FCE         ?C0231?KB_PROCESS:
+  959: 			else if (pEvt->ksPool[i] ==  HID_MULTIKEY_AC_BACK)  
+002FCE 904EE5            MOV     DPTR,#pEvt
+002FD1 E0                MOVX    A,@DPTR
+002FD2 FB                MOV     R3,A
+002FD3 A3                INC     DPTR
+002FD4 E0                MOVX    A,@DPTR
+002FD5 FA                MOV     R2,A
+002FD6 A3                INC     DPTR
+002FD7 E0                MOVX    A,@DPTR
+002FD8 2401              ADD     A,#01H
+002FDA F9                MOV     R1,A
+002FDB E4                CLR     A
+002FDC 3A                ADDC    A,R2
+002FDD FA                MOV     R2,A
+002FDE A3                INC     DPTR
+002FDF E0                MOVX    A,@DPTR
+002FE0 7E00              MOV     R6,#00H
+002FE2 29                ADD     A,R1
+002FE3 F9                MOV     R1,A
+002FE4 EE                MOV     A,R6
+002FE5 3A                ADDC    A,R2
+002FE6 FA                MOV     R2,A
+002FE7 1203B6            LCALL   ?C?CLDPTR
+002FEA FB                MOV     R3,A
+002FEB B4D209            CJNE    A,#0D2H,?C0233?KB_PROCESS
+  960: 			{
+  961: 				kb_set_multikey(0x0224);
+002FEE 7F24              MOV     R7,#024H
+002FF0 7E02              MOV     R6,#02H
+002FF2 D112              ACALL   _kb_set_multikey
+  962: 			}
+002FF4 0230A8            LJMP    ?C0206?KB_PROCESS
+002FF7         ?C0233?KB_PROCESS:
+  963: 			else if (pEvt->ksPool[i] ==  HID_MULTIKEY_AC_REFRESH) //www refresh
+002FF7 EB                MOV     A,R3
+002FF8 B4D409            CJNE    A,#0D4H,?C0235?KB_PROCESS
+  964: 			{
+  965: 				kb_set_multikey(0x0227);
+002FFB 7F27              MOV     R7,#027H
+002FFD 7E02              MOV     R6,#02H
+002FFF 122E12            LCALL   _kb_set_multikey
+  966: 			}	
+003002 01A8              AJMP    ?C0206?KB_PROCESS
+003004         ?C0235?KB_PROCESS:
+  967: 			else if (pEvt->ksPool[i] ==  HID_MULTIKEY_AC_SEARCH)  //www search
+003004 904EE5            MOV     DPTR,#pEvt
+003007 E0                MOVX    A,@DPTR
+003008 FB                MOV     R3,A
+003009 A3                INC     DPTR
+00300A E0                MOVX    A,@DPTR
+00300B FA                MOV     R2,A
+00300C A3                INC     DPTR
+00300D E0                MOVX    A,@DPTR
+00300E 2401              ADD     A,#01H
+003010 F9                MOV     R1,A
+003011 E4                CLR     A
+003012 3A                ADDC    A,R2
+003013 FA                MOV     R2,A
+003014 A3                INC     DPTR
+003015 E0                MOVX    A,@DPTR
+003016 7E00              MOV     R6,#00H
+003018 29                ADD     A,R1
+003019 F9                MOV     R1,A
+00301A EE                MOV     A,R6
+00301B 3A                ADDC    A,R2
+00301C FA                MOV     R2,A
+00301D 1203B6            LCALL   ?C?CLDPTR
+003020 FB                MOV     R3,A
+003021 B4D509            CJNE    A,#0D5H,?C0237?KB_PROCESS
+  968: 			{
+  969: 				kb_set_multikey(0x0221);
+003024 7F21              MOV     R7,#021H
+003026 7E02              MOV     R6,#02H
+003028 122E12            LCALL   _kb_set_multikey
+  970: 			}
+00302B 807B              SJMP    ?C0206?KB_PROCESS
+00302D         ?C0237?KB_PROCESS:
+  971: 			else if (pEvt->ksPool[i] ==  HID_MULTIKEY_AC_HOME)
+00302D EB                MOV     A,R3
+00302E B4D609            CJNE    A,#0D6H,?C0239?KB_PROCESS
+  972: 			{
+  973: 				kb_set_multikey(0x0223);
+003031 7F23              MOV     R7,#023H
+003033 7E02              MOV     R6,#02H
+003035 122E12            LCALL   _kb_set_multikey
+  974: 			} 	
+003038 806E              SJMP    ?C0206?KB_PROCESS
+00303A         ?C0239?KB_PROCESS:
+  975: 			else if (pEvt->ksPool[i] ==  HID_MULTIKEY_LIGHT_DOWN)
+00303A 904EE5            MOV     DPTR,#pEvt
+00303D E0                MOVX    A,@DPTR
+00303E FB                MOV     R3,A
+00303F A3                INC     DPTR
+003040 E0                MOVX    A,@DPTR
+003041 FA                MOV     R2,A
+003042 A3                INC     DPTR
+003043 E0                MOVX    A,@DPTR
+003044 2401              ADD     A,#01H
+003046 F9                MOV     R1,A
+003047 E4                CLR     A
+003048 3A                ADDC    A,R2
+003049 FA                MOV     R2,A
+00304A A3                INC     DPTR
+00304B E0                MOVX    A,@DPTR
+00304C 7E00              MOV     R6,#00H
+00304E 29                ADD     A,R1
+00304F F9                MOV     R1,A
+003050 EE                MOV     A,R6
+003051 3A                ADDC    A,R2
+003052 FA                MOV     R2,A
+003053 1203B6            LCALL   ?C?CLDPTR
+003056 FB                MOV     R3,A
+003057 B4D707            CJNE    A,#0D7H,?C0241?KB_PROCESS
+  976: 			{
+  977: 				kb_set_multikey(0x0070);
+00305A 7F70              MOV     R7,#070H
+00305C 122E12            LCALL   _kb_set_multikey
+  978: 			}
+00305F 8047              SJMP    ?C0206?KB_PROCESS
+003061         ?C0241?KB_PROCESS:
+  979: 			else if (pEvt->ksPool[i] ==  HID_MULTIKEY_LIGHT_UP)
+003061 EB                MOV     A,R3
+003062 B4D809            CJNE    A,#0D8H,?C0243?KB_PROCESS
+  980: 			{
+  981: 				kb_set_multikey(0x006f);
+003065 7F6F              MOV     R7,#06FH
+003067 7E00              MOV     R6,#00H
+003069 122E12            LCALL   _kb_set_multikey
+  982: 			}
+00306C 803A              SJMP    ?C0206?KB_PROCESS
+00306E         ?C0243?KB_PROCESS:
+  983: 		#ifdef SYSTEM_CONTROL_ENABLE
+  984: 		      	else if (pEvt->ksPool[i] ==  HID_SYSTEM_KEY_POWER_DOWN)
+00306E 904EE5            MOV     DPTR,#pEvt
+003071 E0                MOVX    A,@DPTR
+003072 FB                MOV     R3,A
+003073 A3                INC     DPTR
+003074 E0                MOVX    A,@DPTR
+003075 FA                MOV     R2,A
+003076 A3                INC     DPTR
+003077 E0                MOVX    A,@DPTR
+003078 2401              ADD     A,#01H
+00307A F9                MOV     R1,A
+00307B E4                CLR     A
+00307C 3A                ADDC    A,R2
+00307D FA                MOV     R2,A
+00307E A3                INC     DPTR
+00307F E0                MOVX    A,@DPTR
+003080 7E00              MOV     R6,#00H
+003082 29                ADD     A,R1
+003083 F9                MOV     R1,A
+003084 EE                MOV     A,R6
+003085 3A                ADDC    A,R2
+003086 FA                MOV     R2,A
+003087 1203B6            LCALL   ?C?CLDPTR
+00308A FE                MOV     R6,A
+00308B B4DD06            CJNE    A,#0DDH,?C0245?KB_PROCESS
+  985: 		      	{
+  986: 		        	kb_set_systemkey(0x01);
+00308E 7F01              MOV     R7,#01H
+003090 11DD              ACALL   _kb_set_systemkey
+  987: 		      	}
+003092 8014              SJMP    ?C0206?KB_PROCESS
+003094         ?C0245?KB_PROCESS:
+  988: 		      	else if (pEvt->ksPool[i] ==  HID_SYSTEM_KEY_SLEEP)
+003094 EE                MOV     A,R6
+003095 B4DE06            CJNE    A,#0DEH,?C0247?KB_PROCESS
+  989: 		      	{
+  990: 		        	kb_set_systemkey(0x02);
+003098 7F02              MOV     R7,#02H
+00309A 11DD              ACALL   _kb_set_systemkey
+  991: 		      	}
+00309C 800A              SJMP    ?C0206?KB_PROCESS
+00309E         ?C0247?KB_PROCESS:
+  992: 		      	else if (pEvt->ksPool[i] ==  HID_SYSTEM_KEY_WAKE_UP)
+00309E 1203B6            LCALL   ?C?CLDPTR
+0030A1 B4DF04            CJNE    A,#0DFH,?C0206?KB_PROCESS
+  993: 		      	{
+  994: 		        	kb_set_systemkey(0x04);
+0030A4 7F04              MOV     R7,#04H
+0030A6 11DD              ACALL   _kb_set_systemkey
+  995: 		      	}
+0030A8         ?C0206?KB_PROCESS:
+  996: 		#endif
+  997: 			
+  998: 			if(mult_key_status == KEY_WAIT_RELEASE)
+0030A8 904E57            MOV     DPTR,#mult_key_status
+0030AB E0                MOVX    A,@DPTR
+0030AC B40224            CJNE    A,#02H,?C0202?KB_PROCESS
+  999: 			{
+ 1000: 				mult_key_value = pEvt->ksPool[i];
+0030AF 904EE5            MOV     DPTR,#pEvt
+0030B2 E0                MOVX    A,@DPTR
+0030B3 FB                MOV     R3,A
+0030B4 A3                INC     DPTR
+0030B5 E0                MOVX    A,@DPTR
+0030B6 FA                MOV     R2,A
+0030B7 A3                INC     DPTR
+0030B8 E0                MOVX    A,@DPTR
+0030B9 2401              ADD     A,#01H
+0030BB F9                MOV     R1,A
+0030BC E4                CLR     A
+0030BD 3A                ADDC    A,R2
+0030BE FA                MOV     R2,A
+0030BF A3                INC     DPTR
+0030C0 E0                MOVX    A,@DPTR
+0030C1 7E00              MOV     R6,#00H
+0030C3 29                ADD     A,R1
+0030C4 F9                MOV     R1,A
+0030C5 EE                MOV     A,R6
+0030C6 3A                ADDC    A,R2
+0030C7 FA                MOV     R2,A
+0030C8 1203B6            LCALL   ?C?CLDPTR
+0030CB 904DFC            MOV     DPTR,#mult_key_value
+0030CE F0                MOVX    @DPTR,A
+ 1001: 				pEvt->ksPool[i] = 0;
+0030CF E4                CLR     A
+0030D0 1203FC            LCALL   ?C?CSTPTR
+ 1002: 			}
+ 1003: 		}
+ 1004: 	}
+0030D3         ?C0202?KB_PROCESS:
+0030D3 904EE8            MOV     DPTR,#i
+0030D6 E0                MOVX    A,@DPTR
+0030D7 04                INC     A
+0030D8 F0                MOVX    @DPTR,A
+0030D9 022E3C            LJMP    ?C0200?KB_PROCESS
+ 1005: }
+0030DC         ?C0251?KB_PROCESS:
+0030DC 22                RET     
+----- FUNCTION _kb_multikey_setup (END) -------
+
+
+----- FUNCTION _kb_set_systemkey (BEGIN) -----
+ FILE: 'kb_process.c'
+  192: void kb_set_systemkey(byte systemkey_value)
+  193: {
+;---- Variable 'systemkey_value' assigned to Register 'R7' ----
+  194: 	if(mult_key_status != KEY_WAIT_RELEASE)
+  195: 	{
+0030DD 904E57            MOV     DPTR,#mult_key_status
+0030E0 E0                MOVX    A,@DPTR
+0030E1 6402              XRL     A,#02H
+0030E3 6012              JZ      ?C0049?KB_PROCESS
+  196: 		mult_key_status = KEY_SYSTEM_PRESS;
+  197: 		system_key_press = 1;
+0030E5 7404              MOV     A,#04H
+0030E7 F0                MOVX    @DPTR,A
+  198: 		multikey[0] = HID_REPORTID_SYSTEM_CTRL;
+0030E8 904DF8            MOV     DPTR,#system_key_press
+0030EB 7401              MOV     A,#01H
+0030ED F0                MOVX    @DPTR,A
+  199: 		multikey[1] = systemkey_value;
+0030EE 904E58            MOV     DPTR,#multikey
+0030F1 7403              MOV     A,#03H
+0030F3 F0                MOVX    @DPTR,A
+  200: 	}
+0030F4 A3                INC     DPTR
+0030F5 EF                MOV     A,R7
+0030F6 F0                MOVX    @DPTR,A
+  201: }
+  202: #endif
+0030F7         ?C0049?KB_PROCESS:
+0030F7 22                RET     
+----- FUNCTION _kb_set_systemkey (END) -------
+
+
+----- FUNCTION kb_bt_pincode_enter (BEGIN) -----
+ FILE: 'kb_process.c'
+  231: void kb_bt_pincode_enter()
+  232: {
+  233: 	tKSEVENT *pEvt = NULL;
+  234: 	pEvt = KS_GetCurrentEvt();
+0030F8 904EF5            MOV     DPTR,#pEvt
+0030FB E4                CLR     A
+0030FC F0                MOVX    @DPTR,A
+0030FD A3                INC     DPTR
+0030FE F0                MOVX    @DPTR,A
+0030FF A3                INC     DPTR
+003100 F0                MOVX    @DPTR,A
+  235: 	if (pEvt == NULL)
+003101 122890            LCALL   KS_GetCurrentEvt
+003104 904EF5            MOV     DPTR,#pEvt
+003107 EB                MOV     A,R3
+003108 F0                MOVX    @DPTR,A
+003109 A3                INC     DPTR
+00310A EA                MOV     A,R2
+00310B F0                MOVX    @DPTR,A
+00310C A3                INC     DPTR
+00310D E9                MOV     A,R1
+00310E F0                MOVX    @DPTR,A
+  236: 		return;
+00310F 4A                ORL     A,R2
+003110 7002              JNZ     $ + 4H
+003112 616A              AJMP    ?C0052?KB_PROCESS
+003114         ?C0051?KB_PROCESS:
+  237: 	if (pEvt->ksPool[0] != 0) {
+003114 904EF5            MOV     DPTR,#pEvt
+003117 E0                MOVX    A,@DPTR
+003118 FB                MOV     R3,A
+003119 A3                INC     DPTR
+00311A E0                MOVX    A,@DPTR
+00311B FA                MOV     R2,A
+00311C A3                INC     DPTR
+00311D E0                MOVX    A,@DPTR
+00311E F9                MOV     R1,A
+00311F 900001            MOV     DPTR,#01H
+003122 1203CF            LCALL   ?C?CLDOPTR
+003125 FF                MOV     R7,A
+003126 7002              JNZ     $ + 4H
+003128 616A              AJMP    ?C0052?KB_PROCESS
+  238: 		if (pEvt->ksPool[0] == HID_KEY_ENTER ||pEvt->ksPool[0] == HID_KEY_KP_ENTER) {
+00312A 6428              XRL     A,#028H
+00312C 6005              JZ      ?C0055?KB_PROCESS
+00312E EF                MOV     A,R7
+00312F 6458              XRL     A,#058H
+003131 7032              JNZ     ?C0054?KB_PROCESS
+003133         ?C0055?KB_PROCESS:
+  239: 			if (	g_variable.ble_currentSubState == CHANGE_TO_BLE_SUB_PINCODE)
+003133 904CA7            MOV     DPTR,#g_variable+09H
+003136 E0                MOVX    A,@DPTR
+003137 B40210            CJNE    A,#02H,?C0056?KB_PROCESS
+  240: 			{
+  241: 				IPC_TxControlCmd(IPC_CMD_LE_SET_PINCODE);
+00313A 7F29              MOV     R7,#029H
+00313C 1208B3            LCALL   _IPC_TxControlCmd
+  242: 				g_variable.ble_currentSubState = CHANGE_TO_BLE_SUB_PINCODE_OK;
+00313F 904CA7            MOV     DPTR,#g_variable+09H
+003142 7403              MOV     A,#03H
+003144 F0                MOVX    @DPTR,A
+  243: 				le_pin_code_len = 0;
+003145 E4                CLR     A
+003146 904DE6            MOV     DPTR,#le_pin_code_len
+003149 F0                MOVX    @DPTR,A
+  244: 			}
+00314A         ?C0056?KB_PROCESS:
+  245: 
+  246: 			if (	g_variable.br_currentSubState ==  CHANGE_TO_BR_SUB_PINCODE)
+00314A 904CA9            MOV     DPTR,#g_variable+0BH
+00314D E0                MOVX    A,@DPTR
+00314E 6402              XRL     A,#02H
+003150 6002              JZ      $ + 4H
+003152 616A              AJMP    ?C0052?KB_PROCESS
+  247: 			{	
+  248: 				m_link_key_exists = 1;
+003154 90425E            MOV     DPTR,#m_link_key_exists
+003157 04                INC     A
+003158 F0                MOVX    @DPTR,A
+  249: 				IPC_TxControlCmd(IPC_CMD_SET_PIN_CODE);
+003159 7F0A              MOV     R7,#0AH
+00315B 1208B3            LCALL   _IPC_TxControlCmd
+  250: 				g_variable.br_currentSubState = CHANGE_TO_BR_SUB_PINCODE_OK;
+00315E 904CA9            MOV     DPTR,#g_variable+0BH
+003161 7403              MOV     A,#03H
+003163 F0                MOVX    @DPTR,A
+  251: 			}
+  252: 		}
+003164 22                RET     
+003165         ?C0054?KB_PROCESS:
+  253: 		else
+  254: 		{
+  255: 			if (pEvt->ksPool[0] <=HID_KEY_KP_0 && pEvt->ksPool[0] >= HID_KEY_KP_1)
+003165 904EF5            MOV     DPTR,#pEvt
+003168 E0                MOVX    A,@DPTR
+003169 FB                MOV     R3,A
+00316A A3                INC     DPTR
+00316B E0                MOVX    A,@DPTR
+00316C FA                MOV     R2,A
+00316D A3                INC     DPTR
+00316E E0                MOVX    A,@DPTR
+00316F F9                MOV     R1,A
+003170 900001            MOV     DPTR,#01H
+003173 1203CF            LCALL   ?C?CLDOPTR
+003176 FF                MOV     R7,A
+003177 D3                SETB    C
+003178 9462              SUBB    A,#062H
+00317A 4002              JC      $ + 4H
+00317C 4136              AJMP    ?C0059?KB_PROCESS
+00317E EF                MOV     A,R7
+00317F C3                CLR     C
+003180 9459              SUBB    A,#059H
+003182 5002              JNC     $ + 4H
+003184 4136              AJMP    ?C0059?KB_PROCESS
+  256: 			{
+  257: 				if (pEvt->ksPool[0] == HID_KEY_KP_0) 
+003186 EF                MOV     A,R7
+003187 B46238            CJNE    A,#062H,?C0060?KB_PROCESS
+  258: 				{
+  259: 					ipcPin[ipcPinlen ++] = 0x30;	//ascii code: 0     x030
+00318A 90054F            MOV     DPTR,#ipcPinlen
+00318D E0                MOVX    A,@DPTR
+00318E FF                MOV     R7,A
+00318F 04                INC     A
+003190 F0                MOVX    @DPTR,A
+003191 7450              MOV     A,#LOW ipcPin
+003193 2F                ADD     A,R7
+003194 F582              MOV     DPL,A
+003196 E4                CLR     A
+003197 3405              ADDC    A,#HIGH ipcPin
+003199 F583              MOV     DPH,A
+00319B 7430              MOV     A,#030H
+00319D F0                MOVX    @DPTR,A
+  260: 					le_pin_code = le_pin_code*10;
+00319E 904D18            MOV     DPTR,#le_pin_code
+0031A1 E0                MOVX    A,@DPTR
+0031A2 FC                MOV     R4,A
+0031A3 A3                INC     DPTR
+0031A4 E0                MOVX    A,@DPTR
+0031A5 FD                MOV     R5,A
+0031A6 A3                INC     DPTR
+0031A7 E0                MOVX    A,@DPTR
+0031A8 FE                MOV     R6,A
+0031A9 A3                INC     DPTR
+0031AA E0                MOVX    A,@DPTR
+0031AB FF                MOV     R7,A
+0031AC E4                CLR     A
+0031AD 7B0A              MOV     R3,#0AH
+0031AF FA                MOV     R2,A
+0031B0 F9                MOV     R1,A
+0031B1 F8                MOV     R0,A
+0031B2 12048F            LCALL   ?C?LMUL
+0031B5 904D18            MOV     DPTR,#le_pin_code
+0031B8 1205CB            LCALL   ?C?LSTXDATA
+  261: 					le_pin_code_len++;
+0031BB 904DE6            MOV     DPTR,#le_pin_code_len
+0031BE E0                MOVX    A,@DPTR
+0031BF 04                INC     A
+0031C0 F0                MOVX    @DPTR,A
+  262: 				}
+0031C1 22                RET     
+0031C2         ?C0060?KB_PROCESS:
+  263: 				else 
+  264: 				{
+  265: 					ipcPin[ipcPinlen ++] = pEvt->ksPool[0]  - 0x28;  // ascii :0x31-0x39
+0031C2 904EF5            MOV     DPTR,#pEvt
+0031C5 E0                MOVX    A,@DPTR
+0031C6 FB                MOV     R3,A
+0031C7 A3                INC     DPTR
+0031C8 E0                MOVX    A,@DPTR
+0031C9 FA                MOV     R2,A
+0031CA A3                INC     DPTR
+0031CB E0                MOVX    A,@DPTR
+0031CC F9                MOV     R1,A
+0031CD 900001            MOV     DPTR,#01H
+0031D0 1203CF            LCALL   ?C?CLDOPTR
+0031D3 24D8              ADD     A,#0D8H
+0031D5 FF                MOV     R7,A
+0031D6 90054F            MOV     DPTR,#ipcPinlen
+0031D9 E0                MOVX    A,@DPTR
+0031DA FE                MOV     R6,A
+0031DB 04                INC     A
+0031DC F0                MOVX    @DPTR,A
+0031DD 7450              MOV     A,#LOW ipcPin
+0031DF 2E                ADD     A,R6
+0031E0 F582              MOV     DPL,A
+0031E2 E4                CLR     A
+0031E3 3405              ADDC    A,#HIGH ipcPin
+0031E5 F583              MOV     DPH,A
+0031E7 EF                MOV     A,R7
+0031E8 F0                MOVX    @DPTR,A
+  266: 					le_pin_code = (le_pin_code*10)+(pEvt->ksPool[0]  - 0x58);
+0031E9 900001            MOV     DPTR,#01H
+0031EC 1203CF            LCALL   ?C?CLDOPTR
+0031EF 24A8              ADD     A,#0A8H
+0031F1 FF                MOV     R7,A
+0031F2 E4                CLR     A
+0031F3 34FF              ADDC    A,#0FFH
+0031F5 FE                MOV     R6,A
+0031F6 E4                CLR     A
+0031F7 FC                MOV     R4,A
+0031F8 FD                MOV     R5,A
+0031F9 C004              PUSH    AR4
+0031FB C005              PUSH    AR5
+0031FD C006              PUSH    AR6
+0031FF C007              PUSH    AR7
+003201 7F0A              MOV     R7,#0AH
+003203 FE                MOV     R6,A
+003204 904D18            MOV     DPTR,#le_pin_code
+003207 E0                MOVX    A,@DPTR
+003208 F8                MOV     R0,A
+003209 A3                INC     DPTR
+00320A E0                MOVX    A,@DPTR
+00320B F9                MOV     R1,A
+00320C A3                INC     DPTR
+00320D E0                MOVX    A,@DPTR
+00320E FA                MOV     R2,A
+00320F A3                INC     DPTR
+003210 E0                MOVX    A,@DPTR
+003211 FB                MOV     R3,A
+003212 12048F            LCALL   ?C?LMUL
+003215 D003              POP     AR3
+003217 D002              POP     AR2
+003219 D001              POP     AR1
+00321B D000              POP     AR0
+00321D EF                MOV     A,R7
+00321E 2B                ADD     A,R3
+00321F FF                MOV     R7,A
+003220 EE                MOV     A,R6
+003221 3A                ADDC    A,R2
+003222 FE                MOV     R6,A
+003223 ED                MOV     A,R5
+003224 39                ADDC    A,R1
+003225 FD                MOV     R5,A
+003226 EC                MOV     A,R4
+003227 38                ADDC    A,R0
+003228 FC                MOV     R4,A
+003229 904D18            MOV     DPTR,#le_pin_code
+00322C 1205CB            LCALL   ?C?LSTXDATA
+  267: 					le_pin_code_len++;
+00322F 904DE6            MOV     DPTR,#le_pin_code_len
+003232 E0                MOVX    A,@DPTR
+003233 04                INC     A
+003234 F0                MOVX    @DPTR,A
+  268: 				}
+  269: 			}
+003235 22                RET     
+003236         ?C0059?KB_PROCESS:
+  270: 			else if (pEvt->ksPool[0] <=HID_KEY_0 && pEvt->ksPool[0] >= HID_KEY_1)
+003236 904EF5            MOV     DPTR,#pEvt
+003239 E0                MOVX    A,@DPTR
+00323A FB                MOV     R3,A
+00323B A3                INC     DPTR
+00323C E0                MOVX    A,@DPTR
+00323D FA                MOV     R2,A
+00323E A3                INC     DPTR
+00323F E0                MOVX    A,@DPTR
+003240 F9                MOV     R1,A
+003241 900001            MOV     DPTR,#01H
+003244 1203CF            LCALL   ?C?CLDOPTR
+003247 FF                MOV     R7,A
+003248 D3                SETB    C
+003249 9427              SUBB    A,#027H
+00324B 4002              JC      $ + 4H
+00324D 6107              AJMP    ?C0063?KB_PROCESS
+00324F EF                MOV     A,R7
+003250 C3                CLR     C
+003251 941E              SUBB    A,#01EH
+003253 5002              JNC     $ + 4H
+003255 6107              AJMP    ?C0063?KB_PROCESS
+  271: 			{
+  272: 				if (pEvt->ksPool[0] == HID_KEY_0) 
+003257 EF                MOV     A,R7
+003258 B42738            CJNE    A,#027H,?C0064?KB_PROCESS
+  273: 				{
+  274: 					ipcPin[ipcPinlen ++] = 0x30;	//0
+00325B 90054F            MOV     DPTR,#ipcPinlen
+00325E E0                MOVX    A,@DPTR
+00325F FF                MOV     R7,A
+003260 04                INC     A
+003261 F0                MOVX    @DPTR,A
+003262 7450              MOV     A,#LOW ipcPin
+003264 2F                ADD     A,R7
+003265 F582              MOV     DPL,A
+003267 E4                CLR     A
+003268 3405              ADDC    A,#HIGH ipcPin
+00326A F583              MOV     DPH,A
+00326C 7430              MOV     A,#030H
+00326E F0                MOVX    @DPTR,A
+  275: 					le_pin_code = le_pin_code*10;
+00326F 904D18            MOV     DPTR,#le_pin_code
+003272 E0                MOVX    A,@DPTR
+003273 FC                MOV     R4,A
+003274 A3                INC     DPTR
+003275 E0                MOVX    A,@DPTR
+003276 FD                MOV     R5,A
+003277 A3                INC     DPTR
+003278 E0                MOVX    A,@DPTR
+003279 FE                MOV     R6,A
+00327A A3                INC     DPTR
+00327B E0                MOVX    A,@DPTR
+00327C FF                MOV     R7,A
+00327D E4                CLR     A
+00327E 7B0A              MOV     R3,#0AH
+003280 FA                MOV     R2,A
+003281 F9                MOV     R1,A
+003282 F8                MOV     R0,A
+003283 12048F            LCALL   ?C?LMUL
+003286 904D18            MOV     DPTR,#le_pin_code
+003289 1205CB            LCALL   ?C?LSTXDATA
+  276: 					le_pin_code_len++;
+00328C 904DE6            MOV     DPTR,#le_pin_code_len
+00328F E0                MOVX    A,@DPTR
+003290 04                INC     A
+003291 F0                MOVX    @DPTR,A
+  277: 				}
+003292 22                RET     
+003293         ?C0064?KB_PROCESS:
+  278: 				else 
+  279: 				{
+  280: 					ipcPin[ipcPinlen ++] = pEvt->ksPool[0]  - (HID_KEY_1 -1) + 0x30;
+003293 904EF5            MOV     DPTR,#pEvt
+003296 E0                MOVX    A,@DPTR
+003297 FB                MOV     R3,A
+003298 A3                INC     DPTR
+003299 E0                MOVX    A,@DPTR
+00329A FA                MOV     R2,A
+00329B A3                INC     DPTR
+00329C E0                MOVX    A,@DPTR
+00329D F9                MOV     R1,A
+00329E 900001            MOV     DPTR,#01H
+0032A1 1203CF            LCALL   ?C?CLDOPTR
+0032A4 2413              ADD     A,#013H
+0032A6 FF                MOV     R7,A
+0032A7 90054F            MOV     DPTR,#ipcPinlen
+0032AA E0                MOVX    A,@DPTR
+0032AB FE                MOV     R6,A
+0032AC 04                INC     A
+0032AD F0                MOVX    @DPTR,A
+0032AE 7450              MOV     A,#LOW ipcPin
+0032B0 2E                ADD     A,R6
+0032B1 F582              MOV     DPL,A
+0032B3 E4                CLR     A
+0032B4 3405              ADDC    A,#HIGH ipcPin
+0032B6 F583              MOV     DPH,A
+0032B8 EF                MOV     A,R7
+0032B9 F0                MOVX    @DPTR,A
+  281: 					le_pin_code = (le_pin_code*10)+(pEvt->ksPool[0]  - (HID_KEY_1 -1));
+0032BA 900001            MOV     DPTR,#01H
+0032BD 1203CF            LCALL   ?C?CLDOPTR
+0032C0 24E3              ADD     A,#0E3H
+0032C2 FF                MOV     R7,A
+0032C3 E4                CLR     A
+0032C4 34FF              ADDC    A,#0FFH
+0032C6 FE                MOV     R6,A
+0032C7 E4                CLR     A
+0032C8 FC                MOV     R4,A
+0032C9 FD                MOV     R5,A
+0032CA C004              PUSH    AR4
+0032CC C005              PUSH    AR5
+0032CE C006              PUSH    AR6
+0032D0 C007              PUSH    AR7
+0032D2 7F0A              MOV     R7,#0AH
+0032D4 FE                MOV     R6,A
+0032D5 904D18            MOV     DPTR,#le_pin_code
+0032D8 E0                MOVX    A,@DPTR
+0032D9 F8                MOV     R0,A
+0032DA A3                INC     DPTR
+0032DB E0                MOVX    A,@DPTR
+0032DC F9                MOV     R1,A
+0032DD A3                INC     DPTR
+0032DE E0                MOVX    A,@DPTR
+0032DF FA                MOV     R2,A
+0032E0 A3                INC     DPTR
+0032E1 E0                MOVX    A,@DPTR
+0032E2 FB                MOV     R3,A
+0032E3 12048F            LCALL   ?C?LMUL
+0032E6 D003              POP     AR3
+0032E8 D002              POP     AR2
+0032EA D001              POP     AR1
+0032EC D000              POP     AR0
+0032EE EF                MOV     A,R7
+0032EF 2B                ADD     A,R3
+0032F0 FF                MOV     R7,A
+0032F1 EE                MOV     A,R6
+0032F2 3A                ADDC    A,R2
+0032F3 FE                MOV     R6,A
+0032F4 ED                MOV     A,R5
+0032F5 39                ADDC    A,R1
+0032F6 FD                MOV     R5,A
+0032F7 EC                MOV     A,R4
+0032F8 38                ADDC    A,R0
+0032F9 FC                MOV     R4,A
+0032FA 904D18            MOV     DPTR,#le_pin_code
+0032FD 1205CB            LCALL   ?C?LSTXDATA
+  282: 					le_pin_code_len++;
+003300 904DE6            MOV     DPTR,#le_pin_code_len
+003303 E0                MOVX    A,@DPTR
+003304 04                INC     A
+003305 F0                MOVX    @DPTR,A
+  283: 				}
+  284: 			}
+003306 22                RET     
+003307         ?C0063?KB_PROCESS:
+  285: 			else if(pEvt->ksPool[0] == HID_KEY_BACKSPACE) 
+003307 904EF5            MOV     DPTR,#pEvt
+00330A E0                MOVX    A,@DPTR
+00330B FB                MOV     R3,A
+00330C A3                INC     DPTR
+00330D E0                MOVX    A,@DPTR
+00330E FA                MOV     R2,A
+00330F A3                INC     DPTR
+003310 E0                MOVX    A,@DPTR
+003311 F9                MOV     R1,A
+003312 900001            MOV     DPTR,#01H
+003315 1203CF            LCALL   ?C?CLDOPTR
+003318 642A              XRL     A,#02AH
+00331A 7040              JNZ     ?C0067?KB_PROCESS
+  286: 			{
+  287: 				if(ipcPinlen)
+00331C 90054F            MOV     DPTR,#ipcPinlen
+00331F E0                MOVX    A,@DPTR
+003320 6010              JZ      ?C0068?KB_PROCESS
+  288: 					ipcPin[ipcPinlen --] = 0;
+003322 E0                MOVX    A,@DPTR
+003323 FF                MOV     R7,A
+003324 14                DEC     A
+003325 F0                MOVX    @DPTR,A
+003326 7450              MOV     A,#LOW ipcPin
+003328 2F                ADD     A,R7
+003329 F582              MOV     DPL,A
+00332B E4                CLR     A
+00332C 3405              ADDC    A,#HIGH ipcPin
+00332E F583              MOV     DPH,A
+003330 E4                CLR     A
+003331 F0                MOVX    @DPTR,A
+003332         ?C0068?KB_PROCESS:
+  289: 				if(le_pin_code_len)
+003332 904DE6            MOV     DPTR,#le_pin_code_len
+003335 E0                MOVX    A,@DPTR
+003336 6032              JZ      ?C0052?KB_PROCESS
+  290: 				{
+  291: 					le_pin_code = le_pin_code /10;
+003338 904D18            MOV     DPTR,#le_pin_code
+00333B E0                MOVX    A,@DPTR
+00333C FC                MOV     R4,A
+00333D A3                INC     DPTR
+00333E E0                MOVX    A,@DPTR
+00333F FD                MOV     R5,A
+003340 A3                INC     DPTR
+003341 E0                MOVX    A,@DPTR
+003342 FE                MOV     R6,A
+003343 A3                INC     DPTR
+003344 E0                MOVX    A,@DPTR
+003345 FF                MOV     R7,A
+003346 E4                CLR     A
+003347 7B0A              MOV     R3,#0AH
+003349 FA                MOV     R2,A
+00334A F9                MOV     R1,A
+00334B F8                MOV     R0,A
+00334C 12051A            LCALL   ?C?ULDIV
+00334F 904D18            MOV     DPTR,#le_pin_code
+003352 1205CB            LCALL   ?C?LSTXDATA
+  292: 					le_pin_code_len--;
+003355 904DE6            MOV     DPTR,#le_pin_code_len
+003358 E0                MOVX    A,@DPTR
+003359 14                DEC     A
+00335A F0                MOVX    @DPTR,A
+  293: 				}	
+  294: 			}
+00335B 22                RET     
+00335C         ?C0067?KB_PROCESS:
+  295: 			else
+  296: 			{
+  297: 				kb_motion_keyscan(pEvt);
+00335C 904EF5            MOV     DPTR,#pEvt
+00335F E0                MOVX    A,@DPTR
+003360 FB                MOV     R3,A
+003361 A3                INC     DPTR
+003362 E0                MOVX    A,@DPTR
+003363 FA                MOV     R2,A
+003364 A3                INC     DPTR
+003365 E0                MOVX    A,@DPTR
+003366 F9                MOV     R1,A
+003367 12110B            LCALL   _kb_motion_keyscan
+  298: 			}
+  299: 		}
+  300: 	}
+  301: }
+00336A         ?C0052?KB_PROCESS:
+00336A 22                RET     
+----- FUNCTION kb_bt_pincode_enter (END) -------
+
+
+----- FUNCTION _kb_device_select (BEGIN) -----
+ FILE: 'kb_process.c'
+  587: byte kb_device_select(tKSEVENT *pEvt)
+  588: {
+00336B 904ED6            MOV     DPTR,#pEvt
+00336E EB                MOV     A,R3
+00336F F0                MOVX    @DPTR,A
+003370 A3                INC     DPTR
+003371 EA                MOV     A,R2
+003372 F0                MOVX    @DPTR,A
+003373 A3                INC     DPTR
+003374 E9                MOV     A,R1
+003375 F0                MOVX    @DPTR,A
+  589: 	byte temp = 0;
+  590: 	byte i=0;
+003376 E4                CLR     A
+003377 A3                INC     DPTR
+003378 F0                MOVX    @DPTR,A
+  591: 	
+003379 A3                INC     DPTR
+00337A F0                MOVX    @DPTR,A
+  592: 	if (fn_flag == 1) 
+00337B 904DF1            MOV     DPTR,#fn_flag
+00337E E0                MOVX    A,@DPTR
+00337F 6401              XRL     A,#01H
+003381 6002              JZ      $ + 4H
+003383 8162              AJMP    ?C0133?KB_PROCESS
+  593: 	{
+  594: 		i = KS_BUFF_POLL_LEN-1;
+003385 904EDA            MOV     DPTR,#i
+003388 7405              MOV     A,#05H
+00338A F0                MOVX    @DPTR,A
+00338B         ?C0134?KB_PROCESS:
+  595: 
+  596: 		while (i--) 
+00338B 904EDA            MOV     DPTR,#i
+00338E E0                MOVX    A,@DPTR
+00338F FF                MOV     R7,A
+003390 14                DEC     A
+003391 F0                MOVX    @DPTR,A
+003392 EF                MOV     A,R7
+003393 7002              JNZ     $ + 4H
+003395 816C              AJMP    ?C0146?KB_PROCESS
+  597: 		{
+  598: 			temp = pEvt->ksPool[i];
+003397 904ED6            MOV     DPTR,#pEvt
+00339A E0                MOVX    A,@DPTR
+00339B FB                MOV     R3,A
+00339C A3                INC     DPTR
+00339D E0                MOVX    A,@DPTR
+00339E FA                MOV     R2,A
+00339F A3                INC     DPTR
+0033A0 E0                MOVX    A,@DPTR
+0033A1 2401              ADD     A,#01H
+0033A3 F9                MOV     R1,A
+0033A4 E4                CLR     A
+0033A5 3A                ADDC    A,R2
+0033A6 FA                MOV     R2,A
+0033A7 904EDA            MOV     DPTR,#i
+0033AA E0                MOVX    A,@DPTR
+0033AB 7E00              MOV     R6,#00H
+0033AD 29                ADD     A,R1
+0033AE F9                MOV     R1,A
+0033AF EE                MOV     A,R6
+0033B0 3A                ADDC    A,R2
+0033B1 FA                MOV     R2,A
+0033B2 1203B6            LCALL   ?C?CLDPTR
+0033B5 904ED9            MOV     DPTR,#temp
+0033B8 F0                MOVX    @DPTR,A
+  599: 
+  600: 			if (temp >= HID_KEY_1 && temp <= HID_KEY_3)
+0033B9 C3                CLR     C
+0033BA 941E              SUBB    A,#01EH
+0033BC 5002              JNC     $ + 4H
+0033BE 8159              AJMP    ?C0136?KB_PROCESS
+0033C0 E0                MOVX    A,@DPTR
+0033C1 FF                MOV     R7,A
+0033C2 D3                SETB    C
+0033C3 9420              SUBB    A,#020H
+0033C5 4002              JC      $ + 4H
+0033C7 8159              AJMP    ?C0136?KB_PROCESS
+  601: 			{
+  602: 				switch(temp)
+0033C9 EF                MOV     A,R7
+0033CA 24E1              ADD     A,#0E1H
+0033CC 6009              JZ      ?C0139?KB_PROCESS
+0033CE 14                DEC     A
+0033CF 603E              JZ      ?C0142?KB_PROCESS
+0033D1 2402              ADD     A,#02H
+0033D3 6002              JZ      $ + 4H
+0033D5 8156              AJMP    ?C0137?KB_PROCESS
+  603: 				{
+  604: 					case HID_KEY_1:
+  605: 					case HID_KEY_2:	//BT
+0033D7         ?C0139?KB_PROCESS:
+  606: 						g_variable.delay_enter_lpm_timer = 10;
+0033D7 904CC9            MOV     DPTR,#g_variable+02BH
+0033DA 740A              MOV     A,#0AH
+0033DC F0                MOVX    @DPTR,A
+  607: 						
+  608: 						g_variable.button_flag |= KEY_FLAG_FN_DEVICE_BUTTON;
+0033DD 904CAD            MOV     DPTR,#g_variable+0FH
+0033E0 E0                MOVX    A,@DPTR
+0033E1 4408              ORL     A,#08H
+0033E3 F0                MOVX    @DPTR,A
+  609: 						g_variable.button_flag &= ~KEY_FLAG_FN_24G_DEVICE_BUTTON;
+0033E4 54EF              ANL     A,#0EFH
+0033E6 F0                MOVX    @DPTR,A
+  610: 						if((g_variable.current_device_num != (temp-(HID_KEY_1 - 2))) ||(g_variable.g24_currentState == CHANGE_TO_24
+>> G_CONNECTED))
+0033E7 904ED9            MOV     DPTR,#temp
+0033EA E0                MOVX    A,@DPTR
+0033EB 24E4              ADD     A,#0E4H
+0033ED FF                MOV     R7,A
+0033EE 904CA2            MOV     DPTR,#g_variable+04H
+0033F1 E0                MOVX    A,@DPTR
+0033F2 B50708            CJNE    A,AR7,?C0141?KB_PROCESS
+0033F5 904CA4            MOV     DPTR,#g_variable+06H
+0033F8 E0                MOVX    A,@DPTR
+0033F9 6403              XRL     A,#03H
+0033FB 7059              JNZ     ?C0137?KB_PROCESS
+0033FD         ?C0141?KB_PROCESS:
+  611: 						{
+  612: 							g_variable.current_device_num = temp-(HID_KEY_1 - 2);
+0033FD 904CA2            MOV     DPTR,#g_variable+04H
+003400 EF                MOV     A,R7
+003401 F0                MOVX    @DPTR,A
+  613: 							g_variable.button_reconnect_flag = 1;		// long press = 3s enter discovery
+003402 904CAB            MOV     DPTR,#g_variable+0DH
+003405 7401              MOV     A,#01H
+003407 F0                MOVX    @DPTR,A
+  614: 							g_variable.powerOn_timer = 0;
+003408 E4                CLR     A
+003409 904CC4            MOV     DPTR,#g_variable+026H
+00340C F0                MOVX    @DPTR,A
+  615: 						}
+  616: 
+  617: 						break;
+00340D 8047              SJMP    ?C0137?KB_PROCESS
+  618: 					case HID_KEY_3: 			//g24 switch
+00340F         ?C0142?KB_PROCESS:
+  619: 						g_variable.delay_enter_lpm_timer = 10;
+00340F 904CC9            MOV     DPTR,#g_variable+02BH
+003412 740A              MOV     A,#0AH
+003414 F0                MOVX    @DPTR,A
+  620: 						g_variable.button_flag &= ~KEY_FLAG_FN_DEVICE_BUTTON;
+003415 904CAD            MOV     DPTR,#g_variable+0FH
+003418 E0                MOVX    A,@DPTR
+003419 54F7              ANL     A,#0F7H
+00341B F0                MOVX    @DPTR,A
+  621: 						g_variable.button_flag |= KEY_FLAG_FN_24G_DEVICE_BUTTON;
+00341C 4410              ORL     A,#010H
+00341E F0                MOVX    @DPTR,A
+  622: 						if( (g_variable.current_device_num != 0) && (g_variable.current_device_num != 0xfe))
+00341F 904CA2            MOV     DPTR,#g_variable+04H
+003422 E0                MOVX    A,@DPTR
+003423 FF                MOV     R7,A
+003424 6030              JZ      ?C0137?KB_PROCESS
+003426 64FE              XRL     A,#0FEH
+003428 602C              JZ      ?C0137?KB_PROCESS
+  623: 						{
+  624: 							g_variable.button_flag &= ~KEY_FLAG_FN_DEVICE_BUTTON;
+00342A 904CAD            MOV     DPTR,#g_variable+0FH
+00342D E0                MOVX    A,@DPTR
+00342E 54F7              ANL     A,#0F7H
+003430 F0                MOVX    @DPTR,A
+  625: 							g_variable.current_device_num =0;
+003431 E4                CLR     A
+003432 904CA2            MOV     DPTR,#g_variable+04H
+003435 F0                MOVX    @DPTR,A
+  626: 							YC_key_action_handle(KEY_STOP_DISCOVERY);
+003436 7F0D              MOV     R7,#0DH
+003438 120970            LCALL   _YC_key_action_handle
+  627: 							g_variable.release_data = 1;
+00343B 904CCA            MOV     DPTR,#g_variable+02CH
+00343E 7401              MOV     A,#01H
+003440 F0                MOVX    @DPTR,A
+  628: 							g_variable.last_device_num = g_variable.current_device_num;
+003441 904CA2            MOV     DPTR,#g_variable+04H
+003444 E0                MOVX    A,@DPTR
+003445 904C9F            MOV     DPTR,#g_variable+01H
+003448 F0                MOVX    @DPTR,A
+  629: 							g_variable.power_on_action = 1;
+003449 904CA1            MOV     DPTR,#g_variable+03H
+00344C 7401              MOV     A,#01H
+00344E F0                MOVX    @DPTR,A
+  630: 							g_variable.update_eeprom_flag = 1;
+00344F 904C9E            MOV     DPTR,#g_variable
+003452 F0                MOVX    @DPTR,A
+  631: 							YC_update_eeprom_data();
+003453 120FD9            LCALL   ?L?COM0002
+  632: 							System_Reset_Connect();
+  633: 						}
+  634: 						break;
+  635: 				}
+003456         ?C0137?KB_PROCESS:
+  636: 				return 1;
+003456 7F01              MOV     R7,#01H
+003458 22                RET     
+  637: 			}
+003459         ?C0136?KB_PROCESS:
+  638: 			else
+  639: 			{
+  640: 				g_variable.button_flag &= ~(KEY_FLAG_FN_DEVICE_BUTTON |KEY_FLAG_FN_24G_DEVICE_BUTTON);
+003459 904CAD            MOV     DPTR,#g_variable+0FH
+00345C E0                MOVX    A,@DPTR
+00345D 54E7              ANL     A,#0E7H
+00345F F0                MOVX    @DPTR,A
+  641: 			}
+  642: 		}
+003460 618B              AJMP    ?C0134?KB_PROCESS
+  643: 	}
+003462         ?C0133?KB_PROCESS:
+  644: 	else
+  645: 	{
+  646: 		g_variable.button_flag &= ~(KEY_FLAG_FN_DEVICE_BUTTON |KEY_FLAG_FN_24G_DEVICE_BUTTON) ;
+003462 904CAD            MOV     DPTR,#g_variable+0FH
+003465 E0                MOVX    A,@DPTR
+003466 54E7              ANL     A,#0E7H
+003468 F0                MOVX    @DPTR,A
+  647: 		g_variable.button_flag &= ~KEY_FLAG_FN_SYSTEM_MODE_BUTTON;
+003469 54DF              ANL     A,#0DFH
+00346B F0                MOVX    @DPTR,A
+  648: 	}
+00346C         ?C0146?KB_PROCESS:
+  649: 	return 0;
+00346C 7F00              MOV     R7,#00H
+  650: }
+00346E 22                RET     
+----- FUNCTION _kb_device_select (END) -------
+
+
+----- FUNCTION _kb_combination_key_press (BEGIN) -----
+ FILE: 'kb_process.c'
+  655: void kb_combination_key_press(byte press_state,byte special_key,byte standrad_key)
+  656: {
+;---- Variable 'press_state' assigned to Register 'R7' ----
+;---- Variable 'standrad_key' assigned to Register 'R3' ----
+;---- Variable 'special_key' assigned to Register 'R5' ----
+  657: 	g_variable.key_combination_ctrl = special_key;	
+  658: 	g_variable.key_combination_keyvalue = standrad_key;
+00346F 904CD4            MOV     DPTR,#g_variable+036H
+003472 ED                MOV     A,R5
+003473 F0                MOVX    @DPTR,A
+  659: 
+003474 A3                INC     DPTR
+003475 EB                MOV     A,R3
+003476 F0                MOVX    @DPTR,A
+  660: 	if(press_state & 1)
+003477 EF                MOV     A,R7
+003478 30E012            JNB     ACC.0,?C0147?KB_PROCESS
+  661: 	{
+  662: 		if(g_variable.key_combination_step == CAMBINATION_KEY_COMPLETE) 
+00347B 904CD3            MOV     DPTR,#g_variable+035H
+00347E E0                MOVX    A,@DPTR
+00347F B40304            CJNE    A,#03H,?C0148?KB_PROCESS
+  663: 			g_variable.key_combination_step = CAMBINATION_KEY_HOLD;
+003482 7402              MOV     A,#02H
+003484 F0                MOVX    @DPTR,A
+003485 22                RET     
+003486         ?C0148?KB_PROCESS:
+  664: 		else	
+  665: 			g_variable.key_combination_step = CAMBINATION_KEY_PRESS;
+003486 904CD3            MOV     DPTR,#g_variable+035H
+003489 7401              MOV     A,#01H
+00348B F0                MOVX    @DPTR,A
+  666: 	}
+00348C 22                RET     
+00348D         ?C0147?KB_PROCESS:
+  667: 	else
+  668: 	{
+  669: 		g_variable.key_combination_step = CAMBINATION_KEY_WAIT_RELEASE;
+00348D 904CD3            MOV     DPTR,#g_variable+035H
+003490 7404              MOV     A,#04H
+003492 F0                MOVX    @DPTR,A
+  670: 	}
+  671: 
+  672: }
+003493 22                RET     
+----- FUNCTION _kb_combination_key_press (END) -------
+
+
+----- FUNCTION _key_fn_function (BEGIN) -----
+ FILE: 'kb_process.c'
+  675: byte key_fn_function(byte state ,byte key_value)
+  676: {
+003494 904EFC            MOV     DPTR,#key_value
+003497 ED                MOV     A,R5
+003498 F0                MOVX    @DPTR,A
+003499 904EFB            MOV     DPTR,#state
+00349C EF                MOV     A,R7
+00349D F0                MOVX    @DPTR,A
+  677: 	byte temp = 0;
+  678: 
+00349E E4                CLR     A
+00349F 904EFD            MOV     DPTR,#temp
+0034A2 F0                MOVX    @DPTR,A
+  679: 	if(state & 1)
+0034A3 EF                MOV     A,R7
+0034A4 30E005            JNB     ACC.0,?C0152?KB_PROCESS
+  680: 		g_variable.one_key_press_wait_release_timer = 0;
+0034A7 E4                CLR     A
+0034A8 904CD7            MOV     DPTR,#g_variable+039H
+0034AB F0                MOVX    @DPTR,A
+0034AC         ?C0152?KB_PROCESS:
+  681: 
+  682: 	temp = key_value;
+0034AC 904EFC            MOV     DPTR,#key_value
+0034AF E0                MOVX    A,@DPTR
+0034B0 FF                MOV     R7,A
+0034B1 A3                INC     DPTR
+0034B2 F0                MOVX    @DPTR,A
+  683: 	if(fn_flag == 1)			// Fn lock
+0034B3 904DF1            MOV     DPTR,#fn_flag
+0034B6 E0                MOVX    A,@DPTR
+0034B7 6401              XRL     A,#01H
+0034B9 6002              JZ      $ + 4H
+0034BB C16F              AJMP    ?C0153?KB_PROCESS
+  684: 	{
+  685: 			if((key_value == HID_KEY_Q) || (key_value == HID_KEY_W) || (key_value == HID_KEY_E)|| (key_value == HID_KEY_S)
+>> )
+0034BD EF                MOV     A,R7
+0034BE 6414              XRL     A,#014H
+0034C0 6012              JZ      ?C0155?KB_PROCESS
+0034C2 904EFC            MOV     DPTR,#key_value
+0034C5 E0                MOVX    A,@DPTR
+0034C6 641A              XRL     A,#01AH
+0034C8 600A              JZ      ?C0155?KB_PROCESS
+0034CA EF                MOV     A,R7
+0034CB 6408              XRL     A,#08H
+0034CD 6005              JZ      ?C0155?KB_PROCESS
+0034CF EF                MOV     A,R7
+0034D0 6416              XRL     A,#016H
+0034D2 703A              JNZ     ?C0154?KB_PROCESS
+0034D4         ?C0155?KB_PROCESS:
+  686: 			{
+  687: 				if(key_value == HID_KEY_Q)
+0034D4 904EFC            MOV     DPTR,#key_value
+0034D7 E0                MOVX    A,@DPTR
+0034D8 FF                MOV     R7,A
+0034D9 B41408            CJNE    A,#014H,?C0156?KB_PROCESS
+  688: 				{
+  689: 					g_variable.system_mode = OSMODE_ANDROID;
+0034DC 904CA0            MOV     DPTR,#g_variable+02H
+0034DF 7401              MOV     A,#01H
+0034E1 F0                MOVX    @DPTR,A
+  690: 				}
+0034E2 8015              SJMP    ?C0157?KB_PROCESS
+0034E4         ?C0156?KB_PROCESS:
+  691: 				else if(key_value == HID_KEY_E)
+0034E4 EF                MOV     A,R7
+0034E5 B40808            CJNE    A,#08H,?C0158?KB_PROCESS
+  692: 				{
+  693: 					g_variable.system_mode = OSMODE_IOS;
+0034E8 904CA0            MOV     DPTR,#g_variable+02H
+0034EB 7402              MOV     A,#02H
+0034ED F0                MOVX    @DPTR,A
+  694: 	
+  695: 				}
+0034EE 8009              SJMP    ?C0157?KB_PROCESS
+0034F0         ?C0158?KB_PROCESS:
+  696: 				else if(key_value == HID_KEY_S)
+0034F0 EF                MOV     A,R7
+0034F1 B41605            CJNE    A,#016H,?C0157?KB_PROCESS
+  697: 				{
+  698: 					g_variable.system_mode = OSMODE_WINDOWS;
+0034F4 E4                CLR     A
+0034F5 904CA0            MOV     DPTR,#g_variable+02H
+0034F8 F0                MOVX    @DPTR,A
+  699: 	
+  700: 				}	
+0034F9         ?C0157?KB_PROCESS:
+  701: 				temp = HID_KEY_NULL;
+0034F9 E4                CLR     A
+0034FA 904EFD            MOV     DPTR,#temp
+0034FD F0                MOVX    @DPTR,A
+  702: 				IIC_WriteBlock(EEPROM_RECON_INFO_SYTEM_MODE ,1 ,(byte *)&g_variable.system_mode);
+0034FE 7B01              MOV     R3,#01H
+003500 7A4C              MOV     R2,#HIGH g_variable+02H
+003502 79A0              MOV     R1,#LOW g_variable+02H
+003504 7D01              MOV     R5,#01H
+003506 FC                MOV     R4,A
+003507 7FC0              MOV     R7,#0C0H
+003509 7E7F              MOV     R6,#07FH
+00350B 121E20            LCALL   _IIC_WriteBlock
+  703: 			}			
+00350E         ?C0154?KB_PROCESS:
+  704: 		switch (key_value)
+00350E 904EFC            MOV     DPTR,#key_value
+003511 E0                MOVX    A,@DPTR
+003512 120608            LCALL   ?C?CCASE
+003515 362F              DW      ?C0189?KB_PROCESS
+003517 2A                DB      02AH
+003518 35B2              DW      ?C0175?KB_PROCESS
+00351A 2D                DB      02DH
+00351B 359C              DW      ?C0172?KB_PROCESS
+00351D 2E                DB      02EH
+00351E 35CC              DW      ?C0178?KB_PROCESS
+003520 36                DB      036H
+003521 35E6              DW      ?C0181?KB_PROCESS
+003523 37                DB      037H
+003524 354C              DW      ?C0162?KB_PROCESS
+003526 3A                DB      03AH
+003527 3554              DW      ?C0163?KB_PROCESS
+003529 3B                DB      03BH
+00352A 355C              DW      ?C0164?KB_PROCESS
+00352C 3C                DB      03CH
+00352D 3564              DW      ?C0165?KB_PROCESS
+00352F 3D                DB      03DH
+003530 356C              DW      ?C0166?KB_PROCESS
+003532 3E                DB      03EH
+003533 3574              DW      ?C0167?KB_PROCESS
+003535 3F                DB      03FH
+003536 357C              DW      ?C0168?KB_PROCESS
+003538 40                DB      040H
+003539 3584              DW      ?C0169?KB_PROCESS
+00353B 41                DB      041H
+00353C 358C              DW      ?C0170?KB_PROCESS
+00353E 42                DB      042H
+00353F 3594              DW      ?C0171?KB_PROCESS
+003541 43                DB      043H
+003542 365A              DW      ?C0193?KB_PROCESS
+003544 47                DB      047H
+003545 3600              DW      ?C0184?KB_PROCESS
+003547 65                DB      065H
+003548 0000              DW      00H
+00354A 366F              DW      ?C0153?KB_PROCESS
+  705: 		{ 
+  706: 			case HID_KEY_F1:
+00354C         ?C0162?KB_PROCESS:
+  707: 				temp = HID_MULTIKEY_MEDIA;
+00354C 904EFD            MOV     DPTR,#temp
+00354F 74F1              MOV     A,#0F1H
+003551 F0                MOVX    @DPTR,A
+  708: 				break;
+003552 C16F              AJMP    ?C0153?KB_PROCESS
+  709: 			case HID_KEY_F2:
+003554         ?C0163?KB_PROCESS:
+  710: 				temp = HID_MULTIKEY_VOL_DOWN;
+003554 904EFD            MOV     DPTR,#temp
+003557 74F6              MOV     A,#0F6H
+003559 F0                MOVX    @DPTR,A
+  711: 				break;
+00355A C16F              AJMP    ?C0153?KB_PROCESS
+  712: 			case HID_KEY_F3:
+00355C         ?C0164?KB_PROCESS:
+  713: 				temp = HID_MULTIKEY_VOL_UP;
+00355C 904EFD            MOV     DPTR,#temp
+00355F 74F7              MOV     A,#0F7H
+003561 F0                MOVX    @DPTR,A
+  714: 				break;	
+003562 C16F              AJMP    ?C0153?KB_PROCESS
+  715: 			case HID_KEY_F4:
+003564         ?C0165?KB_PROCESS:
+  716: 				temp = HID_MULTIKEY_MUTE;
+003564 904EFD            MOV     DPTR,#temp
+003567 74F8              MOV     A,#0F8H
+003569 F0                MOVX    @DPTR,A
+  717: 				break;
+00356A C16F              AJMP    ?C0153?KB_PROCESS
+  718: 			case HID_KEY_F5:
+00356C         ?C0166?KB_PROCESS:
+  719: 				temp = HID_MULTIKEY_STOP;
+00356C 904EFD            MOV     DPTR,#temp
+00356F 74F3              MOV     A,#0F3H
+003571 F0                MOVX    @DPTR,A
+  720: 				break;
+003572 C16F              AJMP    ?C0153?KB_PROCESS
+  721: 			case HID_KEY_F6:
+003574         ?C0167?KB_PROCESS:
+  722: 				temp = HID_MULTIKEY_PRE_TRACK;
+003574 904EFD            MOV     DPTR,#temp
+003577 74F4              MOV     A,#0F4H
+003579 F0                MOVX    @DPTR,A
+  723: 				break;
+00357A C16F              AJMP    ?C0153?KB_PROCESS
+  724: 			case HID_KEY_F7:
+00357C         ?C0168?KB_PROCESS:
+  725: 				temp = HID_MULTIKEY_PALY;
+00357C 904EFD            MOV     DPTR,#temp
+00357F 74F2              MOV     A,#0F2H
+003581 F0                MOVX    @DPTR,A
+  726: 				break;
+003582 C16F              AJMP    ?C0153?KB_PROCESS
+  727: 			case HID_KEY_F8:
+003584         ?C0169?KB_PROCESS:
+  728: 				temp = HID_MULTIKEY_NEXT_TRACK;
+003584 904EFD            MOV     DPTR,#temp
+003587 74F5              MOV     A,#0F5H
+003589 F0                MOVX    @DPTR,A
+  729: 				break;
+00358A C16F              AJMP    ?C0153?KB_PROCESS
+  730: 			case HID_KEY_F9:
+00358C         ?C0170?KB_PROCESS:
+  731: 				temp = HID_MULTIKEY_MAIL;
+00358C 904EFD            MOV     DPTR,#temp
+00358F 74FA              MOV     A,#0FAH
+003591 F0                MOVX    @DPTR,A
+  732: 				break;
+003592 C16F              AJMP    ?C0153?KB_PROCESS
+  733: 			case HID_KEY_F10:
+003594         ?C0171?KB_PROCESS:
+  734: 				temp = HID_MULTIKEY_AC_HOME;
+003594 904EFD            MOV     DPTR,#temp
+003597 74D6              MOV     A,#0D6H
+003599 F0                MOVX    @DPTR,A
+  735: 				break;
+00359A C16F              AJMP    ?C0153?KB_PROCESS
+  736: 			case HID_KEY_EQUAL:
+00359C         ?C0172?KB_PROCESS:
+  737: 				if(state & 1)
+00359C 904EFB            MOV     DPTR,#state
+00359F E0                MOVX    A,@DPTR
+0035A0 30E008            JNB     ACC.0,?C0173?KB_PROCESS
+  738: 				{
+  739: 					if(g_variable.backlight_duty_level != BACKLIGHT_DUTY_LEVEL_00)
+0035A3 904CE7            MOV     DPTR,#g_variable+049H
+0035A6 E0                MOVX    A,@DPTR
+0035A7 6002              JZ      ?C0173?KB_PROCESS
+  740: 						g_variable.backlight_duty_level--;
+0035A9 14                DEC     A
+0035AA F0                MOVX    @DPTR,A
+  741: 				}
+0035AB         ?C0173?KB_PROCESS:
+  742: 				temp = HID_KEY_NULL;
+0035AB E4                CLR     A
+0035AC 904EFD            MOV     DPTR,#temp
+0035AF F0                MOVX    @DPTR,A
+  743: 				break;
+0035B0 C16F              AJMP    ?C0153?KB_PROCESS
+  744: 			case HID_KEY_MINUS:
+0035B2         ?C0175?KB_PROCESS:
+  745: 				if(state & 1)
+0035B2 904EFB            MOV     DPTR,#state
+0035B5 E0                MOVX    A,@DPTR
+0035B6 30E00C            JNB     ACC.0,?C0176?KB_PROCESS
+  746: 				{
+  747: 					if(g_variable.backlight_duty_level < BACKLIGHT_DUTY_LEVEL_100)
+0035B9 904CE7            MOV     DPTR,#g_variable+049H
+0035BC E0                MOVX    A,@DPTR
+0035BD C3                CLR     C
+0035BE 9404              SUBB    A,#04H
+0035C0 5003              JNC     ?C0176?KB_PROCESS
+  748: 						g_variable.backlight_duty_level++;
+0035C2 E0                MOVX    A,@DPTR
+0035C3 04                INC     A
+0035C4 F0                MOVX    @DPTR,A
+  749: 				}
+0035C5         ?C0176?KB_PROCESS:
+  750: 				temp = HID_KEY_NULL;
+0035C5 E4                CLR     A
+0035C6 904EFD            MOV     DPTR,#temp
+0035C9 F0                MOVX    @DPTR,A
+  751: 				break;
+0035CA C16F              AJMP    ?C0153?KB_PROCESS
+  752: 			case HID_KEY_LESS_THAN:			//++
+0035CC         ?C0178?KB_PROCESS:
+  753: 				if(state & 1)
+0035CC 904EFB            MOV     DPTR,#state
+0035CF E0                MOVX    A,@DPTR
+0035D0 30E00C            JNB     ACC.0,?C0179?KB_PROCESS
+  754: 				{
+  755: 					if(g_variable.backlight_speed > BACKLIGHT_SPEED_LEVEL_100MS)
+0035D3 904CE3            MOV     DPTR,#g_variable+045H
+0035D6 E0                MOVX    A,@DPTR
+0035D7 D3                SETB    C
+0035D8 9401              SUBB    A,#01H
+0035DA 4003              JC      ?C0179?KB_PROCESS
+  756: 						g_variable.backlight_speed--;
+0035DC E0                MOVX    A,@DPTR
+0035DD 14                DEC     A
+0035DE F0                MOVX    @DPTR,A
+  757: 				}
+0035DF         ?C0179?KB_PROCESS:
+  758: 				temp = HID_KEY_NULL;
+0035DF E4                CLR     A
+0035E0 904EFD            MOV     DPTR,#temp
+0035E3 F0                MOVX    @DPTR,A
+  759: 				break;	
+0035E4 C16F              AJMP    ?C0153?KB_PROCESS
+  760: 			case HID_KEY_GREAT_THAN:		// --
+0035E6         ?C0181?KB_PROCESS:
+  761: 				if(state & 1)
+0035E6 904EFB            MOV     DPTR,#state
+0035E9 E0                MOVX    A,@DPTR
+0035EA 30E00C            JNB     ACC.0,?C0182?KB_PROCESS
+  762: 				{
+  763: 					if(g_variable.backlight_speed < BACKLIGHT_SPEED_LEVEL_500MS)
+0035ED 904CE3            MOV     DPTR,#g_variable+045H
+0035F0 E0                MOVX    A,@DPTR
+0035F1 C3                CLR     C
+0035F2 9405              SUBB    A,#05H
+0035F4 5003              JNC     ?C0182?KB_PROCESS
+  764: 						g_variable.backlight_speed++;
+0035F6 E0                MOVX    A,@DPTR
+0035F7 04                INC     A
+0035F8 F0                MOVX    @DPTR,A
+  765: 				}
+0035F9         ?C0182?KB_PROCESS:
+  766: 				temp = HID_KEY_NULL;
+0035F9 E4                CLR     A
+0035FA 904EFD            MOV     DPTR,#temp
+0035FD F0                MOVX    @DPTR,A
+  767: 				break;
+0035FE 806F              SJMP    ?C0153?KB_PROCESS
+  768: 			case HID_KEY_APP:
+003600         ?C0184?KB_PROCESS:
+  769: 				if(state & 1)
+003600 904EFB            MOV     DPTR,#state
+003603 E0                MOVX    A,@DPTR
+003604 30E021            JNB     ACC.0,?C0185?KB_PROCESS
+  770: 				{
+  771: 					if(g_variable.backlight_pattern == 0)
+003607 904CF8            MOV     DPTR,#g_variable+05AH
+00360A E0                MOVX    A,@DPTR
+00360B FF                MOV     R7,A
+00360C 700B              JNZ     ?C0186?KB_PROCESS
+  772: 					{
+  773: 						g_variable.backlight_pattern++;
+00360E E0                MOVX    A,@DPTR
+00360F 04                INC     A
+003610 F0                MOVX    @DPTR,A
+  774: 						g_variable.backlight_level = BACKLIGHT_BREATH;
+003611 904CE2            MOV     DPTR,#g_variable+044H
+003614 7401              MOV     A,#01H
+003616 F0                MOVX    @DPTR,A
+  775: 					}
+003617 800F              SJMP    ?C0185?KB_PROCESS
+003619         ?C0186?KB_PROCESS:
+  776: 					else if(g_variable.backlight_pattern ==1)
+003619 EF                MOV     A,R7
+00361A B4010B            CJNE    A,#01H,?C0185?KB_PROCESS
+  777: 					{
+  778: 						g_variable.backlight_level = BACKLIGHT_ON;
+00361D 904CE2            MOV     DPTR,#g_variable+044H
+003620 7403              MOV     A,#03H
+003622 F0                MOVX    @DPTR,A
+  779: 						g_variable.backlight_pattern=0;
+003623 E4                CLR     A
+003624 904CF8            MOV     DPTR,#g_variable+05AH
+003627 F0                MOVX    @DPTR,A
+  780: 
+  781: 					}
+  782: 				}
+003628         ?C0185?KB_PROCESS:
+  783: 				temp = HID_KEY_NULL;
+003628 E4                CLR     A
+003629 904EFD            MOV     DPTR,#temp
+00362C F0                MOVX    @DPTR,A
+  784: 				break;			
+00362D 8040              SJMP    ?C0153?KB_PROCESS
+  785: 			case HID_KEY_BACKSPACE:
+00362F         ?C0189?KB_PROCESS:
+  786: 				if(state & 1)
+00362F 904EFB            MOV     DPTR,#state
+003632 E0                MOVX    A,@DPTR
+003633 30E01D            JNB     ACC.0,?C0190?KB_PROCESS
+  787: 				{
+  788: 					g_variable.backlight_level = BACKLIGHT_SWITCH;
+003636 904CE2            MOV     DPTR,#g_variable+044H
+003639 7402              MOV     A,#02H
+00363B F0                MOVX    @DPTR,A
+  789: 					if(g_variable.backlight_kind <= BACLIGHT_LED_7)
+00363C 904CF7            MOV     DPTR,#g_variable+059H
+00363F E0                MOVX    A,@DPTR
+003640 D3                SETB    C
+003641 9406              SUBB    A,#06H
+003643 5003              JNC     ?C0191?KB_PROCESS
+  790: 						g_variable.backlight_kind++;
+003645 E0                MOVX    A,@DPTR
+003646 04                INC     A
+003647 F0                MOVX    @DPTR,A
+003648         ?C0191?KB_PROCESS:
+  791: 					if(g_variable.backlight_kind > BACLIGHT_LED_7)
+003648 904CF7            MOV     DPTR,#g_variable+059H
+00364B E0                MOVX    A,@DPTR
+00364C D3                SETB    C
+00364D 9406              SUBB    A,#06H
+00364F 4002              JC      ?C0190?KB_PROCESS
+  792: 						g_variable.backlight_kind=0;
+003651 E4                CLR     A
+003652 F0                MOVX    @DPTR,A
+  793: 				}
+003653         ?C0190?KB_PROCESS:
+  794: 				temp = HID_KEY_NULL;
+003653 E4                CLR     A
+003654 904EFD            MOV     DPTR,#temp
+003657 F0                MOVX    @DPTR,A
+  795: 				break;	
+003658 8015              SJMP    ?C0153?KB_PROCESS
+  796: 			case HID_KEY_SCROLL_LOCK:
+00365A         ?C0193?KB_PROCESS:
+  797: 				if(state & 1)
+00365A 904EFB            MOV     DPTR,#state
+00365D E0                MOVX    A,@DPTR
+00365E 30E009            JNB     ACC.0,?C0194?KB_PROCESS
+  798: 				{
+  799: 					g_variable.backlight_level = BACKLIGHT_OFF;
+003661 E4                CLR     A
+003662 904CE2            MOV     DPTR,#g_variable+044H
+003665 F0                MOVX    @DPTR,A
+  800: 					g_variable.backlight_pattern=0;
+003666 904CF8            MOV     DPTR,#g_variable+05AH
+003669 F0                MOVX    @DPTR,A
+  801: 				}
+00366A         ?C0194?KB_PROCESS:
+  802: 				temp = HID_KEY_NULL;
+00366A E4                CLR     A
+00366B 904EFD            MOV     DPTR,#temp
+00366E F0                MOVX    @DPTR,A
+  803: 				break;					
+  804: 			/*case HID_KEY_3:
+  805: 				if(state & 1)
+  806: 				{
+  807: 				g_variable.backlight_level = BACKLIGHT_OFF;
+  808: 				}
+  809: 				temp = HID_KEY_NULL;
+  810: 				break;					
+  811: 			case HID_KEY_LEFT_GUI:
+  812: 			case HID_KEY_RIGHT_GUI:
+  813: 				if(state & 1)
+  814: 					g_variable.system_win_app_lock_flag = ~g_variable.system_win_app_lock_flag;
+  815: 				temp = HID_KEY_NULL;
+  816: 				break;
+  817: 			case HID_KEY_A:
+  818: 				temp = HID_MULTIKEY_PALY;
+  819: 				break;
+  820: 			case HID_KEY_S:
+  821: 				temp = HID_MULTIKEY_PRE_TRACK;
+  822: 				break;
+  823: 			case HID_KEY_D:
+  824: 				temp = HID_MULTIKEY_NEXT_TRACK;
+  825: 				break;	
+  826: 			case HID_KEY_F:
+  827: 				temp = HID_MULTIKEY_VOL_DOWN;
+  828: 				break;
+  829: 			case HID_KEY_G:
+  830: 				temp = HID_MULTIKEY_VOL_UP;
+  831: 				break;
+  832: 			case HID_KEY_H:
+  833: 				temp = HID_MULTIKEY_MUTE;
+  834: 				break;
+  835: 			case HID_KEY_U:
+  836: 				temp = HID_KEY_PRINT_SCREEN;
+  837: 				break;
+  838: 			case HID_KEY_I:
+  839: 				temp = HID_KEY_SCROLL_LOCK;
+  840: 				break;
+  841: 			case HID_KEY_O:
+  842: 				temp = HID_KEY_PAUSE;
+  843: 				break;
+  844: 			case HID_KEY_J:
+  845: 				temp = HID_KEY_INSERT;
+  846: 				break;
+  847: 			case HID_KEY_K:
+  848: 				temp = HID_KEY_HOME;
+  849: 				break;
+  850: 			case HID_KEY_L:
+  851: 				temp = HID_KEY_PAGE_UP;
+  852: 				break;
+  853: 			case HID_KEY_M:
+  854: 				temp = HID_KEY_DELETE;
+  855: 				break;
+  856: 			case HID_KEY_LESS_THAN:
+  857: 				temp = HID_KEY_END;
+  858: 				break;
+  859: 			case HID_KEY_GREAT_THAN:
+  860: 				temp = HID_KEY_PAGE_DOWN;
+  861: 				break;
+  862: 			case HID_KEY_SLASH:
+  863: 				temp = HID_KEY_UP_ARROW;
+  864: 				break;
+  865: 			case HID_KEY_RIGHT_CTL:
+  866: 				temp = HID_KEY_RIGHT_ARROW;
+  867: 				break;
+  868: 			case HID_KEY_RIGHT_ALT:
+  869: 				temp = HID_KEY_LEFT_ARROW;
+  870: 				break;				
+  871: 			case HID_KEY_APP:
+  872: 				temp = HID_KEY_DOWN_ARROW;
+  873: 				break;	*/
+  874: 			default :
+  875: 				break;
+  876: 		}
+  877: 	}
+00366F         ?C0153?KB_PROCESS:
+  878: 
+  879: 	if(g_variable.system_win_app_lock_flag)
+00366F 904CDF            MOV     DPTR,#g_variable+041H
+003672 E0                MOVX    A,@DPTR
+003673 6017              JZ      ?C0196?KB_PROCESS
+  880: 	{
+  881: 		if((temp == HID_KEY_APP) || (temp == HID_KEY_LEFT_GUI) ||(temp == HID_KEY_RIGHT_GUI))
+003675 904EFD            MOV     DPTR,#temp
+003678 E0                MOVX    A,@DPTR
+003679 FF                MOV     R7,A
+00367A 6465              XRL     A,#065H
+00367C 6009              JZ      ?C0198?KB_PROCESS
+00367E EF                MOV     A,R7
+00367F 64E3              XRL     A,#0E3H
+003681 6004              JZ      ?C0198?KB_PROCESS
+003683 EF                MOV     A,R7
+003684 B4E705            CJNE    A,#0E7H,?C0196?KB_PROCESS
+003687         ?C0198?KB_PROCESS:
+  882: 			temp = HID_KEY_NULL;
+003687 E4                CLR     A
+003688 904EFD            MOV     DPTR,#temp
+00368B F0                MOVX    @DPTR,A
+  883: 	}
+00368C         ?C0196?KB_PROCESS:
+  884: 
+  885: 
+  886: 
+  887: 	return temp;
+00368C 904EFD            MOV     DPTR,#temp
+00368F E0                MOVX    A,@DPTR
+003690 FF                MOV     R7,A
+  888: }
+003691 22                RET     
+----- FUNCTION _key_fn_function (END) -------
+
+
+----- FUNCTION ksRawInitialize (BEGIN) -----
+ FILE: 'keyscan.c'
+  136: static void ksRawInitialize()
+  137: {
+  138: 	byte i = 0;
+  139: 	
+003692 E4                CLR     A
+003693 904F1D            MOV     DPTR,#i
+003696 F0                MOVX    @DPTR,A
+  140: 	for (i=0; i<8; i++) {
+003697 F0                MOVX    @DPTR,A
+003698         ?C0035?KEYSCAN:
+003698 904F1D            MOV     DPTR,#i
+00369B E0                MOVX    A,@DPTR
+00369C FF                MOV     R7,A
+00369D C3                CLR     C
+00369E 9408              SUBB    A,#08H
+0036A0 500C              JNC     ?C0038?KEYSCAN
+  141: 		GPIO_SetInput(i, 0);
+0036A2 C205              CLR     ?_GPIO_SetInput?BIT
+0036A4 D1AF              ACALL   _GPIO_SetInput
+  142: 	}
+0036A6 904F1D            MOV     DPTR,#i
+0036A9 E0                MOVX    A,@DPTR
+0036AA 04                INC     A
+0036AB F0                MOVX    @DPTR,A
+0036AC 80EA              SJMP    ?C0035?KEYSCAN
+  143: }
+0036AE         ?C0038?KEYSCAN:
+0036AE 22                RET     
+----- FUNCTION ksRawInitialize (END) -------
+
+
+----- FUNCTION _GPIO_SetInput (BEGIN) -----
+ FILE: 'gpio.c'
+   70: void GPIO_SetInput(byte gpio_num, bit st)
+   71: {
+;---- Variable 'gpio_num' assigned to Register 'R4' ----
+0036AF AC07              MOV     R4,AR7
+   72: 	if(gpio_num == 0xff)
+   73: 		return;
+0036B1 EC                MOV     A,R4
+0036B2 F4                CPL     A
+0036B3 6017              JZ      ?C0015?GPIO
+0036B5         ?C0014?GPIO:
+   74: 	GPIO_SetPd(gpio_num, st);
+0036B5 AF04              MOV     R7,AR4
+0036B7 A205              MOV     C,st
+0036B9 9203              MOV     ?_GPIO_SetPd?BIT,C
+0036BB D1DE              ACALL   _GPIO_SetPd
+   75: 	GPIO_SetPu(gpio_num, ~st);
+0036BD AF04              MOV     R7,AR4
+0036BF A205              MOV     C,st
+0036C1 B3                CPL     C
+0036C2 9202              MOV     ?_GPIO_SetPu?BIT,C
+0036C4 D1CD              ACALL   _GPIO_SetPu
+   76: 	GPIO_Setoe(gpio_num, 0);
+0036C6 AF04              MOV     R7,AR4
+0036C8 C204              CLR     ?_GPIO_Setoe?BIT
+0036CA D1EF              ACALL   _GPIO_Setoe
+   77: }
+0036CC         ?C0015?GPIO:
+0036CC 22                RET     
+----- FUNCTION _GPIO_SetInput (END) -------
+
+
+----- FUNCTION _GPIO_SetPu (BEGIN) -----
+ FILE: 'gpio.c'
+   49: void GPIO_SetPu(byte gpio_num, bool bit_val)
+   50: {
+;---- Variable 'gpio_num' assigned to Register 'R7' ----
+   51: 	if(gpio_num == 0xff)
+   52: 		return;
+0036CD EF                MOV     A,R7
+0036CE F4                CPL     A
+0036CF 600C              JZ      ?C0009?GPIO
+0036D1         ?C0008?GPIO:
+   53: 	gpioSetBit(gpio_num, &REG_GPIO_PUP(0), bit_val);
+0036D1 7B01              MOV     R3,#01H
+0036D3 7A80              MOV     R2,#080H
+0036D5 7978              MOV     R1,#078H
+0036D7 A202              MOV     C,bit_val
+0036D9 9200              MOV     ?_gpioSetBit?BIT,C
+0036DB F100              ACALL   _gpioSetBit
+   54: }
+0036DD         ?C0009?GPIO:
+0036DD 22                RET     
+----- FUNCTION _GPIO_SetPu (END) -------
+
+
+----- FUNCTION _GPIO_SetPd (BEGIN) -----
+ FILE: 'gpio.c'
+   56: void GPIO_SetPd(byte gpio_num, bool bit_val)
+   57: {
+;---- Variable 'gpio_num' assigned to Register 'R7' ----
+   58: 	if(gpio_num == 0xff)
+   59: 		return;
+0036DE EF                MOV     A,R7
+0036DF F4                CPL     A
+0036E0 600C              JZ      ?C0011?GPIO
+0036E2         ?C0010?GPIO:
+   60: 	gpioSetBit(gpio_num, &REG_GPIO_PDN(0), bit_val);
+0036E2 7B01              MOV     R3,#01H
+0036E4 7A80              MOV     R2,#080H
+0036E6 797C              MOV     R1,#07CH
+0036E8 A203              MOV     C,bit_val
+0036EA 9200              MOV     ?_gpioSetBit?BIT,C
+0036EC F100              ACALL   _gpioSetBit
+   61: }
+0036EE         ?C0011?GPIO:
+0036EE 22                RET     
+----- FUNCTION _GPIO_SetPd (END) -------
+
+
+----- FUNCTION _GPIO_Setoe (BEGIN) -----
+ FILE: 'gpio.c'
+   63: void GPIO_Setoe(byte gpio_num, bool bit_val)
+   64: {
+;---- Variable 'gpio_num' assigned to Register 'R7' ----
+   65: 	if(gpio_num == 0xff)
+   66: 		return;
+0036EF EF                MOV     A,R7
+0036F0 F4                CPL     A
+0036F1 600C              JZ      ?C0013?GPIO
+0036F3         ?C0012?GPIO:
+   67: 	gpioSetBit(gpio_num, &REG_GPIO_OE(0), bit_val);
+0036F3 7B01              MOV     R3,#01H
+0036F5 7A80              MOV     R2,#080H
+0036F7 7970              MOV     R1,#070H
+0036F9 A204              MOV     C,bit_val
+0036FB 9200              MOV     ?_gpioSetBit?BIT,C
+0036FD F100              ACALL   _gpioSetBit
+   68: }
+0036FF         ?C0013?GPIO:
+0036FF 22                RET     
+----- FUNCTION _GPIO_Setoe (END) -------
+
+
+----- FUNCTION _gpioSetBit (BEGIN) -----
+ FILE: 'gpio.c'
+    9: static void gpioSetBit(byte gpio_num, char *reg_base, bool bit_val)
+   10: {
+003700 904F07            MOV     DPTR,#reg_base
+003703 EB                MOV     A,R3
+003704 F0                MOVX    @DPTR,A
+003705 A3                INC     DPTR
+003706 EA                MOV     A,R2
+003707 F0                MOVX    @DPTR,A
+003708 A3                INC     DPTR
+003709 E9                MOV     A,R1
+00370A F0                MOVX    @DPTR,A
+;---- Variable 'gpio_num' assigned to Register 'R7' ----
+   11: 	byte queue = 0;
+   12: 	byte group = 0;
+;---- Variable 'queue' assigned to Register 'R6' ----
+00370B E4                CLR     A
+00370C FE                MOV     R6,A
+   13: 
+;---- Variable 'group' assigned to Register 'R5' ----
+00370D FD                MOV     R5,A
+   14: 	queue = (gpio_num & 7);
+00370E EF                MOV     A,R7
+00370F 5407              ANL     A,#07H
+003711 FE                MOV     R6,A
+   15: 	group = gpio_num >> 3 & 3;
+003712 EF                MOV     A,R7
+003713 13                RRC     A
+003714 13                RRC     A
+003715 13                RRC     A
+003716 5403              ANL     A,#03H
+003718 FD                MOV     R5,A
+   16: 
+   17: 	if (bit_val) {
+003719 300022            JNB     bit_val,?C0001?GPIO
+   18: 		*(reg_base + group) |= 1 << queue;
+00371C 904F07            MOV     DPTR,#reg_base
+00371F E0                MOVX    A,@DPTR
+003720 FB                MOV     R3,A
+003721 A3                INC     DPTR
+003722 E0                MOVX    A,@DPTR
+003723 FA                MOV     R2,A
+003724 A3                INC     DPTR
+003725 E0                MOVX    A,@DPTR
+003726 2D                ADD     A,R5
+003727 F9                MOV     R1,A
+003728 E4                CLR     A
+003729 3A                ADDC    A,R2
+00372A FA                MOV     R2,A
+00372B 1203B6            LCALL   ?C?CLDPTR
+00372E FF                MOV     R7,A
+00372F 7401              MOV     A,#01H
+003731 A806              MOV     R0,AR6
+003733 08                INC     R0
+003734 8002              SJMP    ?C0031?GPIO
+003736         ?C0030?GPIO:
+003736 C3                CLR     C
+003737 33                RLC     A
+003738         ?C0031?GPIO:
+003738 D8FC              DJNZ    R0,?C0030?GPIO
+00373A 4F                ORL     A,R7
+00373B 0203FC            LJMP    ?C?CSTPTR
+   19: 	}
+00373E         ?C0001?GPIO:
+   20: 
+   21: 	else {
+   22: 		*(reg_base + group) &= ~(1 << queue);
+00373E 904F07            MOV     DPTR,#reg_base
+003741 E0                MOVX    A,@DPTR
+003742 FB                MOV     R3,A
+003743 A3                INC     DPTR
+003744 E0                MOVX    A,@DPTR
+003745 FA                MOV     R2,A
+003746 A3                INC     DPTR
+003747 E0                MOVX    A,@DPTR
+003748 2D                ADD     A,R5
+003749 F9                MOV     R1,A
+00374A E4                CLR     A
+00374B 3A                ADDC    A,R2
+00374C FA                MOV     R2,A
+00374D 1203B6            LCALL   ?C?CLDPTR
+003750 FF                MOV     R7,A
+003751 7401              MOV     A,#01H
+003753 A806              MOV     R0,AR6
+003755 08                INC     R0
+003756 8002              SJMP    ?C0033?GPIO
+003758         ?C0032?GPIO:
+003758 C3                CLR     C
+003759 33                RLC     A
+00375A         ?C0033?GPIO:
+00375A D8FC              DJNZ    R0,?C0032?GPIO
+00375C F4                CPL     A
+00375D 5F                ANL     A,R7
+00375E 0203FC            LJMP    ?C?CSTPTR
+   23: 	}
+----- FUNCTION _gpioSetBit (END) -------
+
+
+----- FUNCTION LED_backlight_breath (BEGIN) -----
+ FILE: 'led.c'
+  116: void LED_backlight_breath()
+  117: {
+  118: #ifdef PWM_ENABLE
+  119: 	if(m_customize_timer_last != m_customize_timer)
+003761 904D2E            MOV     DPTR,#m_customize_timer
+003764 E0                MOVX    A,@DPTR
+003765 FF                MOV     R7,A
+003766 904DF3            MOV     DPTR,#m_customize_timer_last
+003769 E0                MOVX    A,@DPTR
+00376A 6F                XRL     A,R7
+00376B 7003              JNZ     $ + 5H
+00376D 0238FC            LJMP    ?C0027?LED
+  120: 	{
+  121: 		m_customize_timer_last = m_customize_timer;
+003770 904D2E            MOV     DPTR,#m_customize_timer
+003773 E0                MOVX    A,@DPTR
+003774 904DF3            MOV     DPTR,#m_customize_timer_last
+003777 F0                MOVX    @DPTR,A
+  122: 		if((g_variable.battery_status != BAT_STATUS_NONE))
+003778 904CB4            MOV     DPTR,#g_variable+016H
+00377B E0                MOVX    A,@DPTR
+00377C 6005              JZ      ?C0026?LED
+  123: 		{
+  124: 			YC_PWM_disable(7);	
+00377E 7F07              MOV     R7,#07H
+003780 020F9C            LJMP    _YC_PWM_disable
+  125: 
+  126: 			
+  127: 			return;
+  128: 		}
+003783         ?C0026?LED:
+  129: 
+  130: 		
+  131: 		if(g_variable.backlight_level == BACKLIGHT_BREATH)
+003783 904CE2            MOV     DPTR,#g_variable+044H
+003786 E0                MOVX    A,@DPTR
+003787 6401              XRL     A,#01H
+003789 6003              JZ      $ + 5H
+00378B 0238F2            LJMP    ?C0028?LED
+  132: 		{
+  133: 
+  134: if((g_variable.backlight_breathe_flag_1)&&(!g_variable.backlight_breathe_flag_2)&&(!g_variable.backlight_breathe_
+>> flag_3))
+00378E 904CEB            MOV     DPTR,#g_variable+04DH
+003791 E0                MOVX    A,@DPTR
+003792 FF                MOV     R7,A
+003793 605D              JZ      ?C0029?LED
+003795 A3                INC     DPTR
+003796 E0                MOVX    A,@DPTR
+003797 7059              JNZ     ?C0029?LED
+003799 A3                INC     DPTR
+00379A E0                MOVX    A,@DPTR
+00379B 7055              JNZ     ?C0029?LED
+  135: 	{
+  136: 
+  137: 		if(g_variable.backlight_flag)
+00379D A3                INC     DPTR
+00379E E0                MOVX    A,@DPTR
+00379F 602F              JZ      ?C0030?LED
+  138: 			{
+  139: 				if((g_variable.backlight_breathe_step_1 >= 85))
+0037A1 904CE8            MOV     DPTR,#g_variable+04AH
+0037A4 E0                MOVX    A,@DPTR
+0037A5 FE                MOV     R6,A
+0037A6 C3                CLR     C
+0037A7 9455              SUBB    A,#055H
+0037A9 400B              JC      ?C0031?LED
+  140: 				{
+  141: 						g_variable.backlight_breathe_step_1--;
+0037AB E0                MOVX    A,@DPTR
+0037AC 14                DEC     A
+0037AD F0                MOVX    @DPTR,A
+  142: 						g_variable.backlight_flag=0;
+0037AE E4                CLR     A
+0037AF 904CEE            MOV     DPTR,#g_variable+050H
+0037B2 F0                MOVX    @DPTR,A
+  143: 				}
+0037B3 0238C7            LJMP    ?C0037?LED
+0037B6         ?C0031?LED:
+  144: 					
+  145: 				else if((g_variable.backlight_breathe_step_1 < 85)&&(g_variable.backlight_breathe_step_1 > 0))
+0037B6 EE                MOV     A,R6
+0037B7 C3                CLR     C
+0037B8 9455              SUBB    A,#055H
+0037BA 4003              JC      $ + 5H
+0037BC 0238C7            LJMP    ?C0037?LED
+0037BF EE                MOV     A,R6
+0037C0 9400              SUBB    A,#00H
+0037C2 5003              JNC     $ + 5H
+0037C4 0238C7            LJMP    ?C0037?LED
+  146: 					g_variable.backlight_breathe_step_1++;
+0037C7 904CE8            MOV     DPTR,#g_variable+04AH
+0037CA E0                MOVX    A,@DPTR
+0037CB 04                INC     A
+0037CC F0                MOVX    @DPTR,A
+  147: 			}	
+0037CD 0238C7            LJMP    ?C0037?LED
+0037D0         ?C0030?LED:
+  148: 		else
+  149: 			{
+  150: 				 if((g_variable.backlight_breathe_step_1!= 5))
+0037D0 904CE8            MOV     DPTR,#g_variable+04AH
+0037D3 E0                MOVX    A,@DPTR
+0037D4 6405              XRL     A,#05H
+0037D6 6006              JZ      ?C0035?LED
+  151: 					g_variable.backlight_breathe_step_1--;
+0037D8 E0                MOVX    A,@DPTR
+0037D9 14                DEC     A
+0037DA F0                MOVX    @DPTR,A
+0037DB 0238C7            LJMP    ?C0037?LED
+0037DE         ?C0035?LED:
+  152: 				else
+  153: 						{
+  154: 							g_variable.backlight_breathe_flag_1=0;
+0037DE E4                CLR     A
+0037DF 904CEB            MOV     DPTR,#g_variable+04DH
+0037E2 F0                MOVX    @DPTR,A
+  155: 							g_variable.backlight_breathe_flag_2=1;
+0037E3 A3                INC     DPTR
+0037E4 04                INC     A
+0037E5 F0                MOVX    @DPTR,A
+  156: 							g_variable.backlight_breathe_flag_3=0;
+0037E6 E4                CLR     A
+0037E7 A3                INC     DPTR
+0037E8 F0                MOVX    @DPTR,A
+  157: 							g_variable.backlight_flag=1;
+0037E9 A3                INC     DPTR
+0037EA 04                INC     A
+0037EB F0                MOVX    @DPTR,A
+  158: 							g_variable.backlight_breathe_step_flag=2;
+0037EC A3                INC     DPTR
+0037ED 04                INC     A
+0037EE F0                MOVX    @DPTR,A
+  159: 						}
+  160: 			}
+  161: 	}	
+0037EF 0238C7            LJMP    ?C0037?LED
+0037F2         ?C0029?LED:
+  162: else if((!g_variable.backlight_breathe_flag_1)&&(g_variable.backlight_breathe_flag_2)&&(!g_variable.backlight_bre
+>> athe_flag_3))	
+0037F2 EF                MOV     A,R7
+0037F3 705C              JNZ     ?C0038?LED
+0037F5 904CEC            MOV     DPTR,#g_variable+04EH
+0037F8 E0                MOVX    A,@DPTR
+0037F9 6056              JZ      ?C0038?LED
+0037FB A3                INC     DPTR
+0037FC E0                MOVX    A,@DPTR
+0037FD 7052              JNZ     ?C0038?LED
+  163: 	{
+  164: 	
+  165: 	if(g_variable.backlight_flag)
+0037FF A3                INC     DPTR
+003800 E0                MOVX    A,@DPTR
+003801 602B              JZ      ?C0039?LED
+  166: 		{
+  167: 			if(g_variable.backlight_breathe_step_2 >= 85)
+003803 904CE9            MOV     DPTR,#g_variable+04BH
+003806 E0                MOVX    A,@DPTR
+003807 FF                MOV     R7,A
+003808 C3                CLR     C
+003809 9455              SUBB    A,#055H
+00380B 400A              JC      ?C0040?LED
+  168: 			{
+  169: 			g_variable.backlight_breathe_step_2--;
+00380D E0                MOVX    A,@DPTR
+00380E 14                DEC     A
+00380F F0                MOVX    @DPTR,A
+  170: 			g_variable.backlight_flag=0;
+003810 E4                CLR     A
+003811 904CEE            MOV     DPTR,#g_variable+050H
+003814 F0                MOVX    @DPTR,A
+  171: 			}
+003815 01C7              AJMP    ?C0037?LED
+003817         ?C0040?LED:
+  172: 			else if((g_variable.backlight_breathe_step_2 < 85)&&(g_variable.backlight_breathe_step_2> 0))
+003817 EF                MOV     A,R7
+003818 C3                CLR     C
+003819 9455              SUBB    A,#055H
+00381B 4002              JC      $ + 4H
+00381D 01C7              AJMP    ?C0037?LED
+00381F EF                MOV     A,R7
+003820 9400              SUBB    A,#00H
+003822 5002              JNC     $ + 4H
+003824 01C7              AJMP    ?C0037?LED
+  173: 				g_variable.backlight_breathe_step_2++;
+003826 904CE9            MOV     DPTR,#g_variable+04BH
+003829 E0                MOVX    A,@DPTR
+00382A 04                INC     A
+00382B F0                MOVX    @DPTR,A
+  174: 			
+  175: 		}
+00382C 01C7              AJMP    ?C0037?LED
+00382E         ?C0039?LED:
+  176: 	else
+  177: 		{
+  178: 			 if((g_variable.backlight_breathe_step_2!= 5))
+00382E 904CE9            MOV     DPTR,#g_variable+04BH
+003831 E0                MOVX    A,@DPTR
+003832 6405              XRL     A,#05H
+003834 6005              JZ      ?C0044?LED
+  179: 				g_variable.backlight_breathe_step_2--;
+003836 E0                MOVX    A,@DPTR
+003837 14                DEC     A
+003838 F0                MOVX    @DPTR,A
+003839 01C7              AJMP    ?C0037?LED
+00383B         ?C0044?LED:
+  180: 			else
+  181: 				{
+  182: 					g_variable.backlight_breathe_flag_2=0;
+00383B E4                CLR     A
+00383C 904CEC            MOV     DPTR,#g_variable+04EH
+00383F F0                MOVX    @DPTR,A
+  183: 					g_variable.backlight_breathe_flag_1=0;
+003840 904CEB            MOV     DPTR,#g_variable+04DH
+003843 F0                MOVX    @DPTR,A
+  184: 					g_variable.backlight_breathe_flag_3=1;
+003844 904CED            MOV     DPTR,#g_variable+04FH
+003847 04                INC     A
+003848 F0                MOVX    @DPTR,A
+  185: 					g_variable.backlight_flag=1;
+003849 A3                INC     DPTR
+00384A F0                MOVX    @DPTR,A
+  186: 					g_variable.backlight_breathe_step_flag=3;
+00384B A3                INC     DPTR
+00384C 7403              MOV     A,#03H
+00384E F0                MOVX    @DPTR,A
+  187: 				}
+  188: 		}	
+  189: 	}
+00384F 8076              SJMP    ?C0037?LED
+003851         ?C0038?LED:
+  190: else if((!g_variable.backlight_breathe_flag_1)&&(!g_variable.backlight_breathe_flag_2)&&(g_variable.backlight_bre
+>> athe_flag_3))	
+003851 904CEB            MOV     DPTR,#g_variable+04DH
+003854 E0                MOVX    A,@DPTR
+003855 7053              JNZ     ?C0047?LED
+003857 A3                INC     DPTR
+003858 E0                MOVX    A,@DPTR
+003859 704F              JNZ     ?C0047?LED
+00385B A3                INC     DPTR
+00385C E0                MOVX    A,@DPTR
+00385D 604B              JZ      ?C0047?LED
+  191: 	{
+  192: 	
+  193: 	if(g_variable.backlight_flag)
+00385F A3                INC     DPTR
+003860 E0                MOVX    A,@DPTR
+003861 6027              JZ      ?C0048?LED
+  194: 		{
+  195: 			if(g_variable.backlight_breathe_step_3 >= 85)
+003863 904CEA            MOV     DPTR,#g_variable+04CH
+003866 E0                MOVX    A,@DPTR
+003867 FF                MOV     R7,A
+003868 C3                CLR     C
+003869 9455              SUBB    A,#055H
+00386B 400A              JC      ?C0049?LED
+  196: 			{
+  197: 			g_variable.backlight_breathe_step_3--;
+00386D E0                MOVX    A,@DPTR
+00386E 14                DEC     A
+00386F F0                MOVX    @DPTR,A
+  198: 			g_variable.backlight_flag=0;
+003870 E4                CLR     A
+003871 904CEE            MOV     DPTR,#g_variable+050H
+003874 F0                MOVX    @DPTR,A
+  199: 			}
+003875 8050              SJMP    ?C0037?LED
+003877         ?C0049?LED:
+  200: 			else if((g_variable.backlight_breathe_step_3 < 85)&&(g_variable.backlight_breathe_step_3> 0))
+003877 EF                MOV     A,R7
+003878 C3                CLR     C
+003879 9455              SUBB    A,#055H
+00387B 504A              JNC     ?C0037?LED
+00387D EF                MOV     A,R7
+00387E 9400              SUBB    A,#00H
+003880 4045              JC      ?C0037?LED
+  201: 				g_variable.backlight_breathe_step_3++;
+003882 904CEA            MOV     DPTR,#g_variable+04CH
+003885 E0                MOVX    A,@DPTR
+003886 04                INC     A
+003887 F0                MOVX    @DPTR,A
+  202: 		}
+003888 803D              SJMP    ?C0037?LED
+00388A         ?C0048?LED:
+  203: 	else
+  204: 		{
+  205: 			 if((g_variable.backlight_breathe_step_3!= 5))
+00388A 904CEA            MOV     DPTR,#g_variable+04CH
+00388D E0                MOVX    A,@DPTR
+00388E 6405              XRL     A,#05H
+003890 6005              JZ      ?C0053?LED
+  206: 				g_variable.backlight_breathe_step_3--;
+003892 E0                MOVX    A,@DPTR
+003893 14                DEC     A
+003894 F0                MOVX    @DPTR,A
+003895 8030              SJMP    ?C0037?LED
+003897         ?C0053?LED:
+  207: 			else
+  208: 				{
+  209: 					g_variable.backlight_breathe_flag_3=0;
+003897 E4                CLR     A
+003898 904CED            MOV     DPTR,#g_variable+04FH
+00389B F0                MOVX    @DPTR,A
+  210: 					g_variable.backlight_breathe_flag_1=0;
+00389C 904CEB            MOV     DPTR,#g_variable+04DH
+00389F F0                MOVX    @DPTR,A
+  211: 					g_variable.backlight_breathe_flag_1=1;
+0038A0 04                INC     A
+0038A1 F0                MOVX    @DPTR,A
+  212: 					g_variable.backlight_flag=1;
+0038A2 904CEE            MOV     DPTR,#g_variable+050H
+0038A5 F0                MOVX    @DPTR,A
+  213: 					g_variable.backlight_breathe_step_flag=1;
+0038A6 A3                INC     DPTR
+0038A7 F0                MOVX    @DPTR,A
+  214: 				}
+  215: 		}	
+  216: 	}
+0038A8 801D              SJMP    ?C0037?LED
+0038AA         ?C0047?LED:
+  217: 	
+  218: else
+  219: 	{
+  220: 			g_variable.backlight_flag=1;
+0038AA 904CEE            MOV     DPTR,#g_variable+050H
+0038AD 7401              MOV     A,#01H
+0038AF F0                MOVX    @DPTR,A
+  221: 			g_variable.backlight_breathe_flag_1=1;
+0038B0 904CEB            MOV     DPTR,#g_variable+04DH
+0038B3 F0                MOVX    @DPTR,A
+  222: 			g_variable.backlight_breathe_flag_2=0;
+0038B4 E4                CLR     A
+0038B5 A3                INC     DPTR
+0038B6 F0                MOVX    @DPTR,A
+  223: 			g_variable.backlight_breathe_flag_3=0;
+0038B7 A3                INC     DPTR
+0038B8 F0                MOVX    @DPTR,A
+  224: 			g_variable.backlight_breathe_step_1=80;
+0038B9 904CE8            MOV     DPTR,#g_variable+04AH
+0038BC 7450              MOV     A,#050H
+0038BE F0                MOVX    @DPTR,A
+  225: 			g_variable.backlight_breathe_step_2=85;
+0038BF A3                INC     DPTR
+0038C0 7455              MOV     A,#055H
+0038C2 F0                MOVX    @DPTR,A
+  226: 			g_variable.backlight_breathe_step_3=50;
+0038C3 A3                INC     DPTR
+0038C4 7432              MOV     A,#032H
+0038C6 F0                MOVX    @DPTR,A
+  227: 	}
+0038C7         ?C0037?LED:
+  228: 
+  229: 			m_lpm_mode = 0;
+0038C7 E4                CLR     A
+0038C8 904131            MOV     DPTR,#m_lpm_mode
+0038CB F0                MOVX    @DPTR,A
+  230: 			g_variable.pwm_lpm_mode_flag = 1;
+0038CC 904CE0            MOV     DPTR,#g_variable+042H
+0038CF 04                INC     A
+0038D0 F0                MOVX    @DPTR,A
+  231: 	if(g_variable.backlight_breathe_step_flag==1)
+0038D1 904CEF            MOV     DPTR,#g_variable+051H
+0038D4 E0                MOVX    A,@DPTR
+0038D5 B40102            CJNE    A,#01H,?C0056?LED
+  232: 	LED_Breath_1();	
+0038D8 8023              SJMP    LED_Breath_1
+0038DA         ?C0056?LED:
+  233: 	 else if(g_variable.backlight_breathe_step_flag==2)
+0038DA 904CEF            MOV     DPTR,#g_variable+051H
+0038DD E0                MOVX    A,@DPTR
+0038DE B40202            CJNE    A,#02H,?C0058?LED
+  234: 	 LED_Breath_2();
+0038E1 8037              SJMP    LED_Breath_2
+0038E3         ?C0058?LED:
+  235: 	 else if(g_variable.backlight_breathe_step_flag==3)
+0038E3 904CEF            MOV     DPTR,#g_variable+051H
+0038E6 E0                MOVX    A,@DPTR
+0038E7 B40302            CJNE    A,#03H,?C0060?LED
+  236: 	 LED_Breath_3();	 
+0038EA 804B              SJMP    LED_Breath_3
+0038EC         ?C0060?LED:
+  237: 	 else
+  238: 	 g_variable.backlight_breathe_step_flag=0;
+0038EC E4                CLR     A
+0038ED 904CEF            MOV     DPTR,#g_variable+051H
+0038F0 F0                MOVX    @DPTR,A
+  239: }
+0038F1 22                RET     
+0038F2         ?C0028?LED:
+  240: 		else
+  241: 		{
+  242: 			YC_PWM_set_duty(7,g_variable.backlight_duty_level);	
+0038F2 904CE7            MOV     DPTR,#g_variable+049H
+0038F5 E0                MOVX    A,@DPTR
+0038F6 FD                MOV     R5,A
+0038F7 7F07              MOV     R7,#07H
+0038F9 120CEB            LCALL   _YC_PWM_set_duty
+  243: 		}
+  244: 	}
+  245: #endif	
+  246: }
+0038FC         ?C0027?LED:
+0038FC 22                RET     
+----- FUNCTION LED_backlight_breath (END) -------
+
+
+----- FUNCTION LED_Breath_1 (BEGIN) -----
+ FILE: 'led.c'
+  249: void LED_Breath_1()
+  250: {
+  251: 		YC_PWM_init(3);
+  252: 	REG_PWM_PCOUNT(0) = g_variable.backlight_breathe_step_1;
+0038FD 7F03              MOV     R7,#03H
+0038FF 3154              ACALL   _YC_PWM_init
+  253: 	REG_PWM_NCOUNT(0) = (100 - g_variable.backlight_breathe_step_1);
+003901 904CE8            MOV     DPTR,#g_variable+04AH
+003904 E0                MOVX    A,@DPTR
+003905 FF                MOV     R7,A
+003906 9080A0            MOV     DPTR,#080A0H
+003909 F0                MOVX    @DPTR,A
+  254: 	REG_PWM_ENABLE |= 0x40;	
+00390A C3                CLR     C
+00390B 7464              MOV     A,#064H
+00390D 9F                SUBB    A,R7
+00390E 9080A2            MOV     DPTR,#080A2H
+003911 F0                MOVX    @DPTR,A
+  255: }
+003912 908085            MOV     DPTR,#08085H
+003915 E0                MOVX    A,@DPTR
+003916 4440              ORL     A,#040H
+003918 F0                MOVX    @DPTR,A
+  256: void LED_Breath_2()
+003919 22                RET     
+----- FUNCTION LED_Breath_1 (END) -------
+
+
+----- FUNCTION LED_Breath_2 (BEGIN) -----
+ FILE: 'led.c'
+  256: void LED_Breath_2()
+  257: {					
+  258: 		YC_PWM_init(5);
+  259: 	REG_PWM_PCOUNT(0) = g_variable.backlight_breathe_step_2;
+00391A 7F05              MOV     R7,#05H
+00391C 3154              ACALL   _YC_PWM_init
+  260: 	REG_PWM_NCOUNT(0) = (100 - g_variable.backlight_breathe_step_2);
+00391E 904CE9            MOV     DPTR,#g_variable+04BH
+003921 E0                MOVX    A,@DPTR
+003922 FF                MOV     R7,A
+003923 9080A0            MOV     DPTR,#080A0H
+003926 F0                MOVX    @DPTR,A
+  261: 	REG_PWM_ENABLE |= 0x40;			
+003927 C3                CLR     C
+003928 7464              MOV     A,#064H
+00392A 9F                SUBB    A,R7
+00392B 9080A2            MOV     DPTR,#080A2H
+00392E F0                MOVX    @DPTR,A
+  262: 
+00392F 908085            MOV     DPTR,#08085H
+003932 E0                MOVX    A,@DPTR
+003933 4440              ORL     A,#040H
+003935 F0                MOVX    @DPTR,A
+  263: }
+003936 22                RET     
+----- FUNCTION LED_Breath_2 (END) -------
+
+
+----- FUNCTION LED_Breath_3 (BEGIN) -----
+ FILE: 'led.c'
+  264: void LED_Breath_3()
+  265: {				
+  266: 		YC_PWM_init(6);
+  267: 	REG_PWM_PCOUNT(0) = g_variable.backlight_breathe_step_3;
+003937 7F06              MOV     R7,#06H
+003939 3154              ACALL   _YC_PWM_init
+  268: 	REG_PWM_NCOUNT(0) = (100 - g_variable.backlight_breathe_step_3);
+00393B 904CEA            MOV     DPTR,#g_variable+04CH
+00393E E0                MOVX    A,@DPTR
+00393F FF                MOV     R7,A
+003940 9080A0            MOV     DPTR,#080A0H
+003943 F0                MOVX    @DPTR,A
+  269: 	REG_PWM_ENABLE |= 0x40;			
+003944 C3                CLR     C
+003945 7464              MOV     A,#064H
+003947 9F                SUBB    A,R7
+003948 9080A2            MOV     DPTR,#080A2H
+00394B F0                MOVX    @DPTR,A
+  270: 
+00394C 908085            MOV     DPTR,#08085H
+00394F E0                MOVX    A,@DPTR
+003950 4440              ORL     A,#040H
+003952 F0                MOVX    @DPTR,A
+  271: }
+003953 22                RET     
+----- FUNCTION LED_Breath_3 (END) -------
+
+
+----- FUNCTION _YC_PWM_init (BEGIN) -----
+ FILE: 'pwm.c'
+    9: void YC_PWM_init(byte LED)
+   10: {
+;---- Variable 'LED' assigned to Register 'R7' ----
+   11: 	
+   12: 	REG_PWM_CLK_SEL |= 0x00;	// select system clock
+003954 908042            MOV     DPTR,#08042H
+003957 E0                MOVX    A,@DPTR
+003958 F0                MOVX    @DPTR,A
+   13: 	REG_CLK_OFF(1)  &= ~0x20;	//turn on PWM clock
+003959 908051            MOV     DPTR,#08051H
+00395C E0                MOVX    A,@DPTR
+00395D 54DF              ANL     A,#0DFH
+00395F F0                MOVX    @DPTR,A
+   14: 	REG_GPIO_SEL(2) = 0;
+003960 908082            MOV     DPTR,#08082H
+003963 E4                CLR     A
+003964 F0                MOVX    @DPTR,A
+   15: 	if(LED & 0x01 )
+003965 EF                MOV     A,R7
+003966 30E004            JNB     ACC.0,?C0001?PWM
+   16: 	{
+   17: 
+   18: 		REG_GPIO_SEL(2)  |= 0x10;	//set gpio22 to PWM
+003969 E0                MOVX    A,@DPTR
+00396A 4410              ORL     A,#010H
+00396C F0                MOVX    @DPTR,A
+   19: 	}
+00396D         ?C0001?PWM:
+   20: 	if(LED & 0x02 )
+00396D EF                MOV     A,R7
+00396E 30E107            JNB     ACC.1,?C0002?PWM
+   21: 	{
+   22: 
+   23: 		REG_GPIO_SEL(2)  |= 0x20;	//set gpio22 to PWM
+003971 908082            MOV     DPTR,#08082H
+003974 E0                MOVX    A,@DPTR
+003975 4420              ORL     A,#020H
+003977 F0                MOVX    @DPTR,A
+   24: 	}
+003978         ?C0002?PWM:
+   25: 	if(LED & 0x04 )
+003978 EF                MOV     A,R7
+003979 30E207            JNB     ACC.2,?C0004?PWM
+   26: 	{
+   27: 
+   28: 		REG_GPIO_SEL(2)  |= 0x40;	//set gpio22 to PWM
+00397C 908082            MOV     DPTR,#08082H
+00397F E0                MOVX    A,@DPTR
+003980 4440              ORL     A,#040H
+003982 F0                MOVX    @DPTR,A
+   29: 	}	
+   30: }
+003983         ?C0004?PWM:
+003983 22                RET     
+----- FUNCTION _YC_PWM_init (END) -------
+
+
+----- FUNCTION System_Software_init (BEGIN) -----
+ FILE: 'sys.c'
+   63: void System_Software_init()
+   64: {
+   65: 	System_clear_mem();
+   66: 	YC_adc_init();
+003984 121504            LCALL   System_clear_mem
+   67: 	g_variable.release_data =1;
+003987 31BE              ACALL   YC_adc_init
+   68: 	g_variable.recon_count = 0;
+003989 904CCA            MOV     DPTR,#g_variable+02CH
+00398C 7401              MOV     A,#01H
+00398E F0                MOVX    @DPTR,A
+   69: 	g_variable.test_buff = 0xff;
+00398F E4                CLR     A
+003990 904CCF            MOV     DPTR,#g_variable+031H
+003993 F0                MOVX    @DPTR,A
+   70: 	le_lap_temp[0] = m_le_lap[3];
+003994 904CFC            MOV     DPTR,#g_variable+05EH
+003997 74FF              MOV     A,#0FFH
+003999 F0                MOVX    @DPTR,A
+   71: 	le_lap_temp[1] = m_le_lap[4];
+00399A 9044FC            MOV     DPTR,#m_le_lap+03H
+00399D E0                MOVX    A,@DPTR
+00399E 904DD0            MOV     DPTR,#le_lap_temp
+0039A1 F0                MOVX    @DPTR,A
+   72: 	le_lap_temp[2] = m_le_lap[5];
+0039A2 9044FD            MOV     DPTR,#m_le_lap+04H
+0039A5 E0                MOVX    A,@DPTR
+0039A6 904DD1            MOV     DPTR,#le_lap_temp+01H
+0039A9 F0                MOVX    @DPTR,A
+   73: 	g_variable.backlight_speed = BACKLIGHT_SPEED_LEVEL_500MS;
+0039AA 9044FE            MOV     DPTR,#m_le_lap+05H
+0039AD E0                MOVX    A,@DPTR
+0039AE 904DD2            MOV     DPTR,#le_lap_temp+02H
+0039B1 F0                MOVX    @DPTR,A
+   74: 	g_variable.backlight_duty_level = BACKLIGHT_DUTY_LEVEL_100;
+0039B2 904CE3            MOV     DPTR,#g_variable+045H
+0039B5 7405              MOV     A,#05H
+0039B7 F0                MOVX    @DPTR,A
+   75: }
+0039B8 904CE7            MOV     DPTR,#g_variable+049H
+0039BB 14                DEC     A
+0039BC F0                MOVX    @DPTR,A
+   76: 
+0039BD 22                RET     
+----- FUNCTION System_Software_init (END) -------
+
+
+----- FUNCTION YC_adc_init (BEGIN) -----
+ FILE: 'adc.c'
+    3: void YC_adc_init()
+    4: {
+    5: #ifdef  ADC_ENABLE
+    6: 	byte i;
+    7: 	
+    8: 	g_variable.battery_check_interval = BATTERY_CHECK_INTERVAL;
+0039BE 904CB2            MOV     DPTR,#g_variable+014H
+0039C1 7405              MOV     A,#05H
+0039C3 F0                MOVX    @DPTR,A
+    9: 	g_variable.battery_value_index = 0;
+0039C4 E4                CLR     A
+0039C5 A3                INC     DPTR
+0039C6 F0                MOVX    @DPTR,A
+   10: 
+   11: #ifdef ADC_TYPE_HVIN 	
+   12: 	for (i = 0; i < BAT_ARRAY_LEN; i++)
+;---- Variable 'i' assigned to Register 'R7' ----
+0039C7 FF                MOV     R7,A
+0039C8         ?C0001?ADC:
+   13: 	{
+   14: 		g_variable.battery_value[i] = INIT_BATTERY_VALUE;
+0039C8 EF                MOV     A,R7
+0039C9 25E0              ADD     A,ACC
+0039CB 24B5              ADD     A,#LOW g_variable+017H
+0039CD F582              MOV     DPL,A
+0039CF E4                CLR     A
+0039D0 344C              ADDC    A,#HIGH g_variable+017H
+0039D2 F583              MOV     DPH,A
+0039D4 7454              MOV     A,#054H
+0039D6 F0                MOVX    @DPTR,A
+0039D7 A3                INC     DPTR
+0039D8 F0                MOVX    @DPTR,A
+   15: 	}
+0039D9 0F                INC     R7
+0039DA EF                MOV     A,R7
+0039DB B404EA            CJNE    A,#04H,?C0001?ADC
+0039DE         ?C0002?ADC:
+   16: //	g_variable.battery_level_full = (m_adc3vValue - m_adc0vBase)*LOW_BATTER_COEFFICIENT_3V7+m_adc0vBase;
+   17: 	g_variable.battery_level_low = (m_adc3vValue - m_adc0vBase)*LOW_BATTER_COEFFICIENT_3V3+m_adc0vBase;
+0039DE 904C71            MOV     DPTR,#m_adc0vBase
+0039E1 E0                MOVX    A,@DPTR
+0039E2 FE                MOV     R6,A
+0039E3 A3                INC     DPTR
+0039E4 E0                MOVX    A,@DPTR
+0039E5 FF                MOV     R7,A
+0039E6 C3                CLR     C
+0039E7 904C74            MOV     DPTR,#m_adc3vValue+01H
+0039EA E0                MOVX    A,@DPTR
+0039EB 9F                SUBB    A,R7
+0039EC FD                MOV     R5,A
+0039ED 904C73            MOV     DPTR,#m_adc3vValue
+0039F0 E0                MOVX    A,@DPTR
+0039F1 9E                SUBB    A,R6
+0039F2 FC                MOV     R4,A
+0039F3 E4                CLR     A
+0039F4 120206            LCALL   ?C?FCASTI
+0039F7 7B7B              MOV     R3,#07BH
+0039F9 7A14              MOV     R2,#014H
+0039FB 798E              MOV     R1,#08EH
+0039FD 783F              MOV     R0,#03FH
+0039FF 1200FB            LCALL   ?C?FPMUL
+003A02 C004              PUSH    AR4
+003A04 C005              PUSH    AR5
+003A06 C006              PUSH    AR6
+003A08 C007              PUSH    AR7
+003A0A 904C71            MOV     DPTR,#m_adc0vBase
+003A0D E0                MOVX    A,@DPTR
+003A0E FC                MOV     R4,A
+003A0F A3                INC     DPTR
+003A10 E0                MOVX    A,@DPTR
+003A11 FD                MOV     R5,A
+003A12 E4                CLR     A
+003A13 120206            LCALL   ?C?FCASTI
+003A16 D003              POP     AR3
+003A18 D002              POP     AR2
+003A1A D001              POP     AR1
+003A1C D000              POP     AR0
+003A1E 12000A            LCALL   ?C?FPADD
+003A21 12023F            LCALL   ?C?CASTF
+003A24 904CBD            MOV     DPTR,#g_variable+01FH
+003A27 EE                MOV     A,R6
+003A28 F0                MOVX    @DPTR,A
+003A29 A3                INC     DPTR
+003A2A EF                MOV     A,R7
+003A2B F0                MOVX    @DPTR,A
+   18: 	g_variable.battery_level_shutdown = (m_adc3vValue - m_adc0vBase)*LOW_BATTER_COEFFICIENT_3V1+m_adc0vBase;
+003A2C 904C71            MOV     DPTR,#m_adc0vBase
+003A2F E0                MOVX    A,@DPTR
+003A30 FE                MOV     R6,A
+003A31 A3                INC     DPTR
+003A32 E0                MOVX    A,@DPTR
+003A33 FF                MOV     R7,A
+003A34 C3                CLR     C
+003A35 904C74            MOV     DPTR,#m_adc3vValue+01H
+003A38 E0                MOVX    A,@DPTR
+003A39 9F                SUBB    A,R7
+003A3A FD                MOV     R5,A
+003A3B 904C73            MOV     DPTR,#m_adc3vValue
+003A3E E0                MOVX    A,@DPTR
+003A3F 9E                SUBB    A,R6
+003A40 FC                MOV     R4,A
+003A41 E4                CLR     A
+003A42 120206            LCALL   ?C?FCASTI
+003A45 7BB8              MOV     R3,#0B8H
+003A47 7A1E              MOV     R2,#01EH
+003A49 7985              MOV     R1,#085H
+003A4B 783F              MOV     R0,#03FH
+003A4D 1200FB            LCALL   ?C?FPMUL
+003A50 C004              PUSH    AR4
+003A52 C005              PUSH    AR5
+003A54 C006              PUSH    AR6
+003A56 C007              PUSH    AR7
+003A58 904C71            MOV     DPTR,#m_adc0vBase
+003A5B E0                MOVX    A,@DPTR
+003A5C FC                MOV     R4,A
+003A5D A3                INC     DPTR
+003A5E E0                MOVX    A,@DPTR
+003A5F FD                MOV     R5,A
+003A60 E4                CLR     A
+003A61 120206            LCALL   ?C?FCASTI
+003A64 D003              POP     AR3
+003A66 D002              POP     AR2
+003A68 D001              POP     AR1
+003A6A D000              POP     AR0
+003A6C 12000A            LCALL   ?C?FPADD
+003A6F 12023F            LCALL   ?C?CASTF
+003A72 904CBF            MOV     DPTR,#g_variable+021H
+003A75 EE                MOV     A,R6
+003A76 F0                MOVX    @DPTR,A
+003A77 A3                INC     DPTR
+003A78 EF                MOV     A,R7
+003A79 F0                MOVX    @DPTR,A
+   19: 
+   20: #endif
+   21: #ifdef ADC_TYPE_VINLPM
+   22: 		for (i = 0; i < BAT_ARRAY_LEN; i++)
+   23: 		{
+   24: 			g_variable.battery_value[i] = INIT_BATTERY_VALUE_VINLPM;
+   25: 		}
+   26: 		g_variable.battery_level_full = m_adc3vValue;
+   27: 		g_variable.battery_level_low = (m_adc3vValue - m_adc0vBase)*LOW_BATTER_COEFFICIENT_2V2+m_adc0vBase;
+   28: 		g_variable.battery_level_shutdown = (m_adc3vValue - m_adc0vBase)*LOW_BATTER_COEFFICIENT_2V0+m_adc0vBase;
+   29: #endif
+   30: #ifdef ADC_TYPE_GPIO
+   31: 	m_adc_channel = ADC_CHANNEL;
+   32: 	for (i = 0; i < BAT_ARRAY_LEN; i++)
+   33: 	{
+   34: 		g_variable.battery_value[i] = INIT_BATTERY_VALUE_GPIO;
+   35: 	}
+   36: 	g_variable.battery_level_full = (m_adc3vValue - m_adc0vBase)*LOW_BATTER_COEFFICIENT_1V5+m_adc0vBase;
+   37: 	g_variable.battery_level_low = (m_adc3vValue - m_adc0vBase)*LOW_BATTER_COEFFICIENT_1V1+m_adc0vBase;
+   38: 	g_variable.battery_level_shutdown = (m_adc3vValue - m_adc0vBase)*LOW_BATTER_COEFFICIENT_0V9+m_adc0vBase;
+   39: #endif	
+   40: #endif
+   41: }
+003A7A 22                RET     
+----- FUNCTION YC_adc_init (END) -------
+
+
+----- FUNCTION _kb_cb_Hid (BEGIN) -----
+ FILE: 'sys.c'
+  127: static void kb_cb_Hid(byte *p,byte len) {
+  128: 	//p[0] is hid type,always is 1(kb) now
+003A7B 904F14            MOV     DPTR,#len
+003A7E ED                MOV     A,R5
+003A7F F0                MOVX    @DPTR,A
+;---- Variable 'p' assigned to Register 'R1/R2/R3' ----
+  129: 	byte temp = p[1];
+003A80 900001            MOV     DPTR,#01H
+003A83 1203CF            LCALL   ?C?CLDOPTR
+003A86 904F15            MOV     DPTR,#temp
+003A89 F0                MOVX    @DPTR,A
+  130: 
+  131: 	if (len<2) {
+  132: 		return;
+  133: 	}
+  134: }
+003A8A 22                RET     
+----- FUNCTION _kb_cb_Hid (END) -------
+
+
+----- FUNCTION kb_cb_Timer100ms (BEGIN) -----
+ FILE: 'sys.c'
+  846: static void kb_cb_Timer100ms()
+  847: {
+  848: 	if(!g_variable.g24_long_sleep_flag && !g_variable.pairing_g24_timeout && (g_variable.battery_status != BAT_STATU
+>> S_LOW))
+  849: 	{
+003A8B 904CF6            MOV     DPTR,#g_variable+058H
+003A8E E0                MOVX    A,@DPTR
+003A8F 7011              JNZ     ?C0144?SYS
+003A91 904CCD            MOV     DPTR,#g_variable+02FH
+003A94 E0                MOVX    A,@DPTR
+003A95 700B              JNZ     ?C0144?SYS
+003A97 904CB4            MOV     DPTR,#g_variable+016H
+003A9A E0                MOVX    A,@DPTR
+003A9B 6401              XRL     A,#01H
+003A9D 6003              JZ      ?C0144?SYS
+  850: 		backlight_led_process();	
+  851: 		//backlight_led_switch();
+003A9F 120DBD            LCALL   backlight_led_process
+  852: 	}
+003AA2         ?C0144?SYS:
+  853: 	if(g_variable.battery_flash_timer)
+003AA2 904CFA            MOV     DPTR,#g_variable+05CH
+003AA5 E0                MOVX    A,@DPTR
+003AA6 7002              JNZ     ?C0192?SYS
+003AA8 A3                INC     DPTR
+003AA9 E0                MOVX    A,@DPTR
+003AAA         ?C0192?SYS:
+003AAA 6032              JZ      ?C0145?SYS
+  854: 	{
+  855: 		g_variable.battery_flash_timer--;
+003AAC 904CFB            MOV     DPTR,#g_variable+05DH
+003AAF E0                MOVX    A,@DPTR
+003AB0 24FF              ADD     A,#0FFH
+003AB2 F0                MOVX    @DPTR,A
+003AB3 904CFA            MOV     DPTR,#g_variable+05CH
+003AB6 E0                MOVX    A,@DPTR
+003AB7 34FF              ADDC    A,#0FFH
+003AB9 F0                MOVX    @DPTR,A
+  856: 		g_variable.sleepTimer = 0;
+003ABA E4                CLR     A
+003ABB 904CC2            MOV     DPTR,#g_variable+024H
+003ABE F0                MOVX    @DPTR,A
+003ABF A3                INC     DPTR
+003AC0 F0                MOVX    @DPTR,A
+  857: 		if(g_variable.battery_flash_timer & 0x01)
+003AC1 904CFB            MOV     DPTR,#g_variable+05DH
+003AC4 E0                MOVX    A,@DPTR
+003AC5 30E005            JNB     ACC.0,?C0146?SYS
+  858: 			GPIO_FlipOutBit(LOWPOWER_LED_GPIO);
+003AC8 7F1E              MOV     R7,#01EH
+003ACA 1221EB            LCALL   _GPIO_FlipOutBit
+003ACD         ?C0146?SYS:
+  859: 		if(!g_variable.battery_flash_timer)
+003ACD 904CFA            MOV     DPTR,#g_variable+05CH
+003AD0 E0                MOVX    A,@DPTR
+003AD1 7002              JNZ     ?C0193?SYS
+003AD3 A3                INC     DPTR
+003AD4 E0                MOVX    A,@DPTR
+003AD5         ?C0193?SYS:
+003AD5 6002              JZ      $ + 4H
+003AD7 61B4              AJMP    ?C0148?SYS
+  860: 			IPC_TxControlCmd(IPC_CMD_ENTER_HIBERNATE);
+003AD9 7F19              MOV     R7,#019H
+003ADB 0208B3            LJMP    _IPC_TxControlCmd
+  861: 		return;
+  862: 	}
+003ADE         ?C0145?SYS:
+  863: 
+  864: 	if (g_variable.delay_enter_lpm_timer) 
+003ADE 904CC9            MOV     DPTR,#g_variable+02BH
+003AE1 E0                MOVX    A,@DPTR
+003AE2 6002              JZ      ?C0149?SYS
+  865: 	{
+  866: 		g_variable.delay_enter_lpm_timer --;
+003AE4 14                DEC     A
+003AE5 F0                MOVX    @DPTR,A
+  867: 	}
+003AE6         ?C0149?SYS:
+  868: 
+  869: 	if(g_variable.recon_delay)
+003AE6 904CCE            MOV     DPTR,#g_variable+030H
+003AE9 E0                MOVX    A,@DPTR
+003AEA 6002              JZ      ?C0150?SYS
+  870: 		g_variable.recon_delay--;
+003AEC 14                DEC     A
+003AED F0                MOVX    @DPTR,A
+003AEE         ?C0150?SYS:
+  871: 
+  872: 
+  873: 	if(g_variable.one_key_press_wait_release_timer)
+003AEE 904CD7            MOV     DPTR,#g_variable+039H
+003AF1 E0                MOVX    A,@DPTR
+003AF2 600B              JZ      ?C0151?SYS
+  874: 	{
+  875: 		g_variable.one_key_press_wait_release_timer--;
+003AF4 14                DEC     A
+003AF5 F0                MOVX    @DPTR,A
+  876: 		if(!g_variable.one_key_press_wait_release_timer)
+003AF6 E0                MOVX    A,@DPTR
+003AF7 7006              JNZ     ?C0151?SYS
+  877: 			g_variable.key_combination_step = CAMBINATION_KEY_NULL;
+003AF9 904CD3            MOV     DPTR,#g_variable+035H
+003AFC 7406              MOV     A,#06H
+003AFE F0                MOVX    @DPTR,A
+  878: 	}
+003AFF         ?C0151?SYS:
+  879: 	if (g_variable.powerOn_timer != 0)
+003AFF 904CC4            MOV     DPTR,#g_variable+026H
+003B02 E0                MOVX    A,@DPTR
+003B03 601E              JZ      ?C0153?SYS
+  880: 	{	
+  881: 		if(g_variable.pairing_g24_timeout)
+003B05 904CCD            MOV     DPTR,#g_variable+02FH
+003B08 E0                MOVX    A,@DPTR
+003B09 6006              JZ      ?C0154?SYS
+  882: 		{
+  883: 			g_variable.powerOn_timer = 0;
+003B0B E4                CLR     A
+003B0C 904CC4            MOV     DPTR,#g_variable+026H
+003B0F F0                MOVX    @DPTR,A
+003B10 22                RET     
+  884: 			return;
+  885: 		}
+003B11         ?C0154?SYS:
+  886: 			
+  887: 		g_variable.powerOn_timer--;
+003B11 904CC4            MOV     DPTR,#g_variable+026H
+003B14 E0                MOVX    A,@DPTR
+003B15 14                DEC     A
+003B16 F0                MOVX    @DPTR,A
+  888: 		LED_device_poweron();
+003B17 120FE5            LCALL   LED_device_poweron
+  889: 		if (!g_variable.powerOn_timer)
+003B1A 904CC4            MOV     DPTR,#g_variable+026H
+003B1D E0                MOVX    A,@DPTR
+003B1E 7003              JNZ     ?C0153?SYS
+  890: 		{
+  891: 			LED_device_poweroff();
+003B20 120FEB            LCALL   LED_device_poweroff
+  892: 		}
+  893: 	}	
+003B23         ?C0153?SYS:
+  894: 
+  895: 	
+  896: // The dongle must receive data within 200ms, otherwise it will be forced to lift
+  897: 	if(!long_press_flag)
+003B23 904DEB            MOV     DPTR,#long_press_flag
+003B26 E0                MOVX    A,@DPTR
+003B27 7036              JNZ     ?C0156?SYS
+  898: 	{
+  899: 		if (repeat_send_24g == 1)
+003B29 904DEC            MOV     DPTR,#repeat_send_24g
+003B2C E0                MOVX    A,@DPTR
+003B2D 6401              XRL     A,#01H
+003B2F 702E              JNZ     ?C0156?SYS
+  900: 		{
+  901: 			g_variable.sleepTimer = 0;	
+003B31 904CC2            MOV     DPTR,#g_variable+024H
+003B34 F0                MOVX    @DPTR,A
+003B35 A3                INC     DPTR
+003B36 F0                MOVX    @DPTR,A
+  902: 			repeat_send_24g = 0;
+003B37 904DEC            MOV     DPTR,#repeat_send_24g
+003B3A F0                MOVX    @DPTR,A
+  903: 
+  904: 			 if (multikey[0] != 0)
+003B3B 904E58            MOV     DPTR,#multikey
+003B3E E0                MOVX    A,@DPTR
+003B3F 600D              JZ      ?C0158?SYS
+  905: 			{
+  906: 				IPC_TxHidData(multikey, 3);
+003B41 7B01              MOV     R3,#01H
+003B43 7A4E              MOV     R2,#HIGH multikey
+003B45 7958              MOV     R1,#LOW multikey
+003B47 7D03              MOV     R5,#03H
+003B49 1213EA            LCALL   _IPC_TxHidData
+  907: 			}
+003B4C 8011              SJMP    ?C0156?SYS
+003B4E         ?C0158?SYS:
+  908: 			else if (hidBuff[0] != 0)
+003B4E 904800            MOV     DPTR,#hidBuff
+003B51 E0                MOVX    A,@DPTR
+003B52 600B              JZ      ?C0156?SYS
+  909: 			{
+  910: 
+  911: 				IPC_TxHidData(hidBuff,9);
+003B54 7B01              MOV     R3,#01H
+003B56 7A48              MOV     R2,#HIGH hidBuff
+003B58 7900              MOV     R1,#LOW hidBuff
+003B5A 7D09              MOV     R5,#09H
+003B5C 1213EA            LCALL   _IPC_TxHidData
+  912: 			}
+  913: 		}
+  914: 	}
+003B5F         ?C0156?SYS:
+  915: 
+  916: //role switch time out
+  917: 	if (switch_role_timer != 0)
+003B5F 904DE8            MOV     DPTR,#switch_role_timer
+003B62 E0                MOVX    A,@DPTR
+003B63 6009              JZ      ?C0161?SYS
+  918: 	{
+  919: 		switch_role_timer--; 
+003B65 E0                MOVX    A,@DPTR
+003B66 14                DEC     A
+003B67 F0                MOVX    @DPTR,A
+  920: 		if (switch_role_timer == 0)
+003B68 E0                MOVX    A,@DPTR
+003B69 7003              JNZ     ?C0161?SYS
+  921: 		{
+  922: 			System_Reset_Connect();
+003B6B 120FDC            LCALL   System_Reset_Connect
+  923: 		}
+  924: 	}
+003B6E         ?C0161?SYS:
+  925: 
+  926: // ble delay send secutiry request
+  927: 	if(ble_send_secutiry_request_timer)
+003B6E 904DE3            MOV     DPTR,#ble_send_secutiry_request_timer
+003B71 E0                MOVX    A,@DPTR
+003B72 6011              JZ      ?C0163?SYS
+  928: 	{
+  929: 		ble_send_secutiry_request_timer--;
+003B74 E0                MOVX    A,@DPTR
+003B75 14                DEC     A
+003B76 F0                MOVX    @DPTR,A
+  930: 		if(!ble_send_secutiry_request_timer)
+003B77 E0                MOVX    A,@DPTR
+003B78 700B              JNZ     ?C0163?SYS
+  931: 		{
+  932: 			if(!m_le_send_security_request_flag)
+003B7A 904D1C            MOV     DPTR,#m_le_send_security_request_flag
+003B7D E0                MOVX    A,@DPTR
+003B7E 7005              JNZ     ?C0163?SYS
+  933: 			{
+  934: 				IPC_TxControlCmd(IPC_CMD_LE_SMP_SECURITY_REQUEST);
+003B80 7F1B              MOV     R7,#01BH
+003B82 1208B3            LCALL   _IPC_TxControlCmd
+  935: 			}
+  936: 		}
+  937: 	}
+003B85         ?C0163?SYS:
+  938: 
+  939: 	if (delayChgInvTimer != 0)
+003B85 904DF6            MOV     DPTR,#delayChgInvTimer
+003B88 E0                MOVX    A,@DPTR
+003B89 6029              JZ      ?C0148?SYS
+  940: 	{
+  941: 		delayChgInvTimer--;
+003B8B E0                MOVX    A,@DPTR
+003B8C 14                DEC     A
+003B8D F0                MOVX    @DPTR,A
+  942: 		if (delayChgInvTimer == 0)
+003B8E E0                MOVX    A,@DPTR
+003B8F 7023              JNZ     ?C0148?SYS
+  943: 		{
+  944: 			if( m_24g_led_flag)
+003B91 904D23            MOV     DPTR,#m_24g_led_flag
+003B94 E0                MOVX    A,@DPTR
+003B95 6002              JZ      ?C0168?SYS
+  945: 			{
+  946: 				m_24g_led_flag = 0;
+003B97 E4                CLR     A
+003B98 F0                MOVX    @DPTR,A
+  947: 			}	
+003B99         ?C0168?SYS:
+  948: 	
+  949: 			if (g_variable.ble_currentState == CHANGE_TO_BLE_CONNECTED)
+003B99 904CA6            MOV     DPTR,#g_variable+08H
+003B9C E0                MOVX    A,@DPTR
+003B9D B40407            CJNE    A,#04H,?C0169?SYS
+  950: 			{
+  951: 				kscurrmult = 0x0c;
+003BA0 904213            MOV     DPTR,#kscurrmult
+003BA3 740C              MOV     A,#0CH
+003BA5 F0                MOVX    @DPTR,A
+  952: 			}
+003BA6 22                RET     
+003BA7         ?C0169?SYS:
+  953: 			else if (g_variable.br_currentState == CHANGE_TO_BR_CONNECTED)
+003BA7 904CA8            MOV     DPTR,#g_variable+0AH
+003BAA E0                MOVX    A,@DPTR
+003BAB B40406            CJNE    A,#04H,?C0148?SYS
+  954: 			{
+  955: 				kscurrmult = 0x3a;
+003BAE 904213            MOV     DPTR,#kscurrmult
+003BB1 743A              MOV     A,#03AH
+003BB3 F0                MOVX    @DPTR,A
+  956: 			}
+  957: 		}
+  958: 	}
+  959: }
+003BB4         ?C0148?SYS:
+003BB4 22                RET     
+----- FUNCTION kb_cb_Timer100ms (END) -------
+
+
+----- FUNCTION YC_adc_check (BEGIN) -----
+ FILE: 'adc.c'
+   43: void YC_adc_check() 
+   44: {
+   45: #ifdef  ADC_ENABLE
+   46: 	byte i;
+   47: 	ulong batValue = 0;
+003BB5 904EDC            MOV     DPTR,#batValue
+003BB8 1205D7            LCALL   ?C?LSTKXDATA
+003BBB 00                DB      00H
+003BBC 00                DB      00H
+003BBD 00                DB      00H
+003BBE 00                DB      00H
+   48: 
+   49: 	if(!m_adcCurrentValue)
+003BBF 904C75            MOV     DPTR,#m_adcCurrentValue
+003BC2 E0                MOVX    A,@DPTR
+003BC3 7002              JNZ     ?C0020?ADC
+003BC5 A3                INC     DPTR
+003BC6 E0                MOVX    A,@DPTR
+003BC7         ?C0020?ADC:
+003BC7 7002              JNZ     $ + 4H
+003BC9 A196              AJMP    ?C0006?ADC
+003BCB         ?C0005?ADC:
+   50: 		return;
+   51: 
+   52: 	g_variable.battery_value[g_variable.battery_value_index++] = m_adcCurrentValue;
+003BCB 904C75            MOV     DPTR,#m_adcCurrentValue
+003BCE E0                MOVX    A,@DPTR
+003BCF FE                MOV     R6,A
+003BD0 A3                INC     DPTR
+003BD1 E0                MOVX    A,@DPTR
+003BD2 FF                MOV     R7,A
+003BD3 904CB3            MOV     DPTR,#g_variable+015H
+003BD6 E0                MOVX    A,@DPTR
+003BD7 FD                MOV     R5,A
+003BD8 04                INC     A
+003BD9 F0                MOVX    @DPTR,A
+003BDA ED                MOV     A,R5
+003BDB 25E0              ADD     A,ACC
+003BDD 24B5              ADD     A,#LOW g_variable+017H
+003BDF F582              MOV     DPL,A
+003BE1 E4                CLR     A
+003BE2 344C              ADDC    A,#HIGH g_variable+017H
+003BE4 F583              MOV     DPH,A
+003BE6 EE                MOV     A,R6
+003BE7 F0                MOVX    @DPTR,A
+003BE8 A3                INC     DPTR
+003BE9 EF                MOV     A,R7
+003BEA F0                MOVX    @DPTR,A
+   53: 	if (g_variable.battery_value_index >= BAT_ARRAY_LEN)
+003BEB 904CB3            MOV     DPTR,#g_variable+015H
+003BEE E0                MOVX    A,@DPTR
+003BEF C3                CLR     C
+003BF0 9404              SUBB    A,#04H
+003BF2 4002              JC      ?C0007?ADC
+   54: 		g_variable.battery_value_index = 0;
+003BF4 E4                CLR     A
+003BF5 F0                MOVX    @DPTR,A
+003BF6         ?C0007?ADC:
+   55: 	for (i = 0; i < BAT_ARRAY_LEN; i++)
+003BF6 E4                CLR     A
+003BF7 904EDB            MOV     DPTR,#i
+003BFA F0                MOVX    @DPTR,A
+003BFB         ?C0008?ADC:
+   56: 	{
+   57: 		batValue += g_variable.battery_value[i];
+003BFB 904EDC            MOV     DPTR,#batValue
+003BFE E0                MOVX    A,@DPTR
+003BFF F8                MOV     R0,A
+003C00 A3                INC     DPTR
+003C01 E0                MOVX    A,@DPTR
+003C02 F9                MOV     R1,A
+003C03 A3                INC     DPTR
+003C04 E0                MOVX    A,@DPTR
+003C05 FA                MOV     R2,A
+003C06 A3                INC     DPTR
+003C07 E0                MOVX    A,@DPTR
+003C08 FB                MOV     R3,A
+003C09 904EDB            MOV     DPTR,#i
+003C0C E0                MOVX    A,@DPTR
+003C0D 25E0              ADD     A,ACC
+003C0F 24B5              ADD     A,#LOW g_variable+017H
+003C11 F582              MOV     DPL,A
+003C13 E4                CLR     A
+003C14 344C              ADDC    A,#HIGH g_variable+017H
+003C16 F583              MOV     DPH,A
+003C18 E0                MOVX    A,@DPTR
+003C19 FE                MOV     R6,A
+003C1A A3                INC     DPTR
+003C1B E0                MOVX    A,@DPTR
+003C1C FF                MOV     R7,A
+003C1D E4                CLR     A
+003C1E FC                MOV     R4,A
+003C1F FD                MOV     R5,A
+003C20 EB                MOV     A,R3
+003C21 2F                ADD     A,R7
+003C22 FF                MOV     R7,A
+003C23 EA                MOV     A,R2
+003C24 3E                ADDC    A,R6
+003C25 FE                MOV     R6,A
+003C26 ED                MOV     A,R5
+003C27 39                ADDC    A,R1
+003C28 FD                MOV     R5,A
+003C29 EC                MOV     A,R4
+003C2A 38                ADDC    A,R0
+003C2B FC                MOV     R4,A
+003C2C 904EDC            MOV     DPTR,#batValue
+003C2F 1205CB            LCALL   ?C?LSTXDATA
+   58: 	}
+003C32 904EDB            MOV     DPTR,#i
+003C35 E0                MOVX    A,@DPTR
+003C36 04                INC     A
+003C37 F0                MOVX    @DPTR,A
+003C38 E0                MOVX    A,@DPTR
+003C39 B404BF            CJNE    A,#04H,?C0008?ADC
+003C3C         ?C0009?ADC:
+   59: 	batValue = batValue/BAT_ARRAY_LEN;
+003C3C 904EDC            MOV     DPTR,#batValue
+003C3F E0                MOVX    A,@DPTR
+003C40 FC                MOV     R4,A
+003C41 A3                INC     DPTR
+003C42 E0                MOVX    A,@DPTR
+003C43 FD                MOV     R5,A
+003C44 A3                INC     DPTR
+003C45 E0                MOVX    A,@DPTR
+003C46 FE                MOV     R6,A
+003C47 A3                INC     DPTR
+003C48 E0                MOVX    A,@DPTR
+003C49 FF                MOV     R7,A
+003C4A E4                CLR     A
+003C4B 7B04              MOV     R3,#04H
+003C4D FA                MOV     R2,A
+003C4E F9                MOV     R1,A
+003C4F F8                MOV     R0,A
+003C50 12051A            LCALL   ?C?ULDIV
+003C53 904EDC            MOV     DPTR,#batValue
+003C56 1205CB            LCALL   ?C?LSTXDATA
+   60: 
+   61: /*
+   62: 	if(batValue <= g_variable.battery_level_shutdown)
+   63: 		g_variable.battery_level_percentage = 0;
+   64: 	else	if(batValue >= g_variable.battery_level_full)
+   65: 		g_variable.battery_level_percentage = 100;
+   66: 	else	
+   67: 		g_variable.battery_level_percentage = (byte)(((batValue - g_variable.battery_level_shutdown)*100)/(g_variable.b
+>> attery_level_full -g_variable.battery_level_shutdown) );
+   68: */	
+   69: 	if(batValue < g_variable.battery_level_shutdown)
+003C59 904CBF            MOV     DPTR,#g_variable+021H
+003C5C E0                MOVX    A,@DPTR
+003C5D FE                MOV     R6,A
+003C5E A3                INC     DPTR
+003C5F E0                MOVX    A,@DPTR
+003C60 FF                MOV     R7,A
+003C61 E4                CLR     A
+003C62 FC                MOV     R4,A
+003C63 FD                MOV     R5,A
+003C64 904EDC            MOV     DPTR,#batValue
+003C67 E0                MOVX    A,@DPTR
+003C68 F8                MOV     R0,A
+003C69 A3                INC     DPTR
+003C6A E0                MOVX    A,@DPTR
+003C6B F9                MOV     R1,A
+003C6C A3                INC     DPTR
+003C6D E0                MOVX    A,@DPTR
+003C6E FA                MOV     R2,A
+003C6F A3                INC     DPTR
+003C70 E0                MOVX    A,@DPTR
+003C71 FB                MOV     R3,A
+003C72 C3                CLR     C
+003C73 1205BA            LCALL   ?C?ULCMP
+003C76 5032              JNC     ?C0011?ADC
+   70: 	{
+   71: 		g_variable.battery_status = BAT_STATUS_SHUT_DOWN;
+003C78 904CB4            MOV     DPTR,#g_variable+016H
+003C7B 7402              MOV     A,#02H
+003C7D F0                MOVX    @DPTR,A
+   72: 		if(g_variable.last_battery_status != BAT_STATUS_SHUT_DOWN)
+003C7E 904CDE            MOV     DPTR,#g_variable+040H
+003C81 E0                MOVX    A,@DPTR
+003C82 6402              XRL     A,#02H
+003C84 7002              JNZ     $ + 4H
+003C86 A18E              AJMP    ?C0013?ADC
+   73: 		{
+   74: 			g_variable.battery_shutdown_flag = 1;
+003C88 904CE1            MOV     DPTR,#g_variable+043H
+003C8B 7401              MOV     A,#01H
+003C8D F0                MOVX    @DPTR,A
+   75: 			g_variable.battery_flash_timer = STANDBY_TIMER_10S;
+003C8E 904CFA            MOV     DPTR,#g_variable+05CH
+003C91 E4                CLR     A
+003C92 F0                MOVX    @DPTR,A
+003C93 A3                INC     DPTR
+003C94 7464              MOV     A,#064H
+003C96 F0                MOVX    @DPTR,A
+   76: 			IIC_WriteBlock(EEPROM_BATTERY_SHUTDOWN_FLAG ,1 ,(byte *)&g_variable.battery_shutdown_flag);
+003C97 7B01              MOV     R3,#01H
+003C99 7A4C              MOV     R2,#HIGH g_variable+043H
+003C9B 79E1              MOV     R1,#LOW g_variable+043H
+003C9D 7D01              MOV     R5,#01H
+003C9F 7C00              MOV     R4,#00H
+003CA1 7FC2              MOV     R7,#0C2H
+003CA3 7E7F              MOV     R6,#07FH
+003CA5 121E20            LCALL   _IIC_WriteBlock
+   77: 		}		
+   78: 	}
+003CA8 A18E              AJMP    ?C0013?ADC
+003CAA         ?C0011?ADC:
+   79: 	else
+   80: 	{
+   81: 		if(g_variable.last_battery_status == BAT_STATUS_SHUT_DOWN)
+003CAA 904CDE            MOV     DPTR,#g_variable+040H
+003CAD E0                MOVX    A,@DPTR
+003CAE B40215            CJNE    A,#02H,?C0014?ADC
+   82: 		{
+   83: 			g_variable.battery_shutdown_flag = 0;
+003CB1 E4                CLR     A
+003CB2 904CE1            MOV     DPTR,#g_variable+043H
+003CB5 F0                MOVX    @DPTR,A
+   84: 			IIC_WriteBlock(EEPROM_BATTERY_SHUTDOWN_FLAG ,1 ,(byte *)&g_variable.battery_shutdown_flag);
+003CB6 7B01              MOV     R3,#01H
+003CB8 7A4C              MOV     R2,#HIGH g_variable+043H
+003CBA 79E1              MOV     R1,#LOW g_variable+043H
+003CBC 7D01              MOV     R5,#01H
+003CBE FC                MOV     R4,A
+003CBF 7FC2              MOV     R7,#0C2H
+003CC1 7E7F              MOV     R6,#07FH
+003CC3 121E20            LCALL   _IIC_WriteBlock
+   85: 		}	
+003CC6         ?C0014?ADC:
+   86: 		if (batValue < g_variable.battery_level_low)
+003CC6 904CBD            MOV     DPTR,#g_variable+01FH
+003CC9 E0                MOVX    A,@DPTR
+003CCA FE                MOV     R6,A
+003CCB A3                INC     DPTR
+003CCC E0                MOVX    A,@DPTR
+003CCD FF                MOV     R7,A
+003CCE E4                CLR     A
+003CCF FC                MOV     R4,A
+003CD0 FD                MOV     R5,A
+003CD1 904EDC            MOV     DPTR,#batValue
+003CD4 E0                MOVX    A,@DPTR
+003CD5 F8                MOV     R0,A
+003CD6 A3                INC     DPTR
+003CD7 E0                MOVX    A,@DPTR
+003CD8 F9                MOV     R1,A
+003CD9 A3                INC     DPTR
+003CDA E0                MOVX    A,@DPTR
+003CDB FA                MOV     R2,A
+003CDC A3                INC     DPTR
+003CDD E0                MOVX    A,@DPTR
+003CDE FB                MOV     R3,A
+003CDF C3                CLR     C
+003CE0 1205BA            LCALL   ?C?ULCMP
+003CE3 5056              JNC     ?C0015?ADC
+   87: 		{
+   88: 			g_variable.battery_status = BAT_STATUS_LOW;
+003CE5 904CB4            MOV     DPTR,#g_variable+016H
+003CE8 7401              MOV     A,#01H
+003CEA F0                MOVX    @DPTR,A
+   89: 			g_variable.battery_level_low = (m_adc3vValue - m_adc0vBase)*LOW_BATTER_COEFFICIENT_3V3+m_adc0vBase;
+003CEB 904C71            MOV     DPTR,#m_adc0vBase
+003CEE E0                MOVX    A,@DPTR
+003CEF FE                MOV     R6,A
+003CF0 A3                INC     DPTR
+003CF1 E0                MOVX    A,@DPTR
+003CF2 FF                MOV     R7,A
+003CF3 C3                CLR     C
+003CF4 904C74            MOV     DPTR,#m_adc3vValue+01H
+003CF7 E0                MOVX    A,@DPTR
+003CF8 9F                SUBB    A,R7
+003CF9 FD                MOV     R5,A
+003CFA 904C73            MOV     DPTR,#m_adc3vValue
+003CFD E0                MOVX    A,@DPTR
+003CFE 9E                SUBB    A,R6
+003CFF FC                MOV     R4,A
+003D00 E4                CLR     A
+003D01 120206            LCALL   ?C?FCASTI
+003D04 7B7B              MOV     R3,#07BH
+003D06 7A14              MOV     R2,#014H
+003D08 798E              MOV     R1,#08EH
+003D0A 783F              MOV     R0,#03FH
+003D0C 1200FB            LCALL   ?C?FPMUL
+003D0F C004              PUSH    AR4
+003D11 C005              PUSH    AR5
+003D13 C006              PUSH    AR6
+003D15 C007              PUSH    AR7
+003D17 904C71            MOV     DPTR,#m_adc0vBase
+003D1A E0                MOVX    A,@DPTR
+003D1B FC                MOV     R4,A
+003D1C A3                INC     DPTR
+003D1D E0                MOVX    A,@DPTR
+003D1E FD                MOV     R5,A
+003D1F E4                CLR     A
+003D20 120206            LCALL   ?C?FCASTI
+003D23 D003              POP     AR3
+003D25 D002              POP     AR2
+003D27 D001              POP     AR1
+003D29 D000              POP     AR0
+003D2B 12000A            LCALL   ?C?FPADD
+003D2E 12023F            LCALL   ?C?CASTF
+003D31 904CBD            MOV     DPTR,#g_variable+01FH
+003D34 EE                MOV     A,R6
+003D35 F0                MOVX    @DPTR,A
+003D36 A3                INC     DPTR
+003D37 EF                MOV     A,R7
+003D38 F0                MOVX    @DPTR,A
+   90: 		}
+003D39 8053              SJMP    ?C0013?ADC
+003D3B         ?C0015?ADC:
+   91: 		else
+   92: 		{
+   93: 			g_variable.battery_status = BAT_STATUS_NONE;
+003D3B E4                CLR     A
+003D3C 904CB4            MOV     DPTR,#g_variable+016H
+003D3F F0                MOVX    @DPTR,A
+   94: 			g_variable.battery_level_low = (m_adc3vValue - m_adc0vBase)*LOW_BATTER_COEFFICIENT_3V1+m_adc0vBase;
+003D40 904C71            MOV     DPTR,#m_adc0vBase
+003D43 E0                MOVX    A,@DPTR
+003D44 FE                MOV     R6,A
+003D45 A3                INC     DPTR
+003D46 E0                MOVX    A,@DPTR
+003D47 FF                MOV     R7,A
+003D48 C3                CLR     C
+003D49 904C74            MOV     DPTR,#m_adc3vValue+01H
+003D4C E0                MOVX    A,@DPTR
+003D4D 9F                SUBB    A,R7
+003D4E FD                MOV     R5,A
+003D4F 904C73            MOV     DPTR,#m_adc3vValue
+003D52 E0                MOVX    A,@DPTR
+003D53 9E                SUBB    A,R6
+003D54 FC                MOV     R4,A
+003D55 E4                CLR     A
+003D56 120206            LCALL   ?C?FCASTI
+003D59 7BB8              MOV     R3,#0B8H
+003D5B 7A1E              MOV     R2,#01EH
+003D5D 7985              MOV     R1,#085H
+003D5F 783F              MOV     R0,#03FH
+003D61 1200FB            LCALL   ?C?FPMUL
+003D64 C004              PUSH    AR4
+003D66 C005              PUSH    AR5
+003D68 C006              PUSH    AR6
+003D6A C007              PUSH    AR7
+003D6C 904C71            MOV     DPTR,#m_adc0vBase
+003D6F E0                MOVX    A,@DPTR
+003D70 FC                MOV     R4,A
+003D71 A3                INC     DPTR
+003D72 E0                MOVX    A,@DPTR
+003D73 FD                MOV     R5,A
+003D74 E4                CLR     A
+003D75 120206            LCALL   ?C?FCASTI
+003D78 D003              POP     AR3
+003D7A D002              POP     AR2
+003D7C D001              POP     AR1
+003D7E D000              POP     AR0
+003D80 12000A            LCALL   ?C?FPADD
+003D83 12023F            LCALL   ?C?CASTF
+003D86 904CBD            MOV     DPTR,#g_variable+01FH
+003D89 EE                MOV     A,R6
+003D8A F0                MOVX    @DPTR,A
+003D8B A3                INC     DPTR
+003D8C EF                MOV     A,R7
+003D8D F0                MOVX    @DPTR,A
+   95: 		}
+   96: 	}
+003D8E         ?C0013?ADC:
+   97: 
+   98: 	g_variable.last_battery_status = g_variable.battery_status;
+003D8E 904CB4            MOV     DPTR,#g_variable+016H
+003D91 E0                MOVX    A,@DPTR
+003D92 904CDE            MOV     DPTR,#g_variable+040H
+003D95 F0                MOVX    @DPTR,A
+   99: #endif	
+  100: }
+003D96         ?C0006?ADC:
+003D96 22                RET     
+----- FUNCTION YC_adc_check (END) -------
+
+
+----- FUNCTION _bufsize (BEGIN) -----
+ FILE: 'ipc.c'
+   44: static byte bufsize(xword rptr, xword wptr, byte buflen)
+   45: {
+003D97 904EED            MOV     DPTR,#rptr
+003D9A EE                MOV     A,R6
+003D9B F0                MOVX    @DPTR,A
+003D9C A3                INC     DPTR
+003D9D EF                MOV     A,R7
+003D9E F0                MOVX    @DPTR,A
+003D9F 904EEF            MOV     DPTR,#wptr
+003DA2 EC                MOV     A,R4
+003DA3 F0                MOVX    @DPTR,A
+003DA4 A3                INC     DPTR
+003DA5 ED                MOV     A,R5
+003DA6 F0                MOVX    @DPTR,A
+;---- Variable 'buflen' assigned to Register 'R3' ----
+   46: 	return rptr > wptr ? rptr - wptr : buflen - (wptr - rptr);
+   47: }
+003DA7 904EEF            MOV     DPTR,#wptr
+003DAA E0                MOVX    A,@DPTR
+003DAB FE                MOV     R6,A
+003DAC A3                INC     DPTR
+003DAD E0                MOVX    A,@DPTR
+003DAE FF                MOV     R7,A
+003DAF D3                SETB    C
+003DB0 904EEE            MOV     DPTR,#rptr+01H
+003DB3 E0                MOVX    A,@DPTR
+003DB4 9F                SUBB    A,R7
+003DB5 904EED            MOV     DPTR,#rptr
+003DB8 E0                MOVX    A,@DPTR
+003DB9 9E                SUBB    A,R6
+003DBA 4016              JC      ?C0001?IPC
+003DBC 904EEF            MOV     DPTR,#wptr
+003DBF E0                MOVX    A,@DPTR
+003DC0 FE                MOV     R6,A
+003DC1 A3                INC     DPTR
+003DC2 E0                MOVX    A,@DPTR
+003DC3 FF                MOV     R7,A
+003DC4 904EEE            MOV     DPTR,#rptr+01H
+003DC7 E0                MOVX    A,@DPTR
+003DC8 9F                SUBB    A,R7
+003DC9 FF                MOV     R7,A
+003DCA 904EED            MOV     DPTR,#rptr
+003DCD E0                MOVX    A,@DPTR
+003DCE 9E                SUBB    A,R6
+003DCF FE                MOV     R6,A
+003DD0 801E              SJMP    ?C0002?IPC
+003DD2         ?C0001?IPC:
+003DD2 904EED            MOV     DPTR,#rptr
+003DD5 E0                MOVX    A,@DPTR
+003DD6 FE                MOV     R6,A
+003DD7 A3                INC     DPTR
+003DD8 E0                MOVX    A,@DPTR
+003DD9 FF                MOV     R7,A
+003DDA C3                CLR     C
+003DDB 904EF0            MOV     DPTR,#wptr+01H
+003DDE E0                MOVX    A,@DPTR
+003DDF 9F                SUBB    A,R7
+003DE0 FF                MOV     R7,A
+003DE1 904EEF            MOV     DPTR,#wptr
+003DE4 E0                MOVX    A,@DPTR
+003DE5 9E                SUBB    A,R6
+003DE6 FE                MOV     R6,A
+003DE7 AD03              MOV     R5,AR3
+003DE9 C3                CLR     C
+003DEA EB                MOV     A,R3
+003DEB 9F                SUBB    A,R7
+003DEC FF                MOV     R7,A
+003DED E4                CLR     A
+003DEE 9E                SUBB    A,R6
+003DEF FE                MOV     R6,A
+003DF0         ?C0002?IPC:
+   48: 
+003DF0 22                RET     
+----- FUNCTION _bufsize (END) -------
+
+
+----- FUNCTION _IPC_TxBREDRHidData (BEGIN) -----
+ FILE: 'ipc.c'
+   90: void IPC_TxBREDRHidData(byte * dt, byte len)
+   91: {
+;---- Variable 'len' assigned to Register 'R5' ----
+;---- Variable 'dt' assigned to Register 'R1/R2/R3' ----
+   92: 	ipcSendBuff[0] = IPC_HID_DATA;
+   93: 	if (len == 0) return;
+003DF1 900BE7            MOV     DPTR,#ipcSendBuff
+003DF4 7403              MOV     A,#03H
+003DF6 F0                MOVX    @DPTR,A
+   94: 	IPC_TxData(dt, len);
+003DF7 ED                MOV     A,R5
+003DF8 6003              JZ      ?C0017?IPC
+003DFA         ?C0016?IPC:
+   95: }
+003DFA 1217E7            LCALL   _IPC_TxData
+   96: 
+003DFD         ?C0017?IPC:
+003DFD 22                RET     
+----- FUNCTION _IPC_TxBREDRHidData (END) -------
+
+
+----- FUNCTION _IPC_TxSppData (BEGIN) -----
+ FILE: 'ipc.c'
+  103: void IPC_TxSppData(byte* dt, byte len)
+  104: {
+;---- Variable 'len' assigned to Register 'R5' ----
+;---- Variable 'dt' assigned to Register 'R1/R2/R3' ----
+  105: 	ipcSendBuff[0] = IPC_SPP_DATA;
+  106: 	IPC_TxData(dt, len);
+003DFE 900BE7            MOV     DPTR,#ipcSendBuff
+003E01 7404              MOV     A,#04H
+003E03 F0                MOVX    @DPTR,A
+  107: }
+003E04 0217E7            LJMP    _IPC_TxData
+----- FUNCTION _IPC_TxSppData (END) -------
+
+
+----- FUNCTION _IPC_TxBleData (BEGIN) -----
+ FILE: 'ipc.c'
+  109: void IPC_TxBleData(byte* dt, byte len)
+  110: {
+;---- Variable 'len' assigned to Register 'R5' ----
+;---- Variable 'dt' assigned to Register 'R1/R2/R3' ----
+  111: 	ipcSendBuff[0] = IPC_BLE_DATA;
+  112: 	IPC_TxData(dt, len);
+003E07 900BE7            MOV     DPTR,#ipcSendBuff
+003E0A 7405              MOV     A,#05H
+003E0C F0                MOVX    @DPTR,A
+  113: }
+003E0D 0217E7            LJMP    _IPC_TxData
+----- FUNCTION _IPC_TxBleData (END) -------
+
+
+----- FUNCTION IPC_GetBBDIsconnectReason (BEGIN) -----
+ FILE: 'ipc.c'
+  115: byte IPC_GetBBDIsconnectReason()
+  116: {
+  117: 	return bbDisReason;
+  118: }
+003E10 900446            MOV     DPTR,#bbDisReason
+003E13 E0                MOVX    A,@DPTR
+003E14 FF                MOV     R7,A
+  119: 
+003E15 22                RET     
+----- FUNCTION IPC_GetBBDIsconnectReason (END) -------
+
+
+----- FUNCTION IPC_IsTxBuffEmpty (BEGIN) -----
+ FILE: 'ipc.c'
+  138: bit IPC_IsTxBuffEmpty()
+  139: {
+  140: 	if (ipcTxReadPtr == ipcTxWritePtr)
+  141: 		return 1;
+003E16 904B9C            MOV     DPTR,#ipcTxWritePtr
+003E19 E0                MOVX    A,@DPTR
+003E1A FE                MOV     R6,A
+003E1B A3                INC     DPTR
+003E1C E0                MOVX    A,@DPTR
+003E1D FF                MOV     R7,A
+003E1E 904B9A            MOV     DPTR,#ipcTxReadPtr
+003E21 E0                MOVX    A,@DPTR
+003E22 B50607            CJNE    A,AR6,?C0025?IPC
+003E25 A3                INC     DPTR
+003E26 E0                MOVX    A,@DPTR
+003E27 B50702            CJNE    A,AR7,?C0025?IPC
+  142: 	return 0;
+003E2A D3                SETB    C
+003E2B 22                RET     
+003E2C         ?C0025?IPC:
+  143: }
+003E2C C3                CLR     C
+  144: 
+003E2D 22                RET     
+----- FUNCTION IPC_IsTxBuffEmpty (END) -------
+
+
+----- FUNCTION _GPIO_ClearWakeup (BEGIN) -----
+ FILE: 'gpio.c'
+  107: void GPIO_ClearWakeup(byte gpio_num)
+  108: {
+;---- Variable 'gpio_num' assigned to Register 'R7' ----
+  109: 	byte queue, group;
+  110: 	
+  111: 	if(gpio_num == 0xff)
+003E2E EF                MOV     A,R7
+003E2F F4                CPL     A
+003E30 603A              JZ      ?C0023?GPIO
+003E32         ?C0022?GPIO:
+  112: 		return;
+  113: 	queue = (gpio_num & 7);
+003E32 EF                MOV     A,R7
+003E33 5407              ANL     A,#07H
+003E35 FE                MOV     R6,A
+;---- Variable 'queue' assigned to Register 'R6' ----
+  114: 	group = (gpio_num >> 3 & 3);
+003E36 EF                MOV     A,R7
+003E37 13                RRC     A
+003E38 13                RRC     A
+003E39 13                RRC     A
+003E3A 5403              ANL     A,#03H
+003E3C FF                MOV     R7,A
+;---- Variable 'group' assigned to Register 'R7' ----
+  115: 	*(YC_GPIOWakeupL + group) &= ~(1 << queue);
+003E3D 24A3              ADD     A,#LOW YC_GPIOWakeupL
+003E3F F582              MOV     DPL,A
+003E41 E4                CLR     A
+003E42 3400              ADDC    A,#HIGH YC_GPIOWakeupL
+003E44 F583              MOV     DPH,A
+003E46 C083              PUSH    DPH
+003E48 C082              PUSH    DPL
+003E4A E0                MOVX    A,@DPTR
+003E4B FD                MOV     R5,A
+003E4C 7401              MOV     A,#01H
+003E4E A806              MOV     R0,AR6
+003E50 08                INC     R0
+003E51 8002              SJMP    ?C0043?GPIO
+003E53         ?C0042?GPIO:
+003E53 C3                CLR     C
+003E54 33                RLC     A
+003E55         ?C0043?GPIO:
+003E55 D8FC              DJNZ    R0,?C0042?GPIO
+003E57 F4                CPL     A
+003E58 FC                MOV     R4,A
+003E59 5D                ANL     A,R5
+003E5A D082              POP     DPL
+003E5C D083              POP     DPH
+003E5E F0                MOVX    @DPTR,A
+  116: 	*(YC_GPIOWakeupH + group) &= ~(1 << queue);
+003E5F 74A7              MOV     A,#LOW YC_GPIOWakeupH
+003E61 2F                ADD     A,R7
+003E62 F582              MOV     DPL,A
+003E64 E4                CLR     A
+003E65 3400              ADDC    A,#HIGH YC_GPIOWakeupH
+003E67 F583              MOV     DPH,A
+003E69 E0                MOVX    A,@DPTR
+003E6A 5C                ANL     A,R4
+003E6B F0                MOVX    @DPTR,A
+  117: }
+003E6C         ?C0023?GPIO:
+003E6C 22                RET     
+----- FUNCTION _GPIO_ClearWakeup (END) -------
+
+
+----- FUNCTION _IIC_write (BEGIN) -----
+ FILE: 'iic.c'
+   35: void IIC_write(word addr, word len, byte * pbuff)
+   36: {
+003E6D 904EB7            MOV     DPTR,#addr
+003E70 EE                MOV     A,R6
+003E71 F0                MOVX    @DPTR,A
+003E72 A3                INC     DPTR
+003E73 EF                MOV     A,R7
+003E74 F0                MOVX    @DPTR,A
+003E75 904EBB            MOV     DPTR,#pbuff
+003E78 EB                MOV     A,R3
+003E79 F0                MOVX    @DPTR,A
+003E7A A3                INC     DPTR
+003E7B EA                MOV     A,R2
+003E7C F0                MOVX    @DPTR,A
+003E7D A3                INC     DPTR
+003E7E E9                MOV     A,R1
+003E7F F0                MOVX    @DPTR,A
+003E80 904EB9            MOV     DPTR,#len
+003E83 EC                MOV     A,R4
+003E84 F0                MOVX    @DPTR,A
+003E85 A3                INC     DPTR
+003E86 ED                MOV     A,R5
+003E87 F0                MOVX    @DPTR,A
+   37: 	dmemcpy(IIC_TempBuff + 3, pbuff, len);
+   38: 	IIC_TempBuff[0] = 0xa0;
+003E88 A3                INC     DPTR
+003E89 E0                MOVX    A,@DPTR
+003E8A F9                MOV     R1,A
+003E8B A3                INC     DPTR
+003E8C E0                MOVX    A,@DPTR
+003E8D FA                MOV     R2,A
+003E8E A3                INC     DPTR
+003E8F E0                MOVX    A,@DPTR
+003E90 904EAB            MOV     DPTR,#?_dmemcpy?BYTE+03H
+003E93 C9                XCH     A,R1
+003E94 F0                MOVX    @DPTR,A
+003E95 A3                INC     DPTR
+003E96 EA                MOV     A,R2
+003E97 F0                MOVX    @DPTR,A
+003E98 A3                INC     DPTR
+003E99 E9                MOV     A,R1
+003E9A F0                MOVX    @DPTR,A
+003E9B A3                INC     DPTR
+003E9C EC                MOV     A,R4
+003E9D F0                MOVX    @DPTR,A
+003E9E A3                INC     DPTR
+003E9F ED                MOV     A,R5
+003EA0 F0                MOVX    @DPTR,A
+003EA1 7B01              MOV     R3,#01H
+003EA3 7A0B              MOV     R2,#HIGH IIC_TempBuff+03H
+003EA5 7986              MOV     R1,#LOW IIC_TempBuff+03H
+003EA7 F108              ACALL   _dmemcpy
+   39: 	(word) IIC_TempBuff[1] = addr;
+003EA9 900B83            MOV     DPTR,#IIC_TempBuff
+003EAC 74A0              MOV     A,#0A0H
+003EAE F0                MOVX    @DPTR,A
+   40: 	REG_IICD_TXLEN = ESWAP(len + 3);
+003EAF 904EB7            MOV     DPTR,#addr
+003EB2 E0                MOVX    A,@DPTR
+003EB3 FF                MOV     R7,A
+003EB4 A3                INC     DPTR
+003EB5 E0                MOVX    A,@DPTR
+003EB6 900B84            MOV     DPTR,#IIC_TempBuff+01H
+003EB9 CF                XCH     A,R7
+003EBA F0                MOVX    @DPTR,A
+003EBB A3                INC     DPTR
+003EBC EF                MOV     A,R7
+003EBD F0                MOVX    @DPTR,A
+   41: 	REG_IICD_TXADDR = ESWAP((word) IIC_TempBuff);
+003EBE 904EBA            MOV     DPTR,#len+01H
+003EC1 E0                MOVX    A,@DPTR
+003EC2 2403              ADD     A,#03H
+003EC4 FD                MOV     R5,A
+003EC5 904EB9            MOV     DPTR,#len
+003EC8 E0                MOVX    A,@DPTR
+003EC9 3400              ADDC    A,#00H
+003ECB FC                MOV     R4,A
+003ECC ED                MOV     A,R5
+003ECD FA                MOV     R2,A
+003ECE EC                MOV     A,R4
+003ECF FF                MOV     R7,A
+003ED0 EA                MOV     A,R2
+003ED1 FE                MOV     R6,A
+003ED2 EF                MOV     A,R7
+003ED3 908098            MOV     DPTR,#08098H
+003ED6 EE                MOV     A,R6
+003ED7 F0                MOVX    @DPTR,A
+003ED8 A3                INC     DPTR
+003ED9 EF                MOV     A,R7
+003EDA F0                MOVX    @DPTR,A
+   42: 	REG_IICD_RXLEN = 0;
+003EDB 7A0B              MOV     R2,#HIGH IIC_TempBuff
+003EDD 7983              MOV     R1,#LOW IIC_TempBuff
+003EDF 7E0B              MOV     R6,#HIGH IIC_TempBuff
+003EE1 7F83              MOV     R7,#LOW IIC_TempBuff
+003EE3 7483              MOV     A,#LOW IIC_TempBuff
+003EE5 FC                MOV     R4,A
+003EE6 740B              MOV     A,#HIGH IIC_TempBuff
+003EE8 FF                MOV     R7,A
+003EE9 EC                MOV     A,R4
+003EEA FE                MOV     R6,A
+003EEB EF                MOV     A,R7
+003EEC A3                INC     DPTR
+003EED EE                MOV     A,R6
+003EEE F0                MOVX    @DPTR,A
+003EEF A3                INC     DPTR
+003EF0 EF                MOV     A,R7
+003EF1 F0                MOVX    @DPTR,A
+   43: 	REG_IICD_CTRL = 1;
+003EF2 90809E            MOV     DPTR,#0809EH
+003EF5 E4                CLR     A
+003EF6 F0                MOVX    @DPTR,A
+003EF7 A3                INC     DPTR
+003EF8 F0                MOVX    @DPTR,A
+   44: 	REG_MISC_CTRL |= 1 << 2;	//start iic dma
+003EF9 908090            MOV     DPTR,#08090H
+003EFC 04                INC     A
+003EFD F0                MOVX    @DPTR,A
+   45: 	IIcWaitDone();
+003EFE 908006            MOV     DPTR,#08006H
+003F01 E0                MOVX    A,@DPTR
+003F02 4404              ORL     A,#04H
+003F04 F0                MOVX    @DPTR,A
+   46: }
+003F05 021FD2            LJMP    IIcWaitDone
+----- FUNCTION _IIC_write (END) -------
+
+
+----- FUNCTION _dmemcpy (BEGIN) -----
+ FILE: 'utilities.c'
+   16: void dmemcpy(byte * dest, byte * src, word len)
+   17: {
+003F08 904EA8            MOV     DPTR,#dest
+003F0B EB                MOV     A,R3
+003F0C F0                MOVX    @DPTR,A
+003F0D A3                INC     DPTR
+003F0E EA                MOV     A,R2
+003F0F F0                MOVX    @DPTR,A
+003F10 A3                INC     DPTR
+003F11 E9                MOV     A,R1
+003F12 F0                MOVX    @DPTR,A
+   18: 	while (len--)
+003F13         ?C0005?UTILITIES:
+   19: 		*dest++ = *src++;
+003F13 904EAE            MOV     DPTR,#len
+003F16 74FF              MOV     A,#0FFH
+003F18 F5F0              MOV     B,A
+003F1A 120479            LCALL   ?C?ILDIX
+003F1D 45F0              ORL     A,B
+003F1F 602A              JZ      ?C0007?UTILITIES
+   20: 	return;
+003F21 904EAB            MOV     DPTR,#src
+003F24 E0                MOVX    A,@DPTR
+003F25 FB                MOV     R3,A
+003F26 A3                INC     DPTR
+003F27 E4                CLR     A
+003F28 75F001            MOV     B,#01H
+003F2B 120479            LCALL   ?C?ILDIX
+003F2E A9F0              MOV     R1,B
+003F30 FA                MOV     R2,A
+003F31 1203B6            LCALL   ?C?CLDPTR
+003F34 FF                MOV     R7,A
+003F35 904EA8            MOV     DPTR,#dest
+003F38 E0                MOVX    A,@DPTR
+003F39 FB                MOV     R3,A
+003F3A A3                INC     DPTR
+003F3B E4                CLR     A
+003F3C 75F001            MOV     B,#01H
+003F3F 120479            LCALL   ?C?ILDIX
+003F42 A9F0              MOV     R1,B
+003F44 FA                MOV     R2,A
+003F45 EF                MOV     A,R7
+003F46 1203FC            LCALL   ?C?CSTPTR
+003F49 80C8              SJMP    ?C0005?UTILITIES
+   21: }
+003F4B         ?C0007?UTILITIES:
+003F4B 22                RET     
+----- FUNCTION _dmemcpy (END) -------
+
+
+----- FUNCTION YC_Ice_break (BEGIN) -----
+ FILE: 'utilities.c'
+    3: void YC_Ice_break()
+    4: {
+    5: 	CPUA_ICE_CTRL = 1;
+    6: 	return;
+003F4C 908280            MOV     DPTR,#08280H
+003F4F 7401              MOV     A,#01H
+003F51 F0                MOVX    @DPTR,A
+    7: }
+003F52 22                RET     
+----- FUNCTION YC_Ice_break (END) -------
+
+
Index: c51/output/FW.HTM
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/c51/output/FW.HTM	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/c51/output/FW.HTM	(working copy)
@@ -0,0 +1,1425 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
+<head>
+<title>LX51 Static Call Analysis</title>
+<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
+<style type="text/css">
+<!--
+p            { font-family: Verdana; font-size: 8pt; margin-top: 2; margin-bottom: 2 }
+.LI2         { margin-top: 2; margin-bottom: 2 }
+.Release     { background-color: #CCCCCC; font-weight: bold; padding: 6 }
+.ToolT       { font-size: 8pt; color: #808080 }
+.TinyT       { font-size: 8pt; text-align: Center }
+ul           { font-family: Verdana; font-size: 8pt; list-style-type: square;  margin-top: 2; margin-bottom: 2 }
+ol           { font-family: Verdana; font-size: 8pt }
+h1           { font-family: Verdana; font-size: 14pt; color: #000080; font-weight: bold; text-align: Center; margin-right: 3 }
+h2           { font-family: Verdana; font-size: 8pt; color: #000080; font-weight: bold; margin-top: 12; margin-bottom: 3; background-color: #CCCCCC; padding: 6 }
+h3           { font-family: Verdana; font-size: 8pt; font-weight: bold; margin-top: 12; margin-bottom: 3; background-color: #CCCCCC; padding: 6 }
+pre          { font-family: Courier New; font-size: 8pt; background-color: #CCFFCC; margin-left: 24; margin-right: 24 }
+li           { margin-top: 3; margin-bottom: 0 }
+-->
+</style>
+</head>
+<body>
+<h1>Static Call Analysis for<br>OUTPUT\FW (BLUETOOTH)</h1>
+
+<p class="TinyT">
+Created from: <b>LX51 LINKER/LOCATER V4.41</b><br>
+Creation time: <b>05/26/2022  10:54:57</b><p>
+
+<hr>
+
+
+<h2><a name="S2"></a>?PR?_YC_LOAD_RECORD_LIST?BLUETOOTH (C:00078CH - C:0008B2H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=4 Bytes (<a href="#S217">?PR?_XMEMCPY?UTILITIES</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S145">?PR?_IPC_TXCONTROLCMD?IPC</a></li>
+<li><a href="#S217">?PR?_XMEMCPY?UTILITIES</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S117">?PR?_KB_CB_EVENT?SYS</a></li>
+</ul>
+
+<h2><a name="S13"></a>?PR?YC_START_RECONNECT?BLUETOOTH (C:001FDAH - C:00204FH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=6 Bytes (<a href="#S56">?PR?_YC_KEY_ACTION_HANDLE?KB_PROCESS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S225">?PR?_DELAY1MS?UTILITIES</a></li>
+<li><a href="#S208">?PR?_IIC_READ?IIC</a></li>
+<li><a href="#S56">?PR?_YC_KEY_ACTION_HANDLE?KB_PROCESS</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S117">?PR?_KB_CB_EVENT?SYS</a></li>
+</ul>
+
+<h2><a name="S85"></a>?PR?KSCOLINITIALIZE?KEYSCAN (C:001F99H - C:001FB7H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=8 Bytes (<a href="#S191">?PR?_GPIO_SETINPUT?GPIO</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S191">?PR?_GPIO_SETINPUT?GPIO</a></li>
+</ul>
+
+<h2><a name="S101"></a>?PR?LED_BACKLIGHT_NENO?LED (C:000F86H - C:000F9BH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=8 Bytes (<a href="#S193">?PR?_GPIO_SETOUTPUT?GPIO</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S193">?PR?_GPIO_SETOUTPUT?GPIO</a></li>
+<li><a href="#S138">?PR?_YC_PWM_DISABLE?PWM</a></li>
+</ul>
+
+<h2><a name="S115"></a>?PR?_KB_CB_HID?SYS (C:003A7BH - C:003A8AH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=2 Bytes (<a href="#S228">?C?LIB_CODE</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S228">?C?LIB_CODE</a></li>
+</ul>
+
+<h2><a name="S117"></a>?PR?_KB_CB_EVENT?SYS (C:0018CDH - C:001D89H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=14 Bytes (<a href="#S109">?PR?SYSTEM_HARDWARE_INIT?SYS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S228">?C?LIB_CODE</a></li>
+<li><a href="#S225">?PR?_DELAY1MS?UTILITIES</a></li>
+<li><a href="#S208">?PR?_IIC_READ?IIC</a></li>
+<li><a href="#S212">?PR?_IIC_WRITEBLOCK?IIC</a></li>
+<li><a href="#S145">?PR?_IPC_TXCONTROLCMD?IPC</a></li>
+<li><a href="#S223">?PR?_XMEMCLEAR_FF?UTILITIES</a></li>
+<li><a href="#S56">?PR?_YC_KEY_ACTION_HANDLE?KB_PROCESS</a></li>
+<li><a href="#S2">?PR?_YC_LOAD_RECORD_LIST?BLUETOOTH</a></li>
+<li><a href="#S4">?PR?_YC_STORE_RECORD_LIST?BLUETOOTH</a></li>
+<li><a href="#S155">?PR?IPC_WAITLPM?IPC</a></li>
+<li><a href="#S87">?PR?KS_INITIALIZE?KEYSCAN</a></li>
+<li><a href="#S98">?PR?LED_DEVICE_POWERON?LED</a></li>
+<li><a href="#S109">?PR?SYSTEM_HARDWARE_INIT?SYS</a></li>
+<li><a href="#S108">?PR?SYSTEM_IIC_CLK_SETUP?SYS</a></li>
+<li><a href="#S112">?PR?SYSTEM_LONG_SLEEP?SYS</a></li>
+<li><a href="#S110">?PR?SYSTEM_SOFTWARE_INIT?SYS</a></li>
+<li><a href="#S15">?PR?YC_CLEAR_BT_SAME_ADDRESS_RECORD?BLUETOOTH</a></li>
+<li><a href="#S10">?PR?YC_CLEAR_RECONNECT_FLAG?BLUETOOTH</a></li>
+<li><a href="#S13">?PR?YC_START_RECONNECT?BLUETOOTH</a></li>
+<li><a href="#S17">?PR?YC_UPDATE_EEPROM_DATA?BLUETOOTH</a></li>
+</ul>
+
+<h2><a name="S124"></a>?PR?KB_CB_TIMER500MS?SYS (C:0020F7H - C:002129H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=14 Bytes (<a href="#S120">?PR?YC_CONNECT_TIMEOUT_500MS?SYS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S123">?PR?KB_BUTTON_PRESS_TIMER500MS?SYS</a></li>
+<li><a href="#S119">?PR?LED_TIMER500MS?SYS</a></li>
+<li><a href="#S133">?PR?YC_ADC_CHECK_TIMER500MS?ADC</a></li>
+<li><a href="#S120">?PR?YC_CONNECT_TIMEOUT_500MS?SYS</a></li>
+<li><a href="#S122">?PR?YC_PAIRING_TIMEROUT_500MS?SYS</a></li>
+<li><a href="#S121">?PR?YC_WAIT_DISCONNECT_TIMER500MS?SYS</a></li>
+</ul>
+
+<h2><a name="S125"></a>?PR?KB_CB_TIMER100MS?SYS (C:003A8BH - C:003BB4H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=12 Bytes (<a href="#S106">?PR?BACKLIGHT_LED_PROCESS?LED</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S201">?PR?_GPIO_FLIPOUTBIT?GPIO</a></li>
+<li><a href="#S145">?PR?_IPC_TXCONTROLCMD?IPC</a></li>
+<li><a href="#S58">?PR?_IPC_TXHIDDATA?KB_PROCESS</a></li>
+<li><a href="#S106">?PR?BACKLIGHT_LED_PROCESS?LED</a></li>
+<li><a href="#S99">?PR?LED_DEVICE_POWEROFF?LED</a></li>
+<li><a href="#S98">?PR?LED_DEVICE_POWERON?LED</a></li>
+<li><a href="#S114">?PR?SYSTEM_RESET_CONNECT?SYS</a></li>
+</ul>
+
+<h2><a name="S127"></a>?PR?YC_SYSTEM_MAIN?SYS (C:002412H - C:002480H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=18 Bytes (<a href="#S69">?PR?KB_NEED_KEYSCAN?KB_PROCESS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S138">?PR?_YC_PWM_DISABLE?PWM</a></li>
+<li><a href="#S156">?PR?IPC_ABANDONLPM?IPC</a></li>
+<li><a href="#S158">?PR?IPC_DEALSINGLESTEP?IPC</a></li>
+<li><a href="#S155">?PR?IPC_WAITLPM?IPC</a></li>
+<li><a href="#S126">?PR?KB_CB_INIT?SYS</a></li>
+<li><a href="#S69">?PR?KB_NEED_KEYSCAN?KB_PROCESS</a></li>
+<li><a href="#S88">?PR?KS_UNISTALL?KEYSCAN</a></li>
+<li><a href="#S97">?PR?LED_ALL_SHUTDOWN?LED</a></li>
+<li><a href="#S100">?PR?LED_HANDLE?LED</a></li>
+<li><a href="#S113">?PR?SYSTEM_G24_LONG_LPM?SYS</a></li>
+<li><a href="#S17">?PR?YC_UPDATE_EEPROM_DATA?BLUETOOTH</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S134">?PR?MAIN?RAM</a></li>
+</ul>
+
+<h2><a name="S134"></a>?PR?MAIN?RAM (C:0026EDH - C:0026EEH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=18 Bytes (<a href="#S127">?PR?YC_SYSTEM_MAIN?SYS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S127">?PR?YC_SYSTEM_MAIN?SYS</a></li>
+</ul>
+
+<h2><a name="S151"></a>?PR?_IPC_TXSPPDATA?IPC (C:003DFEH - C:003E06H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=4 Bytes (<a href="#S147">?PR?_IPC_TXDATA?IPC</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S147">?PR?_IPC_TXDATA?IPC</a></li>
+</ul>
+
+<h2><a name="S154"></a>?PR?_IPC_INITIALIZE?IPC (C:0026E0H - C:0026ECH)</h2>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S228">?C?LIB_CODE</a></li>
+</ul>
+
+<h2><a name="S4"></a>?PR?_YC_STORE_RECORD_LIST?BLUETOOTH (C:000FF1H - C:0010C7H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=4 Bytes (<a href="#S217">?PR?_XMEMCPY?UTILITIES</a>) Top=4 Bytes (<a href="#S15">?PR?YC_CLEAR_BT_SAME_ADDRESS_RECORD?BLUETOOTH</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S217">?PR?_XMEMCPY?UTILITIES</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S117">?PR?_KB_CB_EVENT?SYS</a></li>
+<li><a href="#S15">?PR?YC_CLEAR_BT_SAME_ADDRESS_RECORD?BLUETOOTH</a></li>
+</ul>
+
+<h2><a name="S6"></a>?PR?YC_CHECK_IS_CONNECTED?BLUETOOTH (C:00180DH - C:001829H)</h2>
+<p><br><b>Maximum Stack:</b> Top=4 Bytes (<a href="#S100">?PR?LED_HANDLE?LED</a>)<p>
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S100">?PR?LED_HANDLE?LED</a></li>
+</ul>
+
+<h2><a name="S7"></a>?PR?YC_CHECK_NEED_RECONNECTED?BLUETOOTH (C:00182AH - C:0018C2H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=8 Bytes (<a href="#S56">?PR?_YC_KEY_ACTION_HANDLE?KB_PROCESS</a>) Top=8 Bytes (<a href="#S58">?PR?_IPC_TXHIDDATA?KB_PROCESS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S56">?PR?_YC_KEY_ACTION_HANDLE?KB_PROCESS</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S58">?PR?_IPC_TXHIDDATA?KB_PROCESS</a></li>
+</ul>
+
+<h2><a name="S9"></a>?PR?YC_CANCEL_RECONNECT?BLUETOOTH (C:000B52H - C:000B70H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=4 Bytes (<a href="#S145">?PR?_IPC_TXCONTROLCMD?IPC</a>) Top=12 Bytes (<a href="#S56">?PR?_YC_KEY_ACTION_HANDLE?KB_PROCESS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S145">?PR?_IPC_TXCONTROLCMD?IPC</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S56">?PR?_YC_KEY_ACTION_HANDLE?KB_PROCESS</a></li>
+</ul>
+
+<h2><a name="S10"></a>?PR?YC_CLEAR_RECONNECT_FLAG?BLUETOOTH (C:0018C3H - C:0018CCH)</h2>
+<p><br><b>Maximum Stack:</b> Top=12 Bytes (<a href="#S56">?PR?_YC_KEY_ACTION_HANDLE?KB_PROCESS</a>)<p>
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S117">?PR?_KB_CB_EVENT?SYS</a></li>
+<li><a href="#S56">?PR?_YC_KEY_ACTION_HANDLE?KB_PROCESS</a></li>
+</ul>
+
+<h2><a name="S11"></a>?PR?YC_DISCONNECT_ALL_LINK?BLUETOOTH (C:000B13H - C:000B51H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=4 Bytes (<a href="#S145">?PR?_IPC_TXCONTROLCMD?IPC</a>) Top=12 Bytes (<a href="#S56">?PR?_YC_KEY_ACTION_HANDLE?KB_PROCESS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S145">?PR?_IPC_TXCONTROLCMD?IPC</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S56">?PR?_YC_KEY_ACTION_HANDLE?KB_PROCESS</a></li>
+<li><a href="#S123">?PR?KB_BUTTON_PRESS_TIMER500MS?SYS</a></li>
+<li><a href="#S120">?PR?YC_CONNECT_TIMEOUT_500MS?SYS</a></li>
+</ul>
+
+<h2><a name="S12"></a>?PR?YC_G24_MODE_DISCOVERY?BLUETOOTH (C:002050H - C:002066H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=4 Bytes (<a href="#S145">?PR?_IPC_TXCONTROLCMD?IPC</a>) Top=12 Bytes (<a href="#S56">?PR?_YC_KEY_ACTION_HANDLE?KB_PROCESS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S145">?PR?_IPC_TXCONTROLCMD?IPC</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S56">?PR?_YC_KEY_ACTION_HANDLE?KB_PROCESS</a></li>
+</ul>
+
+<h2><a name="S14"></a>?PR?YC_GET_BLE_RAMDON_LAP?BLUETOOTH (C:002067H - C:0020AAH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=4 Bytes (<a href="#S208">?PR?_IIC_READ?IIC</a>) Top=12 Bytes (<a href="#S56">?PR?_YC_KEY_ACTION_HANDLE?KB_PROCESS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S208">?PR?_IIC_READ?IIC</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S56">?PR?_YC_KEY_ACTION_HANDLE?KB_PROCESS</a></li>
+<li><a href="#S121">?PR?YC_WAIT_DISCONNECT_TIMER500MS?SYS</a></li>
+</ul>
+
+<h2><a name="S15"></a>?PR?YC_CLEAR_BT_SAME_ADDRESS_RECORD?BLUETOOTH (C:00272FH - C:002818H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=6 Bytes (<a href="#S4">?PR?_YC_STORE_RECORD_LIST?BLUETOOTH</a>) Top=2 Bytes (<a href="#S117">?PR?_KB_CB_EVENT?SYS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S226">?PR?_COMPARE_STR?UTILITIES</a></li>
+<li><a href="#S223">?PR?_XMEMCLEAR_FF?UTILITIES</a></li>
+<li><a href="#S4">?PR?_YC_STORE_RECORD_LIST?BLUETOOTH</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S117">?PR?_KB_CB_EVENT?SYS</a></li>
+</ul>
+
+<h2><a name="S17"></a>?PR?YC_UPDATE_EEPROM_DATA?BLUETOOTH (C:001D8AH - C:001E1FH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=8 Bytes (<a href="#S212">?PR?_IIC_WRITEBLOCK?IIC</a>) Top=10 Bytes (<a href="#S114">?PR?SYSTEM_RESET_CONNECT?SYS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S225">?PR?_DELAY1MS?UTILITIES</a></li>
+<li><a href="#S183">?PR?_GPIO_SETOUT?GPIO</a></li>
+<li><a href="#S212">?PR?_IIC_WRITEBLOCK?IIC</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S117">?PR?_KB_CB_EVENT?SYS</a></li>
+<li><a href="#S123">?PR?KB_BUTTON_PRESS_TIMER500MS?SYS</a></li>
+<li><a href="#S114">?PR?SYSTEM_RESET_CONNECT?SYS</a></li>
+<li><a href="#S127">?PR?YC_SYSTEM_MAIN?SYS</a></li>
+</ul>
+
+<h2><a name="S56"></a>?PR?_YC_KEY_ACTION_HANDLE?KB_PROCESS (C:000970H - C:000B12H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=6 Bytes (<a href="#S11">?PR?YC_DISCONNECT_ALL_LINK?BLUETOOTH</a>) Top=10 Bytes (<a href="#S7">?PR?YC_CHECK_NEED_RECONNECTED?BLUETOOTH</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S225">?PR?_DELAY1MS?UTILITIES</a></li>
+<li><a href="#S208">?PR?_IIC_READ?IIC</a></li>
+<li><a href="#S145">?PR?_IPC_TXCONTROLCMD?IPC</a></li>
+<li><a href="#S223">?PR?_XMEMCLEAR_FF?UTILITIES</a></li>
+<li><a href="#S9">?PR?YC_CANCEL_RECONNECT?BLUETOOTH</a></li>
+<li><a href="#S10">?PR?YC_CLEAR_RECONNECT_FLAG?BLUETOOTH</a></li>
+<li><a href="#S11">?PR?YC_DISCONNECT_ALL_LINK?BLUETOOTH</a></li>
+<li><a href="#S12">?PR?YC_G24_MODE_DISCOVERY?BLUETOOTH</a></li>
+<li><a href="#S14">?PR?YC_GET_BLE_RAMDON_LAP?BLUETOOTH</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S117">?PR?_KB_CB_EVENT?SYS</a></li>
+<li><a href="#S72">?PR?_KB_DEVICE_SELECT?KB_PROCESS</a></li>
+<li><a href="#S123">?PR?KB_BUTTON_PRESS_TIMER500MS?SYS</a></li>
+<li><a href="#S119">?PR?LED_TIMER500MS?SYS</a></li>
+<li><a href="#S7">?PR?YC_CHECK_NEED_RECONNECTED?BLUETOOTH</a></li>
+<li><a href="#S122">?PR?YC_PAIRING_TIMEROUT_500MS?SYS</a></li>
+<li><a href="#S13">?PR?YC_START_RECONNECT?BLUETOOTH</a></li>
+</ul>
+
+<h2><a name="S58"></a>?PR?_IPC_TXHIDDATA?KB_PROCESS (C:0013EAH - C:0014D7H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=10 Bytes (<a href="#S7">?PR?YC_CHECK_NEED_RECONNECTED?BLUETOOTH</a>) Top=6 Bytes (<a href="#S70">?PR?_KB_MOTION_KEYSCAN?KB_PROCESS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S228">?C?LIB_CODE</a></li>
+<li><a href="#S150">?PR?_IPC_TX24GDATA?IPC</a></li>
+<li><a href="#S152">?PR?_IPC_TXBLEDATA?IPC</a></li>
+<li><a href="#S149">?PR?_IPC_TXBREDRHIDDATA?IPC</a></li>
+<li><a href="#S7">?PR?YC_CHECK_NEED_RECONNECTED?BLUETOOTH</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S70">?PR?_KB_MOTION_KEYSCAN?KB_PROCESS</a></li>
+<li><a href="#S62">?PR?_KB_SEND_COMBINATION_KEY?KB_PROCESS</a></li>
+<li><a href="#S66">?PR?KB_24G_GET_LED_STATUS?KB_PROCESS</a></li>
+<li><a href="#S125">?PR?KB_CB_TIMER100MS?SYS</a></li>
+<li><a href="#S120">?PR?YC_CONNECT_TIMEOUT_500MS?SYS</a></li>
+</ul>
+
+<h2><a name="S60"></a>?PR?_KB_SET_MULTIKEY?KB_PROCESS (C:002E12H - C:002E2CH)</h2>
+<p><br><b>Maximum Stack:</b> Top=8 Bytes (<a href="#S77">?PR?_KB_MULTIKEY_SETUP?KB_PROCESS</a>)<p>
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S77">?PR?_KB_MULTIKEY_SETUP?KB_PROCESS</a></li>
+</ul>
+
+<h2><a name="S61"></a>?PR?_KB_SET_SYSTEMKEY?KB_PROCESS (C:0030DDH - C:0030F7H)</h2>
+<p><br><b>Maximum Stack:</b> Top=8 Bytes (<a href="#S77">?PR?_KB_MULTIKEY_SETUP?KB_PROCESS</a>)<p>
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S77">?PR?_KB_MULTIKEY_SETUP?KB_PROCESS</a></li>
+</ul>
+
+<h2><a name="S62"></a>?PR?_KB_SEND_COMBINATION_KEY?KB_PROCESS (C:0015A5H - C:0015DEH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=10 Bytes (<a href="#S58">?PR?_IPC_TXHIDDATA?KB_PROCESS</a>) Top=4 Bytes (<a href="#S69">?PR?KB_NEED_KEYSCAN?KB_PROCESS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S58">?PR?_IPC_TXHIDDATA?KB_PROCESS</a></li>
+<li><a href="#S221">?PR?_XMEMCLEAR?UTILITIES</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S69">?PR?KB_NEED_KEYSCAN?KB_PROCESS</a></li>
+</ul>
+
+<h2><a name="S64"></a>?PR?KB_BT_PINCODE_ENTER?KB_PROCESS (C:0030F8H - C:00336AH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=16 Bytes (<a href="#S70">?PR?_KB_MOTION_KEYSCAN?KB_PROCESS</a>) Top=2 Bytes (<a href="#S69">?PR?KB_NEED_KEYSCAN?KB_PROCESS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S228">?C?LIB_CODE</a></li>
+<li><a href="#S145">?PR?_IPC_TXCONTROLCMD?IPC</a></li>
+<li><a href="#S70">?PR?_KB_MOTION_KEYSCAN?KB_PROCESS</a></li>
+<li><a href="#S94">?PR?KS_GETCURRENTEVT?KEYSCAN</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S69">?PR?KB_NEED_KEYSCAN?KB_PROCESS</a></li>
+</ul>
+
+<h2><a name="S66"></a>?PR?KB_24G_GET_LED_STATUS?KB_PROCESS (C:0016A8H - C:0016E3H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=12 Bytes (<a href="#S58">?PR?_IPC_TXHIDDATA?KB_PROCESS</a>) Top=2 Bytes (<a href="#S67">?PR?KB_MOTION?KB_PROCESS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S58">?PR?_IPC_TXHIDDATA?KB_PROCESS</a></li>
+<li><a href="#S221">?PR?_XMEMCLEAR?UTILITIES</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S67">?PR?KB_MOTION?KB_PROCESS</a></li>
+</ul>
+
+<h2><a name="S67"></a>?PR?KB_MOTION?KB_PROCESS (C:001674H - C:0016A7H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=16 Bytes (<a href="#S70">?PR?_KB_MOTION_KEYSCAN?KB_PROCESS</a>) Top=2 Bytes (<a href="#S69">?PR?KB_NEED_KEYSCAN?KB_PROCESS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S70">?PR?_KB_MOTION_KEYSCAN?KB_PROCESS</a></li>
+<li><a href="#S157">?PR?IPC_ISTXBUFFEMPTY?IPC</a></li>
+<li><a href="#S66">?PR?KB_24G_GET_LED_STATUS?KB_PROCESS</a></li>
+<li><a href="#S94">?PR?KS_GETCURRENTEVT?KEYSCAN</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S69">?PR?KB_NEED_KEYSCAN?KB_PROCESS</a></li>
+</ul>
+
+<h2><a name="S69"></a>?PR?KB_NEED_KEYSCAN?KB_PROCESS (C:0015DFH - C:001673H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=16 Bytes (<a href="#S64">?PR?KB_BT_PINCODE_ENTER?KB_PROCESS</a>) Top=2 Bytes (<a href="#S127">?PR?YC_SYSTEM_MAIN?SYS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S62">?PR?_KB_SEND_COMBINATION_KEY?KB_PROCESS</a></li>
+<li><a href="#S64">?PR?KB_BT_PINCODE_ENTER?KB_PROCESS</a></li>
+<li><a href="#S67">?PR?KB_MOTION?KB_PROCESS</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S127">?PR?YC_SYSTEM_MAIN?SYS</a></li>
+</ul>
+
+<h2><a name="S70"></a>?PR?_KB_MOTION_KEYSCAN?KB_PROCESS (C:00110BH - C:0013E9H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=14 Bytes (<a href="#S72">?PR?_KB_DEVICE_SELECT?KB_PROCESS</a>) Top=4 Bytes (<a href="#S64">?PR?KB_BT_PINCODE_ENTER?KB_PROCESS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S228">?C?LIB_CODE</a></li>
+<li><a href="#S58">?PR?_IPC_TXHIDDATA?KB_PROCESS</a></li>
+<li><a href="#S72">?PR?_KB_DEVICE_SELECT?KB_PROCESS</a></li>
+<li><a href="#S77">?PR?_KB_MULTIKEY_SETUP?KB_PROCESS</a></li>
+<li><a href="#S221">?PR?_XMEMCLEAR?UTILITIES</a></li>
+<li><a href="#S217">?PR?_XMEMCPY?UTILITIES</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S64">?PR?KB_BT_PINCODE_ENTER?KB_PROCESS</a></li>
+<li><a href="#S67">?PR?KB_MOTION?KB_PROCESS</a></li>
+</ul>
+
+<h2><a name="S72"></a>?PR?_KB_DEVICE_SELECT?KB_PROCESS (C:00336BH - C:00346EH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=12 Bytes (<a href="#S114">?PR?SYSTEM_RESET_CONNECT?SYS</a>) Top=6 Bytes (<a href="#S70">?PR?_KB_MOTION_KEYSCAN?KB_PROCESS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S228">?C?LIB_CODE</a></li>
+<li><a href="#S56">?PR?_YC_KEY_ACTION_HANDLE?KB_PROCESS</a></li>
+<li><a href="#S114">?PR?SYSTEM_RESET_CONNECT?SYS</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S70">?PR?_KB_MOTION_KEYSCAN?KB_PROCESS</a></li>
+</ul>
+
+<h2><a name="S75"></a>?PR?_KEY_FN_FUNCTION?KB_PROCESS (C:003494H - C:003691H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=8 Bytes (<a href="#S212">?PR?_IIC_WRITEBLOCK?IIC</a>) Top=6 Bytes (<a href="#S94">?PR?KS_GETCURRENTEVT?KEYSCAN</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S228">?C?LIB_CODE</a></li>
+<li><a href="#S212">?PR?_IIC_WRITEBLOCK?IIC</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S94">?PR?KS_GETCURRENTEVT?KEYSCAN</a></li>
+</ul>
+
+<h2><a name="S77"></a>?PR?_KB_MULTIKEY_SETUP?KB_PROCESS (C:002E2DH - C:0030DCH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=2 Bytes (<a href="#S228">?C?LIB_CODE</a>) Top=6 Bytes (<a href="#S70">?PR?_KB_MOTION_KEYSCAN?KB_PROCESS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S228">?C?LIB_CODE</a></li>
+<li><a href="#S60">?PR?_KB_SET_MULTIKEY?KB_PROCESS</a></li>
+<li><a href="#S61">?PR?_KB_SET_SYSTEMKEY?KB_PROCESS</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S70">?PR?_KB_MOTION_KEYSCAN?KB_PROCESS</a></li>
+</ul>
+
+<h2><a name="S79"></a>?PR?_BIT_COUNT?KEYSCAN (C:002ADCH - C:002AE9H)</h2>
+<p><br><b>Maximum Stack:</b> Top=6 Bytes (<a href="#S94">?PR?KS_GETCURRENTEVT?KEYSCAN</a>)<p>
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S94">?PR?KS_GETCURRENTEVT?KEYSCAN</a></li>
+</ul>
+
+<h2><a name="S80"></a>?PR?_KEYIN?KEYSCAN (C:002B1AH - C:002BD2H)</h2>
+<p><br><b>Maximum Stack:</b> Top=6 Bytes (<a href="#S94">?PR?KS_GETCURRENTEVT?KEYSCAN</a>)<p>
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S94">?PR?KS_GETCURRENTEVT?KEYSCAN</a></li>
+</ul>
+
+<h2><a name="S81"></a>?PR?_KEYOUT?KEYSCAN (C:002BD3H - C:002CB3H)</h2>
+<p><br><b>Maximum Stack:</b> Top=6 Bytes (<a href="#S94">?PR?KS_GETCURRENTEVT?KEYSCAN</a>)<p>
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S94">?PR?KS_GETCURRENTEVT?KEYSCAN</a></li>
+</ul>
+
+<h2><a name="S83"></a>?PR?KSRAWINITIALIZE?KEYSCAN (C:003692H - C:0036AEH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=8 Bytes (<a href="#S191">?PR?_GPIO_SETINPUT?GPIO</a>) Top=6 Bytes (<a href="#S87">?PR?KS_INITIALIZE?KEYSCAN</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S191">?PR?_GPIO_SETINPUT?GPIO</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S87">?PR?KS_INITIALIZE?KEYSCAN</a></li>
+</ul>
+
+<h2><a name="S87"></a>?PR?KS_INITIALIZE?KEYSCAN (C:001F8DH - C:001F98H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=10 Bytes (<a href="#S83">?PR?KSRAWINITIALIZE?KEYSCAN</a>) Top=4 Bytes (<a href="#S109">?PR?SYSTEM_HARDWARE_INIT?SYS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S83">?PR?KSRAWINITIALIZE?KEYSCAN</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S117">?PR?_KB_CB_EVENT?SYS</a></li>
+<li><a href="#S109">?PR?SYSTEM_HARDWARE_INIT?SYS</a></li>
+</ul>
+
+<h2><a name="S88"></a>?PR?KS_UNISTALL?KEYSCAN (C:00237AH - C:002411H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=6 Bytes (<a href="#S198">?PR?_GPIO_SETWAKEUPBYCURRENTSTATE?GPIO</a>) Top=2 Bytes (<a href="#S127">?PR?YC_SYSTEM_MAIN?SYS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S198">?PR?_GPIO_SETWAKEUPBYCURRENTSTATE?GPIO</a></li>
+<li><a href="#S204">?PR?GPIO_FILLPD?GPIO</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S127">?PR?YC_SYSTEM_MAIN?SYS</a></li>
+</ul>
+
+<h2><a name="S90"></a>?PR?KS_SCANMATRIX?KEYSCAN (C:002CB4H - C:002E11H)</h2>
+<p><br><b>Maximum Stack:</b> Top=6 Bytes (<a href="#S94">?PR?KS_GETCURRENTEVT?KEYSCAN</a>)<p>
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S94">?PR?KS_GETCURRENTEVT?KEYSCAN</a></li>
+</ul>
+
+<h2><a name="S92"></a>?PR?_ARRAY_IS_EMPTY?KEYSCAN (C:002AEAH - C:002B19H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=2 Bytes (<a href="#S228">?C?LIB_CODE</a>) Top=6 Bytes (<a href="#S94">?PR?KS_GETCURRENTEVT?KEYSCAN</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S228">?C?LIB_CODE</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S94">?PR?KS_GETCURRENTEVT?KEYSCAN</a></li>
+</ul>
+
+<h2><a name="S94"></a>?PR?KS_GETCURRENTEVT?KEYSCAN (C:002890H - C:002ADBH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=10 Bytes (<a href="#S75">?PR?_KEY_FN_FUNCTION?KB_PROCESS</a>) Top=4 Bytes (<a href="#S64">?PR?KB_BT_PINCODE_ENTER?KB_PROCESS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S92">?PR?_ARRAY_IS_EMPTY?KEYSCAN</a></li>
+<li><a href="#S79">?PR?_BIT_COUNT?KEYSCAN</a></li>
+<li><a href="#S226">?PR?_COMPARE_STR?UTILITIES</a></li>
+<li><a href="#S75">?PR?_KEY_FN_FUNCTION?KB_PROCESS</a></li>
+<li><a href="#S80">?PR?_KEYIN?KEYSCAN</a></li>
+<li><a href="#S81">?PR?_KEYOUT?KEYSCAN</a></li>
+<li><a href="#S90">?PR?KS_SCANMATRIX?KEYSCAN</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S64">?PR?KB_BT_PINCODE_ENTER?KB_PROCESS</a></li>
+<li><a href="#S67">?PR?KB_MOTION?KB_PROCESS</a></li>
+</ul>
+
+<h2><a name="S97"></a>?PR?LED_ALL_SHUTDOWN?LED (C:000CAAH - C:000CCDH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=8 Bytes (<a href="#S193">?PR?_GPIO_SETOUTPUT?GPIO</a>) Top=4 Bytes (<a href="#S120">?PR?YC_CONNECT_TIMEOUT_500MS?SYS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S193">?PR?_GPIO_SETOUTPUT?GPIO</a></li>
+<li><a href="#S138">?PR?_YC_PWM_DISABLE?PWM</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S123">?PR?KB_BUTTON_PRESS_TIMER500MS?SYS</a></li>
+<li><a href="#S113">?PR?SYSTEM_G24_LONG_LPM?SYS</a></li>
+<li><a href="#S109">?PR?SYSTEM_HARDWARE_INIT?SYS</a></li>
+<li><a href="#S120">?PR?YC_CONNECT_TIMEOUT_500MS?SYS</a></li>
+<li><a href="#S127">?PR?YC_SYSTEM_MAIN?SYS</a></li>
+</ul>
+
+<h2><a name="S98"></a>?PR?LED_DEVICE_POWERON?LED (C:000FE5H - C:000FEAH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=4 Bytes (<a href="#S183">?PR?_GPIO_SETOUT?GPIO</a>) Top=2 Bytes (<a href="#S117">?PR?_KB_CB_EVENT?SYS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S183">?PR?_GPIO_SETOUT?GPIO</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S117">?PR?_KB_CB_EVENT?SYS</a></li>
+<li><a href="#S125">?PR?KB_CB_TIMER100MS?SYS</a></li>
+</ul>
+
+<h2><a name="S99"></a>?PR?LED_DEVICE_POWEROFF?LED (C:000FEBH - C:000FF0H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=4 Bytes (<a href="#S183">?PR?_GPIO_SETOUT?GPIO</a>) Top=2 Bytes (<a href="#S125">?PR?KB_CB_TIMER100MS?SYS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S183">?PR?_GPIO_SETOUT?GPIO</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S125">?PR?KB_CB_TIMER100MS?SYS</a></li>
+</ul>
+
+<h2><a name="S100"></a>?PR?LED_HANDLE?LED (C:000E9DH - C:000F5BH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=12 Bytes (<a href="#S106">?PR?BACKLIGHT_LED_PROCESS?LED</a>) Top=2 Bytes (<a href="#S127">?PR?YC_SYSTEM_MAIN?SYS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S183">?PR?_GPIO_SETOUT?GPIO</a></li>
+<li><a href="#S193">?PR?_GPIO_SETOUTPUT?GPIO</a></li>
+<li><a href="#S106">?PR?BACKLIGHT_LED_PROCESS?LED</a></li>
+<li><a href="#S112">?PR?SYSTEM_LONG_SLEEP?SYS</a></li>
+<li><a href="#S6">?PR?YC_CHECK_IS_CONNECTED?BLUETOOTH</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S127">?PR?YC_SYSTEM_MAIN?SYS</a></li>
+</ul>
+
+<h2><a name="S102"></a>?PR?LED_BACKLIGHT_BREATH?LED (C:003761H - C:0038FCH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=10 Bytes (<a href="#S136">?PR?_YC_PWM_SET_DUTY?PWM</a>) Top=4 Bytes (<a href="#S106">?PR?BACKLIGHT_LED_PROCESS?LED</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S138">?PR?_YC_PWM_DISABLE?PWM</a></li>
+<li><a href="#S136">?PR?_YC_PWM_SET_DUTY?PWM</a></li>
+<li><a href="#S103">?PR?LED_BREATH_1?LED</a></li>
+<li><a href="#S104">?PR?LED_BREATH_2?LED</a></li>
+<li><a href="#S105">?PR?LED_BREATH_3?LED</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S106">?PR?BACKLIGHT_LED_PROCESS?LED</a></li>
+</ul>
+
+<h2><a name="S103"></a>?PR?LED_BREATH_1?LED (C:0038FDH - C:003919H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=2 Bytes (<a href="#S135">?PR?_YC_PWM_INIT?PWM</a>) Top=4 Bytes (<a href="#S102">?PR?LED_BACKLIGHT_BREATH?LED</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S135">?PR?_YC_PWM_INIT?PWM</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S102">?PR?LED_BACKLIGHT_BREATH?LED</a></li>
+</ul>
+
+<h2><a name="S104"></a>?PR?LED_BREATH_2?LED (C:00391AH - C:003936H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=2 Bytes (<a href="#S135">?PR?_YC_PWM_INIT?PWM</a>) Top=4 Bytes (<a href="#S102">?PR?LED_BACKLIGHT_BREATH?LED</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S135">?PR?_YC_PWM_INIT?PWM</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S102">?PR?LED_BACKLIGHT_BREATH?LED</a></li>
+</ul>
+
+<h2><a name="S105"></a>?PR?LED_BREATH_3?LED (C:003937H - C:003953H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=2 Bytes (<a href="#S135">?PR?_YC_PWM_INIT?PWM</a>) Top=4 Bytes (<a href="#S102">?PR?LED_BACKLIGHT_BREATH?LED</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S135">?PR?_YC_PWM_INIT?PWM</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S102">?PR?LED_BACKLIGHT_BREATH?LED</a></li>
+</ul>
+
+<h2><a name="S106"></a>?PR?BACKLIGHT_LED_PROCESS?LED (C:000DBDH - C:000E9CH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=10 Bytes (<a href="#S102">?PR?LED_BACKLIGHT_BREATH?LED</a>) Top=4 Bytes (<a href="#S100">?PR?LED_HANDLE?LED</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S228">?C?LIB_CODE</a></li>
+<li><a href="#S136">?PR?_YC_PWM_SET_DUTY?PWM</a></li>
+<li><a href="#S102">?PR?LED_BACKLIGHT_BREATH?LED</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S125">?PR?KB_CB_TIMER100MS?SYS</a></li>
+<li><a href="#S100">?PR?LED_HANDLE?LED</a></li>
+</ul>
+
+<h2><a name="S107"></a>?PR?SYSTEM_CLEAR_MEM?SYS (C:001504H - C:0015A4H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=4 Bytes (<a href="#S221">?PR?_XMEMCLEAR?UTILITIES</a>) Top=4 Bytes (<a href="#S110">?PR?SYSTEM_SOFTWARE_INIT?SYS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S221">?PR?_XMEMCLEAR?UTILITIES</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S110">?PR?SYSTEM_SOFTWARE_INIT?SYS</a></li>
+</ul>
+
+<h2><a name="S108"></a>?PR?SYSTEM_IIC_CLK_SETUP?SYS (C:001FBFH - C:001FD1H)</h2>
+<p><br><b>Maximum Stack:</b> Top=4 Bytes (<a href="#S109">?PR?SYSTEM_HARDWARE_INIT?SYS</a>)<p>
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S117">?PR?_KB_CB_EVENT?SYS</a></li>
+<li><a href="#S109">?PR?SYSTEM_HARDWARE_INIT?SYS</a></li>
+</ul>
+
+<h2><a name="S109"></a>?PR?SYSTEM_HARDWARE_INIT?SYS (C:001FB8H - C:001FBEH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=12 Bytes (<a href="#S87">?PR?KS_INITIALIZE?KEYSCAN</a>) Top=2 Bytes (<a href="#S117">?PR?_KB_CB_EVENT?SYS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S87">?PR?KS_INITIALIZE?KEYSCAN</a></li>
+<li><a href="#S97">?PR?LED_ALL_SHUTDOWN?LED</a></li>
+<li><a href="#S108">?PR?SYSTEM_IIC_CLK_SETUP?SYS</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S117">?PR?_KB_CB_EVENT?SYS</a></li>
+</ul>
+
+<h2><a name="S110"></a>?PR?SYSTEM_SOFTWARE_INIT?SYS (C:003984H - C:0039BDH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=8 Bytes (<a href="#S130">?PR?YC_ADC_INIT?ADC</a>) Top=2 Bytes (<a href="#S117">?PR?_KB_CB_EVENT?SYS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S107">?PR?SYSTEM_CLEAR_MEM?SYS</a></li>
+<li><a href="#S130">?PR?YC_ADC_INIT?ADC</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S117">?PR?_KB_CB_EVENT?SYS</a></li>
+</ul>
+
+<h2><a name="S112"></a>?PR?SYSTEM_LONG_SLEEP?SYS (C:000FD8H - C:000FD8H)</h2>
+<p><br><b>Maximum Stack:</b> Top=4 Bytes (<a href="#S119">?PR?LED_TIMER500MS?SYS</a>)<p>
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S117">?PR?_KB_CB_EVENT?SYS</a></li>
+<li><a href="#S123">?PR?KB_BUTTON_PRESS_TIMER500MS?SYS</a></li>
+<li><a href="#S100">?PR?LED_HANDLE?LED</a></li>
+<li><a href="#S119">?PR?LED_TIMER500MS?SYS</a></li>
+<li><a href="#S120">?PR?YC_CONNECT_TIMEOUT_500MS?SYS</a></li>
+<li><a href="#S122">?PR?YC_PAIRING_TIMEROUT_500MS?SYS</a></li>
+</ul>
+
+<h2><a name="S113"></a>?PR?SYSTEM_G24_LONG_LPM?SYS (C:0017A6H - C:0017E0H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=8 Bytes (<a href="#S97">?PR?LED_ALL_SHUTDOWN?LED</a>) Top=2 Bytes (<a href="#S120">?PR?YC_CONNECT_TIMEOUT_500MS?SYS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S97">?PR?LED_ALL_SHUTDOWN?LED</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S120">?PR?YC_CONNECT_TIMEOUT_500MS?SYS</a></li>
+<li><a href="#S127">?PR?YC_SYSTEM_MAIN?SYS</a></li>
+</ul>
+
+<h2><a name="S114"></a>?PR?SYSTEM_RESET_CONNECT?SYS (C:000FD9H - C:000FDBH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=10 Bytes (<a href="#S17">?PR?YC_UPDATE_EEPROM_DATA?BLUETOOTH</a>) Top=8 Bytes (<a href="#S72">?PR?_KB_DEVICE_SELECT?KB_PROCESS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S17">?PR?YC_UPDATE_EEPROM_DATA?BLUETOOTH</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S72">?PR?_KB_DEVICE_SELECT?KB_PROCESS</a></li>
+<li><a href="#S123">?PR?KB_BUTTON_PRESS_TIMER500MS?SYS</a></li>
+<li><a href="#S125">?PR?KB_CB_TIMER100MS?SYS</a></li>
+</ul>
+
+<h2><a name="S119"></a>?PR?LED_TIMER500MS?SYS (C:00212AH - C:0021EAH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=8 Bytes (<a href="#S56">?PR?_YC_KEY_ACTION_HANDLE?KB_PROCESS</a>) Top=2 Bytes (<a href="#S124">?PR?KB_CB_TIMER500MS?SYS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S225">?PR?_DELAY1MS?UTILITIES</a></li>
+<li><a href="#S201">?PR?_GPIO_FLIPOUTBIT?GPIO</a></li>
+<li><a href="#S56">?PR?_YC_KEY_ACTION_HANDLE?KB_PROCESS</a></li>
+<li><a href="#S112">?PR?SYSTEM_LONG_SLEEP?SYS</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S124">?PR?KB_CB_TIMER500MS?SYS</a></li>
+</ul>
+
+<h2><a name="S120"></a>?PR?YC_CONNECT_TIMEOUT_500MS?SYS (C:0016E4H - C:0017A5H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=12 Bytes (<a href="#S58">?PR?_IPC_TXHIDDATA?KB_PROCESS</a>) Top=2 Bytes (<a href="#S124">?PR?KB_CB_TIMER500MS?SYS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S145">?PR?_IPC_TXCONTROLCMD?IPC</a></li>
+<li><a href="#S58">?PR?_IPC_TXHIDDATA?KB_PROCESS</a></li>
+<li><a href="#S221">?PR?_XMEMCLEAR?UTILITIES</a></li>
+<li><a href="#S97">?PR?LED_ALL_SHUTDOWN?LED</a></li>
+<li><a href="#S113">?PR?SYSTEM_G24_LONG_LPM?SYS</a></li>
+<li><a href="#S112">?PR?SYSTEM_LONG_SLEEP?SYS</a></li>
+<li><a href="#S11">?PR?YC_DISCONNECT_ALL_LINK?BLUETOOTH</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S124">?PR?KB_CB_TIMER500MS?SYS</a></li>
+</ul>
+
+<h2><a name="S121"></a>?PR?YC_WAIT_DISCONNECT_TIMER500MS?SYS (C:0020ABH - C:0020F6H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=6 Bytes (<a href="#S14">?PR?YC_GET_BLE_RAMDON_LAP?BLUETOOTH</a>) Top=2 Bytes (<a href="#S124">?PR?KB_CB_TIMER500MS?SYS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S145">?PR?_IPC_TXCONTROLCMD?IPC</a></li>
+<li><a href="#S14">?PR?YC_GET_BLE_RAMDON_LAP?BLUETOOTH</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S124">?PR?KB_CB_TIMER500MS?SYS</a></li>
+</ul>
+
+<h2><a name="S122"></a>?PR?YC_PAIRING_TIMEROUT_500MS?SYS (C:002207H - C:002281H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=8 Bytes (<a href="#S56">?PR?_YC_KEY_ACTION_HANDLE?KB_PROCESS</a>) Top=2 Bytes (<a href="#S124">?PR?KB_CB_TIMER500MS?SYS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S225">?PR?_DELAY1MS?UTILITIES</a></li>
+<li><a href="#S201">?PR?_GPIO_FLIPOUTBIT?GPIO</a></li>
+<li><a href="#S56">?PR?_YC_KEY_ACTION_HANDLE?KB_PROCESS</a></li>
+<li><a href="#S112">?PR?SYSTEM_LONG_SLEEP?SYS</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S124">?PR?KB_CB_TIMER500MS?SYS</a></li>
+</ul>
+
+<h2><a name="S123"></a>?PR?KB_BUTTON_PRESS_TIMER500MS?SYS (C:000B71H - C:000CA9H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=12 Bytes (<a href="#S114">?PR?SYSTEM_RESET_CONNECT?SYS</a>) Top=2 Bytes (<a href="#S124">?PR?KB_CB_TIMER500MS?SYS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S225">?PR?_DELAY1MS?UTILITIES</a></li>
+<li><a href="#S56">?PR?_YC_KEY_ACTION_HANDLE?KB_PROCESS</a></li>
+<li><a href="#S97">?PR?LED_ALL_SHUTDOWN?LED</a></li>
+<li><a href="#S112">?PR?SYSTEM_LONG_SLEEP?SYS</a></li>
+<li><a href="#S114">?PR?SYSTEM_RESET_CONNECT?SYS</a></li>
+<li><a href="#S11">?PR?YC_DISCONNECT_ALL_LINK?BLUETOOTH</a></li>
+<li><a href="#S17">?PR?YC_UPDATE_EEPROM_DATA?BLUETOOTH</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S124">?PR?KB_CB_TIMER500MS?SYS</a></li>
+</ul>
+
+<h2><a name="S126"></a>?PR?KB_CB_INIT?SYS (C:0026DAH - C:0026DFH)</h2>
+<p><br><b>Maximum Stack:</b> Top=2 Bytes (<a href="#S127">?PR?YC_SYSTEM_MAIN?SYS</a>)<p>
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S127">?PR?YC_SYSTEM_MAIN?SYS</a></li>
+</ul>
+
+<h2><a name="S130"></a>?PR?YC_ADC_INIT?ADC (C:0039BEH - C:003A7AH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=6 Bytes (<a href="#S228">?C?LIB_CODE</a>) Top=4 Bytes (<a href="#S110">?PR?SYSTEM_SOFTWARE_INIT?SYS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S228">?C?LIB_CODE</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S110">?PR?SYSTEM_SOFTWARE_INIT?SYS</a></li>
+</ul>
+
+<h2><a name="S131"></a>?PR?YC_ADC_CHECK?ADC (C:003BB5H - C:003D96H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=8 Bytes (<a href="#S212">?PR?_IIC_WRITEBLOCK?IIC</a>) Top=4 Bytes (<a href="#S133">?PR?YC_ADC_CHECK_TIMER500MS?ADC</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S228">?C?LIB_CODE</a></li>
+<li><a href="#S212">?PR?_IIC_WRITEBLOCK?IIC</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S133">?PR?YC_ADC_CHECK_TIMER500MS?ADC</a></li>
+</ul>
+
+<h2><a name="S133"></a>?PR?YC_ADC_CHECK_TIMER500MS?ADC (C:002282H - C:002293H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=10 Bytes (<a href="#S131">?PR?YC_ADC_CHECK?ADC</a>) Top=2 Bytes (<a href="#S124">?PR?KB_CB_TIMER500MS?SYS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S131">?PR?YC_ADC_CHECK?ADC</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S124">?PR?KB_CB_TIMER500MS?SYS</a></li>
+</ul>
+
+<h2><a name="S135"></a>?PR?_YC_PWM_INIT?PWM (C:003954H - C:003983H)</h2>
+<p><br><b>Maximum Stack:</b> Top=8 Bytes (<a href="#S136">?PR?_YC_PWM_SET_DUTY?PWM</a>)<p>
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S136">?PR?_YC_PWM_SET_DUTY?PWM</a></li>
+<li><a href="#S103">?PR?LED_BREATH_1?LED</a></li>
+<li><a href="#S104">?PR?LED_BREATH_2?LED</a></li>
+<li><a href="#S105">?PR?LED_BREATH_3?LED</a></li>
+</ul>
+
+<h2><a name="S136"></a>?PR?_YC_PWM_SET_DUTY?PWM (C:000CEBH - C:000DBCH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=8 Bytes (<a href="#S193">?PR?_GPIO_SETOUTPUT?GPIO</a>) Top=6 Bytes (<a href="#S102">?PR?LED_BACKLIGHT_BREATH?LED</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S193">?PR?_GPIO_SETOUTPUT?GPIO</a></li>
+<li><a href="#S138">?PR?_YC_PWM_DISABLE?PWM</a></li>
+<li><a href="#S135">?PR?_YC_PWM_INIT?PWM</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S106">?PR?BACKLIGHT_LED_PROCESS?LED</a></li>
+<li><a href="#S102">?PR?LED_BACKLIGHT_BREATH?LED</a></li>
+</ul>
+
+<h2><a name="S138"></a>?PR?_YC_PWM_DISABLE?PWM (C:000F9CH - C:000FD7H)</h2>
+<p><br><b>Maximum Stack:</b> Top=8 Bytes (<a href="#S136">?PR?_YC_PWM_SET_DUTY?PWM</a>)<p>
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S136">?PR?_YC_PWM_SET_DUTY?PWM</a></li>
+<li><a href="#S97">?PR?LED_ALL_SHUTDOWN?LED</a></li>
+<li><a href="#S102">?PR?LED_BACKLIGHT_BREATH?LED</a></li>
+<li><a href="#S101">?PR?LED_BACKLIGHT_NENO?LED</a></li>
+<li><a href="#S127">?PR?YC_SYSTEM_MAIN?SYS</a></li>
+</ul>
+
+<h2><a name="S139"></a>?PR?_BUFSIZE?IPC (C:003D97H - C:003DF0H)</h2>
+<p><br><b>Maximum Stack:</b> Top=12 Bytes (<a href="#S143">?PR?_IPCTX?IPC</a>)<p>
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S143">?PR?_IPCTX?IPC</a></li>
+</ul>
+
+<h2><a name="S141"></a>?PR?_IPCRX?IPC (C:00268AH - C:0026D9H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=2 Bytes (<a href="#S228">?C?LIB_CODE</a>) Top=4 Bytes (<a href="#S158">?PR?IPC_DEALSINGLESTEP?IPC</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S228">?C?LIB_CODE</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S158">?PR?IPC_DEALSINGLESTEP?IPC</a></li>
+</ul>
+
+<h2><a name="S143"></a>?PR?_IPCTX?IPC (C:0008DBH - C:00096FH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=2 Bytes (<a href="#S139">?PR?_BUFSIZE?IPC</a>) Top=10 Bytes (<a href="#S147">?PR?_IPC_TXDATA?IPC</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S228">?C?LIB_CODE</a></li>
+<li><a href="#S139">?PR?_BUFSIZE?IPC</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S147">?PR?_IPC_TXDATA?IPC</a></li>
+</ul>
+
+<h2><a name="S145"></a>?PR?_IPC_TXCONTROLCMD?IPC (C:0008B3H - C:0008DAH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=2 Bytes (<a href="#S228">?C?LIB_CODE</a>) Top=14 Bytes (<a href="#S11">?PR?YC_DISCONNECT_ALL_LINK?BLUETOOTH</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S228">?C?LIB_CODE</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S117">?PR?_KB_CB_EVENT?SYS</a></li>
+<li><a href="#S56">?PR?_YC_KEY_ACTION_HANDLE?KB_PROCESS</a></li>
+<li><a href="#S2">?PR?_YC_LOAD_RECORD_LIST?BLUETOOTH</a></li>
+<li><a href="#S64">?PR?KB_BT_PINCODE_ENTER?KB_PROCESS</a></li>
+<li><a href="#S125">?PR?KB_CB_TIMER100MS?SYS</a></li>
+<li><a href="#S9">?PR?YC_CANCEL_RECONNECT?BLUETOOTH</a></li>
+<li><a href="#S120">?PR?YC_CONNECT_TIMEOUT_500MS?SYS</a></li>
+<li><a href="#S11">?PR?YC_DISCONNECT_ALL_LINK?BLUETOOTH</a></li>
+<li><a href="#S12">?PR?YC_G24_MODE_DISCOVERY?BLUETOOTH</a></li>
+<li><a href="#S121">?PR?YC_WAIT_DISCONNECT_TIMER500MS?SYS</a></li>
+</ul>
+
+<h2><a name="S147"></a>?PR?_IPC_TXDATA?IPC (C:0017E7H - C:00180CH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=4 Bytes (<a href="#S217">?PR?_XMEMCPY?UTILITIES</a>) Top=10 Bytes (<a href="#S149">?PR?_IPC_TXBREDRHIDDATA?IPC</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S143">?PR?_IPCTX?IPC</a></li>
+<li><a href="#S217">?PR?_XMEMCPY?UTILITIES</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S152">?PR?_IPC_TXBLEDATA?IPC</a></li>
+<li><a href="#S149">?PR?_IPC_TXBREDRHIDDATA?IPC</a></li>
+<li><a href="#S151">?PR?_IPC_TXSPPDATA?IPC</a></li>
+</ul>
+
+<h2><a name="S149"></a>?PR?_IPC_TXBREDRHIDDATA?IPC (C:003DF1H - C:003DFDH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=6 Bytes (<a href="#S147">?PR?_IPC_TXDATA?IPC</a>) Top=8 Bytes (<a href="#S58">?PR?_IPC_TXHIDDATA?KB_PROCESS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S147">?PR?_IPC_TXDATA?IPC</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S58">?PR?_IPC_TXHIDDATA?KB_PROCESS</a></li>
+</ul>
+
+<h2><a name="S150"></a>?PR?_IPC_TX24GDATA?IPC (C:0017E1H - C:0017E6H)</h2>
+<p><br><b>Maximum Stack:</b> Top=8 Bytes (<a href="#S58">?PR?_IPC_TXHIDDATA?KB_PROCESS</a>)<p>
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S58">?PR?_IPC_TXHIDDATA?KB_PROCESS</a></li>
+</ul>
+
+<h2><a name="S152"></a>?PR?_IPC_TXBLEDATA?IPC (C:003E07H - C:003E0FH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=4 Bytes (<a href="#S147">?PR?_IPC_TXDATA?IPC</a>) Top=8 Bytes (<a href="#S58">?PR?_IPC_TXHIDDATA?KB_PROCESS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S147">?PR?_IPC_TXDATA?IPC</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S58">?PR?_IPC_TXHIDDATA?KB_PROCESS</a></li>
+</ul>
+
+<h2><a name="S155"></a>?PR?IPC_WAITLPM?IPC (C:001F7FH - C:001F8CH)</h2>
+<p><br><b>Maximum Stack:</b> Top=2 Bytes (<a href="#S117">?PR?_KB_CB_EVENT?SYS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S225">?PR?_DELAY1MS?UTILITIES</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S117">?PR?_KB_CB_EVENT?SYS</a></li>
+<li><a href="#S127">?PR?YC_SYSTEM_MAIN?SYS</a></li>
+</ul>
+
+<h2><a name="S156"></a>?PR?IPC_ABANDONLPM?IPC (C:0026EFH - C:0026FAH)</h2>
+<p><br><b>Maximum Stack:</b> Top=2 Bytes (<a href="#S127">?PR?YC_SYSTEM_MAIN?SYS</a>)<p>
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S127">?PR?YC_SYSTEM_MAIN?SYS</a></li>
+</ul>
+
+<h2><a name="S157"></a>?PR?IPC_ISTXBUFFEMPTY?IPC (C:003E16H - C:003E2DH)</h2>
+<p><br><b>Maximum Stack:</b> Top=4 Bytes (<a href="#S67">?PR?KB_MOTION?KB_PROCESS</a>)<p>
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S67">?PR?KB_MOTION?KB_PROCESS</a></li>
+</ul>
+
+<h2><a name="S158"></a>?PR?IPC_DEALSINGLESTEP?IPC (C:002481H - C:002689H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=4 Bytes (<a href="#S141">?PR?_IPCRX?IPC</a>) Top=2 Bytes (<a href="#S127">?PR?YC_SYSTEM_MAIN?SYS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S228">?C?LIB_CODE</a></li>
+<li><a href="#S141">?PR?_IPCRX?IPC</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S127">?PR?YC_SYSTEM_MAIN?SYS</a></li>
+</ul>
+
+<h2><a name="S177"></a>?PR?_GPIOSETBIT?GPIO (C:003700H - C:003760H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=2 Bytes (<a href="#S228">?C?LIB_CODE</a>) Top=14 Bytes (<a href="#S183">?PR?_GPIO_SETOUT?GPIO</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S228">?C?LIB_CODE</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S189">?PR?_GPIO_SETOE?GPIO</a></li>
+<li><a href="#S183">?PR?_GPIO_SETOUT?GPIO</a></li>
+<li><a href="#S187">?PR?_GPIO_SETPD?GPIO</a></li>
+<li><a href="#S185">?PR?_GPIO_SETPU?GPIO</a></li>
+</ul>
+
+<h2><a name="S180"></a>?PR?_GPIOGETBIT?GPIO (C:002294H - C:0022D2H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=2 Bytes (<a href="#S228">?C?LIB_CODE</a>) Top=6 Bytes (<a href="#S201">?PR?_GPIO_FLIPOUTBIT?GPIO</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S228">?C?LIB_CODE</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S201">?PR?_GPIO_FLIPOUTBIT?GPIO</a></li>
+<li><a href="#S182">?PR?_GPIO_GETINPUTSTATUS?GPIO</a></li>
+</ul>
+
+<h2><a name="S182"></a>?PR?_GPIO_GETINPUTSTATUS?GPIO (C:0022D3H - C:0022DAH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=2 Bytes (<a href="#S180">?PR?_GPIOGETBIT?GPIO</a>) Top=6 Bytes (<a href="#S198">?PR?_GPIO_SETWAKEUPBYCURRENTSTATE?GPIO</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S180">?PR?_GPIOGETBIT?GPIO</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S198">?PR?_GPIO_SETWAKEUPBYCURRENTSTATE?GPIO</a></li>
+</ul>
+
+<h2><a name="S183"></a>?PR?_GPIO_SETOUT?GPIO (C:000F5CH - C:000F6DH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=4 Bytes (<a href="#S177">?PR?_GPIOSETBIT?GPIO</a>) Top=12 Bytes (<a href="#S17">?PR?YC_UPDATE_EEPROM_DATA?BLUETOOTH</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S177">?PR?_GPIOSETBIT?GPIO</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S201">?PR?_GPIO_FLIPOUTBIT?GPIO</a></li>
+<li><a href="#S193">?PR?_GPIO_SETOUTPUT?GPIO</a></li>
+<li><a href="#S99">?PR?LED_DEVICE_POWEROFF?LED</a></li>
+<li><a href="#S98">?PR?LED_DEVICE_POWERON?LED</a></li>
+<li><a href="#S100">?PR?LED_HANDLE?LED</a></li>
+<li><a href="#S17">?PR?YC_UPDATE_EEPROM_DATA?BLUETOOTH</a></li>
+</ul>
+
+<h2><a name="S185"></a>?PR?_GPIO_SETPU?GPIO (C:0036CDH - C:0036DDH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=4 Bytes (<a href="#S177">?PR?_GPIOSETBIT?GPIO</a>) Top=10 Bytes (<a href="#S191">?PR?_GPIO_SETINPUT?GPIO</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S177">?PR?_GPIOSETBIT?GPIO</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S191">?PR?_GPIO_SETINPUT?GPIO</a></li>
+<li><a href="#S193">?PR?_GPIO_SETOUTPUT?GPIO</a></li>
+</ul>
+
+<h2><a name="S187"></a>?PR?_GPIO_SETPD?GPIO (C:0036DEH - C:0036EEH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=4 Bytes (<a href="#S177">?PR?_GPIOSETBIT?GPIO</a>) Top=10 Bytes (<a href="#S191">?PR?_GPIO_SETINPUT?GPIO</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S177">?PR?_GPIOSETBIT?GPIO</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S191">?PR?_GPIO_SETINPUT?GPIO</a></li>
+</ul>
+
+<h2><a name="S189"></a>?PR?_GPIO_SETOE?GPIO (C:0036EFH - C:0036FFH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=4 Bytes (<a href="#S177">?PR?_GPIOSETBIT?GPIO</a>) Top=10 Bytes (<a href="#S191">?PR?_GPIO_SETINPUT?GPIO</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S177">?PR?_GPIOSETBIT?GPIO</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S191">?PR?_GPIO_SETINPUT?GPIO</a></li>
+<li><a href="#S193">?PR?_GPIO_SETOUTPUT?GPIO</a></li>
+</ul>
+
+<h2><a name="S191"></a>?PR?_GPIO_SETINPUT?GPIO (C:0036AFH - C:0036CCH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=6 Bytes (<a href="#S187">?PR?_GPIO_SETPD?GPIO</a>) Top=8 Bytes (<a href="#S83">?PR?KSRAWINITIALIZE?KEYSCAN</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S189">?PR?_GPIO_SETOE?GPIO</a></li>
+<li><a href="#S187">?PR?_GPIO_SETPD?GPIO</a></li>
+<li><a href="#S185">?PR?_GPIO_SETPU?GPIO</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S85">?PR?KSCOLINITIALIZE?KEYSCAN</a></li>
+<li><a href="#S83">?PR?KSRAWINITIALIZE?KEYSCAN</a></li>
+</ul>
+
+<h2><a name="S193"></a>?PR?_GPIO_SETOUTPUT?GPIO (C:000CCEH - C:000CEAH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=6 Bytes (<a href="#S189">?PR?_GPIO_SETOE?GPIO</a>) Top=8 Bytes (<a href="#S136">?PR?_YC_PWM_SET_DUTY?PWM</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S189">?PR?_GPIO_SETOE?GPIO</a></li>
+<li><a href="#S183">?PR?_GPIO_SETOUT?GPIO</a></li>
+<li><a href="#S185">?PR?_GPIO_SETPU?GPIO</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S136">?PR?_YC_PWM_SET_DUTY?PWM</a></li>
+<li><a href="#S97">?PR?LED_ALL_SHUTDOWN?LED</a></li>
+<li><a href="#S101">?PR?LED_BACKLIGHT_NENO?LED</a></li>
+<li><a href="#S100">?PR?LED_HANDLE?LED</a></li>
+</ul>
+
+<h2><a name="S198"></a>?PR?_GPIO_SETWAKEUPBYCURRENTSTATE?GPIO (C:0022DBH - C:0022EDH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=4 Bytes (<a href="#S182">?PR?_GPIO_GETINPUTSTATUS?GPIO</a>) Top=4 Bytes (<a href="#S88">?PR?KS_UNISTALL?KEYSCAN</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S182">?PR?_GPIO_GETINPUTSTATUS?GPIO</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S88">?PR?KS_UNISTALL?KEYSCAN</a></li>
+</ul>
+
+<h2><a name="S201"></a>?PR?_GPIO_FLIPOUTBIT?GPIO (C:0021EBH - C:002206H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=4 Bytes (<a href="#S180">?PR?_GPIOGETBIT?GPIO</a>) Top=4 Bytes (<a href="#S119">?PR?LED_TIMER500MS?SYS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S183">?PR?_GPIO_SETOUT?GPIO</a></li>
+<li><a href="#S180">?PR?_GPIOGETBIT?GPIO</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S125">?PR?KB_CB_TIMER100MS?SYS</a></li>
+<li><a href="#S119">?PR?LED_TIMER500MS?SYS</a></li>
+<li><a href="#S122">?PR?YC_PAIRING_TIMEROUT_500MS?SYS</a></li>
+</ul>
+
+<h2><a name="S204"></a>?PR?GPIO_FILLPD?GPIO (C:0026FBH - C:00272EH)</h2>
+<p><br><b>Maximum Stack:</b> Top=4 Bytes (<a href="#S88">?PR?KS_UNISTALL?KEYSCAN</a>)<p>
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S88">?PR?KS_UNISTALL?KEYSCAN</a></li>
+</ul>
+
+<h2><a name="S207"></a>?PR?IICWAITDONE?IIC (C:001FD2H - C:001FD9H)</h2>
+<p><br><b>Maximum Stack:</b> Top=16 Bytes (<a href="#S208">?PR?_IIC_READ?IIC</a>)<p>
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S208">?PR?_IIC_READ?IIC</a></li>
+<li><a href="#S210">?PR?_IIC_WRITE?IIC</a></li>
+</ul>
+
+<h2><a name="S208"></a>?PR?_IIC_READ?IIC (C:001ECFH - C:001F7EH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=2 Bytes (<a href="#S207">?PR?IICWAITDONE?IIC</a>) Top=14 Bytes (<a href="#S14">?PR?YC_GET_BLE_RAMDON_LAP?BLUETOOTH</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S217">?PR?_XMEMCPY?UTILITIES</a></li>
+<li><a href="#S207">?PR?IICWAITDONE?IIC</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S117">?PR?_KB_CB_EVENT?SYS</a></li>
+<li><a href="#S56">?PR?_YC_KEY_ACTION_HANDLE?KB_PROCESS</a></li>
+<li><a href="#S14">?PR?YC_GET_BLE_RAMDON_LAP?BLUETOOTH</a></li>
+<li><a href="#S13">?PR?YC_START_RECONNECT?BLUETOOTH</a></li>
+</ul>
+
+<h2><a name="S210"></a>?PR?_IIC_WRITE?IIC (C:003E6DH - C:003F07H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=4 Bytes (<a href="#S219">?PR?_DMEMCPY?UTILITIES</a>) Top=14 Bytes (<a href="#S212">?PR?_IIC_WRITEBLOCK?IIC</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S219">?PR?_DMEMCPY?UTILITIES</a></li>
+<li><a href="#S207">?PR?IICWAITDONE?IIC</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S212">?PR?_IIC_WRITEBLOCK?IIC</a></li>
+</ul>
+
+<h2><a name="S212"></a>?PR?_IIC_WRITEBLOCK?IIC (C:001E20H - C:001ECEH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=6 Bytes (<a href="#S210">?PR?_IIC_WRITE?IIC</a>) Top=12 Bytes (<a href="#S17">?PR?YC_UPDATE_EEPROM_DATA?BLUETOOTH</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S228">?C?LIB_CODE</a></li>
+<li><a href="#S225">?PR?_DELAY1MS?UTILITIES</a></li>
+<li><a href="#S210">?PR?_IIC_WRITE?IIC</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S117">?PR?_KB_CB_EVENT?SYS</a></li>
+<li><a href="#S75">?PR?_KEY_FN_FUNCTION?KB_PROCESS</a></li>
+<li><a href="#S131">?PR?YC_ADC_CHECK?ADC</a></li>
+<li><a href="#S17">?PR?YC_UPDATE_EEPROM_DATA?BLUETOOTH</a></li>
+</ul>
+
+<h2><a name="S217"></a>?PR?_XMEMCPY?UTILITIES (C:0010C8H - C:00110AH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=2 Bytes (<a href="#S228">?C?LIB_CODE</a>) Top=14 Bytes (<a href="#S208">?PR?_IIC_READ?IIC</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S228">?C?LIB_CODE</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S208">?PR?_IIC_READ?IIC</a></li>
+<li><a href="#S147">?PR?_IPC_TXDATA?IPC</a></li>
+<li><a href="#S70">?PR?_KB_MOTION_KEYSCAN?KB_PROCESS</a></li>
+<li><a href="#S2">?PR?_YC_LOAD_RECORD_LIST?BLUETOOTH</a></li>
+<li><a href="#S4">?PR?_YC_STORE_RECORD_LIST?BLUETOOTH</a></li>
+</ul>
+
+<h2><a name="S219"></a>?PR?_DMEMCPY?UTILITIES (C:003F08H - C:003F4BH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=2 Bytes (<a href="#S228">?C?LIB_CODE</a>) Top=16 Bytes (<a href="#S210">?PR?_IIC_WRITE?IIC</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S228">?C?LIB_CODE</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S210">?PR?_IIC_WRITE?IIC</a></li>
+</ul>
+
+<h2><a name="S221"></a>?PR?_XMEMCLEAR?UTILITIES (C:0014D8H - C:001503H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=2 Bytes (<a href="#S228">?C?LIB_CODE</a>) Top=6 Bytes (<a href="#S107">?PR?SYSTEM_CLEAR_MEM?SYS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S228">?C?LIB_CODE</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S70">?PR?_KB_MOTION_KEYSCAN?KB_PROCESS</a></li>
+<li><a href="#S62">?PR?_KB_SEND_COMBINATION_KEY?KB_PROCESS</a></li>
+<li><a href="#S66">?PR?KB_24G_GET_LED_STATUS?KB_PROCESS</a></li>
+<li><a href="#S107">?PR?SYSTEM_CLEAR_MEM?SYS</a></li>
+<li><a href="#S120">?PR?YC_CONNECT_TIMEOUT_500MS?SYS</a></li>
+</ul>
+
+<h2><a name="S223"></a>?PR?_XMEMCLEAR_FF?UTILITIES (C:002819H - C:002845H)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=2 Bytes (<a href="#S228">?C?LIB_CODE</a>) Top=12 Bytes (<a href="#S56">?PR?_YC_KEY_ACTION_HANDLE?KB_PROCESS</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S228">?C?LIB_CODE</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S117">?PR?_KB_CB_EVENT?SYS</a></li>
+<li><a href="#S56">?PR?_YC_KEY_ACTION_HANDLE?KB_PROCESS</a></li>
+<li><a href="#S15">?PR?YC_CLEAR_BT_SAME_ADDRESS_RECORD?BLUETOOTH</a></li>
+</ul>
+
+<h2><a name="S225"></a>?PR?_DELAY1MS?UTILITIES (C:000F6EH - C:000F85H)</h2>
+<p><br><b>Maximum Stack:</b> Top=14 Bytes (<a href="#S212">?PR?_IIC_WRITEBLOCK?IIC</a>)<p>
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S212">?PR?_IIC_WRITEBLOCK?IIC</a></li>
+<li><a href="#S117">?PR?_KB_CB_EVENT?SYS</a></li>
+<li><a href="#S56">?PR?_YC_KEY_ACTION_HANDLE?KB_PROCESS</a></li>
+<li><a href="#S155">?PR?IPC_WAITLPM?IPC</a></li>
+<li><a href="#S123">?PR?KB_BUTTON_PRESS_TIMER500MS?SYS</a></li>
+<li><a href="#S119">?PR?LED_TIMER500MS?SYS</a></li>
+<li><a href="#S122">?PR?YC_PAIRING_TIMEROUT_500MS?SYS</a></li>
+<li><a href="#S13">?PR?YC_START_RECONNECT?BLUETOOTH</a></li>
+<li><a href="#S17">?PR?YC_UPDATE_EEPROM_DATA?BLUETOOTH</a></li>
+</ul>
+
+<h2><a name="S226"></a>?PR?_COMPARE_STR?UTILITIES (C:002846H - C:00288FH)</h2>
+<p><br><b>Maximum Stack:</b> Bottom=2 Bytes (<a href="#S228">?C?LIB_CODE</a>) Top=6 Bytes (<a href="#S94">?PR?KS_GETCURRENTEVT?KEYSCAN</a>)<p>
+<p><br><b>Calls to:</b></p>
+<ul>
+<li><a href="#S228">?C?LIB_CODE</a></li>
+</ul>
+
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S94">?PR?KS_GETCURRENTEVT?KEYSCAN</a></li>
+<li><a href="#S15">?PR?YC_CLEAR_BT_SAME_ADDRESS_RECORD?BLUETOOTH</a></li>
+</ul>
+
+<h2><a name="S228"></a>?C?LIB_CODE (C:000003H - C:000633H)</h2>
+<p><br><b>Maximum Stack:</b> Top=18 Bytes (<a href="#S219">?PR?_DMEMCPY?UTILITIES</a>)<p>
+<p><br><b>Called from:</b></p>
+<ul>
+<li><a href="#S92">?PR?_ARRAY_IS_EMPTY?KEYSCAN</a></li>
+<li><a href="#S226">?PR?_COMPARE_STR?UTILITIES</a></li>
+<li><a href="#S219">?PR?_DMEMCPY?UTILITIES</a></li>
+<li><a href="#S180">?PR?_GPIOGETBIT?GPIO</a></li>
+<li><a href="#S177">?PR?_GPIOSETBIT?GPIO</a></li>
+<li><a href="#S212">?PR?_IIC_WRITEBLOCK?IIC</a></li>
+<li><a href="#S154">?PR?_IPC_INITIALIZE?IPC</a></li>
+<li><a href="#S145">?PR?_IPC_TXCONTROLCMD?IPC</a></li>
+<li><a href="#S58">?PR?_IPC_TXHIDDATA?KB_PROCESS</a></li>
+<li><a href="#S141">?PR?_IPCRX?IPC</a></li>
+<li><a href="#S143">?PR?_IPCTX?IPC</a></li>
+<li><a href="#S117">?PR?_KB_CB_EVENT?SYS</a></li>
+<li><a href="#S115">?PR?_KB_CB_HID?SYS</a></li>
+<li><a href="#S72">?PR?_KB_DEVICE_SELECT?KB_PROCESS</a></li>
+<li><a href="#S70">?PR?_KB_MOTION_KEYSCAN?KB_PROCESS</a></li>
+<li><a href="#S77">?PR?_KB_MULTIKEY_SETUP?KB_PROCESS</a></li>
+<li><a href="#S75">?PR?_KEY_FN_FUNCTION?KB_PROCESS</a></li>
+<li><a href="#S221">?PR?_XMEMCLEAR?UTILITIES</a></li>
+<li><a href="#S223">?PR?_XMEMCLEAR_FF?UTILITIES</a></li>
+<li><a href="#S217">?PR?_XMEMCPY?UTILITIES</a></li>
+<li><a href="#S106">?PR?BACKLIGHT_LED_PROCESS?LED</a></li>
+<li><a href="#S158">?PR?IPC_DEALSINGLESTEP?IPC</a></li>
+<li><a href="#S64">?PR?KB_BT_PINCODE_ENTER?KB_PROCESS</a></li>
+<li><a href="#S131">?PR?YC_ADC_CHECK?ADC</a></li>
+<li><a href="#S130">?PR?YC_ADC_INIT?ADC</a></li>
+</ul>
+
+</body>
+</html>
Index: c51/output/FW.MAP
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/c51/output/FW.MAP	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/c51/output/FW.MAP	(working copy)
@@ -0,0 +1,4076 @@
+LX51 LINKER/LOCATER V4.41                                                               05/26/2022  10:54:56  PAGE 1
+
+
+LX51 LINKER/LOCATER V4.41, INVOKED BY:
+D:\KEIL\C51\BIN\LX51.EXE OUTPUT/BLUETOOTH.OBJ, OUTPUT/GLOBAL_VARIABLE.OBJ, OUTPUT/KB_PROCESS.OBJ, OUTPUT/KEYSCAN.OBJ, OU
+>> TPUT/LED.OBJ, OUTPUT/SYS.OBJ, OUTPUT/ADC.OBJ, OUTPUT/RAM.OBJ, OUTPUT/PWM.OBJ, OUTPUT/IPC.OBJ, OUTPUT/GPIO.OBJ, OUTPUT
+>> /IIC.OBJ, OUTPUT/UTILITIES.OBJ TO OUTPUT\FW CLASSES (XDATA (X:0X4DD0-X:0X4F40), CODE (C:0-C:0XFFFF), DATA (D:0X10-0X7
+>> F), IDATA (I:0X80-0XCF)) SEGMENTS (?STACK (D:0XD0)) NOOVERLAY PAGELENGTH (60000) CODE
+
+
+CPU MODE:     8051 MODE
+MEMORY MODEL: LARGE WITH FLOATING POINT ARITHMETIC
+
+
+INPUT MODULES INCLUDED:
+  OUTPUT/BLUETOOTH.OBJ (BLUETOOTH)
+         COMMENT TYPE 0: C51 V9.00
+  OUTPUT/GLOBAL_VARIABLE.OBJ (GLOBAL_VARIABLE)
+         COMMENT TYPE 0: C51 V9.00
+  OUTPUT/KB_PROCESS.OBJ (KB_PROCESS)
+         COMMENT TYPE 0: C51 V9.00
+  OUTPUT/KEYSCAN.OBJ (KEYSCAN)
+         COMMENT TYPE 0: C51 V9.00
+  OUTPUT/LED.OBJ (LED)
+         COMMENT TYPE 0: C51 V9.00
+  OUTPUT/SYS.OBJ (SYS)
+         COMMENT TYPE 0: C51 V9.00
+  OUTPUT/ADC.OBJ (ADC)
+         COMMENT TYPE 0: C51 V9.00
+  OUTPUT/RAM.OBJ (RAM)
+         COMMENT TYPE 0: C51 V9.00
+  OUTPUT/PWM.OBJ (PWM)
+         COMMENT TYPE 0: C51 V9.00
+  OUTPUT/IPC.OBJ (IPC)
+         COMMENT TYPE 0: C51 V9.00
+  OUTPUT/GPIO.OBJ (GPIO)
+         COMMENT TYPE 0: C51 V9.00
+  OUTPUT/IIC.OBJ (IIC)
+         COMMENT TYPE 0: C51 V9.00
+  OUTPUT/UTILITIES.OBJ (UTILITIES)
+         COMMENT TYPE 0: C51 V9.00
+  D:\KEIL\C51\LIB\C51FPL.LIB (?C?FPADD)
+         COMMENT TYPE 1: A51 / ASM51 Assembler
+  D:\KEIL\C51\LIB\C51FPL.LIB (?C?FPMUL)
+         COMMENT TYPE 1: A51 / ASM51 Assembler
+  D:\KEIL\C51\LIB\C51FPL.LIB (?C?FCAST)
+         COMMENT TYPE 1: A51 / ASM51 Assembler
+  D:\KEIL\C51\LIB\C51FPL.LIB (?C?CASTF)
+         COMMENT TYPE 1: A51 / ASM51 Assembler
+  D:\KEIL\C51\LIB\C51FPL.LIB (?C?FPGETOPN)
+         COMMENT TYPE 1: A51 / ASM51 Assembler
+  D:\KEIL\C51\LIB\C51L.LIB (?C_STARTUP)
+         COMMENT TYPE 1: A51 / ASM51 Assembler
+  D:\KEIL\C51\LIB\C51L.LIB (?C?COPY)
+         COMMENT TYPE 1: A51 / ASM51 Assembler
+  D:\KEIL\C51\LIB\C51L.LIB (?C?CLDPTR)
+         COMMENT TYPE 1: A51 / ASM51 Assembler
+  D:\KEIL\C51\LIB\C51L.LIB (?C?CLDOPTR)
+         COMMENT TYPE 1: A51 / ASM51 Assembler
+  D:\KEIL\C51\LIB\C51L.LIB (?C?CSTPTR)
+         COMMENT TYPE 1: A51 / ASM51 Assembler
+  D:\KEIL\C51\LIB\C51L.LIB (?C?UIDIV)
+         COMMENT TYPE 1: A51 / ASM51 Assembler
+  D:\KEIL\C51\LIB\C51L.LIB (?C?IILDX)
+         COMMENT TYPE 1: A51 / ASM51 Assembler
+  D:\KEIL\C51\LIB\C51L.LIB (?C?ILDIX)
+         COMMENT TYPE 1: A51 / ASM51 Assembler
+  D:\KEIL\C51\LIB\C51L.LIB (?C?LMUL)
+         COMMENT TYPE 1: A51 / ASM51 Assembler
+  D:\KEIL\C51\LIB\C51L.LIB (?C?ULDIV)
+         COMMENT TYPE 1: A51 / ASM51 Assembler
+  D:\KEIL\C51\LIB\C51L.LIB (?C?LNEG)
+         COMMENT TYPE 1: A51 / ASM51 Assembler
+  D:\KEIL\C51\LIB\C51L.LIB (?C?ULCMP)
+         COMMENT TYPE 1: A51 / ASM51 Assembler
+  D:\KEIL\C51\LIB\C51L.LIB (?C?LSTXDATA)
+         COMMENT TYPE 1: A51 / ASM51 Assembler
+  D:\KEIL\C51\LIB\C51L.LIB (?C?LSTKXDATA)
+         COMMENT TYPE 1: A51 / ASM51 Assembler
+  D:\KEIL\C51\LIB\C51L.LIB (?C?CCASE)
+         COMMENT TYPE 1: A51 / ASM51 Assembler
+  D:\KEIL\C51\LIB\C51L.LIB (?C?ICALL)
+         COMMENT TYPE 1: A51 / ASM51 Assembler
+  D:\KEIL\C51\LIB\C51L.LIB (?C_INIT)
+         COMMENT TYPE 1: A51 / ASM51 Assembler
+
+
+ACTIVE MEMORY CLASSES OF MODULE:  OUTPUT\FW (BLUETOOTH)
+
+BASE        START       END         USED      MEMORY CLASS
+==========================================================
+X:000000H   X:004DD0H   X:004F40H   0003B5H   XDATA
+C:000000H   C:000000H   C:00FFFFH   003E9DH   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
+I:000020H.0 I:000020H.0 I:00002FH.7 000001H.2 BIT
+
+
+MEMORY MAP OF MODULE:  OUTPUT\FW (BLUETOOTH)
+
+
+START     STOP      LENGTH    ALIGN  RELOC    MEMORY CLASS   SEGMENT NAME
+=========================================================================
+
+* * * * * * * * * * *   D A T A   M E M O R Y   * * * * * * * * * * * * *
+000000H   000007H   000008H   ---    AT..     DATA           "REG BANK 0"
+000008H.0 00001FH.7 000018H.0 ---    ---      **GAP**
+000020H.0 000020H.0 000000H.1 BIT    UNIT     BIT            ?BI?_GPIOSETBIT?GPIO
+000020H.1 000020H.1 000000H.1 BIT    UNIT     BIT            ?BI?_GPIO_SETOUT?GPIO
+000020H.2 000020H.2 000000H.1 BIT    UNIT     BIT            ?BI?_GPIO_SETPU?GPIO
+000020H.3 000020H.3 000000H.1 BIT    UNIT     BIT            ?BI?_GPIO_SETPD?GPIO
+000020H.4 000020H.4 000000H.1 BIT    UNIT     BIT            ?BI?_GPIO_SETOE?GPIO
+000020H.5 000020H.5 000000H.1 BIT    UNIT     BIT            ?BI?_GPIO_SETINPUT?GPIO
+000020H.6 000020H.6 000000H.1 BIT    UNIT     BIT            ?BI?_GPIO_SETOUTPUT?GPIO
+000020H.7 000020H.7 000000H.1 BIT    UNIT     BIT            ?BI?_GPIO_SETWAKEUP?GPIO
+000021H.0 000021H.0 000000H.1 BIT    UNIT     BIT            ?BI?_GPIO_SETWAKEUPBYCURRENTSTATE?GPIO
+000021H.1 000021H.1 000000H.1 BIT    UNIT     BIT            ?BI?_GPIO_FLIPOUTBIT?GPIO
+000021H.2 0000CFH   0000AEH.6 ---    ---      **GAP**
+0000D0H   0000D0H   000001H   BYTE   UNIT     IDATA          ?STACK
+
+* * * * * * * * * * *   C O D E   M E M O R Y   * * * * * * * * * * * * *
+000000H   000002H   000003H   ---    OFFS..   CODE           ?CO??C_STARTUP?0
+000003H   000633H   000631H   BYTE   UNIT     CODE           ?C?LIB_CODE
+000634H   0006BFH   00008CH   BYTE   UNIT     CODE           ?C_C51STARTUP
+0006C0H   0006D5H   000016H   BYTE   UNIT     CODE           ?C_INITSEG
+0006D6H   000788H   0000B3H   BYTE   UNIT     CONST          ?CO?GLOBAL_VARIABLE
+000789H   00078BH   000003H   BYTE   UNIT     CONST          ?CO?IPC
+00078CH   0008B2H   000127H   BYTE   UNIT     CODE           ?PR?_YC_LOAD_RECORD_LIST?BLUETOOTH
+0008B3H   0008DAH   000028H   BYTE   UNIT     CODE           ?PR?_IPC_TXCONTROLCMD?IPC
+0008DBH   00096FH   000095H   BYTE   UNIT     CODE           ?PR?_IPCTX?IPC
+000970H   000B12H   0001A3H   BYTE   UNIT     CODE           ?PR?_YC_KEY_ACTION_HANDLE?KB_PROCESS
+000B13H   000B51H   00003FH   BYTE   UNIT     CODE           ?PR?YC_DISCONNECT_ALL_LINK?BLUETOOTH
+000B52H   000B70H   00001FH   BYTE   UNIT     CODE           ?PR?YC_CANCEL_RECONNECT?BLUETOOTH
+000B71H   000CA9H   000139H   BYTE   UNIT     CODE           ?PR?KB_BUTTON_PRESS_TIMER500MS?SYS
+000CAAH   000CCDH   000024H   BYTE   UNIT     CODE           ?PR?LED_ALL_SHUTDOWN?LED
+000CCEH   000CEAH   00001DH   BYTE   UNIT     CODE           ?PR?_GPIO_SETOUTPUT?GPIO
+000CEBH   000DBCH   0000D2H   BYTE   UNIT     CODE           ?PR?_YC_PWM_SET_DUTY?PWM
+000DBDH   000E9CH   0000E0H   BYTE   UNIT     CODE           ?PR?BACKLIGHT_LED_PROCESS?LED
+000E9DH   000F5BH   0000BFH   BYTE   UNIT     CODE           ?PR?LED_HANDLE?LED
+000F5CH   000F6DH   000012H   BYTE   UNIT     CODE           ?PR?_GPIO_SETOUT?GPIO
+000F6EH   000F85H   000018H   BYTE   UNIT     CODE           ?PR?_DELAY1MS?UTILITIES
+000F86H   000F9BH   000016H   BYTE   UNIT     CODE           ?PR?LED_BACKLIGHT_NENO?LED
+000F9CH   000FD7H   00003CH   BYTE   UNIT     CODE           ?PR?_YC_PWM_DISABLE?PWM
+000FD8H   000FD8H   000001H   BYTE   UNIT     CODE           ?PR?SYSTEM_LONG_SLEEP?SYS
+000FD9H   000FDBH   000003H   BYTE   UNIT     CODE           ?PR?SYSTEM_RESET_CONNECT?SYS
+000FDCH   000FE4H   000009H   BYTE   UNIT     CODE           ?PR?SYSTEM_HARDWARE_RESET?SYS
+000FE5H   000FEAH   000006H   BYTE   UNIT     CODE           ?PR?LED_DEVICE_POWERON?LED
+000FEBH   000FF0H   000006H   BYTE   UNIT     CODE           ?PR?LED_DEVICE_POWEROFF?LED
+000FF1H   0010C7H   0000D7H   BYTE   UNIT     CODE           ?PR?_YC_STORE_RECORD_LIST?BLUETOOTH
+0010C8H   00110AH   000043H   BYTE   UNIT     CODE           ?PR?_XMEMCPY?UTILITIES
+00110BH   0013E9H   0002DFH   BYTE   UNIT     CODE           ?PR?_KB_MOTION_KEYSCAN?KB_PROCESS
+0013EAH   0014D7H   0000EEH   BYTE   UNIT     CODE           ?PR?_IPC_TXHIDDATA?KB_PROCESS
+0014D8H   001503H   00002CH   BYTE   UNIT     CODE           ?PR?_XMEMCLEAR?UTILITIES
+001504H   0015A4H   0000A1H   BYTE   UNIT     CODE           ?PR?SYSTEM_CLEAR_MEM?SYS
+0015A5H   0015DEH   00003AH   BYTE   UNIT     CODE           ?PR?_KB_SEND_COMBINATION_KEY?KB_PROCESS
+0015DFH   001673H   000095H   BYTE   UNIT     CODE           ?PR?KB_NEED_KEYSCAN?KB_PROCESS
+001674H   0016A7H   000034H   BYTE   UNIT     CODE           ?PR?KB_MOTION?KB_PROCESS
+0016A8H   0016E3H   00003CH   BYTE   UNIT     CODE           ?PR?KB_24G_GET_LED_STATUS?KB_PROCESS
+0016E4H   0017A5H   0000C2H   BYTE   UNIT     CODE           ?PR?YC_CONNECT_TIMEOUT_500MS?SYS
+0017A6H   0017E0H   00003BH   BYTE   UNIT     CODE           ?PR?SYSTEM_G24_LONG_LPM?SYS
+0017E1H   0017E6H   000006H   BYTE   UNIT     CODE           ?PR?_IPC_TX24GDATA?IPC
+0017E7H   00180CH   000026H   BYTE   UNIT     CODE           ?PR?_IPC_TXDATA?IPC
+00180DH   001829H   00001DH   BYTE   UNIT     CODE           ?PR?YC_CHECK_IS_CONNECTED?BLUETOOTH
+00182AH   0018C2H   000099H   BYTE   UNIT     CODE           ?PR?YC_CHECK_NEED_RECONNECTED?BLUETOOTH
+0018C3H   0018CCH   00000AH   BYTE   UNIT     CODE           ?PR?YC_CLEAR_RECONNECT_FLAG?BLUETOOTH
+0018CDH   001D89H   0004BDH   BYTE   UNIT     CODE           ?PR?_KB_CB_EVENT?SYS
+001D8AH   001E1FH   000096H   BYTE   UNIT     CODE           ?PR?YC_UPDATE_EEPROM_DATA?BLUETOOTH
+001E20H   001ECEH   0000AFH   BYTE   UNIT     CODE           ?PR?_IIC_WRITEBLOCK?IIC
+001ECFH   001F7EH   0000B0H   BYTE   UNIT     CODE           ?PR?_IIC_READ?IIC
+001F7FH   001F8CH   00000EH   BYTE   UNIT     CODE           ?PR?IPC_WAITLPM?IPC
+001F8DH   001F98H   00000CH   BYTE   UNIT     CODE           ?PR?KS_INITIALIZE?KEYSCAN
+001F99H   001FB7H   00001FH   BYTE   UNIT     CODE           ?PR?KSCOLINITIALIZE?KEYSCAN
+001FB8H   001FBEH   000007H   BYTE   UNIT     CODE           ?PR?SYSTEM_HARDWARE_INIT?SYS
+001FBFH   001FD1H   000013H   BYTE   UNIT     CODE           ?PR?SYSTEM_IIC_CLK_SETUP?SYS
+001FD2H   001FD9H   000008H   BYTE   UNIT     CODE           ?PR?IICWAITDONE?IIC
+001FDAH   00204FH   000076H   BYTE   UNIT     CODE           ?PR?YC_START_RECONNECT?BLUETOOTH
+002050H   002066H   000017H   BYTE   UNIT     CODE           ?PR?YC_G24_MODE_DISCOVERY?BLUETOOTH
+002067H   0020AAH   000044H   BYTE   UNIT     CODE           ?PR?YC_GET_BLE_RAMDON_LAP?BLUETOOTH
+0020ABH   0020F6H   00004CH   BYTE   UNIT     CODE           ?PR?YC_WAIT_DISCONNECT_TIMER500MS?SYS
+0020F7H   002129H   000033H   BYTE   UNIT     CODE           ?PR?KB_CB_TIMER500MS?SYS
+00212AH   0021EAH   0000C1H   BYTE   UNIT     CODE           ?PR?LED_TIMER500MS?SYS
+0021EBH   002206H   00001CH   BYTE   UNIT     CODE           ?PR?_GPIO_FLIPOUTBIT?GPIO
+002207H   002281H   00007BH   BYTE   UNIT     CODE           ?PR?YC_PAIRING_TIMEROUT_500MS?SYS
+002282H   002293H   000012H   BYTE   UNIT     CODE           ?PR?YC_ADC_CHECK_TIMER500MS?ADC
+002294H   0022D2H   00003FH   BYTE   UNIT     CODE           ?PR?_GPIOGETBIT?GPIO
+0022D3H   0022DAH   000008H   BYTE   UNIT     CODE           ?PR?_GPIO_GETINPUTSTATUS?GPIO
+0022DBH   0022EDH   000013H   BYTE   UNIT     CODE           ?PR?_GPIO_SETWAKEUPBYCURRENTSTATE?GPIO
+0022EEH   002379H   00008CH   BYTE   UNIT     CODE           ?PR?_GPIO_SETWAKEUP?GPIO
+00237AH   002411H   000098H   BYTE   UNIT     CODE           ?PR?KS_UNISTALL?KEYSCAN
+002412H   002480H   00006FH   BYTE   UNIT     CODE           ?PR?YC_SYSTEM_MAIN?SYS
+002481H   002689H   000209H   BYTE   UNIT     CODE           ?PR?IPC_DEALSINGLESTEP?IPC
+00268AH   0026D9H   000050H   BYTE   UNIT     CODE           ?PR?_IPCRX?IPC
+0026DAH   0026DFH   000006H   BYTE   UNIT     CODE           ?PR?KB_CB_INIT?SYS
+0026E0H   0026ECH   00000DH   BYTE   UNIT     CODE           ?PR?_IPC_INITIALIZE?IPC
+0026EDH   0026EEH   000002H   BYTE   UNIT     CODE           ?PR?MAIN?RAM
+0026EFH   0026FAH   00000CH   BYTE   UNIT     CODE           ?PR?IPC_ABANDONLPM?IPC
+0026FBH   00272EH   000034H   BYTE   UNIT     CODE           ?PR?GPIO_FILLPD?GPIO
+00272FH   002818H   0000EAH   BYTE   UNIT     CODE           ?PR?YC_CLEAR_BT_SAME_ADDRESS_RECORD?BLUETOOTH
+002819H   002845H   00002DH   BYTE   UNIT     CODE           ?PR?_XMEMCLEAR_FF?UTILITIES
+002846H   00288FH   00004AH   BYTE   UNIT     CODE           ?PR?_COMPARE_STR?UTILITIES
+002890H   002ADBH   00024CH   BYTE   UNIT     CODE           ?PR?KS_GETCURRENTEVT?KEYSCAN
+002ADCH   002AE9H   00000EH   BYTE   UNIT     CODE           ?PR?_BIT_COUNT?KEYSCAN
+002AEAH   002B19H   000030H   BYTE   UNIT     CODE           ?PR?_ARRAY_IS_EMPTY?KEYSCAN
+002B1AH   002BD2H   0000B9H   BYTE   UNIT     CODE           ?PR?_KEYIN?KEYSCAN
+002BD3H   002CB3H   0000E1H   BYTE   UNIT     CODE           ?PR?_KEYOUT?KEYSCAN
+002CB4H   002E11H   00015EH   BYTE   UNIT     CODE           ?PR?KS_SCANMATRIX?KEYSCAN
+002E12H   002E2CH   00001BH   BYTE   UNIT     CODE           ?PR?_KB_SET_MULTIKEY?KB_PROCESS
+002E2DH   0030DCH   0002B0H   BYTE   UNIT     CODE           ?PR?_KB_MULTIKEY_SETUP?KB_PROCESS
+0030DDH   0030F7H   00001BH   BYTE   UNIT     CODE           ?PR?_KB_SET_SYSTEMKEY?KB_PROCESS
+0030F8H   00336AH   000273H   BYTE   UNIT     CODE           ?PR?KB_BT_PINCODE_ENTER?KB_PROCESS
+00336BH   00346EH   000104H   BYTE   UNIT     CODE           ?PR?_KB_DEVICE_SELECT?KB_PROCESS
+00346FH   003493H   000025H   BYTE   UNIT     CODE           ?PR?_KB_COMBINATION_KEY_PRESS?KB_PROCESS
+003494H   003691H   0001FEH   BYTE   UNIT     CODE           ?PR?_KEY_FN_FUNCTION?KB_PROCESS
+003692H   0036AEH   00001DH   BYTE   UNIT     CODE           ?PR?KSRAWINITIALIZE?KEYSCAN
+0036AFH   0036CCH   00001EH   BYTE   UNIT     CODE           ?PR?_GPIO_SETINPUT?GPIO
+0036CDH   0036DDH   000011H   BYTE   UNIT     CODE           ?PR?_GPIO_SETPU?GPIO
+0036DEH   0036EEH   000011H   BYTE   UNIT     CODE           ?PR?_GPIO_SETPD?GPIO
+0036EFH   0036FFH   000011H   BYTE   UNIT     CODE           ?PR?_GPIO_SETOE?GPIO
+003700H   003760H   000061H   BYTE   UNIT     CODE           ?PR?_GPIOSETBIT?GPIO
+003761H   0038FCH   00019CH   BYTE   UNIT     CODE           ?PR?LED_BACKLIGHT_BREATH?LED
+0038FDH   003919H   00001DH   BYTE   UNIT     CODE           ?PR?LED_BREATH_1?LED
+00391AH   003936H   00001DH   BYTE   UNIT     CODE           ?PR?LED_BREATH_2?LED
+003937H   003953H   00001DH   BYTE   UNIT     CODE           ?PR?LED_BREATH_3?LED
+003954H   003983H   000030H   BYTE   UNIT     CODE           ?PR?_YC_PWM_INIT?PWM
+003984H   0039BDH   00003AH   BYTE   UNIT     CODE           ?PR?SYSTEM_SOFTWARE_INIT?SYS
+0039BEH   003A7AH   0000BDH   BYTE   UNIT     CODE           ?PR?YC_ADC_INIT?ADC
+003A7BH   003A8AH   000010H   BYTE   UNIT     CODE           ?PR?_KB_CB_HID?SYS
+003A8BH   003BB4H   00012AH   BYTE   UNIT     CODE           ?PR?KB_CB_TIMER100MS?SYS
+003BB5H   003D96H   0001E2H   BYTE   UNIT     CODE           ?PR?YC_ADC_CHECK?ADC
+003D97H   003DF0H   00005AH   BYTE   UNIT     CODE           ?PR?_BUFSIZE?IPC
+003DF1H   003DFDH   00000DH   BYTE   UNIT     CODE           ?PR?_IPC_TXBREDRHIDDATA?IPC
+003DFEH   003E06H   000009H   BYTE   UNIT     CODE           ?PR?_IPC_TXSPPDATA?IPC
+003E07H   003E0FH   000009H   BYTE   UNIT     CODE           ?PR?_IPC_TXBLEDATA?IPC
+003E10H   003E15H   000006H   BYTE   UNIT     CODE           ?PR?IPC_GETBBDISCONNECTREASON?IPC
+003E16H   003E2DH   000018H   BYTE   UNIT     CODE           ?PR?IPC_ISTXBUFFEMPTY?IPC
+003E2EH   003E6CH   00003FH   BYTE   UNIT     CODE           ?PR?_GPIO_CLEARWAKEUP?GPIO
+003E6DH   003F07H   00009BH   BYTE   UNIT     CODE           ?PR?_IIC_WRITE?IIC
+003F08H   003F4BH   000044H   BYTE   UNIT     CODE           ?PR?_DMEMCPY?UTILITIES
+003F4CH   003F52H   000007H   BYTE   UNIT     CODE           ?PR?YC_ICE_BREAK?UTILITIES
+
+* * * * * * * * * * *  X D A T A   M E M O R Y  * * * * * * * * * * * * *
+000040H   000045H   000006H   BYTE   OFFS..   XDATA          ?XD?GLOBAL_VARIABLE?30
+000046H   0000A2H   00005DH   ---    ---      **GAP**
+0000A3H   0000A6H   000004H   BYTE   OFFS..   XDATA          ?XD?GPIO?1
+0000A7H   0000AAH   000004H   BYTE   OFFS..   XDATA          ?XD?GPIO?0
+0000ABH   0003CFH   000325H   ---    ---      **GAP**
+0003D0H   0003D5H   000006H   BYTE   OFFS..   XDATA          ?XD?GLOBAL_VARIABLE?2
+0003D6H   000445H   000070H   ---    ---      **GAP**
+000446H   000446H   000001H   BYTE   OFFS..   XDATA          ?XD?IPC?9
+000447H   00054EH   000108H   ---    ---      **GAP**
+00054FH   00054FH   000001H   BYTE   OFFS..   XDATA          ?XD?IPC?1
+000550H   00055FH   000010H   BYTE   OFFS..   XDATA          ?XD?IPC?11
+000560H   000B7DH   00061EH   ---    ---      **GAP**
+000B7EH   000B7EH   000001H   BYTE   OFFS..   XDATA          ?XD?IPC?0
+000B7FH   000B7FH   000001H   BYTE   OFFS..   XDATA          ?XD?IPC?5
+000B80H   000B80H   000001H   ---    ---      **GAP**
+000B81H   000B81H   000001H   BYTE   OFFS..   XDATA          ?XD?GLOBAL_VARIABLE?8
+000B82H   000B82H   000001H   ---    ---      **GAP**
+000B83H   000BE6H   000064H   BYTE   OFFS..   XDATA          ?XD?IIC?1
+000BE7H   000C4AH   000064H   BYTE   OFFS..   XDATA          ?XD?IPC?6
+000C4BH   000CAEH   000064H   BYTE   OFFS..   XDATA          ?XD?IPC?3
+000CAFH   000CB2H   000004H   BYTE   OFFS..   XDATA          ?XD?IIC?0
+000CB3H   004130H   00347EH   ---    ---      **GAP**
+004131H   004131H   000001H   BYTE   OFFS..   XDATA          ?XD?GLOBAL_VARIABLE?10
+004132H   004212H   0000E1H   ---    ---      **GAP**
+004213H   004213H   000001H   BYTE   OFFS..   XDATA          ?XD?GLOBAL_VARIABLE?33
+004214H   00425DH   00004AH   ---    ---      **GAP**
+00425EH   00425EH   000001H   BYTE   OFFS..   XDATA          ?XD?GLOBAL_VARIABLE?13
+00425FH   004261H   000003H   ---    ---      **GAP**
+004262H   004271H   000010H   BYTE   OFFS..   XDATA          ?XD?GLOBAL_VARIABLE?25
+004272H   004273H   000002H   ---    ---      **GAP**
+004274H   004279H   000006H   BYTE   OFFS..   XDATA          ?XD?GLOBAL_VARIABLE?29
+00427AH   00447AH   000201H   ---    ---      **GAP**
+00447BH   00448AH   000010H   BYTE   OFFS..   XDATA          ?XD?GLOBAL_VARIABLE?26
+00448BH   00448BH   000001H   BYTE   OFFS..   XDATA          ?XD?GLOBAL_VARIABLE?9
+00448CH   0044F8H   00006DH   ---    ---      **GAP**
+0044F9H   0044FEH   000006H   BYTE   OFFS..   XDATA          ?XD?GLOBAL_VARIABLE?21
+0044FFH   004701H   000203H   ---    ---      **GAP**
+004702H   004702H   000001H   BYTE   OFFS..   XDATA          ?XD?GLOBAL_VARIABLE?23
+004703H   0047F3H   0000F1H   ---    ---      **GAP**
+0047F4H   0047F5H   000002H   BYTE   OFFS..   XDATA          ?XD?GLOBAL_VARIABLE?28
+0047F6H   0047FFH   00000AH   ---    ---      **GAP**
+004800H   004809H   00000AH   BYTE   OFFS..   XDATA          ?XD?GLOBAL_VARIABLE?20
+00480AH   004B99H   000390H   ---    ---      **GAP**
+004B9AH   004B9BH   000002H   BYTE   OFFS..   XDATA          ?XD?IPC?4
+004B9CH   004B9DH   000002H   BYTE   OFFS..   XDATA          ?XD?IPC?8
+004B9EH   004B9FH   000002H   BYTE   OFFS..   XDATA          ?XD?IPC?2
+004BA0H   004BA1H   000002H   BYTE   OFFS..   XDATA          ?XD?IPC?7
+004BA2H   004BA4H   000003H   ---    ---      **GAP**
+004BA5H   004BA6H   000002H   BYTE   OFFS..   XDATA          ?XD?IPC?14
+004BA7H   004BEAH   000044H   ---    ---      **GAP**
+004BEBH   004BEEH   000004H   BYTE   OFFS..   XDATA          ?XD?GLOBAL_VARIABLE?0
+004BEFH   004BEFH   000001H   BYTE   OFFS..   XDATA          ?XD?GLOBAL_VARIABLE?12
+004BF0H   004BFFH   000010H   ---    ---      **GAP**
+004C00H   004C03H   000004H   BYTE   OFFS..   XDATA          ?XD?GLOBAL_VARIABLE?5
+004C04H   004C3DH   00003AH   ---    ---      **GAP**
+004C3EH   004C3FH   000002H   BYTE   OFFS..   XDATA          ?XD?IPC?12
+004C40H   004C6CH   00002DH   ---    ---      **GAP**
+004C6DH   004C6DH   000001H   BYTE   OFFS..   XDATA          ?XD?IPC?13
+004C6EH   004C6EH   000001H   BYTE   OFFS..   XDATA          ?XD?IPC?10
+004C6FH   004C6FH   000001H   BYTE   OFFS..   XDATA          ?XD?GLOBAL_VARIABLE?27
+004C70H   004C70H   000001H   BYTE   OFFS..   XDATA          ?XD?GLOBAL_VARIABLE?15
+004C71H   004C72H   000002H   BYTE   OFFS..   XDATA          ?XD?GLOBAL_VARIABLE?7
+004C73H   004C74H   000002H   BYTE   OFFS..   XDATA          ?XD?GLOBAL_VARIABLE?11
+004C75H   004C76H   000002H   BYTE   OFFS..   XDATA          ?XD?GLOBAL_VARIABLE?32
+004C77H   004C8EH   000018H   ---    ---      **GAP**
+004C8FH   004C8FH   000001H   BYTE   OFFS..   XDATA          ?XD?GLOBAL_VARIABLE?18
+004C90H   004C90H   000001H   BYTE   OFFS..   XDATA          ?XD?GLOBAL_VARIABLE?16
+004C91H   004C9DH   00000DH   ---    ---      **GAP**
+004C9EH   004CFCH   00005FH   BYTE   OFFS..   XDATA          ?XD?GLOBAL_VARIABLE?3
+004CFDH   004D16H   00001AH   ---    ---      **GAP**
+004D17H   004D17H   000001H   BYTE   OFFS..   XDATA          ?XD?GLOBAL_VARIABLE?31
+004D18H   004D1BH   000004H   BYTE   OFFS..   XDATA          ?XD?GLOBAL_VARIABLE?35
+004D1CH   004D1CH   000001H   BYTE   OFFS..   XDATA          ?XD?GLOBAL_VARIABLE?34
+004D1DH   004D20H   000004H   BYTE   OFFS..   XDATA          ?XD?GLOBAL_VARIABLE?17
+004D21H   004D22H   000002H   ---    ---      **GAP**
+004D23H   004D23H   000001H   BYTE   OFFS..   XDATA          ?XD?GLOBAL_VARIABLE?14
+004D24H   004D2DH   00000AH   ---    ---      **GAP**
+004D2EH   004D2EH   000001H   BYTE   OFFS..   XDATA          ?XD?GLOBAL_VARIABLE?19
+004D2FH   004D59H   00002BH   ---    ---      **GAP**
+004D5AH   004D5AH   000001H   BYTE   OFFS..   XDATA          ?XD?GLOBAL_VARIABLE?6
+004D5BH   004D92H   000038H   ---    ---      **GAP**
+004D93H   004DA6H   000014H   BYTE   OFFS..   XDATA          ?XD?GLOBAL_VARIABLE?24
+004DA7H   004DA7H   000001H   ---    ---      **GAP**
+004DA8H   004DBBH   000014H   BYTE   OFFS..   XDATA          ?XD?GLOBAL_VARIABLE?1
+004DBCH   004DCFH   000014H   BYTE   OFFS..   XDATA          ?XD?GLOBAL_VARIABLE?22
+004DD0H   004E61H   000092H   BYTE   UNIT     XDATA          ?XD?GLOBAL_VARIABLE
+004E62H   004E73H   000012H   BYTE   UNIT     XDATA          ?XD?SYS
+004E74H   004E85H   000012H   BYTE   UNIT     XDATA          ?XD?IPC
+004E86H   004E93H   00000EH   BYTE   UNIT     XDATA          ?XD?_IPC_TXHIDDATA?KB_PROCESS
+004E94H   004E9EH   00000BH   BYTE   UNIT     XDATA          ?XD?KS_GETCURRENTEVT?KEYSCAN
+004E9FH   004EA7H   000009H   BYTE   UNIT     XDATA          ?XD?_IIC_WRITEBLOCK?IIC
+004EA8H   004EAFH   000008H   BYTE   UNIT     XDATA          ?XD?_DMEMCPY?UTILITIES
+004EB0H   004EB6H   000007H   BYTE   UNIT     XDATA          ?XD?KEYSCAN
+004EB7H   004EBDH   000007H   BYTE   UNIT     XDATA          ?XD?_IIC_WRITE?IIC
+004EBEH   004EC4H   000007H   BYTE   UNIT     XDATA          ?XD?_COMPARE_STR?UTILITIES
+004EC5H   004ECAH   000006H   BYTE   UNIT     XDATA          ?XD?_IPCTX?IPC
+004ECBH   004ED0H   000006H   BYTE   UNIT     XDATA          ?XD?_XMEMCPY?UTILITIES
+004ED1H   004ED5H   000005H   BYTE   UNIT     XDATA          ?XD?_KB_MOTION_KEYSCAN?KB_PROCESS
+004ED6H   004EDAH   000005H   BYTE   UNIT     XDATA          ?XD?_KB_DEVICE_SELECT?KB_PROCESS
+004EDBH   004EDFH   000005H   BYTE   UNIT     XDATA          ?XD?YC_ADC_CHECK?ADC
+004EE0H   004EE4H   000005H   BYTE   UNIT     XDATA          ?XD?_IIC_READ?IIC
+004EE5H   004EE8H   000004H   BYTE   UNIT     XDATA          ?XD?_KB_MULTIKEY_SETUP?KB_PROCESS
+004EE9H   004EECH   000004H   BYTE   UNIT     XDATA          ?XD?_YC_PWM_SET_DUTY?PWM
+004EEDH   004EF0H   000004H   BYTE   UNIT     XDATA          ?XD?_BUFSIZE?IPC
+004EF1H   004EF4H   000004H   BYTE   UNIT     XDATA          ?XD?_IPC_TXCONTROLCMD?IPC
+004EF5H   004EF7H   000003H   BYTE   UNIT     XDATA          ?XD?KB_BT_PINCODE_ENTER?KB_PROCESS
+004EF8H   004EFAH   000003H   BYTE   UNIT     XDATA          ?XD?KB_MOTION?KB_PROCESS
+004EFBH   004EFDH   000003H   BYTE   UNIT     XDATA          ?XD?_KEY_FN_FUNCTION?KB_PROCESS
+004EFEH   004F00H   000003H   BYTE   UNIT     XDATA          ?XD?KS_SCANMATRIX?KEYSCAN
+004F01H   004F03H   000003H   BYTE   UNIT     XDATA          ?XD?_ARRAY_IS_EMPTY?KEYSCAN
+004F04H   004F06H   000003H   BYTE   UNIT     XDATA          ?XD?IPC_DEALSINGLESTEP?IPC
+004F07H   004F09H   000003H   BYTE   UNIT     XDATA          ?XD?_GPIOSETBIT?GPIO
+004F0AH   004F0CH   000003H   BYTE   UNIT     XDATA          ?XD?_XMEMCLEAR?UTILITIES
+004F0DH   004F0FH   000003H   BYTE   UNIT     XDATA          ?XD?_XMEMCLEAR_FF?UTILITIES
+004F10H   004F11H   000002H   BYTE   UNIT     XDATA          ?XD?_YC_STORE_RECORD_LIST?BLUETOOTH
+004F12H   004F13H   000002H   BYTE   UNIT     XDATA          ?XD?_KB_SEND_COMBINATION_KEY?KB_PROCESS
+004F14H   004F15H   000002H   BYTE   UNIT     XDATA          ?XD?_KB_CB_HID?SYS
+004F16H   004F17H   000002H   BYTE   UNIT     XDATA          ?XD?_IPCRX?IPC
+004F18H   004F18H   000001H   BYTE   UNIT     XDATA          ?XD?_YC_LOAD_RECORD_LIST?BLUETOOTH
+004F19H   004F19H   000001H   BYTE   UNIT     XDATA          ?XD?YC_CHECK_NEED_RECONNECTED?BLUETOOTH
+004F1AH   004F1AH   000001H   BYTE   UNIT     XDATA          ?XD?YC_CLEAR_BT_SAME_ADDRESS_RECORD?BLUETOOTH
+004F1BH   004F1BH   000001H   BYTE   UNIT     XDATA          ?XD?_YC_KEY_ACTION_HANDLE?KB_PROCESS
+004F1CH   004F1CH   000001H   BYTE   UNIT     XDATA          ?XD?_KEYOUT?KEYSCAN
+004F1DH   004F1DH   000001H   BYTE   UNIT     XDATA          ?XD?KSRAWINITIALIZE?KEYSCAN
+004F1EH   004F1EH   000001H   BYTE   UNIT     XDATA          ?XD?KSCOLINITIALIZE?KEYSCAN
+004F1FH   004F1FH   000001H   BYTE   UNIT     XDATA          ?XD?KS_UNISTALL?KEYSCAN
+004F20H   004F20H   000001H   BYTE   UNIT     XDATA          ?XD?_KB_CB_EVENT?SYS
+004F21H   004F21H   000001H   BYTE   UNIT     XDATA          ?XD?_IPC_TXDATA?IPC
+004F22H   004F22H   000001H   BYTE   UNIT     XDATA          ?XD?_GPIOGETBIT?GPIO
+004F23H   004F23H   000001H   BYTE   UNIT     XDATA          ?XD?_GPIO_SETWAKEUPBYCURRENTSTATE?GPIO
+004F24H   004F24H   000001H   BYTE   UNIT     XDATA          ?XD?_GPIO_FLIPOUTBIT?GPIO
+004F25H   00800FH   0030EBH   ---    ---      **GAP**
+008010H   008010H   000001H   BYTE   OFFS..   XDATA          ?XD?GLOBAL_VARIABLE?4
+
+
+
+PUBLIC SYMBOLS OF MODULE:  OUTPUT\FW (BLUETOOTH)
+
+
+      VALUE       CLASS    TYPE      PUBLIC SYMBOL NAME
+      =================================================
+      02004EBEH   XDATA    BYTE      ?_compare_str?BYTE
+      02004EA8H   XDATA    BYTE      ?_dmemcpy?BYTE
+      00000020H.5 BIT      BIT       ?_GPIO_SetInput?BIT
+      00000020H.4 BIT      BIT       ?_GPIO_Setoe?BIT
+      00000020H.1 BIT      BIT       ?_GPIO_Setout?BIT
+      00000020H.6 BIT      BIT       ?_GPIO_SetOutput?BIT
+      00000020H.3 BIT      BIT       ?_GPIO_SetPd?BIT
+      00000020H.2 BIT      BIT       ?_GPIO_SetPu?BIT
+      00000020H.7 BIT      BIT       ?_GPIO_SetWakeup?BIT
+      02004ECBH   XDATA    BYTE      ?_xmemcpy?BYTE
+      0100023FH   CODE     ---       ?C?CASTF
+      01000608H   CODE     ---       ?C?CCASE
+      010003CFH   CODE     ---       ?C?CLDOPTR
+      010003B6H   CODE     ---       ?C?CLDPTR
+      00000000H   NUMBER   ---       ?C?CODESEG
+      01000390H   CODE     ---       ?C?COPY
+      010003FCH   CODE     ---       ?C?CSTPTR
+      0100020BH   CODE     ---       ?C?FCASTC
+      01000206H   CODE     ---       ?C?FCASTI
+      01000201H   CODE     ---       ?C?FCASTL
+      0100000AH   CODE     ---       ?C?FPADD
+      01000276H   CODE     ---       ?C?FPGETOPN2
+      010000FBH   CODE     ---       ?C?FPMUL
+      010002ABH   CODE     ---       ?C?FPNANRESULT
+      010002B5H   CODE     ---       ?C?FPOVERFLOW
+      0100028DH   CODE     ---       ?C?FPRESULT
+      010002A1H   CODE     ---       ?C?FPRESULT2
+      01000006H   CODE     ---       ?C?FPSUB
+      010002B2H   CODE     ---       ?C?FPUNDERFLOW
+      0100062EH   CODE     ---       ?C?ICALL
+      01000632H   CODE     ---       ?C?ICALL2
+      01000463H   CODE     ---       ?C?IILDX
+      01000479H   CODE     ---       ?C?ILDIX
+      0100048FH   CODE     ---       ?C?LMUL
+      010005ACH   CODE     ---       ?C?LNEG
+      010005D7H   CODE     ---       ?C?LSTKXDATA
+      010005CBH   CODE     ---       ?C?LSTXDATA
+      0100040EH   CODE     ---       ?C?UIDIV
+      010005BAH   CODE     ---       ?C?ULCMP
+      0100051AH   CODE     ---       ?C?ULDIV
+      00000000H   NUMBER   ---       ?C?XDATASEG
+      0100067BH   CODE     ---       ?C_START
+      01000000H   CODE     ---       ?C_STARTUP
+      01002AEAH   CODE     ---       _array_is_empty
+      01002846H   CODE     ---       _compare_str
+      01000F6EH   CODE     ---       _Delay1ms
+      01003F08H   CODE     ---       _dmemcpy
+      01003E2EH   CODE     ---       _GPIO_ClearWakeup
+      010021EBH   CODE     ---       _GPIO_FlipOutBit
+      010022D3H   CODE     ---       _GPIO_GetInputStatus
+      010036AFH   CODE     ---       _GPIO_SetInput
+      010036EFH   CODE     ---       _GPIO_Setoe
+      01000F5CH   CODE     ---       _GPIO_Setout
+      01000CCEH   CODE     ---       _GPIO_SetOutput
+      010036DEH   CODE     ---       _GPIO_SetPd
+      010036CDH   CODE     ---       _GPIO_SetPu
+      010022EEH   CODE     ---       _GPIO_SetWakeup
+      010022DBH   CODE     ---       _GPIO_SetWakeupByCurrentState
+      01001ECFH   CODE     ---       _IIC_Read
+      01003E6DH   CODE     ---       _IIC_write
+      01001E20H   CODE     ---       _IIC_WriteBlock
+      010026E0H   CODE     ---       _IPC_Initialize
+      010017E1H   CODE     ---       _IPC_Tx24GData
+      01003E07H   CODE     ---       _IPC_TxBleData
+      01003DF1H   CODE     ---       _IPC_TxBREDRHidData
+      010008B3H   CODE     ---       _IPC_TxControlCmd
+      010017E7H   CODE     ---       _IPC_TxData
+      010013EAH   CODE     ---       _IPC_TxHidData
+      01003DFEH   CODE     ---       _IPC_TxSppData
+      0100346FH   CODE     ---       _kb_combination_key_press
+      0100336BH   CODE     ---       _kb_device_select
+      0100110BH   CODE     ---       _kb_motion_keyscan
+      01002E2DH   CODE     ---       _kb_multikey_setup
+      010015A5H   CODE     ---       _kb_send_combination_key
+      01002E12H   CODE     ---       _kb_set_multikey
+      010030DDH   CODE     ---       _kb_set_systemkey
+      01003494H   CODE     ---       _key_fn_function
+      010014D8H   CODE     ---       _xmemclear
+      01002819H   CODE     ---       _xmemclear_ff
+      010010C8H   CODE     ---       _xmemcpy
+      01000970H   CODE     ---       _YC_key_action_handle
+      0100078CH   CODE     ---       _YC_load_record_list
+      01000F9CH   CODE     ---       _YC_PWM_disable
+      01003954H   CODE     ---       _YC_PWM_init
+      01000CEBH   CODE     ---       _YC_PWM_set_duty
+      01000FF1H   CODE     ---       _YC_store_record_list
+      02004DFBH   XDATA    BYTE      action_timeout
+      01000DBDH   CODE     ---       backlight_led_process
+      02004DFDH   XDATA    ---       bd_key_record_list
+      02004DD3H   XDATA    ---       bitkey
+      02004DE2H   XDATA    BYTE      ble_fast_connect_flag
+      02004DF5H   XDATA    BYTE      ble_reconnect_flag
+      02004DE3H   XDATA    BYTE      ble_send_secutiry_request_timer
+      02004C6DH   XDATA    BYTE      btstimer
+      02004BA5H   XDATA    WORD      bttimer
+      02004C6EH   XDATA    BYTE      c51stimer
+      02004C3EH   XDATA    WORD      c51timer
+      010006D6H   CONST    ---       col
+      02000B7EH   XDATA    BYTE      current_task
+      02004DF6H   XDATA    BYTE      delayChgInvTimer
+      02004E61H   XDATA    BYTE      fast_connect_flag
+      02004DF1H   XDATA    BYTE      fn_flag
+      02004DF9H   XDATA    BYTE      fn_flag_last
+      02004DE7H   XDATA    BYTE      fn_tx_flag
+      02004C9EH   XDATA    ---       g_variable
+      02004DE4H   XDATA    BYTE      get_24g_led_send
+      010026FBH   CODE     ---       GPIO_fillpd
+      02004800H   XDATA    ---       hidBuff
+      02004DF0H   XDATA    BYTE      iOS_rec_pinCode
+      010026EFH   CODE     ---       IPC_AbandonLpm
+      01002481H   CODE     ---       IPC_DealSingleStep
+      01003E10H   CODE     ---       IPC_GetBBDIsconnectReason
+      01003E16H   CODE     ---       IPC_IsTxBuffEmpty
+      01001F7FH   CODE     ---       IPC_WaitLpm
+      02000550H   XDATA    ---       ipcPin
+      0200054FH   XDATA    BYTE      ipcPinlen
+      02000C4BH   XDATA    ---       ipcReadBuff
+      02000BE7H   XDATA    ---       ipcSendBuff
+      010016A8H   CODE     ---       kb_24g_get_led_status
+      010030F8H   CODE     ---       kb_bt_pincode_enter
+      01000B71H   CODE     ---       kb_button_press_timer500ms
+      010015DFH   CODE     ---       kb_need_keyscan
+      02004DF7H   XDATA    BYTE      key_value_temp
+      02004DF4H   XDATA    BYTE      keyCount
+      01002890H   CODE     ---       KS_GetCurrentEvt
+      01001F8DH   CODE     ---       KS_Initialize
+      01002CB4H   CODE     ---       KS_ScanMatrix
+      0100237AH   CODE     ---       KS_Unistall
+      02004213H   XDATA    BYTE      kscurrmult
+      02004EB0H   XDATA    ---       ksEvtPool
+      010006EBH   CONST    ---       ksMap
+      02004DA8H   XDATA    ---       ksSelMapCheck
+      02004DBCH   XDATA    ---       ksSelMapCurr
+      02004D93H   XDATA    ---       ksSelMapOld
+      02004DD0H   XDATA    ---       le_lap_temp
+      02004D18H   XDATA    DWORD     le_pin_code
+      02004DE6H   XDATA    BYTE      le_pin_code_len
+      02004DEAH   XDATA    BYTE      le_send_battery_level_delay_count
+      02004DE9H   XDATA    BYTE      le_send_battery_level_flag
+      01000CACH   CODE     ---       LED_all_shutdown
+      01003761H   CODE     ---       LED_backlight_breath
+      01000F86H   CODE     ---       LED_backlight_neno
+      010038FDH   CODE     ---       LED_Breath_1
+      0100391AH   CODE     ---       LED_Breath_2
+      01003937H   CODE     ---       LED_Breath_3
+      01000FEBH   CODE     ---       LED_device_poweroff
+      01000FE5H   CODE     ---       LED_device_poweron
+      01000E9DH   CODE     ---       LED_handle
+      0100212AH   CODE     ---       LED_timer500ms
+      02004DEBH   XDATA    BYTE      long_press_flag
+      02000B7FH   XDATA    BYTE      lpm_flag
+      02004C00H   XDATA    ---       m_24g_addr
+      02004D1DH   XDATA    ---       m_24g_enter_hibernate
+      02004D23H   XDATA    BYTE      m_24g_led_flag
+      02004BEFH   XDATA    BYTE      m_24g_pairing_sm
+      02004BEBH   XDATA    ---       m_24g_paring_addr
+      02004C71H   XDATA    WORD      m_adc0vBase
+      02004C73H   XDATA    WORD      m_adc3vValue
+      02004C70H   XDATA    BYTE      m_adc_channel
+      02004C6FH   XDATA    BYTE      m_adc_config_flag
+      02004C75H   XDATA    WORD      m_adcCurrentValue
+      02004C90H   XDATA    BYTE      m_caps_num_lock
+      02004DEFH   XDATA    BYTE      m_caps_num_lock_last
+      02004D2EH   XDATA    BYTE      m_customize_timer
+      02004DF3H   XDATA    BYTE      m_customize_timer_last
+      020044F9H   XDATA    ---       m_le_lap
+      0200447BH   XDATA    ---       m_le_ltk
+      02004D1CH   XDATA    BYTE      m_le_send_security_request_flag
+      0200425EH   XDATA    BYTE      m_link_key_exists
+      02004262H   XDATA    ---       m_linkkey
+      02004702H   XDATA    BYTE      m_local_name_length
+      02004131H   XDATA    BYTE      m_lpm_mode
+      0200448BH   XDATA    BYTE      m_ltk_exists
+      02004D5AH   XDATA    BYTE      m_pc_sleep_flag
+      02004C8FH   XDATA    BYTE      m_power_on_flag
+      02004274H   XDATA    ---       m_reconn_addr
+      02004D17H   XDATA    BYTE      m_reconnect_continue
+      02000040H   XDATA    ---       m_remote_addr
+      020003D0H   XDATA    ---       m_remote_le_addr
+      02008010H   XDATA    BYTE      m_reset_reg
+      020047F4H   XDATA    WORD      m_ui_state_map
+      02000B81H   XDATA    BYTE      m_wakup_from_power_flag
+      010026EDH   CODE     ---       main
+      02004E57H   XDATA    BYTE      mult_key_status
+      02004DFCH   XDATA    BYTE      mult_key_value
+      02004E58H   XDATA    ---       multikey
+      02004DEDH   XDATA    BYTE      pinCode_flag
+      02004DFAH   XDATA    BYTE      power_on_flag
+      02004DF2H   XDATA    BYTE      press_long_time_flag
+      02004DE5H   XDATA    BYTE      recon_index
+      02004DECH   XDATA    BYTE      repeat_send_24g
+      02004DEEH   XDATA    BYTE      standard_key_release_flag
+      02004DE8H   XDATA    BYTE      switch_role_timer
+      010017A6H   CODE     ---       System_G24_long_lpm
+      02004DF8H   XDATA    BYTE      system_key_press
+      01000FD8H   CODE     ---       System_long_sleep
+      01000FDCH   CODE     ---       System_Reset_Connect
+      01003984H   CODE     ---       System_Software_init
+      01003BB5H   CODE     ---       YC_adc_check
+      01002282H   CODE     ---       YC_adc_check_timer500ms
+      010039BEH   CODE     ---       YC_adc_init
+      01000B52H   CODE     ---       YC_cancel_reconnect
+      0100180DH   CODE     ---       YC_check_is_connected
+      0100182AH   CODE     ---       YC_check_need_reconnected
+      0100272FH   CODE     ---       YC_clear_BT_same_address_record
+      010018C3H   CODE     ---       YC_clear_reconnect_flag
+      010016E4H   CODE     ---       YC_connect_timeout_500ms
+      01000B13H   CODE     ---       YC_disconnect_all_link
+      01002050H   CODE     ---       YC_g24_mode_discovery
+      01002067H   CODE     ---       YC_get_ble_ramdon_lap
+      020000A7H   XDATA    ---       YC_GPIOWakeupH
+      020000A3H   XDATA    ---       YC_GPIOWakeupL
+      01003F4CH   CODE     ---       YC_Ice_break
+      01002207H   CODE     ---       YC_pairing_timerout_500ms
+      01001FDAH   CODE     ---       YC_start_reconnect
+      01002412H   CODE     ---       YC_System_Main
+      01001D8AH   CODE     ---       YC_update_eeprom_data
+      010020ABH   CODE     ---       YC_wait_disconnect_timer500ms
+
+
+
+SYMBOL TABLE OF MODULE:  OUTPUT\FW (BLUETOOTH)
+
+      VALUE       REP       CLASS    TYPE      SYMBOL NAME
+      ====================================================
+      ---         MODULE    ---      ---       BLUETOOTH
+      01001D8AH   PUBLIC    CODE     ---       YC_update_eeprom_data
+      0100272FH   PUBLIC    CODE     ---       YC_clear_BT_same_address_record
+      01002067H   PUBLIC    CODE     ---       YC_get_ble_ramdon_lap
+      01001FDAH   PUBLIC    CODE     ---       YC_start_reconnect
+      01002050H   PUBLIC    CODE     ---       YC_g24_mode_discovery
+      01000B13H   PUBLIC    CODE     ---       YC_disconnect_all_link
+      010018C3H   PUBLIC    CODE     ---       YC_clear_reconnect_flag
+      01000B52H   PUBLIC    CODE     ---       YC_cancel_reconnect
+      0100182AH   PUBLIC    CODE     ---       YC_check_need_reconnected
+      0100180DH   PUBLIC    CODE     ---       YC_check_is_connected
+      01000FF1H   PUBLIC    CODE     ---       _YC_store_record_list
+      0100078CH   PUBLIC    CODE     ---       _YC_load_record_list
+
+      0100078CH   BLOCK     CODE     ---       LVL=0
+      0100078CH   LINE      ---      ---       #4
+      01000791H   LINE      ---      ---       #5
+      01000791H   LINE      ---      ---       #6
+      0100079AH   LINE      ---      ---       #8
+      010007A0H   LINE      ---      ---       #9
+      010007A5H   LINE      ---      ---       #10
+      010007A9H   LINE      ---      ---       #11
+      010007C0H   LINE      ---      ---       #12
+      010007C0H   LINE      ---      ---       #13
+      010007DCH   LINE      ---      ---       #14
+      010007FBH   LINE      ---      ---       #15
+      0100081AH   LINE      ---      ---       #16
+      0100081EH   LINE      ---      ---       #17
+      01000824H   LINE      ---      ---       #18
+      01000829H   LINE      ---      ---       #19
+      0100082EH   LINE      ---      ---       #20
+      0100082FH   LINE      ---      ---       #21
+      01000846H   LINE      ---      ---       #22
+      01000846H   LINE      ---      ---       #23
+      01000862H   LINE      ---      ---       #24
+      01000881H   LINE      ---      ---       #25
+      01000885H   LINE      ---      ---       #26
+      0100088BH   LINE      ---      ---       #27
+      0100088CH   LINE      ---      ---       #29
+      0100088CH   LINE      ---      ---       #30
+      01000892H   LINE      ---      ---       #32
+      01000898H   LINE      ---      ---       #33
+      0100089AH   LINE      ---      ---       #34
+      0100089CH   LINE      ---      ---       #35
+      0100089EH   LINE      ---      ---       #36
+      010008A0H   LINE      ---      ---       #37
+      010008A2H   LINE      ---      ---       #38
+      010008A8H   LINE      ---      ---       #39
+      010008ACH   LINE      ---      ---       #40
+      010008B2H   LINE      ---      ---       #54
+      010008B2H   LINE      ---      ---       #55
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01000FF1H   BLOCK     CODE     ---       LVL=0
+      01000FF1H   LINE      ---      ---       #59
+      01000FFBH   LINE      ---      ---       #60
+      01000FFBH   LINE      ---      ---       #61
+      01000FFFH   LINE      ---      ---       #62
+      01000FFFH   LINE      ---      ---       #63
+      01001012H   LINE      ---      ---       #64
+      0100102FH   LINE      ---      ---       #65
+      0100104FH   LINE      ---      ---       #66
+      0100106FH   LINE      ---      ---       #67
+      0100106FH   LINE      ---      ---       #68
+      01001077H   LINE      ---      ---       #69
+      01001077H   LINE      ---      ---       #70
+      0100108AH   LINE      ---      ---       #71
+      010010A7H   LINE      ---      ---       #72
+      010010C7H   LINE      ---      ---       #73
+      010010C7H   LINE      ---      ---       #74
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      0100180DH   BLOCK     CODE     ---       LVL=0
+      0100180DH   LINE      ---      ---       #77
+      0100180DH   LINE      ---      ---       #78
+      0100180DH   LINE      ---      ---       #79
+      01001824H   LINE      ---      ---       #82
+      01001824H   LINE      ---      ---       #83
+      01001827H   LINE      ---      ---       #84
+      01001827H   LINE      ---      ---       #85
+      01001829H   LINE      ---      ---       #86
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      0100182AH   BLOCK     CODE     ---       LVL=0
+      0100182AH   LINE      ---      ---       #88
+      0100182AH   LINE      ---      ---       #89
+      0100182AH   BLOCK     CODE     NEAR LAB  LVL=1
+      0100182AH   LINE      ---      ---       #90
+      0100182FH   LINE      ---      ---       #91
+      0100183EH   LINE      ---      ---       #93
+      01001844H   LINE      ---      ---       #99
+      01001856H   LINE      ---      ---       #101
+      0100185CH   LINE      ---      ---       #103
+      01001862H   LINE      ---      ---       #104
+      01001868H   LINE      ---      ---       #106
+      0100187CH   LINE      ---      ---       #110
+      0100187CH   LINE      ---      ---       #111
+      01001882H   LINE      ---      ---       #112
+      01001882H   LINE      ---      ---       #113
+      01001885H   LINE      ---      ---       #114
+      01001891H   LINE      ---      ---       #116
+      01001891H   LINE      ---      ---       #117
+      010018A1H   LINE      ---      ---       #118
+      010018A1H   LINE      ---      ---       #119
+      010018A4H   LINE      ---      ---       #120
+      010018A6H   LINE      ---      ---       #122
+      010018A6H   LINE      ---      ---       #123
+      010018ABH   LINE      ---      ---       #124
+      010018B1H   LINE      ---      ---       #125
+      010018B1H   LINE      ---      ---       #126
+      010018B1H   LINE      ---      ---       #127
+      010018B1H   LINE      ---      ---       #128
+      010018B3H   LINE      ---      ---       #130
+      010018B3H   LINE      ---      ---       #131
+      010018B8H   LINE      ---      ---       #132
+      010018BDH   LINE      ---      ---       #133
+      010018BDH   LINE      ---      ---       #134
+      010018C2H   LINE      ---      ---       #135
+      02004F19H   SYMBOL    XDATA    VOID      return_val
+      ---         BLOCKEND  CODE     ---       LVL=1
+      ---         BLOCKEND  CODE     ---       LVL=0
+
+      01000B52H   BLOCK     CODE     ---       LVL=0
+      01000B52H   LINE      ---      ---       #138
+      01000B52H   LINE      ---      ---       #139
+      01000B52H   LINE      ---      ---       #140
+      01000B59H   LINE      ---      ---       #141
+      01000B59H   LINE      ---      ---       #142
+      01000B5DH   LINE      ---      ---       #143
+      01000B60H   LINE      ---      ---       #144
+      01000B60H   LINE      ---      ---       #146
+      01000B67H   LINE      ---      ---       #147
+      01000B67H   LINE      ---      ---       #149
+      01000B6BH   LINE      ---      ---       #150
+      01000B6EH   LINE      ---      ---       #151
+      01000B6EH   LINE      ---      ---       #152
+      01000B70H   LINE      ---      ---       #153
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      010018C3H   BLOCK     CODE     ---       LVL=0
+      010018C3H   LINE      ---      ---       #156
+      010018C3H   LINE      ---      ---       #157
+      010018C3H   LINE      ---      ---       #158
+      010018C8H   LINE      ---      ---       #159
+      010018CCH   LINE      ---      ---       #160
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01000B13H   BLOCK     CODE     ---       LVL=0
+      01000B13H   LINE      ---      ---       #163
+      01000B13H   LINE      ---      ---       #164
+      01000B13H   LINE      ---      ---       #165
+      01000B20H   LINE      ---      ---       #167
+      01000B20H   LINE      ---      ---       #168
+      01000B24H   LINE      ---      ---       #169
+      01000B27H   LINE      ---      ---       #170
+      01000B27H   LINE      ---      ---       #171
+      01000B34H   LINE      ---      ---       #173
+      01000B34H   LINE      ---      ---       #174
+      01000B38H   LINE      ---      ---       #175
+      01000B3BH   LINE      ---      ---       #176
+      01000B3BH   LINE      ---      ---       #177
+      01000B48H   LINE      ---      ---       #179
+      01000B48H   LINE      ---      ---       #180
+      01000B4CH   LINE      ---      ---       #181
+      01000B4FH   LINE      ---      ---       #182
+      01000B4FH   LINE      ---      ---       #183
+      01000B51H   LINE      ---      ---       #184
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01002050H   BLOCK     CODE     ---       LVL=0
+      01002050H   LINE      ---      ---       #186
+      01002050H   LINE      ---      ---       #187
+      01002050H   LINE      ---      ---       #188
+      0100205CH   LINE      ---      ---       #189
+      0100205CH   LINE      ---      ---       #190
+      01002061H   LINE      ---      ---       #191
+      01002064H   LINE      ---      ---       #192
+      01002064H   LINE      ---      ---       #193
+      01002066H   LINE      ---      ---       #194
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01001FDAH   BLOCK     CODE     ---       LVL=0
+      01001FDAH   LINE      ---      ---       #198
+      01001FDAH   LINE      ---      ---       #199
+      01001FDAH   LINE      ---      ---       #200
+      01001FE0H   LINE      ---      ---       #202
+      01001FF0H   LINE      ---      ---       #203
+      01001FF5H   LINE      ---      ---       #204
+      01002006H   LINE      ---      ---       #205
+      0100200BH   LINE      ---      ---       #206
+      0100201CH   LINE      ---      ---       #207
+      01002021H   LINE      ---      ---       #209
+      01002031H   LINE      ---      ---       #210
+      01002031H   LINE      ---      ---       #211
+      01002044H   LINE      ---      ---       #212
+      0100204BH   LINE      ---      ---       #213
+      0100204BH   LINE      ---      ---       #215
+      0100204BH   LINE      ---      ---       #216
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01002067H   BLOCK     CODE     ---       LVL=0
+      01002067H   LINE      ---      ---       #222
+      01002067H   LINE      ---      ---       #223
+      01002067H   LINE      ---      ---       #224
+      01002078H   LINE      ---      ---       #225
+      0100207EH   LINE      ---      ---       #226
+      01002082H   LINE      ---      ---       #227
+      0100208AH   LINE      ---      ---       #228
+      01002092H   LINE      ---      ---       #229
+      0100209AH   LINE      ---      ---       #230
+      010020A2H   LINE      ---      ---       #231
+      010020AAH   LINE      ---      ---       #232
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      0100272FH   BLOCK     CODE     ---       LVL=0
+      0100272FH   LINE      ---      ---       #235
+      0100272FH   LINE      ---      ---       #236
+      0100272FH   BLOCK     CODE     NEAR LAB  LVL=1
+      0100272FH   LINE      ---      ---       #237
+      0100272FH   LINE      ---      ---       #240
+      01002738H   LINE      ---      ---       #241
+      0100273DH   LINE      ---      ---       #242
+      01002747H   LINE      ---      ---       #244
+      0100274EH   LINE      ---      ---       #245
+      0100274EH   LINE      ---      ---       #246
+      01002756H   LINE      ---      ---       #247
+      01002756H   LINE      ---      ---       #248
+      0100277FH   LINE      ---      ---       #249
+      0100278CH   LINE      ---      ---       #250
+      0100278CH   LINE      ---      ---       #251
+      0100278CH   LINE      ---      ---       #253
+      01002795H   LINE      ---      ---       #254
+      01002795H   LINE      ---      ---       #255
+      0100279DH   LINE      ---      ---       #256
+      0100279DH   LINE      ---      ---       #257
+      010027C6H   LINE      ---      ---       #258
+      010027D3H   LINE      ---      ---       #259
+      010027D3H   LINE      ---      ---       #260
+      010027D3H   LINE      ---      ---       #262
+      010027DCH   LINE      ---      ---       #263
+      010027DCH   LINE      ---      ---       #264
+      010027E4H   LINE      ---      ---       #265
+      010027E4H   LINE      ---      ---       #266
+      0100280CH   LINE      ---      ---       #267
+      01002818H   LINE      ---      ---       #268
+      01002818H   LINE      ---      ---       #269
+      01002818H   LINE      ---      ---       #270
+      01002818H   LINE      ---      ---       #271
+      02004F1AH   SYMBOL    XDATA    VOID      record_index
+      ---         BLOCKEND  CODE     ---       LVL=1
+      ---         BLOCKEND  CODE     ---       LVL=0
+
+      01001D8AH   BLOCK     CODE     ---       LVL=0
+      01001D8AH   LINE      ---      ---       #275
+      01001D8AH   LINE      ---      ---       #276
+      01001D8AH   LINE      ---      ---       #277
+      01001D92H   LINE      ---      ---       #278
+      01001D92H   LINE      ---      ---       #280
+      01001DA7H   LINE      ---      ---       #288
+      01001DAEH   LINE      ---      ---       #289
+      01001DB5H   LINE      ---      ---       #290
+      01001DB5H   LINE      ---      ---       #291
+      01001DC5H   LINE      ---      ---       #292
+      01001DD5H   LINE      ---      ---       #293
+      01001DD7H   LINE      ---      ---       #294
+      01001DDEH   LINE      ---      ---       #295
+      01001DEEH   LINE      ---      ---       #297
+      01001DFEH   LINE      ---      ---       #298
+      01001E0EH   LINE      ---      ---       #300
+      01001E15H   LINE      ---      ---       #301
+      01001E1AH   LINE      ---      ---       #302
+      01001E1FH   LINE      ---      ---       #303
+      01001E1FH   LINE      ---      ---       #304
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      ---         MODULE    ---      ---       GLOBAL_VARIABLE
+      02004E61H   PUBLIC    XDATA    BYTE      fast_connect_flag
+      02004E58H   PUBLIC    XDATA    ---       multikey
+      02004E57H   PUBLIC    XDATA    BYTE      mult_key_status
+      02004D18H   PUBLIC    XDATA    DWORD     le_pin_code
+      02004D1CH   PUBLIC    XDATA    BYTE      m_le_send_security_request_flag
+      02004DFDH   PUBLIC    XDATA    ---       bd_key_record_list
+      02004DFCH   PUBLIC    XDATA    BYTE      mult_key_value
+      02004DFBH   PUBLIC    XDATA    BYTE      action_timeout
+      02004DFAH   PUBLIC    XDATA    BYTE      power_on_flag
+      02004DF9H   PUBLIC    XDATA    BYTE      fn_flag_last
+      02004DF8H   PUBLIC    XDATA    BYTE      system_key_press
+      02004DF7H   PUBLIC    XDATA    BYTE      key_value_temp
+      02004213H   PUBLIC    XDATA    BYTE      kscurrmult
+      02004C75H   PUBLIC    XDATA    WORD      m_adcCurrentValue
+      02004D17H   PUBLIC    XDATA    BYTE      m_reconnect_continue
+      02000040H   PUBLIC    XDATA    ---       m_remote_addr
+      02004DF6H   PUBLIC    XDATA    BYTE      delayChgInvTimer
+      02004DF5H   PUBLIC    XDATA    BYTE      ble_reconnect_flag
+      02004DF4H   PUBLIC    XDATA    BYTE      keyCount
+      02004274H   PUBLIC    XDATA    ---       m_reconn_addr
+      02004DF3H   PUBLIC    XDATA    BYTE      m_customize_timer_last
+      02004DF2H   PUBLIC    XDATA    BYTE      press_long_time_flag
+      02004DF1H   PUBLIC    XDATA    BYTE      fn_flag
+      020047F4H   PUBLIC    XDATA    WORD      m_ui_state_map
+      02004DF0H   PUBLIC    XDATA    BYTE      iOS_rec_pinCode
+      02004C6FH   PUBLIC    XDATA    BYTE      m_adc_config_flag
+      02004DEFH   PUBLIC    XDATA    BYTE      m_caps_num_lock_last
+      0200447BH   PUBLIC    XDATA    ---       m_le_ltk
+      02004262H   PUBLIC    XDATA    ---       m_linkkey
+      02004D93H   PUBLIC    XDATA    ---       ksSelMapOld
+      02004702H   PUBLIC    XDATA    BYTE      m_local_name_length
+      02004DEEH   PUBLIC    XDATA    BYTE      standard_key_release_flag
+      02004DBCH   PUBLIC    XDATA    ---       ksSelMapCurr
+      02004DEDH   PUBLIC    XDATA    BYTE      pinCode_flag
+      02004DECH   PUBLIC    XDATA    BYTE      repeat_send_24g
+      02004DEBH   PUBLIC    XDATA    BYTE      long_press_flag
+      020044F9H   PUBLIC    XDATA    ---       m_le_lap
+      02004800H   PUBLIC    XDATA    ---       hidBuff
+      02004D2EH   PUBLIC    XDATA    BYTE      m_customize_timer
+      02004DEAH   PUBLIC    XDATA    BYTE      le_send_battery_level_delay_count
+      02004C8FH   PUBLIC    XDATA    BYTE      m_power_on_flag
+      02004DE9H   PUBLIC    XDATA    BYTE      le_send_battery_level_flag
+      02004D1DH   PUBLIC    XDATA    ---       m_24g_enter_hibernate
+      02004C90H   PUBLIC    XDATA    BYTE      m_caps_num_lock
+      02004C70H   PUBLIC    XDATA    BYTE      m_adc_channel
+      02004DE8H   PUBLIC    XDATA    BYTE      switch_role_timer
+      02004D23H   PUBLIC    XDATA    BYTE      m_24g_led_flag
+      0200425EH   PUBLIC    XDATA    BYTE      m_link_key_exists
+      02004BEFH   PUBLIC    XDATA    BYTE      m_24g_pairing_sm
+      02004C73H   PUBLIC    XDATA    WORD      m_adc3vValue
+      02004131H   PUBLIC    XDATA    BYTE      m_lpm_mode
+      02004DE7H   PUBLIC    XDATA    BYTE      fn_tx_flag
+      0200448BH   PUBLIC    XDATA    BYTE      m_ltk_exists
+      02000B81H   PUBLIC    XDATA    BYTE      m_wakup_from_power_flag
+      02004C71H   PUBLIC    XDATA    WORD      m_adc0vBase
+      02004D5AH   PUBLIC    XDATA    BYTE      m_pc_sleep_flag
+      02004DE6H   PUBLIC    XDATA    BYTE      le_pin_code_len
+      02004C00H   PUBLIC    XDATA    ---       m_24g_addr
+      02004DE5H   PUBLIC    XDATA    BYTE      recon_index
+      02004DE4H   PUBLIC    XDATA    BYTE      get_24g_led_send
+      02004DE3H   PUBLIC    XDATA    BYTE      ble_send_secutiry_request_timer
+      02008010H   PUBLIC    XDATA    BYTE      m_reset_reg
+      02004C9EH   PUBLIC    XDATA    ---       g_variable
+      02004DE2H   PUBLIC    XDATA    BYTE      ble_fast_connect_flag
+      020003D0H   PUBLIC    XDATA    ---       m_remote_le_addr
+      02004DD3H   PUBLIC    XDATA    ---       bitkey
+      02004DD0H   PUBLIC    XDATA    ---       le_lap_temp
+      02004DA8H   PUBLIC    XDATA    ---       ksSelMapCheck
+      02004BEBH   PUBLIC    XDATA    ---       m_24g_paring_addr
+      010006EBH   PUBLIC    CONST    ---       ksMap
+      010006D6H   PUBLIC    CONST    ---       col
+
+      ---         MODULE    ---      ---       KB_PROCESS
+      01002E2DH   PUBLIC    CODE     ---       _kb_multikey_setup
+      01003494H   PUBLIC    CODE     ---       _key_fn_function
+      0100346FH   PUBLIC    CODE     ---       _kb_combination_key_press
+      0100336BH   PUBLIC    CODE     ---       _kb_device_select
+      0100110BH   PUBLIC    CODE     ---       _kb_motion_keyscan
+      010015DFH   PUBLIC    CODE     ---       kb_need_keyscan
+      010016A8H   PUBLIC    CODE     ---       kb_24g_get_led_status
+      010030F8H   PUBLIC    CODE     ---       kb_bt_pincode_enter
+      010015A5H   PUBLIC    CODE     ---       _kb_send_combination_key
+      010030DDH   PUBLIC    CODE     ---       _kb_set_systemkey
+      01002E12H   PUBLIC    CODE     ---       _kb_set_multikey
+      010013EAH   PUBLIC    CODE     ---       _IPC_TxHidData
+      01000970H   PUBLIC    CODE     ---       _YC_key_action_handle
+
+      01000970H   BLOCK     CODE     ---       LVL=0
+      01000970H   LINE      ---      ---       #3
+      01000975H   LINE      ---      ---       #4
+      01000975H   LINE      ---      ---       #5
+      010009B2H   LINE      ---      ---       #6
+      010009B2H   LINE      ---      ---       #7
+      010009B2H   LINE      ---      ---       #8
+      010009B2H   LINE      ---      ---       #9
+      010009B2H   LINE      ---      ---       #10
+      010009BFH   LINE      ---      ---       #12
+      010009BFH   LINE      ---      ---       #13
+      010009C3H   LINE      ---      ---       #14
+      010009CBH   LINE      ---      ---       #15
+      010009CCH   LINE      ---      ---       #17
+      010009CCH   LINE      ---      ---       #18
+      010009D5H   LINE      ---      ---       #19
+      010009DBH   LINE      ---      ---       #20
+      010009DFH   LINE      ---      ---       #21
+      010009E3H   LINE      ---      ---       #22
+      010009E7H   LINE      ---      ---       #23
+      010009EBH   LINE      ---      ---       #24
+      010009F0H   LINE      ---      ---       #25
+      010009F0H   LINE      ---      ---       #26
+      010009F1H   LINE      ---      ---       #27
+      010009F1H   LINE      ---      ---       #28
+      010009F5H   LINE      ---      ---       #29
+      010009F9H   LINE      ---      ---       #30
+      010009F9H   LINE      ---      ---       #31
+      010009F9H   LINE      ---      ---       #32
+      010009FEH   LINE      ---      ---       #33
+      01000A0EH   LINE      ---      ---       #34
+      01000A0EH   LINE      ---      ---       #35
+      01000A16H   LINE      ---      ---       #36
+      01000A1CH   LINE      ---      ---       #37
+      01000A1DH   LINE      ---      ---       #39
+      01000A1DH   LINE      ---      ---       #40
+      01000A20H   LINE      ---      ---       #41
+      01000A25H   LINE      ---      ---       #42
+      01000A29H   LINE      ---      ---       #43
+      01000A2DH   LINE      ---      ---       #51
+      01000A30H   LINE      ---      ---       #52
+      01000A34H   LINE      ---      ---       #54
+      01000A39H   LINE      ---      ---       #55
+      01000A39H   LINE      ---      ---       #56
+      01000A3AH   LINE      ---      ---       #57
+      01000A3AH   LINE      ---      ---       #58
+      01000A3CH   LINE      ---      ---       #59
+      01000A41H   LINE      ---      ---       #60
+      01000A42H   LINE      ---      ---       #61
+      01000A42H   LINE      ---      ---       #62
+      01000A4FH   LINE      ---      ---       #63
+      01000A55H   LINE      ---      ---       #64
+      01000A57H   LINE      ---      ---       #65
+      01000A5DH   LINE      ---      ---       #66
+      01000A62H   LINE      ---      ---       #67
+      01000A63H   LINE      ---      ---       #68
+      01000A63H   LINE      ---      ---       #69
+      01000A63H   LINE      ---      ---       #70
+      01000A68H   LINE      ---      ---       #71
+      01000A6DH   LINE      ---      ---       #72
+      01000A6DH   LINE      ---      ---       #73
+      01000A75H   LINE      ---      ---       #74
+      01000A76H   LINE      ---      ---       #76
+      01000A76H   LINE      ---      ---       #77
+      01000A87H   LINE      ---      ---       #78
+      01000A8BH   LINE      ---      ---       #79
+      01000A90H   LINE      ---      ---       #80
+      01000AA6H   LINE      ---      ---       #81
+      01000AA6H   LINE      ---      ---       #82
+      01000AACH   LINE      ---      ---       #83
+      01000AAEH   LINE      ---      ---       #84
+      01000AB0H   LINE      ---      ---       #85
+      01000AB2H   LINE      ---      ---       #86
+      01000AB8H   LINE      ---      ---       #87
+      01000AB8H   LINE      ---      ---       #89
+      01000ABCH   LINE      ---      ---       #91
+      01000AC2H   LINE      ---      ---       #92
+      01000AC5H   LINE      ---      ---       #93
+      01000AC9H   LINE      ---      ---       #94
+      01000AC9H   LINE      ---      ---       #95
+      01000ACAH   LINE      ---      ---       #96
+      01000ACAH   LINE      ---      ---       #97
+      01000ACFH   LINE      ---      ---       #98
+      01000AD9H   LINE      ---      ---       #99
+      01000AD9H   LINE      ---      ---       #100
+      01000AE1H   LINE      ---      ---       #101
+      01000AE2H   LINE      ---      ---       #103
+      01000AE2H   LINE      ---      ---       #104
+      01000AEAH   LINE      ---      ---       #105
+      01000AEAH   LINE      ---      ---       #106
+      01000AEFH   LINE      ---      ---       #107
+      01000AF3H   LINE      ---      ---       #108
+      01000AF9H   LINE      ---      ---       #109
+      01000AFCH   LINE      ---      ---       #110
+      01000B02H   LINE      ---      ---       #111
+      01000B07H   LINE      ---      ---       #112
+      01000B07H   LINE      ---      ---       #113
+      01000B0CH   LINE      ---      ---       #114
+      01000B0CH   LINE      ---      ---       #115
+      01000B0DH   LINE      ---      ---       #116
+      01000B0DH   LINE      ---      ---       #117
+      01000B12H   LINE      ---      ---       #118
+      01000B12H   LINE      ---      ---       #119
+      01000B12H   LINE      ---      ---       #120
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      010013EAH   BLOCK     CODE     ---       LVL=0
+      010013EAH   LINE      ---      ---       #124
+      010013F8H   LINE      ---      ---       #125
+      010013F8H   BLOCK     CODE     NEAR LAB  LVL=1
+      010013F8H   LINE      ---      ---       #127
+      010013FAH   LINE      ---      ---       #129
+      01001404H   LINE      ---      ---       #130
+      01001404H   LINE      ---      ---       #131
+      01001424H   LINE      ---      ---       #132
+      01001427H   LINE      ---      ---       #134
+      0100142FH   LINE      ---      ---       #136
+      01001437H   LINE      ---      ---       #139
+      0100143EH   LINE      ---      ---       #140
+      0100143EH   LINE      ---      ---       #141
+      0100144CH   LINE      ---      ---       #142
+      0100144CH   LINE      ---      ---       #143
+      0100145FH   LINE      ---      ---       #145
+      0100145FH   LINE      ---      ---       #146
+      0100146DH   LINE      ---      ---       #148
+      0100146DH   LINE      ---      ---       #149
+      01001475H   LINE      ---      ---       #150
+      01001475H   LINE      ---      ---       #151
+      0100147DH   LINE      ---      ---       #152
+      0100147DH   LINE      ---      ---       #153
+      01001480H   LINE      ---      ---       #154
+      01001492H   LINE      ---      ---       #155
+      01001498H   LINE      ---      ---       #157
+      0100149EH   LINE      ---      ---       #158
+      010014A0H   LINE      ---      ---       #159
+      010014A7H   LINE      ---      ---       #160
+      010014A7H   LINE      ---      ---       #161
+      010014AAH   LINE      ---      ---       #162
+      010014B2H   LINE      ---      ---       #163
+      010014B2H   LINE      ---      ---       #164
+      010014B6H   LINE      ---      ---       #165
+      010014B8H   LINE      ---      ---       #167
+      010014B8H   LINE      ---      ---       #168
+      010014BEH   LINE      ---      ---       #169
+      010014BEH   LINE      ---      ---       #170
+      010014C0H   LINE      ---      ---       #171
+      010014C7H   LINE      ---      ---       #172
+      010014C7H   LINE      ---      ---       #173
+      010014CAH   LINE      ---      ---       #174
+      010014CAH   LINE      ---      ---       #175
+      010014D7H   LINE      ---      ---       #176
+      010014D7H   LINE      ---      ---       #177
+      02004E8AH   SYMBOL    XDATA    VOID      tx_hid_buff
+      00000007H   SYMBOL    DATA     VOID      i
+      ---         BLOCKEND  CODE     ---       LVL=1
+      ---         BLOCKEND  CODE     ---       LVL=0
+
+      01002E12H   BLOCK     CODE     ---       LVL=0
+      01002E12H   LINE      ---      ---       #180
+      01002E16H   LINE      ---      ---       #181
+      01002E16H   LINE      ---      ---       #182
+      01002E1EH   LINE      ---      ---       #183
+      01002E1EH   LINE      ---      ---       #184
+      01002E21H   LINE      ---      ---       #185
+      01002E26H   LINE      ---      ---       #186
+      01002E29H   LINE      ---      ---       #187
+      01002E2CH   LINE      ---      ---       #188
+      01002E2CH   LINE      ---      ---       #189
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      010030DDH   BLOCK     CODE     ---       LVL=0
+      010030DDH   LINE      ---      ---       #192
+      010030DDH   LINE      ---      ---       #193
+      010030DDH   LINE      ---      ---       #194
+      010030E5H   LINE      ---      ---       #195
+      010030E5H   LINE      ---      ---       #196
+      010030E8H   LINE      ---      ---       #197
+      010030EEH   LINE      ---      ---       #198
+      010030F4H   LINE      ---      ---       #199
+      010030F7H   LINE      ---      ---       #200
+      010030F7H   LINE      ---      ---       #201
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      010015A5H   BLOCK     CODE     ---       LVL=0
+      010015A5H   LINE      ---      ---       #204
+      010015ADH   LINE      ---      ---       #205
+      010015ADH   LINE      ---      ---       #206
+      010015B9H   LINE      ---      ---       #207
+      010015BFH   LINE      ---      ---       #208
+      010015CDH   LINE      ---      ---       #209
+      010015D5H   LINE      ---      ---       #210
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      010030F8H   BLOCK     CODE     ---       LVL=0
+      010030F8H   LINE      ---      ---       #231
+      010030F8H   LINE      ---      ---       #232
+      010030F8H   BLOCK     CODE     NEAR LAB  LVL=1
+      010030F8H   LINE      ---      ---       #233
+      01003101H   LINE      ---      ---       #234
+      0100310FH   LINE      ---      ---       #235
+      01003114H   LINE      ---      ---       #237
+      0100312AH   LINE      ---      ---       #238
+      01003133H   LINE      ---      ---       #239
+      0100313AH   LINE      ---      ---       #240
+      0100313AH   LINE      ---      ---       #241
+      0100313FH   LINE      ---      ---       #242
+      01003145H   LINE      ---      ---       #243
+      0100314AH   LINE      ---      ---       #244
+      0100314AH   LINE      ---      ---       #246
+      01003154H   LINE      ---      ---       #247
+      01003154H   LINE      ---      ---       #248
+      01003159H   LINE      ---      ---       #249
+      0100315EH   LINE      ---      ---       #250
+      01003164H   LINE      ---      ---       #251
+      01003164H   LINE      ---      ---       #252
+      01003165H   LINE      ---      ---       #254
+      01003165H   LINE      ---      ---       #255
+      01003186H   LINE      ---      ---       #256
+      01003186H   LINE      ---      ---       #257
+      0100318AH   LINE      ---      ---       #258
+      0100318AH   LINE      ---      ---       #259
+      0100319EH   LINE      ---      ---       #260
+      010031BBH   LINE      ---      ---       #261
+      010031C1H   LINE      ---      ---       #262
+      010031C2H   LINE      ---      ---       #264
+      010031C2H   LINE      ---      ---       #265
+      010031E9H   LINE      ---      ---       #266
+      0100322FH   LINE      ---      ---       #267
+      01003235H   LINE      ---      ---       #268
+      01003235H   LINE      ---      ---       #269
+      01003236H   LINE      ---      ---       #270
+      01003257H   LINE      ---      ---       #271
+      01003257H   LINE      ---      ---       #272
+      0100325BH   LINE      ---      ---       #273
+      0100325BH   LINE      ---      ---       #274
+      0100326FH   LINE      ---      ---       #275
+      0100328CH   LINE      ---      ---       #276
+      01003292H   LINE      ---      ---       #277
+      01003293H   LINE      ---      ---       #279
+      01003293H   LINE      ---      ---       #280
+      010032BAH   LINE      ---      ---       #281
+      01003300H   LINE      ---      ---       #282
+      01003306H   LINE      ---      ---       #283
+      01003306H   LINE      ---      ---       #284
+      01003307H   LINE      ---      ---       #285
+      0100331CH   LINE      ---      ---       #286
+      0100331CH   LINE      ---      ---       #287
+      01003322H   LINE      ---      ---       #288
+      01003332H   LINE      ---      ---       #289
+      01003338H   LINE      ---      ---       #290
+      01003338H   LINE      ---      ---       #291
+      01003355H   LINE      ---      ---       #292
+      0100335BH   LINE      ---      ---       #293
+      0100335BH   LINE      ---      ---       #294
+      0100335CH   LINE      ---      ---       #296
+      0100335CH   LINE      ---      ---       #297
+      0100336AH   LINE      ---      ---       #298
+      0100336AH   LINE      ---      ---       #299
+      0100336AH   LINE      ---      ---       #300
+      0100336AH   LINE      ---      ---       #301
+      02004EF5H   SYMBOL    XDATA    VOID      pEvt
+      ---         BLOCKEND  CODE     ---       LVL=1
+      ---         BLOCKEND  CODE     ---       LVL=0
+
+      010016A8H   BLOCK     CODE     ---       LVL=0
+      010016A8H   LINE      ---      ---       #305
+      010016A8H   LINE      ---      ---       #306
+      010016A8H   LINE      ---      ---       #307
+      010016B4H   LINE      ---      ---       #308
+      010016B4H   LINE      ---      ---       #309
+      010016BBH   LINE      ---      ---       #310
+      010016BBH   LINE      ---      ---       #311
+      010016C7H   LINE      ---      ---       #313
+      010016CCH   LINE      ---      ---       #314
+      010016D1H   LINE      ---      ---       #315
+      010016D9H   LINE      ---      ---       #316
+      010016E3H   LINE      ---      ---       #317
+      010016E3H   LINE      ---      ---       #318
+      010016E3H   LINE      ---      ---       #320
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01001674H   BLOCK     CODE     ---       LVL=0
+      01001674H   LINE      ---      ---       #324
+      01001674H   LINE      ---      ---       #325
+      01001674H   BLOCK     CODE     NEAR LAB  LVL=1
+      01001674H   LINE      ---      ---       #326
+      0100167DH   LINE      ---      ---       #328
+      01001682H   LINE      ---      ---       #330
+      01001690H   LINE      ---      ---       #332
+      01001693H   LINE      ---      ---       #333
+      01001693H   LINE      ---      ---       #334
+      01001698H   LINE      ---      ---       #335
+      0100169AH   LINE      ---      ---       #337
+      0100169AH   LINE      ---      ---       #338
+      010016A7H   LINE      ---      ---       #339
+      02004EF8H   SYMBOL    XDATA    VOID      pEvt
+      ---         BLOCKEND  CODE     ---       LVL=1
+      ---         BLOCKEND  CODE     ---       LVL=0
+
+      010015DFH   BLOCK     CODE     ---       LVL=0
+      010015DFH   LINE      ---      ---       #343
+      010015DFH   LINE      ---      ---       #344
+      010015DFH   LINE      ---      ---       #345
+      010015EEH   LINE      ---      ---       #347
+      010015EEH   LINE      ---      ---       #348
+      010015F1H   LINE      ---      ---       #349
+      010015F1H   LINE      ---      ---       #351
+      010015F1H   LINE      ---      ---       #372
+      010015F1H   LINE      ---      ---       #380
+      01001600H   LINE      ---      ---       #384
+      01001602H   LINE      ---      ---       #386
+      01001602H   LINE      ---      ---       #387
+      01001609H   LINE      ---      ---       #388
+      01001609H   LINE      ---      ---       #389
+      01001610H   LINE      ---      ---       #390
+      01001616H   LINE      ---      ---       #391
+      01001617H   LINE      ---      ---       #392
+      0100161EH   LINE      ---      ---       #393
+      0100161EH   LINE      ---      ---       #394
+      01001621H   LINE      ---      ---       #395
+      01001629H   LINE      ---      ---       #396
+      01001629H   LINE      ---      ---       #397
+      01001630H   LINE      ---      ---       #398
+      01001630H   LINE      ---      ---       #399
+      01001635H   LINE      ---      ---       #400
+      0100163EH   LINE      ---      ---       #401
+      01001643H   LINE      ---      ---       #402
+      01001649H   LINE      ---      ---       #403
+      01001650H   LINE      ---      ---       #405
+      01001656H   LINE      ---      ---       #406
+      01001657H   LINE      ---      ---       #407
+      0100165EH   LINE      ---      ---       #408
+      0100165EH   LINE      ---      ---       #409
+      01001663H   LINE      ---      ---       #410
+      01001667H   LINE      ---      ---       #411
+      0100166EH   LINE      ---      ---       #412
+      01001673H   LINE      ---      ---       #413
+      01001673H   LINE      ---      ---       #414
+      01001673H   LINE      ---      ---       #415
+      01001673H   LINE      ---      ---       #416
+      01001673H   LINE      ---      ---       #417
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      0100110BH   BLOCK     CODE     ---       LVL=0
+      0100110BH   LINE      ---      ---       #421
+      01001116H   LINE      ---      ---       #422
+      01001116H   BLOCK     CODE     NEAR LAB  LVL=1
+      01001116H   LINE      ---      ---       #423
+      01001119H   LINE      ---      ---       #424
+      0100111BH   LINE      ---      ---       #426
+      0100111FH   LINE      ---      ---       #427
+      0100112DH   LINE      ---      ---       #428
+      0100112DH   LINE      ---      ---       #429
+      0100114BH   LINE      ---      ---       #430
+      0100114BH   LINE      ---      ---       #431
+      01001151H   LINE      ---      ---       #432
+      01001151H   LINE      ---      ---       #433
+      01001159H   LINE      ---      ---       #436
+      0100116CH   LINE      ---      ---       #438
+      0100117AH   LINE      ---      ---       #442
+      01001180H   LINE      ---      ---       #443
+      01001180H   LINE      ---      ---       #444
+      01001182H   LINE      ---      ---       #445
+      01001188H   LINE      ---      ---       #446
+      01001188H   LINE      ---      ---       #449
+      01001197H   LINE      ---      ---       #450
+      01001197H   LINE      ---      ---       #451
+      0100119DH   LINE      ---      ---       #452
+      0100119DH   LINE      ---      ---       #453
+      010011A3H   LINE      ---      ---       #454
+      010011AAH   LINE      ---      ---       #455
+      010011AEH   LINE      ---      ---       #457
+      010011B4H   LINE      ---      ---       #458
+      010011B4H   LINE      ---      ---       #459
+      010011B9H   LINE      ---      ---       #460
+      010011BDH   LINE      ---      ---       #461
+      010011C1H   LINE      ---      ---       #462
+      010011C4H   LINE      ---      ---       #463
+      010011C6H   LINE      ---      ---       #465
+      010011C6H   LINE      ---      ---       #466
+      010011CBH   LINE      ---      ---       #467
+      010011CFH   LINE      ---      ---       #468
+      010011D3H   LINE      ---      ---       #469
+      010011D6H   LINE      ---      ---       #470
+      010011D6H   LINE      ---      ---       #471
+      010011E2H   LINE      ---      ---       #472
+      010011EEH   LINE      ---      ---       #493
+      010011F4H   LINE      ---      ---       #494
+      0100120DH   LINE      ---      ---       #497
+      0100120DH   LINE      ---      ---       #499
+      0100120DH   LINE      ---      ---       #502
+      01001215H   LINE      ---      ---       #503
+      01001215H   LINE      ---      ---       #504
+      01001223H   LINE      ---      ---       #505
+      01001223H   LINE      ---      ---       #506
+      0100124CH   LINE      ---      ---       #508
+      0100124CH   LINE      ---      ---       #509
+      01001252H   LINE      ---      ---       #511
+      01001252H   LINE      ---      ---       #512
+      0100125AH   LINE      ---      ---       #513
+      0100125AH   LINE      ---      ---       #515
+      01001268H   LINE      ---      ---       #517
+      0100126FH   LINE      ---      ---       #518
+      0100126FH   LINE      ---      ---       #519
+      01001272H   LINE      ---      ---       #520
+      01001276H   LINE      ---      ---       #521
+      01001280H   LINE      ---      ---       #522
+      01001280H   LINE      ---      ---       #524
+      01001287H   LINE      ---      ---       #525
+      01001287H   LINE      ---      ---       #526
+      0100128AH   LINE      ---      ---       #527
+      0100128FH   LINE      ---      ---       #528
+      01001298H   LINE      ---      ---       #529
+      01001298H   LINE      ---      ---       #531
+      010012ABH   LINE      ---      ---       #532
+      010012ABH   LINE      ---      ---       #533
+      010012B0H   LINE      ---      ---       #534
+      010012B4H   LINE      ---      ---       #536
+      010012BAH   LINE      ---      ---       #537
+      010012BAH   LINE      ---      ---       #538
+      010012BCH   LINE      ---      ---       #539
+      010012C2H   LINE      ---      ---       #540
+      010012C4H   LINE      ---      ---       #543
+      010012CAH   LINE      ---      ---       #544
+      010012D4H   LINE      ---      ---       #545
+      010012D4H   LINE      ---      ---       #547
+      010012D4H   LINE      ---      ---       #548
+      010012DAH   LINE      ---      ---       #549
+      010012DAH   LINE      ---      ---       #550
+      010012F0H   LINE      ---      ---       #551
+      010012FCH   LINE      ---      ---       #552
+      0100130BH   LINE      ---      ---       #553
+      0100130BH   LINE      ---      ---       #555
+      01001311H   LINE      ---      ---       #556
+      01001323H   LINE      ---      ---       #557
+      0100132AH   LINE      ---      ---       #558
+      01001334H   LINE      ---      ---       #560
+      01001339H   LINE      ---      ---       #562
+      0100133EH   LINE      ---      ---       #563
+      01001344H   LINE      ---      ---       #564
+      01001344H   LINE      ---      ---       #565
+      0100134DH   LINE      ---      ---       #566
+      01001362H   LINE      ---      ---       #568
+      0100137EH   LINE      ---      ---       #570
+      0100138EH   LINE      ---      ---       #571
+      0100138EH   LINE      ---      ---       #572
+      0100139CH   LINE      ---      ---       #573
+      010013ABH   LINE      ---      ---       #574
+      010013B3H   LINE      ---      ---       #575
+      010013B3H   LINE      ---      ---       #577
+      010013CFH   LINE      ---      ---       #578
+      010013D9H   LINE      ---      ---       #579
+      010013DFH   LINE      ---      ---       #580
+      010013E9H   LINE      ---      ---       #581
+      010013E9H   LINE      ---      ---       #583
+      02004ED4H   SYMBOL    XDATA    VOID      temp
+      02004ED5H   SYMBOL    XDATA    VOID      i
+      ---         BLOCKEND  CODE     ---       LVL=1
+      ---         BLOCKEND  CODE     ---       LVL=0
+
+      0100336BH   BLOCK     CODE     ---       LVL=0
+      0100336BH   LINE      ---      ---       #587
+      01003376H   LINE      ---      ---       #588
+      01003376H   BLOCK     CODE     NEAR LAB  LVL=1
+      01003376H   LINE      ---      ---       #589
+      01003379H   LINE      ---      ---       #590
+      0100337BH   LINE      ---      ---       #592
+      01003385H   LINE      ---      ---       #593
+      01003385H   LINE      ---      ---       #594
+      0100338BH   LINE      ---      ---       #596
+      01003397H   LINE      ---      ---       #597
+      01003397H   LINE      ---      ---       #598
+      010033B9H   LINE      ---      ---       #600
+      010033C9H   LINE      ---      ---       #601
+      010033C9H   LINE      ---      ---       #602
+      010033D7H   LINE      ---      ---       #603
+      010033D7H   LINE      ---      ---       #604
+      010033D7H   LINE      ---      ---       #605
+      010033D7H   LINE      ---      ---       #606
+      010033DDH   LINE      ---      ---       #608
+      010033E4H   LINE      ---      ---       #609
+      010033E7H   LINE      ---      ---       #610
+      010033FDH   LINE      ---      ---       #611
+      010033FDH   LINE      ---      ---       #612
+      01003402H   LINE      ---      ---       #613
+      01003408H   LINE      ---      ---       #614
+      0100340DH   LINE      ---      ---       #615
+      0100340DH   LINE      ---      ---       #617
+      0100340FH   LINE      ---      ---       #618
+      0100340FH   LINE      ---      ---       #619
+      01003415H   LINE      ---      ---       #620
+      0100341CH   LINE      ---      ---       #621
+      0100341FH   LINE      ---      ---       #622
+      0100342AH   LINE      ---      ---       #623
+      0100342AH   LINE      ---      ---       #624
+      01003431H   LINE      ---      ---       #625
+      01003436H   LINE      ---      ---       #626
+      0100343BH   LINE      ---      ---       #627
+      01003441H   LINE      ---      ---       #628
+      01003449H   LINE      ---      ---       #629
+      0100344FH   LINE      ---      ---       #630
+      01003453H   LINE      ---      ---       #631
+      01003456H   LINE      ---      ---       #633
+      01003456H   LINE      ---      ---       #634
+      01003456H   LINE      ---      ---       #635
+      01003456H   LINE      ---      ---       #636
+      01003459H   LINE      ---      ---       #637
+      01003459H   LINE      ---      ---       #639
+      01003459H   LINE      ---      ---       #640
+      01003460H   LINE      ---      ---       #641
+      01003460H   LINE      ---      ---       #642
+      01003462H   LINE      ---      ---       #643
+      01003462H   LINE      ---      ---       #645
+      01003462H   LINE      ---      ---       #646
+      01003469H   LINE      ---      ---       #647
+      0100346CH   LINE      ---      ---       #648
+      0100346CH   LINE      ---      ---       #649
+      0100346EH   LINE      ---      ---       #650
+      02004ED9H   SYMBOL    XDATA    VOID      temp
+      02004EDAH   SYMBOL    XDATA    VOID      i
+      ---         BLOCKEND  CODE     ---       LVL=1
+      ---         BLOCKEND  CODE     ---       LVL=0
+
+      0100346FH   BLOCK     CODE     ---       LVL=0
+      0100346FH   LINE      ---      ---       #655
+      0100346FH   LINE      ---      ---       #656
+      0100346FH   LINE      ---      ---       #657
+      01003474H   LINE      ---      ---       #658
+      01003477H   LINE      ---      ---       #660
+      0100347BH   LINE      ---      ---       #661
+      0100347BH   LINE      ---      ---       #662
+      01003482H   LINE      ---      ---       #663
+      01003486H   LINE      ---      ---       #665
+      0100348CH   LINE      ---      ---       #666
+      0100348DH   LINE      ---      ---       #668
+      0100348DH   LINE      ---      ---       #669
+      01003493H   LINE      ---      ---       #670
+      01003493H   LINE      ---      ---       #672
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01003494H   BLOCK     CODE     ---       LVL=0
+      01003494H   LINE      ---      ---       #675
+      0100349EH   LINE      ---      ---       #676
+      0100349EH   BLOCK     CODE     NEAR LAB  LVL=1
+      0100349EH   LINE      ---      ---       #677
+      010034A3H   LINE      ---      ---       #679
+      010034A7H   LINE      ---      ---       #680
+      010034ACH   LINE      ---      ---       #682
+      010034B3H   LINE      ---      ---       #683
+      010034BDH   LINE      ---      ---       #684
+      010034BDH   LINE      ---      ---       #685
+      010034D4H   LINE      ---      ---       #686
+      010034D4H   LINE      ---      ---       #687
+      010034DCH   LINE      ---      ---       #688
+      010034DCH   LINE      ---      ---       #689
+      010034E2H   LINE      ---      ---       #690
+      010034E4H   LINE      ---      ---       #691
+      010034E8H   LINE      ---      ---       #692
+      010034E8H   LINE      ---      ---       #693
+      010034EEH   LINE      ---      ---       #695
+      010034F0H   LINE      ---      ---       #696
+      010034F4H   LINE      ---      ---       #697
+      010034F4H   LINE      ---      ---       #698
+      010034F9H   LINE      ---      ---       #700
+      010034F9H   LINE      ---      ---       #701
+      010034FEH   LINE      ---      ---       #702
+      0100350EH   LINE      ---      ---       #703
+      0100350EH   LINE      ---      ---       #704
+      0100354CH   LINE      ---      ---       #705
+      0100354CH   LINE      ---      ---       #706
+      0100354CH   LINE      ---      ---       #707
+      01003552H   LINE      ---      ---       #708
+      01003554H   LINE      ---      ---       #709
+      01003554H   LINE      ---      ---       #710
+      0100355AH   LINE      ---      ---       #711
+      0100355CH   LINE      ---      ---       #712
+      0100355CH   LINE      ---      ---       #713
+      01003562H   LINE      ---      ---       #714
+      01003564H   LINE      ---      ---       #715
+      01003564H   LINE      ---      ---       #716
+      0100356AH   LINE      ---      ---       #717
+      0100356CH   LINE      ---      ---       #718
+      0100356CH   LINE      ---      ---       #719
+      01003572H   LINE      ---      ---       #720
+      01003574H   LINE      ---      ---       #721
+      01003574H   LINE      ---      ---       #722
+      0100357AH   LINE      ---      ---       #723
+      0100357CH   LINE      ---      ---       #724
+      0100357CH   LINE      ---      ---       #725
+      01003582H   LINE      ---      ---       #726
+      01003584H   LINE      ---      ---       #727
+      01003584H   LINE      ---      ---       #728
+      0100358AH   LINE      ---      ---       #729
+      0100358CH   LINE      ---      ---       #730
+      0100358CH   LINE      ---      ---       #731
+      01003592H   LINE      ---      ---       #732
+      01003594H   LINE      ---      ---       #733
+      01003594H   LINE      ---      ---       #734
+      0100359AH   LINE      ---      ---       #735
+      0100359CH   LINE      ---      ---       #736
+      0100359CH   LINE      ---      ---       #737
+      010035A3H   LINE      ---      ---       #738
+      010035A3H   LINE      ---      ---       #739
+      010035A9H   LINE      ---      ---       #740
+      010035ABH   LINE      ---      ---       #741
+      010035ABH   LINE      ---      ---       #742
+      010035B0H   LINE      ---      ---       #743
+      010035B2H   LINE      ---      ---       #744
+      010035B2H   LINE      ---      ---       #745
+      010035B9H   LINE      ---      ---       #746
+      010035B9H   LINE      ---      ---       #747
+      010035C2H   LINE      ---      ---       #748
+      010035C5H   LINE      ---      ---       #749
+      010035C5H   LINE      ---      ---       #750
+      010035CAH   LINE      ---      ---       #751
+      010035CCH   LINE      ---      ---       #752
+      010035CCH   LINE      ---      ---       #753
+      010035D3H   LINE      ---      ---       #754
+      010035D3H   LINE      ---      ---       #755
+      010035DCH   LINE      ---      ---       #756
+      010035DFH   LINE      ---      ---       #757
+      010035DFH   LINE      ---      ---       #758
+      010035E4H   LINE      ---      ---       #759
+      010035E6H   LINE      ---      ---       #760
+      010035E6H   LINE      ---      ---       #761
+      010035EDH   LINE      ---      ---       #762
+      010035EDH   LINE      ---      ---       #763
+      010035F6H   LINE      ---      ---       #764
+      010035F9H   LINE      ---      ---       #765
+      010035F9H   LINE      ---      ---       #766
+      010035FEH   LINE      ---      ---       #767
+      01003600H   LINE      ---      ---       #768
+      01003600H   LINE      ---      ---       #769
+      01003607H   LINE      ---      ---       #770
+      01003607H   LINE      ---      ---       #771
+      0100360EH   LINE      ---      ---       #772
+      0100360EH   LINE      ---      ---       #773
+      01003611H   LINE      ---      ---       #774
+      01003617H   LINE      ---      ---       #775
+      01003619H   LINE      ---      ---       #776
+      0100361DH   LINE      ---      ---       #777
+      0100361DH   LINE      ---      ---       #778
+      01003623H   LINE      ---      ---       #779
+      01003628H   LINE      ---      ---       #781
+      01003628H   LINE      ---      ---       #782
+      01003628H   LINE      ---      ---       #783
+      0100362DH   LINE      ---      ---       #784
+      0100362FH   LINE      ---      ---       #785
+      0100362FH   LINE      ---      ---       #786
+      01003636H   LINE      ---      ---       #787
+      01003636H   LINE      ---      ---       #788
+      0100363CH   LINE      ---      ---       #789
+      01003645H   LINE      ---      ---       #790
+      01003648H   LINE      ---      ---       #791
+      01003651H   LINE      ---      ---       #792
+      01003653H   LINE      ---      ---       #793
+      01003653H   LINE      ---      ---       #794
+      01003658H   LINE      ---      ---       #795
+      0100365AH   LINE      ---      ---       #796
+      0100365AH   LINE      ---      ---       #797
+      01003661H   LINE      ---      ---       #798
+      01003661H   LINE      ---      ---       #799
+      01003666H   LINE      ---      ---       #800
+      0100366AH   LINE      ---      ---       #801
+      0100366AH   LINE      ---      ---       #802
+      0100366FH   LINE      ---      ---       #803
+      0100366FH   LINE      ---      ---       #874
+      0100366FH   LINE      ---      ---       #875
+      0100366FH   LINE      ---      ---       #876
+      0100366FH   LINE      ---      ---       #877
+      0100366FH   LINE      ---      ---       #879
+      01003675H   LINE      ---      ---       #880
+      01003675H   LINE      ---      ---       #881
+      01003687H   LINE      ---      ---       #882
+      0100368CH   LINE      ---      ---       #883
+      0100368CH   LINE      ---      ---       #887
+      01003691H   LINE      ---      ---       #888
+      02004EFDH   SYMBOL    XDATA    VOID      temp
+      ---         BLOCKEND  CODE     ---       LVL=1
+      ---         BLOCKEND  CODE     ---       LVL=0
+
+      01002E2DH   BLOCK     CODE     ---       LVL=0
+      01002E2DH   LINE      ---      ---       #892
+      01002E38H   LINE      ---      ---       #893
+      01002E38H   BLOCK     CODE     NEAR LAB  LVL=1
+      01002E38H   LINE      ---      ---       #894
+      01002E3BH   LINE      ---      ---       #896
+      01002E49H   LINE      ---      ---       #897
+      01002E49H   LINE      ---      ---       #898
+      01002E75H   LINE      ---      ---       #900
+      01002E75H   LINE      ---      ---       #902
+      01002E7CH   LINE      ---      ---       #903
+      01002E7CH   LINE      ---      ---       #904
+      01002E82H   LINE      ---      ---       #905
+      01002E85H   LINE      ---      ---       #907
+      01002E89H   LINE      ---      ---       #908
+      01002E89H   LINE      ---      ---       #909
+      01002E8FH   LINE      ---      ---       #910
+      01002E92H   LINE      ---      ---       #911
+      01002EB2H   LINE      ---      ---       #912
+      01002EB2H   LINE      ---      ---       #913
+      01002EB6H   LINE      ---      ---       #914
+      01002EB9H   LINE      ---      ---       #915
+      01002EBDH   LINE      ---      ---       #916
+      01002EBDH   LINE      ---      ---       #917
+      01002EC3H   LINE      ---      ---       #918
+      01002EC6H   LINE      ---      ---       #919
+      01002EE6H   LINE      ---      ---       #920
+      01002EE6H   LINE      ---      ---       #921
+      01002EEAH   LINE      ---      ---       #922
+      01002EEDH   LINE      ---      ---       #923
+      01002EF1H   LINE      ---      ---       #924
+      01002EF1H   LINE      ---      ---       #925
+      01002EF7H   LINE      ---      ---       #926
+      01002EFAH   LINE      ---      ---       #927
+      01002F1AH   LINE      ---      ---       #928
+      01002F1AH   LINE      ---      ---       #929
+      01002F1EH   LINE      ---      ---       #930
+      01002F21H   LINE      ---      ---       #931
+      01002F25H   LINE      ---      ---       #932
+      01002F25H   LINE      ---      ---       #933
+      01002F2BH   LINE      ---      ---       #934
+      01002F2EH   LINE      ---      ---       #935
+      01002F4EH   LINE      ---      ---       #936
+      01002F4EH   LINE      ---      ---       #937
+      01002F53H   LINE      ---      ---       #938
+      01002F56H   LINE      ---      ---       #939
+      01002F5AH   LINE      ---      ---       #940
+      01002F5AH   LINE      ---      ---       #941
+      01002F60H   LINE      ---      ---       #942
+      01002F63H   LINE      ---      ---       #943
+      01002F83H   LINE      ---      ---       #944
+      01002F83H   LINE      ---      ---       #945
+      01002F88H   LINE      ---      ---       #946
+      01002F8BH   LINE      ---      ---       #947
+      01002F8FH   LINE      ---      ---       #948
+      01002F8FH   LINE      ---      ---       #949
+      01002F95H   LINE      ---      ---       #950
+      01002F98H   LINE      ---      ---       #951
+      01002FB8H   LINE      ---      ---       #952
+      01002FB8H   LINE      ---      ---       #953
+      01002FBEH   LINE      ---      ---       #954
+      01002FC1H   LINE      ---      ---       #955
+      01002FC5H   LINE      ---      ---       #956
+      01002FC5H   LINE      ---      ---       #957
+      01002FCBH   LINE      ---      ---       #958
+      01002FCEH   LINE      ---      ---       #959
+      01002FEEH   LINE      ---      ---       #960
+      01002FEEH   LINE      ---      ---       #961
+      01002FF4H   LINE      ---      ---       #962
+      01002FF7H   LINE      ---      ---       #963
+      01002FFBH   LINE      ---      ---       #964
+      01002FFBH   LINE      ---      ---       #965
+      01003002H   LINE      ---      ---       #966
+      01003004H   LINE      ---      ---       #967
+      01003024H   LINE      ---      ---       #968
+      01003024H   LINE      ---      ---       #969
+      0100302BH   LINE      ---      ---       #970
+      0100302DH   LINE      ---      ---       #971
+      01003031H   LINE      ---      ---       #972
+      01003031H   LINE      ---      ---       #973
+      01003038H   LINE      ---      ---       #974
+      0100303AH   LINE      ---      ---       #975
+      0100305AH   LINE      ---      ---       #976
+      0100305AH   LINE      ---      ---       #977
+      0100305FH   LINE      ---      ---       #978
+      01003061H   LINE      ---      ---       #979
+      01003065H   LINE      ---      ---       #980
+      01003065H   LINE      ---      ---       #981
+      0100306CH   LINE      ---      ---       #982
+      0100306EH   LINE      ---      ---       #984
+      0100308EH   LINE      ---      ---       #985
+      0100308EH   LINE      ---      ---       #986
+      01003092H   LINE      ---      ---       #987
+      01003094H   LINE      ---      ---       #988
+      01003098H   LINE      ---      ---       #989
+      01003098H   LINE      ---      ---       #990
+      0100309CH   LINE      ---      ---       #991
+      0100309EH   LINE      ---      ---       #992
+      010030A4H   LINE      ---      ---       #993
+      010030A4H   LINE      ---      ---       #994
+      010030A8H   LINE      ---      ---       #995
+      010030A8H   LINE      ---      ---       #998
+      010030AFH   LINE      ---      ---       #999
+      010030AFH   LINE      ---      ---       #1000
+      010030CFH   LINE      ---      ---       #1001
+      010030D3H   LINE      ---      ---       #1002
+      010030D3H   LINE      ---      ---       #1003
+      010030D3H   LINE      ---      ---       #1004
+      010030DCH   LINE      ---      ---       #1005
+      02004EE8H   SYMBOL    XDATA    VOID      i
+      ---         BLOCKEND  CODE     ---       LVL=1
+      ---         BLOCKEND  CODE     ---       LVL=0
+
+      ---         MODULE    ---      ---       KEYSCAN
+      02004EB0H   PUBLIC    XDATA    ---       ksEvtPool
+      01002890H   PUBLIC    CODE     ---       KS_GetCurrentEvt
+      01002AEAH   PUBLIC    CODE     ---       _array_is_empty
+      01002CB4H   PUBLIC    CODE     ---       KS_ScanMatrix
+      0100237AH   PUBLIC    CODE     ---       KS_Unistall
+      01001F8DH   PUBLIC    CODE     ---       KS_Initialize
+
+      01002ADCH   BLOCK     CODE     ---       LVL=0
+      01002ADCH   LINE      ---      ---       #24
+      01002ADCH   LINE      ---      ---       #25
+      01002ADCH   BLOCK     CODE     NEAR LAB  LVL=1
+      01002ADCH   LINE      ---      ---       #27
+      01002AE1H   LINE      ---      ---       #28
+      01002AE4H   LINE      ---      ---       #29
+      01002AE7H   LINE      ---      ---       #30
+      01002AE9H   LINE      ---      ---       #31
+      00000006H   SYMBOL    DATA     VOID      c
+      ---         BLOCKEND  CODE     ---       LVL=1
+      ---         BLOCKEND  CODE     ---       LVL=0
+
+      01002B1AH   BLOCK     CODE     ---       LVL=0
+      01002B1AH   LINE      ---      ---       #35
+      01002B1AH   LINE      ---      ---       #36
+      01002B1AH   BLOCK     CODE     NEAR LAB  LVL=1
+      01002B1AH   LINE      ---      ---       #37
+      01002B1FH   LINE      ---      ---       #39
+      01002B2BH   LINE      ---      ---       #40
+      01002B2BH   LINE      ---      ---       #41
+      01002B45H   LINE      ---      ---       #43
+      01002B45H   LINE      ---      ---       #45
+      01002B47H   LINE      ---      ---       #46
+      01002B47H   LINE      ---      ---       #47
+      01002B54H   LINE      ---      ---       #48
+      01002B54H   LINE      ---      ---       #49
+      01002B55H   LINE      ---      ---       #50
+      01002B55H   LINE      ---      ---       #51
+      01002B5AH   LINE      ---      ---       #56
+      01002B5CH   LINE      ---      ---       #57
+      01002B5CH   LINE      ---      ---       #58
+      01002B6EH   LINE      ---      ---       #59
+      01002B6EH   LINE      ---      ---       #60
+      01002B70H   LINE      ---      ---       #61
+      01002B72H   LINE      ---      ---       #62
+      01002B72H   LINE      ---      ---       #63
+      01002B7FH   LINE      ---      ---       #64
+      01002B7FH   LINE      ---      ---       #65
+      01002B86H   LINE      ---      ---       #66
+      01002B92H   LINE      ---      ---       #67
+      01002B94H   LINE      ---      ---       #68
+      01002B94H   LINE      ---      ---       #69
+      01002B99H   LINE      ---      ---       #72
+      01002BA1H   LINE      ---      ---       #73
+      01002BA1H   LINE      ---      ---       #74
+      01002BA7H   LINE      ---      ---       #75
+      01002BA7H   LINE      ---      ---       #76
+      01002BAEH   LINE      ---      ---       #77
+      01002BD2H   LINE      ---      ---       #78
+      01002BD2H   LINE      ---      ---       #79
+      01002BD2H   LINE      ---      ---       #81
+      00000006H   SYMBOL    DATA     VOID      i
+      00000005H   SYMBOL    DATA     VOID      full_flag
+      00000001H   SYMBOL    DATA     VOID      full
+      00000004H   SYMBOL    DATA     VOID      temp_chu
+      ---         BLOCKEND  CODE     ---       LVL=1
+      ---         BLOCKEND  CODE     ---       LVL=0
+
+      01002BD3H   BLOCK     CODE     ---       LVL=0
+      01002BD3H   LINE      ---      ---       #83
+      01002BD3H   LINE      ---      ---       #84
+      01002BD3H   BLOCK     CODE     NEAR LAB  LVL=1
+      01002BD3H   LINE      ---      ---       #85
+      01002BDAH   LINE      ---      ---       #86
+      01002BDBH   LINE      ---      ---       #88
+      01002BE9H   LINE      ---      ---       #89
+      01002BE9H   LINE      ---      ---       #90
+      01002BF0H   LINE      ---      ---       #91
+      01002BF0H   LINE      ---      ---       #92
+      01002BF3H   LINE      ---      ---       #93
+      01002BF3H   LINE      ---      ---       #94
+      01002BF5H   LINE      ---      ---       #96
+      01002BFBH   LINE      ---      ---       #98
+      01002C07H   LINE      ---      ---       #99
+      01002C07H   LINE      ---      ---       #100
+      01002C22H   LINE      ---      ---       #102
+      01002C22H   LINE      ---      ---       #105
+      01002C24H   LINE      ---      ---       #106
+      01002C24H   LINE      ---      ---       #107
+      01002C27H   LINE      ---      ---       #108
+      01002C27H   LINE      ---      ---       #109
+      01002C35H   LINE      ---      ---       #110
+      01002C39H   LINE      ---      ---       #111
+      01002C44H   LINE      ---      ---       #112
+      01002C44H   LINE      ---      ---       #113
+      01002C46H   LINE      ---      ---       #114
+      01002C46H   LINE      ---      ---       #115
+      01002C48H   LINE      ---      ---       #117
+      01002C48H   LINE      ---      ---       #118
+      01002C60H   LINE      ---      ---       #119
+      01002C6DH   LINE      ---      ---       #120
+      01002C6DH   LINE      ---      ---       #121
+      01002C71H   LINE      ---      ---       #122
+      01002C7CH   LINE      ---      ---       #123
+      01002C7CH   LINE      ---      ---       #124
+      01002C7CH   LINE      ---      ---       #125
+      01002C81H   LINE      ---      ---       #128
+      01002C87H   LINE      ---      ---       #129
+      01002C87H   LINE      ---      ---       #130
+      01002C8EH   LINE      ---      ---       #131
+      01002CB3H   LINE      ---      ---       #132
+      01002CB3H   LINE      ---      ---       #134
+      00000006H   SYMBOL    DATA     VOID      i
+      02004F1CH   SYMBOL    XDATA    VOID      full_flag
+      00000005H   SYMBOL    DATA     VOID      temp_chu
+      00000004H   SYMBOL    DATA     VOID      found
+      ---         BLOCKEND  CODE     ---       LVL=1
+      ---         BLOCKEND  CODE     ---       LVL=0
+
+      01003692H   BLOCK     CODE     ---       LVL=0
+      01003692H   LINE      ---      ---       #136
+      01003692H   LINE      ---      ---       #137
+      01003692H   BLOCK     CODE     NEAR LAB  LVL=1
+      01003692H   LINE      ---      ---       #138
+      01003697H   LINE      ---      ---       #140
+      010036A2H   LINE      ---      ---       #141
+      010036A6H   LINE      ---      ---       #142
+      010036AEH   LINE      ---      ---       #143
+      02004F1DH   SYMBOL    XDATA    VOID      i
+      ---         BLOCKEND  CODE     ---       LVL=1
+      ---         BLOCKEND  CODE     ---       LVL=0
+
+      01001F99H   BLOCK     CODE     ---       LVL=0
+      01001F99H   LINE      ---      ---       #145
+      01001F99H   LINE      ---      ---       #146
+      01001F99H   BLOCK     CODE     NEAR LAB  LVL=1
+      01001F99H   LINE      ---      ---       #147
+      01001F9EH   LINE      ---      ---       #148
+      01001FAAH   LINE      ---      ---       #149
+      01001FAFH   LINE      ---      ---       #150
+      01001FB7H   LINE      ---      ---       #151
+      02004F1EH   SYMBOL    XDATA    VOID      i
+      ---         BLOCKEND  CODE     ---       LVL=1
+      ---         BLOCKEND  CODE     ---       LVL=0
+
+      01001F8DH   BLOCK     CODE     ---       LVL=0
+      01001F8DH   LINE      ---      ---       #153
+      01001F8DH   LINE      ---      ---       #154
+      01001F8DH   LINE      ---      ---       #155
+      01001F92H   LINE      ---      ---       #156
+      01001F94H   LINE      ---      ---       #157
+      01001F96H   LINE      ---      ---       #158
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      0100237AH   BLOCK     CODE     ---       LVL=0
+      0100237AH   LINE      ---      ---       #162
+      0100237AH   LINE      ---      ---       #163
+      0100237AH   BLOCK     CODE     NEAR LAB  LVL=1
+      0100237AH   LINE      ---      ---       #164
+      0100237CH   LINE      ---      ---       #165
+      01002380H   LINE      ---      ---       #166
+      01002381H   LINE      ---      ---       #167
+      01002382H   LINE      ---      ---       #168
+      01002389H   LINE      ---      ---       #169
+      01002392H   LINE      ---      ---       #170
+      010023A2H   LINE      ---      ---       #171
+      010023B5H   LINE      ---      ---       #172
+      010023C2H   LINE      ---      ---       #173
+      010023CFH   LINE      ---      ---       #174
+      010023D2H   LINE      ---      ---       #176
+      010023D4H   LINE      ---      ---       #178
+      010023DCH   LINE      ---      ---       #180
+      010023E2H   LINE      ---      ---       #181
+      010023E2H   LINE      ---      ---       #182
+      010023E6H   LINE      ---      ---       #183
+      010023EAH   LINE      ---      ---       #184
+      010023EEH   LINE      ---      ---       #185
+      010023F2H   LINE      ---      ---       #186
+      010023F6H   LINE      ---      ---       #187
+      010023FAH   LINE      ---      ---       #188
+      010023FEH   LINE      ---      ---       #189
+      01002402H   LINE      ---      ---       #190
+      01002402H   LINE      ---      ---       #192
+      01002402H   LINE      ---      ---       #193
+      0100240BH   LINE      ---      ---       #194
+      01002411H   LINE      ---      ---       #195
+      01002411H   LINE      ---      ---       #197
+      00000007H   SYMBOL    DATA     VOID      i
+      02004F1FH   SYMBOL    XDATA    VOID      temp
+      00000006H   SYMBOL    DATA     VOID      tgroup
+      00000005H   SYMBOL    DATA     VOID      tgpionum
+      ---         BLOCKEND  CODE     ---       LVL=1
+      ---         BLOCKEND  CODE     ---       LVL=0
+
+      01002CB4H   BLOCK     CODE     ---       LVL=0
+      01002CB4H   LINE      ---      ---       #200
+      01002CB4H   LINE      ---      ---       #201
+      01002CB4H   BLOCK     CODE     NEAR LAB  LVL=1
+      01002CB4H   LINE      ---      ---       #202
+      01002CB6H   LINE      ---      ---       #203
+      01002CBAH   LINE      ---      ---       #204
+      01002CBBH   LINE      ---      ---       #205
+      01002CBCH   LINE      ---      ---       #206
+      01002CBEH   LINE      ---      ---       #207
+      01002CC0H   LINE      ---      ---       #208
+      01002CC7H   LINE      ---      ---       #209
+      01002CD0H   LINE      ---      ---       #210
+      01002CE0H   LINE      ---      ---       #211
+      01002D40H   LINE      ---      ---       #212
+      01002D43H   LINE      ---      ---       #214
+      01002D4CH   LINE      ---      ---       #215
+      01002D55H   LINE      ---      ---       #216
+      01002D65H   LINE      ---      ---       #217
+      01002DC5H   LINE      ---      ---       #218
+      01002DC8H   LINE      ---      ---       #220
+      01002DD1H   LINE      ---      ---       #221
+      01002DEBH   LINE      ---      ---       #222
+      01002E0EH   LINE      ---      ---       #223
+      01002E0EH   LINE      ---      ---       #224
+      01002E11H   LINE      ---      ---       #225
+      00000007H   SYMBOL    DATA     VOID      i
+      02004EFEH   SYMBOL    XDATA    VOID      j
+      00000006H   SYMBOL    DATA     VOID      tgroup
+      00000005H   SYMBOL    DATA     VOID      tgpionum
+      02004EFFH   SYMBOL    XDATA    VOID      temp
+      02004F00H   SYMBOL    XDATA    VOID      check
+      ---         BLOCKEND  CODE     ---       LVL=1
+      ---         BLOCKEND  CODE     ---       LVL=0
+
+      01002AEAH   BLOCK     CODE     ---       LVL=0
+      01002AEAH   LINE      ---      ---       #227
+      01002AF5H   LINE      ---      ---       #228
+      01002AF5H   BLOCK     CODE     NEAR LAB  LVL=1
+      01002AF5H   LINE      ---      ---       #230
+      01002AFCH   LINE      ---      ---       #231
+      01002AFCH   LINE      ---      ---       #232
+      01002B11H   LINE      ---      ---       #233
+      01002B14H   LINE      ---      ---       #234
+      01002B17H   LINE      ---      ---       #235
+      01002B19H   LINE      ---      ---       #236
+      00000007H   SYMBOL    DATA     VOID      i
+      ---         BLOCKEND  CODE     ---       LVL=1
+      ---         BLOCKEND  CODE     ---       LVL=0
+
+      01002890H   BLOCK     CODE     ---       LVL=0
+      01002890H   LINE      ---      ---       #239
+      01002890H   LINE      ---      ---       #240
+      01002890H   BLOCK     CODE     NEAR LAB  LVL=1
+      01002890H   LINE      ---      ---       #242
+      01002895H   LINE      ---      ---       #243
+      01002897H   LINE      ---      ---       #244
+      01002899H   LINE      ---      ---       #245
+      0100289BH   LINE      ---      ---       #246
+      0100289DH   LINE      ---      ---       #247
+      0100289FH   LINE      ---      ---       #248
+      010028A1H   LINE      ---      ---       #249
+      010028A3H   LINE      ---      ---       #250
+      010028A5H   LINE      ---      ---       #251
+      010028A7H   LINE      ---      ---       #252
+      010028A9H   LINE      ---      ---       #254
+      010028ABH   LINE      ---      ---       #256
+      010028D9H   LINE      ---      ---       #258
+      010028D9H   LINE      ---      ---       #259
+      010028E0H   LINE      ---      ---       #260
+      010028E2H   LINE      ---      ---       #262
+      010028E2H   LINE      ---      ---       #263
+      010028E9H   LINE      ---      ---       #264
+      010028EEH   LINE      ---      ---       #265
+      010028EEH   LINE      ---      ---       #267
+      01002900H   LINE      ---      ---       #268
+      01002900H   LINE      ---      ---       #269
+      0100290FH   LINE      ---      ---       #270
+      01002918H   LINE      ---      ---       #271
+      0100291FH   LINE      ---      ---       #272
+      0100291FH   LINE      ---      ---       #273
+      0100292EH   LINE      ---      ---       #274
+      0100292EH   LINE      ---      ---       #275
+      01002949H   LINE      ---      ---       #276
+      01002949H   LINE      ---      ---       #277
+      01002959H   LINE      ---      ---       #278
+      01002959H   LINE      ---      ---       #279
+      01002962H   LINE      ---      ---       #280
+      01002962H   LINE      ---      ---       #281
+      01002991H   LINE      ---      ---       #282
+      01002991H   LINE      ---      ---       #283
+      01002997H   LINE      ---      ---       #284
+      01002999H   LINE      ---      ---       #285
+      01002999H   LINE      ---      ---       #286
+      01002999H   LINE      ---      ---       #287
+      010029A1H   LINE      ---      ---       #288
+      010029A1H   LINE      ---      ---       #289
+      010029A9H   LINE      ---      ---       #290
+      010029A9H   LINE      ---      ---       #292
+      010029B0H   LINE      ---      ---       #293
+      010029B0H   LINE      ---      ---       #294
+      010029B8H   LINE      ---      ---       #295
+      010029B8H   LINE      ---      ---       #296
+      010029C0H   LINE      ---      ---       #297
+      010029C8H   LINE      ---      ---       #299
+      010029DAH   LINE      ---      ---       #300
+      010029DAH   LINE      ---      ---       #301
+      010029F6H   LINE      ---      ---       #302
+      01002A09H   LINE      ---      ---       #303
+      01002A0FH   LINE      ---      ---       #304
+      01002A0FH   LINE      ---      ---       #305
+      01002A11H   LINE      ---      ---       #306
+      01002A13H   LINE      ---      ---       #308
+      01002A13H   LINE      ---      ---       #310
+      01002A19H   LINE      ---      ---       #311
+      01002A20H   LINE      ---      ---       #312
+      01002A38H   LINE      ---      ---       #313
+      01002A47H   LINE      ---      ---       #314
+      01002A47H   LINE      ---      ---       #315
+      01002A4EH   LINE      ---      ---       #316
+      01002A4EH   LINE      ---      ---       #317
+      01002A5FH   LINE      ---      ---       #318
+      01002A73H   LINE      ---      ---       #319
+      01002A7AH   LINE      ---      ---       #320
+      01002A7AH   LINE      ---      ---       #321
+      01002A81H   LINE      ---      ---       #322
+      01002A83H   LINE      ---      ---       #324
+      01002A83H   LINE      ---      ---       #325
+      01002A8AH   LINE      ---      ---       #326
+      01002A8AH   LINE      ---      ---       #327
+      01002A8AH   LINE      ---      ---       #328
+      01002A92H   LINE      ---      ---       #329
+      01002A9AH   LINE      ---      ---       #330
+      01002AA2H   LINE      ---      ---       #331
+      01002AA8H   LINE      ---      ---       #332
+      01002AA8H   LINE      ---      ---       #333
+      01002AB0H   LINE      ---      ---       #335
+      01002ABEH   LINE      ---      ---       #336
+      01002ABEH   LINE      ---      ---       #337
+      01002AC1H   LINE      ---      ---       #338
+      01002AC1H   LINE      ---      ---       #341
+      01002ACEH   LINE      ---      ---       #342
+      01002ACEH   LINE      ---      ---       #343
+      01002AD5H   LINE      ---      ---       #344
+      01002AD5H   LINE      ---      ---       #346
+      01002AD5H   LINE      ---      ---       #347
+      01002ADBH   LINE      ---      ---       #348
+      01002ADBH   LINE      ---      ---       #351
+      02004E94H   SYMBOL    XDATA    VOID      i
+      02004E95H   SYMBOL    XDATA    VOID      j
+      02004E96H   SYMBOL    XDATA    VOID      k
+      02004E97H   SYMBOL    XDATA    VOID      temp
+      02004E98H   SYMBOL    XDATA    VOID      flag
+      02004E99H   SYMBOL    XDATA    VOID      offset
+      02004E9AH   SYMBOL    XDATA    VOID      state
+      02004E9BH   SYMBOL    XDATA    VOID      keyCounttemp
+      02004E9CH   SYMBOL    XDATA    VOID      key_value_temp
+      02004E9DH   SYMBOL    XDATA    VOID      ghost
+      02004E9EH   SYMBOL    XDATA    VOID      rawCount
+      ---         BLOCKEND  CODE     ---       LVL=1
+      ---         BLOCKEND  CODE     ---       LVL=0
+
+      ---         MODULE    ---      ---       LED
+      01000DBDH   PUBLIC    CODE     ---       backlight_led_process
+      01003937H   PUBLIC    CODE     ---       LED_Breath_3
+      0100391AH   PUBLIC    CODE     ---       LED_Breath_2
+      010038FDH   PUBLIC    CODE     ---       LED_Breath_1
+      01003761H   PUBLIC    CODE     ---       LED_backlight_breath
+      01000F86H   PUBLIC    CODE     ---       LED_backlight_neno
+      01000E9DH   PUBLIC    CODE     ---       LED_handle
+      01000FEBH   PUBLIC    CODE     ---       LED_device_poweroff
+      01000FE5H   PUBLIC    CODE     ---       LED_device_poweron
+      01000CACH   PUBLIC    CODE     ---       LED_all_shutdown
+
+      01000CAAH   BLOCK     CODE     ---       LVL=0
+      01000CACH   LINE      ---      ---       #4
+      01000CACH   LINE      ---      ---       #5
+      01000CACH   LINE      ---      ---       #6
+      01000CB2H   LINE      ---      ---       #7
+      01000CB8H   LINE      ---      ---       #8
+      01000CBEH   LINE      ---      ---       #9
+      01000CC4H   LINE      ---      ---       #10
+      01000CCAH   LINE      ---      ---       #11
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01000FE5H   BLOCK     CODE     ---       LVL=0
+      01000FE5H   LINE      ---      ---       #14
+      01000FE5H   LINE      ---      ---       #15
+      01000FE5H   LINE      ---      ---       #17
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01000FEBH   BLOCK     CODE     ---       LVL=0
+      01000FEBH   LINE      ---      ---       #22
+      01000FEBH   LINE      ---      ---       #23
+      01000FEBH   LINE      ---      ---       #25
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01000E9DH   BLOCK     CODE     ---       LVL=0
+      01000E9DH   LINE      ---      ---       #27
+      01000E9DH   LINE      ---      ---       #28
+      01000E9DH   LINE      ---      ---       #29
+      01000EA7H   LINE      ---      ---       #32
+      01000EADH   LINE      ---      ---       #33
+      01000EB5H   LINE      ---      ---       #35
+      01000EBBH   LINE      ---      ---       #38
+      01000ECBH   LINE      ---      ---       #39
+      01000ECBH   LINE      ---      ---       #40
+      01000ECDH   LINE      ---      ---       #42
+      01000ED4H   LINE      ---      ---       #43
+      01000ED4H   LINE      ---      ---       #44
+      01000ED6H   LINE      ---      ---       #45
+      01000ED8H   LINE      ---      ---       #46
+      01000EDFH   LINE      ---      ---       #47
+      01000EDFH   LINE      ---      ---       #48
+      01000EE5H   LINE      ---      ---       #49
+      01000EE5H   LINE      ---      ---       #50
+      01000EEBH   LINE      ---      ---       #51
+      01000EF1H   LINE      ---      ---       #52
+      01000EF1H   LINE      ---      ---       #53
+      01000EF3H   LINE      ---      ---       #55
+      01000EF3H   LINE      ---      ---       #56
+      01000EFAH   LINE      ---      ---       #57
+      01000EFAH   LINE      ---      ---       #58
+      01000EFCH   LINE      ---      ---       #59
+      01000F00H   LINE      ---      ---       #60
+      01000F06H   LINE      ---      ---       #61
+      01000F06H   LINE      ---      ---       #62
+      01000F06H   LINE      ---      ---       #65
+      01000F0CH   LINE      ---      ---       #66
+      01000F0CH   LINE      ---      ---       #67
+      01000F1BH   LINE      ---      ---       #68
+      01000F1BH   LINE      ---      ---       #70
+      01000F22H   LINE      ---      ---       #71
+      01000F22H   LINE      ---      ---       #72
+      01000F28H   LINE      ---      ---       #73
+      01000F2AH   LINE      ---      ---       #75
+      01000F2AH   LINE      ---      ---       #76
+      01000F30H   LINE      ---      ---       #77
+      01000F30H   LINE      ---      ---       #79
+      01000F37H   LINE      ---      ---       #80
+      01000F37H   LINE      ---      ---       #81
+      01000F3DH   LINE      ---      ---       #82
+      01000F3DH   LINE      ---      ---       #84
+      01000F3DH   LINE      ---      ---       #85
+      01000F43H   LINE      ---      ---       #86
+      01000F43H   LINE      ---      ---       #88
+      01000F43H   LINE      ---      ---       #90
+      01000F43H   LINE      ---      ---       #91
+      01000F49H   LINE      ---      ---       #92
+      01000F4FH   LINE      ---      ---       #93
+      01000F4FH   LINE      ---      ---       #94
+      01000F4FH   LINE      ---      ---       #96
+      01000F4FH   LINE      ---      ---       #97
+      01000F55H   LINE      ---      ---       #98
+      01000F55H   LINE      ---      ---       #99
+      01000F55H   LINE      ---      ---       #101
+      01000F55H   LINE      ---      ---       #102
+      01000F5BH   LINE      ---      ---       #103
+      01000F5BH   LINE      ---      ---       #105
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01000F86H   BLOCK     CODE     ---       LVL=0
+      01000F86H   LINE      ---      ---       #107
+      01000F86H   LINE      ---      ---       #108
+      01000F86H   LINE      ---      ---       #109
+      01000F8AH   LINE      ---      ---       #110
+      01000F90H   LINE      ---      ---       #111
+      01000F96H   LINE      ---      ---       #112
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01003761H   BLOCK     CODE     ---       LVL=0
+      01003761H   LINE      ---      ---       #116
+      01003761H   LINE      ---      ---       #117
+      01003761H   LINE      ---      ---       #119
+      01003770H   LINE      ---      ---       #120
+      01003770H   LINE      ---      ---       #121
+      01003778H   LINE      ---      ---       #122
+      0100377EH   LINE      ---      ---       #123
+      0100377EH   LINE      ---      ---       #124
+      01003783H   LINE      ---      ---       #128
+      01003783H   LINE      ---      ---       #131
+      0100378EH   LINE      ---      ---       #132
+      0100378EH   LINE      ---      ---       #134
+      0100379DH   LINE      ---      ---       #135
+      0100379DH   LINE      ---      ---       #137
+      010037A1H   LINE      ---      ---       #138
+      010037A1H   LINE      ---      ---       #139
+      010037ABH   LINE      ---      ---       #140
+      010037ABH   LINE      ---      ---       #141
+      010037AEH   LINE      ---      ---       #142
+      010037B3H   LINE      ---      ---       #143
+      010037B6H   LINE      ---      ---       #145
+      010037C7H   LINE      ---      ---       #146
+      010037CDH   LINE      ---      ---       #147
+      010037D0H   LINE      ---      ---       #149
+      010037D0H   LINE      ---      ---       #150
+      010037D8H   LINE      ---      ---       #151
+      010037DEH   LINE      ---      ---       #153
+      010037DEH   LINE      ---      ---       #154
+      010037E3H   LINE      ---      ---       #155
+      010037E6H   LINE      ---      ---       #156
+      010037E9H   LINE      ---      ---       #157
+      010037ECH   LINE      ---      ---       #158
+      010037EFH   LINE      ---      ---       #159
+      010037EFH   LINE      ---      ---       #160
+      010037EFH   LINE      ---      ---       #161
+      010037F2H   LINE      ---      ---       #162
+      010037FFH   LINE      ---      ---       #163
+      010037FFH   LINE      ---      ---       #165
+      01003803H   LINE      ---      ---       #166
+      01003803H   LINE      ---      ---       #167
+      0100380DH   LINE      ---      ---       #168
+      0100380DH   LINE      ---      ---       #169
+      01003810H   LINE      ---      ---       #170
+      01003815H   LINE      ---      ---       #171
+      01003817H   LINE      ---      ---       #172
+      01003826H   LINE      ---      ---       #173
+      0100382CH   LINE      ---      ---       #175
+      0100382EH   LINE      ---      ---       #177
+      0100382EH   LINE      ---      ---       #178
+      01003836H   LINE      ---      ---       #179
+      0100383BH   LINE      ---      ---       #181
+      0100383BH   LINE      ---      ---       #182
+      01003840H   LINE      ---      ---       #183
+      01003844H   LINE      ---      ---       #184
+      01003849H   LINE      ---      ---       #185
+      0100384BH   LINE      ---      ---       #186
+      0100384FH   LINE      ---      ---       #187
+      0100384FH   LINE      ---      ---       #188
+      0100384FH   LINE      ---      ---       #189
+      01003851H   LINE      ---      ---       #190
+      0100385FH   LINE      ---      ---       #191
+      0100385FH   LINE      ---      ---       #193
+      01003863H   LINE      ---      ---       #194
+      01003863H   LINE      ---      ---       #195
+      0100386DH   LINE      ---      ---       #196
+      0100386DH   LINE      ---      ---       #197
+      01003870H   LINE      ---      ---       #198
+      01003875H   LINE      ---      ---       #199
+      01003877H   LINE      ---      ---       #200
+      01003882H   LINE      ---      ---       #201
+      01003888H   LINE      ---      ---       #202
+      0100388AH   LINE      ---      ---       #204
+      0100388AH   LINE      ---      ---       #205
+      01003892H   LINE      ---      ---       #206
+      01003897H   LINE      ---      ---       #208
+      01003897H   LINE      ---      ---       #209
+      0100389CH   LINE      ---      ---       #210
+      010038A0H   LINE      ---      ---       #211
+      010038A2H   LINE      ---      ---       #212
+      010038A6H   LINE      ---      ---       #213
+      010038A8H   LINE      ---      ---       #214
+      010038A8H   LINE      ---      ---       #215
+      010038A8H   LINE      ---      ---       #216
+      010038AAH   LINE      ---      ---       #219
+      010038AAH   LINE      ---      ---       #220
+      010038B0H   LINE      ---      ---       #221
+      010038B4H   LINE      ---      ---       #222
+      010038B7H   LINE      ---      ---       #223
+      010038B9H   LINE      ---      ---       #224
+      010038BFH   LINE      ---      ---       #225
+      010038C3H   LINE      ---      ---       #226
+      010038C7H   LINE      ---      ---       #227
+      010038C7H   LINE      ---      ---       #229
+      010038CCH   LINE      ---      ---       #230
+      010038D1H   LINE      ---      ---       #231
+      010038D8H   LINE      ---      ---       #232
+      010038DAH   LINE      ---      ---       #233
+      010038E1H   LINE      ---      ---       #234
+      010038E3H   LINE      ---      ---       #235
+      010038EAH   LINE      ---      ---       #236
+      010038ECH   LINE      ---      ---       #238
+      010038F1H   LINE      ---      ---       #239
+      010038F2H   LINE      ---      ---       #241
+      010038F2H   LINE      ---      ---       #242
+      010038FCH   LINE      ---      ---       #243
+      010038FCH   LINE      ---      ---       #244
+      010038FCH   LINE      ---      ---       #246
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      010038FDH   BLOCK     CODE     ---       LVL=0
+      010038FDH   LINE      ---      ---       #249
+      010038FDH   LINE      ---      ---       #250
+      010038FDH   LINE      ---      ---       #251
+      01003901H   LINE      ---      ---       #252
+      0100390AH   LINE      ---      ---       #253
+      01003912H   LINE      ---      ---       #254
+      01003919H   LINE      ---      ---       #255
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      0100391AH   BLOCK     CODE     ---       LVL=0
+      0100391AH   LINE      ---      ---       #256
+      0100391AH   LINE      ---      ---       #257
+      0100391AH   LINE      ---      ---       #258
+      0100391EH   LINE      ---      ---       #259
+      01003927H   LINE      ---      ---       #260
+      0100392FH   LINE      ---      ---       #261
+      01003936H   LINE      ---      ---       #263
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01003937H   BLOCK     CODE     ---       LVL=0
+      01003937H   LINE      ---      ---       #264
+      01003937H   LINE      ---      ---       #265
+      01003937H   LINE      ---      ---       #266
+      0100393BH   LINE      ---      ---       #267
+      01003944H   LINE      ---      ---       #268
+      0100394CH   LINE      ---      ---       #269
+      01003953H   LINE      ---      ---       #271
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01000DBDH   BLOCK     CODE     ---       LVL=0
+      01000DBDH   LINE      ---      ---       #273
+      01000DBDH   LINE      ---      ---       #274
+      01000DBDH   LINE      ---      ---       #275
+      01000DCBH   LINE      ---      ---       #276
+      01000DE3H   LINE      ---      ---       #277
+      01000DE3H   LINE      ---      ---       #278
+      01000DF2H   LINE      ---      ---       #279
+      01000DF2H   LINE      ---      ---       #280
+      01000DF2H   LINE      ---      ---       #281
+      01000DFBH   LINE      ---      ---       #282
+      01000DFBH   LINE      ---      ---       #283
+      01000DFBH   LINE      ---      ---       #284
+      01000DFEH   LINE      ---      ---       #285
+      01000DFEH   LINE      ---      ---       #286
+      01000DFEH   LINE      ---      ---       #287
+      01000E04H   LINE      ---      ---       #288
+      01000E04H   LINE      ---      ---       #289
+      01000E09H   LINE      ---      ---       #290
+      01000E12H   LINE      ---      ---       #291
+      01000E12H   LINE      ---      ---       #292
+      01000E19H   LINE      ---      ---       #293
+      01000E19H   LINE      ---      ---       #294
+      01000E1FH   LINE      ---      ---       #295
+      01000E28H   LINE      ---      ---       #296
+      01000E28H   LINE      ---      ---       #297
+      01000E2FH   LINE      ---      ---       #298
+      01000E2FH   LINE      ---      ---       #299
+      01000E35H   LINE      ---      ---       #300
+      01000E3EH   LINE      ---      ---       #301
+      01000E3EH   LINE      ---      ---       #302
+      01000E45H   LINE      ---      ---       #303
+      01000E45H   LINE      ---      ---       #304
+      01000E4BH   LINE      ---      ---       #305
+      01000E54H   LINE      ---      ---       #306
+      01000E54H   LINE      ---      ---       #307
+      01000E5BH   LINE      ---      ---       #308
+      01000E5BH   LINE      ---      ---       #309
+      01000E61H   LINE      ---      ---       #310
+      01000E6AH   LINE      ---      ---       #311
+      01000E6AH   LINE      ---      ---       #312
+      01000E71H   LINE      ---      ---       #313
+      01000E71H   LINE      ---      ---       #314
+      01000E77H   LINE      ---      ---       #315
+      01000E80H   LINE      ---      ---       #316
+      01000E80H   LINE      ---      ---       #317
+      01000E87H   LINE      ---      ---       #318
+      01000E87H   LINE      ---      ---       #319
+      01000E8DH   LINE      ---      ---       #320
+      01000E96H   LINE      ---      ---       #321
+      01000E96H   LINE      ---      ---       #322
+      01000E96H   LINE      ---      ---       #323
+      01000E96H   LINE      ---      ---       #324
+      01000E96H   LINE      ---      ---       #325
+      01000E9CH   LINE      ---      ---       #326
+      01000E9CH   LINE      ---      ---       #329
+      01000E9CH   LINE      ---      ---       #330
+      01000E9CH   LINE      ---      ---       #331
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      ---         MODULE    ---      ---       SYS
+      01002412H   PUBLIC    CODE     ---       YC_System_Main
+      01000B71H   PUBLIC    CODE     ---       kb_button_press_timer500ms
+      01002207H   PUBLIC    CODE     ---       YC_pairing_timerout_500ms
+      010020ABH   PUBLIC    CODE     ---       YC_wait_disconnect_timer500ms
+      010016E4H   PUBLIC    CODE     ---       YC_connect_timeout_500ms
+      0100212AH   PUBLIC    CODE     ---       LED_timer500ms
+      01000FDCH   PUBLIC    CODE     ---       System_Reset_Connect
+      010017A6H   PUBLIC    CODE     ---       System_G24_long_lpm
+      01000FD8H   PUBLIC    CODE     ---       System_long_sleep
+      01003984H   PUBLIC    CODE     ---       System_Software_init
+
+      01001504H   BLOCK     CODE     ---       LVL=0
+      01001504H   LINE      ---      ---       #11
+      01001504H   LINE      ---      ---       #12
+      01001504H   LINE      ---      ---       #13
+      01001510H   LINE      ---      ---       #14
+      0100151CH   LINE      ---      ---       #15
+      01001528H   LINE      ---      ---       #16
+      01001534H   LINE      ---      ---       #17
+      01001540H   LINE      ---      ---       #18
+      0100154CH   LINE      ---      ---       #20
+      01001551H   LINE      ---      ---       #21
+      01001555H   LINE      ---      ---       #22
+      01001559H   LINE      ---      ---       #24
+      0100155DH   LINE      ---      ---       #25
+      01001561H   LINE      ---      ---       #26
+      01001565H   LINE      ---      ---       #27
+      01001569H   LINE      ---      ---       #28
+      0100156DH   LINE      ---      ---       #29
+      01001571H   LINE      ---      ---       #30
+      01001575H   LINE      ---      ---       #31
+      01001579H   LINE      ---      ---       #32
+      0100157DH   LINE      ---      ---       #33
+      01001581H   LINE      ---      ---       #34
+      01001585H   LINE      ---      ---       #35
+      01001589H   LINE      ---      ---       #36
+      0100158DH   LINE      ---      ---       #38
+      01001591H   LINE      ---      ---       #39
+      01001597H   LINE      ---      ---       #40
+      0100159BH   LINE      ---      ---       #41
+      010015A0H   LINE      ---      ---       #42
+      010015A4H   LINE      ---      ---       #43
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01001FBFH   BLOCK     CODE     ---       LVL=0
+      01001FBFH   LINE      ---      ---       #45
+      01001FBFH   LINE      ---      ---       #46
+      01001FBFH   LINE      ---      ---       #47
+      01001FC5H   LINE      ---      ---       #48
+      01001FC8H   LINE      ---      ---       #49
+      01001FCAH   LINE      ---      ---       #50
+      01001FCCH   LINE      ---      ---       #51
+      01001FCEH   LINE      ---      ---       #52
+      01001FD1H   LINE      ---      ---       #53
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01001FB8H   BLOCK     CODE     ---       LVL=0
+      01001FB8H   LINE      ---      ---       #55
+      01001FB8H   LINE      ---      ---       #56
+      01001FB8H   LINE      ---      ---       #57
+      01001FBAH   LINE      ---      ---       #58
+      01001FBCH   LINE      ---      ---       #59
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01003984H   BLOCK     CODE     ---       LVL=0
+      01003984H   LINE      ---      ---       #63
+      01003984H   LINE      ---      ---       #64
+      01003984H   LINE      ---      ---       #65
+      01003987H   LINE      ---      ---       #66
+      01003989H   LINE      ---      ---       #67
+      0100398FH   LINE      ---      ---       #68
+      01003994H   LINE      ---      ---       #69
+      0100399AH   LINE      ---      ---       #70
+      010039A2H   LINE      ---      ---       #71
+      010039AAH   LINE      ---      ---       #72
+      010039B2H   LINE      ---      ---       #73
+      010039B8H   LINE      ---      ---       #74
+      010039BDH   LINE      ---      ---       #75
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01000FDCH   BLOCK     CODE     ---       LVL=0
+      01000FDCH   LINE      ---      ---       #77
+      01000FDCH   LINE      ---      ---       #78
+      01000FDCH   LINE      ---      ---       #79
+      01000FE2H   LINE      ---      ---       #80
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01000FD8H   BLOCK     CODE     ---       LVL=0
+      01000FD8H   LINE      ---      ---       #83
+      01000FD8H   LINE      ---      ---       #84
+      01000FD8H   LINE      ---      ---       #87
+      01000FD8H   LINE      ---      ---       #88
+      01000FD8H   LINE      ---      ---       #90
+      01000FD8H   LINE      ---      ---       #91
+      01000FD8H   LINE      ---      ---       #92
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      010017A6H   BLOCK     CODE     ---       LVL=0
+      010017A6H   LINE      ---      ---       #94
+      010017A6H   LINE      ---      ---       #95
+      010017A6H   LINE      ---      ---       #96
+      010017ACH   LINE      ---      ---       #98
+      010017B1H   LINE      ---      ---       #99
+      010017B3H   LINE      ---      ---       #100
+      010017B5H   LINE      ---      ---       #101
+      010017BBH   LINE      ---      ---       #102
+      010017BFH   LINE      ---      ---       #104
+      010017C4H   LINE      ---      ---       #105
+      010017C8H   LINE      ---      ---       #106
+      010017CCH   LINE      ---      ---       #107
+      010017D2H   LINE      ---      ---       #108
+      010017D6H   LINE      ---      ---       #109
+      010017D8H   LINE      ---      ---       #110
+      010017DAH   LINE      ---      ---       #111
+      010017DCH   LINE      ---      ---       #112
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01000FD9H   BLOCK     CODE     ---       LVL=0
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01003A7BH   BLOCK     CODE     ---       LVL=0
+      01003A7BH   LINE      ---      ---       #127
+      01003A80H   BLOCK     CODE     NEAR LAB  LVL=1
+      01003A80H   LINE      ---      ---       #129
+      01003A8AH   LINE      ---      ---       #131
+      01003A8AH   LINE      ---      ---       #133
+      01003A8AH   LINE      ---      ---       #134
+      02004F15H   SYMBOL    XDATA    VOID      temp
+      ---         BLOCKEND  CODE     ---       LVL=1
+      ---         BLOCKEND  CODE     ---       LVL=0
+
+      010018CDH   BLOCK     CODE     ---       LVL=0
+      010018CDH   LINE      ---      ---       #136
+      010018D2H   LINE      ---      ---       #137
+      010018D2H   LINE      ---      ---       #142
+      01001918H   LINE      ---      ---       #143
+      01001918H   LINE      ---      ---       #145
+      01001918H   LINE      ---      ---       #146
+      01001918H   LINE      ---      ---       #147
+      0100191AH   LINE      ---      ---       #148
+      0100191DH   LINE      ---      ---       #150
+      0100192DH   LINE      ---      ---       #151
+      01001934H   LINE      ---      ---       #152
+      01001934H   LINE      ---      ---       #153
+      0100193EH   LINE      ---      ---       #154
+      0100193EH   LINE      ---      ---       #155
+      01001940H   LINE      ---      ---       #156
+      01001942H   LINE      ---      ---       #159
+      01001957H   LINE      ---      ---       #160
+      01001957H   LINE      ---      ---       #161
+      0100195DH   LINE      ---      ---       #162
+      01001962H   LINE      ---      ---       #163
+      0100196AH   LINE      ---      ---       #165
+      0100196BH   LINE      ---      ---       #166
+      0100196BH   LINE      ---      ---       #167
+      0100196BH   LINE      ---      ---       #168
+      0100197BH   LINE      ---      ---       #169
+      01001984H   LINE      ---      ---       #170
+      01001986H   LINE      ---      ---       #171
+      0100198EH   LINE      ---      ---       #172
+      01001991H   LINE      ---      ---       #173
+      01001996H   LINE      ---      ---       #174
+      010019A6H   LINE      ---      ---       #175
+      010019B2H   LINE      ---      ---       #176
+      010019B2H   LINE      ---      ---       #177
+      010019BCH   LINE      ---      ---       #178
+      010019C6H   LINE      ---      ---       #179
+      010019C6H   LINE      ---      ---       #181
+      010019D6H   LINE      ---      ---       #182
+      010019DBH   LINE      ---      ---       #183
+      010019E4H   LINE      ---      ---       #184
+      010019E4H   LINE      ---      ---       #185
+      010019E6H   LINE      ---      ---       #186
+      010019F5H   LINE      ---      ---       #187
+      010019F5H   LINE      ---      ---       #189
+      010019FBH   LINE      ---      ---       #190
+      01001A04H   LINE      ---      ---       #191
+      01001A06H   LINE      ---      ---       #192
+      01001A0EH   LINE      ---      ---       #194
+      01001A10H   LINE      ---      ---       #195
+      01001A10H   LINE      ---      ---       #196
+      01001A10H   LINE      ---      ---       #197
+      01001A12H   LINE      ---      ---       #198
+      01001A14H   LINE      ---      ---       #199
+      01001A19H   LINE      ---      ---       #200
+      01001A1AH   LINE      ---      ---       #203
+      01001A1AH   LINE      ---      ---       #204
+      01001A1AH   LINE      ---      ---       #205
+      01001A2CH   LINE      ---      ---       #206
+      01001A2CH   LINE      ---      ---       #207
+      01001A42H   LINE      ---      ---       #208
+      01001A48H   LINE      ---      ---       #209
+      01001A48H   LINE      ---      ---       #210
+      01001A49H   LINE      ---      ---       #211
+      01001A49H   LINE      ---      ---       #212
+      01001A51H   LINE      ---      ---       #213
+      01001A51H   LINE      ---      ---       #216
+      01001A51H   LINE      ---      ---       #217
+      01001A51H   LINE      ---      ---       #218
+      01001A57H   LINE      ---      ---       #219
+      01001A5AH   LINE      ---      ---       #220
+      01001A5CH   LINE      ---      ---       #221
+      01001A61H   LINE      ---      ---       #222
+      01001A65H   LINE      ---      ---       #223
+      01001A6BH   LINE      ---      ---       #224
+      01001A6FH   LINE      ---      ---       #225
+      01001A74H   LINE      ---      ---       #226
+      01001A7AH   LINE      ---      ---       #227
+      01001A80H   LINE      ---      ---       #229
+      01001A88H   LINE      ---      ---       #230
+      01001A88H   LINE      ---      ---       #231
+      01001A8CH   LINE      ---      ---       #232
+      01001A92H   LINE      ---      ---       #233
+      01001AABH   LINE      ---      ---       #235
+      01001AABH   LINE      ---      ---       #236
+      01001AB1H   LINE      ---      ---       #237
+      01001AB3H   LINE      ---      ---       #239
+      01001AB3H   LINE      ---      ---       #240
+      01001AB3H   LINE      ---      ---       #242
+      01001AB3H   LINE      ---      ---       #243
+      01001ABBH   LINE      ---      ---       #245
+      01001ABBH   LINE      ---      ---       #246
+      01001ABCH   LINE      ---      ---       #248
+      01001ABCH   LINE      ---      ---       #249
+      01001AC1H   LINE      ---      ---       #250
+      01001AC3H   LINE      ---      ---       #251
+      01001AC9H   LINE      ---      ---       #252
+      01001ACEH   LINE      ---      ---       #254
+      01001AD4H   LINE      ---      ---       #255
+      01001AD4H   LINE      ---      ---       #256
+      01001AD6H   LINE      ---      ---       #257
+      01001ADEH   LINE      ---      ---       #258
+      01001ADEH   LINE      ---      ---       #259
+      01001ADEH   LINE      ---      ---       #261
+      01001AE5H   LINE      ---      ---       #262
+      01001AE5H   LINE      ---      ---       #263
+      01001AE7H   LINE      ---      ---       #264
+      01001AEAH   LINE      ---      ---       #265
+      01001AEAH   LINE      ---      ---       #266
+      01001AEAH   LINE      ---      ---       #267
+      01001AF2H   LINE      ---      ---       #268
+      01001AF2H   LINE      ---      ---       #269
+      01001AFAH   LINE      ---      ---       #270
+      01001AFAH   LINE      ---      ---       #271
+      01001AFAH   LINE      ---      ---       #276
+      01001AFAH   LINE      ---      ---       #277
+      01001B00H   LINE      ---      ---       #278
+      01001B04H   LINE      ---      ---       #279
+      01001B09H   LINE      ---      ---       #280
+      01001B0BH   LINE      ---      ---       #281
+      01001B15H   LINE      ---      ---       #282
+      01001B15H   LINE      ---      ---       #283
+      01001B1BH   LINE      ---      ---       #284
+      01001B1BH   LINE      ---      ---       #285
+      01001B1CH   LINE      ---      ---       #286
+      01001B1CH   LINE      ---      ---       #287
+      01001B22H   LINE      ---      ---       #288
+      01001B25H   LINE      ---      ---       #289
+      01001B2AH   LINE      ---      ---       #290
+      01001B2FH   LINE      ---      ---       #293
+      01001B37H   LINE      ---      ---       #305
+      01001B37H   LINE      ---      ---       #306
+      01001B3DH   LINE      ---      ---       #307
+      01001B3DH   LINE      ---      ---       #308
+      01001B55H   LINE      ---      ---       #309
+      01001B58H   LINE      ---      ---       #310
+      01001B5EH   LINE      ---      ---       #311
+      01001B5EH   LINE      ---      ---       #312
+      01001B5EH   LINE      ---      ---       #314
+      01001B65H   LINE      ---      ---       #315
+      01001B69H   LINE      ---      ---       #316
+      01001B6DH   LINE      ---      ---       #317
+      01001B6FH   LINE      ---      ---       #318
+      01001B74H   LINE      ---      ---       #319
+      01001B78H   LINE      ---      ---       #320
+      01001B7EH   LINE      ---      ---       #321
+      01001B83H   LINE      ---      ---       #323
+      01001B9DH   LINE      ---      ---       #325
+      01001BA2H   LINE      ---      ---       #326
+      01001BA2H   LINE      ---      ---       #327
+      01001BA2H   LINE      ---      ---       #328
+      01001BA7H   LINE      ---      ---       #329
+      01001BACH   LINE      ---      ---       #330
+      01001BACH   LINE      ---      ---       #331
+      01001BACH   LINE      ---      ---       #332
+      01001BB1H   LINE      ---      ---       #333
+      01001BB6H   LINE      ---      ---       #334
+      01001BBBH   LINE      ---      ---       #335
+      01001BC3H   LINE      ---      ---       #336
+      01001BC3H   LINE      ---      ---       #337
+      01001BC9H   LINE      ---      ---       #338
+      01001BCFH   LINE      ---      ---       #339
+      01001BD3H   LINE      ---      ---       #341
+      01001BD3H   LINE      ---      ---       #342
+      01001BD8H   LINE      ---      ---       #343
+      01001BDEH   LINE      ---      ---       #344
+      01001BE3H   LINE      ---      ---       #345
+      01001BE4H   LINE      ---      ---       #346
+      01001BE4H   LINE      ---      ---       #347
+      01001BE4H   LINE      ---      ---       #348
+      01001BEBH   LINE      ---      ---       #349
+      01001BEBH   LINE      ---      ---       #350
+      01001BF0H   LINE      ---      ---       #351
+      01001BF3H   LINE      ---      ---       #353
+      01001BF3H   LINE      ---      ---       #354
+      01001BF3H   LINE      ---      ---       #355
+      01001BFBH   LINE      ---      ---       #356
+      01001C00H   LINE      ---      ---       #357
+      01001C02H   LINE      ---      ---       #358
+      01001C07H   LINE      ---      ---       #359
+      01001C0CH   LINE      ---      ---       #360
+      01001C14H   LINE      ---      ---       #361
+      01001C14H   LINE      ---      ---       #362
+      01001C22H   LINE      ---      ---       #363
+      01001C22H   LINE      ---      ---       #364
+      01001C38H   LINE      ---      ---       #365
+      01001C3EH   LINE      ---      ---       #366
+      01001C3EH   LINE      ---      ---       #367
+      01001C43H   LINE      ---      ---       #368
+      01001C43H   LINE      ---      ---       #370
+      01001C4AH   LINE      ---      ---       #371
+      01001C4AH   LINE      ---      ---       #372
+      01001C4CH   LINE      ---      ---       #373
+      01001C4FH   LINE      ---      ---       #374
+      01001C4FH   LINE      ---      ---       #375
+      01001C4FH   LINE      ---      ---       #377
+      01001C55H   LINE      ---      ---       #378
+      01001C55H   LINE      ---      ---       #379
+      01001C59H   LINE      ---      ---       #380
+      01001C59H   LINE      ---      ---       #381
+      01001C59H   LINE      ---      ---       #383
+      01001C5FH   LINE      ---      ---       #384
+      01001C5FH   LINE      ---      ---       #385
+      01001C67H   LINE      ---      ---       #386
+      01001C67H   LINE      ---      ---       #387
+      01001C67H   LINE      ---      ---       #389
+      01001C71H   LINE      ---      ---       #390
+      01001C71H   LINE      ---      ---       #392
+      01001C71H   LINE      ---      ---       #395
+      01001C7BH   LINE      ---      ---       #396
+      01001C7BH   LINE      ---      ---       #397
+      01001C7BH   LINE      ---      ---       #398
+      01001C7BH   LINE      ---      ---       #400
+      01001C83H   LINE      ---      ---       #401
+      01001C83H   LINE      ---      ---       #402
+      01001C88H   LINE      ---      ---       #403
+      01001C8AH   LINE      ---      ---       #405
+      01001C8AH   LINE      ---      ---       #406
+      01001C8DH   LINE      ---      ---       #407
+      01001C8DH   LINE      ---      ---       #408
+      01001C94H   LINE      ---      ---       #409
+      01001C95H   LINE      ---      ---       #412
+      01001C95H   LINE      ---      ---       #413
+      01001C9BH   LINE      ---      ---       #414
+      01001C9FH   LINE      ---      ---       #415
+      01001CA2H   LINE      ---      ---       #416
+      01001CA4H   LINE      ---      ---       #417
+      01001CA9H   LINE      ---      ---       #418
+      01001CAEH   LINE      ---      ---       #419
+      01001CB4H   LINE      ---      ---       #420
+      01001CB4H   LINE      ---      ---       #421
+      01001CCCH   LINE      ---      ---       #422
+      01001CCCH   LINE      ---      ---       #423
+      01001CD2H   LINE      ---      ---       #424
+      01001CD8H   LINE      ---      ---       #425
+      01001CDDH   LINE      ---      ---       #426
+      01001CE3H   LINE      ---      ---       #427
+      01001CE4H   LINE      ---      ---       #428
+      01001CE4H   LINE      ---      ---       #429
+      01001CEAH   LINE      ---      ---       #430
+      01001CEDH   LINE      ---      ---       #431
+      01001CEFH   LINE      ---      ---       #432
+      01001CF4H   LINE      ---      ---       #433
+      01001CFAH   LINE      ---      ---       #434
+      01001D02H   LINE      ---      ---       #435
+      01001D08H   LINE      ---      ---       #436
+      01001D09H   LINE      ---      ---       #437
+      01001D09H   LINE      ---      ---       #438
+      01001D14H   LINE      ---      ---       #439
+      01001D1CH   LINE      ---      ---       #440
+      01001D22H   LINE      ---      ---       #441
+      01001D23H   LINE      ---      ---       #443
+      01001D23H   LINE      ---      ---       #444
+      01001D2DH   LINE      ---      ---       #445
+      01001D32H   LINE      ---      ---       #446
+      01001D37H   LINE      ---      ---       #447
+      01001D3CH   LINE      ---      ---       #448
+      01001D41H   LINE      ---      ---       #449
+      01001D42H   LINE      ---      ---       #451
+      01001D42H   LINE      ---      ---       #452
+      01001D4AH   LINE      ---      ---       #453
+      01001D4FH   LINE      ---      ---       #454
+      01001D51H   LINE      ---      ---       #455
+      01001D56H   LINE      ---      ---       #456
+      01001D5BH   LINE      ---      ---       #457
+      01001D62H   LINE      ---      ---       #458
+      01001D62H   LINE      ---      ---       #459
+      01001D64H   LINE      ---      ---       #460
+      01001D67H   LINE      ---      ---       #461
+      01001D67H   LINE      ---      ---       #462
+      01001D67H   LINE      ---      ---       #464
+      01001D6DH   LINE      ---      ---       #465
+      01001D6DH   LINE      ---      ---       #466
+      01001D71H   LINE      ---      ---       #467
+      01001D71H   LINE      ---      ---       #468
+      01001D71H   LINE      ---      ---       #471
+      01001D77H   LINE      ---      ---       #472
+      01001D77H   LINE      ---      ---       #473
+      01001D7FH   LINE      ---      ---       #474
+      01001D7FH   LINE      ---      ---       #475
+      01001D7FH   LINE      ---      ---       #477
+      01001D82H   LINE      ---      ---       #478
+      01001D89H   LINE      ---      ---       #479
+      01001D89H   LINE      ---      ---       #480
+      01001D89H   LINE      ---      ---       #481
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      0100212AH   BLOCK     CODE     ---       LVL=0
+      0100212AH   LINE      ---      ---       #484
+      0100212AH   LINE      ---      ---       #485
+      0100212AH   LINE      ---      ---       #486
+      01002134H   LINE      ---      ---       #488
+      0100213AH   LINE      ---      ---       #489
+      0100213AH   LINE      ---      ---       #490
+      01002141H   LINE      ---      ---       #491
+      01002145H   LINE      ---      ---       #492
+      0100214BH   LINE      ---      ---       #493
+      0100214FH   LINE      ---      ---       #494
+      0100214FH   LINE      ---      ---       #495
+      01002157H   LINE      ---      ---       #496
+      01002157H   LINE      ---      ---       #497
+      01002167H   LINE      ---      ---       #498
+      01002167H   LINE      ---      ---       #499
+      0100216BH   LINE      ---      ---       #501
+      0100216BH   LINE      ---      ---       #502
+      0100216BH   LINE      ---      ---       #504
+      0100216BH   LINE      ---      ---       #505
+      01002171H   LINE      ---      ---       #506
+      01002171H   LINE      ---      ---       #507
+      01002179H   LINE      ---      ---       #508
+      0100217DH   LINE      ---      ---       #510
+      01002182H   LINE      ---      ---       #511
+      01002185H   LINE      ---      ---       #512
+      01002185H   LINE      ---      ---       #513
+      01002187H   LINE      ---      ---       #514
+      0100218DH   LINE      ---      ---       #515
+      0100218DH   LINE      ---      ---       #516
+      01002194H   LINE      ---      ---       #517
+      0100219AH   LINE      ---      ---       #518
+      0100219EH   LINE      ---      ---       #519
+      0100219EH   LINE      ---      ---       #521
+      010021A2H   LINE      ---      ---       #522
+      010021A2H   LINE      ---      ---       #523
+      010021A8H   LINE      ---      ---       #524
+      010021A8H   LINE      ---      ---       #526
+      010021ADH   LINE      ---      ---       #527
+      010021B0H   LINE      ---      ---       #528
+      010021B0H   LINE      ---      ---       #530
+      010021B0H   LINE      ---      ---       #531
+      010021BCH   LINE      ---      ---       #532
+      010021BCH   LINE      ---      ---       #533
+      010021C2H   LINE      ---      ---       #534
+      010021C2H   LINE      ---      ---       #535
+      010021D1H   LINE      ---      ---       #536
+      010021D1H   LINE      ---      ---       #537
+      010021D7H   LINE      ---      ---       #538
+      010021DBH   LINE      ---      ---       #539
+      010021DBH   LINE      ---      ---       #540
+      010021DFH   LINE      ---      ---       #541
+      010021DFH   LINE      ---      ---       #542
+      010021DFH   LINE      ---      ---       #544
+      010021E4H   LINE      ---      ---       #545
+      010021E5H   LINE      ---      ---       #547
+      010021EAH   LINE      ---      ---       #548
+      010021EAH   LINE      ---      ---       #550
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      010016E4H   BLOCK     CODE     ---       LVL=0
+      010016E4H   LINE      ---      ---       #552
+      010016E4H   LINE      ---      ---       #553
+      010016E4H   LINE      ---      ---       #555
+      010016EAH   LINE      ---      ---       #556
+      010016EAH   LINE      ---      ---       #557
+      010016EDH   LINE      ---      ---       #558
+      010016F0H   LINE      ---      ---       #559
+      010016F0H   LINE      ---      ---       #561
+      010016F5H   LINE      ---      ---       #562
+      010016F5H   LINE      ---      ---       #563
+      010016F5H   LINE      ---      ---       #566
+      01001704H   LINE      ---      ---       #568
+      01001704H   LINE      ---      ---       #581
+      01001710H   LINE      ---      ---       #582
+      01001710H   LINE      ---      ---       #583
+      01001713H   LINE      ---      ---       #585
+      01001713H   LINE      ---      ---       #586
+      01001723H   LINE      ---      ---       #587
+      01001723H   LINE      ---      ---       #588
+      01001726H   LINE      ---      ---       #589
+      0100172CH   LINE      ---      ---       #590
+      0100172CH   LINE      ---      ---       #591
+      0100172DH   LINE      ---      ---       #592
+      01001735H   LINE      ---      ---       #593
+      01001735H   LINE      ---      ---       #595
+      0100173FH   LINE      ---      ---       #596
+      0100173FH   LINE      ---      ---       #597
+      0100174AH   LINE      ---      ---       #599
+      0100174FH   LINE      ---      ---       #600
+      01001754H   LINE      ---      ---       #601
+      0100175DH   LINE      ---      ---       #602
+      0100175DH   LINE      ---      ---       #604
+      0100176CH   LINE      ---      ---       #605
+      0100176CH   LINE      ---      ---       #606
+      0100176EH   LINE      ---      ---       #607
+      0100176EH   LINE      ---      ---       #608
+      0100176EH   LINE      ---      ---       #609
+      01001775H   LINE      ---      ---       #610
+      01001775H   LINE      ---      ---       #611
+      01001784H   LINE      ---      ---       #612
+      01001784H   LINE      ---      ---       #613
+      01001786H   LINE      ---      ---       #614
+      01001786H   LINE      ---      ---       #615
+      01001786H   LINE      ---      ---       #617
+      01001786H   LINE      ---      ---       #618
+      01001795H   LINE      ---      ---       #619
+      01001795H   LINE      ---      ---       #620
+      0100179BH   LINE      ---      ---       #621
+      0100179BH   LINE      ---      ---       #622
+      0100179DH   LINE      ---      ---       #623
+      010017A2H   LINE      ---      ---       #624
+      010017A2H   LINE      ---      ---       #625
+      010017A5H   LINE      ---      ---       #626
+      010017A5H   LINE      ---      ---       #627
+      010017A5H   LINE      ---      ---       #628
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      010020ABH   BLOCK     CODE     ---       LVL=0
+      010020ABH   LINE      ---      ---       #631
+      010020ABH   LINE      ---      ---       #632
+      010020ABH   LINE      ---      ---       #634
+      010020B1H   LINE      ---      ---       #635
+      010020B1H   LINE      ---      ---       #636
+      010020B4H   LINE      ---      ---       #637
+      010020B7H   LINE      ---      ---       #638
+      010020B7H   LINE      ---      ---       #639
+      010020D2H   LINE      ---      ---       #647
+      010020D2H   LINE      ---      ---       #649
+      010020D7H   LINE      ---      ---       #650
+      010020DDH   LINE      ---      ---       #651
+      010020E2H   LINE      ---      ---       #652
+      010020E6H   LINE      ---      ---       #653
+      010020EAH   LINE      ---      ---       #660
+      010020ECH   LINE      ---      ---       #661
+      010020F1H   LINE      ---      ---       #663
+      010020F6H   LINE      ---      ---       #664
+      010020F6H   LINE      ---      ---       #665
+      010020F6H   LINE      ---      ---       #666
+      010020F6H   LINE      ---      ---       #668
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01002207H   BLOCK     CODE     ---       LVL=0
+      01002207H   LINE      ---      ---       #671
+      01002207H   LINE      ---      ---       #672
+      01002207H   LINE      ---      ---       #674
+      0100220DH   LINE      ---      ---       #675
+      0100220DH   LINE      ---      ---       #676
+      01002214H   LINE      ---      ---       #677
+      01002218H   LINE      ---      ---       #678
+      0100221EH   LINE      ---      ---       #679
+      01002222H   LINE      ---      ---       #680
+      01002222H   LINE      ---      ---       #681
+      0100222AH   LINE      ---      ---       #682
+      0100222AH   LINE      ---      ---       #683
+      0100223AH   LINE      ---      ---       #684
+      0100223AH   LINE      ---      ---       #685
+      0100223EH   LINE      ---      ---       #687
+      0100223EH   LINE      ---      ---       #688
+      0100223EH   LINE      ---      ---       #690
+      0100223EH   LINE      ---      ---       #691
+      01002244H   LINE      ---      ---       #692
+      01002244H   LINE      ---      ---       #693
+      0100224CH   LINE      ---      ---       #694
+      01002250H   LINE      ---      ---       #696
+      01002255H   LINE      ---      ---       #697
+      01002258H   LINE      ---      ---       #698
+      01002258H   LINE      ---      ---       #699
+      01002258H   LINE      ---      ---       #701
+      0100225EH   LINE      ---      ---       #702
+      0100225EH   LINE      ---      ---       #703
+      01002265H   LINE      ---      ---       #704
+      0100226BH   LINE      ---      ---       #705
+      0100226FH   LINE      ---      ---       #706
+      0100226FH   LINE      ---      ---       #708
+      01002273H   LINE      ---      ---       #709
+      01002273H   LINE      ---      ---       #710
+      01002279H   LINE      ---      ---       #711
+      01002279H   LINE      ---      ---       #713
+      0100227EH   LINE      ---      ---       #714
+      01002281H   LINE      ---      ---       #715
+      01002281H   LINE      ---      ---       #716
+      01002281H   LINE      ---      ---       #717
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01000B71H   BLOCK     CODE     ---       LVL=0
+      01000B71H   LINE      ---      ---       #719
+      01000B71H   LINE      ---      ---       #720
+      01000B71H   LINE      ---      ---       #723
+      01000B78H   LINE      ---      ---       #724
+      01000B78H   LINE      ---      ---       #725
+      01000B81H   LINE      ---      ---       #726
+      01000B84H   LINE      ---      ---       #727
+      01000B8CH   LINE      ---      ---       #728
+      01000B8CH   LINE      ---      ---       #729
+      01000B92H   LINE      ---      ---       #730
+      01000B98H   LINE      ---      ---       #731
+      01000B98H   LINE      ---      ---       #732
+      01000B9DH   LINE      ---      ---       #733
+      01000B9FH   LINE      ---      ---       #734
+      01000BA6H   LINE      ---      ---       #735
+      01000BA6H   LINE      ---      ---       #736
+      01000BACH   LINE      ---      ---       #737
+      01000BB1H   LINE      ---      ---       #738
+      01000BB3H   LINE      ---      ---       #739
+      01000BB3H   LINE      ---      ---       #740
+      01000BB3H   LINE      ---      ---       #741
+      01000BB5H   LINE      ---      ---       #743
+      01000BB5H   LINE      ---      ---       #744
+      01000BBAH   LINE      ---      ---       #745
+      01000BBEH   LINE      ---      ---       #746
+      01000BC2H   LINE      ---      ---       #747
+      01000BC2H   LINE      ---      ---       #749
+      01000BC9H   LINE      ---      ---       #750
+      01000BC9H   LINE      ---      ---       #751
+      01000BCFH   LINE      ---      ---       #752
+      01000BD8H   LINE      ---      ---       #753
+      01000BDBH   LINE      ---      ---       #754
+      01000BE3H   LINE      ---      ---       #755
+      01000BE3H   LINE      ---      ---       #756
+      01000BEEH   LINE      ---      ---       #757
+      01000BEEH   LINE      ---      ---       #758
+      01000BF3H   LINE      ---      ---       #759
+      01000BF5H   LINE      ---      ---       #760
+      01000BF9H   LINE      ---      ---       #761
+      01000BFDH   LINE      ---      ---       #762
+      01000BFDH   LINE      ---      ---       #763
+      01000BFDH   LINE      ---      ---       #764
+      01000BFFH   LINE      ---      ---       #766
+      01000BFFH   LINE      ---      ---       #767
+      01000C05H   LINE      ---      ---       #768
+      01000C05H   LINE      ---      ---       #769
+      01000C07H   LINE      ---      ---       #770
+      01000C0BH   LINE      ---      ---       #771
+      01000C11H   LINE      ---      ---       #772
+      01000C19H   LINE      ---      ---       #773
+      01000C1FH   LINE      ---      ---       #774
+      01000C22H   LINE      ---      ---       #775
+      01000C24H   LINE      ---      ---       #776
+      01000C24H   LINE      ---      ---       #777
+      01000C29H   LINE      ---      ---       #778
+      01000C29H   LINE      ---      ---       #781
+      01000C30H   LINE      ---      ---       #782
+      01000C30H   LINE      ---      ---       #783
+      01000C36H   LINE      ---      ---       #784
+      01000C3FH   LINE      ---      ---       #785
+      01000C42H   LINE      ---      ---       #786
+      01000C4AH   LINE      ---      ---       #787
+      01000C4AH   LINE      ---      ---       #789
+      01000C50H   LINE      ---      ---       #790
+      01000C55H   LINE      ---      ---       #791
+      01000C59H   LINE      ---      ---       #792
+      01000C5BH   LINE      ---      ---       #793
+      01000C60H   LINE      ---      ---       #794
+      01000C65H   LINE      ---      ---       #795
+      01000C6DH   LINE      ---      ---       #796
+      01000C75H   LINE      ---      ---       #797
+      01000C75H   LINE      ---      ---       #798
+      01000C76H   LINE      ---      ---       #800
+      01000C76H   LINE      ---      ---       #801
+      01000C7CH   LINE      ---      ---       #802
+      01000C7CH   LINE      ---      ---       #803
+      01000C7EH   LINE      ---      ---       #805
+      01000C8AH   LINE      ---      ---       #806
+      01000C8AH   LINE      ---      ---       #807
+      01000C90H   LINE      ---      ---       #808
+      01000C92H   LINE      ---      ---       #809
+      01000C9AH   LINE      ---      ---       #810
+      01000CA0H   LINE      ---      ---       #812
+      01000CA2H   LINE      ---      ---       #813
+      01000CA4H   LINE      ---      ---       #815
+      01000CA4H   LINE      ---      ---       #816
+      01000CA4H   LINE      ---      ---       #817
+      01000CA9H   LINE      ---      ---       #818
+      01000CA9H   LINE      ---      ---       #819
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      010020F7H   BLOCK     CODE     ---       LVL=0
+      010020F7H   LINE      ---      ---       #823
+      010020F7H   LINE      ---      ---       #824
+      010020F7H   LINE      ---      ---       #825
+      010020F9H   LINE      ---      ---       #827
+      01002107H   LINE      ---      ---       #829
+      01002109H   LINE      ---      ---       #830
+      0100210CH   LINE      ---      ---       #831
+      0100210FH   LINE      ---      ---       #832
+      01002111H   LINE      ---      ---       #833
+      01002113H   LINE      ---      ---       #836
+      01002122H   LINE      ---      ---       #838
+      01002122H   LINE      ---      ---       #839
+      01002129H   LINE      ---      ---       #840
+      01002129H   LINE      ---      ---       #843
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01003A8BH   BLOCK     CODE     ---       LVL=0
+      01003A8BH   LINE      ---      ---       #846
+      01003A8BH   LINE      ---      ---       #847
+      01003A8BH   LINE      ---      ---       #848
+      01003A9FH   LINE      ---      ---       #849
+      01003A9FH   LINE      ---      ---       #850
+      01003AA2H   LINE      ---      ---       #852
+      01003AA2H   LINE      ---      ---       #853
+      01003AACH   LINE      ---      ---       #854
+      01003AACH   LINE      ---      ---       #855
+      01003ABAH   LINE      ---      ---       #856
+      01003AC1H   LINE      ---      ---       #857
+      01003AC8H   LINE      ---      ---       #858
+      01003ACDH   LINE      ---      ---       #859
+      01003AD9H   LINE      ---      ---       #860
+      01003ADEH   LINE      ---      ---       #862
+      01003ADEH   LINE      ---      ---       #864
+      01003AE4H   LINE      ---      ---       #865
+      01003AE4H   LINE      ---      ---       #866
+      01003AE6H   LINE      ---      ---       #867
+      01003AE6H   LINE      ---      ---       #869
+      01003AECH   LINE      ---      ---       #870
+      01003AEEH   LINE      ---      ---       #873
+      01003AF4H   LINE      ---      ---       #874
+      01003AF4H   LINE      ---      ---       #875
+      01003AF6H   LINE      ---      ---       #876
+      01003AF9H   LINE      ---      ---       #877
+      01003AFFH   LINE      ---      ---       #878
+      01003AFFH   LINE      ---      ---       #879
+      01003B05H   LINE      ---      ---       #880
+      01003B05H   LINE      ---      ---       #881
+      01003B0BH   LINE      ---      ---       #882
+      01003B0BH   LINE      ---      ---       #883
+      01003B11H   LINE      ---      ---       #885
+      01003B11H   LINE      ---      ---       #887
+      01003B17H   LINE      ---      ---       #888
+      01003B1AH   LINE      ---      ---       #889
+      01003B20H   LINE      ---      ---       #890
+      01003B20H   LINE      ---      ---       #891
+      01003B23H   LINE      ---      ---       #892
+      01003B23H   LINE      ---      ---       #893
+      01003B23H   LINE      ---      ---       #897
+      01003B29H   LINE      ---      ---       #898
+      01003B29H   LINE      ---      ---       #899
+      01003B31H   LINE      ---      ---       #900
+      01003B31H   LINE      ---      ---       #901
+      01003B37H   LINE      ---      ---       #902
+      01003B3BH   LINE      ---      ---       #904
+      01003B41H   LINE      ---      ---       #905
+      01003B41H   LINE      ---      ---       #906
+      01003B4CH   LINE      ---      ---       #907
+      01003B4EH   LINE      ---      ---       #908
+      01003B54H   LINE      ---      ---       #909
+      01003B54H   LINE      ---      ---       #911
+      01003B5FH   LINE      ---      ---       #912
+      01003B5FH   LINE      ---      ---       #913
+      01003B5FH   LINE      ---      ---       #914
+      01003B5FH   LINE      ---      ---       #917
+      01003B65H   LINE      ---      ---       #918
+      01003B65H   LINE      ---      ---       #919
+      01003B68H   LINE      ---      ---       #920
+      01003B6BH   LINE      ---      ---       #921
+      01003B6BH   LINE      ---      ---       #922
+      01003B6EH   LINE      ---      ---       #923
+      01003B6EH   LINE      ---      ---       #924
+      01003B6EH   LINE      ---      ---       #927
+      01003B74H   LINE      ---      ---       #928
+      01003B74H   LINE      ---      ---       #929
+      01003B77H   LINE      ---      ---       #930
+      01003B7AH   LINE      ---      ---       #931
+      01003B7AH   LINE      ---      ---       #932
+      01003B80H   LINE      ---      ---       #933
+      01003B80H   LINE      ---      ---       #934
+      01003B85H   LINE      ---      ---       #935
+      01003B85H   LINE      ---      ---       #936
+      01003B85H   LINE      ---      ---       #937
+      01003B85H   LINE      ---      ---       #939
+      01003B8BH   LINE      ---      ---       #940
+      01003B8BH   LINE      ---      ---       #941
+      01003B8EH   LINE      ---      ---       #942
+      01003B91H   LINE      ---      ---       #943
+      01003B91H   LINE      ---      ---       #944
+      01003B97H   LINE      ---      ---       #945
+      01003B97H   LINE      ---      ---       #946
+      01003B99H   LINE      ---      ---       #947
+      01003B99H   LINE      ---      ---       #949
+      01003BA0H   LINE      ---      ---       #950
+      01003BA0H   LINE      ---      ---       #951
+      01003BA6H   LINE      ---      ---       #952
+      01003BA7H   LINE      ---      ---       #953
+      01003BAEH   LINE      ---      ---       #954
+      01003BAEH   LINE      ---      ---       #955
+      01003BB4H   LINE      ---      ---       #956
+      01003BB4H   LINE      ---      ---       #957
+      01003BB4H   LINE      ---      ---       #958
+      01003BB4H   LINE      ---      ---       #959
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      010026DAH   BLOCK     CODE     ---       LVL=0
+      010026DAH   LINE      ---      ---       #973
+      010026DAH   LINE      ---      ---       #974
+      010026DAH   LINE      ---      ---       #975
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01002412H   BLOCK     CODE     ---       LVL=0
+      01002412H   LINE      ---      ---       #980
+      01002412H   LINE      ---      ---       #981
+      01002412H   LINE      ---      ---       #982
+      01002414H   LINE      ---      ---       #983
+      01002414H   LINE      ---      ---       #984
+      01002416H   LINE      ---      ---       #985
+      01002420H   LINE      ---      ---       #986
+      01002420H   LINE      ---      ---       #987
+      01002423H   LINE      ---      ---       #988
+      01002423H   LINE      ---      ---       #989
+      01002426H   LINE      ---      ---       #990
+      01002429H   LINE      ---      ---       #992
+      0100242FH   LINE      ---      ---       #993
+      0100242FH   LINE      ---      ---       #994
+      01002432H   LINE      ---      ---       #995
+      01002432H   LINE      ---      ---       #997
+      0100243DH   LINE      ---      ---       #998
+      0100243DH   LINE      ---      ---       #999
+      0100243FH   LINE      ---      ---       #1001
+      01002444H   LINE      ---      ---       #1003
+      01002447H   LINE      ---      ---       #1004
+      0100244AH   LINE      ---      ---       #1005
+      0100244CH   LINE      ---      ---       #1006
+      0100244CH   LINE      ---      ---       #1008
+      0100244CH   LINE      ---      ---       #1009
+      01002468H   LINE      ---      ---       #1011
+      01002468H   LINE      ---      ---       #1012
+      0100246AH   LINE      ---      ---       #1013
+      0100246CH   LINE      ---      ---       #1014
+      0100246CH   LINE      ---      ---       #1016
+      0100246CH   LINE      ---      ---       #1017
+      0100246EH   LINE      ---      ---       #1018
+      01002474H   LINE      ---      ---       #1019
+      01002474H   LINE      ---      ---       #1020
+      01002479H   LINE      ---      ---       #1023
+      01002479H   LINE      ---      ---       #1024
+      0100247CH   LINE      ---      ---       #1025
+      0100247EH   LINE      ---      ---       #1026
+      0100247EH   LINE      ---      ---       #1027
+      0100247EH   LINE      ---      ---       #1028
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      ---         MODULE    ---      ---       ADC
+      01002282H   PUBLIC    CODE     ---       YC_adc_check_timer500ms
+      01003BB5H   PUBLIC    CODE     ---       YC_adc_check
+      010039BEH   PUBLIC    CODE     ---       YC_adc_init
+
+      010039BEH   BLOCK     CODE     ---       LVL=0
+      010039BEH   LINE      ---      ---       #3
+      010039BEH   LINE      ---      ---       #4
+      010039BEH   BLOCK     CODE     NEAR LAB  LVL=1
+      010039BEH   LINE      ---      ---       #8
+      010039C4H   LINE      ---      ---       #9
+      010039C7H   LINE      ---      ---       #12
+      010039C8H   LINE      ---      ---       #13
+      010039C8H   LINE      ---      ---       #14
+      010039D9H   LINE      ---      ---       #15
+      010039DEH   LINE      ---      ---       #17
+      01003A2CH   LINE      ---      ---       #18
+      01003A7AH   LINE      ---      ---       #41
+      00000007H   SYMBOL    DATA     VOID      i
+      ---         BLOCKEND  CODE     ---       LVL=1
+      ---         BLOCKEND  CODE     ---       LVL=0
+
+      01003BB5H   BLOCK     CODE     ---       LVL=0
+      01003BB5H   LINE      ---      ---       #43
+      01003BB5H   LINE      ---      ---       #44
+      01003BB5H   BLOCK     CODE     NEAR LAB  LVL=1
+      01003BB5H   LINE      ---      ---       #47
+      01003BBFH   LINE      ---      ---       #49
+      01003BCBH   LINE      ---      ---       #52
+      01003BEBH   LINE      ---      ---       #53
+      01003BF4H   LINE      ---      ---       #54
+      01003BF6H   LINE      ---      ---       #55
+      01003BFBH   LINE      ---      ---       #56
+      01003BFBH   LINE      ---      ---       #57
+      01003C32H   LINE      ---      ---       #58
+      01003C3CH   LINE      ---      ---       #59
+      01003C59H   LINE      ---      ---       #69
+      01003C78H   LINE      ---      ---       #70
+      01003C78H   LINE      ---      ---       #71
+      01003C7EH   LINE      ---      ---       #72
+      01003C88H   LINE      ---      ---       #73
+      01003C88H   LINE      ---      ---       #74
+      01003C8EH   LINE      ---      ---       #75
+      01003C97H   LINE      ---      ---       #76
+      01003CA8H   LINE      ---      ---       #77
+      01003CA8H   LINE      ---      ---       #78
+      01003CAAH   LINE      ---      ---       #80
+      01003CAAH   LINE      ---      ---       #81
+      01003CB1H   LINE      ---      ---       #82
+      01003CB1H   LINE      ---      ---       #83
+      01003CB6H   LINE      ---      ---       #84
+      01003CC6H   LINE      ---      ---       #85
+      01003CC6H   LINE      ---      ---       #86
+      01003CE5H   LINE      ---      ---       #87
+      01003CE5H   LINE      ---      ---       #88
+      01003CEBH   LINE      ---      ---       #89
+      01003D39H   LINE      ---      ---       #90
+      01003D3BH   LINE      ---      ---       #92
+      01003D3BH   LINE      ---      ---       #93
+      01003D40H   LINE      ---      ---       #94
+      01003D8EH   LINE      ---      ---       #95
+      01003D8EH   LINE      ---      ---       #96
+      01003D8EH   LINE      ---      ---       #98
+      01003D96H   LINE      ---      ---       #100
+      02004EDBH   SYMBOL    XDATA    VOID      i
+      02004EDCH   SYMBOL    XDATA    VOID      batValue
+      ---         BLOCKEND  CODE     ---       LVL=1
+      ---         BLOCKEND  CODE     ---       LVL=0
+
+      01002282H   BLOCK     CODE     ---       LVL=0
+      01002282H   LINE      ---      ---       #103
+      01002282H   LINE      ---      ---       #104
+      01002282H   LINE      ---      ---       #107
+      01002288H   LINE      ---      ---       #108
+      01002288H   LINE      ---      ---       #109
+      0100228AH   LINE      ---      ---       #110
+      0100228DH   LINE      ---      ---       #111
+      0100228DH   LINE      ---      ---       #112
+      01002290H   LINE      ---      ---       #113
+      01002293H   LINE      ---      ---       #114
+      01002293H   LINE      ---      ---       #115
+      01002293H   LINE      ---      ---       #117
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      ---         MODULE    ---      ---       RAM
+      010026EDH   PUBLIC    CODE     ---       main
+
+      010026EDH   BLOCK     CODE     ---       LVL=0
+      010026EDH   LINE      ---      ---       #5
+      010026EDH   LINE      ---      ---       #6
+      010026EDH   LINE      ---      ---       #7
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      ---         MODULE    ---      ---       PWM
+      01000F9CH   PUBLIC    CODE     ---       _YC_PWM_disable
+      01000CEBH   PUBLIC    CODE     ---       _YC_PWM_set_duty
+      01003954H   PUBLIC    CODE     ---       _YC_PWM_init
+
+      01003954H   BLOCK     CODE     ---       LVL=0
+      01003954H   LINE      ---      ---       #9
+      01003954H   LINE      ---      ---       #10
+      01003954H   LINE      ---      ---       #12
+      01003959H   LINE      ---      ---       #13
+      01003960H   LINE      ---      ---       #14
+      01003965H   LINE      ---      ---       #15
+      01003969H   LINE      ---      ---       #16
+      01003969H   LINE      ---      ---       #18
+      0100396DH   LINE      ---      ---       #19
+      0100396DH   LINE      ---      ---       #20
+      01003971H   LINE      ---      ---       #21
+      01003971H   LINE      ---      ---       #23
+      01003978H   LINE      ---      ---       #24
+      01003978H   LINE      ---      ---       #25
+      0100397CH   LINE      ---      ---       #26
+      0100397CH   LINE      ---      ---       #28
+      01003983H   LINE      ---      ---       #29
+      01003983H   LINE      ---      ---       #30
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01000CEBH   BLOCK     CODE     ---       LVL=0
+      01000CEBH   LINE      ---      ---       #32
+      01000CF3H   LINE      ---      ---       #33
+      01000CF3H   BLOCK     CODE     NEAR LAB  LVL=1
+      01000CF3H   LINE      ---      ---       #36
+      01000CF8H   LINE      ---      ---       #39
+      01000D01H   LINE      ---      ---       #40
+      01000D01H   LINE      ---      ---       #41
+      01000D08H   LINE      ---      ---       #42
+      01000D0FH   LINE      ---      ---       #43
+      01000D15H   LINE      ---      ---       #44
+      01000D1CH   LINE      ---      ---       #45
+      01000D22H   LINE      ---      ---       #46
+      01000D2BH   LINE      ---      ---       #47
+      01000D31H   LINE      ---      ---       #49
+      01000D31H   LINE      ---      ---       #50
+      01000D39H   LINE      ---      ---       #51
+      01000D39H   LINE      ---      ---       #52
+      01000D40H   LINE      ---      ---       #53
+      01000D47H   LINE      ---      ---       #54
+      01000D4DH   LINE      ---      ---       #55
+      01000D54H   LINE      ---      ---       #56
+      01000D5AH   LINE      ---      ---       #57
+      01000D61H   LINE      ---      ---       #58
+      01000D67H   LINE      ---      ---       #60
+      01000D67H   LINE      ---      ---       #62
+      01000D67H   LINE      ---      ---       #63
+      01000D6FH   LINE      ---      ---       #64
+      01000D78H   LINE      ---      ---       #65
+      01000D7CH   LINE      ---      ---       #66
+      01000D87H   LINE      ---      ---       #68
+      01000D90H   LINE      ---      ---       #69
+      01000D90H   LINE      ---      ---       #71
+      01000D95H   LINE      ---      ---       #72
+      01000D9AH   LINE      ---      ---       #73
+      01000DA2H   LINE      ---      ---       #74
+      01000DADH   LINE      ---      ---       #75
+      01000DB5H   LINE      ---      ---       #77
+      01000DBCH   LINE      ---      ---       #78
+      02004EEBH   SYMBOL    XDATA    VOID      pwm_duty
+      ---         BLOCKEND  CODE     ---       LVL=1
+      ---         BLOCKEND  CODE     ---       LVL=0
+
+      01000F9CH   BLOCK     CODE     ---       LVL=0
+      01000F9CH   LINE      ---      ---       #81
+      01000F9CH   LINE      ---      ---       #82
+      01000F9CH   LINE      ---      ---       #83
+      01000FA9H   LINE      ---      ---       #84
+      01000FA9H   LINE      ---      ---       #85
+      01000FABH   LINE      ---      ---       #87
+      01000FABH   LINE      ---      ---       #88
+      01000FB2H   LINE      ---      ---       #89
+      01000FB6H   LINE      ---      ---       #90
+      01000FBAH   LINE      ---      ---       #91
+      01000FBAH   LINE      ---      ---       #93
+      01000FC1H   LINE      ---      ---       #95
+      01000FC1H   LINE      ---      ---       #96
+      01000FC5H   LINE      ---      ---       #97
+      01000FC5H   LINE      ---      ---       #99
+      01000FCCH   LINE      ---      ---       #101
+      01000FCCH   LINE      ---      ---       #102
+      01000FD0H   LINE      ---      ---       #103
+      01000FD0H   LINE      ---      ---       #105
+      01000FD7H   LINE      ---      ---       #107
+      01000FD7H   LINE      ---      ---       #109
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      ---         MODULE    ---      ---       IPC
+      02004BA5H   PUBLIC    XDATA    WORD      bttimer
+      02004C6DH   PUBLIC    XDATA    BYTE      btstimer
+      02004C3EH   PUBLIC    XDATA    WORD      c51timer
+      02000550H   PUBLIC    XDATA    ---       ipcPin
+      02004C6EH   PUBLIC    XDATA    BYTE      c51stimer
+      02000BE7H   PUBLIC    XDATA    ---       ipcSendBuff
+      02000B7FH   PUBLIC    XDATA    BYTE      lpm_flag
+      02000C4BH   PUBLIC    XDATA    ---       ipcReadBuff
+      0200054FH   PUBLIC    XDATA    BYTE      ipcPinlen
+      02000B7EH   PUBLIC    XDATA    BYTE      current_task
+      01002481H   PUBLIC    CODE     ---       IPC_DealSingleStep
+      01003E16H   PUBLIC    CODE     ---       IPC_IsTxBuffEmpty
+      010026EFH   PUBLIC    CODE     ---       IPC_AbandonLpm
+      01001F7FH   PUBLIC    CODE     ---       IPC_WaitLpm
+      010026E0H   PUBLIC    CODE     ---       _IPC_Initialize
+      01003E10H   PUBLIC    CODE     ---       IPC_GetBBDIsconnectReason
+      01003E07H   PUBLIC    CODE     ---       _IPC_TxBleData
+      01003DFEH   PUBLIC    CODE     ---       _IPC_TxSppData
+      010017E1H   PUBLIC    CODE     ---       _IPC_Tx24GData
+      01003DF1H   PUBLIC    CODE     ---       _IPC_TxBREDRHidData
+      010017E7H   PUBLIC    CODE     ---       _IPC_TxData
+      010008B3H   PUBLIC    CODE     ---       _IPC_TxControlCmd
+
+      01003D97H   BLOCK     CODE     ---       LVL=0
+      01003D97H   LINE      ---      ---       #44
+      01003DA7H   LINE      ---      ---       #45
+      01003DA7H   LINE      ---      ---       #46
+      01003DF0H   LINE      ---      ---       #47
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      0100268AH   BLOCK     CODE     ---       LVL=0
+      0100268AH   LINE      ---      ---       #49
+      01002694H   LINE      ---      ---       #50
+      01002694H   BLOCK     CODE     NEAR LAB  LVL=1
+      01002694H   LINE      ---      ---       #51
+      0100269CH   LINE      ---      ---       #52
+      010026A2H   LINE      ---      ---       #53
+      010026C1H   LINE      ---      ---       #54
+      010026CBH   LINE      ---      ---       #55
+      010026CFH   LINE      ---      ---       #56
+      010026CFH   LINE      ---      ---       #57
+      010026D1H   LINE      ---      ---       #58
+      010026D9H   LINE      ---      ---       #59
+      00000006H   SYMBOL    DATA     VOID      src
+      ---         BLOCKEND  CODE     ---       LVL=1
+      ---         BLOCKEND  CODE     ---       LVL=0
+
+      010008DBH   BLOCK     CODE     ---       LVL=0
+      010008DBH   LINE      ---      ---       #61
+      010008E9H   LINE      ---      ---       #62
+      010008E9H   BLOCK     CODE     NEAR LAB  LVL=1
+      010008E9H   LINE      ---      ---       #63
+      010008F8H   LINE      ---      ---       #64
+      01000917H   LINE      ---      ---       #65
+      01000921H   LINE      ---      ---       #66
+      01000946H   LINE      ---      ---       #67
+      01000954H   LINE      ---      ---       #68
+      0100095EH   LINE      ---      ---       #69
+      0100095EH   LINE      ---      ---       #70
+      01000960H   LINE      ---      ---       #71
+      0100096FH   LINE      ---      ---       #72
+      02004EC9H   SYMBOL    XDATA    VOID      dest
+      ---         BLOCKEND  CODE     ---       LVL=1
+      ---         BLOCKEND  CODE     ---       LVL=0
+
+      010008B3H   BLOCK     CODE     ---       LVL=0
+      010008B3H   LINE      ---      ---       #74
+      010008B8H   LINE      ---      ---       #75
+      010008B8H   BLOCK     CODE     NEAR LAB  LVL=1
+      010008B8H   LINE      ---      ---       #76
+      010008CBH   LINE      ---      ---       #79
+      010008D3H   LINE      ---      ---       #80
+      02004EF2H   SYMBOL    XDATA    VOID      cmdBuff
+      ---         BLOCKEND  CODE     ---       LVL=1
+      ---         BLOCKEND  CODE     ---       LVL=0
+
+      010017E7H   BLOCK     CODE     ---       LVL=0
+      010017E7H   LINE      ---      ---       #83
+      010017ECH   LINE      ---      ---       #84
+      010017ECH   LINE      ---      ---       #85
+      010017F2H   LINE      ---      ---       #86
+      010017FDH   LINE      ---      ---       #87
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01003DF1H   BLOCK     CODE     ---       LVL=0
+      01003DF1H   LINE      ---      ---       #90
+      01003DF1H   LINE      ---      ---       #91
+      01003DF1H   LINE      ---      ---       #92
+      01003DF7H   LINE      ---      ---       #93
+      01003DFAH   LINE      ---      ---       #94
+      01003DFDH   LINE      ---      ---       #95
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      010017E1H   BLOCK     CODE     ---       LVL=0
+      010017E1H   LINE      ---      ---       #97
+      010017E1H   LINE      ---      ---       #98
+      010017E1H   LINE      ---      ---       #99
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01003DFEH   BLOCK     CODE     ---       LVL=0
+      01003DFEH   LINE      ---      ---       #103
+      01003DFEH   LINE      ---      ---       #104
+      01003DFEH   LINE      ---      ---       #105
+      01003E04H   LINE      ---      ---       #106
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01003E07H   BLOCK     CODE     ---       LVL=0
+      01003E07H   LINE      ---      ---       #109
+      01003E07H   LINE      ---      ---       #110
+      01003E07H   LINE      ---      ---       #111
+      01003E0DH   LINE      ---      ---       #112
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01003E10H   BLOCK     CODE     ---       LVL=0
+      01003E10H   LINE      ---      ---       #115
+      01003E10H   LINE      ---      ---       #116
+      01003E10H   LINE      ---      ---       #117
+      01003E15H   LINE      ---      ---       #118
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      010026E0H   BLOCK     CODE     ---       LVL=0
+      010026E0H   LINE      ---      ---       #120
+      010026E0H   LINE      ---      ---       #121
+      010026E0H   LINE      ---      ---       #122
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01001F7FH   BLOCK     CODE     ---       LVL=0
+      01001F7FH   LINE      ---      ---       #125
+      01001F7FH   LINE      ---      ---       #126
+      01001F7FH   LINE      ---      ---       #127
+      01001F84H   LINE      ---      ---       #128
+      01001F88H   LINE      ---      ---       #129
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      010026EFH   BLOCK     CODE     ---       LVL=0
+      010026EFH   LINE      ---      ---       #132
+      010026EFH   LINE      ---      ---       #133
+      010026EFH   LINE      ---      ---       #134
+      010026F5H   LINE      ---      ---       #135
+      010026FAH   LINE      ---      ---       #136
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01003E16H   BLOCK     CODE     ---       LVL=0
+      01003E16H   LINE      ---      ---       #138
+      01003E16H   LINE      ---      ---       #139
+      01003E16H   LINE      ---      ---       #140
+      01003E2AH   LINE      ---      ---       #141
+      01003E2CH   LINE      ---      ---       #142
+      01003E2DH   LINE      ---      ---       #143
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01002481H   BLOCK     CODE     ---       LVL=0
+      01002481H   LINE      ---      ---       #146
+      01002481H   LINE      ---      ---       #147
+      01002481H   BLOCK     CODE     NEAR LAB  LVL=1
+      01002481H   LINE      ---      ---       #148
+      01002493H   LINE      ---      ---       #149
+      010024A9H   LINE      ---      ---       #150
+      010024A9H   LINE      ---      ---       #151
+      010024B1H   LINE      ---      ---       #152
+      010024C2H   LINE      ---      ---       #153
+      010024CCH   LINE      ---      ---       #154
+      010024EBH   LINE      ---      ---       #155
+      010024EDH   LINE      ---      ---       #156
+      010024FFH   LINE      ---      ---       #157
+      01002508H   LINE      ---      ---       #158
+      0100251EH   LINE      ---      ---       #159
+      01002556H   LINE      ---      ---       #160
+      01002558H   LINE      ---      ---       #161
+      0100256AH   LINE      ---      ---       #162
+      01002573H   LINE      ---      ---       #163
+      01002589H   LINE      ---      ---       #164
+      010025C1H   LINE      ---      ---       #165
+      010025C3H   LINE      ---      ---       #166
+      010025D5H   LINE      ---      ---       #167
+      010025DEH   LINE      ---      ---       #168
+      010025F4H   LINE      ---      ---       #169
+      0100262CH   LINE      ---      ---       #170
+      0100262EH   LINE      ---      ---       #171
+      0100262EH   LINE      ---      ---       #172
+      01002630H   LINE      ---      ---       #173
+      01002630H   LINE      ---      ---       #174
+      01002630H   LINE      ---      ---       #175
+      01002644H   LINE      ---      ---       #176
+      01002652H   LINE      ---      ---       #178
+      01002655H   LINE      ---      ---       #180
+      01002664H   LINE      ---      ---       #181
+      01002666H   LINE      ---      ---       #182
+      01002670H   LINE      ---      ---       #183
+      0100267EH   LINE      ---      ---       #185
+      01002681H   LINE      ---      ---       #187
+      01002687H   LINE      ---      ---       #188
+      01002689H   LINE      ---      ---       #190
+      01002630H   SYMBOL    ---      ---       IPC_TIMERingleStep
+      02004F04H   SYMBOL    XDATA    VOID      pbuff
+      ---         BLOCKEND  CODE     ---       LVL=1
+      ---         BLOCKEND  CODE     ---       LVL=0
+
+      ---         MODULE    ---      ---       GPIO
+      020000A3H   PUBLIC    XDATA    ---       YC_GPIOWakeupL
+      020000A7H   PUBLIC    XDATA    ---       YC_GPIOWakeupH
+      010026FBH   PUBLIC    CODE     ---       GPIO_fillpd
+      010021EBH   PUBLIC    CODE     ---       _GPIO_FlipOutBit
+      010022DBH   PUBLIC    CODE     ---       _GPIO_SetWakeupByCurrentState
+      01003E2EH   PUBLIC    CODE     ---       _GPIO_ClearWakeup
+      00000020H.7 PUBLIC    BIT      BIT       ?_GPIO_SetWakeup?BIT
+      010022EEH   PUBLIC    CODE     ---       _GPIO_SetWakeup
+      00000020H.6 PUBLIC    BIT      BIT       ?_GPIO_SetOutput?BIT
+      01000CCEH   PUBLIC    CODE     ---       _GPIO_SetOutput
+      00000020H.5 PUBLIC    BIT      BIT       ?_GPIO_SetInput?BIT
+      010036AFH   PUBLIC    CODE     ---       _GPIO_SetInput
+      00000020H.4 PUBLIC    BIT      BIT       ?_GPIO_Setoe?BIT
+      010036EFH   PUBLIC    CODE     ---       _GPIO_Setoe
+      00000020H.3 PUBLIC    BIT      BIT       ?_GPIO_SetPd?BIT
+      010036DEH   PUBLIC    CODE     ---       _GPIO_SetPd
+      00000020H.2 PUBLIC    BIT      BIT       ?_GPIO_SetPu?BIT
+      010036CDH   PUBLIC    CODE     ---       _GPIO_SetPu
+      00000020H.1 PUBLIC    BIT      BIT       ?_GPIO_Setout?BIT
+      01000F5CH   PUBLIC    CODE     ---       _GPIO_Setout
+      010022D3H   PUBLIC    CODE     ---       _GPIO_GetInputStatus
+
+      01003700H   BLOCK     CODE     ---       LVL=0
+      01003700H   LINE      ---      ---       #9
+      0100370BH   LINE      ---      ---       #10
+      0100370BH   BLOCK     CODE     NEAR LAB  LVL=1
+      0100370BH   LINE      ---      ---       #11
+      0100370DH   LINE      ---      ---       #12
+      0100370EH   LINE      ---      ---       #14
+      01003712H   LINE      ---      ---       #15
+      01003719H   LINE      ---      ---       #17
+      0100371CH   LINE      ---      ---       #18
+      0100373EH   LINE      ---      ---       #19
+      0100373EH   LINE      ---      ---       #21
+      0100373EH   LINE      ---      ---       #22
+      00000006H   SYMBOL    DATA     VOID      queue
+      00000005H   SYMBOL    DATA     VOID      group
+      ---         BLOCKEND  CODE     ---       LVL=1
+      ---         BLOCKEND  CODE     ---       LVL=0
+
+      01002294H   BLOCK     CODE     ---       LVL=0
+      01002294H   LINE      ---      ---       #26
+      01002296H   LINE      ---      ---       #27
+      01002296H   BLOCK     CODE     NEAR LAB  LVL=1
+      01002296H   LINE      ---      ---       #28
+      0100229BH   LINE      ---      ---       #29
+      0100229CH   LINE      ---      ---       #31
+      010022A0H   LINE      ---      ---       #32
+      010022A7H   LINE      ---      ---       #33
+      010022D2H   LINE      ---      ---       #35
+      02004F22H   SYMBOL    XDATA    VOID      queue
+      00000006H   SYMBOL    DATA     VOID      group
+      ---         BLOCKEND  CODE     ---       LVL=1
+      ---         BLOCKEND  CODE     ---       LVL=0
+
+      010022D3H   BLOCK     CODE     ---       LVL=0
+      010022D3H   LINE      ---      ---       #37
+      010022D3H   LINE      ---      ---       #38
+      010022D3H   LINE      ---      ---       #39
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01000F5CH   BLOCK     CODE     ---       LVL=0
+      01000F5CH   LINE      ---      ---       #42
+      01000F5CH   LINE      ---      ---       #43
+      01000F5CH   LINE      ---      ---       #44
+      01000F60H   LINE      ---      ---       #46
+      01000F6DH   LINE      ---      ---       #47
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      010036CDH   BLOCK     CODE     ---       LVL=0
+      010036CDH   LINE      ---      ---       #49
+      010036CDH   LINE      ---      ---       #50
+      010036CDH   LINE      ---      ---       #51
+      010036D1H   LINE      ---      ---       #53
+      010036DDH   LINE      ---      ---       #54
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      010036DEH   BLOCK     CODE     ---       LVL=0
+      010036DEH   LINE      ---      ---       #56
+      010036DEH   LINE      ---      ---       #57
+      010036DEH   LINE      ---      ---       #58
+      010036E2H   LINE      ---      ---       #60
+      010036EEH   LINE      ---      ---       #61
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      010036EFH   BLOCK     CODE     ---       LVL=0
+      010036EFH   LINE      ---      ---       #63
+      010036EFH   LINE      ---      ---       #64
+      010036EFH   LINE      ---      ---       #65
+      010036F3H   LINE      ---      ---       #67
+      010036FFH   LINE      ---      ---       #68
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      010036AFH   BLOCK     CODE     ---       LVL=0
+      010036AFH   LINE      ---      ---       #70
+      010036B1H   LINE      ---      ---       #71
+      010036B1H   LINE      ---      ---       #72
+      010036B5H   LINE      ---      ---       #74
+      010036BDH   LINE      ---      ---       #75
+      010036C6H   LINE      ---      ---       #76
+      010036CCH   LINE      ---      ---       #77
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01000CCEH   BLOCK     CODE     ---       LVL=0
+      01000CCEH   LINE      ---      ---       #79
+      01000CD0H   LINE      ---      ---       #80
+      01000CD0H   LINE      ---      ---       #81
+      01000CD4H   LINE      ---      ---       #83
+      01000CDBH   LINE      ---      ---       #84
+      01000CE3H   LINE      ---      ---       #85
+      01000CEAH   LINE      ---      ---       #86
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      010022EEH   BLOCK     CODE     ---       LVL=0
+      010022EEH   LINE      ---      ---       #88
+      010022EEH   LINE      ---      ---       #89
+      010022EEH   BLOCK     CODE     NEAR LAB  LVL=1
+      010022EEH   LINE      ---      ---       #92
+      010022F4H   LINE      ---      ---       #94
+      010022F8H   LINE      ---      ---       #95
+      010022FFH   LINE      ---      ---       #96
+      01002302H   LINE      ---      ---       #97
+      01002323H   LINE      ---      ---       #98
+      01002344H   LINE      ---      ---       #99
+      01002345H   LINE      ---      ---       #101
+      01002345H   LINE      ---      ---       #102
+      01002367H   LINE      ---      ---       #103
+      01002379H   LINE      ---      ---       #104
+      01002379H   LINE      ---      ---       #105
+      00000006H   SYMBOL    DATA     VOID      queue
+      00000007H   SYMBOL    DATA     VOID      group
+      ---         BLOCKEND  CODE     ---       LVL=1
+      ---         BLOCKEND  CODE     ---       LVL=0
+
+      01003E2EH   BLOCK     CODE     ---       LVL=0
+      01003E2EH   LINE      ---      ---       #107
+      01003E2EH   LINE      ---      ---       #108
+      01003E2EH   BLOCK     CODE     NEAR LAB  LVL=1
+      01003E2EH   LINE      ---      ---       #111
+      01003E32H   LINE      ---      ---       #113
+      01003E36H   LINE      ---      ---       #114
+      01003E3DH   LINE      ---      ---       #115
+      01003E5FH   LINE      ---      ---       #116
+      01003E6CH   LINE      ---      ---       #117
+      00000006H   SYMBOL    DATA     VOID      queue
+      00000007H   SYMBOL    DATA     VOID      group
+      ---         BLOCKEND  CODE     ---       LVL=1
+      ---         BLOCKEND  CODE     ---       LVL=0
+
+      010022DBH   BLOCK     CODE     ---       LVL=0
+      010022DBH   LINE      ---      ---       #119
+      010022E0H   LINE      ---      ---       #120
+      010022E0H   BLOCK     CODE     NEAR LAB  LVL=1
+      010022E0H   LINE      ---      ---       #121
+      010022E4H   LINE      ---      ---       #122
+      00000021H.0 SYMBOL    BIT      VOID      st
+      ---         BLOCKEND  CODE     ---       LVL=1
+      ---         BLOCKEND  CODE     ---       LVL=0
+
+      010021EBH   BLOCK     CODE     ---       LVL=0
+      010021EBH   LINE      ---      ---       #125
+      010021F0H   LINE      ---      ---       #126
+      010021F0H   BLOCK     CODE     NEAR LAB  LVL=1
+      010021F0H   LINE      ---      ---       #127
+      010021FAH   LINE      ---      ---       #128
+      00000021H.1 SYMBOL    BIT      VOID      st
+      ---         BLOCKEND  CODE     ---       LVL=1
+      ---         BLOCKEND  CODE     ---       LVL=0
+
+      010026FBH   BLOCK     CODE     ---       LVL=0
+      010026FBH   LINE      ---      ---       #131
+      010026FBH   LINE      ---      ---       #132
+      010026FBH   BLOCK     CODE     NEAR LAB  LVL=1
+      010026FBH   LINE      ---      ---       #134
+      010026FDH   LINE      ---      ---       #135
+      0100272EH   LINE      ---      ---       #136
+      00000007H   SYMBOL    DATA     VOID      i
+      ---         BLOCKEND  CODE     ---       LVL=1
+      ---         BLOCKEND  CODE     ---       LVL=0
+
+      ---         MODULE    ---      ---       IIC
+      01001E20H   PUBLIC    CODE     ---       _IIC_WriteBlock
+      01003E6DH   PUBLIC    CODE     ---       _IIC_write
+      01001ECFH   PUBLIC    CODE     ---       _IIC_Read
+
+      01001FD2H   BLOCK     CODE     ---       LVL=0
+      01001FD2H   LINE      ---      ---       #11
+      01001FD2H   LINE      ---      ---       #12
+      01001FD2H   LINE      ---      ---       #13
+      01001FD9H   LINE      ---      ---       #14
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01001ECFH   BLOCK     CODE     ---       LVL=0
+      01001ECFH   LINE      ---      ---       #16
+      01001EE0H   LINE      ---      ---       #17
+      01001EE0H   BLOCK     CODE     NEAR LAB  LVL=1
+      01001EE0H   LINE      ---      ---       #18
+      01001EE0H   LINE      ---      ---       #19
+      01001EE9H   LINE      ---      ---       #20
+      01001EEFH   LINE      ---      ---       #21
+      01001EF5H   LINE      ---      ---       #22
+      01001EFBH   LINE      ---      ---       #23
+      01001F14H   LINE      ---      ---       #24
+      01001F29H   LINE      ---      ---       #25
+      01001F42H   LINE      ---      ---       #26
+      01001F48H   LINE      ---      ---       #27
+      01001F50H   LINE      ---      ---       #28
+      01001F57H   LINE      ---      ---       #29
+      01001F57H   LINE      ---      ---       #30
+      01001F5EH   LINE      ---      ---       #31
+      01001F60H   LINE      ---      ---       #32
+      00000006H   SYMBOL    DATA     VOID      mem_src
+      ---         BLOCKEND  CODE     ---       LVL=1
+      ---         BLOCKEND  CODE     ---       LVL=0
+
+      01003E6DH   BLOCK     CODE     ---       LVL=0
+      01003E6DH   LINE      ---      ---       #35
+      01003E88H   LINE      ---      ---       #36
+      01003E88H   LINE      ---      ---       #37
+      01003EA9H   LINE      ---      ---       #38
+      01003EAFH   LINE      ---      ---       #39
+      01003EBEH   LINE      ---      ---       #40
+      01003EDBH   LINE      ---      ---       #41
+      01003EF2H   LINE      ---      ---       #42
+      01003EF9H   LINE      ---      ---       #43
+      01003EFEH   LINE      ---      ---       #44
+      01003F05H   LINE      ---      ---       #45
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01001E20H   BLOCK     CODE     ---       LVL=0
+      01001E20H   LINE      ---      ---       #48
+      01001E37H   LINE      ---      ---       #49
+      01001E37H   BLOCK     CODE     NEAR LAB  LVL=1
+      01001E37H   LINE      ---      ---       #51
+      01001E43H   LINE      ---      ---       #52
+      01001E53H   LINE      ---      ---       #53
+      01001E61H   LINE      ---      ---       #54
+      01001E87H   LINE      ---      ---       #55
+      01001E94H   LINE      ---      ---       #56
+      01001EAAH   LINE      ---      ---       #57
+      01001EAFH   LINE      ---      ---       #58
+      01001EC0H   LINE      ---      ---       #59
+      01001ECCH   LINE      ---      ---       #60
+      01001ECEH   LINE      ---      ---       #61
+      00000004H   SYMBOL    DATA     VOID      cris
+      02004EA6H   SYMBOL    XDATA    VOID      curr_len
+      ---         BLOCKEND  CODE     ---       LVL=1
+      ---         BLOCKEND  CODE     ---       LVL=0
+
+      ---         MODULE    ---      ---       UTILITIES
+      02004EBEH   PUBLIC    XDATA    BYTE      ?_compare_str?BYTE
+      01002846H   PUBLIC    CODE     ---       _compare_str
+      01000F6EH   PUBLIC    CODE     ---       _Delay1ms
+      01002819H   PUBLIC    CODE     ---       _xmemclear_ff
+      010014D8H   PUBLIC    CODE     ---       _xmemclear
+      02004EA8H   PUBLIC    XDATA    BYTE      ?_dmemcpy?BYTE
+      01003F08H   PUBLIC    CODE     ---       _dmemcpy
+      02004ECBH   PUBLIC    XDATA    BYTE      ?_xmemcpy?BYTE
+      010010C8H   PUBLIC    CODE     ---       _xmemcpy
+      01003F4CH   PUBLIC    CODE     ---       YC_Ice_break
+
+      01003F4CH   BLOCK     CODE     ---       LVL=0
+      01003F4CH   LINE      ---      ---       #3
+      01003F4CH   LINE      ---      ---       #4
+      01003F4CH   LINE      ---      ---       #5
+      01003F52H   LINE      ---      ---       #7
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      010010C8H   BLOCK     CODE     ---       LVL=0
+      010010C8H   LINE      ---      ---       #9
+      010010D9H   LINE      ---      ---       #10
+      010010D9H   LINE      ---      ---       #11
+      010010E3H   LINE      ---      ---       #12
+      0100110AH   LINE      ---      ---       #14
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01003F08H   BLOCK     CODE     ---       LVL=0
+      01003F08H   LINE      ---      ---       #16
+      01003F13H   LINE      ---      ---       #17
+      01003F13H   LINE      ---      ---       #18
+      01003F21H   LINE      ---      ---       #19
+      01003F4BH   LINE      ---      ---       #21
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      010014D8H   BLOCK     CODE     ---       LVL=0
+      010014D8H   LINE      ---      ---       #23
+      010014E3H   LINE      ---      ---       #24
+      010014E3H   LINE      ---      ---       #25
+      010014EDH   LINE      ---      ---       #26
+      01001503H   LINE      ---      ---       #28
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01002819H   BLOCK     CODE     ---       LVL=0
+      01002819H   LINE      ---      ---       #30
+      01002824H   LINE      ---      ---       #31
+      01002824H   LINE      ---      ---       #32
+      0100282EH   LINE      ---      ---       #33
+      01002845H   LINE      ---      ---       #35
+      ---         BLOCKEND  ---      ---       LVL=0
+
+      01000F6EH   BLOCK     CODE     ---       LVL=0
+      01000F6EH   LINE      ---      ---       #46
+      01000F6EH   LINE      ---      ---       #47
+      01000F6EH   BLOCK     CODE     NEAR LAB  LVL=1
+      01000F6EH   LINE      ---      ---       #49
+      01000F74H   LINE      ---      ---       #50
+      01000F82H   LINE      ---      ---       #51
+      01000F85H   LINE      ---      ---       #52
+      00000004H   SYMBOL    DATA     VOID      j
+      ---         BLOCKEND  CODE     ---       LVL=1
+      ---         BLOCKEND  CODE     ---       LVL=0
+
+      01002846H   BLOCK     CODE     ---       LVL=0
+      01002846H   LINE      ---      ---       #54
+      01002851H   LINE      ---      ---       #55
+      01002851H   BLOCK     CODE     NEAR LAB  LVL=1
+      01002851H   LINE      ---      ---       #57
+      0100285DH   LINE      ---      ---       #58
+      01002887H   LINE      ---      ---       #59
+      0100288AH   LINE      ---      ---       #60
+      0100288DH   LINE      ---      ---       #61
+      0100288FH   LINE      ---      ---       #62
+      00000007H   SYMBOL    DATA     VOID      i
+      ---         BLOCKEND  CODE     ---       LVL=1
+      ---         BLOCKEND  CODE     ---       LVL=0
+
+      ---         MODULE    ---      ---       ?C?FPADD
+      0100000AH   PUBLIC    CODE     ---       ?C?FPADD
+      01000006H   PUBLIC    CODE     ---       ?C?FPSUB
+
+      ---         MODULE    ---      ---       ?C?FPMUL
+      010000FBH   PUBLIC    CODE     ---       ?C?FPMUL
+
+      ---         MODULE    ---      ---       ?C?FCAST
+      0100020BH   PUBLIC    CODE     ---       ?C?FCASTC
+      01000206H   PUBLIC    CODE     ---       ?C?FCASTI
+      01000201H   PUBLIC    CODE     ---       ?C?FCASTL
+
+      ---         MODULE    ---      ---       ?C?CASTF
+      0100023FH   PUBLIC    CODE     ---       ?C?CASTF
+
+      ---         MODULE    ---      ---       ?C?FPGETOPN
+      01000276H   PUBLIC    CODE     ---       ?C?FPGETOPN2
+      010002ABH   PUBLIC    CODE     ---       ?C?FPNANRESULT
+      010002B5H   PUBLIC    CODE     ---       ?C?FPOVERFLOW
+      0100028DH   PUBLIC    CODE     ---       ?C?FPRESULT
+      010002A1H   PUBLIC    CODE     ---       ?C?FPRESULT2
+      010002B2H   PUBLIC    CODE     ---       ?C?FPUNDERFLOW
+
+      ---         MODULE    ---      ---       ?C_STARTUP
+      01000000H   PUBLIC    CODE     ---       ?C_STARTUP
+
+      ---         MODULE    ---      ---       ?C?COPY
+      01000390H   PUBLIC    CODE     ---       ?C?COPY
+
+      ---         MODULE    ---      ---       ?C?CLDPTR
+      010003B6H   PUBLIC    CODE     ---       ?C?CLDPTR
+
+      ---         MODULE    ---      ---       ?C?CLDOPTR
+      010003CFH   PUBLIC    CODE     ---       ?C?CLDOPTR
+
+      ---         MODULE    ---      ---       ?C?CSTPTR
+      010003FCH   PUBLIC    CODE     ---       ?C?CSTPTR
+
+      ---         MODULE    ---      ---       ?C?UIDIV
+      0100040EH   PUBLIC    CODE     ---       ?C?UIDIV
+
+      ---         MODULE    ---      ---       ?C?IILDX
+      01000463H   PUBLIC    CODE     ---       ?C?IILDX
+
+      ---         MODULE    ---      ---       ?C?ILDIX
+      01000479H   PUBLIC    CODE     ---       ?C?ILDIX
+
+      ---         MODULE    ---      ---       ?C?LMUL
+      0100048FH   PUBLIC    CODE     ---       ?C?LMUL
+
+      ---         MODULE    ---      ---       ?C?ULDIV
+      0100051AH   PUBLIC    CODE     ---       ?C?ULDIV
+
+      ---         MODULE    ---      ---       ?C?LNEG
+      010005ACH   PUBLIC    CODE     ---       ?C?LNEG
+
+      ---         MODULE    ---      ---       ?C?ULCMP
+      010005BAH   PUBLIC    CODE     ---       ?C?ULCMP
+
+      ---         MODULE    ---      ---       ?C?LSTXDATA
+      010005CBH   PUBLIC    CODE     ---       ?C?LSTXDATA
+
+      ---         MODULE    ---      ---       ?C?LSTKXDATA
+      010005D7H   PUBLIC    CODE     ---       ?C?LSTKXDATA
+
+      ---         MODULE    ---      ---       ?C?CCASE
+      01000608H   PUBLIC    CODE     ---       ?C?CCASE
+
+      ---         MODULE    ---      ---       ?C?ICALL
+      0100062EH   PUBLIC    CODE     ---       ?C?ICALL
+      01000632H   PUBLIC    CODE     ---       ?C?ICALL2
+
+      ---         MODULE    ---      ---       ?C_INIT
+      0100067BH   PUBLIC    CODE     ---       ?C_START
+
+Program Size: data=10.2 xdata=949 const=182 code=16029
+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

Property changes on: c51/output/FW.SBR
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: c51/output/eeprom.dat
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/c51/output/eeprom.dat	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/c51/output/eeprom.dat	(working copy)
@@ -0,0 +1,32768 @@
+00
+02
+aa
+55
+32
+1f
+c5
+12
+80
+1a
+c0
+00
+00
+45
+c0
+01
+80
+49
+c0
+02
+80
+55
+c0
+03
+03
+00
+c0
+05
+03
+21
+c0
+13
+83
+25
+c0
+14
+03
+37
+c0
+15
+83
+3d
+c0
+21
+03
+48
+c0
+21
+83
+4c
+c0
+28
+03
+54
+c0
+2a
+03
+63
+c0
+18
+80
+41
+c0
+19
+80
+3e
+c0
+48
+02
+0e
+c0
+49
+01
+d8
+c0
+4a
+01
+de
+c0
+4a
+81
+c8
+c0
+58
+02
+fe
+c0
+58
+81
+8c
+c0
+59
+01
+a0
+c0
+59
+81
+ba
+c0
+5b
+01
+c3
+c0
+5c
+81
+94
+20
+20
+3b
+f1
+c0
+0c
+03
+6f
+c0
+0d
+83
+77
+c0
+11
+83
+96
+c0
+12
+03
+b2
+c0
+19
+04
+30
+c0
+1d
+d3
+b0
+c0
+1f
+02
+73
+c0
+1f
+82
+77
+c0
+25
+04
+7c
+c0
+25
+84
+29
+c0
+26
+04
+33
+c0
+27
+04
+39
+c0
+2b
+04
+40
+c0
+30
+84
+47
+c0
+31
+84
+4c
+c0
+32
+04
+70
+c0
+32
+84
+a6
+c0
+34
+86
+02
+c0
+35
+05
+ed
+c0
+35
+85
+ef
+c0
+37
+06
+0d
+c0
+37
+84
+87
+c0
+43
+81
+27
+c0
+46
+82
+92
+c0
+47
+02
+ab
+c0
+47
+82
+7b
+c0
+5e
+82
+89
+c0
+66
+82
+1b
+c0
+67
+81
+33
+c0
+68
+01
+48
+c0
+4e
+03
+b6
+c0
+4f
+83
+cc
+c0
+71
+03
+d9
+c0
+71
+83
+eb
+c0
+73
+04
+03
+20
+20
+3b
+f1
+da
+20
+40
+40
+18
+00
+72
+01
+20
+20
+33
+05
+d8
+a0
+40
+40
+df
+20
+00
+0a
+20
+40
+7e
+3b
+20
+20
+32
+d8
+68
+10
+81
+3b
+60
+00
+8b
+81
+70
+80
+06
+08
+20
+20
+30
+03
+20
+40
+00
+d7
+20
+40
+00
+c9
+20
+40
+00
+5a
+20
+40
+00
+4e
+20
+20
+30
+15
+68
+09
+47
+f4
+68
+00
+c3
+d8
+7d
+3a
+04
+0b
+68
+00
+c1
+33
+7d
+3a
+04
+06
+60
+09
+47
+f4
+20
+60
+00
+00
+20
+40
+33
+92
+20
+40
+34
+07
+20
+40
+30
+24
+20
+40
+06
+2e
+20
+20
+30
+22
+68
+00
+c7
+dc
+20
+3a
+00
+5e
+68
+00
+c7
+93
+20
+7a
+00
+00
+20
+40
+01
+22
+20
+74
+00
+00
+1f
+f0
+fe
+00
+1f
+e2
+0c
+00
+20
+40
+01
+03
+60
+00
+cb
+a7
+c0
+00
+80
+73
+c0
+03
+00
+7d
+1f
+e2
+04
+00
+18
+c2
+22
+00
+68
+00
+c0
+40
+c3
+00
+00
+70
+1a
+22
+0c
+00
+c6
+84
+80
+00
+18
+42
+7e
+00
+c0
+01
+80
+7f
+c0
+02
+80
+9d
+20
+20
+3b
+f1
+1a
+22
+0c
+00
+d8
+a0
+00
+f8
+20
+20
+00
+fb
+20
+40
+01
+03
+20
+40
+01
+03
+60
+00
+8b
+7d
+20
+40
+00
+78
+20
+20
+7c
+33
+20
+40
+01
+06
+18
+c2
+04
+00
+18
+50
+84
+00
+60
+09
+4b
+9a
+20
+60
+00
+00
+d8
+a0
+4d
+34
+20
+20
+00
+fb
+20
+40
+01
+03
+1f
+e2
+22
+00
+18
+c2
+7e
+00
+60
+01
+02
+b7
+20
+40
+52
+7c
+24
+3a
+00
+88
+1a
+20
+a2
+01
+20
+40
+4b
+2c
+20
+20
+00
+8d
+d8
+a0
+4b
+ad
+1a
+22
+72
+00
+68
+01
+02
+b7
+1f
+e2
+0c
+00
+20
+20
+00
+fd
+18
+a0
+a5
+fe
+68
+01
+42
+b7
+e0
+a1
+00
+00
+58
+00
+00
+a1
+e0
+a0
+80
+00
+1a
+20
+f3
+ff
+68
+01
+02
+b7
+1f
+e2
+0c
+00
+20
+40
+00
+fd
+1a
+42
+0c
+00
+e8
+c1
+00
+00
+60
+01
+4c
+7b
+1f
+e0
+f2
+02
+20
+40
+7e
+45
+70
+4c
+7a
+64
+20
+60
+00
+00
+18
+c2
+22
+00
+68
+00
+cb
+a9
+1f
+e0
+84
+01
+18
+41
+04
+03
+60
+08
+cb
+a9
+1f
+ef
+fe
+07
+d8
+a0
+4b
+ad
+98
+a0
+8a
+00
+1a
+22
+0c
+00
+20
+40
+01
+03
+18
+c2
+22
+00
+1f
+e0
+ff
+ff
+1f
+e2
+72
+00
+1f
+e0
+fe
+07
+60
+00
+cc
+62
+1a
+22
+0c
+00
+20
+40
+01
+03
+18
+c2
+22
+00
+c0
+00
+80
+b5
+c0
+01
+00
+bd
+c0
+01
+80
+bf
+c0
+02
+00
+c5
+c0
+03
+00
+c1
+c0
+04
+00
+c3
+68
+01
+4c
+91
+e0
+a1
+00
+00
+1a
+22
+0c
+00
+20
+40
+00
+fd
+20
+40
+56
+1e
+24
+7a
+00
+00
+70
+0b
+7d
+1b
+20
+20
+56
+20
+68
+01
+4c
+93
+20
+20
+00
+b6
+68
+01
+4c
+95
+20
+20
+00
+b6
+68
+01
+4c
+99
+20
+20
+00
+b6
+68
+01
+4c
+99
+20
+20
+00
+b6
+68
+01
+4c
+97
+e0
+a1
+00
+00
+1a
+22
+0c
+00
+20
+20
+00
+fd
+68
+0a
+4d
+28
+1c
+42
+7e
+00
+98
+46
+7e
+00
+68
+09
+4d
+2c
+98
+46
+fc
+00
+20
+40
+7e
+fd
+18
+07
+fe
+00
+20
+7a
+00
+00
+1c
+42
+04
+00
+60
+0a
+4d
+28
+68
+00
+cd
+2e
+1f
+e0
+fe
+01
+60
+00
+cd
+2e
+20
+60
+00
+00
+68
+0a
+4c
+3a
+1c
+42
+7e
+00
+98
+46
+7e
+00
+d8
+40
+06
+40
+98
+46
+fc
+00
+20
+40
+7e
+fd
+18
+07
+fe
+00
+20
+7a
+00
+00
+1c
+42
+04
+00
+60
+0a
+4c
+3a
+68
+09
+4b
+a5
+18
+50
+84
+00
+98
+40
+fe
+00
+1f
+f0
+fe
+00
+60
+01
+4b
+a5
+1f
+f0
+fe
+00
+1f
+e1
+7e
+03
+c1
+80
+00
+00
+70
+89
+71
+af
+68
+10
+80
+53
+79
+20
+7e
+07
+60
+10
+80
+53
+68
+10
+89
+73
+1f
+e1
+fe
+30
+60
+10
+89
+73
+70
+89
+06
+74
+70
+89
+06
+7c
+70
+89
+72
+aa
+20
+00
+13
+88
+68
+19
+01
+50
+68
+10
+80
+53
+79
+3f
+fe
+07
+60
+10
+80
+53
+18
+50
+84
+00
+60
+09
+4c
+75
+20
+60
+00
+00
+20
+40
+01
+03
+1f
+e2
+72
+00
+20
+40
+00
+ff
+20
+20
+00
+78
+20
+40
+01
+03
+e0
+a0
+80
+00
+c2
+00
+00
+ff
+20
+60
+00
+00
+20
+40
+01
+06
+e8
+c0
+80
+00
+20
+60
+00
+00
+58
+00
+4b
+36
+98
+c6
+7c
+00
+24
+62
+80
+00
+d8
+c0
+4a
+a0
+20
+60
+00
+00
+df
+20
+00
+03
+d8
+c0
+4b
+a2
+18
+c2
+22
+00
+68
+01
+4b
+a0
+1f
+f0
+fe
+00
+1f
+e2
+0a
+00
+1a
+22
+0c
+00
+e8
+c0
+80
+00
+e0
+a0
+80
+00
+20
+40
+01
+1a
+c2
+00
+01
+12
+18
+a2
+7e
+00
+1f
+f0
+fe
+00
+60
+01
+4b
+a0
+20
+60
+00
+00
+58
+00
+4b
+9a
+98
+a6
+7c
+00
+24
+62
+80
+00
+d8
+a0
+4b
+36
+20
+60
+00
+00
+68
+01
+4b
+9e
+68
+09
+4b
+a0
+20
+20
+01
+24
+68
+01
+4b
+9a
+68
+09
+4b
+9c
+98
+46
+7c
+00
+20
+22
+e9
+b1
+20
+20
+32
+0b
+1c
+42
+7e
+00
+60
+02
+4d
+24
+68
+08
+c7
+ef
+68
+00
+cd
+27
+98
+46
+7c
+00
+24
+41
+01
+2e
+20
+20
+7c
+06
+68
+0a
+4d
+24
+60
+0a
+47
+ec
+60
+0a
+4c
+3a
+60
+0a
+4d
+28
+20
+60
+00
+00
+da
+20
+47
+df
+20
+40
+7f
+9f
+20
+7a
+00
+00
+1f
+e2
+26
+00
+20
+40
+01
+39
+20
+20
+3e
+a5
+c1
+0c
+00
+00
+c0
+0a
+06
+1f
+c0
+0a
+86
+24
+c0
+03
+66
+14
+c0
+01
+01
+3f
+20
+20
+3e
+7d
+70
+42
+9d
+00
+68
+01
+47
+f4
+c2
+83
+bf
+08
+2f
+ec
+00
+01
+20
+40
+81
+45
+20
+20
+3f
+08
+68
+00
+84
+50
+c1
+01
+00
+00
+20
+20
+3e
+7b
+60
+08
+82
+59
+68
+00
+cc
+6d
+1f
+e0
+fe
+01
+60
+00
+cc
+6d
+68
+00
+82
+59
+20
+7a
+00
+00
+1f
+e0
+ff
+ff
+60
+00
+82
+59
+20
+40
+01
+68
+20
+40
+01
+6f
+20
+40
+01
+54
+20
+20
+01
+4c
+68
+00
+cc
+9d
+24
+7a
+00
+00
+68
+00
+cc
+7a
+20
+7a
+00
+00
+1f
+e0
+ff
+ff
+60
+00
+cc
+7a
+c1
+80
+80
+00
+70
+4c
+7a
+64
+68
+01
+47
+f4
+c4
+02
+80
+00
+68
+01
+4c
+7b
+20
+7a
+00
+00
+20
+40
+52
+7e
+24
+7a
+00
+00
+68
+01
+4c
+7b
+1f
+e2
+22
+00
+20
+40
+4b
+2c
+1a
+20
+f2
+02
+d8
+c0
+4c
+7d
+20
+20
+7e
+45
+68
+00
+c7
+f2
+20
+7a
+00
+00
+1f
+e0
+ff
+ff
+60
+00
+c7
+f2
+24
+7a
+00
+00
+20
+40
+3e
+bd
+20
+20
+4b
+22
+68
+00
+cc
+0b
+20
+7a
+00
+00
+1f
+e0
+ff
+ff
+60
+00
+cc
+0b
+20
+60
+00
+00
+1a
+62
+7e
+00
+1f
+e1
+7e
+f0
+c1
+28
+00
+00
+20
+40
+01
+7c
+1a
+62
+7e
+00
+20
+7a
+00
+00
+60
+00
+cb
+a4
+20
+20
+01
+0b
+1a
+62
+7e
+00
+c0
+05
+81
+80
+c0
+01
+01
+88
+20
+60
+00
+00
+70
+4c
+7a
+28
+58
+00
+00
+0a
+60
+01
+4c
+7b
+68
+01
+42
+b7
+e0
+a1
+00
+00
+58
+00
+01
+a1
+e0
+a1
+00
+00
+20
+60
+00
+00
+70
+4c
+7a
+00
+df
+20
+00
+14
+d8
+a0
+4c
+7b
+20
+20
+7e
+3f
+70
+41
+6e
+7f
+20
+40
+3c
+f3
+68
+00
+cc
+77
+20
+7a
+00
+00
+70
+4c
+77
+00
+1c
+42
+7e
+00
+60
+02
+4c
+3a
+20
+60
+00
+00
+68
+00
+c2
+19
+24
+7a
+00
+00
+70
+80
+42
+06
+58
+00
+0f
+0c
+20
+40
+3d
+a7
+58
+03
+0d
+40
+20
+40
+3b
+f3
+37
+d9
+82
+00
+1e
+22
+60
+00
+20
+40
+3b
+36
+20
+00
+13
+88
+20
+20
+3d
+9d
+c6
+11
+80
+00
+68
+01
+47
+f4
+c2
+84
+bd
+1e
+20
+40
+3c
+ab
+68
+01
+c2
+10
+20
+7a
+00
+00
+68
+00
+c1
+31
+20
+7a
+00
+00
+20
+40
+52
+7e
+24
+7a
+00
+00
+20
+40
+3d
+ca
+24
+7a
+00
+00
+20
+40
+3b
+36
+68
+00
+c7
+dc
+20
+3a
+3d
+25
+68
+00
+c7
+93
+20
+7a
+00
+00
+20
+20
+3d
+25
+20
+40
+01
+22
+24
+74
+00
+00
+20
+40
+01
+1f
+24
+74
+00
+00
+70
+0b
+7f
+01
+70
+0b
+7e
+01
+20
+40
+01
+bf
+20
+20
+01
+22
+20
+40
+01
+b2
+24
+74
+00
+00
+68
+00
+8b
+7f
+24
+7a
+00
+00
+20
+20
+3d
+2d
+68
+00
+8b
+7e
+20
+00
+00
+0a
+c0
+80
+01
+bf
+20
+60
+00
+00
+20
+40
+01
+b2
+24
+74
+00
+00
+68
+00
+8b
+7f
+24
+7a
+00
+00
+20
+20
+3d
+4f
+20
+40
+01
+ca
+20
+20
+3a
+af
+68
+00
+c2
+19
+24
+3a
+01
+d0
+20
+40
+3d
+91
+20
+00
+75
+30
+20
+00
+75
+30
+20
+00
+75
+30
+20
+40
+3b
+0a
+70
+80
+42
+04
+68
+10
+89
+6b
+1f
+e1
+7e
+cf
+60
+10
+89
+6b
+1f
+e1
+fe
+30
+60
+10
+89
+6b
+20
+60
+00
+00
+60
+08
+80
+17
+18
+40
+a2
+04
+20
+20
+3a
+86
+60
+08
+80
+17
+18
+40
+a2
+00
+20
+20
+3a
+b6
+20
+40
+01
+db
+58
+00
+05
+00
+20
+40
+3b
+f3
+70
+89
+06
+01
+70
+89
+00
+3c
+70
+89
+01
+e0
+70
+89
+6d
+12
+20
+00
+00
+0a
+70
+89
+02
+01
+70
+89
+02
+3d
+20
+00
+00
+0a
+70
+89
+03
+b7
+20
+00
+00
+0a
+70
+89
+02
+7d
+68
+00
+cb
+ef
+c0
+ff
+81
+f6
+68
+02
+ca
+91
+e0
+a2
+80
+00
+e8
+c2
+80
+00
+e0
+a2
+80
+00
+70
+89
+56
+df
+20
+40
+01
+fd
+70
+89
+55
+df
+20
+60
+00
+00
+68
+02
+ca
+87
+e0
+a2
+80
+00
+e8
+c2
+80
+00
+e0
+a2
+80
+00
+70
+89
+56
+c2
+70
+89
+55
+d0
+20
+60
+00
+00
+20
+00
+00
+04
+70
+89
+55
+d1
+20
+00
+00
+04
+70
+89
+55
+d2
+20
+00
+00
+04
+70
+89
+55
+d4
+20
+00
+00
+04
+20
+60
+00
+00
+70
+89
+55
+d4
+20
+00
+00
+04
+70
+89
+55
+d2
+20
+00
+00
+04
+70
+89
+55
+d1
+20
+00
+00
+04
+70
+89
+55
+d0
+70
+89
+56
+c0
+20
+60
+00
+00
+20
+30
+ba
+6f
+20
+40
+02
+05
+20
+20
+3a
+6f
+20
+40
+52
+7c
+24
+7a
+00
+00
+20
+20
+00
+5a
+78
+34
+7c
+00
+68
+12
+01
+38
+79
+34
+7e
+1a
+60
+12
+00
+4c
+20
+40
+3d
+b0
+70
+00
+a2
+01
+20
+60
+00
+00
+68
+00
+c4
+19
+1f
+e0
+fe
+02
+60
+00
+c3
+f9
+70
+0b
+7e
+00
+70
+01
+77
+06
+20
+40
+3f
+a4
+58
+00
+02
+11
+60
+01
+42
+8e
+58
+00
+02
+1a
+60
+01
+42
+8a
+58
+00
+01
+74
+60
+01
+42
+92
+58
+00
+02
+7a
+60
+01
+42
+90
+58
+00
+00
+5a
+60
+01
+42
+8c
+58
+00
+02
+14
+60
+01
+42
+88
+58
+00
+4a
+a0
+1f
+f0
+fe
+00
+60
+01
+4b
+9a
+60
+01
+4b
+9c
+20
+40
+3e
+0b
+58
+00
+4b
+36
+1f
+f0
+fe
+00
+60
+01
+4b
+9e
+60
+01
+4b
+a0
+68
+00
+cc
+77
+c0
+2d
+02
+4e
+20
+35
+82
+4c
+68
+01
+4c
+71
+1f
+f0
+fe
+00
+60
+01
+4c
+71
+68
+01
+4c
+73
+1f
+f0
+fe
+00
+60
+01
+4c
+73
+20
+40
+02
+59
+68
+04
+02
+a0
+24
+3a
+02
+46
+68
+01
+4a
+d4
+1f
+f0
+fe
+00
+20
+3a
+02
+46
+60
+01
+4c
+73
+20
+40
+06
+2b
+70
+4b
+a4
+2f
+20
+40
+01
+0b
+70
+4c
+77
+00
+70
+82
+80
+03
+20
+60
+00
+00
+70
+4b
+a4
+30
+20
+20
+02
+48
+1c
+e2
+7e
+00
+20
+3a
+02
+81
+20
+40
+5b
+63
+20
+40
+4d
+99
+58
+00
+00
+00
+60
+04
+40
+40
+60
+01
+47
+f4
+1c
+42
+7e
+00
+60
+02
+4c
+3a
+70
+4b
+a4
+33
+20
+20
+02
+48
+20
+40
+68
+8a
+58
+00
+07
+e0
+da
+20
+02
+a0
+d8
+40
+00
+0e
+20
+40
+68
+d3
+20
+40
+68
+8d
+68
+00
+82
+a0
+c2
+80
+3b
+f1
+68
+04
+02
+a2
+20
+7a
+00
+00
+68
+09
+02
+a4
+68
+01
+02
+aa
+18
+42
+24
+00
+1f
+e2
+22
+00
+98
+46
+26
+00
+1a
+6b
+26
+00
+1a
+42
+7e
+00
+9a
+66
+7e
+00
+1f
+f0
+fe
+00
+60
+01
+4c
+71
+1a
+63
+a6
+00
+1a
+22
+7e
+00
+9a
+66
+7e
+00
+1f
+f0
+fe
+00
+60
+01
+4c
+73
+20
+60
+00
+00
+70
+00
+16
+27
+70
+89
+0f
+36
+70
+89
+0b
+5f
+20
+20
+53
+d4
+70
+89
+0f
+2e
+70
+89
+0b
+ff
+20
+20
+53
+d9
+20
+60
+00
+00
+68
+01
+4b
+a0
+60
+01
+4b
+9e
+68
+01
+4b
+9c
+60
+01
+4b
+9a
+70
+0b
+7e
+03
+20
+40
+01
+bf
+70
+4c
+77
+5a
+20
+40
+3d
+b8
+68
+12
+01
+38
+79
+3f
+fe
+0f
+60
+12
+00
+4c
+20
+40
+3d
+b0
+d8
+5f
+ff
+ff
+20
+20
+3c
+da
+ea
+2a
+80
+00
+18
+41
+7e
+ff
+24
+3a
+02
+8e
+18
+4c
+fe
+00
+e2
+22
+80
+00
+1a
+20
+a2
+04
+ea
+20
+80
+00
+24
+7a
+00
+00
+20
+20
+7f
+9c
+20
+40
+7c
+20
+da
+20
+47
+e4
+20
+40
+7f
+9f
+1f
+e2
+04
+00
+20
+40
+7c
+24
+18
+42
+7e
+00
+20
+7a
+00
+00
+c0
+10
+82
+a4
+c0
+11
+02
+a6
+c0
+11
+86
+c1
+c0
+00
+82
+e6
+c0
+06
+82
+c1
+c0
+16
+02
+c0
+c0
+15
+82
+cc
+c0
+01
+82
+e9
+c0
+15
+02
+f2
+c0
+09
+7c
+85
+20
+20
+7c
+5a
+70
+4b
+ef
+ff
+20
+20
+06
+f4
+79
+3f
+80
+23
+70
+4b
+ef
+ff
+20
+20
+06
+ac
+70
+0b
+7d
+22
+20
+20
+56
+20
+68
+00
+80
+7c
+20
+3a
+02
+b0
+20
+40
+61
+d9
+68
+00
+80
+7c
+24
+3a
+7c
+8c
+68
+00
+8b
+7d
+c5
+84
+fc
+87
+c0
+02
+02
+b6
+c0
+08
+82
+a9
+c0
+14
+02
+bc
+20
+20
+7c
+7b
+68
+01
+47
+f4
+c3
+01
+82
+b9
+20
+20
+7c
+a4
+58
+00
+00
+0a
+60
+02
+00
+51
+20
+20
+7c
+a4
+70
+00
+7c
+37
+68
+01
+4c
+78
+60
+01
+00
+51
+20
+60
+00
+00
+20
+40
+02
+e6
+20
+40
+3e
+ff
+20
+40
+7c
+d5
+70
+41
+31
+00
+18
+0a
+7e
+00
+60
+00
+c4
+f9
+70
+43
+dc
+05
+58
+18
+12
+03
+60
+01
+c3
+e2
+d8
+40
+00
+07
+20
+40
+02
+d2
+20
+20
+7c
+ae
+70
+43
+dc
+04
+58
+00
+00
+ff
+60
+01
+c3
+e2
+d8
+40
+00
+00
+20
+40
+02
+d2
+20
+20
+7c
+ae
+68
+00
+c3
+f9
+98
+40
+fe
+00
+1f
+e0
+fe
+0b
+1f
+e6
+7c
+1f
+24
+21
+02
+e2
+60
+00
+c3
+d9
+d8
+a0
+43
+e5
+18
+42
+7e
+00
+24
+5a
+02
+df
+68
+00
+c3
+f9
+1f
+e2
+72
+00
+d8
+c0
+43
+fa
+20
+20
+7e
+45
+1f
+e2
+72
+00
+d8
+c0
+4d
+48
+20
+20
+7e
+45
+68
+00
+c3
+f9
+1f
+e0
+fe
+0b
+60
+00
+c3
+d9
+20
+60
+00
+00
+20
+40
+3e
+ff
+70
+01
+77
+06
+20
+20
+7c
+97
+20
+40
+3b
+fa
+20
+40
+4d
+98
+20
+40
+5b
+62
+70
+01
+77
+06
+68
+00
+c7
+dc
+c0
+00
+02
+f0
+70
+01
+77
+17
+70
+42
+5e
+01
+20
+20
+7c
+a2
+68
+01
+47
+f4
+c2
+84
+bf
+90
+c2
+80
+02
+fb
+c2
+83
+fc
+d5
+c5
+11
+86
+ac
+70
+43
+d8
+00
+20
+40
+3f
+7e
+70
+0b
+7d
+37
+20
+20
+7c
+27
+20
+40
+3e
+ff
+20
+40
+7c
+d5
+20
+20
+3f
+77
+20
+40
+3b
+36
+20
+20
+3c
+dc
+20
+40
+03
+02
+20
+20
+30
+2c
+da
+60
+03
+04
+20
+20
+33
+01
+c3
+00
+b3
+07
+20
+40
+33
+3d
+20
+40
+03
+11
+98
+46
+7e
+00
+1f
+e0
+fe
+01
+20
+21
+03
+0b
+20
+20
+33
+25
+98
+00
+24
+00
+1a
+20
+8c
+02
+e8
+c1
+00
+00
+20
+3a
+33
+27
+20
+40
+33
+49
+20
+20
+03
+05
+1f
+f1
+16
+00
+19
+6c
+96
+00
+20
+22
+83
+1b
+29
+60
+1e
+0f
+24
+60
+80
+00
+18
+51
+16
+00
+19
+6c
+96
+00
+24
+62
+80
+00
+79
+20
+04
+1c
+20
+60
+00
+00
+18
+51
+16
+00
+19
+6c
+96
+00
+29
+60
+1e
+0f
+24
+60
+80
+00
+79
+20
+7e
+1c
+20
+60
+00
+00
+60
+0c
+02
+a0
+20
+40
+7e
+53
+68
+0c
+02
+a0
+20
+20
+30
+7c
+78
+54
+7c
+00
+68
+01
+00
+32
+d8
+40
+ff
+ff
+98
+46
+7c
+00
+24
+62
+80
+00
+68
+02
+00
+34
+20
+38
+03
+2e
+9d
+06
+7e
+00
+20
+20
+03
+2f
+9c
+46
+7e
+00
+1f
+e6
+7c
+04
+24
+61
+00
+00
+18
+00
+7e
+00
+60
+01
+00
+32
+20
+20
+34
+df
+70
+0b
+7d
+20
+20
+40
+7c
+27
+20
+20
+03
+38
+60
+0a
+00
+34
+70
+47
+48
+01
+58
+00
+ff
+ff
+60
+01
+00
+32
+70
+00
+73
+01
+20
+60
+00
+00
+20
+40
+3b
+aa
+20
+40
+03
+40
+20
+20
+32
+67
+1c
+40
+c2
+01
+20
+40
+3a
+54
+18
+00
+48
+03
+20
+40
+3a
+42
+20
+40
+3b
+ae
+20
+40
+3b
+b4
+20
+40
+3b
+c5
+20
+20
+37
+5c
+20
+40
+3e
+25
+20
+40
+6d
+ec
+20
+40
+35
+d6
+20
+20
+34
+80
+20
+40
+3d
+61
+20
+40
+3b
+e2
+20
+21
+34
+98
+20
+40
+32
+04
+24
+34
+34
+98
+20
+40
+38
+12
+24
+3a
+03
+49
+20
+60
+00
+00
+20
+40
+32
+df
+24
+22
+b5
+68
+68
+00
+80
+47
+c3
+01
+b5
+71
+68
+00
+c1
+65
+c0
+09
+b5
+62
+68
+01
+4c
+24
+1f
+e6
+7c
+14
+24
+21
+35
+62
+60
+01
+00
+91
+68
+00
+cc
+23
+60
+00
+80
+90
+58
+00
+4c
+26
+60
+01
+01
+79
+20
+20
+35
+62
+68
+01
+00
+91
+60
+01
+4c
+24
+1f
+e6
+7c
+14
+24
+21
+35
+8f
+98
+00
+72
+00
+68
+00
+80
+90
+60
+00
+cc
+23
+68
+01
+01
+79
+98
+00
+0c
+00
+d8
+a0
+4c
+26
+20
+40
+7e
+45
+20
+20
+35
+8f
+68
+01
+02
+cd
+20
+3a
+4d
+fc
+68
+00
+82
+cf
+c0
+00
+83
+74
+20
+20
+4d
+bb
+20
+40
+52
+7a
+24
+7a
+00
+00
+20
+20
+4d
+c3
+e8
+c0
+80
+00
+c0
+05
+03
+7a
+20
+20
+4e
+14
+e8
+c0
+80
+00
+1f
+e2
+0e
+00
+e8
+c1
+00
+00
+1f
+e2
+22
+00
+1a
+62
+7e
+00
+9a
+26
+26
+00
+58
+00
+00
+0b
+e0
+a0
+80
+00
+18
+e2
+7e
+00
+e0
+a0
+80
+00
+e8
+c1
+00
+00
+c0
+01
+03
+88
+c0
+01
+83
+8f
+20
+20
+3b
+f1
+58
+02
+00
+08
+e0
+a3
+00
+00
+58
+00
+02
+00
+e0
+a2
+00
+00
+18
+00
+7e
+0c
+9a
+40
+a4
+00
+20
+20
+4e
+20
+58
+03
+00
+0c
+e0
+a3
+00
+00
+58
+00
+00
+06
+e0
+a4
+00
+00
+18
+00
+7e
+10
+9a
+40
+a4
+00
+20
+20
+4e
+20
+20
+40
+52
+c4
+18
+00
+24
+00
+20
+40
+52
+d0
+1f
+e2
+0a
+00
+68
+01
+02
+cd
+1f
+e2
+26
+00
+68
+01
+02
+cb
+98
+00
+0c
+00
+20
+40
+03
+a0
+20
+20
+51
+10
+e8
+c0
+80
+00
+c0
+05
+03
+a3
+20
+20
+51
+16
+e8
+c0
+80
+00
+1f
+e2
+0e
+00
+e8
+c1
+00
+00
+1f
+e2
+22
+00
+e8
+c1
+00
+00
+60
+01
+02
+a0
+1a
+62
+7e
+00
+9a
+26
+26
+00
+20
+40
+52
+d0
+58
+00
+00
+0b
+e0
+a0
+80
+00
+18
+e2
+7e
+00
+e0
+a0
+80
+00
+68
+01
+02
+a0
+20
+20
+03
+85
+da
+40
+00
+00
+20
+40
+52
+7a
+24
+7a
+00
+00
+20
+20
+52
+4d
+68
+01
+02
+cb
+1f
+e2
+0c
+00
+e8
+c0
+80
+00
+1f
+e1
+04
+0f
+1f
+f1
+fe
+00
+c0
+05
+03
+c9
+c0
+02
+83
+c7
+c0
+00
+83
+c0
+c0
+02
+4b
+18
+20
+20
+4a
+ff
+18
+42
+7e
+00
+c0
+02
+cb
+09
+70
+4c
+9d
+01
+c0
+01
+cb
+18
+70
+4c
+9d
+00
+c0
+02
+4b
+18
+20
+60
+00
+00
+20
+40
+03
+c9
+20
+20
+4b
+11
+e8
+c0
+80
+00
+c0
+00
+84
+26
+20
+60
+00
+00
+20
+40
+52
+7a
+24
+7a
+00
+00
+20
+40
+03
+d0
+20
+20
+6d
+fd
+68
+00
+c1
+32
+c1
+00
+80
+00
+68
+00
+c3
+cd
+20
+7a
+00
+00
+1f
+e2
+22
+00
+70
+43
+cd
+00
+1a
+22
+7e
+00
+c0
+28
+4d
+dc
+20
+60
+00
+00
+68
+00
+80
+7d
+c0
+01
+83
+dd
+c0
+03
+83
+e8
+20
+20
+5b
+92
+68
+00
+84
+df
+60
+00
+84
+45
+c0
+09
+83
+34
+c0
+19
+83
+e2
+20
+20
+5c
+58
+68
+00
+84
+4d
+79
+20
+7e
+00
+60
+00
+84
+4d
+70
+0b
+7d
+01
+20
+40
+7c
+27
+20
+20
+5c
+83
+68
+00
+84
+df
+60
+00
+84
+46
+20
+20
+5c
+f3
+78
+54
+7c
+00
+20
+40
+61
+d9
+68
+00
+80
+48
+20
+7a
+00
+00
+c2
+83
+df
+10
+c0
+01
+03
+f3
+c0
+03
+84
+00
+20
+20
+5e
+e0
+18
+00
+7e
+11
+20
+40
+61
+b5
+68
+00
+80
+49
+1f
+e2
+04
+00
+c0
+00
+03
+fb
+c0
+07
+03
+fb
+c0
+0e
+03
+fb
+20
+60
+00
+00
+e0
+a0
+80
+00
+68
+00
+c7
+02
+e0
+a0
+80
+00
+58
+00
+00
+0e
+20
+20
+5f
+a6
+20
+40
+60
+55
+70
+00
+72
+64
+20
+60
+00
+00
+68
+00
+80
+7c
+20
+3a
+04
+08
+20
+40
+61
+d9
+68
+00
+80
+7c
+24
+7a
+00
+00
+68
+00
+80
+55
+20
+7a
+00
+00
+c0
+03
+04
+17
+c0
+08
+04
+0d
+20
+20
+62
+3e
+68
+00
+c7
+48
+c1
+00
+00
+00
+c0
+00
+84
+15
+d8
+e0
+00
+0a
+20
+40
+7e
+53
+24
+7a
+00
+00
+70
+47
+48
+00
+20
+20
+62
+9b
+20
+74
+80
+00
+20
+20
+04
+17
+68
+00
+81
+77
+c2
+81
+62
+9b
+c2
+80
+04
+1a
+68
+00
+c2
+5e
+20
+3a
+62
+c7
+68
+00
+84
+4d
+c4
+01
+80
+00
+c4
+01
+00
+00
+68
+02
+04
+65
+d8
+40
+03
+20
+98
+40
+84
+00
+1c
+42
+7e
+00
+98
+46
+7c
+00
+24
+61
+00
+00
+20
+20
+62
+67
+e8
+c0
+80
+00
+60
+00
+cc
+90
+20
+60
+00
+00
+20
+40
+54
+bd
+68
+08
+80
+17
+20
+40
+3a
+82
+20
+40
+3a
+87
+78
+28
+7c
+00
+d9
+60
+15
+7c
+20
+20
+54
+7f
+70
+44
+3e
+01
+70
+44
+3f
+00
+20
+20
+53
+4e
+20
+40
+53
+dd
+20
+40
+04
+36
+20
+20
+54
+c1
+20
+36
+81
+e1
+20
+40
+53
+ee
+20
+20
+3a
+91
+68
+00
+cc
+40
+60
+02
+46
+f9
+68
+00
+c4
+db
+c0
+00
+84
+3e
+20
+20
+54
+e0
+70
+44
+db
+00
+20
+20
+54
+ef
+68
+00
+83
+c0
+c4
+02
+80
+00
+68
+01
+03
+da
+68
+09
+03
+e0
+98
+46
+7e
+00
+24
+61
+00
+00
+20
+20
+55
+7e
+68
+00
+83
+d7
+c3
+82
+80
+00
+68
+00
+83
+41
+20
+3a
+56
+26
+20
+20
+58
+90
+68
+00
+c4
+40
+c0
+03
+84
+65
+c0
+07
+84
+69
+c0
+03
+04
+58
+c0
+01
+04
+55
+c0
+09
+84
+53
+20
+20
+56
+3a
+18
+00
+04
+01
+20
+20
+58
+92
+58
+00
+00
+0a
+60
+01
+03
+ef
+20
+20
+56
+93
+70
+0b
+7d
+12
+20
+40
+7c
+33
+18
+00
+04
+01
+20
+34
+d8
+92
+70
+0b
+7d
+34
+20
+40
+7c
+27
+68
+00
+cc
+49
+c0
+01
+04
+61
+20
+20
+04
+63
+70
+0b
+7d
+46
+20
+40
+56
+20
+18
+00
+04
+01
+20
+20
+58
+92
+68
+00
+cc
+48
+e0
+a0
+80
+00
+18
+00
+04
+02
+20
+20
+58
+92
+18
+a0
+8b
+ff
+68
+04
+4c
+4c
+e0
+a4
+00
+00
+e8
+c4
+00
+00
+e0
+a4
+00
+00
+18
+00
+02
+02
+20
+20
+58
+8a
+68
+00
+c4
+44
+c0
+04
+d7
+19
+c0
+01
+04
+75
+c0
+03
+d7
+0d
+20
+20
+56
+56
+59
+00
+03
+02
+60
+01
+c4
+b5
+58
+00
+00
+01
+e0
+a0
+80
+00
+58
+01
+00
+10
+e0
+a1
+80
+00
+20
+20
+56
+f1
+09
+80
+00
+18
+78
+28
+7c
+00
+db
+60
+06
+64
+1f
+ef
+7e
+00
+1f
+f1
+7e
+00
+e0
+a1
+80
+00
+20
+23
+37
+5c
+78
+36
+fc
+00
+68
+00
+80
+17
+1f
+e0
+a2
+00
+20
+20
+54
+af
+e8
+c1
+80
+00
+60
+01
+83
+f9
+c0
+29
+04
+8d
+c0
+01
+04
+a4
+c0
+09
+04
+93
+20
+20
+59
+07
+70
+4d
+17
+01
+68
+01
+03
+fa
+c0
+10
+84
+91
+20
+20
+59
+ed
+d8
+c0
+03
+49
+20
+20
+04
+26
+68
+01
+03
+fa
+1f
+e6
+7c
+21
+20
+42
+84
+91
+68
+01
+03
+fa
+1f
+e6
+7c
+31
+20
+42
+84
+a2
+68
+01
+03
+fa
+68
+09
+4c
+99
+18
+40
+84
+01
+98
+46
+7c
+00
+20
+22
+84
+9f
+20
+20
+59
+ca
+70
+0b
+7d
+34
+20
+40
+7c
+27
+20
+20
+59
+ca
+70
+41
+31
+01
+20
+60
+00
+00
+70
+0b
+7d
+03
+20
+20
+56
+20
+68
+00
+c4
+44
+c0
+0d
+85
+df
+c0
+0e
+85
+df
+c0
+08
+85
+73
+c0
+04
+85
+25
+c0
+02
+85
+13
+c0
+03
+84
+c7
+c0
+09
+d8
+5c
+c0
+01
+84
+b7
+c0
+05
+84
+ba
+c0
+06
+84
+b2
+20
+20
+56
+66
+68
+01
+03
+fa
+c0
+03
+84
+b5
+20
+20
+57
+d6
+70
+03
+fc
+07
+20
+20
+57
+29
+68
+01
+4c
+4a
+e0
+a1
+00
+00
+20
+20
+58
+8a
+68
+01
+03
+fa
+c0
+18
+57
+28
+c0
+07
+04
+be
+20
+20
+57
+c6
+68
+00
+cc
+49
+c0
+80
+57
+c6
+68
+00
+cc
+5c
+c0
+01
+d7
+c6
+18
+a2
+04
+00
+70
+4c
+49
+01
+18
+42
+0a
+00
+70
+03
+fc
+05
+20
+20
+57
+29
+20
+40
+57
+7b
+20
+74
+00
+00
+68
+09
+44
+c0
+58
+00
+18
+12
+98
+46
+7c
+00
+20
+22
+84
+e0
+58
+00
+18
+0f
+98
+46
+7c
+00
+20
+22
+84
+e2
+58
+00
+18
+0a
+98
+46
+7c
+00
+20
+22
+84
+e6
+58
+00
+18
+01
+98
+46
+7c
+00
+20
+22
+84
+e4
+20
+20
+57
+54
+68
+00
+cc
+5f
+d8
+40
+00
+00
+f9
+20
+04
+00
+98
+41
+7e
+00
+c0
+80
+57
+28
+68
+00
+cc
+5f
+f9
+20
+7e
+00
+60
+00
+cc
+5f
+20
+20
+04
+e8
+d8
+e0
+00
+00
+20
+20
+04
+d7
+d8
+e0
+00
+01
+20
+20
+04
+d7
+d8
+e0
+00
+03
+20
+20
+04
+d7
+d8
+e0
+00
+02
+20
+20
+04
+d7
+68
+01
+44
+c0
+1f
+e2
+22
+00
+68
+09
+44
+c4
+18
+42
+24
+00
+20
+40
+04
+ef
+20
+22
+84
+fa
+20
+20
+57
+28
+d8
+c0
+45
+04
+e8
+c1
+00
+00
+20
+7a
+00
+00
+e8
+c1
+80
+00
+e8
+c1
+00
+00
+9a
+26
+7c
+00
+20
+62
+80
+00
+18
+c0
+8d
+fd
+e8
+c0
+80
+00
+98
+c0
+8c
+00
+20
+20
+04
+f0
+18
+c0
+8d
+f9
+e8
+c1
+00
+00
+60
+01
+4c
+41
+20
+40
+05
+08
+20
+3a
+57
+28
+18
+c0
+8d
+fc
+e8
+c1
+00
+00
+1f
+e0
+ff
+ff
+60
+01
+4c
+43
+70
+44
+44
+07
+68
+02
+4c
+41
+60
+02
+44
+45
+18
+00
+04
+09
+20
+20
+58
+92
+e8
+c1
+00
+00
+e8
+c0
+80
+00
+98
+c0
+8c
+00
+e8
+c1
+00
+00
+20
+7a
+00
+00
+e8
+c1
+00
+00
+9a
+46
+7c
+00
+20
+62
+80
+00
+e8
+c0
+80
+00
+98
+c0
+8c
+00
+20
+20
+05
+0b
+d9
+60
+00
+03
+18
+00
+7e
+01
+60
+00
+c4
+45
+20
+40
+5a
+74
+20
+40
+5a
+7d
+20
+3a
+57
+46
+24
+21
+05
+23
+78
+54
+7c
+00
+e0
+a1
+00
+00
+e8
+c1
+00
+00
+e0
+a1
+00
+00
+19
+60
+97
+ff
+20
+22
+d7
+46
+e8
+c0
+80
+00
+98
+c0
+8c
+00
+20
+20
+05
+17
+18
+c0
+8c
+02
+20
+20
+05
+20
+68
+09
+44
+c0
+58
+00
+2a
+00
+98
+46
+7c
+00
+20
+22
+85
+65
+58
+00
+2a
+50
+98
+46
+7c
+00
+20
+22
+85
+70
+58
+00
+28
+03
+98
+46
+7c
+00
+24
+22
+d7
+28
+68
+01
+44
+bc
+60
+01
+02
+a0
+78
+34
+7c
+00
+20
+40
+05
+b7
+24
+21
+05
+41
+68
+09
+02
+a0
+20
+40
+05
+bf
+c0
+00
+85
+41
+20
+40
+05
+bb
+24
+22
+85
+3f
+78
+54
+7c
+00
+20
+40
+05
+43
+20
+40
+05
+a5
+20
+40
+05
+bf
+20
+40
+05
+4b
+20
+20
+05
+41
+20
+40
+05
+a5
+20
+20
+05
+32
+20
+34
+57
+28
+20
+20
+05
+dd
+68
+01
+02
+a0
+60
+01
+44
+46
+68
+00
+cc
+47
+1f
+e2
+72
+00
+20
+40
+05
+d4
+d8
+a0
+44
+48
+20
+40
+7e
+45
+20
+20
+05
+d7
+68
+09
+4c
+45
+18
+4c
+fe
+00
+c0
+82
+85
+5d
+20
+40
+05
+d1
+68
+01
+02
+a0
+e0
+a1
+00
+00
+20
+40
+05
+d7
+58
+00
+45
+04
+98
+40
+8c
+00
+e8
+c0
+80
+00
+18
+c2
+04
+00
+1f
+e2
+72
+00
+1f
+e0
+fe
+05
+60
+00
+c4
+45
+20
+40
+05
+d1
+18
+42
+0c
+00
+20
+40
+7e
+45
+20
+20
+05
+d7
+20
+40
+05
+d1
+68
+01
+02
+a0
+e0
+a1
+00
+00
+68
+01
+4c
+45
+e0
+a1
+00
+00
+20
+40
+05
+d7
+70
+44
+45
+07
+20
+60
+00
+00
+20
+40
+5b
+08
+e8
+c0
+80
+00
+1f
+e2
+72
+00
+1f
+e0
+fe
+02
+60
+00
+c4
+45
+18
+c0
+8d
+fb
+e8
+c1
+00
+00
+e0
+a1
+00
+00
+18
+c0
+8c
+03
+20
+40
+7e
+45
+20
+20
+58
+8a
+d8
+40
+2a
+50
+20
+40
+5b
+0c
+20
+20
+05
+66
+d9
+60
+00
+02
+68
+01
+44
+bc
+60
+01
+02
+a0
+70
+0d
+5c
+00
+78
+34
+7c
+00
+20
+40
+05
+b7
+24
+21
+05
+9b
+68
+09
+02
+a0
+20
+40
+05
+bf
+c0
+00
+85
+9e
+20
+40
+05
+bb
+24
+22
+85
+97
+68
+00
+8d
+5c
+c0
+00
+85
+9e
+24
+34
+05
+88
+78
+54
+7c
+00
+68
+00
+cc
+47
+1f
+e0
+fe
+04
+60
+00
+c4
+45
+20
+40
+05
+d7
+20
+20
+05
+92
+68
+00
+cc
+47
+1f
+e6
+7c
+10
+20
+22
+85
+9e
+68
+00
+c4
+45
+1f
+e6
+7c
+10
+20
+22
+85
+9e
+68
+01
+02
+a0
+1f
+e0
+ff
+ff
+60
+01
+0d
+5a
+20
+40
+05
+ae
+68
+01
+02
+a0
+60
+01
+0d
+58
+20
+40
+05
+a9
+19
+60
+97
+ff
+20
+22
+85
+99
+20
+40
+05
+a5
+20
+20
+05
+78
+70
+0d
+5c
+01
+20
+20
+05
+97
+68
+01
+02
+a0
+60
+01
+0d
+5a
+20
+20
+05
+a2
+68
+01
+02
+a0
+1f
+e0
+ff
+ff
+60
+01
+0d
+5a
+20
+20
+05
+a2
+20
+34
+57
+28
+20
+40
+05
+ae
+20
+20
+05
+dd
+68
+09
+02
+a0
+18
+40
+84
+01
+60
+09
+02
+a0
+20
+60
+00
+00
+68
+00
+cc
+47
+60
+00
+81
+03
+1f
+e2
+72
+00
+20
+40
+05
+d4
+20
+20
+7e
+45
+20
+40
+05
+d1
+68
+01
+0d
+58
+e0
+a1
+00
+00
+68
+01
+0d
+5a
+e0
+a1
+00
+00
+68
+00
+81
+03
+1f
+e2
+72
+00
+20
+40
+7e
+45
+20
+20
+05
+d7
+68
+09
+02
+a0
+68
+01
+44
+be
+98
+46
+7c
+00
+20
+60
+00
+00
+68
+01
+44
+c0
+68
+09
+4c
+45
+98
+46
+7c
+00
+20
+60
+00
+00
+d8
+c0
+45
+04
+18
+42
+22
+00
+e8
+c1
+00
+00
+20
+3a
+05
+ca
+e8
+c9
+00
+00
+60
+09
+4c
+45
+9a
+26
+7c
+00
+20
+22
+85
+cc
+e8
+c0
+80
+00
+98
+c0
+8c
+00
+20
+20
+05
+c1
+58
+00
+00
+01
+20
+60
+00
+00
+e8
+c0
+80
+00
+60
+00
+cc
+47
+20
+40
+05
+da
+58
+00
+00
+00
+20
+60
+00
+00
+68
+01
+02
+b9
+1f
+e2
+0a
+00
+20
+60
+00
+00
+68
+01
+02
+b7
+1f
+e2
+0c
+00
+20
+60
+00
+00
+18
+a2
+7e
+00
+60
+01
+02
+b9
+20
+60
+00
+00
+18
+c2
+7e
+00
+60
+01
+02
+b7
+20
+60
+00
+00
+20
+40
+05
+d1
+20
+20
+58
+8a
+68
+00
+cb
+ab
+1f
+e0
+84
+01
+18
+41
+04
+03
+60
+08
+cb
+ab
+1f
+ef
+fe
+07
+d8
+c0
+4b
+ad
+98
+c0
+8c
+00
+68
+00
+cc
+62
+1f
+e0
+ff
+fb
+1f
+e2
+72
+00
+d8
+a0
+44
+45
+20
+40
+7e
+45
+68
+08
+cc
+62
+20
+20
+58
+92
+20
+40
+56
+1c
+20
+20
+58
+b0
+1a
+62
+7e
+00
+c0
+01
+85
+f9
+c0
+05
+05
+fd
+c0
+09
+05
+fb
+c0
+01
+05
+ff
+1f
+e6
+7c
+0d
+20
+21
+58
+c0
+60
+00
+cc
+48
+70
+0b
+7d
+27
+20
+20
+56
+20
+70
+4c
+5c
+00
+20
+20
+59
+38
+70
+0b
+7d
+33
+20
+20
+56
+20
+70
+0b
+7d
+2b
+20
+20
+56
+20
+58
+00
+00
+14
+60
+01
+03
+ef
+20
+60
+00
+00
+68
+00
+c4
+3e
+28
+20
+06
+01
+20
+20
+86
+06
+20
+20
+58
+a7
+68
+00
+c4
+3f
+20
+3a
+06
+09
+20
+20
+58
+a7
+68
+00
+c4
+3e
+79
+3f
+fe
+04
+60
+00
+c4
+3e
+20
+60
+00
+00
+e8
+c0
+80
+00
+c0
+00
+86
+14
+c0
+02
+06
+1a
+c0
+04
+86
+12
+20
+20
+58
+f8
+70
+4c
+49
+03
+20
+20
+59
+74
+70
+4d
+1c
+01
+60
+00
+c4
+ae
+e8
+c3
+00
+00
+e0
+a3
+00
+00
+70
+0b
+7d
+42
+20
+20
+56
+20
+20
+40
+74
+a8
+20
+22
+86
+1d
+20
+20
+59
+68
+70
+4c
+49
+02
+20
+20
+59
+6a
+70
+4c
+5d
+00
+20
+40
+3f
+86
+20
+40
+3f
+7e
+20
+40
+3f
+a4
+20
+20
+3e
+cc
+70
+42
+13
+00
+70
+44
+8b
+00
+70
+4c
+5c
+00
+70
+4c
+49
+00
+70
+4c
+5f
+00
+70
+4c
+5d
+00
+20
+20
+3e
+d0
+58
+00
+00
+00
+60
+02
+4b
+a9
+20
+60
+00
+00
+c6
+91
+80
+00
+68
+02
+4d
+1d
+60
+02
+4d
+4f
+20
+40
+06
+53
+24
+34
+06
+46
+70
+4c
+0b
+0a
+20
+40
+06
+79
+68
+00
+cb
+ef
+c1
+ff
+80
+00
+68
+00
+cd
+22
+24
+7a
+00
+00
+20
+40
+01
+b2
+24
+74
+00
+00
+68
+00
+8b
+7f
+24
+7a
+00
+00
+20
+40
+3c
+ab
+68
+01
+c2
+10
+20
+7a
+00
+00
+68
+00
+c1
+31
+20
+7a
+00
+00
+68
+01
+cd
+57
+20
+40
+7e
+8a
+60
+0a
+41
+fc
+20
+20
+3c
+da
+20
+40
+01
+b2
+24
+74
+00
+00
+68
+00
+8b
+7f
+24
+7a
+00
+00
+20
+40
+3c
+ab
+68
+01
+c2
+10
+20
+7a
+00
+00
+68
+00
+c1
+31
+20
+7a
+00
+00
+68
+00
+cc
+0b
+24
+3a
+06
+42
+68
+02
+4d
+4f
+20
+20
+06
+43
+68
+00
+cb
+ef
+c0
+ff
+86
+ca
+20
+40
+06
+5a
+20
+54
+06
+75
+20
+54
+07
+34
+70
+4b
+e6
+01
+20
+60
+00
+00
+78
+54
+7c
+00
+70
+4b
+e2
+02
+68
+00
+cd
+34
+c0
+02
+06
+65
+c0
+02
+86
+6b
+c0
+03
+06
+71
+c0
+03
+86
+6e
+c0
+04
+06
+68
+68
+00
+cd
+22
+24
+5a
+34
+df
+20
+60
+00
+00
+70
+4d
+34
+00
+70
+4b
+e1
+0a
+20
+20
+06
+73
+70
+4d
+34
+08
+70
+4b
+e1
+10
+20
+20
+06
+73
+70
+4d
+34
+03
+70
+4b
+e1
+04
+20
+20
+06
+73
+70
+4d
+34
+02
+70
+4b
+e1
+03
+20
+20
+06
+73
+70
+4b
+e2
+01
+70
+4b
+e1
+08
+70
+4b
+e7
+00
+20
+20
+34
+df
+d8
+a0
+0c
+d5
+d8
+c0
+4d
+34
+df
+20
+00
+14
+20
+20
+7e
+45
+70
+4b
+e8
+00
+d9
+60
+0d
+00
+34
+73
+02
+00
+20
+40
+06
+a0
+24
+37
+86
+89
+20
+40
+06
+af
+68
+00
+cb
+e0
+1f
+e0
+fe
+01
+60
+00
+cb
+e0
+70
+4d
+22
+00
+68
+00
+cb
+ef
+c0
+ff
+86
+9f
+20
+40
+06
+9b
+70
+4b
+e7
+00
+70
+4b
+e6
+00
+20
+60
+00
+00
+70
+4d
+22
+01
+68
+00
+cb
+e7
+1f
+e0
+fe
+01
+60
+00
+cb
+e7
+68
+00
+cb
+ef
+c0
+ff
+86
+ab
+68
+00
+cb
+e7
+c0
+7f
+86
+ac
+68
+00
+cb
+e7
+d8
+40
+00
+10
+98
+46
+7c
+00
+20
+21
+07
+53
+68
+00
+cb
+e8
+1f
+e0
+fe
+01
+60
+00
+cb
+e8
+20
+00
+00
+0a
+c0
+83
+86
+7a
+20
+20
+07
+53
+58
+00
+00
+00
+60
+02
+0c
+d5
+60
+02
+4d
+34
+20
+60
+00
+00
+20
+20
+06
+e4
+78
+57
+fc
+00
+20
+40
+07
+ab
+18
+00
+2a
+00
+68
+02
+4c
+00
+98
+00
+12
+00
+68
+08
+80
+17
+20
+40
+3a
+82
+20
+40
+3a
+87
+20
+40
+07
+6b
+20
+57
+87
+a5
+20
+60
+00
+00
+20
+60
+00
+00
+70
+4d
+22
+00
+70
+0b
+7d
+32
+20
+20
+7c
+27
+20
+40
+07
+19
+68
+00
+8c
+b3
+c1
+81
+00
+00
+68
+00
+cb
+df
+20
+7a
+00
+00
+98
+00
+72
+00
+d8
+c0
+0c
+b5
+d8
+a0
+0d
+17
+20
+40
+7e
+45
+68
+00
+8c
+b4
+2f
+e1
+f0
+08
+24
+60
+80
+00
+68
+00
+8c
+b5
+c0
+7f
+86
+bf
+60
+00
+cc
+90
+20
+60
+00
+00
+70
+4d
+5a
+01
+20
+60
+00
+00
+79
+20
+00
+23
+20
+40
+06
+c6
+20
+40
+06
+85
+70
+4b
+ef
+01
+20
+60
+00
+00
+70
+4b
+e0
+00
+70
+4b
+e9
+4e
+68
+02
+4b
+eb
+20
+20
+07
+26
+20
+40
+06
+c6
+68
+00
+cb
+e6
+c0
+00
+b4
+df
+68
+00
+cb
+ef
+c0
+00
+86
+d2
+c0
+01
+06
+d5
+c0
+01
+86
+d8
+20
+20
+3b
+f1
+70
+4b
+ef
+11
+70
+0d
+37
+aa
+20
+20
+06
+da
+70
+4b
+ef
+12
+70
+0d
+37
+55
+20
+20
+06
+da
+70
+4b
+ef
+13
+70
+0d
+37
+22
+70
+0d
+38
+02
+68
+02
+4c
+06
+60
+02
+0d
+39
+70
+0d
+3d
+00
+da
+20
+0d
+37
+d8
+40
+00
+07
+20
+40
+07
+14
+20
+40
+07
+34
+20
+40
+06
+58
+20
+20
+34
+df
+68
+00
+cb
+ef
+c1
+7f
+80
+00
+c0
+08
+86
+ea
+c0
+09
+06
+ec
+c0
+09
+86
+ee
+20
+60
+00
+00
+70
+4b
+ef
+02
+20
+20
+06
+85
+70
+4b
+ef
+03
+20
+20
+06
+85
+70
+4b
+ef
+ff
+70
+0b
+7d
+31
+20
+40
+7c
+27
+68
+02
+0d
+19
+20
+40
+07
+26
+20
+20
+06
+85
+79
+20
+00
+23
+20
+40
+07
+27
+20
+40
+07
+53
+68
+00
+cb
+ef
+c1
+ff
+80
+00
+20
+40
+07
+06
+58
+00
+00
+00
+60
+01
+4c
+04
+20
+40
+3c
+ab
+20
+00
+07
+d0
+68
+00
+cc
+04
+c0
+7f
+86
+ac
+20
+40
+06
+a0
+24
+37
+87
+0f
+20
+40
+06
+9b
+79
+20
+00
+23
+70
+0b
+7d
+3c
+20
+20
+7c
+27
+70
+0d
+37
+ff
+68
+00
+cb
+e2
+60
+00
+8d
+38
+68
+02
+4c
+06
+60
+02
+0d
+39
+d8
+40
+00
+06
+da
+20
+0d
+37
+20
+40
+07
+14
+20
+20
+07
+34
+68
+01
+4c
+04
+1f
+e0
+fe
+01
+60
+01
+4c
+04
+20
+40
+07
+53
+20
+20
+06
+fc
+60
+08
+cb
+e1
+18
+42
+72
+00
+d8
+a0
+0c
+d5
+1a
+22
+0c
+00
+20
+20
+7e
+45
+68
+00
+8c
+b4
+1f
+e9
+7e
+00
+60
+00
+cb
+df
+20
+60
+00
+00
+68
+08
+cc
+22
+58
+00
+4c
+11
+98
+40
+8a
+00
+1a
+22
+7e
+00
+e0
+a0
+80
+00
+18
+40
+84
+01
+18
+41
+04
+07
+60
+08
+cc
+22
+20
+60
+00
+00
+60
+02
+4c
+00
+da
+20
+00
+00
+df
+20
+00
+04
+d8
+c0
+4c
+00
+e8
+c0
+80
+00
+9a
+20
+a2
+00
+c2
+00
+07
+2a
+1a
+22
+7e
+00
+60
+01
+4c
+0c
+68
+00
+cc
+0c
+68
+08
+cc
+0d
+98
+40
+fe
+00
+60
+00
+cc
+0e
+20
+60
+00
+00
+68
+00
+cb
+e1
+1f
+e0
+fe
+02
+60
+00
+cb
+e3
+68
+00
+cb
+e2
+60
+00
+8c
+f5
+68
+00
+cb
+e1
+1f
+e9
+fe
+00
+68
+08
+cb
+e0
+18
+41
+04
+03
+18
+43
+84
+00
+98
+41
+fe
+00
+68
+08
+cc
+0a
+98
+40
+fe
+00
+e0
+a0
+80
+00
+68
+00
+cb
+ef
+c0
+ff
+87
+46
+68
+00
+cb
+e2
+e0
+a0
+80
+00
+68
+00
+cb
+e1
+98
+00
+72
+00
+68
+00
+cb
+e2
+c0
+00
+87
+51
+d8
+c0
+0c
+d5
+20
+40
+7e
+45
+68
+00
+8c
+d5
+c0
+01
+87
+4f
+20
+60
+00
+00
+70
+0c
+d5
+02
+20
+60
+00
+00
+d8
+c0
+0c
+d6
+20
+20
+7e
+45
+68
+08
+cb
+ea
+20
+40
+07
+59
+18
+40
+84
+01
+18
+41
+04
+03
+60
+08
+cb
+ea
+20
+60
+00
+00
+68
+00
+cc
+00
+1f
+e1
+7e
+03
+1f
+ef
+a2
+04
+58
+00
+4b
+f0
+9a
+20
+fe
+00
+98
+40
+8c
+00
+e8
+c0
+80
+00
+60
+00
+cb
+e9
+20
+60
+00
+00
+78
+44
+fc
+00
+78
+43
+fc
+00
+58
+55
+55
+55
+98
+00
+1e
+00
+68
+00
+cb
+e9
+1f
+ed
+84
+00
+79
+20
+04
+01
+18
+43
+1c
+00
+20
+60
+00
+00
+20
+40
+07
+62
+78
+26
+fc
+00
+78
+30
+fc
+00
+78
+50
+7c
+00
+78
+28
+7c
+00
+68
+01
+4b
+e4
+98
+00
+36
+00
+37
+c1
+84
+00
+24
+2c
+07
+a5
+78
+46
+fc
+00
+78
+25
+fc
+00
+78
+23
+fc
+00
+78
+24
+fc
+00
+09
+80
+00
+08
+19
+89
+7e
+00
+60
+00
+cc
+0f
+68
+08
+cc
+0e
+98
+46
+7c
+00
+24
+22
+87
+a5
+09
+80
+00
+08
+19
+89
+7e
+00
+60
+00
+8c
+b3
+68
+00
+8c
+b3
+68
+08
+cb
+e2
+a8
+40
+0e
+00
+24
+20
+87
+a5
+09
+80
+00
+08
+19
+89
+7e
+00
+e0
+a0
+80
+00
+1f
+e9
+7e
+00
+1f
+e1
+72
+1f
+20
+22
+87
+8f
+09
+80
+00
+08
+19
+89
+7e
+00
+e0
+a0
+80
+00
+c2
+00
+07
+8b
+18
+a2
+22
+00
+09
+80
+00
+08
+19
+89
+7e
+00
+60
+00
+cc
+10
+1a
+22
+0a
+00
+09
+80
+00
+18
+78
+28
+7c
+00
+db
+60
+06
+64
+1f
+ef
+7e
+00
+1f
+f1
+7e
+00
+e0
+a1
+80
+00
+78
+45
+fc
+00
+20
+23
+07
+a5
+78
+37
+fc
+00
+68
+00
+80
+17
+1f
+e0
+a2
+00
+20
+40
+3a
+b6
+78
+46
+fc
+00
+20
+40
+3a
+7a
+68
+00
+cc
+10
+1f
+e2
+22
+00
+20
+20
+07
+1d
+78
+4d
+fc
+00
+78
+45
+fc
+00
+20
+20
+37
+5c
+20
+40
+3a
+7a
+68
+08
+cb
+e9
+20
+20
+3a
+91
+20
+40
+53
+d2
+68
+02
+4c
+00
+98
+00
+12
+00
+20
+40
+07
+62
+20
+40
+07
+a8
+79
+20
+2a
+00
+78
+2e
+fc
+00
+78
+30
+7c
+00
+78
+50
+fc
+00
+19
+31
+7e
+00
+1f
+ec
+fe
+00
+1f
+f1
+fe
+00
+08
+00
+86
+28
+78
+4e
+fc
+00
+78
+2d
+fc
+00
+78
+23
+fc
+00
+78
+24
+fc
+00
+68
+00
+cc
+0e
+08
+00
+86
+08
+68
+00
+cb
+e3
+98
+00
+72
+00
+d8
+c0
+0c
+f5
+e8
+c0
+80
+00
+08
+00
+86
+08
+c2
+00
+07
+c1
+78
+24
+7c
+00
+08
+00
+86
+18
+78
+44
+7c
+00
+37
+d3
+82
+00
+20
+00
+00
+64
+78
+4e
+fc
+00
+78
+4d
+fc
+00
+20
+20
+3a
+7a
+d3
+15
+aa
+55
+55
+3f
+02
+06
+34
+02
+02
+ab
+e8
+64
+80
+f8
+e9
+33
+e8
+33
+60
+11
+04
+60
+f0
+ed
+33
+ec
+33
+70
+09
+e8
+fc
+e9
+fd
+ea
+fe
+eb
+ff
+22
+04
+60
+de
+d3
+eb
+9f
+ea
+9e
+e9
+9d
+e8
+c2
+e7
+8c
+f0
+c2
+f7
+95
+f0
+40
+0c
+e8
+cc
+f8
+e9
+cd
+f9
+ea
+ce
+fa
+eb
+cf
+fb
+12
+02
+76
+85
+d0
+f0
+58
+04
+70
+03
+20
+d5
+b3
+e8
+04
+70
+07
+50
+02
+b2
+d5
+02
+02
+b5
+92
+d5
+ec
+04
+60
+f7
+e4
+cc
+c0
+e0
+c3
+98
+f8
+60
+3b
+94
+18
+60
+08
+40
+0d
+d0
+e0
+fb
+02
+02
+8d
+e4
+fb
+fa
+c9
+fc
+80
+28
+e8
+30
+e4
+06
+e4
+c9
+fb
+e4
+ca
+fc
+e8
+30
+e3
+05
+e4
+c9
+ca
+cb
+fc
+e8
+54
+07
+60
+10
+f8
+c3
+e9
+13
+f9
+ea
+13
+fa
+eb
+13
+fb
+ec
+13
+fc
+d8
+f1
+30
+f5
+2f
+c3
+e4
+9c
+fc
+ef
+9b
+ff
+ee
+9a
+fe
+ed
+99
+fd
+d0
+e0
+fb
+ef
+4e
+4d
+4c
+70
+12
+22
+db
+03
+02
+02
+b2
+ec
+2c
+fc
+ef
+33
+ff
+ee
+33
+fe
+ed
+33
+fd
+ed
+30
+e7
+eb
+02
+02
+8d
+ef
+2b
+ff
+ee
+3a
+fe
+ed
+39
+fd
+d0
+e0
+fb
+50
+13
+0b
+bb
+00
+03
+02
+02
+b5
+ed
+13
+fd
+ee
+13
+fe
+ef
+13
+ff
+ec
+13
+fc
+02
+02
+8d
+ec
+4d
+60
+11
+e8
+49
+70
+17
+ed
+33
+ec
+33
+04
+60
+0d
+e4
+fc
+ff
+fe
+fd
+22
+e9
+33
+e8
+33
+04
+70
+f8
+02
+02
+ab
+12
+02
+76
+58
+04
+60
+09
+e4
+cc
+24
+81
+50
+06
+28
+50
+09
+02
+02
+b5
+28
+40
+03
+02
+02
+b2
+c0
+e0
+eb
+4a
+70
+44
+b9
+80
+06
+d0
+e0
+fb
+02
+02
+a1
+ef
+4e
+70
+1c
+bd
+80
+08
+eb
+ff
+ea
+fe
+e9
+fd
+80
+eb
+e9
+8d
+f0
+a4
+fe
+e5
+f0
+02
+01
+e4
+e9
+cd
+f9
+ea
+fe
+eb
+ff
+ef
+89
+f0
+a4
+fc
+e5
+f0
+ce
+89
+f0
+a4
+2e
+ff
+e4
+35
+f0
+cd
+89
+f0
+a4
+2d
+fe
+e4
+35
+f0
+80
+67
+ef
+4e
+70
+05
+bd
+80
+d7
+80
+c3
+ef
+8b
+f0
+a4
+ac
+f0
+ee
+8b
+f0
+a4
+2c
+fc
+e4
+35
+f0
+f8
+ef
+8a
+f0
+a4
+2c
+e5
+f0
+38
+fc
+e4
+33
+cb
+8d
+f0
+a4
+2c
+fc
+e5
+f0
+3b
+f8
+ee
+8a
+f0
+a4
+2c
+fc
+e5
+f0
+38
+f8
+e4
+33
+cf
+89
+f0
+a4
+2c
+fc
+e5
+f0
+38
+cf
+34
+00
+ce
+89
+f0
+a4
+2f
+ff
+e5
+f0
+3e
+fe
+e4
+33
+c9
+8d
+f0
+a4
+2e
+fe
+e5
+f0
+39
+cd
+8a
+f0
+a4
+2f
+ff
+e5
+f0
+3e
+fe
+e4
+3d
+fd
+33
+d0
+e0
+fb
+50
+07
+0b
+bb
+00
+0f
+02
+02
+b5
+ec
+2c
+fc
+ef
+33
+ff
+ee
+33
+fe
+ed
+33
+fd
+02
+02
+8d
+75
+f0
+20
+80
+0e
+75
+f0
+10
+80
+05
+75
+f0
+08
+7d
+00
+7e
+00
+7f
+00
+33
+92
+d5
+30
+d5
+03
+12
+05
+ac
+ec
+33
+40
+10
+ef
+33
+ff
+ee
+33
+fe
+ed
+33
+fd
+ec
+33
+fc
+d5
+f0
+ed
+22
+e5
+f0
+24
+7e
+a2
+d5
+13
+cc
+92
+e7
+cd
+ce
+ff
+22
+ed
+d2
+e7
+cd
+33
+ec
+33
+92
+d5
+24
+81
+40
+06
+e4
+ff
+fe
+fd
+fc
+22
+fc
+e4
+cf
+ce
+cd
+cc
+24
+e0
+50
+11
+74
+ff
+80
+ed
+c3
+cc
+13
+cc
+cd
+13
+cd
+ce
+13
+ce
+cf
+13
+cf
+04
+70
+f0
+30
+d5
+de
+02
+05
+ac
+e9
+d2
+e7
+c9
+33
+e8
+33
+f8
+92
+d5
+ed
+d2
+e7
+cd
+33
+ec
+33
+fc
+50
+02
+b2
+d5
+22
+ec
+30
+e7
+10
+0f
+bf
+00
+0c
+0e
+be
+00
+08
+0d
+bd
+00
+04
+0b
+eb
+60
+14
+a2
+d5
+eb
+13
+fc
+ed
+92
+e7
+fd
+22
+74
+ff
+fc
+fd
+fe
+ff
+22
+e4
+80
+f8
+a2
+d5
+74
+ff
+13
+fc
+7d
+80
+e4
+80
+ef
+e7
+09
+f6
+08
+df
+fa
+80
+46
+e7
+09
+f2
+08
+df
+fa
+80
+3e
+88
+82
+8c
+83
+e7
+09
+f0
+a3
+df
+fa
+80
+32
+e3
+09
+f6
+08
+df
+fa
+80
+78
+e3
+09
+f2
+08
+df
+fa
+80
+70
+88
+82
+8c
+83
+e3
+09
+f0
+a3
+df
+fa
+80
+64
+89
+82
+8a
+83
+e0
+a3
+f6
+08
+df
+fa
+80
+58
+89
+82
+8a
+83
+e0
+a3
+f2
+08
+df
+fa
+80
+4c
+80
+d2
+80
+fa
+80
+c6
+80
+d4
+80
+69
+80
+f2
+80
+33
+80
+10
+80
+a6
+80
+ea
+80
+9a
+80
+a8
+80
+da
+80
+e2
+80
+ca
+80
+33
+89
+82
+8a
+83
+ec
+fa
+e4
+93
+a3
+c8
+c5
+82
+c8
+cc
+c5
+83
+cc
+f0
+a3
+c8
+c5
+82
+c8
+cc
+c5
+83
+cc
+df
+e9
+de
+e7
+80
+0d
+89
+82
+8a
+83
+e4
+93
+a3
+f6
+08
+df
+f9
+ec
+fa
+a9
+f0
+ed
+fb
+22
+89
+82
+8a
+83
+ec
+fa
+e0
+a3
+c8
+c5
+82
+c8
+cc
+c5
+83
+cc
+f0
+a3
+c8
+c5
+82
+c8
+cc
+c5
+83
+cc
+df
+ea
+de
+e8
+80
+db
+89
+82
+8a
+83
+e4
+93
+a3
+f2
+08
+df
+f9
+80
+cc
+88
+f0
+ef
+60
+01
+0e
+4e
+60
+c3
+88
+f0
+ed
+24
+02
+b4
+04
+00
+50
+b9
+f5
+82
+eb
+24
+02
+b4
+04
+00
+50
+af
+23
+23
+45
+82
+23
+90
+03
+10
+73
+bb
+01
+06
+89
+82
+8a
+83
+e0
+22
+50
+02
+e7
+22
+bb
+fe
+02
+e3
+22
+89
+82
+8a
+83
+e4
+93
+22
+bb
+01
+0c
+e5
+82
+29
+f5
+82
+e5
+83
+3a
+f5
+83
+e0
+22
+50
+06
+e9
+25
+82
+f8
+e6
+22
+bb
+fe
+06
+e9
+25
+82
+f8
+e2
+22
+e5
+82
+29
+f5
+82
+e5
+83
+3a
+f5
+83
+e4
+93
+22
+bb
+01
+06
+89
+82
+8a
+83
+f0
+22
+50
+02
+f7
+22
+bb
+fe
+01
+f3
+22
+bc
+00
+0b
+be
+00
+29
+ef
+8d
+f0
+84
+ff
+ad
+f0
+22
+e4
+cc
+f8
+75
+f0
+08
+ef
+2f
+ff
+ee
+33
+fe
+ec
+33
+fc
+ee
+9d
+ec
+98
+40
+05
+fc
+ee
+9d
+fe
+0f
+d5
+f0
+e9
+e4
+ce
+fd
+22
+ed
+f8
+f5
+f0
+ee
+84
+20
+d2
+1c
+fe
+ad
+f0
+75
+f0
+08
+ef
+2f
+ff
+ed
+33
+fd
+40
+07
+98
+50
+06
+d5
+f0
+f2
+22
+c3
+98
+fd
+0f
+d5
+f0
+ea
+22
+c5
+f0
+f8
+a3
+e0
+28
+f0
+c5
+f0
+f8
+e5
+82
+15
+82
+70
+02
+15
+83
+e0
+38
+f0
+22
+a3
+f8
+e0
+c5
+f0
+25
+f0
+f0
+e5
+82
+15
+82
+70
+02
+15
+83
+e0
+c8
+38
+f0
+e8
+22
+e8
+8f
+f0
+a4
+cc
+8b
+f0
+a4
+2c
+fc
+e9
+8e
+f0
+a4
+2c
+fc
+8a
+f0
+ed
+a4
+2c
+fc
+ea
+8e
+f0
+a4
+cd
+a8
+f0
+8b
+f0
+a4
+2d
+cc
+38
+25
+f0
+fd
+e9
+8f
+f0
+a4
+2c
+cd
+35
+f0
+fc
+eb
+8e
+f0
+a4
+fe
+a9
+f0
+eb
+8f
+f0
+a4
+cf
+c5
+f0
+2e
+cd
+39
+fe
+e4
+3c
+fc
+ea
+a4
+2d
+ce
+35
+f0
+fd
+e4
+3c
+fc
+22
+75
+f0
+08
+75
+82
+00
+ef
+2f
+ff
+ee
+33
+fe
+cd
+33
+cd
+cc
+33
+cc
+c5
+82
+33
+c5
+82
+9b
+ed
+9a
+ec
+99
+e5
+82
+98
+40
+0c
+f5
+82
+ee
+9b
+fe
+ed
+9a
+fd
+ec
+99
+fc
+0f
+d5
+f0
+d6
+e4
+ce
+fb
+e4
+cd
+fa
+e4
+cc
+f9
+a8
+82
+22
+b8
+00
+c1
+b9
+00
+59
+ba
+00
+2d
+ec
+8b
+f0
+84
+cf
+ce
+cd
+fc
+e5
+f0
+cb
+f9
+78
+18
+ef
+2f
+ff
+ee
+33
+fe
+ed
+33
+fd
+ec
+33
+fc
+eb
+33
+fb
+10
+d7
+03
+99
+40
+04
+eb
+99
+fb
+0f
+d8
+e5
+e4
+f9
+fa
+22
+78
+18
+ef
+2f
+ff
+ee
+33
+fe
+ed
+33
+fd
+ec
+33
+fc
+c9
+33
+c9
+10
+d7
+05
+9b
+e9
+9a
+40
+07
+ec
+9b
+fc
+e9
+9a
+f9
+0f
+d8
+e0
+e4
+c9
+fa
+e4
+cc
+fb
+22
+75
+f0
+10
+ef
+2f
+ff
+ee
+33
+fe
+ed
+33
+fd
+cc
+33
+cc
+c8
+33
+c8
+10
+d7
+07
+9b
+ec
+9a
+e8
+99
+40
+0a
+ed
+9b
+fd
+ec
+9a
+fc
+e8
+99
+f8
+0f
+d5
+f0
+da
+e4
+cd
+fb
+e4
+cc
+fa
+e4
+c8
+f9
+22
+c3
+e4
+9f
+ff
+e4
+9e
+fe
+e4
+9d
+fd
+e4
+9c
+fc
+22
+eb
+9f
+f5
+f0
+ea
+9e
+42
+f0
+e9
+9d
+42
+f0
+e8
+9c
+45
+f0
+22
+ec
+f0
+a3
+ed
+f0
+a3
+ee
+f0
+a3
+ef
+f0
+22
+a8
+82
+85
+83
+f0
+d0
+83
+d0
+82
+12
+05
+ee
+12
+05
+ee
+12
+05
+ee
+12
+05
+ee
+e4
+73
+e4
+93
+a3
+c5
+83
+c5
+f0
+c5
+83
+c8
+c5
+82
+c8
+f0
+a3
+c5
+83
+c5
+f0
+c5
+83
+c8
+c5
+82
+c8
+22
+d0
+83
+d0
+82
+f8
+e4
+93
+70
+12
+74
+01
+93
+70
+0d
+a3
+a3
+93
+f8
+74
+01
+93
+f5
+82
+88
+83
+e4
+73
+74
+02
+93
+68
+60
+ef
+a3
+a3
+a3
+80
+df
+8a
+83
+89
+82
+e4
+73
+78
+7f
+e4
+f6
+d8
+fd
+75
+81
+cf
+02
+06
+7b
+02
+26
+ed
+e4
+93
+a3
+f8
+e4
+93
+a3
+40
+03
+f6
+80
+01
+f2
+08
+df
+f4
+80
+29
+e4
+93
+a3
+f8
+54
+07
+24
+0c
+c8
+c3
+33
+c4
+54
+0f
+44
+20
+c8
+83
+40
+04
+f4
+56
+80
+01
+46
+f6
+df
+e4
+80
+0b
+01
+02
+04
+08
+10
+20
+40
+80
+90
+06
+c0
+e4
+7e
+01
+93
+60
+bc
+a3
+ff
+54
+3f
+30
+e5
+09
+54
+1f
+fe
+e4
+93
+a3
+60
+01
+0e
+cf
+54
+c0
+25
+e0
+60
+a8
+40
+b8
+e4
+93
+a3
+fa
+e4
+93
+a3
+f8
+e4
+93
+a3
+c8
+c5
+82
+c8
+ca
+c5
+83
+ca
+f0
+a3
+c8
+c5
+82
+c8
+ca
+c5
+83
+ca
+df
+e9
+de
+e7
+80
+be
+52
+4e
+62
+ff
+18
+cd
+00
+00
+00
+ff
+20
+f7
+ff
+3a
+8b
+00
+00
+00
+ff
+3a
+7b
+00
+1a
+08
+09
+0a
+0b
+0c
+0d
+0e
+18
+19
+17
+12
+11
+10
+0f
+16
+1b
+1c
+00
+00
+00
+48
+66
+00
+de
+e4
+df
+e0
+3e
+14
+2b
+04
+29
+1d
+00
+35
+1e
+1a
+39
+16
+64
+1b
+00
+3a
+1f
+08
+3c
+07
+3d
+06
+00
+3b
+20
+15
+17
+09
+0a
+19
+05
+22
+21
+18
+1c
+0d
+0b
+10
+11
+23
+24
+0c
+30
+0e
+3f
+36
+87
+2e
+25
+12
+40
+0f
+00
+37
+65
+41
+26
+13
+2f
+33
+34
+32
+38
+2d
+27
+47
+00
+00
+e2
+00
+e6
+34
+46
+89
+2a
+31
+44
+28
+45
+42
+43
+5f
+5c
+59
+2c
+53
+51
+4c
+66
+60
+5d
+5a
+62
+54
+4f
+49
+de
+61
+5e
+5b
+63
+55
+56
+4b
+4e
+57
+00
+58
+52
+48
+50
+4a
+4d
+df
+e1
+e5
+f6
+f7
+f5
+f4
+f1
+fa
+7f
+d1
+d3
+d2
+d4
+f8
+d5
+00
+d0
+e7
+f9
+f3
+fb
+d6
+00
+0a
+00
+00
+00
+00
+00
+05
+10
+00
+00
+00
+00
+00
+00
+01
+01
+00
+90
+4f
+18
+ef
+f0
+90
+4c
+cf
+e0
+70
+03
+02
+08
+b2
+90
+4c
+cf
+e0
+14
+f0
+e4
+90
+4d
+f5
+f0
+90
+4e
+61
+f0
+90
+4f
+18
+e0
+ff
+75
+f0
+1e
+a4
+24
+fd
+f5
+82
+e4
+34
+4d
+f5
+83
+e0
+64
+01
+70
+6f
+ef
+75
+f0
+1e
+a4
+24
+fe
+f9
+74
+4d
+35
+f0
+fa
+7b
+01
+7e
+42
+7f
+74
+90
+4e
+d0
+74
+06
+f0
+12
+10
+c8
+90
+4f
+18
+e0
+75
+f0
+1e
+a4
+24
+04
+f9
+74
+4e
+35
+f0
+fa
+7b
+01
+7e
+44
+7f
+7b
+90
+4e
+d0
+74
+10
+f0
+12
+10
+c8
+90
+4f
+18
+e0
+75
+f0
+1e
+a4
+24
+14
+f9
+74
+4e
+35
+f0
+fa
+7b
+01
+7e
+44
+7f
+f9
+90
+4e
+d0
+74
+06
+f0
+12
+10
+c8
+7f
+2b
+11
+b3
+90
+4d
+f5
+74
+01
+f0
+e4
+90
+4c
+cf
+f0
+90
+44
+8b
+04
+f0
+22
+90
+4f
+18
+e0
+ff
+75
+f0
+1e
+a4
+24
+fd
+f5
+82
+e4
+34
+4d
+f5
+83
+e0
+64
+02
+70
+46
+ef
+75
+f0
+1e
+a4
+24
+fe
+f9
+74
+4d
+35
+f0
+fa
+7b
+01
+7e
+42
+7f
+74
+90
+4e
+d0
+74
+06
+f0
+12
+10
+c8
+90
+4f
+18
+e0
+75
+f0
+1e
+a4
+24
+04
+f9
+74
+4e
+35
+f0
+fa
+7b
+01
+7e
+42
+7f
+62
+90
+4e
+d0
+74
+10
+f0
+12
+10
+c8
+7f
+03
+11
+b3
+90
+42
+5e
+74
+01
+f0
+22
+90
+4e
+61
+74
+01
+f0
+90
+44
+f9
+74
+0f
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+90
+4d
+e2
+74
+01
+f0
+7f
+2b
+11
+b3
+90
+42
+5e
+74
+01
+f0
+22
+90
+4e
+f1
+ef
+f0
+78
+f2
+7c
+4e
+7d
+01
+7b
+ff
+7a
+07
+79
+89
+7e
+00
+7f
+03
+12
+03
+90
+90
+4e
+f1
+e0
+90
+4e
+f4
+f0
+7b
+01
+7a
+4e
+79
+f2
+7d
+03
+90
+4e
+c5
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+a3
+ed
+f0
+90
+4b
+9c
+e0
+ff
+a3
+e0
+90
+4e
+c9
+cf
+f0
+a3
+ef
+f0
+90
+4b
+9a
+e0
+fe
+a3
+e0
+ff
+90
+4b
+9c
+e0
+fc
+a3
+e0
+fd
+7b
+64
+12
+3d
+97
+90
+4e
+c8
+e0
+fe
+ef
+c3
+9e
+40
+e1
+90
+4e
+c8
+e0
+ff
+14
+f0
+ef
+60
+3f
+90
+4e
+c5
+e0
+fb
+a3
+e4
+75
+f0
+01
+12
+04
+79
+a9
+f0
+fa
+12
+03
+b6
+ff
+90
+4e
+c9
+e4
+75
+f0
+01
+12
+04
+79
+85
+f0
+82
+f5
+83
+ef
+f0
+90
+4e
+c9
+e0
+fe
+a3
+e0
+ff
+be
+4b
+c6
+bf
+36
+c3
+90
+4e
+c9
+74
+4a
+f0
+a3
+74
+a0
+f0
+80
+b7
+90
+4e
+c9
+e0
+ff
+a3
+e0
+90
+4b
+9c
+cf
+f0
+a3
+ef
+f0
+22
+90
+4f
+1b
+ef
+f0
+14
+b4
+0d
+00
+40
+02
+61
+0d
+90
+09
+8b
+75
+f0
+03
+a4
+c5
+83
+25
+f0
+c5
+83
+73
+02
+09
+b2
+02
+09
+b2
+02
+09
+b2
+02
+0b
+0d
+02
+09
+f9
+02
+0a
+3a
+02
+0a
+42
+02
+0a
+63
+02
+0a
+63
+02
+0a
+ca
+02
+0b
+0d
+02
+0b
+0d
+02
+09
+f1
+90
+4c
+a4
+e0
+ff
+64
+03
+60
+04
+ef
+b4
+02
+0d
+7f
+22
+11
+b3
+90
+4f
+1b
+e0
+90
+4c
+cc
+f0
+22
+90
+4f
+1b
+e0
+14
+90
+4d
+e5
+f0
+90
+42
+13
+74
+05
+f0
+90
+4c
+cf
+f0
+7f
+04
+11
+b3
+7f
+0a
+f1
+6e
+7f
+2a
+11
+b3
+e4
+90
+4c
+cc
+f0
+22
+7f
+0e
+11
+b3
+7f
+02
+01
+b3
+e4
+90
+4c
+cf
+f0
+71
+13
+ef
+70
+0b
+71
+52
+ef
+70
+06
+12
+20
+50
+ef
+60
+0f
+90
+4f
+1b
+e0
+90
+4c
+cc
+f0
+90
+4d
+fb
+74
+03
+f0
+22
+12
+18
+c3
+e4
+90
+4d
+e3
+f0
+90
+4d
+e2
+f0
+90
+4e
+61
+f0
+12
+20
+67
+7f
+2c
+11
+b3
+e4
+90
+4c
+cc
+f0
+22
+71
+13
+e4
+90
+4c
+cc
+f0
+22
+7b
+01
+7a
+4d
+79
+fd
+7d
+5a
+7c
+00
+12
+28
+19
+90
+4c
+9f
+74
+ff
+f0
+a3
+f0
+90
+4c
+9e
+74
+03
+f0
+e4
+90
+4c
+cc
+f0
+22
+e4
+90
+4c
+cf
+f0
+71
+52
+ef
+60
+09
+90
+4f
+1b
+e0
+90
+4c
+cc
+f0
+22
+7b
+01
+7a
+4c
+79
+00
+7d
+04
+7c
+00
+7f
+52
+7e
+7f
+12
+1e
+cf
+7f
+0a
+f1
+6e
+e4
+90
+4e
+61
+f0
+90
+4c
+00
+e0
+f4
+70
+21
+a3
+e0
+b4
+ff
+1c
+a3
+e0
+b4
+ff
+17
+a3
+e0
+b4
+ff
+12
+90
+4c
+00
+74
+0f
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+90
+4e
+61
+74
+01
+f0
+7f
+21
+11
+b3
+90
+4c
+a4
+74
+02
+f0
+e4
+a3
+f0
+90
+4c
+cc
+f0
+22
+e4
+90
+4c
+cf
+f0
+71
+13
+ef
+70
+05
+71
+52
+ef
+60
+09
+90
+4f
+1b
+e0
+90
+4c
+cc
+f0
+22
+90
+4c
+a4
+e0
+64
+01
+60
+1d
+e4
+90
+4e
+61
+f0
+7f
+23
+11
+b3
+90
+4c
+a4
+74
+01
+f0
+e4
+a3
+f0
+90
+4c
+cd
+74
+3c
+f0
+e4
+90
+4c
+c8
+f0
+e4
+90
+4c
+cc
+f0
+22
+e4
+90
+4c
+cc
+f0
+22
+90
+4c
+a8
+e0
+ff
+64
+04
+60
+04
+ef
+b4
+03
+07
+7f
+04
+11
+b3
+7f
+01
+22
+90
+4c
+a6
+e0
+ff
+64
+04
+60
+04
+ef
+b4
+03
+07
+7f
+11
+11
+b3
+7f
+01
+22
+90
+4c
+a4
+e0
+ff
+64
+03
+60
+04
+ef
+b4
+02
+07
+7f
+22
+11
+b3
+7f
+01
+22
+7f
+00
+22
+90
+4c
+a8
+e0
+b4
+02
+07
+7f
+1e
+11
+b3
+7f
+01
+22
+90
+4c
+a6
+e0
+b4
+02
+07
+7f
+0e
+11
+b3
+7f
+01
+22
+7f
+00
+22
+90
+4c
+ad
+e0
+30
+e1
+3d
+90
+4c
+af
+e0
+c3
+94
+fa
+50
+03
+e0
+04
+f0
+90
+4c
+af
+e0
+64
+b4
+70
+36
+90
+4d
+f2
+e0
+04
+f0
+e0
+d3
+94
+02
+50
+07
+e4
+90
+4c
+af
+f0
+80
+23
+90
+4d
+f2
+e0
+b4
+03
+1c
+90
+4d
+eb
+74
+01
+f0
+e4
+90
+4c
+af
+f0
+f1
+d8
+80
+0d
+e4
+90
+4d
+f2
+f0
+90
+4d
+eb
+f0
+90
+4c
+af
+f0
+90
+4c
+ad
+e0
+30
+e4
+36
+90
+4c
+c9
+74
+0a
+f0
+90
+4c
+b0
+e0
+c3
+94
+fa
+50
+03
+e0
+04
+f0
+90
+4c
+b0
+e0
+64
+06
+70
+46
+90
+4c
+a2
+e0
+ff
+60
+04
+64
+fe
+70
+3b
+e4
+90
+4c
+ac
+f0
+71
+13
+7f
+0a
+f1
+6e
+7f
+0a
+31
+70
+80
+2a
+90
+4c
+ac
+e0
+60
+1f
+e4
+f0
+7f
+0d
+31
+70
+90
+4c
+ca
+74
+01
+f0
+90
+4c
+a2
+e0
+90
+4c
+9f
+f0
+90
+4c
+9e
+74
+01
+f0
+12
+1d
+8a
+f1
+dc
+e4
+90
+4c
+b0
+f0
+90
+4c
+ad
+e0
+30
+e3
+46
+90
+4c
+c9
+74
+0a
+f0
+90
+4c
+b1
+e0
+c3
+94
+fa
+50
+03
+e0
+04
+f0
+90
+4c
+b1
+e0
+64
+06
+70
+5f
+90
+4c
+c8
+74
+3c
+f0
+e4
+90
+4c
+cd
+f0
+7f
+05
+31
+70
+91
+ac
+e4
+90
+4c
+ab
+f0
+90
+4c
+ca
+04
+f0
+90
+4c
+9f
+e0
+90
+4c
+a3
+f0
+90
+4c
+a2
+e0
+90
+4c
+9f
+f0
+22
+90
+4c
+ab
+e0
+60
+28
+e4
+f0
+90
+4c
+a2
+e0
+ff
+90
+4c
+9f
+e0
+6f
+60
+1a
+90
+4c
+ca
+74
+01
+f0
+91
+ac
+90
+4c
+a2
+e0
+90
+4c
+9f
+f0
+90
+4c
+9e
+74
+01
+f0
+71
+13
+f1
+d9
+e4
+90
+4c
+b1
+f0
+22
+f1
+9c
+c2
+06
+7f
+1d
+91
+ce
+c2
+06
+7f
+ff
+91
+ce
+c2
+06
+7f
+1e
+91
+ce
+c2
+06
+7f
+1e
+91
+ce
+c2
+06
+7f
+1e
+91
+ce
+c2
+06
+7f
+1f
+ac
+07
+ec
+f4
+60
+16
+af
+04
+d2
+04
+12
+36
+ef
+af
+04
+a2
+06
+92
+01
+f1
+5c
+af
+04
+c2
+02
+12
+36
+cd
+22
+90
+4e
+e9
+ef
+f0
+a3
+ed
+f0
+90
+4c
+f9
+ef
+f0
+ed
+60
+06
+90
+4c
+b4
+e0
+60
+30
+90
+4c
+f9
+e0
+ff
+f1
+9c
+90
+4e
+e9
+e0
+30
+e0
+06
+c2
+06
+7f
+15
+91
+ce
+90
+4e
+e9
+e0
+30
+e1
+06
+c2
+06
+7f
+14
+91
+ce
+90
+4e
+e9
+e0
+20
+e2
+02
+a1
+bc
+c2
+06
+7f
+13
+80
+9d
+90
+4e
+ea
+e0
+64
+04
+70
+2e
+90
+4c
+f9
+e0
+ff
+f1
+9c
+90
+4e
+e9
+e0
+30
+e0
+06
+d2
+06
+7f
+15
+91
+ce
+90
+4e
+e9
+e0
+30
+e1
+06
+d2
+06
+7f
+14
+91
+ce
+90
+4e
+e9
+e0
+30
+e2
+5b
+d2
+06
+7f
+13
+81
+ce
+90
+4e
+ea
+e0
+ff
+b4
+03
+09
+a3
+e4
+f0
+a3
+74
+4b
+f0
+80
+18
+ef
+b4
+02
+0b
+90
+4e
+eb
+e4
+f0
+a3
+74
+32
+f0
+80
+09
+90
+4e
+eb
+e4
+f0
+a3
+74
+19
+f0
+e4
+90
+41
+31
+f0
+90
+4c
+e0
+04
+f0
+90
+4c
+f9
+e0
+ff
+12
+39
+54
+90
+4e
+eb
+e0
+a3
+e0
+ff
+90
+80
+a0
+f0
+c3
+74
+64
+9f
+90
+80
+a2
+f0
+90
+80
+85
+e0
+44
+40
+f0
+22
+90
+4c
+e6
+e0
+04
+f0
+70
+06
+90
+4c
+e5
+e0
+04
+f0
+90
+4c
+e3
+e0
+fd
+7c
+00
+90
+4c
+e5
+e0
+fe
+a3
+e0
+ff
+12
+04
+0e
+ed
+4c
+60
+02
+c1
+9c
+90
+4c
+e2
+e0
+14
+60
+11
+14
+60
+11
+14
+60
+02
+c1
+96
+90
+4c
+e7
+e0
+fd
+7f
+07
+81
+eb
+02
+37
+61
+90
+4c
+f7
+e0
+70
+0e
+fd
+7f
+07
+91
+eb
+90
+4c
+e7
+e0
+fd
+7f
+01
+91
+eb
+90
+4c
+f7
+e0
+b4
+01
+0f
+e4
+fd
+7f
+07
+91
+eb
+90
+4c
+e7
+e0
+fd
+7f
+02
+91
+eb
+90
+4c
+f7
+e0
+b4
+02
+0f
+e4
+fd
+7f
+07
+91
+eb
+90
+4c
+e7
+e0
+fd
+7f
+03
+91
+eb
+90
+4c
+f7
+e0
+b4
+03
+0f
+e4
+fd
+7f
+07
+91
+eb
+90
+4c
+e7
+e0
+fd
+7f
+04
+91
+eb
+90
+4c
+f7
+e0
+b4
+04
+0f
+e4
+fd
+7f
+07
+91
+eb
+90
+4c
+e7
+e0
+fd
+7f
+05
+91
+eb
+90
+4c
+f7
+e0
+b4
+05
+0f
+e4
+fd
+7f
+07
+91
+eb
+90
+4c
+e7
+e0
+fd
+7f
+06
+91
+eb
+90
+4c
+f7
+e0
+b4
+06
+15
+e4
+fd
+7f
+07
+91
+eb
+90
+4c
+e7
+e0
+fd
+7f
+07
+81
+eb
+e4
+fd
+7f
+07
+91
+eb
+22
+90
+4d
+fa
+e0
+64
+02
+60
+02
+e1
+5b
+90
+4c
+df
+e0
+60
+08
+c2
+06
+7f
+ff
+91
+ce
+80
+06
+d2
+06
+7f
+ff
+91
+ce
+90
+4c
+c8
+e0
+60
+02
+e1
+55
+90
+4c
+cd
+e0
+60
+02
+e1
+55
+b1
+bd
+90
+4c
+b4
+e0
+b4
+02
+04
+f1
+d8
+80
+2e
+90
+4c
+b4
+e0
+b4
+01
+14
+90
+4c
+d6
+e0
+70
+21
+90
+4c
+c1
+74
+18
+f0
+90
+4c
+d6
+74
+01
+f0
+80
+13
+90
+4c
+d6
+e0
+b4
+01
+0c
+e4
+f0
+90
+4c
+c1
+f0
+c2
+01
+7f
+1e
+f1
+5c
+12
+18
+0d
+ef
+60
+43
+c3
+90
+4c
+c3
+e0
+94
+14
+90
+4c
+c2
+e0
+94
+00
+50
+28
+90
+4c
+90
+e0
+30
+e0
+08
+d2
+01
+7f
+1f
+f1
+5c
+80
+06
+c2
+01
+7f
+1f
+f1
+5c
+90
+4c
+90
+e0
+30
+e1
+06
+d2
+01
+7f
+1d
+80
+1f
+c2
+01
+7f
+1d
+80
+19
+c2
+01
+7f
+1d
+f1
+5c
+c2
+01
+7f
+1f
+80
+0d
+c2
+01
+7f
+1d
+80
+07
+c2
+01
+7f
+1d
+f1
+5c
+22
+ef
+f4
+60
+0d
+7b
+01
+7a
+80
+79
+74
+a2
+01
+92
+00
+12
+37
+00
+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
+7f
+07
+f1
+9c
+c2
+06
+7f
+15
+91
+ce
+c2
+06
+7f
+14
+91
+ce
+c2
+06
+7f
+13
+81
+ce
+90
+4c
+c8
+e0
+70
+09
+90
+4c
+e0
+e0
+b4
+01
+02
+e4
+f0
+90
+80
+51
+e0
+44
+20
+f0
+e0
+44
+20
+f0
+ef
+30
+e0
+07
+90
+80
+82
+e0
+54
+bf
+f0
+ef
+30
+e1
+07
+90
+80
+82
+e0
+54
+df
+f0
+ef
+30
+e2
+07
+90
+80
+82
+e0
+54
+ef
+f0
+22
+22
+12
+1d
+8a
+90
+80
+10
+74
+01
+f0
+80
+fe
+22
+d2
+01
+7f
+1e
+e1
+5c
+c2
+01
+7f
+1e
+e1
+5c
+90
+4f
+11
+ed
+f0
+90
+4f
+10
+ef
+f0
+64
+01
+70
+70
+a3
+e0
+ff
+75
+f0
+1e
+a4
+24
+fd
+f5
+82
+e4
+34
+4d
+f5
+83
+74
+01
+f0
+ef
+75
+f0
+1e
+a4
+24
+fe
+f5
+82
+e4
+34
+4d
+af
+82
+fe
+7b
+01
+7a
+03
+79
+d0
+90
+4e
+d0
+74
+06
+f0
+11
+c8
+90
+4f
+11
+e0
+75
+f0
+1e
+a4
+24
+04
+f5
+82
+e4
+34
+4e
+af
+82
+fe
+7b
+01
+7a
+44
+79
+7b
+90
+4e
+d0
+74
+10
+f0
+11
+c8
+90
+4f
+11
+e0
+75
+f0
+1e
+a4
+24
+14
+f5
+82
+e4
+34
+4e
+af
+82
+fe
+7b
+01
+7a
+44
+79
+f9
+90
+4e
+d0
+74
+06
+f0
+80
+59
+90
+4f
+10
+e0
+64
+02
+70
+50
+a3
+e0
+ff
+75
+f0
+1e
+a4
+24
+fd
+f5
+82
+e4
+34
+4d
+f5
+83
+74
+02
+f0
+ef
+75
+f0
+1e
+a4
+24
+fe
+f5
+82
+e4
+34
+4d
+af
+82
+fe
+7b
+01
+7a
+00
+79
+40
+90
+4e
+d0
+74
+06
+f0
+11
+c8
+90
+4f
+11
+e0
+75
+f0
+1e
+a4
+24
+04
+f5
+82
+e4
+34
+4e
+af
+82
+fe
+7b
+01
+7a
+42
+79
+62
+90
+4e
+d0
+74
+10
+f0
+11
+c8
+22
+90
+4e
+cb
+ee
+f0
+a3
+ef
+f0
+a3
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+90
+4e
+d0
+e0
+ff
+14
+f0
+ef
+60
+27
+90
+4e
+cd
+e0
+fb
+a3
+e4
+75
+f0
+01
+12
+04
+79
+a9
+f0
+fa
+12
+03
+b6
+ff
+90
+4e
+cb
+e4
+75
+f0
+01
+12
+04
+79
+85
+f0
+82
+f5
+83
+ef
+f0
+80
+cf
+22
+90
+4e
+d1
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+e4
+a3
+f0
+a3
+f0
+90
+4d
+f1
+f0
+90
+4e
+d5
+f0
+90
+4e
+d5
+e0
+ff
+c3
+94
+05
+50
+2c
+90
+4e
+d1
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+24
+01
+f9
+e4
+3a
+fa
+7e
+00
+e9
+2f
+f9
+ee
+3a
+fa
+12
+03
+b6
+b4
+7f
+06
+90
+4d
+f1
+74
+01
+f0
+90
+4e
+d5
+e0
+04
+f0
+80
+ca
+90
+4e
+d1
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+12
+33
+6b
+ef
+60
+02
+61
+e9
+90
+4e
+d1
+e0
+a3
+e0
+fa
+a3
+e0
+4a
+70
+02
+61
+e9
+90
+4d
+5a
+e0
+60
+08
+e4
+f0
+90
+4d
+23
+74
+03
+f0
+90
+4c
+a6
+e0
+64
+04
+60
+07
+90
+4c
+a8
+e0
+b4
+04
+06
+90
+42
+13
+74
+03
+f0
+90
+4d
+f6
+74
+0a
+f0
+e4
+90
+4c
+c2
+f0
+a3
+f0
+90
+4c
+f6
+f0
+90
+4c
+e2
+e0
+60
+12
+e4
+90
+4d
+1d
+f0
+a3
+74
+48
+f0
+a3
+74
+12
+f0
+e4
+a3
+f0
+80
+10
+e4
+90
+4d
+1d
+f0
+a3
+74
+48
+f0
+a3
+74
+5d
+f0
+e4
+a3
+f0
+7b
+01
+7a
+48
+79
+00
+7d
+09
+7c
+00
+91
+d8
+7b
+01
+7a
+4e
+79
+58
+7d
+09
+7c
+00
+91
+d8
+90
+4c
+8f
+74
+01
+f0
+90
+4c
+d3
+e0
+ff
+64
+01
+70
+02
+61
+e9
+ef
+64
+04
+70
+02
+61
+e9
+ef
+64
+02
+70
+02
+61
+e9
+90
+4c
+a4
+e0
+64
+03
+70
+45
+90
+4e
+d5
+f0
+90
+4e
+d5
+e0
+ff
+c3
+94
+05
+50
+37
+90
+4e
+d1
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+24
+01
+f9
+e4
+3a
+fa
+7e
+00
+e9
+2f
+f9
+ee
+3a
+fa
+12
+03
+b6
+ff
+64
+39
+60
+09
+ef
+64
+53
+60
+04
+ef
+b4
+47
+06
+90
+4d
+23
+74
+03
+f0
+90
+4e
+d5
+e0
+04
+f0
+80
+bf
+90
+4e
+d1
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+12
+2e
+2d
+90
+4e
+57
+e0
+b4
+01
+11
+74
+02
+f0
+90
+4e
+58
+f0
+7b
+01
+7a
+4e
+79
+58
+7d
+03
+61
+ea
+90
+4e
+57
+e0
+b4
+04
+11
+74
+02
+f0
+90
+4e
+58
+04
+f0
+7b
+01
+7a
+4e
+79
+58
+fd
+61
+ea
+90
+4e
+57
+e0
+64
+03
+60
+0b
+e0
+64
+02
+70
+2f
+90
+4d
+f4
+e0
+70
+29
+e4
+90
+4e
+57
+f0
+90
+4d
+fc
+f0
+90
+4d
+f8
+e0
+60
+0a
+e4
+f0
+90
+4e
+58
+74
+03
+f0
+80
+06
+90
+4e
+58
+74
+02
+f0
+7b
+01
+7a
+4e
+79
+58
+7d
+03
+61
+ea
+90
+4d
+f4
+e0
+70
+31
+90
+4e
+d1
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+24
+01
+f9
+e4
+3a
+fa
+7d
+06
+7c
+00
+91
+d8
+7b
+01
+7a
+4d
+79
+d3
+7d
+0f
+7c
+00
+91
+d8
+90
+4e
+d1
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+e4
+12
+03
+fc
+90
+48
+00
+74
+01
+f0
+90
+4e
+d1
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+12
+03
+b6
+90
+48
+01
+f0
+90
+4c
+a4
+e0
+b4
+03
+0a
+90
+4d
+23
+e0
+90
+48
+02
+f0
+80
+05
+e4
+90
+48
+02
+f0
+e4
+90
+4d
+ee
+f0
+90
+4e
+61
+e0
+70
+6f
+90
+00
+01
+12
+03
+cf
+b4
+7f
+15
+7e
+48
+7f
+03
+e9
+24
+02
+f9
+e4
+3a
+fa
+90
+4e
+d0
+74
+05
+f0
+11
+c8
+80
+1c
+7e
+48
+7f
+03
+90
+4e
+d1
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+24
+01
+f9
+e4
+3a
+fa
+90
+4e
+d0
+74
+06
+f0
+11
+c8
+90
+4e
+d5
+74
+03
+f0
+90
+4e
+d5
+e0
+ff
+c3
+94
+09
+50
+41
+74
+00
+2f
+f5
+82
+e4
+34
+48
+f5
+83
+e0
+b4
+7f
+0f
+90
+4e
+d5
+e0
+24
+00
+f5
+82
+e4
+34
+48
+f5
+83
+e4
+f0
+90
+4e
+d5
+e0
+04
+f0
+80
+d1
+7e
+48
+7f
+03
+90
+4e
+d1
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+24
+01
+f9
+e4
+3a
+fa
+90
+4e
+d0
+74
+06
+f0
+11
+c8
+7b
+01
+7a
+48
+79
+00
+7d
+09
+71
+ea
+90
+4d
+d3
+74
+08
+f0
+7b
+01
+7a
+4d
+79
+d3
+7d
+0f
+71
+ea
+22
+90
+4e
+86
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+a3
+ed
+f0
+e4
+ff
+90
+4e
+89
+e0
+fe
+ef
+c3
+9e
+50
+23
+90
+4e
+86
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+8f
+82
+75
+83
+00
+12
+03
+cf
+fe
+74
+8a
+2f
+f5
+82
+e4
+34
+4e
+f5
+83
+ee
+f0
+0f
+80
+d3
+12
+18
+2a
+ef
+70
+02
+81
+d7
+90
+4c
+ca
+e0
+60
+02
+81
+d7
+90
+4c
+a8
+e0
+b4
+04
+0e
+7b
+01
+7a
+4e
+79
+8a
+90
+4e
+89
+e0
+fd
+12
+3d
+f1
+90
+4c
+a6
+e0
+ff
+64
+04
+60
+0a
+ef
+b4
+03
+14
+90
+4d
+e2
+e0
+60
+0e
+7b
+01
+7a
+4e
+79
+8a
+90
+4e
+89
+e0
+fd
+12
+3e
+07
+90
+4c
+a4
+e0
+64
+03
+70
+62
+90
+4e
+8a
+e0
+64
+01
+70
+23
+74
+04
+f0
+a3
+e0
+70
+14
+90
+4e
+8d
+e0
+70
+0e
+a3
+e0
+70
+0a
+a3
+e0
+70
+06
+90
+4d
+ec
+f0
+80
+32
+90
+4d
+ec
+74
+01
+f0
+80
+2a
+90
+4e
+8a
+e0
+b4
+02
+19
+74
+05
+f0
+a3
+e0
+70
+0a
+a3
+e0
+70
+06
+90
+4d
+ec
+f0
+80
+12
+90
+4d
+ec
+74
+01
+f0
+80
+0a
+90
+4e
+8a
+e0
+b4
+03
+03
+74
+07
+f0
+7b
+01
+7a
+4e
+79
+8a
+90
+4e
+89
+e0
+fd
+f1
+e1
+22
+90
+4f
+0a
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+ed
+1d
+ae
+04
+70
+01
+1c
+4e
+60
+16
+90
+4f
+0a
+e0
+fb
+a3
+e4
+75
+f0
+01
+12
+04
+79
+a9
+f0
+fa
+e4
+12
+03
+fc
+80
+e0
+22
+7b
+01
+7a
+4c
+79
+9e
+7d
+5f
+7c
+00
+91
+d8
+7b
+01
+7a
+4d
+79
+93
+7d
+14
+7c
+00
+91
+d8
+7b
+01
+7a
+4d
+79
+a8
+7d
+14
+7c
+00
+91
+d8
+7b
+01
+7a
+4d
+79
+bc
+7d
+14
+7c
+00
+91
+d8
+7b
+01
+7a
+48
+79
+00
+7d
+09
+7c
+00
+91
+d8
+7b
+01
+7a
+4e
+79
+58
+7d
+09
+7c
+00
+91
+d8
+e4
+90
+4d
+f6
+f0
+90
+4d
+fb
+f0
+90
+4d
+e8
+f0
+90
+4d
+f0
+f0
+90
+4d
+ed
+f0
+90
+4d
+fa
+f0
+90
+4d
+ec
+f0
+90
+4d
+e4
+f0
+90
+4d
+f5
+f0
+90
+4d
+f2
+f0
+90
+4e
+57
+f0
+90
+4d
+eb
+f0
+90
+4d
+ee
+f0
+90
+4d
+f1
+f0
+90
+4d
+f9
+f0
+90
+4d
+e7
+f0
+90
+4d
+fc
+f0
+90
+4c
+90
+74
+f0
+f0
+90
+4d
+ef
+f0
+e4
+90
+4d
+17
+f0
+90
+4d
+e3
+f0
+22
+90
+4f
+12
+ef
+f0
+a3
+ed
+f0
+7b
+01
+7a
+48
+79
+00
+7d
+09
+7c
+00
+91
+d8
+90
+48
+00
+74
+01
+f0
+a3
+e0
+ff
+90
+4f
+12
+e0
+fe
+ef
+4e
+90
+48
+01
+f0
+90
+4f
+13
+e0
+90
+48
+03
+f0
+7b
+01
+7a
+48
+79
+00
+7d
+09
+61
+ea
+90
+4c
+a7
+e0
+64
+02
+60
+07
+90
+4c
+a9
+e0
+b4
+02
+03
+02
+30
+f8
+90
+4c
+d3
+e0
+ff
+60
+08
+64
+03
+60
+04
+ef
+b4
+05
+02
+80
+72
+90
+4c
+d3
+e0
+b4
+01
+0e
+a3
+e0
+ff
+e4
+fd
+b1
+a5
+90
+4c
+d3
+74
+02
+f0
+22
+90
+4c
+d3
+e0
+b4
+02
+0b
+74
+03
+f0
+a3
+e0
+ff
+a3
+e0
+fd
+a1
+a5
+90
+4c
+d3
+e0
+b4
+04
+27
+e4
+90
+4c
+d5
+f0
+90
+4c
+d4
+e0
+ff
+e4
+fd
+b1
+a5
+e4
+90
+4c
+d4
+f0
+90
+4c
+d7
+e0
+70
+07
+90
+4c
+d3
+74
+06
+f0
+22
+90
+4c
+d3
+74
+05
+f0
+22
+90
+4c
+d3
+e0
+b4
+06
+15
+e4
+90
+4c
+d5
+f0
+90
+4c
+d4
+f0
+a3
+e0
+fd
+e4
+ff
+b1
+a5
+e4
+90
+4c
+d3
+f0
+22
+90
+4e
+f8
+e4
+f0
+a3
+f0
+a3
+f0
+12
+3e
+16
+50
+25
+12
+28
+90
+90
+4e
+f8
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+4a
+70
+07
+90
+4c
+8f
+04
+f0
+80
+0e
+90
+4e
+f8
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+31
+0b
+22
+90
+4d
+23
+e0
+60
+35
+90
+4d
+ec
+e0
+70
+2f
+90
+4c
+a4
+e0
+b4
+03
+28
+7b
+01
+7a
+48
+79
+00
+7d
+09
+7c
+00
+91
+d8
+e4
+90
+4e
+57
+f0
+90
+48
+00
+04
+f0
+90
+4d
+23
+e0
+90
+48
+02
+f0
+7b
+01
+7a
+48
+79
+00
+7d
+09
+71
+ea
+22
+90
+4d
+ea
+e0
+60
+0b
+e0
+14
+f0
+e0
+70
+05
+90
+4d
+e9
+04
+f0
+90
+4c
+a8
+e0
+64
+04
+60
+07
+90
+4c
+a6
+e0
+b4
+04
+29
+90
+4c
+c2
+e0
+b4
+02
+08
+a3
+e0
+b4
+d0
+03
+12
+0c
+ac
+90
+4c
+c2
+e0
+64
+04
+70
+04
+a3
+e0
+64
+b0
+60
+02
+e1
+a5
+12
+0b
+13
+90
+4c
+cb
+74
+01
+f0
+22
+90
+4c
+a4
+e0
+64
+03
+70
+39
+90
+4c
+c3
+e0
+54
+1f
+64
+10
+70
+1e
+7b
+01
+7a
+48
+79
+00
+7d
+09
+fc
+91
+d8
+e4
+90
+4e
+57
+f0
+90
+48
+00
+04
+f0
+fb
+7a
+48
+79
+00
+7d
+09
+71
+ea
+c3
+90
+4c
+c3
+e0
+94
+b0
+90
+4c
+c2
+e0
+94
+04
+40
+39
+80
+38
+90
+4c
+a4
+e0
+b4
+01
+11
+c3
+90
+4c
+c3
+e0
+94
+3c
+90
+4c
+c2
+e0
+94
+00
+40
+21
+80
+20
+c3
+90
+4c
+c3
+e0
+94
+14
+90
+4c
+c2
+e0
+94
+00
+40
+10
+90
+4d
+f5
+e0
+60
+07
+e4
+f0
+7f
+0e
+12
+08
+b3
+12
+0f
+d8
+22
+90
+4c
+f6
+74
+01
+f0
+e4
+90
+4c
+c5
+f0
+a3
+f0
+a3
+f0
+90
+4c
+90
+74
+f0
+f0
+90
+4d
+ef
+f0
+e4
+90
+4c
+e2
+f0
+90
+4c
+d6
+f0
+90
+4c
+c1
+f0
+90
+4b
+ef
+74
+ff
+f0
+90
+4d
+1d
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+7f
+07
+02
+0c
+aa
+90
+0b
+e7
+74
+06
+f0
+90
+4f
+21
+ed
+f0
+e0
+fd
+90
+0b
+e8
+f0
+7e
+0b
+7f
+e9
+90
+4e
+d0
+ed
+f0
+11
+c8
+7b
+01
+7a
+0b
+79
+e7
+90
+4f
+21
+e0
+24
+02
+fd
+02
+08
+db
+90
+4c
+a8
+e0
+64
+04
+60
+0f
+90
+4c
+a6
+e0
+64
+04
+60
+07
+90
+4c
+a4
+e0
+b4
+03
+03
+7f
+01
+22
+7f
+00
+22
+e4
+90
+4f
+19
+f0
+90
+4c
+a7
+e0
+64
+02
+60
+07
+90
+4c
+a9
+e0
+b4
+02
+06
+90
+4f
+19
+e0
+ff
+22
+90
+47
+f4
+e0
+54
+40
+fe
+a3
+e0
+54
+08
+ff
+be
+40
+09
+bf
+08
+06
+90
+4f
+19
+e0
+ff
+22
+90
+4c
+cd
+e0
+60
+06
+90
+4f
+19
+e0
+ff
+22
+90
+4c
+a8
+e0
+70
+45
+90
+4c
+a6
+e0
+70
+3f
+90
+4c
+a4
+e0
+64
+03
+60
+37
+90
+4c
+ce
+e0
+70
+3b
+74
+0a
+f0
+a3
+e0
+70
+34
+90
+4d
+fa
+e0
+64
+02
+70
+2c
+90
+4c
+a2
+e0
+ff
+c3
+94
+01
+40
+0b
+ef
+d3
+94
+03
+50
+05
+12
+09
+70
+80
+17
+7f
+09
+12
+09
+70
+90
+4f
+19
+74
+01
+f0
+80
+0a
+e4
+90
+4c
+ca
+f0
+90
+4f
+19
+04
+f0
+90
+4f
+19
+e0
+ff
+22
+e4
+90
+4c
+cf
+f0
+90
+4d
+f5
+f0
+22
+90
+4f
+20
+ef
+f0
+12
+06
+08
+1a
+fa
+01
+1b
+f3
+02
+1b
+e4
+04
+1b
+1c
+06
+1b
+ac
+0a
+1b
+e4
+13
+1c
+95
+14
+1d
+42
+15
+1a
+1a
+27
+1d
+09
+29
+1b
+a2
+2a
+19
+18
+2f
+1a
+10
+30
+1a
+51
+31
+1a
+bc
+32
+19
+18
+33
+1c
+e4
+34
+1d
+23
+35
+1a
+49
+37
+1a
+1a
+39
+1a
+51
+3c
+00
+00
+1d
+89
+f1
+b8
+12
+39
+84
+7b
+01
+7a
+4c
+79
+e1
+7d
+01
+7c
+00
+7f
+c2
+7e
+7f
+d1
+cf
+90
+4c
+e1
+e0
+b4
+01
+37
+90
+4c
+75
+e0
+70
+02
+a3
+e0
+70
+04
+f1
+7f
+80
+f2
+90
+4c
+bf
+e0
+fe
+a3
+e0
+ff
+c3
+90
+4c
+76
+e0
+9f
+90
+4c
+75
+e0
+9e
+50
+14
+90
+4c
+b4
+74
+02
+f0
+e4
+90
+4c
+c4
+f0
+90
+4c
+fa
+f0
+a3
+74
+64
+f0
+22
+7b
+01
+7a
+4c
+79
+9f
+7d
+01
+7c
+00
+7f
+bd
+7e
+7f
+d1
+cf
+90
+4c
+9f
+e0
+d3
+94
+03
+40
+02
+e4
+f0
+90
+4c
+9f
+e0
+90
+4c
+a2
+f0
+12
+0f
+e5
+7f
+0a
+12
+0f
+6e
+7b
+01
+7a
+4c
+79
+d1
+7d
+02
+7c
+00
+7f
+be
+7e
+7f
+d1
+cf
+90
+4c
+d1
+e0
+b4
+ff
+19
+a3
+e0
+b4
+ff
+14
+90
+4c
+73
+e0
+a3
+e0
+90
+4c
+d1
+f0
+90
+4c
+71
+e0
+a3
+e0
+90
+4c
+d2
+f0
+7b
+01
+7a
+4c
+79
+a0
+7d
+01
+7c
+00
+7f
+c0
+7e
+7f
+d1
+cf
+7f
+0a
+12
+0f
+6e
+90
+4c
+a0
+e0
+d3
+94
+02
+40
+11
+e4
+f0
+7b
+01
+7a
+4c
+79
+a0
+7d
+01
+fc
+7f
+c0
+7e
+7f
+d1
+20
+90
+4d
+fa
+74
+02
+f0
+90
+4c
+9f
+e0
+d3
+94
+02
+40
+02
+e4
+f0
+90
+4c
+9f
+e0
+90
+4c
+a2
+f0
+e1
+da
+f1
+bf
+f1
+8d
+e4
+90
+4c
+f6
+f0
+22
+90
+4c
+a2
+e0
+d3
+94
+00
+50
+02
+a1
+89
+e0
+94
+04
+40
+02
+a1
+89
+e0
+75
+f0
+1e
+a4
+24
+df
+f9
+74
+4d
+35
+f0
+fa
+7b
+01
+7d
+1e
+7c
+00
+12
+28
+19
+90
+4c
+9e
+74
+03
+f0
+22
+90
+4d
+e5
+e0
+ff
+02
+07
+8c
+90
+4c
+a4
+74
+03
+f0
+e4
+a3
+f0
+11
+c3
+e4
+90
+4c
+cd
+f0
+90
+4c
+ca
+f0
+90
+4c
+9f
+74
+fe
+f0
+90
+4c
+a2
+f0
+e4
+90
+4c
+f8
+f0
+90
+4d
+23
+74
+03
+f0
+90
+4d
+f6
+74
+0a
+f0
+90
+4f
+20
+e0
+64
+31
+70
+2b
+90
+4e
+61
+f0
+90
+4c
+c4
+74
+1e
+f0
+90
+4b
+eb
+e0
+b4
+0f
+12
+a3
+e0
+b4
+0f
+0d
+a3
+e0
+b4
+0f
+08
+a3
+e0
+64
+0f
+70
+02
+a1
+89
+90
+4c
+9e
+74
+02
+f0
+a1
+8a
+90
+4c
+c4
+e0
+60
+02
+a1
+89
+22
+e4
+90
+4c
+a4
+f0
+a3
+f0
+90
+4c
+c2
+f0
+a3
+f0
+90
+4c
+ca
+04
+f0
+90
+4c
+cc
+e0
+60
+0a
+11
+c3
+90
+4c
+cc
+e0
+ff
+02
+09
+70
+90
+4c
+cb
+e0
+b4
+01
+05
+e4
+f0
+02
+0f
+d8
+90
+4c
+cf
+e0
+70
+02
+a1
+89
+90
+4d
+e5
+e0
+ff
+02
+07
+8c
+90
+4c
+a8
+74
+03
+f0
+a3
+74
+01
+f0
+e4
+90
+4c
+a6
+f0
+a3
+f0
+90
+47
+f4
+e0
+a3
+20
+e7
+02
+a1
+89
+90
+4d
+e8
+74
+32
+f0
+22
+90
+4c
+a8
+74
+04
+f0
+e4
+a3
+f0
+7f
+0e
+12
+08
+b3
+7f
+02
+12
+08
+b3
+90
+4c
+a2
+e0
+90
+4c
+9f
+f0
+90
+4c
+c8
+e0
+60
+21
+90
+4c
+a0
+e0
+ff
+90
+4c
+a2
+e0
+75
+f0
+1e
+a4
+24
+fc
+f5
+82
+e4
+34
+4d
+f5
+83
+ef
+f0
+12
+27
+2f
+90
+4c
+9e
+74
+03
+f0
+e4
+90
+4c
+c2
+f0
+a3
+f0
+90
+4c
+c8
+f0
+90
+4c
+f8
+f0
+11
+c3
+e4
+90
+4c
+ca
+f0
+90
+4d
+e8
+f0
+90
+42
+13
+74
+1a
+f0
+e4
+90
+4d
+f0
+f0
+90
+00
+40
+e0
+70
+14
+a3
+e0
+70
+10
+a3
+e0
+70
+0c
+a3
+e0
+70
+08
+a3
+e0
+70
+04
+a3
+e0
+60
+e6
+7f
+05
+02
+08
+b3
+7f
+04
+12
+08
+b3
+7f
+0a
+02
+0f
+6e
+e4
+90
+05
+4f
+f0
+90
+4d
+ed
+04
+f0
+e4
+90
+4d
+e8
+f0
+90
+47
+f4
+e0
+a3
+30
+e7
+10
+90
+4d
+f0
+74
+01
+f0
+90
+05
+4f
+74
+04
+f0
+ff
+02
+08
+b3
+e4
+90
+4c
+cf
+f0
+90
+4c
+a9
+74
+02
+f0
+90
+4c
+a8
+04
+f0
+22
+90
+4c
+a4
+e0
+b4
+03
+08
+e4
+90
+4c
+a8
+f0
+a3
+f0
+22
+90
+4c
+a8
+e0
+90
+4c
+aa
+f0
+e4
+90
+4c
+a8
+f0
+a3
+f0
+90
+4c
+ca
+04
+f0
+e4
+90
+4d
+e8
+f0
+90
+4d
+f0
+e0
+64
+01
+70
+2f
+90
+4c
+a2
+e0
+d3
+94
+00
+40
+21
+e0
+94
+04
+50
+1c
+e0
+75
+f0
+1e
+a4
+24
+df
+f9
+74
+4d
+35
+f0
+fa
+7b
+01
+7d
+1e
+7c
+00
+12
+28
+19
+90
+4c
+9e
+74
+03
+f0
+e4
+90
+4d
+f0
+f0
+90
+4c
+cb
+e0
+b4
+01
+05
+e4
+f0
+02
+0f
+d8
+90
+4c
+cc
+e0
+60
+04
+ff
+02
+09
+70
+90
+4c
+cf
+e0
+60
+08
+90
+4d
+e5
+e0
+ff
+02
+07
+8c
+90
+4c
+a4
+e0
+64
+01
+70
+02
+a1
+89
+90
+4f
+20
+e0
+64
+13
+70
+02
+a1
+89
+90
+4c
+aa
+e0
+64
+04
+60
+07
+7f
+05
+12
+09
+70
+80
+03
+12
+0f
+d8
+e4
+90
+4c
+c2
+f0
+a3
+f0
+22
+90
+4c
+a6
+74
+03
+f0
+a3
+74
+01
+f0
+e4
+a3
+f0
+a3
+f0
+7f
+0e
+12
+08
+b3
+7f
+02
+12
+08
+b3
+90
+4c
+c8
+e0
+60
+18
+90
+4c
+a0
+e0
+ff
+90
+4c
+a2
+e0
+75
+f0
+1e
+a4
+24
+fc
+f5
+82
+e4
+34
+4d
+f5
+83
+ef
+f0
+90
+4d
+f5
+e0
+70
+06
+90
+4d
+e3
+74
+14
+f0
+e4
+90
+4c
+c8
+f0
+90
+4c
+c2
+f0
+a3
+f0
+22
+90
+4c
+a6
+74
+04
+f0
+e4
+a3
+f0
+11
+c3
+e4
+90
+4c
+ca
+f0
+90
+4d
+ea
+74
+0a
+f0
+90
+4c
+a2
+e0
+90
+4c
+9f
+f0
+90
+4c
+9e
+74
+03
+f0
+22
+90
+4c
+a2
+e0
+14
+fd
+7f
+01
+12
+0f
+f1
+90
+4c
+a2
+e0
+90
+4c
+9f
+f0
+90
+4c
+9e
+74
+03
+f0
+22
+90
+4d
+18
+12
+05
+d7
+00
+00
+00
+00
+e4
+90
+4d
+e6
+f0
+90
+4d
+ed
+04
+f0
+90
+4c
+a7
+04
+f0
+90
+4c
+a6
+04
+f0
+22
+90
+4c
+a6
+e0
+90
+4c
+aa
+f0
+e4
+90
+4c
+a6
+f0
+a3
+f0
+90
+4c
+ca
+04
+f0
+e4
+90
+4d
+1c
+f0
+90
+4c
+cb
+e0
+b4
+01
+05
+e4
+f0
+02
+0f
+d8
+90
+4c
+cc
+e0
+60
+04
+ff
+02
+09
+70
+90
+4c
+cf
+e0
+60
+08
+90
+4d
+e5
+e0
+ff
+02
+07
+8c
+12
+0f
+d8
+e4
+90
+4c
+c2
+f0
+a3
+f0
+22
+90
+4c
+9e
+e0
+70
+02
+c1
+1f
+90
+4c
+bf
+e0
+fe
+a3
+e0
+ff
+c3
+90
+4c
+76
+e0
+9f
+90
+4c
+75
+e0
+9e
+40
+78
+c2
+01
+7f
+ff
+12
+0f
+5c
+90
+4c
+9e
+e0
+b4
+02
+22
+7b
+01
+7a
+4c
+79
+00
+7d
+04
+7c
+00
+7f
+52
+7e
+7f
+d1
+20
+7b
+01
+7a
+4c
+79
+a0
+7d
+01
+7c
+00
+7f
+57
+7e
+7f
+d1
+20
+80
+17
+90
+4c
+9e
+e0
+b4
+03
+10
+7b
+01
+7a
+4d
+79
+fd
+7d
+5a
+7c
+00
+7f
+60
+7e
+7f
+d1
+20
+7b
+01
+7a
+4c
+79
+9f
+7d
+01
+7c
+00
+7f
+bd
+7e
+7f
+d1
+20
+7b
+01
+7a
+4c
+79
+d1
+7d
+02
+7c
+00
+7f
+be
+7e
+7f
+d1
+20
+d2
+01
+7f
+ff
+12
+0f
+5c
+7f
+0a
+12
+0f
+6e
+e4
+90
+4c
+9e
+f0
+22
+90
+4e
+9f
+ee
+f0
+a3
+ef
+f0
+a3
+ec
+f0
+a3
+ed
+f0
+a3
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+90
+4e
+a1
+e0
+70
+02
+a3
+e0
+70
+02
+c1
+ce
+90
+4e
+9f
+e0
+fe
+a3
+e0
+ff
+44
+0f
+24
+01
+fd
+e4
+3e
+fc
+c3
+ed
+9f
+ff
+ec
+9e
+fe
+90
+4e
+a6
+f0
+a3
+ef
+f0
+90
+4e
+a1
+e0
+fc
+a3
+e0
+fd
+d3
+9f
+ec
+9e
+40
+0a
+90
+4e
+a6
+e0
+fe
+a3
+e0
+ff
+80
+04
+ae
+04
+af
+05
+90
+4e
+a6
+ee
+f0
+fc
+a3
+ef
+f0
+fd
+c3
+90
+4e
+a2
+e0
+9d
+f0
+90
+4e
+a1
+e0
+9c
+f0
+90
+4e
+9f
+e0
+fe
+a3
+e0
+ff
+90
+4e
+a3
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+12
+3e
+6d
+7f
+0a
+12
+0f
+6e
+90
+4e
+a6
+e0
+fe
+a3
+e0
+ff
+90
+4e
+a4
+ee
+8f
+f0
+12
+04
+63
+90
+4e
+a0
+e0
+2f
+f0
+90
+4e
+9f
+e0
+3e
+f0
+c1
+37
+22
+90
+4e
+e0
+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
+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
+9a
+ee
+f0
+a3
+ef
+f0
+90
+4e
+e0
+e0
+fc
+a3
+e0
+fa
+ec
+ff
+ea
+fe
+ef
+90
+80
+9e
+ee
+f0
+a3
+ef
+f0
+7a
+0b
+79
+83
+7e
+0b
+7f
+83
+74
+83
+fc
+74
+0b
+ff
+ec
+fe
+ef
+90
+80
+9c
+ee
+f0
+a3
+ef
+f0
+90
+80
+90
+74
+02
+f0
+90
+80
+9c
+a3
+e0
+20
+e7
+07
+90
+80
+90
+e0
+44
+01
+f0
+90
+80
+06
+e0
+44
+04
+f0
+f1
+d2
+90
+4e
+e2
+e0
+a3
+e0
+fa
+a3
+e0
+ae
+02
+ff
+7b
+01
+7a
+0b
+79
+83
+90
+4e
+e0
+e0
+a3
+e0
+90
+4e
+d0
+f0
+02
+10
+c8
+e4
+90
+0b
+7f
+f0
+90
+0b
+7e
+f0
+7f
+01
+02
+0f
+6e
+90
+80
+80
+e4
+f0
+a3
+f0
+a3
+f0
+12
+36
+92
+e4
+90
+4f
+1e
+f0
+f0
+90
+4f
+1e
+e0
+90
+06
+d6
+93
+ff
+60
+0d
+c2
+05
+12
+36
+af
+90
+4f
+1e
+e0
+04
+f0
+80
+e8
+22
+f1
+bf
+f1
+8d
+02
+0c
+ac
+90
+80
+91
+74
+0d
+f0
+a3
+04
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+a3
+14
+f0
+22
+90
+81
+2c
+e0
+30
+e5
+f9
+22
+90
+4d
+fa
+74
+02
+f0
+7b
+01
+7a
+4d
+79
+fd
+7d
+5a
+7c
+00
+7f
+60
+7e
+7f
+d1
+cf
+7f
+0a
+12
+0f
+6e
+7b
+01
+7a
+4c
+79
+00
+7d
+04
+7c
+00
+7f
+52
+7e
+7f
+12
+1e
+cf
+7f
+0a
+12
+0f
+6e
+7b
+01
+7a
+4c
+79
+a0
+7d
+01
+7c
+00
+7f
+57
+7e
+7f
+12
+1e
+cf
+7f
+0a
+12
+0f
+6e
+90
+4c
+a2
+e0
+ff
+d3
+94
+03
+50
+20
+ef
+c3
+94
+01
+40
+1a
+ef
+75
+f0
+1e
+a4
+24
+fc
+f5
+82
+e4
+34
+4d
+f5
+83
+e0
+90
+4c
+a0
+f0
+90
+4c
+a2
+e0
+02
+09
+70
+7f
+08
+02
+09
+70
+90
+4c
+9f
+e0
+ff
+64
+fe
+60
+03
+ef
+70
+08
+7f
+22
+12
+08
+b3
+7f
+01
+22
+7f
+00
+22
+7b
+01
+7a
+4c
+79
+d1
+7d
+02
+7c
+00
+7f
+be
+7e
+7f
+12
+1e
+cf
+90
+4c
+d1
+e0
+04
+f0
+a3
+e0
+04
+f0
+90
+4c
+d1
+e0
+90
+44
+fa
+f0
+90
+4c
+d2
+e0
+90
+44
+fb
+f0
+90
+4d
+d0
+e0
+90
+44
+fc
+f0
+90
+4d
+d1
+e0
+90
+44
+fd
+f0
+90
+4d
+d2
+e0
+90
+44
+fe
+f0
+22
+90
+4d
+fb
+e0
+60
+45
+e0
+14
+f0
+e0
+70
+3f
+90
+4c
+cc
+e0
+b4
+05
+38
+90
+47
+f4
+e0
+54
+40
+fe
+a3
+e0
+54
+08
+64
+08
+70
+03
+ee
+64
+40
+60
+24
+e4
+90
+4d
+e3
+f0
+90
+4c
+c8
+74
+3c
+f0
+e4
+90
+4c
+cd
+f0
+90
+4e
+61
+f0
+90
+4d
+e2
+f0
+11
+67
+7f
+2c
+12
+08
+b3
+e4
+90
+4c
+cc
+f0
+22
+31
+2a
+90
+4c
+c3
+e0
+04
+f0
+70
+06
+90
+4c
+c2
+e0
+04
+f0
+51
+82
+12
+16
+e4
+12
+0b
+71
+11
+ab
+51
+07
+90
+4c
+a9
+e0
+64
+02
+60
+07
+90
+4c
+a7
+e0
+b4
+02
+07
+e4
+90
+4c
+c2
+f0
+a3
+f0
+22
+90
+4d
+fa
+e0
+64
+02
+60
+02
+21
+ea
+90
+4c
+c8
+e0
+60
+4d
+e4
+90
+4c
+c2
+f0
+a3
+f0
+90
+4c
+db
+f0
+90
+4c
+c8
+e0
+14
+f0
+e0
+30
+e0
+1c
+90
+4c
+ab
+e0
+64
+01
+60
+14
+90
+4c
+a2
+e0
+ff
+d3
+94
+02
+50
+0a
+ef
+c3
+94
+01
+40
+04
+7f
+1e
+31
+eb
+90
+4c
+c8
+e0
+70
+3f
+90
+4c
+a3
+e0
+90
+4c
+a2
+f0
+90
+4c
+9f
+f0
+7f
+0d
+12
+09
+70
+12
+0f
+d8
+80
+29
+90
+4c
+cd
+e0
+60
+23
+e4
+90
+4c
+c2
+f0
+a3
+f0
+90
+4c
+cd
+e0
+14
+f0
+e0
+30
+e0
+04
+7f
+1e
+31
+eb
+90
+4c
+cd
+e0
+70
+08
+7f
+0a
+12
+0f
+6e
+12
+0f
+d8
+90
+4c
+c8
+e0
+70
+34
+90
+4c
+cd
+e0
+70
+2e
+90
+4c
+c1
+e0
+60
+23
+c3
+90
+4c
+c3
+e0
+94
+06
+90
+4c
+c2
+e0
+94
+00
+50
+0e
+90
+4c
+c1
+e0
+04
+f0
+e0
+30
+e1
+0f
+7f
+1e
+80
+0c
+e4
+90
+4c
+c1
+f0
+22
+e4
+90
+4c
+c1
+f0
+22
+90
+4f
+24
+ef
+f0
+7b
+01
+7a
+80
+79
+74
+51
+94
+92
+09
+90
+4f
+24
+e0
+ff
+a2
+09
+b3
+92
+01
+02
+0f
+5c
+90
+4c
+c8
+e0
+60
+4b
+e4
+90
+4c
+c2
+f0
+a3
+f0
+90
+4c
+db
+f0
+90
+4c
+c8
+e0
+14
+f0
+e0
+30
+e0
+1c
+90
+4c
+ab
+e0
+64
+01
+60
+14
+90
+4c
+a2
+e0
+ff
+d3
+94
+02
+50
+0a
+ef
+c3
+94
+01
+40
+04
+7f
+1e
+31
+eb
+90
+4c
+c8
+e0
+70
+14
+90
+4c
+a3
+e0
+90
+4c
+a2
+f0
+90
+4c
+9f
+f0
+7f
+0d
+12
+09
+70
+12
+0f
+d8
+90
+4c
+cd
+e0
+60
+23
+e4
+90
+4c
+c2
+f0
+a3
+f0
+90
+4c
+cd
+e0
+14
+f0
+e0
+30
+e0
+04
+7f
+1e
+31
+eb
+90
+4c
+cd
+e0
+70
+08
+7f
+0a
+12
+0f
+6e
+12
+0f
+d8
+22
+90
+4c
+b2
+e0
+60
+0b
+14
+f0
+e0
+70
+06
+74
+05
+f0
+12
+3b
+b5
+22
+ad
+07
+e4
+90
+4f
+22
+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
+fc
+90
+4f
+22
+e0
+ff
+74
+01
+7e
+00
+a8
+07
+08
+80
+05
+c3
+33
+ce
+33
+ce
+d8
+f9
+ff
+ee
+5c
+fe
+ef
+5d
+4e
+24
+ff
+22
+7b
+01
+7a
+81
+79
+1c
+80
+b9
+90
+4f
+23
+ef
+f0
+51
+d3
+92
+08
+90
+4f
+23
+e0
+ff
+a2
+08
+b3
+92
+07
+ef
+f4
+70
+02
+61
+79
+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
+f0
+22
+74
+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
+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
+e4
+ff
+90
+4f
+1f
+f0
+fe
+fd
+ef
+90
+06
+d6
+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
+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
+e4
+34
+80
+f5
+83
+e0
+5b
+f0
+0f
+80
+b0
+d1
+fb
+90
+81
+1c
+e0
+90
+4f
+1f
+f0
+90
+4d
+eb
+e0
+60
+20
+e4
+ff
+51
+db
+7f
+01
+51
+db
+7f
+02
+51
+db
+7f
+03
+51
+db
+7f
+04
+51
+db
+7f
+05
+51
+db
+7f
+06
+51
+db
+7f
+07
+41
+db
+90
+4f
+1f
+e0
+ff
+90
+00
+a3
+f0
+ef
+f4
+90
+00
+a7
+f0
+22
+d1
+da
+91
+81
+90
+4c
+fa
+e0
+70
+02
+a3
+e0
+70
+03
+12
+15
+df
+12
+1d
+8a
+12
+0e
+9d
+90
+4d
+5a
+e0
+60
+03
+12
+17
+a6
+90
+0b
+7e
+e0
+14
+60
+13
+24
+fe
+70
+d7
+71
+7a
+7f
+07
+12
+0f
+9c
+12
+0c
+ac
+12
+1f
+7f
+80
+fe
+90
+4c
+c9
+e0
+70
+16
+90
+4c
+cb
+e0
+70
+10
+90
+4c
+fa
+e0
+70
+02
+a3
+e0
+70
+06
+90
+4c
+d7
+e0
+60
+04
+d1
+ef
+80
+a8
+71
+7a
+90
+4c
+f6
+e0
+60
+05
+7f
+07
+12
+0c
+aa
+12
+1f
+7f
+80
+96
+80
+94
+22
+7a
+0c
+79
+4b
+90
+4f
+04
+74
+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
+70
+02
+c1
+30
+7e
+0c
+7f
+4b
+7d
+03
+d1
+8a
+90
+4f
+04
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+12
+03
+b6
+b4
+02
+2b
+90
+4f
+05
+e4
+75
+f0
+02
+12
+04
+63
+90
+4f
+04
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+12
+03
+b6
+ff
+90
+4e
+74
+e0
+a3
+e0
+fa
+a3
+e0
+f5
+82
+8a
+83
+12
+06
+32
+c1
+30
+90
+4f
+04
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+12
+03
+b6
+64
+04
+70
+59
+90
+4f
+05
+75
+f0
+01
+12
+04
+63
+7e
+0c
+7f
+4e
+90
+4f
+04
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+12
+03
+b6
+14
+fd
+d1
+8a
+90
+4f
+04
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+24
+01
+f9
+e4
+3a
+fa
+c0
+02
+c0
+01
+90
+4f
+04
+e0
+a3
+e0
+fa
+a3
+e0
+f9
+12
+03
+b6
+fd
+7c
+00
+90
+4e
+77
+e0
+a3
+e0
+fa
+a3
+e0
+f5
+82
+8a
+83
+d0
+01
+d0
+02
+12
+06
+32
+c1
+30
+90
+4f
+04
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+12
+03
+b6
+64
+05
+70
+59
+90
+4f
+05
+75
+f0
+01
+12
+04
+63
+7e
+0c
+7f
+4e
+90
+4f
+04
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+12
+03
+b6
+14
+fd
+d1
+8a
+90
+4f
+04
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+24
+01
+f9
+e4
+3a
+fa
+c0
+02
+c0
+01
+90
+4f
+04
+e0
+a3
+e0
+fa
+a3
+e0
+f9
+12
+03
+b6
+fd
+7c
+00
+90
+4e
+80
+e0
+a3
+e0
+fa
+a3
+e0
+f5
+82
+8a
+83
+d0
+01
+d0
+02
+12
+06
+32
+80
+6d
+90
+4f
+04
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+12
+03
+b6
+64
+03
+70
+59
+90
+4f
+05
+75
+f0
+01
+12
+04
+63
+7e
+0c
+7f
+4e
+90
+4f
+04
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+12
+03
+b6
+14
+fd
+d1
+8a
+90
+4f
+04
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+24
+01
+f9
+e4
+3a
+fa
+c0
+02
+c0
+01
+90
+4f
+04
+e0
+a3
+e0
+fa
+a3
+e0
+f9
+12
+03
+b6
+fd
+7c
+00
+90
+4e
+83
+e0
+a3
+e0
+fa
+a3
+e0
+f5
+82
+8a
+83
+d0
+01
+d0
+02
+12
+06
+32
+80
+02
+80
+fe
+90
+4b
+a5
+e0
+fe
+a3
+e0
+ff
+90
+4c
+3e
+e0
+6e
+70
+03
+a3
+e0
+6f
+60
+22
+90
+4e
+7a
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+4a
+60
+37
+12
+06
+2e
+90
+4b
+a5
+e0
+ff
+a3
+e0
+90
+4c
+3e
+cf
+f0
+a3
+ef
+f0
+80
+ca
+90
+4c
+6d
+e0
+ff
+a3
+e0
+6f
+60
+19
+90
+4e
+7d
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+4a
+60
+0b
+12
+06
+2e
+90
+4c
+6d
+e0
+a3
+f0
+80
+dd
+22
+90
+4f
+16
+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
+4f
+16
+e4
+75
+f0
+01
+12
+04
+79
+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
+7b
+01
+7a
+4e
+79
+62
+78
+74
+7c
+4e
+7d
+01
+7e
+00
+7f
+12
+02
+03
+90
+81
+12
+90
+0b
+7f
+74
+01
+f0
+e4
+90
+0b
+7e
+f0
+22
+e4
+ff
+ef
+fd
+7c
+00
+24
+78
+fb
+ec
+34
+80
+8b
+82
+f5
+83
+e0
+fe
+ed
+24
+70
+fd
+ec
+34
+80
+8d
+82
+f5
+83
+e0
+4e
+f4
+fe
+ef
+24
+7c
+fd
+ec
+34
+80
+8d
+82
+f5
+83
+ee
+f0
+0f
+ef
+b4
+04
+cf
+22
+90
+4c
+a2
+e0
+14
+90
+4f
+1a
+f0
+e4
+90
+4d
+ed
+f0
+90
+4f
+1a
+e0
+fd
+7f
+02
+12
+0f
+f1
+90
+4f
+1a
+e0
+ff
+60
+3e
+90
+4d
+fd
+e0
+64
+02
+70
+36
+ef
+75
+f0
+1e
+a4
+24
+fe
+f9
+74
+4d
+35
+f0
+fa
+90
+4e
+c1
+74
+01
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+a3
+74
+06
+f0
+7b
+01
+7a
+4d
+79
+fe
+12
+28
+46
+ef
+60
+0d
+7b
+01
+7a
+4d
+79
+fd
+7d
+1e
+7c
+00
+12
+28
+19
+90
+4f
+1a
+e0
+ff
+64
+01
+60
+3e
+90
+4e
+1b
+e0
+64
+02
+70
+36
+ef
+75
+f0
+1e
+a4
+24
+fe
+f9
+74
+4d
+35
+f0
+fa
+90
+4e
+c1
+74
+01
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+a3
+74
+06
+f0
+7b
+01
+7a
+4e
+79
+1c
+12
+28
+46
+ef
+60
+0d
+7b
+01
+7a
+4e
+79
+1b
+7d
+1e
+7c
+00
+12
+28
+19
+90
+4f
+1a
+e0
+ff
+64
+02
+60
+3c
+90
+4e
+39
+e0
+64
+02
+70
+34
+ef
+75
+f0
+1e
+a4
+24
+fe
+f9
+74
+4d
+35
+f0
+fa
+90
+4e
+c1
+74
+01
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+a3
+74
+06
+f0
+7b
+01
+7a
+4e
+79
+3a
+11
+46
+ef
+60
+0c
+7b
+01
+7a
+4e
+79
+39
+7d
+1e
+7c
+00
+11
+19
+22
+90
+4f
+0d
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+ed
+1d
+ae
+04
+70
+01
+1c
+4e
+60
+17
+90
+4f
+0d
+e0
+fb
+a3
+e4
+75
+f0
+01
+12
+04
+79
+a9
+f0
+fa
+74
+ff
+12
+03
+fc
+80
+df
+22
+90
+4e
+be
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+e4
+ff
+90
+4e
+c4
+e0
+fe
+ef
+c3
+9e
+50
+30
+90
+4e
+c1
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+8f
+82
+75
+83
+00
+12
+03
+cf
+fe
+90
+4e
+be
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+8f
+82
+75
+83
+00
+12
+03
+cf
+6e
+60
+03
+7f
+00
+22
+0f
+80
+c6
+7f
+01
+22
+e4
+90
+4e
+94
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+91
+b4
+7a
+4d
+79
+a8
+90
+4e
+c1
+74
+01
+f0
+a3
+74
+4d
+f0
+a3
+74
+a8
+f0
+a3
+74
+14
+f0
+7b
+01
+7a
+4d
+79
+bc
+11
+46
+ef
+60
+16
+7b
+01
+7a
+4d
+79
+bc
+7d
+14
+51
+ea
+ef
+70
+09
+90
+4c
+ad
+e0
+44
+02
+f0
+80
+0c
+90
+4c
+ad
+e0
+54
+fd
+f0
+e4
+90
+4c
+af
+f0
+e4
+90
+4e
+94
+f0
+90
+4e
+94
+e0
+ff
+90
+06
+d6
+93
+70
+02
+21
+c0
+74
+bc
+2f
+f5
+82
+e4
+34
+4d
+f5
+83
+e0
+90
+4e
+97
+f0
+e0
+ff
+51
+dc
+90
+4e
+9e
+ef
+f0
+c3
+94
+02
+50
+02
+21
+a9
+e4
+90
+4e
+95
+f0
+90
+4e
+95
+e0
+ff
+c3
+94
+08
+50
+7b
+74
+01
+7e
+00
+a8
+07
+08
+80
+05
+c3
+33
+ce
+33
+ce
+d8
+f9
+ff
+90
+4e
+97
+e0
+fd
+e4
+ef
+5d
+60
+58
+e4
+90
+4e
+96
+f0
+90
+4e
+96
+e0
+ff
+90
+06
+d6
+93
+60
+48
+90
+4e
+94
+e0
+fe
+ef
+6e
+60
+37
+90
+4e
+96
+e0
+24
+bc
+f5
+82
+e4
+34
+4d
+f5
+83
+e0
+fd
+7c
+00
+90
+4e
+95
+e0
+ff
+74
+01
+7e
+00
+a8
+07
+08
+80
+05
+c3
+33
+ce
+33
+ce
+d8
+f9
+ff
+ee
+5c
+fe
+ef
+5d
+4e
+60
+08
+90
+4e
+9d
+74
+01
+f0
+80
+08
+90
+4e
+96
+e0
+04
+f0
+80
+ad
+90
+4e
+95
+e0
+04
+f0
+21
+24
+90
+4e
+97
+e0
+ff
+60
+08
+51
+dc
+90
+4e
+9b
+e0
+2f
+f0
+90
+4e
+94
+e0
+04
+f0
+01
+f3
+90
+4e
+9b
+e0
+90
+4d
+f4
+f0
+e4
+90
+4e
+94
+f0
+90
+4e
+94
+e0
+ff
+90
+06
+d6
+93
+70
+02
+41
+b0
+74
+93
+2f
+f5
+82
+e4
+34
+4d
+f5
+83
+e0
+fe
+74
+bc
+2f
+f5
+82
+e4
+34
+4d
+f5
+83
+e0
+6e
+90
+4e
+97
+f0
+90
+4e
+94
+e0
+ff
+24
+bc
+f5
+82
+e4
+34
+4d
+f5
+83
+e0
+90
+4e
+9a
+f0
+90
+4e
+97
+e0
+70
+04
+41
+a8
+41
+a8
+90
+4e
+9d
+e0
+60
+07
+7b
+00
+7a
+00
+79
+00
+22
+74
+bc
+2f
+f5
+82
+e4
+34
+4d
+f5
+83
+e0
+fe
+74
+93
+2f
+f5
+82
+e4
+34
+4d
+f5
+83
+ee
+f0
+e4
+90
+4e
+95
+f0
+90
+4e
+95
+e0
+ff
+c3
+94
+08
+50
+5b
+90
+4e
+97
+e0
+30
+e0
+3c
+90
+4e
+94
+e0
+fe
+33
+33
+33
+54
+f8
+fe
+ef
+4e
+90
+4e
+99
+f0
+a3
+e0
+ff
+90
+4e
+99
+e0
+90
+06
+eb
+93
+fd
+12
+34
+94
+90
+4e
+9c
+ef
+f0
+90
+4e
+9a
+e0
+30
+e0
+09
+90
+4e
+9c
+e0
+ff
+71
+1a
+80
+07
+90
+4e
+9c
+e0
+ff
+71
+d3
+90
+4e
+97
+e0
+ff
+c3
+13
+f0
+90
+4e
+9a
+e0
+ff
+c3
+13
+f0
+90
+4e
+95
+e0
+04
+f0
+80
+9b
+90
+4e
+98
+74
+01
+f0
+90
+4e
+94
+e0
+04
+f0
+21
+cd
+90
+4e
+57
+e0
+b4
+03
+0a
+90
+4d
+ee
+e0
+b4
+01
+03
+74
+02
+f0
+90
+4e
+98
+e0
+70
+07
+90
+4d
+ee
+e0
+b4
+02
+07
+7b
+01
+7a
+4e
+79
+b0
+22
+7b
+00
+7a
+00
+79
+00
+22
+e4
+fe
+ef
+60
+06
+14
+5f
+ff
+0e
+80
+f7
+af
+06
+22
+90
+4f
+01
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+e4
+ff
+ef
+c3
+9d
+50
+1b
+90
+4f
+01
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+8f
+82
+75
+83
+00
+12
+03
+cf
+60
+03
+7f
+00
+22
+0f
+80
+e0
+7f
+01
+22
+e4
+fe
+fd
+f9
+fc
+ef
+c3
+94
+e0
+40
+20
+ef
+d3
+94
+e7
+50
+1a
+90
+4e
+b0
+e0
+fe
+ef
+54
+07
+ff
+74
+01
+a8
+07
+08
+80
+02
+c3
+33
+d8
+fc
+4e
+90
+4e
+b0
+f0
+22
+e4
+fe
+74
+b1
+2e
+f5
+82
+e4
+34
+4e
+f5
+83
+e0
+60
+01
+0d
+0e
+ee
+b4
+06
+ed
+e4
+fe
+74
+b1
+2e
+f5
+82
+e4
+34
+4e
+f5
+83
+e0
+b5
+07
+08
+ed
+b4
+06
+04
+79
+01
+80
+27
+74
+b1
+2e
+f5
+82
+e4
+34
+4e
+f5
+83
+e0
+70
+15
+90
+4d
+fc
+e0
+6f
+60
+13
+74
+b1
+2e
+f5
+82
+e4
+34
+4e
+f5
+83
+ef
+f0
+80
+05
+0e
+ee
+b4
+06
+c3
+ed
+64
+06
+70
+34
+e9
+70
+31
+ef
+d3
+94
+70
+50
+2b
+ef
+13
+13
+13
+54
+1f
+fc
+24
+d4
+f5
+82
+e4
+34
+4d
+f5
+83
+c0
+83
+c0
+82
+e0
+fe
+ef
+54
+07
+ff
+74
+01
+a8
+07
+08
+80
+02
+c3
+33
+d8
+fc
+4e
+d0
+82
+d0
+83
+f0
+22
+e4
+fe
+90
+4f
+1c
+f0
+fd
+fc
+ef
+54
+f0
+64
+f0
+60
+07
+ef
+54
+d0
+fb
+bb
+d0
+0c
+90
+4e
+57
+e0
+b4
+02
+0b
+74
+03
+f0
+80
+06
+90
+4d
+ee
+74
+01
+f0
+ef
+c3
+94
+e0
+40
+21
+ef
+d3
+94
+e7
+50
+1b
+90
+4e
+b0
+e0
+fe
+ef
+54
+07
+ff
+74
+01
+a8
+07
+08
+80
+02
+c3
+33
+d8
+fc
+f4
+5e
+90
+4e
+b0
+f0
+22
+e4
+fe
+ec
+70
+21
+74
+b1
+2e
+f5
+82
+e4
+34
+4e
+f5
+83
+e0
+6f
+70
+47
+ee
+b4
+05
+0b
+24
+b1
+f5
+82
+e4
+34
+4e
+f5
+83
+e4
+f0
+7c
+01
+80
+34
+74
+b1
+2e
+f5
+82
+e4
+34
+4e
+f5
+83
+e0
+fb
+74
+b0
+2e
+f5
+82
+e4
+34
+4e
+f5
+83
+eb
+f0
+74
+b1
+2e
+f5
+82
+e4
+34
+4e
+f5
+83
+e0
+60
+14
+ee
+b4
+05
+0b
+24
+b1
+f5
+82
+e4
+34
+4e
+f5
+83
+e4
+f0
+0e
+ee
+b4
+06
+a3
+ef
+d3
+94
+70
+50
+2c
+ef
+13
+13
+13
+54
+1f
+fd
+24
+d4
+f5
+82
+e4
+34
+4d
+f5
+83
+c0
+83
+c0
+82
+e0
+fe
+ef
+54
+07
+ff
+74
+01
+a8
+07
+08
+80
+02
+c3
+33
+d8
+fc
+f4
+5e
+d0
+82
+d0
+83
+f0
+22
+e4
+ff
+90
+4e
+fe
+f0
+fe
+fd
+a3
+f0
+a3
+f0
+ef
+90
+06
+d6
+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
+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
+e4
+34
+80
+f5
+83
+e0
+5b
+f0
+90
+81
+1c
+e0
+f4
+fc
+74
+bc
+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
+81
+c0
+e4
+ff
+ef
+90
+06
+d6
+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
+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
+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
+a1
+45
+e4
+ff
+ef
+90
+06
+d6
+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
+82
+d0
+83
+f0
+0f
+80
+b9
+22
+ad
+07
+ac
+06
+90
+4e
+57
+e0
+64
+02
+60
+0e
+74
+01
+f0
+90
+4e
+58
+04
+f0
+ef
+a3
+f0
+ee
+a3
+f0
+22
+90
+4e
+e5
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+e4
+a3
+f0
+f0
+90
+4e
+e8
+e0
+ff
+c3
+94
+06
+40
+03
+02
+30
+dc
+90
+4e
+e5
+e0
+fb
+a3
+e0
+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
+30
+d3
+12
+03
+b6
+fb
+b4
+f1
+09
+7f
+83
+7e
+01
+d1
+12
+02
+30
+a8
+eb
+b4
+f2
+09
+7f
+cd
+7e
+00
+d1
+12
+02
+30
+a8
+90
+4e
+e5
+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
+07
+7f
+b7
+d1
+12
+02
+30
+a8
+eb
+b4
+f4
+09
+7f
+b6
+7e
+00
+d1
+12
+02
+30
+a8
+90
+4e
+e5
+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
+f5
+07
+7f
+b5
+d1
+12
+02
+30
+a8
+eb
+b4
+f6
+09
+7f
+ea
+7e
+00
+d1
+12
+02
+30
+a8
+90
+4e
+e5
+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
+07
+7f
+e9
+d1
+12
+02
+30
+a8
+eb
+b4
+f8
+09
+7f
+e2
+7e
+00
+d1
+12
+02
+30
+a8
+90
+4e
+e5
+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
+d1
+12
+02
+30
+a8
+eb
+b4
+fa
+09
+7f
+8a
+7e
+01
+d1
+12
+02
+30
+a8
+90
+4e
+e5
+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
+d1
+12
+02
+30
+a8
+eb
+b4
+d0
+09
+7f
+2a
+7e
+02
+d1
+12
+02
+30
+a8
+90
+4e
+e5
+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
+d1
+12
+02
+30
+a8
+eb
+b4
+d3
+09
+7f
+26
+7e
+02
+d1
+12
+02
+30
+a8
+90
+4e
+e5
+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
+d2
+09
+7f
+24
+7e
+02
+d1
+12
+02
+30
+a8
+eb
+b4
+d4
+09
+7f
+27
+7e
+02
+12
+2e
+12
+01
+a8
+90
+4e
+e5
+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
+d5
+09
+7f
+21
+7e
+02
+12
+2e
+12
+80
+7b
+eb
+b4
+d6
+09
+7f
+23
+7e
+02
+12
+2e
+12
+80
+6e
+90
+4e
+e5
+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
+d7
+07
+7f
+70
+12
+2e
+12
+80
+47
+eb
+b4
+d8
+09
+7f
+6f
+7e
+00
+12
+2e
+12
+80
+3a
+90
+4e
+e5
+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
+fe
+b4
+dd
+06
+7f
+01
+11
+dd
+80
+14
+ee
+b4
+de
+06
+7f
+02
+11
+dd
+80
+0a
+12
+03
+b6
+b4
+df
+04
+7f
+04
+11
+dd
+90
+4e
+57
+e0
+b4
+02
+24
+90
+4e
+e5
+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
+90
+4d
+fc
+f0
+e4
+12
+03
+fc
+90
+4e
+e8
+e0
+04
+f0
+02
+2e
+3c
+22
+90
+4e
+57
+e0
+64
+02
+60
+12
+74
+04
+f0
+90
+4d
+f8
+74
+01
+f0
+90
+4e
+58
+74
+03
+f0
+a3
+ef
+f0
+22
+90
+4e
+f5
+e4
+f0
+a3
+f0
+a3
+f0
+12
+28
+90
+90
+4e
+f5
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+4a
+70
+02
+61
+6a
+90
+4e
+f5
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+90
+00
+01
+12
+03
+cf
+ff
+70
+02
+61
+6a
+64
+28
+60
+05
+ef
+64
+58
+70
+32
+90
+4c
+a7
+e0
+b4
+02
+10
+7f
+29
+12
+08
+b3
+90
+4c
+a7
+74
+03
+f0
+e4
+90
+4d
+e6
+f0
+90
+4c
+a9
+e0
+64
+02
+60
+02
+61
+6a
+90
+42
+5e
+04
+f0
+7f
+0a
+12
+08
+b3
+90
+4c
+a9
+74
+03
+f0
+22
+90
+4e
+f5
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+90
+00
+01
+12
+03
+cf
+ff
+d3
+94
+62
+40
+02
+41
+36
+ef
+c3
+94
+59
+50
+02
+41
+36
+ef
+b4
+62
+38
+90
+05
+4f
+e0
+ff
+04
+f0
+74
+50
+2f
+f5
+82
+e4
+34
+05
+f5
+83
+74
+30
+f0
+90
+4d
+18
+e0
+fc
+a3
+e0
+fd
+a3
+e0
+fe
+a3
+e0
+ff
+e4
+7b
+0a
+fa
+f9
+f8
+12
+04
+8f
+90
+4d
+18
+12
+05
+cb
+90
+4d
+e6
+e0
+04
+f0
+22
+90
+4e
+f5
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+90
+00
+01
+12
+03
+cf
+24
+d8
+ff
+90
+05
+4f
+e0
+fe
+04
+f0
+74
+50
+2e
+f5
+82
+e4
+34
+05
+f5
+83
+ef
+f0
+90
+00
+01
+12
+03
+cf
+24
+a8
+ff
+e4
+34
+ff
+fe
+e4
+fc
+fd
+c0
+04
+c0
+05
+c0
+06
+c0
+07
+7f
+0a
+fe
+90
+4d
+18
+e0
+f8
+a3
+e0
+f9
+a3
+e0
+fa
+a3
+e0
+fb
+12
+04
+8f
+d0
+03
+d0
+02
+d0
+01
+d0
+00
+ef
+2b
+ff
+ee
+3a
+fe
+ed
+39
+fd
+ec
+38
+fc
+90
+4d
+18
+12
+05
+cb
+90
+4d
+e6
+e0
+04
+f0
+22
+90
+4e
+f5
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+90
+00
+01
+12
+03
+cf
+ff
+d3
+94
+27
+40
+02
+61
+07
+ef
+c3
+94
+1e
+50
+02
+61
+07
+ef
+b4
+27
+38
+90
+05
+4f
+e0
+ff
+04
+f0
+74
+50
+2f
+f5
+82
+e4
+34
+05
+f5
+83
+74
+30
+f0
+90
+4d
+18
+e0
+fc
+a3
+e0
+fd
+a3
+e0
+fe
+a3
+e0
+ff
+e4
+7b
+0a
+fa
+f9
+f8
+12
+04
+8f
+90
+4d
+18
+12
+05
+cb
+90
+4d
+e6
+e0
+04
+f0
+22
+90
+4e
+f5
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+90
+00
+01
+12
+03
+cf
+24
+13
+ff
+90
+05
+4f
+e0
+fe
+04
+f0
+74
+50
+2e
+f5
+82
+e4
+34
+05
+f5
+83
+ef
+f0
+90
+00
+01
+12
+03
+cf
+24
+e3
+ff
+e4
+34
+ff
+fe
+e4
+fc
+fd
+c0
+04
+c0
+05
+c0
+06
+c0
+07
+7f
+0a
+fe
+90
+4d
+18
+e0
+f8
+a3
+e0
+f9
+a3
+e0
+fa
+a3
+e0
+fb
+12
+04
+8f
+d0
+03
+d0
+02
+d0
+01
+d0
+00
+ef
+2b
+ff
+ee
+3a
+fe
+ed
+39
+fd
+ec
+38
+fc
+90
+4d
+18
+12
+05
+cb
+90
+4d
+e6
+e0
+04
+f0
+22
+90
+4e
+f5
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+90
+00
+01
+12
+03
+cf
+64
+2a
+70
+40
+90
+05
+4f
+e0
+60
+10
+e0
+ff
+14
+f0
+74
+50
+2f
+f5
+82
+e4
+34
+05
+f5
+83
+e4
+f0
+90
+4d
+e6
+e0
+60
+32
+90
+4d
+18
+e0
+fc
+a3
+e0
+fd
+a3
+e0
+fe
+a3
+e0
+ff
+e4
+7b
+0a
+fa
+f9
+f8
+12
+05
+1a
+90
+4d
+18
+12
+05
+cb
+90
+4d
+e6
+e0
+14
+f0
+22
+90
+4e
+f5
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+12
+11
+0b
+22
+90
+4e
+d6
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+e4
+a3
+f0
+a3
+f0
+90
+4d
+f1
+e0
+64
+01
+60
+02
+81
+62
+90
+4e
+da
+74
+05
+f0
+90
+4e
+da
+e0
+ff
+14
+f0
+ef
+70
+02
+81
+6c
+90
+4e
+d6
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+24
+01
+f9
+e4
+3a
+fa
+90
+4e
+da
+e0
+7e
+00
+29
+f9
+ee
+3a
+fa
+12
+03
+b6
+90
+4e
+d9
+f0
+c3
+94
+1e
+50
+02
+81
+59
+e0
+ff
+d3
+94
+20
+40
+02
+81
+59
+ef
+24
+e1
+60
+09
+14
+60
+3e
+24
+02
+60
+02
+81
+56
+90
+4c
+c9
+74
+0a
+f0
+90
+4c
+ad
+e0
+44
+08
+f0
+54
+ef
+f0
+90
+4e
+d9
+e0
+24
+e4
+ff
+90
+4c
+a2
+e0
+b5
+07
+08
+90
+4c
+a4
+e0
+64
+03
+70
+59
+90
+4c
+a2
+ef
+f0
+90
+4c
+ab
+74
+01
+f0
+e4
+90
+4c
+c4
+f0
+80
+47
+90
+4c
+c9
+74
+0a
+f0
+90
+4c
+ad
+e0
+54
+f7
+f0
+44
+10
+f0
+90
+4c
+a2
+e0
+ff
+60
+30
+64
+fe
+60
+2c
+90
+4c
+ad
+e0
+54
+f7
+f0
+e4
+90
+4c
+a2
+f0
+7f
+0d
+12
+09
+70
+90
+4c
+ca
+74
+01
+f0
+90
+4c
+a2
+e0
+90
+4c
+9f
+f0
+90
+4c
+a1
+74
+01
+f0
+90
+4c
+9e
+f0
+12
+0f
+d9
+7f
+01
+22
+90
+4c
+ad
+e0
+54
+e7
+f0
+61
+8b
+90
+4c
+ad
+e0
+54
+e7
+f0
+54
+df
+f0
+7f
+00
+22
+90
+4c
+d4
+ed
+f0
+a3
+eb
+f0
+ef
+30
+e0
+12
+90
+4c
+d3
+e0
+b4
+03
+04
+74
+02
+f0
+22
+90
+4c
+d3
+74
+01
+f0
+22
+90
+4c
+d3
+74
+04
+f0
+22
+90
+4e
+fc
+ed
+f0
+90
+4e
+fb
+ef
+f0
+e4
+90
+4e
+fd
+f0
+ef
+30
+e0
+05
+e4
+90
+4c
+d7
+f0
+90
+4e
+fc
+e0
+ff
+a3
+f0
+90
+4d
+f1
+e0
+64
+01
+60
+02
+c1
+6f
+ef
+64
+14
+60
+12
+90
+4e
+fc
+e0
+64
+1a
+60
+0a
+ef
+64
+08
+60
+05
+ef
+64
+16
+70
+3a
+90
+4e
+fc
+e0
+ff
+b4
+14
+08
+90
+4c
+a0
+74
+01
+f0
+80
+15
+ef
+b4
+08
+08
+90
+4c
+a0
+74
+02
+f0
+80
+09
+ef
+b4
+16
+05
+e4
+90
+4c
+a0
+f0
+e4
+90
+4e
+fd
+f0
+7b
+01
+7a
+4c
+79
+a0
+7d
+01
+fc
+7f
+c0
+7e
+7f
+12
+1e
+20
+90
+4e
+fc
+e0
+12
+06
+08
+36
+2f
+2a
+35
+b2
+2d
+35
+9c
+2e
+35
+cc
+36
+35
+e6
+37
+35
+4c
+3a
+35
+54
+3b
+35
+5c
+3c
+35
+64
+3d
+35
+6c
+3e
+35
+74
+3f
+35
+7c
+40
+35
+84
+41
+35
+8c
+42
+35
+94
+43
+36
+5a
+47
+36
+00
+65
+00
+00
+36
+6f
+90
+4e
+fd
+74
+f1
+f0
+c1
+6f
+90
+4e
+fd
+74
+f6
+f0
+c1
+6f
+90
+4e
+fd
+74
+f7
+f0
+c1
+6f
+90
+4e
+fd
+74
+f8
+f0
+c1
+6f
+90
+4e
+fd
+74
+f3
+f0
+c1
+6f
+90
+4e
+fd
+74
+f4
+f0
+c1
+6f
+90
+4e
+fd
+74
+f2
+f0
+c1
+6f
+90
+4e
+fd
+74
+f5
+f0
+c1
+6f
+90
+4e
+fd
+74
+fa
+f0
+c1
+6f
+90
+4e
+fd
+74
+d6
+f0
+c1
+6f
+90
+4e
+fb
+e0
+30
+e0
+08
+90
+4c
+e7
+e0
+60
+02
+14
+f0
+e4
+90
+4e
+fd
+f0
+c1
+6f
+90
+4e
+fb
+e0
+30
+e0
+0c
+90
+4c
+e7
+e0
+c3
+94
+04
+50
+03
+e0
+04
+f0
+e4
+90
+4e
+fd
+f0
+c1
+6f
+90
+4e
+fb
+e0
+30
+e0
+0c
+90
+4c
+e3
+e0
+d3
+94
+01
+40
+03
+e0
+14
+f0
+e4
+90
+4e
+fd
+f0
+c1
+6f
+90
+4e
+fb
+e0
+30
+e0
+0c
+90
+4c
+e3
+e0
+c3
+94
+05
+50
+03
+e0
+04
+f0
+e4
+90
+4e
+fd
+f0
+80
+6f
+90
+4e
+fb
+e0
+30
+e0
+21
+90
+4c
+f8
+e0
+ff
+70
+0b
+e0
+04
+f0
+90
+4c
+e2
+74
+01
+f0
+80
+0f
+ef
+b4
+01
+0b
+90
+4c
+e2
+74
+03
+f0
+e4
+90
+4c
+f8
+f0
+e4
+90
+4e
+fd
+f0
+80
+40
+90
+4e
+fb
+e0
+30
+e0
+1d
+90
+4c
+e2
+74
+02
+f0
+90
+4c
+f7
+e0
+d3
+94
+06
+50
+03
+e0
+04
+f0
+90
+4c
+f7
+e0
+d3
+94
+06
+40
+02
+e4
+f0
+e4
+90
+4e
+fd
+f0
+80
+15
+90
+4e
+fb
+e0
+30
+e0
+09
+e4
+90
+4c
+e2
+f0
+90
+4c
+f8
+f0
+e4
+90
+4e
+fd
+f0
+90
+4c
+df
+e0
+60
+17
+90
+4e
+fd
+e0
+ff
+64
+65
+60
+09
+ef
+64
+e3
+60
+04
+ef
+b4
+e7
+05
+e4
+90
+4e
+fd
+f0
+90
+4e
+fd
+e0
+ff
+22
+e4
+90
+4f
+1d
+f0
+f0
+90
+4f
+1d
+e0
+ff
+c3
+94
+08
+50
+0c
+c2
+05
+d1
+af
+90
+4f
+1d
+e0
+04
+f0
+80
+ea
+22
+ac
+07
+ec
+f4
+60
+17
+af
+04
+a2
+05
+92
+03
+d1
+de
+af
+04
+a2
+05
+b3
+92
+02
+d1
+cd
+af
+04
+c2
+04
+d1
+ef
+22
+ef
+f4
+60
+0c
+7b
+01
+7a
+80
+79
+78
+a2
+02
+92
+00
+f1
+00
+22
+ef
+f4
+60
+0c
+7b
+01
+7a
+80
+79
+7c
+a2
+03
+92
+00
+f1
+00
+22
+ef
+f4
+60
+0c
+7b
+01
+7a
+80
+79
+70
+a2
+04
+92
+00
+f1
+00
+22
+90
+4f
+07
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+e4
+fe
+fd
+ef
+54
+07
+fe
+ef
+13
+13
+13
+54
+03
+fd
+30
+00
+22
+90
+4f
+07
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+2d
+f9
+e4
+3a
+fa
+12
+03
+b6
+ff
+74
+01
+a8
+06
+08
+80
+02
+c3
+33
+d8
+fc
+4f
+02
+03
+fc
+90
+4f
+07
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+2d
+f9
+e4
+3a
+fa
+12
+03
+b6
+ff
+74
+01
+a8
+06
+08
+80
+02
+c3
+33
+d8
+fc
+f4
+5f
+02
+03
+fc
+90
+4d
+2e
+e0
+ff
+90
+4d
+f3
+e0
+6f
+70
+03
+02
+38
+fc
+90
+4d
+2e
+e0
+90
+4d
+f3
+f0
+90
+4c
+b4
+e0
+60
+05
+7f
+07
+02
+0f
+9c
+90
+4c
+e2
+e0
+64
+01
+60
+03
+02
+38
+f2
+90
+4c
+eb
+e0
+ff
+60
+5d
+a3
+e0
+70
+59
+a3
+e0
+70
+55
+a3
+e0
+60
+2f
+90
+4c
+e8
+e0
+fe
+c3
+94
+55
+40
+0b
+e0
+14
+f0
+e4
+90
+4c
+ee
+f0
+02
+38
+c7
+ee
+c3
+94
+55
+40
+03
+02
+38
+c7
+ee
+94
+00
+50
+03
+02
+38
+c7
+90
+4c
+e8
+e0
+04
+f0
+02
+38
+c7
+90
+4c
+e8
+e0
+64
+05
+60
+06
+e0
+14
+f0
+02
+38
+c7
+e4
+90
+4c
+eb
+f0
+a3
+04
+f0
+e4
+a3
+f0
+a3
+04
+f0
+a3
+04
+f0
+02
+38
+c7
+ef
+70
+5c
+90
+4c
+ec
+e0
+60
+56
+a3
+e0
+70
+52
+a3
+e0
+60
+2b
+90
+4c
+e9
+e0
+ff
+c3
+94
+55
+40
+0a
+e0
+14
+f0
+e4
+90
+4c
+ee
+f0
+01
+c7
+ef
+c3
+94
+55
+40
+02
+01
+c7
+ef
+94
+00
+50
+02
+01
+c7
+90
+4c
+e9
+e0
+04
+f0
+01
+c7
+90
+4c
+e9
+e0
+64
+05
+60
+05
+e0
+14
+f0
+01
+c7
+e4
+90
+4c
+ec
+f0
+90
+4c
+eb
+f0
+90
+4c
+ed
+04
+f0
+a3
+f0
+a3
+74
+03
+f0
+80
+76
+90
+4c
+eb
+e0
+70
+53
+a3
+e0
+70
+4f
+a3
+e0
+60
+4b
+a3
+e0
+60
+27
+90
+4c
+ea
+e0
+ff
+c3
+94
+55
+40
+0a
+e0
+14
+f0
+e4
+90
+4c
+ee
+f0
+80
+50
+ef
+c3
+94
+55
+50
+4a
+ef
+94
+00
+40
+45
+90
+4c
+ea
+e0
+04
+f0
+80
+3d
+90
+4c
+ea
+e0
+64
+05
+60
+05
+e0
+14
+f0
+80
+30
+e4
+90
+4c
+ed
+f0
+90
+4c
+eb
+f0
+04
+f0
+90
+4c
+ee
+f0
+a3
+f0
+80
+1d
+90
+4c
+ee
+74
+01
+f0
+90
+4c
+eb
+f0
+e4
+a3
+f0
+a3
+f0
+90
+4c
+e8
+74
+50
+f0
+a3
+74
+55
+f0
+a3
+74
+32
+f0
+e4
+90
+41
+31
+f0
+90
+4c
+e0
+04
+f0
+90
+4c
+ef
+e0
+b4
+01
+02
+80
+23
+90
+4c
+ef
+e0
+b4
+02
+02
+80
+37
+90
+4c
+ef
+e0
+b4
+03
+02
+80
+4b
+e4
+90
+4c
+ef
+f0
+22
+90
+4c
+e7
+e0
+fd
+7f
+07
+12
+0c
+eb
+22
+7f
+03
+31
+54
+90
+4c
+e8
+e0
+ff
+90
+80
+a0
+f0
+c3
+74
+64
+9f
+90
+80
+a2
+f0
+90
+80
+85
+e0
+44
+40
+f0
+22
+7f
+05
+31
+54
+90
+4c
+e9
+e0
+ff
+90
+80
+a0
+f0
+c3
+74
+64
+9f
+90
+80
+a2
+f0
+90
+80
+85
+e0
+44
+40
+f0
+22
+7f
+06
+31
+54
+90
+4c
+ea
+e0
+ff
+90
+80
+a0
+f0
+c3
+74
+64
+9f
+90
+80
+a2
+f0
+90
+80
+85
+e0
+44
+40
+f0
+22
+90
+80
+42
+e0
+f0
+90
+80
+51
+e0
+54
+df
+f0
+90
+80
+82
+e4
+f0
+ef
+30
+e0
+04
+e0
+44
+10
+f0
+ef
+30
+e1
+07
+90
+80
+82
+e0
+44
+20
+f0
+ef
+30
+e2
+07
+90
+80
+82
+e0
+44
+40
+f0
+22
+12
+15
+04
+31
+be
+90
+4c
+ca
+74
+01
+f0
+e4
+90
+4c
+cf
+f0
+90
+4c
+fc
+74
+ff
+f0
+90
+44
+fc
+e0
+90
+4d
+d0
+f0
+90
+44
+fd
+e0
+90
+4d
+d1
+f0
+90
+44
+fe
+e0
+90
+4d
+d2
+f0
+90
+4c
+e3
+74
+05
+f0
+90
+4c
+e7
+14
+f0
+22
+90
+4c
+b2
+74
+05
+f0
+e4
+a3
+f0
+ff
+ef
+25
+e0
+24
+b5
+f5
+82
+e4
+34
+4c
+f5
+83
+74
+54
+f0
+a3
+f0
+0f
+ef
+b4
+04
+ea
+90
+4c
+71
+e0
+fe
+a3
+e0
+ff
+c3
+90
+4c
+74
+e0
+9f
+fd
+90
+4c
+73
+e0
+9e
+fc
+e4
+12
+02
+06
+7b
+7b
+7a
+14
+79
+8e
+78
+3f
+12
+00
+fb
+c0
+04
+c0
+05
+c0
+06
+c0
+07
+90
+4c
+71
+e0
+fc
+a3
+e0
+fd
+e4
+12
+02
+06
+d0
+03
+d0
+02
+d0
+01
+d0
+00
+12
+00
+0a
+12
+02
+3f
+90
+4c
+bd
+ee
+f0
+a3
+ef
+f0
+90
+4c
+71
+e0
+fe
+a3
+e0
+ff
+c3
+90
+4c
+74
+e0
+9f
+fd
+90
+4c
+73
+e0
+9e
+fc
+e4
+12
+02
+06
+7b
+b8
+7a
+1e
+79
+85
+78
+3f
+12
+00
+fb
+c0
+04
+c0
+05
+c0
+06
+c0
+07
+90
+4c
+71
+e0
+fc
+a3
+e0
+fd
+e4
+12
+02
+06
+d0
+03
+d0
+02
+d0
+01
+d0
+00
+12
+00
+0a
+12
+02
+3f
+90
+4c
+bf
+ee
+f0
+a3
+ef
+f0
+22
+90
+4f
+14
+ed
+f0
+90
+00
+01
+12
+03
+cf
+90
+4f
+15
+f0
+22
+90
+4c
+f6
+e0
+70
+11
+90
+4c
+cd
+e0
+70
+0b
+90
+4c
+b4
+e0
+64
+01
+60
+03
+12
+0d
+bd
+90
+4c
+fa
+e0
+70
+02
+a3
+e0
+60
+32
+90
+4c
+fb
+e0
+24
+ff
+f0
+90
+4c
+fa
+e0
+34
+ff
+f0
+e4
+90
+4c
+c2
+f0
+a3
+f0
+90
+4c
+fb
+e0
+30
+e0
+05
+7f
+1e
+12
+21
+eb
+90
+4c
+fa
+e0
+70
+02
+a3
+e0
+60
+02
+61
+b4
+7f
+19
+02
+08
+b3
+90
+4c
+c9
+e0
+60
+02
+14
+f0
+90
+4c
+ce
+e0
+60
+02
+14
+f0
+90
+4c
+d7
+e0
+60
+0b
+14
+f0
+e0
+70
+06
+90
+4c
+d3
+74
+06
+f0
+90
+4c
+c4
+e0
+60
+1e
+90
+4c
+cd
+e0
+60
+06
+e4
+90
+4c
+c4
+f0
+22
+90
+4c
+c4
+e0
+14
+f0
+12
+0f
+e5
+90
+4c
+c4
+e0
+70
+03
+12
+0f
+eb
+90
+4d
+eb
+e0
+70
+36
+90
+4d
+ec
+e0
+64
+01
+70
+2e
+90
+4c
+c2
+f0
+a3
+f0
+90
+4d
+ec
+f0
+90
+4e
+58
+e0
+60
+0d
+7b
+01
+7a
+4e
+79
+58
+7d
+03
+12
+13
+ea
+80
+11
+90
+48
+00
+e0
+60
+0b
+7b
+01
+7a
+48
+79
+00
+7d
+09
+12
+13
+ea
+90
+4d
+e8
+e0
+60
+09
+e0
+14
+f0
+e0
+70
+03
+12
+0f
+dc
+90
+4d
+e3
+e0
+60
+11
+e0
+14
+f0
+e0
+70
+0b
+90
+4d
+1c
+e0
+70
+05
+7f
+1b
+12
+08
+b3
+90
+4d
+f6
+e0
+60
+29
+e0
+14
+f0
+e0
+70
+23
+90
+4d
+23
+e0
+60
+02
+e4
+f0
+90
+4c
+a6
+e0
+b4
+04
+07
+90
+42
+13
+74
+0c
+f0
+22
+90
+4c
+a8
+e0
+b4
+04
+06
+90
+42
+13
+74
+3a
+f0
+22
+90
+4e
+dc
+12
+05
+d7
+00
+00
+00
+00
+90
+4c
+75
+e0
+70
+02
+a3
+e0
+70
+02
+a1
+96
+90
+4c
+75
+e0
+fe
+a3
+e0
+ff
+90
+4c
+b3
+e0
+fd
+04
+f0
+ed
+25
+e0
+24
+b5
+f5
+82
+e4
+34
+4c
+f5
+83
+ee
+f0
+a3
+ef
+f0
+90
+4c
+b3
+e0
+c3
+94
+04
+40
+02
+e4
+f0
+e4
+90
+4e
+db
+f0
+90
+4e
+dc
+e0
+f8
+a3
+e0
+f9
+a3
+e0
+fa
+a3
+e0
+fb
+90
+4e
+db
+e0
+25
+e0
+24
+b5
+f5
+82
+e4
+34
+4c
+f5
+83
+e0
+fe
+a3
+e0
+ff
+e4
+fc
+fd
+eb
+2f
+ff
+ea
+3e
+fe
+ed
+39
+fd
+ec
+38
+fc
+90
+4e
+dc
+12
+05
+cb
+90
+4e
+db
+e0
+04
+f0
+e0
+b4
+04
+bf
+90
+4e
+dc
+e0
+fc
+a3
+e0
+fd
+a3
+e0
+fe
+a3
+e0
+ff
+e4
+7b
+04
+fa
+f9
+f8
+12
+05
+1a
+90
+4e
+dc
+12
+05
+cb
+90
+4c
+bf
+e0
+fe
+a3
+e0
+ff
+e4
+fc
+fd
+90
+4e
+dc
+e0
+f8
+a3
+e0
+f9
+a3
+e0
+fa
+a3
+e0
+fb
+c3
+12
+05
+ba
+50
+32
+90
+4c
+b4
+74
+02
+f0
+90
+4c
+de
+e0
+64
+02
+70
+02
+a1
+8e
+90
+4c
+e1
+74
+01
+f0
+90
+4c
+fa
+e4
+f0
+a3
+74
+64
+f0
+7b
+01
+7a
+4c
+79
+e1
+7d
+01
+7c
+00
+7f
+c2
+7e
+7f
+12
+1e
+20
+a1
+8e
+90
+4c
+de
+e0
+b4
+02
+15
+e4
+90
+4c
+e1
+f0
+7b
+01
+7a
+4c
+79
+e1
+7d
+01
+fc
+7f
+c2
+7e
+7f
+12
+1e
+20
+90
+4c
+bd
+e0
+fe
+a3
+e0
+ff
+e4
+fc
+fd
+90
+4e
+dc
+e0
+f8
+a3
+e0
+f9
+a3
+e0
+fa
+a3
+e0
+fb
+c3
+12
+05
+ba
+50
+56
+90
+4c
+b4
+74
+01
+f0
+90
+4c
+71
+e0
+fe
+a3
+e0
+ff
+c3
+90
+4c
+74
+e0
+9f
+fd
+90
+4c
+73
+e0
+9e
+fc
+e4
+12
+02
+06
+7b
+7b
+7a
+14
+79
+8e
+78
+3f
+12
+00
+fb
+c0
+04
+c0
+05
+c0
+06
+c0
+07
+90
+4c
+71
+e0
+fc
+a3
+e0
+fd
+e4
+12
+02
+06
+d0
+03
+d0
+02
+d0
+01
+d0
+00
+12
+00
+0a
+12
+02
+3f
+90
+4c
+bd
+ee
+f0
+a3
+ef
+f0
+80
+53
+e4
+90
+4c
+b4
+f0
+90
+4c
+71
+e0
+fe
+a3
+e0
+ff
+c3
+90
+4c
+74
+e0
+9f
+fd
+90
+4c
+73
+e0
+9e
+fc
+e4
+12
+02
+06
+7b
+b8
+7a
+1e
+79
+85
+78
+3f
+12
+00
+fb
+c0
+04
+c0
+05
+c0
+06
+c0
+07
+90
+4c
+71
+e0
+fc
+a3
+e0
+fd
+e4
+12
+02
+06
+d0
+03
+d0
+02
+d0
+01
+d0
+00
+12
+00
+0a
+12
+02
+3f
+90
+4c
+bd
+ee
+f0
+a3
+ef
+f0
+90
+4c
+b4
+e0
+90
+4c
+de
+f0
+22
+90
+4e
+ed
+ee
+f0
+a3
+ef
+f0
+90
+4e
+ef
+ec
+f0
+a3
+ed
+f0
+90
+4e
+ef
+e0
+fe
+a3
+e0
+ff
+d3
+90
+4e
+ee
+e0
+9f
+90
+4e
+ed
+e0
+9e
+40
+16
+90
+4e
+ef
+e0
+fe
+a3
+e0
+ff
+90
+4e
+ee
+e0
+9f
+ff
+90
+4e
+ed
+e0
+9e
+fe
+80
+1e
+90
+4e
+ed
+e0
+fe
+a3
+e0
+ff
+c3
+90
+4e
+f0
+e0
+9f
+ff
+90
+4e
+ef
+e0
+9e
+fe
+ad
+03
+c3
+eb
+9f
+ff
+e4
+9e
+fe
+22
+90
+0b
+e7
+74
+03
+f0
+ed
+60
+03
+12
+17
+e7
+22
+90
+0b
+e7
+74
+04
+f0
+02
+17
+e7
+90
+0b
+e7
+74
+05
+f0
+02
+17
+e7
+90
+04
+46
+e0
+ff
+22
+90
+4b
+9c
+e0
+fe
+a3
+e0
+ff
+90
+4b
+9a
+e0
+b5
+06
+07
+a3
+e0
+b5
+07
+02
+d3
+22
+c3
+22
+ef
+f4
+60
+3a
+ef
+54
+07
+fe
+ef
+13
+13
+13
+54
+03
+ff
+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
+fc
+5d
+d0
+82
+d0
+83
+f0
+74
+a7
+2f
+f5
+82
+e4
+34
+00
+f5
+83
+e0
+5c
+f0
+22
+90
+4e
+b7
+ee
+f0
+a3
+ef
+f0
+90
+4e
+bb
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+90
+4e
+b9
+ec
+f0
+a3
+ed
+f0
+a3
+e0
+f9
+a3
+e0
+fa
+a3
+e0
+90
+4e
+ab
+c9
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+a3
+ec
+f0
+a3
+ed
+f0
+7b
+01
+7a
+0b
+79
+86
+f1
+08
+90
+0b
+83
+74
+a0
+f0
+90
+4e
+b7
+e0
+ff
+a3
+e0
+90
+0b
+84
+cf
+f0
+a3
+ef
+f0
+90
+4e
+ba
+e0
+24
+03
+fd
+90
+4e
+b9
+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
+90
+80
+9e
+e4
+f0
+a3
+f0
+90
+80
+90
+04
+f0
+90
+80
+06
+e0
+44
+04
+f0
+02
+1f
+d2
+90
+4e
+a8
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+90
+4e
+ae
+74
+ff
+f5
+f0
+12
+04
+79
+45
+f0
+60
+2a
+90
+4e
+ab
+e0
+fb
+a3
+e4
+75
+f0
+01
+12
+04
+79
+a9
+f0
+fa
+12
+03
+b6
+ff
+90
+4e
+a8
+e0
+fb
+a3
+e4
+75
+f0
+01
+12
+04
+79
+a9
+f0
+fa
+ef
+12
+03
+fc
+80
+c8
+22
+90
+82
+80
+74
+01
+f0
+22
+f3
+e9
+aa
+55
+40
+00
+00
+40
+69
+04
+00
+00
+80
+09
+0a
+00
+0c
+00
+11
+00
+00
+00
+00
+00
+00
+00
+35
+00
+00
+00
+4f
+02
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+09
+18
+00
+04
+c8
+00
+5c
+40
+00
+3a
+ce
+00
+00
+80
+e0
+00
+90
+00
+00
+00
+20
+00
+a0
+01
+00
+4c
+00
+00
+00
+aa
+55
+02
+00
+2c
+4d
+50
+00
+aa
+55
+01
+00
+31
+41
+01
+aa
+55
+02
+00
+13
+42
+40
+03
+aa
+55
+01
+00
+f7
+41
+0a
+aa
+55
+02
+00
+f5
+41
+10
+00
+aa
+55
+01
+00
+33
+41
+00
+aa
+55
+03
+00
+4a
+41
+40
+25
+00
+aa
+55
+06
+00
+40
+41
+36
+28
+52
+08
+66
+2a
+aa
+55
+0f
+00
+02
+47
+0e
+42
+54
+33
+2e
+30
+20
+4b
+65
+79
+62
+6f
+61
+72
+64
+aa
+55
+03
+00
+80
+42
+0e
+00
+01
+aa
+55
+01
+00
+84
+42
+01
+aa
+55
+01
+00
+47
+47
+0a
+aa
+55
+01
+00
+dc
+47
+01
+aa
+55
+01
+00
+f6
+47
+01
+aa
+55
+01
+00
+72
+41
+01
+aa
+55
+0e
+00
+5b
+47
+06
+03
+11
+00
+00
+01
+02
+10
+24
+11
+00
+12
+01
+00
+aa
+55
+01
+00
+71
+47
+00
+aa
+55
+62
+02
+11
+48
+04
+00
+11
+01
+00
+10
+02
+11
+24
+00
+01
+00
+00
+36
+01
+a2
+09
+00
+00
+0a
+00
+01
+00
+00
+09
+00
+01
+35
+03
+19
+11
+24
+09
+00
+04
+35
+0d
+35
+06
+19
+01
+00
+09
+00
+11
+35
+03
+19
+00
+11
+09
+00
+05
+35
+03
+19
+10
+02
+09
+00
+06
+35
+09
+09
+65
+6e
+09
+00
+6a
+09
+01
+00
+09
+00
+09
+35
+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
+01
+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
+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
+00
+09
+02
+01
+09
+01
+11
+09
+02
+02
+08
+40
+09
+02
+03
+08
+21
+09
+02
+04
+28
+01
+09
+02
+05
+28
+01
+09
+02
+06
+35
+91
+35
+8f
+08
+22
+25
+8b
+05
+01
+09
+06
+a1
+01
+85
+01
+75
+01
+95
+08
+05
+07
+19
+e0
+29
+e7
+15
+00
+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
+26
+ff
+00
+05
+07
+19
+00
+29
+ff
+81
+00
+c0
+05
+01
+09
+06
+a1
+01
+85
+08
+95
+70
+75
+01
+15
+00
+25
+01
+05
+07
+19
+00
+29
+ff
+81
+02
+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
+80
+a1
+01
+85
+03
+19
+81
+29
+88
+15
+00
+25
+01
+95
+08
+75
+01
+81
+06
+c0
+09
+02
+07
+35
+08
+35
+06
+09
+04
+09
+09
+01
+00
+09
+02
+0b
+09
+01
+00
+09
+02
+0c
+09
+1f
+40
+09
+02
+0d
+28
+00
+09
+02
+0e
+28
+01
+09
+02
+0f
+09
+00
+12
+09
+02
+10
+09
+00
+00
+03
+10
+02
+12
+00
+00
+01
+00
+01
+00
+01
+36
+00
+a1
+09
+00
+00
+0a
+00
+01
+00
+01
+09
+00
+01
+35
+03
+19
+12
+00
+09
+00
+04
+35
+0d
+35
+06
+19
+01
+00
+09
+00
+01
+35
+03
+19
+00
+01
+09
+00
+06
+35
+09
+09
+65
+6e
+09
+00
+6a
+09
+01
+00
+09
+00
+09
+35
+08
+35
+06
+19
+12
+00
+09
+01
+00
+09
+01
+00
+25
+2f
+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
+4b
+65
+79
+62
+6f
+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
+09
+02
+01
+09
+04
+e8
+09
+02
+02
+09
+70
+21
+09
+02
+03
+09
+00
+01
+09
+02
+04
+28
+01
+09
+02
+05
+09
+00
+02
+00
+aa
+55
+02
+00
+59
+47
+11
+48
+aa
+55
+01
+00
+32
+41
+43
+aa
+55
+01
+00
+fb
+41
+00
+aa
+55
+08
+00
+38
+41
+ff
+ff
+8f
+f8
+83
+9d
+59
+82
+aa
+55
+01
+00
+dc
+07
+00
+aa
+55
+01
+00
+a2
+00
+00
+aa
+55
+01
+00
+dd
+07
+00
+aa
+55
+01
+00
+16
+00
+27
+aa
+55
+01
+00
+fd
+47
+ff
+aa
+55
+01
+00
+f7
+47
+ff
+aa
+55
+01
+00
+6e
+41
+80
+aa
+55
+02
+00
+a2
+4b
+02
+01
+aa
+55
+f6
+01
+04
+45
+01
+00
+00
+28
+02
+01
+18
+02
+00
+03
+28
+01
+20
+03
+00
+05
+2a
+01
+00
+04
+00
+02
+29
+02
+00
+00
+05
+00
+00
+28
+02
+00
+18
+06
+00
+03
+28
+01
+02
+07
+00
+00
+2a
+08
+42
+54
+35
+2e
+30
+20
+4b
+42
+08
+00
+03
+28
+01
+02
+09
+00
+01
+2a
+02
+c1
+03
+0a
+00
+03
+28
+01
+02
+0b
+00
+04
+2a
+08
+06
+00
+06
+00
+64
+00
+2c
+01
+0c
+00
+00
+28
+02
+0a
+18
+0d
+00
+03
+28
+01
+02
+0e
+00
+29
+2a
+06
+59
+69
+43
+68
+69
+70
+0f
+00
+03
+28
+01
+02
+10
+00
+50
+2a
+07
+02
+e8
+04
+21
+70
+01
+00
+11
+00
+00
+28
+02
+12
+18
+12
+00
+03
+28
+01
+06
+13
+00
+4e
+2a
+01
+01
+14
+00
+03
+28
+01
+12
+15
+00
+4d
+2a
+08
+00
+00
+00
+00
+00
+00
+00
+00
+16
+00
+02
+29
+02
+00
+00
+17
+00
+08
+29
+02
+01
+01
+18
+00
+03
+28
+01
+12
+19
+00
+4d
+2a
+02
+00
+00
+1a
+00
+02
+29
+02
+00
+00
+1b
+00
+08
+29
+02
+03
+01
+1c
+00
+03
+28
+01
+12
+1d
+00
+4d
+2a
+02
+00
+00
+1e
+00
+02
+29
+02
+00
+00
+1f
+00
+08
+29
+02
+02
+01
+20
+00
+03
+28
+01
+0e
+21
+00
+4d
+2a
+02
+00
+00
+22
+00
+02
+29
+02
+00
+00
+23
+00
+08
+29
+02
+01
+02
+24
+00
+03
+28
+01
+12
+25
+00
+4d
+2a
+0d
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+00
+26
+00
+02
+29
+02
+00
+00
+27
+00
+08
+29
+02
+08
+01
+28
+00
+03
+28
+01
+0a
+29
+00
+4b
+2a
+8b
+05
+01
+09
+06
+a1
+01
+85
+01
+75
+01
+95
+08
+05
+07
+19
+e0
+29
+e7
+15
+00
+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
+26
+ff
+00
+05
+07
+19
+00
+29
+ff
+81
+00
+c0
+05
+01
+09
+06
+a1
+01
+85
+08
+95
+70
+75
+01
+15
+00
+25
+01
+05
+07
+19
+00
+29
+ff
+81
+02
+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
+80
+a1
+01
+85
+03
+19
+81
+29
+88
+15
+00
+25
+01
+95
+08
+75
+01
+81
+06
+c0
+2a
+00
+03
+28
+01
+02
+2b
+00
+4a
+2a
+04
+11
+01
+00
+01
+2c
+00
+03
+28
+01
+04
+2d
+00
+4c
+2a
+01
+00
+2e
+00
+00
+28
+02
+0f
+18
+2f
+00
+03
+28
+01
+12
+30
+00
+19
+2a
+01
+64
+31
+00
+02
+29
+02
+00
+00
+00
+00
+aa
+55
+01
+00
+4a
+4c
+17
+aa
+55
+01
+00
+f9
+46
+50
+aa
+55
+01
+00
+c2
+44
+14
+aa
+55
+06
+00
+f9
+44
+11
+46
+34
+54
+77
+dd
+aa
+55
+01
+00
+5e
+4c
+00
+aa
+55
+02
+00
+91
+4c
+15
+00
+aa
+55
+02
+00
+95
+4c
+19
+00
+aa
+55
+02
+00
+93
+4c
+1d
+00
+aa
+55
+02
+00
+99
+4c
+25
+00
+aa
+55
+02
+00
+97
+4c
+30
+00
+aa
+55
+01
+00
+40
+4c
+50
+aa
+55
+10
+00
+4c
+4c
+0c
+00
+05
+00
+12
+b4
+08
+00
+08
+00
+08
+00
+00
+00
+2c
+01
+aa
+55
+09
+00
+19
+44
+08
+42
+54
+35
+2e
+30
+20
+4b
+42
+aa
+55
+01
+00
+e4
+44
+07
+aa
+55
+01
+00
+dd
+44
+01
+aa
+55
+0c
+00
+d9
+43
+1f
+02
+01
+05
+03
+19
+c1
+03
+03
+03
+12
+18
+aa
+55
+07
+00
+48
+4d
+06
+ff
+06
+00
+03
+00
+80
+aa
+55
+0b
+00
+f9
+43
+1f
+09
+09
+42
+54
+35
+2e
+30
+20
+4b
+42
+aa
+55
+05
+00
+30
+4d
+20
+22
+03
+02
+20
+aa
+55
+04
+00
+71
+4c
+9f
+3e
+cd
+4d
+aa
+55
+01
+00
+6f
+4c
+02
+aa
+55
+01
+00
+e2
+4b
+02
+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
+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
+04
+00
+1d
+4d
+00
+48
+5d
+00
+aa
+55
+07
+00
+53
+4d
+ff
+ff
+ff
+ff
+e8
+fd
+00
+aa
+55
+08
+00
+16
+42
+8f
+10
+ce
+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
+78
+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
+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
+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
+72
+5f
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+ff
+cf
+2b
Index: c51/output/fw.hex
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/c51/output/fw.hex	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/c51/output/fw.hex	(working copy)
@@ -0,0 +1,1015 @@
+:100000000206340202ABE86480F8E933E833601199
+:100010000460F0ED33EC337009E8FCE9FDEAFEEB37
+:10002000FF220460DED3EB9FEA9EE99DE8C2E78CE5
+:10003000F0C2F795F0400CE8CCF8E9CDF9EACEFA39
+:10004000EBCFFB12027685D0F05804700320D5B3B5
+:10005000E80470075002B2D50202B592D5EC0460F4
+:10006000F7E4CCC0E0C398F8603B94186008400DFA
+:10007000D0E0FB02028DE4FBFAC9FC8028E830E402
+:1000800006E4C9FBE4CAFCE830E305E4C9CACBFCDA
+:10009000E854076010F8C3E913F9EA13FAEB13FB0D
+:1000A000EC13FCD8F130F52FC3E49CFCEF9BFFEE82
+:1000B0009AFEED99FDD0E0FBEF4E4D4C701222DB25
+:1000C000030202B2EC2CFCEF33FFEE33FEED33FD06
+:1000D000ED30E7EB02028DEF2BFFEE3AFEED39FD3E
+:1000E000D0E0FB50130BBB00030202B5ED13FDEE95
+:1000F00013FEEF13FFEC13FC02028DEC4D6011E8D0
+:10010000497017ED33EC3304600DE4FCFFFEFD2273
+:10011000E933E8330470F80202AB12027658046047
+:1001200009E4CC248150062850090202B528400376
+:100130000202B2C0E0EB4A7044B98006D0E0FB0294
+:1001400002A1EF4E701CBD8008EBFFEAFEE9FD80C6
+:10015000EBE98DF0A4FEE5F00201E4E9CDF9EAFE59
+:10016000EBFFEF89F0A4FCE5F0CE89F0A42EFFE4CC
+:1001700035F0CD89F0A42DFEE435F08067EF4E70A8
+:1001800005BD80D780C3EF8BF0A4ACF0EE8BF0A45C
+:100190002CFCE435F0F8EF8AF0A42CE5F038FCE410
+:1001A00033CB8DF0A42CFCE5F03BF8EE8AF0A42CC8
+:1001B000FCE5F038F8E433CF89F0A42CFCE5F03806
+:1001C000CF3400CE89F0A42FFFE5F03EFEE433C922
+:1001D0008DF0A42EFEE5F039CD8AF0A42FFFE5F0D6
+:1001E0003EFEE43DFD33D0E0FB50070BBB000F02A9
+:1001F00002B5EC2CFCEF33FFEE33FEED33FD0202D3
+:100200008D75F020800E75F010800575F0087D006A
+:100210007E007F003392D530D5031205ACEC33401D
+:1002200010EF33FFEE33FEED33FDEC33FCD5F0ED94
+:1002300022E5F0247EA2D513CC92E7CDCEFF22EDAD
+:10024000D2E7CD33EC3392D524814006E4FFFEFDA6
+:10025000FC22FCE4CFCECDCC24E0501174FF80ED25
+:10026000C3CC13CCCD13CDCE13CECF13CF0470F0AF
+:1002700030D5DE0205ACE9D2E7C933E833F892D5D0
+:10028000EDD2E7CD33EC33FC5002B2D522EC30E7AF
+:10029000100FBF000C0EBE00080DBD00040BEB607C
+:1002A00014A2D5EB13FCED92E7FD2274FFFCFDFEDA
+:1002B000FF22E480F8A2D574FF13FC7D80E480EF78
+:1002C000E709F608DFFA8046E709F208DFFA803E20
+:1002D00088828C83E709F0A3DFFA8032E309F6080D
+:1002E000DFFA8078E309F208DFFA807088828C8375
+:1002F000E309F0A3DFFA806489828A83E0A3F60829
+:10030000DFFA805889828A83E0A3F208DFFA804C02
+:1003100080D280FA80C680D4806980F280338010D9
+:1003200080A680EA809A80A880DA80E280CA803342
+:1003300089828A83ECFAE493A3C8C582C8CCC583BA
+:10034000CCF0A3C8C582C8CCC583CCDFE9DEE7808A
+:100350000D89828A83E493A3F608DFF9ECFAA9F009
+:10036000EDFB2289828A83ECFAE0A3C8C582C8CC5F
+:10037000C583CCF0A3C8C582C8CCC583CCDFEADE78
+:10038000E880DB89828A83E493A3F208DFF980CCDA
+:1003900088F0EF60010E4E60C388F0ED2402B404D3
+:1003A0000050B9F582EB2402B4040050AF2323457A
+:1003B000822390031073BB010689828A83E0225056
+:1003C00002E722BBFE02E32289828A83E49322BBF6
+:1003D000010CE58229F582E5833AF583E022500697
+:1003E000E92582F8E622BBFE06E92582F8E222E54D
+:1003F0008229F582E5833AF583E49322BB010689DD
+:10040000828A83F0225002F722BBFE01F322BC0055
+:100410000BBE0029EF8DF084FFADF022E4CCF8751F
+:10042000F008EF2FFFEE33FEEC33FCEE9DEC98402E
+:1004300005FCEE9DFE0FD5F0E9E4CEFD22EDF8F5CA
+:10044000F0EE8420D21CFEADF075F008EF2FFFED2A
+:1004500033FD4007985006D5F0F222C398FD0FD522
+:10046000F0EA22C5F0F8A3E028F0C5F0F8E582151F
+:100470008270021583E038F022A3F8E0C5F025F081
+:10048000F0E582158270021583E0C838F0E822E8B2
+:100490008FF0A4CC8BF0A42CFCE98EF0A42CFC8A69
+:1004A000F0EDA42CFCEA8EF0A4CDA8F08BF0A42DE6
+:1004B000CC3825F0FDE98FF0A42CCD35F0FCEB8E87
+:1004C000F0A4FEA9F0EB8FF0A4CFC5F02ECD39FE3D
+:1004D000E43CFCEAA42DCE35F0FDE43CFC2275F0B2
+:1004E00008758200EF2FFFEE33FECD33CDCC33CC39
+:1004F000C58233C5829BED9AEC99E58298400CF554
+:1005000082EE9BFEED9AFDEC99FC0FD5F0D6E4CE81
+:10051000FBE4CDFAE4CCF9A88222B800C1B90059B5
+:10052000BA002DEC8BF084CFCECDFCE5F0CBF97882
+:1005300018EF2FFFEE33FEED33FDEC33FCEB33FB16
+:1005400010D703994004EB99FB0FD8E5E4F9FA22A0
+:100550007818EF2FFFEE33FEED33FDEC33FCC9339B
+:10056000C910D7059BE99A4007EC9BFCE99AF90F63
+:10057000D8E0E4C9FAE4CCFB2275F010EF2FFFEECF
+:1005800033FEED33FDCC33CCC833C810D7079BEC1A
+:100590009AE899400AED9BFDEC9AFCE899F80FD592
+:1005A000F0DAE4CDFBE4CCFAE4C8F922C3E49FFF1F
+:1005B000E49EFEE49DFDE49CFC22EB9FF5F0EA9EA8
+:1005C00042F0E99D42F0E89C45F022ECF0A3EDF00A
+:1005D000A3EEF0A3EFF022A8828583F0D083D0822F
+:1005E0001205EE1205EE1205EE1205EEE473E49329
+:1005F000A3C583C5F0C583C8C582C8F0A3C583C59C
+:10060000F0C583C8C582C822D083D082F8E4937035
+:1006100012740193700DA3A393F8740193F582886B
+:1006200083E4737402936860EFA3A3A380DF8A83DB
+:100630008982E473787FE4F6D8FD7581CF02067B6A
+:100640000226EDE493A3F8E493A34003F68001F2BD
+:1006500008DFF48029E493A3F85407240CC8C333BB
+:10066000C4540F4420C8834004F456800146F6DF8A
+:10067000E4800B01020408102040809006C0E47E54
+:10068000019360BCA3FF543F30E509541FFEE4937F
+:10069000A360010ECF54C025E060A840B8E493A346
+:1006A000FAE493A3F8E493A3C8C582C8CAC583CA71
+:1006B000F0A3C8C582C8CAC583CADFE9DEE780BE29
+:1006C000524E62FF18CD000000FF20F7FF3A8B006A
+:1006D0000000FF3A7B001A08090A0B0C0D0E1819CE
+:1006E000171211100F161B1C000000486600DEE4F4
+:1006F000DFE03E142B04291D00351E1A3916641B39
+:10070000003A1F083C073D06003B201517090A194F
+:10071000052221181C0D0B101123240C300E3F361E
+:10072000872E2512400F0037654126132F333432B0
+:10073000382D27470000E200E63446892A31442854
+:100740004542435F5C592C53514C66605D5A62547C
+:100750004F49DE615E5B6355564B4E570058524819
+:10076000504A4DDFE1E5F6F7F5F4F1FA7FD1D3D247
+:10077000D4F8D500D0E7F9F3FBD6000A000000005A
+:10078000000510000000000000010100904F18EF6C
+:10079000F0904CCFE070030208B2904CCFE014F020
+:1007A000E4904DF5F0904E61F0904F18E0FF75F039
+:1007B0001EA424FDF582E4344DF583E06401706FDE
+:1007C000EF75F01EA424FEF9744D35F0FA7B017E1E
+:1007D000427F74904ED07406F01210C8904F18E00B
+:1007E00075F01EA42404F9744E35F0FA7B017E44A2
+:1007F0007F7B904ED07410F01210C8904F18E075A7
+:10080000F01EA42414F9744E35F0FA7B017E447F67
+:10081000F9904ED07406F01210C87F2B11B3904D92
+:10082000F57401F0E4904CCFF090448B04F02290EA
+:100830004F18E0FF75F01EA424FDF582E4344DF559
+:1008400083E064027046EF75F01EA424FEF9744D37
+:1008500035F0FA7B017E427F74904ED07406F01220
+:1008600010C8904F18E075F01EA42404F9744E359A
+:10087000F0FA7B017E427F62904ED07410F012102D
+:10088000C87F0311B390425E7401F022904E6174F0
+:1008900001F09044F9740FF0A3F0A3F0A3F0A3F0DB
+:1008A000A3F0904DE27401F07F2B11B390425E747F
+:1008B00001F022904EF1EFF078F27C4E7D017BFF4B
+:1008C0007A0779897E007F03120390904EF1E090C1
+:1008D0004EF4F07B017A4E79F27D03904EC5EBF039
+:1008E000A3EAF0A3E9F0A3EDF0904B9CE0FFA3E0B6
+:1008F000904EC9CFF0A3EFF0904B9AE0FEA3E0FF3B
+:10090000904B9CE0FCA3E0FD7B64123D97904EC8A9
+:10091000E0FEEFC39E40E1904EC8E0FF14F0EF60B0
+:100920003F904EC5E0FBA3E475F001120479A9F0F5
+:10093000FA1203B6FF904EC9E475F00112047985EE
+:10094000F082F583EFF0904EC9E0FEA3E0FFBE4BCE
+:10095000C6BF36C3904EC9744AF0A374A0F080B7E6
+:10096000904EC9E0FFA3E0904B9CCFF0A3EFF022A4
+:10097000904F1BEFF014B40D004002610D90098BF5
+:1009800075F003A4C58325F0C583730209B202097B
+:10099000B20209B2020B0D0209F9020A3A020A4236
+:1009A000020A63020A63020ACA020B0D020B0D025D
+:1009B00009F1904CA4E0FF64036004EFB4020D7FE2
+:1009C0002211B3904F1BE0904CCCF022904F1BE0D3
+:1009D00014904DE5F09042137405F0904CCFF07FE9
+:1009E0000411B37F0AF16E7F2A11B3E4904CCCF06E
+:1009F000227F0E11B37F0201B3E4904CCFF071134C
+:100A0000EF700B7152EF7006122050EF600F904F95
+:100A10001BE0904CCCF0904DFB7403F0221218C3F5
+:100A2000E4904DE3F0904DE2F0904E61F0122067BB
+:100A30007F2C11B3E4904CCCF0227113E4904CCC99
+:100A4000F0227B017A4D79FD7D5A7C0012281990A5
+:100A50004C9F74FFF0A3F0904C9E7403F0E4904C14
+:100A6000CCF022E4904CCFF07152EF6009904F1B14
+:100A7000E0904CCCF0227B017A4C79007D047C0024
+:100A80007F527E7F121ECF7F0AF16EE4904E61F09E
+:100A9000904C00E0F47021A3E0B4FF1CA3E0B4FF8D
+:100AA00017A3E0B4FF12904C00740FF0A3F0A3F072
+:100AB000A3F0904E617401F07F2111B3904CA474A7
+:100AC00002F0E4A3F0904CCCF022E4904CCFF07113
+:100AD00013EF70057152EF6009904F1BE0904CCC02
+:100AE000F022904CA4E06401601DE4904E61F07F20
+:100AF0002311B3904CA47401F0E4A3F0904CCD7496
+:100B00003CF0E4904CC8F0E4904CCCF022E4904CE3
+:100B1000CCF022904CA8E0FF64046004EFB403071B
+:100B20007F0411B37F0122904CA6E0FF64046004AF
+:100B3000EFB403077F1111B37F0122904CA4E0FFB3
+:100B400064036004EFB402077F2211B37F01227FA8
+:100B50000022904CA8E0B402077F1E11B37F01224F
+:100B6000904CA6E0B402077F0E11B37F01227F00F4
+:100B700022904CADE030E13D904CAFE0C394FA5090
+:100B800003E004F0904CAFE064B47036904DF2E0B6
+:100B900004F0E0D394025007E4904CAFF08023902F
+:100BA0004DF2E0B4031C904DEB7401F0E4904CAFB7
+:100BB000F0F1D8800DE4904DF2F0904DEBF0904CB8
+:100BC000AFF0904CADE030E436904CC9740AF09030
+:100BD0004CB0E0C394FA5003E004F0904CB0E064F1
+:100BE000067046904CA2E0FF600464FE703BE49007
+:100BF0004CACF071137F0AF16E7F0A3170802A903D
+:100C00004CACE0601FE4F07F0D3170904CCA740171
+:100C1000F0904CA2E0904C9FF0904C9E7401F0122A
+:100C20001D8AF1DCE4904CB0F0904CADE030E3462E
+:100C3000904CC9740AF0904CB1E0C394FA5003E0B0
+:100C400004F0904CB1E06406705F904CC8743CF0C6
+:100C5000E4904CCDF07F05317091ACE4904CABF05A
+:100C6000904CCA04F0904C9FE0904CA3F0904CA2A2
+:100C7000E0904C9FF022904CABE06028E4F0904C68
+:100C8000A2E0FF904C9FE06F601A904CCA7401F094
+:100C900091AC904CA2E0904C9FF0904C9E7401F06F
+:100CA0007113F1D9E4904CB1F022F19CC2067F1D82
+:100CB00091CEC2067FFF91CEC2067F1E91CEC206A4
+:100CC0007F1E91CEC2067F1E91CEC2067F1FAC074B
+:100CD000ECF46016AF04D2041236EFAF04A2069211
+:100CE00001F15CAF04C2021236CD22904EE9EFF062
+:100CF000A3EDF0904CF9EFF0ED6006904CB4E0609D
+:100D000030904CF9E0FFF19C904EE9E030E006C2F3
+:100D1000067F1591CE904EE9E030E106C2067F14C1
+:100D200091CE904EE9E020E202A1BCC2067F138082
+:100D30009D904EEAE06404702E904CF9E0FFF19C27
+:100D4000904EE9E030E006D2067F1591CE904EE954
+:100D5000E030E106D2067F1491CE904EE9E030E219
+:100D60005BD2067F1381CE904EEAE0FFB40309A365
+:100D7000E4F0A3744BF08018EFB4020B904EEBE458
+:100D8000F0A37432F08009904EEBE4F0A37419F0F4
+:100D9000E4904131F0904CE004F0904CF9E0FF1207
+:100DA0003954904EEBE0A3E0FF9080A0F0C3746450
+:100DB0009F9080A2F0908085E04440F022904CE625
+:100DC000E004F07006904CE5E004F0904CE3E0FDA8
+:100DD0007C00904CE5E0FEA3E0FF12040EED4C60B9
+:100DE00002C19C904CE2E014601114601114600286
+:100DF000C196904CE7E0FD7F0781EB023761904C94
+:100E0000F7E0700EFD7F0791EB904CE7E0FD7F016E
+:100E100091EB904CF7E0B4010FE4FD7F0791EB906C
+:100E20004CE7E0FD7F0291EB904CF7E0B4020FE459
+:100E3000FD7F0791EB904CE7E0FD7F0391EB904C39
+:100E4000F7E0B4030FE4FD7F0791EB904CE7E0FD82
+:100E50007F0491EB904CF7E0B4040FE4FD7F079121
+:100E6000EB904CE7E0FD7F0591EB904CF7E0B4058B
+:100E70000FE4FD7F0791EB904CE7E0FD7F0691EBDF
+:100E8000904CF7E0B40615E4FD7F0791EB904CE73A
+:100E9000E0FD7F0781EBE4FD7F0791EB22904DFAA7
+:100EA000E064026002E15B904CDFE06008C2067F14
+:100EB000FF91CE8006D2067FFF91CE904CC8E060B5
+:100EC00002E155904CCDE06002E155B1BD904CB4CB
+:100ED000E0B40204F1D8802E904CB4E0B401149038
+:100EE0004CD6E07021904CC17418F0904CD674012F
+:100EF000F08013904CD6E0B4010CE4F0904CC1F0BB
+:100F0000C2017F1EF15C12180DEF6043C3904CC309
+:100F1000E09414904CC2E094005028904C90E03043
+:100F2000E008D2017F1FF15C8006C2017F1FF15CE7
+:100F3000904C90E030E106D2017F1D801FC2017FFE
+:100F40001D8019C2017F1DF15CC2017F1F800DC28F
+:100F5000017F1D8007C2017F1DF15C22EFF4600D4F
+:100F60007B017A807974A201920012370022EFD3BC
+:100F700094004011E4FDFC0DBD00010CBC04F8BD63
+:100F8000A6F51F80E9227F07F19CC2067F1591CE4E
+:100F9000C2067F1491CEC2067F1381CE904CC8E06A
+:100FA0007009904CE0E0B40102E4F0908051E0441C
+:100FB00020F0E04420F0EF30E007908082E054BF62
+:100FC000F0EF30E107908082E054DFF0EF30E2078D
+:100FD000908082E054EFF02222121D8A90801074DB
+:100FE00001F080FE22D2017F1EE15CC2017F1EE182
+:100FF0005C904F11EDF0904F10EFF064017070A312
+:10100000E0FF75F01EA424FDF582E4344DF58374F1
+:1010100001F0EF75F01EA424FEF582E4344DAF829A
+:10102000FE7B017A0379D0904ED07406F011C890FF
+:101030004F11E075F01EA42404F582E4344EAF8213
+:10104000FE7B017A44797B904ED07410F011C890E9
+:101050004F11E075F01EA42414F582E4344EAF82E3
+:10106000FE7B017A4479F9904ED07406F080599055
+:101070004F10E064027050A3E0FF75F01EA424FD41
+:10108000F582E4344DF5837402F0EF75F01EA4246C
+:10109000FEF582E4344DAF82FE7B017A0079409008
+:1010A0004ED07406F011C8904F11E075F01EA424C4
+:1010B00004F582E4344EAF82FE7B017A427962907D
+:1010C0004ED07410F011C822904ECBEEF0A3EFF08A
+:1010D000A3EBF0A3EAF0A3E9F0904ED0E0FF14F008
+:1010E000EF6027904ECDE0FBA3E475F00112047988
+:1010F000A9F0FA1203B6FF904ECBE475F00112048A
+:101100007985F082F583EFF080CF22904ED1EBF01D
+:10111000A3EAF0A3E9F0E4A3F0A3F0904DF1F0907E
+:101120004ED5F0904ED5E0FFC39405502C904ED193
+:10113000E0FBA3E0FAA3E02401F9E43AFA7E00E937
+:101140002FF9EE3AFA1203B6B47F06904DF174010E
+:10115000F0904ED5E004F080CA904ED1E0FBA3E0C1
+:10116000FAA3E0F912336BEF600261E9904ED1E02F
+:10117000A3E0FAA3E04A700261E9904D5AE06008EA
+:10118000E4F0904D237403F0904CA6E064046007F3
+:10119000904CA8E0B404069042137403F0904DF60E
+:1011A000740AF0E4904CC2F0A3F0904CF6F0904C2E
+:1011B000E2E06012E4904D1DF0A37448F0A37412B5
+:1011C000F0E4A3F08010E4904D1DF0A37448F0A368
+:1011D000745DF0E4A3F07B017A4879007D097C001E
+:1011E00091D87B017A4E79587D097C0091D8904C3A
+:1011F0008F7401F0904CD3E0FF6401700261E9EF5D
+:101200006404700261E9EF6402700261E9904CA429
+:10121000E064037045904ED5F0904ED5E0FFC39446
+:10122000055037904ED1E0FBA3E0FAA3E02401F98A
+:10123000E43AFA7E00E92FF9EE3AFA1203B6FF64B7
+:10124000396009EF64536004EFB44706904D23748E
+:1012500003F0904ED5E004F080BF904ED1E0FBA3A8
+:10126000E0FAA3E0F9122E2D904E57E0B40111746C
+:1012700002F0904E58F07B017A4E79587D0361EA76
+:10128000904E57E0B404117402F0904E5804F07B75
+:10129000017A4E7958FD61EA904E57E06403600B85
+:1012A000E06402702F904DF4E07029E4904E57F006
+:1012B000904DFCF0904DF8E0600AE4F0904E5874C8
+:1012C00003F08006904E587402F07B017A4E7958F4
+:1012D0007D0361EA904DF4E07031904ED1E0FBA3C4
+:1012E000E0FAA3E02401F9E43AFA7D067C0091D803
+:1012F0007B017A4D79D37D0F7C0091D8904ED1E05F
+:10130000FBA3E0FAA3E0F9E41203FC9048007401A7
+:10131000F0904ED1E0FBA3E0FAA3E0F91203B690FF
+:101320004801F0904CA4E0B4030A904D23E09048AB
+:1013300002F08005E4904802F0E4904DEEF0904E0B
+:1013400061E0706F9000011203CFB47F157E487F7B
+:1013500003E92402F9E43AFA904ED07405F011C87A
+:10136000801C7E487F03904ED1E0FBA3E0FAA3E00F
+:101370002401F9E43AFA904ED07406F011C8904E68
+:10138000D57403F0904ED5E0FFC39409504174002A
+:101390002FF582E43448F583E0B47F0F904ED5E01A
+:1013A0002400F582E43448F583E4F0904ED5E0045F
+:1013B000F080D17E487F03904ED1E0FBA3E0FAA3FA
+:1013C000E02401F9E43AFA904ED07406F011C87B9B
+:1013D000017A4879007D0971EA904DD37408F07B59
+:1013E000017A4D79D37D0F71EA22904E86EBF0A3FE
+:1013F000EAF0A3E9F0A3EDF0E4FF904E89E0FEEF00
+:10140000C39E5023904E86E0FBA3E0FAA3E0F98F41
+:10141000827583001203CFFE748A2FF582E4344E66
+:10142000F583EEF00F80D312182AEF700281D79067
+:101430004CCAE0600281D7904CA8E0B4040E7B0156
+:101440007A4E798A904E89E0FD123DF1904CA6E0EB
+:10145000FF6404600AEFB40314904DE2E0600E7B79
+:10146000017A4E798A904E89E0FD123E07904CA495
+:10147000E064037062904E8AE0640170237404F0AB
+:10148000A3E07014904E8DE0700EA3E0700AA3E00C
+:101490007006904DECF08032904DEC7401F0802A93
+:1014A000904E8AE0B402197405F0A3E0700AA3E03C
+:1014B0007006904DECF08012904DEC7401F0800AB3
+:1014C000904E8AE0B403037407F07B017A4E798A68
+:1014D000904E89E0FDF1E122904F0AEBF0A3EAF093
+:1014E000A3E9F0ED1DAE0470011C4E6016904F0A8A
+:1014F000E0FBA3E475F001120479A9F0FAE4120309
+:10150000FC80E0227B017A4C799E7D5F7C0091D843
+:101510007B017A4D79937D147C0091D87B017A4DC3
+:1015200079A87D147C0091D87B017A4D79BC7D141B
+:101530007C0091D87B017A4879007D097C0091D8A4
+:101540007B017A4E79587D097C0091D8E4904DF664
+:10155000F0904DFBF0904DE8F0904DF0F0904DED97
+:10156000F0904DFAF0904DECF0904DE4F0904DF588
+:10157000F0904DF2F0904E57F0904DEBF0904DEE14
+:10158000F0904DF1F0904DF9F0904DE7F0904DFC5A
+:10159000F0904C9074F0F0904DEFF0E4904D17F017
+:1015A000904DE3F022904F12EFF0A3EDF07B017A23
+:1015B0004879007D097C0091D89048007401F0A31F
+:1015C000E0FF904F12E0FEEF4E904801F0904F1375
+:1015D000E0904803F07B017A4879007D0961EA9048
+:1015E0004CA7E064026007904CA9E0B4020302300B
+:1015F000F8904CD3E0FF600864036004EFB4050288
+:101600008072904CD3E0B4010EA3E0FFE4FDB1A5DD
+:10161000904CD37402F022904CD3E0B4020B7403CC
+:10162000F0A3E0FFA3E0FDA1A5904CD3E0B4042714
+:10163000E4904CD5F0904CD4E0FFE4FDB1A5E490EB
+:101640004CD4F0904CD7E07007904CD37406F02245
+:10165000904CD37405F022904CD3E0B40615E4907E
+:101660004CD5F0904CD4F0A3E0FDE4FFB1A5E4909C
+:101670004CD3F022904EF8E4F0A3F0A3F0123E1603
+:101680005025122890904EF8EBF0A3EAF0A3E9F071
+:101690004A7007904C8F04F0800E904EF8E0FBA348
+:1016A000E0FAA3E0F9310B22904D23E06035904D34
+:1016B000ECE0702F904CA4E0B403287B017A4879C9
+:1016C000007D097C0091D8E4904E57F090480004CA
+:1016D000F0904D23E0904802F07B017A4879007D3C
+:1016E0000971EA22904DEAE0600BE014F0E0700529
+:1016F000904DE904F0904CA8E064046007904CA67B
+:10170000E0B40429904CC2E0B40208A3E0B4D003D2
+:10171000120CAC904CC2E064047004A3E064B060AE
+:1017200002E1A5120B13904CCB7401F022904CA453
+:10173000E064037039904CC3E0541F6410701E7B4A
+:10174000017A4879007D09FC91D8E4904E57F090D9
+:10175000480004F0FB7A4879007D0971EAC3904C97
+:10176000C3E094B0904CC2E0940440398038904C6F
+:10177000A4E0B40111C3904CC3E0943C904CC2E08F
+:10178000940040218020C3904CC3E09414904CC23C
+:10179000E094004010904DF5E06007E4F07F0E12F9
+:1017A00008B3120FD822904CF67401F0E4904CC5A7
+:1017B000F0A3F0A3F0904C9074F0F0904DEFF0E4B3
+:1017C000904CE2F0904CD6F0904CC1F0904BEF74FE
+:1017D000FFF0904D1DF0A3F0A3F0A3F07F07020CE3
+:1017E000AA900BE77406F0904F21EDF0E0FD900B0E
+:1017F000E8F07E0B7FE9904ED0EDF011C87B017AC6
+:101800000B79E7904F21E02402FD0208DB904CA801
+:10181000E06404600F904CA6E064046007904CA460
+:10182000E0B403037F01227F0022E4904F19F0907F
+:101830004CA7E064026007904CA9E0B40206904F08
+:1018400019E0FF229047F4E05440FEA3E05408FF63
+:10185000BE4009BF0806904F19E0FF22904CCDE032
+:101860006006904F19E0FF22904CA8E07045904C24
+:10187000A6E0703F904CA4E064036037904CCEE04B
+:10188000703B740AF0A3E07034904DFAE06402708B
+:101890002C904CA2E0FFC39401400BEFD394035073
+:1018A0000512097080177F09120970904F19740191
+:1018B000F0800AE4904CCAF0904F1904F0904F1950
+:1018C000E0FF22E4904CCFF0904DF5F022904F20B5
+:1018D000EFF01206081AFA011BF3021BE4041B1CAA
+:1018E000061BAC0A1BE4131C95141D42151A1A277B
+:1018F0001D09291BA22A19182F1A10301A51311A42
+:10190000BC321918331CE4341D23351A49371A1A0E
+:10191000391A513C00001D89F1B81239847B017AD3
+:101920004C79E17D017C007FC27E7FD1CF904CE17C
+:10193000E0B40137904C75E07002A3E07004F17FD1
+:1019400080F2904CBFE0FEA3E0FFC3904C76E09F96
+:10195000904C75E09E5014904CB47402F0E4904C9E
+:10196000C4F0904CFAF0A37464F0227B017A4C79B5
+:101970009F7D017C007FBD7E7FD1CF904C9FE0D3C7
+:1019800094034002E4F0904C9FE0904CA2F0120FC0
+:10199000E57F0A120F6E7B017A4C79D17D027C00C3
+:1019A0007FBE7E7FD1CF904CD1E0B4FF19A3E0B4CD
+:1019B000FF14904C73E0A3E0904CD1F0904C71E098
+:1019C000A3E0904CD2F07B017A4C79A07D017C00A1
+:1019D0007FC07E7FD1CF7F0A120F6E904CA0E0D3E4
+:1019E00094024011E4F07B017A4C79A07D01FC7FE8
+:1019F000C07E7FD120904DFA7402F0904C9FE0D3CE
+:101A000094024002E4F0904C9FE0904CA2F0E1DAA6
+:101A1000F1BFF18DE4904CF6F022904CA2E0D3940B
+:101A2000005002A189E094044002A189E075F01EF3
+:101A3000A424DFF9744D35F0FA7B017D1E7C001281
+:101A40002819904C9E7403F022904DE5E0FF0207A8
+:101A50008C904CA47403F0E4A3F011C3E4904CCD3B
+:101A6000F0904CCAF0904C9F74FEF0904CA2F0E4C1
+:101A7000904CF8F0904D237403F0904DF6740AF0FA
+:101A8000904F20E06431702B904E61F0904CC47404
+:101A90001EF0904BEBE0B40F12A3E0B40F0DA3E0E7
+:101AA000B40F08A3E0640F7002A189904C9E7402E9
+:101AB000F0A18A904CC4E06002A18922E4904CA479
+:101AC000F0A3F0904CC2F0A3F0904CCA04F0904CFC
+:101AD000CCE0600A11C3904CCCE0FF020970904C3E
+:101AE000CBE0B40105E4F0020FD8904CCFE07002D7
+:101AF000A189904DE5E0FF02078C904CA87403F09B
+:101B0000A37401F0E4904CA6F0A3F09047F4E0A396
+:101B100020E702A189904DE87432F022904CA8741D
+:101B200004F0E4A3F07F0E1208B37F021208B39012
+:101B30004CA2E0904C9FF0904CC8E06021904CA0EB
+:101B4000E0FF904CA2E075F01EA424FCF582E43482
+:101B50004DF583EFF012272F904C9E7403F0E49024
+:101B60004CC2F0A3F0904CC8F0904CF8F011C3E4D4
+:101B7000904CCAF0904DE8F0904213741AF0E49043
+:101B80004DF0F0900040E07014A3E07010A3E070FE
+:101B90000CA3E07008A3E07004A3E060E67F0502F8
+:101BA00008B37F041208B37F0A020F6EE490054F5A
+:101BB000F0904DED04F0E4904DE8F09047F4E0A390
+:101BC00030E710904DF07401F090054F7404F0FF71
+:101BD0000208B3E4904CCFF0904CA97402F0904C02
+:101BE000A804F022904CA4E0B40308E4904CA8F0C0
+:101BF000A3F022904CA8E0904CAAF0E4904CA8F0FE
+:101C0000A3F0904CCA04F0E4904DE8F0904DF0E061
+:101C10006401702F904CA2E0D394004021E0940422
+:101C2000501CE075F01EA424DFF9744D35F0FA7BEA
+:101C3000017D1E7C00122819904C9E7403F0E490E4
+:101C40004DF0F0904CCBE0B40105E4F0020FD890D9
+:101C50004CCCE06004FF020970904CCFE06008902B
+:101C60004DE5E0FF02078C904CA4E064017002A1F6
+:101C700089904F20E064137002A189904CAAE0641F
+:101C80000460077F051209708003120FD8E4904C9E
+:101C9000C2F0A3F022904CA67403F0A37401F0E408
+:101CA000A3F0A3F07F0E1208B37F021208B3904C8A
+:101CB000C8E06018904CA0E0FF904CA2E075F01EC8
+:101CC000A424FCF582E4344DF583EFF0904DF5E06B
+:101CD0007006904DE37414F0E4904CC8F0904CC240
+:101CE000F0A3F022904CA67404F0E4A3F011C3E436
+:101CF000904CCAF0904DEA740AF0904CA2E0904CDF
+:101D00009FF0904C9E7403F022904CA2E014FD7F53
+:101D100001120FF1904CA2E0904C9FF0904C9E74F9
+:101D200003F022904D181205D700000000E4904DFA
+:101D3000E6F0904DED04F0904CA704F0904CA60412
+:101D4000F022904CA6E0904CAAF0E4904CA6F0A3B0
+:101D5000F0904CCA04F0E4904D1CF0904CCBE0B4F1
+:101D60000105E4F0020FD8904CCCE06004FF0209BA
+:101D700070904CCFE06008904DE5E0FF02078C12B8
+:101D80000FD8E4904CC2F0A3F022904C9EE0700279
+:101D9000C11F904CBFE0FEA3E0FFC3904C76E09FD4
+:101DA000904C75E09E4078C2017FFF120F5C904C12
+:101DB0009EE0B402227B017A4C79007D047C007F96
+:101DC000527E7FD1207B017A4C79A07D017C007FFF
+:101DD000577E7FD1208017904C9EE0B403107B018A
+:101DE0007A4D79FD7D5A7C007F607E7FD1207B011A
+:101DF0007A4C799F7D017C007FBD7E7FD1207B0165
+:101E00007A4C79D17D027C007FBE7E7FD120D201C9
+:101E10007FFF120F5C7F0A120F6EE4904C9EF0223F
+:101E2000904E9FEEF0A3EFF0A3ECF0A3EDF0A3EB48
+:101E3000F0A3EAF0A3E9F0904EA1E07002A3E070F5
+:101E400002C1CE904E9FE0FEA3E0FF440F2401FDAF
+:101E5000E43EFCC3ED9FFFEC9EFE904EA6F0A3EF88
+:101E6000F0904EA1E0FCA3E0FDD39FEC9E400A90D1
+:101E70004EA6E0FEA3E0FF8004AE04AF05904EA6A0
+:101E8000EEF0FCA3EFF0FDC3904EA2E09DF0904E6B
+:101E9000A1E09CF0904E9FE0FEA3E0FF904EA3E0F7
+:101EA000FBA3E0FAA3E0F9123E6D7F0A120F6E90D9
+:101EB0004EA6E0FEA3E0FF904EA4EE8FF012046366
+:101EC000904EA0E02FF0904E9FE03EF0C137229060
+:101ED0004EE0ECF0A3EDF0A3EBF0A3EAF0A3E9F001
+:101EE0009080987404F0A3E4F0900CAF74A0F0A379
+:101EF000EEF0A3EFF0900CB274A1F07A0C79AF7E03
+:101F00000C7FAF74AFFC740CFFECFEEF90809AEE88
+:101F1000F0A3EFF0904EE0E0FCA3E0FAECFFEAFE65
+:101F2000EF90809EEEF0A3EFF07A0B79837E0B7F2B
+:101F3000837483FC740BFFECFEEF90809CEEF0A3A7
+:101F4000EFF09080907402F090809CA3E020E7076F
+:101F5000908090E04401F0908006E04404F0F1D2DB
+:101F6000904EE2E0A3E0FAA3E0AE02FF7B017A0B21
+:101F70007983904EE0E0A3E0904ED0F00210C8E4E8
+:101F8000900B7FF0900B7EF07F01020F6E908080AF
+:101F9000E4F0A3F0A3F0123692E4904F1EF0F0901C
+:101FA0004F1EE09006D693FF600DC2051236AF902B
+:101FB0004F1EE004F080E822F1BFF18D020CAC90DE
+:101FC0008091740DF0A304F0A3F0A3F0A3F0A31488
+:101FD000F02290812CE030E5F922904DFA7402F065
+:101FE0007B017A4D79FD7D5A7C007F607E7FD1CF69
+:101FF0007F0A120F6E7B017A4C79007D047C007F92
+:10200000527E7F121ECF7F0A120F6E7B017A4C79AF
+:10201000A07D017C007F577E7F121ECF7F0A120FAA
+:102020006E904CA2E0FFD394035020EFC394014084
+:102030001AEF75F01EA424FCF582E4344DF583E01C
+:10204000904CA0F0904CA2E00209707F0802097049
+:10205000904C9FE0FF64FE6003EF70087F2212083F
+:10206000B37F01227F00227B017A4C79D17D027CF3
+:10207000007FBE7E7F121ECF904CD1E004F0A3E023
+:1020800004F0904CD1E09044FAF0904CD2E09044AF
+:10209000FBF0904DD0E09044FCF0904DD1E09044A6
+:1020A000FDF0904DD2E09044FEF022904DFBE060B8
+:1020B00045E014F0E0703F904CCCE0B40538904718
+:1020C000F4E05440FEA3E0540864087003EE64405A
+:1020D0006024E4904DE3F0904CC8743CF0E4904CE4
+:1020E000CDF0904E61F0904DE2F011677F2C120818
+:1020F000B3E4904CCCF022312A904CC3E004F07051
+:1021000006904CC2E004F051821216E4120B7111D9
+:10211000AB5107904CA9E064026007904CA7E0B473
+:102120000207E4904CC2F0A3F022904DFAE0640262
+:10213000600221EA904CC8E0604DE4904CC2F0A3EC
+:10214000F0904CDBF0904CC8E014F0E030E01C90D4
+:102150004CABE064016014904CA2E0FFD3940250B9
+:102160000AEFC3940140047F1E31EB904CC8E0702D
+:102170003F904CA3E0904CA2F0904C9FF07F0D124A
+:102180000970120FD88029904CCDE06023E4904C68
+:10219000C2F0A3F0904CCDE014F0E030E0047F1EDC
+:1021A00031EB904CCDE070087F0A120F6E120FD801
+:1021B000904CC8E07034904CCDE0702E904CC1E053
+:1021C0006023C3904CC3E09406904CC2E09400504E
+:1021D0000E904CC1E004F0E030E10F7F1E800CE473
+:1021E000904CC1F022E4904CC1F022904F24EFF0CB
+:1021F0007B017A80797451949209904F24E0FFA278
+:1022000009B39201020F5C904CC8E0604BE4904C23
+:10221000C2F0A3F0904CDBF0904CC8E014F0E0303A
+:10222000E01C904CABE064016014904CA2E0FFD342
+:102230009402500AEFC3940140047F1E31EB904C8E
+:10224000C8E07014904CA3E0904CA2F0904C9FF02A
+:102250007F0D120970120FD8904CCDE06023E490EE
+:102260004CC2F0A3F0904CCDE014F0E030E0047FDD
+:102270001E31EB904CCDE070087F0A120F6E120FEA
+:10228000D822904CB2E0600B14F0E070067405F0B8
+:10229000123BB522AD07E4904F22F0FEEF5407F059
+:1022A000EF1313135403FEF5827583001203CFFD61
+:1022B0003395E0FC904F22E0FF74017E00A80708F0
+:1022C0008005C333CE33CED8F9FFEE5CFEEF5D4E12
+:1022D00024FF227B017A81791C80B9904F23EFF093
+:1022E00051D39208904F23E0FFA208B39207EFF476
+:1022F00070026179EF5407FEEF1313135403FF309C
+:10230000074324A3F582E43400F583C083C082E050
+:10231000FD7401A806088002C333D8FCF45DD082A6
+:10232000D083F074A72FF582E43400F583C083C016
+:1023300082E0FF7401A806088002C333D8FC4FD0A6
+:1023400082D083F02274A32FF582E43400F583C099
+:1023500083C082E0FD7401A806088002C333D8FC64
+:10236000FC4DD082D083F074A72FF582E43400F5C1
+:1023700083E0FFECF4FEEF5EF022E4FF904F1FF0ED
+:10238000FEFDEF9006D6936049EF93FD13131354AF
+:102390001FFEED5407FD7401A805088002C333D861
+:1023A000FCFDEE2478FBE434808B82F583E0FCEDC9
+:1023B000F4FBEC5BF0EE2470F582E43480F583E00E
+:1023C0004DF0EE2474F582E43480F583E05BF00F89
+:1023D00080B0D1FB90811CE0904F1FF0904DEBE05E
+:1023E0006020E4FF51DB7F0151DB7F0251DB7F0383
+:1023F00051DB7F0451DB7F0551DB7F0651DB7F071B
+:1024000041DB904F1FE0FF9000A3F0EFF49000A796
+:10241000F022D1DA9181904CFAE07002A3E07003CF
+:102420001215DF121D8A120E9D904D5AE0600312A4
+:1024300017A6900B7EE014601324FE70D7717A7F8C
+:1024400007120F9C120CAC121F7F80FE904CC9E04B
+:102450007016904CCBE07010904CFAE07002A3E044
+:102460007006904CD7E06004D1EF80A8717A904C50
+:10247000F6E060057F07120CAA121F7F80968094F9
+:10248000227A0C794B904F047401F0A3740CF0A3E2
+:10249000744BF0904BA0E0FEA3E0FF904B9EE06EEB
+:1024A0007003A3E06F7002C1307E0C7F4B7D03D1BF
+:1024B0008A904F04E0FBA3E0FAA3E0F91203B6B45C
+:1024C000022B904F05E475F002120463904F04E074
+:1024D000FBA3E0FAA3E0F91203B6FF904E74E0A369
+:1024E000E0FAA3E0F5828A83120632C130904F04ED
+:1024F000E0FBA3E0FAA3E0F91203B664047059907C
+:102500004F0575F0011204637E0C7F4E904F04E07E
+:10251000FBA3E0FAA3E0F91203B614FDD18A904FB1
+:1025200004E0FBA3E0FAA3E02401F9E43AFAC002D4
+:10253000C001904F04E0A3E0FAA3E0F91203B6FD56
+:102540007C00904E77E0A3E0FAA3E0F5828A83D086
+:1025500001D002120632C130904F04E0FBA3E0FA32
+:10256000A3E0F91203B664057059904F0575F001A8
+:102570001204637E0C7F4E904F04E0FBA3E0FAA3AD
+:10258000E0F91203B614FDD18A904F04E0FBA3E0FA
+:10259000FAA3E02401F9E43AFAC002C001904F0422
+:1025A000E0A3E0FAA3E0F91203B6FD7C00904E80B0
+:1025B000E0A3E0FAA3E0F5828A83D001D0021206FC
+:1025C00032806D904F04E0FBA3E0FAA3E0F9120320
+:1025D000B664037059904F0575F0011204637E0CC8
+:1025E0007F4E904F04E0FBA3E0FAA3E0F91203B69C
+:1025F00014FDD18A904F04E0FBA3E0FAA3E024018C
+:10260000F9E43AFAC002C001904F04E0A3E0FAA353
+:10261000E0F91203B6FD7C00904E83E0A3E0FAA33C
+:10262000E0F5828A83D001D002120632800280FE59
+:10263000904BA5E0FEA3E0FF904C3EE06E7003A33C
+:10264000E06F6022904E7AE0FBA3E0FAA3E0F94A43
+:10265000603712062E904BA5E0FFA3E0904C3ECFD2
+:10266000F0A3EFF080CA904C6DE0FFA3E06F60191B
+:10267000904E7DE0FBA3E0FAA3E0F94A600B12065E
+:102680002E904C6DE0A3F080DD22904F16EEF0A36B
+:10269000EFF0A905904B9EE0FEA3E0FFAD0119ED20
+:1026A000602F0FEFAC0670010E14F5828C83E0FDF5
+:1026B000904F16E475F00112047985F082F583EDF0
+:1026C000F0AD07AC06BC4BD4BD9AD17E4B7F3680B3
+:1026D000CB904B9EEEF0A3EFF0227B017A4E796215
+:1026E00078747C4E7D017E007F12020390811290EF
+:1026F0000B7F7401F0E4900B7EF022E4FFEFFD7C91
+:10270000002478FBEC34808B82F583E0FEED2470AE
+:10271000FDEC34808D82F583E04EF4FEEF247CFDE9
+:10272000EC34808D82F583EEF00FEFB404CF22906D
+:102730004CA2E014904F1AF0E4904DEDF0904F1A37
+:10274000E0FD7F02120FF1904F1AE0FF603E904DC6
+:10275000FDE064027036EF75F01EA424FEF9744D9E
+:1027600035F0FA904EC17401F0A3EAF0A3E9F0A3AA
+:102770007406F07B017A4D79FE122846EF600D7BDE
+:10278000017A4D79FD7D1E7C00122819904F1AE0C8
+:10279000FF6401603E904E1BE064027036EF75F0FE
+:1027A0001EA424FEF9744D35F0FA904EC17401F068
+:1027B000A3EAF0A3E9F0A37406F07B017A4E791C3A
+:1027C000122846EF600D7B017A4E791B7D1E7C003E
+:1027D000122819904F1AE0FF6402603C904E39E0D5
+:1027E00064027034EF75F01EA424FEF9744D35F0C8
+:1027F000FA904EC17401F0A3EAF0A3E9F0A37406C5
+:10280000F07B017A4E793A1146EF600C7B017A4EEB
+:1028100079397D1E7C00111922904F0DEBF0A3EA4F
+:10282000F0A3E9F0ED1DAE0470011C4E6017904F4F
+:102830000DE0FBA3E475F001120479A9F0FA74FF2E
+:102840001203FC80DF22904EBEEBF0A3EAF0A3E976
+:10285000F0E4FF904EC4E0FEEFC39E5030904EC1B6
+:10286000E0FBA3E0FAA3E0F98F827583001203CFA7
+:10287000FE904EBEE0FBA3E0FAA3E0F98F827583E1
+:10288000001203CF6E60037F00220F80C67F0122FB
+:10289000E4904E94F0A3F0A3F0A3F0A3F0A3F0A370
+:1028A000F0A3F0A3F0A3F0A3F091B47A4D79A8902F
+:1028B0004EC17401F0A3744DF0A374A8F0A3741476
+:1028C000F07B017A4D79BC1146EF60167B017A4DA1
+:1028D00079BC7D1451EAEF7009904CADE04402F0F0
+:1028E000800C904CADE054FDF0E4904CAFF0E490DF
+:1028F0004E94F0904E94E0FF9006D693700221C063
+:1029000074BC2FF582E4344DF583E0904E97F0E0EF
+:10291000FF51DC904E9EEFF0C39402500221A9E4D7
+:10292000904E95F0904E95E0FFC39408507B740153
+:102930007E00A807088005C333CE33CED8F9FF90B8
+:102940004E97E0FDE4EF5D6058E4904E96F0904EB7
+:1029500096E0FF9006D6936048904E94E0FEEF6EAE
+:102960006037904E96E024BCF582E4344DF583E068
+:10297000FD7C00904E95E0FF74017E00A807088062
+:1029800005C333CE33CED8F9FFEE5CFEEF5D4E606B
+:1029900008904E9D7401F08008904E96E004F080FF
+:1029A000AD904E95E004F02124904E97E0FF600832
+:1029B00051DC904E9BE02FF0904E94E004F001F338
+:1029C000904E9BE0904DF4F0E4904E94F0904E9435
+:1029D000E0FF9006D693700241B074932FF582E425
+:1029E000344DF583E0FE74BC2FF582E4344DF5835D
+:1029F000E06E904E97F0904E94E0FF24BCF582E498
+:102A0000344DF583E0904E9AF0904E97E07004417B
+:102A1000A841A8904E9DE060077B007A00790022D3
+:102A200074BC2FF582E4344DF583E0FE74932FF5EA
+:102A300082E4344DF583EEF0E4904E95F0904E959F
+:102A4000E0FFC39408505B904E97E030E03C904E1E
+:102A500094E0FE33333354F8FEEF4E904E99F0A3DA
+:102A6000E0FF904E99E09006EB93FD123494904E67
+:102A70009CEFF0904E9AE030E009904E9CE0FF71A0
+:102A80001A8007904E9CE0FF71D3904E97E0FFC3F1
+:102A900013F0904E9AE0FFC313F0904E95E004F0CF
+:102AA000809B904E987401F0904E94E004F021CDFC
+:102AB000904E57E0B4030A904DEEE0B40103740267
+:102AC000F0904E98E07007904DEEE0B402077B0165
+:102AD0007A4E79B0227B007A00790022E4FEEF6022
+:102AE00006145FFF0E80F7AF0622904F01EBF0A3B4
+:102AF000EAF0A3E9F0E4FFEFC39D501B904F01E023
+:102B0000FBA3E0FAA3E0F98F827583001203CF6084
+:102B1000037F00220F80E07F0122E4FEFDF9FCEF3D
+:102B2000C394E04020EFD394E7501A904EB0E0FEFB
+:102B3000EF5407FF7401A807088002C333D8FC4E86
+:102B4000904EB0F022E4FE74B12EF582E4344EF5DE
+:102B500083E060010D0EEEB406EDE4FE74B12EF5D7
+:102B600082E4344EF583E0B50708EDB4060479013C
+:102B7000802774B12EF582E4344EF583E070159011
+:102B80004DFCE06F601374B12EF582E4344EF58392
+:102B9000EFF080050EEEB406C3ED64067034E97004
+:102BA00031EFD39470502BEF131313541FFC24D424
+:102BB000F582E4344DF583C083C082E0FEEF540714
+:102BC000FF7401A807088002C333D8FC4ED082D01E
+:102BD00083F022E4FE904F1CF0FDFCEF54F064F013
+:102BE0006007EF54D0FBBBD00C904E57E0B4020B03
+:102BF0007403F08006904DEE7401F0EFC394E04052
+:102C000021EFD394E7501B904EB0E0FEEF5407FF46
+:102C10007401A807088002C333D8FCF45E904EB05C
+:102C2000F022E4FEEC702174B12EF582E4344EF50E
+:102C300083E06F7047EEB4050B24B1F582E4344EA7
+:102C4000F583E4F07C01803474B12EF582E4344ED7
+:102C5000F583E0FB74B02EF582E4344EF583EBF09F
+:102C600074B12EF582E4344EF583E06014EEB405C1
+:102C70000B24B1F582E4344EF583E4F00EEEB40695
+:102C8000A3EFD39470502CEF131313541FFD24D4CF
+:102C9000F582E4344DF583C083C082E0FEEF540733
+:102CA000FF7401A807088002C333D8FCF45ED08209
+:102CB000D083F022E4FF904EFEF0FEFDA3F0A3F0DF
+:102CC000EF9006D693607CEF93FD131313541FFE11
+:102CD000ED5407FD7401A805088002C333D8FCFD3C
+:102CE000EE2478FBE434808B82F583E0FCEDF4FB8A
+:102CF000EC5BF0EE2470F582E43480F583E04DF077
+:102D0000EE2474F582E43480F583E05BF090811C5E
+:102D1000E0F4FC74BC2FF582E4344DF583ECF0EE66
+:102D20002478FBE434808B82F583E04DF0EE247050
+:102D3000FBE434808B82F583E0FCEDF4FBEC5BF08C
+:102D40000F81C0E4FFEF9006D693607CEF93FD13F4
+:102D50001313541FFEED5407FD7401A805088002EB
+:102D6000C333D8FCFDEE2478FBE434808B82F583FA
+:102D7000E0FCEDF4FBEC5BF0EE2470F582E43480D3
+:102D8000F583E04DF0EE2474F582E43480F583E0C1
+:102D90005BF090811CE0F4FC74A82FF582E4344DC4
+:102DA000F583ECF0EE2478FBE434808B82F583E04D
+:102DB0004DF0EE2470FBE434808B82F583E0FCED73
+:102DC000F4FBEC5BF00FA145E4FFEF9006D69360B7
+:102DD0004074BC2FF582E4344DF583E0FE74A82FD7
+:102DE000F582E4344DF583E06E602374BC2FF582E8
+:102DF000E4344DF583C083C082E0FE74A82FF582D1
+:102E0000E4344DF583E0FDEE5DD082D083F00F8099
+:102E1000B922AD07AC06904E57E06402600E740113
+:102E2000F0904E5804F0EFA3F0EEA3F022904EE5A0
+:102E3000EBF0A3EAF0A3E9F0E4A3F0F0904EE8E0B1
+:102E4000FFC3940640030230DC904EE5E0FBA3E0B4
+:102E5000FAA3E02401F9E43AFA7E00E92FF9EE3A08
+:102E6000FA1203B6FF54F064F0600AEF54D064D055
+:102E700060030230D31203B6FBB4F1097F837E01F5
+:102E8000D1120230A8EBB4F2097FCD7E00D112023C
+:102E900030A8904EE5E0FBA3E0FAA3E02401F9E4BA
+:102EA0003AFAA3E07E0029F9EE3AFA1203B6FBB42F
+:102EB000F3077FB7D1120230A8EBB4F4097FB67ED6
+:102EC00000D1120230A8904EE5E0FBA3E0FAA3E0A7
+:102ED0002401F9E43AFAA3E07E0029F9EE3AFA1265
+:102EE00003B6FBB4F5077FB5D1120230A8EBB4F6F8
+:102EF000097FEA7E00D1120230A8904EE5E0FBA3E4
+:102F0000E0FAA3E02401F9E43AFAA3E07E0029F90B
+:102F1000EE3AFA1203B6FBB4F7077FE9D11202309A
+:102F2000A8EBB4F8097FE27E00D1120230A8904EDF
+:102F3000E5E0FBA3E0FAA3E02401F9E43AFAA3E018
+:102F40007E0029F9EE3AFA1203B6FBB4F9087F9431
+:102F50000ED1120230A8EBB4FA097F8A7E01D11299
+:102F60000230A8904EE5E0FBA3E0FAA3E02401F9CB
+:102F7000E43AFAA3E07E0029F9EE3AFA1203B6FB2E
+:102F8000B4FB087F920ED1120230A8EBB4D0097FB7
+:102F90002A7E02D1120230A8904EE5E0FBA3E0FAAF
+:102FA000A3E02401F9E43AFAA3E07E0029F9EE3A1D
+:102FB000FA1203B6FBB4D1097F257E02D11202308A
+:102FC000A8EBB4D3097F267E02D1120230A8904E1E
+:102FD000E5E0FBA3E0FAA3E02401F9E43AFAA3E078
+:102FE0007E0029F9EE3AFA1203B6FBB4D2097F2427
+:102FF0007E02D1120230A8EBB4D4097F277E0212E0
+:103000002E1201A8904EE5E0FBA3E0FAA3E0240114
+:10301000F9E43AFAA3E07E0029F9EE3AFA1203B68F
+:10302000FBB4D5097F217E02122E12807BEBB4D631
+:10303000097F237E02122E12806E904EE5E0FBA3E4
+:10304000E0FAA3E02401F9E43AFAA3E07E0029F9CA
+:10305000EE3AFA1203B6FBB4D7077F70122E128035
+:1030600047EBB4D8097F6F7E00122E12803A904E43
+:10307000E5E0FBA3E0FAA3E02401F9E43AFAA3E0D7
+:103080007E0029F9EE3AFA1203B6FEB4DD067F019E
+:1030900011DD8014EEB4DE067F0211DD800A12031A
+:1030A000B6B4DF047F0411DD904E57E0B4022490E3
+:1030B0004EE5E0FBA3E0FAA3E02401F9E43AFAA329
+:1030C000E07E0029F9EE3AFA1203B6904DFCF0E4E6
+:1030D0001203FC904EE8E004F0022E3C22904E5782
+:1030E000E0640260127404F0904DF87401F0904EA8
+:1030F000587403F0A3EFF022904EF5E4F0A3F0A390
+:10310000F0122890904EF5EBF0A3EAF0A3E9F04A14
+:103110007002616A904EF5E0FBA3E0FAA3E0F9903B
+:1031200000011203CFFF7002616A64286005EF643A
+:10313000587032904CA7E0B402107F291208B39067
+:103140004CA77403F0E4904DE6F0904CA9E06402C3
+:103150006002616A90425E04F07F0A1208B3904CEC
+:10316000A97403F022904EF5E0FBA3E0FAA3E0F986
+:103170009000011203CFFFD3946240024136EFC3A7
+:10318000945950024136EFB4623890054FE0FF0485
+:10319000F074502FF582E43405F5837430F0904DCF
+:1031A00018E0FCA3E0FDA3E0FEA3E0FFE47B0AFA45
+:1031B000F9F812048F904D181205CB904DE6E004FB
+:1031C000F022904EF5E0FBA3E0FAA3E0F9900001B5
+:1031D0001203CF24D8FF90054FE0FE04F074502E68
+:1031E000F582E43405F583EFF09000011203CF245B
+:1031F000A8FFE434FFFEE4FCFDC004C005C006C027
+:10320000077F0AFE904D18E0F8A3E0F9A3E0FAA3C7
+:10321000E0FB12048FD003D002D001D000EF2BFFCF
+:10322000EE3AFEED39FDEC38FC904D181205CB90CE
+:103230004DE6E004F022904EF5E0FBA3E0FAA3E0B7
+:10324000F99000011203CFFFD3942740026107EFEA
+:10325000C3941E50026107EFB4273890054FE0FF7A
+:1032600004F074502FF582E43405F5837430F09047
+:103270004D18E0FCA3E0FDA3E0FEA3E0FFE47B0A21
+:10328000FAF9F812048F904D181205CB904DE6E034
+:1032900004F022904EF5E0FBA3E0FAA3E0F99000E1
+:1032A000011203CF2413FF90054FE0FE04F0745089
+:1032B0002EF582E43405F583EFF09000011203CF80
+:1032C00024E3FFE434FFFEE4FCFDC004C005C006B7
+:1032D000C0077F0AFE904D18E0F8A3E0F9A3E0FADA
+:1032E000A3E0FB12048FD003D002D001D000EF2B5B
+:1032F000FFEE3AFEED39FDEC38FC904D181205CB8F
+:10330000904DE6E004F022904EF5E0FBA3E0FAA336
+:10331000E0F99000011203CF642A704090054FE05D
+:103320006010E0FF14F074502FF582E43405F5834B
+:10333000E4F0904DE6E06032904D18E0FCA3E0FD33
+:10334000A3E0FEA3E0FFE47B0AFAF9F812051A9065
+:103350004D181205CB904DE6E014F022904EF5E0AA
+:10336000FBA3E0FAA3E0F912110B22904ED6EBF08A
+:10337000A3EAF0A3E9F0E4A3F0A3F0904DF1E06438
+:103380000160028162904EDA7405F0904EDAE0FF3F
+:1033900014F0EF7002816C904ED6E0FBA3E0FAA32C
+:1033A000E02401F9E43AFA904EDAE07E0029F9EEE1
+:1033B0003AFA1203B6904ED9F0C3941E50028159C6
+:1033C000E0FFD3942040028159EF24E160091460AA
+:1033D0003E240260028156904CC9740AF0904CADB4
+:1033E000E04408F054EFF0904ED9E024E4FF904C14
+:1033F000A2E0B50708904CA4E064037059904CA279
+:10340000EFF0904CAB7401F0E4904CC4F080479026
+:103410004CC9740AF0904CADE054F7F04410F090B1
+:103420004CA2E0FF603064FE602C904CADE054F79D
+:10343000F0E4904CA2F07F0D120970904CCA740118
+:10344000F0904CA2E0904C9FF0904CA17401F09051
+:103450004C9EF0120FD97F0122904CADE054E7F062
+:10346000618B904CADE054E7F054DFF07F00229088
+:103470004CD4EDF0A3EBF0EF30E012904CD3E0B47D
+:1034800003047402F022904CD37401F022904CD3C8
+:103490007404F022904EFCEDF0904EFBEFF0E490BF
+:1034A0004EFDF0EF30E005E4904CD7F0904EFCE09C
+:1034B000FFA3F0904DF1E064016002C16FEF64146E
+:1034C0006012904EFCE0641A600AEF64086005EF39
+:1034D0006416703A904EFCE0FFB41408904CA0744F
+:1034E00001F08015EFB40808904CA07402F0800938
+:1034F000EFB41605E4904CA0F0E4904EFDF07B0193
+:103500007A4C79A07D01FC7FC07E7F121E20904EF8
+:10351000FCE0120608362F2A35B22D359C2E35CC0C
+:103520003635E637354C3A35543B355C3C35643DF1
+:10353000356C3E35743F357C40358441358C4235A1
+:103540009443365A473600650000366F904EFD743E
+:10355000F1F0C16F904EFD74F6F0C16F904EFD74A6
+:10356000F7F0C16F904EFD74F8F0C16F904EFD748E
+:10357000F3F0C16F904EFD74F4F0C16F904EFD7486
+:10358000F2F0C16F904EFD74F5F0C16F904EFD7476
+:10359000FAF0C16F904EFD74D6F0C16F904EFBE013
+:1035A00030E008904CE7E0600214F0E4904EFDF04B
+:1035B000C16F904EFBE030E00C904CE7E0C3940408
+:1035C0005003E004F0E4904EFDF0C16F904EFBE03C
+:1035D00030E00C904CE3E0D394014003E014F0E4BD
+:1035E000904EFDF0C16F904EFBE030E00C904CE34C
+:1035F000E0C394055003E004F0E4904EFDF0806FCA
+:10360000904EFBE030E021904CF8E0FF700BE004BE
+:10361000F0904CE27401F0800FEFB4010B904CE29B
+:103620007403F0E4904CF8F0E4904EFDF08040908C
+:103630004EFBE030E01D904CE27402F0904CF7E05D
+:10364000D394065003E004F0904CF7E0D394064086
+:1036500002E4F0E4904EFDF08015904EFBE030E087
+:1036600009E4904CE2F0904CF8F0E4904EFDF090BC
+:103670004CDFE06017904EFDE0FF64656009EF6489
+:10368000E36004EFB4E705E4904EFDF0904EFDE0FA
+:10369000FF22E4904F1DF0F0904F1DE0FFC394080F
+:1036A000500CC205D1AF904F1DE004F080EA22AC6F
+:1036B00007ECF46017AF04A2059203D1DEAF04A2B9
+:1036C00005B39202D1CDAF04C204D1EF22EFF46072
+:1036D0000C7B017A807978A2029200F10022EFF44B
+:1036E000600C7B017A80797CA2039200F10022EFCA
+:1036F000F4600C7B017A807970A2049200F10022C0
+:10370000904F07EBF0A3EAF0A3E9F0E4FEFDEF54DD
+:1037100007FEEF1313135403FD300022904F07E010
+:10372000FBA3E0FAA3E02DF9E43AFA1203B6FF7422
+:1037300001A806088002C333D8FC4F0203FC904F57
+:1037400007E0FBA3E0FAA3E02DF9E43AFA1203B68E
+:10375000FF7401A806088002C333D8FCF45F02039B
+:10376000FC904D2EE0FF904DF3E06F70030238FCAB
+:10377000904D2EE0904DF3F0904CB4E060057F0743
+:10378000020F9C904CE2E0640160030238F2904C1E
+:10379000EBE0FF605DA3E07059A3E07055A3E0602B
+:1037A0002F904CE8E0FEC39455400BE014F0E490F9
+:1037B0004CEEF00238C7EEC3945540030238C7EE12
+:1037C000940050030238C7904CE8E004F00238C778
+:1037D000904CE8E064056006E014F00238C7E4901D
+:1037E0004CEBF0A304F0E4A3F0A304F0A304F00274
+:1037F00038C7EF705C904CECE06056A3E07052A3C9
+:10380000E0602B904CE9E0FFC39455400AE014F0CF
+:10381000E4904CEEF001C7EFC39455400201C7EFAE
+:103820009400500201C7904CE9E004F001C7904CAD
+:10383000E9E064056005E014F001C7E4904CECF0A9
+:10384000904CEBF0904CED04F0A3F0A37403F080E7
+:1038500076904CEBE07053A3E0704FA3E0604BA375
+:10386000E06027904CEAE0FFC39455400AE014F072
+:10387000E4904CEEF08050EFC39455504AEF940022
+:103880004045904CEAE004F0803D904CEAE064054D
+:103890006005E014F08030E4904CEDF0904CEBF0DB
+:1038A00004F0904CEEF0A3F0801D904CEE7401F00B
+:1038B000904CEBF0E4A3F0A3F0904CE87450F0A32C
+:1038C0007455F0A37432F0E4904131F0904CE00470
+:1038D000F0904CEFE0B401028023904CEFE0B40292
+:1038E000028037904CEFE0B40302804BE4904CEF41
+:1038F000F022904CE7E0FD7F07120CEB227F0331B2
+:1039000054904CE8E0FF9080A0F0C374649F9080D6
+:10391000A2F0908085E04440F0227F053154904C25
+:10392000E9E0FF9080A0F0C374649F9080A2F090C3
+:103930008085E04440F0227F063154904CEAE0FF5D
+:103940009080A0F0C374649F9080A2F0908085E086
+:103950004440F022908042E0F0908051E054DFF04B
+:10396000908082E4F0EF30E004E04410F0EF30E1CA
+:1039700007908082E04420F0EF30E207908082E000
+:103980004440F02212150431BE904CCA7401F0E498
+:10399000904CCFF0904CFC74FFF09044FCE0904DC4
+:1039A000D0F09044FDE0904DD1F09044FEE0904D79
+:1039B000D2F0904CE37405F0904CE714F022904C58
+:1039C000B27405F0E4A3F0FFEF25E024B5F582E43E
+:1039D000344CF5837454F0A3F00FEFB404EA904C28
+:1039E00071E0FEA3E0FFC3904C74E09FFD904C7328
+:1039F000E09EFCE41202067B7B7A14798E783F12FB
+:103A000000FBC004C005C006C007904C71E0FCA3D9
+:103A1000E0FDE4120206D003D002D001D000120073
+:103A20000A12023F904CBDEEF0A3EFF0904C71E013
+:103A3000FEA3E0FFC3904C74E09FFD904C73E09EAA
+:103A4000FCE41202067BB87A1E7985783F1200FBEF
+:103A5000C004C005C006C007904C71E0FCA3E0FDA7
+:103A6000E4120206D003D002D001D00012000A12E4
+:103A7000023F904CBFEEF0A3EFF022904F14EDF018
+:103A80009000011203CF904F15F022904CF6E07099
+:103A900011904CCDE0700B904CB4E06401600312C7
+:103AA0000DBD904CFAE07002A3E06032904CFBE058
+:103AB00024FFF0904CFAE034FFF0E4904CC2F0A305
+:103AC000F0904CFBE030E0057F1E1221EB904CFAA9
+:103AD000E07002A3E0600261B47F190208B3904C69
+:103AE000C9E0600214F0904CCEE0600214F0904CFB
+:103AF000D7E0600B14F0E07006904CD37406F090A1
+:103B00004CC4E0601E904CCDE06006E4904CC4F0E4
+:103B100022904CC4E014F0120FE5904CC4E0700306
+:103B2000120FEB904DEBE07036904DECE0640170BD
+:103B30002E904CC2F0A3F0904DECF0904E58E06007
+:103B40000D7B017A4E79587D031213EA801190485B
+:103B500000E0600B7B017A4879007D091213EA903E
+:103B60004DE8E06009E014F0E07003120FDC904DC6
+:103B7000E3E06011E014F0E0700B904D1CE0700584
+:103B80007F1B1208B3904DF6E06029E014F0E0705E
+:103B900023904D23E06002E4F0904CA6E0B40407CB
+:103BA000904213740CF022904CA8E0B404069042AA
+:103BB00013743AF022904EDC1205D70000000090FA
+:103BC0004C75E07002A3E07002A196904C75E0FE87
+:103BD000A3E0FF904CB3E0FD04F0ED25E024B5F543
+:103BE00082E4344CF583EEF0A3EFF0904CB3E0C3E5
+:103BF00094044002E4F0E4904EDBF0904EDCE0F8F8
+:103C0000A3E0F9A3E0FAA3E0FB904EDBE025E0247B
+:103C1000B5F582E4344CF583E0FEA3E0FFE4FCFD5F
+:103C2000EB2FFFEA3EFEED39FDEC38FC904EDC1246
+:103C300005CB904EDBE004F0E0B404BF904EDCE036
+:103C4000FCA3E0FDA3E0FEA3E0FFE47B04FAF9F8A7
+:103C500012051A904EDC1205CB904CBFE0FEA3E09B
+:103C6000FFE4FCFD904EDCE0F8A3E0F9A3E0FAA34A
+:103C7000E0FBC31205BA5032904CB47402F0904C81
+:103C8000DEE064027002A18E904CE17401F0904C71
+:103C9000FAE4F0A37464F07B017A4C79E17D017C55
+:103CA000007FC27E7F121E20A18E904CDEE0B40207
+:103CB00015E4904CE1F07B017A4C79E17D01FC7FC9
+:103CC000C27E7F121E20904CBDE0FEA3E0FFE4FC0C
+:103CD000FD904EDCE0F8A3E0F9A3E0FAA3E0FBC31B
+:103CE0001205BA5056904CB47401F0904C71E0FE3D
+:103CF000A3E0FFC3904C74E09FFD904C73E09EFCEA
+:103D0000E41202067B7B7A14798E783F1200FBC0A6
+:103D100004C005C006C007904C71E0FCA3E0FDE4C0
+:103D2000120206D003D002D001D00012000A120203
+:103D30003F904CBDEEF0A3EFF08053E4904CB4F014
+:103D4000904C71E0FEA3E0FFC3904C74E09FFD90A7
+:103D50004C73E09EFCE41202067BB87A1E798578EB
+:103D60003F1200FBC004C005C006C007904C71E0C4
+:103D7000FCA3E0FDE4120206D003D002D001D00083
+:103D800012000A12023F904CBDEEF0A3EFF0904CEF
+:103D9000B4E0904CDEF022904EEDEEF0A3EFF09008
+:103DA0004EEFECF0A3EDF0904EEFE0FEA3E0FFD37A
+:103DB000904EEEE09F904EEDE09E4016904EEFE06C
+:103DC000FEA3E0FF904EEEE09FFF904EEDE09EFEE2
+:103DD000801E904EEDE0FEA3E0FFC3904EF0E09F0A
+:103DE000FF904EEFE09EFEAD03C3EB9FFFE49EFE0F
+:103DF00022900BE77403F0ED60031217E722900B9B
+:103E0000E77404F00217E7900BE77405F00217E778
+:103E1000900446E0FF22904B9CE0FEA3E0FF904B15
+:103E20009AE0B50607A3E0B50702D322C322EFF458
+:103E3000603AEF5407FEEF1313135403FF24A3F566
+:103E400082E43400F583C083C082E0FD7401A806DB
+:103E5000088002C333D8FCF4FC5DD082D083F074B8
+:103E6000A72FF582E43400F583E05CF022904EB792
+:103E7000EEF0A3EFF0904EBBEBF0A3EAF0A3E9F075
+:103E8000904EB9ECF0A3EDF0A3E0F9A3E0FAA3E0C3
+:103E9000904EABC9F0A3EAF0A3E9F0A3ECF0A3EDD8
+:103EA000F07B017A0B7986F108900B8374A0F09077
+:103EB0004EB7E0FFA3E0900B84CFF0A3EFF0904E5D
+:103EC000BAE02403FD904EB9E03400FCEDFAECFFBB
+:103ED000EAFEEF908098EEF0A3EFF07A0B79837E04
+:103EE0000B7F837483FC740BFFECFEEFA3EEF0A357
+:103EF000EFF090809EE4F0A3F090809004F090802A
+:103F000006E04404F0021FD2904EA8EBF0A3EAF0C2
+:103F1000A3E9F0904EAE74FFF5F012047945F0601D
+:103F20002A904EABE0FBA3E475F001120479A9F0EE
+:103F3000FA1203B6FF904EA8E0FBA3E475F001125D
+:103F40000479A9F0FAEF1203FC80C82290828074F1
+:033F500001F0225B
+:00000001FF
Index: c51/output/fwram.rom
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/c51/output/fwram.rom	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/c51/output/fwram.rom	(working copy)
@@ -0,0 +1,16211 @@
+02
+06
+34
+02
+02
+ab
+e8
+64
+80
+f8
+e9
+33
+e8
+33
+60
+11
+04
+60
+f0
+ed
+33
+ec
+33
+70
+09
+e8
+fc
+e9
+fd
+ea
+fe
+eb
+ff
+22
+04
+60
+de
+d3
+eb
+9f
+ea
+9e
+e9
+9d
+e8
+c2
+e7
+8c
+f0
+c2
+f7
+95
+f0
+40
+0c
+e8
+cc
+f8
+e9
+cd
+f9
+ea
+ce
+fa
+eb
+cf
+fb
+12
+02
+76
+85
+d0
+f0
+58
+04
+70
+03
+20
+d5
+b3
+e8
+04
+70
+07
+50
+02
+b2
+d5
+02
+02
+b5
+92
+d5
+ec
+04
+60
+f7
+e4
+cc
+c0
+e0
+c3
+98
+f8
+60
+3b
+94
+18
+60
+08
+40
+0d
+d0
+e0
+fb
+02
+02
+8d
+e4
+fb
+fa
+c9
+fc
+80
+28
+e8
+30
+e4
+06
+e4
+c9
+fb
+e4
+ca
+fc
+e8
+30
+e3
+05
+e4
+c9
+ca
+cb
+fc
+e8
+54
+07
+60
+10
+f8
+c3
+e9
+13
+f9
+ea
+13
+fa
+eb
+13
+fb
+ec
+13
+fc
+d8
+f1
+30
+f5
+2f
+c3
+e4
+9c
+fc
+ef
+9b
+ff
+ee
+9a
+fe
+ed
+99
+fd
+d0
+e0
+fb
+ef
+4e
+4d
+4c
+70
+12
+22
+db
+03
+02
+02
+b2
+ec
+2c
+fc
+ef
+33
+ff
+ee
+33
+fe
+ed
+33
+fd
+ed
+30
+e7
+eb
+02
+02
+8d
+ef
+2b
+ff
+ee
+3a
+fe
+ed
+39
+fd
+d0
+e0
+fb
+50
+13
+0b
+bb
+00
+03
+02
+02
+b5
+ed
+13
+fd
+ee
+13
+fe
+ef
+13
+ff
+ec
+13
+fc
+02
+02
+8d
+ec
+4d
+60
+11
+e8
+49
+70
+17
+ed
+33
+ec
+33
+04
+60
+0d
+e4
+fc
+ff
+fe
+fd
+22
+e9
+33
+e8
+33
+04
+70
+f8
+02
+02
+ab
+12
+02
+76
+58
+04
+60
+09
+e4
+cc
+24
+81
+50
+06
+28
+50
+09
+02
+02
+b5
+28
+40
+03
+02
+02
+b2
+c0
+e0
+eb
+4a
+70
+44
+b9
+80
+06
+d0
+e0
+fb
+02
+02
+a1
+ef
+4e
+70
+1c
+bd
+80
+08
+eb
+ff
+ea
+fe
+e9
+fd
+80
+eb
+e9
+8d
+f0
+a4
+fe
+e5
+f0
+02
+01
+e4
+e9
+cd
+f9
+ea
+fe
+eb
+ff
+ef
+89
+f0
+a4
+fc
+e5
+f0
+ce
+89
+f0
+a4
+2e
+ff
+e4
+35
+f0
+cd
+89
+f0
+a4
+2d
+fe
+e4
+35
+f0
+80
+67
+ef
+4e
+70
+05
+bd
+80
+d7
+80
+c3
+ef
+8b
+f0
+a4
+ac
+f0
+ee
+8b
+f0
+a4
+2c
+fc
+e4
+35
+f0
+f8
+ef
+8a
+f0
+a4
+2c
+e5
+f0
+38
+fc
+e4
+33
+cb
+8d
+f0
+a4
+2c
+fc
+e5
+f0
+3b
+f8
+ee
+8a
+f0
+a4
+2c
+fc
+e5
+f0
+38
+f8
+e4
+33
+cf
+89
+f0
+a4
+2c
+fc
+e5
+f0
+38
+cf
+34
+00
+ce
+89
+f0
+a4
+2f
+ff
+e5
+f0
+3e
+fe
+e4
+33
+c9
+8d
+f0
+a4
+2e
+fe
+e5
+f0
+39
+cd
+8a
+f0
+a4
+2f
+ff
+e5
+f0
+3e
+fe
+e4
+3d
+fd
+33
+d0
+e0
+fb
+50
+07
+0b
+bb
+00
+0f
+02
+02
+b5
+ec
+2c
+fc
+ef
+33
+ff
+ee
+33
+fe
+ed
+33
+fd
+02
+02
+8d
+75
+f0
+20
+80
+0e
+75
+f0
+10
+80
+05
+75
+f0
+08
+7d
+00
+7e
+00
+7f
+00
+33
+92
+d5
+30
+d5
+03
+12
+05
+ac
+ec
+33
+40
+10
+ef
+33
+ff
+ee
+33
+fe
+ed
+33
+fd
+ec
+33
+fc
+d5
+f0
+ed
+22
+e5
+f0
+24
+7e
+a2
+d5
+13
+cc
+92
+e7
+cd
+ce
+ff
+22
+ed
+d2
+e7
+cd
+33
+ec
+33
+92
+d5
+24
+81
+40
+06
+e4
+ff
+fe
+fd
+fc
+22
+fc
+e4
+cf
+ce
+cd
+cc
+24
+e0
+50
+11
+74
+ff
+80
+ed
+c3
+cc
+13
+cc
+cd
+13
+cd
+ce
+13
+ce
+cf
+13
+cf
+04
+70
+f0
+30
+d5
+de
+02
+05
+ac
+e9
+d2
+e7
+c9
+33
+e8
+33
+f8
+92
+d5
+ed
+d2
+e7
+cd
+33
+ec
+33
+fc
+50
+02
+b2
+d5
+22
+ec
+30
+e7
+10
+0f
+bf
+00
+0c
+0e
+be
+00
+08
+0d
+bd
+00
+04
+0b
+eb
+60
+14
+a2
+d5
+eb
+13
+fc
+ed
+92
+e7
+fd
+22
+74
+ff
+fc
+fd
+fe
+ff
+22
+e4
+80
+f8
+a2
+d5
+74
+ff
+13
+fc
+7d
+80
+e4
+80
+ef
+e7
+09
+f6
+08
+df
+fa
+80
+46
+e7
+09
+f2
+08
+df
+fa
+80
+3e
+88
+82
+8c
+83
+e7
+09
+f0
+a3
+df
+fa
+80
+32
+e3
+09
+f6
+08
+df
+fa
+80
+78
+e3
+09
+f2
+08
+df
+fa
+80
+70
+88
+82
+8c
+83
+e3
+09
+f0
+a3
+df
+fa
+80
+64
+89
+82
+8a
+83
+e0
+a3
+f6
+08
+df
+fa
+80
+58
+89
+82
+8a
+83
+e0
+a3
+f2
+08
+df
+fa
+80
+4c
+80
+d2
+80
+fa
+80
+c6
+80
+d4
+80
+69
+80
+f2
+80
+33
+80
+10
+80
+a6
+80
+ea
+80
+9a
+80
+a8
+80
+da
+80
+e2
+80
+ca
+80
+33
+89
+82
+8a
+83
+ec
+fa
+e4
+93
+a3
+c8
+c5
+82
+c8
+cc
+c5
+83
+cc
+f0
+a3
+c8
+c5
+82
+c8
+cc
+c5
+83
+cc
+df
+e9
+de
+e7
+80
+0d
+89
+82
+8a
+83
+e4
+93
+a3
+f6
+08
+df
+f9
+ec
+fa
+a9
+f0
+ed
+fb
+22
+89
+82
+8a
+83
+ec
+fa
+e0
+a3
+c8
+c5
+82
+c8
+cc
+c5
+83
+cc
+f0
+a3
+c8
+c5
+82
+c8
+cc
+c5
+83
+cc
+df
+ea
+de
+e8
+80
+db
+89
+82
+8a
+83
+e4
+93
+a3
+f2
+08
+df
+f9
+80
+cc
+88
+f0
+ef
+60
+01
+0e
+4e
+60
+c3
+88
+f0
+ed
+24
+02
+b4
+04
+00
+50
+b9
+f5
+82
+eb
+24
+02
+b4
+04
+00
+50
+af
+23
+23
+45
+82
+23
+90
+03
+10
+73
+bb
+01
+06
+89
+82
+8a
+83
+e0
+22
+50
+02
+e7
+22
+bb
+fe
+02
+e3
+22
+89
+82
+8a
+83
+e4
+93
+22
+bb
+01
+0c
+e5
+82
+29
+f5
+82
+e5
+83
+3a
+f5
+83
+e0
+22
+50
+06
+e9
+25
+82
+f8
+e6
+22
+bb
+fe
+06
+e9
+25
+82
+f8
+e2
+22
+e5
+82
+29
+f5
+82
+e5
+83
+3a
+f5
+83
+e4
+93
+22
+bb
+01
+06
+89
+82
+8a
+83
+f0
+22
+50
+02
+f7
+22
+bb
+fe
+01
+f3
+22
+bc
+00
+0b
+be
+00
+29
+ef
+8d
+f0
+84
+ff
+ad
+f0
+22
+e4
+cc
+f8
+75
+f0
+08
+ef
+2f
+ff
+ee
+33
+fe
+ec
+33
+fc
+ee
+9d
+ec
+98
+40
+05
+fc
+ee
+9d
+fe
+0f
+d5
+f0
+e9
+e4
+ce
+fd
+22
+ed
+f8
+f5
+f0
+ee
+84
+20
+d2
+1c
+fe
+ad
+f0
+75
+f0
+08
+ef
+2f
+ff
+ed
+33
+fd
+40
+07
+98
+50
+06
+d5
+f0
+f2
+22
+c3
+98
+fd
+0f
+d5
+f0
+ea
+22
+c5
+f0
+f8
+a3
+e0
+28
+f0
+c5
+f0
+f8
+e5
+82
+15
+82
+70
+02
+15
+83
+e0
+38
+f0
+22
+a3
+f8
+e0
+c5
+f0
+25
+f0
+f0
+e5
+82
+15
+82
+70
+02
+15
+83
+e0
+c8
+38
+f0
+e8
+22
+e8
+8f
+f0
+a4
+cc
+8b
+f0
+a4
+2c
+fc
+e9
+8e
+f0
+a4
+2c
+fc
+8a
+f0
+ed
+a4
+2c
+fc
+ea
+8e
+f0
+a4
+cd
+a8
+f0
+8b
+f0
+a4
+2d
+cc
+38
+25
+f0
+fd
+e9
+8f
+f0
+a4
+2c
+cd
+35
+f0
+fc
+eb
+8e
+f0
+a4
+fe
+a9
+f0
+eb
+8f
+f0
+a4
+cf
+c5
+f0
+2e
+cd
+39
+fe
+e4
+3c
+fc
+ea
+a4
+2d
+ce
+35
+f0
+fd
+e4
+3c
+fc
+22
+75
+f0
+08
+75
+82
+00
+ef
+2f
+ff
+ee
+33
+fe
+cd
+33
+cd
+cc
+33
+cc
+c5
+82
+33
+c5
+82
+9b
+ed
+9a
+ec
+99
+e5
+82
+98
+40
+0c
+f5
+82
+ee
+9b
+fe
+ed
+9a
+fd
+ec
+99
+fc
+0f
+d5
+f0
+d6
+e4
+ce
+fb
+e4
+cd
+fa
+e4
+cc
+f9
+a8
+82
+22
+b8
+00
+c1
+b9
+00
+59
+ba
+00
+2d
+ec
+8b
+f0
+84
+cf
+ce
+cd
+fc
+e5
+f0
+cb
+f9
+78
+18
+ef
+2f
+ff
+ee
+33
+fe
+ed
+33
+fd
+ec
+33
+fc
+eb
+33
+fb
+10
+d7
+03
+99
+40
+04
+eb
+99
+fb
+0f
+d8
+e5
+e4
+f9
+fa
+22
+78
+18
+ef
+2f
+ff
+ee
+33
+fe
+ed
+33
+fd
+ec
+33
+fc
+c9
+33
+c9
+10
+d7
+05
+9b
+e9
+9a
+40
+07
+ec
+9b
+fc
+e9
+9a
+f9
+0f
+d8
+e0
+e4
+c9
+fa
+e4
+cc
+fb
+22
+75
+f0
+10
+ef
+2f
+ff
+ee
+33
+fe
+ed
+33
+fd
+cc
+33
+cc
+c8
+33
+c8
+10
+d7
+07
+9b
+ec
+9a
+e8
+99
+40
+0a
+ed
+9b
+fd
+ec
+9a
+fc
+e8
+99
+f8
+0f
+d5
+f0
+da
+e4
+cd
+fb
+e4
+cc
+fa
+e4
+c8
+f9
+22
+c3
+e4
+9f
+ff
+e4
+9e
+fe
+e4
+9d
+fd
+e4
+9c
+fc
+22
+eb
+9f
+f5
+f0
+ea
+9e
+42
+f0
+e9
+9d
+42
+f0
+e8
+9c
+45
+f0
+22
+ec
+f0
+a3
+ed
+f0
+a3
+ee
+f0
+a3
+ef
+f0
+22
+a8
+82
+85
+83
+f0
+d0
+83
+d0
+82
+12
+05
+ee
+12
+05
+ee
+12
+05
+ee
+12
+05
+ee
+e4
+73
+e4
+93
+a3
+c5
+83
+c5
+f0
+c5
+83
+c8
+c5
+82
+c8
+f0
+a3
+c5
+83
+c5
+f0
+c5
+83
+c8
+c5
+82
+c8
+22
+d0
+83
+d0
+82
+f8
+e4
+93
+70
+12
+74
+01
+93
+70
+0d
+a3
+a3
+93
+f8
+74
+01
+93
+f5
+82
+88
+83
+e4
+73
+74
+02
+93
+68
+60
+ef
+a3
+a3
+a3
+80
+df
+8a
+83
+89
+82
+e4
+73
+78
+7f
+e4
+f6
+d8
+fd
+75
+81
+cf
+02
+06
+7b
+02
+26
+ed
+e4
+93
+a3
+f8
+e4
+93
+a3
+40
+03
+f6
+80
+01
+f2
+08
+df
+f4
+80
+29
+e4
+93
+a3
+f8
+54
+07
+24
+0c
+c8
+c3
+33
+c4
+54
+0f
+44
+20
+c8
+83
+40
+04
+f4
+56
+80
+01
+46
+f6
+df
+e4
+80
+0b
+01
+02
+04
+08
+10
+20
+40
+80
+90
+06
+c0
+e4
+7e
+01
+93
+60
+bc
+a3
+ff
+54
+3f
+30
+e5
+09
+54
+1f
+fe
+e4
+93
+a3
+60
+01
+0e
+cf
+54
+c0
+25
+e0
+60
+a8
+40
+b8
+e4
+93
+a3
+fa
+e4
+93
+a3
+f8
+e4
+93
+a3
+c8
+c5
+82
+c8
+ca
+c5
+83
+ca
+f0
+a3
+c8
+c5
+82
+c8
+ca
+c5
+83
+ca
+df
+e9
+de
+e7
+80
+be
+52
+4e
+62
+ff
+18
+cd
+00
+00
+00
+ff
+20
+f7
+ff
+3a
+8b
+00
+00
+00
+ff
+3a
+7b
+00
+1a
+08
+09
+0a
+0b
+0c
+0d
+0e
+18
+19
+17
+12
+11
+10
+0f
+16
+1b
+1c
+00
+00
+00
+48
+66
+00
+de
+e4
+df
+e0
+3e
+14
+2b
+04
+29
+1d
+00
+35
+1e
+1a
+39
+16
+64
+1b
+00
+3a
+1f
+08
+3c
+07
+3d
+06
+00
+3b
+20
+15
+17
+09
+0a
+19
+05
+22
+21
+18
+1c
+0d
+0b
+10
+11
+23
+24
+0c
+30
+0e
+3f
+36
+87
+2e
+25
+12
+40
+0f
+00
+37
+65
+41
+26
+13
+2f
+33
+34
+32
+38
+2d
+27
+47
+00
+00
+e2
+00
+e6
+34
+46
+89
+2a
+31
+44
+28
+45
+42
+43
+5f
+5c
+59
+2c
+53
+51
+4c
+66
+60
+5d
+5a
+62
+54
+4f
+49
+de
+61
+5e
+5b
+63
+55
+56
+4b
+4e
+57
+00
+58
+52
+48
+50
+4a
+4d
+df
+e1
+e5
+f6
+f7
+f5
+f4
+f1
+fa
+7f
+d1
+d3
+d2
+d4
+f8
+d5
+00
+d0
+e7
+f9
+f3
+fb
+d6
+00
+0a
+00
+00
+00
+00
+00
+05
+10
+00
+00
+00
+00
+00
+00
+01
+01
+00
+90
+4f
+18
+ef
+f0
+90
+4c
+cf
+e0
+70
+03
+02
+08
+b2
+90
+4c
+cf
+e0
+14
+f0
+e4
+90
+4d
+f5
+f0
+90
+4e
+61
+f0
+90
+4f
+18
+e0
+ff
+75
+f0
+1e
+a4
+24
+fd
+f5
+82
+e4
+34
+4d
+f5
+83
+e0
+64
+01
+70
+6f
+ef
+75
+f0
+1e
+a4
+24
+fe
+f9
+74
+4d
+35
+f0
+fa
+7b
+01
+7e
+42
+7f
+74
+90
+4e
+d0
+74
+06
+f0
+12
+10
+c8
+90
+4f
+18
+e0
+75
+f0
+1e
+a4
+24
+04
+f9
+74
+4e
+35
+f0
+fa
+7b
+01
+7e
+44
+7f
+7b
+90
+4e
+d0
+74
+10
+f0
+12
+10
+c8
+90
+4f
+18
+e0
+75
+f0
+1e
+a4
+24
+14
+f9
+74
+4e
+35
+f0
+fa
+7b
+01
+7e
+44
+7f
+f9
+90
+4e
+d0
+74
+06
+f0
+12
+10
+c8
+7f
+2b
+11
+b3
+90
+4d
+f5
+74
+01
+f0
+e4
+90
+4c
+cf
+f0
+90
+44
+8b
+04
+f0
+22
+90
+4f
+18
+e0
+ff
+75
+f0
+1e
+a4
+24
+fd
+f5
+82
+e4
+34
+4d
+f5
+83
+e0
+64
+02
+70
+46
+ef
+75
+f0
+1e
+a4
+24
+fe
+f9
+74
+4d
+35
+f0
+fa
+7b
+01
+7e
+42
+7f
+74
+90
+4e
+d0
+74
+06
+f0
+12
+10
+c8
+90
+4f
+18
+e0
+75
+f0
+1e
+a4
+24
+04
+f9
+74
+4e
+35
+f0
+fa
+7b
+01
+7e
+42
+7f
+62
+90
+4e
+d0
+74
+10
+f0
+12
+10
+c8
+7f
+03
+11
+b3
+90
+42
+5e
+74
+01
+f0
+22
+90
+4e
+61
+74
+01
+f0
+90
+44
+f9
+74
+0f
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+90
+4d
+e2
+74
+01
+f0
+7f
+2b
+11
+b3
+90
+42
+5e
+74
+01
+f0
+22
+90
+4e
+f1
+ef
+f0
+78
+f2
+7c
+4e
+7d
+01
+7b
+ff
+7a
+07
+79
+89
+7e
+00
+7f
+03
+12
+03
+90
+90
+4e
+f1
+e0
+90
+4e
+f4
+f0
+7b
+01
+7a
+4e
+79
+f2
+7d
+03
+90
+4e
+c5
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+a3
+ed
+f0
+90
+4b
+9c
+e0
+ff
+a3
+e0
+90
+4e
+c9
+cf
+f0
+a3
+ef
+f0
+90
+4b
+9a
+e0
+fe
+a3
+e0
+ff
+90
+4b
+9c
+e0
+fc
+a3
+e0
+fd
+7b
+64
+12
+3d
+97
+90
+4e
+c8
+e0
+fe
+ef
+c3
+9e
+40
+e1
+90
+4e
+c8
+e0
+ff
+14
+f0
+ef
+60
+3f
+90
+4e
+c5
+e0
+fb
+a3
+e4
+75
+f0
+01
+12
+04
+79
+a9
+f0
+fa
+12
+03
+b6
+ff
+90
+4e
+c9
+e4
+75
+f0
+01
+12
+04
+79
+85
+f0
+82
+f5
+83
+ef
+f0
+90
+4e
+c9
+e0
+fe
+a3
+e0
+ff
+be
+4b
+c6
+bf
+36
+c3
+90
+4e
+c9
+74
+4a
+f0
+a3
+74
+a0
+f0
+80
+b7
+90
+4e
+c9
+e0
+ff
+a3
+e0
+90
+4b
+9c
+cf
+f0
+a3
+ef
+f0
+22
+90
+4f
+1b
+ef
+f0
+14
+b4
+0d
+00
+40
+02
+61
+0d
+90
+09
+8b
+75
+f0
+03
+a4
+c5
+83
+25
+f0
+c5
+83
+73
+02
+09
+b2
+02
+09
+b2
+02
+09
+b2
+02
+0b
+0d
+02
+09
+f9
+02
+0a
+3a
+02
+0a
+42
+02
+0a
+63
+02
+0a
+63
+02
+0a
+ca
+02
+0b
+0d
+02
+0b
+0d
+02
+09
+f1
+90
+4c
+a4
+e0
+ff
+64
+03
+60
+04
+ef
+b4
+02
+0d
+7f
+22
+11
+b3
+90
+4f
+1b
+e0
+90
+4c
+cc
+f0
+22
+90
+4f
+1b
+e0
+14
+90
+4d
+e5
+f0
+90
+42
+13
+74
+05
+f0
+90
+4c
+cf
+f0
+7f
+04
+11
+b3
+7f
+0a
+f1
+6e
+7f
+2a
+11
+b3
+e4
+90
+4c
+cc
+f0
+22
+7f
+0e
+11
+b3
+7f
+02
+01
+b3
+e4
+90
+4c
+cf
+f0
+71
+13
+ef
+70
+0b
+71
+52
+ef
+70
+06
+12
+20
+50
+ef
+60
+0f
+90
+4f
+1b
+e0
+90
+4c
+cc
+f0
+90
+4d
+fb
+74
+03
+f0
+22
+12
+18
+c3
+e4
+90
+4d
+e3
+f0
+90
+4d
+e2
+f0
+90
+4e
+61
+f0
+12
+20
+67
+7f
+2c
+11
+b3
+e4
+90
+4c
+cc
+f0
+22
+71
+13
+e4
+90
+4c
+cc
+f0
+22
+7b
+01
+7a
+4d
+79
+fd
+7d
+5a
+7c
+00
+12
+28
+19
+90
+4c
+9f
+74
+ff
+f0
+a3
+f0
+90
+4c
+9e
+74
+03
+f0
+e4
+90
+4c
+cc
+f0
+22
+e4
+90
+4c
+cf
+f0
+71
+52
+ef
+60
+09
+90
+4f
+1b
+e0
+90
+4c
+cc
+f0
+22
+7b
+01
+7a
+4c
+79
+00
+7d
+04
+7c
+00
+7f
+52
+7e
+7f
+12
+1e
+cf
+7f
+0a
+f1
+6e
+e4
+90
+4e
+61
+f0
+90
+4c
+00
+e0
+f4
+70
+21
+a3
+e0
+b4
+ff
+1c
+a3
+e0
+b4
+ff
+17
+a3
+e0
+b4
+ff
+12
+90
+4c
+00
+74
+0f
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+90
+4e
+61
+74
+01
+f0
+7f
+21
+11
+b3
+90
+4c
+a4
+74
+02
+f0
+e4
+a3
+f0
+90
+4c
+cc
+f0
+22
+e4
+90
+4c
+cf
+f0
+71
+13
+ef
+70
+05
+71
+52
+ef
+60
+09
+90
+4f
+1b
+e0
+90
+4c
+cc
+f0
+22
+90
+4c
+a4
+e0
+64
+01
+60
+1d
+e4
+90
+4e
+61
+f0
+7f
+23
+11
+b3
+90
+4c
+a4
+74
+01
+f0
+e4
+a3
+f0
+90
+4c
+cd
+74
+3c
+f0
+e4
+90
+4c
+c8
+f0
+e4
+90
+4c
+cc
+f0
+22
+e4
+90
+4c
+cc
+f0
+22
+90
+4c
+a8
+e0
+ff
+64
+04
+60
+04
+ef
+b4
+03
+07
+7f
+04
+11
+b3
+7f
+01
+22
+90
+4c
+a6
+e0
+ff
+64
+04
+60
+04
+ef
+b4
+03
+07
+7f
+11
+11
+b3
+7f
+01
+22
+90
+4c
+a4
+e0
+ff
+64
+03
+60
+04
+ef
+b4
+02
+07
+7f
+22
+11
+b3
+7f
+01
+22
+7f
+00
+22
+90
+4c
+a8
+e0
+b4
+02
+07
+7f
+1e
+11
+b3
+7f
+01
+22
+90
+4c
+a6
+e0
+b4
+02
+07
+7f
+0e
+11
+b3
+7f
+01
+22
+7f
+00
+22
+90
+4c
+ad
+e0
+30
+e1
+3d
+90
+4c
+af
+e0
+c3
+94
+fa
+50
+03
+e0
+04
+f0
+90
+4c
+af
+e0
+64
+b4
+70
+36
+90
+4d
+f2
+e0
+04
+f0
+e0
+d3
+94
+02
+50
+07
+e4
+90
+4c
+af
+f0
+80
+23
+90
+4d
+f2
+e0
+b4
+03
+1c
+90
+4d
+eb
+74
+01
+f0
+e4
+90
+4c
+af
+f0
+f1
+d8
+80
+0d
+e4
+90
+4d
+f2
+f0
+90
+4d
+eb
+f0
+90
+4c
+af
+f0
+90
+4c
+ad
+e0
+30
+e4
+36
+90
+4c
+c9
+74
+0a
+f0
+90
+4c
+b0
+e0
+c3
+94
+fa
+50
+03
+e0
+04
+f0
+90
+4c
+b0
+e0
+64
+06
+70
+46
+90
+4c
+a2
+e0
+ff
+60
+04
+64
+fe
+70
+3b
+e4
+90
+4c
+ac
+f0
+71
+13
+7f
+0a
+f1
+6e
+7f
+0a
+31
+70
+80
+2a
+90
+4c
+ac
+e0
+60
+1f
+e4
+f0
+7f
+0d
+31
+70
+90
+4c
+ca
+74
+01
+f0
+90
+4c
+a2
+e0
+90
+4c
+9f
+f0
+90
+4c
+9e
+74
+01
+f0
+12
+1d
+8a
+f1
+dc
+e4
+90
+4c
+b0
+f0
+90
+4c
+ad
+e0
+30
+e3
+46
+90
+4c
+c9
+74
+0a
+f0
+90
+4c
+b1
+e0
+c3
+94
+fa
+50
+03
+e0
+04
+f0
+90
+4c
+b1
+e0
+64
+06
+70
+5f
+90
+4c
+c8
+74
+3c
+f0
+e4
+90
+4c
+cd
+f0
+7f
+05
+31
+70
+91
+ac
+e4
+90
+4c
+ab
+f0
+90
+4c
+ca
+04
+f0
+90
+4c
+9f
+e0
+90
+4c
+a3
+f0
+90
+4c
+a2
+e0
+90
+4c
+9f
+f0
+22
+90
+4c
+ab
+e0
+60
+28
+e4
+f0
+90
+4c
+a2
+e0
+ff
+90
+4c
+9f
+e0
+6f
+60
+1a
+90
+4c
+ca
+74
+01
+f0
+91
+ac
+90
+4c
+a2
+e0
+90
+4c
+9f
+f0
+90
+4c
+9e
+74
+01
+f0
+71
+13
+f1
+d9
+e4
+90
+4c
+b1
+f0
+22
+f1
+9c
+c2
+06
+7f
+1d
+91
+ce
+c2
+06
+7f
+ff
+91
+ce
+c2
+06
+7f
+1e
+91
+ce
+c2
+06
+7f
+1e
+91
+ce
+c2
+06
+7f
+1e
+91
+ce
+c2
+06
+7f
+1f
+ac
+07
+ec
+f4
+60
+16
+af
+04
+d2
+04
+12
+36
+ef
+af
+04
+a2
+06
+92
+01
+f1
+5c
+af
+04
+c2
+02
+12
+36
+cd
+22
+90
+4e
+e9
+ef
+f0
+a3
+ed
+f0
+90
+4c
+f9
+ef
+f0
+ed
+60
+06
+90
+4c
+b4
+e0
+60
+30
+90
+4c
+f9
+e0
+ff
+f1
+9c
+90
+4e
+e9
+e0
+30
+e0
+06
+c2
+06
+7f
+15
+91
+ce
+90
+4e
+e9
+e0
+30
+e1
+06
+c2
+06
+7f
+14
+91
+ce
+90
+4e
+e9
+e0
+20
+e2
+02
+a1
+bc
+c2
+06
+7f
+13
+80
+9d
+90
+4e
+ea
+e0
+64
+04
+70
+2e
+90
+4c
+f9
+e0
+ff
+f1
+9c
+90
+4e
+e9
+e0
+30
+e0
+06
+d2
+06
+7f
+15
+91
+ce
+90
+4e
+e9
+e0
+30
+e1
+06
+d2
+06
+7f
+14
+91
+ce
+90
+4e
+e9
+e0
+30
+e2
+5b
+d2
+06
+7f
+13
+81
+ce
+90
+4e
+ea
+e0
+ff
+b4
+03
+09
+a3
+e4
+f0
+a3
+74
+4b
+f0
+80
+18
+ef
+b4
+02
+0b
+90
+4e
+eb
+e4
+f0
+a3
+74
+32
+f0
+80
+09
+90
+4e
+eb
+e4
+f0
+a3
+74
+19
+f0
+e4
+90
+41
+31
+f0
+90
+4c
+e0
+04
+f0
+90
+4c
+f9
+e0
+ff
+12
+39
+54
+90
+4e
+eb
+e0
+a3
+e0
+ff
+90
+80
+a0
+f0
+c3
+74
+64
+9f
+90
+80
+a2
+f0
+90
+80
+85
+e0
+44
+40
+f0
+22
+90
+4c
+e6
+e0
+04
+f0
+70
+06
+90
+4c
+e5
+e0
+04
+f0
+90
+4c
+e3
+e0
+fd
+7c
+00
+90
+4c
+e5
+e0
+fe
+a3
+e0
+ff
+12
+04
+0e
+ed
+4c
+60
+02
+c1
+9c
+90
+4c
+e2
+e0
+14
+60
+11
+14
+60
+11
+14
+60
+02
+c1
+96
+90
+4c
+e7
+e0
+fd
+7f
+07
+81
+eb
+02
+37
+61
+90
+4c
+f7
+e0
+70
+0e
+fd
+7f
+07
+91
+eb
+90
+4c
+e7
+e0
+fd
+7f
+01
+91
+eb
+90
+4c
+f7
+e0
+b4
+01
+0f
+e4
+fd
+7f
+07
+91
+eb
+90
+4c
+e7
+e0
+fd
+7f
+02
+91
+eb
+90
+4c
+f7
+e0
+b4
+02
+0f
+e4
+fd
+7f
+07
+91
+eb
+90
+4c
+e7
+e0
+fd
+7f
+03
+91
+eb
+90
+4c
+f7
+e0
+b4
+03
+0f
+e4
+fd
+7f
+07
+91
+eb
+90
+4c
+e7
+e0
+fd
+7f
+04
+91
+eb
+90
+4c
+f7
+e0
+b4
+04
+0f
+e4
+fd
+7f
+07
+91
+eb
+90
+4c
+e7
+e0
+fd
+7f
+05
+91
+eb
+90
+4c
+f7
+e0
+b4
+05
+0f
+e4
+fd
+7f
+07
+91
+eb
+90
+4c
+e7
+e0
+fd
+7f
+06
+91
+eb
+90
+4c
+f7
+e0
+b4
+06
+15
+e4
+fd
+7f
+07
+91
+eb
+90
+4c
+e7
+e0
+fd
+7f
+07
+81
+eb
+e4
+fd
+7f
+07
+91
+eb
+22
+90
+4d
+fa
+e0
+64
+02
+60
+02
+e1
+5b
+90
+4c
+df
+e0
+60
+08
+c2
+06
+7f
+ff
+91
+ce
+80
+06
+d2
+06
+7f
+ff
+91
+ce
+90
+4c
+c8
+e0
+60
+02
+e1
+55
+90
+4c
+cd
+e0
+60
+02
+e1
+55
+b1
+bd
+90
+4c
+b4
+e0
+b4
+02
+04
+f1
+d8
+80
+2e
+90
+4c
+b4
+e0
+b4
+01
+14
+90
+4c
+d6
+e0
+70
+21
+90
+4c
+c1
+74
+18
+f0
+90
+4c
+d6
+74
+01
+f0
+80
+13
+90
+4c
+d6
+e0
+b4
+01
+0c
+e4
+f0
+90
+4c
+c1
+f0
+c2
+01
+7f
+1e
+f1
+5c
+12
+18
+0d
+ef
+60
+43
+c3
+90
+4c
+c3
+e0
+94
+14
+90
+4c
+c2
+e0
+94
+00
+50
+28
+90
+4c
+90
+e0
+30
+e0
+08
+d2
+01
+7f
+1f
+f1
+5c
+80
+06
+c2
+01
+7f
+1f
+f1
+5c
+90
+4c
+90
+e0
+30
+e1
+06
+d2
+01
+7f
+1d
+80
+1f
+c2
+01
+7f
+1d
+80
+19
+c2
+01
+7f
+1d
+f1
+5c
+c2
+01
+7f
+1f
+80
+0d
+c2
+01
+7f
+1d
+80
+07
+c2
+01
+7f
+1d
+f1
+5c
+22
+ef
+f4
+60
+0d
+7b
+01
+7a
+80
+79
+74
+a2
+01
+92
+00
+12
+37
+00
+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
+7f
+07
+f1
+9c
+c2
+06
+7f
+15
+91
+ce
+c2
+06
+7f
+14
+91
+ce
+c2
+06
+7f
+13
+81
+ce
+90
+4c
+c8
+e0
+70
+09
+90
+4c
+e0
+e0
+b4
+01
+02
+e4
+f0
+90
+80
+51
+e0
+44
+20
+f0
+e0
+44
+20
+f0
+ef
+30
+e0
+07
+90
+80
+82
+e0
+54
+bf
+f0
+ef
+30
+e1
+07
+90
+80
+82
+e0
+54
+df
+f0
+ef
+30
+e2
+07
+90
+80
+82
+e0
+54
+ef
+f0
+22
+22
+12
+1d
+8a
+90
+80
+10
+74
+01
+f0
+80
+fe
+22
+d2
+01
+7f
+1e
+e1
+5c
+c2
+01
+7f
+1e
+e1
+5c
+90
+4f
+11
+ed
+f0
+90
+4f
+10
+ef
+f0
+64
+01
+70
+70
+a3
+e0
+ff
+75
+f0
+1e
+a4
+24
+fd
+f5
+82
+e4
+34
+4d
+f5
+83
+74
+01
+f0
+ef
+75
+f0
+1e
+a4
+24
+fe
+f5
+82
+e4
+34
+4d
+af
+82
+fe
+7b
+01
+7a
+03
+79
+d0
+90
+4e
+d0
+74
+06
+f0
+11
+c8
+90
+4f
+11
+e0
+75
+f0
+1e
+a4
+24
+04
+f5
+82
+e4
+34
+4e
+af
+82
+fe
+7b
+01
+7a
+44
+79
+7b
+90
+4e
+d0
+74
+10
+f0
+11
+c8
+90
+4f
+11
+e0
+75
+f0
+1e
+a4
+24
+14
+f5
+82
+e4
+34
+4e
+af
+82
+fe
+7b
+01
+7a
+44
+79
+f9
+90
+4e
+d0
+74
+06
+f0
+80
+59
+90
+4f
+10
+e0
+64
+02
+70
+50
+a3
+e0
+ff
+75
+f0
+1e
+a4
+24
+fd
+f5
+82
+e4
+34
+4d
+f5
+83
+74
+02
+f0
+ef
+75
+f0
+1e
+a4
+24
+fe
+f5
+82
+e4
+34
+4d
+af
+82
+fe
+7b
+01
+7a
+00
+79
+40
+90
+4e
+d0
+74
+06
+f0
+11
+c8
+90
+4f
+11
+e0
+75
+f0
+1e
+a4
+24
+04
+f5
+82
+e4
+34
+4e
+af
+82
+fe
+7b
+01
+7a
+42
+79
+62
+90
+4e
+d0
+74
+10
+f0
+11
+c8
+22
+90
+4e
+cb
+ee
+f0
+a3
+ef
+f0
+a3
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+90
+4e
+d0
+e0
+ff
+14
+f0
+ef
+60
+27
+90
+4e
+cd
+e0
+fb
+a3
+e4
+75
+f0
+01
+12
+04
+79
+a9
+f0
+fa
+12
+03
+b6
+ff
+90
+4e
+cb
+e4
+75
+f0
+01
+12
+04
+79
+85
+f0
+82
+f5
+83
+ef
+f0
+80
+cf
+22
+90
+4e
+d1
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+e4
+a3
+f0
+a3
+f0
+90
+4d
+f1
+f0
+90
+4e
+d5
+f0
+90
+4e
+d5
+e0
+ff
+c3
+94
+05
+50
+2c
+90
+4e
+d1
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+24
+01
+f9
+e4
+3a
+fa
+7e
+00
+e9
+2f
+f9
+ee
+3a
+fa
+12
+03
+b6
+b4
+7f
+06
+90
+4d
+f1
+74
+01
+f0
+90
+4e
+d5
+e0
+04
+f0
+80
+ca
+90
+4e
+d1
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+12
+33
+6b
+ef
+60
+02
+61
+e9
+90
+4e
+d1
+e0
+a3
+e0
+fa
+a3
+e0
+4a
+70
+02
+61
+e9
+90
+4d
+5a
+e0
+60
+08
+e4
+f0
+90
+4d
+23
+74
+03
+f0
+90
+4c
+a6
+e0
+64
+04
+60
+07
+90
+4c
+a8
+e0
+b4
+04
+06
+90
+42
+13
+74
+03
+f0
+90
+4d
+f6
+74
+0a
+f0
+e4
+90
+4c
+c2
+f0
+a3
+f0
+90
+4c
+f6
+f0
+90
+4c
+e2
+e0
+60
+12
+e4
+90
+4d
+1d
+f0
+a3
+74
+48
+f0
+a3
+74
+12
+f0
+e4
+a3
+f0
+80
+10
+e4
+90
+4d
+1d
+f0
+a3
+74
+48
+f0
+a3
+74
+5d
+f0
+e4
+a3
+f0
+7b
+01
+7a
+48
+79
+00
+7d
+09
+7c
+00
+91
+d8
+7b
+01
+7a
+4e
+79
+58
+7d
+09
+7c
+00
+91
+d8
+90
+4c
+8f
+74
+01
+f0
+90
+4c
+d3
+e0
+ff
+64
+01
+70
+02
+61
+e9
+ef
+64
+04
+70
+02
+61
+e9
+ef
+64
+02
+70
+02
+61
+e9
+90
+4c
+a4
+e0
+64
+03
+70
+45
+90
+4e
+d5
+f0
+90
+4e
+d5
+e0
+ff
+c3
+94
+05
+50
+37
+90
+4e
+d1
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+24
+01
+f9
+e4
+3a
+fa
+7e
+00
+e9
+2f
+f9
+ee
+3a
+fa
+12
+03
+b6
+ff
+64
+39
+60
+09
+ef
+64
+53
+60
+04
+ef
+b4
+47
+06
+90
+4d
+23
+74
+03
+f0
+90
+4e
+d5
+e0
+04
+f0
+80
+bf
+90
+4e
+d1
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+12
+2e
+2d
+90
+4e
+57
+e0
+b4
+01
+11
+74
+02
+f0
+90
+4e
+58
+f0
+7b
+01
+7a
+4e
+79
+58
+7d
+03
+61
+ea
+90
+4e
+57
+e0
+b4
+04
+11
+74
+02
+f0
+90
+4e
+58
+04
+f0
+7b
+01
+7a
+4e
+79
+58
+fd
+61
+ea
+90
+4e
+57
+e0
+64
+03
+60
+0b
+e0
+64
+02
+70
+2f
+90
+4d
+f4
+e0
+70
+29
+e4
+90
+4e
+57
+f0
+90
+4d
+fc
+f0
+90
+4d
+f8
+e0
+60
+0a
+e4
+f0
+90
+4e
+58
+74
+03
+f0
+80
+06
+90
+4e
+58
+74
+02
+f0
+7b
+01
+7a
+4e
+79
+58
+7d
+03
+61
+ea
+90
+4d
+f4
+e0
+70
+31
+90
+4e
+d1
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+24
+01
+f9
+e4
+3a
+fa
+7d
+06
+7c
+00
+91
+d8
+7b
+01
+7a
+4d
+79
+d3
+7d
+0f
+7c
+00
+91
+d8
+90
+4e
+d1
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+e4
+12
+03
+fc
+90
+48
+00
+74
+01
+f0
+90
+4e
+d1
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+12
+03
+b6
+90
+48
+01
+f0
+90
+4c
+a4
+e0
+b4
+03
+0a
+90
+4d
+23
+e0
+90
+48
+02
+f0
+80
+05
+e4
+90
+48
+02
+f0
+e4
+90
+4d
+ee
+f0
+90
+4e
+61
+e0
+70
+6f
+90
+00
+01
+12
+03
+cf
+b4
+7f
+15
+7e
+48
+7f
+03
+e9
+24
+02
+f9
+e4
+3a
+fa
+90
+4e
+d0
+74
+05
+f0
+11
+c8
+80
+1c
+7e
+48
+7f
+03
+90
+4e
+d1
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+24
+01
+f9
+e4
+3a
+fa
+90
+4e
+d0
+74
+06
+f0
+11
+c8
+90
+4e
+d5
+74
+03
+f0
+90
+4e
+d5
+e0
+ff
+c3
+94
+09
+50
+41
+74
+00
+2f
+f5
+82
+e4
+34
+48
+f5
+83
+e0
+b4
+7f
+0f
+90
+4e
+d5
+e0
+24
+00
+f5
+82
+e4
+34
+48
+f5
+83
+e4
+f0
+90
+4e
+d5
+e0
+04
+f0
+80
+d1
+7e
+48
+7f
+03
+90
+4e
+d1
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+24
+01
+f9
+e4
+3a
+fa
+90
+4e
+d0
+74
+06
+f0
+11
+c8
+7b
+01
+7a
+48
+79
+00
+7d
+09
+71
+ea
+90
+4d
+d3
+74
+08
+f0
+7b
+01
+7a
+4d
+79
+d3
+7d
+0f
+71
+ea
+22
+90
+4e
+86
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+a3
+ed
+f0
+e4
+ff
+90
+4e
+89
+e0
+fe
+ef
+c3
+9e
+50
+23
+90
+4e
+86
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+8f
+82
+75
+83
+00
+12
+03
+cf
+fe
+74
+8a
+2f
+f5
+82
+e4
+34
+4e
+f5
+83
+ee
+f0
+0f
+80
+d3
+12
+18
+2a
+ef
+70
+02
+81
+d7
+90
+4c
+ca
+e0
+60
+02
+81
+d7
+90
+4c
+a8
+e0
+b4
+04
+0e
+7b
+01
+7a
+4e
+79
+8a
+90
+4e
+89
+e0
+fd
+12
+3d
+f1
+90
+4c
+a6
+e0
+ff
+64
+04
+60
+0a
+ef
+b4
+03
+14
+90
+4d
+e2
+e0
+60
+0e
+7b
+01
+7a
+4e
+79
+8a
+90
+4e
+89
+e0
+fd
+12
+3e
+07
+90
+4c
+a4
+e0
+64
+03
+70
+62
+90
+4e
+8a
+e0
+64
+01
+70
+23
+74
+04
+f0
+a3
+e0
+70
+14
+90
+4e
+8d
+e0
+70
+0e
+a3
+e0
+70
+0a
+a3
+e0
+70
+06
+90
+4d
+ec
+f0
+80
+32
+90
+4d
+ec
+74
+01
+f0
+80
+2a
+90
+4e
+8a
+e0
+b4
+02
+19
+74
+05
+f0
+a3
+e0
+70
+0a
+a3
+e0
+70
+06
+90
+4d
+ec
+f0
+80
+12
+90
+4d
+ec
+74
+01
+f0
+80
+0a
+90
+4e
+8a
+e0
+b4
+03
+03
+74
+07
+f0
+7b
+01
+7a
+4e
+79
+8a
+90
+4e
+89
+e0
+fd
+f1
+e1
+22
+90
+4f
+0a
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+ed
+1d
+ae
+04
+70
+01
+1c
+4e
+60
+16
+90
+4f
+0a
+e0
+fb
+a3
+e4
+75
+f0
+01
+12
+04
+79
+a9
+f0
+fa
+e4
+12
+03
+fc
+80
+e0
+22
+7b
+01
+7a
+4c
+79
+9e
+7d
+5f
+7c
+00
+91
+d8
+7b
+01
+7a
+4d
+79
+93
+7d
+14
+7c
+00
+91
+d8
+7b
+01
+7a
+4d
+79
+a8
+7d
+14
+7c
+00
+91
+d8
+7b
+01
+7a
+4d
+79
+bc
+7d
+14
+7c
+00
+91
+d8
+7b
+01
+7a
+48
+79
+00
+7d
+09
+7c
+00
+91
+d8
+7b
+01
+7a
+4e
+79
+58
+7d
+09
+7c
+00
+91
+d8
+e4
+90
+4d
+f6
+f0
+90
+4d
+fb
+f0
+90
+4d
+e8
+f0
+90
+4d
+f0
+f0
+90
+4d
+ed
+f0
+90
+4d
+fa
+f0
+90
+4d
+ec
+f0
+90
+4d
+e4
+f0
+90
+4d
+f5
+f0
+90
+4d
+f2
+f0
+90
+4e
+57
+f0
+90
+4d
+eb
+f0
+90
+4d
+ee
+f0
+90
+4d
+f1
+f0
+90
+4d
+f9
+f0
+90
+4d
+e7
+f0
+90
+4d
+fc
+f0
+90
+4c
+90
+74
+f0
+f0
+90
+4d
+ef
+f0
+e4
+90
+4d
+17
+f0
+90
+4d
+e3
+f0
+22
+90
+4f
+12
+ef
+f0
+a3
+ed
+f0
+7b
+01
+7a
+48
+79
+00
+7d
+09
+7c
+00
+91
+d8
+90
+48
+00
+74
+01
+f0
+a3
+e0
+ff
+90
+4f
+12
+e0
+fe
+ef
+4e
+90
+48
+01
+f0
+90
+4f
+13
+e0
+90
+48
+03
+f0
+7b
+01
+7a
+48
+79
+00
+7d
+09
+61
+ea
+90
+4c
+a7
+e0
+64
+02
+60
+07
+90
+4c
+a9
+e0
+b4
+02
+03
+02
+30
+f8
+90
+4c
+d3
+e0
+ff
+60
+08
+64
+03
+60
+04
+ef
+b4
+05
+02
+80
+72
+90
+4c
+d3
+e0
+b4
+01
+0e
+a3
+e0
+ff
+e4
+fd
+b1
+a5
+90
+4c
+d3
+74
+02
+f0
+22
+90
+4c
+d3
+e0
+b4
+02
+0b
+74
+03
+f0
+a3
+e0
+ff
+a3
+e0
+fd
+a1
+a5
+90
+4c
+d3
+e0
+b4
+04
+27
+e4
+90
+4c
+d5
+f0
+90
+4c
+d4
+e0
+ff
+e4
+fd
+b1
+a5
+e4
+90
+4c
+d4
+f0
+90
+4c
+d7
+e0
+70
+07
+90
+4c
+d3
+74
+06
+f0
+22
+90
+4c
+d3
+74
+05
+f0
+22
+90
+4c
+d3
+e0
+b4
+06
+15
+e4
+90
+4c
+d5
+f0
+90
+4c
+d4
+f0
+a3
+e0
+fd
+e4
+ff
+b1
+a5
+e4
+90
+4c
+d3
+f0
+22
+90
+4e
+f8
+e4
+f0
+a3
+f0
+a3
+f0
+12
+3e
+16
+50
+25
+12
+28
+90
+90
+4e
+f8
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+4a
+70
+07
+90
+4c
+8f
+04
+f0
+80
+0e
+90
+4e
+f8
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+31
+0b
+22
+90
+4d
+23
+e0
+60
+35
+90
+4d
+ec
+e0
+70
+2f
+90
+4c
+a4
+e0
+b4
+03
+28
+7b
+01
+7a
+48
+79
+00
+7d
+09
+7c
+00
+91
+d8
+e4
+90
+4e
+57
+f0
+90
+48
+00
+04
+f0
+90
+4d
+23
+e0
+90
+48
+02
+f0
+7b
+01
+7a
+48
+79
+00
+7d
+09
+71
+ea
+22
+90
+4d
+ea
+e0
+60
+0b
+e0
+14
+f0
+e0
+70
+05
+90
+4d
+e9
+04
+f0
+90
+4c
+a8
+e0
+64
+04
+60
+07
+90
+4c
+a6
+e0
+b4
+04
+29
+90
+4c
+c2
+e0
+b4
+02
+08
+a3
+e0
+b4
+d0
+03
+12
+0c
+ac
+90
+4c
+c2
+e0
+64
+04
+70
+04
+a3
+e0
+64
+b0
+60
+02
+e1
+a5
+12
+0b
+13
+90
+4c
+cb
+74
+01
+f0
+22
+90
+4c
+a4
+e0
+64
+03
+70
+39
+90
+4c
+c3
+e0
+54
+1f
+64
+10
+70
+1e
+7b
+01
+7a
+48
+79
+00
+7d
+09
+fc
+91
+d8
+e4
+90
+4e
+57
+f0
+90
+48
+00
+04
+f0
+fb
+7a
+48
+79
+00
+7d
+09
+71
+ea
+c3
+90
+4c
+c3
+e0
+94
+b0
+90
+4c
+c2
+e0
+94
+04
+40
+39
+80
+38
+90
+4c
+a4
+e0
+b4
+01
+11
+c3
+90
+4c
+c3
+e0
+94
+3c
+90
+4c
+c2
+e0
+94
+00
+40
+21
+80
+20
+c3
+90
+4c
+c3
+e0
+94
+14
+90
+4c
+c2
+e0
+94
+00
+40
+10
+90
+4d
+f5
+e0
+60
+07
+e4
+f0
+7f
+0e
+12
+08
+b3
+12
+0f
+d8
+22
+90
+4c
+f6
+74
+01
+f0
+e4
+90
+4c
+c5
+f0
+a3
+f0
+a3
+f0
+90
+4c
+90
+74
+f0
+f0
+90
+4d
+ef
+f0
+e4
+90
+4c
+e2
+f0
+90
+4c
+d6
+f0
+90
+4c
+c1
+f0
+90
+4b
+ef
+74
+ff
+f0
+90
+4d
+1d
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+7f
+07
+02
+0c
+aa
+90
+0b
+e7
+74
+06
+f0
+90
+4f
+21
+ed
+f0
+e0
+fd
+90
+0b
+e8
+f0
+7e
+0b
+7f
+e9
+90
+4e
+d0
+ed
+f0
+11
+c8
+7b
+01
+7a
+0b
+79
+e7
+90
+4f
+21
+e0
+24
+02
+fd
+02
+08
+db
+90
+4c
+a8
+e0
+64
+04
+60
+0f
+90
+4c
+a6
+e0
+64
+04
+60
+07
+90
+4c
+a4
+e0
+b4
+03
+03
+7f
+01
+22
+7f
+00
+22
+e4
+90
+4f
+19
+f0
+90
+4c
+a7
+e0
+64
+02
+60
+07
+90
+4c
+a9
+e0
+b4
+02
+06
+90
+4f
+19
+e0
+ff
+22
+90
+47
+f4
+e0
+54
+40
+fe
+a3
+e0
+54
+08
+ff
+be
+40
+09
+bf
+08
+06
+90
+4f
+19
+e0
+ff
+22
+90
+4c
+cd
+e0
+60
+06
+90
+4f
+19
+e0
+ff
+22
+90
+4c
+a8
+e0
+70
+45
+90
+4c
+a6
+e0
+70
+3f
+90
+4c
+a4
+e0
+64
+03
+60
+37
+90
+4c
+ce
+e0
+70
+3b
+74
+0a
+f0
+a3
+e0
+70
+34
+90
+4d
+fa
+e0
+64
+02
+70
+2c
+90
+4c
+a2
+e0
+ff
+c3
+94
+01
+40
+0b
+ef
+d3
+94
+03
+50
+05
+12
+09
+70
+80
+17
+7f
+09
+12
+09
+70
+90
+4f
+19
+74
+01
+f0
+80
+0a
+e4
+90
+4c
+ca
+f0
+90
+4f
+19
+04
+f0
+90
+4f
+19
+e0
+ff
+22
+e4
+90
+4c
+cf
+f0
+90
+4d
+f5
+f0
+22
+90
+4f
+20
+ef
+f0
+12
+06
+08
+1a
+fa
+01
+1b
+f3
+02
+1b
+e4
+04
+1b
+1c
+06
+1b
+ac
+0a
+1b
+e4
+13
+1c
+95
+14
+1d
+42
+15
+1a
+1a
+27
+1d
+09
+29
+1b
+a2
+2a
+19
+18
+2f
+1a
+10
+30
+1a
+51
+31
+1a
+bc
+32
+19
+18
+33
+1c
+e4
+34
+1d
+23
+35
+1a
+49
+37
+1a
+1a
+39
+1a
+51
+3c
+00
+00
+1d
+89
+f1
+b8
+12
+39
+84
+7b
+01
+7a
+4c
+79
+e1
+7d
+01
+7c
+00
+7f
+c2
+7e
+7f
+d1
+cf
+90
+4c
+e1
+e0
+b4
+01
+37
+90
+4c
+75
+e0
+70
+02
+a3
+e0
+70
+04
+f1
+7f
+80
+f2
+90
+4c
+bf
+e0
+fe
+a3
+e0
+ff
+c3
+90
+4c
+76
+e0
+9f
+90
+4c
+75
+e0
+9e
+50
+14
+90
+4c
+b4
+74
+02
+f0
+e4
+90
+4c
+c4
+f0
+90
+4c
+fa
+f0
+a3
+74
+64
+f0
+22
+7b
+01
+7a
+4c
+79
+9f
+7d
+01
+7c
+00
+7f
+bd
+7e
+7f
+d1
+cf
+90
+4c
+9f
+e0
+d3
+94
+03
+40
+02
+e4
+f0
+90
+4c
+9f
+e0
+90
+4c
+a2
+f0
+12
+0f
+e5
+7f
+0a
+12
+0f
+6e
+7b
+01
+7a
+4c
+79
+d1
+7d
+02
+7c
+00
+7f
+be
+7e
+7f
+d1
+cf
+90
+4c
+d1
+e0
+b4
+ff
+19
+a3
+e0
+b4
+ff
+14
+90
+4c
+73
+e0
+a3
+e0
+90
+4c
+d1
+f0
+90
+4c
+71
+e0
+a3
+e0
+90
+4c
+d2
+f0
+7b
+01
+7a
+4c
+79
+a0
+7d
+01
+7c
+00
+7f
+c0
+7e
+7f
+d1
+cf
+7f
+0a
+12
+0f
+6e
+90
+4c
+a0
+e0
+d3
+94
+02
+40
+11
+e4
+f0
+7b
+01
+7a
+4c
+79
+a0
+7d
+01
+fc
+7f
+c0
+7e
+7f
+d1
+20
+90
+4d
+fa
+74
+02
+f0
+90
+4c
+9f
+e0
+d3
+94
+02
+40
+02
+e4
+f0
+90
+4c
+9f
+e0
+90
+4c
+a2
+f0
+e1
+da
+f1
+bf
+f1
+8d
+e4
+90
+4c
+f6
+f0
+22
+90
+4c
+a2
+e0
+d3
+94
+00
+50
+02
+a1
+89
+e0
+94
+04
+40
+02
+a1
+89
+e0
+75
+f0
+1e
+a4
+24
+df
+f9
+74
+4d
+35
+f0
+fa
+7b
+01
+7d
+1e
+7c
+00
+12
+28
+19
+90
+4c
+9e
+74
+03
+f0
+22
+90
+4d
+e5
+e0
+ff
+02
+07
+8c
+90
+4c
+a4
+74
+03
+f0
+e4
+a3
+f0
+11
+c3
+e4
+90
+4c
+cd
+f0
+90
+4c
+ca
+f0
+90
+4c
+9f
+74
+fe
+f0
+90
+4c
+a2
+f0
+e4
+90
+4c
+f8
+f0
+90
+4d
+23
+74
+03
+f0
+90
+4d
+f6
+74
+0a
+f0
+90
+4f
+20
+e0
+64
+31
+70
+2b
+90
+4e
+61
+f0
+90
+4c
+c4
+74
+1e
+f0
+90
+4b
+eb
+e0
+b4
+0f
+12
+a3
+e0
+b4
+0f
+0d
+a3
+e0
+b4
+0f
+08
+a3
+e0
+64
+0f
+70
+02
+a1
+89
+90
+4c
+9e
+74
+02
+f0
+a1
+8a
+90
+4c
+c4
+e0
+60
+02
+a1
+89
+22
+e4
+90
+4c
+a4
+f0
+a3
+f0
+90
+4c
+c2
+f0
+a3
+f0
+90
+4c
+ca
+04
+f0
+90
+4c
+cc
+e0
+60
+0a
+11
+c3
+90
+4c
+cc
+e0
+ff
+02
+09
+70
+90
+4c
+cb
+e0
+b4
+01
+05
+e4
+f0
+02
+0f
+d8
+90
+4c
+cf
+e0
+70
+02
+a1
+89
+90
+4d
+e5
+e0
+ff
+02
+07
+8c
+90
+4c
+a8
+74
+03
+f0
+a3
+74
+01
+f0
+e4
+90
+4c
+a6
+f0
+a3
+f0
+90
+47
+f4
+e0
+a3
+20
+e7
+02
+a1
+89
+90
+4d
+e8
+74
+32
+f0
+22
+90
+4c
+a8
+74
+04
+f0
+e4
+a3
+f0
+7f
+0e
+12
+08
+b3
+7f
+02
+12
+08
+b3
+90
+4c
+a2
+e0
+90
+4c
+9f
+f0
+90
+4c
+c8
+e0
+60
+21
+90
+4c
+a0
+e0
+ff
+90
+4c
+a2
+e0
+75
+f0
+1e
+a4
+24
+fc
+f5
+82
+e4
+34
+4d
+f5
+83
+ef
+f0
+12
+27
+2f
+90
+4c
+9e
+74
+03
+f0
+e4
+90
+4c
+c2
+f0
+a3
+f0
+90
+4c
+c8
+f0
+90
+4c
+f8
+f0
+11
+c3
+e4
+90
+4c
+ca
+f0
+90
+4d
+e8
+f0
+90
+42
+13
+74
+1a
+f0
+e4
+90
+4d
+f0
+f0
+90
+00
+40
+e0
+70
+14
+a3
+e0
+70
+10
+a3
+e0
+70
+0c
+a3
+e0
+70
+08
+a3
+e0
+70
+04
+a3
+e0
+60
+e6
+7f
+05
+02
+08
+b3
+7f
+04
+12
+08
+b3
+7f
+0a
+02
+0f
+6e
+e4
+90
+05
+4f
+f0
+90
+4d
+ed
+04
+f0
+e4
+90
+4d
+e8
+f0
+90
+47
+f4
+e0
+a3
+30
+e7
+10
+90
+4d
+f0
+74
+01
+f0
+90
+05
+4f
+74
+04
+f0
+ff
+02
+08
+b3
+e4
+90
+4c
+cf
+f0
+90
+4c
+a9
+74
+02
+f0
+90
+4c
+a8
+04
+f0
+22
+90
+4c
+a4
+e0
+b4
+03
+08
+e4
+90
+4c
+a8
+f0
+a3
+f0
+22
+90
+4c
+a8
+e0
+90
+4c
+aa
+f0
+e4
+90
+4c
+a8
+f0
+a3
+f0
+90
+4c
+ca
+04
+f0
+e4
+90
+4d
+e8
+f0
+90
+4d
+f0
+e0
+64
+01
+70
+2f
+90
+4c
+a2
+e0
+d3
+94
+00
+40
+21
+e0
+94
+04
+50
+1c
+e0
+75
+f0
+1e
+a4
+24
+df
+f9
+74
+4d
+35
+f0
+fa
+7b
+01
+7d
+1e
+7c
+00
+12
+28
+19
+90
+4c
+9e
+74
+03
+f0
+e4
+90
+4d
+f0
+f0
+90
+4c
+cb
+e0
+b4
+01
+05
+e4
+f0
+02
+0f
+d8
+90
+4c
+cc
+e0
+60
+04
+ff
+02
+09
+70
+90
+4c
+cf
+e0
+60
+08
+90
+4d
+e5
+e0
+ff
+02
+07
+8c
+90
+4c
+a4
+e0
+64
+01
+70
+02
+a1
+89
+90
+4f
+20
+e0
+64
+13
+70
+02
+a1
+89
+90
+4c
+aa
+e0
+64
+04
+60
+07
+7f
+05
+12
+09
+70
+80
+03
+12
+0f
+d8
+e4
+90
+4c
+c2
+f0
+a3
+f0
+22
+90
+4c
+a6
+74
+03
+f0
+a3
+74
+01
+f0
+e4
+a3
+f0
+a3
+f0
+7f
+0e
+12
+08
+b3
+7f
+02
+12
+08
+b3
+90
+4c
+c8
+e0
+60
+18
+90
+4c
+a0
+e0
+ff
+90
+4c
+a2
+e0
+75
+f0
+1e
+a4
+24
+fc
+f5
+82
+e4
+34
+4d
+f5
+83
+ef
+f0
+90
+4d
+f5
+e0
+70
+06
+90
+4d
+e3
+74
+14
+f0
+e4
+90
+4c
+c8
+f0
+90
+4c
+c2
+f0
+a3
+f0
+22
+90
+4c
+a6
+74
+04
+f0
+e4
+a3
+f0
+11
+c3
+e4
+90
+4c
+ca
+f0
+90
+4d
+ea
+74
+0a
+f0
+90
+4c
+a2
+e0
+90
+4c
+9f
+f0
+90
+4c
+9e
+74
+03
+f0
+22
+90
+4c
+a2
+e0
+14
+fd
+7f
+01
+12
+0f
+f1
+90
+4c
+a2
+e0
+90
+4c
+9f
+f0
+90
+4c
+9e
+74
+03
+f0
+22
+90
+4d
+18
+12
+05
+d7
+00
+00
+00
+00
+e4
+90
+4d
+e6
+f0
+90
+4d
+ed
+04
+f0
+90
+4c
+a7
+04
+f0
+90
+4c
+a6
+04
+f0
+22
+90
+4c
+a6
+e0
+90
+4c
+aa
+f0
+e4
+90
+4c
+a6
+f0
+a3
+f0
+90
+4c
+ca
+04
+f0
+e4
+90
+4d
+1c
+f0
+90
+4c
+cb
+e0
+b4
+01
+05
+e4
+f0
+02
+0f
+d8
+90
+4c
+cc
+e0
+60
+04
+ff
+02
+09
+70
+90
+4c
+cf
+e0
+60
+08
+90
+4d
+e5
+e0
+ff
+02
+07
+8c
+12
+0f
+d8
+e4
+90
+4c
+c2
+f0
+a3
+f0
+22
+90
+4c
+9e
+e0
+70
+02
+c1
+1f
+90
+4c
+bf
+e0
+fe
+a3
+e0
+ff
+c3
+90
+4c
+76
+e0
+9f
+90
+4c
+75
+e0
+9e
+40
+78
+c2
+01
+7f
+ff
+12
+0f
+5c
+90
+4c
+9e
+e0
+b4
+02
+22
+7b
+01
+7a
+4c
+79
+00
+7d
+04
+7c
+00
+7f
+52
+7e
+7f
+d1
+20
+7b
+01
+7a
+4c
+79
+a0
+7d
+01
+7c
+00
+7f
+57
+7e
+7f
+d1
+20
+80
+17
+90
+4c
+9e
+e0
+b4
+03
+10
+7b
+01
+7a
+4d
+79
+fd
+7d
+5a
+7c
+00
+7f
+60
+7e
+7f
+d1
+20
+7b
+01
+7a
+4c
+79
+9f
+7d
+01
+7c
+00
+7f
+bd
+7e
+7f
+d1
+20
+7b
+01
+7a
+4c
+79
+d1
+7d
+02
+7c
+00
+7f
+be
+7e
+7f
+d1
+20
+d2
+01
+7f
+ff
+12
+0f
+5c
+7f
+0a
+12
+0f
+6e
+e4
+90
+4c
+9e
+f0
+22
+90
+4e
+9f
+ee
+f0
+a3
+ef
+f0
+a3
+ec
+f0
+a3
+ed
+f0
+a3
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+90
+4e
+a1
+e0
+70
+02
+a3
+e0
+70
+02
+c1
+ce
+90
+4e
+9f
+e0
+fe
+a3
+e0
+ff
+44
+0f
+24
+01
+fd
+e4
+3e
+fc
+c3
+ed
+9f
+ff
+ec
+9e
+fe
+90
+4e
+a6
+f0
+a3
+ef
+f0
+90
+4e
+a1
+e0
+fc
+a3
+e0
+fd
+d3
+9f
+ec
+9e
+40
+0a
+90
+4e
+a6
+e0
+fe
+a3
+e0
+ff
+80
+04
+ae
+04
+af
+05
+90
+4e
+a6
+ee
+f0
+fc
+a3
+ef
+f0
+fd
+c3
+90
+4e
+a2
+e0
+9d
+f0
+90
+4e
+a1
+e0
+9c
+f0
+90
+4e
+9f
+e0
+fe
+a3
+e0
+ff
+90
+4e
+a3
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+12
+3e
+6d
+7f
+0a
+12
+0f
+6e
+90
+4e
+a6
+e0
+fe
+a3
+e0
+ff
+90
+4e
+a4
+ee
+8f
+f0
+12
+04
+63
+90
+4e
+a0
+e0
+2f
+f0
+90
+4e
+9f
+e0
+3e
+f0
+c1
+37
+22
+90
+4e
+e0
+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
+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
+9a
+ee
+f0
+a3
+ef
+f0
+90
+4e
+e0
+e0
+fc
+a3
+e0
+fa
+ec
+ff
+ea
+fe
+ef
+90
+80
+9e
+ee
+f0
+a3
+ef
+f0
+7a
+0b
+79
+83
+7e
+0b
+7f
+83
+74
+83
+fc
+74
+0b
+ff
+ec
+fe
+ef
+90
+80
+9c
+ee
+f0
+a3
+ef
+f0
+90
+80
+90
+74
+02
+f0
+90
+80
+9c
+a3
+e0
+20
+e7
+07
+90
+80
+90
+e0
+44
+01
+f0
+90
+80
+06
+e0
+44
+04
+f0
+f1
+d2
+90
+4e
+e2
+e0
+a3
+e0
+fa
+a3
+e0
+ae
+02
+ff
+7b
+01
+7a
+0b
+79
+83
+90
+4e
+e0
+e0
+a3
+e0
+90
+4e
+d0
+f0
+02
+10
+c8
+e4
+90
+0b
+7f
+f0
+90
+0b
+7e
+f0
+7f
+01
+02
+0f
+6e
+90
+80
+80
+e4
+f0
+a3
+f0
+a3
+f0
+12
+36
+92
+e4
+90
+4f
+1e
+f0
+f0
+90
+4f
+1e
+e0
+90
+06
+d6
+93
+ff
+60
+0d
+c2
+05
+12
+36
+af
+90
+4f
+1e
+e0
+04
+f0
+80
+e8
+22
+f1
+bf
+f1
+8d
+02
+0c
+ac
+90
+80
+91
+74
+0d
+f0
+a3
+04
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+a3
+14
+f0
+22
+90
+81
+2c
+e0
+30
+e5
+f9
+22
+90
+4d
+fa
+74
+02
+f0
+7b
+01
+7a
+4d
+79
+fd
+7d
+5a
+7c
+00
+7f
+60
+7e
+7f
+d1
+cf
+7f
+0a
+12
+0f
+6e
+7b
+01
+7a
+4c
+79
+00
+7d
+04
+7c
+00
+7f
+52
+7e
+7f
+12
+1e
+cf
+7f
+0a
+12
+0f
+6e
+7b
+01
+7a
+4c
+79
+a0
+7d
+01
+7c
+00
+7f
+57
+7e
+7f
+12
+1e
+cf
+7f
+0a
+12
+0f
+6e
+90
+4c
+a2
+e0
+ff
+d3
+94
+03
+50
+20
+ef
+c3
+94
+01
+40
+1a
+ef
+75
+f0
+1e
+a4
+24
+fc
+f5
+82
+e4
+34
+4d
+f5
+83
+e0
+90
+4c
+a0
+f0
+90
+4c
+a2
+e0
+02
+09
+70
+7f
+08
+02
+09
+70
+90
+4c
+9f
+e0
+ff
+64
+fe
+60
+03
+ef
+70
+08
+7f
+22
+12
+08
+b3
+7f
+01
+22
+7f
+00
+22
+7b
+01
+7a
+4c
+79
+d1
+7d
+02
+7c
+00
+7f
+be
+7e
+7f
+12
+1e
+cf
+90
+4c
+d1
+e0
+04
+f0
+a3
+e0
+04
+f0
+90
+4c
+d1
+e0
+90
+44
+fa
+f0
+90
+4c
+d2
+e0
+90
+44
+fb
+f0
+90
+4d
+d0
+e0
+90
+44
+fc
+f0
+90
+4d
+d1
+e0
+90
+44
+fd
+f0
+90
+4d
+d2
+e0
+90
+44
+fe
+f0
+22
+90
+4d
+fb
+e0
+60
+45
+e0
+14
+f0
+e0
+70
+3f
+90
+4c
+cc
+e0
+b4
+05
+38
+90
+47
+f4
+e0
+54
+40
+fe
+a3
+e0
+54
+08
+64
+08
+70
+03
+ee
+64
+40
+60
+24
+e4
+90
+4d
+e3
+f0
+90
+4c
+c8
+74
+3c
+f0
+e4
+90
+4c
+cd
+f0
+90
+4e
+61
+f0
+90
+4d
+e2
+f0
+11
+67
+7f
+2c
+12
+08
+b3
+e4
+90
+4c
+cc
+f0
+22
+31
+2a
+90
+4c
+c3
+e0
+04
+f0
+70
+06
+90
+4c
+c2
+e0
+04
+f0
+51
+82
+12
+16
+e4
+12
+0b
+71
+11
+ab
+51
+07
+90
+4c
+a9
+e0
+64
+02
+60
+07
+90
+4c
+a7
+e0
+b4
+02
+07
+e4
+90
+4c
+c2
+f0
+a3
+f0
+22
+90
+4d
+fa
+e0
+64
+02
+60
+02
+21
+ea
+90
+4c
+c8
+e0
+60
+4d
+e4
+90
+4c
+c2
+f0
+a3
+f0
+90
+4c
+db
+f0
+90
+4c
+c8
+e0
+14
+f0
+e0
+30
+e0
+1c
+90
+4c
+ab
+e0
+64
+01
+60
+14
+90
+4c
+a2
+e0
+ff
+d3
+94
+02
+50
+0a
+ef
+c3
+94
+01
+40
+04
+7f
+1e
+31
+eb
+90
+4c
+c8
+e0
+70
+3f
+90
+4c
+a3
+e0
+90
+4c
+a2
+f0
+90
+4c
+9f
+f0
+7f
+0d
+12
+09
+70
+12
+0f
+d8
+80
+29
+90
+4c
+cd
+e0
+60
+23
+e4
+90
+4c
+c2
+f0
+a3
+f0
+90
+4c
+cd
+e0
+14
+f0
+e0
+30
+e0
+04
+7f
+1e
+31
+eb
+90
+4c
+cd
+e0
+70
+08
+7f
+0a
+12
+0f
+6e
+12
+0f
+d8
+90
+4c
+c8
+e0
+70
+34
+90
+4c
+cd
+e0
+70
+2e
+90
+4c
+c1
+e0
+60
+23
+c3
+90
+4c
+c3
+e0
+94
+06
+90
+4c
+c2
+e0
+94
+00
+50
+0e
+90
+4c
+c1
+e0
+04
+f0
+e0
+30
+e1
+0f
+7f
+1e
+80
+0c
+e4
+90
+4c
+c1
+f0
+22
+e4
+90
+4c
+c1
+f0
+22
+90
+4f
+24
+ef
+f0
+7b
+01
+7a
+80
+79
+74
+51
+94
+92
+09
+90
+4f
+24
+e0
+ff
+a2
+09
+b3
+92
+01
+02
+0f
+5c
+90
+4c
+c8
+e0
+60
+4b
+e4
+90
+4c
+c2
+f0
+a3
+f0
+90
+4c
+db
+f0
+90
+4c
+c8
+e0
+14
+f0
+e0
+30
+e0
+1c
+90
+4c
+ab
+e0
+64
+01
+60
+14
+90
+4c
+a2
+e0
+ff
+d3
+94
+02
+50
+0a
+ef
+c3
+94
+01
+40
+04
+7f
+1e
+31
+eb
+90
+4c
+c8
+e0
+70
+14
+90
+4c
+a3
+e0
+90
+4c
+a2
+f0
+90
+4c
+9f
+f0
+7f
+0d
+12
+09
+70
+12
+0f
+d8
+90
+4c
+cd
+e0
+60
+23
+e4
+90
+4c
+c2
+f0
+a3
+f0
+90
+4c
+cd
+e0
+14
+f0
+e0
+30
+e0
+04
+7f
+1e
+31
+eb
+90
+4c
+cd
+e0
+70
+08
+7f
+0a
+12
+0f
+6e
+12
+0f
+d8
+22
+90
+4c
+b2
+e0
+60
+0b
+14
+f0
+e0
+70
+06
+74
+05
+f0
+12
+3b
+b5
+22
+ad
+07
+e4
+90
+4f
+22
+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
+fc
+90
+4f
+22
+e0
+ff
+74
+01
+7e
+00
+a8
+07
+08
+80
+05
+c3
+33
+ce
+33
+ce
+d8
+f9
+ff
+ee
+5c
+fe
+ef
+5d
+4e
+24
+ff
+22
+7b
+01
+7a
+81
+79
+1c
+80
+b9
+90
+4f
+23
+ef
+f0
+51
+d3
+92
+08
+90
+4f
+23
+e0
+ff
+a2
+08
+b3
+92
+07
+ef
+f4
+70
+02
+61
+79
+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
+f0
+22
+74
+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
+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
+e4
+ff
+90
+4f
+1f
+f0
+fe
+fd
+ef
+90
+06
+d6
+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
+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
+e4
+34
+80
+f5
+83
+e0
+5b
+f0
+0f
+80
+b0
+d1
+fb
+90
+81
+1c
+e0
+90
+4f
+1f
+f0
+90
+4d
+eb
+e0
+60
+20
+e4
+ff
+51
+db
+7f
+01
+51
+db
+7f
+02
+51
+db
+7f
+03
+51
+db
+7f
+04
+51
+db
+7f
+05
+51
+db
+7f
+06
+51
+db
+7f
+07
+41
+db
+90
+4f
+1f
+e0
+ff
+90
+00
+a3
+f0
+ef
+f4
+90
+00
+a7
+f0
+22
+d1
+da
+91
+81
+90
+4c
+fa
+e0
+70
+02
+a3
+e0
+70
+03
+12
+15
+df
+12
+1d
+8a
+12
+0e
+9d
+90
+4d
+5a
+e0
+60
+03
+12
+17
+a6
+90
+0b
+7e
+e0
+14
+60
+13
+24
+fe
+70
+d7
+71
+7a
+7f
+07
+12
+0f
+9c
+12
+0c
+ac
+12
+1f
+7f
+80
+fe
+90
+4c
+c9
+e0
+70
+16
+90
+4c
+cb
+e0
+70
+10
+90
+4c
+fa
+e0
+70
+02
+a3
+e0
+70
+06
+90
+4c
+d7
+e0
+60
+04
+d1
+ef
+80
+a8
+71
+7a
+90
+4c
+f6
+e0
+60
+05
+7f
+07
+12
+0c
+aa
+12
+1f
+7f
+80
+96
+80
+94
+22
+7a
+0c
+79
+4b
+90
+4f
+04
+74
+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
+70
+02
+c1
+30
+7e
+0c
+7f
+4b
+7d
+03
+d1
+8a
+90
+4f
+04
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+12
+03
+b6
+b4
+02
+2b
+90
+4f
+05
+e4
+75
+f0
+02
+12
+04
+63
+90
+4f
+04
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+12
+03
+b6
+ff
+90
+4e
+74
+e0
+a3
+e0
+fa
+a3
+e0
+f5
+82
+8a
+83
+12
+06
+32
+c1
+30
+90
+4f
+04
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+12
+03
+b6
+64
+04
+70
+59
+90
+4f
+05
+75
+f0
+01
+12
+04
+63
+7e
+0c
+7f
+4e
+90
+4f
+04
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+12
+03
+b6
+14
+fd
+d1
+8a
+90
+4f
+04
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+24
+01
+f9
+e4
+3a
+fa
+c0
+02
+c0
+01
+90
+4f
+04
+e0
+a3
+e0
+fa
+a3
+e0
+f9
+12
+03
+b6
+fd
+7c
+00
+90
+4e
+77
+e0
+a3
+e0
+fa
+a3
+e0
+f5
+82
+8a
+83
+d0
+01
+d0
+02
+12
+06
+32
+c1
+30
+90
+4f
+04
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+12
+03
+b6
+64
+05
+70
+59
+90
+4f
+05
+75
+f0
+01
+12
+04
+63
+7e
+0c
+7f
+4e
+90
+4f
+04
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+12
+03
+b6
+14
+fd
+d1
+8a
+90
+4f
+04
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+24
+01
+f9
+e4
+3a
+fa
+c0
+02
+c0
+01
+90
+4f
+04
+e0
+a3
+e0
+fa
+a3
+e0
+f9
+12
+03
+b6
+fd
+7c
+00
+90
+4e
+80
+e0
+a3
+e0
+fa
+a3
+e0
+f5
+82
+8a
+83
+d0
+01
+d0
+02
+12
+06
+32
+80
+6d
+90
+4f
+04
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+12
+03
+b6
+64
+03
+70
+59
+90
+4f
+05
+75
+f0
+01
+12
+04
+63
+7e
+0c
+7f
+4e
+90
+4f
+04
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+12
+03
+b6
+14
+fd
+d1
+8a
+90
+4f
+04
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+24
+01
+f9
+e4
+3a
+fa
+c0
+02
+c0
+01
+90
+4f
+04
+e0
+a3
+e0
+fa
+a3
+e0
+f9
+12
+03
+b6
+fd
+7c
+00
+90
+4e
+83
+e0
+a3
+e0
+fa
+a3
+e0
+f5
+82
+8a
+83
+d0
+01
+d0
+02
+12
+06
+32
+80
+02
+80
+fe
+90
+4b
+a5
+e0
+fe
+a3
+e0
+ff
+90
+4c
+3e
+e0
+6e
+70
+03
+a3
+e0
+6f
+60
+22
+90
+4e
+7a
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+4a
+60
+37
+12
+06
+2e
+90
+4b
+a5
+e0
+ff
+a3
+e0
+90
+4c
+3e
+cf
+f0
+a3
+ef
+f0
+80
+ca
+90
+4c
+6d
+e0
+ff
+a3
+e0
+6f
+60
+19
+90
+4e
+7d
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+4a
+60
+0b
+12
+06
+2e
+90
+4c
+6d
+e0
+a3
+f0
+80
+dd
+22
+90
+4f
+16
+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
+4f
+16
+e4
+75
+f0
+01
+12
+04
+79
+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
+7b
+01
+7a
+4e
+79
+62
+78
+74
+7c
+4e
+7d
+01
+7e
+00
+7f
+12
+02
+03
+90
+81
+12
+90
+0b
+7f
+74
+01
+f0
+e4
+90
+0b
+7e
+f0
+22
+e4
+ff
+ef
+fd
+7c
+00
+24
+78
+fb
+ec
+34
+80
+8b
+82
+f5
+83
+e0
+fe
+ed
+24
+70
+fd
+ec
+34
+80
+8d
+82
+f5
+83
+e0
+4e
+f4
+fe
+ef
+24
+7c
+fd
+ec
+34
+80
+8d
+82
+f5
+83
+ee
+f0
+0f
+ef
+b4
+04
+cf
+22
+90
+4c
+a2
+e0
+14
+90
+4f
+1a
+f0
+e4
+90
+4d
+ed
+f0
+90
+4f
+1a
+e0
+fd
+7f
+02
+12
+0f
+f1
+90
+4f
+1a
+e0
+ff
+60
+3e
+90
+4d
+fd
+e0
+64
+02
+70
+36
+ef
+75
+f0
+1e
+a4
+24
+fe
+f9
+74
+4d
+35
+f0
+fa
+90
+4e
+c1
+74
+01
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+a3
+74
+06
+f0
+7b
+01
+7a
+4d
+79
+fe
+12
+28
+46
+ef
+60
+0d
+7b
+01
+7a
+4d
+79
+fd
+7d
+1e
+7c
+00
+12
+28
+19
+90
+4f
+1a
+e0
+ff
+64
+01
+60
+3e
+90
+4e
+1b
+e0
+64
+02
+70
+36
+ef
+75
+f0
+1e
+a4
+24
+fe
+f9
+74
+4d
+35
+f0
+fa
+90
+4e
+c1
+74
+01
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+a3
+74
+06
+f0
+7b
+01
+7a
+4e
+79
+1c
+12
+28
+46
+ef
+60
+0d
+7b
+01
+7a
+4e
+79
+1b
+7d
+1e
+7c
+00
+12
+28
+19
+90
+4f
+1a
+e0
+ff
+64
+02
+60
+3c
+90
+4e
+39
+e0
+64
+02
+70
+34
+ef
+75
+f0
+1e
+a4
+24
+fe
+f9
+74
+4d
+35
+f0
+fa
+90
+4e
+c1
+74
+01
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+a3
+74
+06
+f0
+7b
+01
+7a
+4e
+79
+3a
+11
+46
+ef
+60
+0c
+7b
+01
+7a
+4e
+79
+39
+7d
+1e
+7c
+00
+11
+19
+22
+90
+4f
+0d
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+ed
+1d
+ae
+04
+70
+01
+1c
+4e
+60
+17
+90
+4f
+0d
+e0
+fb
+a3
+e4
+75
+f0
+01
+12
+04
+79
+a9
+f0
+fa
+74
+ff
+12
+03
+fc
+80
+df
+22
+90
+4e
+be
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+e4
+ff
+90
+4e
+c4
+e0
+fe
+ef
+c3
+9e
+50
+30
+90
+4e
+c1
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+8f
+82
+75
+83
+00
+12
+03
+cf
+fe
+90
+4e
+be
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+8f
+82
+75
+83
+00
+12
+03
+cf
+6e
+60
+03
+7f
+00
+22
+0f
+80
+c6
+7f
+01
+22
+e4
+90
+4e
+94
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+a3
+f0
+91
+b4
+7a
+4d
+79
+a8
+90
+4e
+c1
+74
+01
+f0
+a3
+74
+4d
+f0
+a3
+74
+a8
+f0
+a3
+74
+14
+f0
+7b
+01
+7a
+4d
+79
+bc
+11
+46
+ef
+60
+16
+7b
+01
+7a
+4d
+79
+bc
+7d
+14
+51
+ea
+ef
+70
+09
+90
+4c
+ad
+e0
+44
+02
+f0
+80
+0c
+90
+4c
+ad
+e0
+54
+fd
+f0
+e4
+90
+4c
+af
+f0
+e4
+90
+4e
+94
+f0
+90
+4e
+94
+e0
+ff
+90
+06
+d6
+93
+70
+02
+21
+c0
+74
+bc
+2f
+f5
+82
+e4
+34
+4d
+f5
+83
+e0
+90
+4e
+97
+f0
+e0
+ff
+51
+dc
+90
+4e
+9e
+ef
+f0
+c3
+94
+02
+50
+02
+21
+a9
+e4
+90
+4e
+95
+f0
+90
+4e
+95
+e0
+ff
+c3
+94
+08
+50
+7b
+74
+01
+7e
+00
+a8
+07
+08
+80
+05
+c3
+33
+ce
+33
+ce
+d8
+f9
+ff
+90
+4e
+97
+e0
+fd
+e4
+ef
+5d
+60
+58
+e4
+90
+4e
+96
+f0
+90
+4e
+96
+e0
+ff
+90
+06
+d6
+93
+60
+48
+90
+4e
+94
+e0
+fe
+ef
+6e
+60
+37
+90
+4e
+96
+e0
+24
+bc
+f5
+82
+e4
+34
+4d
+f5
+83
+e0
+fd
+7c
+00
+90
+4e
+95
+e0
+ff
+74
+01
+7e
+00
+a8
+07
+08
+80
+05
+c3
+33
+ce
+33
+ce
+d8
+f9
+ff
+ee
+5c
+fe
+ef
+5d
+4e
+60
+08
+90
+4e
+9d
+74
+01
+f0
+80
+08
+90
+4e
+96
+e0
+04
+f0
+80
+ad
+90
+4e
+95
+e0
+04
+f0
+21
+24
+90
+4e
+97
+e0
+ff
+60
+08
+51
+dc
+90
+4e
+9b
+e0
+2f
+f0
+90
+4e
+94
+e0
+04
+f0
+01
+f3
+90
+4e
+9b
+e0
+90
+4d
+f4
+f0
+e4
+90
+4e
+94
+f0
+90
+4e
+94
+e0
+ff
+90
+06
+d6
+93
+70
+02
+41
+b0
+74
+93
+2f
+f5
+82
+e4
+34
+4d
+f5
+83
+e0
+fe
+74
+bc
+2f
+f5
+82
+e4
+34
+4d
+f5
+83
+e0
+6e
+90
+4e
+97
+f0
+90
+4e
+94
+e0
+ff
+24
+bc
+f5
+82
+e4
+34
+4d
+f5
+83
+e0
+90
+4e
+9a
+f0
+90
+4e
+97
+e0
+70
+04
+41
+a8
+41
+a8
+90
+4e
+9d
+e0
+60
+07
+7b
+00
+7a
+00
+79
+00
+22
+74
+bc
+2f
+f5
+82
+e4
+34
+4d
+f5
+83
+e0
+fe
+74
+93
+2f
+f5
+82
+e4
+34
+4d
+f5
+83
+ee
+f0
+e4
+90
+4e
+95
+f0
+90
+4e
+95
+e0
+ff
+c3
+94
+08
+50
+5b
+90
+4e
+97
+e0
+30
+e0
+3c
+90
+4e
+94
+e0
+fe
+33
+33
+33
+54
+f8
+fe
+ef
+4e
+90
+4e
+99
+f0
+a3
+e0
+ff
+90
+4e
+99
+e0
+90
+06
+eb
+93
+fd
+12
+34
+94
+90
+4e
+9c
+ef
+f0
+90
+4e
+9a
+e0
+30
+e0
+09
+90
+4e
+9c
+e0
+ff
+71
+1a
+80
+07
+90
+4e
+9c
+e0
+ff
+71
+d3
+90
+4e
+97
+e0
+ff
+c3
+13
+f0
+90
+4e
+9a
+e0
+ff
+c3
+13
+f0
+90
+4e
+95
+e0
+04
+f0
+80
+9b
+90
+4e
+98
+74
+01
+f0
+90
+4e
+94
+e0
+04
+f0
+21
+cd
+90
+4e
+57
+e0
+b4
+03
+0a
+90
+4d
+ee
+e0
+b4
+01
+03
+74
+02
+f0
+90
+4e
+98
+e0
+70
+07
+90
+4d
+ee
+e0
+b4
+02
+07
+7b
+01
+7a
+4e
+79
+b0
+22
+7b
+00
+7a
+00
+79
+00
+22
+e4
+fe
+ef
+60
+06
+14
+5f
+ff
+0e
+80
+f7
+af
+06
+22
+90
+4f
+01
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+e4
+ff
+ef
+c3
+9d
+50
+1b
+90
+4f
+01
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+8f
+82
+75
+83
+00
+12
+03
+cf
+60
+03
+7f
+00
+22
+0f
+80
+e0
+7f
+01
+22
+e4
+fe
+fd
+f9
+fc
+ef
+c3
+94
+e0
+40
+20
+ef
+d3
+94
+e7
+50
+1a
+90
+4e
+b0
+e0
+fe
+ef
+54
+07
+ff
+74
+01
+a8
+07
+08
+80
+02
+c3
+33
+d8
+fc
+4e
+90
+4e
+b0
+f0
+22
+e4
+fe
+74
+b1
+2e
+f5
+82
+e4
+34
+4e
+f5
+83
+e0
+60
+01
+0d
+0e
+ee
+b4
+06
+ed
+e4
+fe
+74
+b1
+2e
+f5
+82
+e4
+34
+4e
+f5
+83
+e0
+b5
+07
+08
+ed
+b4
+06
+04
+79
+01
+80
+27
+74
+b1
+2e
+f5
+82
+e4
+34
+4e
+f5
+83
+e0
+70
+15
+90
+4d
+fc
+e0
+6f
+60
+13
+74
+b1
+2e
+f5
+82
+e4
+34
+4e
+f5
+83
+ef
+f0
+80
+05
+0e
+ee
+b4
+06
+c3
+ed
+64
+06
+70
+34
+e9
+70
+31
+ef
+d3
+94
+70
+50
+2b
+ef
+13
+13
+13
+54
+1f
+fc
+24
+d4
+f5
+82
+e4
+34
+4d
+f5
+83
+c0
+83
+c0
+82
+e0
+fe
+ef
+54
+07
+ff
+74
+01
+a8
+07
+08
+80
+02
+c3
+33
+d8
+fc
+4e
+d0
+82
+d0
+83
+f0
+22
+e4
+fe
+90
+4f
+1c
+f0
+fd
+fc
+ef
+54
+f0
+64
+f0
+60
+07
+ef
+54
+d0
+fb
+bb
+d0
+0c
+90
+4e
+57
+e0
+b4
+02
+0b
+74
+03
+f0
+80
+06
+90
+4d
+ee
+74
+01
+f0
+ef
+c3
+94
+e0
+40
+21
+ef
+d3
+94
+e7
+50
+1b
+90
+4e
+b0
+e0
+fe
+ef
+54
+07
+ff
+74
+01
+a8
+07
+08
+80
+02
+c3
+33
+d8
+fc
+f4
+5e
+90
+4e
+b0
+f0
+22
+e4
+fe
+ec
+70
+21
+74
+b1
+2e
+f5
+82
+e4
+34
+4e
+f5
+83
+e0
+6f
+70
+47
+ee
+b4
+05
+0b
+24
+b1
+f5
+82
+e4
+34
+4e
+f5
+83
+e4
+f0
+7c
+01
+80
+34
+74
+b1
+2e
+f5
+82
+e4
+34
+4e
+f5
+83
+e0
+fb
+74
+b0
+2e
+f5
+82
+e4
+34
+4e
+f5
+83
+eb
+f0
+74
+b1
+2e
+f5
+82
+e4
+34
+4e
+f5
+83
+e0
+60
+14
+ee
+b4
+05
+0b
+24
+b1
+f5
+82
+e4
+34
+4e
+f5
+83
+e4
+f0
+0e
+ee
+b4
+06
+a3
+ef
+d3
+94
+70
+50
+2c
+ef
+13
+13
+13
+54
+1f
+fd
+24
+d4
+f5
+82
+e4
+34
+4d
+f5
+83
+c0
+83
+c0
+82
+e0
+fe
+ef
+54
+07
+ff
+74
+01
+a8
+07
+08
+80
+02
+c3
+33
+d8
+fc
+f4
+5e
+d0
+82
+d0
+83
+f0
+22
+e4
+ff
+90
+4e
+fe
+f0
+fe
+fd
+a3
+f0
+a3
+f0
+ef
+90
+06
+d6
+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
+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
+e4
+34
+80
+f5
+83
+e0
+5b
+f0
+90
+81
+1c
+e0
+f4
+fc
+74
+bc
+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
+81
+c0
+e4
+ff
+ef
+90
+06
+d6
+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
+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
+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
+a1
+45
+e4
+ff
+ef
+90
+06
+d6
+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
+82
+d0
+83
+f0
+0f
+80
+b9
+22
+ad
+07
+ac
+06
+90
+4e
+57
+e0
+64
+02
+60
+0e
+74
+01
+f0
+90
+4e
+58
+04
+f0
+ef
+a3
+f0
+ee
+a3
+f0
+22
+90
+4e
+e5
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+e4
+a3
+f0
+f0
+90
+4e
+e8
+e0
+ff
+c3
+94
+06
+40
+03
+02
+30
+dc
+90
+4e
+e5
+e0
+fb
+a3
+e0
+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
+30
+d3
+12
+03
+b6
+fb
+b4
+f1
+09
+7f
+83
+7e
+01
+d1
+12
+02
+30
+a8
+eb
+b4
+f2
+09
+7f
+cd
+7e
+00
+d1
+12
+02
+30
+a8
+90
+4e
+e5
+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
+07
+7f
+b7
+d1
+12
+02
+30
+a8
+eb
+b4
+f4
+09
+7f
+b6
+7e
+00
+d1
+12
+02
+30
+a8
+90
+4e
+e5
+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
+f5
+07
+7f
+b5
+d1
+12
+02
+30
+a8
+eb
+b4
+f6
+09
+7f
+ea
+7e
+00
+d1
+12
+02
+30
+a8
+90
+4e
+e5
+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
+07
+7f
+e9
+d1
+12
+02
+30
+a8
+eb
+b4
+f8
+09
+7f
+e2
+7e
+00
+d1
+12
+02
+30
+a8
+90
+4e
+e5
+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
+d1
+12
+02
+30
+a8
+eb
+b4
+fa
+09
+7f
+8a
+7e
+01
+d1
+12
+02
+30
+a8
+90
+4e
+e5
+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
+d1
+12
+02
+30
+a8
+eb
+b4
+d0
+09
+7f
+2a
+7e
+02
+d1
+12
+02
+30
+a8
+90
+4e
+e5
+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
+d1
+12
+02
+30
+a8
+eb
+b4
+d3
+09
+7f
+26
+7e
+02
+d1
+12
+02
+30
+a8
+90
+4e
+e5
+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
+d2
+09
+7f
+24
+7e
+02
+d1
+12
+02
+30
+a8
+eb
+b4
+d4
+09
+7f
+27
+7e
+02
+12
+2e
+12
+01
+a8
+90
+4e
+e5
+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
+d5
+09
+7f
+21
+7e
+02
+12
+2e
+12
+80
+7b
+eb
+b4
+d6
+09
+7f
+23
+7e
+02
+12
+2e
+12
+80
+6e
+90
+4e
+e5
+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
+d7
+07
+7f
+70
+12
+2e
+12
+80
+47
+eb
+b4
+d8
+09
+7f
+6f
+7e
+00
+12
+2e
+12
+80
+3a
+90
+4e
+e5
+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
+fe
+b4
+dd
+06
+7f
+01
+11
+dd
+80
+14
+ee
+b4
+de
+06
+7f
+02
+11
+dd
+80
+0a
+12
+03
+b6
+b4
+df
+04
+7f
+04
+11
+dd
+90
+4e
+57
+e0
+b4
+02
+24
+90
+4e
+e5
+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
+90
+4d
+fc
+f0
+e4
+12
+03
+fc
+90
+4e
+e8
+e0
+04
+f0
+02
+2e
+3c
+22
+90
+4e
+57
+e0
+64
+02
+60
+12
+74
+04
+f0
+90
+4d
+f8
+74
+01
+f0
+90
+4e
+58
+74
+03
+f0
+a3
+ef
+f0
+22
+90
+4e
+f5
+e4
+f0
+a3
+f0
+a3
+f0
+12
+28
+90
+90
+4e
+f5
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+4a
+70
+02
+61
+6a
+90
+4e
+f5
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+90
+00
+01
+12
+03
+cf
+ff
+70
+02
+61
+6a
+64
+28
+60
+05
+ef
+64
+58
+70
+32
+90
+4c
+a7
+e0
+b4
+02
+10
+7f
+29
+12
+08
+b3
+90
+4c
+a7
+74
+03
+f0
+e4
+90
+4d
+e6
+f0
+90
+4c
+a9
+e0
+64
+02
+60
+02
+61
+6a
+90
+42
+5e
+04
+f0
+7f
+0a
+12
+08
+b3
+90
+4c
+a9
+74
+03
+f0
+22
+90
+4e
+f5
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+90
+00
+01
+12
+03
+cf
+ff
+d3
+94
+62
+40
+02
+41
+36
+ef
+c3
+94
+59
+50
+02
+41
+36
+ef
+b4
+62
+38
+90
+05
+4f
+e0
+ff
+04
+f0
+74
+50
+2f
+f5
+82
+e4
+34
+05
+f5
+83
+74
+30
+f0
+90
+4d
+18
+e0
+fc
+a3
+e0
+fd
+a3
+e0
+fe
+a3
+e0
+ff
+e4
+7b
+0a
+fa
+f9
+f8
+12
+04
+8f
+90
+4d
+18
+12
+05
+cb
+90
+4d
+e6
+e0
+04
+f0
+22
+90
+4e
+f5
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+90
+00
+01
+12
+03
+cf
+24
+d8
+ff
+90
+05
+4f
+e0
+fe
+04
+f0
+74
+50
+2e
+f5
+82
+e4
+34
+05
+f5
+83
+ef
+f0
+90
+00
+01
+12
+03
+cf
+24
+a8
+ff
+e4
+34
+ff
+fe
+e4
+fc
+fd
+c0
+04
+c0
+05
+c0
+06
+c0
+07
+7f
+0a
+fe
+90
+4d
+18
+e0
+f8
+a3
+e0
+f9
+a3
+e0
+fa
+a3
+e0
+fb
+12
+04
+8f
+d0
+03
+d0
+02
+d0
+01
+d0
+00
+ef
+2b
+ff
+ee
+3a
+fe
+ed
+39
+fd
+ec
+38
+fc
+90
+4d
+18
+12
+05
+cb
+90
+4d
+e6
+e0
+04
+f0
+22
+90
+4e
+f5
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+90
+00
+01
+12
+03
+cf
+ff
+d3
+94
+27
+40
+02
+61
+07
+ef
+c3
+94
+1e
+50
+02
+61
+07
+ef
+b4
+27
+38
+90
+05
+4f
+e0
+ff
+04
+f0
+74
+50
+2f
+f5
+82
+e4
+34
+05
+f5
+83
+74
+30
+f0
+90
+4d
+18
+e0
+fc
+a3
+e0
+fd
+a3
+e0
+fe
+a3
+e0
+ff
+e4
+7b
+0a
+fa
+f9
+f8
+12
+04
+8f
+90
+4d
+18
+12
+05
+cb
+90
+4d
+e6
+e0
+04
+f0
+22
+90
+4e
+f5
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+90
+00
+01
+12
+03
+cf
+24
+13
+ff
+90
+05
+4f
+e0
+fe
+04
+f0
+74
+50
+2e
+f5
+82
+e4
+34
+05
+f5
+83
+ef
+f0
+90
+00
+01
+12
+03
+cf
+24
+e3
+ff
+e4
+34
+ff
+fe
+e4
+fc
+fd
+c0
+04
+c0
+05
+c0
+06
+c0
+07
+7f
+0a
+fe
+90
+4d
+18
+e0
+f8
+a3
+e0
+f9
+a3
+e0
+fa
+a3
+e0
+fb
+12
+04
+8f
+d0
+03
+d0
+02
+d0
+01
+d0
+00
+ef
+2b
+ff
+ee
+3a
+fe
+ed
+39
+fd
+ec
+38
+fc
+90
+4d
+18
+12
+05
+cb
+90
+4d
+e6
+e0
+04
+f0
+22
+90
+4e
+f5
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+90
+00
+01
+12
+03
+cf
+64
+2a
+70
+40
+90
+05
+4f
+e0
+60
+10
+e0
+ff
+14
+f0
+74
+50
+2f
+f5
+82
+e4
+34
+05
+f5
+83
+e4
+f0
+90
+4d
+e6
+e0
+60
+32
+90
+4d
+18
+e0
+fc
+a3
+e0
+fd
+a3
+e0
+fe
+a3
+e0
+ff
+e4
+7b
+0a
+fa
+f9
+f8
+12
+05
+1a
+90
+4d
+18
+12
+05
+cb
+90
+4d
+e6
+e0
+14
+f0
+22
+90
+4e
+f5
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+f9
+12
+11
+0b
+22
+90
+4e
+d6
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+e4
+a3
+f0
+a3
+f0
+90
+4d
+f1
+e0
+64
+01
+60
+02
+81
+62
+90
+4e
+da
+74
+05
+f0
+90
+4e
+da
+e0
+ff
+14
+f0
+ef
+70
+02
+81
+6c
+90
+4e
+d6
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+24
+01
+f9
+e4
+3a
+fa
+90
+4e
+da
+e0
+7e
+00
+29
+f9
+ee
+3a
+fa
+12
+03
+b6
+90
+4e
+d9
+f0
+c3
+94
+1e
+50
+02
+81
+59
+e0
+ff
+d3
+94
+20
+40
+02
+81
+59
+ef
+24
+e1
+60
+09
+14
+60
+3e
+24
+02
+60
+02
+81
+56
+90
+4c
+c9
+74
+0a
+f0
+90
+4c
+ad
+e0
+44
+08
+f0
+54
+ef
+f0
+90
+4e
+d9
+e0
+24
+e4
+ff
+90
+4c
+a2
+e0
+b5
+07
+08
+90
+4c
+a4
+e0
+64
+03
+70
+59
+90
+4c
+a2
+ef
+f0
+90
+4c
+ab
+74
+01
+f0
+e4
+90
+4c
+c4
+f0
+80
+47
+90
+4c
+c9
+74
+0a
+f0
+90
+4c
+ad
+e0
+54
+f7
+f0
+44
+10
+f0
+90
+4c
+a2
+e0
+ff
+60
+30
+64
+fe
+60
+2c
+90
+4c
+ad
+e0
+54
+f7
+f0
+e4
+90
+4c
+a2
+f0
+7f
+0d
+12
+09
+70
+90
+4c
+ca
+74
+01
+f0
+90
+4c
+a2
+e0
+90
+4c
+9f
+f0
+90
+4c
+a1
+74
+01
+f0
+90
+4c
+9e
+f0
+12
+0f
+d9
+7f
+01
+22
+90
+4c
+ad
+e0
+54
+e7
+f0
+61
+8b
+90
+4c
+ad
+e0
+54
+e7
+f0
+54
+df
+f0
+7f
+00
+22
+90
+4c
+d4
+ed
+f0
+a3
+eb
+f0
+ef
+30
+e0
+12
+90
+4c
+d3
+e0
+b4
+03
+04
+74
+02
+f0
+22
+90
+4c
+d3
+74
+01
+f0
+22
+90
+4c
+d3
+74
+04
+f0
+22
+90
+4e
+fc
+ed
+f0
+90
+4e
+fb
+ef
+f0
+e4
+90
+4e
+fd
+f0
+ef
+30
+e0
+05
+e4
+90
+4c
+d7
+f0
+90
+4e
+fc
+e0
+ff
+a3
+f0
+90
+4d
+f1
+e0
+64
+01
+60
+02
+c1
+6f
+ef
+64
+14
+60
+12
+90
+4e
+fc
+e0
+64
+1a
+60
+0a
+ef
+64
+08
+60
+05
+ef
+64
+16
+70
+3a
+90
+4e
+fc
+e0
+ff
+b4
+14
+08
+90
+4c
+a0
+74
+01
+f0
+80
+15
+ef
+b4
+08
+08
+90
+4c
+a0
+74
+02
+f0
+80
+09
+ef
+b4
+16
+05
+e4
+90
+4c
+a0
+f0
+e4
+90
+4e
+fd
+f0
+7b
+01
+7a
+4c
+79
+a0
+7d
+01
+fc
+7f
+c0
+7e
+7f
+12
+1e
+20
+90
+4e
+fc
+e0
+12
+06
+08
+36
+2f
+2a
+35
+b2
+2d
+35
+9c
+2e
+35
+cc
+36
+35
+e6
+37
+35
+4c
+3a
+35
+54
+3b
+35
+5c
+3c
+35
+64
+3d
+35
+6c
+3e
+35
+74
+3f
+35
+7c
+40
+35
+84
+41
+35
+8c
+42
+35
+94
+43
+36
+5a
+47
+36
+00
+65
+00
+00
+36
+6f
+90
+4e
+fd
+74
+f1
+f0
+c1
+6f
+90
+4e
+fd
+74
+f6
+f0
+c1
+6f
+90
+4e
+fd
+74
+f7
+f0
+c1
+6f
+90
+4e
+fd
+74
+f8
+f0
+c1
+6f
+90
+4e
+fd
+74
+f3
+f0
+c1
+6f
+90
+4e
+fd
+74
+f4
+f0
+c1
+6f
+90
+4e
+fd
+74
+f2
+f0
+c1
+6f
+90
+4e
+fd
+74
+f5
+f0
+c1
+6f
+90
+4e
+fd
+74
+fa
+f0
+c1
+6f
+90
+4e
+fd
+74
+d6
+f0
+c1
+6f
+90
+4e
+fb
+e0
+30
+e0
+08
+90
+4c
+e7
+e0
+60
+02
+14
+f0
+e4
+90
+4e
+fd
+f0
+c1
+6f
+90
+4e
+fb
+e0
+30
+e0
+0c
+90
+4c
+e7
+e0
+c3
+94
+04
+50
+03
+e0
+04
+f0
+e4
+90
+4e
+fd
+f0
+c1
+6f
+90
+4e
+fb
+e0
+30
+e0
+0c
+90
+4c
+e3
+e0
+d3
+94
+01
+40
+03
+e0
+14
+f0
+e4
+90
+4e
+fd
+f0
+c1
+6f
+90
+4e
+fb
+e0
+30
+e0
+0c
+90
+4c
+e3
+e0
+c3
+94
+05
+50
+03
+e0
+04
+f0
+e4
+90
+4e
+fd
+f0
+80
+6f
+90
+4e
+fb
+e0
+30
+e0
+21
+90
+4c
+f8
+e0
+ff
+70
+0b
+e0
+04
+f0
+90
+4c
+e2
+74
+01
+f0
+80
+0f
+ef
+b4
+01
+0b
+90
+4c
+e2
+74
+03
+f0
+e4
+90
+4c
+f8
+f0
+e4
+90
+4e
+fd
+f0
+80
+40
+90
+4e
+fb
+e0
+30
+e0
+1d
+90
+4c
+e2
+74
+02
+f0
+90
+4c
+f7
+e0
+d3
+94
+06
+50
+03
+e0
+04
+f0
+90
+4c
+f7
+e0
+d3
+94
+06
+40
+02
+e4
+f0
+e4
+90
+4e
+fd
+f0
+80
+15
+90
+4e
+fb
+e0
+30
+e0
+09
+e4
+90
+4c
+e2
+f0
+90
+4c
+f8
+f0
+e4
+90
+4e
+fd
+f0
+90
+4c
+df
+e0
+60
+17
+90
+4e
+fd
+e0
+ff
+64
+65
+60
+09
+ef
+64
+e3
+60
+04
+ef
+b4
+e7
+05
+e4
+90
+4e
+fd
+f0
+90
+4e
+fd
+e0
+ff
+22
+e4
+90
+4f
+1d
+f0
+f0
+90
+4f
+1d
+e0
+ff
+c3
+94
+08
+50
+0c
+c2
+05
+d1
+af
+90
+4f
+1d
+e0
+04
+f0
+80
+ea
+22
+ac
+07
+ec
+f4
+60
+17
+af
+04
+a2
+05
+92
+03
+d1
+de
+af
+04
+a2
+05
+b3
+92
+02
+d1
+cd
+af
+04
+c2
+04
+d1
+ef
+22
+ef
+f4
+60
+0c
+7b
+01
+7a
+80
+79
+78
+a2
+02
+92
+00
+f1
+00
+22
+ef
+f4
+60
+0c
+7b
+01
+7a
+80
+79
+7c
+a2
+03
+92
+00
+f1
+00
+22
+ef
+f4
+60
+0c
+7b
+01
+7a
+80
+79
+70
+a2
+04
+92
+00
+f1
+00
+22
+90
+4f
+07
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+e4
+fe
+fd
+ef
+54
+07
+fe
+ef
+13
+13
+13
+54
+03
+fd
+30
+00
+22
+90
+4f
+07
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+2d
+f9
+e4
+3a
+fa
+12
+03
+b6
+ff
+74
+01
+a8
+06
+08
+80
+02
+c3
+33
+d8
+fc
+4f
+02
+03
+fc
+90
+4f
+07
+e0
+fb
+a3
+e0
+fa
+a3
+e0
+2d
+f9
+e4
+3a
+fa
+12
+03
+b6
+ff
+74
+01
+a8
+06
+08
+80
+02
+c3
+33
+d8
+fc
+f4
+5f
+02
+03
+fc
+90
+4d
+2e
+e0
+ff
+90
+4d
+f3
+e0
+6f
+70
+03
+02
+38
+fc
+90
+4d
+2e
+e0
+90
+4d
+f3
+f0
+90
+4c
+b4
+e0
+60
+05
+7f
+07
+02
+0f
+9c
+90
+4c
+e2
+e0
+64
+01
+60
+03
+02
+38
+f2
+90
+4c
+eb
+e0
+ff
+60
+5d
+a3
+e0
+70
+59
+a3
+e0
+70
+55
+a3
+e0
+60
+2f
+90
+4c
+e8
+e0
+fe
+c3
+94
+55
+40
+0b
+e0
+14
+f0
+e4
+90
+4c
+ee
+f0
+02
+38
+c7
+ee
+c3
+94
+55
+40
+03
+02
+38
+c7
+ee
+94
+00
+50
+03
+02
+38
+c7
+90
+4c
+e8
+e0
+04
+f0
+02
+38
+c7
+90
+4c
+e8
+e0
+64
+05
+60
+06
+e0
+14
+f0
+02
+38
+c7
+e4
+90
+4c
+eb
+f0
+a3
+04
+f0
+e4
+a3
+f0
+a3
+04
+f0
+a3
+04
+f0
+02
+38
+c7
+ef
+70
+5c
+90
+4c
+ec
+e0
+60
+56
+a3
+e0
+70
+52
+a3
+e0
+60
+2b
+90
+4c
+e9
+e0
+ff
+c3
+94
+55
+40
+0a
+e0
+14
+f0
+e4
+90
+4c
+ee
+f0
+01
+c7
+ef
+c3
+94
+55
+40
+02
+01
+c7
+ef
+94
+00
+50
+02
+01
+c7
+90
+4c
+e9
+e0
+04
+f0
+01
+c7
+90
+4c
+e9
+e0
+64
+05
+60
+05
+e0
+14
+f0
+01
+c7
+e4
+90
+4c
+ec
+f0
+90
+4c
+eb
+f0
+90
+4c
+ed
+04
+f0
+a3
+f0
+a3
+74
+03
+f0
+80
+76
+90
+4c
+eb
+e0
+70
+53
+a3
+e0
+70
+4f
+a3
+e0
+60
+4b
+a3
+e0
+60
+27
+90
+4c
+ea
+e0
+ff
+c3
+94
+55
+40
+0a
+e0
+14
+f0
+e4
+90
+4c
+ee
+f0
+80
+50
+ef
+c3
+94
+55
+50
+4a
+ef
+94
+00
+40
+45
+90
+4c
+ea
+e0
+04
+f0
+80
+3d
+90
+4c
+ea
+e0
+64
+05
+60
+05
+e0
+14
+f0
+80
+30
+e4
+90
+4c
+ed
+f0
+90
+4c
+eb
+f0
+04
+f0
+90
+4c
+ee
+f0
+a3
+f0
+80
+1d
+90
+4c
+ee
+74
+01
+f0
+90
+4c
+eb
+f0
+e4
+a3
+f0
+a3
+f0
+90
+4c
+e8
+74
+50
+f0
+a3
+74
+55
+f0
+a3
+74
+32
+f0
+e4
+90
+41
+31
+f0
+90
+4c
+e0
+04
+f0
+90
+4c
+ef
+e0
+b4
+01
+02
+80
+23
+90
+4c
+ef
+e0
+b4
+02
+02
+80
+37
+90
+4c
+ef
+e0
+b4
+03
+02
+80
+4b
+e4
+90
+4c
+ef
+f0
+22
+90
+4c
+e7
+e0
+fd
+7f
+07
+12
+0c
+eb
+22
+7f
+03
+31
+54
+90
+4c
+e8
+e0
+ff
+90
+80
+a0
+f0
+c3
+74
+64
+9f
+90
+80
+a2
+f0
+90
+80
+85
+e0
+44
+40
+f0
+22
+7f
+05
+31
+54
+90
+4c
+e9
+e0
+ff
+90
+80
+a0
+f0
+c3
+74
+64
+9f
+90
+80
+a2
+f0
+90
+80
+85
+e0
+44
+40
+f0
+22
+7f
+06
+31
+54
+90
+4c
+ea
+e0
+ff
+90
+80
+a0
+f0
+c3
+74
+64
+9f
+90
+80
+a2
+f0
+90
+80
+85
+e0
+44
+40
+f0
+22
+90
+80
+42
+e0
+f0
+90
+80
+51
+e0
+54
+df
+f0
+90
+80
+82
+e4
+f0
+ef
+30
+e0
+04
+e0
+44
+10
+f0
+ef
+30
+e1
+07
+90
+80
+82
+e0
+44
+20
+f0
+ef
+30
+e2
+07
+90
+80
+82
+e0
+44
+40
+f0
+22
+12
+15
+04
+31
+be
+90
+4c
+ca
+74
+01
+f0
+e4
+90
+4c
+cf
+f0
+90
+4c
+fc
+74
+ff
+f0
+90
+44
+fc
+e0
+90
+4d
+d0
+f0
+90
+44
+fd
+e0
+90
+4d
+d1
+f0
+90
+44
+fe
+e0
+90
+4d
+d2
+f0
+90
+4c
+e3
+74
+05
+f0
+90
+4c
+e7
+14
+f0
+22
+90
+4c
+b2
+74
+05
+f0
+e4
+a3
+f0
+ff
+ef
+25
+e0
+24
+b5
+f5
+82
+e4
+34
+4c
+f5
+83
+74
+54
+f0
+a3
+f0
+0f
+ef
+b4
+04
+ea
+90
+4c
+71
+e0
+fe
+a3
+e0
+ff
+c3
+90
+4c
+74
+e0
+9f
+fd
+90
+4c
+73
+e0
+9e
+fc
+e4
+12
+02
+06
+7b
+7b
+7a
+14
+79
+8e
+78
+3f
+12
+00
+fb
+c0
+04
+c0
+05
+c0
+06
+c0
+07
+90
+4c
+71
+e0
+fc
+a3
+e0
+fd
+e4
+12
+02
+06
+d0
+03
+d0
+02
+d0
+01
+d0
+00
+12
+00
+0a
+12
+02
+3f
+90
+4c
+bd
+ee
+f0
+a3
+ef
+f0
+90
+4c
+71
+e0
+fe
+a3
+e0
+ff
+c3
+90
+4c
+74
+e0
+9f
+fd
+90
+4c
+73
+e0
+9e
+fc
+e4
+12
+02
+06
+7b
+b8
+7a
+1e
+79
+85
+78
+3f
+12
+00
+fb
+c0
+04
+c0
+05
+c0
+06
+c0
+07
+90
+4c
+71
+e0
+fc
+a3
+e0
+fd
+e4
+12
+02
+06
+d0
+03
+d0
+02
+d0
+01
+d0
+00
+12
+00
+0a
+12
+02
+3f
+90
+4c
+bf
+ee
+f0
+a3
+ef
+f0
+22
+90
+4f
+14
+ed
+f0
+90
+00
+01
+12
+03
+cf
+90
+4f
+15
+f0
+22
+90
+4c
+f6
+e0
+70
+11
+90
+4c
+cd
+e0
+70
+0b
+90
+4c
+b4
+e0
+64
+01
+60
+03
+12
+0d
+bd
+90
+4c
+fa
+e0
+70
+02
+a3
+e0
+60
+32
+90
+4c
+fb
+e0
+24
+ff
+f0
+90
+4c
+fa
+e0
+34
+ff
+f0
+e4
+90
+4c
+c2
+f0
+a3
+f0
+90
+4c
+fb
+e0
+30
+e0
+05
+7f
+1e
+12
+21
+eb
+90
+4c
+fa
+e0
+70
+02
+a3
+e0
+60
+02
+61
+b4
+7f
+19
+02
+08
+b3
+90
+4c
+c9
+e0
+60
+02
+14
+f0
+90
+4c
+ce
+e0
+60
+02
+14
+f0
+90
+4c
+d7
+e0
+60
+0b
+14
+f0
+e0
+70
+06
+90
+4c
+d3
+74
+06
+f0
+90
+4c
+c4
+e0
+60
+1e
+90
+4c
+cd
+e0
+60
+06
+e4
+90
+4c
+c4
+f0
+22
+90
+4c
+c4
+e0
+14
+f0
+12
+0f
+e5
+90
+4c
+c4
+e0
+70
+03
+12
+0f
+eb
+90
+4d
+eb
+e0
+70
+36
+90
+4d
+ec
+e0
+64
+01
+70
+2e
+90
+4c
+c2
+f0
+a3
+f0
+90
+4d
+ec
+f0
+90
+4e
+58
+e0
+60
+0d
+7b
+01
+7a
+4e
+79
+58
+7d
+03
+12
+13
+ea
+80
+11
+90
+48
+00
+e0
+60
+0b
+7b
+01
+7a
+48
+79
+00
+7d
+09
+12
+13
+ea
+90
+4d
+e8
+e0
+60
+09
+e0
+14
+f0
+e0
+70
+03
+12
+0f
+dc
+90
+4d
+e3
+e0
+60
+11
+e0
+14
+f0
+e0
+70
+0b
+90
+4d
+1c
+e0
+70
+05
+7f
+1b
+12
+08
+b3
+90
+4d
+f6
+e0
+60
+29
+e0
+14
+f0
+e0
+70
+23
+90
+4d
+23
+e0
+60
+02
+e4
+f0
+90
+4c
+a6
+e0
+b4
+04
+07
+90
+42
+13
+74
+0c
+f0
+22
+90
+4c
+a8
+e0
+b4
+04
+06
+90
+42
+13
+74
+3a
+f0
+22
+90
+4e
+dc
+12
+05
+d7
+00
+00
+00
+00
+90
+4c
+75
+e0
+70
+02
+a3
+e0
+70
+02
+a1
+96
+90
+4c
+75
+e0
+fe
+a3
+e0
+ff
+90
+4c
+b3
+e0
+fd
+04
+f0
+ed
+25
+e0
+24
+b5
+f5
+82
+e4
+34
+4c
+f5
+83
+ee
+f0
+a3
+ef
+f0
+90
+4c
+b3
+e0
+c3
+94
+04
+40
+02
+e4
+f0
+e4
+90
+4e
+db
+f0
+90
+4e
+dc
+e0
+f8
+a3
+e0
+f9
+a3
+e0
+fa
+a3
+e0
+fb
+90
+4e
+db
+e0
+25
+e0
+24
+b5
+f5
+82
+e4
+34
+4c
+f5
+83
+e0
+fe
+a3
+e0
+ff
+e4
+fc
+fd
+eb
+2f
+ff
+ea
+3e
+fe
+ed
+39
+fd
+ec
+38
+fc
+90
+4e
+dc
+12
+05
+cb
+90
+4e
+db
+e0
+04
+f0
+e0
+b4
+04
+bf
+90
+4e
+dc
+e0
+fc
+a3
+e0
+fd
+a3
+e0
+fe
+a3
+e0
+ff
+e4
+7b
+04
+fa
+f9
+f8
+12
+05
+1a
+90
+4e
+dc
+12
+05
+cb
+90
+4c
+bf
+e0
+fe
+a3
+e0
+ff
+e4
+fc
+fd
+90
+4e
+dc
+e0
+f8
+a3
+e0
+f9
+a3
+e0
+fa
+a3
+e0
+fb
+c3
+12
+05
+ba
+50
+32
+90
+4c
+b4
+74
+02
+f0
+90
+4c
+de
+e0
+64
+02
+70
+02
+a1
+8e
+90
+4c
+e1
+74
+01
+f0
+90
+4c
+fa
+e4
+f0
+a3
+74
+64
+f0
+7b
+01
+7a
+4c
+79
+e1
+7d
+01
+7c
+00
+7f
+c2
+7e
+7f
+12
+1e
+20
+a1
+8e
+90
+4c
+de
+e0
+b4
+02
+15
+e4
+90
+4c
+e1
+f0
+7b
+01
+7a
+4c
+79
+e1
+7d
+01
+fc
+7f
+c2
+7e
+7f
+12
+1e
+20
+90
+4c
+bd
+e0
+fe
+a3
+e0
+ff
+e4
+fc
+fd
+90
+4e
+dc
+e0
+f8
+a3
+e0
+f9
+a3
+e0
+fa
+a3
+e0
+fb
+c3
+12
+05
+ba
+50
+56
+90
+4c
+b4
+74
+01
+f0
+90
+4c
+71
+e0
+fe
+a3
+e0
+ff
+c3
+90
+4c
+74
+e0
+9f
+fd
+90
+4c
+73
+e0
+9e
+fc
+e4
+12
+02
+06
+7b
+7b
+7a
+14
+79
+8e
+78
+3f
+12
+00
+fb
+c0
+04
+c0
+05
+c0
+06
+c0
+07
+90
+4c
+71
+e0
+fc
+a3
+e0
+fd
+e4
+12
+02
+06
+d0
+03
+d0
+02
+d0
+01
+d0
+00
+12
+00
+0a
+12
+02
+3f
+90
+4c
+bd
+ee
+f0
+a3
+ef
+f0
+80
+53
+e4
+90
+4c
+b4
+f0
+90
+4c
+71
+e0
+fe
+a3
+e0
+ff
+c3
+90
+4c
+74
+e0
+9f
+fd
+90
+4c
+73
+e0
+9e
+fc
+e4
+12
+02
+06
+7b
+b8
+7a
+1e
+79
+85
+78
+3f
+12
+00
+fb
+c0
+04
+c0
+05
+c0
+06
+c0
+07
+90
+4c
+71
+e0
+fc
+a3
+e0
+fd
+e4
+12
+02
+06
+d0
+03
+d0
+02
+d0
+01
+d0
+00
+12
+00
+0a
+12
+02
+3f
+90
+4c
+bd
+ee
+f0
+a3
+ef
+f0
+90
+4c
+b4
+e0
+90
+4c
+de
+f0
+22
+90
+4e
+ed
+ee
+f0
+a3
+ef
+f0
+90
+4e
+ef
+ec
+f0
+a3
+ed
+f0
+90
+4e
+ef
+e0
+fe
+a3
+e0
+ff
+d3
+90
+4e
+ee
+e0
+9f
+90
+4e
+ed
+e0
+9e
+40
+16
+90
+4e
+ef
+e0
+fe
+a3
+e0
+ff
+90
+4e
+ee
+e0
+9f
+ff
+90
+4e
+ed
+e0
+9e
+fe
+80
+1e
+90
+4e
+ed
+e0
+fe
+a3
+e0
+ff
+c3
+90
+4e
+f0
+e0
+9f
+ff
+90
+4e
+ef
+e0
+9e
+fe
+ad
+03
+c3
+eb
+9f
+ff
+e4
+9e
+fe
+22
+90
+0b
+e7
+74
+03
+f0
+ed
+60
+03
+12
+17
+e7
+22
+90
+0b
+e7
+74
+04
+f0
+02
+17
+e7
+90
+0b
+e7
+74
+05
+f0
+02
+17
+e7
+90
+04
+46
+e0
+ff
+22
+90
+4b
+9c
+e0
+fe
+a3
+e0
+ff
+90
+4b
+9a
+e0
+b5
+06
+07
+a3
+e0
+b5
+07
+02
+d3
+22
+c3
+22
+ef
+f4
+60
+3a
+ef
+54
+07
+fe
+ef
+13
+13
+13
+54
+03
+ff
+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
+fc
+5d
+d0
+82
+d0
+83
+f0
+74
+a7
+2f
+f5
+82
+e4
+34
+00
+f5
+83
+e0
+5c
+f0
+22
+90
+4e
+b7
+ee
+f0
+a3
+ef
+f0
+90
+4e
+bb
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+90
+4e
+b9
+ec
+f0
+a3
+ed
+f0
+a3
+e0
+f9
+a3
+e0
+fa
+a3
+e0
+90
+4e
+ab
+c9
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+a3
+ec
+f0
+a3
+ed
+f0
+7b
+01
+7a
+0b
+79
+86
+f1
+08
+90
+0b
+83
+74
+a0
+f0
+90
+4e
+b7
+e0
+ff
+a3
+e0
+90
+0b
+84
+cf
+f0
+a3
+ef
+f0
+90
+4e
+ba
+e0
+24
+03
+fd
+90
+4e
+b9
+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
+90
+80
+9e
+e4
+f0
+a3
+f0
+90
+80
+90
+04
+f0
+90
+80
+06
+e0
+44
+04
+f0
+02
+1f
+d2
+90
+4e
+a8
+eb
+f0
+a3
+ea
+f0
+a3
+e9
+f0
+90
+4e
+ae
+74
+ff
+f5
+f0
+12
+04
+79
+45
+f0
+60
+2a
+90
+4e
+ab
+e0
+fb
+a3
+e4
+75
+f0
+01
+12
+04
+79
+a9
+f0
+fa
+12
+03
+b6
+ff
+90
+4e
+a8
+e0
+fb
+a3
+e4
+75
+f0
+01
+12
+04
+79
+a9
+f0
+fa
+ef
+12
+03
+fc
+80
+c8
+22
+90
+82
+80
+74
+01
+f0
+22
Index: c51/output/geneep.exe
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: c51/output/geneep.exe
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: c51/output/otp.dat
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/c51/output/otp.dat	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/c51/output/otp.dat	(working copy)
@@ -0,0 +1,12 @@
+00
+02
+aa
+55
+00
+00
+aa
+55
+00
+00
+82
+78
Index: c51/output/ramcode.rom
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/c51/output/ramcode.rom	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/c51/output/ramcode.rom	(working copy)
@@ -0,0 +1,1996 @@
+c512801a
+c0000045
+c0018049
+c0028055
+c0030300
+c0050321
+c0138325
+c0140337
+c015833d
+c0210348
+c021834c
+c0280354
+c02a0363
+c0188041
+c019803e
+c048020e
+c04901d8
+c04a01de
+c04a81c8
+c05802fe
+c058818c
+c05901a0
+c05981ba
+c05b01c3
+c05c8194
+20203bf1
+c00c036f
+c00d8377
+c0118396
+c01203b2
+c0190430
+c01dd3b0
+c01f0273
+c01f8277
+c025047c
+c0258429
+c0260433
+c0270439
+c02b0440
+c0308447
+c031844c
+c0320470
+c03284a6
+c0348602
+c03505ed
+c03585ef
+c037060d
+c0378487
+c0438127
+c0468292
+c04702ab
+c047827b
+c05e8289
+c066821b
+c0678133
+c0680148
+c04e03b6
+c04f83cc
+c07103d9
+c07183eb
+c0730403
+20203bf1
+da204040
+18007201
+20203305
+d8a04040
+df20000a
+20407e3b
+202032d8
+6810813b
+60008b81
+70800608
+20203003
+204000d7
+204000c9
+2040005a
+2040004e
+20203015
+680947f4
+6800c3d8
+7d3a040b
+6800c133
+7d3a0406
+600947f4
+20600000
+20403392
+20403407
+20403024
+2040062e
+20203022
+6800c7dc
+203a005e
+6800c793
+207a0000
+20400122
+20740000
+1ff0fe00
+1fe20c00
+20400103
+6000cba7
+c0008073
+c003007d
+1fe20400
+18c22200
+6800c040
+c3000070
+1a220c00
+c6848000
+18427e00
+c001807f
+c002809d
+20203bf1
+1a220c00
+d8a000f8
+202000fb
+20400103
+20400103
+60008b7d
+20400078
+20207c33
+20400106
+18c20400
+18508400
+60094b9a
+20600000
+d8a04d34
+202000fb
+20400103
+1fe22200
+18c27e00
+600102b7
+2040527c
+243a0088
+1a20a201
+20404b2c
+2020008d
+d8a04bad
+1a227200
+680102b7
+1fe20c00
+202000fd
+18a0a5fe
+680142b7
+e0a10000
+580000a1
+e0a08000
+1a20f3ff
+680102b7
+1fe20c00
+204000fd
+1a420c00
+e8c10000
+60014c7b
+1fe0f202
+20407e45
+704c7a64
+20600000
+18c22200
+6800cba9
+1fe08401
+18410403
+6008cba9
+1feffe07
+d8a04bad
+98a08a00
+1a220c00
+20400103
+18c22200
+1fe0ffff
+1fe27200
+1fe0fe07
+6000cc62
+1a220c00
+20400103
+18c22200
+c00080b5
+c00100bd
+c00180bf
+c00200c5
+c00300c1
+c00400c3
+68014c91
+e0a10000
+1a220c00
+204000fd
+2040561e
+247a0000
+700b7d1b
+20205620
+68014c93
+202000b6
+68014c95
+202000b6
+68014c99
+202000b6
+68014c99
+202000b6
+68014c97
+e0a10000
+1a220c00
+202000fd
+680a4d28
+1c427e00
+98467e00
+68094d2c
+9846fc00
+20407efd
+1807fe00
+207a0000
+1c420400
+600a4d28
+6800cd2e
+1fe0fe01
+6000cd2e
+20600000
+680a4c3a
+1c427e00
+98467e00
+d8400640
+9846fc00
+20407efd
+1807fe00
+207a0000
+1c420400
+600a4c3a
+68094ba5
+18508400
+9840fe00
+1ff0fe00
+60014ba5
+1ff0fe00
+1fe17e03
+c1800000
+708971af
+68108053
+79207e07
+60108053
+68108973
+1fe1fe30
+60108973
+70890674
+7089067c
+708972aa
+20001388
+68190150
+68108053
+793ffe07
+60108053
+18508400
+60094c75
+20600000
+20400103
+1fe27200
+204000ff
+20200078
+20400103
+e0a08000
+c20000ff
+20600000
+20400106
+e8c08000
+20600000
+58004b36
+98c67c00
+24628000
+d8c04aa0
+20600000
+df200003
+d8c04ba2
+18c22200
+68014ba0
+1ff0fe00
+1fe20a00
+1a220c00
+e8c08000
+e0a08000
+2040011a
+c2000112
+18a27e00
+1ff0fe00
+60014ba0
+20600000
+58004b9a
+98a67c00
+24628000
+d8a04b36
+20600000
+68014b9e
+68094ba0
+20200124
+68014b9a
+68094b9c
+98467c00
+2022e9b1
+2020320b
+1c427e00
+60024d24
+6808c7ef
+6800cd27
+98467c00
+2441012e
+20207c06
+680a4d24
+600a47ec
+600a4c3a
+600a4d28
+20600000
+da2047df
+20407f9f
+207a0000
+1fe22600
+20400139
+20203ea5
+c10c0000
+c00a061f
+c00a8624
+c0036614
+c001013f
+20203e7d
+70429d00
+680147f4
+c283bf08
+2fec0001
+20408145
+20203f08
+68008450
+c1010000
+20203e7b
+60088259
+6800cc6d
+1fe0fe01
+6000cc6d
+68008259
+207a0000
+1fe0ffff
+60008259
+20400168
+2040016f
+20400154
+2020014c
+6800cc9d
+247a0000
+6800cc7a
+207a0000
+1fe0ffff
+6000cc7a
+c1808000
+704c7a64
+680147f4
+c4028000
+68014c7b
+207a0000
+2040527e
+247a0000
+68014c7b
+1fe22200
+20404b2c
+1a20f202
+d8c04c7d
+20207e45
+6800c7f2
+207a0000
+1fe0ffff
+6000c7f2
+247a0000
+20403ebd
+20204b22
+6800cc0b
+207a0000
+1fe0ffff
+6000cc0b
+20600000
+1a627e00
+1fe17ef0
+c1280000
+2040017c
+1a627e00
+207a0000
+6000cba4
+2020010b
+1a627e00
+c0058180
+c0010188
+20600000
+704c7a28
+5800000a
+60014c7b
+680142b7
+e0a10000
+580001a1
+e0a10000
+20600000
+704c7a00
+df200014
+d8a04c7b
+20207e3f
+70416e7f
+20403cf3
+6800cc77
+207a0000
+704c7700
+1c427e00
+60024c3a
+20600000
+6800c219
+247a0000
+70804206
+58000f0c
+20403da7
+58030d40
+20403bf3
+37d98200
+1e226000
+20403b36
+20001388
+20203d9d
+c6118000
+680147f4
+c284bd1e
+20403cab
+6801c210
+207a0000
+6800c131
+207a0000
+2040527e
+247a0000
+20403dca
+247a0000
+20403b36
+6800c7dc
+203a3d25
+6800c793
+207a0000
+20203d25
+20400122
+24740000
+2040011f
+24740000
+700b7f01
+700b7e01
+204001bf
+20200122
+204001b2
+24740000
+68008b7f
+247a0000
+20203d2d
+68008b7e
+2000000a
+c08001bf
+20600000
+204001b2
+24740000
+68008b7f
+247a0000
+20203d4f
+204001ca
+20203aaf
+6800c219
+243a01d0
+20403d91
+20007530
+20007530
+20007530
+20403b0a
+70804204
+6810896b
+1fe17ecf
+6010896b
+1fe1fe30
+6010896b
+20600000
+60088017
+1840a204
+20203a86
+60088017
+1840a200
+20203ab6
+204001db
+58000500
+20403bf3
+70890601
+7089003c
+708901e0
+70896d12
+2000000a
+70890201
+7089023d
+2000000a
+708903b7
+2000000a
+7089027d
+6800cbef
+c0ff81f6
+6802ca91
+e0a28000
+e8c28000
+e0a28000
+708956df
+204001fd
+708955df
+20600000
+6802ca87
+e0a28000
+e8c28000
+e0a28000
+708956c2
+708955d0
+20600000
+20000004
+708955d1
+20000004
+708955d2
+20000004
+708955d4
+20000004
+20600000
+708955d4
+20000004
+708955d2
+20000004
+708955d1
+20000004
+708955d0
+708956c0
+20600000
+2030ba6f
+20400205
+20203a6f
+2040527c
+247a0000
+2020005a
+78347c00
+68120138
+79347e1a
+6012004c
+20403db0
+7000a201
+20600000
+6800c419
+1fe0fe02
+6000c3f9
+700b7e00
+70017706
+20403fa4
+58000211
+6001428e
+5800021a
+6001428a
+58000174
+60014292
+5800027a
+60014290
+5800005a
+6001428c
+58000214
+60014288
+58004aa0
+1ff0fe00
+60014b9a
+60014b9c
+20403e0b
+58004b36
+1ff0fe00
+60014b9e
+60014ba0
+6800cc77
+c02d024e
+2035824c
+68014c71
+1ff0fe00
+60014c71
+68014c73
+1ff0fe00
+60014c73
+20400259
+680402a0
+243a0246
+68014ad4
+1ff0fe00
+203a0246
+60014c73
+2040062b
+704ba42f
+2040010b
+704c7700
+70828003
+20600000
+704ba430
+20200248
+1ce27e00
+203a0281
+20405b63
+20404d99
+58000000
+60044040
+600147f4
+1c427e00
+60024c3a
+704ba433
+20200248
+2040688a
+580007e0
+da2002a0
+d840000e
+204068d3
+2040688d
+680082a0
+c2803bf1
+680402a2
+207a0000
+680902a4
+680102aa
+18422400
+1fe22200
+98462600
+1a6b2600
+1a427e00
+9a667e00
+1ff0fe00
+60014c71
+1a63a600
+1a227e00
+9a667e00
+1ff0fe00
+60014c73
+20600000
+70001627
+70890f36
+70890b5f
+202053d4
+70890f2e
+70890bff
+202053d9
+20600000
+68014ba0
+60014b9e
+68014b9c
+60014b9a
+700b7e03
+204001bf
+704c775a
+20403db8
+68120138
+793ffe0f
+6012004c
+20403db0
+d85fffff
+20203cda
+ea2a8000
+18417eff
+243a028e
+184cfe00
+e2228000
+1a20a204
+ea208000
+247a0000
+20207f9c
+20407c20
+da2047e4
+20407f9f
+1fe20400
+20407c24
+18427e00
+207a0000
+c01082a4
+c01102a6
+c01186c1
+c00082e6
+c00682c1
+c01602c0
+c01582cc
+c00182e9
+c01502f2
+c0097c85
+20207c5a
+704befff
+202006f4
+793f8023
+704befff
+202006ac
+700b7d22
+20205620
+6800807c
+203a02b0
+204061d9
+6800807c
+243a7c8c
+68008b7d
+c584fc87
+c00202b6
+c00882a9
+c01402bc
+20207c7b
+680147f4
+c30182b9
+20207ca4
+5800000a
+60020051
+20207ca4
+70007c37
+68014c78
+60010051
+20600000
+204002e6
+20403eff
+20407cd5
+70413100
+180a7e00
+6000c4f9
+7043dc05
+58181203
+6001c3e2
+d8400007
+204002d2
+20207cae
+7043dc04
+580000ff
+6001c3e2
+d8400000
+204002d2
+20207cae
+6800c3f9
+9840fe00
+1fe0fe0b
+1fe67c1f
+242102e2
+6000c3d9
+d8a043e5
+18427e00
+245a02df
+6800c3f9
+1fe27200
+d8c043fa
+20207e45
+1fe27200
+d8c04d48
+20207e45
+6800c3f9
+1fe0fe0b
+6000c3d9
+20600000
+20403eff
+70017706
+20207c97
+20403bfa
+20404d98
+20405b62
+70017706
+6800c7dc
+c00002f0
+70017717
+70425e01
+20207ca2
+680147f4
+c284bf90
+c28002fb
+c283fcd5
+c51186ac
+7043d800
+20403f7e
+700b7d37
+20207c27
+20403eff
+20407cd5
+20203f77
+20403b36
+20203cdc
+20400302
+2020302c
+da600304
+20203301
+c300b307
+2040333d
+20400311
+98467e00
+1fe0fe01
+2021030b
+20203325
+98002400
+1a208c02
+e8c10000
+203a3327
+20403349
+20200305
+1ff11600
+196c9600
+2022831b
+29601e0f
+24608000
+18511600
+196c9600
+24628000
+7920041c
+20600000
+18511600
+196c9600
+29601e0f
+24608000
+79207e1c
+20600000
+600c02a0
+20407e53
+680c02a0
+2020307c
+78547c00
+68010032
+d840ffff
+98467c00
+24628000
+68020034
+2038032e
+9d067e00
+2020032f
+9c467e00
+1fe67c04
+24610000
+18007e00
+60010032
+202034df
+700b7d20
+20407c27
+20200338
+600a0034
+70474801
+5800ffff
+60010032
+70007301
+20600000
+20403baa
+20400340
+20203267
+1c40c201
+20403a54
+18004803
+20403a42
+20403bae
+20403bb4
+20403bc5
+2020375c
+20403e25
+20406dec
+204035d6
+20203480
+20403d61
+20403be2
+20213498
+20403204
+24343498
+20403812
+243a0349
+20600000
+204032df
+2422b568
+68008047
+c301b571
+6800c165
+c009b562
+68014c24
+1fe67c14
+24213562
+60010091
+6800cc23
+60008090
+58004c26
+60010179
+20203562
+68010091
+60014c24
+1fe67c14
+2421358f
+98007200
+68008090
+6000cc23
+68010179
+98000c00
+d8a04c26
+20407e45
+2020358f
+680102cd
+203a4dfc
+680082cf
+c0008374
+20204dbb
+2040527a
+247a0000
+20204dc3
+e8c08000
+c005037a
+20204e14
+e8c08000
+1fe20e00
+e8c10000
+1fe22200
+1a627e00
+9a262600
+5800000b
+e0a08000
+18e27e00
+e0a08000
+e8c10000
+c0010388
+c001838f
+20203bf1
+58020008
+e0a30000
+58000200
+e0a20000
+18007e0c
+9a40a400
+20204e20
+5803000c
+e0a30000
+58000006
+e0a40000
+18007e10
+9a40a400
+20204e20
+204052c4
+18002400
+204052d0
+1fe20a00
+680102cd
+1fe22600
+680102cb
+98000c00
+204003a0
+20205110
+e8c08000
+c00503a3
+20205116
+e8c08000
+1fe20e00
+e8c10000
+1fe22200
+e8c10000
+600102a0
+1a627e00
+9a262600
+204052d0
+5800000b
+e0a08000
+18e27e00
+e0a08000
+680102a0
+20200385
+da400000
+2040527a
+247a0000
+2020524d
+680102cb
+1fe20c00
+e8c08000
+1fe1040f
+1ff1fe00
+c00503c9
+c00283c7
+c00083c0
+c0024b18
+20204aff
+18427e00
+c002cb09
+704c9d01
+c001cb18
+704c9d00
+c0024b18
+20600000
+204003c9
+20204b11
+e8c08000
+c0008426
+20600000
+2040527a
+247a0000
+204003d0
+20206dfd
+6800c132
+c1008000
+6800c3cd
+207a0000
+1fe22200
+7043cd00
+1a227e00
+c0284ddc
+20600000
+6800807d
+c00183dd
+c00383e8
+20205b92
+680084df
+60008445
+c0098334
+c01983e2
+20205c58
+6800844d
+79207e00
+6000844d
+700b7d01
+20407c27
+20205c83
+680084df
+60008446
+20205cf3
+78547c00
+204061d9
+68008048
+207a0000
+c283df10
+c00103f3
+c0038400
+20205ee0
+18007e11
+204061b5
+68008049
+1fe20400
+c00003fb
+c00703fb
+c00e03fb
+20600000
+e0a08000
+6800c702
+e0a08000
+5800000e
+20205fa6
+20406055
+70007264
+20600000
+6800807c
+203a0408
+204061d9
+6800807c
+247a0000
+68008055
+207a0000
+c0030417
+c008040d
+2020623e
+6800c748
+c1000000
+c0008415
+d8e0000a
+20407e53
+247a0000
+70474800
+2020629b
+20748000
+20200417
+68008177
+c281629b
+c280041a
+6800c25e
+203a62c7
+6800844d
+c4018000
+c4010000
+68020465
+d8400320
+98408400
+1c427e00
+98467c00
+24610000
+20206267
+e8c08000
+6000cc90
+20600000
+204054bd
+68088017
+20403a82
+20403a87
+78287c00
+d960157c
+2020547f
+70443e01
+70443f00
+2020534e
+204053dd
+20400436
+202054c1
+203681e1
+204053ee
+20203a91
+6800cc40
+600246f9
+6800c4db
+c000843e
+202054e0
+7044db00
+202054ef
+680083c0
+c4028000
+680103da
+680903e0
+98467e00
+24610000
+2020557e
+680083d7
+c3828000
+68008341
+203a5626
+20205890
+6800c440
+c0038465
+c0078469
+c0030458
+c0010455
+c0098453
+2020563a
+18000401
+20205892
+5800000a
+600103ef
+20205693
+700b7d12
+20407c33
+18000401
+2034d892
+700b7d34
+20407c27
+6800cc49
+c0010461
+20200463
+700b7d46
+20405620
+18000401
+20205892
+6800cc48
+e0a08000
+18000402
+20205892
+18a08bff
+68044c4c
+e0a40000
+e8c40000
+e0a40000
+18000202
+2020588a
+6800c444
+c004d719
+c0010475
+c003d70d
+20205656
+59000302
+6001c4b5
+58000001
+e0a08000
+58010010
+e0a18000
+202056f1
+09800018
+78287c00
+db600664
+1fef7e00
+1ff17e00
+e0a18000
+2023375c
+7836fc00
+68008017
+1fe0a200
+202054af
+e8c18000
+600183f9
+c029048d
+c00104a4
+c0090493
+20205907
+704d1701
+680103fa
+c0108491
+202059ed
+d8c00349
+20200426
+680103fa
+1fe67c21
+20428491
+680103fa
+1fe67c31
+204284a2
+680103fa
+68094c99
+18408401
+98467c00
+2022849f
+202059ca
+700b7d34
+20407c27
+202059ca
+70413101
+20600000
+700b7d03
+20205620
+6800c444
+c00d85df
+c00e85df
+c0088573
+c0048525
+c0028513
+c00384c7
+c009d85c
+c00184b7
+c00584ba
+c00684b2
+20205666
+680103fa
+c00384b5
+202057d6
+7003fc07
+20205729
+68014c4a
+e0a10000
+2020588a
+680103fa
+c0185728
+c00704be
+202057c6
+6800cc49
+c08057c6
+6800cc5c
+c001d7c6
+18a20400
+704c4901
+18420a00
+7003fc05
+20205729
+2040577b
+20740000
+680944c0
+58001812
+98467c00
+202284e0
+5800180f
+98467c00
+202284e2
+5800180a
+98467c00
+202284e6
+58001801
+98467c00
+202284e4
+20205754
+6800cc5f
+d8400000
+f9200400
+98417e00
+c0805728
+6800cc5f
+f9207e00
+6000cc5f
+202004e8
+d8e00000
+202004d7
+d8e00001
+202004d7
+d8e00003
+202004d7
+d8e00002
+202004d7
+680144c0
+1fe22200
+680944c4
+18422400
+204004ef
+202284fa
+20205728
+d8c04504
+e8c10000
+207a0000
+e8c18000
+e8c10000
+9a267c00
+20628000
+18c08dfd
+e8c08000
+98c08c00
+202004f0
+18c08df9
+e8c10000
+60014c41
+20400508
+203a5728
+18c08dfc
+e8c10000
+1fe0ffff
+60014c43
+70444407
+68024c41
+60024445
+18000409
+20205892
+e8c10000
+e8c08000
+98c08c00
+e8c10000
+207a0000
+e8c10000
+9a467c00
+20628000
+e8c08000
+98c08c00
+2020050b
+d9600003
+18007e01
+6000c445
+20405a74
+20405a7d
+203a5746
+24210523
+78547c00
+e0a10000
+e8c10000
+e0a10000
+196097ff
+2022d746
+e8c08000
+98c08c00
+20200517
+18c08c02
+20200520
+680944c0
+58002a00
+98467c00
+20228565
+58002a50
+98467c00
+20228570
+58002803
+98467c00
+2422d728
+680144bc
+600102a0
+78347c00
+204005b7
+24210541
+680902a0
+204005bf
+c0008541
+204005bb
+2422853f
+78547c00
+20400543
+204005a5
+204005bf
+2040054b
+20200541
+204005a5
+20200532
+20345728
+202005dd
+680102a0
+60014446
+6800cc47
+1fe27200
+204005d4
+d8a04448
+20407e45
+202005d7
+68094c45
+184cfe00
+c082855d
+204005d1
+680102a0
+e0a10000
+204005d7
+58004504
+98408c00
+e8c08000
+18c20400
+1fe27200
+1fe0fe05
+6000c445
+204005d1
+18420c00
+20407e45
+202005d7
+204005d1
+680102a0
+e0a10000
+68014c45
+e0a10000
+204005d7
+70444507
+20600000
+20405b08
+e8c08000
+1fe27200
+1fe0fe02
+6000c445
+18c08dfb
+e8c10000
+e0a10000
+18c08c03
+20407e45
+2020588a
+d8402a50
+20405b0c
+20200566
+d9600002
+680144bc
+600102a0
+700d5c00
+78347c00
+204005b7
+2421059b
+680902a0
+204005bf
+c000859e
+204005bb
+24228597
+68008d5c
+c000859e
+24340588
+78547c00
+6800cc47
+1fe0fe04
+6000c445
+204005d7
+20200592
+6800cc47
+1fe67c10
+2022859e
+6800c445
+1fe67c10
+2022859e
+680102a0
+1fe0ffff
+60010d5a
+204005ae
+680102a0
+60010d58
+204005a9
+196097ff
+20228599
+204005a5
+20200578
+700d5c01
+20200597
+680102a0
+60010d5a
+202005a2
+680102a0
+1fe0ffff
+60010d5a
+202005a2
+20345728
+204005ae
+202005dd
+680902a0
+18408401
+600902a0
+20600000
+6800cc47
+60008103
+1fe27200
+204005d4
+20207e45
+204005d1
+68010d58
+e0a10000
+68010d5a
+e0a10000
+68008103
+1fe27200
+20407e45
+202005d7
+680902a0
+680144be
+98467c00
+20600000
+680144c0
+68094c45
+98467c00
+20600000
+d8c04504
+18422200
+e8c10000
+203a05ca
+e8c90000
+60094c45
+9a267c00
+202285cc
+e8c08000
+98c08c00
+202005c1
+58000001
+20600000
+e8c08000
+6000cc47
+204005da
+58000000
+20600000
+680102b9
+1fe20a00
+20600000
+680102b7
+1fe20c00
+20600000
+18a27e00
+600102b9
+20600000
+18c27e00
+600102b7
+20600000
+204005d1
+2020588a
+6800cbab
+1fe08401
+18410403
+6008cbab
+1feffe07
+d8c04bad
+98c08c00
+6800cc62
+1fe0fffb
+1fe27200
+d8a04445
+20407e45
+6808cc62
+20205892
+2040561c
+202058b0
+1a627e00
+c00185f9
+c00505fd
+c00905fb
+c00105ff
+1fe67c0d
+202158c0
+6000cc48
+700b7d27
+20205620
+704c5c00
+20205938
+700b7d33
+20205620
+700b7d2b
+20205620
+58000014
+600103ef
+20600000
+6800c43e
+28200601
+20208606
+202058a7
+6800c43f
+203a0609
+202058a7
+6800c43e
+793ffe04
+6000c43e
+20600000
+e8c08000
+c0008614
+c002061a
+c0048612
+202058f8
+704c4903
+20205974
+704d1c01
+6000c4ae
+e8c30000
+e0a30000
+700b7d42
+20205620
+204074a8
+2022861d
+20205968
+704c4902
+2020596a
+704c5d00
+20403f86
+20403f7e
+20403fa4
+20203ecc
+70421300
+70448b00
+704c5c00
+704c4900
+704c5f00
+704c5d00
+20203ed0
+58000000
+60024ba9
+20600000
+c6918000
+68024d1d
+60024d4f
+20400653
+24340646
+704c0b0a
+20400679
+6800cbef
+c1ff8000
+6800cd22
+247a0000
+204001b2
+24740000
+68008b7f
+247a0000
+20403cab
+6801c210
+207a0000
+6800c131
+207a0000
+6801cd57
+20407e8a
+600a41fc
+20203cda
+204001b2
+24740000
+68008b7f
+247a0000
+20403cab
+6801c210
+207a0000
+6800c131
+207a0000
+6800cc0b
+243a0642
+68024d4f
+20200643
+6800cbef
+c0ff86ca
+2040065a
+20540675
+20540734
+704be601
+20600000
+78547c00
+704be202
+6800cd34
+c0020665
+c002866b
+c0030671
+c003866e
+c0040668
+6800cd22
+245a34df
+20600000
+704d3400
+704be10a
+20200673
+704d3408
+704be110
+20200673
+704d3403
+704be104
+20200673
+704d3402
+704be103
+20200673
+704be201
+704be108
+704be700
+202034df
+d8a00cd5
+d8c04d34
+df200014
+20207e45
+704be800
+d9600d00
+34730200
+204006a0
+24378689
+204006af
+6800cbe0
+1fe0fe01
+6000cbe0
+704d2200
+6800cbef
+c0ff869f
+2040069b
+704be700
+704be600
+20600000
+704d2201
+6800cbe7
+1fe0fe01
+6000cbe7
+6800cbef
+c0ff86ab
+6800cbe7
+c07f86ac
+6800cbe7
+d8400010
+98467c00
+20210753
+6800cbe8
+1fe0fe01
+6000cbe8
+2000000a
+c083867a
+20200753
+58000000
+60020cd5
+60024d34
+20600000
+202006e4
+7857fc00
+204007ab
+18002a00
+68024c00
+98001200
+68088017
+20403a82
+20403a87
+2040076b
+205787a5
+20600000
+20600000
+704d2200
+700b7d32
+20207c27
+20400719
+68008cb3
+c1810000
+6800cbdf
+207a0000
+98007200
+d8c00cb5
+d8a00d17
+20407e45
+68008cb4
+2fe1f008
+24608000
+68008cb5
+c07f86bf
+6000cc90
+20600000
+704d5a01
+20600000
+79200023
+204006c6
+20400685
+704bef01
+20600000
+704be000
+704be94e
+68024beb
+20200726
+204006c6
+6800cbe6
+c000b4df
+6800cbef
+c00086d2
+c00106d5
+c00186d8
+20203bf1
+704bef11
+700d37aa
+202006da
+704bef12
+700d3755
+202006da
+704bef13
+700d3722
+700d3802
+68024c06
+60020d39
+700d3d00
+da200d37
+d8400007
+20400714
+20400734
+20400658
+202034df
+6800cbef
+c17f8000
+c00886ea
+c00906ec
+c00986ee
+20600000
+704bef02
+20200685
+704bef03
+20200685
+704befff
+700b7d31
+20407c27
+68020d19
+20400726
+20200685
+79200023
+20400727
+20400753
+6800cbef
+c1ff8000
+20400706
+58000000
+60014c04
+20403cab
+200007d0
+6800cc04
+c07f86ac
+204006a0
+2437870f
+2040069b
+79200023
+700b7d3c
+20207c27
+700d37ff
+6800cbe2
+60008d38
+68024c06
+60020d39
+d8400006
+da200d37
+20400714
+20200734
+68014c04
+1fe0fe01
+60014c04
+20400753
+202006fc
+6008cbe1
+18427200
+d8a00cd5
+1a220c00
+20207e45
+68008cb4
+1fe97e00
+6000cbdf
+20600000
+6808cc22
+58004c11
+98408a00
+1a227e00
+e0a08000
+18408401
+18410407
+6008cc22
+20600000
+60024c00
+da200000
+df200004
+d8c04c00
+e8c08000
+9a20a200
+c200072a
+1a227e00
+60014c0c
+6800cc0c
+6808cc0d
+9840fe00
+6000cc0e
+20600000
+6800cbe1
+1fe0fe02
+6000cbe3
+6800cbe2
+60008cf5
+6800cbe1
+1fe9fe00
+6808cbe0
+18410403
+18438400
+9841fe00
+6808cc0a
+9840fe00
+e0a08000
+6800cbef
+c0ff8746
+6800cbe2
+e0a08000
+6800cbe1
+98007200
+6800cbe2
+c0008751
+d8c00cd5
+20407e45
+68008cd5
+c001874f
+20600000
+700cd502
+20600000
+d8c00cd6
+20207e45
+6808cbea
+20400759
+18408401
+18410403
+6008cbea
+20600000
+6800cc00
+1fe17e03
+1fefa204
+58004bf0
+9a20fe00
+98408c00
+e8c08000
+6000cbe9
+20600000
+7844fc00
+7843fc00
+58555555
+98001e00
+6800cbe9
+1fed8400
+79200401
+18431c00
+20600000
+20400762
+7826fc00
+7830fc00
+78507c00
+78287c00
+68014be4
+98003600
+37c18400
+242c07a5
+7846fc00
+7825fc00
+7823fc00
+7824fc00
+09800008
+19897e00
+6000cc0f
+6808cc0e
+98467c00
+242287a5
+09800008
+19897e00
+60008cb3
+68008cb3
+6808cbe2
+a8400e00
+242087a5
+09800008
+19897e00
+e0a08000
+1fe97e00
+1fe1721f
+2022878f
+09800008
+19897e00
+e0a08000
+c200078b
+18a22200
+09800008
+19897e00
+6000cc10
+1a220a00
+09800018
+78287c00
+db600664
+1fef7e00
+1ff17e00
+e0a18000
+7845fc00
+202307a5
+7837fc00
+68008017
+1fe0a200
+20403ab6
+7846fc00
+20403a7a
+6800cc10
+1fe22200
+2020071d
+784dfc00
+7845fc00
+2020375c
+20403a7a
+6808cbe9
+20203a91
+204053d2
+68024c00
+98001200
+20400762
+204007a8
+79202a00
+782efc00
+78307c00
+7850fc00
+19317e00
+1fecfe00
+1ff1fe00
+08008628
+784efc00
+782dfc00
+7823fc00
+7824fc00
+6800cc0e
+08008608
+6800cbe3
+98007200
+d8c00cf5
+e8c08000
+08008608
+c20007c1
+78247c00
+08008618
+78447c00
+37d38200
+20000064
+784efc00
+784dfc00
+20203a7a
Index: c51/output/sched.rom
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/c51/output/sched.rom	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/c51/output/sched.rom	(working copy)
@@ -0,0 +1,635 @@
+4000:
+69   #mem_patch00
+04   #mem_patch01
+00   #mem_patch02
+00   #mem_patch03
+80   #mem_patch04
+09   #mem_patch05
+0a   #mem_patch06
+00   #mem_patch07
+0c   #mem_patch08
+00   #mem_patch09
+11   #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
+09   #mem_patch23
+18   #mem_patch24
+00   #mem_patch25
+04   #mem_patch26
+c8   #mem_patch27
+00   #mem_patch28
+5c   #mem_patch29
+40   #mem_patch2A
+00   #mem_patch2B
+3a   #mem_patch2C
+ce   #mem_patch2D
+00   #mem_patch2E
+00   #mem_patch2F
+80   #mem_patch30
+e0   #mem_patch31
+00   #mem_patch32
+90   #mem_patch33
+00   #mem_patch34
+00   #mem_patch35
+00   #mem_patch36
+20   #mem_patch37
+00   #mem_patch38
+a0   #mem_patch39
+01   #mem_patch3A
+00   #mem_patch3B
+4c   #mem_patch3C
+00   #mem_patch3D
+00   #mem_patch3E
+00   #mem_patch3F
+
+
+4d2c:   50 00		# 20:10ms  30:15ms
+
+4131:01
+4213:40
+4214:03
+41f7:0a
+41f5:10 00
+4133:00
+
+414a: 40 25 00
+
+4140:36 28 52 08 66 2a    
+4702:
+'BT3.0 Keyboard
+4280:0e 00
+4282:01
+4284:01
+4747:0a
+47dc:01
+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
+3601a2
+
+#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 3591 358f 0822 258b
+
+# 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)
+26ff00 # 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
+
+#25
+0501 # Usage Page(Generic Desktop)
+0906 # Usage(Keyboard)
+a101 # Collection(Application)
+8508 # Report ID(8)    
+9570 # Report Count(112)
+7501 # Report Size(1)
+1500 # Logical Minimum(0)
+2501 # Logical Maximum(1)
+0507 # Usage Page(Keyboard/Keypad)
+1900 # Usage Minimum(01)
+29ff # Usage Maximum(255)
+8102 # Input(Data Variable Absolute) ; Modifier byte
+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
+
+#23
+05 01	#Usage Page (Generic Desktop),
+09 80	#USAGE (3-D Digitizer)
+a1 01	#Collection (Application),
+85 03	#Report ID (3)
+19 81	#Usage Minimum (), 
+29 88	#Usage Maximum (),
+15 00	#Logical Minimum (0),
+25 01	#Logical Maximum (1),
+95 08	#Report Count (8),
+75 01	#Report Size (1),
+81 06	#Input (Data,Var,Rel)
+c0		#END_COLLECTION
+
+090207 3508 3506 090409 090100
+09020b 090100
+09020c 091f40
+09020d 2800
+09020e 2801
+09020f 090012
+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
+0904e8
+090202#ProductID
+097021
+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
+4138:
+ff
+ff
+8f
+f8	#fe--EDR  F8--BR
+83	#AFHclose 83
+9d
+59
+82
+
+#bluetootch param init
+07dc:00
+00a2:00
+07dd:00
+0016:27
+
+47fd:ff
+47f7:ff
+
+416e:80
+
+
+4ba2:02 01
+
+
+#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 
+'BT5.0 KB
+
+#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
+
+#Primary Service: Device Information
+0c 00 00 28 02 0a 18
+#Manufacturer Name
+0d 00 03 28 01 02
+0e 00 29 2a 06 59 69 43 68 69 70			#IOS 13.5.1
+#Characteristic: pnp id
+0f 00 03 28 01 02
+10 00 50 2a 07 02 e8 04 21 70 01 00		# SAMSUNG soft keyboard,setup shortcuts
+
+#Primary service: HID
+11 00 00 28 02 12 18
+#Characteristic:Protocol mode
+12 00 03 28 01 06
+13 00 4e 2a 01 01
+#Characteristic: hid report
+14 00 03 28 01 12   
+15 00 4d 2a 08 00 00 00 00 00 00 00 00	#hid report	led handle write
+16 00 02 29 02 00 00	
+17 00 08 29 02 01 01	#Report ID: 1	Report Type: Input
+
+#Characteristic:hid report
+18 00 03 28 01 12  
+19 00 4d 2a 02 00 00
+1a 00 02 29 02 00 00
+1b 00 08 29 02 03 01	#Report ID: 3	Report Type: Input
+
+#Characteristic:hid report
+1c 00 03 28 01 12   
+1d 00 4d 2a 02 00 00 	#hid report	led handle write
+1e 00 02 29 02 00 00	
+1f 00 08 29 02 02 01	#Report ID: 2	Report Type: Input
+
+#Characteristic:hid report
+20 00 03 28 01 0e   
+21 00 4d 2a 02 00	00	#hid report	led handle write
+22 00 02 29 02 00 00	
+23 00 08 29 02 01 02	#Report ID: 1	Report Type: Output
+
+#Characteristic:hid report
+24 00 03 28 01 12  
+25 00 4d 2a 0d 00 00 00 00 00 00 00 00 00 00 00 00 00
+26 00 02 29 02 00 00
+27 00 08 29 02 08 01	#Report ID: 8	Report Type: Input   game keyboard
+
+
+#Characteristic:Report map
+28 00 03 28 01 0a
+29 00 4b 2a 8b
+
+#66
+05 01
+09 06
+a1 01
+85 01
+75 01 
+95 08
+05 07
+19 e0 
+29 e7 
+15 00
+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 
+26 ff 00
+05 07
+19 00
+29 ff 
+81 00
+c0 
+
+#25
+0501 # Usage Page(Generic Desktop)
+0906 # Usage(Keyboard)
+a101 # Collection(Application)
+8508 # Report ID(8)    
+9570 # Report Count(112)
+7501 # Report Size(1)
+1500 # Logical Minimum(0)
+2501 # Logical Maximum(1)
+0507 # Usage Page(Keyboard/Keypad)
+1900 # Usage Minimum(01)
+29ff # Usage Maximum(255)
+8102 # Input(Data Variable Absolute) ; Modifier byte
+c0 # End Collection
+
+#25
+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
+
+#23
+05 01	#Usage Page (Generic Desktop),
+09 80	#USAGE (3-D Digitizer)
+a1 01	#Collection (Application),
+85 03	#Report ID (3)
+19 81	#Usage Minimum (), 
+29 88	#Usage Maximum (),
+15 00	#Logical Minimum (0),
+25 01	#Logical Maximum (1),
+95 08	#Report Count (8),
+75 01	#Report Size (1),
+81 06	#Input (Data,Var,Rel)
+c0		#END_COLLECTION
+
+#Characteristic:Hid information
+2a 00 03 28 01 02
+2b 00 4a 2a 04 11 01 00 01        
+#Characteristic
+2c 00 03 28 01 04
+2d 00 4c 2a 01 00
+
+#Primary Service: BAS
+2e 00 00 28 02 0f 18 
+#Characteristic: Battery Level
+2f 00 03 28 01 12 
+30 00 19 2a 01 64 
+#Client Characteristic Configuration
+31 00 02 29 02 00 00 
+#End of Attribute list
+00 00
+
+
+4c4a:17
+46f9:50
+44c2:14
+44f9:11 46 34 54 77 dd
+
+
+4c5e:00
+4c91:15 00
+4c95:19 00
+4c93:1d 00
+4c99:25 00
+4c97:30 00
+4c40:50
+
+4c4c:
+0c 00 #Length
+05 00 #CID
+12 b4 
+08 00 
+08 00 #min interval
+08 00 #max interval
+00 00 #latency
+2c 01 #timeout
+
+4419:
+'BT5.0 KB
+
+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
+4d48:
+#microsoft swift pair
+06 ff 06 00 03 00 80
+
+43f9:1f
+43fa:
+'\09BT5.0 KB
+
+4d30:20 22 03 022		#version data 202203022
+
+4c71:9f 3e
+4c73:cd 4d
+4c6f:02    #01 VINLPM      #02 HVIN      #04 GPIO
+
+#24g init
+4be2:02        #mouse 1,kb 2
+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
+4beb:20 15 10 05
+0d37:00 00 00 00 00 00 00 00 00 00
+4d1d:00 48 5d 00 #10 min
+4d53:ff ff ff ff
+4d57:e8 fd 00 #00 00 0a
+
+4216: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
+4c78:00 13
+
+429b:30 3f
+42aa:20
+#pointers to tail space of mem_le_att_list
+4f70:
+07 ff #2M_IF
+0a fb
+0b ff 
+
+#agc table
+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
+
+# 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
+
+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

Property changes on: c51/patch/adc.obj
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: c51/patch/bluetooth.obj
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: c51/patch/bluetooth.obj
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: c51/patch/geneep.exe
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: c51/patch/geneep.exe
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: c51/patch/global_variable.obj
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: c51/patch/global_variable.obj
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: c51/patch/gpio.obj
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: c51/patch/gpio.obj
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: c51/patch/iic.obj
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: c51/patch/iic.obj
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: c51/patch/ipc.obj
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: c51/patch/ipc.obj
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: c51/patch/kb.dat
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/c51/patch/kb.dat	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/c51/patch/kb.dat	(working copy)
@@ -0,0 +1,528 @@
+mem_patch00:
+69   #mem_patch00
+04   #mem_patch01
+00   #mem_patch02
+00   #mem_patch03
+80   #mem_patch04
+09   #mem_patch05
+0a   #mem_patch06
+00   #mem_patch07
+0c   #mem_patch08
+00   #mem_patch09
+11   #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
+09   #mem_patch23
+18   #mem_patch24
+00   #mem_patch25
+04   #mem_patch26
+c8   #mem_patch27
+00   #mem_patch28
+5c   #mem_patch29
+40   #mem_patch2A
+00   #mem_patch2B
+3a   #mem_patch2C
+ce   #mem_patch2D
+00   #mem_patch2E
+00   #mem_patch2F
+80   #mem_patch30
+e0   #mem_patch31
+00   #mem_patch32
+90   #mem_patch33
+00   #mem_patch34
+00   #mem_patch35
+00   #mem_patch36
+20   #mem_patch37
+00   #mem_patch38
+a0   #mem_patch39
+01   #mem_patch3A
+00   #mem_patch3B
+4c   #mem_patch3C
+00   #mem_patch3D
+00   #mem_patch3E
+00   #mem_patch3F
+
+
+mem_customize_timer_setup:   50 00		# 20:10ms  30:15ms
+
+mem_lpm_mode:01
+mem_lpm_mult:40
+mem_lpm_mult_timeout:03
+mem_lpm_overhead:0a
+mem_lpm_interval:10 00
+mem_scan_mode:00
+
+mem_class: 40 25 00
+
+mem_lap:36 28 52 08 66 2a    
+mem_local_name_length:
+'BT3.0 Keyboard
+mem_sniff_param_interval:0e 00
+mem_sniff_param_attempt:01
+mem_sniff_param_timeout:01
+mem_unsniff2sniff_timer:0a
+mem_ssp_enable:01
+mem_ui_profile_supported:01
+
+mem_eir_enable:01
+
+mem_all_uuid_16bits:
+06
+03#Type: Complete list of 16-bit UUIDs
+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
+3601a2
+
+#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 3591 358f 0822 258b
+
+# 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)
+26ff00 # 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
+
+#25
+0501 # Usage Page(Generic Desktop)
+0906 # Usage(Keyboard)
+a101 # Collection(Application)
+8508 # Report ID(8)    
+9570 # Report Count(112)
+7501 # Report Size(1)
+1500 # Logical Minimum(0)
+2501 # Logical Maximum(1)
+0507 # Usage Page(Keyboard/Keypad)
+1900 # Usage Minimum(01)
+29ff # Usage Maximum(255)
+8102 # Input(Data Variable Absolute) ; Modifier byte
+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
+
+#23
+05 01	#Usage Page (Generic Desktop),
+09 80	#USAGE (3-D Digitizer)
+a1 01	#Collection (Application),
+85 03	#Report ID (3)
+19 81	#Usage Minimum (), 
+29 88	#Usage Maximum (),
+15 00	#Logical Minimum (0),
+25 01	#Logical Maximum (1),
+95 08	#Report Count (8),
+75 01	#Report Size (1),
+81 06	#Input (Data,Var,Rel)
+c0		#END_COLLECTION
+
+090207 3508 3506 090409 090100
+09020b 090100
+09020c 091f40
+09020d 2800
+09020e 2801
+09020f 090012
+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
+0904e8
+090202#ProductID
+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
+9d
+59
+82
+
+#bluetootch param init
+mem_sp_flag:00
+mem_lpm_current_mult:00
+mem_master_sp_flag:00
+mem_le_ch_mapped:27
+
+mem_ui_button_gpio:ff
+mem_led_gpio:ff
+
+mem_seqi:80
+
+
+mem_ipc_tx_evt_buff:02 01
+
+
+#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 
+'BT5.0 KB
+
+#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
+
+#Primary Service: Device Information
+0c 00 00 28 02 0a 18
+#Manufacturer Name
+0d 00 03 28 01 02
+0e 00 29 2a 06 59 69 43 68 69 70			#IOS 13.5.1
+#Characteristic: pnp id
+0f 00 03 28 01 02
+10 00 50 2a 07 02 e8 04 21 70 01 00		# SAMSUNG soft keyboard,setup shortcuts
+
+#Primary service: HID
+11 00 00 28 02 12 18
+#Characteristic:Protocol mode
+12 00 03 28 01 06
+13 00 4e 2a 01 01
+#Characteristic: hid report
+14 00 03 28 01 12   
+15 00 4d 2a 08 00 00 00 00 00 00 00 00	#hid report	led handle write
+16 00 02 29 02 00 00	
+17 00 08 29 02 01 01	#Report ID: 1	Report Type: Input
+
+#Characteristic:hid report
+18 00 03 28 01 12  
+19 00 4d 2a 02 00 00
+1a 00 02 29 02 00 00
+1b 00 08 29 02 03 01	#Report ID: 3	Report Type: Input
+
+#Characteristic:hid report
+1c 00 03 28 01 12   
+1d 00 4d 2a 02 00 00 	#hid report	led handle write
+1e 00 02 29 02 00 00	
+1f 00 08 29 02 02 01	#Report ID: 2	Report Type: Input
+
+#Characteristic:hid report
+20 00 03 28 01 0e   
+21 00 4d 2a 02 00	00	#hid report	led handle write
+22 00 02 29 02 00 00	
+23 00 08 29 02 01 02	#Report ID: 1	Report Type: Output
+
+#Characteristic:hid report
+24 00 03 28 01 12  
+25 00 4d 2a 0d 00 00 00 00 00 00 00 00 00 00 00 00 00
+26 00 02 29 02 00 00
+27 00 08 29 02 08 01	#Report ID: 8	Report Type: Input   game keyboard
+
+
+#Characteristic:Report map
+28 00 03 28 01 0a
+29 00 4b 2a 8b
+
+#66
+05 01
+09 06
+a1 01
+85 01
+75 01 
+95 08
+05 07
+19 e0 
+29 e7 
+15 00
+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 
+26 ff 00
+05 07
+19 00
+29 ff 
+81 00
+c0 
+
+#25
+0501 # Usage Page(Generic Desktop)
+0906 # Usage(Keyboard)
+a101 # Collection(Application)
+8508 # Report ID(8)    
+9570 # Report Count(112)
+7501 # Report Size(1)
+1500 # Logical Minimum(0)
+2501 # Logical Maximum(1)
+0507 # Usage Page(Keyboard/Keypad)
+1900 # Usage Minimum(01)
+29ff # Usage Maximum(255)
+8102 # Input(Data Variable Absolute) ; Modifier byte
+c0 # End Collection
+
+#25
+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
+
+#23
+05 01	#Usage Page (Generic Desktop),
+09 80	#USAGE (3-D Digitizer)
+a1 01	#Collection (Application),
+85 03	#Report ID (3)
+19 81	#Usage Minimum (), 
+29 88	#Usage Maximum (),
+15 00	#Logical Minimum (0),
+25 01	#Logical Maximum (1),
+95 08	#Report Count (8),
+75 01	#Report Size (1),
+81 06	#Input (Data,Var,Rel)
+c0		#END_COLLECTION
+
+#Characteristic:Hid information
+2a 00 03 28 01 02
+2b 00 4a 2a 04 11 01 00 01        
+#Characteristic
+2c 00 03 28 01 04
+2d 00 4c 2a 01 00
+
+#Primary Service: BAS
+2e 00 00 28 02 0f 18 
+#Characteristic: Battery Level
+2f 00 03 28 01 12 
+30 00 19 2a 01 64 
+#Client Characteristic Configuration
+31 00 02 29 02 00 00 
+#End of Attribute list
+00 00
+
+
+mem_le_local_mtu:17
+mem_le_transmit_window:50
+mem_le_notify_handle:14
+mem_le_lap:11 46 34 54 77 dd
+
+
+mem_empty_count:00
+mem_att_report_standard_key:15 00
+mem_att_report_system_ctrl:19 00
+mem_att_report_media_key:1d 00
+mem_att_report_game:25 00
+mem_att_report_battery:30 00
+mem_le_rx_window:50
+
+mem_le_connection_updata_param:
+0c 00 #Length
+05 00 #CID
+12 b4 
+08 00 
+08 00 #min interval
+08 00 #max interval
+00 00 #latency
+2c 01 #timeout
+
+mem_le_name_len:
+'BT5.0 KB
+
+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
+mem_le_adv_swift_pair:
+#microsoft swift pair
+06 ff 06 00 03 00 80
+
+mem_le_scan_data_len:1f
+mem_le_scan_data:
+'\09BT5.0 KB
+
+mem_version_yy_mm_dd:20 22 03 022		#version data 202203022
+
+mem_adc_0v:9f 3e
+mem_adc_3v:cd 4d
+mem_adc_config_flag:02    #01 VINLPM      #02 HVIN      #04 GPIO
+
+#24g init
+mem_24g_data_type:02        #mouse 1,kb 2
+mem_24g_no_ack:00#with ack
+mem_24g_rx_window:c0 12     #400us 
+mem_24g_ch_map1:00 13 2c 42
+mem_24g_ch_map2:06 15 36 48
+mem_24g_ch_map3:0f 1a 3a 4c
+mem_24g_ch_map4:11 23 31 4d
+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 #10 min
+mem_24g_enter_hibernate_max:ff ff ff ff
+mem_24g_short_sleep_counter:e8 fd 00 #00 00 0a
+
Index: c51/patch/kb.dat.bak
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/c51/patch/kb.dat.bak	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/c51/patch/kb.dat.bak	(working copy)
@@ -0,0 +1,528 @@
+mem_patch00:
+69   #mem_patch00
+04   #mem_patch01
+00   #mem_patch02
+00   #mem_patch03
+80   #mem_patch04
+09   #mem_patch05
+0a   #mem_patch06
+00   #mem_patch07
+0c   #mem_patch08
+00   #mem_patch09
+11   #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
+09   #mem_patch23
+18   #mem_patch24
+00   #mem_patch25
+04   #mem_patch26
+c8   #mem_patch27
+00   #mem_patch28
+5c   #mem_patch29
+40   #mem_patch2A
+00   #mem_patch2B
+3a   #mem_patch2C
+ce   #mem_patch2D
+00   #mem_patch2E
+00   #mem_patch2F
+80   #mem_patch30
+e0   #mem_patch31
+00   #mem_patch32
+90   #mem_patch33
+00   #mem_patch34
+00   #mem_patch35
+00   #mem_patch36
+20   #mem_patch37
+00   #mem_patch38
+a0   #mem_patch39
+01   #mem_patch3A
+00   #mem_patch3B
+4c   #mem_patch3C
+00   #mem_patch3D
+00   #mem_patch3E
+00   #mem_patch3F
+
+
+mem_customize_timer_setup:   50 00		# 20:10ms  30:15ms
+
+mem_lpm_mode:01
+mem_lpm_mult:40
+mem_lpm_mult_timeout:03
+mem_lpm_overhead:0a
+mem_lpm_interval:10 00
+mem_scan_mode:00
+
+mem_class: 40 25 00
+
+mem_lap:36 28 52 08 66 2a    
+mem_local_name_length:
+'BT3.0 Keyboard
+mem_sniff_param_interval:0e 00
+mem_sniff_param_attempt:01
+mem_sniff_param_timeout:01
+mem_unsniff2sniff_timer:0a
+mem_ssp_enable:01
+mem_ui_profile_supported:01
+
+mem_eir_enable:01
+
+mem_all_uuid_16bits:
+06
+03#Type: Complete list of 16-bit UUIDs
+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
+3601a2
+
+#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 3591 358f 0822 258b
+
+# 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)
+26ff00 # 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
+
+#25
+0501 # Usage Page(Generic Desktop)
+0906 # Usage(Keyboard)
+a101 # Collection(Application)
+8508 # Report ID(8)    
+9570 # Report Count(112)
+7501 # Report Size(1)
+1500 # Logical Minimum(0)
+2501 # Logical Maximum(1)
+0507 # Usage Page(Keyboard/Keypad)
+1900 # Usage Minimum(01)
+29ff # Usage Maximum(255)
+8102 # Input(Data Variable Absolute) ; Modifier byte
+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
+
+#23
+05 01	#Usage Page (Generic Desktop),
+09 80	#USAGE (3-D Digitizer)
+a1 01	#Collection (Application),
+85 03	#Report ID (3)
+19 81	#Usage Minimum (), 
+29 88	#Usage Maximum (),
+15 00	#Logical Minimum (0),
+25 01	#Logical Maximum (1),
+95 08	#Report Count (8),
+75 01	#Report Size (1),
+81 06	#Input (Data,Var,Rel)
+c0		#END_COLLECTION
+
+090207 3508 3506 090409 090100
+09020b 090100
+09020c 091f40
+09020d 2800
+09020e 2801
+09020f 090012
+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
+0904e8
+090202#ProductID
+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
+9d
+59
+82
+
+#bluetootch param init
+mem_sp_flag:00
+mem_lpm_current_mult:00
+mem_master_sp_flag:00
+mem_le_ch_mapped:27
+
+mem_ui_button_gpio:ff
+mem_led_gpio:ff
+
+mem_seqi:80
+
+
+mem_ipc_tx_evt_buff:02 01
+
+
+#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 
+'BT5.0 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
+
+#Primary Service: Device Information
+0c 00 00 28 02 0a 18
+#Manufacturer Name
+0d 00 03 28 01 02
+0e 00 29 2a 06 59 69 43 68 69 70			#IOS 13.5.1
+#Characteristic: pnp id
+0f 00 03 28 01 02
+10 00 50 2a 07 02 e8 04 21 70 01 00		# SAMSUNG soft keyboard,setup shortcuts
+
+#Primary service: HID
+11 00 00 28 02 12 18
+#Characteristic:Protocol mode
+12 00 03 28 01 06
+13 00 4e 2a 01 01
+#Characteristic: hid report
+14 00 03 28 01 12   
+15 00 4d 2a 08 00 00 00 00 00 00 00 00	#hid report	led handle write
+16 00 02 29 02 00 00	
+17 00 08 29 02 01 01	#Report ID: 1	Report Type: Input
+
+#Characteristic:hid report
+18 00 03 28 01 12  
+19 00 4d 2a 02 00 00
+1a 00 02 29 02 00 00
+1b 00 08 29 02 03 01	#Report ID: 3	Report Type: Input
+
+#Characteristic:hid report
+1c 00 03 28 01 12   
+1d 00 4d 2a 02 00 00 	#hid report	led handle write
+1e 00 02 29 02 00 00	
+1f 00 08 29 02 02 01	#Report ID: 2	Report Type: Input
+
+#Characteristic:hid report
+20 00 03 28 01 0e   
+21 00 4d 2a 02 00	00	#hid report	led handle write
+22 00 02 29 02 00 00	
+23 00 08 29 02 01 02	#Report ID: 1	Report Type: Output
+
+#Characteristic:hid report
+24 00 03 28 01 12  
+25 00 4d 2a 0d 00 00 00 00 00 00 00 00 00 00 00 00 00
+26 00 02 29 02 00 00
+27 00 08 29 02 08 01	#Report ID: 8	Report Type: Input   game keyboard
+
+
+#Characteristic:Report map
+28 00 03 28 01 0a
+29 00 4b 2a 8b
+
+#66
+05 01
+09 06
+a1 01
+85 01
+75 01 
+95 08
+05 07
+19 e0 
+29 e7 
+15 00
+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 
+26 ff 00
+05 07
+19 00
+29 ff 
+81 00
+c0 
+
+#25
+0501 # Usage Page(Generic Desktop)
+0906 # Usage(Keyboard)
+a101 # Collection(Application)
+8508 # Report ID(8)    
+9570 # Report Count(112)
+7501 # Report Size(1)
+1500 # Logical Minimum(0)
+2501 # Logical Maximum(1)
+0507 # Usage Page(Keyboard/Keypad)
+1900 # Usage Minimum(01)
+29ff # Usage Maximum(255)
+8102 # Input(Data Variable Absolute) ; Modifier byte
+c0 # End Collection
+
+#25
+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
+
+#23
+05 01	#Usage Page (Generic Desktop),
+09 80	#USAGE (3-D Digitizer)
+a1 01	#Collection (Application),
+85 03	#Report ID (3)
+19 81	#Usage Minimum (), 
+29 88	#Usage Maximum (),
+15 00	#Logical Minimum (0),
+25 01	#Logical Maximum (1),
+95 08	#Report Count (8),
+75 01	#Report Size (1),
+81 06	#Input (Data,Var,Rel)
+c0		#END_COLLECTION
+
+#Characteristic:Hid information
+2a 00 03 28 01 02
+2b 00 4a 2a 04 11 01 00 01        
+#Characteristic
+2c 00 03 28 01 04
+2d 00 4c 2a 01 00
+
+#Primary Service: BAS
+2e 00 00 28 02 0f 18 
+#Characteristic: Battery Level
+2f 00 03 28 01 12 
+30 00 19 2a 01 64 
+#Client Characteristic Configuration
+31 00 02 29 02 00 00 
+#End of Attribute list
+00 00
+
+
+mem_le_local_mtu:17
+mem_le_transmit_window:50
+mem_le_notify_handle:14
+mem_le_lap:11 46 34 54 77 dd
+
+
+mem_empty_count:00
+mem_att_report_standard_key:15 00
+mem_att_report_system_ctrl:19 00
+mem_att_report_media_key:1d 00
+mem_att_report_game:25 00
+mem_att_report_battery:30 00
+mem_le_rx_window:50
+
+mem_le_connection_updata_param:
+0c 00 #Length
+05 00 #CID
+12 b4 
+08 00 
+08 00 #min interval
+08 00 #max interval
+00 00 #latency
+2c 01 #timeout
+
+mem_le_name_len:
+'BT5.0 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
+mem_le_adv_swift_pair:
+#microsoft swift pair
+06 ff 06 00 03 00 80
+
+mem_le_scan_data_len:1f
+mem_le_scan_data:
+'\09BT5.0 Keyboard
+
+mem_version_yy_mm_dd:20 22 03 022		#version data 202203022
+
+mem_adc_0v:9f 3e
+mem_adc_3v:cd 4d
+mem_adc_config_flag:02    #01 VINLPM      #02 HVIN      #04 GPIO
+
+#24g init
+mem_24g_data_type:02        #mouse 1,kb 2
+mem_24g_no_ack:00#with ack
+mem_24g_rx_window:c0 12     #400us 
+mem_24g_ch_map1:00 13 2c 42
+mem_24g_ch_map2:06 15 36 48
+mem_24g_ch_map3:0f 1a 3a 4c
+mem_24g_ch_map4:11 23 31 4d
+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 #10 min
+mem_24g_enter_hibernate_max:ff ff ff ff
+mem_24g_short_sleep_counter:e8 fd 00 #00 00 0a
+
Index: c51/patch/kb_keyboard.dat
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/c51/patch/kb_keyboard.dat	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/c51/patch/kb_keyboard.dat	(working copy)
@@ -0,0 +1,494 @@
+mem_patch00:
+69   #mem_patch00
+04   #mem_patch01
+00   #mem_patch02
+00   #mem_patch03
+80   #mem_patch04
+09   #mem_patch05
+00   #mem_patch06
+00   #mem_patch07
+0c   #mem_patch08
+00   #mem_patch09
+11   #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
+09   #mem_patch23
+18   #mem_patch24
+00   #mem_patch25
+04   #mem_patch26
+c8   #mem_patch27
+00   #mem_patch28
+5c   #mem_patch29
+40   #mem_patch2A
+00   #mem_patch2B
+3a   #mem_patch2C
+ce   #mem_patch2D
+00   #mem_patch2E
+00   #mem_patch2F
+80   #mem_patch30
+e0   #mem_patch31
+00   #mem_patch32
+90   #mem_patch33
+00   #mem_patch34
+00   #mem_patch35
+00   #mem_patch36
+20   #mem_patch37
+00   #mem_patch38
+a0   #mem_patch39
+01   #mem_patch3A
+00   #mem_patch3B
+4c   #mem_patch3C
+00   #mem_patch3D
+00   #mem_patch3E
+00   #mem_patch3F
+
+
+mem_customize_timer_setup:  20 00		# 20:10ms  30:15ms
+
+mem_lpm_mode:01
+mem_lpm_mult:40
+mem_lpm_mult_timeout:03
+mem_lpm_overhead:0a
+mem_lpm_interval:10 00
+mem_scan_mode:00
+mem_test:00 00
+
+mem_class: 40 25 00
+
+mem_lap:36 08 c2 08 66 22    
+mem_local_name_length:
+'BT3.0 Keyboard
+mem_sniff_param_interval:0e 00
+mem_sniff_param_attempt:01
+mem_sniff_param_timeout:01
+mem_unsniff2sniff_timer:0a
+mem_ssp_enable:00
+mem_ui_profile_supported:01
+
+mem_eir_enable:01
+
+mem_all_uuid_16bits:
+06
+03#Type: Complete list of 16-bit UUIDs
+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
+360189
+
+#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 3578 3576 0822 2572
+
+# 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)
+26ff00 # 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
+
+#23
+05 01	#Usage Page (Generic Desktop),
+09 80	#USAGE (3-D Digitizer)
+a1 01	#Collection (Application),
+85 03	#Report ID (3)
+19 81	#Usage Minimum (), 
+29 88	#Usage Maximum (),
+15 00	#Logical Minimum (0),
+25 01	#Logical Maximum (1),
+95 08	#Report Count (8),
+75 01	#Report Size (1),
+81 06	#Input (Data,Var,Rel)
+c0		#END_COLLECTION
+
+090207 3508 3506 090409 090100
+09020b 090100
+09020c 091f40
+09020d 2800
+09020e 2801
+09020f 090012
+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
+0904e8
+090202#ProductID
+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
+9d
+59
+82
+
+#bluetootch param init
+mem_sp_flag:00
+mem_lpm_current_mult:00
+mem_master_sp_flag:00
+mem_le_ch_mapped:27
+
+mem_ui_button_gpio:ff
+mem_led_gpio:ff
+
+mem_seqi:80
+
+
+mem_ipc_tx_evt_buff:02 01
+
+
+#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
+
+#Primary Service: Device Information
+0c 00 00 28 02 0a 18
+#Manufacturer Name
+0d 00 03 28 01 02
+0e 00 29 2a 06 59 69 43 68 69 70			#IOS 13.5.1
+#Characteristic: pnp id
+0f 00 03 28 01 02
+10 00 50 2a 07 02 e8 04 21 70 01 00		# SAMSUNG soft keyboard,setup shortcuts
+
+#Primary service: HID
+11 00 00 28 02 12 18
+#Characteristic:Protocol mode
+12 00 03 28 01 06
+13 00 4e 2a 01 01
+#Characteristic: hid report
+14 00 03 28 01 12   
+15 00 4d 2a 08 00 00 00 00 00 00 00 00	#hid report	led handle write
+16 00 02 29 02 00 00	
+17 00 08 29 02 01 01	#Report ID: 1	Report Type: Input
+
+#Characteristic:hid report
+18 00 03 28 01 12  
+19 00 4d 2a 02 00 00
+1a 00 02 29 02 00 00
+1b 00 08 29 02 03 01	#Report ID: 3	Report Type: Input
+
+#Characteristic:hid report
+1c 00 03 28 01 12   
+1d 00 4d 2a 02 00 00 	#hid report	led handle write
+1e 00 02 29 02 00 00	
+1f 00 08 29 02 02 01	#Report ID: 2	Report Type: Input
+
+#Characteristic:hid report
+20 00 03 28 01 0e   
+21 00 4d 2a 02 00	00	#hid report	led handle write
+22 00 02 29 02 00 00	
+23 00 08 29 02 01 02	#Report ID: 1	Report Type: output
+
+#Characteristic:Report map
+24 00 03 28 01 02
+25 00 4b 2a 72
+#66
+05 01
+09 06
+a1 01
+85 01
+75 01 
+95 08
+05 07
+19 e0 
+29 e7 
+15 00
+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 
+26 ff 00
+05 07
+19 00
+29 ff 
+81 00
+c0 
+
+#25
+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
+
+#23
+05 01	#Usage Page (Generic Desktop),
+09 80	#USAGE (3-D Digitizer)
+a1 01	#Collection (Application),
+85 03	#Report ID (3)
+19 81	#Usage Minimum (), 
+29 88	#Usage Maximum (),
+15 00	#Logical Minimum (0),
+25 01	#Logical Maximum (1),
+95 08	#Report Count (8),
+75 01	#Report Size (1),
+81 06	#Input (Data,Var,Rel)
+c0		#END_COLLECTION
+
+#Characteristic:Hid information
+26 00 03 28 01 02
+27 00 4a 2a 04 11 01 00 01        
+#Characteristic
+28 00 03 28 01 04
+29 00 4c 2a 01 00
+
+#Primary Service: BAS
+2a 00 00 28 02 0f 18 
+#Characteristic: Battery Level
+2b 00 03 28 01 12 
+2c 00 19 2a 01 64 
+#Client Characteristic Configuration
+2d 00 02 29 02 00 00 
+#End of Attribute list
+00 00
+
+
+mem_le_local_mtu:17
+mem_le_transmit_window:50
+mem_le_notify_handle:14
+mem_le_lap:11 46 34 54 77 dd
+
+
+mem_empty_count:00
+mem_att_report1:15 00
+mem_att_report2:1d 00
+mem_att_report3:19 00
+mem_att_report_battery:2c 00
+mem_le_rx_window:50
+
+mem_le_connection_updata_param:
+0c 00 #Length
+05 00 #CID
+12 b4 
+08 00 
+08 00 #min interval
+08 00 #max interval
+00 00 #latency
+2c 01 #timeout
+
+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
+mem_le_adv_swift_pair:
+#microsoft swift pair
+06 ff 06 00 03 00 80
+
+mem_le_scan_data_len:1f
+mem_le_scan_data:
+'\09BT4.2 Keyboard
+
+mem_version_yy_mm_dd:20 21 12 24		#version data 20211224
+
+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
+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_ch_map1:00 13 2c 42
+mem_24g_ch_map2:06 15 36 48
+mem_24g_ch_map3:0f 1a 3a 4c
+mem_24g_ch_map4:11 23 31 4d
+mem_24g_pairing_sm:ff
+mem_24g_paring_addr:20 15 10 05
+mem_pair_state:c2
+mem_24g_common_temp:00 00 00 00 00 00 00 00 00 00
+mem_24g_enter_hibernate:00 48 5d 00 #10 min
+mem_24g_enter_hibernate_max:ff ff ff ff
+mem_24g_short_sleep_counter:e8 fd 00 #00 00 0a
+
+
Index: c51/patch/kb_keyboard.dat.bak
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/c51/patch/kb_keyboard.dat.bak	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/c51/patch/kb_keyboard.dat.bak	(working copy)
@@ -0,0 +1,494 @@
+mem_patch00:
+69   #mem_patch00
+04   #mem_patch01
+00   #mem_patch02
+00   #mem_patch03
+80   #mem_patch04
+09   #mem_patch05
+00   #mem_patch06
+00   #mem_patch07
+0c   #mem_patch08
+00   #mem_patch09
+11   #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
+09   #mem_patch23
+18   #mem_patch24
+00   #mem_patch25
+04   #mem_patch26
+c8   #mem_patch27
+00   #mem_patch28
+5c   #mem_patch29
+40   #mem_patch2A
+00   #mem_patch2B
+3a   #mem_patch2C
+ce   #mem_patch2D
+00   #mem_patch2E
+00   #mem_patch2F
+80   #mem_patch30
+e0   #mem_patch31
+00   #mem_patch32
+90   #mem_patch33
+00   #mem_patch34
+00   #mem_patch35
+00   #mem_patch36
+20   #mem_patch37
+00   #mem_patch38
+a0   #mem_patch39
+01   #mem_patch3A
+00   #mem_patch3B
+4c   #mem_patch3C
+00   #mem_patch3D
+00   #mem_patch3E
+00   #mem_patch3F
+
+
+mem_customize_timer_setup:  20 00		# 20:10ms  30:15ms
+
+mem_lpm_mode:01
+mem_lpm_mult:40
+mem_lpm_mult_timeout:03
+mem_lpm_overhead:0a
+mem_lpm_interval:10 00
+mem_scan_mode:00
+mem_test:00 00
+
+mem_class: 40 25 00
+
+mem_lap:36 08 c2 08 66 22    
+mem_local_name_length:
+'BT5.0 KB
+mem_sniff_param_interval:0e 00
+mem_sniff_param_attempt:01
+mem_sniff_param_timeout:01
+mem_unsniff2sniff_timer:0a
+mem_ssp_enable:00
+mem_ui_profile_supported:01
+
+mem_eir_enable:01
+
+mem_all_uuid_16bits:
+06
+03#Type: Complete list of 16-bit UUIDs
+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
+360189
+
+#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 3578 3576 0822 2572
+
+# 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)
+26ff00 # 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
+
+#23
+05 01	#Usage Page (Generic Desktop),
+09 80	#USAGE (3-D Digitizer)
+a1 01	#Collection (Application),
+85 03	#Report ID (3)
+19 81	#Usage Minimum (), 
+29 88	#Usage Maximum (),
+15 00	#Logical Minimum (0),
+25 01	#Logical Maximum (1),
+95 08	#Report Count (8),
+75 01	#Report Size (1),
+81 06	#Input (Data,Var,Rel)
+c0		#END_COLLECTION
+
+090207 3508 3506 090409 090100
+09020b 090100
+09020c 091f40
+09020d 2800
+09020e 2801
+09020f 090012
+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
+0904e8
+090202#ProductID
+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
+9d
+59
+82
+
+#bluetootch param init
+mem_sp_flag:00
+mem_lpm_current_mult:00
+mem_master_sp_flag:00
+mem_le_ch_mapped:27
+
+mem_ui_button_gpio:ff
+mem_led_gpio:ff
+
+mem_seqi:80
+
+
+mem_ipc_tx_evt_buff:02 01
+
+
+#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 
+'BT5.0 KB
+
+#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
+
+#Primary Service: Device Information
+0c 00 00 28 02 0a 18
+#Manufacturer Name
+0d 00 03 28 01 02
+0e 00 29 2a 06 59 69 43 68 69 70			#IOS 13.5.1
+#Characteristic: pnp id
+0f 00 03 28 01 02
+10 00 50 2a 07 02 e8 04 21 70 01 00		# SAMSUNG soft keyboard,setup shortcuts
+
+#Primary service: HID
+11 00 00 28 02 12 18
+#Characteristic:Protocol mode
+12 00 03 28 01 06
+13 00 4e 2a 01 01
+#Characteristic: hid report
+14 00 03 28 01 12   
+15 00 4d 2a 08 00 00 00 00 00 00 00 00	#hid report	led handle write
+16 00 02 29 02 00 00	
+17 00 08 29 02 01 01	#Report ID: 1	Report Type: Input
+
+#Characteristic:hid report
+18 00 03 28 01 12  
+19 00 4d 2a 02 00 00
+1a 00 02 29 02 00 00
+1b 00 08 29 02 03 01	#Report ID: 3	Report Type: Input
+
+#Characteristic:hid report
+1c 00 03 28 01 12   
+1d 00 4d 2a 02 00 00 	#hid report	led handle write
+1e 00 02 29 02 00 00	
+1f 00 08 29 02 02 01	#Report ID: 2	Report Type: Input
+
+#Characteristic:hid report
+20 00 03 28 01 0e   
+21 00 4d 2a 02 00	00	#hid report	led handle write
+22 00 02 29 02 00 00	
+23 00 08 29 02 01 02	#Report ID: 1	Report Type: output
+
+#Characteristic:Report map
+24 00 03 28 01 02
+25 00 4b 2a 72
+#66
+05 01
+09 06
+a1 01
+85 01
+75 01 
+95 08
+05 07
+19 e0 
+29 e7 
+15 00
+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 
+26 ff 00
+05 07
+19 00
+29 ff 
+81 00
+c0 
+
+#25
+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
+
+#23
+05 01	#Usage Page (Generic Desktop),
+09 80	#USAGE (3-D Digitizer)
+a1 01	#Collection (Application),
+85 03	#Report ID (3)
+19 81	#Usage Minimum (), 
+29 88	#Usage Maximum (),
+15 00	#Logical Minimum (0),
+25 01	#Logical Maximum (1),
+95 08	#Report Count (8),
+75 01	#Report Size (1),
+81 06	#Input (Data,Var,Rel)
+c0		#END_COLLECTION
+
+#Characteristic:Hid information
+26 00 03 28 01 02
+27 00 4a 2a 04 11 01 00 01        
+#Characteristic
+28 00 03 28 01 04
+29 00 4c 2a 01 00
+
+#Primary Service: BAS
+2a 00 00 28 02 0f 18 
+#Characteristic: Battery Level
+2b 00 03 28 01 12 
+2c 00 19 2a 01 64 
+#Client Characteristic Configuration
+2d 00 02 29 02 00 00 
+#End of Attribute list
+00 00
+
+
+mem_le_local_mtu:17
+mem_le_transmit_window:50
+mem_le_notify_handle:14
+mem_le_lap:11 46 34 54 77 dd
+
+
+mem_empty_count:00
+mem_att_report1:15 00
+mem_att_report2:1d 00
+mem_att_report3:19 00
+mem_att_report_battery:2c 00
+mem_le_rx_window:50
+
+mem_le_connection_updata_param:
+0c 00 #Length
+05 00 #CID
+12 b4 
+08 00 
+08 00 #min interval
+08 00 #max interval
+00 00 #latency
+2c 01 #timeout
+
+mem_le_name_len:
+'BT5.0 KB
+
+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
+mem_le_adv_swift_pair:
+#microsoft swift pair
+06 ff 06 00 03 00 80
+
+mem_le_scan_data_len:1f
+mem_le_scan_data:
+'\09BT4.2 Keyboard
+
+mem_version_yy_mm_dd:20 21 12 24		#version data 20211224
+
+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
+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_ch_map1:00 13 2c 42
+mem_24g_ch_map2:06 15 36 48
+mem_24g_ch_map3:0f 1a 3a 4c
+mem_24g_ch_map4:11 23 31 4d
+mem_24g_pairing_sm:ff
+mem_24g_paring_addr:20 15 10 05
+mem_pair_state:c2
+mem_24g_common_temp:00 00 00 00 00 00 00 00 00 00
+mem_24g_enter_hibernate:00 48 5d 00 #10 min
+mem_24g_enter_hibernate_max:ff ff ff ff
+mem_24g_short_sleep_counter:e8 fd 00 #00 00 0a
+
+
Index: c51/patch/kb_process.obj
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: c51/patch/kb_process.obj
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: c51/patch/keyboard.format
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/c51/patch/keyboard.format	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/c51/patch/keyboard.format	(working copy)
@@ -0,0 +1,337 @@
+
+omemalloc(
+//Keyboard Work Area
+2 mem_kb_state
+6 mem_kb_report_data
+1 mem_kb_keys
+1 mem_kb_rcv_led_data
+4 mem_kb_fast_wake_last
+//Keyboard Config Area
+1 mem_led_cap_gpio
+1 mem_led_num_gpio
+1 mem_led_scl_gpio
+0 mem_kb_map
+630 mem_kb_uuid_list
+
+// patch area
+10 mem_24g_paring_tx_power_param
+10 mem_5db_tx_power_param
+
+//c51
+1 mem_current_event
+1 mem_ipc_lock_rx_data_bt
+1 mem_ipc_lock_rx_data_c51
+1 mem_ipc_lock_tx_data_bt
+1 mem_ipc_lock_tx_data_c51
+
+
+150 mem_ipc_2bt_fifo_head
+0	mem_ipc_2bt_fifo_end
+100 mem_ipc_2C51_fifo_head
+0	mem_ipc_2C51_fifo_end
+2	mem_ipc_2bt_read_index
+2	mem_ipc_2bt_write_index
+2	mem_ipc_2C51_read_index
+2	mem_ipc_2C51_write_index
+
+2 mem_ipc_tx_evt_buff
+1 mem_ipc_tx_evt
+
+2 mem_ipc_bt_timer
+1 mem_ipc_rx_type
+
+1 mem_queue_ele_num
+2 mem_queue_write
+2 mem_queue_read
+0 mem_queue_start
+12 mem_uart_packet
+12 mem_data_ele0
+12 mem_data_ele1
+12 mem_data_ele2
+0 mem_queue_end
+2 mem_queue_temp
+
+
+// patch allocated
+1 mem_24g_rxdata_length
+1 mem_24g_pid
+1 mem_24g_datalen
+1 mem_24g_data_type
+1 mem_24g_txlen
+2 mem_24g_rx_window
+1 mem_24g_ensure
+1 mem_24g_get_ack_fail
+1 mem_24g_retry
+1 mem_24g_ch
+1 mem_24g_current_ch_number
+4 mem_24g_paring_addr
+1 mem_24g_pairing_sm
+4 mem_24g_ch_map1
+4 mem_24g_ch_map2
+4 mem_24g_ch_map3
+4 mem_24g_ch_map4
+4 mem_24g_addr
+2 mem_24g_check_dongle_times
+4 mem_24g_device_addr
+1 mem_24g_no_ack
+
+
+1 mem_24g_enter_lpm_timer
+2 mem_24g_syncword
+1 mem_24g_syncword_crc8
+1 mem_24g_get_syncword_crc8
+
+1 mem_rssi_hex_received
+8 mem_rssi_signal_buf
+8 mem_rssi_noise_buf
+1 mem_rssi_noise_index
+1 mem_rssi_signal_index
+
+1 mem_last_txlch
+2 mem_last_txlen
+20 mem_last_txdata
+
+//le
+4 mem_ipc_last_check_timer
+2 mem_ipc_c51_timer
+1 mem_le_rx_window
+2 mem_le_find_type_value_start_handle
+2 mem_le_find_type_value_end_handle
+2 mem_le_cur_att_type
+1 mem_le_search_len
+1 mem_le_ll_unknown_type
+1 mem_le_pairing_state
+2 mem_le_local_mtu
+16 mem_le_connection_updata_param
+1 mem_ltk_states
+1 mem_pair_state
+1 mem_empty_count
+1 mem_shutter_find_type_value_flag
+
+1 mem_le51_payload_len
+1 mem_le51_cmd
+
+1 mem_le51_tx_length
+1 mem_le51_txbuff_inuse
+9 mem_le51_txbuf
+
+1 mem_ipc_bt_100ms_timer
+1 mem_ipc_c51_100ms_timer
+
+1 mem_adc_config_flag
+1 mem_adc_channel
+2 mem_adc_0v
+2 mem_adc_3v
+2 mem_adc_current_value
+
+1 mem_hibernate_flag
+2 mem_new_supervision_to
+1 mem_kb_wake_timer
+20 mem_kb_last_data
+
+1 mem_power_on_flag
+1 mem_caps_num_lock
+2 mem_att_report_standard_key
+2 mem_att_report_media_key
+2 mem_att_report_system_ctrl
+2 mem_att_report_battery
+2 mem_att_report_game
+2 mem_att_report_mouse
+
+1 mem_suspend_flag
+120 mem_32asm_data_end
+1 mem_store_ltk_timer
+1 mem_reconnect_continue
+4 mem_le_pin_code
+1 mem_le_send_security_request_flag
+
+4 mem_24g_enter_hibernate
+1 mem_24g_txfail_cnt
+1 mem_mouse_retry_flag
+1 mem_24g_led_flag
+4 mem_ui_timer_last_btclk_temp
+4 mem_ui_check_timer_setup
+2 mem_customize_timer_setup
+1 mem_customize_timer
+1 mem_ios_mode_flag
+4 mem_version_yy_mm_dd
+20 mem_24g_txbuf_new
+7 mem_le_adv_swift_pair
+4 mem_24g_enter_hibernate_setup
+4 mem_24g_enter_hibernate_max
+3 mem_24g_short_sleep_counter
+1 mem_pc_sleep_flag
+
+)
+
+//C51 synchronous task
+(
+3 START_C51_CORE
+)
+
+(
+0 ADC_CONFIG_VINLPM
+1 ADC_CONFIG_HVIN
+2 ADC_CONFIG_GPIO
+)
+
+(
+0 P24G_PAIRING_REQ_HEAD
+1 P24G_PAIRING_COMPLETE_HEAD
+)
+
+(
+0 ENSURE_OFF_24G
+1 ENSURE_ON_24G
+0x4e G24_PAIR_CH
+)
+
+(
+7 RSSI_BUF_LEN_SIGNAL
+255 RSSI_BUF_LEN_NOISE
+0x50 RSSI_THRESH_NOISE
+
+0x77 RSSI_DIS_MIN_24G
+0x82 RSSI_DIS_MAX_24G
+
+0x75 RSSI_DIS_MIN_BLE
+0x80 RSSI_DIS_MAX_BLE
+)
+
+(//bluetooth tx power
+0 TX_POWER_0DB
+1 TX_POWER_3DB
+2 TX_POWER_5DB
+3 TX_POWER_f3DB
+4 TX_POWER_f5DB
+)
+
+/* 24g */
+(
+6 dlen_24g
+14 plen_24g
+90 blen_tx_24g
+106 blen_rx_24g
+42 blen_txack_24g
+58 blen_rxack_24g
+7 retry_24g
+0xaaf08e acc_24g
+0x15c4 crc_data_3byte
+0xbb81 crc_data_6byte
+0x4160 crc_ack
+41390 crc_ack_4byte
+)
+
+(
+1 NO_ACK_24g
+0 with_ack_24g
+)
+
+(
+0 disable_24g
+1 tx_24g
+2 rx_24g
+
+0 bit_ack_24g
+)
+
+
+//mem_24g_data_type
+(
+0x07 bits_data
+//0-2 data type
+3 bit_abort
+4 bit_hop
+5 bit_sync
+//6-7 channel offset
+)
+
+// ble
+(
+0 FLAG_LE_PAIRING_NULL
+1 FLAG_LE_PAIRING_START
+2 FLAG_LE_PAIRING_AFTER_AUTH
+3 FLAG_LE_PAIRING_END
+)
+
+(
+0 PAIR_UNKNOWN
+1 PAIR_ING
+2 PAIR_DONE
+)
+
+(
+0 DEFAULT_STATES
+1 IPHONE_LOST_LTK
+2 MODULE_LOST_LTK
+3 LTK_NOT_LOST
+)
+
+(
+3 QUEUE_ELE_COUNT
+12 QUEUE_ELE_LENGTH
+)
+
+
+8 KB_KSCAN_ROW 
+7 KB_KSCAN_ROW_1
+20 KB_KSCAN_COL
+19 KB_KSCAN_COL_1
+
+/* ks_ctrl */
+(
+0x01 KB_KSCAN_CTRL_ENABLE					
+0x02 KB_KSCAN_CTRL_FREEZE					
+0x04 KB_KSCAN_CTRL_GHOST					
+0x08 KB_KSCAN_CTRL_INT						
+0x10 KB_KSCAN_CTRL_CLKON					
+0x20 KB_KSCAN_CTRL_FIFO_CLR				
+                  
+0 KB_KSCAN_STAT_EMPTY
+1 KB_KSCAN_STAT_FULL 					
+2 KB_KSCAN_STAT_OVERFLOW				
+6 KB_KSCAN_STAT_GHOST 
+
+0 KB_KSCAN_KEY_EVENT_STAT
+0 KB_KSCAN_KEY_PRESS	
+1 KB_KSCAN_KEY_RELEASE
+
+)
+
+
+/* special key codes */
+(
+0x1d KB_KCODE_1_M1
+0x27 KB_KCODE_0
+0x28 KB_KCODE_ENTER
+0x2a KB_KCODE_BKSP
+)
+
+(
+0x01 HID_REPORTID_1
+0x02 HID_REPORTID_2
+0x03 HID_REPORTID_3
+0x04 HID_REPORTID_4
+)
+
+(
+/*DATA OUTPUT report id = 1*/
+0 KB_NUM_LOCK_SELECTED
+1 KB_CAPS_LOCK_SELECTED
+2 KB_SCROLL_LOCK_SELECTED
+)
+
+(
+0x1f  KB_UI_BUTTON_GPIO
+)
+
+(
+0x0007 HANDLE_UUID_CHRCTR_DEVICE_NAME
+0x000e HANDLE_UUID_CHRCTR_MANUFACTURER_NAME
+0x0010 HANDLE_UUID_PNP_ID
+0x0021 HANDLE_UUID_CHRCTR_REPORT_ID1_OUTPUT
+0x0030 HANDLE_UUID_BATTERY_LEVEL
+0x0031 HANDLE_UUID_END
+)
+
+
Index: c51/patch/keyscan.obj
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: c51/patch/keyscan.obj
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: c51/patch/led.obj
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: c51/patch/led.obj
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: c51/patch/memmap.format
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/c51/patch/memmap.format	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/c51/patch/memmap.format	(working copy)
@@ -0,0 +1,1101 @@
+0x0000 mem_le_adv_transmit
+0x0001 mem_le_adv_waitcnt
+0x0002 mem_le_adv_rcv
+0x0003 mem_le_req_rcv
+0x0004 mem_le_scanrsp_rcv
+0x0005 mem_le_conn_rcv
+0x0006 mem_inquiryscan_waitcnt
+0x0007 mem_inquiryscan_rcvcnt
+0x0008 mem_pagescan_waitcnt
+0x0009 mem_pagescan_rcvcnt
+0x000a mem_pagescan_rcvfhscnt
+0x000b mem_slave_rcvcnt
+0x000c mem_page_transmit
+0x000d mem_page_rcv
+0x000e mem_page_rcv_fhs
+0x000f mem_master_rcvcnt
+0x0010 mem_fhs_wait_counter
+0x0011 mem_newconnto_counter
+0x0012 mem_inquiry_transmit
+0x0013 mem_inquiry_rcv
+0x0014 mem_fw_ver
+0x0015 mem_current_context
+0x0016 mem_le_ch_mapped
+0x0017 mem_last_freq
+0x0018 mem_rssi
+0x0019 mem_rx_type
+0x001a mem_rx_hec_err
+0x001c mem_rx_crc_err
+0x001e mem_context_ptr
+0x0020 mem_display
+0x0028 mem_bcd
+0x0030 mem_state
+0x0031 mem_mode
+0x0032 mem_tsniff
+0x0034 mem_sniff_anchor
+0x0038 mem_clk_offset
+0x003e mem_rx_window
+0x0040 mem_plap
+0x0043 mem_puap
+0x0044 mem_pnap
+0x0046 mem_conn_handle
+0x0047 mem_arq
+0x0048 mem_lmp_to_send
+0x0049 mem_lmi_opcode
+0x004a mem_lmo_reason
+0x004b mem_op
+0x004c mem_state_map
+0x004d mem_supervision_timer
+0x0051 mem_supervision_to
+0x0053 mem_name_offset
+0x0054 mem_key_size
+0x0055 mem_conn_sm
+0x0056 mem_aco
+0x0062 mem_kc
+0x0072 mem_conn_timer
+0x0073 mem_sniff_attempt
+0x0074 mem_sniff_timeout
+0x0075 mem_dsniff
+0x0077 mem_amaddr
+0x0078 mem_lmo_opcode1
+0x0079 mem_lmi_opcode1
+0x007a mem_lmo_reason1
+0x007b mem_lmo_tid1
+0x007c mem_lmo_opcode2
+0x007d mem_lmi_opcode2
+0x007e mem_lmo_reason2
+0x007f mem_lmo_tid2
+0x0080 mem_hci_version
+0x0083 mem_acl_pktlen
+0x0085 mem_sco_pktlen
+0x0086 mem_acl_pktcnt
+0x0088 mem_sco_pktcnt
+0x008a mem_current_sniff_attempt
+0x008b mem_current_sniff_timeout
+0x008c mem_nfreq_index_inq
+0x008d mem_nfreq_index_page
+0x008e mem_ninqy_index
+0x008f mem_fhs_misc
+0x0090 mem_tx_lch
+0x0091 mem_tx_len
+0x0093 mem_subsniff_instant
+0x0097 mem_subsniff_rate
+0x0098 mem_subsniff_tcmax
+0x009a mem_subsniff_tsniff
+0x009b mem_lpm_adjust
+0x009c mem_sync_clke
+0x00a2 mem_lpm_current_mult
+0x00a3 mem_gpio_wakeup_low
+0x00a7 mem_gpio_wakeup_high
+0x00ab mem_air_mode
+0x00ac mem_sco_asso_handle
+0x00ad mem_sco_handle
+0x00af mem_esco_desco
+0x00b0 mem_esco_type
+0x00b1 mem_neogotiation_state
+0x00b2 mem_saved_amaddr
+0x00b3 mem_esco_arq
+0x00b4 mem_esco_saved_arq
+0x00b5 mem_sco_obuf
+0x00d3 mem_sco_ibuf
+0x00f1 mem_sco_poll
+0x00f2 mem_npage_index
+0x00f3 mem_page_mode
+0x00f4 mem_page_clk
+0x00f8 mem_tst_pktcnt_sync
+0x00fa mem_tst_pktcnt_hec
+0x00fc mem_tst_pktcnt_crc
+0x00fe mem_tst_pktcnt_dmh
+0x0100 mem_tmp_buffer_head
+0x0103 mem_tmp_buffer
+0x0153 mem_tester_emulate
+0x0154 mem_temp_payload
+0x0154 test_mode_scenario
+0x0155 test_mode_hopping_mode
+0x0156 test_mode_tx_freq
+0x0157 test_mode_rx_freq
+0x0158 test_mode_power_mode
+0x0159 test_mode_poll_period
+0x015a test_mode_packet_type
+0x015b test_mode_data_length
+0x015d mem_test_mode_old_debug_config
+0x015e mem_tester_cnt
+0x015f mem_temp_am_addr
+0x0160 mem_temp_arq
+0x0161 mem_pdatatemp
+0x0169 mem_len
+0x016b mem_clkn_bt
+0x016f mem_clke_bt
+0x0173 mem_dpll_clkn
+0x0177 mem_connection_options
+0x0178 mem_nameres_cnt
+0x0179 mem_txptr
+0x017b mem_slot_offset
+0x017d extm_fhs_misc
+0x017e extm_newconn_am_addr
+0x017f extm_class
+0x0182 extm_lap
+0x0185 extm_uap
+0x0186 extm_nap
+0x0189 mem_debug_config
+0x018a mem_lch_code
+0x018b mem_fhs_am_addr
+0x018c mem_dpll_error
+0x018e mem_bdaddr_list_buff
+0x01b2 mem_select_list_item
+0x01b3 mem_temp_reconn_record
+0x01b3 mem_record_bt_mode
+0x01b4 mem_temp_lap
+0x01ba mem_list_item_ptr
+0x01bc mem_eir
+0x0220 mem_ucode_status
+0x0221 mem_otp_ucode_flag
+0x0223 mem_spid_tbuf/* spid buf: 03 addr[23:16] addr[15:8] addr[7:0] */
+0x0224 mem_iicd_tbuf/* iicd buf: iic_adr addr[15:8] addr[7:0] iic_adr */
+0x0224 mem_addr_hi
+0x0225 mem_addr_mi
+0x0226 mem_addr_lo
+0x0227 mem_iicd_addr
+0x0228 mem_spid_rbuf
+0x022c mem_ucode_buf
+0x022e mem_ucode_len
+0x0230 mem_sched_addr
+0x0232 mem_ucode_ptr
+0x0234 mem_ucode_keybuf
+0x0244 mem_check_plap_temp
+0x0256 mem_sensor_id
+0x0257 mem_reconnect_flag
+0x0258 mem_switch_fail_master_count
+0x0259 mem_app_evt_timer_count
+0x025a mem_dongle_count
+0x025b mem_le_addr_slave1
+0x0261 mem_le_addr_slave2
+0x0267 mem_le_peer_state
+0x0268 mem_app_peer_addr
+0x026e mem_dongle_peers
+0x026f mem_dongle_pairing_cnt
+0x0270 mem_dongle_signature
+0x0272 mem_h5rx_ackcnt
+0x0273 mem_check_err_acl_cont
+0x0274 mem_rp_packets
+0x0275 mem_packet_type
+0x0277 mem_hci_sniff_conn_handle
+0x0279 mem_hci_sniff_max_interval
+0x027b mem_hci_sniff_min_interval
+0x027d mem_hci_sniff_attempt
+0x027f mem_hci_sniff_timeout
+0x0281 mem_voice_setting
+0x0283 mem_retransmission_effort
+0x0284 mem_sco_ptype
+0x0286 mem_extm_uap_restore
+0x0289 mem_h5rx_rptr
+0x028b mem_h5rx_ack
+0x028c mem_h5tx_ack
+0x028d mem_h5tx_rptr
+0x028f mem_h5tx_wptr
+0x0291 mem_h5tx_free
+0x0293 mem_h5rx_tmp
+0x0294 mem_h5tx_seq
+0x0295 mem_hci_acl_queue_wptr
+0x0297 mem_hci_acl_queue_rptr
+0x0299 mem_hci_acl_queue_end
+0x029b mem_hci_acl_queue_wcnt
+0x029c mem_hci_acl_cnt
+0x029d mem_hci_acl_tx_trigger_wptr//tx via uart
+0x029f mem_ucode_id_local
+0x02a0 mem_temp//8 bytes
+0x02a8 mem_timeup// 4 bytes
+0x02ac mem_rega//4 bytes
+0x02b0 mem_regb//4 bytes
+0x02b4 mem_regc//3 bytes
+0x02b7 mem_contr//2 bytes
+0x02b9 mem_contw//2 bytes
+0x02bb mem_ucode_id_remote
+0x02bc mem_check_sum
+0x02bd mem_ucode_temp
+0x02be mem_ucode_temp1
+0x02bf mem_lock_in_enc//boolean
+0x02c0 mem_hci_disconn_reason
+0x02c1 mem_hci_curr_len
+0x02c2 mem_hci_curr_target
+0x02c4 mem_l2cap_mem_start
+0x02c4 mem_l2cap_rxbuff1_len
+0x02c6 mem_l2cap_rxbuff2_len
+0x02c8 mem_l2cap_rxbuff_new
+0x02ca mem_l2cap_rxbuff_inuse
+0x02cb mem_l2cap_payload_ptr
+0x02cd mem_l2cap_rx_pkt_length
+0x02cf mem_l2cap_rx_cid
+0x02d1 mem_l2cap_rx_done
+0x02d2 mem_l2cap_signal_tx_buff_ptr
+0x02d4 mem_l2cap_signal_tx_payload_ptr
+0x02d6 mem_l2cap_signal_tx_length
+0x02d8 mem_sdp_tx_buff_ptr
+0x02da mem_sdp_tx_payload_ptr
+0x02dc mem_sdp_tx_pkt_length
+0x02de mem_rfcomm_tx_buff_ptr
+0x02e0 mem_rfcomm_tx_payload_ptr
+0x02e2 mem_rfcomm_tx_pkt_length
+0x02e4 memL2CAP_T1
+0x02e6 mem_CONTROL_tasks
+0x02e7 mem_send_config_req
+0x02e8 mem_config_identifier
+0x02e9 mem_config_req_dest_CID
+0x02eb mem_rfcomm_malloc_fail_flag
+0x02ec mem_message_to_uppersm
+0x02ed mem_upper_sm_remote_page
+0x02ee mem_upper_sm_reconn
+0x02ef mem_upper_sm_ss
+0x02f0 mem_tx_malloc_log
+0x0330 mem_l2cap_mem_end
+0x0330 mem_scid
+0x0332 mem_cmd_length
+0x0334 mem_tt2
+0x0336 mem_tt3
+0x0338 mem_id
+0x033a mem_psm
+0x033c mem_l2cap_sdpres_delay_time
+0x0340 mem_le_rxbuf
+0x0378 mem_le_mic
+0x037c mem_le_peer_mic
+0x0380 mem_le_skdm
+0x0388 mem_le_skds
+0x0390 mem_le_peer_ltk
+0x03a0 mem_le_my_ltk
+0x03b0 mem_le_mrand
+0x03c0 mem_le_state
+0x03c1 mem_le_mode
+0x03c2 mem_le_tsniff
+0x03c4 mem_le_anchor
+0x03c8 mem_le_clk_offset
+0x03ce mem_le_receive_window
+0x03d0 mem_le_plap
+0x03d6 mem_le_conn_handle
+0x03d7 mem_le_arq
+0x03d8 mem_le_ch
+0x03d9 mem_le_hop
+0x03da mem_le_event_count
+0x03dc mem_le_supervision_timer
+0x03e0 mem_le_instant
+0x03e2 mem_le_channels
+0x03e3 mem_le_conn_sm
+0x03e4 mem_le_op
+0x03e5 mem_le_access
+0x03e9 mem_le_crcinit
+0x03ec mem_le_window_size
+0x03ed mem_le_slave_latency
+0x03ef mem_le_superto
+0x03f1 mem_le_channel_map
+0x03f6 mem_le_no_using
+0x03f8 mem_le_peer_sca
+0x03f9 mem_le_att_opcode
+0x03fa mem_le_att_handle
+0x03fc mem_le_err_code
+0x03fd mem_le_sk
+0x040d mem_le_testtype
+0x040e mem_le_test_sync
+0x0410 mem_le_test_pcnt
+0x0412 mem_le_rxon_ts
+0x0418 mem_le_rx_ll_opcode
+0x0419 mem_le_notify_attr_start
+0x041b mem_le_notify_len
+0x041c mem_cmd_le_create_conn
+0x041d mem_le_adv_temp
+0x0431 mem_24g_id
+0x0432 mem_lmo_header_length
+0x0433 mem_lmo_header_opcode
+0x0434 mem_lmo_payload
+0x0445 mem_lmi_accepted_opcode
+0x0446 mem_disconn_reason_send
+0x0447 mem_tx_fixed_freq
+0x0448 mem_rx_fixed_freq
+0x0449 mem_ext_features_page
+0x044a mem_lmpext_ssp_enable
+0x044c mem_remote_sppcap
+0x044d mem_lmp_conn_state
+0x044e mem_soft_timer
+0x0450 mem_pincode_state
+0x0451 mem_sres_tid
+0x0452 mem_accptsco_tid
+0x0453 mem_auth_enable
+0x0454 mem_wait_encryption
+0x0455 mem_sniff_payload
+0x0465 mem_aurand_send_delay_time
+0x0469 mem_module_temp_len
+0x046b mem_init_cnt
+0x046d mem_prcp_data
+0x0481 mem_prcp
+0x0482 mem_prcp_tx_len
+0x0483 rx_buf_data_ptr
+0x0485 memRemoteRPNBitRate
+0x0486 memRemotePRNDataBits
+0x0487 memRemotePRNStopBit
+0x0488 memRemotePRNParity
+0x0489 memRemotePRNFlowControl
+0x048a memRemotePRNXon
+0x048b memRemotePRNXoff
+0x048c mem_mod2div_temp
+0x048f mem_contw_temp
+0x0491 mem_attrib_list
+0x0493 mem_current_adss
+0x0494 mem_current_channel
+0x0495 mem_current_frame_type
+0x0496 mem_current_fcs
+0x0497 mem_current_length
+0x0499 mem_rfcomm_uih_payload_ptr
+0x049b mem_uih_cmd_type
+0x049c mem_uih_length
+0x049e mem_param_payload_ptr
+0x04a0 mem_ms_param
+0x04a1 mem_pn_credit_flow_type_info
+0x04a2 mem_pn_priority
+0x04a3 mem_pn_acknowledg_timer
+0x04a4 mem_pn_max_retrans
+0x04a5 mem_rfcomm_send_adss
+0x04a6 mem_rfcomm_send_frame_type
+0x04a7 mem_rfcomm_send_fcs
+0x04a8 mem_rfcomm_send_offset
+0x04a9 mem_sdp_mem_start
+0x04a9 mem_uuid_search_pat
+0x04ad mem_sdp_continue_byte
+0x04af mem_sdp_pduid
+0x04b0 mem_sdp_transactionid
+0x04b2 mem_sdp_attribute_maxbyte
+0x04b4 mem_sdp_record_maxcnt
+0x04b6 mem_sdp_error_code
+0x04be mem_sdp_record_handle
+0x04c2 mem_sdp_search_failed
+0x04c3 mem_sdp_LACAP_found
+0x04c4 mem_sdp_RFCOMM_found
+0x04c5 mem_handle_list
+0x04dd mem_handle_humber
+0x04de mem_sdp_mem_end
+0x04de mem_rxbuf
+0x04ef mem_random_number
+0x04ff mem_round_key
+0x050f mem_kinit
+0x051f mem_input_store
+0x052f mem_x
+0x053f mem_y
+0x054e mem_y15
+0x054f mem_pin_length
+0x0550 mem_pin
+0x0560 mem_key_store
+0x0571 mem_key_store_end
+0x0572 memp_ar_key
+0x0574 memp_ar_input
+0x0576 mem_ar_hround
+0x0580 mem_ec_infinite
+0x0581 mem_ec_loopc
+0x0582 memdat
+0x0582 mem_ax
+0x059a mem_ay
+0x05b2 mem_az
+0x05ca mem_bx
+0x05e2 mem_by
+0x05fa mem_bz
+0x0612 mem_cx
+0x062a mem_cy
+0x0641 mem_cy5
+0x0642 mem_cz
+0x065a mem_k
+0x0672 mem_align
+0x0682 mem_tmp1
+0x0682 memahbak
+0x069a mem_tmp5
+0x06a2 memahsave
+0x06b2 mem_tmp2
+0x06c2 memahsave_end
+0x06c2 mem_addr_padding
+0x06c3 mem_addr_value/* 12 bytes     */ 
+0x06ca mem_tmp3
+0x06ca mem_t1
+0x06cf mem_addr_value_end
+0x06d2 mem_addr_iocap_end
+0x06e2 mem_tmp0
+0x06e2 mem_t0
+0x06ea mem_tmp0a
+0x06fa mem_t2
+0x0712 mem_t3
+0x072a mem_t7
+0x0742 mem_p
+0x075a mem_a
+0x0772 mem_b
+0x078a mem_gx
+0x07a2 mem_gy
+0x07ba memh0
+0x07da mem_sp_state_start
+0x07da mem_sp_state
+0x07db mem_master_sp_state
+0x07dc mem_sp_flag
+0x07dd mem_master_sp_flag
+0x07de mem_sp_calc
+0x07df mem_sp_dh_ready
+0x07e0 mem_sp_localsm
+0x07e1 mem_pairing_auth
+0x07e2 mem_sp_flag_start
+0x07e2 mem_sp_local_key_send_count
+0x07e3 mem_sp_remote_key_recv_count
+0x07e4 mem_sp_remote_key_invalid
+0x07e5 mem_sp_dhkey_invalid
+0x07e6 mem_sp_iocap_local
+0x07e9 mem_sp_iocap_remote
+0x07ec mem_sp_gkey
+0x07f0 mem_sp_pubkey_remote
+0x07f0 mem_sp_pubkey_remote_x
+0x0808 mem_sp_pubkey_remote_x_end
+0x0808 mem_sp_pubkey_remote_y
+0x0820 mem_sp_dhkey
+0x0838 mem_sp_dhkey_end
+0x0838 mem_sp_random_local
+0x0848 mem_sp_random_local_end
+0x0848 mem_sp_random_remote
+0x0858 mem_sp_random_remote_end
+0x0858 memresult
+0x0858 mem_sp_calc_result
+0x0858 memh
+0x085c memg
+0x0860 memf
+0x0864 meme
+0x0868 mem_sp_calc_result_high
+0x0868 memd
+0x086c memc
+0x0870 memb
+0x0874 mema
+0x0878 mem_sp_check_result
+0x0888 mem_sp_confirm_remote
+0x0898 mem_sp_prarm_stack
+0x08a8 mem_UI_data_txbuff_length
+0x08aa mem_ipc_skip_continue_proc
+0x08ab mem_ui_timer_temp//length 4
+0x08ab mem_ipc_rega_temp
+0x08af mem_usb_status
+0x08b0 mem_usb_fifo_empty
+0x08b1 mem_usb_read_len
+0x08b2 mem_usb_rxbuf
+0x08f2 mem_usb_cnt
+0x08f4 mem_usb_tx_enable
+0x08f5 mem_usb_tx_count
+0x08f6 mem_usb_set_protocol_count
+0x08f7 mem_usb_desc
+0x08f8 mem_usb_state
+0x08f9 mem_usb_idle_cnt
+0x08fb mem_usb_idle_timeout
+0x08fd mem_usb_trig_timeout
+0x08ff mem_usb_setup
+0x08ff mem_usb_setup_bmRequestType
+0x0900 mem_usb_setup_bRequest
+0x0901 mem_usb_setup_bValue
+0x0902 mem_usb_setup_bValueH
+0x0903 mem_usb_setup_wIndex
+0x0905 mem_usb_setup_bLength
+0x0906 mem_usb_setup_bLengthH
+0x0907 mem_usb0_setup
+0x090f mem_bufptr
+0x0911 mem_remain
+0x0912 mem_devicedesc
+0x0926 mem_hidreportdesc_kb
+0x09ee mem_hidreportdesc_m
+0x0ab6 mem_confdesc
+0x0b1a mem_string0
+0x0b1f mem_string1
+0x0b3d mem_string2
+0x0b5b mem_string3
+0x0b79 mem_hold_contr
+0x0b7b mem_hold_contw
+0x0b7d mem_fifo_temp
+0x0b7e mem_c51_flag
+0x0b7f mem_c51_lpm_lock
+0x0b80 mem_c51_wait_lpm
+0x0b81 mem_wakup_from_power_flag
+0x0b82 mem_lmp_bb_disconnect_reason
+0x0b83 mem_c51_eeprom_buf
+0x0be7 mem_c51_ipc_txbuf
+0x0c4b mem_c51_ipc_rxbuf
+0x0caf mem_c51_iicd_buf
+0x0cb3 mem_24g_rxbuf
+0x0cd5 mem_24g_txbuf
+0x0cf5 mem_24g_txpayload
+0x0d17 mem_24g_rxpayload
+0x0d37 mem_24g_common_temp
+0x0d57 mem_packet_length_temp
+0x0d58 mem_le_cur_handle_start
+0x0d5a mem_le_cur_handle_end
+0x0d5c mem_le_search_res
+0x4000 mem_patch00
+0x4001 mem_patch01
+0x4002 mem_patch02
+0x4003 mem_patch03
+0x4004 mem_patch04
+0x4005 mem_patch05
+0x4006 mem_patch06
+0x4007 mem_patch07
+0x4008 mem_patch08
+0x4009 mem_patch09
+0x400a mem_patch0a
+0x400b mem_patch0b
+0x400c mem_patch0c
+0x400d mem_patch0d
+0x400e mem_patch0e
+0x400f mem_patch0f
+0x4010 mem_patch10
+0x4011 mem_patch11
+0x4012 mem_patch12
+0x4013 mem_patch13
+0x4014 mem_patch14
+0x4015 mem_patch15
+0x4016 mem_patch16
+0x4017 mem_patch17
+0x4018 mem_patch18
+0x4019 mem_patch19
+0x401a mem_patch1a
+0x401b mem_patch1b
+0x401c mem_patch1c
+0x401d mem_patch1d
+0x401e mem_patch1e
+0x401f mem_patch1f
+0x4020 mem_patch20
+0x4021 mem_patch21
+0x4022 mem_patch22
+0x4023 mem_patch23
+0x4024 mem_patch24
+0x4025 mem_patch25
+0x4026 mem_patch26
+0x4027 mem_patch27
+0x4028 mem_patch28
+0x4029 mem_patch29
+0x402a mem_patch2a
+0x402b mem_patch2b
+0x402c mem_patch2c
+0x402d mem_patch2d
+0x402e mem_patch2e
+0x402f mem_patch2f
+0x4030 mem_patch30
+0x4031 mem_patch31
+0x4032 mem_patch32
+0x4033 mem_patch33
+0x4034 mem_patch34
+0x4035 mem_patch35
+0x4036 mem_patch36
+0x4037 mem_patch37
+0x4038 mem_patch38
+0x4039 mem_patch39
+0x403a mem_patch3a
+0x403b mem_patch3b
+0x403c mem_patch3c
+0x403d mem_patch3d
+0x403e mem_patch3e
+0x403f mem_patch3f
+0x4040 mem_context
+0x4130 mem_current_amaddr
+0x4131 mem_lpm_mode
+0x4132 mem_device_option
+0x4133 mem_scan_mode
+0x4134 mem_last_clkn
+0x4138 mem_features
+0x4140 mem_lap
+0x4143 mem_uap
+0x4144 mem_nap
+0x4146 mem_npage
+0x4147 mem_glap
+0x414a mem_class
+0x414d mem_iscan_window
+0x414f mem_iscan_interval
+0x4151 mem_pscan_window
+0x4153 mem_pscan_interval
+0x4155 mem_page_interval
+0x4157 mem_page_window
+0x4159 mem_page_to
+0x415b mem_inq_window
+0x415d mem_fcomp_mul
+0x415e mem_fcomp_div
+0x415f mem_rx_window_init
+0x4161 mem_rx_window_sniff
+0x4163 mem_rf_init_ptr
+0x4165 mem_last_type
+0x4166 mem_last_type_esco
+0x4167 mem_last_type_saved
+0x4168 mem_retransmission_cnt
+0x416a mem_next_btclk
+0x416e mem_seqi
+0x416f mem_rf_rccal
+0x4170 mem_handle_num
+0x4171 mem_max_slot
+0x4172 mem_eir_enable
+0x4173 mem_afh_instant
+0x4177 mem_afh_error_total
+0x4179 mem_afh_cfg
+0x417a mem_afh_new_mod
+0x417b mem_afh_map_lo
+0x4180 mem_afh_map_hi
+0x4185 mem_afh_used
+0x4186 mem_afh_index
+0x4188 mem_afh_map_new
+0x4193 mem_afh_map
+0x41e3 mem_afh_timer
+0x41e7 mem_afh_classify_channel_map
+0x41f1 mem_chip_functions
+0x41f3 mem_lpm_wake_lock
+0x41f5 mem_lpm_interval
+0x41f7 mem_lpm_overhead
+0x41f8 mem_lpm_hibernate_switch
+0x41f9 mem_esco_addr
+0x41fa mem_sniff_unint_lost
+0x41fb mem_ptt
+0x41fc mem_sleep_counter//should be 0x41fc in REVC
+0x4200 mem_sleep_counter_all
+0x4204 mem_sleep_clkn
+0x420a mem_sniff_rcv
+0x420d mem_sniff_lost
+0x4210 mem_clks_per_lpo
+0x4213 mem_lpm_mult
+0x4214 mem_lpm_mult_timeout
+0x4215 mem_lpm_mult_cnt
+0x4216 mem_lpm_config
+0x4219 mem_lpm_xtalcnt
+0x421a mem_lpm_buckcnt
+0x421b mem_lpm_ldocnt
+0x421c mem_lpm_isogate
+0x421d mem_lpm_isogate_final
+0x421e mem_saved_gpio// should be 0x421e in REVC
+0x422e mem_saved_gsel
+0x4231 mem_saved_mark
+0x4239 mem_saved_spidctrl
+0x423a mem_patch_ptr
+0x423c mem_patch_len
+0x423e mem_timers
+0x425e mem_link_key_exists
+0x425f mem_link_key_eeprom_head
+0x4262 mem_link_key
+0x4272 mem_hci_cmd
+0x4273 mem_hci_conn_handle
+0x4274 mem_hci_plap
+0x4277 mem_hci_puap
+0x4278 mem_hci_pnap
+0x427a mem_uartd_rxitems_got_data
+0x427b mem_uartd_rxitems_threshold
+0x427c mem_uartd_rx_timeout
+0x427e mem_app_state
+0x427f mem_app_handshake_flag
+0x4280 mem_sniff_param_interval
+0x4282 mem_sniff_param_attempt
+0x4284 mem_sniff_param_timeout
+0x4286 mem_cb_check_wakelock
+0x4288 mem_cb_before_hibernate
+0x428a mem_cb_before_lpm
+0x428c mem_cb_le_process
+0x428e mem_cb_bt_process
+0x4290 mem_cb_idle_process
+0x4292 mem_cb_bb_event_process
+0x4294 mem_cb_discovry_timeout
+0x4296 mem_cb_att_write
+0x4298 mem_cb_update_notify_value
+0x429a mem_device_nums
+0x429b mem_eeprom_base
+0x429d mem_unsniff2sniff_timer_count
+0x429e mem_wake_up_delay_timer
+0x429f mem_app_connection_options
+0x42a0 mem_app_disconn_reason
+0x42a2 mem_app_disconn_reason_flag
+0x42a4 mem_at_using_flag
+0x42a5 mem_lpm_delay_after_sniff
+0x42a9 mem_xrecord_mode
+0x42aa mem_eeprom_block_size
+0x42ac mem_baud
+0x42ae mem_hci_lt_rx_state
+0x42af mem_l2cap_xmem_start
+0x42af mem_l2cap_tx_multi_offset//0 means single packet
+0x42b1 mem_sdp_remote_cid
+0x42b3 mem_rfcomm_remote_cid
+0x42b5 mem_hid_ctrl_remote_cid
+0x42b7 mem_hid_int_remote_cid
+0x42b9 mem_sdp_state
+0x42ba mem_rfcomm_state
+0x42bb mem_hid_control_state
+0x42bc mem_hid_interrupt_state
+0x42bd mem_spp_state
+0x42be mem_ML2CAP_comm_id
+0x42bf mem_used_map
+0x42c0 mem_tx_fifo0
+0x42c0 mem_tx_fifo0_map
+0x42c1 mem_tx_fifo0_ptr
+0x42c3 mem_tx_fifo1
+0x42c3 mem_tx_fifo1_map
+0x42c4 mem_tx_fifo1_ptr
+0x42c6 mem_tx_fifo2
+0x42c6 mem_tx_fifo2_map
+0x42c7 mem_tx_fifo2_ptr
+0x42c9 mem_tx_fifo3
+0x42c9 mem_tx_fifo3_map
+0x42ca mem_tx_fifo3_ptr
+0x42cc mem_tx_fifo_end
+0x42cc mem_l2cap_lpm_txbuf
+0x43cc mem_l2cap_flow_ctrl_flag
+0x43cd mem_l2cap_pending_item
+0x43ce mem_l2cap_xmem_end
+0x43ce mem_le_dsniff
+0x43d0 mem_le_conn_interval
+0x43d2 mem_le_scan_enable
+0x43d3 mem_le_scan_interval
+0x43d5 mem_le_scan_window
+0x43d7 mem_le_adv_led
+0x43d8 mem_le_adv_enable
+0x43d9 mem_le_adv_data_len
+0x43da mem_le_adv_data
+0x43f9 mem_le_scan_data_len
+0x43fa mem_le_scan_data
+0x4419 mem_le_name_len
+0x441a mem_le_name
+0x442e mem_le_led_on_time
+0x442f mem_le_new_map
+0x4434 mem_le_new_param
+0x4434 mem_le_new_window
+0x4435 mem_le_new_offset
+0x4437 mem_le_new_interval
+0x4439 mem_le_new_latency
+0x443b mem_le_new_timeout
+0x443d mem_le_temp
+0x443e mem_le_txheader
+0x443f mem_le_txlen
+0x4440 mem_le_txpayload
+0x4442 mem_le_txcid
+0x4444 mem_le_l2cap
+0x4445 mem_le_l2cap_response
+0x4446 mem_le_txbdy
+0x4465 mem_le_pcnt_tx
+0x446a mem_le_pcnt_rx
+0x446f mem_le_last_mic
+0x4473 mem_le_ivm
+0x4477 mem_le_ivs
+0x447b mem_le_ltk
+0x448b mem_ltk_exists
+0x448c mem_le_rconfirm
+0x449c mem_le_srand
+0x44ac mem_le_iat
+0x44ad mem_le_rat
+0x44ae mem_le_preq
+0x44b5 mem_le_pres
+0x44bc mem_le_search_handle_start
+0x44be mem_le_search_handle_end
+0x44c0 mem_le_att_offset
+0x44c0 mem_le_search_att_type
+0x44c2 mem_le_notify_handle
+0x44c4 mem_le_uuid
+0x44c6 mem_le_handle_data_len
+0x44c7 mem_le_handle_data
+0x44d7 mem_le_adv_param
+0x44d7 mem_le_adv_interval_min
+0x44d9 mem_le_adv_interval_max
+0x44db mem_le_adv_type
+0x44dc mem_le_adv_own_addr_type
+0x44dd mem_le_adv_direct_addr_type
+0x44de mem_le_adv_direct_addr
+0x44e4 mem_le_adv_channel_map
+0x44e5 mem_le_adv_filter_policy
+0x44e6 mem_le_conn_param
+0x44e6 mem_le_conn_peer_addr_type
+0x44e7 mem_le_conn_peer_addr
+0x44ed mem_le_conn_own_addr_type
+0x44ee mem_le_conn_interval_min
+0x44f0 mem_le_conn_interval_max
+0x44f2 mem_le_conn_latency
+0x44f4 mem_le_conn_superto
+0x44f6 mem_le_scan_params
+0x44f6 mem_le_scan_type
+0x44f7 mem_le_scan_own_addr_type
+0x44f8 mem_le_scan_filter_policy
+0x44f9 mem_le_lap
+0x44fc mem_le_uap
+0x44fd mem_le_nap
+0x44ff mem_le_xtype_fifo
+0x4504 mem_le_att_list
+0x46f8 mem_le_switch_send_data
+0x46f9 mem_le_transmit_window
+0x46fd mem_lmp_version
+0x4700 mem_lmp_subversion
+0x4702 mem_local_name_length
+0x4703 mem_local_name
+0x4706 mem_local_name2
+0x4746 mem_local_name_end
+0x4747 mem_unsniff2sniff_timer
+0x4748 mem_switch_flag
+0x4749 mem_eeprom_ota_base_addr/*the start- writing addr in eeprom  */
+0x474b mem_pn_dlci
+0x474c mem_pn_max_frame_size
+0x474e memFCStemp1
+0x474f memFCStemp2
+0x4750 memFCStemp3
+0x4751 mem_rfcomm_initiator
+0x4752 mem_remote_spp_channel
+0x4753 mem_HIUfcs_SPP
+0x4754 mem_HIUfcs_SPP_WCredits
+0x4755 mem_rfcomm_send_more_pkt
+0x4756 mem_remote_credits
+0x4757 mem_credit_given
+0x4758 mem_ms_channel
+0x4759 memui_uuid_table
+0x475b mem_all_uuid_16bits
+0x4771 mem_all_uuid_128bits
+0x4793 mem_sp_local_key_invalid
+0x4794 mem_sp_private_key
+0x47ac mem_sp_pubkey_local
+0x47ac mem_sp_pubkey_local_x
+0x47c4 mem_sp_pubkey_local_x_end
+0x47c4 mem_sp_pubkey_local_y
+0x47dc mem_ssp_enable
+0x47dd mem_ipc_lock_bt
+0x47de mem_ipc_lock_c51
+0x47df mem_ipc_fifo_bt2c51
+0x47e4 mem_ipc_fifo_c512bt
+0x47e9 mem_led_switch
+0x47ea mem_ui_button_timer
+0x47eb mem_ui_button_last_state
+0x47ec mem_ui_timer_last_btclk
+0x47f0 mem_discovery_timeout_timer_count
+0x47f2 mem_hid_handshake_timer_count
+0x47f3 memui_reconnect_mode
+0x47f4 mem_ui_state_map
+0x47f6 mem_ui_profile_supported
+0x47f7 mem_led_gpio
+0x47f8 mem_led_dark_time
+0x47fa mem_led_light_time
+0x47fc mem_ui_button_timeout
+0x47fd mem_ui_button_gpio
+0x47fe mem_discovery_timeout
+0x4800 mem_ir_ptr
+0x4802 mem_ir_type
+0x4803 mem_ir_cmd
+0x4804 mem_ir_play_count
+0x4805 mem_ir_report_len
+0x4807 mem_ir_pulse_zero
+0x4808 mem_ir_pulse_one
+0x4809 mem_ir_pulses
+0x4825 mem_ir_sequence_len
+0x4826 mem_ir_sequence
+0x4800 mem_acl_credits
+0x4802 mem_allow_switch
+0x4803 mem_hci_acl_queue_start/*param_acl_pktcnt+2 byte*/
+0x4807 mem_hci_wake_clk
+0x4800 mem_kb_state
+0x4802 mem_kb_report_data
+0x4808 mem_kb_keys
+0x4809 mem_kb_rcv_led_data
+0x480a mem_kb_fast_wake_last
+0x480e mem_led_cap_gpio
+0x480f mem_led_num_gpio
+0x4810 mem_led_scl_gpio
+0x4811 mem_kb_map
+0x4811 mem_kb_uuid_list
+0x4a87 mem_24g_paring_tx_power_param
+0x4a91 mem_5db_tx_power_param
+0x4a9b mem_current_event
+0x4a9c mem_ipc_lock_rx_data_bt
+0x4a9d mem_ipc_lock_rx_data_c51
+0x4a9e mem_ipc_lock_tx_data_bt
+0x4a9f mem_ipc_lock_tx_data_c51
+0x4aa0 mem_ipc_2bt_fifo_head
+0x4b36 mem_ipc_2bt_fifo_end
+0x4b36 mem_ipc_2C51_fifo_head
+0x4b9a mem_ipc_2C51_fifo_end
+0x4b9a mem_ipc_2bt_read_index
+0x4b9c mem_ipc_2bt_write_index
+0x4b9e mem_ipc_2C51_read_index
+0x4ba0 mem_ipc_2C51_write_index
+0x4ba2 mem_ipc_tx_evt_buff
+0x4ba4 mem_ipc_tx_evt
+0x4ba5 mem_ipc_bt_timer
+0x4ba7 mem_ipc_rx_type
+0x4ba8 mem_queue_ele_num
+0x4ba9 mem_queue_write
+0x4bab mem_queue_read
+0x4bad mem_queue_start
+0x4bad mem_uart_packet
+0x4bb9 mem_data_ele0
+0x4bc5 mem_data_ele1
+0x4bd1 mem_data_ele2
+0x4bdd mem_queue_end
+0x4bdd mem_queue_temp
+0x4bdf mem_24g_rxdata_length
+0x4be0 mem_24g_pid
+0x4be1 mem_24g_datalen
+0x4be2 mem_24g_data_type
+0x4be3 mem_24g_txlen
+0x4be4 mem_24g_rx_window
+0x4be6 mem_24g_ensure
+0x4be7 mem_24g_get_ack_fail
+0x4be8 mem_24g_retry
+0x4be9 mem_24g_ch
+0x4bea mem_24g_current_ch_number
+0x4beb mem_24g_paring_addr
+0x4bef mem_24g_pairing_sm
+0x4bf0 mem_24g_ch_map1
+0x4bf4 mem_24g_ch_map2
+0x4bf8 mem_24g_ch_map3
+0x4bfc mem_24g_ch_map4
+0x4c00 mem_24g_addr
+0x4c04 mem_24g_check_dongle_times
+0x4c06 mem_24g_device_addr
+0x4c0a mem_24g_no_ack
+0x4c0b mem_24g_enter_lpm_timer
+0x4c0c mem_24g_syncword
+0x4c0e mem_24g_syncword_crc8
+0x4c0f mem_24g_get_syncword_crc8
+0x4c10 mem_rssi_hex_received
+0x4c11 mem_rssi_signal_buf
+0x4c19 mem_rssi_noise_buf
+0x4c21 mem_rssi_noise_index
+0x4c22 mem_rssi_signal_index
+0x4c23 mem_last_txlch
+0x4c24 mem_last_txlen
+0x4c26 mem_last_txdata
+0x4c3a mem_ipc_last_check_timer
+0x4c3e mem_ipc_c51_timer
+0x4c40 mem_le_rx_window
+0x4c41 mem_le_find_type_value_start_handle
+0x4c43 mem_le_find_type_value_end_handle
+0x4c45 mem_le_cur_att_type
+0x4c47 mem_le_search_len
+0x4c48 mem_le_ll_unknown_type
+0x4c49 mem_le_pairing_state
+0x4c4a mem_le_local_mtu
+0x4c4c mem_le_connection_updata_param
+0x4c5c mem_ltk_states
+0x4c5d mem_pair_state
+0x4c5e mem_empty_count
+0x4c5f mem_shutter_find_type_value_flag
+0x4c60 mem_le51_payload_len
+0x4c61 mem_le51_cmd
+0x4c62 mem_le51_tx_length
+0x4c63 mem_le51_txbuff_inuse
+0x4c64 mem_le51_txbuf
+0x4c6d mem_ipc_bt_100ms_timer
+0x4c6e mem_ipc_c51_100ms_timer
+0x4c6f mem_adc_config_flag
+0x4c70 mem_adc_channel
+0x4c71 mem_adc_0v
+0x4c73 mem_adc_3v
+0x4c75 mem_adc_current_value
+0x4c77 mem_hibernate_flag
+0x4c78 mem_new_supervision_to
+0x4c7a mem_kb_wake_timer
+0x4c7b mem_kb_last_data
+0x4c8f mem_power_on_flag
+0x4c90 mem_caps_num_lock
+0x4c91 mem_att_report_standard_key
+0x4c93 mem_att_report_media_key
+0x4c95 mem_att_report_system_ctrl
+0x4c97 mem_att_report_battery
+0x4c99 mem_att_report_game
+0x4c9b mem_att_report_mouse
+0x4c9d mem_suspend_flag
+0x4c9e mem_32asm_data_end
+0x4d16 mem_store_ltk_timer
+0x4d17 mem_reconnect_continue
+0x4d18 mem_le_pin_code
+0x4d1c mem_le_send_security_request_flag
+0x4d1d mem_24g_enter_hibernate
+0x4d21 mem_24g_txfail_cnt
+0x4d22 mem_mouse_retry_flag
+0x4d23 mem_24g_led_flag
+0x4d24 mem_ui_timer_last_btclk_temp
+0x4d28 mem_ui_check_timer_setup
+0x4d2c mem_customize_timer_setup
+0x4d2e mem_customize_timer
+0x4d2f mem_ios_mode_flag
+0x4d30 mem_version_yy_mm_dd
+0x4d34 mem_24g_txbuf_new
+0x4d48 mem_le_adv_swift_pair
+0x4d4f mem_24g_enter_hibernate_setup
+0x4d53 mem_24g_enter_hibernate_max
+0x4d57 mem_24g_short_sleep_counter
+0x4d5a mem_pc_sleep_flag
+0x4800 mem_at_gpio
+0x4801 mem_module_wake_up_gpio
+0x4802 mem_module_state_gpio
+0x4803 mem_module_connect_state_gpio
+0x4804 mem_module_version
+0x480a mem_last_uart_clock
+0x480e mem_current_packet_length
+0x4810 mem_module_prepare_tx_len
+0x4812 mem_module_state
+0x4813 mem_module_task
+0x4814 mem_cmode_addr
+0x481a mem_at_scan_time
+0x481c mem_prarm_pswd
+0x4820 mem_prarm_uart
+0x4824 mem_prarm_blename
+0x4827 mem_prarm_name
+0x482b mem_prarm_bleadss
+0x482e mem_prarm_adss
+0x4832 mem_prarm_vers
+0x4836 mem_prarm_class
+0x483b mem_prarm_clrflg
+0x4841 mem_prarm_reconn
+0x4847 mem_prarm_bledis
+0x4849 mem_prarm_dis
+0x484c mem_prarm_stsn
+0x4850 mem_prarm_atp
+0x4853 mem_prarm_list
+0x4857 mem_prarm_role
+0x485b mem_prarm_sniff
+0x4860 mem_prarm_ldev
+0x4864 mem_prarm_rssi
+0x4868 mem_prarm_cdev
+0x486c mem_prarm_bleinqr
+0x486f mem_prarm_inqr
+0x4873 mem_prarm_cmode
+0x4878 mem_prarm_mode
+0x487c mem_prarm_dmstate
+0x4883 mem_prarm_discov
+0x4889 mem_prarm_ota
+0x488c mem_prarm_bleconn
+0x488e mem_prarm_conn
+0x4892 mem_prarm_pageout
+0x4899 mem_prarm_recfail
+0x48a0 mem_module_uuid_list
+0x4800 mem_mouse_x
+0x4802 mem_mouse_y
+0x4804 mem_mouse_z
+0x4805 mem_mouse_key
+0x4806 mem_mouse_z_last
+0x4807 mem_mouse_z_before
+0x4808 mem_mouse_z_now
+0x4809 mem_mouse_z_data
+0x480a mem_mouse_move_flag
+0x480b mem_reconnect_timeout
+0x480c mem_mouse_direct_timeout
+0x480e mem_mouse_no_data_timeout
+0x4810 mem_mouse_blank_data_timeout
+0x4812 mem_mouse_discovery_timer
+0x4814 mem_mouse_direct_timer
+0x4816 mem_mouse_no_data_timer
+0x4818 mem_mouse_blank_data_timer
+0x481a mem_mouse_send_blank_timer
+0x481b mem_mouse_dpi
+0x481c mem_mouse_dpi_button_state
+0x481d mem_mouse_test_cnt
+0x481e mem_le_hibernate_timer
+0x4820 mem_mouse_mode_state
+0x4821 mem_sensor_type
+0x4822 mem_lbutton_gpio
+0x4823 mem_rbutton_gpio
+0x4824 mem_mbutton_gpio
+0x4825 mem_dpi_button_gpio
+0x4826 mem_sensor_data_gpio
+0x4827 mem_whee_a_data_gpio
+0x4828 mem_whee_b_data_gpio
+0x4829 mem_conn_cnt
+0x482a mem_mouse_uuid_list
+0x4800 mem_shutter_send_data
+0x4804 mem_shutter_key_temp
+0x4805 mem_shutter_send_length
+0x4806 mem_shutter_clkn_bt_last
+0x480a mem_shutter_key
+0x480b mem_shutter_flag
+0x480c mem_shutter_cable_unplug_conut
+0x480d mem_shutter_hid_disconn_count
+0x480e mem_shutter_1key_send_sm
+0x480f mem_shutter_iphonekey_gpio
+0x4810 mem_shutter_androidkey_gpio
+0x4811 mem_shutter_key_number
+0x4812 mem_shutter_uuid_list
Index: c51/patch/pwm.obj
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: c51/patch/pwm.obj
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: c51/patch/ram.obj
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: c51/patch/ram.obj
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: c51/patch/ramcode.rom
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/c51/patch/ramcode.rom	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/c51/patch/ramcode.rom	(working copy)
@@ -0,0 +1,1996 @@
+c512801a
+c0000045
+c0018049
+c0028055
+c0030300
+c0050321
+c0138325
+c0140337
+c015833d
+c0210348
+c021834c
+c0280354
+c02a0363
+c0188041
+c019803e
+c048020e
+c04901d8
+c04a01de
+c04a81c8
+c05802fe
+c058818c
+c05901a0
+c05981ba
+c05b01c3
+c05c8194
+20203bf1
+c00c036f
+c00d8377
+c0118396
+c01203b2
+c0190430
+c01dd3b0
+c01f0273
+c01f8277
+c025047c
+c0258429
+c0260433
+c0270439
+c02b0440
+c0308447
+c031844c
+c0320470
+c03284a6
+c0348602
+c03505ed
+c03585ef
+c037060d
+c0378487
+c0438127
+c0468292
+c04702ab
+c047827b
+c05e8289
+c066821b
+c0678133
+c0680148
+c04e03b6
+c04f83cc
+c07103d9
+c07183eb
+c0730403
+20203bf1
+da204040
+18007201
+20203305
+d8a04040
+df20000a
+20407e3b
+202032d8
+6810813b
+60008b81
+70800608
+20203003
+204000d7
+204000c9
+2040005a
+2040004e
+20203015
+680947f4
+6800c3d8
+7d3a040b
+6800c133
+7d3a0406
+600947f4
+20600000
+20403392
+20403407
+20403024
+2040062e
+20203022
+6800c7dc
+203a005e
+6800c793
+207a0000
+20400122
+20740000
+1ff0fe00
+1fe20c00
+20400103
+6000cba7
+c0008073
+c003007d
+1fe20400
+18c22200
+6800c040
+c3000070
+1a220c00
+c6848000
+18427e00
+c001807f
+c002809d
+20203bf1
+1a220c00
+d8a000f8
+202000fb
+20400103
+20400103
+60008b7d
+20400078
+20207c33
+20400106
+18c20400
+18508400
+60094b9a
+20600000
+d8a04d34
+202000fb
+20400103
+1fe22200
+18c27e00
+600102b7
+2040527c
+243a0088
+1a20a201
+20404b2c
+2020008d
+d8a04bad
+1a227200
+680102b7
+1fe20c00
+202000fd
+18a0a5fe
+680142b7
+e0a10000
+580000a1
+e0a08000
+1a20f3ff
+680102b7
+1fe20c00
+204000fd
+1a420c00
+e8c10000
+60014c7b
+1fe0f202
+20407e45
+704c7a64
+20600000
+18c22200
+6800cba9
+1fe08401
+18410403
+6008cba9
+1feffe07
+d8a04bad
+98a08a00
+1a220c00
+20400103
+18c22200
+1fe0ffff
+1fe27200
+1fe0fe07
+6000cc62
+1a220c00
+20400103
+18c22200
+c00080b5
+c00100bd
+c00180bf
+c00200c5
+c00300c1
+c00400c3
+68014c91
+e0a10000
+1a220c00
+204000fd
+2040561e
+247a0000
+700b7d1b
+20205620
+68014c93
+202000b6
+68014c95
+202000b6
+68014c99
+202000b6
+68014c99
+202000b6
+68014c97
+e0a10000
+1a220c00
+202000fd
+680a4d28
+1c427e00
+98467e00
+68094d2c
+9846fc00
+20407efd
+1807fe00
+207a0000
+1c420400
+600a4d28
+6800cd2e
+1fe0fe01
+6000cd2e
+20600000
+680a4c3a
+1c427e00
+98467e00
+d8400640
+9846fc00
+20407efd
+1807fe00
+207a0000
+1c420400
+600a4c3a
+68094ba5
+18508400
+9840fe00
+1ff0fe00
+60014ba5
+1ff0fe00
+1fe17e03
+c1800000
+708971af
+68108053
+79207e07
+60108053
+68108973
+1fe1fe30
+60108973
+70890674
+7089067c
+708972aa
+20001388
+68190150
+68108053
+793ffe07
+60108053
+18508400
+60094c75
+20600000
+20400103
+1fe27200
+204000ff
+20200078
+20400103
+e0a08000
+c20000ff
+20600000
+20400106
+e8c08000
+20600000
+58004b36
+98c67c00
+24628000
+d8c04aa0
+20600000
+df200003
+d8c04ba2
+18c22200
+68014ba0
+1ff0fe00
+1fe20a00
+1a220c00
+e8c08000
+e0a08000
+2040011a
+c2000112
+18a27e00
+1ff0fe00
+60014ba0
+20600000
+58004b9a
+98a67c00
+24628000
+d8a04b36
+20600000
+68014b9e
+68094ba0
+20200124
+68014b9a
+68094b9c
+98467c00
+2022e9b1
+2020320b
+1c427e00
+60024d24
+6808c7ef
+6800cd27
+98467c00
+2441012e
+20207c06
+680a4d24
+600a47ec
+600a4c3a
+600a4d28
+20600000
+da2047df
+20407f9f
+207a0000
+1fe22600
+20400139
+20203ea5
+c10c0000
+c00a061f
+c00a8624
+c0036614
+c001013f
+20203e7d
+70429d00
+680147f4
+c283bf08
+2fec0001
+20408145
+20203f08
+68008450
+c1010000
+20203e7b
+60088259
+6800cc6d
+1fe0fe01
+6000cc6d
+68008259
+207a0000
+1fe0ffff
+60008259
+20400168
+2040016f
+20400154
+2020014c
+6800cc9d
+247a0000
+6800cc7a
+207a0000
+1fe0ffff
+6000cc7a
+c1808000
+704c7a64
+680147f4
+c4028000
+68014c7b
+207a0000
+2040527e
+247a0000
+68014c7b
+1fe22200
+20404b2c
+1a20f202
+d8c04c7d
+20207e45
+6800c7f2
+207a0000
+1fe0ffff
+6000c7f2
+247a0000
+20403ebd
+20204b22
+6800cc0b
+207a0000
+1fe0ffff
+6000cc0b
+20600000
+1a627e00
+1fe17ef0
+c1280000
+2040017c
+1a627e00
+207a0000
+6000cba4
+2020010b
+1a627e00
+c0058180
+c0010188
+20600000
+704c7a28
+5800000a
+60014c7b
+680142b7
+e0a10000
+580001a1
+e0a10000
+20600000
+704c7a00
+df200014
+d8a04c7b
+20207e3f
+70416e7f
+20403cf3
+6800cc77
+207a0000
+704c7700
+1c427e00
+60024c3a
+20600000
+6800c219
+247a0000
+70804206
+58000f0c
+20403da7
+58030d40
+20403bf3
+37d98200
+1e226000
+20403b36
+20001388
+20203d9d
+c6118000
+680147f4
+c284bd1e
+20403cab
+6801c210
+207a0000
+6800c131
+207a0000
+2040527e
+247a0000
+20403dca
+247a0000
+20403b36
+6800c7dc
+203a3d25
+6800c793
+207a0000
+20203d25
+20400122
+24740000
+2040011f
+24740000
+700b7f01
+700b7e01
+204001bf
+20200122
+204001b2
+24740000
+68008b7f
+247a0000
+20203d2d
+68008b7e
+2000000a
+c08001bf
+20600000
+204001b2
+24740000
+68008b7f
+247a0000
+20203d4f
+204001ca
+20203aaf
+6800c219
+243a01d0
+20403d91
+20007530
+20007530
+20007530
+20403b0a
+70804204
+6810896b
+1fe17ecf
+6010896b
+1fe1fe30
+6010896b
+20600000
+60088017
+1840a204
+20203a86
+60088017
+1840a200
+20203ab6
+204001db
+58000500
+20403bf3
+70890601
+7089003c
+708901e0
+70896d12
+2000000a
+70890201
+7089023d
+2000000a
+708903b7
+2000000a
+7089027d
+6800cbef
+c0ff81f6
+6802ca91
+e0a28000
+e8c28000
+e0a28000
+708956df
+204001fd
+708955df
+20600000
+6802ca87
+e0a28000
+e8c28000
+e0a28000
+708956c2
+708955d0
+20600000
+20000004
+708955d1
+20000004
+708955d2
+20000004
+708955d4
+20000004
+20600000
+708955d4
+20000004
+708955d2
+20000004
+708955d1
+20000004
+708955d0
+708956c0
+20600000
+2030ba6f
+20400205
+20203a6f
+2040527c
+247a0000
+2020005a
+78347c00
+68120138
+79347e1a
+6012004c
+20403db0
+7000a201
+20600000
+6800c419
+1fe0fe02
+6000c3f9
+700b7e00
+70017706
+20403fa4
+58000211
+6001428e
+5800021a
+6001428a
+58000174
+60014292
+5800027a
+60014290
+5800005a
+6001428c
+58000214
+60014288
+58004aa0
+1ff0fe00
+60014b9a
+60014b9c
+20403e0b
+58004b36
+1ff0fe00
+60014b9e
+60014ba0
+6800cc77
+c02d024e
+2035824c
+68014c71
+1ff0fe00
+60014c71
+68014c73
+1ff0fe00
+60014c73
+20400259
+680402a0
+243a0246
+68014ad4
+1ff0fe00
+203a0246
+60014c73
+2040062b
+704ba42f
+2040010b
+704c7700
+70828003
+20600000
+704ba430
+20200248
+1ce27e00
+203a0281
+20405b63
+20404d99
+58000000
+60044040
+600147f4
+1c427e00
+60024c3a
+704ba433
+20200248
+2040688a
+580007e0
+da2002a0
+d840000e
+204068d3
+2040688d
+680082a0
+c2803bf1
+680402a2
+207a0000
+680902a4
+680102aa
+18422400
+1fe22200
+98462600
+1a6b2600
+1a427e00
+9a667e00
+1ff0fe00
+60014c71
+1a63a600
+1a227e00
+9a667e00
+1ff0fe00
+60014c73
+20600000
+70001627
+70890f36
+70890b5f
+202053d4
+70890f2e
+70890bff
+202053d9
+20600000
+68014ba0
+60014b9e
+68014b9c
+60014b9a
+700b7e03
+204001bf
+704c775a
+20403db8
+68120138
+793ffe0f
+6012004c
+20403db0
+d85fffff
+20203cda
+ea2a8000
+18417eff
+243a028e
+184cfe00
+e2228000
+1a20a204
+ea208000
+247a0000
+20207f9c
+20407c20
+da2047e4
+20407f9f
+1fe20400
+20407c24
+18427e00
+207a0000
+c01082a4
+c01102a6
+c01186c1
+c00082e6
+c00682c1
+c01602c0
+c01582cc
+c00182e9
+c01502f2
+c0097c85
+20207c5a
+704befff
+202006f4
+793f8023
+704befff
+202006ac
+700b7d22
+20205620
+6800807c
+203a02b0
+204061d9
+6800807c
+243a7c8c
+68008b7d
+c584fc87
+c00202b6
+c00882a9
+c01402bc
+20207c7b
+680147f4
+c30182b9
+20207ca4
+5800000a
+60020051
+20207ca4
+70007c37
+68014c78
+60010051
+20600000
+204002e6
+20403eff
+20407cd5
+70413100
+180a7e00
+6000c4f9
+7043dc05
+58181203
+6001c3e2
+d8400007
+204002d2
+20207cae
+7043dc04
+580000ff
+6001c3e2
+d8400000
+204002d2
+20207cae
+6800c3f9
+9840fe00
+1fe0fe0b
+1fe67c1f
+242102e2
+6000c3d9
+d8a043e5
+18427e00
+245a02df
+6800c3f9
+1fe27200
+d8c043fa
+20207e45
+1fe27200
+d8c04d48
+20207e45
+6800c3f9
+1fe0fe0b
+6000c3d9
+20600000
+20403eff
+70017706
+20207c97
+20403bfa
+20404d98
+20405b62
+70017706
+6800c7dc
+c00002f0
+70017717
+70425e01
+20207ca2
+680147f4
+c284bf90
+c28002fb
+c283fcd5
+c51186ac
+7043d800
+20403f7e
+700b7d37
+20207c27
+20403eff
+20407cd5
+20203f77
+20403b36
+20203cdc
+20400302
+2020302c
+da600304
+20203301
+c300b307
+2040333d
+20400311
+98467e00
+1fe0fe01
+2021030b
+20203325
+98002400
+1a208c02
+e8c10000
+203a3327
+20403349
+20200305
+1ff11600
+196c9600
+2022831b
+29601e0f
+24608000
+18511600
+196c9600
+24628000
+7920041c
+20600000
+18511600
+196c9600
+29601e0f
+24608000
+79207e1c
+20600000
+600c02a0
+20407e53
+680c02a0
+2020307c
+78547c00
+68010032
+d840ffff
+98467c00
+24628000
+68020034
+2038032e
+9d067e00
+2020032f
+9c467e00
+1fe67c04
+24610000
+18007e00
+60010032
+202034df
+700b7d20
+20407c27
+20200338
+600a0034
+70474801
+5800ffff
+60010032
+70007301
+20600000
+20403baa
+20400340
+20203267
+1c40c201
+20403a54
+18004803
+20403a42
+20403bae
+20403bb4
+20403bc5
+2020375c
+20403e25
+20406dec
+204035d6
+20203480
+20403d61
+20403be2
+20213498
+20403204
+24343498
+20403812
+243a0349
+20600000
+204032df
+2422b568
+68008047
+c301b571
+6800c165
+c009b562
+68014c24
+1fe67c14
+24213562
+60010091
+6800cc23
+60008090
+58004c26
+60010179
+20203562
+68010091
+60014c24
+1fe67c14
+2421358f
+98007200
+68008090
+6000cc23
+68010179
+98000c00
+d8a04c26
+20407e45
+2020358f
+680102cd
+203a4dfc
+680082cf
+c0008374
+20204dbb
+2040527a
+247a0000
+20204dc3
+e8c08000
+c005037a
+20204e14
+e8c08000
+1fe20e00
+e8c10000
+1fe22200
+1a627e00
+9a262600
+5800000b
+e0a08000
+18e27e00
+e0a08000
+e8c10000
+c0010388
+c001838f
+20203bf1
+58020008
+e0a30000
+58000200
+e0a20000
+18007e0c
+9a40a400
+20204e20
+5803000c
+e0a30000
+58000006
+e0a40000
+18007e10
+9a40a400
+20204e20
+204052c4
+18002400
+204052d0
+1fe20a00
+680102cd
+1fe22600
+680102cb
+98000c00
+204003a0
+20205110
+e8c08000
+c00503a3
+20205116
+e8c08000
+1fe20e00
+e8c10000
+1fe22200
+e8c10000
+600102a0
+1a627e00
+9a262600
+204052d0
+5800000b
+e0a08000
+18e27e00
+e0a08000
+680102a0
+20200385
+da400000
+2040527a
+247a0000
+2020524d
+680102cb
+1fe20c00
+e8c08000
+1fe1040f
+1ff1fe00
+c00503c9
+c00283c7
+c00083c0
+c0024b18
+20204aff
+18427e00
+c002cb09
+704c9d01
+c001cb18
+704c9d00
+c0024b18
+20600000
+204003c9
+20204b11
+e8c08000
+c0008426
+20600000
+2040527a
+247a0000
+204003d0
+20206dfd
+6800c132
+c1008000
+6800c3cd
+207a0000
+1fe22200
+7043cd00
+1a227e00
+c0284ddc
+20600000
+6800807d
+c00183dd
+c00383e8
+20205b92
+680084df
+60008445
+c0098334
+c01983e2
+20205c58
+6800844d
+79207e00
+6000844d
+700b7d01
+20407c27
+20205c83
+680084df
+60008446
+20205cf3
+78547c00
+204061d9
+68008048
+207a0000
+c283df10
+c00103f3
+c0038400
+20205ee0
+18007e11
+204061b5
+68008049
+1fe20400
+c00003fb
+c00703fb
+c00e03fb
+20600000
+e0a08000
+6800c702
+e0a08000
+5800000e
+20205fa6
+20406055
+70007264
+20600000
+6800807c
+203a0408
+204061d9
+6800807c
+247a0000
+68008055
+207a0000
+c0030417
+c008040d
+2020623e
+6800c748
+c1000000
+c0008415
+d8e0000a
+20407e53
+247a0000
+70474800
+2020629b
+20748000
+20200417
+68008177
+c281629b
+c280041a
+6800c25e
+203a62c7
+6800844d
+c4018000
+c4010000
+68020465
+d8400320
+98408400
+1c427e00
+98467c00
+24610000
+20206267
+e8c08000
+6000cc90
+20600000
+204054bd
+68088017
+20403a82
+20403a87
+78287c00
+d960157c
+2020547f
+70443e01
+70443f00
+2020534e
+204053dd
+20400436
+202054c1
+203681e1
+204053ee
+20203a91
+6800cc40
+600246f9
+6800c4db
+c000843e
+202054e0
+7044db00
+202054ef
+680083c0
+c4028000
+680103da
+680903e0
+98467e00
+24610000
+2020557e
+680083d7
+c3828000
+68008341
+203a5626
+20205890
+6800c440
+c0038465
+c0078469
+c0030458
+c0010455
+c0098453
+2020563a
+18000401
+20205892
+5800000a
+600103ef
+20205693
+700b7d12
+20407c33
+18000401
+2034d892
+700b7d34
+20407c27
+6800cc49
+c0010461
+20200463
+700b7d46
+20405620
+18000401
+20205892
+6800cc48
+e0a08000
+18000402
+20205892
+18a08bff
+68044c4c
+e0a40000
+e8c40000
+e0a40000
+18000202
+2020588a
+6800c444
+c004d719
+c0010475
+c003d70d
+20205656
+59000302
+6001c4b5
+58000001
+e0a08000
+58010010
+e0a18000
+202056f1
+09800018
+78287c00
+db600664
+1fef7e00
+1ff17e00
+e0a18000
+2023375c
+7836fc00
+68008017
+1fe0a200
+202054af
+e8c18000
+600183f9
+c029048d
+c00104a4
+c0090493
+20205907
+704d1701
+680103fa
+c0108491
+202059ed
+d8c00349
+20200426
+680103fa
+1fe67c21
+20428491
+680103fa
+1fe67c31
+204284a2
+680103fa
+68094c99
+18408401
+98467c00
+2022849f
+202059ca
+700b7d34
+20407c27
+202059ca
+70413101
+20600000
+700b7d03
+20205620
+6800c444
+c00d85df
+c00e85df
+c0088573
+c0048525
+c0028513
+c00384c7
+c009d85c
+c00184b7
+c00584ba
+c00684b2
+20205666
+680103fa
+c00384b5
+202057d6
+7003fc07
+20205729
+68014c4a
+e0a10000
+2020588a
+680103fa
+c0185728
+c00704be
+202057c6
+6800cc49
+c08057c6
+6800cc5c
+c001d7c6
+18a20400
+704c4901
+18420a00
+7003fc05
+20205729
+2040577b
+20740000
+680944c0
+58001812
+98467c00
+202284e0
+5800180f
+98467c00
+202284e2
+5800180a
+98467c00
+202284e6
+58001801
+98467c00
+202284e4
+20205754
+6800cc5f
+d8400000
+f9200400
+98417e00
+c0805728
+6800cc5f
+f9207e00
+6000cc5f
+202004e8
+d8e00000
+202004d7
+d8e00001
+202004d7
+d8e00003
+202004d7
+d8e00002
+202004d7
+680144c0
+1fe22200
+680944c4
+18422400
+204004ef
+202284fa
+20205728
+d8c04504
+e8c10000
+207a0000
+e8c18000
+e8c10000
+9a267c00
+20628000
+18c08dfd
+e8c08000
+98c08c00
+202004f0
+18c08df9
+e8c10000
+60014c41
+20400508
+203a5728
+18c08dfc
+e8c10000
+1fe0ffff
+60014c43
+70444407
+68024c41
+60024445
+18000409
+20205892
+e8c10000
+e8c08000
+98c08c00
+e8c10000
+207a0000
+e8c10000
+9a467c00
+20628000
+e8c08000
+98c08c00
+2020050b
+d9600003
+18007e01
+6000c445
+20405a74
+20405a7d
+203a5746
+24210523
+78547c00
+e0a10000
+e8c10000
+e0a10000
+196097ff
+2022d746
+e8c08000
+98c08c00
+20200517
+18c08c02
+20200520
+680944c0
+58002a00
+98467c00
+20228565
+58002a50
+98467c00
+20228570
+58002803
+98467c00
+2422d728
+680144bc
+600102a0
+78347c00
+204005b7
+24210541
+680902a0
+204005bf
+c0008541
+204005bb
+2422853f
+78547c00
+20400543
+204005a5
+204005bf
+2040054b
+20200541
+204005a5
+20200532
+20345728
+202005dd
+680102a0
+60014446
+6800cc47
+1fe27200
+204005d4
+d8a04448
+20407e45
+202005d7
+68094c45
+184cfe00
+c082855d
+204005d1
+680102a0
+e0a10000
+204005d7
+58004504
+98408c00
+e8c08000
+18c20400
+1fe27200
+1fe0fe05
+6000c445
+204005d1
+18420c00
+20407e45
+202005d7
+204005d1
+680102a0
+e0a10000
+68014c45
+e0a10000
+204005d7
+70444507
+20600000
+20405b08
+e8c08000
+1fe27200
+1fe0fe02
+6000c445
+18c08dfb
+e8c10000
+e0a10000
+18c08c03
+20407e45
+2020588a
+d8402a50
+20405b0c
+20200566
+d9600002
+680144bc
+600102a0
+700d5c00
+78347c00
+204005b7
+2421059b
+680902a0
+204005bf
+c000859e
+204005bb
+24228597
+68008d5c
+c000859e
+24340588
+78547c00
+6800cc47
+1fe0fe04
+6000c445
+204005d7
+20200592
+6800cc47
+1fe67c10
+2022859e
+6800c445
+1fe67c10
+2022859e
+680102a0
+1fe0ffff
+60010d5a
+204005ae
+680102a0
+60010d58
+204005a9
+196097ff
+20228599
+204005a5
+20200578
+700d5c01
+20200597
+680102a0
+60010d5a
+202005a2
+680102a0
+1fe0ffff
+60010d5a
+202005a2
+20345728
+204005ae
+202005dd
+680902a0
+18408401
+600902a0
+20600000
+6800cc47
+60008103
+1fe27200
+204005d4
+20207e45
+204005d1
+68010d58
+e0a10000
+68010d5a
+e0a10000
+68008103
+1fe27200
+20407e45
+202005d7
+680902a0
+680144be
+98467c00
+20600000
+680144c0
+68094c45
+98467c00
+20600000
+d8c04504
+18422200
+e8c10000
+203a05ca
+e8c90000
+60094c45
+9a267c00
+202285cc
+e8c08000
+98c08c00
+202005c1
+58000001
+20600000
+e8c08000
+6000cc47
+204005da
+58000000
+20600000
+680102b9
+1fe20a00
+20600000
+680102b7
+1fe20c00
+20600000
+18a27e00
+600102b9
+20600000
+18c27e00
+600102b7
+20600000
+204005d1
+2020588a
+6800cbab
+1fe08401
+18410403
+6008cbab
+1feffe07
+d8c04bad
+98c08c00
+6800cc62
+1fe0fffb
+1fe27200
+d8a04445
+20407e45
+6808cc62
+20205892
+2040561c
+202058b0
+1a627e00
+c00185f9
+c00505fd
+c00905fb
+c00105ff
+1fe67c0d
+202158c0
+6000cc48
+700b7d27
+20205620
+704c5c00
+20205938
+700b7d33
+20205620
+700b7d2b
+20205620
+58000014
+600103ef
+20600000
+6800c43e
+28200601
+20208606
+202058a7
+6800c43f
+203a0609
+202058a7
+6800c43e
+793ffe04
+6000c43e
+20600000
+e8c08000
+c0008614
+c002061a
+c0048612
+202058f8
+704c4903
+20205974
+704d1c01
+6000c4ae
+e8c30000
+e0a30000
+700b7d42
+20205620
+204074a8
+2022861d
+20205968
+704c4902
+2020596a
+704c5d00
+20403f86
+20403f7e
+20403fa4
+20203ecc
+70421300
+70448b00
+704c5c00
+704c4900
+704c5f00
+704c5d00
+20203ed0
+58000000
+60024ba9
+20600000
+c6918000
+68024d1d
+60024d4f
+20400653
+24340646
+704c0b0a
+20400679
+6800cbef
+c1ff8000
+6800cd22
+247a0000
+204001b2
+24740000
+68008b7f
+247a0000
+20403cab
+6801c210
+207a0000
+6800c131
+207a0000
+6801cd57
+20407e8a
+600a41fc
+20203cda
+204001b2
+24740000
+68008b7f
+247a0000
+20403cab
+6801c210
+207a0000
+6800c131
+207a0000
+6800cc0b
+243a0642
+68024d4f
+20200643
+6800cbef
+c0ff86ca
+2040065a
+20540675
+20540734
+704be601
+20600000
+78547c00
+704be202
+6800cd34
+c0020665
+c002866b
+c0030671
+c003866e
+c0040668
+6800cd22
+245a34df
+20600000
+704d3400
+704be10a
+20200673
+704d3408
+704be110
+20200673
+704d3403
+704be104
+20200673
+704d3402
+704be103
+20200673
+704be201
+704be108
+704be700
+202034df
+d8a00cd5
+d8c04d34
+df200014
+20207e45
+704be800
+d9600d00
+34730200
+204006a0
+24378689
+204006af
+6800cbe0
+1fe0fe01
+6000cbe0
+704d2200
+6800cbef
+c0ff869f
+2040069b
+704be700
+704be600
+20600000
+704d2201
+6800cbe7
+1fe0fe01
+6000cbe7
+6800cbef
+c0ff86ab
+6800cbe7
+c07f86ac
+6800cbe7
+d8400010
+98467c00
+20210753
+6800cbe8
+1fe0fe01
+6000cbe8
+2000000a
+c083867a
+20200753
+58000000
+60020cd5
+60024d34
+20600000
+202006e4
+7857fc00
+204007ab
+18002a00
+68024c00
+98001200
+68088017
+20403a82
+20403a87
+2040076b
+205787a5
+20600000
+20600000
+704d2200
+700b7d32
+20207c27
+20400719
+68008cb3
+c1810000
+6800cbdf
+207a0000
+98007200
+d8c00cb5
+d8a00d17
+20407e45
+68008cb4
+2fe1f008
+24608000
+68008cb5
+c07f86bf
+6000cc90
+20600000
+704d5a01
+20600000
+79200023
+204006c6
+20400685
+704bef01
+20600000
+704be000
+704be94e
+68024beb
+20200726
+204006c6
+6800cbe6
+c000b4df
+6800cbef
+c00086d2
+c00106d5
+c00186d8
+20203bf1
+704bef11
+700d37aa
+202006da
+704bef12
+700d3755
+202006da
+704bef13
+700d3722
+700d3802
+68024c06
+60020d39
+700d3d00
+da200d37
+d8400007
+20400714
+20400734
+20400658
+202034df
+6800cbef
+c17f8000
+c00886ea
+c00906ec
+c00986ee
+20600000
+704bef02
+20200685
+704bef03
+20200685
+704befff
+700b7d31
+20407c27
+68020d19
+20400726
+20200685
+79200023
+20400727
+20400753
+6800cbef
+c1ff8000
+20400706
+58000000
+60014c04
+20403cab
+200007d0
+6800cc04
+c07f86ac
+204006a0
+2437870f
+2040069b
+79200023
+700b7d3c
+20207c27
+700d37ff
+6800cbe2
+60008d38
+68024c06
+60020d39
+d8400006
+da200d37
+20400714
+20200734
+68014c04
+1fe0fe01
+60014c04
+20400753
+202006fc
+6008cbe1
+18427200
+d8a00cd5
+1a220c00
+20207e45
+68008cb4
+1fe97e00
+6000cbdf
+20600000
+6808cc22
+58004c11
+98408a00
+1a227e00
+e0a08000
+18408401
+18410407
+6008cc22
+20600000
+60024c00
+da200000
+df200004
+d8c04c00
+e8c08000
+9a20a200
+c200072a
+1a227e00
+60014c0c
+6800cc0c
+6808cc0d
+9840fe00
+6000cc0e
+20600000
+6800cbe1
+1fe0fe02
+6000cbe3
+6800cbe2
+60008cf5
+6800cbe1
+1fe9fe00
+6808cbe0
+18410403
+18438400
+9841fe00
+6808cc0a
+9840fe00
+e0a08000
+6800cbef
+c0ff8746
+6800cbe2
+e0a08000
+6800cbe1
+98007200
+6800cbe2
+c0008751
+d8c00cd5
+20407e45
+68008cd5
+c001874f
+20600000
+700cd502
+20600000
+d8c00cd6
+20207e45
+6808cbea
+20400759
+18408401
+18410403
+6008cbea
+20600000
+6800cc00
+1fe17e03
+1fefa204
+58004bf0
+9a20fe00
+98408c00
+e8c08000
+6000cbe9
+20600000
+7844fc00
+7843fc00
+58555555
+98001e00
+6800cbe9
+1fed8400
+79200401
+18431c00
+20600000
+20400762
+7826fc00
+7830fc00
+78507c00
+78287c00
+68014be4
+98003600
+37c18400
+242c07a5
+7846fc00
+7825fc00
+7823fc00
+7824fc00
+09800008
+19897e00
+6000cc0f
+6808cc0e
+98467c00
+242287a5
+09800008
+19897e00
+60008cb3
+68008cb3
+6808cbe2
+a8400e00
+242087a5
+09800008
+19897e00
+e0a08000
+1fe97e00
+1fe1721f
+2022878f
+09800008
+19897e00
+e0a08000
+c200078b
+18a22200
+09800008
+19897e00
+6000cc10
+1a220a00
+09800018
+78287c00
+db600664
+1fef7e00
+1ff17e00
+e0a18000
+7845fc00
+202307a5
+7837fc00
+68008017
+1fe0a200
+20403ab6
+7846fc00
+20403a7a
+6800cc10
+1fe22200
+2020071d
+784dfc00
+7845fc00
+2020375c
+20403a7a
+6808cbe9
+20203a91
+204053d2
+68024c00
+98001200
+20400762
+204007a8
+79202a00
+782efc00
+78307c00
+7850fc00
+19317e00
+1fecfe00
+1ff1fe00
+08008628
+784efc00
+782dfc00
+7823fc00
+7824fc00
+6800cc0e
+08008608
+6800cbe3
+98007200
+d8c00cf5
+e8c08000
+08008608
+c20007c1
+78247c00
+08008618
+78447c00
+37d38200
+20000064
+784efc00
+784dfc00
+20203a7a
Index: c51/patch/rf.dat
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/c51/patch/rf.dat	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/c51/patch/rf.dat	(working copy)
@@ -0,0 +1,107 @@
+mem_lpm_config:8f 10 ce
+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
+mem_fcomp_mul:02
+mem_fcomp_div:24
+mem_iscan_window:12 00
+mem_iscan_interval:00 02
+mem_pscan_window:12 00
+mem_pscan_interval:00 02
+mem_inq_window:20 00
+mem_page_window:20 00
+mem_page_to:00 20
+mem_rx_window_init:80 03
+mem_rx_window_sniff:00 06
+mem_new_supervision_to:00 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
+0a fb
+0b ff 
+
+#agc table
+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
+
+# tx power
+55 d0
+56 c0
+57 4c
+58 6c
+59 50
+
+#dpll
+68 e4
+69 00
+6a 00
+6b 30
+ff
+mem_rf_init_ptr:70 4f
+
+mem_5db_tx_power_param:
+55 d0
+56 c0
+57 4c
+58 6c
+59 50
+
+mem_24g_paring_tx_power_param:
+55 d0
+56 c0
+57 4c
+58 6c
+59 50
+
Index: c51/patch/sch.rom
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/c51/patch/sch.rom	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/c51/patch/sch.rom	(working copy)
@@ -0,0 +1,635 @@
+mem_patch00:
+69   #mem_patch00
+04   #mem_patch01
+00   #mem_patch02
+00   #mem_patch03
+80   #mem_patch04
+09   #mem_patch05
+0a   #mem_patch06
+00   #mem_patch07
+0c   #mem_patch08
+00   #mem_patch09
+11   #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
+09   #mem_patch23
+18   #mem_patch24
+00   #mem_patch25
+04   #mem_patch26
+c8   #mem_patch27
+00   #mem_patch28
+5c   #mem_patch29
+40   #mem_patch2A
+00   #mem_patch2B
+3a   #mem_patch2C
+ce   #mem_patch2D
+00   #mem_patch2E
+00   #mem_patch2F
+80   #mem_patch30
+e0   #mem_patch31
+00   #mem_patch32
+90   #mem_patch33
+00   #mem_patch34
+00   #mem_patch35
+00   #mem_patch36
+20   #mem_patch37
+00   #mem_patch38
+a0   #mem_patch39
+01   #mem_patch3A
+00   #mem_patch3B
+4c   #mem_patch3C
+00   #mem_patch3D
+00   #mem_patch3E
+00   #mem_patch3F
+
+
+mem_customize_timer_setup:   50 00		# 20:10ms  30:15ms
+
+mem_lpm_mode:01
+mem_lpm_mult:40
+mem_lpm_mult_timeout:03
+mem_lpm_overhead:0a
+mem_lpm_interval:10 00
+mem_scan_mode:00
+
+mem_class: 40 25 00
+
+mem_lap:36 28 52 08 66 2a    
+mem_local_name_length:
+'BT3.0 Keyboard
+mem_sniff_param_interval:0e 00
+mem_sniff_param_attempt:01
+mem_sniff_param_timeout:01
+mem_unsniff2sniff_timer:0a
+mem_ssp_enable:01
+mem_ui_profile_supported:01
+
+mem_eir_enable:01
+
+mem_all_uuid_16bits:
+06
+03#Type: Complete list of 16-bit UUIDs
+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
+3601a2
+
+#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 3591 358f 0822 258b
+
+# 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)
+26ff00 # 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
+
+#25
+0501 # Usage Page(Generic Desktop)
+0906 # Usage(Keyboard)
+a101 # Collection(Application)
+8508 # Report ID(8)    
+9570 # Report Count(112)
+7501 # Report Size(1)
+1500 # Logical Minimum(0)
+2501 # Logical Maximum(1)
+0507 # Usage Page(Keyboard/Keypad)
+1900 # Usage Minimum(01)
+29ff # Usage Maximum(255)
+8102 # Input(Data Variable Absolute) ; Modifier byte
+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
+
+#23
+05 01	#Usage Page (Generic Desktop),
+09 80	#USAGE (3-D Digitizer)
+a1 01	#Collection (Application),
+85 03	#Report ID (3)
+19 81	#Usage Minimum (), 
+29 88	#Usage Maximum (),
+15 00	#Logical Minimum (0),
+25 01	#Logical Maximum (1),
+95 08	#Report Count (8),
+75 01	#Report Size (1),
+81 06	#Input (Data,Var,Rel)
+c0		#END_COLLECTION
+
+090207 3508 3506 090409 090100
+09020b 090100
+09020c 091f40
+09020d 2800
+09020e 2801
+09020f 090012
+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
+0904e8
+090202#ProductID
+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
+9d
+59
+82
+
+#bluetootch param init
+mem_sp_flag:00
+mem_lpm_current_mult:00
+mem_master_sp_flag:00
+mem_le_ch_mapped:27
+
+mem_ui_button_gpio:ff
+mem_led_gpio:ff
+
+mem_seqi:80
+
+
+mem_ipc_tx_evt_buff:02 01
+
+
+#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 
+'BT5.0 KB
+
+#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
+
+#Primary Service: Device Information
+0c 00 00 28 02 0a 18
+#Manufacturer Name
+0d 00 03 28 01 02
+0e 00 29 2a 06 59 69 43 68 69 70			#IOS 13.5.1
+#Characteristic: pnp id
+0f 00 03 28 01 02
+10 00 50 2a 07 02 e8 04 21 70 01 00		# SAMSUNG soft keyboard,setup shortcuts
+
+#Primary service: HID
+11 00 00 28 02 12 18
+#Characteristic:Protocol mode
+12 00 03 28 01 06
+13 00 4e 2a 01 01
+#Characteristic: hid report
+14 00 03 28 01 12   
+15 00 4d 2a 08 00 00 00 00 00 00 00 00	#hid report	led handle write
+16 00 02 29 02 00 00	
+17 00 08 29 02 01 01	#Report ID: 1	Report Type: Input
+
+#Characteristic:hid report
+18 00 03 28 01 12  
+19 00 4d 2a 02 00 00
+1a 00 02 29 02 00 00
+1b 00 08 29 02 03 01	#Report ID: 3	Report Type: Input
+
+#Characteristic:hid report
+1c 00 03 28 01 12   
+1d 00 4d 2a 02 00 00 	#hid report	led handle write
+1e 00 02 29 02 00 00	
+1f 00 08 29 02 02 01	#Report ID: 2	Report Type: Input
+
+#Characteristic:hid report
+20 00 03 28 01 0e   
+21 00 4d 2a 02 00	00	#hid report	led handle write
+22 00 02 29 02 00 00	
+23 00 08 29 02 01 02	#Report ID: 1	Report Type: Output
+
+#Characteristic:hid report
+24 00 03 28 01 12  
+25 00 4d 2a 0d 00 00 00 00 00 00 00 00 00 00 00 00 00
+26 00 02 29 02 00 00
+27 00 08 29 02 08 01	#Report ID: 8	Report Type: Input   game keyboard
+
+
+#Characteristic:Report map
+28 00 03 28 01 0a
+29 00 4b 2a 8b
+
+#66
+05 01
+09 06
+a1 01
+85 01
+75 01 
+95 08
+05 07
+19 e0 
+29 e7 
+15 00
+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 
+26 ff 00
+05 07
+19 00
+29 ff 
+81 00
+c0 
+
+#25
+0501 # Usage Page(Generic Desktop)
+0906 # Usage(Keyboard)
+a101 # Collection(Application)
+8508 # Report ID(8)    
+9570 # Report Count(112)
+7501 # Report Size(1)
+1500 # Logical Minimum(0)
+2501 # Logical Maximum(1)
+0507 # Usage Page(Keyboard/Keypad)
+1900 # Usage Minimum(01)
+29ff # Usage Maximum(255)
+8102 # Input(Data Variable Absolute) ; Modifier byte
+c0 # End Collection
+
+#25
+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
+
+#23
+05 01	#Usage Page (Generic Desktop),
+09 80	#USAGE (3-D Digitizer)
+a1 01	#Collection (Application),
+85 03	#Report ID (3)
+19 81	#Usage Minimum (), 
+29 88	#Usage Maximum (),
+15 00	#Logical Minimum (0),
+25 01	#Logical Maximum (1),
+95 08	#Report Count (8),
+75 01	#Report Size (1),
+81 06	#Input (Data,Var,Rel)
+c0		#END_COLLECTION
+
+#Characteristic:Hid information
+2a 00 03 28 01 02
+2b 00 4a 2a 04 11 01 00 01        
+#Characteristic
+2c 00 03 28 01 04
+2d 00 4c 2a 01 00
+
+#Primary Service: BAS
+2e 00 00 28 02 0f 18 
+#Characteristic: Battery Level
+2f 00 03 28 01 12 
+30 00 19 2a 01 64 
+#Client Characteristic Configuration
+31 00 02 29 02 00 00 
+#End of Attribute list
+00 00
+
+
+mem_le_local_mtu:17
+mem_le_transmit_window:50
+mem_le_notify_handle:14
+mem_le_lap:11 46 34 54 77 dd
+
+
+mem_empty_count:00
+mem_att_report_standard_key:15 00
+mem_att_report_system_ctrl:19 00
+mem_att_report_media_key:1d 00
+mem_att_report_game:25 00
+mem_att_report_battery:30 00
+mem_le_rx_window:50
+
+mem_le_connection_updata_param:
+0c 00 #Length
+05 00 #CID
+12 b4 
+08 00 
+08 00 #min interval
+08 00 #max interval
+00 00 #latency
+2c 01 #timeout
+
+mem_le_name_len:
+'BT5.0 KB
+
+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
+mem_le_adv_swift_pair:
+#microsoft swift pair
+06 ff 06 00 03 00 80
+
+mem_le_scan_data_len:1f
+mem_le_scan_data:
+'\09BT5.0 KB
+
+mem_version_yy_mm_dd:20 22 03 022		#version data 202203022
+
+mem_adc_0v:9f 3e
+mem_adc_3v:cd 4d
+mem_adc_config_flag:02    #01 VINLPM      #02 HVIN      #04 GPIO
+
+#24g init
+mem_24g_data_type:02        #mouse 1,kb 2
+mem_24g_no_ack:00#with ack
+mem_24g_rx_window:c0 12     #400us 
+mem_24g_ch_map1:00 13 2c 42
+mem_24g_ch_map2:06 15 36 48
+mem_24g_ch_map3:0f 1a 3a 4c
+mem_24g_ch_map4:11 23 31 4d
+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 #10 min
+mem_24g_enter_hibernate_max:ff ff ff ff
+mem_24g_short_sleep_counter:e8 fd 00 #00 00 0a
+
+mem_lpm_config:8f 10 ce
+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
+mem_fcomp_mul:02
+mem_fcomp_div:24
+mem_iscan_window:12 00
+mem_iscan_interval:00 02
+mem_pscan_window:12 00
+mem_pscan_interval:00 02
+mem_inq_window:20 00
+mem_page_window:20 00
+mem_page_to:00 20
+mem_rx_window_init:80 03
+mem_rx_window_sniff:00 06
+mem_new_supervision_to:00 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
+0a fb
+0b ff 
+
+#agc table
+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
+
+# tx power
+55 d0
+56 c0
+57 4c
+58 6c
+59 50
+
+#dpll
+68 e4
+69 00
+6a 00
+6b 30
+ff
+mem_rf_init_ptr:70 4f
+
+mem_5db_tx_power_param:
+55 d0
+56 c0
+57 4c
+58 6c
+59 50
+
+mem_24g_paring_tx_power_param:
+55 d0
+56 c0
+57 4c
+58 6c
+59 50
+
Index: c51/patch/sched.rom
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/c51/patch/sched.rom	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/c51/patch/sched.rom	(working copy)
@@ -0,0 +1,635 @@
+mem_patch00:
+69   #mem_patch00
+04   #mem_patch01
+00   #mem_patch02
+00   #mem_patch03
+80   #mem_patch04
+09   #mem_patch05
+0a   #mem_patch06
+00   #mem_patch07
+0c   #mem_patch08
+00   #mem_patch09
+11   #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
+09   #mem_patch23
+18   #mem_patch24
+00   #mem_patch25
+04   #mem_patch26
+c8   #mem_patch27
+00   #mem_patch28
+5c   #mem_patch29
+40   #mem_patch2A
+00   #mem_patch2B
+3a   #mem_patch2C
+ce   #mem_patch2D
+00   #mem_patch2E
+00   #mem_patch2F
+80   #mem_patch30
+e0   #mem_patch31
+00   #mem_patch32
+90   #mem_patch33
+00   #mem_patch34
+00   #mem_patch35
+00   #mem_patch36
+20   #mem_patch37
+00   #mem_patch38
+a0   #mem_patch39
+01   #mem_patch3A
+00   #mem_patch3B
+4c   #mem_patch3C
+00   #mem_patch3D
+00   #mem_patch3E
+00   #mem_patch3F
+
+
+mem_customize_timer_setup:   50 00		# 20:10ms  30:15ms
+
+mem_lpm_mode:01
+mem_lpm_mult:40
+mem_lpm_mult_timeout:03
+mem_lpm_overhead:0a
+mem_lpm_interval:10 00
+mem_scan_mode:00
+
+mem_class: 40 25 00
+
+mem_lap:36 28 52 08 66 2a    
+mem_local_name_length:
+'BT3.0 Keyboard
+mem_sniff_param_interval:0e 00
+mem_sniff_param_attempt:01
+mem_sniff_param_timeout:01
+mem_unsniff2sniff_timer:0a
+mem_ssp_enable:01
+mem_ui_profile_supported:01
+
+mem_eir_enable:01
+
+mem_all_uuid_16bits:
+06
+03#Type: Complete list of 16-bit UUIDs
+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
+3601a2
+
+#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 3591 358f 0822 258b
+
+# 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)
+26ff00 # 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
+
+#25
+0501 # Usage Page(Generic Desktop)
+0906 # Usage(Keyboard)
+a101 # Collection(Application)
+8508 # Report ID(8)    
+9570 # Report Count(112)
+7501 # Report Size(1)
+1500 # Logical Minimum(0)
+2501 # Logical Maximum(1)
+0507 # Usage Page(Keyboard/Keypad)
+1900 # Usage Minimum(01)
+29ff # Usage Maximum(255)
+8102 # Input(Data Variable Absolute) ; Modifier byte
+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
+
+#23
+05 01	#Usage Page (Generic Desktop),
+09 80	#USAGE (3-D Digitizer)
+a1 01	#Collection (Application),
+85 03	#Report ID (3)
+19 81	#Usage Minimum (), 
+29 88	#Usage Maximum (),
+15 00	#Logical Minimum (0),
+25 01	#Logical Maximum (1),
+95 08	#Report Count (8),
+75 01	#Report Size (1),
+81 06	#Input (Data,Var,Rel)
+c0		#END_COLLECTION
+
+090207 3508 3506 090409 090100
+09020b 090100
+09020c 091f40
+09020d 2800
+09020e 2801
+09020f 090012
+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
+0904e8
+090202#ProductID
+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
+9d
+59
+82
+
+#bluetootch param init
+mem_sp_flag:00
+mem_lpm_current_mult:00
+mem_master_sp_flag:00
+mem_le_ch_mapped:27
+
+mem_ui_button_gpio:ff
+mem_led_gpio:ff
+
+mem_seqi:80
+
+
+mem_ipc_tx_evt_buff:02 01
+
+
+#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 
+'BT5.0 KB
+
+#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
+
+#Primary Service: Device Information
+0c 00 00 28 02 0a 18
+#Manufacturer Name
+0d 00 03 28 01 02
+0e 00 29 2a 06 59 69 43 68 69 70			#IOS 13.5.1
+#Characteristic: pnp id
+0f 00 03 28 01 02
+10 00 50 2a 07 02 e8 04 21 70 01 00		# SAMSUNG soft keyboard,setup shortcuts
+
+#Primary service: HID
+11 00 00 28 02 12 18
+#Characteristic:Protocol mode
+12 00 03 28 01 06
+13 00 4e 2a 01 01
+#Characteristic: hid report
+14 00 03 28 01 12   
+15 00 4d 2a 08 00 00 00 00 00 00 00 00	#hid report	led handle write
+16 00 02 29 02 00 00	
+17 00 08 29 02 01 01	#Report ID: 1	Report Type: Input
+
+#Characteristic:hid report
+18 00 03 28 01 12  
+19 00 4d 2a 02 00 00
+1a 00 02 29 02 00 00
+1b 00 08 29 02 03 01	#Report ID: 3	Report Type: Input
+
+#Characteristic:hid report
+1c 00 03 28 01 12   
+1d 00 4d 2a 02 00 00 	#hid report	led handle write
+1e 00 02 29 02 00 00	
+1f 00 08 29 02 02 01	#Report ID: 2	Report Type: Input
+
+#Characteristic:hid report
+20 00 03 28 01 0e   
+21 00 4d 2a 02 00	00	#hid report	led handle write
+22 00 02 29 02 00 00	
+23 00 08 29 02 01 02	#Report ID: 1	Report Type: Output
+
+#Characteristic:hid report
+24 00 03 28 01 12  
+25 00 4d 2a 0d 00 00 00 00 00 00 00 00 00 00 00 00 00
+26 00 02 29 02 00 00
+27 00 08 29 02 08 01	#Report ID: 8	Report Type: Input   game keyboard
+
+
+#Characteristic:Report map
+28 00 03 28 01 0a
+29 00 4b 2a 8b
+
+#66
+05 01
+09 06
+a1 01
+85 01
+75 01 
+95 08
+05 07
+19 e0 
+29 e7 
+15 00
+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 
+26 ff 00
+05 07
+19 00
+29 ff 
+81 00
+c0 
+
+#25
+0501 # Usage Page(Generic Desktop)
+0906 # Usage(Keyboard)
+a101 # Collection(Application)
+8508 # Report ID(8)    
+9570 # Report Count(112)
+7501 # Report Size(1)
+1500 # Logical Minimum(0)
+2501 # Logical Maximum(1)
+0507 # Usage Page(Keyboard/Keypad)
+1900 # Usage Minimum(01)
+29ff # Usage Maximum(255)
+8102 # Input(Data Variable Absolute) ; Modifier byte
+c0 # End Collection
+
+#25
+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
+
+#23
+05 01	#Usage Page (Generic Desktop),
+09 80	#USAGE (3-D Digitizer)
+a1 01	#Collection (Application),
+85 03	#Report ID (3)
+19 81	#Usage Minimum (), 
+29 88	#Usage Maximum (),
+15 00	#Logical Minimum (0),
+25 01	#Logical Maximum (1),
+95 08	#Report Count (8),
+75 01	#Report Size (1),
+81 06	#Input (Data,Var,Rel)
+c0		#END_COLLECTION
+
+#Characteristic:Hid information
+2a 00 03 28 01 02
+2b 00 4a 2a 04 11 01 00 01        
+#Characteristic
+2c 00 03 28 01 04
+2d 00 4c 2a 01 00
+
+#Primary Service: BAS
+2e 00 00 28 02 0f 18 
+#Characteristic: Battery Level
+2f 00 03 28 01 12 
+30 00 19 2a 01 64 
+#Client Characteristic Configuration
+31 00 02 29 02 00 00 
+#End of Attribute list
+00 00
+
+
+mem_le_local_mtu:17
+mem_le_transmit_window:50
+mem_le_notify_handle:14
+mem_le_lap:11 46 34 54 77 dd
+
+
+mem_empty_count:00
+mem_att_report_standard_key:15 00
+mem_att_report_system_ctrl:19 00
+mem_att_report_media_key:1d 00
+mem_att_report_game:25 00
+mem_att_report_battery:30 00
+mem_le_rx_window:50
+
+mem_le_connection_updata_param:
+0c 00 #Length
+05 00 #CID
+12 b4 
+08 00 
+08 00 #min interval
+08 00 #max interval
+00 00 #latency
+2c 01 #timeout
+
+mem_le_name_len:
+'BT5.0 KB
+
+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
+mem_le_adv_swift_pair:
+#microsoft swift pair
+06 ff 06 00 03 00 80
+
+mem_le_scan_data_len:1f
+mem_le_scan_data:
+'\09BT5.0 KB
+
+mem_version_yy_mm_dd:20 22 03 022		#version data 202203022
+
+mem_adc_0v:9f 3e
+mem_adc_3v:cd 4d
+mem_adc_config_flag:02    #01 VINLPM      #02 HVIN      #04 GPIO
+
+#24g init
+mem_24g_data_type:02        #mouse 1,kb 2
+mem_24g_no_ack:00#with ack
+mem_24g_rx_window:c0 12     #400us 
+mem_24g_ch_map1:00 13 2c 42
+mem_24g_ch_map2:06 15 36 48
+mem_24g_ch_map3:0f 1a 3a 4c
+mem_24g_ch_map4:11 23 31 4d
+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 #10 min
+mem_24g_enter_hibernate_max:ff ff ff ff
+mem_24g_short_sleep_counter:e8 fd 00 #00 00 0a
+
+mem_lpm_config:8f 10 ce
+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
+mem_fcomp_mul:02
+mem_fcomp_div:24
+mem_iscan_window:12 00
+mem_iscan_interval:00 02
+mem_pscan_window:12 00
+mem_pscan_interval:00 02
+mem_inq_window:20 00
+mem_page_window:20 00
+mem_page_to:00 20
+mem_rx_window_init:80 03
+mem_rx_window_sniff:00 06
+mem_new_supervision_to:00 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
+0a fb
+0b ff 
+
+#agc table
+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
+
+# tx power
+55 d0
+56 c0
+57 4c
+58 6c
+59 50
+
+#dpll
+68 e4
+69 00
+6a 00
+6b 30
+ff
+mem_rf_init_ptr:70 4f
+
+mem_5db_tx_power_param:
+55 d0
+56 c0
+57 4c
+58 6c
+59 50
+
+mem_24g_paring_tx_power_param:
+55 d0
+56 c0
+57 4c
+58 6c
+59 50
+
Index: c51/patch/sys.obj
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: c51/patch/sys.obj
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: c51/patch/utilities.obj
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: c51/patch/utilities.obj
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: c51/pwm.h
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/c51/pwm.h	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/c51/pwm.h	(working copy)
@@ -0,0 +1,16 @@
+#ifndef _PWM_H
+#define _PWM_H
+#include "common.h"
+
+#define PWM_ENABLE
+
+
+void YC_PWM_init(byte LED);
+void YC_PWM_set_duty(byte LED,byte pwm_duty_level);
+void YC_PWM_disable(byte LED);
+
+
+
+#endif /* YC_PWM_H */
+
+
Index: c51/pwm.c
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/c51/pwm.c	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/c51/pwm.c	(working copy)
@@ -0,0 +1,111 @@
+#include "pwm.h"
+
+/*
+			0x00:select system clock 12M;
+			0x40:select undivied system clock 24M/48M;
+			0x80:select lpo clock:33K
+*/			
+
+void YC_PWM_init(byte LED)
+{
+	
+	REG_PWM_CLK_SEL |= 0x00;	// select system clock
+	REG_CLK_OFF(1)  &= ~0x20;	//turn on PWM clock
+	REG_GPIO_SEL(2) = 0;
+	if(LED & 0x01 )
+	{
+
+		REG_GPIO_SEL(2)  |= 0x10;	//set gpio22 to PWM
+	}
+	if(LED & 0x02 )
+	{
+
+		REG_GPIO_SEL(2)  |= 0x20;	//set gpio22 to PWM
+	}
+	if(LED & 0x04 )
+	{
+
+		REG_GPIO_SEL(2)  |= 0x40;	//set gpio22 to PWM
+	}	
+}
+
+void YC_PWM_set_duty(byte LED,byte pwm_duty_level)
+{
+	word pwm_duty;
+//RLED set duty
+	g_variable.backlight_led = LED;
+	
+
+		if((pwm_duty_level == BACKLIGHT_DUTY_LEVEL_00)||(g_variable.battery_status != BAT_STATUS_NONE))
+		{
+			YC_PWM_disable(g_variable.backlight_led);
+			if(LED & 0x01 )
+			GPIO_SetOutput(RLED_GPIO,LED_OFF);
+			if(LED & 0x02 )
+			GPIO_SetOutput(GLED_GPIO,LED_OFF);
+			if(LED & 0x04 )
+			GPIO_SetOutput(BLED_GPIO,LED_OFF);
+			return;
+		}
+		else if(pwm_duty_level == BACKLIGHT_DUTY_LEVEL_100)
+		{
+			YC_PWM_disable(g_variable.backlight_led);
+			if(LED & 0x01 )
+			GPIO_SetOutput(RLED_GPIO,LED_ON);
+			if(LED & 0x02 )
+			GPIO_SetOutput(GLED_GPIO,LED_ON);
+			if(LED & 0x04 )
+			GPIO_SetOutput(BLED_GPIO,LED_ON);
+			return;
+		}
+		else
+		{
+			if(pwm_duty_level == BACKLIGHT_DUTY_LEVEL_75)
+				pwm_duty = 75;
+			else if(pwm_duty_level == BACKLIGHT_DUTY_LEVEL_50)
+				pwm_duty = 50;
+			else
+				pwm_duty = 25;
+		}
+	
+	m_lpm_mode = 0;
+	g_variable.pwm_lpm_mode_flag = 1;
+	YC_PWM_init(g_variable.backlight_led);
+	REG_PWM_PCOUNT(0) = pwm_duty;
+	REG_PWM_NCOUNT(0) = (100 - pwm_duty );
+	
+	REG_PWM_ENABLE |= 0x40;
+}	
+
+
+void YC_PWM_disable(byte LED)
+{
+	if((g_variable.pairing_timeout == 0) && (g_variable.pwm_lpm_mode_flag == 1))
+	{
+		g_variable.pwm_lpm_mode_flag = 0;
+		//m_lpm_mode = 1;
+	}
+	REG_CLK_OFF(1)  |= 0x20;	//turn on PWM clock
+	REG_CLK_OFF(1)  |= 0x20;	//turn on PWM clock
+	if(LED & 0x01 )
+	{
+
+	REG_GPIO_SEL(2)  &= ~0x40;	//set gpio22 to PWM
+
+	}
+	if(LED & 0x02 )
+	{
+
+	REG_GPIO_SEL(2)  &= ~0x20;	//set gpio22 to PWM
+
+	}
+	if(LED & 0x04 )
+	{
+
+	REG_GPIO_SEL(2)  &= ~0x10;	//set gpio22 to PWM
+
+	}		
+
+}
+
+
Index: c51/ram.c
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/c51/ram.c	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/c51/ram.c	(working copy)
@@ -0,0 +1,8 @@
+
+extern void YC_System_Main(void);
+
+
+void main()
+{
+	YC_System_Main();
+}
Index: c51/spi.h
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/c51/spi.h	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/c51/spi.h	(working copy)
@@ -0,0 +1,51 @@
+/*
+ * Copyright 2016, yichip Semiconductor(shenzhen office)
+ * All Rights Reserved.
+ *
+ * This is UNPUBLISHED PROPRIETARY SOURCE CODE of Yichip Semiconductor;
+ * the contents of this file may not be disclosed to third parties, copied
+ * or duplicated in any form, in whole or in part, without the prior
+ * written permission of Yichip Semiconductor.
+ */
+
+  /** @file
+ *
+ * spi support for application
+ */
+#ifndef _SPI_H
+#define _SPI_H
+#include "common.h"
+
+#define	SPI_TBUFF		mem_spid_tbuf
+#define	SPI_RBUFF		mem_spid_rbuf
+
+/**
+ * This function SPI Initialize.
+ * 
+ * @param cb the IPC control block.
+ * 
+ * @return none.
+*/
+void SPI_Initialize(void);
+
+/**
+ * This function SPI read sensor.
+ * 
+ * @param cb the IPC control block.
+ * 
+ * @return none.
+*/
+byte SPI_read_sensor(byte reg_num);
+
+
+/**
+ * This function SPI write sensor.
+ * 
+ * @param cb the IPC control block.
+ * 
+ * @return none.
+*/
+byte SPI_write_sensor(byte value, byte reg_num);
+
+#endif/*YC_SPI_H*/
+
Index: c51/spi.c
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/c51/spi.c	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/c51/spi.c	(working copy)
@@ -0,0 +1,64 @@
+#include "spi.h"
+#include "Hwreg.h"
+
+#define SENSOR_3205
+
+#define	READ_SENSOR_TXLEN			0x01
+#define	READ_SENSOR_RXLEN			0X01
+
+#define	WRITE_SENSOR_TXLEN			0x02
+#define	WRITE_SENSOR_RXLEN			0X00
+
+#define	DMA_SPI_START					0X02
+
+#define SPI_RX_LEN (4)
+u8_t spi_rx_buff[SPI_RX_LEN] _at_ SPI_RBUFF;
+u8_t spi_tx_buff[SPI_RX_LEN] _at_ SPI_TBUFF;
+
+
+void SPI_Initialize()
+{
+#ifdef SENSOR_3205
+	REG_SPID_CTRL = 0x75;
+#else
+	REG_SPID_CTRL = 0x77;
+#endif
+	REG_SPID_DELAY = 10;
+	REG_SPID_TXADDR = ESWAP(SPI_TBUFF);
+	REG_SPID_RXADDR = ESWAP(SPI_RBUFF);
+	REG_GPIO_SEL(1) = 1;
+#ifndef SENSOR_3205
+	//REG_GPIO_PUP(3) |= 0x4;
+#endif
+}
+
+
+u8_t SPI_read_sensor(u8_t reg_num)
+{
+	spi_tx_buff[0] = reg_num;
+	REG_SPID_TXLEN = ESWAP(READ_SENSOR_TXLEN);
+	REG_SPID_RXLEN = ESWAP(READ_SENSOR_TXLEN);
+	REG_MISC_CTRL = DMA_SPI_START;
+	do {
+	
+	}
+	while(!(REG_DMA_STATUS & 0x08));
+	return  *spi_rx_buff;
+}
+
+u8_t SPI_write_sensor(u8_t value, u8_t reg_num)
+{
+	spi_tx_buff[0] = reg_num|0x80;
+	spi_tx_buff[1] = value;
+
+	REG_SPID_TXLEN = ESWAP(WRITE_SENSOR_TXLEN);
+	REG_SPID_RXLEN = ESWAP(WRITE_SENSOR_RXLEN);
+
+	REG_MISC_CTRL = DMA_SPI_START;
+	do {
+		
+	}
+	while(!(REG_DMA_STATUS & 0x08));
+	return 0;
+}
+
Index: c51/sys.h
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/c51/sys.h	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/c51/sys.h	(working copy)
@@ -0,0 +1,77 @@
+#ifndef _YC_SYSTEM_H_
+#define _YC_SYSTEM_H_
+#include "common.h"
+
+#define SYSTEM_CONTROL_ENABLE
+#define MULTISYSTEM_ENABLE
+#define PC_SLEEP_STATUS_GET
+
+
+#define STANDBY_TIMER_30MIN				3600		// 500ms*3600 = 30min
+#define STANDBY_TIMER_10MIN				1200		// 500ms*1200 = 10min
+#define STANDBY_TIMER_6MIN				720		// 500ms*120 = 6min
+#define STANDBY_TIMER_10S				100		// 100ms*100 = 10s
+#define RECONNECT_TIMER_5S				10			// 500ms*10 = 5s
+#define RECONNECT_TIMER_10S			20			// 500ms*20 = 10s
+
+#define BT_PAIRING_TIME_OUT_2MIN		240			// 500ms*240 = 2min
+#define BT_PAIRING_TIME_OUT_30S		60			// 500ms*60 = 30s
+#define G24_PAIRING_TIME_OUT_20S		60			// 500ms*60 = 30s
+#define LOW_BETTREY_TIME_OUT_3S		6			// 500ms*6 = 3s
+#define KB_NUM_CAPS_LED_ON_TIMER    	20			// 500ms*12 = 6s
+
+#define KB_POWERON_LED_ON_TIMER		30			// 100ms*30 = 3s
+
+
+typedef enum c51_ble_state_enum
+{
+	CHANGE_TO_BLE_DISCONNECT =0,
+	CHANGE_TO_BLE_INDIR_ADV = 1,
+	CHANGE_TO_BLE_DIRECT_ADV,
+	CHANGE_TO_BLE_CONNECTING,
+	CHANGE_TO_BLE_CONNECTED,
+}C51_BLE_STATE;
+
+typedef enum c51_br_state_enum{
+	CHANGE_TO_BR_DISCONNECT =0,
+	CHANGE_TO_BR_DISCOVERY = 1,
+	CHANGE_TO_BR_RECONNECT,
+	CHANGE_TO_BR_CONNECTING,
+	CHANGE_TO_BR_CONNECTED,
+}C51_BR_STATE;
+
+typedef enum c51_24g_state_enum{
+	CHANGE_TO_24G_DISCONNECTED =0,
+	CHANGE_TO_24G_PAIRING= 1,
+	CHANGE_TO_24G_CONNECTING,
+	CHANGE_TO_24G_CONNECTED,
+}C51_24G_STATE;
+
+typedef enum c51_ble_connecting_substate_enum
+{
+	CHANGE_TO_BLE_SUB_NONE=0,
+	CHANGE_TO_BLE_SUB_INIT,
+	CHANGE_TO_BLE_SUB_PINCODE,
+	CHANGE_TO_BLE_SUB_PINCODE_OK,
+}C51_BLE_CONNECTING_SUBSTATE;
+
+typedef enum c51_br_connecting_substate_enum
+{
+	CHANGE_TO_BR_SUB_NONE =0,
+	CHANGE_TO_BR_SUB_INIT,
+	CHANGE_TO_BR_SUB_PINCODE,
+	CHANGE_TO_BR_SUB_PINCODE_OK,
+}C51_BR_CONNECTING_SUBSTATE;
+
+typedef enum c51_24g_connecting_substate_enum
+{
+	CHANGE_TO_24G_SUB_NONE=0,
+	CHANGE_TO_24G_SUB_INIT ,
+}C51_24G_CONNECTING_SUBSTATE;
+
+void System_long_sleep();
+void System_Reset_Connect();
+void YC_adc_init();
+
+
+#endif
Index: c51/sys.c
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/c51/sys.c	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/c51/sys.c	(working copy)
@@ -0,0 +1,1030 @@
+#include "sys.h"
+#include "gpio.h"
+#include "kbhid.h"
+#include "ipc.h"
+#include "iic.h"
+#include "keyscan.h"
+#include "global_variable.h"
+#include "kb_process.h"
+
+/////////////////////////////////////////////////////////////////
+static void System_clear_mem()
+{
+	xmemclear((byte *)&g_variable,sizeof(G_VARIABLE_MAP));
+	xmemclear(ksSelMapOld,KB_KSCAN_COL_NUM);
+	xmemclear(ksSelMapCheck,KB_KSCAN_COL_NUM);
+	xmemclear(ksSelMapCurr,KB_KSCAN_COL_NUM);
+	xmemclear(hidBuff,9);
+	xmemclear(multikey,9);
+ 
+	delayChgInvTimer = 0;
+	action_timeout = 0;
+	switch_role_timer = 0;
+
+	iOS_rec_pinCode = 0;
+	pinCode_flag = 0;
+	power_on_flag = 0;
+	repeat_send_24g = 0;
+	get_24g_led_send = 0;
+	ble_reconnect_flag = 0;
+	press_long_time_flag = 0;
+	mult_key_status = 0;
+	long_press_flag = 0;
+	standard_key_release_flag = 0;
+	fn_flag = 0;
+	fn_flag_last = 0;
+	fn_tx_flag = 0;
+
+	mult_key_value = 0;
+	m_caps_num_lock = 0xf0;
+	m_caps_num_lock_last = 0xf0; 
+	m_reconnect_continue = 0;
+	ble_send_secutiry_request_timer = 0;
+}
+
+static void System_IIC_clk_setup()		// 400KHz
+{
+	REG_IICD_SCL_LOW  =  0x0d;
+   	REG_IICD_SCL_HIGH  =  0x0e;
+   	REG_IICD_START_SETUP  = 0x0e;
+   	REG_IICD_START_HOLD  = 0x0e;
+  	REG_IICD_STOP_SETUP  = 0x0e;
+   	REG_IICD_DATA_SETUP  = 0x0d;
+}
+
+static void System_Hardware_init()
+{
+	System_IIC_clk_setup();
+	KS_Initialize();
+	LED_all_shutdown();
+}
+
+
+void System_Software_init()
+{
+	System_clear_mem();
+	YC_adc_init();
+	g_variable.release_data =1;
+	g_variable.recon_count = 0;
+	g_variable.test_buff = 0xff;
+	le_lap_temp[0] = m_le_lap[3];
+	le_lap_temp[1] = m_le_lap[4];
+	le_lap_temp[2] = m_le_lap[5];
+	g_variable.backlight_speed = BACKLIGHT_SPEED_LEVEL_500MS;
+	g_variable.backlight_duty_level = BACKLIGHT_DUTY_LEVEL_100;
+}
+
+static void System_Hardware_reset()
+{
+	m_reset_reg = 1;
+	while(1);
+}
+
+void System_long_sleep()
+{ 
+	return;
+	//m_lpm_mode = 1;
+	m_reconnect_continue = 0;
+	YC_PWM_disable(7);
+
+	LED_all_shutdown();
+	IPC_TxControlCmd(IPC_CMD_ENTER_HIBERNATE);
+}
+
+void System_G24_long_lpm()
+{
+	g_variable.g24_long_sleep_flag = 1;
+#ifdef PC_SLEEP_STATUS_GET	
+	g_variable.sys_numlockled_on_timer = 0;
+	g_variable.sys_capslockled_on_timer = 0;
+	g_variable.sys_scrolllockled_on_timer = 0;
+	m_caps_num_lock = 0xf0;
+	m_caps_num_lock_last = 0xf0; 
+#endif
+	g_variable.backlight_level = 0;
+	g_variable.battery_low_led_flash_flag = 0;
+	g_variable.battery_low_led_flash_interval = 0;		
+	m_24g_pairing_sm = 0xff;
+	m_24g_enter_hibernate[0]	= 0xff;
+	m_24g_enter_hibernate[1]	= 0xff;
+	m_24g_enter_hibernate[2]	= 0xff;
+	m_24g_enter_hibernate[3]	= 0xff;
+	YC_PWM_disable(7);
+
+	LED_all_shutdown();
+}
+
+void System_Reset_Connect()
+{
+	System_Hardware_reset();
+}
+/////////////////////////////////////////////////////////////////
+
+/////////////////////////////////////////////////////////////////
+
+
+/////////////////////////////////////////////////////////////////
+static void kb_cb_Hid(byte *p,byte len) {
+	//p[0] is hid type,always is 1(kb) now
+	byte temp = p[1];
+
+	if (len<2) {
+		return;
+	}
+}
+
+static void kb_cb_event(byte evt)
+{
+#ifdef BT_FAST_CONNECT_ENABLE
+	xbyte *bt_name_string;
+#endif	
+
+	switch (evt) 
+	{
+
+case IPC_EVT_HIBERNATE_WAKE:
+case IPC_EVT_RESET:
+		System_Hardware_init();
+		System_Software_init();
+
+		IIC_Read(EEPROM_BATTERY_SHUTDOWN_FLAG ,1 ,(byte *)&g_variable.battery_shutdown_flag);	
+		if(g_variable.battery_shutdown_flag == 1)
+		{	
+			while(!m_adcCurrentValue) 
+			{
+				IPC_WaitLpm();
+			}
+
+
+			if(m_adcCurrentValue < g_variable.battery_level_shutdown)
+			{
+				g_variable.battery_status = BAT_STATUS_SHUT_DOWN;
+				g_variable.powerOn_timer = 0;
+				g_variable.battery_flash_timer = STANDBY_TIMER_10S;
+//				IPC_TxControlCmd(IPC_CMD_ENTER_HIBERNATE);
+				break;
+			}
+		}		
+		IIC_Read(EEPROM_RECON_INFO_LAST_DEVICE ,1 ,(byte *)&g_variable.last_device_num);
+		if(g_variable.last_device_num > 3)
+			g_variable.last_device_num = 0;
+		g_variable.current_device_num = g_variable.last_device_num;
+		LED_device_poweron();
+		Delay1ms(10);		
+		IIC_Read(EEPROM_RECON_INFO_RAMDON_LE_LAP1 ,2 ,(byte *)&g_variable.ble_ramdon_lap1);
+		if(g_variable.ble_ramdon_lap1 == 0xff && g_variable.ble_ramdon_lap2 == 0xff)
+		{
+			g_variable.ble_ramdon_lap1 = m_adc3vValue;
+			g_variable.ble_ramdon_lap2 = m_adc0vBase;
+		}
+	#ifdef MULTISYSTEM_ENABLE	
+		IIC_Read(EEPROM_RECON_INFO_SYTEM_MODE ,1 ,(byte *)&g_variable.system_mode);
+		Delay1ms(10);
+		if(g_variable.system_mode > OSMODE_IOS)
+		{
+			g_variable.system_mode = OSMODE_WINDOWS;
+			IIC_WriteBlock(EEPROM_RECON_INFO_SYTEM_MODE ,1 ,(byte *)&g_variable.system_mode);
+		}
+	#endif		
+		power_on_flag = 2;
+		if(g_variable.last_device_num > 2)
+			g_variable.last_device_num = 0;
+		g_variable.current_device_num = g_variable.last_device_num;	
+		//GPIO_SetOutput(BACKLIGHT_PWM_GPIO,LED_ON);
+		YC_start_reconnect();
+		break;
+	case IPC_EVT_WAKEUP:
+		System_IIC_clk_setup();
+		KS_Initialize();
+		g_variable.g24_long_sleep_flag = 0;
+		break;
+
+// connection event
+	case IPC_EVT_VIRTUAL_CABLE_UNPLUG:
+	case IPC_EVT_CLEAR_LINKKEY:
+		if ((g_variable.current_device_num > 0) && (g_variable.current_device_num < 4))
+		{
+			xmemclear_ff((byte *)&bd_key_record_list[g_variable.current_device_num-1],sizeof(BD_KEY_RECORD));	
+			g_variable.update_eeprom_flag = EEPROM_STORE_TYPE_BT;
+		}
+		break;
+	case IPC_EVT_RECONNECT_STANDY:
+		YC_load_record_list(recon_index);
+		break;		
+		
+// 2.4G event	
+	case IPC_EVT_24G_PAIRING_COMPLETE:
+	case IPC_EVT_24G_ATTEMPT_SUCCESS:
+		g_variable.g24_currentState =  CHANGE_TO_24G_CONNECTED;
+		g_variable.g24_currentSubState = CHANGE_TO_24G_SUB_NONE;
+		YC_clear_reconnect_flag();
+		g_variable.pairing_g24_timeout = 0;
+		g_variable.release_data = 0;
+		g_variable.last_device_num = 0xfe;
+		g_variable.current_device_num = 0xfe;
+		g_variable.backlight_pattern=0;
+		m_24g_led_flag = KB_24G_LED_ACK_TYPE;
+		delayChgInvTimer = 10;
+
+		if(evt == IPC_EVT_24G_PAIRING_COMPLETE)
+		{
+			fast_connect_flag = 0;
+			g_variable.powerOn_timer = KB_POWERON_LED_ON_TIMER;
+			if(m_24g_paring_addr[0] != 0x0f || m_24g_paring_addr[1] != 0x0f ||
+				m_24g_paring_addr[2] != 0x0f || m_24g_paring_addr[3] != 0x0f)
+				{
+					g_variable.update_eeprom_flag = EEPROM_STORE_TYPE_G24;
+					YC_update_eeprom_data();
+
+				}
+		}
+		else
+		{
+			if(!g_variable.powerOn_timer)
+			;//GPIO_Setout(G24_LED_GPIO,LED_OFF);
+		}
+		break;
+	
+	case IPC_EVT_24G_ATTEMPT_FAIL:	
+		g_variable.g24_currentState =  CHANGE_TO_24G_DISCONNECTED;
+		g_variable.g24_currentSubState = CHANGE_TO_24G_SUB_NONE;
+		g_variable.sleepTimer = 0;
+		g_variable.release_data = 1;
+
+		if (g_variable.key_action != KEY_NONE)
+		{
+			YC_clear_reconnect_flag();
+			YC_key_action_handle(g_variable.key_action);
+			break;
+		}
+
+		if (g_variable.lockLpm == 1)
+		{
+			g_variable.lockLpm =0;
+			System_long_sleep();
+			break;
+		}
+		if (g_variable.recon_count != 0)
+		{
+			YC_load_record_list(recon_index);
+		}
+		break;
+
+
+		
+// BT3.0 event
+	case IPC_EVT_BB_CONNECTED:
+		g_variable.br_currentState = CHANGE_TO_BR_CONNECTING;
+		g_variable.br_currentSubState = CHANGE_TO_BR_SUB_INIT;
+		g_variable.ble_currentState = CHANGE_TO_BLE_DISCONNECT;
+		g_variable.ble_currentSubState = CHANGE_TO_BLE_SUB_NONE;
+		if ((m_ui_state_map & 0x8000) == 0x8000)
+		{
+			switch_role_timer = 50;
+		}
+		break;
+	case IPC_EVT_HID_CONNECTED:
+		g_variable.br_currentState = CHANGE_TO_BR_CONNECTED;
+		g_variable.br_currentSubState = CHANGE_TO_BR_SUB_NONE;
+		IPC_TxControlCmd(IPC_CMD_STOP_ADV);
+		IPC_TxControlCmd(IPC_CMD_STOP_DISCOVERY);
+		//m_lpm_mode = 1;
+		
+		g_variable.last_device_num = g_variable.current_device_num;
+	#ifdef BT_FAST_CONNECT_ENABLE				
+		if(g_variable.fast_connect_send_name)
+		{
+			g_variable.fast_connect_send_name = 0;
+
+			bt_name_string[0] = HID_REPORTID_FAST_CONN_NAME;
+			dmemcpy(bt_name_string+1, &m_local_name_length, m_local_name_length+1);
+			IPC_TxBREDRHidData(bt_name_string,m_local_name_length+2);
+		}
+		else
+	#endif	
+		{
+			if(g_variable.pairing_timeout)
+			{
+				bd_key_record_list[g_variable.current_device_num - 1].system_mode = g_variable.system_mode;
+				YC_clear_BT_same_address_record();
+				g_variable.update_eeprom_flag = 3;
+			}
+		}
+
+		g_variable.sleepTimer = 0;
+		g_variable.pairing_timeout = 0;
+		g_variable.backlight_pattern=0;
+		YC_clear_reconnect_flag();
+		g_variable.release_data = 0;
+		switch_role_timer = 0;
+		kscurrmult = 0x1a;
+		iOS_rec_pinCode = 0;	
+		
+		while( (m_remote_addr[0]==0)&&(m_remote_addr[1]==0)&&(m_remote_addr[2]==0)
+			&&(m_remote_addr[3]==0)&&(m_remote_addr[4]==0)&&(m_remote_addr[5]==0));
+		IPC_TxControlCmd(IPC_CMD_ENTER_SNIFF);
+		break;
+	case IPC_EVT_SWITCH_FAIL_MASTER:
+		IPC_TxControlCmd(IPC_CMD_DISCONNECT);
+		Delay1ms(10);
+		break;	
+	case IPC_EVT_PINCODE_REQ:
+		ipcPinlen = 0;
+		pinCode_flag = 1;
+		switch_role_timer = 0;
+		if ((m_ui_state_map & 0x8000) == 0x8000)
+		{
+			iOS_rec_pinCode = 1;	
+			ipcPinlen = 4;
+			IPC_TxControlCmd(IPC_CMD_DISCONNECT);
+			return;
+		}
+		g_variable.recon_count = 0;
+		g_variable.br_currentSubState =  CHANGE_TO_BR_SUB_PINCODE;
+		g_variable.br_currentState =CHANGE_TO_BR_CONNECTING;
+		break;	
+	case IPC_EVT_RECONN_PAGE_TIMEOUT:
+	case IPC_EVT_RECONN_FAILED:
+		if (g_variable.g24_currentState == CHANGE_TO_24G_CONNECTED)
+		{
+			g_variable.br_currentState = CHANGE_TO_BR_DISCONNECT;
+			g_variable.br_currentSubState = CHANGE_TO_BR_SUB_NONE;
+			return;
+		}		
+	case IPC_EVT_BB_DISCONNECTED:
+		g_variable.history_state = g_variable.br_currentState ;
+		g_variable.br_currentState = CHANGE_TO_BR_DISCONNECT;
+		g_variable.br_currentSubState = CHANGE_TO_BR_SUB_NONE;
+		g_variable.release_data = 1;
+		switch_role_timer = 0;
+		if (iOS_rec_pinCode == 1)
+		{
+			if ((g_variable.current_device_num > 0) && (g_variable.current_device_num < 4))
+			{
+				xmemclear_ff((byte *)&bd_key_record_list[g_variable.current_device_num-1],sizeof(BD_KEY_RECORD));	
+				g_variable.update_eeprom_flag = EEPROM_STORE_TYPE_BT;
+			}
+			iOS_rec_pinCode = 0;
+		}
+
+		if (g_variable.lockLpm == 1)
+		{
+			g_variable.lockLpm =0;
+			System_long_sleep();
+			break;
+		}
+
+		if (g_variable.key_action != KEY_NONE)
+		{
+			YC_key_action_handle(g_variable.key_action);
+			break;
+		}
+
+		if (g_variable.recon_count != 0)
+		{
+			YC_load_record_list(recon_index);
+			break;
+		}
+
+		if (g_variable.g24_currentState == CHANGE_TO_24G_PAIRING)
+		{
+			return;
+		}
+
+
+		if (evt == IPC_EVT_RECONN_PAGE_TIMEOUT)
+		{
+			break;
+		}
+		
+		if (g_variable.history_state != CHANGE_TO_BR_CONNECTED)
+		{
+			YC_key_action_handle(KEY_DISCOVERY);
+		}
+		else
+		{
+			System_long_sleep();
+		}
+		g_variable.sleepTimer = 0;
+		break;		
+
+// BT 4.2 event
+	case IPC_EVT_LE_CONNECTED:
+		g_variable.ble_currentState = CHANGE_TO_BLE_CONNECTING;
+		g_variable.ble_currentSubState = CHANGE_TO_BLE_SUB_INIT;
+		g_variable.br_currentState = CHANGE_TO_BR_DISCONNECT;
+		g_variable.br_currentSubState = CHANGE_TO_BR_SUB_NONE;
+		IPC_TxControlCmd(IPC_CMD_STOP_ADV);
+		IPC_TxControlCmd(IPC_CMD_STOP_DISCOVERY);
+		if(g_variable.pairing_timeout)
+		{
+			bd_key_record_list[g_variable.current_device_num - 1].system_mode = g_variable.system_mode;
+		}
+		if(!ble_reconnect_flag)
+			ble_send_secutiry_request_timer = 20;
+		g_variable.pairing_timeout = 0;
+		g_variable.sleepTimer = 0;
+		break;
+	case IPC_EVT_LE_PROTOCOL_CONNECTED:
+	    	g_variable.ble_currentState = CHANGE_TO_BLE_CONNECTED;
+		g_variable.ble_currentSubState = CHANGE_TO_BLE_SUB_NONE;
+		YC_clear_reconnect_flag();
+		g_variable.release_data = 0;
+		le_send_battery_level_delay_count = 10;
+		g_variable.last_device_num = g_variable.current_device_num;
+		g_variable.update_eeprom_flag = EEPROM_STORE_TYPE_BT;
+		break;
+	case IPC_EVT_LE_ENC_INFO:
+		YC_store_record_list(1, g_variable.current_device_num-1);
+		g_variable.last_device_num = g_variable.current_device_num;
+		g_variable.update_eeprom_flag = EEPROM_STORE_TYPE_BT;
+		break;
+
+	case IPC_EVT_LE_PINCODE_REQ:
+		le_pin_code = 0;
+		le_pin_code_len = 0;
+		pinCode_flag = 1;
+		g_variable.ble_currentSubState =  CHANGE_TO_BLE_SUB_PINCODE;
+		g_variable.ble_currentState = CHANGE_TO_BLE_CONNECTING;
+		break;
+		
+	case IPC_EVT_LE_DISCONNECTED:	
+		g_variable.history_state = g_variable.ble_currentState ;
+		g_variable.ble_currentState = CHANGE_TO_BLE_DISCONNECT;
+		g_variable.ble_currentSubState = CHANGE_TO_BLE_SUB_NONE;
+		g_variable.release_data = 1;
+		m_le_send_security_request_flag = 0;
+		if (g_variable.lockLpm == 1)
+		{
+			g_variable.lockLpm =0;
+			System_long_sleep();
+			break;
+		}
+
+		if (g_variable.key_action != KEY_NONE)
+		{
+			YC_key_action_handle(g_variable.key_action);
+			break;
+		}
+
+
+		if (g_variable.recon_count != 0)
+		{
+			YC_load_record_list(recon_index);
+			break;
+		}
+
+		System_long_sleep();		
+		g_variable.sleepTimer = 0;
+		break;
+	}
+}
+
+
+void LED_timer500ms()
+{
+	if (power_on_flag != 2)
+		return;
+	if (g_variable.pairing_timeout != 0) //bt  pairing
+	{
+			g_variable.sleepTimer = 0;
+			g_variable.fast_connect_send_name = 0;
+			g_variable.pairing_timeout--;
+			if (g_variable.pairing_timeout & 0x01)
+			{
+				if (g_variable.button_reconnect_flag != 1)
+				{
+					if((g_variable.current_device_num <= 2 && g_variable.current_device_num >= 1))
+					{
+						GPIO_FlipOutBit(BT_BUTTON_GPIO);
+				
+					}
+				}
+				
+			}
+			if (g_variable.pairing_timeout == 0)
+		{
+			g_variable.current_device_num = g_variable.temp_device_num;
+			g_variable.last_device_num = g_variable.current_device_num;
+		
+			YC_key_action_handle(KEY_STOP_DISCOVERY);
+			System_long_sleep();
+		}
+	}
+	else if (g_variable.pairing_g24_timeout != 0)
+	{
+			g_variable.sleepTimer = 0;
+			g_variable.pairing_g24_timeout--;
+			if (g_variable.pairing_g24_timeout & 0x01)
+			{
+				
+				GPIO_FlipOutBit(BT_BUTTON_GPIO);
+			}
+				if (g_variable.pairing_g24_timeout == 0)
+				{
+		//			IPC_TxControlCmd(IPC_CMD_STOP_24G);
+					Delay1ms(10);
+					System_long_sleep();
+				}
+	
+		}
+if ((g_variable.pairing_timeout == 0) && (g_variable.pairing_g24_timeout == 0))  //  pairing
+	{
+		if(g_variable.battery_low_led_flash_interval)
+		{
+			if (g_variable.sleepTimer < LOW_BETTREY_TIME_OUT_3S)
+			{
+				g_variable.battery_low_led_flash_interval++;
+				if(g_variable.battery_low_led_flash_interval & 0x02)
+				{
+					GPIO_FlipOutBit(LOWPOWER_LED_GPIO);
+				}
+			}
+			else
+				g_variable.battery_low_led_flash_interval = 0;
+		}
+		else
+		g_variable.battery_low_led_flash_interval = 0;	
+	}
+
+}
+
+void YC_connect_timeout_500ms()
+{
+
+	if(le_send_battery_level_delay_count)
+	{
+		le_send_battery_level_delay_count--;
+		if(!le_send_battery_level_delay_count)
+		{	
+			///m_lpm_mode = 1;
+			le_send_battery_level_flag = 1;
+		}
+	}
+	
+//system long sleep timer
+	if (g_variable.br_currentState == CHANGE_TO_BR_CONNECTED ||
+		g_variable.ble_currentState == CHANGE_TO_BLE_CONNECTED)
+	{
+	/*
+		if (g_variable.ble_currentState == CHANGE_TO_BLE_CONNECTED)
+		{
+			if(le_send_battery_level_flag || (g_variable.sleepTimer && !(g_variable.sleepTimer & 0x1f)))		// ble battery level updata each 16 second
+			{
+				le_send_battery_level_flag = 0;
+				multikey[0] = HID_REPORTID_BATTERY;	
+				multikey[1] = g_variable.battery_level_percentage;	
+				IPC_TxHidData(multikey, 2);
+			}
+		}
+	*/	
+		if (g_variable.sleepTimer == STANDBY_TIMER_6MIN) 
+		{
+			LED_all_shutdown();
+
+		}
+		if (g_variable.sleepTimer == STANDBY_TIMER_10MIN) 
+		{
+			YC_disconnect_all_link();
+			g_variable.lockLpm = 1;
+		}
+	}
+	else if(g_variable.g24_currentState == CHANGE_TO_24G_CONNECTED)
+	{
+#ifdef PC_SLEEP_STATUS_GET	
+		if((g_variable.sleepTimer & 0x1f) == 0x10)	// search dongle each 8s
+		{
+			xmemclear(hidBuff,9);
+
+			mult_key_status = 0;
+			hidBuff[0] = HID_REPORTID_KEY_STANDARD;		// standard key send
+			IPC_TxHidData(hidBuff, 9);
+		}
+#endif	
+		if (g_variable.sleepTimer >= STANDBY_TIMER_10MIN)
+		{
+			System_G24_long_lpm();
+		}
+	}
+	else if(g_variable.g24_currentState == CHANGE_TO_24G_PAIRING)
+	{
+		if (g_variable.sleepTimer >= BT_PAIRING_TIME_OUT_30S)
+		{
+			System_G24_long_lpm();
+		}
+	}
+	else
+	{
+		if (g_variable.sleepTimer >= RECONNECT_TIMER_10S)
+		{
+			if(ble_reconnect_flag)
+			{
+				ble_reconnect_flag = 0;
+				IPC_TxControlCmd(IPC_CMD_STOP_ADV);
+			}
+			System_long_sleep();
+		}
+	}
+}
+
+
+void YC_wait_disconnect_timer500ms()
+{
+//before discovery/adv,if current state is connected,wait disconnect done
+	if (action_timeout!=0)
+	{
+		action_timeout--;
+		if(action_timeout == 0)
+		{
+			if(g_variable.key_action == KEY_DISCOVERY
+		#if DEVICE_MODE_BT_ONLY
+			&& (m_ui_state_map & 0x4000) != 0x4000)
+		#elif DEVICE_MODE_BLE_ONLY	
+			&& (m_ui_state_map & 0x0008) != 0x0008)
+		#else	
+			&& (m_ui_state_map & 0x4008) != 0x4008)
+		#endif
+			{
+//				m_lpm_mode = 0;
+				ble_send_secutiry_request_timer = 0;
+				g_variable.pairing_timeout = BT_PAIRING_TIME_OUT_30S;
+				g_variable.pairing_g24_timeout = 0;
+				fast_connect_flag = 0;
+				ble_fast_connect_flag = 0;
+			#if DEVICE_MODE_BT_ONLY
+				IPC_TxControlCmd(IPC_CMD_START_DISCOVERY);
+			#elif DEVICE_MODE_BLE_ONLY	
+				YC_get_ble_ramdon_lap();
+				IPC_TxControlCmd(IPC_CMD_START_ADV);
+			#else	
+				YC_get_ble_ramdon_lap();
+				IPC_TxControlCmd(IPC_CMD_START_ADV_DISCOVERY);
+			#endif
+				g_variable.key_action = KEY_NONE;
+			}
+		}
+	}
+
+}
+
+
+void YC_pairing_timerout_500ms()
+{
+//pairing timer
+	if (g_variable.pairing_timeout != 0)
+	{
+		g_variable.sleepTimer = 0;
+		g_variable.fast_connect_send_name = 0;
+		g_variable.pairing_timeout--;
+		if (g_variable.pairing_timeout & 0x01)
+		{
+			if (g_variable.button_reconnect_flag != 1)
+			{
+				if((g_variable.current_device_num <= 2 && g_variable.current_device_num >= 1))
+				{
+					GPIO_FlipOutBit(BT_BUTTON_GPIO);
+			
+				}
+			}
+			
+		}		
+		if (g_variable.pairing_timeout == 0)
+		{
+			g_variable.current_device_num = g_variable.temp_device_num;
+			g_variable.last_device_num = g_variable.current_device_num;
+		
+			YC_key_action_handle(KEY_STOP_DISCOVERY);
+			System_long_sleep();
+		}
+	}
+
+	if (g_variable.pairing_g24_timeout != 0)
+	{
+		g_variable.sleepTimer = 0;
+		g_variable.pairing_g24_timeout--;
+		if (g_variable.pairing_g24_timeout & 0x01)
+		{
+			
+			GPIO_FlipOutBit(BT_BUTTON_GPIO);
+		}
+		if (g_variable.pairing_g24_timeout == 0)
+		{
+//			IPC_TxControlCmd(IPC_CMD_STOP_24G);
+			Delay1ms(10);
+			System_long_sleep();
+		}
+	}
+}
+
+void kb_button_press_timer500ms()
+{
+	
+//key status 
+	if (g_variable.button_flag & KEY_FLAG_SAME_KEY_PRESS)
+	{
+			if (g_variable.button_timer[1] < 250)
+			g_variable.button_timer[1]++;
+		if (g_variable.button_timer[1] == 180)			// 500ms*180*3 = 4min30s
+		{
+			press_long_time_flag++;
+			if(press_long_time_flag <= 2)
+			{
+			g_variable.button_timer[1] = 0;
+			}
+			else if(press_long_time_flag == 3)
+			{
+				long_press_flag = 1;
+				g_variable.button_timer[1] = 0;
+				System_long_sleep();
+			}
+		}
+	}
+	else
+	{
+		press_long_time_flag = 0;
+		long_press_flag = 0;
+		g_variable.button_timer[1] = 0;
+	}
+		
+	if (g_variable.button_flag & KEY_FLAG_FN_24G_DEVICE_BUTTON)		// G24 pairing
+	{
+		g_variable.delay_enter_lpm_timer = 10;
+		if (g_variable.button_timer[2] < 250)
+		g_variable.button_timer[2]++;
+		if (g_variable.button_timer[2] == 6)
+		{
+			if( !g_variable.current_device_num || (g_variable.current_device_num == 0xfe))
+			{
+				g_variable.button_24G_rec_flag = 0;
+				YC_disconnect_all_link();
+				Delay1ms(10);
+				YC_key_action_handle(KEY_PAIRING_24G);
+			}
+		}
+	}
+	else
+	{
+		if(g_variable.button_24G_rec_flag)
+		{
+			g_variable.button_24G_rec_flag = 0;
+			YC_key_action_handle(KEY_STOP_DISCOVERY);
+			g_variable.release_data = 1;
+			g_variable.last_device_num = g_variable.current_device_num;
+			g_variable.update_eeprom_flag = EEPROM_STORE_TYPE_NORMAL;
+			YC_update_eeprom_data();
+			System_Reset_Connect();
+		}
+		g_variable.button_timer[2] = 0;
+	}
+
+	
+	if (g_variable.button_flag & KEY_FLAG_FN_DEVICE_BUTTON)
+	{
+		g_variable.delay_enter_lpm_timer = 10;
+		if (g_variable.button_timer[3] < 250)
+		g_variable.button_timer[3]++;
+		if (g_variable.button_timer[3] == 6)
+		{
+			//do discoverable
+			g_variable.pairing_timeout = BT_PAIRING_TIME_OUT_30S;
+			g_variable.pairing_g24_timeout = 0;
+			YC_key_action_handle(KEY_DISCOVERY);
+			LED_all_shutdown();
+			g_variable.button_reconnect_flag = 0;
+			g_variable.release_data = 1;
+			g_variable.temp_device_num = g_variable.last_device_num;
+			g_variable.last_device_num = g_variable.current_device_num;
+		}
+	}
+	else
+	{
+		if (g_variable.button_reconnect_flag)
+		{
+			g_variable.button_reconnect_flag = 0;
+
+			if(g_variable.last_device_num !=g_variable.current_device_num)		//switch device,
+			{
+				g_variable.release_data = 1;
+				LED_all_shutdown();
+				g_variable.last_device_num = g_variable.current_device_num;
+				g_variable.update_eeprom_flag = EEPROM_STORE_TYPE_NORMAL;
+				
+				YC_disconnect_all_link();
+				YC_update_eeprom_data();
+				System_Reset_Connect();
+			}
+		}
+		g_variable.button_timer[3] = 0;
+	}
+}
+
+
+
+static void kb_cb_Timer500ms()
+{
+	LED_timer500ms();	
+
+	g_variable.sleepTimer++;
+
+	YC_adc_check_timer500ms();
+	YC_connect_timeout_500ms();
+	kb_button_press_timer500ms();
+	YC_wait_disconnect_timer500ms();
+	YC_pairing_timerout_500ms();
+	
+	
+	if((g_variable.br_currentSubState ==  CHANGE_TO_BR_SUB_PINCODE)
+	|| (g_variable.ble_currentSubState ==  CHANGE_TO_BLE_SUB_PINCODE))
+	{
+		g_variable.sleepTimer = 0;				//wait macOS enter pincode
+	}
+	
+	return;
+}
+
+
+static void kb_cb_Timer100ms()
+{
+	if(!g_variable.g24_long_sleep_flag && !g_variable.pairing_g24_timeout && (g_variable.battery_status != BAT_STATUS_LOW))
+	{
+		backlight_led_process();	
+		//backlight_led_switch();
+	}
+	if(g_variable.battery_flash_timer)
+	{
+		g_variable.battery_flash_timer--;
+		g_variable.sleepTimer = 0;
+		if(g_variable.battery_flash_timer & 0x01)
+			GPIO_FlipOutBit(LOWPOWER_LED_GPIO);
+		if(!g_variable.battery_flash_timer)
+			IPC_TxControlCmd(IPC_CMD_ENTER_HIBERNATE);
+		return;
+	}
+
+	if (g_variable.delay_enter_lpm_timer) 
+	{
+		g_variable.delay_enter_lpm_timer --;
+	}
+
+	if(g_variable.recon_delay)
+		g_variable.recon_delay--;
+
+
+	if(g_variable.one_key_press_wait_release_timer)
+	{
+		g_variable.one_key_press_wait_release_timer--;
+		if(!g_variable.one_key_press_wait_release_timer)
+			g_variable.key_combination_step = CAMBINATION_KEY_NULL;
+	}
+	if (g_variable.powerOn_timer != 0)
+	{	
+		if(g_variable.pairing_g24_timeout)
+		{
+			g_variable.powerOn_timer = 0;
+			return;
+		}
+			
+		g_variable.powerOn_timer--;
+		LED_device_poweron();
+		if (!g_variable.powerOn_timer)
+		{
+			LED_device_poweroff();
+		}
+	}	
+
+	
+// The dongle must receive data within 200ms, otherwise it will be forced to lift
+	if(!long_press_flag)
+	{
+		if (repeat_send_24g == 1)
+		{
+			g_variable.sleepTimer = 0;	
+			repeat_send_24g = 0;
+
+			 if (multikey[0] != 0)
+			{
+				IPC_TxHidData(multikey, 3);
+			}
+			else if (hidBuff[0] != 0)
+			{
+
+				IPC_TxHidData(hidBuff,9);
+			}
+		}
+	}
+
+//role switch time out
+	if (switch_role_timer != 0)
+	{
+		switch_role_timer--; 
+		if (switch_role_timer == 0)
+		{
+			System_Reset_Connect();
+		}
+	}
+
+// ble delay send secutiry request
+	if(ble_send_secutiry_request_timer)
+	{
+		ble_send_secutiry_request_timer--;
+		if(!ble_send_secutiry_request_timer)
+		{
+			if(!m_le_send_security_request_flag)
+			{
+				IPC_TxControlCmd(IPC_CMD_LE_SMP_SECURITY_REQUEST);
+			}
+		}
+	}
+
+	if (delayChgInvTimer != 0)
+	{
+		delayChgInvTimer--;
+		if (delayChgInvTimer == 0)
+		{
+			if( m_24g_led_flag)
+			{
+				m_24g_led_flag = 0;
+			}	
+	
+			if (g_variable.ble_currentState == CHANGE_TO_BLE_CONNECTED)
+			{
+				kscurrmult = 0x0c;
+			}
+			else if (g_variable.br_currentState == CHANGE_TO_BR_CONNECTED)
+			{
+				kscurrmult = 0x3a;
+			}
+		}
+	}
+}
+
+
+
+static tIPCControlBlock cb = 
+{
+	kb_cb_event,
+	NULL,
+	kb_cb_Timer500ms,
+	kb_cb_Timer100ms,
+	NULL,
+	kb_cb_Hid
+};
+
+static void kb_cb_init()
+{
+	IPC_Initialize(&cb);
+}
+/////////////////////////////////////////////////////////////////
+
+/////////////////////////////////////////////////////////////////
+void YC_System_Main(void)
+{
+	kb_cb_init();
+	while(1) {
+		IPC_DealSingleStep();
+		if(!g_variable.battery_flash_timer)
+		{
+			kb_need_keyscan();
+		}		
+		YC_update_eeprom_data();
+		LED_handle();
+#ifdef PC_SLEEP_STATUS_GET		
+		if(m_pc_sleep_flag)
+		{
+			System_G24_long_lpm();
+		}
+#endif		
+		switch (current_task) {
+		case FIX_ENTER_HIBERNATE:
+			KS_Unistall();
+			//GPIO_SetWakeupByCurrentState(BT_BUTTON_GPIO);
+			YC_PWM_disable(7);
+
+			LED_all_shutdown();
+			IPC_WaitLpm();	/*<wait enter lpm,do nothing*/
+			while(1);
+			break;
+			
+		case FIX_ENTER_LPM:
+			if (g_variable.delay_enter_lpm_timer ||g_variable.lockLpm  ||g_variable.battery_flash_timer||g_variable.one_key_press_wait_release_timer
+			) 
+			{
+				IPC_AbandonLpm();
+				break;
+			}
+			else
+			{
+				KS_Unistall();
+				if(g_variable.g24_long_sleep_flag)
+				{
+				YC_PWM_disable(7);
+
+					LED_all_shutdown();
+				}	
+				IPC_WaitLpm();	/*<wait enter lpm,do nothing*/
+				break;
+			}
+		}
+	}
+}
+
Index: c51/type.h
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/c51/type.h	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/c51/type.h	(working copy)
@@ -0,0 +1,25 @@
+#ifndef _YC_DEFINE_H_
+#define _YC_DEFINE_H_
+
+#define PUBLIC 
+#define LOCAL static
+
+typedef unsigned char byte;
+typedef unsigned char idata ibyte;
+typedef volatile unsigned char xdata xbyte;
+typedef volatile unsigned short xdata xword;
+typedef unsigned char xdata * pxbyte;
+typedef unsigned char xdata * data pxdbyte;
+typedef unsigned   short   word;
+typedef unsigned   long    ulong;
+typedef signed     long    s32_t;
+typedef bit bool;
+
+#define true 1
+#define false 0
+#ifndef NULL
+#define NULL (0)
+#endif
+
+#endif
+
Index: c51/uart.h
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/c51/uart.h	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/c51/uart.h	(working copy)
@@ -0,0 +1,56 @@
+#ifndef _UART_H_
+#define _UART_H_
+#include "type.h"
+ 
+#define  UART_BAUD_115200 0x00d0
+
+///**********************<buff define**************************/
+//please do not change here
+#define UART_RX_HEAD	0x1e00		/**< yc rx buff head */
+#define UART_RX_END		0x1eff		/**< yc rx buff end */
+
+#define UART_TX_HEAD	0x1f00		  /**< yc tx buff head */
+#define UART_TX_END		0x1fff		/**< yc tx buff end */
+///**************************<end ****************************/
+#define UART_SelectGpio() REG_GPIO_SELECT(1) |= BIT(2)
+
+#define UART_Enable() \
+			REG_UART_CLK_SEL &= 0xfe,\
+			REG_CLK_OFF(1) &= ~ BIT(7)				//turn on UART's clock
+			
+#define  UART_ControlOn() \
+			REG_UART_CTRL = 0x91
+
+#define UART_ControlOff() \
+			REG_UART_CTRL = 0x81
+
+#define UART_SetRxBuff(s,e)   REG_UART_RX_ADDR_S = ESWAP((word)(s)),\
+								REG_UART_RX_ADDR_E =  ESWAP((word)(e))
+								
+							
+#define UART_SetTxBuff(s,e)	REG_UART_TX_ADDR_S = ESWAP((word)(s)),\
+								REG_UART_TX_ADDR_E =  ESWAP((word)(e))
+									
+
+#define UART_SetBaudRate(b)		REG_UART_BAUD = ESWAP((word)(b))
+
+
+#define UART_ReSet()	REG_UART_TX_PTRP_R = REG_UART_TX_ADDR_S,\
+							REG_UART_TX_PTR_W = REG_UART_TX_ADDR_S,\
+								REG_UART_RX_PTR_R = REG_UART_RX_ADDR_S
+
+#define UART_OP_MAXREAD	1		
+#define UART_OP_UNRELEASE (0x02)
+
+
+void UART_Initialize(void);
+
+byte UART_RecvData(byte *   pbuff, byte len);
+
+byte  UART_SendData(const byte*  pbuff, byte len);
+
+word UART_GetRxCount();
+
+byte UART_RecvDataWithoutRelease(byte *   pbuff, byte len);
+
+#endif
\ No newline at end of file
Index: c51/uart.c
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/c51/uart.c	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/c51/uart.c	(working copy)
@@ -0,0 +1,86 @@
+#include "uart.h" 
+#include "utilities.h"
+ 
+static volatile u8_t xdata uart_tx_buff[0x1ff] _at_ UART_RX_HEAD ;
+
+/*<********************** internal func**********************/
+
+static pxbyte uart_cpyout(pxbyte dest, u8_t* src, u8_t len)
+{
+	while(len--){
+		*dest++ = *src++;
+		if ((u16_t)src > UART_RX_END){
+			src = (pxbyte)UART_RX_HEAD;
+		}
+	}
+	return src;
+}
+
+static pxbyte uart_cpyin(pxbyte dest, u8_t* src, u8_t len)
+{
+	while(len--){
+		*dest++ = *src++;
+		if ((u16_t)dest > UART_TX_END){
+			dest = (pxbyte)UART_TX_HEAD;
+		}
+	}
+	return dest;
+}
+
+
+/*==============UART======================================================================*/
+void UART_Initialize()
+{
+	UART_SetRxBuff(UART_RX_HEAD,UART_RX_END);
+	UART_SetTxBuff(UART_TX_HEAD,UART_TX_END);
+	UART_SelectGpio();
+	UART_ReSet();
+	UART_SetBaudRate(UART_BAUD_115200);
+	UART_Enable();
+	UART_ControlOff();
+}
+//if len =0 ;return rev length in uart buff
+u8_t *rrptr  = uart_tx_buff;
+u8_t UART_RecvData(u8_t *   pbuff, u8_t len)
+{
+	u16_t rx_len;
+	rx_len = ESWAP(REG_UART_RX_ITEMS);
+
+	rx_len = min(len,rx_len);	
+	if (rx_len!=0){
+		rrptr = uart_cpyout(pbuff,rrptr,rx_len);
+		//yc_ice_break();
+		REG_UART_RX_PTR_R = ESWAP((short)rrptr);
+	}
+	return rx_len;
+}
+
+u8_t  UART_SendData(const u8_t*  pbuff, u8_t len)
+{
+	u8_t* twptr;
+	u8_t lenoo= len;
+	twptr = (u8_t*)ESWAP(REG_UART_TX_PTR_W);
+	twptr = uart_cpyin((u8_t*)twptr, pbuff,len);
+	REG_UART_TX_PTR_W = ESWAP((short)twptr);
+	return 0;
+}
+
+u16_t UART_GetRxCount()
+{
+	return ESWAP(REG_UART_RX_ITEMS);
+}
+
+u8_t UART_RecvDataWithoutRelease(u8_t *   pbuff, u8_t len)
+{
+	u16_t rx_len;
+	u8_t* rrp = rrptr;
+	rx_len = ESWAP(REG_UART_RX_ITEMS);
+
+	rx_len = min(len,rx_len);	
+	if (rx_len!=0){
+		rrp = uart_cpyout(pbuff,rrp,rx_len);
+	}
+	return rx_len;
+}
+
+ 
Index: c51/util/DeleteNote.pl
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/c51/util/DeleteNote.pl	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/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/crc16.exe
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: c51/util/crc16.exe
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: c51/util/crc16.pl
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/c51/util/crc16.pl	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/c51/util/crc16.pl	(working copy)
@@ -0,0 +1,27 @@
+$debug = 0;
+$crc = 0xffff;
+$i = 0;
+$offset = 0xffff;
+$source_file = $ARGV[0];
+$offset = $ARGV[1];
+
+open(EEP,"$source_file") or die $!;
+
+while (<EEP>) {    
+	$c = hex();
+
+  if($i >= $offset){
+  	if($debug){printf "%02x\t", $c;}
+  	$crc  = ($crc >> 8) | ($crc << 8);
+		$crc ^= $c & 0xff;
+		$crc ^= ($crc & 0xff) >> 4;
+		$crc ^= $crc << 12;
+		$crc ^= ($crc & 0xff) << 5;
+		$crc &= 0xffff;
+  }
+  $i ++;
+  if($debug){printf "%02x\t", $crc;}
+  printf "%02x\n", $c;
+}
+
+printf "%02x\n%02x\n", (($crc >> 8) & 0xff),($crc & 0xff);
Index: c51/util/eeprom2bin.pl
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/c51/util/eeprom2bin.pl	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/c51/util/eeprom2bin.pl	(working copy)
@@ -0,0 +1,15 @@
+
+$source_file = $ARGV[0];
+#$dest_file = $ARGV[1];
+
+
+open(EEP,"$source_file") or die $!;
+open(BINFILE, ">eeprom.bin") or die $!;
+binmode(BINFILE);
+while (<EEP>) {
+	printf BINFILE "%c", hex();
+}
+close(EEP);
+close(BINFILE);
+    
+   
Index: c51/util/eeprom2fulleeprom.exe
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: c51/util/eeprom2fulleeprom.exe
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: c51/util/eeprom2fulleeprom.pl
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/c51/util/eeprom2fulleeprom.pl	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/c51/util/eeprom2fulleeprom.pl	(working copy)
@@ -0,0 +1,18 @@
+
+
+
+$source_file = $ARGV[0];
+$eeprom_size = $ARGV[1];
+
+open(EEP,"$source_file") or die("cannot open files");
+for ($i = 1 ;$i<=$eeprom_size*128-2;$i++)
+{
+
+    while (<EEP>) { 
+        $c = hex();
+        printf "%02x\n", $c;
+        $i++;
+    }
+
+	printf "FF\n";
+}
Index: c51/util/hex2mif.exe
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: c51/util/hex2mif.exe
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: c51/util/hex2mif.pl
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/c51/util/hex2mif.pl	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/c51/util/hex2mif.pl	(working copy)
@@ -0,0 +1,103 @@
+#!/usr/bin/perl
+# 2005 - David Grant.
+# Take an ihex input from STDIN, and write a .mif file to STDOUT
+# This script could probably be implemented with something like:
+#    $#!@_%^$@%$@%$_!^$@#^@%$#@_%$@^&!%$_!%!%&$*(#^#@%^) 
+# But I perfer the somewhat readable version.
+
+# Flow from within the Nios2 SDK Shell:
+# nios2-elf-as file.asm -o file.o
+# nios2-elf-objcopy file.o --target ihex file.hex
+# cat file.hex | perl hex2mif.pl > file.mif
+
+my @rom = ();
+my @ram = ();
+
+sub conv {
+	my ($in) = @_;
+	$out = substr($in,6,2).substr($in,4,2).substr($in,2,2).substr($in,0,2);
+	return hex $out;
+}
+
+sub writeromfile {
+	my (@buf) = @_;
+	my($x);
+
+	for($x=0; $x<@buf; $x++) {
+		printf ("%02x\n", $buf[$x]);
+	}
+}
+
+sub writebinfile {
+	my (@buf) = @_;
+	my($x);
+
+	for($x=0; $x<@buf; $x++) {
+		for($y=0;$y<8;$y++) {
+			printf ("%d", $buf[$x] & 1<<(7-$y) ? 1 : 0);
+		}
+		printf "\n" if(($x & 3) == 3);
+	}
+}
+
+sub writemiffile {
+	my (@buf) = @_;
+	my($x);
+	print  ("WIDTH=8;\n");
+	print ("DEPTH=".@buf.";\n");
+	print ("CONTENT BEGIN\n");
+	for($x=0; $x<@buf; $x++) {
+		printf ("\t%04x : %02x;\n", $x, $buf[$x]);
+	}
+	print ("END;\n");
+}
+
+if($ARGV[0] eq "ram" || $ARGV[0] eq "rammif")
+{
+	$org = 0x8000;
+	$limit = 0xffff;
+} elsif($ARGV[0] eq "rom" || $ARGV[0] eq "bin" || $ARGV[0] eq "mif" || $ARGV[0] eq "rommif" ) {
+	$org = 0;
+	$limit = 0x7fff;
+} else {
+	$org = 0;
+	$limit = 0xffffff;
+}
+
+
+$org = 0;
+$limit = 0x7fff;
+
+while (<STDIN>) {
+	$l = $_;
+	next if(!/\w/);
+	$count = (hex substr($l, 1, 2));
+	$addr = (hex substr($l, 3, 4));
+	$type = (hex substr($l, 7, 2));
+	last if $type eq 1;
+	if($type == 4) {
+		$org = -(hex substr($l, 9, 4))*0x10000;
+	}
+	if($addr >= $org && $addr <= $limit) 
+	{
+		$addr*=4 if($ARGV[0] eq "bin");
+		$addr -= $org;
+		for($x=0; $x<$count; $x++) {
+			$rom[$addr + $x] = (hex substr($l, 9+2*$x, 2)) ; 
+		}
+	}
+}
+
+if($ARGV[0] eq "rom" || $ARGV[0] eq "ram" || $ARGV[0] eq "mem")
+{
+	writeromfile(@rom);
+}
+elsif($ARGV[0] eq "bin")
+{
+	writebinfile(@rom);
+}
+else
+{
+	writemiffile(@rom);
+}
+
Index: c51/util/memalloc.pl
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/c51/util/memalloc.pl	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/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
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/c51/util/mergepatch.pl	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/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
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/c51/util/sortsched.pl	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/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
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/c51/util/transform_memmap2btreg.pl	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/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);
+
Index: c51/util/transform_name2addr.exe
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: c51/util/transform_name2addr.exe
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: c51/util/transform_name2addr.pl
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/c51/util/transform_name2addr.pl	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/c51/util/transform_name2addr.pl	(working copy)
@@ -0,0 +1,103 @@
+$Sched_path=$ARGV[0];
+$Sched_test_path=$ARGV[1];
+$Memmap_path=$ARGV[2];
+open(Sched,$Sched_path)||die("Cannot open files\n");
+@sched=<Sched>;
+close(Sched);
+open(Sched_test,">$Sched_test_path");
+print Sched_test ("");
+close(Sched_test);
+open(Sched_test,">$Sched_test_path");
+open(Memmap,$Memmap_path)||die("Cannot open files\n");
+@memmap=<Memmap>;
+close(Memmap);
+$type_add=0;
+$type_exchange=0;
+foreach $sched(@sched)
+{
+	$sched_begin = $sched;
+	@Sched = split(/[#]+/, $sched);
+	$sched = @Sched[0];
+	@Sched[0] = "";
+	if($sched =~ /mem[\w]+/)
+	{
+		@memmap_name = split(/[\W]+/, $sched);
+		foreach $memmap_name(@memmap_name)
+		{
+			if($memmap_name =~ /mem[\w]+/)
+			{
+				$Memmap_name=$memmap_name;
+				$type_add = 0;
+				$type_exchange = 0;
+				if($sched =~ /$Memmap_name[+]/)
+				{
+					$type_add = 1;#修改的类型第一种，加
+					@ADD_Num=split(/[^0-9\+xa-fA-F]/,$sched);
+					foreach $ADD_Num(@ADD_Num)
+					{
+						if($ADD_Num =~ /\+/)
+						{
+							if($ADD_Num =~ /0x/)
+							{
+								@add_num = split(/\+0x/,$ADD_Num);
+								$add_num1 =@add_num[1];
+								$add_num_begin = "0x".$add_num1;
+								$add_num = hex($add_num1);
+							}
+							else
+							{
+								@add_num = split(/\+/,$ADD_Num);
+								$add_num1 =@add_num[1];
+								$add_num_begin = $add_num1;
+								$add_num = int($add_num1);
+							}
+						}#$add_num是匹配出的需要加的数值，字符串形式
+					}
+				}
+				if($sched =~ /[:] *\t*$Memmap_name/)
+				{
+					$type_exchange = 1;#修改的类型第二种，高低位交换
+				}
+				foreach $memmap(@memmap)
+				{
+					if($memmap =~ /$Memmap_name/ && $memmap !~ /$Memmap_name[\w]+/)
+					{
+						@Memmap=split(/[ \t\n]/,$memmap);
+						$memmap_address=@Memmap[0];
+						$memmap_address =~ s/0x//;
+						if($type_add==1)
+						{
+							$memmap_address_D = hex($memmap_address);
+							$memmap_address_D = $memmap_address_D+$add_num;
+							$memmap_address_H = sprintf("%x", $memmap_address_D);
+							$memmap_address = $memmap_address_H;
+							$memmap_address_add_finish = $memmap_address;
+							$sched_begin =~ s/$Memmap_name\+$add_num_begin/$memmap_address/;
+						}
+						if($type_exchange==1)
+						{
+							$memmap_address_High = substr($memmap_address,0,2);
+							$memmap_address_Low = substr($memmap_address,2,2);
+							$memmap_address = $memmap_address_Low." ".$memmap_address_High;
+							if($type_add==0)
+							{
+								$sched_begin =~ s/$Memmap_name/$memmap_address/;
+							}
+							else
+							{
+								$sched_begin =~ s/$memmap_address_add_finish/$memmap_address/;
+							}
+						}
+					}
+				}
+				$sched_begin =~ s/$Memmap_name/$memmap_address/;
+			}
+		}
+		printf Sched_test ("%s",$sched_begin);
+	}
+	else
+	{
+		printf Sched_test ("%s",$sched_begin);
+	}	
+}
+close(Sched_test);
Index: c51/utilities.h
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/c51/utilities.h	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/c51/utilities.h	(working copy)
@@ -0,0 +1,24 @@
+#ifndef _YC_UTILITIES_H_
+#define _YC_UTILITIES_H_
+#include "common.h"
+
+#define MAX(a,b) ((a)>(b)?(a):(b))
+
+/*==============Set a breakpoint function
+no input:
+no output
+====================*/
+void YC_Ice_break();
+
+void dmemcpy(byte *dest, byte* src, word len) ;
+
+void xmemcpy(pxbyte dest, byte* src, byte len);
+
+void Delay1ms(byte Time);
+
+void YC_DelayNOP(byte num);
+
+void xmemclear(byte *dest, word len);
+void xmemclear_ff(byte *dest, word len);
+byte compare_str(byte * str1,byte * str2,byte len);
+#endif
Index: c51/utilities.c
===================================================================
--- /YJX_KB_Project/1026_KB/YF103_1026/c51/utilities.c	(nonexistent)
+++ /YJX_KB_Project/1026_KB/YF103_1026/c51/utilities.c	(working copy)
@@ -0,0 +1,62 @@
+#include "utilities.h"
+
+void YC_Ice_break()
+{
+	CPUA_ICE_CTRL = 1;
+	return;
+}
+
+void xmemcpy(pxbyte dest, byte * src, byte len)
+{
+	while (len--)
+		*dest++ = *src++;
+	return;
+}
+
+void dmemcpy(byte * dest, byte * src, word len)
+{
+	while (len--)
+		*dest++ = *src++;
+	return;
+}
+
+void xmemclear(byte * dest, word len)
+{
+	while (len--)
+		*dest++ = 0x00;
+	return;
+}
+
+void xmemclear_ff(byte * dest, word len)
+{
+	while (len--)
+		*dest++ = 0xff;
+	return;
+}
+
+/*
+void YC_DelayNOP(byte num)
+{
+	for(;num>0;num--)
+	{
+		;
+	}
+}
+*/
+void Delay1ms(byte Time)
+{
+	word j;
+	for (; Time > 0; Time--) {
+		for (j = 0; j < 1190; j++) ;
+	}
+}
+
+byte compare_str(byte * str1, byte * str2, byte len)
+{
+	byte i;
+	for (i = 0; i < len; i++) {
+		if (str1[i] != str2[i])
+			return 0x00;
+	}
+	return 0x01;
+}
